Misuse GCDWebServer of iOS app - A case study

1. Introduction to GCDWebServer

1.1 The GCDWebServer is a modern and lightweight GCD based HTTP 1.1 server designed to be embedded in iOS, macOS & tvOS apps. The library is implemented by Objective-C programming language. Network service is provided by adding handler to this library. There are default handlers serve as file servers which provide file listing, uploading/downing, and file editing (WebDAV) service in this library. Developer can also provide customized service by writing his own handler to execute command according to the client's request.

1.2 Misusage of this library will expose privacy or functionality to adversary. To find the misusage of this library, we perform a case-by-case study of the interface of this library, then carry out analysis on apps. To promote the performance of automatic analysis of this Objective-C library, we use a combination of signature query and a devised dataflow analysis methodology.

1.3 The 2 models for using this library are:

1) Standard service: The standard service is implemented by using default handler in this library, that is WebServer, WebUploader, or WebDAVServer, which provide file listing, file uploading/downloading, file management service. For such a service, users build request without arguments to get the service. (e.g., http://192.168.1.8 for listing files in Now app.)

2) Customized service. The customized service is implemented by adding/overwriting handler through addDefaultHandlerForMethod:requestClass:processBlock, addDefaultHandlerForMethod:requestClass:asyncProcessBlock, addHandlerForMethod:path:requestClass:processBlock:, addHandlerForMethod:pathRegex:requestClass:processBlock:,

and WebServer. For such a service, users are commonly required to build a request (it depends) with arguments to get the service. (e.g., http://192.168.1.13/manifest?type=master for requesting resource in Amazon Prime Video app.)

2. Security problem when using GCDWebServer

There are a few security problems incur remote attack when misusing this library.

2.1 Leaks privacy. If developer use this library to share file, the wrong configuration will expose privacy within the app. For example, in the initial release of Ionic Webview library, the library use LAN interface when integrating GCDWebServer library, which will expose the whole file system of a jailbroken device to adversary.

2.2 Lack of access control for the handlers. If developer add handler to provide customized functionality, the firmly access control should be enforced. For a customized service, manual analysis must be involved to check the authorize process or the functionalities behind the service.

2.3 Path Traversal attack. Unlike CocoaHTTPServer, which utilizing stringByStandardizingPath API to standardize the path and apply additional checks to prevent Path Traversal attack, there is no security consideration towards this attack in GCDWebServer. That is, adversary can access files outside the web root folder by using a “dot-dot-slash (../)” request when the GCDWebServer is served as a file server (e.g., static website, WebDAV service). For this attack, the web root should be set to Data folder by the developer as to access the privacy (cookies, sessions, etc.) within an app. If the web root folder is set to Bundle folder (use NSBundle as Ionic's Webview does), it's hard for the adversary to predict the randomly generated Data path to access privacies of an app. e.g., CloudLink, a HuaWei's app use host field in a HTTP header to verify a request, however, it's can be easily impersonated by an attacker, fortunately, the root web folder is set to Bundle folder, which mitigate the remote attack.

Update:

2019-1-5: GCDWebServer has fixed the Path Traversal vulnerability. However, most apps integrating this library have not upgrade their apps.

2018-12-20: GCDWebServer is deprecated by Ionic's Webview.

3. Model the Misusage

There are a few factors lead to a successful exploit toward apps using GCDWebServer.

3.1 App indicates to use LAN interface. Below code will defeat the attack toward network service.

webServer = [[GCDWebServer alloc] init]; NSDictionary *options = @{ GCDWebServerOption_Port: @(8080), GCDWebServerOption_BindToLocalhost: @(YES), GCDWebServerOption_ServerName: @"Ionic" }; [webServer startWithOptions:options error:nil];

In the view of a static analyzer, it should model the activity of NSDictionary object, as to solve value in the stack which preserve pointer point to the key-value pair. Moreover, it should model the memory which preserves the key-value pair, GCDWebServerOption_BindToLocalhost and @(YES) in this case.

3.2 When serving as a file server, web root folder should be set to Data folder. Below code snippet will expose the private Data folder to client.

NSString* documentsPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject]; _webUploader = [[GCDWebUploader alloc] initWithUploadDirectory:documentsPath]; [_webUploader start];
NSString* documentsPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject]; _davServer = [[GCDWebDAVServer alloc] initWithUploadDirectory:documentsPath]; [_davServer start];
GCDWebServer* webServer = [[GCDWebServer alloc] init]; [webServer addGETHandlerForBasePath:@"/" directoryPath:NSHomeDirectory() indexFilename:nil cacheAge:3600 allowRangeRequests:YES]; [webServer runWithPort:8080];

3.3 If developers use GCDWebServer to provide customized service, they can add handlers for GCDWebServer. Since the implementation of handlers varies as developer wishes, manual analysis must be involved to check the handlers.

