forked from MagerValp/AutoDMG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGdNYs.ipa
971 lines (649 loc) · 88.1 KB
/
GdNYs.ipa
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html prefix="og: http://ogp.me/ns#" xmlns="http://www.apple.com/itms/" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta name="keywords" content="BoyAhoy - Gay Chat, Meet, Friend, Skout, Inc., Social Networking, Lifestyle, ios apps, app, appstore, app store, iphone, ipad, ipod touch, itouch, itunes" /><meta name="description" content="Read reviews, compare customer ratings, see screenshots, and learn more about BoyAhoy - Gay Chat, Meet, Friend. Download BoyAhoy - Gay Chat, Meet, Friend and enjoy it on your iPhone, iPad, and iPod touch." /><meta name="platform-cache-id" content="8" /><meta name="apple:content_id" content="315257056" /><meta content="BoyAhoy - Gay Chat, Meet, Friend on the App Store" property="og:title" /><meta content="Read reviews, compare customer ratings, see screenshots, and learn more about BoyAhoy - Gay Chat, Meet, Friend. Download BoyAhoy - Gay Chat, Meet, Friend and enjoy it on your iPhone, iPad, and iPod touch." property="og:description" /><meta content="App Store" property="og:site_name" /><meta content="116556461780510" property="fb:app_id" /><meta name="twitter:title" content="BoyAhoy - Gay Chat, Meet, Friend on the App Store" /><meta name="twitter:description" content="Read reviews, compare customer ratings, see screenshots, and learn more about BoyAhoy - Gay Chat, Meet, Friend. Download BoyAhoy - Gay Chat, Meet, Friend and enjoy it on your iPhone, iPad, and iPod touch." /><meta name="twitter:site" content="@AppStore" /><meta name="twitter:domain" content="App Store" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:image" content="http://is4.mzstatic.com/image/thumb/Purple127/v4/04/b4/9d/04b49d78-6ed3-0a27-29f3-ddf27a5fb374/source/1200x630bb.jpg" /><meta content="http://is4.mzstatic.com/image/thumb/Purple127/v4/04/b4/9d/04b49d78-6ed3-0a27-29f3-ddf27a5fb374/source/1200x630bb.jpg" property="og:image" /><meta content="https://is4-ssl.mzstatic.com/image/thumb/Purple127/v4/04/b4/9d/04b49d78-6ed3-0a27-29f3-ddf27a5fb374/source/1200x630bb.jpg" property="og:image:secure_url" /><meta content="image/jpg" property="og:image:type" /><meta content="1200" property="og:image:width" /><meta content="630" property="og:image:height" />
<link rel="canonical" href="https://itunes.apple.com/us/app/boyahoy-gay-chat-meet-friend/id315257056?mt=8" />
<title>BoyAhoy - Gay Chat, Meet, Friend on the App Store</title>
<script>
if (!window.its) {
window.its = {};
}
its.markupLoadStartTime = new Date().getTime();
if (!window.onerror) window.onerror = function(message, url, lineNumber) {
if (!window._earlyOnerrorException) {
window._earlyOnerrorException = {message: message,
url: url,
lineNumber: lineNumber};
}
};
</script>
<link charset="utf-8" rel="stylesheet" type="text/css" href="https://s.mzstatic.com/htmlResources/e8d3bae/web-storefront-base.css" />
<link charset="utf-8" rel="stylesheet" type="text/css" href="https://s.mzstatic.com/htmlResources/e8d3bae/web-storefront-preview.css" />
<script type="text/javascript" charset="utf-8" src="/htmlResources/e8d3bae/frameworks-primaryinit01.js"></script>
<script type="text/javascript" charset="utf-8">its.serverData={"storePlatformData":{},"pageData":{"BUY_PARAM_PRICETYPE":"STDQ","BUY_PARAM_GENERATION":"default","basePrice":0,"isFree":true,"isCodeEnabledForFree":false,"volumePrice":0,"basePriceForDisplay":"Free","inflectionValue":1,"productAdamId":"315257056","productType":"C","BUY_PRODUCT_URL":"https://itunes.apple.com/WebObjects/MZFinance.woa/wa/volumeBuyProduct?cc=us","jsonSearchUrl":"https://itunes.apple.com/us/search","jsonLookupUrl":"https://itunes.apple.com/us/lookup"},"constants":{"Urls":{"upgradeITunesUrl":"http://www.apple.com/itunes/download/","upgradeSafariUrl":"http://www.apple.com/safari/download/"},"MZMediaType":{"MobileSoftware":{"id":8,"name":"MobileSoftwareApplications"},"MacSoftware":{"id":12,"name":"DesktopApps"},"Audiobooks":{"id":3,"name":"Audiobooks"},"MusicVideos":{"id":5,"name":"MusicVideos"},"iTunesU":{"id":10,"name":"iTunesU"},"EBooks":{"id":11,"name":"EBooks"},"Music":{"id":1,"name":"Music"},"Podcasts":{"id":2,"name":"Podcasts"},"ClassicSoftware":{"id":7,"name":"iPodGames"},"TVShows":{"id":4,"name":"TVShows"},"Movies":{"id":6,"name":"Movies"},"Ringtones":{"id":9,"name":"Ringtones"},"Textbooks":{"id":13,"name":"Textbooks"}},"SFSortOrder":{"PlaylistName":{"id":9},"RecentBestSellers":{"id":18},"SeriesOrder":{"id":17},"CmcRecommended":{"id":10},"Popularity":{"id":3},"OriginalReleaseDate":{"id":19},"ArtistName":{"id":8},"Featured":{"id":1},"TopRated":{"id":5},"Duration":{"id":11},"ReleaseDate":{"id":2},"TrackNumber":{"id":13},"Name":{"id":0},"AllTimeBestSellers":{"id":14},"ExpirationDate":{"id":6},"Price":{"id":7},"MostRecent":{"id":16},"PurchaseDate":{"id":4},"DateAdded":{"id":15},"DiscNumber":{"id":12}},"SFEntityType":{"Artist":{"id":1},"Playlist":{"id":4},"TopContents":{"id":7},"MultiRoom":{"id":3},"Search":{"id":6},"WeMix":{"id":8},"Cmc":{"id":2},"Work":{"id":10},"Wishlist":{"id":9},"TopAuthors":{"id":12},"Room":{"id":5},"TheyMix":{"id":11}},"countryCode":"usa","languageCode":"en","SFCustomComponentCountryCode":"usa","IXDisplayableKind":{"Artist":{"id":20,"cssClasses":[],"name":"artist"},"MobileSoftware":{"id":11,"cssClasses":["application"],"name":"iosSoftware","mtId":"8"},"Album":{"id":2,"cssClasses":["album","music"],"name":"album","mtId":"1"},"ShortFilm":{"id":8,"cssClasses":["short-film","movie","video"],"name":"shortFilm","mtId":"6"},"PodcastEpisode":{"id":15,"cssClasses":["podcast-episode"],"name":"podcastEpisode","mtId":"2"},"ApplePubEBook":{"id":36,"cssClasses":["ebook"],"name":"ibook","mtId":"11"},"Song":{"id":1,"cssClasses":["song","music"],"name":"song","mtId":"1"},"MovieBundle":{"id":24,"cssClasses":["bundle","movie","video"],"name":"movieBundle","mtId":"6"},"RingtoneAlbum":{"id":22,"cssClasses":[],"name":"ringtoneAlbum","mtId":"9"},"Book":{"id":3,"cssClasses":["audiobook"],"name":"book","mtId":"3"},"ToneAlbum":{"id":32,"cssClasses":[],"name":"toneAlbum","mtId":"9"},"TVEpisode":{"id":6,"cssClasses":["tv-episode","tv","video"],"name":"tvEpisode","mtId":"4"},"TVSeason":{"id":7,"cssClasses":["tv-season","tv","video"],"name":"tvSeason","mtId":"4"},"Course":{"id":34,"cssClasses":["course","itunes-u"],"name":"course","mtId":"10"},"ClassicSoftwarePackage":{"id":18,"cssClasses":["ipod-game"],"name":"gamePackage","mtId":"7"},"Movie":{"id":9,"cssClasses":["movie","video"],"name":"movie","mtId":"6"},"Booklet":{"id":13,"cssClasses":["booklet","music"],"name":"booklet","mtId":"1"},"SocialArtist":{"id":28,"cssClasses":[],"name":"socialArtist"},"EBook":{"id":25,"cssClasses":["ebook"],"name":"epubBook","mtId":"11"},"MacSoftware":{"id":30,"cssClasses":["application","mac-application"],"name":"desktopApp","mtId":"12"},"MusicVideo":{"id":5,"cssClasses":["music-video","music","video"],"name":"musicVideo","mtId":"5"},"Ringtone":{"id":21,"cssClasses":[],"name":"ringtone","mtId":"9"},"Podcast":{"id":4,"cssClasses":["podcast"],"name":"podcast","mtId":"2"},"Concert":{"id":26,"cssClasses":[],"name":"concert","mtId":"1"},"ApplePubTextbook":{"id":37,"cssClasses":["ebook"],"name":"ibookTextbook","mtId":"13"},"SoftwareAddOn":{"id":16,"cssClasses":["software-add-on","application"],"name":"softwareAddOn","mtId":"8"},"Tone":{"id":31,"cssClasses":[],"name":"tone","mtId":"9"},"WeMix":{"id":19,"cssClasses":["wemix","music"],"name":"itunesMix","mtId":"1"},"SocialPerson":{"id":27,"cssClasses":[],"name":"socialPerson"},"ClassicSoftware":{"id":10,"cssClasses":["ipod-game"],"name":"ipodGame","mtId":"7"},"MetaEBook":{"id":35,"cssClasses":["ebook"],"name":"metaEbook","mtId":"13"},"iTunesPass":{"id":12,"cssClasses":["itunes-pass","album","music"],"name":"itunesPass","mtId":"1"},"Mix":{"id":14,"cssClasses":["mix","music"],"name":"mix","mtId":"1"},"TheyMix":{"id":33,"cssClasses":[],"name":"thirdPartyMix"}},"AddToWishlistResult":{"ItemIsFree":{"id":6},"ListFull":{"id":3},"SomeContentAlreadyOwnedButUnfulfilled":{"id":5},"SomeContentAlreadyInWishlist":{"id":1},"Success":{"id":0},"Failure":{"id":2},"SomeContentAlreadyOwned":{"id":4}},"getEmailUrl":"https://itunes.apple.com/WebObjects/MZStore.woa/wa/generateEmail?cc=us","resourceImagePathFrameworks":"https://s.mzstatic.com/htmlResources/e8d3bae/frameworks/images/","resourceBasePath":"https://s.mzstatic.com/htmlResources/e8d3bae"},"properties":{"clientStatsLoadTimeGroup":"4021","MZHtmlResourcesUtil.allowDeferJsLoad":true,"countryCodeIso2a":"us","currencyFormat":"$#,##0.00;$#,##0.00;-$#,##0.00","currencySymbol":"$","currencyThousandSeparator":",","currencyDecimalSeparator":".","MZFeatureEnabler.isCadillacEnabled":true,"MZFinance.VolumeBuyQuantityUpperLimit":25000,"iTunesUEnrollLink":"","ITSServerEnvironment":"prod","ITSServerInstance":"3016903","ITSResourceRevNum":"e8d3bae","resourceUrlPrefix":"https://s.mzstatic.com","ITSLogger.ServerReportingProtocol":"https","ITSLogger.ServerReportingDomain":"metrics.mzstatic.com","ITSLogger.ServerReportingApp":"MZUserXP","ITSLogger.RecordStatsAction":"recordStats","ITSLogger.SenderName":"ITSClient","ITSLogger.mirrorToServerByDefaultOnErrors":true,"DynaLoader.allowDynaLoading":true,"itsLoggerQueueProcessingInterval":10000,"cobaltBundleId":"com.apple.itunesu","getCobaltAppLink":"https://itunes.apple.com/us/app/id490217893","cobaltLearnMore":"https://itunes.apple.com/us/learn-more?about=iTunesUUpgradePage&type=2","isCobaltEnabled":true,"isCobaltJavascriptRedirectEnabled":true,"isCobaltUpsellPageEnabled":true,"personalizedButtonsEnabled":true,"SF6.Personalization.isCMAEnabled":true,"SF6.Personalization.isCMSEnabled":true,"SFJ.isNFAEnabledInStorefront":true,"SFJ.isRecommendationsSwooshEnabledInStorefront":true,"SF6.StorePlatform.whitelistParams":["caller","dsid","id","p"],"vendLastSupportedVersionIfAvailable":true,"vendLastSupportedVersionMacOs":true,"isBookGiftingEnabled":true,"metrics":{"metricsUrl":"https://xp.apple.com/report","compoundSeparator":"_","tokenSeparator":"|","postFrequency":60000,"postFrequencyLowLatency":5000,"blacklistedFields":["capacitySystem","capacitySystemAvailable","capacityDisk","capacityData","capacityDataAvailable"],"appInstallSamplingPercentage":0.9995,"impressions":{"viewableThreshold":1000,"viewablePercentage":0.5},"performance":{"samplingPercentageUsers":3.0E-4,"samplingPercentageUsersPageRender":0.01,"samplingPercentageCachedResponses":1,"sessionDuration":60000,"sessionDurationPageRender":60000},"fieldsMap":{"single":{"targetId":["id","adamId","contentId","type","link.adamId","link.id","link.type","fcId","userPreference","label","station-hash","linkIdentifier"]},"custom":{"location":["id","adamId","dataSetId","name","fcKind","kindIds","type","link.type","station-hash","core-seed-name"],"impressions":["id","adamId","link.type","station-hash"],"iAd":[]},"cookies":["itcCt","itscc","xp_ab","xp_abc"],"multi":{}},"metricsBase":{"storeFrontHeader":"","language":"1","platformId":"8","platformName":"ItunesPreview","storeFront":"143441","environmentDataCenter":"MR22"},"Software":{"metricsUrl":"https://xp.apple.com/report","compoundSeparator":"_","tokenSeparator":"|","postFrequency":60000,"postFrequencyLowLatency":5000,"blacklistedFields":["capacitySystem","capacitySystemAvailable","capacityDisk","capacityData","capacityDataAvailable"],"appInstallSamplingPercentage":0.9995,"impressions":{"viewableThreshold":1000,"viewablePercentage":0.5},"performance":{"samplingPercentageUsers":3.0E-4,"samplingPercentageUsersPageRender":0.01,"samplingPercentageCachedResponses":1,"sessionDuration":60000,"sessionDurationPageRender":60000},"fieldsMap":{"single":{"targetId":["id","adamId","contentId","type","link.adamId","link.id","link.type","fcId","userPreference","label","station-hash","linkIdentifier"]},"custom":{"location":["id","adamId","dataSetId","name","fcKind","kindIds","type","link.type","station-hash","core-seed-name"],"impressions":["id","adamId","link.type","station-hash"],"iAd":[]},"cookies":["itcCt","itscc","xp_ab","xp_abc"],"multi":{}},"metricsBase":{"storeFrontHeader":"","language":"1","platformId":"8","platformName":"ItunesPreview","storeFront":"143441","environmentDataCenter":"MR22"}},"ATV":{"metricsUrl":"https://xp.apple.com/report","compoundSeparator":"_","tokenSeparator":"|","postFrequency":60000,"postFrequencyLowLatency":5000,"blacklistedFields":["capacitySystem","capacitySystemAvailable","capacityDisk","capacityData","capacityDataAvailable"],"appInstallSamplingPercentage":0.9995,"impressions":{"viewableThreshold":1000,"viewablePercentage":0.5},"performance":{"samplingPercentageUsers":3.0E-4,"samplingPercentageUsersPageRender":0.01,"samplingPercentageCachedResponses":1,"sessionDuration":60000,"sessionDurationPageRender":60000},"fieldsMap":{"single":{"targetId":["id","adamId","contentId","type","link.adamId","link.id","link.type","fcId","userPreference","label","station-hash","linkIdentifier"]},"custom":{"location":["id","adamId","dataSetId","name","fcKind","kindIds","type","link.type","station-hash","core-seed-name"],"impressions":["id","adamId","link.type","station-hash"],"iAd":[]},"cookies":["itcCt","itscc","xp_ab","xp_abc"],"multi":{}},"metricsBase":{"storeFrontHeader":"","language":"1","platformId":"8","platformName":"ItunesPreview","storeFront":"143441","environmentDataCenter":"MR22"}},"eBooks":{"metricsUrl":"https://xp.apple.com/report","compoundSeparator":"_","tokenSeparator":"|","postFrequency":60000,"postFrequencyLowLatency":5000,"blacklistedFields":["capacitySystem","capacitySystemAvailable","capacityDisk","capacityData","capacityDataAvailable"],"appInstallSamplingPercentage":0.9995,"impressions":{"viewableThreshold":1000,"viewablePercentage":0.5},"performance":{"samplingPercentageUsers":3.0E-4,"samplingPercentageUsersPageRender":0.01,"samplingPercentageCachedResponses":1,"sessionDuration":60000,"sessionDurationPageRender":60000},"fieldsMap":{"single":{"targetId":["id","adamId","contentId","type","link.adamId","link.id","link.type","fcId","userPreference","label","station-hash","linkIdentifier"]},"custom":{"location":["id","adamId","dataSetId","name","fcKind","kindIds","type","link.type","station-hash","core-seed-name"],"impressions":["id","adamId","link.type","station-hash"],"iAd":[]},"cookies":["itcCt","itscc","xp_ab","xp_abc"],"multi":{}},"metricsBase":{"storeFrontHeader":"","language":"1","platformId":"8","platformName":"ItunesPreview","storeFront":"143441","environmentDataCenter":"MR22"}},"iTunes":{"metricsUrl":"https://xp.apple.com/report","compoundSeparator":"_","tokenSeparator":"|","postFrequency":60000,"postFrequencyLowLatency":5000,"blacklistedFields":["capacitySystem","capacitySystemAvailable","capacityDisk","capacityData","capacityDataAvailable"],"appInstallSamplingPercentage":0.9995,"impressions":{"viewableThreshold":1000,"viewablePercentage":0.5},"performance":{"samplingPercentageUsers":3.0E-4,"samplingPercentageUsersPageRender":0.01,"samplingPercentageCachedResponses":1,"sessionDuration":60000,"sessionDurationPageRender":60000},"fieldsMap":{"single":{"targetId":["id","adamId","contentId","type","link.adamId","link.id","link.type","fcId","userPreference","label","station-hash","linkIdentifier"]},"custom":{"location":["id","adamId","dataSetId","name","fcKind","kindIds","type","link.type","station-hash","core-seed-name"],"impressions":["id","adamId","link.type","station-hash"],"iAd":[]},"cookies":["itcCt","itscc","xp_ab","xp_abc"],"multi":{}},"metricsBase":{"storeFrontHeader":"","language":"1","platformId":"8","platformName":"ItunesPreview","storeFront":"143441","environmentDataCenter":"MR22"}},"iTunesU":{"metricsUrl":"https://xp.apple.com/report","compoundSeparator":"_","tokenSeparator":"|","postFrequency":60000,"postFrequencyLowLatency":5000,"blacklistedFields":["capacitySystem","capacitySystemAvailable","capacityDisk","capacityData","capacityDataAvailable"],"appInstallSamplingPercentage":0.9995,"impressions":{"viewableThreshold":1000,"viewablePercentage":0.5},"performance":{"samplingPercentageUsers":3.0E-4,"samplingPercentageUsersPageRender":0.01,"samplingPercentageCachedResponses":1,"sessionDuration":60000,"sessionDurationPageRender":60000},"fieldsMap":{"single":{"targetId":["id","adamId","contentId","type","link.adamId","link.id","link.type","fcId","userPreference","label","station-hash","linkIdentifier"]},"custom":{"location":["id","adamId","dataSetId","name","fcKind","kindIds","type","link.type","station-hash","core-seed-name"],"impressions":["id","adamId","link.type","station-hash"],"iAd":[]},"cookies":["itcCt","itscc","xp_ab","xp_abc"],"multi":{}},"metricsBase":{"storeFrontHeader":"","language":"1","platformId":"8","platformName":"ItunesPreview","storeFront":"143441","environmentDataCenter":"MR22"}},"MacAppStore":{"metricsUrl":"https://xp.apple.com/report","compoundSeparator":"_","tokenSeparator":"|","postFrequency":60000,"postFrequencyLowLatency":5000,"blacklistedFields":["capacitySystem","capacitySystemAvailable","capacityDisk","capacityData","capacityDataAvailable"],"appInstallSamplingPercentage":0.9995,"impressions":{"viewableThreshold":1000,"viewablePercentage":0.5},"performance":{"samplingPercentageUsers":3.0E-4,"samplingPercentageUsersPageRender":0.01,"samplingPercentageCachedResponses":1,"sessionDuration":60000,"sessionDurationPageRender":60000},"fieldsMap":{"single":{"targetId":["id","adamId","contentId","type","link.adamId","link.id","link.type","fcId","userPreference","label","station-hash","linkIdentifier"]},"custom":{"location":["id","adamId","dataSetId","name","fcKind","kindIds","type","link.type","station-hash","core-seed-name"],"impressions":["id","adamId","link.type","station-hash"],"iAd":[]},"cookies":["itcCt","itscc","xp_ab","xp_abc"],"multi":{}},"metricsBase":{"storeFrontHeader":"","language":"1","platformId":"8","platformName":"ItunesPreview","storeFront":"143441","environmentDataCenter":"MR22"}},"Maps":{"metricsUrl":"https://xp.apple.com/report","compoundSeparator":"_","tokenSeparator":"|","postFrequency":60000,"postFrequencyLowLatency":5000,"blacklistedFields":["capacitySystem","capacitySystemAvailable","capacityDisk","capacityData","capacityDataAvailable"],"appInstallSamplingPercentage":0.9995,"impressions":{"viewableThreshold":1000,"viewablePercentage":0.5},"performance":{"samplingPercentageUsers":3.0E-4,"samplingPercentageUsersPageRender":0.01,"samplingPercentageCachedResponses":1,"sessionDuration":60000,"sessionDurationPageRender":60000},"fieldsMap":{"single":{"targetId":["id","adamId","contentId","type","link.adamId","link.id","link.type","fcId","userPreference","label","station-hash","linkIdentifier"]},"custom":{"location":["id","adamId","dataSetId","name","fcKind","kindIds","type","link.type","station-hash","core-seed-name"],"impressions":["id","adamId","link.type","station-hash"],"iAd":[]},"cookies":["itcCt","itscc","xp_ab","xp_abc"],"multi":{}},"metricsBase":{"storeFrontHeader":"","language":"1","platformId":"8","platformName":"ItunesPreview","storeFront":"143441","environmentDataCenter":"MR22"}},"MusicPlayer":{"metricsUrl":"https://xp.apple.com/report","compoundSeparator":"_","tokenSeparator":"|","postFrequency":60000,"postFrequencyLowLatency":5000,"blacklistedFields":["capacitySystem","capacitySystemAvailable","capacityDisk","capacityData","capacityDataAvailable"],"appInstallSamplingPercentage":0.9995,"impressions":{"viewableThreshold":1000,"viewablePercentage":0.5},"performance":{"samplingPercentageUsers":3.0E-4,"samplingPercentageUsersPageRender":0.01,"samplingPercentageCachedResponses":1,"sessionDuration":60000,"sessionDurationPageRender":60000},"fieldsMap":{"single":{"targetId":["id","adamId","contentId","type","link.adamId","link.id","link.type","fcId","userPreference","label","station-hash","linkIdentifier"]},"custom":{"location":["id","adamId","dataSetId","name","fcKind","kindIds","type","link.type","station-hash","core-seed-name"],"impressions":["id","adamId","link.type","station-hash"],"iAd":[]},"cookies":["itcCt","itscc","xp_ab","xp_abc"],"multi":{}},"metricsBase":{"storeFrontHeader":"","language":"1","platformId":"8","platformName":"ItunesPreview","storeFront":"143441","environmentDataCenter":"MR22"}},"Podcasts":{"metricsUrl":"https://xp.apple.com/report","compoundSeparator":"_","tokenSeparator":"|","postFrequency":60000,"postFrequencyLowLatency":5000,"blacklistedFields":["capacitySystem","capacitySystemAvailable","capacityDisk","capacityData","capacityDataAvailable"],"appInstallSamplingPercentage":0.9995,"impressions":{"viewableThreshold":1000,"viewablePercentage":0.5},"performance":{"samplingPercentageUsers":3.0E-4,"samplingPercentageUsersPageRender":0.01,"samplingPercentageCachedResponses":1,"sessionDuration":60000,"sessionDurationPageRender":60000},"fieldsMap":{"single":{"targetId":["id","adamId","contentId","type","link.adamId","link.id","link.type","fcId","userPreference","label","station-hash","linkIdentifier"]},"custom":{"location":["id","adamId","dataSetId","name","fcKind","kindIds","type","link.type","station-hash","core-seed-name"],"impressions":["id","adamId","link.type","station-hash"],"iAd":[]},"cookies":["itcCt","itscc","xp_ab","xp_abc"],"multi":{}},"metricsBase":{"storeFrontHeader":"","language":"1","platformId":"8","platformName":"ItunesPreview","storeFront":"143441","environmentDataCenter":"MR22"}},"Third-Party":{"metricsUrl":"https://xp.apple.com/report","compoundSeparator":"_","tokenSeparator":"|","postFrequency":60000,"postFrequencyLowLatency":5000,"blacklistedFields":["capacitySystem","capacitySystemAvailable","capacityDisk","capacityData","capacityDataAvailable"],"appInstallSamplingPercentage":0.9995,"impressions":{"viewableThreshold":1000,"viewablePercentage":0.5},"performance":{"samplingPercentageUsers":3.0E-4,"samplingPercentageUsersPageRender":0.01,"samplingPercentageCachedResponses":1,"sessionDuration":60000,"sessionDurationPageRender":60000},"fieldsMap":{"single":{"targetId":["id","adamId","contentId","type","link.adamId","link.id","link.type","fcId","userPreference","label","station-hash","linkIdentifier"]},"custom":{"location":["id","adamId","dataSetId","name","fcKind","kindIds","type","link.type","station-hash","core-seed-name"],"impressions":["id","adamId","link.type","station-hash"],"iAd":[]},"cookies":["itcCt","itscc","xp_ab","xp_abc"],"multi":{}},"metricsBase":{"storeFrontHeader":"","language":"1","platformId":"8","platformName":"ItunesPreview","storeFront":"143441","environmentDataCenter":"MR22"}},"VideoPlayer":{"metricsUrl":"https://xp.apple.com/report","compoundSeparator":"_","tokenSeparator":"|","postFrequency":60000,"postFrequencyLowLatency":5000,"blacklistedFields":["capacitySystem","capacitySystemAvailable","capacityDisk","capacityData","capacityDataAvailable"],"appInstallSamplingPercentage":0.9995,"impressions":{"viewableThreshold":1000,"viewablePercentage":0.5},"performance":{"samplingPercentageUsers":3.0E-4,"samplingPercentageUsersPageRender":0.01,"samplingPercentageCachedResponses":1,"sessionDuration":60000,"sessionDurationPageRender":60000},"fieldsMap":{"single":{"targetId":["id","adamId","contentId","type","link.adamId","link.id","link.type","fcId","userPreference","label","station-hash","linkIdentifier"]},"custom":{"location":["id","adamId","dataSetId","name","fcKind","kindIds","type","link.type","station-hash","core-seed-name"],"impressions":["id","adamId","link.type","station-hash"],"iAd":[]},"cookies":["itcCt","itscc","xp_ab","xp_abc"],"multi":{}},"metricsBase":{"storeFrontHeader":"","language":"1","platformId":"8","platformName":"ItunesPreview","storeFront":"143441","environmentDataCenter":"MR22"}},"WiFi-Music":{"metricsUrl":"https://xp.apple.com/report","compoundSeparator":"_","tokenSeparator":"|","postFrequency":60000,"postFrequencyLowLatency":5000,"blacklistedFields":["capacitySystem","capacitySystemAvailable","capacityDisk","capacityData","capacityDataAvailable"],"appInstallSamplingPercentage":0.9995,"impressions":{"viewableThreshold":1000,"viewablePercentage":0.5},"performance":{"samplingPercentageUsers":3.0E-4,"samplingPercentageUsersPageRender":0.01,"samplingPercentageCachedResponses":1,"sessionDuration":60000,"sessionDurationPageRender":60000},"fieldsMap":{"single":{"targetId":["id","adamId","contentId","type","link.adamId","link.id","link.type","fcId","userPreference","label","station-hash","linkIdentifier"]},"custom":{"location":["id","adamId","dataSetId","name","fcKind","kindIds","type","link.type","station-hash","core-seed-name"],"impressions":["id","adamId","link.type","station-hash"],"iAd":[]},"cookies":["itcCt","itscc","xp_ab","xp_abc"],"multi":{}},"metricsBase":{"storeFrontHeader":"","language":"1","platformId":"8","platformName":"ItunesPreview","storeFront":"143441","environmentDataCenter":"MR22"}},"AppStore":{"metricsUrl":"https://xp.apple.com/report","compoundSeparator":"_","tokenSeparator":"|","postFrequency":60000,"postFrequencyLowLatency":5000,"blacklistedFields":["capacitySystem","capacitySystemAvailable","capacityDisk","capacityData","capacityDataAvailable"],"appInstallSamplingPercentage":0.9995,"impressions":{"viewableThreshold":1000,"viewablePercentage":0.5},"performance":{"samplingPercentageUsers":3.0E-4,"samplingPercentageUsersPageRender":0.01,"samplingPercentageCachedResponses":1,"sessionDuration":60000,"sessionDurationPageRender":60000},"fieldsMap":{"single":{"targetId":["id","adamId","contentId","type","link.adamId","link.id","link.type","fcId","userPreference","label","station-hash","linkIdentifier"]},"custom":{"location":["id","adamId","dataSetId","name","fcKind","kindIds","type","link.type","station-hash","core-seed-name"],"impressions":["id","adamId","link.type","station-hash"],"iAd":[]},"cookies":["itcCt","itscc","xp_ab","xp_abc"],"multi":{}},"metricsBase":{"storeFrontHeader":"","language":"1","platformId":"8","platformName":"ItunesPreview","storeFront":"143441","environmentDataCenter":"MR22"}},"MobileStore":{"metricsUrl":"https://xp.apple.com/report","compoundSeparator":"_","tokenSeparator":"|","postFrequency":60000,"postFrequencyLowLatency":5000,"blacklistedFields":["capacitySystem","capacitySystemAvailable","capacityDisk","capacityData","capacityDataAvailable"],"appInstallSamplingPercentage":0.9995,"impressions":{"viewableThreshold":1000,"viewablePercentage":0.5},"performance":{"samplingPercentageUsers":3.0E-4,"samplingPercentageUsersPageRender":0.01,"samplingPercentageCachedResponses":1,"sessionDuration":60000,"sessionDurationPageRender":60000},"fieldsMap":{"single":{"targetId":["id","adamId","contentId","type","link.adamId","link.id","link.type","fcId","userPreference","label","station-hash","linkIdentifier"]},"custom":{"location":["id","adamId","dataSetId","name","fcKind","kindIds","type","link.type","station-hash","core-seed-name"],"impressions":["id","adamId","link.type","station-hash"],"iAd":[]},"cookies":["itcCt","itscc","xp_ab","xp_abc"],"multi":{}},"metricsBase":{"storeFrontHeader":"","language":"1","platformId":"8","platformName":"ItunesPreview","storeFront":"143441","environmentDataCenter":"MR22"}}},"MZStore.shouldAttemptToEvaluateXpathSecondTime":true,"MZStore.shouldCacheElementTypeProtoObjects":true,"isStoweUpgradeDialogEnabled":false,"stoweUpgradeSize":1600000000,"isStopPageOneEnabled":false,"SF.isNotifyMeEnabled":false,"SF.notifyMeIds":[],"SF.notifyMeIdsWithAppleWatchApp":[],"SF.notifyMeIdsWithTvApp":[]}}</script>
<script type="text/javascript" charset="utf-8">
if (!window.iTSLocalization) { iTSLocalization = {}; }
iTSLocalization._strings = {"Js.MyAlerts.GeniusActivationNeeded.Button":"Go to Genius", "Js.Pagination.NextPage":"Next Page", "Js.Wishlist.RemoveTooltip":"Remove from Wish List", "Js.CNConnections.RequestSent":"Request sent", "Js.Showcase.Next":"Next Item", "Js.CNConnections.Dialog.GetStarted":"Get Started", "Js.ReportAConcern.SigninMessage":"Enter your Apple ID and password, then click Sign In.", "CNConnections.Upload.UploadErrorMessage":"Sorry, there was an error during upload.", "Js.InlineReview.SigninMessage":"Enter your Apple ID and password, then click Sign In.", "Js.TextTruncation.More":"More", "Js.QuickView.Unavailable.Title":"Quick View is currently unavailable for this item.", "Less":"Less", "Js.MyAlerts.GeniusActivationNeeded.Message":"This requires Genius.", "CNConnections.Dialog.Post.Review.SignIn.Title":"Sign in to post.", "Js.ManageArtistAlerts.CheckAll.Artists":"Check All Artists", "CNConnections.Upload.UploadErrorHeading":"There is a Problem With Your Upload", "Js.TellAFriend.SigninMessage":"Enter your Apple ID and password, then click Sign In.", "CNConnections.Dialog.StopFollowing.Message":"CNConnections.Dialog.StopFollowing.Message", "CNConnections.Dialog.OptIn.Title":"Ping Will No Longer Be Available as of September 30", "CNConnections.Dialog.StopFollowing.Title":"Are you sure you want to stop following @@fullName@@?", "Js.InlineReview.SigninTitle":"Sign in to write a review.", "Js.InlineRating.SigninMessage":"Sign in to continue.", "Js.MyAlerts.GeniusActivationNeeded.Explanation":"Alerts based on your library content will not be enabled until you have turned on Genius. To learn more, click Go to Genius.", "_thousandsSeparator":",", "InAppPurchases":"In-App Purchases",
"Js.CNConnections.LoginRequired.Message":"This requires Ping. Ping will no longer be available as of September 30, and we are not accepting new members. If you are already a Ping member, sign in below to continue.", "Js.Pagination.PreviousPage":"Previous Page", "Js.TellAFriend.SigninTitle":"Sign in to tell a friend.", "Js.InlineReview.RateThis":"Rate this", "Js.InlineReview.5":"it's great", "Js.InlineReview.4":"it's good", "Js.Pagination.Back":"Back", "Js.InlineReview.3":"it's ok", "CNConnections.Dialog.PrivateUser.IllegalAction.Message":"If you would like to perform this action, please change your privacy settings.", "Js.InlineReview.2":"don't like it", "Js.InlineReview.1":"hate it", "Js.InlinePreview.StopPreview":"Stop preview of @@title@@", "Js.QuickView.Unavailable.Text":"Please try again later.", "Js.MyAlerts.ConfirmEmailSignUp.Explanation":"You can change this preference at any time from your My Alerts page.", "Js.CNConnections.Dialog.Cancel":"Cancel", "Js.CNConnections.PeoplePopupMore":"and @@count@@ other@@s@@...", "CNConnections.Dialog.OptIn.Message":"CNConnections.Dialog.OptIn.Message", "Js.CNConnections.Confirmed":"Confirmed", "Js.CNConnections.UserReview.YouLiked":"You Liked", "Js.CreateAccount":"Create Apple ID", "Js.CNConnections.OptInRequired.Title":"Ping", "Js.Pagination.Next":"Next", "Js.ManageArtistAlerts.CheckAll.Actors":"Check All Actors", "Js.ManageArtistAlerts.CheckAll":"Check All", "Js.ReportAConcern.SigninTitle":"Sign in to report a concern.", "Js.MyAlerts.CancelEmailSignUp.Explanation":"You can change this preference at any time from your My Alerts page.", "CNConnections.Dialog.PrivateUser.LeakyAction.Message":"This action will make your profile photo and name visible to others.", "Js.TextLimit.Remaining":"@@count@@ characters remaining", "More":"More", "CNConnections.Dialog.PrivateUser.LeakyAction.Title":"Are you sure you want to perform this action?", "Js.Pagination.PageNumberTitle":"page @@num@@", "Js.Pagination.DisabledButtonText":"disabled @@button_text@@", "Js.MyAlerts.CancelEmailSignUp.Message":"Are you sure you want to stop receiving email alerts?", "JS.errors.requiredLite":"Please fill in all required fields.", "CNConnections.Dialog.Post.Review.SignIn.Message":"CNConnections.Dialog.Post.Review.SignIn.Message", "Js.InlineReview.Thanks":"Thanks!", "Js.InlineReview.Error":"Error", "CNConnections.Dialog.Like.Review.SignIn.Message":"CNConnections.Dialog.Like.Review.SignIn.Message", "Js.ManageArtistAlerts.UncheckAll.Artists":"Uncheck All Artists", "Js.List.Item":"item", "Js.iTunesStoreError.Explanation":"There was an error in the iTunes Store. Please try again later. (@@errorNum@@)", "Js.InlineReview.ClickToRate":"Click to rate", "CNConnections.Dialog.PrivateUser.IllegalAction.Title":"Private users may not perform this action.", "Js.InlineRating.SigninTitle":"Sign in to rate this item.", "Js.MyAlerts.ConfirmEmailSignUp.Message":"Are you sure you want to receive email alerts?", "Js.ManageArtistAlerts.UncheckAll.Actors":"Uncheck All Actors", "CNConnections.Dialog.OptIn.ButtonSubmit":"Learn More", "_decimalSeparator":".", "CNConnections.Dialog.OptIn.ButtonCancel":"Cancel",
"Js.CNConnections.OptInRequired.Message":"This requires Ping. Ping will no longer be available as of September 30, and we are not accepting new members. If you are already a Ping member, sign in below to continue.", "Js.CNConnections.LoginRequired.Title":"Sign in to access Ping.", "CNConnections.Dialog.OptIn.ButtonSignIn":"Sign In", "Js.Pagination.PageNumber":"Page @@num@@", "Js.Search.HintsTitle":"Suggestions", "Js.InlinePreview.PlayPreview":"Play preview of @@title@@", "CNConnections.Dialog.Like.Review.SignIn.Title":"Sign in to like a review.", "Js.ManageArtistAlerts.UncheckAll":"Uncheck All", "Js.iTunesStoreError.Message":"We could not complete your request.", "CNConnections.Upload.MaxPhotosErrorMessage":"You can have no more than 20 photos in one post."}
</script>
<script type="text/javascript" charset="utf-8" src="/htmlResources/e8d3bae/web-storefront-base.js"></script>
<script type="text/javascript" charset="utf-8" src="/htmlResources/e8d3bae/web-storefront-preview.js"></script>
<link charset="utf-8" href="https://www.apple.com/wss/fonts?families=SF+Pro,v1|SF+Pro+Icons,v1" rel="stylesheet" type="text/css" />
<link charset="utf-8" href="https://www.apple.com/ac/globalnav/3/en_US/styles/ac-globalnav.fixed.built.css" id="globalheader-stylesheet" rel="stylesheet" type="text/css" />
<link charset="utf-8" href="https://www.apple.com/ac/globalfooter/3/en_US/styles/ac-globalfooter.fixed.built.css" rel="stylesheet" type="text/css" />
</head>
<body onload="detectAndOpenItunes();" class="software geo-us ac-platter-content lang-en-us lang-en">
<script type="text/javascript">
checkIfAskPermissionApprovalSheet();
</script>
<aside id="ac-gn-segmentbar" class="ac-gn-segmentbar" lang="en-us" dir="ltr" data-strings="{ 'exit': 'Exit', 'view': '{%STOREFRONT%} Store Home', 'segments': { 'smb': 'Business Store Home', 'eduInd': 'Education Store Home', 'other': 'Store Home' } }">
</aside>
<input type="checkbox" id="ac-gn-menustate" class="ac-gn-menustate" />
<nav id="ac-globalnav" class="no-js" role="navigation" aria-label="Global Navigation" data-hires="false" data-analytics-region="global nav" lang="en-US" dir="ltr" data-store-locale="us" data-store-api="//www.apple.com/[storefront]/shop/bag/status" data-search-locale="en_US" data-search-api="//www.apple.com/search-services/suggestions/">
<div class="ac-gn-content">
<ul class="ac-gn-header">
<li class="ac-gn-item ac-gn-menuicon">
<label class="ac-gn-menuicon-label" for="ac-gn-menustate" aria-hidden="true">
<span class="ac-gn-menuicon-bread ac-gn-menuicon-bread-top">
<span class="ac-gn-menuicon-bread-crust ac-gn-menuicon-bread-crust-top"></span>
</span>
<span class="ac-gn-menuicon-bread ac-gn-menuicon-bread-bottom">
<span class="ac-gn-menuicon-bread-crust ac-gn-menuicon-bread-crust-bottom"></span>
</span>
</label>
<a href="#ac-gn-menustate" class="ac-gn-menuanchor ac-gn-menuanchor-open" id="ac-gn-menuanchor-open">
<span class="ac-gn-menuanchor-label">Open Menu</span>
</a>
<a href="#" class="ac-gn-menuanchor ac-gn-menuanchor-close" id="ac-gn-menuanchor-close">
<span class="ac-gn-menuanchor-label">Close Menu</span>
</a>
</li>
<li class="ac-gn-item ac-gn-apple">
<a class="ac-gn-link ac-gn-link-apple" href="//www.apple.com/" data-analytics-title="apple home" id="ac-gn-firstfocus-small">
<span class="ac-gn-link-text">Apple</span>
</a>
</li>
<li class="ac-gn-item ac-gn-bag ac-gn-bag-small" id="ac-gn-bag-small">
<a class="ac-gn-link ac-gn-link-bag" href="//www.apple.com/us/shop/goto/bag" data-analytics-title="bag" data-analytics-click="bag" aria-label="Shopping Bag" data-string-badge="Shopping Bag with Items">
<span class="ac-gn-link-text">Shopping Bag</span>
<span class="ac-gn-bag-badge"></span>
</a>
<span class="ac-gn-bagview-caret ac-gn-bagview-caret-large"></span>
</li>
</ul>
<ul class="ac-gn-list">
<li class="ac-gn-item ac-gn-apple">
<a class="ac-gn-link ac-gn-link-apple" href="//www.apple.com/" data-analytics-title="apple home" id="ac-gn-firstfocus">
<span class="ac-gn-link-text">Apple</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-mac">
<a class="ac-gn-link ac-gn-link-mac" href="//www.apple.com/mac/" data-analytics-title="mac">
<span class="ac-gn-link-text">Mac</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-ipad">
<a class="ac-gn-link ac-gn-link-ipad" href="//www.apple.com/ipad/" data-analytics-title="ipad">
<span class="ac-gn-link-text">iPad</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-iphone">
<a class="ac-gn-link ac-gn-link-iphone" href="//www.apple.com/iphone/" data-analytics-title="iphone">
<span class="ac-gn-link-text">iPhone</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-watch">
<a class="ac-gn-link ac-gn-link-watch" href="//www.apple.com/watch/" data-analytics-title="watch">
<span class="ac-gn-link-text">Watch</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-tv">
<a class="ac-gn-link ac-gn-link-tv" href="//www.apple.com/tv/" data-analytics-title="tv">
<span class="ac-gn-link-text">TV</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-music">
<a class="ac-gn-link ac-gn-link-music" href="//www.apple.com/music/" data-analytics-title="music">
<span class="ac-gn-link-text">Music</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-support">
<a class="ac-gn-link ac-gn-link-support" href="https://support.apple.com" data-analytics-title="support">
<span class="ac-gn-link-text">Support</span>
</a>
</li>
<li class="ac-gn-item ac-gn-item-menu ac-gn-search" role="search">
<a class="ac-gn-link ac-gn-link-search" href="//www.apple.com/us/search" data-analytics-title="search" data-analytics-click="search" aria-label="Search apple.com">
<span class="ac-gn-search-placeholder" aria-hidden="true">Search apple.com</span>
</a>
</li>
<li class="ac-gn-item ac-gn-bag" id="ac-gn-bag">
<a class="ac-gn-link ac-gn-link-bag" href="//www.apple.com/us/shop/goto/bag" data-analytics-title="bag" data-analytics-click="bag" aria-label="Shopping Bag" data-string-badge="Shopping Bag with Items">
<span class="ac-gn-link-text">Shopping Bag</span>
<span class="ac-gn-bag-badge" aria-hidden="true"></span>
</a>
<span class="ac-gn-bagview-caret ac-gn-bagview-caret-large"></span>
</li>
</ul>
<aside id="ac-gn-searchview" class="ac-gn-searchview" role="search" data-analytics-region="search">
<div class="ac-gn-searchview-content">
<form id="ac-gn-searchform" class="ac-gn-searchform" action="//www.apple.com/us/search" method="get">
<div class="ac-gn-searchform-wrapper">
<input id="ac-gn-searchform-input" class="ac-gn-searchform-input" type="text" aria-label="Search apple.com" placeholder="Search apple.com" data-placeholder-long="Search for Products, Stores, and Help" autocorrect="off" autocapitalize="off" autocomplete="off" spellcheck="false" />
<input id="ac-gn-searchform-src" type="hidden" name="src" value="globalnav" />
<button id="ac-gn-searchform-submit" class="ac-gn-searchform-submit" type="submit" disabled aria-label="Submit"></button>
<button id="ac-gn-searchform-reset" class="ac-gn-searchform-reset" type="reset" disabled aria-label="Clear Search"></button>
</div>
</form>
<aside id="ac-gn-searchresults" class="ac-gn-searchresults" data-string-quicklinks="Quick Links" data-string-suggestions="Suggested Searches" data-string-noresults="Hit enter to search."></aside>
</div>
<button id="ac-gn-searchview-close" class="ac-gn-searchview-close" aria-label="Close Search">
<span class="ac-gn-searchview-close-wrapper">
<span class="ac-gn-searchview-close-left"></span>
<span class="ac-gn-searchview-close-right"></span>
</span>
</button>
</aside>
<aside class="ac-gn-bagview" data-analytics-region="bag">
<div class="ac-gn-bagview-scrim">
<span class="ac-gn-bagview-caret ac-gn-bagview-caret-small"></span>
</div>
<div class="ac-gn-bagview-content" id="ac-gn-bagview-content">
</div>
</aside>
</div>
</nav>
<div id="ac-gn-curtain" class="ac-gn-curtain"></div>
<div id="ac-gn-placeholder" class="ac-nav-placeholder"></div>
<script type="text/javascript" src="https://www.apple.com/ac/globalnav/3/en_US/scripts/ac-globalnav.built.js"></script>
<div id="productheader"><div class="localnav" data-analytics-region="product nav"><h2><img src="https://s.mzstatic.com/images/web/itunes_preview/[email protected]" alt="iTunes" height="32" width="263"></h2><ul class="localnav-links"><li><a href="http://www.apple.com/itunes/overview/" class="localnav-link">Overview</a></li><li><a href="http://www.apple.com/itunes/music/" class="localnav-link">Music</a></li><li><a href="http://www.apple.com/itunes/video/" class="localnav-link">Video</a></li><li><a href="http://www.apple.com/itunes/charts/" class="localnav-link">Charts</a></li></ul></div></div>
<div id="main">
<div id="itunes-detector">
<div id="launching-itunes">
<div id="status">
<div class="opening-itunes" id="loadingItunes"><span>Opening the iTunes Store.</span><span>If iTunes doesn't open, click the iTunes application icon in your Dock or on your Windows desktop.</span><span class="spinner">Progress Indicator</span></div>
<div class="opening-itunes" id="loadingIbooks"><span>Opening the iBooks Store.</span><span>If iBooks doesn't open, click the iBooks app in your Dock.</span><span class="spinner">Progress Indicator</span></div>
</div>
</div>
<div id="itunes-client-required">
<div class="callout">
<div class="left">iTunes</div>
<h2>iTunes is the world's easiest way to organize and add to your digital media collection.</h2>
<p preview-capable-text="We are unable to find iTunes on your computer. To download the free app BoyAhoy - Gay Chat, Meet, Friend by Skout, Inc., get iTunes now." class="intro has-preview-capable-text">
We are unable to find iTunes on your computer. To download the free app BoyAhoy - Gay Chat, Meet, Friend by Skout, Inc., get iTunes now.
</p>
<div class="download">
<p>Already have iTunes? Click I Have iTunes to open it now.</p>
<a class="i-have-itunes" onclick="its.detect.userOverrideSetItunesInstalled(); its.detect.openItunes(); return true;" href="#">
<img alt="I Have iTunes" src="/images/web/ihaveitunes.png" />
</a>
<a href="#" onclick="javascript:window.location='http://www.apple.com/itunes/download/?id=315257056'; return true;"><img alt="Free Download" src="/images/web/freedownload.png" /></a>
</div>
<a class="macpc" href="#">iTunes for Mac + PC</a>
</div>
</div>
</div>
<script type="text/javascript">
deviceDetect();
</script>
<div id="desktopContentBlockId" class='platform-content-block display-block'>
<div id="content">
<div itemscope itemtype="http://schema.org/SoftwareApplication" class="padder">
<div id="title" class="intro ">
<div class="left">
<h1 itemprop="name">BoyAhoy - Gay Chat, Meet, Friend</h1>
<h2>By Skout, Inc.</h2>
</div>
<div class="right">
<a href="https://itunes.apple.com/us/developer/skout-inc/id302324252" class="view-more">View More by This Developer</a>
</div>
<p>Open iTunes to buy and download apps.</p>
</div>
<div class="center-stack">
<div more-text="More" metrics-loc="Titledbox_Description" class="product-review">
<h4>
Description
</h4>
<p itemprop="description">BoyAhoy is the global network for meeting gay men. <br /><br />Instantly meet like-minded men near you or around the world. Discover new friends at a local bar or in Barcelona. Millions of men are connecting and meeting through BoyAhoy every day. Use exciting in-app features to increase your chances of friending or chatting!<br /> <br />Expand your social network with the tap of a button. It’s so much fun, you won’t be able to stop. Find your party, make new friends, or meet new people, anytime, anywhere. <br /><br />Features: Meet men by preference and proximity, chat, see who checked you out, get updates from nearby users, buy and send gifts, save your favorite users, browse profiles and pictures, promote your profile with in-app features, earn points to unlock premium features.<br /><br />Download and join the BoyAhoy party now!<br /><br />While BoyAhoy is available for free, we also offer an optional premium subscription service. BoyAhoy Premium is available in one-month ($9.99), three-month ($24.99), and 12-month ($69.99) packages. Please note that with all subscriptions:<br /><br />- Payment will be charged to your iTunes account at confirmation of purchase.<br />- Your subscription automatically renews for the same amount as your original subscription, unless auto-renew is turned off at least 24 hours before the end of the current subscription period.<br />- You can manage your subscription and switch off auto-renewal at any time by accessing your iTunes Account Settings after purchase.<br />- You cannot cancel the current subscription during the active subscription period.<br /><br />View our Terms of Service at: http://www.skout.com/tos <br />View our Privacy Policy at: http://www.skout.com/privacy<br /><br />Please note: We take your privacy very seriously. You’re always in complete control – your exact location and personal information will never be given without your permission. YOU decide if, when, and how you want to connect.</p>
</div>
<div class="app-links"><a rel="nofollow" target="_blank" href="http://www.boyahoy.com" class="see-all">Skout, Inc. Web Site</a><a rel="nofollow" target="_blank" href="http://skout.zendesk.com/home" class="see-all">BoyAhoy - Gay Chat, Meet, Friend Support</a></div>
<div more-text="More" metrics-loc="Titledbox_What's New in Version 4.25.2" class="product-review">
<h4>
What's New in Version 4.25.2
</h4>
<p>The best place to chat with new people gets even better with this update!</p>
</div>
<div metrics-loc="Swoosh_" rows="1" class="swoosh lockup-container application large screenshots">
<div class="title">
<h2>Screenshots</h2>
<div class="pill">
<a metrics-loc="Pill_" metrics-leaf="1" href="#">iPhone</a>
<a metrics-loc="Pill_" metrics-leaf="1" href="#">iPad</a>
</div>
<a metrics-loc="Seeall" href="" class="see-all"><span></span></a>
</div>
<div class="toggle">
<div metrics-loc="iPhone" num-items="5" class="content iphone-screen-shots"><div><div class="lockup"><img alt="iPhone Screenshot 1" itemprop="screenshot" class="portrait" src="http://a4.mzstatic.com/us/r30/Purple62/v4/04/63/b1/0463b169-a3a9-19d2-5aa1-94f72f09ad29/screen696x696.jpeg" /></div><div class="lockup"><img alt="iPhone Screenshot 2" itemprop="screenshot" class="portrait" src="http://a5.mzstatic.com/us/r30/Purple62/v4/ba/8d/e1/ba8de12c-e4ab-9859-1714-94291100f1fc/screen696x696.jpeg" /></div><div class="lockup"><img alt="iPhone Screenshot 3" itemprop="screenshot" class="portrait" src="http://a4.mzstatic.com/us/r30/Purple62/v4/e0/25/26/e0252684-5487-ec00-8eb4-c8aced162617/screen696x696.jpeg" /></div><div class="lockup"><img alt="iPhone Screenshot 4" itemprop="screenshot" class="portrait" src="http://a1.mzstatic.com/us/r30/Purple71/v4/2b/31/f3/2b31f3cc-9375-f7dd-dd10-531ab55720d0/screen696x696.jpeg" /></div><div class="lockup"><img alt="iPhone Screenshot 5" itemprop="screenshot" class="portrait" src="http://a3.mzstatic.com/us/r30/Purple71/v4/47/a9/24/47a924cd-4968-757c-cc23-95a59090d2eb/screen696x696.jpeg" /></div></div></div><div metrics-loc="iPad" num-items="1" class="content ipad-screen-shots"><div><div class="lockup"><img alt="iPad Screenshot 1" itemprop="screenshot" class="portrait" src="http://a3.mzstatic.com/us/r30/Purple62/v4/28/aa/a3/28aaa340-dc59-e469-62e1-5b85144f1f43/sc1024x768.jpeg" /></div></div></div>
</div>
</div>
<div class="customer-reviews">
<h4>Customer Reviews</h4>
<div more-text="More" class="customer-review">
<h5>
<span class="customerReviewTitle">last update terrible</span>
<div class='rating' role='img' tabindex='-1' aria-label='1 star'><div><span class="rating-star"> </span><span class="rating-star ghost"> </span><span class="rating-star ghost"> </span><span class="rating-star ghost"> </span><span class="rating-star ghost"> </span></div></div>
</h5>
<span class="user-info">by
Kiijiiimmm
</span>
<p class="content" will-truncate-max-height="0" data-text-truncate-lines="5">
filtering does absolutely no good if you want to search for one sex only. you're getting both whether you like it or not. Also you don't get anybody near you because the GPS or distancing feature whatever they call it, isn't working worth a darn. I don't who did the last up date but I think it was a grade school student. <br/>there are also so many fake ads that are clearly some type of phishing thing or something. But it's just pathetic
</p>
</div>
<div more-text="More" class="customer-review">
<h5>
<span class="customerReviewTitle">Review</span>
<div class='rating' role='img' tabindex='-1' aria-label='5 stars'><div><span class="rating-star"> </span><span class="rating-star"> </span><span class="rating-star"> </span><span class="rating-star"> </span><span class="rating-star"> </span></div></div>
</h5>
<span class="user-info">by
Nokia7230
</span>
<p class="content" will-truncate-max-height="0" data-text-truncate-lines="5">
Good app
</p>
</div>
</div>
<div metrics-loc="Swoosh_" rows="1" class="swoosh lockup-container application large">
<div class="title">
<h2>Customers Also Bought</h2>
</div>
<div num-items="5" class="content"><div>
<div rating-software="600,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="429431089" preview-artist="DH Services" aria-label="Mr X: Gay and same sex chat and dating" preview-title="Mr X: Gay and same sex chat and dating" class="lockup small application">
<a href="https://itunes.apple.com/us/app/mr-x-gay-and-same-sex-chat-and-dating/id429431089?mt=8" class="artwork-link"><div class="artwork">
<img width="100" height="100" alt="Mr X: Gay and same sex chat and dating" src-swap-high-dpi="http://is4.mzstatic.com/image/thumb/Purple111/v4/ba/bf/17/babf17f7-fc82-6828-3257-401128c0e899/source/200x200bb.jpg" src-load-auto-after-dom-load="" src-swap="http://is4.mzstatic.com/image/thumb/Purple111/v4/ba/bf/17/babf17f7-fc82-6828-3257-401128c0e899/source/100x100bb.jpg" class="artwork" src="https://s.mzstatic.com/htmlResources/032ff13/frameworks/images/p.png" />
<span class="mask"></span>
</div></a>
<div class="lockup-info">
<ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/mr-x-gay-and-same-sex-chat-and-dating/id429431089?mt=8" class="name"><span>Mr X: Gay and same sex chat and dating</span></a></li><li><a href="https://itunes.apple.com/us/genre/ios-social-networking/id6005?mt=8" class="genre">Social Networking</a></li><li><a onclick="return its.detect.openItunes('https://itunes.apple.com/us/app/mr-x-gay-and-same-sex-chat-and-dating/id429431089?mt=8');" href="#" class="action view-in-itunes"><span>View in iTunes</span></a></li></ul>
</div>
</div>
<div rating-software="600,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="586213729" preview-artist="Zhuoying Liao" aria-label="GayPark - Gay man same sex and curious guys social network" preview-title="GayPark - Gay man same sex and curious guys social network" class="lockup small application">
<a href="https://itunes.apple.com/us/app/gaypark-gay-man-same-sex-and-curious-guys-social-network/id586213729?mt=8" class="artwork-link"><div class="artwork">
<img width="100" height="100" alt="GayPark - Gay man same sex and curious guys social network" src-swap-high-dpi="http://is2.mzstatic.com/image/thumb/Purple69/v4/56/54/5c/56545c46-1254-833f-34f0-f9a4fcd3b7e3/source/200x200bb.jpg" src-load-auto-after-dom-load="" src-swap="http://is2.mzstatic.com/image/thumb/Purple69/v4/56/54/5c/56545c46-1254-833f-34f0-f9a4fcd3b7e3/source/100x100bb.jpg" class="artwork" src="https://s.mzstatic.com/htmlResources/032ff13/frameworks/images/p.png" />
<span class="mask"></span>
</div></a>
<div class="lockup-info">
<ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/gaypark-gay-man-same-sex-and-curious-guys-social-network/id586213729?mt=8" class="name"><span>GayPark - Gay man same sex and curious guys social network</span></a></li><li><a href="https://itunes.apple.com/us/genre/ios-social-networking/id6005?mt=8" class="genre">Social Networking</a></li><li><a onclick="return its.detect.openItunes('https://itunes.apple.com/us/app/gaypark-gay-man-same-sex-and-curious-guys-social-network/id586213729?mt=8');" href="#" class="action view-in-itunes"><span>View in iTunes</span></a></li></ul>
</div>
</div>
<div rating-software="600,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="602776294" preview-artist="Byte Factory LLC" aria-label="VGL - gay twink & jock guys chat, meet & date" preview-title="VGL - gay twink & jock guys chat, meet & date" class="lockup small application">
<a href="https://itunes.apple.com/us/app/vgl-gay-twink-jock-guys-chat-meet-date/id602776294?mt=8" class="artwork-link"><div class="artwork">
<img width="100" height="100" alt="VGL - gay twink & jock guys chat, meet & date" src-swap-high-dpi="http://is3.mzstatic.com/image/thumb/Purple122/v4/ff/a8/a3/ffa8a3b6-52ce-9615-dc04-70bb5a818b9b/source/200x200bb.jpg" src-load-auto-after-dom-load="" src-swap="http://is3.mzstatic.com/image/thumb/Purple122/v4/ff/a8/a3/ffa8a3b6-52ce-9615-dc04-70bb5a818b9b/source/100x100bb.jpg" class="artwork" src="https://s.mzstatic.com/htmlResources/032ff13/frameworks/images/p.png" />
<span class="mask"></span>
</div></a>
<div class="lockup-info">
<ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/vgl-gay-twink-jock-guys-chat-meet-date/id602776294?mt=8" class="name"><span>VGL - gay twink & jock guys chat, meet & date</span></a></li><li><a href="https://itunes.apple.com/us/genre/ios-social-networking/id6005?mt=8" class="genre">Social Networking</a></li><li><a onclick="return its.detect.openItunes('https://itunes.apple.com/us/app/vgl-gay-twink-jock-guys-chat-meet-date/id602776294?mt=8');" href="#" class="action view-in-itunes"><span>View in iTunes</span></a></li></ul>
</div>
</div>
<div rating-software="600,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="404386888" preview-artist="PlanetRomeo BV" aria-label="ROMEO - Gay social network" preview-title="ROMEO - Gay social network" class="lockup small application">
<a href="https://itunes.apple.com/us/app/romeo-gay-social-network/id404386888?mt=8" class="artwork-link"><div class="artwork">
<img width="100" height="100" alt="ROMEO - Gay social network" src-swap-high-dpi="http://is3.mzstatic.com/image/thumb/Purple117/v4/f8/bd/b9/f8bdb9f8-cb9c-3c17-cfbe-047dcd4ac00e/source/200x200bb.jpg" src-load-auto-after-dom-load="" src-swap="http://is3.mzstatic.com/image/thumb/Purple117/v4/f8/bd/b9/f8bdb9f8-cb9c-3c17-cfbe-047dcd4ac00e/source/100x100bb.jpg" class="artwork" src="https://s.mzstatic.com/htmlResources/032ff13/frameworks/images/p.png" />
<span class="mask"></span>
</div></a>
<div class="lockup-info">
<ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/romeo-gay-social-network/id404386888?mt=8" class="name"><span>ROMEO - Gay social network</span></a></li><li><a href="https://itunes.apple.com/us/genre/ios-social-networking/id6005?mt=8" class="genre">Social Networking</a></li><li><a onclick="return its.detect.openItunes('https://itunes.apple.com/us/app/romeo-gay-social-network/id404386888?mt=8');" href="#" class="action view-in-itunes"><span>View in iTunes</span></a></li></ul>
</div>
</div>
<div rating-software="600,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="350426804" preview-artist="Lucid Dreams LLC" aria-label="Jack’d - Gay Chat & Dating" preview-title="Jack’d - Gay Chat & Dating" class="lockup small application">
<a href="https://itunes.apple.com/us/app/jackd-gay-chat-dating/id350426804?mt=8" class="artwork-link"><div class="artwork">
<img width="100" height="100" alt="Jack’d - Gay Chat & Dating" src-swap-high-dpi="http://is5.mzstatic.com/image/thumb/Purple127/v4/74/88/48/74884852-79a4-39c4-40fc-3c78f4efe88c/source/200x200bb.jpg" src-load-auto-after-dom-load="" src-swap="http://is5.mzstatic.com/image/thumb/Purple127/v4/74/88/48/74884852-79a4-39c4-40fc-3c78f4efe88c/source/100x100bb.jpg" class="artwork" src="https://s.mzstatic.com/htmlResources/032ff13/frameworks/images/p.png" />
<span class="mask"></span>
</div></a>
<div class="lockup-info">
<ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/jackd-gay-chat-dating/id350426804?mt=8" class="name"><span>Jack’d - Gay Chat & Dating</span></a></li><li><a href="https://itunes.apple.com/us/genre/ios-social-networking/id6005?mt=8" class="genre">Social Networking</a></li><li><a onclick="return its.detect.openItunes('https://itunes.apple.com/us/app/jackd-gay-chat-dating/id350426804?mt=8');" href="#" class="action view-in-itunes"><span>View in iTunes</span></a></li></ul>
</div>
</div>
</div></div>
</div>
</div>
<div id="left-stack">
<div rating-software="600,itunes-games" parental-rating="1" class="lockup product application">
<a href="https://itunes.apple.com/us/app/boyahoy-gay-chat-meet-friend/id315257056?mt=8"><div class="artwork">
<img width="175" height="175" alt="BoyAhoy - Gay Chat, Meet, Friend" src-swap-high-dpi="http://is4.mzstatic.com/image/thumb/Purple127/v4/04/b4/9d/04b49d78-6ed3-0a27-29f3-ddf27a5fb374/source/350x350bb.jpg" src-load-auto-after-dom-load="" src-swap="http://is4.mzstatic.com/image/thumb/Purple127/v4/04/b4/9d/04b49d78-6ed3-0a27-29f3-ddf27a5fb374/source/175x175bb.jpg" class="artwork" src="https://s.mzstatic.com/htmlResources/032ff13/frameworks/images/p.png" />
<meta itemprop="image" content="http://is4.mzstatic.com/image/thumb/Purple127/v4/04/b4/9d/04b49d78-6ed3-0a27-29f3-ddf27a5fb374/source/175x175bb.jpg"></meta>
<span class="mask"></span>
</div></a>
<a onclick="return its.detect.openItunes('https://itunes.apple.com/us/app/boyahoy-gay-chat-meet-friend/id315257056?mt=8');" href="#" class="action view-in-itunes"><span>View in iTunes</span></a>
<div class="fat-binary-blurb"><span class="fat-binary-badge"></span><span>This app is designed for both iPhone and iPad</span></div><ul class="list"><li><span itemscope itemtype="http://schema.org/Offer" itemprop="offers"><div itemprop="price" content="0" class="price">Free</div></span></li><li class="genre"><span class="label">Category: </span><a href="https://itunes.apple.com/us/genre/ios-social-networking/id6005?mt=8"><span itemprop="applicationCategory">Social Networking</span></a></li><li class="release-date"><span class="label">Updated: </span><span itemprop="datePublished" content="2009-05-27 18:38:09 Etc/GMT">Jun 28, 2017</span></li><li><span class="label">Version: </span><span itemprop="softwareVersion">4.25.2</span></li><li><span class="label">Size: </span>96.8 MB</li><li class="language"><span class="label">Languages: </span>English, Danish, French, German, Hungarian, Indonesian, Italian, Japanese, Korean, Malay, Norwegian Bokmål, Polish, Portuguese, Russian, Simplified Chinese, Spanish, Swedish, Thai, Traditional Chinese, Turkish, Vietnamese</li><li><span class="label">Seller: </span><span itemscope itemtype="http://schema.org/Person" itemprop="author"><span itemprop="name">Skout, Inc.</span></span></li><li class="copyright">© 2016 Skout, Inc.</li></ul><div class="app-rating"><a onclick="return its.detect.openItunes('https://itunes.apple.com/WebObjects/MZStore.woa/wa/appRatings?ratingSystem=appsApple');" href="https://itunes.apple.com/WebObjects/MZStore.woa/wa/appRatings?ratingSystem=appsApple">You must be at least 17 years old to download this app.</a><ul class="list app-rating-reasons"><li>Frequent/Intense Mature/Suggestive Themes</li></ul></div><p><span class="app-requirements">Compatibility: </span><span itemprop="operatingSystem">Requires iOS 9.0 or later. Compatible with iPhone, iPad, and iPod touch.</span></p>
</div>
<div class='extra-list customer-ratings'>
<h4>Customer Ratings</h4>
We have not received enough ratings to display an average for the current version of this application.
<div>All Versions:</div>
<div class='rating' role='img' tabindex='-1' aria-label='3 stars, 30171 Ratings'><div><span class="rating-star"> </span><span class="rating-star"> </span><span class="rating-star"> </span><span class="rating-star ghost"> </span><span class="rating-star ghost"> </span></div><span class="rating-count">30171 Ratings</span>
</div>
</div>
<div metrics-loc="Titledbox_Top In-App Purchases" class="extra-list in-app-purchases">
<h4>
Top In-App Purchases
</h4>
<ol class="list"><li><span class="in-app-title">500 Points</span><span class="in-app-price">$4.99</span></li><li><span class="in-app-title">1000 Points</span><span class="in-app-price">$7.99</span></li><li><span class="in-app-title">2500 Points + Bonus</span><span class="in-app-price">$16.99</span></li><li><span class="in-app-title">Premium</span><span class="in-app-price">$9.99</span></li><li><span class="in-app-title">1 Month BoyAhoy Premium</span><span class="in-app-price">$9.99</span></li><li><span class="in-app-title">7500 Points + Bonus</span><span class="in-app-price">$41.99</span></li><li><span class="in-app-title">4000 Points</span><span class="in-app-price">$24.99</span></li><li><span class="in-app-title">3 Months BoyAhoy Premium</span><span class="in-app-price">$24.99</span></li><li><span class="in-app-title">Premium</span><span class="in-app-price">$25.99</span></li><li><span class="in-app-title">12 Months BoyAhoy Premium</span><span class="in-app-price">$69.99</span></li></ol>
</div>
<div metrics-loc="Titledbox_More by Skout, Inc." class="extra-list more-by">
<h4>
More by Skout, Inc.
</h4>
<ul class="list"><li>
<div rating-software="600,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="302324249" preview-artist="Skout, Inc." aria-label="Skout - Chat, Meet New People" preview-title="Skout - Chat, Meet New People" class="lockup small application">
<a href="https://itunes.apple.com/us/app/skout-chat-meet-new-people/id302324249?mt=8" class="artwork-link"><div class="artwork">
<img width="75" height="75" alt="Skout - Chat, Meet New People" src-swap-high-dpi="http://is4.mzstatic.com/image/thumb/Purple127/v4/61/ca/ab/61caabcd-d8c9-9878-4ecc-d95fc8f37202/source/150x150bb.jpg" src-load-auto-after-dom-load="" src-swap="http://is4.mzstatic.com/image/thumb/Purple127/v4/61/ca/ab/61caabcd-d8c9-9878-4ecc-d95fc8f37202/source/75x75bb.jpg" class="artwork" src="https://s.mzstatic.com/htmlResources/032ff13/frameworks/images/p.png" />
<span class="mask"></span>
</div></a>
<div class="lockup-info">
<ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/skout-chat-meet-new-people/id302324249?mt=8" class="name">Skout - Chat, Meet New People</a></li><li><a onclick="return its.detect.openItunes('https://itunes.apple.com/us/app/skout-chat-meet-new-people/id302324249?mt=8');" href="#" class="action view-in-itunes"><span>View in iTunes</span></a></li></ul>
</div>
</div>
</li><li>
<div rating-software="600,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="308795090" preview-artist="Skout, Inc." aria-label="Flurv - Meet, Chat, Friend" preview-title="Flurv - Meet, Chat, Friend" class="lockup small application">
<a href="https://itunes.apple.com/us/app/flurv-meet-chat-friend/id308795090?mt=8" class="artwork-link"><div class="artwork">
<img width="75" height="75" alt="Flurv - Meet, Chat, Friend" src-swap-high-dpi="http://is3.mzstatic.com/image/thumb/Purple127/v4/cc/66/11/cc6611b4-4580-c55e-6263-56bcde30b4b4/source/150x150bb.jpg" src-load-auto-after-dom-load="" src-swap="http://is3.mzstatic.com/image/thumb/Purple127/v4/cc/66/11/cc6611b4-4580-c55e-6263-56bcde30b4b4/source/75x75bb.jpg" class="artwork" src="https://s.mzstatic.com/htmlResources/032ff13/frameworks/images/p.png" />
<span class="mask"></span>
</div></a>
<div class="lockup-info">
<ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/flurv-meet-chat-friend/id308795090?mt=8" class="name">Flurv - Meet, Chat, Friend</a></li><li><a onclick="return its.detect.openItunes('https://itunes.apple.com/us/app/flurv-meet-chat-friend/id308795090?mt=8');" href="#" class="action view-in-itunes"><span>View in iTunes</span></a></li></ul>
</div>
</div>
</li><li>
<div rating-software="600,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="433866863" preview-artist="Skout, Inc." aria-label="Skout+ - Chat, Meet New People" preview-title="Skout+ - Chat, Meet New People" class="lockup small application">
<a href="https://itunes.apple.com/us/app/skout-chat-meet-new-people/id433866863?mt=8" class="artwork-link"><div class="artwork">
<img width="75" height="75" alt="Skout+ - Chat, Meet New People" src-swap-high-dpi="http://is1.mzstatic.com/image/thumb/Purple117/v4/0b/5b/47/0b5b4791-dbfa-a8fc-17f9-d1ca8545bf82/source/150x150bb.jpg" src-load-auto-after-dom-load="" src-swap="http://is1.mzstatic.com/image/thumb/Purple117/v4/0b/5b/47/0b5b4791-dbfa-a8fc-17f9-d1ca8545bf82/source/75x75bb.jpg" class="artwork" src="https://s.mzstatic.com/htmlResources/032ff13/frameworks/images/p.png" />
<span class="mask"></span>
</div></a>
<div class="lockup-info">
<ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/skout-chat-meet-new-people/id433866863?mt=8" class="name">Skout+ - Chat, Meet New People</a></li><li><a onclick="return its.detect.openItunes('https://itunes.apple.com/us/app/skout-chat-meet-new-people/id433866863?mt=8');" href="#" class="action view-in-itunes"><span>View in iTunes</span></a></li></ul>
</div>
</div>
</li></ul>
</div>
</div>
</div>
</div>
</div>
</div>
<object classID="CLSID:D719897A-B07A-4C0C-AEA9-9B663A28DFCB" width="1" height="1" id="iTunesDetectorIE" ></object>
<script type="text/javascript">itms.PageData.itunesDownloadUrl='http://www.apple.com/itunes/download/?id=315257056';</script>
<div id="socialwrapper">
<aside class="social selfclear"><section class="column first"><h1><img src="https://www.apple.com/itunes/shared/itunes-this-week/images/social_appstore_title.png" alt="App Store on Facebook and Twitter" width="261" height="20"></h1>
<iframe src="//www.facebook.com/plugins/like.php?app_id=116556461780510&href=http%3A%2F%2Fwww.facebook.com%2FAppStore&send=false&layout=box_count&width=85&show_faces=false&action=like&colorscheme=light&font=lucida+grande&height=75&locale=en_US" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:85px; height:75px;" allowtransparency="true" class="right"></iframe>
<img src="https://www.apple.com/global/elements/itunesmodule/facebook_appstore_icon.png" alt="" width="55" height="55" class="left"><p>Discover and share<br> new apps.</p>
<p class="nopad">Follow us on <a href="http://tw.appstore.com/M7e">@AppStore</a>.</p>
</section><section class="column"><h1><img src="https://www.apple.com/itunes/shared/itunes-this-week/images/social_itunes_facebook_title.png" alt="iTunes on Facebook" width="146" height="20"></h1>
<iframe src="//www.facebook.com/plugins/like.php?app_id=161583840592879&href=http%3A%2F%2Fwww.facebook.com%2FiTunes&send=false&layout=box_count&width=85&show_faces=false&action=like&colorscheme=light&font=lucida+grande&height=75&locale=en_US" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:85px; height:75px;" allowtransparency="true" class="right"></iframe>
<img src="https://www.apple.com/global/elements/itunesmodule/facebook_itunes_icon.png" alt="" width="55" height="55" class="left"><p>Discover and share new music, movies, TV, books, and more.</p>
</section><section class="column last"><h1><img src="https://www.apple.com/itunes/shared/itunes-this-week/images/social_itunes_twitter_title.png" alt="iTunes on Twitter" width="126" height="20"></h1>
<img src="https://www.apple.com/global/elements/itunesmodule/twitter_icon.png" alt="" width="55" height="55" class="left"><p>Follow us <a href="http://tw.itunes.com/H8a">@iTunes</a> and discover <br>new iTunes Radio Stations<br> and the music we love.</p>
</section></aside>
</div>
<footer id="ac-globalfooter" class="no-js" lang="en-US" data-analytics-region="global footer" role="contentinfo"><div class="ac-gf-content"><nav class="ac-gf-breadcrumbs" aria-label="Breadcrumbs" role="navigation">
<a href="//www.apple.com/" class="home ac-gf-breadcrumbs-home">
<span class="ac-gf-breadcrumbs-home-icon" aria-hidden="true"></span>
<span class="ac-gf-breadcrumbs-home-label">Apple</span>
<span class="ac-gf-breadcrumbs-home-chevron"></span>
<span class="ac-gf-breadcrumbs-home-mask"></span>
</a>
<div class="ac-gf-breadcrumbs-path">
<ol class="ac-gf-breadcrumbs-list" vocab="http://schema.org/" typeof="BreadcrumbList">
<li class="ac-gf-breadcrumbs-item" property="itemListElement" typeof="ListItem"><span property="name">iTunes</span><meta property="position" content="1" /></li>
</ol>
</div>
</nav>
<nav class="ac-gf-directory with-5-columns" aria-label="Apple Directory" role="navigation">
<!--googleoff: all-->
<div class="ac-gf-directory-column"><input class="ac-gf-directory-column-section-state" type="checkbox" id="ac-gf-directory-column-section-state-products" />
<div class="ac-gf-directory-column-section">
<label class="ac-gf-directory-column-section-label" for="ac-gf-directory-column-section-state-products">
<h3 class="ac-gf-directory-column-section-title">Shop and Learn</h3>
</label>
<a href="#ac-gf-directory-column-section-state-products" class="ac-gf-directory-column-section-anchor ac-gf-directory-column-section-anchor-open">
<span class="ac-gf-directory-column-section-anchor-label">Open Menu</span>
</a>
<a href="#" class="ac-gf-directory-column-section-anchor ac-gf-directory-column-section-anchor-close">
<span class="ac-gf-directory-column-section-anchor-label">Close Menu</span>
</a>
<ul class="ac-gf-directory-column-section-list">
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/mac/">Mac</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/ipad/">iPad</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/iphone/">iPhone</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/watch/">Watch</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/tv/">TV</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/music/">Music</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/itunes/">iTunes</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/ipod/">iPod</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/us/shop/goto/buy_accessories">Accessories</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/us/shop/goto/giftcards">Gift Cards</a></li>
</ul>
</div>
</div>
<div class="ac-gf-directory-column"><input class="ac-gf-directory-column-section-state" type="checkbox" id="ac-gf-directory-column-section-state-storeservices" />
<div class="ac-gf-directory-column-section">
<label class="ac-gf-directory-column-section-label" for="ac-gf-directory-column-section-state-storeservices">
<h3 class="ac-gf-directory-column-section-title">Apple Store</h3>
</label>
<a href="#ac-gf-directory-column-section-state-storeservices" class="ac-gf-directory-column-section-anchor ac-gf-directory-column-section-anchor-open">
<span class="ac-gf-directory-column-section-anchor-label">Open Menu</span>
</a>
<a href="#" class="ac-gf-directory-column-section-anchor ac-gf-directory-column-section-anchor-close">
<span class="ac-gf-directory-column-section-anchor-label">Close Menu</span>
</a>
<ul class="ac-gf-directory-column-section-list">
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/retail/">Find a Store</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/retail/geniusbar/">Genius Bar</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/retail/learn/">Workshops and Learning</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/retail/learn/youth/">Youth Programs</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="https://itunes.apple.com/app/apple-store/id375380948?pt=2003&ct=footer&mt=8">Apple Store App</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/us/shop/goto/special_deals">Refurbished and Clearance</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/us/shop/goto/payment_plan">Financing</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/us/shop/goto/reuse_and_recycle">Reuse and Recycling</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/us/shop/goto/account">Order Status</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/us/shop/goto/help">Shopping Help</a></li>
</ul>
</div>
</div>
<div class="ac-gf-directory-column">
<input class="ac-gf-directory-column-section-state" type="checkbox" id="ac-gf-directory-column-section-state-education" />
<div class="ac-gf-directory-column-section">
<label class="ac-gf-directory-column-section-label" for="ac-gf-directory-column-section-state-education">
<h3 class="ac-gf-directory-column-section-title">For Education</h3>
</label>
<a href="#ac-gf-directory-column-section-state-education" class="ac-gf-directory-column-section-anchor ac-gf-directory-column-section-anchor-open">
<span class="ac-gf-directory-column-section-anchor-label">Open Menu</span>
</a>
<a href="#" class="ac-gf-directory-column-section-anchor ac-gf-directory-column-section-anchor-close">
<span class="ac-gf-directory-column-section-anchor-label">Close Menu</span>
</a>
<ul class="ac-gf-directory-column-section-list">
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/education/">Apple and Education</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/us/shop/goto/educationrouting">Shop for College</a></li>
</ul>
</div>
<input class="ac-gf-directory-column-section-state" type="checkbox" id="ac-gf-directory-column-section-state-business" />
<div class="ac-gf-directory-column-section">
<label class="ac-gf-directory-column-section-label" for="ac-gf-directory-column-section-state-business">
<h3 class="ac-gf-directory-column-section-title">For Business</h3>
</label>
<a href="#ac-gf-directory-column-section-state-business" class="ac-gf-directory-column-section-anchor ac-gf-directory-column-section-anchor-open">
<span class="ac-gf-directory-column-section-anchor-label">Open Menu</span>
</a>
<a href="#" class="ac-gf-directory-column-section-anchor ac-gf-directory-column-section-anchor-close">
<span class="ac-gf-directory-column-section-anchor-label">Close Menu</span>
</a>
<ul class="ac-gf-directory-column-section-list">
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/business/">Apple and Business</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/retail/business/">Shop for Business</a></li>
</ul>
</div>
</div>
<div class="ac-gf-directory-column">
<input class="ac-gf-directory-column-section-state" type="checkbox" id="ac-gf-directory-column-section-state-accounts" />
<div class="ac-gf-directory-column-section">
<label class="ac-gf-directory-column-section-label" for="ac-gf-directory-column-section-state-accounts">
<h3 class="ac-gf-directory-column-section-title">Account</h3>
</label>
<a href="#ac-gf-directory-column-section-state-accounts" class="ac-gf-directory-column-section-anchor ac-gf-directory-column-section-anchor-open">
<span class="ac-gf-directory-column-section-anchor-label">Open Menu</span>
</a>
<a href="#" class="ac-gf-directory-column-section-anchor ac-gf-directory-column-section-anchor-close">
<span class="ac-gf-directory-column-section-anchor-label">Close Menu</span>
</a>
<ul class="ac-gf-directory-column-section-list">
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="https://appleid.apple.com/us/">Manage Your Apple ID</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/us/shop/goto/account">Apple Store Account</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="https://www.icloud.com">iCloud.com</a></li>
</ul>
</div>
<input class="ac-gf-directory-column-section-state" type="checkbox" id="ac-gf-directory-column-section-state-responsibility" />
<div class="ac-gf-directory-column-section">
<label class="ac-gf-directory-column-section-label" for="ac-gf-directory-column-section-state-responsibility">
<h3 class="ac-gf-directory-column-section-title">Apple Values</h3>
</label>
<a href="#ac-gf-directory-column-section-state-responsibility" class="ac-gf-directory-column-section-anchor ac-gf-directory-column-section-anchor-open">
<span class="ac-gf-directory-column-section-anchor-label">Open Menu</span>
</a>
<a href="#" class="ac-gf-directory-column-section-anchor ac-gf-directory-column-section-anchor-close">
<span class="ac-gf-directory-column-section-anchor-label">Close Menu</span>
</a>
<ul class="ac-gf-directory-column-section-list">
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/accessibility/">Accessibility</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/education/connectED/">Education</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/environment/">Environment</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/diversity/">Inclusion and Diversity</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/privacy/">Privacy</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/supplier-responsibility/">Supplier Responsibility</a></li>
</ul>
</div>
</div>
<div class="ac-gf-directory-column">
<input class="ac-gf-directory-column-section-state" type="checkbox" id="ac-gf-directory-column-section-state-about" />
<div class="ac-gf-directory-column-section">
<label class="ac-gf-directory-column-section-label" for="ac-gf-directory-column-section-state-about">
<h3 class="ac-gf-directory-column-section-title">About Apple</h3>
</label>
<a href="#ac-gf-directory-column-section-state-about" class="ac-gf-directory-column-section-anchor ac-gf-directory-column-section-anchor-open">
<span class="ac-gf-directory-column-section-anchor-label">Open Menu</span>
</a>
<a href="#" class="ac-gf-directory-column-section-anchor ac-gf-directory-column-section-anchor-close">
<span class="ac-gf-directory-column-section-anchor-label">Close Menu</span>
</a>
<ul class="ac-gf-directory-column-section-list">
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/about/">Apple Info</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/newsroom/">Newsroom</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/jobs/us/">Job Opportunities</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/pr/">Press Info</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="http://investor.apple.com">Investors</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/apple-events/">Events</a></li>
<li class="ac-gf-directory-column-section-item"><a class="ac-gf-directory-column-section-link" href="//www.apple.com/contact/">Contact Apple</a></li>
</ul>
</div>
</div>
<!--googleon: all-->
</nav>
<section class="ac-gf-footer">
<div class="ac-gf-footer-shop" x-ms-format-detection="none">
More ways to shop: Visit an <a href="//www.apple.com/retail/">Apple Store</a>, <span class="nowrap">call 1-800-MY-APPLE, or <a href="https://locate.apple.com/">find a reseller</a></span>.
</div>
<div class="ac-gf-footer-locale">
<a class="ac-gf-footer-locale-link" href="//www.apple.com/choose-your-country/" title="Choose your country or region" aria-label="United States. Choose your country or region"><span class="ac-gf-footer-locale-flag" data-hires="false"></span>United States</a>
</div>
<div class="ac-gf-footer-legal">
<div class="ac-gf-footer-legal-copyright">Copyright © 2017 Apple Inc. All rights reserved.</div>
<div class="ac-gf-footer-legal-links">
<a class="ac-gf-footer-legal-link" href="//www.apple.com/privacy/privacy-policy/">Privacy Policy</a>
<a class="ac-gf-footer-legal-link" href="//www.apple.com/legal/internet-services/terms/site.html">Terms of Use</a>
<a class="ac-gf-footer-legal-link" href="//www.apple.com/us/shop/goto/help/sales_refunds">Sales and Refunds</a>
<a class="ac-gf-footer-legal-link" href="//www.apple.com/legal/">Legal</a>
<a class="ac-gf-footer-legal-link" href="//www.apple.com/sitemap/">Site Map</a>
</div>
</div>
</section>
</div></footer><script type="text/javascript" src="https://www.apple.com/ac/globalfooter/3/en_US/scripts/ac-globalfooter.built.js"></script>
<script language="JavaScript" type="text/javascript"><!--
var iTSMetricsCallbackFunction = function() {
ITSMetrics.reportingSuite = "appleitmswww,appleitmsus";
ITSMetrics.omniture = ITSMetrics.createBaselineOmnitureObject();
/* Page Metrics */
ITSMetrics.omniture.pageName="SEO-Software-US-Skout, Inc.-BoyAhoy - Gay Chat, Meet, Friend-315257056";
ITSMetrics.omniture.channel="SEO";
ITSMetrics.omniture.prop22="HTML";
ITSMetrics.omniture.eVar22="HTML";
ITSMetrics.omniture.products="Skout, Inc.-BoyAhoy - Gay Chat, Meet, Friend-315257056";
/* User Agent */
var userAgentForMetrics = ITSMetrics.userAgentForMetrics();
ITSMetrics.omniture.prop12 = userAgentForMetrics;
ITSMetrics.omniture.eVar12 = userAgentForMetrics;
// check if Game Center
var gcUserAgent = "GameCenter";
var isGameCenter = userAgentForMetrics.length >= gcUserAgent.length && userAgentForMetrics.substr(0, gcUserAgent.length) == gcUserAgent;
if (isGameCenter) {
// prepend "GameCenter" to page and channel name
if (ITSMetrics.omniture.pageName) ITSMetrics.omniture.pageName = "GameCenter-" + ITSMetrics.omniture.pageName;
if (ITSMetrics.omniture.channel) ITSMetrics.omniture.channel = "GameCenter-" + ITSMetrics.omniture.channel;
}
/* Browser Plugins */
ITSMetrics.shouldTrackBrowserPlugins = false;
/* Pass-thru query params */
ITSMetrics.processQueryParameterInfoInCurrentRequest(ITSMetrics.omniture);
if (ITSMetrics.isOmnitureSupportedOnClient()) {
ITSMetrics.emitPagePing = function() {
if(ITSMetrics.isPageMetricsEnabled){
var s_code=ITSMetrics.omniture.t();
if (s_code) {
var containingDiv = document.createElement('div');
containingDiv.innerHTML = s_code;
document.body.appendChild(containingDiv);
}
}
// Even though Omniture is disabled, we still want to make a ping to Figaro for Preview
//<rdar://problem/23903484> Disable all Omniture pings sent directly from clients
if (window.webPreview) {
var queryParams = {};
queryParams.responseType="image";
queryParams.eventVersion = 1; // begin query parameters
queryParams.eventType = "page"; // hardcoded
var time = new Date();
queryParams.eventTime = time.getTime();
queryParams.pageName = ITSMetrics.omniture.pageName;
queryParams.pageUrl = window.location.href; // current page url
queryParams.refUrl = document.referrer; //Refer
queryParams.pageType = ITSMetrics.omniture.channel; //Channel
queryParams.userAgent = window.navigator.userAgent; //User agent
queryParams.screenWidth = screen.width;
queryParams.screenHeight = screen.height; // screen size
queryParams.windowInnerWidth = window.innerWidth; // browser width
queryParams.windowInnerHeight = window.innerHeight; // browser height
queryParams.app = navigator.appName;
var url = "https://xp.apple.com/report/2/xp_its_preview";
url = its.url.appendUrlParameters(url, queryParams);
var image = new Image();
image.src = url;
}
};
its.x.addEventListener(window, 'load', function() { window.setTimeout(ITSMetrics.emitPagePing, 1) }, false );
}
};
if (!window["ITSMetrics"]){
iTSDefer.register(function() {
iTSMetricsCallbackFunction();
});
} else {
iTSMetricsCallbackFunction();
}
--></script>
<script>
if (!window.its) {
window.its = {};
}
window.its.markupLoadEndTime = new Date().getTime();
</script>
</body>
</html>