-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathVulnerabilityHttpConnection
More file actions
1277 lines (1277 loc) · 246 KB
/
VulnerabilityHttpConnection
File metadata and controls
1277 lines (1277 loc) · 246 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
com.elbatrop.banks http://code.google.com/p/marketbilling/issues/detail?id=25,
com.elbatrop.banks http://media.admob.com/mraid/v1/mraid_app_banner.js,http://media.admob.com/mraid/v1/mraid_app_expanded_banner.js,http://media.admob.com/mraid/v1/mraid_app_interstitial.js,
com.elbatrop.banks http://www.gstatic.com/safa/sdk-core-v40.js,http://media.admob.com/sdk-core-v40.js,
com.elbatrop.banks http://e.admob.com/imp?ad_loc=@gw_adlocid@&qdata=@gw_qdata@&ad_network_id=@gw_adnetid@&js=@gw_sdkver@&session_id=@gw_sessid@&seq_num=@gw_seqnum@&nr=@gw_adnetrefresh@,http://e.admob.com/nofill?ad_loc=@gw_adlocid@&qdata=@gw_qdata@&js=@gw_sdkver@&session_id=@gw_sessid@&seq_num=@gw_seqnum@,http://e.admob.com/clk?ad_loc=@gw_adlocid@&qdata=@gw_qdata@&ad_network_id=@gw_adnetid@&js=@gw_sdkver@&session_id=@gw_sessid@&seq_num=@gw_seqnum@&nr=@gw_adnetrefresh@,
com.elbatrop.banks http://www.elbatrop.com/locator/infopages/info.php,
com.elbatrop.banks http://s1.elbatrop.com/locator/submit.py?,
com.elbatrop.banks http://www.elbatrop.com/locator/directions.asp?db=%s&slat=%s&slon=%s&dlat=%s&dlon=%s,
com.elbatrop.banks http://my.mobfox.com/request.php,
com.elbatrop.banks http://my.mobfox.com/request.php,
com.elbatrop.banks http://ads.mobclix.com/,http://data.mobclix.com/post/config,http://data.mobclix.com/post/senddata,http://vc.mobclix.com,http://data.mobclix.com/post/feedback,http://data.mobclix.com/post/debug,http://data.mobclix.com/,http://ads.mobcdn.com/js/mraid_boot_loader.js,
com.elbatrop.banks http://a.mobclix.com/fail,
com.elbatrop.banks http://www.mobclix.com,http://www.mobclix.com,
net.cts.android.tnb http://maps.google.com/maps?saddr=,
bokf.ib.android.market.bot http://maps.google.com/maps?f=d&daddr=%s,%s,
com.ifs.banking.fiid3576 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid3576 http://market.android.com/details?id=%s,
bokf.ib.android.market.bok http://maps.google.com/maps?f=d&daddr=%s,%s,
com.ifs.banking.fiid1146 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid1339 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid1339 http://market.android.com/details?id=%s,
com.servisfirst http://www.w3.org/2000/xmlns/,http://www.w3.org/2000/xmlns/,http://www.w3.org/2000/xmlns/,
com.servisfirst http://www.w3.org/2003/05/soap-envelope,
com.servisfirst http://www.w3.org/2001/xmlschema-instance\' xmlns:xsd=\'http://www.w3.org/2001/xmlschema\' xmlns:soap=\',http://schemas.xmlsoap.org/soap/envelope/,
com.servisfirst http://maps.google.com/maps?saddr=,
com.servisfirst http://docs.google.com/viewer?url=,
com.servisfirst http://meafinancial.com/meacommon/requestaction,http://meafinancial.com/meacommon/testrequestaction,http://www.w3.org/2001/xmlschema-instance,
com.woodforest http://maps.google.com/maps?saddr=%1$f,%2$f&daddr=%3$f,%4$f,
com.woodforest http://beta.woodforest.net:8080/xml.ashx/bank/account/%1$d,http://beta.woodforest.net:8080/xml.ashx/giftcard/%1$s,http://beta.woodforest.net:8080/xml.ashx/bank/keep,http://beta.woodforest.net:8080/xml.ashx/bank/keep,
com.woodforest http://maps.google.com/maps?saddr=%1$f,%2$f&daddr=%3$f,%4$f,
com.woodforest http://maps.google.com/maps?saddr=%1$f,%2$f&daddr=%3$f,%4$f,
com.woodforest http://maps.google.com/maps?saddr=%1$.7f,%2$.7f&daddr=%3$s,%4$s,%5$s,%6$s@%7$.7f,%8$.7f,
com.woodforest http://maps.google.com/maps?saddr=%1$f,%2$f&daddr=%3$f,%4$f,
com.woodforest http://maps.google.com/maps?saddr=%1$.7f,%2$.7f&daddr=%3$s,%4$s,%5$s,%6$s@%7$.7f,%8$.7f,
com.woodforest http://data.flurry.com/aap.do,http://ad.flurry.com/getcanvas.do,http://ad.flurry.com/getandroidapp.do,
org.msgcu.mobile http://schemas.xmlsoap.org/soap/envelope/,http://wrg.com/smsgateway/mobilemessage,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://schemas.xmlsoap.org/soap/envelope/,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/%2$s,http://wrg.com/smsgateway/%2$s,
org.msgcu.mobile http://maps.google.com/maps/geo?q=%1$s&output=csv&oe=utf8&sensor=false&key=abqiaaaal--_otv89jxp03efvlewibsdkugj2vocidlv4lqgufq9avnmfbrm1aatcqq1vkfo_1q4usha8-b7rg,
org.msgcu.mobile http://maps.google.com/maps?,
indian.apps.indianbank http://m.airpush.com/privacypolicy\'><i>airpush privacy policy</i> </a>. if you do not wish to receive ads delivered by airpush in the future, you may visit the <a href=\'http://m.airpush.com/optout\'><i>airpush opt-out page</i></a> or delete this app.</p></body></html>,
indian.apps.indianbank http://apistaging.airpush.com/dialogad/clicktocall.php,http://apistaging.airpush.com/dialogad/clicktomsg.php,http://api.airpush.com/testicon.php,
indian.apps.indianbank http://beta.airpush.com/images/adsthumbnail/48.png,
indian.apps.indianbank http://m.airpush.com/privacypolicy\'><i>airpush privacy policy</i> </a>. if you do not wish to receive ads delivered by airpush in the future, you may visit the <a href=\'http://m.airpush.com/optout\'><i>airpush opt-out page</i></a> or delete this app.</p></body></html>,
indian.apps.indianbank http://www.gstatic.com/safa/sdk-core-v40.js,http://media.admob.com/sdk-core-v40.js,
com.ducont.muscatbank http://www.bankmuscat.com/en-us/pages/default.aspx,http://www.facebook.com/pages/bankmuscat/155185831214144,http://twitter.com/bankmuscat_oman,http://twitter.com/bankmuscat_oman,
com.ducont.muscatbank http://maps.google.com/maps?f=d&hl=en,
com.nidag.artworks http://developers.facebook.com/docs/reference/rest/,
com.nidag.artworks http://www.,
com.nidag.artworks http://google.com/books,http://books.google.,
com.nidag.artworks http://www.google,http://zxing.appspot.com/scan,http://www.google,http://zxing.appspot.com/scan,
com.ifs.androidmobilebanking.fiid7720 http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid7720 http://market.android.com/details?id=%s,
com.ifs.banking.fiid3402 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid3402 http://www.amazon.com/gp/mas/dl/android?p=%s,http://market.android.com/details?id=%s,
com.cimbmalaysia http://itunes.apple.com/us/app/octo-explorer/id427500681?mt=8,
com.cimbmalaysia http://itunes.apple.com/us/app/octo-explorer/id427500681?mt=8,
com.cimbmalaysia http://www.example.com,
com.cimbmalaysia http://www.cimbclicks.com.my/mobile/20110413/,
com.cimbmalaysia http://www.example.com,
com.cimbmalaysia http://maps.google.com/maps?f=d&saddr=,
com.cimbmalaysia http://www.example.com,
com.cimbmalaysia http://www.cimbclicks.com.my/images/gm-pin.png,
com.cimbmalaysia http://www.example.com,http://maps.google.com/maps?f=d&saddr=,http://maps.google.com/maps?daddr=,
com.cimbmalaysia http://203.153.83.64/wps/common/checkbillaccrefno.js,http://203.153.83.64/wps/common/checkbillrefs.js,http://itunes.apple.com/my/app/cimb-clicks/id328803038?mt=8,http://itunes.apple.com/us/app/octo-explorer/id427500681?mt=8,http://itunes.apple.com/us/app/octo-explorer/id427500681?mt=8,http://teratotech.com/cimbversion/api/egold,
com.cimbmalaysia http://automation.whatismyip.com/n09230945.asp,
com.cimbmalaysia http://teratotech.com/cimbversion/api/egold,
com.cimbmalaysia http://schemas.xmlsoap.org/soap/envelope/,
br.com.passeionaweb.android.hoursbank http://m.airpush.com/privacypolicy\'><i>airpush privacy policy</i> </a>. if you do not wish to receive ads delivered by airpush in the future, you may visit the <a href=\'http://m.airpush.com/optout\'><i>airpush opt-out page</i></a> or delete this app.</p></body></html>,
br.com.passeionaweb.android.hoursbank http://apistaging.airpush.com/dialogad/clicktocall.php,http://apistaging.airpush.com/dialogad/clicktomsg.php,http://api.airpush.com/testicon.php,
br.com.passeionaweb.android.hoursbank http://beta.airpush.com/images/adsthumbnail/48.png,
br.com.passeionaweb.android.hoursbank http://m.airpush.com/privacypolicy\'><i>airpush privacy policy</i> </a>. if you do not wish to receive ads delivered by airpush in the future, you may visit the <a href=\'http://m.airpush.com/optout\'><i>airpush opt-out page</i></a> or delete this app.</p></body></html>,
com.bethpagefcu.m.prod http://www.spongycastle.org) ,
com.covantage.mbanking http://www.starone.org/home/rates,
com.covantage.mbanking http://www.starone.org/home/rates,
com.covantage.mbanking http://www.starone.org/home/accountaccess/mobile/mobile_faq,
com.covantage.mbanking http://www.starone.org/home/privacy,
com.covantage.mbanking http://www.starone.org/home/security,
com.covantage.mbanking http://www.starone.org/home/about/disclosures/other/mobile,
com.covantage.mbanking http://maps.google.com/maps?q=,
com.covantage.mbanking http://maps.google.com/maps?q=,
com.thebankofmaine http://maps.google.com/maps?saddr=,
com.thebankofmaine http://maps.google.com/maps?,
com.tworivers.bank http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.tworivers.bank http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,
com.salliemae.android http://www.spongycastle.org) ,
app.irssoft.hdfcbranchlocator http://www.gstatic.com/safa/sdk-core-v40.js,http://media.admob.com/sdk-core-v40.js,
com.softek.ofxclmobile.dowchemicalemployeescu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.dowchemicalemployeescu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.dowchemicalemployeescu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.dowchemicalemployeescu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.dowchemicalemployeescu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.dowchemicalemployeescu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.dowchemicalemployeescu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.dowchemicalemployeescu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.dowchemicalemployeescu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.dowchemicalemployeescu http://schemas.xmlsoap.org/soap/envelope/,
com.carrots.four.BAM http://www.gstatic.com/afma/sdk-core-v40.js,
com.carrots.four.BAM http://a.admob.com/f0?,
com.bochk.com http://bocmobiled.quotepower.com/chart/imageserver?&tas=volume-0_0_0&vid=b0c&code=%s&spant=%s&period=%s&curvetype=%s&width=%s&height=%s,http://bocmobiled.quotepower.com/servapp/servlet/pjserverdelay?vid=b0c&cmd=,http://bocmobiled.quotepower.com/chart/imageserver?&tas=volume-0_0_0&vid=b0c&code=%s&spant=%s&period=%s&curvetype=%s&width=%s&height=%s,http://bocmobiled.quotepower.com/chart/imageserver?&tas=volume-0_0_0&vid=b0c&code=%s&spant=%s&period=%s&curvetype=%s&width=%s&height=%s,http://bocmobiled.quotepower.com/chart/imageserver?&tas=volume-0_0_0&vid=b0c&code=%s&spant=%s&period=%s&curvetype=%s&width=%s&height=%s,http://bocmobiled.quotepower.com/chart/imageserver?&tas=volume-0_0_0&vid=b0c&code=%s&spant=%s&period=%s&curvetype=%s&width=%s&height=%s,http://bocmobiled.quotepower.com/servapp/servlet/pjserverdelay?vid=b0c&cmd=bocipo,http://bocmobiled.quotepower.com/servapp/servlet/pjserverdelay?vid=b0c&cmd=mix1_3,http://bocmobiled.quotepower.com/servapp/servlet/pjserverdelay?vid=b0c&cmd=stock4_1&code=,http://bocmobiled.quotepower.com/servapp/servlet/pjserverdelay?vid=b0c&cmd=,http://bocmobiled.quotepower.com/servapp/servlet/pjserverdelay?vid=b0c&cmd=boc_snapqw&code=,
com.bochk.com http://bochk.mtel.ws/java/bochk/branchlist.api,
com.bochk.com http://www.bochk.com/xml/datafeed/forex/forexn_012.xml?type=,
com.bochk.com http://m.youtube.com/,http://www.youtube.com/watch,
com.bochk.com http://www.bochk.com/images/upload/retail/mbs/tctand.html,http://www.bochk.com/images/upload/retail/mbs/tcsand.html,http://www.bochk.com/images/upload/retail/mbs/tceand.html,http://www.bochk.com/images/upload/retail/mbs/dpnandt.html,http://www.bochk.com/images/upload/retail/mbs/dpnands.html,http://www.bochk.com/images/upload/retail/mbs/dpnande.html,http://appreport.mtel.ws/java/mtelreport/mtelreportdaily.api,
com.bochk.com http://m.youtube.com/,http://www.youtube.com/watch,
com.bochk.com http://bochk.mtel.ws/java/bochk/regnotification.api,
com.bochk.com http://m.youtube.com/,http://www.youtube.com/watch,
com.bochk.com http://bochk.mtel.ws/java/bochk/adlist.api,http://bochk.mtel.ws/java/bochk/adlist.api,
com.bochk.com http://bochk.mtel.ws/java/bochk/promotionlist.api,http://bochk.mtel.ws/java/bochk/promotionlist.api,
com.bochk.com http://bochk.mtel.ws/java/bochk/promotionlist.api,http://bochk.mtel.ws/java/bochk/promotionlist.api,http://bochk.mtel.ws/java/bochk/promotionlist.api,http://bochk.mtel.ws/java/bochk/promotionlist.api,http://bochk.mtel.ws/java/bochk/promotionlist.api,http://bochk.mtel.ws/java/bochk/promotionlist.api,
com.bochk.com http://bochk.mtel.ws/java/bochk/areadistrictlist.api?,http://bochk.mtel.ws/java/bochk/areadistrictlist.api?,
com.bochk.com http://bochk.mtel.ws/java/bochk/estatebuildinglist.api?,http://bochk.mtel.ws/java/bochk/estatebuildinglist.api?,
com.bochk.com http://bochk.mtel.ws/java/bochk/blocklist.api?,http://bochk.mtel.ws/java/bochk/blocklist.api?,http://bochk.mtel.ws/java/bochk/blocklist.api?,http://bochk.mtel.ws/java/bochk/blocklist.api?,
com.bochk.com http://bochk.mtel.ws/java/bochk/blocklist.api?,http://bochk.mtel.ws/java/bochk/blocklist.api?,
com.bochk.com http://bochk.mtel.ws/java/bochk/promotionlist.api,http://bochk.mtel.ws/java/bochk/promotionlist.api,
com.bochk.com http://bochk.mtel.ws/java/bochk/promotionlist.api,http://bochk.mtel.ws/java/bochk/promotionlist.api,
com.bochk.com http://bochk.mtel.ws/java/bochk/shoplist.api,http://bochk.mtel.ws/java/bochk/shoplist.api,
com.bochk.com http://bochk.mtel.ws/java/bochk/unitlist.api?,http://bochk.mtel.ws/java/bochk/unitlist.api?,
com.bochk.com http://bochk.mtel.ws/java/bochk/unitlist.api?,http://bochk.mtel.ws/java/bochk/unitlist.api?,
com.bochk.com http://bochk.mtel.ws/java/bochk/staticdata_android2.api,http://bochk.mtel.ws/java/bochk/staticdata_android2.api,
com.bochk.com http://bochk.mtel.ws/java/bochk/contactus.api,http://bochk.mtel.ws/java/bochk/contactus.api,
com.bochk.com http://bochk.mtel.ws/java/bochk/promotion_taxloan.api,http://bochk.mtel.ws/java/bochk/promotion_taxloan.api,
com.bochk.com http://bochk.mtel.ws/java/bochk/taxloan.api,http://bochk.mtel.ws/java/bochk/taxloan.api,
com.bochk.com http://bochk.mtel.ws/java/bochk/promotionlist.api,http://bochk.mtel.ws/java/bochk/promotionlist.api,http://bochk.mtel.ws/java/bochk/promotionlist.api,http://bochk.mtel.ws/java/bochk/promotionlist.api,http://bochk.mtel.ws/java/bochk/promotionlist.api,http://bochk.mtel.ws/java/bochk/promotionlist.api,
com.bochk.com http://bochk.mtel.ws/java/bochk/branchlist.api,http://bochk.mtel.ws/java/bochk/branchlist.api,
com.bochk.com http://bochk.mtel.ws/java/bochk/unitevaluation.api?,http://bochk.mtel.ws/java/bochk/unitevaluation.api?,
com.bochk.com http://bochk.mtel.ws/java/bochk/unitlist.api?,http://bochk.mtel.ws/java/bochk/unitlist.api?,
com.bochk.com http://bochk.mtel.ws/java/bochk/promotionlist.api,http://bochk.mtel.ws/java/bochk/promotionlist.api,
com.bochk.com http://bochk.mtel.ws/java/bochk/promotionlist.api,http://bochk.mtel.ws/java/bochk/promotionlist.api,
com.bochk.com http://bochk.mtel.ws/java/bochk/openapp.api,http://bochk.mtel.ws/java/bochk/openapp.api,
com.bochk.com http://bochk.mtel.ws/java/bochk/streetlist.api?,http://bochk.mtel.ws/java/bochk/streetlist.api?,
com.bochk.com http://bochk.mtel.ws/java/bochk/streetlist.api?,http://bochk.mtel.ws/java/bochk/streetlist.api?,
com.bochk.com http://bochk.mtel.ws/java/bochk/blocklist.api?,http://bochk.mtel.ws/java/bochk/blocklist.api?,
com.bochk.com http://www.bochk.com/xml/datafeed/stock/hsi.xml,http://www.bochk.com/xml/datafeed/stock/hsi.xml,
com.bochk.com http://www.w3.org/xml/1998/namespace,http://www.w3.org/xml/1998/namespace,http://www.w3.org/xml/1998/namespace,http://www.w3.org/xml/1998/namespace must be bound to the xml prefix.,
com.bochk.com http://temporary,
com.bochk.com http://xml.org/sax/features/validation,http://xml.org/sax/features/namespaces,
com.bochk.com http://xml.org/sax/features/validation,http://xml.org/sax/features/namespaces,
com.bochk.com http://jdom.org/jaxp/xpath/jdom,
com.bochk.com http://org.jdom.transform.jdomsource/feature,
com.bochk.com http://org.jdom.transform.jdomresult/feature,
com.bochk.com http://xml.org/sax/handlers/declhandler,http://xml.org/sax/properties/declaration-handler,http://xml.org/sax/handlers/lexicalhandler,http://xml.org/sax/properties/lexical-handler,http://xml.org/sax/features/namespaces,http://xml.org/sax/features/namespace-prefixes,http://xml.org/sax/features/validation,http://xml.org/sax/properties/lexical-handler,http://xml.org/sax/properties/declaration-handler,http://xml.org/sax/handlers/lexicalhandler,http://xml.org/sax/handlers/declhandler,http://xml.org/sax/features/namespace-prefixes,http://xml.org/sax/features/namespaces,http://xml.org/sax/features/validation,http://xml.org/sax/properties/lexical-handler,http://xml.org/sax/handlers/lexicalhandler,http://xml.org/sax/properties/declaration-handler,http://xml.org/sax/handlers/declhandler,http://xml.org/sax/features/namespace-prefixes,http://xml.org/sax/features/namespaces,http://xml.org/sax/features/validation,http://xml.org/sax/properties/lexical-handler,http://xml.org/sax/handlers/lexicalhandler,http://xml.org/sax/properties/declaration-handler,http://xml.org/sax/handlers/declhandler,
com.bochk.com http://java.sun.com/xml/jaxp/properties/schemalanguage,http://java.sun.com/xml/jaxp/properties/schemasource,http://java.sun.com/xml/jaxp/properties/schemalanguage,http://java.sun.com/xml/jaxp/properties/schemasource,
com.bochk.com http://xml.org/sax/features/validation,http://xml.org/sax/features/namespaces,http://xml.org/sax/features/namespace-prefixes,http://xml.org/sax/features/external-general-entities,http://xml.org/sax/features/external-general-entities,http://xml.org/sax/handlers/lexicalhandler,http://xml.org/sax/properties/lexical-handler,http://xml.org/sax/properties/declaration-handler,
com.ifs.androidmobilebanking.fiid3477 http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid3477 http://market.android.com/details?id=%s,
com.pinnbank.MobileColorado http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.pinnbank.MobileColorado http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,
com.softek.ofxclmobile.y12fcu http://coach.softekweb.com/wapcgsbalerts/alertmanagement.asmx,http://demo.softekweb.com/eft/ws/,
com.softek.ofxclmobile.y12fcu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.y12fcu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.y12fcu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.y12fcu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.y12fcu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.y12fcu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.y12fcu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.y12fcu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.y12fcu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.y12fcu http://schemas.xmlsoap.org/soap/envelope/,
com.amarillo.mobile http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.amarillo.mobile http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,
com.edb.mobile.android.ibank.landkreditt http://schemas.xmlsoap.org/soap/envelope/,http://edb.com/ws/wscommon_v21,http://iphone.sms.ws.edb.com,http://iphone.sms.ws.edb.com,http://iphone.sms.ws.edb.com,http://iphone.sms.ws.edb.com,http://edb.com/ws/wscommon_v21,http://edb.com/ws/wscommon_v21,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://iphone.sms.ws.edb.com,http://iphone.sms.ws.edb.com,http://edb.com/ws/wscommon_v21,http://schemas.xmlsoap.org/soap/envelope/,
com.hbtbank http://maps.google.com/maps?saddr=,
com.hbtbank http://maps.google.com/maps?,
com.hbtbank http://maps.google.com/maps?saddr=,
com.hbtbank http://maps.google.com/maps?,
aib.ibank.android http://m.aib.ie/mobile/mobile-banking/home-android?search=aibandroidapp,
com.ideomobile.mercantile http://www.gizmox.com/webgui,
au.com.commbank.kaching http://maps.google.com/maps/api/geocode/json?address=,
au.com.commbank.kaching http://maps.google.com/maps/api/geocode/json?address=,
au.com.commbank.kaching http://maps.google.com/maps?f=d&hl=en,
au.com.commbank.kaching http://maps.google.com/maps?,
au.com.commbank.kaching http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd,http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd,
au.com.commbank.kaching http://developers.facebook.com/docs/reference/rest/,
au.com.commbank.kaching http://bu.mp/apiagree,http://bu.mp/apideveloper,
com.ifs.androidmobilebanking.fiid3331 http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid3331 http://market.android.com/details?id=%s,
com.ifs.banking.fiid3749 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid3749 http://market.android.com/details?id=%s,
net.cts.android.cbolo http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid3808 http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid3808 http://market.android.com/details?id=%s,
bokf.ib.android.market.csbt http://maps.google.com/maps?f=d&daddr=%s,%s,
com.ifs.androidmobilebanking.fiid5207 http://maps.google.com/maps?saddr=,
nz.co.bnz.droidbanking http://m.facebook.com/bnzbank,http://twitter.com/#!/bnzbank,http://www.bnz.co.nz,
nz.co.bnz.droidbanking http://maps.google.com/maps/api/staticmap?center=,
com.huntington.m http://10.0.2.2,
com.huntington.m http://10.0.2.2:8888/preview/rc/and,http://10.0.2.2:8888/preview/rc/and/bytecode.o,
org.afcu.mobilebanking http://internetbanking.afcu.org/iphone/androidapp.asp,
com.softek.ofxclmobile.weststarcu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.weststarcu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.weststarcu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.weststarcu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.weststarcu http://coach.softekweb.com/wapcgsbalerts/alertmanagement.asmx,http://demo.softekweb.com/eft/ws/,
com.softek.ofxclmobile.weststarcu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.weststarcu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.weststarcu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.weststarcu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.weststarcu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.weststarcu http://schemas.xmlsoap.org/soap/envelope/,
com.suntrust.mobilebanking http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/servicecontracts/2009/08,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,http://www.w3.org/2001/xmlschema-instance,http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.softek.ofxclmobile.eandacuprod http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.eandacuprod http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.eandacuprod http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.eandacuprod http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.eandacuprod http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.eandacuprod http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.eandacuprod http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.eandacuprod http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.eandacuprod http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.eandacuprod http://schemas.xmlsoap.org/soap/envelope/,
com.bbva.compass http://www.bbvacompass.com/mobile-banking/terms/,http://79.125.125.123/csapi/csapipoiservice.asmx/getclosestpois,http://79.125.125.123/csapi/csapigeoservice.asmx/getaddresslike,http://79.125.125.123/csapi/csapigeoservice.asmx/getroutesummary,http://79.125.125.123/csapi/csapigeoservice.asmx/getclosestplacename,http://s3-eu-west-1.amazonaws.com/bbva-files/mobilebanking/matconf.xml,http://www.bbvacompass.com/mobile-banking/faq/faq.xml,
com.bbva.compass http://www.bbvacompass.com/mobile-banking/terms/,
com.bbva.compass http://www.bbvacompass.com/mobile-banking/terms/,http://www.bbvacompass.com/mobile-banking/terms/,
com.bbva.compass http://www.bbvacompass.com/mobile-banking/terms/,
com.bbva.compass http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,
com.bbva.compass http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,
com.bbva.compass http://maps.google.com,
com.bbva.compass http://maps.google.com/maps/api/directions/xml,http://maps.google.com/maps/api/geocode/xml,http://maps.google.com/maps/api/geocode/xml,http://maps.google.com/maps/api/geocode/xml,http://maps.google.com/maps/api/geocode/xml,http://maps.google.com/maps/api/directions/xml,
wit.android.bcpBankingApp.millenniumPL http://market.android.com/search?q=pdf,
wit.android.bcpBankingApp.millenniumPL http://193.201.167.227/testmobile/,http://193.53.22.193:100/financialservices/,http://193.201.167.227/testmobilequa/,http://m.activobank.haica.dev/financialservices/,http://10.102.146.50/financialservices/,http://193.201.167.227/testmobile/,http://10.82.150.85/financialservices/,http://10.0.2.2/webmobileapi/,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://schemas.microsoft.com/2003/10/serialization/arrays,http://www.millenniumbcp.pt/financialservices/bankingservices,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.millenniumbcp.pt/financialservices/bankingservices,http://www.w3.org/2001/xmlschema-instance,http://schemas.microsoft.com/2003/10/serialization/arrays,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,
wit.android.bcpBankingApp.millenniumPL http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,
com.austinbank.mobile http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.austinbank.mobile http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,
com.softek.ofxclmobile.wsecu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.wsecu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.wsecu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.wsecu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.wsecu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.wsecu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.wsecu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.wsecu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.wsecu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.wsecu http://schemas.xmlsoap.org/soap/envelope/,
com.cibc.android.mobi http://www.cibc.com/ca/personal-fr.html,http://www.cibc.com/ca/personal.html,http://www.cibc.com/,
com.ifs.mobilebanking.fiid9094 http://maps.google.com/maps?saddr=,
com.ifs.mobilebanking.fiid9094 http://www.amazon.com/gp/mas/dl/android?p=%s,http://market.android.com/details?id=%s,
com.ifs.banking.fiid3986 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid3986 http://market.android.com/details?id=%s,
com.chb.com http://chbank.mtel.ws/java/chbank/news.api?lang=,http://chbank.mtel.ws/java/chbank/news.api?lang=,
com.chb.com http://chbank.mtel.ws/java/chbank/branchlist.api?,
com.chb.com http://chbank.mtel.ws/java/chbank/branchlist.api?,http://chbank.mtel.ws/java/chbank/branchlist.api?,http://chbank.mtel.ws/java/chbank/branchlist.api?,
com.chb.com http://chbank.mtel.ws/java/chbank/dev/apply.api?lang=,http://chbank.mtel.ws/java/chbank/dev/apply.api?lang=,
com.chb.com http://chbank.mtel.ws/java/chbank/branchlist.api?,
com.chb.com http://chbank.mtel.ws/java/chbank/loanlist.api?lang=,
com.chb.com http://www.chbank.com/xml_rates2/bw_sav_int.xml,http://chbank.mtel.ws/java/chbank/adlist.api?lang=,
com.chb.com http://chbank.mtel.ws/java/chbank/promotionlist.api?,http://chbank.mtel.ws/java/chbank/promotionlist.api?,http://chbank.mtel.ws/java/chbank/promotionlist.api?,
com.chb.com http://chbank.mtel.ws/java/chbank/dev/apply.api?lang=,http://chbank.mtel.ws/java/chbank/dev/apply.api?lang=,
com.chb.com http://chbank.mtel.ws/java/chbank/promotionlist.api?offertype=seasonal&card=atm&lang=,http://chbank.mtel.ws/java/chbank/promotionlist.api?offertype=seasonal&card=cc&lang=,http://chbank.mtel.ws/java/chbank/promotionlist.api?offertype=yearround&card=atm&lang=,http://chbank.mtel.ws/java/chbank/promotionlist.api?offertype=yearround&card=cc&lang=,http://chbank.mtel.ws/java/chbank/promotionlist.api?offertype=seasonal&card=atm&lang=,http://chbank.mtel.ws/java/chbank/promotionlist.api?offertype=seasonal&card=cc&lang=,http://chbank.mtel.ws/java/chbank/promotionlist.api?offertype=yearround&card=atm&lang=,http://chbank.mtel.ws/java/chbank/promotionlist.api?offertype=yearround&card=cc&lang=,
com.chb.com http://www.chbank.com/en/index.shtml,http://www.chbank.com/tc/index.shtml,http://www.chbank.com/sc/index.shtml,http://www.chsec.com.hk/,http://www.chsec.com.hk/,http://www.chsec.com.hk/,http://www.chcf.com.hk/eng/index_3.html,http://www.chcf.com.hk/,http://www.chcf.com.hk/sc/index_2.html,
com.chb.com http://chbank.mtel.ws/,http://appreport.mtel.ws/,http://testsvr1.mtel.ws/,http://testsvr1.mtel.ws/,http://chbank.mtel.ws/,http://appreport.mtel.ws/,
com.chb.com http://chbank.mtel.ws/java/chbank/news.api?lang=,
com.chb.com http://appreport.mtel.ws/java/mtelreport/mtelreportdaily.api?appid=app_a76f7432-1d5f-ebb9-b728-277e76981111&encryptedlog=,http://appreport.mtel.ws/java/mtelreport/mtelreportdaily.api?appid=app_a76f7432-1d5f-ebb9-b728-277e76981111&encryptedlog=,http://appreport.mtel.ws/java/mtelreport/mtelreportdaily.api?appid=app_a76f7432-1d5f-ebb9-b728-277e76981111&encryptedlog=,http://appreport.mtel.ws/java/mtelreport/mtelreportdaily.api?appid=app_a76f7432-1d5f-ebb9-b728-277e76981111&encryptedlog=,
com.chb.com http://www.chbank.com/xml_rates2/bw_fd_int.xml,
com.chb.com http://chbank.mtel.ws/java/chbank/tandc.api,
com.chb.com http://chbank.mtel.ws/java/chbank/loanlist.api?lang=,
com.chb.com http://chbank.mtel.ws/java/chbank/adlist.api?lang=,http://chbank.mtel.ws/java/chbank/tandc.api?lang=,http://chbank.mtel.ws/java/chbank/adlist.api?lang=,
com.chb.com http://www.chbank.com/xml_rates2/fer_n_en.xml,
com.chb.com http://www.chbank.com/xml_rates2/bw_sav_int.xml,http://chbank.mtel.ws/java/chbank/adlist.api?lang=,
com.chb.com http://chbank.mtel.ws/java/chbank/promotionlist.api?offertype=promotional&card=atm&lang=,http://chbank.mtel.ws/java/chbank/promotionlist.api?offertype=promotional&card=cc&lang=,http://chbank.mtel.ws/java/chbank/promotionlist.api?offertype=promotional&card=atm&lang=,http://chbank.mtel.ws/java/chbank/promotionlist.api?offertype=promotional&card=cc&lang=,
com.chb.com http://chbank.mtel.ws/java/chbank/adlist.api?lang=,
com.chb.com http://chbank.mtel.ws/java/chbank/adlist.api?lang=,
com.chb.com http://chbank.mtel.ws/java/chbank/newscontent.api?lang=,http://chbank.mtel.ws/java/chbank/newscontent.api?lang=,http://chbank.mtel.ws/java/chbank/newscontent.api?lang=,http://chbank.mtel.ws/java/chbank/newscontent.api?lang=,
com.chb.com http://chbank.mtel.ws/java/chbank/promotionlist.api?,
com.chb.com http://www.chbank.com/xml_rates2/fer_n_en.xml,
com.chb.com http://chbank.mtel.ws/java/chbank/newscontent.api?lang=,
com.chb.com http://chbank.mtel.ws/java/chbank/branchlist.api?lang=,http://chbank.mtel.ws/java/chbank/promotionlist.api?lang=,http://chbank.mtel.ws/java/chbank/promotionlist.api?lang=,
com.chb.com http://ws.geonames.org/findnearbywikipediajson|0|0|true,http://search.twitter.com/search.json|2|0|true,http://open.mapquestapi.com/xapi/api/0.6/node[railway=station]|3|1|true,http://mixare.org/geotest.php|4|0|false,
com.chb.com http://mixare.org/geotest.php,
com.chb.com http://ws.geonames.org/findnearbywikipediajson|0|0|true,http://search.twitter.com/search.json|2|0|true,http://open.mapquestapi.com/xapi/api/0.6/node[railway=station]|3|1|true,http://mixare.org/geotest.php|4|0|false,
com.chb.com http://twitter.com/,
com.softek.ofxclmobile.publixemployeesfcu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.publixemployeesfcu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.publixemployeesfcu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.publixemployeesfcu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.publixemployeesfcu http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://50.17.194.17/mpserver/paymentsmanagement.asmx,
com.softek.ofxclmobile.publixemployeesfcu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.publixemployeesfcu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.publixemployeesfcu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.publixemployeesfcu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.publixemployeesfcu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.publixemployeesfcu http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,
com.cacu http://mobileapi.locatorsearch.com/locatorsearchapi.asmx/findlocations,
com.cacu http://www.cacu.com/mobilebanking.aspx,http://mobileapi.locatorsearch.com/locatorsearchapi.asmx/findlocations,http://www.facebook.com/communityamerica,http://twitter.com/communityamercu,http://twitter.com/savinmavens,http://www.youtube.com/communityamerica,http://www.cacu.com/mobilebanking.aspx,
com.cacu http://www.google.ru,http://www.google.ru,
com.cacu http://www.youtube.com/communityamerica,
com.cacu http://www.facebook.com/communityamerica,
com.cacu http://twitter.com/communityamercu,
com.cacu http://www.cacu.com/default.aspx,http://www.cacu.com/default.aspx,http://www.cacu.com/ancillary/acctlink_online_banking_tc.pdf,http://www.cacu.com/ancillary/acctlink_online_banking_tc.pdf,http://www.cacu.com/ancillary/mobilebankingfaq.pdf,http://www.cacu.com/ancillary/mobilebankingfaq.pdf,http://www.cacu.com,
com.cacu http://maps.google.com/maps?saddr=,
com.cacu http://maps.google.com/maps?saddr=,
com.cacu http://docs.google.com/viewer?url=,
com.cacu http://www.cacu.com/default.aspx,http://www.cacu.com/default.aspx,http://www.cacu.com/ancillary/acctlink_online_banking_tc.pdf,http://www.cacu.com/ancillary/acctlink_online_banking_tc.pdf,http://www.cacu.com/ancillary/mobilebankingfaq.pdf,http://www.cacu.com/ancillary/mobilebankingfaq.pdf,http://www.cacu.com,
com.cacu http://docs.google.com/viewer?url=,
com.cacu http://twitter.com/savinmavens,
com.cacu http://www.cacu.com/mobilebanking.aspx,
com.softek.ofxclmobile.kembafcu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.kembafcu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.kembafcu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.kembafcu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.kembafcu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.kembafcu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.kembafcu http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://50.17.194.17/mpserver/paymentsmanagement.asmx,
com.softek.ofxclmobile.kembafcu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.kembafcu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.kembafcu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.kembafcu http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,
com.ifs.banking.fiid8027 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid8027 http://market.android.com/details?id=%s,
com.ifs.banking.fiid7248 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid7248 http://market.android.com/details?id=%s,
org.stgeorge.bank http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
org.stgeorge.bank http://www.wireless-village.org/csp,http://www.wireless-village.org/pa,http://www.wireless-village.org/trc,http://www.openmobilealliance.org/dtd/wv-csp,http://www.openmobilealliance.org/dtd/wv-pa,http://www.openmobilealliance.org/dtd/wv-trc,
org.stgeorge.bank http://www.,
org.stgeorge.bank http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
org.stgeorge.bank http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
org.stgeorge.bank http://xmlpull.org/v1/doc/properties.html#xmldecl-standalone,
org.stgeorge.bank http://tempuri.org/,http://tempuri.org/,http://tempuri.org/,http://tempuri.org/,http://tempuri.org/getfxratesbyforeigncurrency,http://tempuri.org/getfixedtermsavings,http://tempuri.org/gethomeloan,http://tempuri.org/getvariabletermsavingsv2,http://webapps.stgeorge.com.au/webservice/foreignexchange.asmx,http://webapps.stgeorge.com.au/calculator-savings-net/savingsaccounts.asmx,http://webapps.stgeorge.com.au/calculator-homeloans-net/homeloans.asmx,http://webapps.stgeorge.com.au/calculator-savings-net/savingsaccounts.asmx,http://download.stgeorge.com.au/locator/stg35/stgeorge.txt,http://tempuri.org/,http://webapps.stgeorge.com.au/calculator-savings-net/savingsaccounts.asmx,http://tempuri.org/getfixedtermsavings,http://tempuri.org/getfixedtermsavings -> ,http://tempuri.org/,http://tempuri.org/,http://webapps.stgeorge.com.au/calculator-homeloans-net/homeloans.asmx,http://tempuri.org/gethomeloan,http://tempuri.org/gethomeloan -> ,http://tempuri.org/,http://webapps.stgeorge.com.au/calculator-savings-net/savingsaccounts.asmx,http://tempuri.org/getvariabletermsavingsv2,http://tempuri.org/getvariabletermsavingsv2 -> ,http://tempuri.org/,http://webapps.stgeorge.com.au/webservice/foreignexchange.asmx,http://tempuri.org/getfxratesbyforeigncurrency,
org.stgeorge.bank http://m.stgeorge.com.au/#freedom?pid=android-app-freedom,http://m.stgeorge.com.au/#express-freedom?pid=android-app-express,http://m.stgeorge.com.au/#maxi?pid=android-app-maxi,http://m.stgeorge.com.au/#td?pid=android-app-td,http://www.stgeorge.com.au/wealth-creation/bt-super-for-life,http://download.stgeorge.com.au/locator/stg35/stgeorge.txt,http://www.stgeorge.com.au/credit-cards,http://www.stgeorge.com.au/loans/home-loans,http://www.stgeorge.com.au/wealth-creation/insurance,http://m.stgeorge.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=cf&brand=sgb&origin=msite&sessiontype=new,http://m.stgeorge.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=ef&brand=sgb&origin=msite&sessiontype=new,http://m.stgeorge.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=ms&brand=sgb&origin=msite&sessiontype=new,http://m.stgeorge.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=tda&brand=sgb&origin=msite&sessiontype=new&interestpaidfrequency=im&productcode=30&statename=#state#&openamount=#amount#&termlength=#length#&interestrate=#interest#,http://www.stgeorge.com.au/loans/personal-loans,http://www.stgeorge.com.au/accounts/saving-for-a-goal,http://www.stgeorge.com.au/accounts/everyday-banking,
org.stgeorge.bank http://google.com/maps?q=(,
org.stgeorge.bank http://google.com/maps?q=(,
org.stgeorge.bank http://m.stgeorge.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=tda&brand=sgb&origin=msite&sessiontype=new&interestpaidfrequency=im&productcode=30&statename=#state#&openamount=#amount#&termlength=#length#&interestrate=#interest#,http://m.stgeorge.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=tda&brand=sgb&origin=msite&sessiontype=new&interestpaidfrequency=im&productcode=30&statename=#state#&openamount=#amount#&termlength=#length#&interestrate=#interest#,http://m.stgeorge.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=ms&brand=sgb&origin=msite&sessiontype=new,
org.stgeorge.bank http://m.stgeorge.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=tda&brand=sgb&origin=msite&sessiontype=new&interestpaidfrequency=im&productcode=30&statename=#state#&openamount=#amount#&termlength=#length#&interestrate=#interest#,http://m.stgeorge.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=tda&brand=sgb&origin=msite&sessiontype=new&interestpaidfrequency=im&productcode=30&statename=#state#&openamount=#amount#&termlength=#length#&interestrate=#interest#,http://m.stgeorge.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=ms&brand=sgb&origin=msite&sessiontype=new,
org.stgeorge.bank http://m.stgeorge.com.au/#td?pid=android-app-td,http://m.stgeorge.com.au/#freedom?pid=android-app-freedom,http://m.stgeorge.com.au/#express-freedom?pid=android-app-express,http://m.stgeorge.com.au/#maxi?pid=android-app-maxi,
org.stgeorge.bank http://schemas.xmlsoap.org/soap/encoding/,http://www.w3.org/2003/05/soap-encoding,http://schemas.xmlsoap.org/soap/envelope/,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2001/xmlschema,http://www.w3.org/1999/xmlschema,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/1999/xmlschema-instance,http://www.w3.org/1999/xmlschema-instance,http://www.w3.org/1999/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://www.w3.org/2003/05/soap-encoding,http://www.w3.org/2003/05/soap-envelope,
org.stgeorge.bank http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,
org.stgeorge.bank http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,
org.stgeorge.bank http://xmlpull.org/v1/doc/features.html#process-namespaces,
org.stgeorge.bank http://schemas.xmlsoap.org/soap/encoding/,
org.stgeorge.bank http://xml.apache.org/xml-soap,http://xml.apache.org/xml-soap,
org.stgeorge.bank http://xmlpull.org/v1/doc/features.html#process-namespaces,http://xmlpull.org/v1/doc/features.html#validation,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://xmlpull.org/v1/doc/features.html#validation,
org.stgeorge.bank http://xmlpull.org/v1/doc/features.html#process-docdecl,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://xmlpull.org/v1/doc/features.html#report-namespace-prefixes,http://xmlpull.org/v1/doc/features.html#validation,
com.ifs.mobilebanking.fiid5345 http://maps.google.com/maps?saddr=,
com.ifs.mobilebanking.fiid5345 http://www.amazon.com/gp/mas/dl/android?p=%s,http://market.android.com/details?id=%s,
com.fsnb http://www.w3.org/2001/xmlschema-instance,http://meafinancial.com/postbillpaydeletescheduleddata,
com.fsnb http://www.w3.org/2001/xmlschema-instance,http://meafinancial.com/getbillpayscheduledata,
com.fsnb http://maps.google.com/maps?saddr=,
com.fsnb http://www.w3.org/2001/xmlschema-instance,http://meafinancial.com/getbankinfooptionsdata,
com.fsnb http://maps.google.com/maps?,
ua.privatbank.ap24 http://auctionfriend.siteheart.com/api/success,http://auctionfriend.siteheart.com/api/error,
ua.privatbank.ap24 http://auctionfriend.siteheart.com/api/add?,
ua.privatbank.ap24 http://apps.facebook.com/pb_transactions/,
ua.privatbank.ap24 http://i.privatbank.ua/img/24_logo_top_2.png,
ua.privatbank.ap24 http://10.0.2.2:8282/iapi/,http://10.1.206.48:9088/iapi,http://10.1.206.208:9088/iapi,
ua.privatbank.ap24 http://www.w3.org/2005/atom,http://www.w3.org/2007/app,http://schemas.google.com/gdata/batch,http://schemas.google.com/spreadsheets/2006,http://schemas.google.com/acl/2007,http://schemas.google.com/g/2005,http://a9.com/-/spec/opensearch/1.1/,http://www.w3.org/xml/1998/namespace,
ua.privatbank.ap24 http://www.w3.org/2005/atom,http://www.w3.org/2007/app,http://schemas.google.com/gdata/batch,http://schemas.google.com/docs/2007,http://schemas.google.com/acl/2007,http://schemas.google.com/g/2005,http://a9.com/-/spec/opensearch/1.1/,http://www.w3.org/xml/1998/namespace,
ua.privatbank.ap24 http://schemas.google.com/spreadsheets/2006#kind,http://schemas.google.com/docs/2007#,
ua.privatbank.ap24 http://schemas.google.com/g/2005#kind,http://schemas.google.com/docs/2007#,
ua.privatbank.ap24 http://10.1.206.48:9088/iapi,http://10.0.2.2:8282/iapi/,http://10.1.206.208:9088/iapi,http://10.1.206.48:9088/iapi,http://10.0.2.2:8282/iapi/,http://10.1.206.208:9088/iapi,
ua.privatbank.ap24 http://schemas.google.com/spreadsheets/2006#worksheetsfeed,
ua.privatbank.ap24 http://developers.facebook.com/docs/reference/rest/,
ua.privatbank.ap24 http://www.,
ua.privatbank.ap24 http://google.com/books,http://books.google.,
ua.privatbank.ap24 http://www.google,http://zxing.appspot.com/scan,http://www.google,http://zxing.appspot.com/scan,
ua.privatbank.ap24 http://www.w3.org/2005/atom,
ua.privatbank.ap24 http://www.w3.org/2005/atom,
ua.privatbank.ap24 http://schemas.google.com/g/2005,
ua.privatbank.ap24 http://schemas.google.com/g/2005,
ua.privatbank.ap24 http://unknown/,
ua.privatbank.ap24 http://www.w3.org/2005/atom,
ua.privatbank.ap24 http://www.w3.org/2005/atom,
ua.privatbank.ap24 http://oauth.net/grant_type/jwt/1.0/bearer,http://oauth.net/grant_type/jwt/1.0/bearer,
ua.privatbank.ap24 http://oauth.net/grant_type/jwt/1.0/bearer,http://oauth.net/grant_type/jwt/1.0/bearer,
ua.privatbank.ap24 http://google.com/,http://google.com/,
ua.privatbank.ap24 http://www.w3.org/xml/1998/namespace,
ua.privatbank.ap24 http://www.w3.org/xml/1998/namespace,http://www.w3.org/xml/1998/namespace,
ua.privatbank.ap24 http://www.w3.org/2000/xmlns/,http://www.w3.org/2000/xmlns/,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,
ua.privatbank.ap24 http://www.w3.org/2000/xmlns/,http://www.w3.org/2000/xmlns/,
ua.privatbank.ap24 http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.meriwestcu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.meriwestcu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.meriwestcu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.meriwestcu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.meriwestcu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.meriwestcu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.meriwestcu http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://50.17.194.17/mpserver/paymentsmanagement.asmx,
com.softek.ofxclmobile.meriwestcu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.meriwestcu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.meriwestcu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.meriwestcu http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.chartwayfcu http://coach.softekweb.com/wapcgsbalerts/alertmanagement.asmx,http://demo.softekweb.com/eft/ws/,
com.softek.ofxclmobile.chartwayfcu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.chartwayfcu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.chartwayfcu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.chartwayfcu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.chartwayfcu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.chartwayfcu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.chartwayfcu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.chartwayfcu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.chartwayfcu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.chartwayfcu http://schemas.xmlsoap.org/soap/envelope/,
uk.co.northernbank.android.tribank http://maps.google.com/maps?&saddr=,
uk.co.northernbank.android.tribank http://maps.google.com/maps?f=d&hl=en,
uk.co.northernbank.android.tribank http://demobank.dk/data/04/2009\'>\t<agreement>\t\t<person>john doe</person>\t\t<action>transfer</action>\t\t<amount>100.000 dkk</amount>\t\t<destination>skat</destination>\t</agreement></event>,http://www.w3.org/1999/xsl/transform\' version=\'1.0\' xmlns:data=\'http://demobank.dk/data/04/2009\' exclude-result-prefixes=\'data\'><xsl:template match=\'data:event\'>\t<html>\t\t<head> <title>agreement</title> </head>\t\t<body>\t\t\t<div><b>payer: </b><xsl:value-of select=\'data:agreement/data:person/text()\' /></div>\t\t\t<div><b>amount : </b><xsl:value-of select=\'data:agreement/data:amount/text()\' /></div>\t\t\t<div><b>receiver : </b><xsl:value-of select=\'data:agreement/data:destination/text()\' /></div>\t\t</body>\t</html></xsl:template></xsl:stylesheet>,
com.ifs.banking.fiid7338 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid7338 http://market.android.com/details?id=%s,
com.mshift.android.nrlfcu http://maps.google.com/maps?saddr=&daddr=,
com.mshift.android.nrlfcu http://maps.google.com/maps?saddr=&daddr=,
com.tdbank http://maps.google.com,
com.ally.MobileBanking http://10.0.2.2,
com.ally.MobileBanking http://10.0.2.2:8888/preview/rc/and,http://10.0.2.2:8888/preview/rc/and/bytecode.o,
com.softek.ofxclmobile.twinstar http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,
com.softek.ofxclmobile.twinstar http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.twinstar http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.twinstar http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.twinstar http://coach.softekweb.com/wapcgsbalerts/alertmanagement.asmx,http://demo.softekweb.com/eft-ws/,
com.softek.ofxclmobile.twinstar http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.twinstar http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.twinstar http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.twinstar http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.twinstar http://schemas.xmlsoap.org/soap/envelope/,
com.ifs.banking.fiid7242 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid7242 http://market.android.com/details?id=%s,
com.cnbok http://www.w3.org/2001/xmlschema-instance,http://meafinancial.com/postbillpaydeletescheduleddata,
com.cnbok http://www.w3.org/2001/xmlschema-instance,http://meafinancial.com/getbillpayscheduledata,
com.cnbok http://maps.google.com/maps?saddr=,
com.cnbok http://www.w3.org/2001/xmlschema-instance,http://meafinancial.com/getbankinfooptionsdata,
com.cnbok http://maps.google.com/maps?,
com.clearlakebank http://maps.google.com/maps?saddr=,
com.clearlakebank http://maps.google.com/maps?,
com.ifs.banking.fiid7226 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid7226 http://market.android.com/details?id=%s,
com.softek.ofxclmobile.greatlakescu http://coach.softekweb.com/wapcgsbalerts/alertmanagement.asmx,http://demo.softekweb.com/eft-ws/,
com.softek.ofxclmobile.greatlakescu http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,
com.softek.ofxclmobile.greatlakescu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.greatlakescu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.greatlakescu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.greatlakescu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.greatlakescu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.greatlakescu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.greatlakescu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.greatlakescu http://schemas.xmlsoap.org/soap/envelope/,
com.wr.pib.quick http://reaver.softforum.com:8080/xecuredemo/jsp/index.html,
com.wr.pib.quick http://smt.wooribank.com,http://smt.wooribank.com,
com.wr.pib.quick http://smt.wooribank.com/smart/acct/smtacct005_01.jsp?type=,
com.wr.pib.quick http://smt.wooribank.com,http://smt.wooribank.com/smart/codeguard/check.jsp,http://smt.wooribank.com/smart/gateway/gatewayqbk.jsp?charset=utf-8,
com.wr.pib.quick http://www.,
com.wr.pib.quick http://www.google.,
com.wr.pib.quick http://smt.wooribank.com/smart/,
Fi_Mobile.Denali http://maps.google.com/maps?saddr=&daddr=%s,
com.stellarone http://maps.google.com/maps?saddr=,
com.stellarone http://maps.google.com/maps?,
com.ideomobile.discount http://www.gizmox.com/webgui,
com.northfieldbank.mobile http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.northfieldbank.mobile http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,
com.mshift.android.lnfcu http://maps.google.com/maps?saddr=&daddr=,
com.mshift.android.lnfcu http://maps.google.com/maps?saddr=&daddr=,
com.ambank http://www.ambankgroup.com/amgeniemicrosite/amgenie_about.html,
com.ambank http://maps.google.com/maps?f=d&hl=en,
com.ifs.banking.fiid1149 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid1149 http://market.android.com/details?id=%s,
bokf.ib.android.market.baz http://maps.google.com/maps?f=d&daddr=%s,%s,
com.ifs.banking.fiid3337 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid3337 http://www.amazon.com/gp/mas/dl/android?p=%s,http://market.android.com/details?id=%s,
com.ifs.banking.fiid7038 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid7038 http://www.amazon.com/gp/mas/dl/android?p=%s,http://market.android.com/details?id=%s,
com.ocbc.mobile http://www.ocbc.com/personal-banking/android/notification.txt,
com.ocbc.mobile http://www.ocbc.com/personal-banking/map/sg_atm_loc.csv,http://www.ocbc.com/personal-banking/map/sg_branch_loc.csv,http://www.ocbc.com/personal-banking/map/sg_fastlane_loc.csv,http://www.ocbc.com/personal-banking/map/sg_sun_loc.csv,http://www.ocbc.com/personal-banking/map/sg_version.csv,
com.softek.ofxclmobile.schoolsfcu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.schoolsfcu http://coach.softekweb.com/wapcgsbalerts/alertmanagement.asmx,http://demo.softekweb.com/eft/ws/,
com.softek.ofxclmobile.schoolsfcu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.schoolsfcu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.schoolsfcu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.schoolsfcu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.schoolsfcu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.schoolsfcu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.schoolsfcu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.schoolsfcu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.schoolsfcu http://schemas.xmlsoap.org/soap/envelope/,
com.thinkbank http://www.w3.org/2000/xmlns/,http://www.w3.org/2000/xmlns/,http://www.w3.org/2000/xmlns/,
com.thinkbank http://www.w3.org/2003/05/soap-envelope,
com.thinkbank http://www.w3.org/2001/xmlschema-instance\' xmlns:xsd=\'http://www.w3.org/2001/xmlschema\' xmlns:soap=\',http://schemas.xmlsoap.org/soap/envelope/,
com.thinkbank http://maps.google.com/maps?saddr=,
com.thinkbank http://docs.google.com/viewer?url=,
com.thinkbank http://meafinancial.com/meacommon/requestaction,http://meafinancial.com/meacommon/testrequestaction,http://www.w3.org/2001/xmlschema-instance,
com.infostretch.activity.glasscity http://met.adwhirl.com/exclick.php?appid=%s&nid=%s&type=%d&uuid=%s&country_code=%s&appver=%d&client=2,http://met.adwhirl.com/exmet.php?appid=%s&nid=%s&type=%d&uuid=%s&country_code=%s&appver=%d&client=2,
com.infostretch.activity.glasscity http://mob.adwhirl.com/getinfo.php?appid=%s&appver=%d&client=2,http://cus.adwhirl.com/custom.php?appid=%s&nid=%s&uuid=%s&country_code=%s%s&appver=%d&client=2,
com.infostretch.activity.glasscity http://met.adwhirl.com/exclick.php?appid=%s&nid=%s&type=%d&uuid=%s&country_code=%s&appver=%d&client=2,http://mob.adwhirl.com/getinfo.php?appid=%s&appver=%d&client=2,http://cus.adwhirl.com/custom.php?appid=%s&nid=%s&uuid=%s&country_code=%s%s&appver=%d&client=2,http://met.adwhirl.com/exmet.php?appid=%s&nid=%s&type=%d&uuid=%s&country_code=%s&appver=%d&client=2,
com.infostretch.activity.glasscity http://www.,
com.infostretch.activity.glasscity http://maps.google.com/maps?f=d&hl=en&saddr=,
com.infostretch.activity.glasscity http://maps.google.com/maps?f=d&hl=en&saddr=,
com.infostretch.activity.glasscity http://maps.google.com/maps?f=d&hl=en&saddr=,
com.infostretch.activity.glasscity http://maps.google.com/maps?f=d&hl=en&saddr=,
com.infostretch.activity.glasscity http://www.google,http://zxing.appspot.com/scan,http://www.google,http://zxing.appspot.com/scan,
com.infostretch.activity.glasscity http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.infostretch.activity.glasscity http://www.wireless-village.org/csp,http://www.wireless-village.org/pa,http://www.wireless-village.org/trc,http://www.openmobilealliance.org/dtd/wv-csp,http://www.openmobilealliance.org/dtd/wv-pa,http://www.openmobilealliance.org/dtd/wv-trc,
com.infostretch.activity.glasscity http://www.,
com.infostretch.activity.glasscity http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.infostretch.activity.glasscity http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.infostretch.activity.glasscity http://xmlpull.org/v1/doc/properties.html#xmldecl-standalone,
com.infostretch.activity.glasscity http://schemas.xmlsoap.org/soap/encoding/,http://www.w3.org/2001/12/soap-encoding,http://schemas.xmlsoap.org/soap/envelope/,http://www.w3.org/2001/12/soap-envelope,http://www.w3.org/2001/xmlschema,http://www.w3.org/1999/xmlschema,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/1999/xmlschema-instance,http://www.w3.org/1999/xmlschema-instance,http://www.w3.org/1999/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://www.w3.org/2001/12/soap-encoding,http://www.w3.org/2001/12/soap-envelope,
com.infostretch.activity.glasscity http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,
com.infostretch.activity.glasscity http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.infostretch.activity.glasscity http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.infostretch.activity.glasscity http://schemas.xmlsoap.org/soap/encoding/,
com.infostretch.activity.glasscity http://xml.apache.org/xml-soap,http://xml.apache.org/xml-soap,
com.infostretch.activity.glasscity http://mixare.org/geotest.php,
com.infostretch.activity.glasscity http://sftp.infostretch.com:9060/android/atmdata.xml,
com.infostretch.activity.glasscity http://xmlpull.org/v1/doc/features.html#process-namespaces,http://xmlpull.org/v1/doc/features.html#validation,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://xmlpull.org/v1/doc/features.html#validation,
com.infostretch.activity.glasscity http://xmlpull.org/v1/doc/features.html#process-docdecl,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://xmlpull.org/v1/doc/features.html#report-namespace-prefixes,http://xmlpull.org/v1/doc/features.html#validation,
com.prosperitybank http://maps.google.com/maps?saddr=,
com.prosperitybank http://maps.google.com/maps?,
com.dollarbank.onlinebanking http://www.dollarbank.com/getcheckimage,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/getaccountholds,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/getlocationsbycoordinates,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/answersecurityquestion,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/startsession,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/processpayment,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/uploadcheckimage,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/submitdeposit,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/stoppayment,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/checkstatus,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/loginvalidamount,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/issessiontimedout,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/getinitialaccountinformation,http://www.dollarbank.com/getdepositaccountactivity,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/getmerchantlist,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/getdepositconfirmation,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/isversionvalidforandroid,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/getpendingpayments,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/startnewdeposit,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/endsession,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,http://www.dollarbank.com/getloanaccountinformation,http://www.w3.org/2001/xmlschema-instance,http://10.21.58.43/,
com.dollarbank.onlinebanking http://10.21.58.43/mobileservices_v2.0/wsmobilebankingdepositpublic/mobiledepositrules.aspx,http://test.dollarbank.com/mobiledepositrules.aspx,http://www.dollarbank.com/mobiledepositrules.aspx,
org.keesler.mobile http://data.flurry.com/aap.do,http://ad.flurry.com/getcanvas.do,http://ad.flurry.com/getandroidapp.do,
org.keesler.mobile http://twitter4j.org/configuration.html for the detail.,http://twitter4j.org/configuration.html for the detail.,
org.keesler.mobile http://www.google.co.jp/search?q=,http://www.google.co.jp/search?q=,
org.keesler.mobile http://api.twitter.com/oauth/access_token,http://api.twitter.com/oauth/authenticate,http://api.twitter.com/oauth/authorize,http://api.twitter.com/oauth/request_token,http://api.twitter.com/1/,http://search.twitter.com/,http://upload.twitter.com/1/,http://twitter4j.org/en/twitter4j-,http://twitter4j.org/ /,http://api.twitter.com/oauth/request_token,http://api.twitter.com/oauth/authorize,http://api.twitter.com/oauth/access_token,http://api.twitter.com/oauth/authenticate,http://api.twitter.com/1/,http://search.twitter.com/,http://upload.twitter.com/1/,http://api.twitter.com/1/,http://api.twitter.com/oauth/access_token,http://api.twitter.com/oauth/authenticate,http://api.twitter.com/oauth/authorize,http://api.twitter.com/oauth/request_token,http://search.twitter.com/,http://upload.twitter.com/1/,
org.keesler.mobile http://maps.google.com/maps?,
org.keesler.mobile http://schemas.xmlsoap.org/soap/envelope/,http://wrg.com/smsgateway/mobilemessage,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://schemas.xmlsoap.org/soap/envelope/,http://wrg.com/smsgateway/mobilemessage,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/%2$s,http://wrg.com/smsgateway/%2$s,
org.keesler.mobile http://maps.google.com/maps/geo?q=%1$s&output=csv&oe=utf8&sensor=false&key=abqiaaaal--_otv89jxp03efvlewibsdkugj2vocidlv4lqgufq9avnmfbrm1aatcqq1vkfo_1q4usha8-b7rg,
org.keesler.mobile http://maps.google.com/maps/geo?q=%1$s&output=csv&oe=utf8&sensor=false&key=,
com.pnc.ecommerce.mobile.vw.android http://www.pnc.com/accountlink/uplink/rdc,http://www.pnc.com/accountlink/uplink/rdc,http://www.pnc.com/accountlink/uplink/rdc,
com.pnc.ecommerce.mobile.vw.android http://www.pnc.com/accountlink/uplink/rdc,http://www.pnc.com/accountlink/uplink/rdc,
com.pnc.ecommerce.mobile.vw.android http://www.pnc.com/accountlink/uplink/rdc,http://www.pnc.com/accountlink/uplink/rdc,http://www.pnc.com/accountlink/uplink/rdc,
com.pnc.ecommerce.mobile.vw.android http://www.pnc.com/accountlink/uplink/rdc,http://www.pnc.com/accountlink/uplink/rdc,http://www.pnc.com/accountlink/uplink/rdc,
com.pnc.ecommerce.mobile.vw.android http://xml.org/sax/features/namespaces,http://xml.org/sax/features/namespace-prefixes,http://xml.org/sax/features/namespaces,
com.pnc.ecommerce.mobile.vw.android http://www.pnc.com/accountlink/uplink/transactions,http://www.pnc.com/accountlink/uplink/transactions,
com.pnc.ecommerce.mobile.vw.android http://java.sun.com/dtd/properties.dtd,http://java.sun.com/dtd/properties.dtd,
com.columbiabank.mobile http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.columbiabank.mobile http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,
com.charterone.androidapp http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,
com.charterone.androidapp http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,
com.charterone.androidapp http://services.mbanking.sybase.com/schema,
com.charterone.androidapp http://services.mbanking.sybase.com/schema,
com.charterone.androidapp http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,
com.charterone.androidapp http://services.mbanking.sybase.com/schema,
com.charterone.androidapp http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,
com.softek.ofxclmobile.virginiacu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.virginiacu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.virginiacu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.virginiacu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.virginiacu http://coach.softekweb.com/wapcgsbalerts/alertmanagement.asmx,http://demo.softekweb.com/eft/ws/,
com.softek.ofxclmobile.virginiacu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.virginiacu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.virginiacu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.virginiacu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.virginiacu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.virginiacu http://schemas.xmlsoap.org/soap/envelope/,
com.lunagames.am_Bank http://lunagames.com/mobi/ads/,
com.lunagames.am_Bank http://lunagames.com/mobi/apphome.asp,
com.lunagames.am_Bank http://lunagames.com/mobi/ads/,http://lunagames.com/mobi/ads/,
com.softek.ofxclmobile.newhorizonscu http://coach.softekweb.com/fundstransferwebservice/,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.newhorizonscu http://accesssoftek.com/services/fundstransfer,http://coach.softekweb.com/fundstransferwebservice/,http://coach.softekweb.com/fundstransferwebservice/,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.newhorizonscu http://accesssoftek.com/alertmanagement,http://coach.softekweb.com/wapcgsbalerts/alertmanagement.asmx,http://coach.softekweb.com/wapcgsbalerts/alertmanagement.asmx,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.newhorizonscu http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.newhorizonscu http://www.wireless-village.org/csp,http://www.wireless-village.org/pa,http://www.wireless-village.org/trc,http://www.openmobilealliance.org/dtd/wv-csp,http://www.openmobilealliance.org/dtd/wv-pa,http://www.openmobilealliance.org/dtd/wv-trc,
com.softek.ofxclmobile.newhorizonscu http://www.,
com.softek.ofxclmobile.newhorizonscu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.newhorizonscu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.newhorizonscu http://xmlpull.org/v1/doc/properties.html#xmldecl-standalone,
com.softek.ofxclmobile.newhorizonscu http://schemas.xmlsoap.org/soap/encoding/,http://www.w3.org/2001/12/soap-encoding,http://schemas.xmlsoap.org/soap/envelope/,http://www.w3.org/2001/12/soap-envelope,http://www.w3.org/2001/xmlschema,http://www.w3.org/1999/xmlschema,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/1999/xmlschema-instance,http://www.w3.org/1999/xmlschema-instance,http://www.w3.org/1999/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://www.w3.org/2001/12/soap-encoding,http://www.w3.org/2001/12/soap-envelope,
com.softek.ofxclmobile.newhorizonscu http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.newhorizonscu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.newhorizonscu http://schemas.xmlsoap.org/soap/encoding/,
com.softek.ofxclmobile.newhorizonscu http://xml.apache.org/xml-soap,http://xml.apache.org/xml-soap,
MyING.be http://maps.googleapis.com/maps/api/geocode/json?address=,
MyING.be http://www.google.be,
MyING.be http://www.bouncycastle.org) ,
net.cts.android.empire http://maps.google.com/maps?saddr=,
com.ubt.mobile http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.ubt.mobile http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,
com.clairmail.dsfcu.prod http://www.spongycastle.org) ,
com.ifs.androidmobilebanking.fiid7201 http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid7201 http://market.android.com/details?id=%s,
com.oxicash.sbimobicash http://180.179.68.18/sbimobicashhost/default.aspx,
com.oxicash.sbimobicash http://180.179.68.18/sbimobicashhost/default.aspx,
com.oxicash.sbimobicash http://180.179.68.18/sbimobicashhost/default.aspx,
com.oxicash.sbimobicash http://180.179.68.18/sbimobicashhost/default.aspx,
com.oxicash.sbimobicash http://180.179.68.18/sbimobicashhost/default.aspx,
com.oxicash.sbimobicash http://180.179.68.18/sbimobicashhost/default.aspx,
com.oxicash.sbimobicash http://180.179.68.18/sbimobicashhost/default.aspx,
com.oxicash.sbimobicash http://180.179.68.18/sbimobicashhost/default.aspx,
com.oxicash.sbimobicash http://180.179.68.18/sbimobicashhost/default.aspx,
com.oxicash.sbimobicash http://180.179.68.18/sbimobicashhost/default.aspx,
com.oxicash.sbimobicash http://180.179.68.18/sbimobicashhost/default.aspx,
net.cts.android.ozarkmountain http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid3023 http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid3023 http://market.android.com/details?id=%s,
com.regions.mobbanking http://10.11.11.174/konybanking/activatevasco,http://10.11.11.174/konybanking/validateotp?otp=%_userotp_%,http://10.11.11.174/konybanking/resetdata,http://10.11.11.174/konybanking/validatesignature?sign=%_usersign_%&fields=%_usersignfields_%,http://10.11.11.174/konybanking/resetdata,http://10.11.11.174/konybanking/activatevasco,http://10.11.11.174/konybanking/validateotp?otp=%_userotp_%,http://10.11.11.174/konybanking/validatesignature?sign=%_usersign_%&fields=%_usersignfields_%,
com.regions.mobbanking http://10.0.2.2:8888/preview/rc/and,http://10.0.2.2:8888/preview/rc/and/bytecode.o,
com.regions.mobbanking http://10.0.2.2,
com.worldbank.datafinder http://developers.facebook.com/docs/reference/rest/,
com.worldbank.datafinder http://sites.google.com/site/gson/gson-user-guide#toc-serializing-and-deserializing-gener,
com.worldbank.datafinder http://api.twitter.com/oauth/request_token,http://api.twitter.com/oauth/access_token,http://api.twitter.com/oauth/authorize,
com.worldbank.datafinder http://api.twitter.com/oauth/access_token,http://api.twitter.com/oauth/authorize,http://api.twitter.com/oauth/request_token,
com.worldbank.datafinder http://nada,
com.worldbank.datafinder http://www.prognoz.ru,http://www.prognoz.ru,
com.worldbank.datafinder http://twitter4j.org/configuration.html for the detail.,http://twitter4j.org/configuration.html for the detail.,
com.worldbank.datafinder http://dev.twitter.com/pages/auth) were missing or incorrect. ensure that you have set valid conumer key/secret, access token/secret, and the system clock in in sync.,http://support.twitter.com/forums/10711/entries/15364).,http://dev.twitter.com/pages/rate-limiting).\nreturned by the streaming api:\n too many login attempts in a short period of time.\n running too many copies of the same application authenticating with the same account name.,http://dev.twitter.com/pages/support) so the twitter team can investigate.,http://www.google.co.jp/search?q=,http://www.google.co.jp/search?q=,
com.worldbank.datafinder http://api.twitter.com/,
com.worldbank.datafinder http://twitgoo.com/api/uploadandpost,http://api.twitter.com/,http://twitgoo.com/api/uploadandpost,
com.worldbank.datafinder http://p.twipple.jp/api/upload,http://p.twipple.jp/api/upload,
com.worldbank.datafinder http://tweetphotoapi.com/api/upload.aspx,http://api.twitter.com/,http://tweetphotoapi.com/api/upload.aspx,
com.worldbank.datafinder http://img.ly/api/2/upload.json,http://api.twitter.com/,http://img.ly/api/2/upload.json,
com.worldbank.datafinder http://api.twitter.com/oauth/access_token,http://api.twitter.com/oauth/authenticate,http://api.twitter.com/oauth/authorize,http://api.twitter.com/oauth/request_token,http://api.twitter.com/1/,http://search.twitter.com/,http://stream.twitter.com/1/,http://twitter4j.org/en/twitter4j-,http://twitter4j.org/ /,http://api.twitter.com/oauth/request_token,http://api.twitter.com/oauth/authorize,http://api.twitter.com/oauth/access_token,http://api.twitter.com/oauth/authenticate,http://api.twitter.com/1/,http://search.twitter.com/,http://stream.twitter.com/1/,http://api.twitter.com/1/,http://api.twitter.com/oauth/access_token,http://api.twitter.com/oauth/authenticate,http://api.twitter.com/oauth/authorize,http://api.twitter.com/oauth/request_token,
eu.eleader.mobilebanking.pekao http://maps.google.com/maps?f=d&saddr=,
eu.eleader.mobilebanking.pekao http://maps.googleapis.com/maps/api/directions/json?origin=,
eu.eleader.mobilebanking.pekao http://twitter.com/intent/tweet,http://twitter.com/intent/tweet,
org.alliant.mobile http://maps.google.com/maps?,
org.alliant.mobile http://schemas.xmlsoap.org/soap/envelope/,http://wrg.com/smsgateway/mobilemessage,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://schemas.xmlsoap.org/soap/envelope/,http://wrg.com/smsgateway/mobilemessage,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/%2$s,http://wrg.com/smsgateway/%2$s,
org.alliant.mobile http://maps.google.com/maps/geo?q=%1$s&output=csv&oe=utf8&sensor=false&key=abqiaaaal--_otv89jxp03efvlewibsdkugj2vocidlv4lqgufq9avnmfbrm1aatcqq1vkfo_1q4usha8-b7rg,
org.alliant.mobile http://maps.google.com/maps/geo?q=%1$s&output=csv&oe=utf8&sensor=false&key=,
com.ifs.banking.fiid3364 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid3364 http://market.android.com/details?id=%s,
com.softek.ofxclmobile.datcu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.datcu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.datcu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.datcu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.datcu http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://50.17.194.17/mpserver/paymentsmanagement.asmx,
com.softek.ofxclmobile.datcu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.datcu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.datcu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.datcu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.datcu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.datcu http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,
pl.mbank http://www.mbank.pl,
pl.mbank http://www.mbank.pl,
pl.mbank http://mbank.pl/,
pl.mbank http://www.mbank.pl/bin/lajt/blog/feed.php,http://www.mbank.pl/lajt/blog/,http://www.mbank.cz/mobile/blog/feed.php,http://www.mbank.cz/mobile/blog/,http://www.mbank.sk/mobile/blog/feed.php,http://www.mbank.sk/mobile/blog/,http://www.mbank.pl/bin/lajt/blog/feed.php,http://www.mbank.pl/lajt/blog/,http://www.mbank.cz/mobile/blog/feed.php,http://www.mbank.cz/mobile/blog/,http://www.mbank.sk/mobile/blog/feed.php,http://www.mbank.sk/mobile/blog/,http://m.multibank.pl/bin/feed.php,http://m.multibank.pl/,http://www.mbank.pl/bin/lajt/blog/feed.php,http://www.mbank.pl/lajt/blog/,http://www.mbank.cz/mobile/blog/feed.php,http://www.mbank.cz/mobile/blog/,http://www.mbank.sk/mobile/blog/feed.php,http://www.mbank.sk/mobile/blog/,http://m.multibank.pl/bin/feed.php,http://m.multibank.pl/,http://m.multibank.pl/bin/feed.php,http://m.multibank.pl/,
pl.mbank http://schemas.xmlsoap.org/soap/envelope/,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://mbank.pl/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://mbank.pl/,http://mbank.pl/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,
pl.mbank http://www.mbank.pl/bin/waluty/iphone.php,http://www.mbank.pl/.includes/iphone/fundusze-wartosci.xml,http://www.mbank.pl/.includes/iphone/fundusze.xml,
pl.mbank http://www.mbank.pl/.includes/iphone/bankomaty-statusy.xml,
org.bom.bank http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
org.bom.bank http://www.wireless-village.org/csp,http://www.wireless-village.org/pa,http://www.wireless-village.org/trc,http://www.openmobilealliance.org/dtd/wv-csp,http://www.openmobilealliance.org/dtd/wv-pa,http://www.openmobilealliance.org/dtd/wv-trc,
org.bom.bank http://www.,
org.bom.bank http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
org.bom.bank http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
org.bom.bank http://xmlpull.org/v1/doc/properties.html#xmldecl-standalone,
org.bom.bank http://tempuri.org/,http://tempuri.org/,http://tempuri.org/,http://tempuri.org/,http://tempuri.org/getfxratesbyforeigncurrency,http://tempuri.org/getfixedtermsavings,http://tempuri.org/gethomeloan,http://tempuri.org/getvariabletermsavingsv2,http://webapps.stgeorge.com.au/webservice/foreignexchange.asmx,http://webapps.bankofmelbourne.com.au/calculator-savings-net/savingsaccounts.asmx,http://webapps.stgeorge.com.au/calculator-homeloans-net/homeloans.asmx,http://webapps.stgeorge.com.au/calculator-savings-net/savingsaccounts.asmx,http://download.stgeorge.com.au/locator/stg35/bom.txt,http://tempuri.org/,http://webapps.bankofmelbourne.com.au/calculator-savings-net/savingsaccounts.asmx,http://tempuri.org/getfixedtermsavings,http://tempuri.org/,http://tempuri.org/,http://webapps.stgeorge.com.au/calculator-homeloans-net/homeloans.asmx,http://tempuri.org/gethomeloan,http://tempuri.org/gethomeloan -> ,http://tempuri.org/,http://webapps.stgeorge.com.au/calculator-savings-net/savingsaccounts.asmx,http://tempuri.org/getvariabletermsavingsv2,http://tempuri.org/,http://webapps.stgeorge.com.au/webservice/foreignexchange.asmx,http://tempuri.org/getfxratesbyforeigncurrency,
org.bom.bank http://m.bankofmelbourne.com.au/#freedom?pid=android-app-freedom,http://m.bankofmelbourne.com.au/#express-freedom?pid=android-app-express,http://m.bankofmelbourne.com.au/#maxi?pid=android-app-maxi,http://m.bankofmelbourne.com.au/#td?pid=android-app-td,http://bankofmelbourne.com.au/wealth-creation/bt-super-for-life,http://download.stgeorge.com.au/locator/stg35/bom.txt,http://bankofmelbourne.com.au/credit-cards,http://bankofmelbourne.com.au/loans/home-loans,http://bankofmelbourne.com.au/insurance,http://m.bankofmelbourne.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=cf&brand=bom&origin=msite&sessiontype=new,http://m.bankofmelbourne.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=ef&brand=bom&origin=msite&sessiontype=new,http://m.bankofmelbourne.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=ms&brand=bom&origin=msite&sessiontype=new,http://m.bankofmelbourne.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=tda&brand=bom&origin=msite&sessiontype=new&interestpaidfrequency=im&productcode=30&statename=#state#&openamount=#amount#&termlength=#length#&interestrate=#interest#,http://bankofmelbourne.com.au/loans/personal-loans,http://bankofmelbourne.com.au/accounts/saving-for-a-goal,http://bankofmelbourne.com.au/accounts/everyday-banking,
org.bom.bank http://google.com/maps?q=(,
org.bom.bank http://google.com/maps?q=(,
org.bom.bank http://m.bankofmelbourne.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=tda&brand=bom&origin=msite&sessiontype=new&interestpaidfrequency=im&productcode=30&statename=#state#&openamount=#amount#&termlength=#length#&interestrate=#interest#,http://m.bankofmelbourne.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=tda&brand=bom&origin=msite&sessiontype=new&interestpaidfrequency=im&productcode=30&statename=#state#&openamount=#amount#&termlength=#length#&interestrate=#interest#,http://m.bankofmelbourne.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=ms&brand=bom&origin=msite&sessiontype=new,
org.bom.bank http://m.bankofmelbourne.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=tda&brand=bom&origin=msite&sessiontype=new&interestpaidfrequency=im&productcode=30&statename=#state#&openamount=#amount#&termlength=#length#&interestrate=#interest#,http://m.bankofmelbourne.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=tda&brand=bom&origin=msite&sessiontype=new&interestpaidfrequency=im&productcode=30&statename=#state#&openamount=#amount#&termlength=#length#&interestrate=#interest#,http://m.bankofmelbourne.com.au/mobilebanking-atm/mobileioaf.aspx?applicationid=ms&brand=bom&origin=msite&sessiontype=new,
org.bom.bank http://m.bankofmelbourne.com.au/#td?pid=android-app-td,http://m.bankofmelbourne.com.au/#freedom?pid=android-app-freedom,http://m.bankofmelbourne.com.au/#express-freedom?pid=android-app-express,http://m.bankofmelbourne.com.au/#maxi?pid=android-app-maxi,
org.bom.bank http://schemas.xmlsoap.org/soap/encoding/,http://www.w3.org/2003/05/soap-encoding,http://schemas.xmlsoap.org/soap/envelope/,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2001/xmlschema,http://www.w3.org/1999/xmlschema,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/1999/xmlschema-instance,http://www.w3.org/1999/xmlschema-instance,http://www.w3.org/1999/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://www.w3.org/2003/05/soap-encoding,http://www.w3.org/2003/05/soap-envelope,
org.bom.bank http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,http://www.w3.org/2003/05/soap-envelope,
org.bom.bank http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,
org.bom.bank http://xmlpull.org/v1/doc/features.html#process-namespaces,
org.bom.bank http://schemas.xmlsoap.org/soap/encoding/,
org.bom.bank http://xml.apache.org/xml-soap,http://xml.apache.org/xml-soap,
org.bom.bank http://xmlpull.org/v1/doc/features.html#process-namespaces,http://xmlpull.org/v1/doc/features.html#validation,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://xmlpull.org/v1/doc/features.html#validation,
org.bom.bank http://xmlpull.org/v1/doc/features.html#process-docdecl,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://xmlpull.org/v1/doc/features.html#report-namespace-prefixes,http://xmlpull.org/v1/doc/features.html#validation,
com.ifs.androidmobilebanking.fiid1099 http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid1099 http://www.amazon.com/gp/mas/dl/android?p=%s,http://market.android.com/details?id=%s,
com.kansasstatebank http://maps.google.com/maps?saddr=,
com.kansasstatebank http://maps.google.com/maps?,
com.ifs.androidmobilebanking.fiid7049 http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid7049 http://www.amazon.com/gp/mas/dl/android?p=%s,http://market.android.com/details?id=%s,
com.softek.ofxclmobile.kinectafcuprod http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.kinectafcuprod http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.kinectafcuprod http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.kinectafcuprod http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.kinectafcuprod http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.kinectafcuprod http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.kinectafcuprod http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.kinectafcuprod http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.kinectafcuprod http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.kinectafcuprod http://schemas.xmlsoap.org/soap/envelope/,
com.pinnaclebankwyoming.mobile http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.pinnaclebankwyoming.mobile http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,
com.softek.ofxclmobile.centralminnesotacu http://coach.softekweb.com/wapcgsbalerts/alertmanagement.asmx,http://demo.softekweb.com/eft-ws/,
com.softek.ofxclmobile.centralminnesotacu http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,
com.softek.ofxclmobile.centralminnesotacu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.centralminnesotacu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.centralminnesotacu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.centralminnesotacu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.centralminnesotacu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.centralminnesotacu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.centralminnesotacu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.centralminnesotacu http://schemas.xmlsoap.org/soap/envelope/,
com.ifs.mobilebanking.fiid7281 http://maps.google.com/maps?saddr=,
com.ifs.mobilebanking.fiid7281 http://market.android.com/details?id=%s,
com.statefarm.pocketagent http://maps.google.com/maps?saddr=,
com.statefarm.pocketagent http://statefarm.rd.llnwd.net/o43/mobile/claims_cur_customer.mp4?fd=http,
com.statefarm.pocketagent http://maps.google.com/maps,
com.statefarm.pocketagent http://met.adwhirl.com/exmet.php?appid=%s&nid=%s&type=%d&uuid=%s&country_code=%s&appver=%d&client=2,http://met.adwhirl.com/exclick.php?appid=%s&nid=%s&type=%d&uuid=%s&country_code=%s&appver=%d&client=2,
com.statefarm.pocketagent http://cus.adwhirl.com/custom.php?appid=%s&nid=%s&uuid=%s&country_code=%s%s&appver=%d&client=2,http://mob.adwhirl.com/getinfo.php?appid=%s&appver=%d&client=2,
com.screwtapestudios.bankjob http://test.urbanairship.com,http://75.101.249.15:8090,
com.screwtapestudios.bankjob http://code.google.com/android/c2dm/ for further details.,
com.screwtapestudios.bankjob http://ok,
com.mmi.icici.locator http://apis.mapmyindia.com/v2.0/geocode/key=8f39ad16234f1fae48a633bef78ff293&rtype=xml&addr=,http://maps.mapmyindia.com/imcomments/index.php,http://apis.mapmyindia.com/v2.0/reversegeocode/key=8f39ad16234f1fae48a633bef78ff293&rtype=json&type=wgs84&x=,http://apis.mapmyindia.com/v2.0/directions/key=8f39ad16234f1fae48a633bef78ff293&rtype=json&route=0&vehicle=0&avoid=0,1&q=2&from=,
com.mmi.icici.locator http://mapapi.mapmyindia.com/mapserver/stillimagecreator.aspx?width=,
com.mmi.icici.locator http://www.google.com/loc/json,http://alpha.mapmyindia.com/cellapi/api.php?mcc=,
com.mmi.icici.locator http://mapmyindia.com/mobile/icicibank/apk/version.txt,http://mapmyindia.com/mobile/icicibank/apk/icicilocator.apk,
com.visitsouthbank.pocket_guide http://www.southbankcorporation.com.au/terms-use,http://www.southbankcorporation.com.au/privacy,http://www.mapdigital.com.au,
com.visitsouthbank.pocket_guide http://visitsouthbank.com.au,
com.visitsouthbank.pocket_guide http://www.webservice.visitsouthbank.com.au/service/url,
com.ifs.androidmobilebanking.fiid4979 http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid4979 http://www.amazon.com/gp/mas/dl/android?p=%s,http://market.android.com/details?id=%s,
com.arvest.androidapp http://www.spongycastle.org) ,
com.winghang http://rate.ws.trsproxy.whbhk.com/fetchrate,http://schemas.xmlsoap.org/soap/envelope/,
com.winghang http://rate.ws.trsproxy.whbhk.com/fetchrate,http://schemas.xmlsoap.org/soap/envelope/,
com.winghang http://rate.ws.trsproxy.whbhk.com/fetchrate,http://schemas.xmlsoap.org/soap/envelope/,
com.northshorebank.northshorebank http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.northshorebank.northshorebank http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,
com.citizensbank.androidapp http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://schemas.xmlsoap.org/soap/envelope/,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,
com.citizensbank.androidapp http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema-instance,
com.citizensbank.androidapp http://services.mbanking.sybase.com/schema,
com.citizensbank.androidapp http://services.mbanking.sybase.com/schema,
com.citizensbank.androidapp http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,
com.citizensbank.androidapp http://services.mbanking.sybase.com/schema,
com.citizensbank.androidapp http://services.mbanking.sybase.com/schema,http://services.mbanking.sybase.com/schema,http://www.w3.org/2001/xmlschema-instance,
ie.nationalirishbank.android.tribank http://maps.google.com/maps?&saddr=,
ie.nationalirishbank.android.tribank http://maps.google.com/maps?f=d&hl=en,
ie.nationalirishbank.android.tribank http://demobank.dk/data/04/2009\'>\t<agreement>\t\t<person>john doe</person>\t\t<action>transfer</action>\t\t<amount>100.000 dkk</amount>\t\t<destination>skat</destination>\t</agreement></event>,http://www.w3.org/1999/xsl/transform\' version=\'1.0\' xmlns:data=\'http://demobank.dk/data/04/2009\' exclude-result-prefixes=\'data\'><xsl:template match=\'data:event\'>\t<html>\t\t<head> <title>agreement</title> </head>\t\t<body>\t\t\t<div><b>payer: </b><xsl:value-of select=\'data:agreement/data:person/text()\' /></div>\t\t\t<div><b>amount : </b><xsl:value-of select=\'data:agreement/data:amount/text()\' /></div>\t\t\t<div><b>receiver : </b><xsl:value-of select=\'data:agreement/data:destination/text()\' /></div>\t\t</body>\t</html></xsl:template></xsl:stylesheet>,
com.visionbankok http://maps.google.com/maps?saddr=,
com.visionbankok http://maps.google.com/maps?,
nz.co.asb.asbmobile http://developers.facebook.com/docs/reference/rest/,
nz.co.asb.asbmobile http://maps.google.co.nz/maps?,
com.ifs.banking.fiid7177 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid7177 http://www.amazon.com/gp/mas/dl/android?p=%s,http://market.android.com/details?id=%s,
com.president.media.kurs.uang http://www.xrvel.com/klikbca/index.php,
com.ifs.banking.fiid3892 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid3892 http://market.android.com/details?id=%s,
com.bankofamericanfork http://maps.google.com/maps?saddr=,
com.bankofamericanfork http://maps.google.com/maps?,
com.icomvision.bsc.mobilebank http://xml.org/sax/features/namespaces,http://xml.org/sax/features/namespace-prefixes,
com.ifs.banking.fiid7097 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid7097 http://market.android.com/details?id=%s,
com.konylabs.capitalone http://10.0.2.2:8888/preview/rc/and,http://10.0.2.2:8888/preview/rc/and/bytecode.o,
com.konylabs.capitalone http://10.0.2.2,
com.ifs.banking.fiid9022 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid9022 http://market.android.com/details?id=%s,
org.sfpcu http://online.sfpcu.org/iphone/androidapp.asp,
com.softek.ofxclmobile.goldenwestcu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.goldenwestcu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.goldenwestcu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.goldenwestcu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.goldenwestcu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.goldenwestcu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.goldenwestcu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.goldenwestcu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.goldenwestcu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.goldenwestcu http://schemas.xmlsoap.org/soap/envelope/,
bokf.ib.android.market.abq http://maps.google.com/maps?f=d&daddr=%s,%s,
com.cffc.mobile http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.cffc.mobile http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,
com.ifs.banking.fiid5362 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid5362 http://market.android.com/details?id=%s,
net.cts.android.bcnb http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid4090 http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid4090 http://market.android.com/details?id=%s,
com.ifs.androidmobilebanking.fiid3449 http://maps.google.com/maps?saddr=,
com.broadway.mobile.android.ui http://maps.google.com/maps?saddr=,
com.laportesavingsbank http://www.w3.org/2001/xmlschema-instance,http://meafinancial.com/postbillpaydeletescheduleddata,
com.laportesavingsbank http://www.w3.org/2001/xmlschema-instance,http://meafinancial.com/getbillpayscheduledata,
com.laportesavingsbank http://maps.google.com/maps?saddr=,
com.laportesavingsbank http://www.w3.org/2001/xmlschema-instance,http://meafinancial.com/getbankinfooptionsdata,
com.laportesavingsbank http://maps.google.com/maps?,
com.clairmail.greatwesternbank http://www.spongycastle.org) ,
com.greatsouthernbank http://maps.google.com/maps?saddr=,
com.greatsouthernbank http://maps.google.com/maps?,
com.location.banks.finder http://www.adiumxtras.com/images/thumbs/dango_status_icon_set_7_19047_6248_thumb.png,http://www.google.com.hk,http://www.dolphin-browser.com/apps/aphone.htm,http://ad.belugaboost.com/api/1/ads/get_ads.json,http://172.16.8.111/api/1/ads/get_ads.json,http://ad.belugaboost.com/api/1/policy/get_policy.json,http://172.16.8.111/api/1/policy/get_policy.json,http://track.belugaboost.com/stats/install,http://172.16.8.25/stats/install,
com.location.banks.finder http://track.belugaboost.com/stats/install,
com.location.banks.finder http://www.google.com.hk,http://ad.belugaboost.com/api/1/policy/get_policy.json,http://172.16.8.111/api/1/policy/get_policy.json,
com.location.banks.finder http://www.adiumxtras.com/images/thumbs/dango_status_icon_set_7_19047_6248_thumb.png,http://ad.belugaboost.com/api/1/ads/get_ads.json,http://172.16.8.111/api/1/ads/get_ads.json,
com.location.banks.finder http://maps.google.com/maps?f=d,http://www.google.com/search?q=,http://maps.google.com/maps?f=d&sadr=,http://www.google.com/search?q=,
com.location.banks.finder http://www.bsalsa.com/ embeddedwb 14.52; .net clr 1.1.4322; .net clr 2.0.50727; infopath.1; .net clr 1.0.3705; .net clr 3.0.04506.30),http://www.bsalsa.com/ embeddedwb 14.52; .net clr 1.1.4322; .net clr 2.0.50727; infopath.1; .net clr 1.0.3705; .net clr 3.0.04506.30),
com.location.banks.finder http://ajax.googleapis.com/ajax/services/search/local?rsz=large&v=1.0&q=,
com.location.banks.finder http://ajax.googleapis.com/ajax/services/search/local?rsz=large&v=1.0&q=,
com.location.banks.finder http://my.mobfox.com/request.php,
com.location.banks.finder http://my.mobfox.com/request.php,
com.ifs.androidmobilebanking.fiid3379 http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid3379 http://market.android.com/details?id=%s,
com.ifs.androidmobilebanking.fiid4864 http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid4864 http://market.android.com/details?id=%s,
au.com.nab.mobile http://maps.google.com/maps?saddr=,
au.com.nab.mobile http://loopj.com/android-async-http),
au.com.nab.mobile http://www.spongycastle.org) ,
com.softek.ofxclmobile.gulfwindsfcu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.gulfwindsfcu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.gulfwindsfcu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.gulfwindsfcu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.gulfwindsfcu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.gulfwindsfcu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.gulfwindsfcu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.gulfwindsfcu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.gulfwindsfcu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.gulfwindsfcu http://schemas.xmlsoap.org/soap/envelope/,
com.ifs.mobilebanking.fiid3919 http://maps.google.com/maps?saddr=,
com.ifs.mobilebanking.fiid3919 http://market.android.com/details?id=%s,
il.co.globes.android http://mobileapi.tapuz.co.il/ws/iphone/globes/v001.asmx/searchstock?saccessstr=3709850092663a24346a96e8cf2277d4&bisdefault=true&ssearch=xxxx&ipagesize=20&sdeviceid=android,
il.co.globes.android http://graph.globes.co.il/chartdirector/finance/cchart.aspx?width=wwww&height=hhhh&symbol=ssss&feeder=0&days=xxxx,http://graph.globes.co.il/chartdirector/finance/orchart.aspx?exchange=eeee&graph=xxxx&symbol=ssss&width=wwww&height=hhhh,
il.co.globes.android http://www.globes.co.il/data/webservices/responses.asmx/get_responses?doc_id=xxxx&upper_bound=0&count=yyyy,
il.co.globes.android http://a.total-media.net/html.ng/s=glo&ft=12.wwwwxhhhh&pos=2&glcg=android&transactionid=xxxx&tileid=yyyy,http://www.globes.co.il/data/webservices/financial.asmx/getinstrumentbyid?for=mobile&source=xxxx&instrumentid=yyyy,
il.co.globes.android http://graph.globes.co.il/chartdirector/finance/cchart.aspx?width=wwww&height=hhhh&symbol=ssss&feeder=0&days=xxxx,http://graph.globes.co.il/chartdirector/finance/orchart.aspx?exchange=eeee&graph=xxxx&symbol=ssss&width=wwww&height=hhhh,
il.co.globes.android http://www.globes.co.il/data/webservices/library.asmx/documentxml?doc_id=,http://www.globes.co.il/data/webservices/responses.asmx/get_responses?doc_id=xxxx&upper_bound=0&count=yyyy,
il.co.globes.android http://www.globes.co.il/news/instrument.aspx?instrumentid=,http://www.globes.co.il/data/webservices/litefinance.ashx?rect=index.instruments&feeder=xxxx&instrumentid=yyyy,
il.co.globes.android http://www.globes.co.il/data/webservices/portfolios.asmx/portfolioaction,
il.co.globes.android http://www.globes.co.il/data/webservices/financial.asmx/getinstrumentbyid?for=mobile&source=xxxx&instrumentid=yyyy,http://www.globes.co.il/data/webservices/portfolios.asmx/getportfolios?mode=2&portfolioid=&accesskey=xxxx,
il.co.globes.android http://graph.globes.co.il/chartdirector/finance/cchart.aspx?width=wwww&height=hhhh&symbol=ssss&feeder=0&days=xxxx,http://graph.globes.co.il/chartdirector/finance/orchart.aspx?exchange=eeee&graph=xxxx&symbol=ssss&width=wwww&height=hhhh,
il.co.globes.android http://a.total-media.net/html.ng/s=glo&ft=12.wwwwxhhhh&pos=2&glcg=android&transactionid=xxxx&tileid=yyyy,
il.co.globes.android http://www.globes.co.il/data/webservices/m.asmx/all,
il.co.globes.android http://a.total-media.net/html.ng/s=glo&ft=12.480x800&pos=2&glcg=android&transactionid=xxxx&tileid=yyyy,
il.co.globes.android http://www.globes.co.il/news/article.aspx?did=,
il.co.globes.android http://a.total-media.net/html.ng/s=glo&ft=12.wwwwxhhhh&pos=2&glcg=android&transactionid=xxxx&tileid=yyyy,
il.co.globes.android http://www.globes.co.il/data/webservices/library.asmx/nodeclips?node_id=2007,http://mobileapi.tapuz.co.il/ws/iphone/globes/v001.asmx/searchstock?saccessstr=3709850092663a24346a96e8cf2277d4&bisdefault=true&ssearch=xxxx&ipagesize=20&sdeviceid=android,http://www.globes.co.il/data/webservices/litefinance.ashx?rect=all.groups,http://www.globes.co.il/data/webservices/m.asmx/all,http://www.globes.co.il/data/webservices/m.asmx/all,
il.co.globes.android http://mobileapi.tapuz.co.il/ws/iphone/globes/v001.asmx/addresponse?saccessstr=3709850092663a24346a96e8cf2277d4&iarticleid=xxxx&sdeviceid=yyyy&susername=zzzz&ssubject=kkkk&stext=eeee,http://www.globes.co.il,http://www.globes.co.il,http://www.globes.co.il/data/webservices/searcher.asmx/get_documents?query=xxxx,http://www.globes.co.il/data/webservices/library.asmx/nodeclips?node_id=2007,
il.co.globes.android http://m.tapuz.co.il/touch/globes/tof_android.htm,
il.co.globes.android http://mobileapi.tapuz.co.il/ws/iphone/globes/v001.asmx/addresponse?saccessstr=3709850092663a24346a96e8cf2277d4&iarticleid=xxxx&sdeviceid=yyyy&susername=zzzz&ssubject=kkkk&stext=eeee,
il.co.globes.android http://www.globes.co.il/data/webservices/login.asmx/register,
il.co.globes.android http://www.globes.co.il/data/webservices/library.asmx/nodeclips?node_id=2007,http://www.globes.co.il/data/webservices/library.asmx/nodearticleheaders?node_id=,
il.co.globes.android http://www.globes.co.il/data/webservices/portfolios.asmx/getportfolios?mode=2&portfolioid=&accesskey=xxxx,http://www.globes.co.il/data/webservices/financial.asmx/getinstrumentbyid?for=mobile&source=xxxx&instrumentid=yyyy,
il.co.globes.android http://www.globes.co.il/data/webservices/financial.asmx/getinstrumentbyid?for=mobile&source=xxxx&instrumentid=yyyy,
il.co.globes.android http://www.globes.co.il/data/webservices/responses.asmx/get_responses?doc_id=xxxx&upper_bound=0&count=yyyy,http://mobileapi.tapuz.co.il/ws/iphone/globes/v001.asmx/addresponse?saccessstr=3709850092663a24346a96e8cf2277d4&iarticleid=xxxx&sdeviceid=yyyy&susername=zzzz&ssubject=kkkk&stext=eeee,http://a.total-media.net/html.ng/s=glo&ft=12.wwwwxhhhh&pos=2&glcg=android&transactionid=xxxx&tileid=yyyy,http://a.total-media.net/html.ng/s=glo&ft=12.480x800&pos=2&glcg=android&transactionid=xxxx&tileid=yyyy,http://www.globes.co.il/data/webservices/library.asmx/nodeclips?node_id=2007,http://www.globes.co.il/data/webservices/library.asmx/documentxml?doc_id=,http://www.globes.co.il/news/article.aspx?did=,http://orangemobile.tapuz.co.il/touch/globes/lite/finance.aspx,http://graph.globes.co.il/chartdirector/finance/cchart.aspx?width=wwww&height=hhhh&symbol=ssss&feeder=0&days=xxxx,http://www.globes.co.il/news/instrument.aspx?instrumentid=,http://www.globes.co.il/data/webservices/m.asmx/all,http://www.globes.co.il/data/webservices/litefinance.ashx?rect=,http://www.globes.co.il/data/webservices/portfolios.asmx/getportfolios?mode=2&portfolioid=&accesskey=xxxx,http://www.globes.co.il/data/webservices/searcher.asmx/get_documents?query=xxxx,http://www.globes.co.il/data/webservices/library.asmx/nodearticleheaders?node_id=,http://graph.globes.co.il/chartdirector/finance/orchart.aspx?exchange=eeee&graph=xxxx&symbol=ssss&width=wwww&height=hhhh,http://www.globes.co.il/data/webservices/financial.asmx/getinstrumentbyid?for=mobile&source=xxxx&instrumentid=yyyy,http://mobileapi.tapuz.co.il/ws/iphone/globes/v001.asmx/searchstock?saccessstr=3709850092663a24346a96e8cf2277d4&bisdefault=true&ssearch=xxxx&ipagesize=20&sdeviceid=android,
il.co.globes.android http://a.total-media.net/html.ng/s=glo&ft=12.wwwwxhhhh&pos=2&glcg=android&transactionid=xxxx&tileid=yyyy,
il.co.globes.android http://www.globes.co.il/data/webservices/portfolios.asmx/getportfolios,
il.co.globes.android http://a.total-media.net/html.ng/s=glo&ft=12.wwwwxhhhh&pos=2&glcg=android&transactionid=xxxx&tileid=yyyy,http://a.total-media.net/html.ng/s=glo&ft=12.wwwwxhhhh&pos=2&glcg=android&transactionid=xxxx&tileid=yyyy,
il.co.globes.android http://www.globes.co.il/data/webservices/login.asmx/sign_in,
il.co.globes.android http://a.total-media.net/html.ng/s=glo&ft=12.wwwwxhhhh&pos=2&glcg=android&transactionid=xxxx&tileid=yyyy,http://www.globes.co.il/data/webservices/library.asmx/nodeclips?node_id=2007,http://www.globes.co.il/data/webservices/library.asmx/nodearticleheaders?node_id=,http://www.cast-tv.biz/play/,http://www.cast-tv.biz/play/,http://www.globes.co.il/data/webservices/searcher.asmx/get_documents?query=xxxx,http://www.globes.co.il/data/webservices/library.asmx/nodeclips?node_id=2007,
il.co.globes.android http://a.total-media.net/html.ng/s=glo&ft=12.wwwwxhhhh&pos=2&glcg=android&transactionid=xxxx&tileid=yyyy,http://www.globes.co.il/data/webservices/searcher.asmx/get_documents?query=xxxx,
il.co.globes.android http://orangemobile.tapuz.co.il/touch/globes/lite/finance.aspx,
com.softek.ofxclmobile.cuofco http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.cuofco http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.cuofco http://coach.softekweb.com/wapcgsbalerts/alertmanagement.asmx,http://demo.softekweb.com/eft-ws/,
com.softek.ofxclmobile.cuofco http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.cuofco http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,http://www.bluepointsolutions.com/,
com.softek.ofxclmobile.cuofco http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.cuofco http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.cuofco http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.cuofco http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.cuofco http://schemas.xmlsoap.org/soap/envelope/,
connexinet.android.scotiafinder http://www.gstatic.com/afma/sdk-core-v40.js,
connexinet.android.scotiafinder http://a.admob.com/f0?,
connexinet.android.scotiafinder http://data.flurry.com/aap.do,http://ad.flurry.com/getcanvas.do,http://ad.flurry.com/getandroidapp.do,
connexinet.android.scotiafinder http://www.connexinet.com,
connexinet.android.scotiafinder http://www.google.com,
connexinet.android.scotiafinder http://maps.google.com/maps?saddr=,http://www.connexinet.com/sm/,
com.communitybank http://www.w3.org/2000/xmlns/,http://www.w3.org/2000/xmlns/,http://www.w3.org/2000/xmlns/,
com.communitybank http://www.w3.org/2003/05/soap-envelope,
com.communitybank http://www.w3.org/2001/xmlschema-instance\' xmlns:xsd=\'http://www.w3.org/2001/xmlschema\' xmlns:soap=\',http://schemas.xmlsoap.org/soap/envelope/,
com.communitybank http://maps.google.com/maps?saddr=,
com.communitybank http://docs.google.com/viewer?url=,
com.communitybank http://meafinancial.com/meacommon/requestaction,http://meafinancial.com/meacommon/testrequestaction,http://www.w3.org/2001/xmlschema-instance,
com.sbsa.mobile http://maps.google.com/maps?saddr=,
com.twistbyte.bankshot http://www.gstatic.com/afma/sdk-core-v40.js,
com.twistbyte.bankshot http://a.admob.com/f0?,
com.softek.ofxclmobile.texastrustcu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.texastrustcu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.texastrustcu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.texastrustcu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.texastrustcu http://coach.softekweb.com/wapcgsbalerts/alertmanagement.asmx,http://demo.softekweb.com/eft/ws/,
com.softek.ofxclmobile.texastrustcu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.texastrustcu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.texastrustcu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.texastrustcu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.texastrustcu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.texastrustcu http://schemas.xmlsoap.org/soap/envelope/,
com.liato.bankdroid http://code.google.com/p/android-notifier/,http://forum.xda-developers.com/showthread.php?t=554551,http://www.sonyericsson.com/cws/products/accessories/overview/liveviewmicrodisplay,
com.liato.bankdroid http://www.rikslunchen.se/index.html,http://www.rikslunchen.se/index.html,http://www.rikslunchen.se/riks-cp/dwr/call/plaincall/cardutil.getcarddata.dwr,http://www.rikslunchen.se/riks-cp/dwr/call/plaincall/cardutil.getcarddata.dwr,
com.liato.bankdroid http://www.everydaycard.se/mobil/,http://www.everydaycard.se/mobil/,http://valuta.g2solutions.se/mobil/web/logonsubmit.do,
com.liato.bankdroid http://www.skanetrafiken.se/templates/startpage.aspx?id=2182&epslanguage=sv,
com.liato.bankdroid http://bioklubben.sfbio.se/user/login,http://bioklubben.sfbio.se/user/login,
com.liato.bankdroid http://mobil.ica.se/,http://mobil.ica.se/,
com.liato.bankdroid http://www.skandiabanken.se/hem/,http://www.skandiabanken.se/hem/,
com.liato.bankdroid http://kortladdning.chalmerskonferens.se/bgw.aspx?type=getcardandarticles&card=,
com.liato.bankdroid http://apps.mcdonalds.se/sweden/giftquer.nsf/egift?openform,http://apps.mcdonalds.se/sweden/giftquer.nsf/egift?openform,http://apps.mcdonalds.se/sweden/giftquer.nsf/egift?openform&seq=1,
com.liato.bankdroid http://www.nullbyte.eu/,http://www.nullbyte.eu/,http://www.nullbyte.eu/static/bankdroid/tests/testbank/accounts.htm,http://www.nullbyte.eu/static/bankdroid/tests/testbank/transactions_,
com.ifs.androidmobilebanking.fiid3383 http://maps.google.com/maps?saddr=,
com.ifs.androidmobilebanking.fiid3383 http://market.android.com/details?id=%s,
com.mshift.android.iccuv2 http://maps.google.com/maps?saddr=&daddr=,
mbanking.NBG http://xmlpull.org/v1/doc/features.html#process-namespaces,
mbanking.NBG http://www.w3.org/2001/xmlschema,
mbanking.NBG http://91.121.104.93/nbggw/service.asmx,http://msolutions.ethnodata.gr/nbggw/service.asmx,
mbanking.NBG http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
mbanking.NBG http://www.w3.org/xml/1998/namespace,
mbanking.NBG http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
mbanking.NBG http://schemas.xmlsoap.org/soap/envelope/,
allindiabankinfoonline.allindiabankinfoonline http://www.gstatic.com/safa/sdk-core-v40.js,http://media.admob.com/sdk-core-v40.js,
allindiabankinfoonline.allindiabankinfoonline http://urlrace.com/bankv2/search/search_ifsc.php,http://urlrace.com/bankv2/search/search_micr.php,http://urlrace.com/bankv2/search/search_branch.php,http://urlrace.com/bankv2/search/search_city.php,http://urlrace.com/bankv2/search/search_district.php,http://urlrace.com/bankv2/search/search_place.php,
allindiabankinfoonline.allindiabankinfoonline http://urlrace.com/bankv2/update.php,
allindiabankinfoonline.allindiabankinfoonline http://urlrace.com/bankv2/bank.php,http://urlrace.com/bankv2/state.php,http://urlrace.com/bankv2/district.php,http://urlrace.com/bankv2/branch.php,http://urlrace.com/bankv2/address.php,
allindiabankinfoonline.allindiabankinfoonline http://urlrace.com/bankv2/search/ifsc_to_address.php,
com.fremontbank.mobile http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.fremontbank.mobile http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,
com.softek.ofxclmobile.educatorscu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.educatorscu http://coach.softekweb.com/wapcgsbalerts/alertmanagement.asmx,http://demo.softekweb.com/eft/ws/,
com.softek.ofxclmobile.educatorscu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.educatorscu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.educatorscu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.educatorscu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.educatorscu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.educatorscu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.educatorscu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.educatorscu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.educatorscu http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.lakemichigancu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.lakemichigancu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.lakemichigancu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.lakemichigancu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.lakemichigancu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.lakemichigancu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.lakemichigancu http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://50.17.194.17/mpserver/paymentsmanagement.asmx,
com.softek.ofxclmobile.lakemichigancu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.lakemichigancu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.lakemichigancu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.lakemichigancu http://schemas.xmlsoap.org/soap/envelope/,http://schemas.xmlsoap.org/soap/envelope/,
com.ifs.mobilebanking.fiid7061 http://maps.google.com/maps?saddr=,
com.ifs.mobilebanking.fiid7061 http://market.android.com/details?id=%s,
com.ifs.mobilebanking.fiid3648 http://maps.google.com/maps?saddr=,
com.ifs.mobilebanking.fiid3648 http://market.android.com/details?id=%s,
com.firststatenet http://maps.google.com/maps?,
com.firststatenet http://maps.google.com/maps?saddr=,
com.schwab.mobile http://test.com,
com.schwab.mobile http://maps.google.com/maps?daddr=,http://www.schwab.com/billpay,http://www.schwab.com/?co=c,http://maps.google.com/maps?daddr=,http://www.schwab.com/billpay,http://www.schwab.com/?co=c,
com.schwab.mobile http://sites.google.com/site/gson/gson-user-guide#toc-serializing-and-deserializing-gener,
com.ifs.banking.fiid3325 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid3325 http://market.android.com/details?id=%s,
com.softek.ofxclmobile.techcu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.techcu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.techcu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.techcu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.techcu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.techcu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.techcu http://coach.softekweb.com/wapcgsbalerts/alertmanagement.asmx,http://demo.softekweb.com/eft/ws/,
com.softek.ofxclmobile.techcu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.techcu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.techcu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.techcu http://schemas.xmlsoap.org/soap/envelope/,
com.fibt.mobile http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.fibt.mobile http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,
com.ifs.banking.fiid4652 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid4652 http://www.amazon.com/gp/mas/dl/android?p=%s,http://market.android.com/details?id=%s,
allindiabankinfo.allindiabankinfo http://www.gstatic.com/safa/sdk-core-v40.js,http://media.admob.com/sdk-core-v40.js,
com.softek.ofxclmobile.selcoccu http://coach.softekweb.com/wapcgsbalerts/alertmanagement.asmx,http://demo.softekweb.com/eft/ws/,
com.softek.ofxclmobile.selcoccu http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://50.17.194.17/mpserver/paymentsmanagement.asmx,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,http://accesssoftek.com/mobilepayments,
com.softek.ofxclmobile.selcoccu http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,http://www.accesssoftek.com/,
com.softek.ofxclmobile.selcoccu http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,http://accesssoftek.com/alertmanagement,
com.softek.ofxclmobile.selcoccu http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.selcoccu http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.selcoccu http://accesssoftek.com/services/fundstransfer,
com.softek.ofxclmobile.selcoccu http://xmlpull.org/v1/doc/,http://xmlpull.org/v1/doc/features.html#process-namespaces,http://www.w3.org/xml/1998/namespace,http://www.w3.org/2000/xmlns/,http://xmlpull.org/v1/doc/features.html#process-namespaces,
com.softek.ofxclmobile.selcoccu http://xmlpull.org/v1/doc/features.html#indent-output,http://xmlpull.org/v1/doc/features.html#indent-output,http://www.w3.org/xml/1998/namespace,
com.softek.ofxclmobile.selcoccu http://www.w3.org/2001/xmlschema-instance,http://www.w3.org/2001/xmlschema,http://schemas.xmlsoap.org/soap/encoding/,http://schemas.xmlsoap.org/soap/envelope/,
com.softek.ofxclmobile.selcoccu http://schemas.xmlsoap.org/soap/envelope/,
com.ifs.banking.fiid7277 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid7277 http://market.android.com/details?id=%s,
org.baxter.mobile http://developers.facebook.com/docs/reference/rest/,
org.baxter.mobile http://data.flurry.com/aap.do,http://ad.flurry.com/getcanvas.do,http://ad.flurry.com/getandroidapp.do,
org.baxter.mobile http://twitter4j.org/configuration.html for the detail.,http://twitter4j.org/configuration.html for the detail.,
org.baxter.mobile http://www.google.co.jp/search?q=,http://www.google.co.jp/search?q=,
org.baxter.mobile http://api.twitter.com/oauth/access_token,http://api.twitter.com/oauth/authenticate,http://api.twitter.com/oauth/authorize,http://api.twitter.com/oauth/request_token,http://api.twitter.com/1/,http://search.twitter.com/,http://upload.twitter.com/1/,http://twitter4j.org/en/twitter4j-,http://twitter4j.org/ /,http://api.twitter.com/oauth/request_token,http://api.twitter.com/oauth/authorize,http://api.twitter.com/oauth/access_token,http://api.twitter.com/oauth/authenticate,http://api.twitter.com/1/,http://search.twitter.com/,http://upload.twitter.com/1/,http://api.twitter.com/1/,http://api.twitter.com/oauth/access_token,http://api.twitter.com/oauth/authenticate,http://api.twitter.com/oauth/authorize,http://api.twitter.com/oauth/request_token,http://search.twitter.com/,http://upload.twitter.com/1/,
org.baxter.mobile http://maps.google.com/maps?,
org.baxter.mobile http://schemas.xmlsoap.org/soap/envelope/,http://wrg.com/smsgateway/mobilemessage,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,http://wrg.com/global/message,
org.baxter.mobile http://maps.google.com/maps/geo?q=%1$s&output=csv&oe=utf8&sensor=false&key=abqiaaaal--_otv89jxp03efvlewibsdkugj2vocidlv4lqgufq9avnmfbrm1aatcqq1vkfo_1q4usha8-b7rg,
org.baxter.mobile http://schemas.xmlsoap.org/soap/envelope/,http://wrg.com/smsgateway/mobilemessage,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/global/data,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,http://wrg.com/smsgateway/handset,
org.baxter.mobile http://maps.google.com/maps/geo?q=%1$s&output=csv&oe=utf8&sensor=false&key=,
org.baxter.mobile http://mobile.twitter.com/,
com.ifs.mobilebanking.fiid1000 http://maps.google.com/maps?saddr=,
com.ifs.mobilebanking.fiid1000 http://market.android.com/details?id=%s,
com.ifs.mobilebanking.fiid7133 http://maps.google.com/maps?saddr=,
com.ifs.mobilebanking.fiid7133 http://www.amazon.com/gp/mas/dl/android?p=%s,http://market.android.com/details?id=%s,
org.becu.androidapp http://www.spongycastle.org) ,
com.usbank.mobilebanking http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/servicecontracts/2009/08,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,http://www.w3.org/2001/xmlschema-instance,http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.usbank.mobilebanking http://metrics.usbank.com/b/ss/usbankcom,usbankmobile/5,http://metrics.usbank.com/b/ss/usbankdev/5,
com.usbank.mobilebanking http://mcom.co.nz/richchannelservice/datacontracts/2009/08,
com.ifs.banking.fiid7246 http://maps.google.com/maps?saddr=,
com.ifs.banking.fiid7246 http://market.android.com/details?id=%s,
com.pinnbank.MobileTexas http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.pinnbank.MobileTexas http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,
com.bibank.mobile http://mcom.co.nz/richchannelservice/servicecontracts/2009/08/richchannelservice/process,
com.bibank.mobile http://schemas.xmlsoap.org/soap/envelope/,http://mcom.co.nz/richchannelservice/datacontracts/2009/08,
com.malauzai.ffin http://fmb.mikester.is-a-guru.com:8888/contactapp.htm,
com.malauzai.ffin http://maps.google.com/maps?saddr=,
com.geekapp.bankentranceexamkit http://media.admob.com/mraid/v1/mraid_app_banner.js,http://media.admob.com/mraid/v1/mraid_app_expanded_banner.js,http://media.admob.com/mraid/v1/mraid_app_interstitial.js,
com.geekapp.bankentranceexamkit http://www.gstatic.com/safa/sdk-core-v40.js,http://media.admob.com/sdk-core-v40.js,