[webServer addDefaultHandlerForMethod:@"GET" requestClass:[GCDWebServerRequest class] asyncProcessBlock:^(GCDWebServerRequest* request, GCDWebServerCompletionBlock completionBlock) { // Do some async operation like network access or file I/O (simulated here using dispatch_after()) dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ GCDWebServerDataResponse* response = [GCDWebServerDataResponse responseWithHTML:@"<html><body><p>Hello World</p></body></html>"]; completionBlock(response); });}];

3.4 To verify the resource (nonsense files or privacy) behind the GCDWebServer, manual analysis must be involved.

4. Detect methodology

To make step 4.3-4.4 clearly, We take 3 code snippets for example.

Example 1:

webServer = [[GCDWebServer alloc] init]; [webServer addGETHandlerForBasePath:@"/" directoryPath:NSHomeDirectory() indexFilename:nil cacheAge:3600 allowRangeRequests:YES]; [webServer start];

This code will turn app to be a file server by using GCDWebServer library. Since IR for the code is boring and not easy to read (Appendix 4), to make the process explicitly, we use the equivalent (except for the SSA property) IDA disassembly.

__text:00000001000256AC ; bool __cdecl -[AppDelegate application:didFinishLaunchingWithOptions:](AppDelegate *self, SEL, id, id)__text:00000001000256AC __AppDelegate_application_didFinishLaunchingWithOptions____text:00000001000256AC ; DATA XREF: __objc_const:0000000100043100↓o__text:00000001000256AC__text:00000001000256AC var_44 = -0x44__text:00000001000256AC var_40 = -0x40__text:00000001000256AC var_38 = -0x38__text:00000001000256AC var_30 = -0x30__text:00000001000256AC var_28 = -0x28__text:00000001000256AC var_20 = -0x20__text:00000001000256AC var_18 = -0x18__text:00000001000256AC var_10 = -0x10__text:00000001000256AC var_8 = -8__text:00000001000256AC var_s0 = 0__text:00000001000256AC__text:00000001000256AC SUB SP, SP, #0x60__text:00000001000256B0 STP X29, X30, [SP,#0x50+var_s0]__text:00000001000256B4 ADD X29, SP, #0x50__text:00000001000256B8 SUB X8, X29, #-var_18__text:00000001000256BC MOV X9, #0__text:00000001000256C0 STUR X0, [X29,#var_8]__text:00000001000256C4 STUR X1, [X29,#var_10]__text:00000001000256C8 STUR X9, [X29,#var_18]__text:00000001000256CC MOV X0, X8__text:00000001000256D0 MOV X1, X2__text:00000001000256D4 STR X3, [SP,#0x50+var_30]__text:00000001000256D8 BL _objc_storeStrong__text:00000001000256DC SUB X8, X29, #-var_20__text:00000001000256E0 MOV X9, #0__text:00000001000256E4 STUR X9, [X29,#var_20]__text:00000001000256E8 LDR X9, [SP,#0x50+var_30]__text:00000001000256EC MOV X0, X8__text:00000001000256F0 MOV X1, X9__text:00000001000256F4 BL _objc_storeStrong__text:00000001000256F8 ADRP X8, #selRef_alloc@PAGE__text:00000001000256FC ADD X8, X8, #selRef_alloc@PAGEOFF__text:0000000100025700 ADRP X9, #classRef_GCDWebServer@PAGE__text:0000000100025704 ADD X9, X9, #classRef_GCDWebServer@PAGEOFF__text:0000000100025708 MOV X0, #0__text:000000010002570C STR X0, [SP,#0x50+var_28]__text:0000000100025710 LDR X9, [X9] ; _OBJC_CLASS_$_GCDWebServer__text:0000000100025714 LDR X1, [X8] ; "alloc"__text:0000000100025718 MOV X0, X9 ; void *__text:000000010002571C BL _objc_msgSend__text:0000000100025720 ADRP X8, #selRef_init@PAGE__text:0000000100025724 ADD X8, X8, #selRef_init@PAGEOFF__text:0000000100025728 LDR X1, [X8] ; "init"__text:000000010002572C BL _objc_msgSend__text:0000000100025730 LDR X8, [SP,#0x50+var_28]__text:0000000100025734 STR X0, [SP,#0x50+var_28]__text:0000000100025738 MOV X0, X8__text:000000010002573C BL _objc_release__text:0000000100025740 LDR X8, [SP,#0x50+var_28]__text:0000000100025744 STR X8, [SP,#0x50+var_38]
__text:0000000100025748                 BL              _NSHomeDirectory
__text:000000010002574C                 MOV             X29, X29
__text:0000000100025750                 BL              _objc_retainAutoreleasedReturnValue
__text:0000000100025754 ADRP X8, #stru_10003DBA8@PAGE ; "/"__text:0000000100025758 ADD X8, X8, #stru_10003DBA8@PAGEOFF ; "/"__text:000000010002575C MOV X9, #0__text:0000000100025760 MOV X5, #0xE10__text:0000000100025764 MOV W10, #1__text:0000000100025768 ADRP X1, #selRef_addGETHandlerForBasePath_directoryPath_indexFilename_cacheAge_allowRangeRequests_@PAGE__text:000000010002576C ADD X1, X1, #selRef_addGETHandlerForBasePath_directoryPath_indexFilename_cacheAge_allowRangeRequests_@PAGEOFF__text:0000000100025770 LDR X1, [X1] ; "addGETHandlerForBasePath:directoryPath:"...__text:0000000100025774 LDR X2, [SP,#0x50+var_38]
__text:0000000100025778                 STR             X0, [SP,#0x50+var_40]
__text:000000010002577C MOV X0, X2 ; void *__text:0000000100025780 MOV X2, X8
__text:0000000100025784                 LDR             X3, [SP,#0x50+var_40]
__text:0000000100025788 MOV X4, X9__text:000000010002578C AND W6, W10, #1__text:0000000100025790 BL _objc_msgSend__text:0000000100025794 LDR X0, [SP,#0x50+var_40]__text:0000000100025798 BL _objc_release__text:000000010002579C ADRP X8, #selRef_start@PAGE__text:00000001000257A0 ADD X8, X8, #selRef_start@PAGEOFF__text:00000001000257A4 LDR X9, [SP,#0x50+var_28]__text:00000001000257A8 LDR X1, [X8] ; "start"__text:00000001000257AC MOV X0, X9 ; void *__text:00000001000257B0 BL _objc_msgSend__text:00000001000257B4 MOV X8, #0__text:00000001000257B8 ADD X9, SP, #0x50+var_28__text:00000001000257BC STR W0, [SP,#0x50+var_44]__text:00000001000257C0 MOV X0, X9__text:00000001000257C4 MOV X1, X8__text:00000001000257C8 BL _objc_storeStrong__text:00000001000257CC MOV X8, #0__text:00000001000257D0 SUB X9, X29, #-var_20__text:00000001000257D4 MOV X0, X9__text:00000001000257D8 MOV X1, X8__text:00000001000257DC BL _objc_storeStrong__text:00000001000257E0 MOV X8, #0__text:00000001000257E4 SUB X9, X29, #-var_18__text:00000001000257E8 MOV X0, X9__text:00000001000257EC MOV X1, X8__text:00000001000257F0 BL _objc_storeStrong__text:00000001000257F4 MOV W10, #1__text:00000001000257F8 AND W0, W10, #1__text:00000001000257FC LDP X29, X30, [SP,#0x50+var_s0]__text:0000000100025800 ADD SP, SP, #0x60__text:0000000100025804 RET__text:0000000100025804 ; End of function -[AppDelegate application:didFinishLaunchingWithOptions:]
  1. After the dataflow analysis, we solved that X0 on call site 00000001000257B0 and 0000000100025790 point to the same object of GCDWebServer. They are calling [GCDWebServer start] and [GCDWebServer addGETHandlerForBasePath:directoryPath:indexFilename:cacheAge:allowRangeRequests] separately. (To reach 0000000100025700, the def of X0, we need to summary the function alloc and init.)
  2. The second argument of 0000000100025790:_objc_msgSend, say X3, comes from 0000000100025748 (marked as `normal size text`), which is returned by calling _NSHomeDirectory method.

For this model, the checking rule is depicted as:


Desc:Unsafe for serving as a file server
o:=GCDWebServer{ m:=start m:=addGETHandlerForBasePath:directoryPath:indexFilename:cacheAge:allowRangeRequests: { a3!=[NSBundle ?] } }

Example 2:

NSDictionary *options = @{ GCDWebServerOption_Port: @(8080), GCDWebServerOption_BindToLocalhost: @(YES), GCDWebServerOption_ServerName: @"Ionic" }; [webServer addGETHandlerForBasePath:@"/" directoryPath:NSHomeDirectory() indexFilename:nil cacheAge:3600 allowRangeRequests:YES]; [webServer startWithOptions:options error:nil];

Checking Rule:


Desc:Safe for using localhost interfaceo:=GCDWebServer{ m:=startWithOptions:options: { a2:=[NSDictionary dictionaryWithObjects:forKeys:count:] { {a3[0][0] == "BindToLocalhost" and a3[0][1] == 1} or {a3[1][0] == "BindToLocalhost" and a3[1][1] == 1} or {a3[2][0] == "BindToLocalhost" and a3[2][1] == 1} or } }}

Example 3:

webServer = [[GCDWebServer alloc] init]; [webServer addDefaultHandlerForMethod:@"GET" requestClass:[GCDWebServerRequest class] processBlock:^GCDWebServerResponse *(GCDWebServerRequest* request) { return @"Hello World"; }]; [webServer start];

Checking Rule (A customized service, besides privacy, functionality may be provided. So, the web root folder is not checked.):


Desc:Check manuallyo:=GCDWebServer{ m:=start m:=addDefaultHandlerForMethod:requestClass:processBlock:}

5. Analysis result

5.1 Out of 168,951 apps of our dataset, 2097 apps are spotted integrating GCDWebServer directly or indirectly, which is depicted in Appendix 1.

5.2 After filtering Ionic's Webview or AdColony library (Appendix 5), which are build on top of GCDWebServer , 729 apps are left (Appendix 2).

5.3 For the remaining 729 apps, we utilize our dataflow analyzer to translate the binary to intermediate representation (IR), 716 apps can be successfully parsed by our IR translate module.

5.4 After that, we apply intra-procedure dataflow analysis to solve variable in the IR.

5.5 Rules are applied to the dataflow analysis result to profile the dataset.

5.5.1 By using rules which model local host service and dead object reference, 199 apps which provide network service to local host or does not use the library (takes 24.72% of the dataset) are found in 716 apps. Among these apps, 46 apps wrapping (inherit) GCDWebServer, for we have preserved the hierarchies of classes, such variant can also be found by our analyzer.

5.5.2 We apply rules which model the pattern of GCDWebServer misusage to check the security of the 517 iOS apps. The analysis result is depicted in Appendix 3. To explain fields in the analysis result, we take Now app for example.

com.tencent.now; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;

The analysis result reveals that the Now app: 1) use GCDWebServer as a file server, for it does not implemented it's own handler (DefaultHandlerForMethod, DefaultHandlerForMethod_async, HandlerForMethod, and HandlerForMethod_reg field). 2) does not set the BindToLocalhost argument as to use the LAN interface. 3) indeed use the GCDWebServer library (not a dead object as GCDWebServer field indicate). All these factors leads to a remote exploit towards the Now app.

5.6 We also category the usage of this library, the distribution is depicted as Table 4. After manually checking the reported potentially vulnerable apps, 83 apps really misuse the library. The left apps are still in manual checking pipeline for it's hard to trigger the service to verify the vulnerability. To solve such problem, we have tried to connect the code with UI to automatically reveal the network service behind user interaction, however, the undisclosed format of the .nib file, which stores the visual elements and relation between UI and code of an iOS app, impedes the static parsing task.

Appendix 1: 2097 apps integrate GCDWebServer.

u'com.outfit7.mytalkingtom', u'me.luckyvest.f9ctF1', u'com.mashentertainment.calloffinalbattleground', u'melanieapp.unbockmycar', u'com.duoc.video', u'jp.co.liica.physics', u'com.pinger.textfreeWithVoice', u'com.facebook.Messenger.watchkitapp', u'com.deltago.fruitlink', u'com.xiushuang.LOL', u'com.la.LAEducation', u'com.adc.jmxstarsoccerrun', u'com.bigleapstudios.mysterybayfree', u'com.tgs.gunship.battlefront.air.strike', u'com.namcobandaigames.ridgeracermobile', u'com.gameon.bubblebustlite', u'mobi.byss.free.music', u'com.toprankapps.secretphoto', u'com.empireapps.emoji', u'com.storeuser2.zmycj', u'com.datpiff.mobile', u'com.bunbee.carlightingspeed', u'cn.dict.sw-gjxhdzd', u'com.sunstorm.cheerleaders', u'com.appmadang.GIFShow', u'com.caligi.skz', u'com.luck.aishangtv', u'mobilesoftware.mydocumentfree', u'comecomecat.planet', u'com.playwithgames.MarinaBoats', u'beyondapp.appcraft.hd', u'cn.dict.sw-gjcydcd', u'org.vfgamestudio.StickHeroXmas', u'com.cycosoft.dtrack', u'com.gesila.digibike', u'apps.beneficial.Brazilian-Butt', u'net.ays.PROD651963', u'com.hulaoo.ban', u'com.aireader.ershishi', u'com.nhncorp.m2app', u'com.sitonthegold.alphabetspaincoloringbook', u'com.imobilco.ichitalka2', u'com.appublisher.app.dailystudy', u'com.flyingnayeem.WebBrowser', u'fr.m6.m6replay', u'com.gameluckstudio.scrollcolors', u'com.glu.gordondashx', u'com.MostCore.LiveTuberStory', u'com.highscorehero.hovercraft', u'net.ays.PROD625106', u'com.gamegou.realkick', u'com.kidsfunclub.farmingday', u'com.fag.wrestling.cage.revolution.game', u'com.blueskywater.supermarket', u'oye.pvb.all', u'com.itchmedia.ta3', u'com.ckapponline.mathfunfirstgrade', u'com.hothw.wdsgame82ad', u'com.bigleapstudios.themagicaljourneyfree', u'com.fungoapple003.TiYuZhiBoDaQuan', u'it.apptoyou.spesafacile', u'com.sprakelsoft.misterjump', u'com.naquatic.guncraft', u'com.vespergames.offroadjeephillracingrallydrive', u'com.ozitech.offroad.driving.mania', u'com.ddongkang.gifviewer', u'com.aocinsurance.mobile', u'malisa.photostudio.DrawAndWriteTextonPhotoApp', u'com.savysoda.pixelStarships.watchkitapp', u'il.co.matkonimbareshet', u'com.mybogame.tetris', u'it.spaghettiinteractive.scopapiu', u'com.electronicfunzone.badmintonsportsimulatorfree', u'ru.mybook.app', u'intentsoftware.maumaulite', u'com.ejiahe.dyqx', u'net.fanship.iSafePlay', u'sg.orionarts.airhead.b2earth', u'com.bitmango.flowline', u'com.ovatel.ovatel', u'com.DirexplayLab.JailbreakTheGame', u'com.lilithgames.shootyskiescny', u'com.fourdesire.spacewalk.watchkitapp', u'com.sprakelsoft.atcmania', u'com.iwaiterapp.RajdootPettsWood', u'com.zipzapgames.trafficjamrider', u'com.bigleapstudios.daydreamfree', u'com.itwcalculator.calculatorforipadfree.watchkitapp', u'com.senspark.Lines-98', u'com.phenomenalelements.LexicENlite.watchkitapp', u'com.games2win.highschoolparking', u'com.lenovo.anyshare', u'net.footmercato.mobile.footmercato', u'com.silvercrk.spades-free', u'com.fraoula.followheropro', u'com.yes366.ParticleInput', u'com.aircanada.csp.aciclient.watchkitapp', u'com.nutrahealth.5MinWorkout', u'com.qiniusoft.ContactsSyncIAP', u'jp.gocro.SmartNews', u'net.ays.PROD643289', u'com.xtremelabs.ncaasports', u'com.i6.toygame', u'com.hothw.wdsgame161ad', u'com.geniussoftware.GeniusScan', u'com.electronicfunzone.karategirlfightingfree', u'com.yujia.lianlianapp', u'com.myie9.mayiliulanqi', u'com.whoami.tssc', u'be.SO.hfr', u'com.july.july1', u'com.enchantedcloud.photovault', u'com.july.july5', u'com.iwaiterapp.TapasdelCorezn', u'com.bichtran.fileshop', u'com.gemsoftware.textme', u'cn.dict.wys-rhhr', u'com.whoami.wxmz', u'com.gamesbannernet.taekwondofightingfree', u'com.joybits.doodlecreatures-free', u'com.sudzy.laundryheroes-app', u'com.gamehivecorp.kicktheboss2', u'com.Science.Cyclops', u'com.duoamon.frog', u'com.ay.app655373', u'com.carscanner.prod', u'com.animocabrands.itunes.hoverRider', u'com.deruss.ContactSyncLite', u'com.hujiang.CCTalk', u'com.bitmango.woodblockpuzzle', u'com.heigames.superbunnyworld', u'com.topfreegames.spidermonkeyfree', u'com.ymt360.mass', u'com.belo.a4a3d7cd76b1b6aa7bcfd4563243c813', u'com.scopely.headshot', u'com.luge.crush', u'com.withgg.NeonBall', u'com.creativemobile.dragracing', u'com.HopMap.HopMap', u'jp.co.crooz.ios.AppDropAssault', u'com.tabtale.pjprincessparty', u'com.pinpinteam.vikings', u'com.labarber.marcaplus', u'com.meiriyiting.app', u'com.readyapp.gContactsPro', u'com.tailster.app', u'com.pasgames.moneyordeath', u'com.rovio.Seaside', u'com.ipopapp.zipbrowserfree', u'com.fullfat.ios.agentdash', u'com.jellybtn.cashkingmobile', u'fr.telemaque.monihoroscope.watchkitapp', u'com.playfirst.cookingdashx', u'com.doapps.02c81d50e7a767c8153677647dbfd406', u'com.ctrip.vbooking', u'com.naquatic.civclicker', u'se.maginteractive.Rumble', u'com.l180.g91ad', u'com.bonacasa.suurstoffi', u'com.kidsfunclub.babyphotofun', u'net.ays.PROD641159', u'com.tellurionmobile.tCraft', u'com.games2win.parkingfrenzy', u'com.moose.shopville', u'com.nextgames.twd', u'com.kidsfunclub.babypaint', u'com.605Studio.Font-Cards', u'com.sportsdirector.myfcm', u'com.wind.moneymasterfree', u'com.sunstorm.ff', u'com.JingPaiBookCity', u'com.blackbeltclown.slushy', u'com.iwaiterapp.ShishaKingTilst', u'com.2KSports.WWE2K14Mobile.watchkitapp', u'net.ays.PROD551265NEW', u'com.magisterapp.allghoi', u'com.breadtrip.breadtrip', u'com.kidbabytoddler.preschoolmemorymatch', u'com.tiaooo.aaron', u'us.kr.baseball', u'fi.ksshp.bpksshp', u'cn.dict.sw-xxyhhycd', u'com.cp24.cp24iphoneapp', u'cn.dict.sccs-xhtjycd', u'com.koudai.weidian', u'com.vtrump.musicmotion', u'com.purplekiwii.mblink', u'com.jalsaa.snake.and.blocks', u'com.iwaiterapp.BabasPizzaria8600', u'com.qwertytoki.workoutholic', u'net.entangledmedia.younity.ios', u'il.co.opentech.israelhayom.Hebrew.iphone', u'com.rovio.AngryBirdsHalloween', u'com.shunze.FYongBIX', u'com.app.musicloud.janis.paid', u'com.macsoftex.onlinevideoplayerfree', u'com.tov.itunes.ben10UltimateAlien', u'com.duoamon.moto', u'com.lucasarts.starts', u'com.zynga.looneytunes', u'com.BulkySports.PlaySoccer2017', u'com.nanglok.june', u'com.torpedo.strike.submarine', u'net.ays.PROD573027', u'com.pocketcreators.Manbo', u'com.microsoft.powerbimobile.watchkitapp', u'com.tidalh.vampireCN', u'com.ilbsoft.irelax.watchkitapp', u'com.FDGEntertainment.Autosplit', u'com.hibymusic', u'cheats.editions.for.sims.all', u'com.ickmhrss.kmsbt', u'com.tabtale.babyandpuppy', u'com.ascellamobile.project17', u'com.cisco.hnbu.connectcloud', u'com.fivemobile.wattpad', u'com.kidsfunclub.babyairport', u'net.p4p.Chest', u'com.gil.dropboxnplay1', u'me.luckyvest.tAtwS4', u'com.funedukidsgame.icecreammatchinggame', u'com.nosetime.perfume', u'com.zyos2t032.FJzC0A9zxg4863', u'net.ays.PROD647285', u'com.gps.tracker.app', u'com.iwaiterapp.BenzBurgers', u'com.nanovationlabs.escalate', u'com.enhance.gre3K', u'me.luckyvest.0CMsRV', u'com.vostu.minifazenda2', u'com.lqdstudio.fo4', u'us.kick9.k3000000032c3201000001', u'com.oneothergame.7min-butt', u'il.co.yoledet.app', u'com.maplemedia.snowboardpartyaspen', u'com.gold.portraitbank', u'cz.unisbook.klient', u'com.hg.pacificfrontfree', u'com.tuokio.smashtheschool', u'com.macsoftex.AVDownloaderFree', u'com.belifestyleguru.ContractionsTracker', u'com.snkplay.connect.dots.kids', u'com.gu.extreme.city.taxi.simulator', u'com.awem.cradleofempires.ipad.watchkitapplication', u'com.iwaiterapp.SouthernGrillAndMasterSushi', u'com.zofos', u'nl.umcutrecht.bpumcutrecht', u'com.BulkySports.Soccer2016', u'com.winrgames.fancyflyer', u'com.dongyu.freeread', u'com.sigma-team.alienshooterfree', u'com.sap.apps.Mobi.release', u'com.app.museumgo', u'com.maltd.petsimulator', u'com.gamesbannernet.waterskiingfree', u'com.ozitech.motor.bike.stunt.race.game', u'cm.confide.ios.watchkitapp', u'net.ays.PROD521072', u'com.iaftt.flightboardpro', u'com.duoleonline.app', u'com.cocoplay.cocoiceprincess', u'com.tivola.horseworld.ranch', u'com.tabtale.myfirstcrush', u'com.ProjectiOSABCKidsLearning.kaowrote', u'com.realtechvr.kosmikrevenge', u'com.mafengwo.wengweng', u'com.academmedia.MotoRacing3Dadsdk', u'com.changiairport.cagapp', u'com.ohbibi.MotorWorldBikeFactory', u'com.meelive.ingkee', u'com.cownado.frank', u'com.songone.song-1', u'com.whoami.tyrb', u'com.thevoxelagents.tc3', u'com.iwaiterapp.IndianaRestaurantCoventry', u'com.sunstorm.gv', u'com.apowo.cathouse', u'com.sunstorm.summer', u'cn.dict.sw-xxtjfcd', u'com.99mobileapp.relaxpaid', u'com.jack.ManHuaDaQuan', u'com.mirage-lab.BoomLandFree', u'com.born.doctor', u'com.tabtale.icecreammaker', u'com.batteryacid.jamcity', u'com.localdrive.MeuVeiculo', u'com.libii.candycarnivalcn', u'com.taigagames.incrediblehakfree', u'ru.crazybit.experiment', u'com.tabtale.babiesdressup', u'com.libii.candyairportcn', u'com.exphinx.SimpleTXT', u'com.webmyne.dunkhitcrazyballshot', u'com.gcpro.ultimate.kungfu.girl.street.fight', u'com.ticklestudio.lazer.tag.challenge', u'com.resultadosfutbol.resultadosfutboliphone.watchkitapp', u'com.dts.ambulance.driver.simulator3d', u'HardTime', u'com.idreamsky.seerrun', u'com.vitalaire.pneumologie', u'com.duotin.fasion', u'com.bensatterwhite.bear.simulator', u'com.toprankapps.secretphotofree', u'com.HQmai.app', u'com.newssynergy.wiat', u'com.AiApps.UnderwaterBasketballPro', u'com.fromthebenchgames.fantasymanager.football5', u'net.medicopedia.mobile', u'com.manseki-app.minatoku', u'com.partagames.choppa', u'com.aireader.nrlzhx', u'cn.dict.yw-xfh', u'me.luckyvest.cWT1g8', u'com.hearth.movematch', u'com.jrustonapps.newleaf', u'com.wentao.gaoxiao', u'com.kanecheshire.MacID.watchkitapp', u'com.eliteapp.ZXContacts', u'com.tabtale.thefisherman', u'com.topface.topface', u'com.biomsoft.trackchecker', u'com.jrcookie.nekadarmotosiklet', u'com.thunderbull-entertainment.deathfromspace', u'com.snkplay.one.touch.line.draw', u'com.zebrogs.Crick-Fast-Live-Line', u'com.vietlotus.envndictfree', u'com.chroma-studios.twist3d', u'com.freshsqueezedapps.vidstitchfree', u'com.kidsfunclub.dentistmania', u'com.fluik.OfficeJerkChristmas', u'com.stackstation.teamvonmoger', u'com.upopa.hopeless2', u'com.upopa.hopeless3', u'com.oneothergame.7min-fitness', u'com.fullfat.blockybasketball', u'com.capplay.letmego', u'com.yucen.fanrenjie', u'com.cocoplay.cocostarnew', u'mech.robot.futuristic.battle', u'com.wsa.helicity', u'com.nhaccuatui.mobile.version2', u'com.unlimapps.unlimmusic', u'com.cocoplay.cocoiceprincesstwo', u'com.netease.cartoonreader', u'com.turbochilli.rollingsky', u'com.mobirix.casinoking', u'com.perfecttapgames.connectthecubes', u'com.ximad.puzzlesmagic', u'net.ays.PROD621538', u'com.ykying.airdisk', u'com.sozap.superhoops', u'com.onavo.onavoApp', u'com.psvn.KidsAirportAdventures', u'com.elasticm2m.auto.skyforce', u'com.purplekiwii.mbhexa', u'com.liguangming.Shadowrocket', u'au.com.tinmangames.choices.watchkitapp', u'com.shortcovers.shortcovers', u'com.funplus.familyfarm', u'com.sunstorm.cookie02', u'net.xxsy.bookreader', u'com.onbeat.ElectricGuitar', u'com.qule.tan8yinyue', u'com.soundcloud.TouchApp', u'com.JunboJiaApps.Folder', u'com.ultralabapps.filterloop', u'com.storeuser2.mc', u'com.mirmay.PrivateDownloaderFREE', u'com.Treasure.legend', u'www.hujiang.com.hjDictByDB', u'com.fag.city.garbage.truck.simulator.2018', u'net.p4p.Buttocks', u'com.coppercod.spades', u'com.digibot.suvracing', u'com.triunff.app', u'com.playsaurus.clickerheroes', u'com.evput.borjomi', u'com.nwstudio.coloringbook.dinosaur', u'org.wikimedia.wikipedia', u'com.calconvert.calculatorxfree.watchkitapp', u'com.rsz.StickmanBasketball', u'com.happymagenta.dim', u'com.funedukidsgame.dinosaurmemorymatch', u'jp.emiwatanabe.ShibuyaBasketBall', u'com.sunstorm.hsd', u'com.mobilaxy.bowling3d.ios', u'com.entertainmentarena.curlingsportsimulatorfree', u'com.stanleylam.sudoku-variants', u'me.igis.gisrss', u'com.aza.sharp.shooter.traffic.sniper.shooting', u'com.reliancegames.superpixelheroes', u'com.amp.ios', u'com.i6.policecardrivingsim', u'jp.konami.pessmart', u'com.azhibo.app', u'com.naquatic.monstercrafter', u'net.ays.PROD617989', u'co.pushapp.lilachelgrably', u'com.fungames.blockcraft', u'com.yuansen.ManHuaZhuo', u'com.appnana.saveplus', u'com.snkplay.dots.boxes.puzzle', u'com.havos.wordsearchfree', u'com.mytalkingkittycat.virtualpetgames', u'com.reliancegames.rschampions', u'com.topfreegames.bikeracefree', u'dongmusicplayers', u'com.plattuo.zombie.breakout.killer', u'com.duotin.disvcar', u'com.pptv.iphoneapp.watchkitapp', u'com.mashentertainment.driftsimulatoraventador', u'com.dts.real.car.driver.stunt.sim', u'com.bitolithic.ThinkBook2', u'com.tabtale.crazypoolparty', u'cn.dict.oxford-necdict', u'com.gamenauts.ninjafishing', u'com.onesscripter.otb', u'org.binguo.GifAlbum', u'com.rovio.angrybirdsstarwars', u'com.vincesoft.iqtest', u'com.nmsapps.videoDLPRO', u'com.rovio.baba', u'com.jumei.iphone.watchkitapp', u'com.blueoxtech.7LW', u'mobi.byss.bbsoundfx', u'im.maya.legendaryheroes', u'com.77577.comicsisland', u'com.snowleopardgames.lifetotal', u'com.happymagenta.wingypop', u'com.13thlab.minecraftreality', u'com.shen.siguoonlinenew', u'com.doplayer.doplayerer', u'com.Studio17.drawrider', u'com.zplay.zombietsunami', u'net.p4p.Legs', u'com.mippin.iphone.bw.m408833', u'com.lvxian.guahao', u'com.hentr.xiaoshuoydq', u'com.ubmgames.formula.f1.racing.top.speed.drift.car', u'com.takatrip.ios', u'com.sprakelsoft.crocsworld3', u'br.com.tapps.toilettime', u'cn.dict.sccs-xxhzd', u'com.aim.rallyhum', u'com.mashentertainment.usarmywarsurvivalisland', u'com.rsz.StickmanIceHockey', u'com.medicaljoyworks.prognosis', u'com.ancientec.keyboardfree', u'com.muddygames.call.impossible.sniper.world.war.II.hero', u'com.tabtale.babybirthday', u'com.stain.offroad.jeep.hill.racing', u'com.libii.dreamschoolzh', u'com.devalios.Valuta-Konverter', u'com.AiApps.HighWizardArchePzclFree', u'com.Kooapps.iluvMozart', u'EK6FF87BD6', u'com.nest0r.iread', u'com.mobiledynamix.crossme', u'com.ifttt.ifttt.watchkitapp', u'com.nwstudio.monaca4.princesscoloringbook', u'io.smartsys.cardiff', u'com.tabtale.cinderella2', u'com.pavillon30.tir', u'com.msnbc.today.ipad', u'com.greenpanda.sudoku', u'com.mk.melody', u'roll-hog2', u'com.dts.manual.bus.driving', u'com.greenrobot.pirates', u'com.fe66.slgame122ad', u'com.j1an.j1an3', u'com.textmeinc.textme2', u'com.1button.mrjump', u'au.com.metro.DumbWaysToDie', u'com.yu.NewYeSeVideoPlayer', u'tr.com.digitalcarmagazine.dergi', u'com.2taptap.voicemod', u'com.QuantumApps.TeacherBasketballPro', u'de.mstegmann.dmlive', u'com.QuantumApps.PoliceArrowArchZhkgPro', u'com.tiggel.truthordare', u'com.theclashsoft.webvideodownloader', u'com.stickman.archery.king', u'net.lightwood.WordSearch10K', u'com.anjuke.broker', u'com.iwaiterapp.SamsHamstead', u'com.mydol.talk', u'com.weico.weicopro4.watchkitapp', u'com.rovio.angrybirdsstarwarsii', u'com.grlgames.fulldecksolios', u'com.netease.news.watchkitapp', u'cn.dict.sccs-30khycd', u'com.ptminder.fitstopbundall', u'com.thatbbs.kuaikanmianfei', u'com.tabtale.messychocolate', u'com.chillingo.moderncommand', u'com.sunstorm.dnut01', u'net.ays.PROD624004', u'com.rsz.StickmanBaseJumper', u'com.kingdee.MyMoney.watchkitapp', u'com.injurymap.injurymap', u'com.eryodsoft.labelote.lite', u'com.yoambulante.mrludo', u'com.alibaba.icbu.app.seller', u'com.boomfox.sc', u'com.medicinex.Migraine', u'cn.dict.wys-dccd', u'com.fungo.TVZhibo', u'com.foursakenmedia.bugheroes2deluxe', u'com.kidsfunclub.babyroom', u'com.i6.truckdrivingsim3d', u'org.vfgamestudio.TowerBuildingSky', u'com.windytv.ios', u'com.ionicframework.isistravel638565', u'es.socialpoint.MonsterCity', u'com.iwaiterapp.IndianChefChelmsford', u'com.happymagenta.circles-lite', u'com.wlqq.consignor', u'com.amtrak.rider', u'com.dariazhdanova.dinomountfactoryfree', u'com.yunos.tv.tvhelper', u'com.hearstnp.mysa.ipad.paid', u'com.rsz.StickmanDownhillMotocross', u'com.havos.wordpuzzlefree', u'com.rovio.battlebay', u'com.joybits.doodledevil-lite', u'com.wang.kungfu', u'com.skyjos.gdrive', u'com.upsload24yahoo.com.flappy2cars', u'com.gamebox.newshucheng', u'com.FinalSimulations.RoosterActionFight', u'com.cognifit.Cognifit', u'com.asmallgame.Hanger', u'com.vizor-apps.Mahjong', u'neomatrix31hotmailcom.agar', u'com.bubblebobble.saga', u'com.beo.crazy.parking', u'com.ekkorr.endlessfrontier.global', u'com.sriver.aab9f77805a50eed3dad83c1cbc11723', u'HM.wristband', u'com.vixlet.kng', u'com.letitguide.dragonvalebreed', u'com.invictus.giveitup2', u'frame.pix.bk.paid.mincroft.linch', u'com.wuteuy.mathgameforkids', u'com.chugulu.rollingjumplite', u'com.featherweightgames.stampede', u'com.AiApps.BowHeroFuryYofkFree', u'com.aim.racing', u'com.trexfitnesssystems.www', u'com.hodge-podge-games.taruzom', u'se.mobilestorytelling.coastalpast', u'com.biomsoft.mp3audiobookplayerfree.watchkitapp', u'net.ays.PROD642762', u'com.gamerstech3d.us.army.training.commando.courses.game', u'com.dirtybit.funrun2', u'com.gamerstech.realfirefighter.cityheroes', u'com.future.flight.scan.booking', u'com.tabtale.icetown', u'com.aim.asphaltriders', u'com.baichanghui.app', u'com.iwaiterapp.TomBellFishChips', u'com.ZhongGuanWangKe.BankExam', u'com.mobage.ww.a1037.fluttermobileios', u'com.naquatic.BasketballShowdown', u'com.XaggerApps.A1JackpotSpinSlSiccPro', u'org.baby.food', u'com.pixowl.tsb2', u'com.threed.crazy.santa.dad.simulator.christmas.game', u'com.ipaitao.miaomiao', u'cn.dict.wys-yihhyi', u'com.sriver.id2878', u'br.com.devari.lencois', u'me.luckyvest.udU2RJ', u'com.bigbluebubble.msm2', u'com.lbadvisor.Today', u'com.kidsfunclub.crazyhair', u'net.ays.PROD635646', u'com.facebook.smilekidsgames.catcatching', u'com.chebada.bashiguanjia', u'com.alternativeindustries.Cocktails.watchkitapp', u'com.kidsgamesstudio.newbornkittencare', u'com.dunkball.com', u'com.mf.monster.cn', u'com.traxxas.traxxaslink', u'com.heavydutyapps.SuperNotePro', u'com.tencent.qqlivekid', u'mobi.byss.ring.tone', u'com.mcb.myvideo', u'cn.dict.wys-xhhx', u'com.bulof.LiveTVPlayer', u'eu.bandainamcoent.galagawars', u'com.myYearbook.MyYearbook', u'com.fullfat.blockyhockey', u'com.apowo.xiaoai04', u'com.ideabox.sixkillers', u'com.trivialtechnology.SpiteLite', u'com.playwithfriendsgames.ShoppingMallParking', u'com.maneerat.birdcoloringbook', u'br.com.tapps.vloggergoviral', u'com.ketchapp.flippy', u'jp.co.ofcr.cm00', u'com.gu.jungle.dino.hunting', u'com.dkmace.danger4s', u'com.HobbyistSoftware.VLCStreamerFree', u'com.bigleapstudios.officehuntfree', u'com.kidsfunclub.mommyshelper', u'com.mysouk.app', u'com.hashtagdentist.apps', u'com.picooc.picooc', u'me.luckyvest.wF66CC', u'com.tianji.MiniCad', u'com.eliteapp.ContactsSyncPro', u'com.newkline.avrpro.watchkitapp', u'com.kg.GoldenManager', u'com.outfit7.talkingginger', u'com.mobile-softing.coinmaster', u'com.livelocl.app', u'com.starkey.thevilla', u'net.stfj.updownsolitaire', u'com.sdeurope.itunes.helloKittyCafeUS', u'com.gameresort.stupidzombies', u'com.yuansen.StoryBook33', u'com.rambax.simpletransferlite', u'com.kidsfunclub.royalrescue', u'com.naquatic.stayingtogether', u'com.yuansen.ManHuaZhuo33', u'com.rovio.stellapop', u'com.aaronray.splitcamera.watchkitapp', u'com.bpgames.bs2', u'com.rovio.gold', u'com.rsz.StickmanTennis', u'com.tapabit.ragepad.ios', u'au.com.myspringday.app', u'com.finz.RealBoxing2016', u'com.jackyu.downloadaccelerator', u'Ff2lqVpcZ2.ComicZeal4', u'com.RuiChuang.websitesNavigation', u'jp.fivegate.ec.Flemama', u'com.threed.real.gangster.police.chase.water.surfing', u'com.jack.BilingualNovel', u'com.ycgame.tk1chspay', u'com.iwaiterapp.AlKebabishAylesbury', u'com.artcom.Hoccer', u'cn.jgyang.wild.secretphoto', u'com.pitongcheng.ios', u'com.ccffgames.AntSmasherXmasFreeWorld', u'com.ultralabapps.instagrids', u'com.360buy.lebook', u'com.devgame.fixies3dworldfree', u'com.l180.g51ad', u'com.fatfish.striker', u'com.i6.airplanepilotsimulator3d', u'me.imgbase.imgplay', u'com.appadvisory.poise', u'jp.co.ns.jj', u'com.boomfox.qwevideolite', u'com.itwcalculator.worldradarfree', u'com.academmedia.MountainBikeSimlite123', u'com.js.offroadcardrivingsimulator', u'com.playcreek.deathworm-lite', u'com.sumavision.UVideoFuZhou', u'com.PSVStudio.KidsHelloween', u'at.hs2n.SchnopsnHDLite', u'com.vectorunit.yellow', u'com.sts.heavyoiltransportertruckdriver', u'com.ipnossoft.asiansleepfree.watchkitapp', u'jp.ne.wi2.TJWiFi', u'com.yu.LocalPlayer', u'com.i6.SniperShooting3D', u'com.maximko.cube', u'com.popcap.ios.PvZ2', u'gxp.countryguide.italy2018', u'com.doplayer.liuji', u'melanieapp.englishspeaking3', u'com.cocoplay.cocoparty', u'com.miniclip.soccerstars', u'com.pp.zuma', u'com.BLochmann.chess', u'com.app.musicloud.janis', u'com.smyno.ios.smyapp.avila', u'com.luck.newdianshizhibo', u'net.wooga.bubbleisland2', u'uk.co.olsonapps.5Abs', u'com.denisov.mp3player', u'com.lsn.localnews146', u'com.kellyproductions.minechatlite', u'com.tabtale.donutshop', u'com.babyhub.onet.connnect.links', u'com.bibo.fidgetspinner', u'dk.tactile.discoducks', u'com.bitmango.ap.pipelineshexa', u'com.libii.winterpartycn', u'com.fe66.slgame271ad', u'com.doapps.myWeather', u'com.shvagerfm.plank', u'com.kanaldiphone.kanald.watchkitapp', u'com.entertainmentarena.lasertagshooterfree', u'com.wenlong.huoguo', u'com.tabtale.makeupsalon', u'com.playwithfriendsgames.CityRoofTrucker', u'com.anyuchen.kaijuan', u'com.luck.tvprogramme', u'life.mvpsports.strive', u'com.hg.ninjaherocatsfree', u'com.z.call', u'com.tabtale.pizzamaker', u'com.kidsfunclub.babydoctor', u'net.wooga.jellysplash', u'com.QuantumApps.PoliceArrowArchFwszFree', u'com.BulkySports.StarsWrestlingRevolution', u'com.textmeinc.textme3', u'com.youmeng.wulingfeiche', u'com.Melesta.ToyDefenseFull', u'com.TelevisionBroadcastsLimited.fun', u'me.luckyvest.i9gZI9', u'br.com.tapps.moneytree', u'com.jan.jan3', u'com.youmeng.happysuperman', u'com.ipanel.yangquanhomed', u'com.samnang.Chreang', u'com.tuokio.smashtheoffice', u'iFl1', u'com.turner.rua2', u'com.gwhizmobile.mcgrawusmlestep1qa', u'net.ays.PROD549106', u'com.iverticle.rooming', u'com.aimme.odi', u'com.bitmango.blockjam', u'cn.dict.sw-xxcycd', u'com.academmedia.TransporterTruckadvsdk', u'com.procodemedia.KickboxingVS2a', u'com.batteryacid.highwayrider', u'com.alkemis.raidersquest', u'com.kiss2go.iphone', u'com.digibot.trafficeridderdp', u'com.tabtale.girlsband', u'net.ays.PROD545373', u'com.yy.fe', u'com.gamgo.venicemysterylite', u'com.ezone.Dive', u'cn.dict.sccs-xsyhhycd', u'com.satterwhite.goat.gone.wild.simulator', u'com.invictus.impossiball', u'com.maloose.mharphd', u'com.thepolydice.icook', u'com.fftda.edition', u'com.outofthebit.themill', u'com.aliphcom.armstrong', u'com.gpp.snowride', u'uk.co.bewhere.playable', u'com.nuatransmedia.dhba', u'app.blosher', u'com.ipopgame.gifplayer', u'com.bitmango.ap.rolltheballhiddenpath', u'com.cubecraft.build', u'com.AlexStudio.Squats', u'cn.lepihui.ios', u'com.aireader.hhx', u'cn.dict.shcs-chbxxszczjcd', u'com.capablebits.imagetransfer', u'com.dooparts.fantaliveseriea', u'com.backdoorapp.opendoor', u'com.yuansen.ManHuaZhuo44', u'com.donistudio.dogcoloringbook52', u'cn.gesila.ohbike', u'com.spilgames.mdsggg', u'com.litegames.okey', u'com.paraglidingmap', u'com.gamestudio316.happystickmanwheelsios', u'com.whitewaterlabs.Moni', u'com.ticklestudio.ultimate.battle.royalepvp', u'com.hothw.wdsgame152ad', u'com.gong.ji', u'com.crazylabs.cheatingtomfour', u'com.woozworld.woozworld', u'com.jiliguala.ios', u'com.yy.more', u'com.iwaiterapp.HenrysChineseFastFood', u'com.doapps.3c7781a36bcd6cf08c11a970fbe0e2a6', u'com.nlhealthcareclinics.bpmedinova', u'it.commongrounds.cmit', u'com.secondarm.taptapdash', u'com.happymagenta.ck', u'com.kidsfunclub.doctorx', u'com.fe66.slgame171ad', u'com.wellfit.phyzseek', u'com.bixbyapps.instacrop', u'com.js.offroadjeepmountaindriver', u'com.ludia.dragons', u'vn.kvtm.khuvuontrenmay', u'com.ironhidegames.ironmarines', u'com.enhance.toeflListen', u'com.LAndL.HandyBill', u'com.gwhizmobile.mcgrawpsychiatryqa', u'moviliApp.SaforcadaApp', u'com.spigoworld.yatzy', u'jp.co.sony.audio.companion', u'com.getmuv', u'com.spookyhousestudios.bubbleshootix', u'com.bsn.mercury', u'com.ratrodstudio.skateparty2lite', u'com.sgn.pandapop', u'com.idreamsky.bombhunters', u'com.fluik.OfficeJerk', u'com.TechMob.livemixtapes', u'com.AiApps.BowHeroFuryProBgxsPro', u'com.wate.reader', u'com.tencent.now', u'com.kiloo.subwaysurfers', u'com.bitmango.wordscrush', u'com.yy.pomodoro', u'com.cnn.iphone.watchapp', u'com.freshgames.titanic', u'com.turner.cnvideoapp', u'com.bow.master', u'com.iwaiterapp.MammasPizzaThorntonHeath', u'com.ricepo.app', u'com.jan.jan6', u'com.yclients.mobile.g45884', u'com.wukongtv.remote.watchkitapp', u'com.sriver.8e6313c7f610ef1e4e1e7baca2878b8e', u'com.bitmango.sudokucafe', u'com.dodock.ios.footylight', u'com.ionicframework.myionicproject595177', u'com.chillingo.robberybob', u'net.wooga.pearlsperil.phone', u'com.codefavor.SecretCalc', u'com.kidsfunclub.icecreamdlite', u'com.rovio.BadPiggies', u'com.commsource.BeautyPlus', u'com.nanoha.MagicParticle', u'com.invictus.helirescue', u'org.mozilla.ios.Firefox', u'com.minitech.miniworld', u'com.mindmark.washingtonec', u'com.hentr.mianfeikanwangluo', u'com.trialdash.mmc.setpoint', u'com.godzilab-games.HappyStreet', u'nl.sportho.bpsportho', u'com.ohsame.same2.0', u'sk.petpass.my', u'ThanhVT.LearnEnglishByListening', u'com.sunstorm.crazydessert', u'kam.app.kim.mincroft.linch', u'net.ays.PROD633443', u'com.quangtrung778899.TicTacToe', u'com.pinpinteam.pyrojumpchallenge', u'com.yuansen.AudioBook33', u'com.j1an.j1an1', u'com.army.jetpacks.wargames', u'com.Beltheva.Alpaka2', u'com.happymagenta.boat', u'com.nestlabs.jasper.release.watch', u'com.senspark.ShootDinosaurEggs', u'com.bitmango.ap.fruitsmania2match3', u'com.playwithfriendsgames.Trials3Parking', u'com.bigsmashstudios.xproject', u'com.kidsfunclub.babyhouse', u'com.xyrality.BKClient.watchkitapp', u'com.nct.musiclite', u'com.sunstorm.candy', u'com.mhunters.app', u'com.iMobSoft.PDFMakerLite', u'com.mashentertainment.driftsimulatorc63amg', u'com.ereader999.WangLuoChuanYueXiaoShuoJi', u'com.bebo.bebo', u'com.kongregate.mobile.battlehand', u'com.kandymag.kandymagazine', u'com.creactive.Millionnaire-Gratuit', u'com.115.115netdisk', u'com.AndrewBenson.ColorCannon', u'net.ays.PROD644780', u'com.Iremember.IRM', u'com.glu.deerhunt16', u'eu.nordeus.TopEleven.watchkitapp', u'com.sweetgames.indian.celebrity.royal.wedding.salon', u'soheilvb.iMD', u'com.ilyondynamics.bubbleShooterClassic', u'youth.ctrip.com', u'me.luckyvest.WD4kAb', u'com.ea.ios.pvzheroes', u'com.pnixgames.bowlingking', u'com.kuyun.yoga', u'com.kidsfunclub.fashionstar', u'me.luckyvest.kODMcZ', u'se.feomedia.qkgermany', u'net.ays.PROD627132', u'com.applecg.conversation3', u'com.jane.ios', u'com.wx.mmisc', u'com.putatu.mobile.app', u'com.happymagenta.ff', u'hu.patikaplus', u'com.mobisystems.OfficeSuiteFree2.watchkitapp', u'appokod.pp.com.mincroft.linch', u'com.kjcity.answer.student', u'se.hellothere.skilltwinsfootballgame2', u'com.happymagenta.fy', u'com.happymagenta.fromcore', u'com.iwaiterapp.ChickenLaneLeigh', u'com.itimeteo.webssh', u'com.appcubby.mirror', u'com.BLochmann.sudoku', u'br.com.agenciaampla.mobi', u'com.iwaiterapp.MunchManiaLeeds', u'com.tabtale.kneatboutique', u'id.compro.dondayspheromoneindonesia', u'com.aim.limousine', u'com.futurebits.instamessage.free', u'com.lucidchart.app', u'com.deruss.ContactSyncPro', u'com.realtechvr.aft', u'com.beavertapgames.mikeyjumps', u'tips.to.save.battery.power', u'com.iwaiterapp.WokAmok', u'com.apps4freedom.colots', u'com.albertschweitzer.bpasz', u'com.magisto.magisto', u'jp.co.liica.mimikaki2', u'cn.189read.tianyishujia', u'cn.dict.sw-xxzczjcd', u'com.americangeneralmedia.tunekast1606', u'com.BulkySports.FingerSoccerFunUltimate', u'com.trivialtechnology.Spite', u'it.ud.microtek.ITTaxi', u'com.astraware.codewords', u'com.kidsfunclub.weddingdressup', u'me.luckyvest.1oNMCm', u'com.ubisoft.raymanadventurestv', u'com.dajiazhongyi.app', u'com.domtech.lightspeedsprint', u'com.umbrella.oktap', u'com.rovio.angrybirdstransformers', u'com.bauermedia.leckertagesrezepte', u'com.indiagames.procricket.apple', u'com.iwaiterapp.CityPizzaHobro', u'com.griffstudios.jumpie', u'com.ea.realracing3.inc.watchapp', u'net.ays.PROD627903', u'kimkamkam.kom.app.karl.kymir', u'com.fromthebenchgames.fantasymanager.liverpoolfc5', u'com.vfgamestudio.BillardsKingPool', u'com.bitmango.ap.blockhexapuzzle', u'com.miniclip.archery', u'fr.melty.www', u'com.kidsgamesclub.musicsparkles', u'com.bigleapstudios.thesmartkid', u'uk.co.bewhere.playable.chrome.pro', u'com.tabtale.birthfiasco', u'com.tencent.xin.watchapp', u'com.futuristic.gamez.stickman.monster.fighters.ring.battle.wrestling', u'com.hbi.fe2672296a661b7acdf9fe36f27e7a55', u'com.sunstorm.cupcake01', u'com.dashyknife.com', u'com.rdio.player', u'com.bitmango.block', u'com.fe66.slgame152ad', u'com.swishly.photocaster', u'com.war.of.cs', u'net.ays.PROD590146', u'com.newkline.hdvr.watchkitapp', u'com.Andy.jigongzhuan', u'com.gamewish.game.linestar', u'com.sybo.brim-cn', u'com.aardman.earlymanrun', u'com.mar.mar5', u'com.sticksports.sticktennis', u'com.js.offroad.hilux.jeep.pickup.truck.sim', u'com.hbkg.ShotZombie03', u'com.kidsfunclub.papergirl', u'net.domzilla.pdfpro', u'net.ays.PROD639962', u'com.sprakelsoft.jewelfever2h', u'com.ycgame.C1Cn', u'com.meitu.makeup', u'com.dinero.revistadinero', u'com.appscreationhub.usaforclosure', u'com.tabtale.oceanexplorermermaid', u'com.nbadigital.gametimelt.watchkitapp', u'com.evideo.diange', u'com.aticod.logosquizgame', u'com.aristokraken.motoracingchampionship', u'com.iwaiterapp.LuxusPizzaHerning', u'com.ubu.atUbon', u'com.chillingo.spicepirateshd', u'com.xiushuang.Dota2', u'com.tarampum.topsongs', u'com.xyrality.BKClientXmas', u'com.procodemedia.freewingchun', u'com.halfword.unify', u'com.plexapp.plex', u'com.Beltheva.Giraffe', u'com.fullfat.ios.flickgolffree', u'com.actionteam.shadowfighting3free', u'com.bigleapstudios.christmashousefree', u'com.luluyou.life', u'com.xyrality.CTClient', u'com.cocoplay.cocosummer', u'com.smgstudio.onemorebounce', u'fr.pneumolink.app', u'com.hutchgames.hillclimb', u'milanilic.photostudio.DrawAndWriteOnPicturesEditor', u'com.sogou.weixinheadline', u'com.gu.firefighter.truck.simulator', u'com.camerasideas.photovault', u'com.lilin.100', u'me.luckyvest.wXx1BL', u'com.hearstnp.chron.ipad.paid', u'com.youmeng.pingmanracing', u'com.aromdee.HiddenPhoto', u'com.crazylabs.myemma', u'com.kiwiinc.white.watchkitapp', u'com.iwaiterapp.wedoburgers', u'com.fungames.sniper3d', u'com.doubletapsoftware.basketballbattle', u'com.onbeat.fingerdrums', u'net.ays.PROD635742', u'com.verycreative.casesmart', u'com.mightyblocks.clashcraft', u'com.tebe.puzzlemanpro', u'com.mashentertainment.driftsimulatorregera', u'com.FitDegree.MarquetteUniversity', u'cn.wiz.wiznoteiphone', u'com.sts.TouristBusTransportSimulator', u'cn.dict.shjd-sxcbgccd', u'guitar.lite', u'com.turner.pocketmorties', u'com.firsttouch.story', u'com.icepine.cutmeout', u'com.ea.sims3deluxe.ipad.bv', u'com.kingdee.MyMoneyPro.watchkitapp', u'com.FinalSimulations.WresltingMania', u'com.peterweiss-apps.Clone-Sheep-Free', u'cn.dict.shjd-sxzjzycd', u'com.aristokraken.boxinggamesfightinggamesboxergamesjuegodeboxeo', u'com.boomfox.downloadslite', u'com.kidbabytoddler.vehiclecolors', u'com.zhangle.mobile.iphone.licai.watchkitapp', u'cn.mygames.atkp', u'com.stofledesigns.dicewithbuddiesfree', u'com.gameduell.gin', u'com.eyesthegame.lite', u'com.youmeng.supermanzombie', u'com.heigames.nomcat', u'com.bsn.mercurypro', u'com.eliteapp.ContactsSyncPro4', u'com.br.drift.speed.extreme.city.race', u'com.eliteapp.ContactsSyncPro3', u'com.kidsfunclub.catbirthday', u'com.yoloJapan.swift', u'com.zeptolab.ctrm', u'com.bigleapstudios.kidnappedfree', u'com.backflipstudios.ninjumpdeluxefree', u'com.iwaiterapp.SanFrederiksberg', u'com.elokence.akinator.free', u'com.thetisgames.fs2014.universal.free', u'com.readerLiesn.hope.GhostStories', u'com.playrix.fishdom-freeplay', u'com.solot.seafishing2', u'com.imobile.fishing', u'cn.dict.hdlg-ryhbsn2', u'de.mivagames.teamball', u'com.the9.KingReader.watchkitapp', u'com.procodemedia.franceproperty', u'com.vixlet.atp', u'com.8fit.app.watchkitapp', u'me.luckyvest.tmyqro', u'com.halfbrick.jetpack', u'com.zhang.ning', u'com.informationapps.criton.johnogroats', u'com.creative.xfisonicplayer', u'com.gameloft.unofriends', u'com.whoami.ztxs', u'com.appmania.com.red.rad.moreti', u'com.rsz.LineRunner', u'com.HobbyistSoftware.VLCRemoteFree', u'com.naquatic.FootballShowdown', u'com.aristokraken.kingofboxing', u'com.upsload24yahoo.com.flappystickhero', u'com.7ravenstudios.dynabomb', u'com.iwaiterapp.ChinaGardenLondon', u'com.jack.AllDrama', u'jp.co.mapion.wachapon', u'com.petr.mp3player', u'com.outerminds.tadpoletap', u'com.clickgamer.AngryBirds', u'com.xiushuang.m1.LOL', u'com.kick.auto.theft.gang.wars', u'com.tabtale.thefrogprince', u'com.bostonceltics.iphone', u'com.shengcai.STeBook', u'com.tabtale.pjpartytt', u'com.martianstorm.temposlow', u'com.appicfun.translatorfree', u'cn.touna.financialPlan', u'net.ays.PROD645682', u'com.ea.sims3deluxe.ipad.bv.c', u'com.rsz.StickmanTennis2015', u'com.sanopy.pi', u'com.geewa.PLT3', u'at.ner.LepsWorld3Free', u'mobixus.net.iVideoDownloaderLite', u'com.limasky.doodlejumpfree', u'com.iwaiterapp.RangeelaTakeawayChelmsford', u'com.disney.SwampyGameLite', u'com.rovio.angrybirdsgo', u'com.azulblaze.princesscoloringbook', u'com.GoldenHammer.GHBowlingIOS', u'com.bunaapp.bestmermaidcoloring', u'com.oitc.lebanesebloggers', u'com.trophymanager.ultra', u'com.rovio.angrybirdsfriends', u'com.pgs.navy.gunshipsurvival', u'com.gramgames.1010', u'com.chillingo.warfriends', u'com.cocoplay.cocogirl', u'br.com.tapps.tinyautoshop', u'com.blank.cheapflight', u'com.rovio.AngryBirdsSpace', u'com.cranberrygame.savethebanana', u'com.ea.tetrisblitz.bv', u'com.migugame.paonan5', u'com.aliphcom.upopen', u'com.naquatic.shootingshowdown2', u'com.vgtime.vgtimeapp', u'com.tabtale.80days', u'com.united.UnitedCustomerFacingIPhone.watchkitapp', u'com.rubeacon.letim', u'com.webgames.lust', u'me.luckyvest.rOkHvL', u'com.neonfun.catalog', u'com.rcs.giroditalia', u'com.Andy.yuantengfei', u'com.datafreezer.JetBallArkanoid', u'net.ays.PROD557437', u'cn.com.LangEasy.LangEasyRepeat', u'com.scribd.iscribd', u'com.lsn.localnews26', u'com.tekkinnovations.fars', u'com.squareenix.koozac', u'com.sunstorm.pizzafoodmaker', u'se.wntr.masapo', u'com.luvtrails.app', u'com.changyou.hk.pkonline', u'com.chinzilla.littleAlchemist', u'com.tinycorp.familyguy.watchkitapp', u'com.cantinamexicana.app', u'com.eunies.kitchen', u'com.av.juzi', u'com.nutriease.haohaochi', u'com.sunstorm.petsalon', u'com.realtechvr.skyorb.watch', u'com.outplayentertainment.mysterymatch', u'com.Zigacu.DownHillBikeSimulatorMultiplayer', u'com.magika.monsterlegends.mushdigimon', u'com.lastminute.lmn.LastMinute', u'com.procodemedia.KravMagaFirearms', u'com.vespergames.bicycle.racing.game', u'com.fullfat.flicksoccer', u'at.ner.superJump', u'net.ays.PROD618135', u'com.ilegendsoft.MBrowserPro', u'com.scelion.crystalcube', u'com.fm.xy', u'BookMyShow.com', u'com.sunstorm.foodmaker', u'com.fungoapple.mobileTVLive', u'com.naquatic.soccershowdown2015', u'com.naquatic.GunCollector', u'com.jbinary.magiclockscreenlite', u'com.bluepandaapps.advent2012volumes', u'br.aquafit.cliques', u'com.aquimo.bowling', u'ctrip.com.watchkitapp', u'com.js.mountain.offroad.jeep.hill.drive', u'com.snkplay.kids.maze.educational.puzzle', u'cn.dict.sccs-czyydcd', u'com.js.eurotrainracinggame', u'com.gameley.princess', u'com.nicegame.stickpro', u'com.mymixtapez.ios', u'com.procodemedia.australiaproperty', u'com.ea.realracing3.bv.watchapp', u'com.poppin-games.moo', u'com.activaweb.matchendirect', u'com.rovio.angrybirdsrio', u'com.imoreapps.filexplorer', u'org.lesnyak.easymenu.mobile', u'com.dmitriygolubev.explayer', u'com.unimob.soul.warriors', u'nl.hagaziekenhuis.bphagahart', u'com.happylabs.hps', u'com.momotov.pwfh1z1lite', u'com.FDGEntertainment.RedBall4Free', u'com.bigleapstudios.playroomfree', u'com.kidsfunclub.designitprincessedition', u'com.scopely.wheeloffortune', u'net.ays.PROD628536', u'me.luckyvest.hGJJUm', u'com.bigleapstudios.ghostshipfree', u'com.playwithfriendsgames.Roundabout', u'uk.co.bewhere.unblock.social', u'com.gameprom.software.pinballhd.collection', u'cn.cellapp.Color', u'com.2ksports.mynba2k17', u'cn.ultralisk.gameapp.game15', u'com.rsz.StickmanSoccer2014', u'com.evgenychaikin.skullheadbikeriderfree', u'com.happylabs.happymall', u'com.tencent.ied.app.lolbible', u'com.bigleapstudios.themummyfree', u'com.xyrality.CWClient', u'fm.ask.askfm', u'com.iknowledgesolutions.picsecretlite', u'com.medienhaus.volnews', u'com.areapps.whostheplayer', u'com.fashionni.fashionni', u'com.q2q.bombervszombies.free', u'com.dpa.joyreaderbp', u'at.ner.SpiderSolitaireFree', u'com.mist.swandolphin', u'com.ovni.org', u'at.ner.lepsWorld2', u'com.fingersoft.hillclimbracing', u'com.anywhere.anygps', u'com.cocoplay.cocopony', u'com.fitness.yicu1', u'com.bilbaonow', u'com.mavenhut.solitairearena', u'com.iwaredesigns.prodarts', u'com.djinnworks.sbj2', u'com.happyelements.HappyFishCN', u'it.primiterra.My-Bet-Slip-Live.watchkitapp', u'com.gaihua.myworld', u'com.LegoTechApps.SecretFlyer', u'com.jetappfactory.jetaudio', u'com.storeuser1.tangchao', u'com.bushiroad.CrayonShinchan', u'com.webprancer.itunes.garfieldDefense', u'com.mirmay.DownloaderFREE', u'com.gannett.news.local.WGRZNews', u'com.cocoplay.cocorockstar', u'com.tabtale.newbornsister', u'com.tobiapps.hundred-rooms', u'com.libii.libiihome', u'com.aristokraken.superbikes2017motoracing', u'cn.dict.sw-xkbyhsjxcd', u'com.imacco.mup004', u'com.fluik.OfficeZombie', u'com.jason.60bu', u'com.onbeatapps.Piano', u'net.androidresearch.swordsmanvamp', u'com.lilin.ll2', u'com.ivan.mp3player', u'com.barjs.BarjsApp', u'ca.tsn.iphoneapp', u'com.webstorm.swsmart', u'jp.nhncorp.COMICOTW', u'br.com.zeroum.turmadagalinha', u'com.taigagames.wwefighting3free', u'com.tabtale.messybabysitter', u'com.fe66.LittleGhostJungleAdventuread', u'com.halfbrick.FruitNinjaLite', u'ytdevelopments.smartmerge', u'com.airfrance.store.youjoon', u'com.storeuser2.dgwc', u'com.gamegos.mobile.cookingtale', u'net.ays.PROD128981', u'com.golfchannel.gcmobile', u'com.rubeacon.flowerslovers', u'com.zipzapgames.intothecircle', u'com.ferrero.magickinder', u'com.appcamelot.RelaxingSounds', u'com.labcave.robberraceescape', u'com.abc.iRepeater-iPhone', u'com.skyjos.fileexplorer', u'com.lonelyplanet.guides', u'com.activision.callofduty.heroes', u'com.firezoo.sackdude', u'com.fsasptt.passMutiSports', u'com.belo.01fd87a12ae0ccef018d76ac6b720bb1', u'com.arkansasonline.pressreader', u'com.digitalearth.screenmania', u'com.aim.brazilworldcup', u'es.gva.turisme.experiencias', u'jp.co.pokelabo.gemini', u'winikav.fbmnsoftware.com', u'com.cocoplay.cocobride', u'com.mx.MxBrowser-iPhone', u'com.lsn.localnews30', u'com.zedly.trakkit', u'com.lsn.localnews37', u'cn.dict.kj-ecyx', u'com.NewspaperDirect.KwongWahePaper', u'com.aa.AmericanAirlines.WatchApp', u'com.tantu.map.taiguo', u'fr.sfr.sfrcloud', u'com.kobojo.mutants', u'com.miniclip.8ballpoolmult', u'com.bytewaremobile.EdenBenessere', u'com.stain.impossible.mega.ramp.stunt', u'com.crazylabs.hollywoodrun', u'com.insaneknightstudios.funnylittlezombies', u'com.imed.guojiayixuedianzishubaoiphonedistribution', u'com.oovoo.iphone.free', u'abdus.development.StreetSoccer', u'com.chaqianma.investmentfull', u'com.rxwikiplus.6094990100', u'com.whoami.sxlibs', u'com.playwithfriendsgames.HarborParking', u'com.tapsarena.guess', u'com.tailworks.wordbrain', u'com.nsplay.ltsgl.ios', u'com.capplay.1511', u'com.iwaiterapp.MotherIndiaIreland', u'ChineseDominoFree', u'com.kaowrote.iOSCount1to100BoyActivity', u'com.iwaiterapp.HenrysPizzaKebabWaterloo', u'de.iosphere.trails.watchapp', u'com.FDGEntertainment.Paperama', u'com.Playrion.AirlinesManager2', u'com.breakleticsde.breakletics', u'applava.survivalexpress', u'com.bigleapstudios.chinatownchronicles', u'com.oneothergame.7min-cardio', u'com.youmeng.foodadventure', u'cn.dict.shjd-sxswhxcd', u'cn.dict.hzbn-zj18kdc', u'com.duoamon.jumpjump', u'es.socialpoint.dragoncity', u'com.rubeacon.rolls', u'com.bitmango.ap.lollipopmatch3', u'com.mobilityware.TriPeaksFree', u'me.luckyvest.N7jRVd', u'com.outofthebit.gomoku', u'de.meteogroup.meteoearthsd', u'com.shawnyu.aabill', u'com.ticktockapps.wallhd-10000.watchkitapp', u'com.thunderbull-entertainment.footballworldcup', u'com.jampot.dungeonpuzzlesmagesaga', u'com.herocraft.wwii.sandbox.free', u'com.yuansen.EBook3', u'com.fungoapple.ZhiBo8Offical', u'in.invis.muziris', u'com.taigagames.lowpolywrestlingfingtingfree', u'com.topfreegames.racingpenguinfree', u'CrosswordsForAll', u'zombiegun3d', u'com.grindrguy.grindrx', u'com.unicom.wocloud', u'cn.ultralisk.gameapp.game09', u'com.gameresort.sz2free', u'com.syedgames.impossiblemotobikefree', u'cn.ultralisk.gameapp.game03', u'com.extremesoftbilisim.flyingcarfree.extremepilot2', u'com.teb.puzzleman3', u'com.mmmstickytoffee.sweeps', u'com.gameprom.software.pinballhd.collectionforiphone', u'com.edengames.GTSpirit', u'com.happyfish.battletrucks', u'com.nexonm.dominations', u'com.taigagames.thaiboxtiger2free', u'com.punchboxstudios.hejindantoudj', u'com.app.realopedia', u'com.vinegargames.secret.agent.bank.job', u'net.numnim.c022fruitcolor', u'it.foodieat', u'mobi.teengames.SubwaySimulator2LondonEditionmdk', u'mobi.aurorasilver.BridgeCardGamemdk', u'br.com.tapps.ufb', u'com.iwaiterapp.KiinKiinToGo', u'com.cranberrygame.catchbugs', u'com.outfit7.gingersbirthday', u'com.fungoapple006.FengYunZhiBoBa', u'game.love.icon.limited', u'com.sea.monster.simulator', u'com.generamobile.soccerlegend', u'com.appxplore.mobfish', u'com.FitDegree.PointParkUniversity', u'com.liangyaofeng.zhongjieZII', u'com.waterpower.block.reverse', u'com.stratospherix.filebrowser', u'com.elnora.diamondrobber', u'com.lgp.trainsim.city.subway.train.driving.racing.simulator.pro.driver.trainsimulator2018', u'com.intentsoftware.muhle.lite', u'com.pomelogames.MarsGame', u'com.azulblaze.fairycoloringbook', u'com.smigames.Beardmens', u'hdcwd', u'com.iwaiterapp.IndianKitchenFoxhill', u'com.sunstorm.myschooldance', u'uk.co.bewhere.playable.chrome', u'com.kidsgamesclub.wheelsonthebus', u'net.cnki.www.CNKIClient', u'com.qianwan.qw5', u'X627XMV694.asdf.TheIdiotTest', u'cn.blapp', u'com.madebyappolis.spinrilla', u'net.ays.PROD647592', u'com.appcamelot.GuitarChords', u'cn.ultralisk.gameapp.game24', u'com.codefanatics.gangsterparadise', u'cn.ultralisk.gameapp.game25', u'com.bigleapstudios.mysterytrailfree', u'net.wooga.diamonddash', u'com.tapash.safari.bird.sniper.hunting.desert.hunter.combat', u'com.thatbbs.mianfeishuchengnew', u'com.niot.mosignair', u'com.appDev.aiReader', u'cn.17PaiPai.PP', u'com.azulblaze.cartoonpuzzle', u'com.gameindy.makhosonline', u'com.libii.libbyvampire', u'com.xiushuang.MC', u'com.komargames.MysteryCastle', u'com.espinallab.breafrank', u'QReader.MarginNoteFree', u'com.libii.candyfashionzh', u'com.storeuser2.dp', u'com.heise.app645175', u'tm.de.ios', u'com.maltd.puppysimulator', u'com.docadom.ionic.app', u'cn.iduoduo.Billiards-en', u'com.bitmango.ap.wordscrushthemes', u'com.kidsfunclub.babyprofessions', u'tg.plexus.qualitytouch', u'com.audyx.remote', u'com.stain.car.damage.crash.stunt.racing', u'com.bestapps.videodownloaderpro', u'com.77music.guitarmaster', u'com.fullfat.ios.kicker16', u'com.dinosaur.jurasic.drones', u'com.kidsgamesclub.abcSingAlong', u'com.cheap.tickets.flights', u'com.yuansen.ManHuaDaQuan', u'com.appcamelot.GrandPiano', u'com.orionsante.formation', u'com.heinlein.skatlite', u'com.shore.app663730', u'com.iwaiterapp.ContinentalPizzaStHelens', u'gnhub.ecom.sugarcakeapp', u'com.vectorunit.purple', u'me.luckyvest.ugpVKb', u'com.crowdedroad.ifaxpro.watchkitapp', u'net.ays.PROD656776', u'com.soulgame.soda', u'com.freegame.wordconnect.fr', u'com.ea.simcitymobile.bv', u'com.xiushuang.M2.LOL', u'com.ninjakiwi.bloonstdbattles', u'uk.co.karidis.bpkaridisclinic', u'ru.doublegis.grymmobile', u'com.capplay.1508', u'com.tivola.catapult', u'com.fichajes.mobile.fichajes', u'com.libii.fairysalon', u'com.tabtale.thetownmouse', u'com.xinghengedu.EverStarKaoYanXiZong', u'com.av.swhPlayer', u'com.hans.lotto.nz.nlotto', u'com.sgn.cookiejam', u'com.hmgame.TurnNumber', u'com.firsttouch.dls3', u'com.fullfat.ios.blockysoccer', u'com.vfgamestudio.RobotWarsFight', u'cn.com.qf.show', u'com.academmediagames.2PlayerReactorFingerFight', u'id.compro.toys4us', u'com.happylabs.hotelstory', u'com.az.bank.robbery.crime.city.police.chase.car', u'com.appmakerstudio.tvdaquan', u'com.pilsenexafutbol', u'com.hikvision.ivms5060lite', u'com.animocabrands.itunes.Musici', u'com.popcap.ios.chs.PVZ2.watchkitapp', u'com.bigfishgames.fairwayrevengeappluniversalf2p', u'com.tabtale.tinyprincess', u'com.onbeat.BassGuitar', u'me.maxwin.smile', u'com.fag.shadow.fighting.warrior', u'net.ays.PROD611968', u'com.sina.sinanews.watchkitapp', u'com.mypocketoffice.manager', u'com.thenextflow.dragoncity', u'com.115.enterprise', u'com.chrome-fusion.remix', u'com.boombitgames.DrivingSchoolParking', u'com.LACutie.app', u'com.chrisballinger.ChatSecure', u'com.ricebook.enjoy', u'ch.swissdiabetesguide.hba1ccalc', u'com.ultimatefanlive.ultimatefanios', u'com.mshare.sxsiosapp', u'pl.aidemmedia.MultilevelParking5', u'cn.dict.sw-xxzd', u'com.gobit.burgershop.free', u'com.sublinet.footballchampions', u'com.cbcnm.iapp.now.waneipad', u'Wrike.WrikeApp', u'com.pinger.pingerphone2', u'com.facebook.Facebook', u'com.we.play.free.games.animal.stunts.impossible.tracks.fun.simulator', u'com.snkplay.block.puzzle.blast', u'com.tabtale.theshoemakerandtheelves', u'com.vfgamestudio.CartoonBasketballShot', u'com.koudai.weidian.buyer', u'com.zeptolab.thieves', u'com.amazon.aiv.AIVApp', u'net.infoshell.fruithamsters', u'com.goodi.nmts', u'com.nexonm.oz', u'com.iwaiterapp.ParkensSmorrebrod', u'com.musixmatch.lyrics.watchkitapp', u'com.disney.WATCHDisneyXD', u'com.pentaloop.playerxipad', u'LK.Drumpads', u'com.donistudio.narutocoloringbook', u'com.gameley.bbt', u'com.avecreation.drivingzone', u'com.publicapp', u'com.qule.PianoScore', u'org.bitcall.UnblockBrowser', u'com.aireader.fems', u'za.co.nedbankgolfchallenge', u'com.freshgames.cubis', u'com.appublisher.app.dailyexam', u'com.centurysoft.roboking', u'com.kidsfunclub.cutepony', u'com.tatemgames.dreamgymf2p', u'com.T16ZJZcyos.BA6C5646KIll0923', u'com.rsz.RNF4', u'com.wb.gc.gzsj2', u'com.rsz.RNF3', u'com.modian.study.MoDian', u'com.punkjozsef.drift', u'com.lixin.runagam', u'com.tudou.kidsiphone', u'com.tabtale.fixitgirlstwo', u'com.playwithfriendgames.TopGearParking', u'jp.funsolution.nensho-otome', u'com.bridgetech.clued-up', u'com.starelement.happymall3', u'net.simskultur.kulturkiosk', u'com.glu.stardomkim.watchkitapp', u'net.mobigame.ZombieCarnaval', u'com.sunstorm.icecreamtrucktwo', u'com.super.fan', u'com.ycgame.f3cn', u'com.nq.vault', u'com.ilbsoft.irelaxipad.watchkitapp', u'com.mashentertainment.moderncounterterrorfps', u'pl.aidemmedia.MultilevelParking', u'com.dss.city.police.clown.gangster', u'com.hikvision.ivms4500lite', u'com.mobage.ww.a1171.motorworldcarfactoryios', u'com.gravitire.gravitire3d', u'com.gumtreeuk2.iphone', u'com.dts.real.airport.forklift.sim', u'com.libii.petdoctor', u'com.newssynergy.illinoishomepage', u'com.sohu.iPhoneVideo.watchapp', u'com.cocoplay.cocobunny', u'me.luckyvest.cX2VJ9', u'com.prankdial.PDial', u'com.sriver.fac2e8758d630c24d248a87c5708ebf6', u'com.lite-games.solitaire2015-free--aat-apple', u'com.psvn.ThreePigs', u'com.iwaiterapp.HaervejensPizzaCafe', u'com.alibaba.aliexpress.seller', u'com.libii.princessvacationcn', u'com.oubraapp.RocketManVsBarkingDog', u'com.bkseo.Taptionary', u'es.nooddle', u'com.naquatic.soccer14', u'com.fungames.snipershooter', u'com.jps.gpspeedhud', u'com.magmic.iphone.Phase10Free', u'com.richleviapps.freeimusicclouddrives', u'com.mobilewareinc.ontime-bart', u'com.iwaredesigns.mygolf3d', u'com.brandonideas.stepahead', u'com.yiyou.tt', u'com.aireader.cqzgf', u'com.mightygamesgroup.shootyskies', u'com.ccb.ccbDemo', u'com.dobsoftstudios.gunfustickman2', u'com.tabtale.princessdressup2', u'cra.iHungry.idelivery', u'it.spaghettiinteractive.scoponepiu', u'com.backflipstudios.ninjump', u'BRFree', u'com.dariazhdanova.stickmanherowithropefree', u'com.trottoweb.app', u'com.skippyapps.coachbus.driving.simulator', u'com.storeuser3.glsc', u'com.naquatic.ShootingRange', u'com.grupoasis.serveteditorialac', u'com.sogou.SogouExplorerMobile', u'com.concretesoftware.pbachallenge', u'com.jiaxiang.GogogoLite', u'com.jaysquared.whereis', u'com.hearstnp.sfgate.ipad.paid', u'com.iwaiterapp.LocosSoulFoodPreston', u'com.cocoplay.cocopuppy', u'com.electronicfunzone.cartoonstreetmanfightfree', u'com.rsz.StickmanDownhill', u'com.laposte.laposte', u'com.iwaiterapp.BarBQNightMiddlesbrough', u'com.berrydev.animecartoonninjanarutojigsaw', u'com.mashentertainment.driftsimulatormustangshelbygt500', u'com.bbonfire.onfire', u'com.gwhizmobile.mcgrawpediatricsqa', u'com.stain.heavy.duty.tractor.pull.drive', u'com.nanovationlabs.ringtower', u'com.gamesbannernet.cubesurvivalfree', u'com.tencent.qqmail.watchkitapp', u'com.adseed.goldprush2', u'jp.sugarapps.situationkareshi', u'com.reddoak.ekis', u'com.wb.psych', u'com.cibg.hyppobabyshop', u'com.king.a719c86cdd21476d342d6fb54d2a9022', u'com.logicworks.whitenoiselite', u'anindie.kpoptcan', u'com.sd.itunes.HKJTEU', u'com.magmamobile.game.Animals', u'com.kosmin.sc', u'com.PixelToys.W40kFreeblade', u'com.kooapps.pocketfamily', u'com.wubuapps.guesssoccer', u'com.app.siap', u'com.nfl.gamecenter', u'com.boluo.videoplayer', u'com.telstra.telstra24x7iphone', u'com.wlqq.driver', u'com.wric.9e1a69684a6d7799f4804194115fea0f', u'com.youmeng.jijiafengbao', u'com.bigleapstudios.foodcartfree', u'com.taobao.fleamarket', u'com.ketchapp.hazyrace', u'com.mytalkingelephant.virtualpet', u'com.coad.miBsAs', u'com.rubeacon.pipizzavremya', u'com.cocoplay.cocokitty', u'com.scopely.yahtzeewithbuddies', u'com.vnm.shareit', u'com.waterpower.ludo3d', u'com.lockwoodpublishing.avakinlife', u'com.bearhugmedia.princess-makeup', u'com.ravensburger-digital.kingdomsandmonsters', u'com.nabocorp.scorecast.apple.Scorecast-Free', u'bozidarristic.photstudio.DrawWriteEditor', u'net.ays.PROD592042', u'com.iwaiterapp.ShreksPizza', u'gangster.survival.hero.escape', u'com.amelosinteractive.snake', u'com.Weebly.Weebly.watchkitapp', u'com.kidsbypok.firstgrademath', u'br.com.tapps.fatnomore', u'com.heijiaoyinyue.app', u'com.knowtilus.rteipadfree', u'com.good.world3.watchkitapp', u'jp.brioche.dolce.girlbikescooter', u'com.ay.app653275', u'com.realtechvr.ironfistlite', u'com.imangi.templerun2.cn', u'com.stickgame.huochairen', u'com.umbrella.downthemountain', u'com.appzone.tvplayerhd', u'lv.kingwant.lvfen2', u'com.waterpower.findit', u'com.sunstorm.bridegroom', u'com.mike.gifmaker', u'com.meituan.hotelMerchant', u'com.iaftt.flightplusfree', u'com.dec.dec3', u'com.PSVStudio.BarboskinsInTheSupermarket', u'com.ozitech.flight.simulator3d', u'com.pingan.zhiniao', u'com.maitianqinzi.MTClub', u'com.pingpongfactory.jamesbomb-ios', u'com.iwaiterapp.frederiksbergPizzeria', u'com.waterpower.star', u'com.pinkbike.trailforks', u'com.zlmcd.sanlite', u'com.dariazhdanova.stickmanninjaassassinfree', u'com.smgstudio.onemorejump', u'com.newkline.avr.watchkitapp', u'com.willgoon.neckpets', u'com.applewp.privatealbumWpPro', u'com.libii.candyhotelcn', u'fr.neocity.parayvieilleposte', u'me.lifeisgame.elevuzzle', u'net.ays.PROD597405', u'com.sega.sonicboom', u'de.meteogroup.WeatherProFree', u'com.lcap.guangzhouzhongkao', u'com.kuyimobile.SFTycoon', u'com.joybits.doodlekingdom-free', u'io.pixelrocket.dunkz', u'com.hans.lotto.irish.nlotto', u'com.heavydutyapps.SuperNoteLite', u'com.huami.watch', u'ad.rugbyfrance.erisco', u'com.isd.retouchme', u'com.libii.monstersalon', u'com.radu.smart.rad.music', u'candyoyo.com.cs.games.ElisasOceanFantasy', u'com.taobaobj.moneyshield', u'com.smgstudio.thumbdrift', u'com.entertainmentarena.checkersmaster2dfree', u'com.playwithgames.ServiceStationTrucker', u'com.master.archer', u'tr.com.tiramisu.driftmax', u'com.whoami.wzxz', u'com.mobilewareinc.ontime-lirr-ad', u'com.solverlabs.blockworld', u'com.abtstudio.furious.formula.league', u'com.99mobileapp.dressup3', u'at.tastetastic.app', u'com.rovio.angrybirdsfight', u'com.Seriously.BestFiends', u'cn.dict.shjd-sxjxhgcd', u'com.jrooy.lydiabox', u'net.ays.PROD652298new', u'com.HobbyistSoftware.VLCStreamer.watchkitapp', u'com.animoca.itunes.doraemonpuzzle\n CFBundleIdentifier', u'com.blur.com.best.music.plaasser', u'com.yu.BeiWoPlayer', u'com.gannett.news.local.WMAZNews', u'jp.co.casio.EXILIM-Connect', u'com.tencent.reading', u'com.ystenapp.4gtv', u'com.tabascogames.spintree', u'com.purplekiwii.mbhexalink', u'com.hmgame.SkiingRush', u'com.portaildessciences.medipub', u'com.tabtale.myvehicle', u'com.magmic.SpadesKingLite', u'com.kidsfunclub.candygirl', u'uk.co.top10games.top10modelstory', u'com.omnilife.appEmpresarios', u'mobi.popsoft.popjewels', u'fr.fanals.casaazul.client', u'com.polarlabs.likehub', u'com.khmermusicbox.KhmerMusicRemix', u'com.ruanmei.ithome.newwatchkitapp', u'com.ea.nfs2014.bv', u'com.iwaiterapp.GreedyChefLondon', u'com.fullfat.ios.blockyfootball', u'com.cyclops.experimentz', u'com.bigleapstudios.midnightcrisisfree', u'com.f1eb.f1eb2', u'com.f1eb.f1eb1', u'com.kongregate.mobile.epicskater', u'com.xiushuang.cra', u'id.compro.cpssoftsupport1', u'ELLASAlatyAppFreeEN', u'com.waterpower.tank', u'com.pixellabs.pixelstrike3d', u'com.dumadugames.PocketBowling3D', u'com.gaetanoconsiglio.EscapePrison', u'com.jumpgame.DungeonJump', u'com.pasgames.minedasher', u'com.nopowerup.amazingsnake', u'com.fullfat.flickgolfextreme', u'de.axelspringer.weltipad', u'ShotZombie', u'com.hmgame.BasketballShooting', u'WR3DFree', u'com.jumpgames.rswrb', u'com.multiplayertonk', u'com.gameprom.software.WildWest', u'org.vfgamestudio.OffRoadRacing', u'com.dekovir.pixwords', u'com.mobitsolutions.carnivoresjurassichunt', u'com.XAtm.app', u'com.ubisoft.redlynx.trialsfrontier', u'com.axialexchange.ah-goryeb', u'com.procodemedia.TaeKwonDoVS', u'WRFree', u'com.rena.reward', u'com.kidsfunclub.hotdoghero', u'com.axis.drawingdesklite', u'developerteam.icomunity', u'com.storeuser1.rgzsss', u'com.XalocFuns.AirWings', u'com.tabtale.homeimprovement', u'com.applecg.wordsport2', u'com.spookyhousetudios.bubbleexplode', u'com.artoon.batak', u'com.symstudiogames.rcps16', u'cn.dict.sw-xxyhcd', u'com.doapps.09ba3f0df1447f40e98674ba9d62c747', u'com.makanjom.ios', u'de.2kit.cast-browser', u'au.com.minimega.bonza', u'com.magmamobile.game.BubbleBlastAdventure', u'com.sunstorm.fondue', u'whiskywall', u'com.vfgamestudio.BasketballShootingMaster', u'com.purplekiwii.mb', u'com.mycatemma.virtualpet', u'com.neointro.ListeningDrill-Lite2', u'com.ea.tetrisblitz.inc', u'me.luckyvest.g1QN3n', u'com.marktplaats.iphone', u'com.fivdow.jump', u'com.academmedia.towerblocks', u'com.rsz.Wingsuit', u'acare.unblockcargames', u'com.djinnworks.sgb', u'com.jun.jun3', u'com.foursakenmedia.heroesandcastlesfree', u'com.disney.WATCHDisneyChannel', u'com.iwilab.KakaoTalk.watchkitapp', u'com.gameboystudio.real.sports.car.crazy.engine.crash.simulator.game.workshop.mechanic.realcarcrash.speed.bumps.deathracing.2', u'com.herocraft.WWII', u'cn.js7tv.jstv', u'com.sggame.iFile', u'com.may.may9', u'io.gonative.ios.dyeqa', u'net.playtouch.mexicanwrestlersuperstars', u'com.rsz.LineRunner2', u'com.visualdreams.sdb2', u'com.tabtale.supermarket', u'com.notegraphy.Notegraphyapp', u'com.ecapycsw.EulerPath', u'com.rsz.StickmanSoccer', u'com.popcap.ios.BejBlitz', u'com.x3m.dx', u'xyz.wedoapp.projectappron', u'com.fromthebenchgames.fantasymanager.omarsella5', u'com.vixlet.mlb', u'com.had.yuenlongjoy', u'com.fe66.slgame301ad', u'com.perform.goallivescores', u'com.zeptolab.cuttheropelite', u'com.skyjos.fileexplorerfree', u'com.rgs.police.motorbike.city.cop.gangster.chase', u'com.deruss.AllContactsPro', u'com.playwithgames.TwoHillsParking', u'com.happymagenta.ssp', u'Com.SinoEQA.GuidanceLearning', u'com.fullfat.asqb17', u'com.qianwan.qianwan1', u'com.qianwan.qianwan2', u'com.crc.world.war.air.battle', u'com.mopote.ibreakfast', u'com.codefavor.SecretCalendar', u'com.creadia.hellovan', u'com.ukab.airproxreports', u'com.mytalkingdogvirtualpet.puppygames', u'com.iwaiterapp.Bagdren', u'com.kidsgamesclub.phoneForkids', u'com.flowmotion.HamburgerMaker', u'com.itwcalculator.weatherplusfree.watchkitapp', u'com.ledou.cottongame.mrpumpkin.phone', u'uk.co.olsonapps.5minpilates', u'com.timistudios.nbs', u'com.highway.race', u'com.mgs.ttb', u'com.feixiongTV', u'com.foodniche.connect', u'com.Melesta.ToyDefense3Fantasy', u'com.velovert.velovert', u'com.OppanaGames.TrafficTank', u'com.nest0r.jinyongfree', u'com.sunstorm.dessert', u'com.Andy.Guodegang', u'com.feb.feb7', u'com.shen.armychesschnfreetopro', u'com.brightsky.gifgamera', u'com.toolsapps.weather.lite', u'com.gdunicom.woqixin', u'com.servicesapp.mmm', u'de.pixel-paws.KeePass-Touch', u'com.fatfish.bubbleshotadventures', u'com.futureplay.boots', u'com.weiwei.weiwei5', u'com.n1info', u'com.Beltheva.Alpaka', u'27W7W2CQJT.IconSkinsFREE', u'com.sakda.jigsawpuzzlemermaidundersea', u'com.leftover.CoinDozer', u'me.luckyvest.a2gHpP', u'com.cjkjltg.zhidian', u'com.yugel.angryflappybirds', u'com.mashentertainment.indiantrainracingsimulatorpro', u'com.mobilitstudio.sportytrader', u'com.noodum.Wokamon.watchkitapp', u'com.tabtale.fairyfashionshow', u'com.gameloft.mcvs', u'com.choofun.myworldfree', u'tr.com.tiramisu.driftmaxcity', u'com.naquatic.footballshowdown2015', u'com.hothw.wdsgame52', u'com.stain.offroad.car.crash.accident.sim', u'com.tabtale.animalszoo', u'com.firerabbit.games.fmc.max.lite', u'com.avd-apps.avdownloaderFree', u'com.yu.MiZhiVideoPlayer', u'at.ama.salatbar', u'com.applewp.privatealbumWp', u'se.mobilestorytelling.skaraborg', u'net.ays.PROD645666new', u'com.ea.ios.bejeweledskies', u'com.kidsfunclub.babyfoodfair', u'com.Anyview', u'com.hly.videoAlbum', u'com.mysoft.propertyowner', u'com.guillim.monpetitparquet', u'eu.bandainamcoent.tapmykatamari', u'com.whoami.jrgl', u'com.ajal.technology.immer.medical.pacientes', u'cn.dict.shcs-chbxxstjfyccd', u'net.mantisshrimp.crazykings', u'com.lioudsoft.xmascrossword', u'com.spookyhousestudios.pumpkinbasket', u'com.iwaiterapp.KiplingsRestaurantUK', u'wb.gc.candy.qzf2014', u'com.onelouder.BaconReader', u'com.weico.weico.watchkitapp', u'com.iwaiterapp.TheoBelloTakeawayHeywood', u'com.playagames.shakesandfidget', u'com.iwaiterapp.ByensPizzaNykoebingMors', u'com.tabtale.catsdressup', u'com.passion4profession.8minabslvl1', u'com.axialexchange.ah-hackettstown', u'com.imangi.templerun2', u'com.guofenkan.remenshipin', u'com.iwaiterapp.TheRanchCompanyKeighley', u'com.funedukidsgame.littledinosaurfishinggames', u'uk.co.olsonapps.HomeWorkouts', u'com.gwhizmobile.langepharmafc', u'com.kidsfunclub.carebears', u'com.zhangyue.zyiReader.iReader.watch', u'com.nbcuni.nbc.portal', u'com.cinmitcua.fingertrainer', u'com.taigagames.ropeherofree', u'com.yu.HeavenVideoPlayer', u'com.mobin.fastdic.1.0', u'com.iwaiterapp.CafDeliceBirmingham', u'com.indigokids.mimcoloring', u'com.tidy.homekeeper', u'com.phoenomapp.dinofootball', u'com.apalonapps.wallpaperspys.watchkitapp', u'com.waterpower.running', u'cn.1hai.1haiiPhone', u'com.tordellapp.flappyswish', u'com.ezoom.recreiodajuventude', u'com.lilin.ll1', u'com.feidee.MyMoneyExpress', u'com.unknownporjectx.cube.rolling', u'com.newssynergy.wtev', u'com.gamelo.app', u'com.magmic.skipbofree', u'com.getsafe.homesecurity', u'com.kidsfunclub.shaveit', u'org.rotary.Sas', u'com.evgenychaikin.ninjapunchboxingfightingfree', u'com.ubisoft.hungrysharkworld', u'com.fe66.CandyGemsSeaPopad', u'com.flaregames.royalrevoltonline', u'com.netease.light', u'Galdies.Keith.My-Ultimate-Team', u'com.cranberrygame.motorcycleshooter', u'br.com.gruposm.pnld2017ra', u'com.nlabsoft.bw', u'com.gameinsight.thetribezhd', u'kr.iiac.guide', u'com.backflipstudios.dragongame', u'cm.nextte.mobile', u'com.zerofour.turboleague', u'com.pplive.PPUEC', u'com.zhihu.ios', u'com.sublinet.fancytale', u'br.ipromos.cliques', u'com.tencent.bjqqhouse', u'com.FinalSimulations.SumoWrestlersFighting2017', u'com.tabtale.happybath', u'net.domzilla.movieplayer', u'www.cloud7.com.cn.Chuye', u'com.fourgame.paoku', u'com.interactivestudio.f16airplanesimulatorfree', u'com.VMVecchi.x210Grammi', u'me.luckyvest.9b0hVd', u'com.gwhizmobile.pretestpediatrics', u'com.gigipiece.ltfashionsalon', u'com.NewspaperDirect.TheWashingtonPostNIE', u'com.good.GalaxyReavers', u'com.seagate.satelliteapp1', u'com.blastworksinc.slingocollect', u'com.snkplay.pixels.draw.freehand', u'com.gameresort.penguingame', u'com.huwei.chebao', u'com.appmania.zombieharvest', u'net.gogonavi.gogoNaviLite.watchkitapp', u'com.domainname.zaiShandong', u'com.babyEducationAnimalWeatherToys.princessColor', u'com.nogginnotes.app', u'com.digibot.citybattlerobots', u'com.gsn.ios.tripeaks2', u'com.fag.muscle.car.race.traffic.games', u'com.appcamelot.DrumsMaster', u'com.AeroportuInternationalTraianVuiaTimisoara.aerotim', u'com.punkjozsef.playroomracer2', u'com.tivola.animals.home', u'com.robotegames.trambo', u'com.tabtale.fashiongirl', u'com.azhibo.sport', u'com.netease.videoHD', u'com.doapps.b9e6d9221dcefc50ba23c6bd04ace911', u'de.web-xtreme.appTicker', u'com.233.Examda233', u'files.reader.pdf.com', u'com.iwaiterapp.HollywoodPizzaTakeaway6100', u'de.levella.wheel-configurator', u'com.tabtale.poolpartyvip', u'com.flambestudios.videoinframe', u'com.jipin.video', u'com.playrix.gardenscapes-m3-ios', u'com.apps.99', u'com.winrgames.krazykart', u'com.qatarairways.oryxoneplay', u'com.tatemgames.carnivoresfree', u'Sergey-Pershenkov.Quiet-Scrob', u'com.kidsgamesclub.PaintSparkles', u'com.onmadesoft.machiavelli', u'com.iwaiterapp.AroiiThaiTakeaway', u'com.sabeeapp.guestadvisor', u'com.donistudio.englishvocabulary', u'com.lima.limalineapp', u'com.fluik.PlumberBum', u'net.ays.PROD672152', u'com.domotz.app', u'com.crestvisuals.beersmashtricks', u'com.tabtale.flowergirlfiasco', u'com.Andy.Zhangzhen', u'com.dungnguyen.KaraokeVList', u'com.kidsfunclub.fairytalefiasko', u'com.addware.oralcarepromaster', u'com.ea.pvzfree.bv', u'com.fasthatchapps.photoshaper', u'com.progrestar.bft', u'com.etermax.preguntados.watchkitapp', u'com.tombulmutfak.tombulmutfak', u'com.werewolf.simulator', u'com.duowan.duowanlolbox', u'org.pac-12.pac12.ios', u'com.baketlabs.avanti', u'com.ministone.game.Global-Fastfood', u'com.idreamsky.fruityrobo', u'com.viatick.hdbmobile', u'com.ksm.killhornet', u'br.com.tapps.myvirtualpetshop', u'com.iwaiterapp.GoldenStarAthlone', u'net.ays.PROD622135', u'com.livestream.new', u'com.taojin.dungeon.watchkitapp', u'com.sogou.sogousearch', u'com.aaronray.fontcandy', u'com.atari.mobile.rctride', u'com.music.clickmusic', u'com.triviador.trro', u'video.2.audio.com.icon.limited', u'com.Melesta.ToyDefense2iOSFull', u'com.happymagenta.john', u'com.moonsideapp.triathlon', u'net.ays.PROD602368', u'com.tintingsupplies.app', u'com.luckykat.skychasers', u'com.sarro.five', u'com.innovationworks.wetalkpro', u'com.baozouyouxi.snake', u'com.ozitech.police.car.driver.sim', u'com.qding.www', u'br.com.tapps.myboo', u'com.tiggel.truthordareparty', u'com.tatemgames.carnivoresiceagefree', u'com.div.spaceshooter', u'com.iwaiterapp.OskarsBurgerBar', u'com.mobvoi.ticwear', u'com.XXT.ertongduku', u'com.sevenlogics.PeriodTracker.watchkitapp', u'net.ays.PROD553532', u'com.homegrownsw.YT-Player', u'com.naquatic.penaltyKicksOnline', u'com.sep.sep3', u'com.sep.sep2', u'ro.phonelite.papagopush', u'net.ays.PROD577937', u'com.azlief.camudrer6y', u'com.whoami.lss', u'com.degoo.mermaidlovestory'

Appendix 2: 729 apps integrate GCDWebServer but not Ionic's Webview and AdColony library.

u'com.mobilewareinc.ontime-bart', u'com.solot.seafishing2', u'me.luckyvest.f9ctF1', u'com.iwaiterapp.TheRanchCompanyKeighley', u'melanieapp.unbockmycar', u'com.duoc.video', u'com.yiyou.tt', u'com.aireader.cqzgf', u'mobilesoftware.mydocumentfree', u'com.wang.kungfu', u'com.appDev.aiReader', u'com.facebook.Messenger.watchkitapp', u'com.upsload24yahoo.com.flappy2cars', u'com.gamebox.newshucheng', u'com.the9.KingReader.watchkitapp', u'com.la.LAEducation', u'com.yuansen.AudioBook33', u'com.Weebly.Weebly.watchkitapp', u'neomatrix31hotmailcom.agar', u'com.vixlet.atp', u'com.8fit.app.watchkitapp', u'com.mopote.ibreakfast', u'me.luckyvest.tmyqro', u'com.zhang.ning', u'com.creative.xfisonicplayer', u'com.vixlet.kng', u'com.whoami.ztxs', u'com.appmania.com.red.rad.moreti', u'com.storeuser3.glsc', u'frame.pix.bk.paid.mincroft.linch', u'com.wuteuy.mathgameforkids', u'com.toprankapps.secretphoto', u'com.fe66.slgame152ad', u'com.HobbyistSoftware.VLCRemoteFree', u'com.sogou.SogouExplorerMobile', u'com.jiaxiang.GogogoLite', u'com.storeuser2.zmycj', u'com.knowtilus.rteipadfree', u'com.biomsoft.mp3audiobookplayerfree.watchkitapp', u'com.meiriyiting.app', u'com.app.musicloud.janis', u'com.hearstnp.sfgate.ipad.paid', u'com.iwaiterapp.LocosSoulFoodPreston', u'com.upsload24yahoo.com.flappystickhero', u'com.imacco.mup004', u'com.luck.aishangtv', u'com.iwaiterapp.ChinaGardenLondon', u'com.pinger.textfreeWithVoice', u'com.ancientec.keyboardfree', u'com.baichanghui.app', u'com.petr.mp3player', u'com.iwaiterapp.TomBellFishChips', u'beyondapp.appcraft.hd', u'com.bbonfire.onfire', u'com.enhance.toeflListen', u'cn.dict.sw-gjcydcd', u'org.vfgamestudio.StickHeroXmas', u'com.bostonceltics.iphone', u'com.gesila.digibike', u'com.shengcai.STeBook', u'com.ZhongGuanWangKe.BankExam', u'jp.co.pokelabo.gemini', u'com.skyjos.gdrive', u'com.hulaoo.ban', u'org.baby.food', u'com.ipaitao.miaomiao', u'cn.dict.wys-yihhyi', u'com.aireader.ershishi', u'com.nhncorp.m2app', u'com.sitonthegold.alphabetspaincoloringbook', u'com.reddoak.ekis', u'me.luckyvest.udU2RJ', u'com.imobilco.ichitalka2', u'com.appublisher.app.dailystudy', u'com.flyingnayeem.WebBrowser', u'fr.m6.m6replay', u'jp.gocro.SmartNews', u'mobixus.net.iVideoDownloaderLite', u'com.xinghengedu.EverStarKaoYanXiZong', u'com.facebook.smilekidsgames.catcatching', u'com.kosmin.sc', u'com.chebada.bashiguanjia', u'com.azulblaze.princesscoloringbook', u'cn.dict.hdlg-ryhbsn2', u'com.bunaapp.bestmermaidcoloring', u'com.oitc.lebanesebloggers', u'com.traxxas.traxxaslink', u'com.heavydutyapps.SuperNotePro', u'com.nbcuni.nbc.portal', u'com.app.siap', u'com.nfl.gamecenter', u'com.fungoapple.mobileTVLive', u'com.tencent.qqlivekid', u'com.ckapponline.mathfunfirstgrade', u'com.hothw.wdsgame82ad', u'com.telstra.telstra24x7iphone', u'com.mcb.myvideo', u'cn.dict.wys-xhhx', u'com.fungoapple003.TiYuZhiBoDaQuan', u'com.wric.9e1a69684a6d7799f4804194115fea0f', u'com.cranberrygame.savethebanana', u'com.jipin.video', u'com.aliphcom.upopen', u'com.vgtime.vgtimeapp', u'com.ddongkang.gifviewer', u'com.rubeacon.letim', u'me.luckyvest.rOkHvL', u'com.maneerat.birdcoloringbook', u'com.pasgames.minedasher', u'com.taobao.fleamarket', u'com.bebo.bebo', u'com.rubeacon.pipizzavremya', u'com.ivan.mp3player', u'ru.mybook.app', u'com.vnm.shareit', u'com.ejiahe.dyqx', u'net.fanship.iSafePlay', u'com.scribd.iscribd', u'com.lsn.localnews26', u'com.tekkinnovations.fars', u'com.HobbyistSoftware.VLCStreamerFree', u'org.vfgamestudio.OffRoadRacing', u'com.av.juzi', u'com.picooc.picooc', u'me.luckyvest.wF66CC', u'com.nutriease.haohaochi', u'com.iwaiterapp.ShreksPizza', u'com.tianji.MiniCad', u'com.eliteapp.ContactsSyncPro', u'com.newkline.avrpro.watchkitapp', u'com.storeuser2.dp', u'com.lastminute.lmn.LastMinute', u'com.cbcnm.iapp.now.waneipad', u'com.lenovo.anyshare', u'com.beo.crazy.parking', u'com.kidsbypok.firstgrademath', u'com.heijiaoyinyue.app', u'HM.wristband', u'com.aircanada.csp.aciclient.watchkitapp', u'com.yuansen.StoryBook33', u'com.rambax.simpletransferlite', u'com.qiniusoft.ContactsSyncIAP', u'com.trottoweb.app', u'com.yuansen.ManHuaZhuo33', u'com.fm.xy', u'BookMyShow.com', u'com.xtremelabs.ncaasports', u'com.hothw.wdsgame161ad', u'com.jbinary.magiclockscreenlite', u'com.geniussoftware.GeniusScan', u'com.yujia.lianlianapp', u'com.mike.gifmaker', u'com.meituan.hotelMerchant', u'com.myie9.mayiliulanqi', u'com.whoami.tssc', u'com.dec.dec3', u'com.july.july1', u'com.enchantedcloud.photovault', u'com.pingan.zhiniao', u'com.july.july5', u'com.iwaiterapp.TapasdelCorezn', u'com.jackyu.downloadaccelerator', u'com.iwaiterapp.frederiksbergPizzeria', u'Ff2lqVpcZ2.ComicZeal4', u'com.RuiChuang.websitesNavigation', u'ctrip.com.watchkitapp', u'com.axialexchange.ah-goryeb', u'com.velovert.velovert', u'cn.dict.sccs-czyydcd', u'cn.dict.wys-rhhr', u'com.whoami.wxmz', u'com.grupoasis.serveteditorialac', u'com.newkline.avr.watchkitapp', u'com.jack.BilingualNovel', u'com.jack.ManHuaDaQuan', u'com.applewp.privatealbumWpPro', u'com.maitianqinzi.MTClub', u'com.iwaiterapp.AlKebabishAylesbury', u'de.axelspringer.weltipad', u'com.deruss.ContactSyncLite', u'com.artcom.Hoccer', u'com.TelevisionBroadcastsLimited.fun', u'com.heigames.superbunnyworld', u'com.ymt360.mass', u'com.imoreapps.filexplorer', u'com.360buy.lebook', u'com.lcap.guangzhouzhongkao', u'com.dmitriygolubev.explayer', u'com.thepolydice.icook', u'com.l180.g51ad', u'com.radu.smart.rad.music', u'com.taobaobj.moneyshield', u'com.jaysquared.whereis', u'me.imgbase.imgplay', u'com.bichtran.fileshop', u'com.labarber.marcaplus', u'me.luckyvest.hGJJUm', u'cn.dict.sw-gjxhdzd', u'com.boomfox.qwevideolite', u'com.readyapp.gContactsPro', u'uk.co.bewhere.unblock.social', u'com.soundcloud.TouchApp', u'com.pasgames.moneyordeath', u'com.wukongtv.remote.watchkitapp', u'com.master.archer', u'com.whoami.wzxz', u'com.mobilewareinc.ontime-lirr-ad', u'com.donistudio.englishvocabulary', u'com.sumavision.UVideoFuZhou', u'com.ricebook.enjoy', u'com.feb.feb7', u'com.tencent.ied.app.lolbible', u'com.l180.g91ad', u'jp.ne.wi2.TJWiFi', u'com.funedukidsgame.littledinosaurfishinggames', u'cn.dict.shjd-sxjxhgcd', u'com.jrooy.lydiabox', u'com.iknowledgesolutions.picsecretlite', u'cn.cellapp.Color', u'com.medienhaus.volnews', u'com.yu.LocalPlayer', u'com.HobbyistSoftware.VLCStreamer.watchkitapp', u'cn.dict.sccs-xxhzd', u'com.dpa.joyreaderbp', u'com.blur.com.best.music.plaasser', u'cn.com.LangEasy.LangEasyRepeat', u'com.mist.swandolphin', u'com.yu.BeiWoPlayer', u'com.bestapps.videodownloaderpro', u'com.doplayer.liuji', u'com.boluo.videoplayer', u'com.ystenapp.4gtv', u'com.605Studio.Font-Cards', u'com.wind.moneymasterfree', u'melanieapp.englishspeaking3', u'com.portaildessciences.medipub', u'com.iwaredesigns.prodarts', u'com.JingPaiBookCity', u'com.nicegame.stickpro', u'com.smyno.ios.smyapp.avila', u'com.luck.newdianshizhibo', u'com.fungames.sniper3d', u'com.breadtrip.breadtrip', u'com.microsoft.powerbimobile.watchkitapp', u'com.tiaooo.aaron', u'com.denisov.mp3player', u'com.qding.www', u'com.lsn.localnews146', u'com.mirmay.DownloaderFREE', u'cn.dict.sw-xxyhhycd', u'com.cp24.cp24iphoneapp', u'com.f1eb.f1eb2', u'cn.dict.sccs-xhtjycd', u'com.xiushuang.LOL', u'com.xiushuang.cra', u'com.jack.AllDrama', u'com.fe66.slgame271ad', u'cn.dict.sw-xkbyhsjxcd', u'com.appmadang.GIFShow', u'cn.dict.shcs-chbxxstjfyccd', u'com.xiushuang.m1.LOL', u'com.koudai.weidian', u'com.vtrump.musicmotion', u'com.carscanner.prod', u'com.jason.60bu', u'net.androidresearch.swordsmanvamp', u'com.feidee.MyMoneyExpress', u'net.entangledmedia.younity.ios', u'com.anyuchen.kaijuan', u'com.luck.tvprogramme', u'com.berrydev.animecartoonninjanarutojigsaw', u'ca.tsn.iphoneapp', u'com.app.musicloud.janis.paid', u'com.macsoftex.onlinevideoplayerfree', u'br.com.zeroum.turmadagalinha', u'com.fe66.LittleGhostJungleAdventuread', u'ytdevelopments.smartmerge', u'com.stickman.archery.king', u'com.airfrance.store.youjoon', u'com.storeuser2.dgwc', u'cn.jgyang.wild.secretphoto', u'me.luckyvest.i9gZI9', u'cn.dict.shjd-sxswhxcd', u'com.qianwan.qw5', u'com.golfchannel.gcmobile', u'com.rubeacon.flowerslovers', u'com.ferrero.magickinder', u'com.XAtm.app', u'com.storeuser1.tangchao', u'com.ipanel.yangquanhomed', u'com.abc.iRepeater-iPhone', u'com.samnang.Chreang', u'com.iwaiterapp.BabasPizzaria8600', u'com.hibymusic', u'iFl1', u'com.skyjos.fileexplorer', u'cheats.editions.for.sims.all', u'com.lonelyplanet.guides', u'com.ickmhrss.kmsbt', u'com.storeuser1.rgzsss', u'com.funedukidsgame.icecreammatchinggame', u'com.applecg.wordsport2', u'cn.dict.sw-xxyhcd', u'com.cjkjltg.zhidian', u'com.arkansasonline.pressreader', u'com.digitalearth.screenmania', u'com.kaowrote.iOSCount1to100BoyActivity', u'com.gil.dropboxnplay1', u'com.yy.fe', u'me.luckyvest.tAtwS4', u'com.tencent.qqmail.watchkitapp', u'cn.dict.sw-xxcycd', u'com.vfgamestudio.BasketballShootingMaster', u'me.luckyvest.ugpVKb', u'cn.dict.sccs-xsyhhycd', u'com.gps.tracker.app', u'com.iwaiterapp.BenzBurgers', u'com.enhance.gre3K', u'com.mx.MxBrowser-iPhone', u'com.heavydutyapps.SuperNoteLite', u'com.lsn.localnews30', u'me.luckyvest.0CMsRV', u'com.lsn.localnews37', u'com.maloose.mharphd', u'me.luckyvest.g1QN3n', u'com.marktplaats.iphone', u'com.fftda.edition', u'com.aliphcom.armstrong', u'com.gold.portraitbank', u'uk.co.bewhere.playable', u'acare.unblockcargames', u'com.ipopgame.gifplayer', u'com.tantu.map.taiguo', u'com.may.may9', u'fr.sfr.sfrcloud', u'com.disney.WATCHDisneyChannel', u'com.iwilab.KakaoTalk.watchkitapp', u'com.aireader.hhx', u'com.bytewaremobile.EdenBenessere', u'cn.js7tv.jstv', u'com.sggame.iFile', u'cn.dict.shcs-chbxxszczjcd', u'com.capablebits.imagetransfer', u'com.macsoftex.AVDownloaderFree', u'net.playtouch.mexicanwrestlersuperstars', u'com.yuansen.ManHuaZhuo44', u'cn.gesila.ohbike', u'com.visualdreams.sdb2', u'com.notegraphy.Notegraphyapp', u'com.rxwikiplus.6094990100', u'com.iwaiterapp.SouthernGrillAndMasterSushi', u'com.toprankapps.secretphotofree', u'com.hothw.wdsgame152ad', u'com.iwaiterapp.MotherIndiaIreland', u'ChineseDominoFree', u'com.iwaiterapp.HenrysPizzaKebabWaterloo', u'com.dongyu.freeread', u'com.jiliguala.ios', u'com.yy.more', u'com.iwaiterapp.HenrysChineseFastFood', u'com.skyjos.fileexplorerfree', u'com.deruss.AllContactsPro', u'de.pixel-paws.KeePass-Touch', u'com.app.museumgo', u'com.xiushuang.M2.LOL', u'Com.SinoEQA.GuidanceLearning', u'com.iwaiterapp.ShishaKingTilst', u'cn.dict.hzbn-zj18kdc', u'com.duoleonline.app', u'com.lbadvisor.Today', u'com.qianwan.qianwan1', u'com.qianwan.qianwan2', u'com.ProjectiOSABCKidsLearning.kaowrote', u'com.fe66.slgame171ad', u'de.2kit.cast-browser', u'com.mafengwo.wengweng', u'com.rubeacon.rolls', u'me.luckyvest.N7jRVd', u'com.yuansen.EBook3', u'com.changiairport.cagapp', u'com.codefavor.SecretCalendar', u'com.meelive.ingkee', u'com.cownado.frank', u'com.songone.song-1', u'com.LAndL.HandyBill', u'com.shawnyu.aabill', u'com.lilin.ll2', u'com.whoami.tyrb', u'com.iwaiterapp.Bagdren', u'com.netease.light', u'com.iwaiterapp.IndianaRestaurantCoventry', u'jp.co.sony.audio.companion', u'cn.dict.sw-xxtjfcd', u'com.feixiongTV', u'com.iwaiterapp.RangeelaTakeawayChelmsford', u'com.fungoapple.ZhiBo8Offical', u'in.invis.muziris', u'com.bsn.mercury', u'com.nest0r.jinyongfree', u'jp.co.ns.jj', u'com.wate.reader', u'com.tencent.now', u'com.brightsky.gifgamera', u'com.toolsapps.weather.lite', u'com.unicom.wocloud', u'com.gdunicom.woqixin', u'com.yy.pomodoro', u'com.cnn.iphone.watchapp', u'com.exphinx.SimpleTXT', u'com.turner.cnvideoapp', u'com.weiwei.weiwei5', u'com.n1info', u'com.bow.master', u'com.iwaiterapp.MammasPizzaThorntonHeath', u'com.jan.jan3', u'com.gong.ji', u'com.jan.jan6', u'me.luckyvest.a2gHpP', u'com.doapps.09ba3f0df1447f40e98674ba9d62c747', u'com.duotin.fasion', u'com.yugel.angryflappybirds', u'com.codefavor.SecretCalc', u'com.HQmai.app', u'com.newssynergy.wiat', u'com.commsource.BeautyPlus', u'com.nanoha.MagicParticle', u'video.2.audio.com.icon.limited', u'com.ccb.ccbDemo', u'net.numnim.c022fruitcolor', u'org.mozilla.ios.Firefox', u'cn.dict.yw-xfh', u'me.luckyvest.cWT1g8', u'com.sakda.jigsawpuzzlemermaidundersea', u'com.hentr.mianfeikanwangluo', u'com.hothw.wdsgame52', u'com.wentao.gaoxiao', u'com.kanecheshire.MacID.watchkitapp', u'com.iwaiterapp.KiinKiinToGo', u'com.jumpgame.DungeonJump', u'com.cranberrygame.catchbugs', u'com.nestlabs.jasper.release.watch', u'com.eliteapp.ZXContacts', u'ThanhVT.LearnEnglishByListening', u'com.fungoapple006.FengYunZhiBoBa', u'com.super.fan', u'kam.app.kim.mincroft.linch', u'com.huami.watch', u'game.love.icon.limited', u'com.biomsoft.trackchecker', u'me.luckyvest.WD4kAb', u'com.j1an.j1an1', u'com.zhangyue.zyiReader.iReader.watch', u'com.applewp.privatealbumWp', u'com.stratospherix.filebrowser', u'com.getsafe.homesecurity', u'com.chroma-studios.twist3d', u'net.xxsy.bookreader', u'com.hly.videoAlbum', u'com.azulblaze.fairycoloringbook', u'www.cloud7.com.cn.Chuye', u'ru.doublegis.grymmobile', u'com.nct.musiclite', u'com.NewspaperDirect.KwongWahePaper', u'com.mhunters.app', u'com.iwaiterapp.IndianKitchenFoxhill', u'com.iwaiterapp.KiplingsRestaurantUK', u'com.iMobSoft.PDFMakerLite', u'com.avd-apps.avdownloaderFree', u'uk.co.bewhere.playable.chrome', u'com.pplive.PPUEC', u'cn.touna.financialPlan', u'net.cnki.www.CNKIClient', u'com.115.115netdisk', u'org.pac-12.pac12.ios', u'com.weico.weico.watchkitapp', u'com.yu.MiZhiVideoPlayer', u'com.iwaiterapp.TheoBelloTakeawayHeywood', u'com.f1eb.f1eb1', u'com.nhaccuatui.mobile.version2', u'com.unlimapps.unlimmusic', u'cn.blapp', u'com.netease.cartoonreader', u'com.iwaiterapp.OskarsBurgerBar', u'com.iwaiterapp.ByensPizzaNykoebingMors', u'soheilvb.iMD', u'com.axialexchange.ah-hackettstown', u'youth.ctrip.com', u'com.guofenkan.remenshipin', u'com.aa.AmericanAirlines.WatchApp', u'com.thatbbs.mianfeishuchengnew', u'com.niot.mosignair', u'com.j1an.j1an3', u'cn.17PaiPai.PP', u'com.azulblaze.cartoonpuzzle', u'com.ykying.airdisk', u'me.luckyvest.kODMcZ', u'com.yes366.ParticleInput', u'com.onavo.onavoApp', u'com.xiushuang.MC', u'com.applecg.conversation3', u'com.jane.ios', u'QReader.MarginNoteFree', u'com.liguangming.Shadowrocket', u'com.yu.HeavenVideoPlayer', u'com.wlqq.driver', u'com.shortcovers.shortcovers', u'com.mobisystems.OfficeSuiteFree2.watchkitapp', u'com.iwaiterapp.CafDeliceBirmingham', u'appokod.pp.com.mincroft.linch', u'com.rdio.player', u'com.kjcity.answer.student', u'com.docadom.ionic.app', u'com.qule.tan8yinyue', u'com.iwaiterapp.ChickenLaneLeigh', u'com.itimeteo.webssh', u'com.ipopapp.zipbrowserfree', u'com.ctrip.vbooking', u'com.storeuser2.mc', u'com.mirmay.PrivateDownloaderFREE', u'com.iwaiterapp.MunchManiaLeeds', u'com.phoenomapp.dinofootball', u'www.hujiang.com.hjDictByDB', u'com.77music.guitarmaster', u'id.compro.dondayspheromoneindonesia', u'com.lucidchart.app', u'com.deruss.ContactSyncPro', u'cn.1hai.1haiiPhone', u'com.lilin.ll1', u'tips.to.save.battery.power', u'cn.dict.kj-ecyx', u'com.newssynergy.wtev', u'com.iwaiterapp.WokAmok', u'com.yuansen.ManHuaDaQuan', u'com.orionsante.formation', u'com.nwstudio.coloringbook.dinosaur', u'org.wikimedia.wikipedia', u'com.iwaiterapp.ContinentalPizzaStHelens', u'cn.189read.tianyishujia', u'com.crowdedroad.ifaxpro.watchkitapp', u'cn.dict.sw-xxzczjcd', u'com.ilegendsoft.MBrowserPro', u'com.funedukidsgame.dinosaurmemorymatch', u'com.chaqianma.investmentfull', u'com.united.UnitedCustomerFacingIPhone.watchkitapp', u'cm.confide.ios.watchkitapp', u'com.fe66.CandyGemsSeaPopad', u'me.igis.gisrss', u'com.imed.guojiayixuedianzishubaoiphonedistribution', u'com.amp.ios', u'com.appzone.tvplayerhd', u'com.azhibo.app', u'com.magisto.magisto', u'co.pushapp.lilachelgrably', u'com.dajiazhongyi.app', u'com.yuansen.ManHuaZhuo', u'com.av.swhPlayer', u'com.ohsame.same2.0', u'com.modian.study.MoDian', u'com.iwaiterapp.CityPizzaHobro', u'dongmusicplayers', u'kimkamkam.kom.app.karl.kymir', u'com.iwaredesigns.mygolf3d', u'com.duotin.disvcar', u'com.pptv.iphoneapp.watchkitapp', u'com.vfgamestudio.BillardsKingPool', u'com.vfgamestudio.RobotWarsFight', u'cn.com.qf.show', u'com.bitolithic.ThinkBook2', u'com.zhihu.ios', u'id.compro.toys4us', u'com.kingdee.MyMoney.watchkitapp', u'com.NewspaperDirect.TheWashingtonPostNIE', u'com.tencent.bjqqhouse', u'com.robotegames.trambo', u'cn.dict.oxford-necdict', u'com.appmakerstudio.tvdaquan', u'org.binguo.GifAlbum', u'net.domzilla.movieplayer', u'com.hikvision.ivms5060lite', u'com.nmsapps.videoDLPRO', u'me.luckyvest.9b0hVd', u'com.jumei.iphone.watchkitapp', u'com.whoami.sxlibs', u'com.whoami.jrgl', u'uk.co.bewhere.playable.chrome.pro', u'jp.co.casio.EXILIM-Connect', u'com.cranberrygame.motorcycleshooter', u'com.tencent.reading', u'com.77577.comicsisland', u'com.tencent.xin.watchapp', u'com.huwei.chebao', u'me.maxwin.smile', u'com.13thlab.minecraftreality', u'com.seagate.satelliteapp1', u'com.domainname.zaiShandong', u'com.swishly.photocaster', u'com.doplayer.doplayerer', u'com.newkline.hdvr.watchkitapp', u'com.mippin.iphone.bw.m408833', u'com.sina.sinanews.watchkitapp', u'com.mypocketoffice.manager', u'com.lvxian.guahao', u'com.mar.mar5', u'com.hentr.xiaoshuoydq', u'com.azhibo.sport', u'com.115.enterprise', u'net.domzilla.pdfpro', u'com.netease.videoHD', u'com.cognifit.Cognifit', u'com.vixlet.mlb', u'com.233.Examda233', u'files.reader.pdf.com', u'com.chrisballinger.ChatSecure', u'com.iwaiterapp.HollywoodPizzaTakeaway6100', u'com.meitu.makeup', u'com.iwaiterapp.BarBQNightMiddlesbrough', u'com.dinero.revistadinero', u'com.nbadigital.gametimelt.watchkitapp', u'com.fe66.slgame301ad', u'com.mshare.sxsiosapp', u'com.evideo.diange', u'cn.dict.sw-xxzd', u'com.apps.99', u'com.iwaiterapp.LuxusPizzaHerning', u'com.nest0r.iread', u'Wrike.WrikeApp', u'com.qatarairways.oryxoneplay', u'com.pinger.pingerphone2', u'com.facebook.Facebook', u'de.iosphere.trails.watchapp', u'com.xiushuang.Dota2', u'com.ifttt.ifttt.watchkitapp', u'com.tarampum.topsongs', u'com.nwstudio.monaca4.princesscoloringbook', u'com.vfgamestudio.CartoonBasketballShot', u'com.iwaiterapp.AroiiThaiTakeaway', u'com.koudai.weidian.buyer', u'com.halfword.unify', u'com.plexapp.plex', u'com.msnbc.today.ipad', u'com.amazon.aiv.AIVApp', u'com.hujiang.CCTalk', u'com.JunboJiaApps.Folder', u'com.mk.melody', u'com.goodi.nmts', u'com.luluyou.life', u'com.iwaiterapp.ParkensSmorrebrod', u'com.sap.apps.Mobi.release', u'id.compro.cpssoftsupport1', u'com.musixmatch.lyrics.watchkitapp', u'com.disney.WATCHDisneyXD', u'com.dungnguyen.KaraokeVList', u'com.fe66.slgame122ad', u'com.iwaiterapp.wedoburgers', u'com.sogou.weixinheadline', u'me.luckyvest.1oNMCm', u'com.donistudio.narutocoloringbook', u'com.camerasideas.photovault', u'com.lilin.100', u'com.qule.PianoScore', u'org.bitcall.UnblockBrowser', u'com.aireader.fems', u'com.yu.NewYeSeVideoPlayer', u'tr.com.digitalcarmagazine.dergi', u'me.luckyvest.wXx1BL', u'com.hearstnp.chron.ipad.paid', u'com.appublisher.app.dailyexam', u'com.aromdee.HiddenPhoto', u'com.jun.jun3', u'com.kiwiinc.white.watchkitapp', u'com.duowan.duowanlolbox', u'de.mstegmann.dmlive', u'com.donistudio.dogcoloringbook52', u'com.theclashsoft.webvideodownloader', u'com.jetappfactory.jetaudio', u'com.aireader.nrlzhx', u'com.anjuke.broker', u'com.bkseo.Taptionary', u'com.iwaiterapp.GoldenStarAthlone', u'com.livestream.new', u'com.sogou.sogousearch', u'com.iwaiterapp.SamsHamstead', u'com.weico.weicopro4.watchkitapp', u'com.lixin.runagam', u'com.tudou.kidsiphone', u'com.netease.news.watchkitapp', u'cn.wiz.wiznoteiphone', u'cn.dict.sccs-30khycd', u'cn.dict.shjd-sxcbgccd', u'com.iwaiterapp.RajdootPettsWood', u'net.simskultur.kulturkiosk', u'com.icepine.cutmeout', u'com.kingdee.MyMoneyPro.watchkitapp', u'com.nq.vault', u'com.thatbbs.kuaikanmianfei', u'com.ruanmei.ithome.newwatchkitapp', u'cn.dict.shjd-sxzjzycd', u'com.hikvision.ivms4500lite', u'com.gumtreeuk2.iphone', u'com.zhangle.mobile.iphone.licai.watchkitapp', u'com.sohu.iPhoneVideo.watchapp', u'com.iwaiterapp.GreedyChefLondon', u'com.alibaba.icbu.app.seller', u'me.luckyvest.cX2VJ9', u'com.boomfox.sc', u'cn.dict.wys-dccd', u'com.fungo.TVZhibo', u'com.iwaiterapp.HaervejensPizzaCafe', u'com.alibaba.aliexpress.seller', u'com.mobvoi.ticwear', u'com.Anyview', u'com.bsn.mercurypro', u'com.XXT.ertongduku', u'org.vfgamestudio.TowerBuildingSky', u'com.eliteapp.ContactsSyncPro4', u'com.eliteapp.ContactsSyncPro3', u'com.iwaiterapp.IndianChefChelmsford', u'com.music.clickmusic', u'com.homegrownsw.YT-Player', u'com.wlqq.consignor', u'com.sep.sep3', u'com.sep.sep2', u'com.iwaiterapp.SanFrederiksberg', u'com.boomfox.downloadslite', u'com.readerLiesn.hope.GhostStories', u'com.yunos.tv.tvhelper', u'com.hearstnp.mysa.ipad.paid', u'com.whoami.lss', u'com.richleviapps.freeimusicclouddrives'

Appendix 3: Analysis result (metadata)


cheats.editions.for.sims.all; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.hikvision.ivms5060lite; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.nicegame.stickpro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;org.vfgamestudio.OffRoadRacing; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.artcom.Hoccer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;ytdevelopments.smartmerge; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.eliteapp.ZXContacts; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; WebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.tencent.reading; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;iFl1; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;cn.dict.sccs-xhtjycd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.kingdee.MyMoney; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.JunboJiaApps.Folder; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.yuansen.ManHuaDaQuan; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.meelive.ingkee; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.capablebits.imagetransfer; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:1; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.sw-xxzd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.jbinary.magiclockscreenlite; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebShare:1; GCDWebDAVServer:0; GCDWebUploader:1;com.scribd.iscribd; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.gong.ji; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:1; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;acare.unblockcargames; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.fe66.slgame122ad; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.sep.sep3; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.115.115netdisk; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.storeuser1.tangchao; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.xiushuang.MC; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.picooc.picooc; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.yunos.tv.tvhelper; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; TVHWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.nbcuni.nbc.portal; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;video.2.audio.com.icon.limited; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;cn.17PaiPai.PP; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; ITWebUploadServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.sw-xxzczjcd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.airfrance.store.youjoon; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;me.luckyvest.9b0hVd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.gil.dropboxnplay1; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.lvxian.guahao; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.la.LAEducation; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.july.july5; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;me.luckyvest.f9ctF1; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.gdunicom.woqixin; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.thepolydice.icook; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.heavydutyapps.SuperNoteLite; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.tencent.qqmail; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.newssynergy.wtev; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.boluo.videoplayer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; FFWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.vixlet.mlb; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iMobSoft.PDFMakerLite; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;cn.js7tv.jstv; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;appokod.pp.com.mincroft.linch; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.pptv.iphoneapp; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;me.igis.gisrss; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.goodi.nmts; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.readyapp.gContactsPro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.qianwan.qianwan1; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.brightsky.gifgamera; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.iwaiterapp.ChinaGardenLondon; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.sogou.SogouExplorerMobile; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.abc.iRepeater-iPhone; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.iwaiterapp.MotherIndiaIreland; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.kaowrote.iOSCount1to100BoyActivity; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.newssynergy.wiat; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.sccs-czyydcd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.jane.ios; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.camerasideas.photovault; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; _TtC2PV14PVWebDAVServer:0; GCDWebUploader:0;com.jetappfactory.jetaudio; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.NewspaperDirect.KwongWahePaper; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; PRWebServer:1; GCDWebDAVServer:1; GCDWebUploader:1;com.77music.guitarmaster; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.doplayer.liuji; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.unlimapps.unlimmusic; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.app.siap; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;me.luckyvest.N7jRVd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.sw-xxcycd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.vfgamestudio.BillardsKingPool; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.notegraphy.Notegraphyapp; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;in.invis.muziris; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.TelevisionBroadcastsLimited.fun; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaredesigns.mygolf3d; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.HobbyistSoftware.VLCRemoteFree; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.music.clickmusic; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:1; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.whoami.wzxz; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.commsource.BeautyPlus; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.imobilco.ichitalka2; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;ru.doublegis.grymmobile; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.hearstnp.chron.ipad.paid; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.hulaoo.ban; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.bkseo.Taptionary; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.united.UnitedCustomerFacingIPhone; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.ipanel.yangquanhomed; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.beo.crazy.parking; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.blapp; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.nwstudio.monaca4.princesscoloringbook; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.facebook.smilekidsgames.catcatching; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.tencent.xin; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; WCProxyServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.ByensPizzaNykoebingMors; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.newkline.avr; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.iwaiterapp.SouthernGrillAndMasterSushi; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.soundcloud.TouchApp; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.sep.sep2; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;net.playtouch.mexicanwrestlersuperstars; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.shjd-sxcbgccd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.aireader.fems; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.jipin.video; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.nanoha.MagicParticle; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;net.fanship.iSafePlay; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; ServerDAVServer:1; ServerWebUploader:1;com.yuansen.StoryBook33; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.netease.videoHD; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:1; GCDWebUploader:0;com.storeuser2.dgwc; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.vgtime.vgtimeapp; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;files.reader.pdf.com; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.weiwei.weiwei5; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.iwaiterapp.HenrysPizzaKebabWaterloo; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;kimkamkam.kom.app.karl.kymir; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.enhance.toeflListen; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.skyjos.fileexplorerfree; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; StreamHttpServerService:1; GCDWebDAVServer:0; GCDWebUploader:0;com.aa.AmericanAirlines; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.fungo.TVZhibo; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.donistudio.englishvocabulary; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;co.pushapp.lilachelgrably; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.whoami.sxlibs; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.aireader.cqzgf; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.yy.more; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.wukongtv.remote; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.tencent.now; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.shjd-sxjxhgcd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.deruss.AllContactsPro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;game.love.icon.limited; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.mk.melody; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.kosmin.sc; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.jason.60bu; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.lonelyplanet.guides; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.360buy.lebook; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; JDRWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.stratospherix.filebrowser; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:1; GCDWebUploader:1;com.RuiChuang.websitesNavigation; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.mcb.myvideo; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;kam.app.kim.mincroft.linch; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.nbadigital.gametimelt; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.appDev.aiReader; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.233.Examda233; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.BarBQNightMiddlesbrough; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.aromdee.HiddenPhoto; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.itimeteo.webssh; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.aircanada.csp.aciclient; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.chebada.bashiguanjia; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.homegrownsw.YT-Player; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.changiairport.cagapp; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.ymt360.mass; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.iwaiterapp.ContinentalPizzaStHelens; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.HobbyistSoftware.VLCStreamerFree; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:1; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.fungames.sniper3d; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.ParkensSmorrebrod; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.huwei.chebao; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.yu.MiZhiVideoPlayer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.duotin.disvcar; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.iwaiterapp.SamsHamstead; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;mobilesoftware.mydocumentfree; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.yuansen.ManHuaZhuo; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.jack.ManHuaDaQuan; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.upsload24yahoo.com.flappystickhero; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.evideo.diange; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.xiushuang.cra; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.newkline.avrpro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.heavydutyapps.SuperNotePro; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.XAtm.app; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:1; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.weico.weico; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.iwaiterapp.HenrysChineseFastFood; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.bsn.mercury; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.disney.WATCHDisneyChannel; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.cbcnm.iapp.now.waneipad; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.fe66.LittleGhostJungleAdventuread; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.nct.musiclite; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.yuansen.AudioBook33; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.bebo.bebo; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.whoami.tyrb; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;net.entangledmedia.younity.ios; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;ru.mybook.app; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.nq.vault; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.stickman.archery.king; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;net.androidresearch.swordsmanvamp; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.feidee.MyMoneyExpress; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;cn.cellapp.Color; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;cn.dict.sw-gjcydcd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.super.fan; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; RDPWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.gps.tracker.app; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.shjd-sxzjzycd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.mike.gifmaker; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;cn.dict.wys-rhhr; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.rubeacon.pipizzavremya; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.gold.portraitbank; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.codefavor.SecretCalc; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:1; GCDWebUploader:1;com.cnn.iphone; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.bestapps.videodownloaderpro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.j1an.j1an1; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.digitalearth.screenmania; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.telstra.telstra24x7iphone; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; TCFormPostServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.wentao.gaoxiao; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.ipopapp.zipbrowserfree; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GEWifiWebUploader:1;com.storeuser2.zmycj; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.iwilab.KakaoTalk; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:1; GCDWebUploader:0;com.macsoftex.AVDownloaderFree; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.knowtilus.rteipadfree; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.gumtreeuk2.iphone; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.meitu.makeup; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.lenovo.anyshare; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; ASWebShareService:1; GCDWebDAVServer:0; GCDWebUploader:0;com.115.enterprise; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.ilegendsoft.MBrowserPro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.upsload24yahoo.com.flappy2cars; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.storeuser3.glsc; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.meiriyiting.app; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:1; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.toolsapps.weather.lite; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.ruanmei.ithome; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.imoreapps.filexplorer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; FEWebUploader:1;com.nestlabs.jasper.release; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;org.vfgamestudio.StickHeroXmas; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.tekkinnovations.fars; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.sccs-xsyhhycd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.tencent.ied.app.lolbible; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; KSWebDAVServer:1; KSWebsiteServer:1;com.tarampum.topsongs; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.ProjectiOSABCKidsLearning.kaowrote; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;melanieapp.englishspeaking3; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.rambax.simpletransferlite; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; _TtC14SimpleTransfer13WebServerBase:0; GCDWebDAVServer:0; GCDWebUploader:0;com.jackyu.downloadaccelerator; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.mobisystems.OfficeSuiteFree2; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.HaervejensPizzaCafe; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;jp.co.pokelabo.gemini; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.ZhongGuanWangKe.BankExam; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.amazon.aiv.AIVApp; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.getsafe.homesecurity; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:1; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.tudou.kidsiphone; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;me.luckyvest.g1QN3n; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.TomBellFishChips; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.doplayer.doplayerer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.dec.dec3; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.ykying.airdisk; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.mobilewareinc.ontime-lirr-ad; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.turner.cnvideoapp; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.duowan.duowanlolbox; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.ShishaKingTilst; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.guofenkan.remenshipin; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.iwaiterapp.TapasdelCorezn; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;me.luckyvest.1oNMCm; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.zhangyue.zyiReader.iReader; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.jan.jan3; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.imacco.mup004; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.jaysquared.whereis; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:1; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.jgyang.wild.secretphoto; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.77577.comicsisland; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.shengcai.STeBook; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.lilin.ll2; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.jun.jun3; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.qianwan.qw5; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.f1eb.f1eb2; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.storeuser1.rgzsss; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;melanieapp.unbockmycar; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;me.luckyvest.a2gHpP; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.ifttt.ifttt; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; _TtC5IFTTT19HomescreenWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.appmadang.GIFShow; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;Com.SinoEQA.GuidanceLearning; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.sccs-30khycd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.facebook.Facebook; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;me.luckyvest.hGJJUm; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.appmania.com.red.rad.moreti; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.qding.www; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.av.swhPlayer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.weico.weicopro4; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.Anyview; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.8fit.app; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.skyjos.fileexplorer; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; StreamHttpServerService:1; GCDWebDAVServer:0; GCDWebUploader:0;me.luckyvest.cX2VJ9; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;me.luckyvest.tAtwS4; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.heigames.superbunnyworld; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.fe66.slgame171ad; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;tips.to.save.battery.power; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.nest0r.jinyongfree; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.app.musicloud.janis; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.hothw.wdsgame161ad; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.app.museumgo; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.disney.WATCHDisneyXD; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.icepine.cutmeout; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;beyondapp.appcraft.hd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.huami.watch; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; HMWebLogger:1; GCDWebDAVServer:0; GCDWebUploader:0;com.msnbc.today.ipad; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.l180.g51ad; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.aireader.hhx; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.sogou.sogousearch; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:1; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.codefavor.SecretCalendar; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:1; GCDWebUploader:1;com.appzone.tvplayerhd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; WebDAVServer:1; WebsiteServer:1;com.fungoapple006.FengYunZhiBoBa; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.yiyou.tt; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.exphinx.SimpleTXT; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.cranberrygame.motorcycleshooter; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.whoami.jrgl; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;net.domzilla.pdfpro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; PPWiFiUploader:1; GCDWebDAVServer:0; GCDWebUploader:0;com.netease.cartoonreader; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.netease.light; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;frame.pix.bk.paid.mincroft.linch; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.nutriease.haohaochi; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.aireader.ershishi; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.iwaiterapp.MunchManiaLeeds; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.baichanghui.app; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.ShreksPizza; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.iknowledgesolutions.picsecretlite; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.wate.reader; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.boomfox.downloadslite; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;net.numnim.c022fruitcolor; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;net.domzilla.movieplayer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; MPWiFiUploader:1; GCDWebDAVServer:0; GCDWebUploader:0;com.fftda.edition; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.vnm.shareit; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.ccb.ccbDemo; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; HMWebLogger:1; GCDWebDAVServer:0; GCDWebUploader:0;com.fe66.slgame271ad; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;de.axelspringer.weltipad; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.zhihu.ios; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:1; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.azhibo.sport; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.azulblaze.fairycoloringbook; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.ckapponline.mathfunfirstgrade; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.azhibo.app; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.rubeacon.rolls; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.appublisher.app.dailyexam; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.tencent.bjqqhouse; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.yw-xfh; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.flyingnayeem.WebBrowser; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.zhangle.mobile.iphone.licai; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;uk.co.bewhere.playable; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; WebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;de.mstegmann.dmlive; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.swishly.photocaster; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.smyno.ios.smyapp.avila; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.wys-yihhyi; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.fm.xy; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.deruss.ContactSyncPro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;org.binguo.GifAlbum; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:1; GCDWebUploader:1;com.niot.mosignair; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.ctrip.vbooking; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:1; GCDWebUploader:1;com.halfword.unify; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:1; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;fr.sfr.sfrcloud; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.Weebly.Weebly; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;org.mozilla.ios.Firefox; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.traxxas.traxxaslink; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.jrooy.lydiabox; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.newkline.hdvr; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.yu.BeiWoPlayer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;uk.co.bewhere.playable.chrome.pro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.pinger.textfreeWithVoice; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.lsn.localnews26; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.breadtrip.breadtrip; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.whoami.lss; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.toprankapps.secretphoto; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; AlbumUploader:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.BenzBurgers; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.denisov.mp3player; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; WebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.microsoft.powerbimobile; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.vfgamestudio.CartoonBasketballShot; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.HQmai.app; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;me.luckyvest.i9gZI9; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.enchantedcloud.photovault; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.yy.pomodoro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;jp.co.casio.EXILIM-Connect; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.mirmay.PrivateDownloaderFREE; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;me.imgbase.imgplay; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;neomatrix31hotmailcom.agar; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.shcs-chbxxszczjcd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.cownado.frank; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.deruss.ContactSyncLite; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.TheRanchCompanyKeighley; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.tencent.qqlivekid; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;me.luckyvest.ugpVKb; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.yuansen.EBook3; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;cn.dict.sw-xxyhhycd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.creative.xfisonicplayer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.golfchannel.gcmobile; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.yu.LocalPlayer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.july.july1; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.hothw.wdsgame82ad; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.qianwan.qianwan2; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;me.luckyvest.wF66CC; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.OskarsBurgerBar; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.kidsbypok.firstgrademath; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.MammasPizzaThorntonHeath; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.shawnyu.aabill; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDMyWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;org.bitcall.UnblockBrowser; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.anyuchen.kaijuan; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;cn.dict.wys-xhhx; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;ThanhVT.LearnEnglishByListening; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.kingdee.MyMoneyPro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.maloose.mharphd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.seagate.satelliteapp1; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.yu.HeavenVideoPlayer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;www.cloud7.com.cn.Chuye; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.richleviapps.freeimusicclouddrives; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; ETUploader:1;cn.189read.tianyishujia; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.duoleonline.app; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.mar.mar5; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.fe66.slgame301ad; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.HollywoodPizzaTakeaway6100; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;uk.co.bewhere.unblock.social; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.liguangming.Shadowrocket; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; DLWWebUploader:1; GCDWebDAVServer:0; GCDWebUploader:1;mobixus.net.iVideoDownloaderLite; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.petr.mp3player; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; WebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.sw-xxtjfcd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.the9.KingReader; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;ca.tsn.iphoneapp; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.applewp.privatealbumWp; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;id.compro.toys4us; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.fungoapple.mobileTVLive; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.qule.tan8yinyue; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;de.iosphere.trails; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.alibaba.icbu.app.seller; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.may.may9; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.iwaiterapp.CityPizzaHobro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;de.pixel-paws.KeePass-Touch; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;cn.wiz.wiznoteiphone; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;me.luckyvest.cWT1g8; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.n1info; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.yy.fe; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.biomsoft.trackchecker; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.lucidchart.app; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:1; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.hujiang.CCTalk; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.lsn.localnews30; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.koudai.weidian.buyer; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.aliphcom.armstrong; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.LAndL.HandyBill; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.lsn.localnews37; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.shortcovers.shortcovers; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.mirmay.DownloaderFREE; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.TheoBelloTakeawayHeywood; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.phoenomapp.dinofootball; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.ChickenLaneLeigh; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.bichtran.fileshop; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.oitc.lebanesebloggers; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.sw-xkbyhsjxcd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.bunaapp.bestmermaidcoloring; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.hly.videoAlbum; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;BookMyShow.com; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.kj-ecyx; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.jack.AllDrama; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.jumpgame.DungeonJump; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.robotegames.trambo; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.pingan.zhiniao; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.iwaiterapp.GoldenStarAthlone; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.gesila.digibike; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.chroma-studios.twist3d; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.portaildessciences.medipub; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.wys-dccd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;uk.co.bewhere.playable.chrome; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; WebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.sw-gjxhdzd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.rubeacon.flowerslovers; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.vixlet.atp; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.musixmatch.lyrics; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.storeuser2.mc; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.605Studio.Font-Cards; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.hibymusic; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.nfl.gamecenter; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.cranberrygame.savethebanana; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;dongmusicplayers; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; WebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.av.juzi; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.unicom.wocloud; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.qatarairways.oryxoneplay; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.RajdootPettsWood; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.docadom.ionic.app; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.storeuser2.dp; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.iwaiterapp.wedoburgers; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.songone.song-1; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.hikvision.ivms4500lite; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.applewp.privatealbumWpPro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.wlqq.driver; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.crowdedroad.ifaxpro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.ricebook.enjoy; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.jack.BilingualNovel; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.appublisher.app.dailystudy; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.xiushuang.M2.LOL; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.duotin.fasion; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.app.musicloud.janis.paid; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;cn.dict.sw-xxyhcd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.iwaiterapp.AlKebabishAylesbury; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.hearstnp.mysa.ipad.paid; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;br.com.zeroum.turmadagalinha; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.ejiahe.dyqx; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;cn.dict.shjd-sxswhxcd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.onavo.onavoApp; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.funedukidsgame.dinosaurmemorymatch; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.whoami.ztxs; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.iwaiterapp.LuxusPizzaHerning; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.mopote.ibreakfast; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:1; GCDWebUploader:0;com.koudai.weidian; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.rxwikiplus.6094990100; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;Wrike.WrikeApp; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.kiwiinc.white; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.cjkjltg.zhidian; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.radu.smart.rad.music; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.hearstnp.sfgate.ipad.paid; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.livestream.new; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.mippin.iphone.bw.m408833; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.xtremelabs.ncaasports; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.tianji.MiniCad; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;ctrip.com; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.eliteapp.ContactsSyncPro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; WebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;id.compro.cpssoftsupport1; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.sggame.iFile; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.dpa.joyreaderbp; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;id.compro.dondayspheromoneindonesia; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.sumavision.UVideoFuZhou; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.ipaitao.miaomiao; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.amp.ios; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:1; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;HM.wristband; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; HMWebLogger:1; GCDWebDAVServer:0; GCDWebUploader:0;jp.gocro.SmartNews; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.SanFrederiksberg; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.fungoapple.ZhiBo8Offical; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.bostonceltics.iphone; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.applecg.conversation3; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.xiushuang.m1.LOL; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.yuansen.ManHuaZhuo33; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.qule.PianoScore; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.taobaobj.moneyshield; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;cn.com.qf.show; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.imed.guojiayixuedianzishubaoiphonedistribution; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;Ff2lqVpcZ2.ComicZeal4; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; WebDAVServer:1; WebsiteServer:1;com.sakda.jigsawpuzzlemermaidundersea; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.mypocketoffice.manager; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;me.luckyvest.kODMcZ; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.tantu.map.taiguo; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.bow.master; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.duoc.video; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.velovert.velovert; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.cp24.cp24iphoneapp; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.tiaooo.aaron; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.com.LangEasy.LangEasyRepeat; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.hothw.wdsgame52; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.axialexchange.ah-hackettstown; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.bsn.mercurypro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.orionsante.formation; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.axialexchange.ah-goryeb; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.yu.NewYeSeVideoPlayer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;me.maxwin.smile; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaredesigns.prodarts; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.pplive.PPUEC; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.toprankapps.secretphotofree; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; AlbumUploader:1; GCDWebDAVServer:0; GCDWebUploader:0;me.luckyvest.wXx1BL; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.nmsapps.videoDLPRO; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;ChineseDominoFree; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;me.luckyvest.rOkHvL; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.bitolithic.ThinkBook2; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; WebDAVServer:1; WebsiteServer:1;com.whoami.wxmz; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.dajiazhongyi.app; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.KiinKiinToGo; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.eliteapp.ContactsSyncPro4; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; WebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.jan.jan6; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.lixin.runagam; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.grupoasis.serveteditorialac; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.theclashsoft.webvideodownloader; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.sohu.iPhoneVideo; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.mist.swandolphin; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.ddongkang.gifviewer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;soheilvb.iMD; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.kjcity.answer.student; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.yujia.lianlianapp; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.eliteapp.ContactsSyncPro3; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; WebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.hothw.wdsgame152ad; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.cranberrygame.catchbugs; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.rubeacon.letim; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;org.wikimedia.wikipedia; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:1; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.skyjos.gdrive; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; StreamHttpServerService:1; GCDWebDAVServer:0; GCDWebUploader:0;com.NewspaperDirect.TheWashingtonPostNIE; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; PRWebServer:1; GCDWebDAVServer:1; GCDWebUploader:1;cn.touna.financialPlan; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;cn.dict.oxford-necdict; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.iwaiterapp.IndianKitchenFoxhill; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.hzbn-zj18kdc; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;cn.1hai.1haiiPhone; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.nwstudio.coloringbook.dinosaur; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.vtrump.musicmotion; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.medienhaus.volnews; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.f1eb.f1eb1; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.pasgames.minedasher; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.sitonthegold.alphabetspaincoloringbook; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;youth.ctrip.com; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;net.cnki.www.CNKIClient; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.nhncorp.m2app; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.lilin.ll1; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.iwaiterapp.IndianaRestaurantCoventry; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.donistudio.dogcoloringbook52; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.anjuke.broker; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.hdlg-ryhbsn2; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.iwaiterapp.GreedyChefLondon; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;me.luckyvest.WD4kAb; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;jp.co.ns.jj; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.facebook.Messenger; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.xiushuang.LOL; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.jumei.iphone; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.boomfox.sc; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.solot.seafishing2; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;me.luckyvest.tmyqro; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.ickmhrss.kmsbt; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.carscanner.prod; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.aireader.nrlzhx; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.vfgamestudio.RobotWarsFight; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.pinger.pingerphone2; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.macsoftex.onlinevideoplayerfree; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.doapps.09ba3f0df1447f40e98674ba9d62c747; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.netease.news; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:1; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.xiushuang.Dota2; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.wlqq.consignor; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.mx.MxBrowser-iPhone; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;de.2kit.cast-browser; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.dongyu.freeread; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.nest0r.iread; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.yugel.angryflappybirds; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;tr.com.digitalcarmagazine.dergi; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.yuansen.ManHuaZhuo44; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.iwaiterapp.AroiiThaiTakeaway; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.geniussoftware.GeniusScan; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.mafengwo.wengweng; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; WWPublishWebUploader:1;com.rdio.player; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.plexapp.plex; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; PMKWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.nhaccuatui.mobile.version2; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.fe66.CandyGemsSeaPopad; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.mobvoi.ticwear; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.gesila.ohbike; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.fungoapple003.TiYuZhiBoDaQuan; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.kanecheshire.MacID; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.dmitriygolubev.explayer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.whoami.tssc; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.dinero.revistadinero; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.enhance.gre3K; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.mobilewareinc.ontime-bart; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.sogou.weixinheadline; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:1; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.j1an.j1an3; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.13thlab.minecraftreality; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.frederiksbergPizzeria; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.master.archer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.vixlet.kng; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.jiaxiang.GogogoLite; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; WebDAVServer:1; WebsiteServer:1;com.l180.g91ad; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.sina.sinanews; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.bytewaremobile.EdenBenessere; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.mhunters.app; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.luluyou.life; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.funedukidsgame.littledinosaurfishinggames; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.wuteuy.mathgameforkids; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.mshare.sxsiosapp; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.reddoak.ekis; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cm.confide.ios; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.visualdreams.sdb2; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;fr.m6.m6replay; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.dungnguyen.KaraokeVList; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.funedukidsgame.icecreammatchinggame; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.azulblaze.princesscoloringbook; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.samnang.Chreang; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;me.luckyvest.0CMsRV; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.qiniusoft.ContactsSyncIAP; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;me.luckyvest.udU2RJ; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.apps.99; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.marktplaats.iphone; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.berrydev.animecartoonninjanarutojigsaw; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.bbonfire.onfire; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.sccs-xxhzd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.iwaiterapp.CafDeliceBirmingham; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.JingPaiBookCity; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.HobbyistSoftware.VLCStreamer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:1; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.wric.9e1a69684a6d7799f4804194115fea0f; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.alibaba.aliexpress.seller; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.taobao.fleamarket; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:1; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.wang.kungfu; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.ancientec.keyboardfree; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.avd-apps.avdownloaderFree; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.heijiaoyinyue.app; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.IndianChefChelmsford; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.meituan.hotelMerchant; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.RangeelaTakeawayChelmsford; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.domainname.zaiShandong; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.boomfox.qwevideolite; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.lastminute.lmn.LastMinute; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;net.xxsy.bookreader; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.lilin.100; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.modian.study.MoDian; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.aliphcom.upopen; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.LocosSoulFoodPreston; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.cognifit.Cognifit; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.maneerat.birdcoloringbook; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;org.baby.food; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.biomsoft.mp3audiobookplayerfree; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; ABBooksUploader:1; ABWebDavUploader:1; GCDWebUploader:0;QReader.MarginNoteFree; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;org.vfgamestudio.TowerBuildingSky; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.ferrero.magickinder; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;org.pac-12.pac12.ios; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.BabasPizzaria8600; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.feb.feb7; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:1;com.arkansasonline.pressreader; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; PRWebServer:1; GCDWebDAVServer:1; GCDWebUploader:1;com.maitianqinzi.MTClub; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;net.simskultur.kulturkiosk; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.WokAmok; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.ipopgame.gifplayer; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; WebUploader:1;com.iwaiterapp.Bagdren; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;cn.dict.shcs-chbxxstjfyccd; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:1; GCDWebUploader:0;com.magisto.magisto; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.chrisballinger.ChatSecure; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.vfgamestudio.BasketballShootingMaster; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.wind.moneymasterfree; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.labarber.marcaplus; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.azulblaze.cartoonpuzzle; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.jiliguala.ios; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;jp.co.sony.audio.companion; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.lbadvisor.Today; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.donistudio.narutocoloringbook; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.iwaiterapp.KiplingsRestaurantUK; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.myie9.mayiliulanqi; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.sap.apps.Mobi.release; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:1; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.fe66.slgame152ad; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;jp.ne.wi2.TJWiFi; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.XXT.ertongduku; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.blur.com.best.music.plaasser; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.ivan.mp3player; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:1; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; WebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;www.hujiang.com.hjDictByDB; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.pasgames.moneyordeath; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.ohsame.same2.0; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:1;com.applecg.wordsport2; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:1; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.lsn.localnews146; DefaultHandlerForMethod:1; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;com.trottoweb.app; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.yes366.ParticleInput; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.zhang.ning; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:1; HandlerForMethod:1; HandlerForMethod_reg:1; startWithOptions:1; BindToLocalhost:1; isObfuscated:0; GCDWebServer:0; GCDWebDAVServer:0; GCDWebUploader:0;com.feixiongTV; DefaultHandlerForMethod:0; DefaultHandlerForMethod_async:0; HandlerForMethod:0; HandlerForMethod_reg:0; startWithOptions:0; BindToLocalhost:0; isObfuscated:0; GCDWebServer:1; GCDWebDAVServer:0; GCDWebUploader:0;

Appendix 4: IR

define void @"-[AppDelegate application:didFinishLaunchingWithOptions:]"(%regset* noalias nocapture) {entry_fn_1000256AC: %SP_ptr = getelementptr inbounds %regset, %regset* %0, i64 0, i32 3 %SP_init = load i64, i64* %SP_ptr, align 4 %FP_ptr = getelementptr inbounds %regset, %regset* %0, i64 0, i32 0 %FP_init = load i64, i64* %FP_ptr, align 4 %LR_ptr = getelementptr inbounds %regset, %regset* %0, i64 0, i32 1 %LR_init = load i64, i64* %LR_ptr, align 4 %X8_ptr = getelementptr inbounds %regset, %regset* %0, i64 0, i32 13 %X8_init = load i64, i64* %X8_ptr, align 4 %X9_ptr = getelementptr inbounds %regset, %regset* %0, i64 0, i32 14 %X9_init = load i64, i64* %X9_ptr, align 4 %X0_ptr = getelementptr inbounds %regset, %regset* %0, i64 0, i32 5 %X0_init = load i64, i64* %X0_ptr, align 4 %X1_ptr = getelementptr inbounds %regset, %regset* %0, i64 0, i32 6 %X1_init = load i64, i64* %X1_ptr, align 4 %W0_init = trunc i64 %X0_init to i32 %X2_ptr = getelementptr inbounds %regset, %regset* %0, i64 0, i32 7 %X2_init = load i64, i64* %X2_ptr, align 4 %X3_ptr = getelementptr inbounds %regset, %regset* %0, i64 0, i32 8 %X3_init = load i64, i64* %X3_ptr, align 4 %X5_ptr = getelementptr inbounds %regset, %regset* %0, i64 0, i32 10 %X5_init = load i64, i64* %X5_ptr, align 4 %X10_ptr = getelementptr inbounds %regset, %regset* %0, i64 0, i32 15 %X10_init = load i64, i64* %X10_ptr, align 4 %X4_ptr = getelementptr inbounds %regset, %regset* %0, i64 0, i32 9 %X4_init = load i64, i64* %X4_ptr, align 4 %X6_ptr = getelementptr inbounds %regset, %regset* %0, i64 0, i32 11 %X6_init = load i64, i64* %X6_ptr, align 4 %X7_ptr = getelementptr inbounds %regset, %regset* %0, i64 0, i32 12 %X7_init = load i64, i64* %X7_ptr, align 4 br label %bb_1000256AC
exit_fn_1000256AC: ; preds = %bb_c1000257F0 store i64 %FP_7885, i64* %FP_ptr, align 4 store i64 %LR_4597, i64* %LR_ptr, align 4 store i64 %SP_7507, i64* %SP_ptr, align 4 store i64 1, i64* %X0_ptr, align 4 store i64 %X1_6860, i64* %X1_ptr, align 4 store i64 %X2_5028, i64* %X2_ptr, align 4 store i64 %X3_4328, i64* %X3_ptr, align 4 store i64 %X4_4028, i64* %X4_ptr, align 4 store i64 %X5_3902, i64* %X5_ptr, align 4 store i64 %X6_3847, i64* %X6_ptr, align 4 store i64 %X7_3821, i64* %X7_ptr, align 4 store i64 %X8_9549, i64* %X8_ptr, align 4 store i64 %X9_7475, i64* %X9_ptr, align 4 store i64 1, i64* %X10_ptr, align 4 ret void
bb_1000256AC: ; preds = %entry_fn_1000256AC %SP_7497 = add i64 %SP_init, -96 %1 = add i64 %SP_init, -16 %2 = inttoptr i64 %1 to i64* store i64 %FP_init, i64* %2, align 1 %3 = add i64 %SP_init, -8 %4 = inttoptr i64 %3 to i64* store i64 %LR_init, i64* %4, align 1 %FP_7879 = add i64 %SP_init, -16 %X8_9522 = add i64 %SP_init, -40 %5 = add i64 %SP_init, -24 %6 = inttoptr i64 %5 to i64* store i64 %X0_init, i64* %6, align 1 %7 = add i64 %SP_init, -32 %8 = inttoptr i64 %7 to i64* store i64 %X1_init, i64* %8, align 1 %9 = add i64 %SP_init, -40 %10 = inttoptr i64 %9 to i64* store i64 0, i64* %10, align 1 %W0_7588 = trunc i64 %X8_9522 to i32 %11 = add i64 %SP_init, -64 %12 = inttoptr i64 %11 to i64* store i64 %X3_init, i64* %12, align 1 br label %bb_1000256AC_call
bb_1000256AC_call: ; preds = %bb_1000256AC store i64 %FP_7879, i64* %FP_ptr, align 4 store i64 %LR_init, i64* %LR_ptr, align 4 store i64 %SP_7497, i64* %SP_ptr, align 4 store i64 %X8_9522, i64* %X0_ptr, align 4 store i64 %X2_init, i64* %X1_ptr, align 4 store i64 %X2_init, i64* %X2_ptr, align 4 store i64 %X3_init, i64* %X3_ptr, align 4 store i64 %X4_init, i64* %X4_ptr, align 4 store i64 %X5_init, i64* %X5_ptr, align 4 store i64 %X6_init, i64* %X6_ptr, align 4 store i64 %X7_init, i64* %X7_ptr, align 4 store i64 %X8_9522, i64* %X8_ptr, align 4 store i64 0, i64* %X9_ptr, align 4 store i64 %X10_init, i64* %X10_ptr, align 4 call void @objc_storeStrong(%regset* %0) %LR_4598 = load i64, i64* %LR_ptr, align 4 %X0_8883 = load i64, i64* %X0_ptr, align 4 %W0_7601 = trunc i64 %X0_8883 to i32 %X1_6848 = load i64, i64* %X1_ptr, align 4 %X2_5016 = load i64, i64* %X2_ptr, align 4 %X3_4316 = load i64, i64* %X3_ptr, align 4 %X4_4016 = load i64, i64* %X4_ptr, align 4 %X5_3890 = load i64, i64* %X5_ptr, align 4 %X6_3835 = load i64, i64* %X6_ptr, align 4 %X7_3809 = load i64, i64* %X7_ptr, align 4 %X8_9537 = load i64, i64* %X8_ptr, align 4 %X9_7463 = load i64, i64* %X9_ptr, align 4 %X10_4423 = load i64, i64* %X10_ptr, align 4 br label %bb_c1000256D8
bb_c1000256D8: ; preds = %bb_1000256AC_call %X8_9523 = add i64 %FP_7879, -32 %13 = add i64 %FP_7879, -32 %14 = inttoptr i64 %13 to i64* store i64 0, i64* %14, align 1 %15 = add i64 %SP_7497, 32 %16 = inttoptr i64 %15 to i64* %X9_7454 = load i64, i64* %16, align 1 %W0_7589 = trunc i64 %X8_9523 to i32 br label %bb_c1000256D8_call
bb_c1000256D8_call: ; preds = %bb_c1000256D8 store i64 %FP_7879, i64* %FP_ptr, align 4 store i64 %LR_4598, i64* %LR_ptr, align 4 store i64 %SP_7497, i64* %SP_ptr, align 4 store i64 %X8_9523, i64* %X0_ptr, align 4 store i64 %X9_7454, i64* %X1_ptr, align 4 store i64 %X2_5016, i64* %X2_ptr, align 4 store i64 %X3_4316, i64* %X3_ptr, align 4 store i64 %X4_4016, i64* %X4_ptr, align 4 store i64 %X5_3890, i64* %X5_ptr, align 4 store i64 %X6_3835, i64* %X6_ptr, align 4 store i64 %X7_3809, i64* %X7_ptr, align 4 store i64 %X8_9523, i64* %X8_ptr, align 4 store i64 %X9_7454, i64* %X9_ptr, align 4 store i64 %X10_4423, i64* %X10_ptr, align 4 call void @objc_storeStrong(%regset* %0) %LR_4599 = load i64, i64* %LR_ptr, align 4 %X0_8884 = load i64, i64* %X0_ptr, align 4 %W0_7602 = trunc i64 %X0_8884 to i32 %X1_6849 = load i64, i64* %X1_ptr, align 4 %X2_5017 = load i64, i64* %X2_ptr, align 4 %X3_4317 = load i64, i64* %X3_ptr, align 4 %X4_4017 = load i64, i64* %X4_ptr, align 4 %X5_3891 = load i64, i64* %X5_ptr, align 4 %X6_3836 = load i64, i64* %X6_ptr, align 4 %X7_3810 = load i64, i64* %X7_ptr, align 4 %X8_9538 = load i64, i64* %X8_ptr, align 4 %X9_7464 = load i64, i64* %X9_ptr, align 4 %X10_4424 = load i64, i64* %X10_ptr, align 4 br label %bb_c1000256F4
bb_c1000256F4: ; preds = %bb_c1000256D8_call %17 = add i64 %SP_7497, 40 %18 = inttoptr i64 %17 to i64* store i64 0, i64* %18, align 1 %X9_7457 = load i64, i64* inttoptr (i64 4295253320 to i64*), align 8 %X1_6839 = load i64, i64* inttoptr (i64 4295250736 to i64*), align 16 %W0_7591 = trunc i64 %X9_7457 to i32 br label %bb_c1000256F4_call
bb_c1000256F4_call: ; preds = %bb_c1000256F4 store i64 %FP_7879, i64* %FP_ptr, align 4 store i64 %LR_4599, i64* %LR_ptr, align 4 store i64 %SP_7497, i64* %SP_ptr, align 4 store i64 %X9_7457, i64* %X0_ptr, align 4 store i64 %X1_6839, i64* %X1_ptr, align 4 store i64 %X2_5017, i64* %X2_ptr, align 4 store i64 %X3_4317, i64* %X3_ptr, align 4 store i64 %X4_4017, i64* %X4_ptr, align 4 store i64 %X5_3891, i64* %X5_ptr, align 4 store i64 %X6_3836, i64* %X6_ptr, align 4 store i64 %X7_3810, i64* %X7_ptr, align 4 store i64 4295250736, i64* %X8_ptr, align 4 store i64 %X9_7457, i64* %X9_ptr, align 4 store i64 %X10_4424, i64* %X10_ptr, align 4 call void @objc_msgSend(%regset* %0) %LR_4600 = load i64, i64* %LR_ptr, align 4 %X0_8885 = load i64, i64* %X0_ptr, align 4 %W0_7603 = trunc i64 %X0_8885 to i32 %X1_6850 = load i64, i64* %X1_ptr, align 4 %X2_5018 = load i64, i64* %X2_ptr, align 4 %X3_4318 = load i64, i64* %X3_ptr, align 4 %X4_4018 = load i64, i64* %X4_ptr, align 4 %X5_3892 = load i64, i64* %X5_ptr, align 4 %X6_3837 = load i64, i64* %X6_ptr, align 4 %X7_3811 = load i64, i64* %X7_ptr, align 4 %X8_9539 = load i64, i64* %X8_ptr, align 4 %X9_7465 = load i64, i64* %X9_ptr, align 4 %X10_4425 = load i64, i64* %X10_ptr, align 4 br label %bb_c10002571C
bb_c10002571C: ; preds = %bb_c1000256F4_call %X1_6840 = load i64, i64* inttoptr (i64 4295250160 to i64*), align 16 br label %bb_c10002571C_call
bb_c10002571C_call: ; preds = %bb_c10002571C store i64 %FP_7879, i64* %FP_ptr, align 4 store i64 %LR_4600, i64* %LR_ptr, align 4 store i64 %SP_7497, i64* %SP_ptr, align 4 store i64 %X0_8885, i64* %X0_ptr, align 4 store i64 %X1_6840, i64* %X1_ptr, align 4 store i64 %X2_5018, i64* %X2_ptr, align 4 store i64 %X3_4318, i64* %X3_ptr, align 4 store i64 %X4_4018, i64* %X4_ptr, align 4 store i64 %X5_3892, i64* %X5_ptr, align 4 store i64 %X6_3837, i64* %X6_ptr, align 4 store i64 %X7_3811, i64* %X7_ptr, align 4 store i64 4295250160, i64* %X8_ptr, align 4 store i64 %X9_7465, i64* %X9_ptr, align 4 store i64 %X10_4425, i64* %X10_ptr, align 4 call void @objc_msgSend(%regset* %0) %LR_4601 = load i64, i64* %LR_ptr, align 4 %X0_8886 = load i64, i64* %X0_ptr, align 4 %W0_7604 = trunc i64 %X0_8886 to i32 %X1_6851 = load i64, i64* %X1_ptr, align 4 %X2_5019 = load i64, i64* %X2_ptr, align 4 %X3_4319 = load i64, i64* %X3_ptr, align 4 %X4_4019 = load i64, i64* %X4_ptr, align 4 %X5_3893 = load i64, i64* %X5_ptr, align 4 %X6_3838 = load i64, i64* %X6_ptr, align 4 %X7_3812 = load i64, i64* %X7_ptr, align 4 %X8_9540 = load i64, i64* %X8_ptr, align 4 %X9_7466 = load i64, i64* %X9_ptr, align 4 %X10_4426 = load i64, i64* %X10_ptr, align 4 br label %bb_c10002572C
bb_c10002572C: ; preds = %bb_c10002571C_call %19 = add i64 %SP_7497, 40 %20 = inttoptr i64 %19 to i64* %X8_9528 = load i64, i64* %20, align 1 %21 = add i64 %SP_7497, 40 %22 = inttoptr i64 %21 to i64* store i64 %X0_8886, i64* %22, align 1 %W0_7592 = trunc i64 %X8_9528 to i32 br label %bb_c10002572C_call
bb_c10002572C_call: ; preds = %bb_c10002572C store i64 %FP_7879, i64* %FP_ptr, align 4 store i64 %LR_4601, i64* %LR_ptr, align 4 store i64 %SP_7497, i64* %SP_ptr, align 4 store i64 %X8_9528, i64* %X0_ptr, align 4 store i64 %X1_6851, i64* %X1_ptr, align 4 store i64 %X2_5019, i64* %X2_ptr, align 4 store i64 %X3_4319, i64* %X3_ptr, align 4 store i64 %X4_4019, i64* %X4_ptr, align 4 store i64 %X5_3893, i64* %X5_ptr, align 4 store i64 %X6_3838, i64* %X6_ptr, align 4 store i64 %X7_3812, i64* %X7_ptr, align 4 store i64 %X8_9528, i64* %X8_ptr, align 4 store i64 %X9_7466, i64* %X9_ptr, align 4 store i64 %X10_4426, i64* %X10_ptr, align 4 call void @objc_release(%regset* %0) %LR_4602 = load i64, i64* %LR_ptr, align 4 %X0_8887 = load i64, i64* %X0_ptr, align 4 %W0_7605 = trunc i64 %X0_8887 to i32 %X1_6852 = load i64, i64* %X1_ptr, align 4 %X2_5020 = load i64, i64* %X2_ptr, align 4 %X3_4320 = load i64, i64* %X3_ptr, align 4 %X4_4020 = load i64, i64* %X4_ptr, align 4 %X5_3894 = load i64, i64* %X5_ptr, align 4 %X6_3839 = load i64, i64* %X6_ptr, align 4 %X7_3813 = load i64, i64* %X7_ptr, align 4 %X8_9541 = load i64, i64* %X8_ptr, align 4 %X9_7467 = load i64, i64* %X9_ptr, align 4 %X10_4427 = load i64, i64* %X10_ptr, align 4 br label %bb_c10002573C
bb_c10002573C: ; preds = %bb_c10002572C_call %23 = add i64 %SP_7497, 40 %24 = inttoptr i64 %23 to i64* %X8_9529 = load i64, i64* %24, align 1 %25 = add i64 %SP_7497, 24 %26 = inttoptr i64 %25 to i64* store i64 %X8_9529, i64* %26, align 1 br label %bb_c10002573C_call
bb_c10002573C_call: ; preds = %bb_c10002573C store i64 %FP_7879, i64* %FP_ptr, align 4 store i64 %LR_4602, i64* %LR_ptr, align 4 store i64 %SP_7497, i64* %SP_ptr, align 4 store i64 %X0_8887, i64* %X0_ptr, align 4 store i64 %X1_6852, i64* %X1_ptr, align 4 store i64 %X2_5020, i64* %X2_ptr, align 4 store i64 %X3_4320, i64* %X3_ptr, align 4 store i64 %X4_4020, i64* %X4_ptr, align 4 store i64 %X5_3894, i64* %X5_ptr, align 4 store i64 %X6_3839, i64* %X6_ptr, align 4 store i64 %X7_3813, i64* %X7_ptr, align 4 store i64 %X8_9529, i64* %X8_ptr, align 4 store i64 %X9_7467, i64* %X9_ptr, align 4 store i64 %X10_4427, i64* %X10_ptr, align 4 call void @NSHomeDirectory(%regset* %0) %LR_4603 = load i64, i64* %LR_ptr, align 4 %X0_8888 = load i64, i64* %X0_ptr, align 4 %W0_7606 = trunc i64 %X0_8888 to i32 %X1_6853 = load i64, i64* %X1_ptr, align 4 %X2_5021 = load i64, i64* %X2_ptr, align 4 %X3_4321 = load i64, i64* %X3_ptr, align 4 %X4_4021 = load i64, i64* %X4_ptr, align 4 %X5_3895 = load i64, i64* %X5_ptr, align 4 %X6_3840 = load i64, i64* %X6_ptr, align 4 %X7_3814 = load i64, i64* %X7_ptr, align 4 %X8_9542 = load i64, i64* %X8_ptr, align 4 %X9_7468 = load i64, i64* %X9_ptr, align 4 %X10_4428 = load i64, i64* %X10_ptr, align 4 br label %bb_c100025748
bb_c100025748: ; preds = %bb_c10002573C_call br label %bb_c100025748_call
bb_c100025748_call: ; preds = %bb_c100025748 store i64 %FP_7879, i64* %FP_ptr, align 4 store i64 %LR_4603, i64* %LR_ptr, align 4 store i64 %SP_7497, i64* %SP_ptr, align 4 store i64 %X0_8888, i64* %X0_ptr, align 4 store i64 %X1_6853, i64* %X1_ptr, align 4 store i64 %X2_5021, i64* %X2_ptr, align 4 store i64 %X3_4321, i64* %X3_ptr, align 4 store i64 %X4_4021, i64* %X4_ptr, align 4 store i64 %X5_3895, i64* %X5_ptr, align 4 store i64 %X6_3840, i64* %X6_ptr, align 4 store i64 %X7_3814, i64* %X7_ptr, align 4 store i64 %X8_9542, i64* %X8_ptr, align 4 store i64 %X9_7468, i64* %X9_ptr, align 4 store i64 %X10_4428, i64* %X10_ptr, align 4 call void @objc_retainAutoreleasedReturnValue(%regset* %0) %LR_4604 = load i64, i64* %LR_ptr, align 4 %X0_8889 = load i64, i64* %X0_ptr, align 4 %W0_7607 = trunc i64 %X0_8889 to i32 %X1_6854 = load i64, i64* %X1_ptr, align 4 %X2_5022 = load i64, i64* %X2_ptr, align 4 %X3_4322 = load i64, i64* %X3_ptr, align 4 %X4_4022 = load i64, i64* %X4_ptr, align 4 %X5_3896 = load i64, i64* %X5_ptr, align 4 %X6_3841 = load i64, i64* %X6_ptr, align 4 %X7_3815 = load i64, i64* %X7_ptr, align 4 %X8_9543 = load i64, i64* %X8_ptr, align 4 %X9_7469 = load i64, i64* %X9_ptr, align 4 %X10_4429 = load i64, i64* %X10_ptr, align 4 br label %bb_c100025750
bb_c100025750: ; preds = %bb_c100025748_call %X1_6843 = load i64, i64* inttoptr (i64 4295252040 to i64*), align 8 %27 = add i64 %SP_7497, 24 %28 = inttoptr i64 %27 to i64* %X2_5014 = load i64, i64* %28, align 1 %29 = add i64 %SP_7497, 16 %30 = inttoptr i64 %29 to i64* store i64 %X0_8889, i64* %30, align 1 %W0_7593 = trunc i64 %X2_5014 to i32 %31 = add i64 %SP_7497, 16 %32 = inttoptr i64 %31 to i64* %X3_4315 = load i64, i64* %32, align 1 br label %bb_c100025750_call
bb_c100025750_call: ; preds = %bb_c100025750 store i64 %FP_7879, i64* %FP_ptr, align 4 store i64 %LR_4604, i64* %LR_ptr, align 4 store i64 %SP_7497, i64* %SP_ptr, align 4 store i64 %X2_5014, i64* %X0_ptr, align 4 store i64 %X1_6843, i64* %X1_ptr, align 4 store i64 4295220136, i64* %X2_ptr, align 4 store i64 %X3_4315, i64* %X3_ptr, align 4 store i64 0, i64* %X4_ptr, align 4 store i64 3600, i64* %X5_ptr, align 4 store i64 1, i64* %X6_ptr, align 4 store i64 %X7_3815, i64* %X7_ptr, align 4 store i64 4295220136, i64* %X8_ptr, align 4 store i64 0, i64* %X9_ptr, align 4 store i64 1, i64* %X10_ptr, align 4 call void @objc_msgSend(%regset* %0) %LR_4605 = load i64, i64* %LR_ptr, align 4 %X0_8890 = load i64, i64* %X0_ptr, align 4 %W0_7608 = trunc i64 %X0_8890 to i32 %X1_6855 = load i64, i64* %X1_ptr, align 4 %X2_5023 = load i64, i64* %X2_ptr, align 4 %X3_4323 = load i64, i64* %X3_ptr, align 4 %X4_4023 = load i64, i64* %X4_ptr, align 4 %X5_3897 = load i64, i64* %X5_ptr, align 4 %X6_3842 = load i64, i64* %X6_ptr, align 4 %X7_3816 = load i64, i64* %X7_ptr, align 4 %X8_9544 = load i64, i64* %X8_ptr, align 4 %X9_7470 = load i64, i64* %X9_ptr, align 4 %X10_4430 = load i64, i64* %X10_ptr, align 4 br label %bb_c100025790
bb_c100025790: ; preds = %bb_c100025750_call %33 = add i64 %SP_7497, 16 %34 = inttoptr i64 %33 to i64* %X0_8876 = load i64, i64* %34, align 1 %W0_7594 = trunc i64 %X0_8876 to i32 br label %bb_c100025790_call
bb_c100025790_call: ; preds = %bb_c100025790 store i64 %FP_7879, i64* %FP_ptr, align 4 store i64 %LR_4605, i64* %LR_ptr, align 4 store i64 %SP_7497, i64* %SP_ptr, align 4 store i64 %X0_8876, i64* %X0_ptr, align 4 store i64 %X1_6855, i64* %X1_ptr, align 4 store i64 %X2_5023, i64* %X2_ptr, align 4 store i64 %X3_4323, i64* %X3_ptr, align 4 store i64 %X4_4023, i64* %X4_ptr, align 4 store i64 %X5_3897, i64* %X5_ptr, align 4 store i64 %X6_3842, i64* %X6_ptr, align 4 store i64 %X7_3816, i64* %X7_ptr, align 4 store i64 %X8_9544, i64* %X8_ptr, align 4 store i64 %X9_7470, i64* %X9_ptr, align 4 store i64 %X10_4430, i64* %X10_ptr, align 4 call void @objc_release(%regset* %0) %LR_4606 = load i64, i64* %LR_ptr, align 4 %X0_8891 = load i64, i64* %X0_ptr, align 4 %W0_7609 = trunc i64 %X0_8891 to i32 %X1_6856 = load i64, i64* %X1_ptr, align 4 %X2_5024 = load i64, i64* %X2_ptr, align 4 %X3_4324 = load i64, i64* %X3_ptr, align 4 %X4_4024 = load i64, i64* %X4_ptr, align 4 %X5_3898 = load i64, i64* %X5_ptr, align 4 %X6_3843 = load i64, i64* %X6_ptr, align 4 %X7_3817 = load i64, i64* %X7_ptr, align 4 %X8_9545 = load i64, i64* %X8_ptr, align 4 %X9_7471 = load i64, i64* %X9_ptr, align 4 %X10_4431 = load i64, i64* %X10_ptr, align 4 br label %bb_c100025798
bb_c100025798: ; preds = %bb_c100025790_call %35 = add i64 %SP_7497, 40 %36 = inttoptr i64 %35 to i64* %X9_7459 = load i64, i64* %36, align 1 %X1_6844 = load i64, i64* inttoptr (i64 4295252312 to i64*), align 8 %W0_7595 = trunc i64 %X9_7459 to i32 br label %bb_c100025798_call
bb_c100025798_call: ; preds = %bb_c100025798 store i64 %FP_7879, i64* %FP_ptr, align 4 store i64 %LR_4606, i64* %LR_ptr, align 4 store i64 %SP_7497, i64* %SP_ptr, align 4 store i64 %X9_7459, i64* %X0_ptr, align 4 store i64 %X1_6844, i64* %X1_ptr, align 4 store i64 %X2_5024, i64* %X2_ptr, align 4 store i64 %X3_4324, i64* %X3_ptr, align 4 store i64 %X4_4024, i64* %X4_ptr, align 4 store i64 %X5_3898, i64* %X5_ptr, align 4 store i64 %X6_3843, i64* %X6_ptr, align 4 store i64 %X7_3817, i64* %X7_ptr, align 4 store i64 4295252312, i64* %X8_ptr, align 4 store i64 %X9_7459, i64* %X9_ptr, align 4 store i64 %X10_4431, i64* %X10_ptr, align 4 call void @objc_msgSend(%regset* %0) %LR_4607 = load i64, i64* %LR_ptr, align 4 %X0_8892 = load i64, i64* %X0_ptr, align 4 %W0_7610 = trunc i64 %X0_8892 to i32 %X1_6857 = load i64, i64* %X1_ptr, align 4 %X2_5025 = load i64, i64* %X2_ptr, align 4 %X3_4325 = load i64, i64* %X3_ptr, align 4 %X4_4025 = load i64, i64* %X4_ptr, align 4 %X5_3899 = load i64, i64* %X5_ptr, align 4 %X6_3844 = load i64, i64* %X6_ptr, align 4 %X7_3818 = load i64, i64* %X7_ptr, align 4 %X8_9546 = load i64, i64* %X8_ptr, align 4 %X9_7472 = load i64, i64* %X9_ptr, align 4 %X10_4432 = load i64, i64* %X10_ptr, align 4 br label %bb_c1000257B0
bb_c1000257B0: ; preds = %bb_c100025798_call %X9_7460 = add i64 %SP_7497, 40 %37 = add i64 %SP_7497, 12 %38 = inttoptr i64 %37 to i32* store i32 %W0_7610, i32* %38, align 1 %W0_7597 = trunc i64 %X9_7460 to i32 br label %bb_c1000257B0_call
bb_c1000257B0_call: ; preds = %bb_c1000257B0 store i64 %FP_7879, i64* %FP_ptr, align 4 store i64 %LR_4607, i64* %LR_ptr, align 4 store i64 %SP_7497, i64* %SP_ptr, align 4 store i64 %X9_7460, i64* %X0_ptr, align 4 store i64 0, i64* %X1_ptr, align 4 store i64 %X2_5025, i64* %X2_ptr, align 4 store i64 %X3_4325, i64* %X3_ptr, align 4 store i64 %X4_4025, i64* %X4_ptr, align 4 store i64 %X5_3899, i64* %X5_ptr, align 4 store i64 %X6_3844, i64* %X6_ptr, align 4 store i64 %X7_3818, i64* %X7_ptr, align 4 store i64 0, i64* %X8_ptr, align 4 store i64 %X9_7460, i64* %X9_ptr, align 4 store i64 %X10_4432, i64* %X10_ptr, align 4 call void @objc_storeStrong(%regset* %0) %LR_4608 = load i64, i64* %LR_ptr, align 4 %X0_8893 = load i64, i64* %X0_ptr, align 4 %W0_7611 = trunc i64 %X0_8893 to i32 %X1_6858 = load i64, i64* %X1_ptr, align 4 %X2_5026 = load i64, i64* %X2_ptr, align 4 %X3_4326 = load i64, i64* %X3_ptr, align 4 %X4_4026 = load i64, i64* %X4_ptr, align 4 %X5_3900 = load i64, i64* %X5_ptr, align 4 %X6_3845 = load i64, i64* %X6_ptr, align 4 %X7_3819 = load i64, i64* %X7_ptr, align 4 %X8_9547 = load i64, i64* %X8_ptr, align 4 %X9_7473 = load i64, i64* %X9_ptr, align 4 %X10_4433 = load i64, i64* %X10_ptr, align 4 br label %bb_c1000257C8
bb_c1000257C8: ; preds = %bb_c1000257B0_call %X9_7461 = add i64 %FP_7879, -32 %W0_7598 = trunc i64 %X9_7461 to i32 br label %bb_c1000257C8_call
bb_c1000257C8_call: ; preds = %bb_c1000257C8 store i64 %FP_7879, i64* %FP_ptr, align 4 store i64 %LR_4608, i64* %LR_ptr, align 4 store i64 %SP_7497, i64* %SP_ptr, align 4 store i64 %X9_7461, i64* %X0_ptr, align 4 store i64 0, i64* %X1_ptr, align 4 store i64 %X2_5026, i64* %X2_ptr, align 4 store i64 %X3_4326, i64* %X3_ptr, align 4 store i64 %X4_4026, i64* %X4_ptr, align 4 store i64 %X5_3900, i64* %X5_ptr, align 4 store i64 %X6_3845, i64* %X6_ptr, align 4 store i64 %X7_3819, i64* %X7_ptr, align 4 store i64 0, i64* %X8_ptr, align 4 store i64 %X9_7461, i64* %X9_ptr, align 4 store i64 %X10_4433, i64* %X10_ptr, align 4 call void @objc_storeStrong(%regset* %0) %LR_4609 = load i64, i64* %LR_ptr, align 4 %X0_8894 = load i64, i64* %X0_ptr, align 4 %W0_7612 = trunc i64 %X0_8894 to i32 %X1_6859 = load i64, i64* %X1_ptr, align 4 %X2_5027 = load i64, i64* %X2_ptr, align 4 %X3_4327 = load i64, i64* %X3_ptr, align 4 %X4_4027 = load i64, i64* %X4_ptr, align 4 %X5_3901 = load i64, i64* %X5_ptr, align 4 %X6_3846 = load i64, i64* %X6_ptr, align 4 %X7_3820 = load i64, i64* %X7_ptr, align 4 %X8_9548 = load i64, i64* %X8_ptr, align 4 %X9_7474 = load i64, i64* %X9_ptr, align 4 %X10_4434 = load i64, i64* %X10_ptr, align 4 br label %bb_c1000257DC
bb_c1000257DC: ; preds = %bb_c1000257C8_call %X9_7462 = add i64 %FP_7879, -24 %W0_7599 = trunc i64 %X9_7462 to i32 br label %bb_c1000257DC_call
bb_c1000257DC_call: ; preds = %bb_c1000257DC store i64 %FP_7879, i64* %FP_ptr, align 4 store i64 %LR_4609, i64* %LR_ptr, align 4 store i64 %SP_7497, i64* %SP_ptr, align 4 store i64 %X9_7462, i64* %X0_ptr, align 4 store i64 0, i64* %X1_ptr, align 4 store i64 %X2_5027, i64* %X2_ptr, align 4 store i64 %X3_4327, i64* %X3_ptr, align 4 store i64 %X4_4027, i64* %X4_ptr, align 4 store i64 %X5_3901, i64* %X5_ptr, align 4 store i64 %X6_3846, i64* %X6_ptr, align 4 store i64 %X7_3820, i64* %X7_ptr, align 4 store i64 0, i64* %X8_ptr, align 4 store i64 %X9_7462, i64* %X9_ptr, align 4 store i64 %X10_4434, i64* %X10_ptr, align 4 call void @objc_storeStrong(%regset* %0) %LR_4610 = load i64, i64* %LR_ptr, align 4 %X0_8895 = load i64, i64* %X0_ptr, align 4 %W0_7613 = trunc i64 %X0_8895 to i32 %X1_6860 = load i64, i64* %X1_ptr, align 4 %X2_5028 = load i64, i64* %X2_ptr, align 4 %X3_4328 = load i64, i64* %X3_ptr, align 4 %X4_4028 = load i64, i64* %X4_ptr, align 4 %X5_3902 = load i64, i64* %X5_ptr, align 4 %X6_3847 = load i64, i64* %X6_ptr, align 4 %X7_3821 = load i64, i64* %X7_ptr, align 4 %X8_9549 = load i64, i64* %X8_ptr, align 4 %X9_7475 = load i64, i64* %X9_ptr, align 4 %X10_4435 = load i64, i64* %X10_ptr, align 4 br label %bb_c1000257F0
bb_c1000257F0: ; preds = %bb_c1000257DC_call %39 = add i64 %SP_7497, 80 %40 = inttoptr i64 %39 to i64* %FP_7885 = load i64, i64* %40, align 1 %41 = add i64 %SP_7497, 88 %42 = inttoptr i64 %41 to i64* %LR_4597 = load i64, i64* %42, align 1 %SP_7507 = add i64 %SP_7497, 96 br label %exit_fn_1000256AC}
declare void @NSHomeDirectory(%regset*)

Appendix 5: Query script


#coding:utf8
from pymongo import MongoClientimport sysimport osimport reimport json

conn = MongoClient('192.168.10.143', 27017)db = conn.ios_metedataipa_basic_tb = db.basic_info_0521ipa_symbol_tb = db.symbol_table_0521ipa_string_tb = db.strings_0521
# pipe = [# {'$match': {'hash': hashsum}},# {'$group': {'_id': '$path', 'num': {'$sum': 1}}},# ]# res = list(db.sdk.aggregate(pipeline=pipe)) def overlapping_test(): print ipa_basic_tb.count() print len(ipa_basic_tb.distinct("BundleIdentifier")) return
def main(): overlapping_test() # find GCDWebServer: _OBJC_CLASS_$_GCDWebServer\n bundle_gcdwebserver_set = set()
for i in ipa_string_tb.find({"Value": {"$regex":"GCDWebServer"}}): bundle_gcdwebserver_set.add(ipa_basic_tb.find_one({"Hash": i["Hash"]})["BundleIdentifier"]) print len(bundle_gcdwebserver_set) print bundle_gcdwebserver_set # find CDVWKWebViewEngine bundle_ionic_web_view_set = set()
for i in ipa_string_tb.find({"Value": {"$regex":"CDVWKWebViewEngine"}}): bundle_ionic_web_view_set.add(ipa_basic_tb.find_one({"Hash": i["Hash"]})["BundleIdentifier"]) print len(bundle_ionic_web_view_set) print bundle_ionic_web_view_set
# find ADCWebViewModule bundle_adc_web_view_set = set()
for i in ipa_string_tb.find({"Value": {"$regex":"ADCWebViewModule"}}): bundle_adc_web_view_set.add(ipa_basic_tb.find_one({"Hash": i["Hash"]})["BundleIdentifier"]) print len(bundle_adc_web_view_set) print bundle_adc_web_view_set # result: GCDWebServer && !CDVWKWebViewEngine bundle_gcdwebserver_and_not_ionic_web_view_set = bundle_gcdwebserver_set - bundle_ionic_web_view_set - bundle_adc_web_view_set print len(bundle_gcdwebserver_set - bundle_ionic_web_view_set - bundle_adc_web_view_set) print bundle_gcdwebserver_and_not_ionic_web_view_set
for b in bundle_gcdwebserver_and_not_ionic_web_view_set: t = ipa_basic_tb.find_one({"BundleIdentifier":b}) print t["Path"].encode("utf8") os.system("cp " + '"' + t["Path"].encode("utf8")[0:5] + t["Path"].encode("utf8")[9:] + '"' + " /data/ipa_clawer/exchange/ipa/" + b.encode("utf8") + ".ipa")# find: GCDWebServer && !CDVWKWebViewEngine && BindToLocalhost# bundle_gcdwebserver_and_not_ionic_web_view_set_not_bindtolocal = set()# for b in bundle_gcdwebserver_and_not_ionic_web_view_set:# if ipa_string_tb.find({"BundleIdentifier": b, "Value": {"$regex":"BindToLocalhost"}}).count() == 0:# bundle_gcdwebserver_and_not_ionic_web_view_set_not_bindtolocal.add(b)# # print len(bundle_gcdwebserver_and_not_ionic_web_view_set_not_bindtolocal)# print bundle_gcdwebserver_and_not_ionic_web_view_set_not_bindtolocal
# print len(bundle_ionic_web_view_set - bundle_gcdwebserver_set)# print bundle_ionic_web_view_set - bundle_gcdwebserver_set return
if __name__ == '__main__': main()