Vous êtes sur la page 1sur 85

The web should be fast.

Executive Summary

Performance Report for:


https://www.girlsaskguys.com/other/q2198181-…
Report generated: Mon, May 14, 2018, 11:46 PM -0700
Test Server Region: Vancouver, Canada
Using: Chrome (Desktop) 62.0.3202.94, PageSpeed 1.15-
gt1, YSlow 3.1.8

PageSpeed Score YSlow Score Fully Loaded Time Total Page Size Requests

(15%) (41%) 40.2s 40.0MB 1379


Top 5 Priority Issues
M inimize redirects F (0) AVG SCORE: 88% CONTENT HIGH

Serve resources from a consistent URL F (0) AVG SCORE: 88% CONTENT HIGH

Leverage browser caching F (0) AVG SCORE: 59% SERVER HIGH

M inimize request size F (0) AVG SCORE: 96% CONTENT HIGH

Serve scaled images F (0) AVG SCORE: 74% IMAGES HIGH

How does this affect me?


What do these grades mean?
Studies show that users leave a site if it hasn't loaded in 4 seconds; keep
your users happy and engaged by providing a fast performing website. This report is an analysis of your site with Google and
Yahoo!'s metrics for how to best develop a site for optimized
As if you didn't need more incentive, Google has announced that they speed. The grades you see represent how well the
are using page speed in their ranking algorithm. scanned URL adheres to those rules.

About GTmetrix Lower grades (C or lower) mean that the page can stand to
be faster using better practices and optimizing your settings.

We can help you develop a faster, more efficient, and all-around What's in this report?
improved website experience for your users. We use Google PageSpeed
and Yahoo! YSlow to grade your site's performance and provide This report covers basic to technical analyses on your page. It
actionable recommendations to fix these issues. is categorized under many headings:

About the Developer Executive: Overall score information and Priority Issues
History: Graphed history of past performance
Waterfall: Graph of your site's loading timeline
GTmetrix is developed by the good folks Technical: In-depth PageSpeed & YSlow information
at GT.net, a Vancouver-based
performance hosting company with over These will provide you with a snapshot of your performance.
22 years experience in web technology.

https://gt.net/

Analyze your site at https://gtmetrix.com Page 1 of 85


Waterfall Chart

Waterfall Chart
The waterfall chart displays the loading behaviour of your site in your selected browser. It can be used to discover simple issues such as 404's or
more complex issues such as external resources blocking page rendering.

Analyze your site at https://gtmetrix.com Page 2 of 85


Page Load Timings

Page Load Timings


RUM Speed Index: 608

Redirect 0ms
Connect 95ms
Backend 50ms
TTFB 145ms
First paint 471ms
Contentful paint 471ms
DOM int. 1.7s
DOM loaded 1.7s (97ms)
Onload 19.9s (47ms)

Redirect duration
This is the time spent redirecting URLs before the final HTML page is loaded. Common redirects
include:
Redirect from a non-www to www (eg. example.com to www.example.com)
Redirect to a secure URL (eg. http:// to https://)
Redirect to set cookies
Redirect to a mobile version of the site
Some sites may even perform a chain of multiple redirects (eg. non-www to www, then to a secure
URL). This timing is the total of all this time that's spent redirecting, or 0 if no redirects occurred.
In the Waterfall Chart, Redirect duration consists of the time from the beginning of the test until just before we start the request of the final HTML
page (when we receive the first 200 OK response).
During this time, the browser screen is blank! Ensure that this duration is kept to short by minimizing your redirects.

Connection duration
Once any redirects have completed, Connection duration is measured. This is the time spent
connecting to the server to make the request to the page.
Technically speaking, this duration is a combination of the blocked time, DNS time, connect time and
sending time of the request (rather than just connect time). We've combined those components into a
single Connection duration to simplify things (as most of these times are usually small).
In the Waterfall Chart, Connection duration consists of everything up to and including the "Sending"
time in the final HTML page request (the first 200 OK response).
During this time, the browser screen is still blank! Various causes could contribute to this, including a slow/problematic connection between the
test server and site or slow response times from the site.

Backend duration
Once the connection is complete and the request is made, the server needs to generate a response
for the page. The time it takes to generate the response is known as the Backend duration.

Analyze your site at https://gtmetrix.com Page 3 of 85


Page Load Timings

In the Waterfall Chart, Backend duration consists of purple waiting time in the page request.
There are a number of reasons why Backend duration could be slow. We cover this is our "Why is my
page slow" article.

Time to First Byte (TTFB)


Time to First Byte (TTFB) is the total amount of time spent to receive the first byte of the response
once it has been requested. It is the sum of "Redirect duration" + "Connection duration" + "Backend
duration". This metric is one of the key indicators of web performance.
In the Waterfall Chart, it is calculated at the start of the test until just before receiving on the page
request and represented by the orange line.
Some ways to improve the TTFB include: optimizing application code, implementing caching, fine-
tuning your web server configuration, or upgrading server hardware.

First paint time


First paint time is the first point at which the browser does any sort of rendering on the page.
Depending on the structure of the page, this first paint could just be displaying the background colour
(including white), or it could be a majority of the page being rendered.
In the Waterfall Chart, it is represented by the green line.
This timing is of significance because until this point, the browser will have only shown a blank page
and this change gives the user an indication that the page is loading. However, we don't know how
much of the page was rendered with this paint, so having a early first paint doesn't necessarily
indicate a fast loading page.
If the browser does not perform a paint (ie. the html results in an blank page), then the paint timings may be missing.

First contentful paint time


First Contentful Paint is triggered when any content is painted - i.e. something defined in the DOM
(Document Object Model). This could be text, an image or canvas render.
This timing aims to be more representative of your user's experience, as it flags when actual content
has been loaded in the page, and not just any change - but it may often be the same time as First
Paint.
Because the focus is on content, the idea is that this metric gives you an idea of when your user
receives consumable information (text, visuals, etc) - much more useful for performance assessment
than when a background has changed or a style has been applied.
If the browser does not perform a paint (ie. the html results in an blank page), then the paint timings may be missing.

DOM interactive time


DOM interactive time is the point at which the browser has finished loading and parsing HTML, and
the DOM (Document Object Model) has been built. The DOM is how the browser internally structures
the HTML so that it can render it.
DOM interactive time isn't marked in the Waterfall Chart as it's usually very close in timing to DOM
content loaded.

DOM content loaded time


DOM content loaded time (DOM loaded or DOM ready for short) is the point at which the DOM is

Analyze your site at https://gtmetrix.com Page 4 of 85


Page Load Timings

ready (ie. DOM interactive) and there are no stylesheets blocking JavaScript execution.
If there are no stylesheets blocking JavaScript execution and there is no parser blocking JavaScript,
then this will be the same as DOM interactive time.
In the Waterfall Chart, it is represented by the blue line.
The time in brackets is the time spent executing JavaScript triggered by the DOM content loaded
event. Many JavaScript frameworks use this event as a starting point to begin execution of their code.
Since this event is often used by JavaScript as the starting point and delays in this event mean delays in rendering, it's important to make sure
that style and script order is optimized and that parsing of JavaScript is deferred.

Onload time
Onload time occurs when the processing of the page is complete and all the resources on the page
(images, CSS, etc.) have finished downloading. This is also the same time that DOM complete occurs
and the JavaScript window.onload event fires.
Note that there may be JavaScript that initiates subsequent requests for more resources, hence the
reason why Fully loaded timing is preferred.
In the Waterfall Chart, it is represented by the red line.
The time in brackets is the time spent executing JavaScript triggered by the Onload event.
Note that Onload time was the previous default for when to stop the test prior to Feburary 8th, 2017.

Analyze your site at https://gtmetrix.com Page 5 of 85


PageSpeed Recommendations

PageSpeed Recommendations
RECOMMENDATION GRADE RELATIVE TYPE PRIORITY

M inimize redirects F (0) AVG SCORE: 88% CONTENT HIGH

Remove the following redirect chain if possible:

https://px.c1exchange.com/pubpixel/1234844
https://cms.c1exchange.com/cookie/match/adv/adx/seed?adxm=1234844&rd=1&pb=00000111&dm=0
https://cm.g.doubleclick.net/pixel?google_nid=c1x&google_cm&adxm=1234844&rd=1&pb=00000111&dm=0
https://cm.g.doubleclick.net/pixel?google_nid=c1x&google_cm=&adxm=1234844&rd=1&pb=00000111&dm=0&google_tc=
https://cm.c1exchange.com/cookie/match?adxm=1234844&rd=1&pb=00000111&dm=0&google_gid=CAESELcYpPLiguovXekM-srtv18&google_cver=1
https://cms.c1exchange.com/cookie/match/adv/apn/seed?apn=1234844&pb=00000111&dm=0
https://ib.adnxs.com/getuid?https://cms.c1exchange.com/cookie/match/appnexus?appnexus_gid=$UID&apn=1234844&pb=00000111&dm=0
https://ib.adnxs.com/bounce?%2Fgetuid%3Fhttps%3A%2F%2Fcms.c1exchange.com%2Fcookie%2Fmatch%2Fappnexus%3Fappnexus_gid%3D%24UID%
26apn%3D1234844%26pb%3D00000111%26dm%3D0
https://cms.c1exchange.com/cookie/match/appnexus?appnexus_gid=3609532715836771276&apn=1234844&pb=00000111&dm=0
https://pixel.mathtag.com/sync/img?redir=https%3A%2F%2Fcms.c1exchange.com%2Fcookie%2Fmatch%2Fmm%3Fmmuuid%3D%5BMM_UUID%5D%26
mt_uuid%3D%5BMM_UUID%5D%26no_iframe%3D1%26apn%3D1234844%26pb%3D00000111%26dm%3D0
https://pixel.mathtag.com/sync/img?redir=https%3A%2F%2Fcms.c1exchange.com%2Fcookie%2Fmatch%2Fmm%3Fmmuuid%3D%5BMM_UUID%5D%26
mt_uuid%3D%5BMM_UUID%5D%26no_iframe%3D1%26apn%3D1234844%26pb%3D00000111%26dm%3D0&mm_bnc&mm_bct
https://cms.c1exchange.com/cookie/match/mm?mmuuid=30c15afa-5048-4600-a17d-e2a85c24ab94&mt_uuid=30c15afa-5048-4600-a17d-e2a85c24ab94
&no_iframe=1&apn=1234844&pb=00000111&dm=0
https://s6-pixel.c1exchange.com/pubpixel/dmp/1234844?dm=0

Remove the following redirect chain if possible:

https://sync.tidaltv.com/genericusersync.ashx?dpid=lkqd
https://sb.scorecardresearch.com/p?c1=9&c2=5989497&cs_xi=14a5004f-d7ab-4fdd-9955-6df857be8536&rn=TIMESTAMP&cs_xs=3315&r=https%3A%2F%
2Fsync.tidaltv.com%2Fgenericusersync.ashx%3Fdpid%3D1261
https://sync.tidaltv.com/genericusersync.ashx?dpid=1261
https://dpm.demdex.net/ibs:dpid=445&dpuuid=14a5004f-d7ab-4fdd-9955-6df857be8536&redir=https%3A%2F%2Fsync.tidaltv.com%2Fgenericusersync.ash
x%3Fdpid%3D1262
https://sync.tidaltv.com/genericusersync.ashx?dpid=1262
https://tags.bluekai.com/site/5379?id=14a5004f-d7ab-4fdd-9955-6df857be8536&redir=https%3A%2F%2Fsync.tidaltv.com%2Fgenericusersync.ashx%3Fdpi
d%3D1263
https://sync.tidaltv.com/genericusersync.ashx?dpid=1263
https://loadm.exelator.com/load/?p=204&g=281&buid=14a5004f-d7ab-4fdd-9955-6df857be8536&j=0&ru=https%3A%2F%2Fsync.tidaltv.com%2Fgenericuse
rsync.ashx%3Fdpid%3D1265
https://load77.exelator.com/pixel.gif

Remove the following redirect chain if possible:

https://aa.agkn.com/adscores/g.pixel?sid=9211578608&_g=906&ex=126659f99628a371d9bb252b16c512cc
http://loadus.exelator.com/load/?p=115&j=0&g=906&segment=000&ag=&gd=&zip=&sk=&N1=&N2=&N3=&N4=&N10=&N15=&N20=&N21=&N22=&N23=&N
24=&N25=&N29=
http://dpm.demdex.net/ibs:dpid=3&dpuuid=126659f99628a371d9bb252b16c512cc&redir=http%3A%2F%2Floadm.exelator.com%2Fload%2F%3Fp%3D204
%26g%3D091%26j%3D0%26bi%3D%24%7BDD_UUID%7D
http://dpm.demdex.net/demconf.jpg?et:ibs%7cdata:dpid=3&dpuuid=126659f99628a371d9bb252b16c512cc&redir=http%3A%2F%2Floadm.exelator.com%2
Fload%2F%3Fp%3D204%26g%3D091%26j%3D0%26bi%3D%24%7BDD_UUID%7D
http://loadm.exelator.com/load/?p=204&g=091&j=0&bi=21987668987973652791441872426882968016
http://load77.exelator.com/pixel.gif

Remove the following redirect chain if possible:

https://aa.agkn.com/adscores/g.pixel?sid=9212293468
https://match.adsrvr.org/track/cmf/generic?ttd_pid=adadvisor&ttd_tpi=1
https://match.adsrvr.org/track/cmb/generic?ttd_pid=adadvisor&ttd_tpi=1
https://adadvisor.net/adscores/g.pixel?sid=9312270958&tdid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d
https://aa.agkn.com/adscores/g.pixel?sid=9312270958&tdid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&&bounced=1
https://d.agkn.com/pixel/2610/?che=1526366693&sk=263790302691003053765&pd=&puid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d

Remove the following redirect chain if possible:

https://idsync.rlcdn.com/382416.gif?partner_uid=ce6218ad76692cd9ac9db8c2fb46ad71
https://idsync.rlcdn.com/1000.gif?memo=CNCrFxIrCicIARCAFRogY2U2MjE4YWQ3NjY5MmNkOWFjOWRiOGMyZmI0NmFkNzEQABoNCPKD6tcFEgUI6AcQA
A

Analyze your site at https://gtmetrix.com Page 6 of 85


PageSpeed Recommendations

https://pippio.com/api/sync?pid=5324&_=2
https://cm.g.doubleclick.net/pixel?google_nid=pippio_dmp&google_cm&google_no_sc&m=CMwpGgwI84Pq1wUSBAgCEAA
https://pippio.com/api/sync/ddp?pid=2&m=CMwpGgwI84Pq1wUSBAgCEAA&google_gid=CAESEEGlgMRZXdKNH2ndaEDmVOI&google_cver=1
https://pixel.sojern.com/idSync/sync?pid=arbor

Remove the following redirect chain if possible:

http://match.adsrvr.org/track/cmf/generic?ttd_pid=pubmatic&ttd_tpi=1
http://image2.pubmatic.com/AdServer/Pug?vcode=bz0yJnR5cGU9MSZjb2RlPTI4NDkmdGw9MTI5NjAw&piggybackCookie=c9dbf2f9-b56c-44e6-bc86-375c4
9ff668d
https://image8.pubmatic.com/AdServer/ImgSync?sec=1
https://image4.pubmatic.com/AdServer/SPug?p=156759&pr=https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D63%26partnerUserId%3D68B5ECA6-1
E22-44CD-9CA1-84863B95FD63
https://cs.lkqd.net/cs?partnerId=63&partnerUserId=68B5ECA6-1E22-44CD-9CA1-84863B95FD63

Remove the following redirect chain if possible:

https://ib.adnxs.com/getuidnb?https://loadm.exelator.com/load/?p=204&g=011&bi=$UID&j=0
https://loadm.exelator.com/load/?p=204&g=011&bi=3609532715836771276&j=0
https://loadm.exelator.com/load/?p=204&g=510&j=0
https://e.nexac.com/e/exelate_sync.xgi?na_exid=126659f99628a371d9bb252b16c512cc
https://x.dlx.addthis.com/e/exelate_sync.xgi?na_exid=126659f99628a371d9bb252b16c512cc

Remove the following redirect chain if possible:

https://image8.pubmatic.com/AdServer/ImgSync?p=156759&pu=https%3A%2F%2Fimage4.pubmatic.com%2FAdServer%2FSPug%3Fp%3D156759%26pr
%3Dhttps%253A%252F%252Fcs.lkqd.net%252Fcs%253FpartnerId%253D63%2526partnerUserId%253D%2523PMUID
https://image8.pubmatic.com/AdServer/ImgSync?p=156759&pu=https%3A%2F%2Fimage4.pubmatic.com%2FAdServer%2FSPug%3Fp%3D156759%26pr
%3Dhttps%253A%252F%252Fcs.lkqd.net%252Fcs%253FpartnerId%253D63%2526partnerUserId%253D%2523PMUID&rdf=1
http://cm.g.doubleclick.net/pixel?google_nid=pubmatic&google_cm&google_sc
http://image2.pubmatic.com/AdServer/Pug?vcode=bz0yJnR5cGU9MSZjb2RlPTIxNzcmdGw9MTI5NjAw&piggybackCookie=CAESEAdZGgYgfATnAY-opK4xoyE
&google_cver=1
https://image8.pubmatic.com/AdServer/ImgSync?sec=1

Remove the following redirect chain if possible:

https://odr.mookie1.com/t/v2/sync?tagid=V2_4265&src.visitorId=3609532715836771276
https://match.adsrvr.org/track/cmf/generic?ttd_pid=mookie-ps&ttd_tpi=11459409254351735738
https://odr.mookie1.com/t/v2/sync?tagid=V2_2087&src.visitorId=c9dbf2f9-b56c-44e6-bc86-375c49ff668d
https://cm.g.doubleclick.net/pixel?google_nid=xaxis_dmp&google_hm=MTE0NTk0MDkyNTQzNTE3MzU3Mzg&google_cm
https://odr.mookie1.com/t/v2/sync?tagid=V2_2739&src.visitorId=CAESEN-liHBbbpDjQSnJOplfkW4&google_cver=1

Remove the following redirect chain if possible:

https://pixel.tapad.com/idsync/ex/receive?partner_id=1903&partner_device_id=sUpB1hP3BG4&partner_url=https%3A%2F%2Fcs.lkqd.net%2Fcs%3Fpartner
Id%3D4%26partnerUserId%3D${TA_DEVICE_ID}
https://pixel.tapad.com/idsync/ex/receive/check?partner_id=1903&partner_device_id=sUpB1hP3BG4&partner_url=https%3A%2F%2Fcs.lkqd.net%2Fcs%3F
partnerId%3D4%26partnerUserId%3D${TA_DEVICE_ID}
https://match.adsrvr.org/track/cmf/generic?ttd_pid=tapad&ttd_tpi=1&ttd_puid=799e6b71-580b-11e8-98f9-0a580a4c010a%252Chttps%253A%252F%252Fc
s.lkqd.net%252Fcs%253FpartnerId%253D4%2526partnerUserId%253D799e6b71-580b-11e8-98f9-0a580a4c010a
https://pixel.tapad.com/idsync/ex/receive?partner_id=1830&partner_device_id=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&ttd_puid=799e6b71-580b-11e8-98f
9-0a580a4c010a%2Chttps%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D4%26partnerUserId%3D799e6b71-580b-11e8-98f9-0a580a4c010a
https://cs.lkqd.net/cs?partnerId=4&partnerUserId=799e6b71-580b-11e8-98f9-0a580a4c010a

Remove the following redirect chain if possible:

https://sync.mathtag.com/sync/img?mt_exid=46&redir=%2F%2Fx.bidswitch.net%2Fsync%3Fdsp_id%3D80%26user_id%3D%5BUUID%5D%26expires%3D
30%26ssp%3Dlkqd%26bsw_param%3D17127dda-32bb-42f2-9997-46aef92d6737
https://x.bidswitch.net/sync?dsp_id=80&user_id=30c15afa-5048-4600-a17d-e2a85c24ab94&expires=30&ssp=lkqd&bsw_param=17127dda-32bb-42f2-999
7-46aef92d6737
https://cs.lkqd.net/cs?partnerId=12&partnerUserId=17127dda-32bb-42f2-9997-46aef92d6737&redirect=%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D43%2
6partnerUserId%3D17127dda-32bb-42f2-9997-46aef92d6737%26redirect%3D%252F%252Fcs.lkqd.net%252Fcs%253FpartnerId%253D46%2526partner
UserId%253D17127dda-32bb-42f2-9997-46aef92d6737
https://cs.lkqd.net/cs?partnerId=43&partnerUserId=17127dda-32bb-42f2-9997-46aef92d6737&redirect=//cs.lkqd.net/cs?partnerId%3D46%26partnerUserId
%3D17127dda-32bb-42f2-9997-46aef92d6737
https://cs.lkqd.net/cs?partnerId=46&partnerUserId=17127dda-32bb-42f2-9997-46aef92d6737

Remove the following redirect chain if possible:

https://aa.agkn.com/adscores/g.pixel?sid=9212293438
https://pixel.mathtag.com/sync/img?redir=https://aa.agkn.com/adscores/g.pixel%3Fsid%3D9312292258%26mt%3D%5BMM_UUID%5D

Analyze your site at https://gtmetrix.com Page 7 of 85


PageSpeed Recommendations

https://aa.agkn.com/adscores/g.pixel?sid=9312292258&mt=30c15afa-5048-4600-a17d-e2a85c24ab94
https://pixel.mathtag.com/sync/img/?mt_exid=10009&mt_exuid=263790302691003053765

Remove the following redirect chain if possible:

https://ads.avocet.io/getuid?url=%2F%2Fx.bidswitch.net%2Fsync%3Fdsp_id%3D59%26user_id%3D%7B%7BUUID%7D%7D%26ssp%3Daol%26bsw_par
am%3D17127dda-32bb-42f2-9997-46aef92d6737
https://ads.avocet.io/getuid?bounce=true&url=%2F%2Fx.bidswitch.net%2Fsync%3Fdsp_id%3D59%26user_id%3D%7B%7BUUID%7D%7D%26ssp%3Dao
l%26bsw_param%3D17127dda-32bb-42f2-9997-46aef92d6737
https://x.bidswitch.net/sync?dsp_id=59&user_id=e08492d1-0db3-413b-a46e-256972e1869f&ssp=aol&bsw_param=17127dda-32bb-42f2-9997-46aef92d6
737
https://pixel.advertising.com/ups/55859/sync?uid=17127dda-32bb-42f2-9997-46aef92d6737&_origin=1

Remove the following redirect chain if possible:

https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;loc=100;target=_blank;misc=%7Brandom%7D&_ADTI
ME_&$RANDOM&&;rdclick=
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;cfp=1;rndc=1526366694;loc=100;target=_blank;misc=
%7Brandom%7D&_ADTIME_&$RANDOM&&;rdclick=
https://adserver.adtech.advertising.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;rdhost=adserver.adtechus.com;cfp=1;rndc=1
526366695;loc=100;target=_blank;misc=%7Brandom%7D&_ADTIME_&$RANDOM&&;rdclick=
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd94659c;cfp
=1;rndc=1526366695;loc=100;target=_blank;misc=%7Brandom%7D&_ADTIME_&$RANDOM&&;rdclick=

Remove the following redirect chain if possible:

https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;loc=100;target=_blank;misc=a6bb5ad6&_ADTIME_&$
RANDOM&&;rdclick=
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;cfp=1;rndc=1526366694;loc=100;target=_blank;misc=
a6bb5ad6&_ADTIME_&$RANDOM&&;rdclick=
https://adserver.adtech.advertising.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;rdhost=adserver.adtechus.com;cfp=1;rndc=1
526366694;loc=100;target=_blank;misc=a6bb5ad6&_ADTIME_&$RANDOM&&;rdclick=
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd94659c;cfp
=1;rndc=1526366695;loc=100;target=_blank;misc=a6bb5ad6&_ADTIME_&$RANDOM&&;rdclick=

Remove the following redirect chain if possible:

https://c.bing.com/c.gif?anx_uid=3609532715836771276&Red3=MSAN_pd
https://m.adnxs.com/seg?add=5159620&redir=https%3A%2F%2Fm.adnxs.com%2Fmapuid%3Fmember%3D226%26user%3D282CD077347D6B042529
DB87307D68CB%3B%26redir%3Dhttps%253A%252F%252Fm.adnxs.com%252Fmapuid%253Fmember%253D280%2526user%253D282CD077347D6B
042529DB87307D68CB%253B
https://m.adnxs.com/mapuid?member=226&user=282CD077347D6B042529DB87307D68CB;&redir=https%3A%2F%2Fm.adnxs.com%2Fmapuid%3Fme
mber%3D280%26user%3D282CD077347D6B042529DB87307D68CB%3B
https://m.adnxs.com/mapuid?member=280&user=282CD077347D6B042529DB87307D68CB;

Remove the following redirect chain if possible:

https://idsync.rlcdn.com/397416.gif?partner_uid=126659f99628a371d9bb252b16c512cc
https://idsync.rlcdn.com/1000.gif?memo=COigGBIrCicIARDaFRogMTI2NjU5Zjk5NjI4YTM3MWQ5YmIyNTJiMTZjNTEyY2MQABoNCOWD6tcFEgUI6AcQAA
https://cm.g.doubleclick.net/pixel?google_nid=epsilon&google_cm
https://idsync.rlcdn.com/362358.gif?google_gid=CAESEAtpFF_E3T_nBSazuRGJnRs&google_cver=1

Remove the following redirect chain if possible:

https://idsync.rlcdn.com/405716.gif?partner_uid=CmUMKVr6gewN0gShBgJGAg%3D%3D
https://idsync.rlcdn.com/1000.gif?memo=CNThGBIkCiAIARCCowEaGENtVU1LVnI2Z2V3TjBnU2hCZ0pHQWc9PRAAGg0I74Pq1wUSBQjoBxAA
https://sync.mathtag.com/sync/img?mt_exid=10017&redir=https%3A%2F%2Fidsync.rlcdn.com%2F47154.gif%3Fserved_by%3Devergreen%26partner_uid%
3D%5BMM_UUID%5D
https://idsync.rlcdn.com/47154.gif?served_by=evergreen&partner_uid=30c15afa-5048-4600-a17d-e2a85c24ab94

Remove the following redirect chain if possible:

https://loadm.exelator.com/load/?p=191&g=122&j=r&ru=https://d.turn.com/r/dd/id/L2NzaWQvMS9jaWQvMzgzMzE4OS90LzI/dpuid/126659f99628a371d9bb25
2b16c512cc/url/https%3A%2F%2Floadm.exelator.com%2Fload%2F%3Fp%3D204%26g%3D121%26buid%3D%24!%7BTURN_UUID%7D%26j%3D0%20
https://d.turn.com/r/dd/id/L2NzaWQvMS9jaWQvMzgzMzE4OS90LzI/dpuid/126659f99628a371d9bb252b16c512cc/url/https://loadm.exelator.com/load/?p=204&
g=121&buid=$!{TURN_UUID}&j=0
https://loadm.exelator.com/load/?p=204&g=121&buid=8643648681422002544&j=0
https://load77.exelator.com/pixel.gif

Remove the following redirect chain if possible:

Analyze your site at https://gtmetrix.com Page 8 of 85


PageSpeed Recommendations

https://match.adsrvr.org/track/cmf/generic?ttd_pid=bluekai
https://tags.bluekai.com/site/5386?id=c9dbf2f9-b56c-44e6-bc86-375c49ff668d
https://ib.adnxs.com/getuid?https://stags.bluekai.com/site/3085?id=
https://stags.bluekai.com/site/3085?id=

Remove the following redirect chain if possible:

https://p.adsymptotic.com/d/px/?_pid=15441&_psign=da5d02ef8273538a4161c1420ad1bb15&_redirect=https%3A%2F%2Fmatch.adsrvr.org%2Ftrack%2Fc
mf%2Fgeneric%3Fttd_pid%3Ddrawbridge%26ttd_tpi%3D1%26ttd_puid%3Dhttps%25253A%25252F%25252Fcs.lkqd.net%25252Fcs%25253FpartnerId%2
5253D36%252526partnerUserId%25253D%252524%25257BUUID%25257D
https://match.adsrvr.org/track/cmf/generic?ttd_pid=drawbridge&ttd_tpi=1&ttd_puid=https%253A%252F%252Fcs.lkqd.net%252Fcs%253FpartnerId%253D36
%2526partnerUserId%253D%2524%257BUUID%257D
https://p.adsymptotic.com/d/px?_pid=12700&_psign=2b35364295063620b5b0f68f19e8e09e&_puuid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&ttd_puid=htt
ps%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D36%26partnerUserId%3D%24%7BUUID%7D&_rand=1528958701
https://cs.lkqd.net/cs?partnerId=36&partnerUserId=8c0580ce0ae2528e0982e95b4c73cebe

Remove the following redirect chain if possible:

https://pixel-a.sitescout.com/dmp/pixelSync?nid=48
https://dpm.demdex.net/ibs:dpid=82530&dpuuid=52af87df-3f8d-4bcd-bc21-1d826dc889c2&redir=https%3A%2F%2Fpixel.tapad.com%2Fidsync%2Fex%2Fp
ush%3Fpartner_id%3D2499%26partner_device_id%3D52af87df-3f8d-4bcd-bc21-1d826dc889c2%26partner_url%3Dhttps%253A%252F%252Fdsum-sec.c
asalemedia.com%252Frum%253Fcm_dsp_id%253D64%2526external_user_id%253D52af87df-3f8d-4bcd-bc21-1d826dc889c2%2526expiration%253D1
528958702
https://pixel.tapad.com/idsync/ex/push?partner_id=2499&partner_device_id=52af87df-3f8d-4bcd-bc21-1d826dc889c2&partner_url=https%3A%2F%2Fdsum
-sec.casalemedia.com%2Frum%3Fcm_dsp_id%3D64%26external_user_id%3D52af87df-3f8d-4bcd-bc21-1d826dc889c2%26expiration%3D1528958702
https://dsum-sec.casalemedia.com/rum?cm_dsp_id=64&external_user_id=52af87df-3f8d-4bcd-bc21-1d826dc889c2&expiration=1528958702

Remove the following redirect chain if possible:

https://ps.eyeota.net/pixel?pid=r8hrb20&t=gif
https://ml314.com/utsync.ashx?eid=50052&et=0&fp=2u0KbvOiGwbWW85vmkpOqAmzUpulhS__Ky4oRf5Gttl4&return=https%3A%2F%2Fps.eyeota.net%2F
match%3Fbid%3Dr8hrb20%26uid%3Dnil
https://ml314.com/csync.ashx?fp=2u0KbvOiGwbWW85vmkpOqAmzUpulhS__Ky4oRf5Gttl4&person_id=5978151422914825543&eid=50052&return=https%
3a%2f%2fps.eyeota.net%2fmatch%3fbid%3dr8hrb20%26uid%3dnil
https://ps.eyeota.net/match?bid=r8hrb20&uid=nil

Remove the following redirect chain if possible:

https://sync-eu.exe.bid/bidswitch/sync?sub1=aol
https://sync-eu.exe.bid/bidswitch/sync?sub1=aol&session_tpt=eyJoZWFkZXJzIjp7InJlZmVyZXIiOlsiaHR0cHM6Ly93d3cuZ2lybHNhc2tndXlzLmNvbS9vdGhlci9
xMjE5ODE4MS1kby15b3Uta25vdy13aGF0LWJpdGNvaW4taXMtaGF2ZS15b3UtZXZlci11c2VkLWJpdGNvaW4tYmVmb3JlIl19fQ
https://x.bidswitch.net/sync?dsp_id=140&user_id=67feaee7-656f-446c-90a5-fcbeb4e37ffb&expires=14&ssp=aol
https://pixel.advertising.com/ups/55859/sync?uid=17127dda-32bb-42f2-9997-46aef92d6737&_origin=1

Remove the following redirect chain if possible:

https://tag.clrstm.com/sync?ssp=bidswitch&bidswitch_ssp_id=lkqd
https://tag.clrstm.com/ul_cb/sync?ssp=bidswitch&bidswitch_ssp_id=lkqd
https://x.bidswitch.net/sync?dsp_id=26&expires=14&user_id=5c422e40-cd56-4b92-8dca-5c0bb3628e1c&ssp=lkqd
https://cs.lkqd.net/cs?partnerId=12&partnerUserId=17127dda-32bb-42f2-9997-46aef92d6737&redirect=%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D43%2
6partnerUserId%3D17127dda-32bb-42f2-9997-46aef92d6737%26redirect%3D%252F%252Fcs.lkqd.net%252Fcs%253FpartnerId%253D46%2526partner
UserId%253D17127dda-32bb-42f2-9997-46aef92d6737

Remove the following redirect chain if possible:

https://x.bidswitch.net/sync?ssp=aol
https://px.adhigh.net/p/cm/bsw?bidswitch_ssp_id=aol
https://x.bidswitch.net/sync?dsp_id=9&user_id=&expires=30&ssp=aol
https://pixel.advertising.com/ups/55859/sync?uid=17127dda-32bb-42f2-9997-46aef92d6737&_origin=1

Remove the following redirect chain if possible:

https://a.tribalfusion.com/i.match?p=b20&redirect=https%3A%2F%2Fdsum-sec.casalemedia.com/crum%3Fcm_dsp_id%3D131%26external_user_id%3D
%24TF_USER_ID_ENC%24&cm_dsp_id=131&cm_callback_url=https%3A%2F%2Fdsum-sec.casalemedia.com%2Fcrum&cm_user_id=WvqB59HM7SUA
ACpofvsAAAAt
https://a.tribalfusion.com/z/i.match?p=b20&redirect=https%3A%2F%2Fdsum-sec.casalemedia.com/crum%3Fcm_dsp_id%3D131%26external_user_id%3
D%24TF_USER_ID_ENC%24&cm_dsp_id=131&cm_callback_url=https%3A%2F%2Fdsum-sec.casalemedia.com%2Fcrum&cm_user_id=WvqB59HM7SU
AACpofvsAAAAt
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=131&external_user_id=18072662445631213750

Remove the following redirect chain if possible:

Analyze your site at https://gtmetrix.com Page 9 of 85


PageSpeed Recommendations

https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cors=yes;width=405;height=228;referring_url=https%3A%2F%2Fwww.girlsask
guys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2Fconfig.playwire.com%2F1
020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20space.%20What%20does%20t
his%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.
0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.3
6;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=263206184142299;time=1526366721;headerbids=amazon;keywords=;categories=Ent
ertainment;acao=*
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cfp=1;rndc=1526366720;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2F
config.playwire.com%2F1020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20spac
e.%20What%20does%20this%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversi
on=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.32
02.94%20Safari%2F537.36;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=263206184142299;time=1526366721;headerbids=amazon;
keywords=;categories=Entertainment;acao=*
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cfp=1;rndc=1526366720;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2F
config.playwire.com%2F1020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20spac
e.%20What%20does%20this%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversi
on=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.32
02.94%20Safari%2F537.36;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=263206184142299;time=1526366721;headerbids=amazon;
keywords=;categories=Entertainment;acao=*

Remove the following redirect chain if possible:

https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cors=yes;width=405;height=228;referring_url=https%3A%2F%2Fwww.girlsask
guys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2Fconfig.playwire.com%2F1
020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20space.%20What%20does%20t
his%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.
0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.3
6;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=307581884561604;time=1526366720;headerbids=amazon;keywords=;categories=Ent
ertainment;acao=*
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cfp=1;rndc=1526366719;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2F
config.playwire.com%2F1020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20spac
e.%20What%20does%20this%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversi
on=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.32
02.94%20Safari%2F537.36;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=307581884561604;time=1526366720;headerbids=amazon;
keywords=;categories=Entertainment;acao=*
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cfp=1;rndc=1526366719;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2F
config.playwire.com%2F1020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20spac
e.%20What%20does%20this%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversi
on=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.32
02.94%20Safari%2F537.36;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=307581884561604;time=1526366720;headerbids=amazon;
keywords=;categories=Entertainment;acao=*

Remove the following redirect chain if possible:

https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cors=yes;width=405;height=228;referring_url=https%3A%2F%2Fwww.girlsask
guys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2Fconfig.playwire.com%2F1
020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20space.%20What%20does%20t
his%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.
0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.3
6;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=642306899275547;time=1526366707;headerbids=amazon;keywords=;categories=Ent
ertainment;acao=*
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cfp=1;rndc=1526366706;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2F
config.playwire.com%2F1020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20spac
e.%20What%20does%20this%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversi
on=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.32
02.94%20Safari%2F537.36;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=642306899275547;time=1526366707;headerbids=amazon;
keywords=;categories=Entertainment;acao=*
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cfp=1;rndc=1526366706;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2F
config.playwire.com%2F1020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20spac
e.%20What%20does%20this%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversi
on=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.32
02.94%20Safari%2F537.36;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=642306899275547;time=1526366707;headerbids=amazon;
keywords=;categories=Entertainment;acao=*

Remove the following redirect chain if possible:

Analyze your site at https://gtmetrix.com Page 10 of 85


PageSpeed Recommendations

https://adserver-us.adtech.advertising.com/pubapi/3.0/10334.1/4758003/0/1/ADTECH;v=2;cmd=bid;cors=yes;alias=160f7c8cf13922a;bidfloor=0.15;misc=15
26366692189
https://adserver-us.adtech.advertising.com/pubapi/3.0/10334.1/4758003/0/1/ADTECH;cfp=1;rndc=1526366692;v=2;cmd=bid;cors=yes;alias=160f7c8cf1392
2a;bidfloor=0.15;misc=1526366692189
https://adserver-us.adtech.advertising.com/pubapi/3.0/10334.1/4758003/0/1/ADTECH;cfp=1;rndc=1526366692;v=2;cmd=bid;cors=yes;alias=160f7c8cf1392
2a;bidfloor=0.15;misc=1526366692189

Remove the following redirect chain if possible:

https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437746%7C0%7C170%7CADTECH;loc=100;target=_blank;misc=abbd5211&_ADTIME_&$
RANDOM&&;rdclick=
https://adserver.adtech.advertising.com/addyn%7C3.0%7C10334.1%7C4437746%7C0%7C170%7CADTECH;rdhost=adserver.adtechus.com;cfp=1;rndc=1
526366695;loc=100;target=_blank;misc=abbd5211&_ADTIME_&$RANDOM&&;rdclick=
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437746%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd94659c;cfp
=1;rndc=1526366695;loc=100;target=_blank;misc=abbd5211&_ADTIME_&$RANDOM&&;rdclick=

Remove the following redirect chain if possible:

https://adt.pxl.ace.advertising.com/cfcm.ashx?providerId=1010&extMatch=1&rcode=1
https://adt.pxl.ace.advertising.com/cfcm.ashx?providerId=1010&extMatch=1&rcode=1&ctst=1
https://pixel.advertising.com/ups/55937/sync?uid=RUIDeo8i3erygi3k6oswuqewcee694w83c6mmxkmrkwja6guxggfcnpo====&_origin=1

Remove the following redirect chain if possible:

https://casale-match.dotomi.com/casale/match?cm_dsp_id=65&cm_callback_url=https%3A%2F%2Fdsum-sec.casalemedia.com%2Fcrum&cm_user_id=
WvqB59HM7SUAACpofvsAAAAt
https://casale-match.dotomi.com/casale/match?dtm_test=736d91089957093c&cm_callback_url=https%3A%2F%2Fdsum-sec.casalemedia.com%2Fcrum
&cm_dsp_id=65&cm_user_id=WvqB59HM7SUAACpofvsAAAAt
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=65&expiration=1526453102&external_user_id=AAADRyqqDGcPbwNht4zjAAAAAAA&cm_user_id=Wv
qB59HM7SUAACpofvsAAAAt

Remove the following redirect chain if possible:

https://cm.adgrx.com/bridge?AG_PID=casale&AG_SETCOOKIE
https://cm.adgrx.com/bridge.gif?AG_PID=casale
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=41&external_user_id=7e912f3c-580b-11e8-9746-b5eb1b0375cb

Remove the following redirect chain if possible:

https://cm.g.doubleclick.net/pixel?google_nid=exelate&google_cm&google_sc
https://loadm.exelator.com/load/?p=204&g=001&bi=&j=0&google_gid=CAESEDcfXMyjF7wvrEOS0lY3dUM&google_cver=1
https://load77.exelator.com/pixel.gif

Remove the following redirect chain if possible:

https://cookie.brealtime.com/getuid?https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D60%26partnerUserId%3D%24UID
https://secure.adnxs.com/getuid?https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D60%26partnerUserId%3D%24UID
https://cs.lkqd.net/cs?partnerId=60&partnerUserId=3609532715836771276

Remove the following redirect chain if possible:

https://loadus.exelator.com/load/?j=0&p=409&g=600&buid2=CmUMKVr6gewN0gShBgJGAg%3D%3D&random=1526366702825
https://sync.crwdcntrl.net/map/c=3859/tp=VISD/?https://loadm.exelator.com/load/?p=204&g=260&buid=${profile_id}
https://loadm.exelator.com/load/?p=204&g=260&buid=ce6218ad76692cd9ac9db8c2fb46ad71

Remove the following redirect chain if possible:

https://match.adsrvr.org/track/cmf/generic?ttd_pid=exelate
https://loadm.exelator.com/load/?p=204&g=460&buid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&j=0
https://load77.exelator.com/pixel.gif

Remove the following redirect chain if possible:

https://match.prod.bidr.io/cookie-sync/ie
https://match.prod.bidr.io/cookie-sync/ie?_bee_ppp=1
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=130&external_user_id=AAO9FE619QQAAHnNWdD9Bw&expiration=1527576302

Remove the following redirect chain if possible:

https://p.rfihub.com/cm?in=1&pub=224&getuid=https%3A%2F%2Fsimage2.pubmatic.com%2FAdServer%2FPug%3Fvcode%3Dbz0yJnR5cGU9MSZjb2RlPT

Analyze your site at https://gtmetrix.com Page 11 of 85


PageSpeed Recommendations

I3MzkmdGw9MTI5NjAw%26piggybackCookie%3D%24UID
https://simage2.pubmatic.com/AdServer/Pug?vcode=bz0yJnR5cGU9MSZjb2RlPTI3MzkmdGw9MTI5NjAw&piggybackCookie=2810316537904023968&r=
https://image8.pubmatic.com/AdServer/ImgSync?sec=1

Remove the following redirect chain if possible:

https://pixel-a.sitescout.com/connectors/bluekai/usersync?redir=https%3A%2F%2Ftags.bluekai.com%2Fsite%2F17724%3Fid%3D%7BuserId%7D
https://tags.bluekai.com/site/17724?id=52af87df-3f8d-4bcd-bc21-1d826dc889c2
https://bk.addthis.com/site/55122?bku=oo999mSOIkod9A6o

Remove the following redirect chain if possible:

https://rp.gwallet.com/r1/cm/p104
https://rp.gwallet.com/r1/cm/p104?check_uid_cookie
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=107&external_user_id=AB-l3YmnQ7ovql0kefr5sqG8w&expiration=

Remove the following redirect chain if possible:

https://rtb.openx.net/sync/dds
https://cm.g.doubleclick.net/pixel?google_nid=open&google_hm=KE5gahoygVe4k3xDRuY-DQ==&ox_sc=1&ox_init=1
https://rtb.openx.net/sync/dds?ox_sc=1&ox_init=1

Remove the following redirect chain if possible:

https://rtb.openx.net/sync/yahoo
https://ads.yahoo.com/cms/v1?nwid=10001117459&eid=85e443cc-7630-004e-1a55-d176406e7855&sigv=1&esig=1~4bca6f783c395bc645d7167bf0948c9
e7d2c3432
https://cookiex.ngd.yahoo.com/ack?xid=6GAnSd6H.YuO9N4R0TtGZA7t&eid=85e443cc-7630-004e-1a55-d176406e7855

Remove the following redirect chain if possible:

https://sync-tm.everesttech.net/upi/pid/1477?redir=https%3A//dmx.districtm.io/s/10016/$%7BTM_USER_ID%7D
https://sync-tm.everesttech.net/ct/upi/pid/1477?redir=https%3A//dmx.districtm.io/s/10016/$%7BTM_USER_ID%7D&_test=WvqB5wAAAKNI-RAl
https://dmx.districtm.io/s/10016/WvqB5wAAAKNI-RAl&_test=WvqB5wAAAKNI-RAl

Remove the following redirect chain if possible:

https://tags.bluekai.com/site/29537?limit=1&id=2dU7hRJCFkSIl3HrZJLQPGv7fdq36Th16vvfM5KJ0-pk
https://sync-tm.everesttech.net/upi/pid/2j4ke5f0?redir=https%3A%2F%2Ftags.bluekai.com%2Fsite%2F4413%3Fid%3D%24%7BUSER_ID%7D%26r=123
https://tags.bluekai.com/site/4413?id=WvqB5wAAAKNI-RAl&r=123

Remove the following redirect chain if possible:

https://token.rubiconproject.com/token?pid=2974&pt=n&a=1
https://pr-bh.ybp.yahoo.com/sync/rubicon/Qql/KSyp6i4yVdNqev2GPsn5EUdSAgOZEtemQ7w0kco=?csrc=
https://pixel.rubiconproject.com/tap.php?v=31950&nid=2974&put=4959924899106907430

Remove the following redirect chain if possible:

https://track.eyeviewads.com/sync/lkqd
https://pixeltrack.eyeviewads.com/check?r=https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D42%26partnerUserId%3D98512229c20e55aaf59f8afe58e
430a4&vndr=lkqd
https://cs.lkqd.net/cs?partnerId=42&partnerUserId=98512229c20e55aaf59f8afe58e430a4&sticky=true

Remove the following redirect chain if possible:

https://usync.aws.rubiconproject.com/yahoo-brx
https://ads.yahoo.com/cms/v1?nwid=10000010181&eid=JH7BBHEJ-1E-D5Z0&sigv=1&esig=2~006c5d85a08179ae260115e48d86a4ae180d8af8
https://cookiex.ngd.yahoo.com/ack?xid=uWXVyE90yae4JhHI3UpEg1pG&eid=JH7BBHEJ-1E-D5Z0

Remove the following redirect chain if possible:

https://ad.turn.com/r/cs?pid=21
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=4&external_user_id=8643648681422002544

Remove the following redirect chain if possible:

https://ad.turn.com/r/cs?pid=6
https://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=8643648681422002544&expires=60

Analyze your site at https://gtmetrix.com Page 12 of 85


PageSpeed Recommendations

Remove the following redirect chain if possible:

https://ad.turn.com/r/cs?pid=9
https://us-u.openx.net/w/1.0/sd?id=537073061&val=8643648681422002544

Remove the following redirect chain if possible:

https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cfp=1;rndc=1526366707;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2F
config.playwire.com%2F1020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20spac
e.%20What%20does%20this%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversi
on=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.32
02.94%20Safari%2F537.36;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=642306899275547;time=1526366707;headerbids=amazon;
keywords=;categories=Entertainment;acao=*
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cfp=1;rndc=1526366707;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2F
config.playwire.com%2F1020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20spac
e.%20What%20does%20this%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversi
on=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.32
02.94%20Safari%2F537.36;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=642306899275547;time=1526366707;headerbids=amazon;
keywords=;categories=Entertainment;acao=*

Remove the following redirect chain if possible:

https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cfp=1;rndc=1526366721;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2F
config.playwire.com%2F1020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20spac
e.%20What%20does%20this%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversi
on=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.32
02.94%20Safari%2F537.36;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=263206184142299;time=1526366721;headerbids=amazon;
keywords=;categories=Entertainment;acao=*
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cfp=1;rndc=1526366721;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2F
config.playwire.com%2F1020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20spac
e.%20What%20does%20this%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversi
on=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.32
02.94%20Safari%2F537.36;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=263206184142299;time=1526366721;headerbids=amazon;
keywords=;categories=Entertainment;acao=*

Remove the following redirect chain if possible:

https://adserver-us.adtech.advertising.com/pubapi/3.0/10334.1/4758003/0/1/ADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd94659c;cfp=1;rndc=15263
66692;v=2;cmd=bid;cors=yes;alias=160f7c8cf13922a;bidfloor=0.15;misc=1526366692189
https://adserver-us.adtech.advertising.com/pubapi/3.0/10334.1/4758003/0/1/ADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd94659c;cfp=1;rndc=15263
66692;v=2;cmd=bid;cors=yes;alias=160f7c8cf13922a;bidfloor=0.15;misc=1526366692189

Remove the following redirect chain if possible:

https://aol-match.dotomi.com/match/bounce/current?networkId=60&version=1&nuid={{APID}}&rurl=https://pixel.advertising.com/ups/55853/sync?uid=$UID&
_origin=0
https://aol-match.dotomi.com/match/bounce/current?dtm_test=2aa1f67e64cc062a&networkId=60&version=1&nuid=%7B%7BAPID%7D%7D&rurl=https%3A
%2F%2Fpixel.advertising.com%2Fups%2F55853%2Fsync%3Fuid%3D%24UID&_origin=0

Remove the following redirect chain if possible:

https://ap.lijit.com/www/delivery/fpi.js?z=316485&width=300&height=250
https://ap.lijit.com/www/delivery/js/fpi.js

Remove the following redirect chain if possible:

https://ap.lijit.com/www/delivery/fpi.js?z=491736&width=300&height=250
https://ap.lijit.com/www/delivery/js/fpi.js

Remove the following redirect chain if possible:

https://ap.lijit.com/www/delivery/fpi.js?%7Brandom%7D&366695713&$RANDOM&%%CACHEBUSTER%%&z=495079&width=300&height=250
https://ap.lijit.com/www/delivery/js/fpi.js

Remove the following redirect chain if possible:

Analyze your site at https://gtmetrix.com Page 13 of 85


PageSpeed Recommendations

https://ap.lijit.com/www/delivery/fpi.js?%7Brandom%7D&366695758&$RANDOM&%%CACHEBUSTER%%&z=495077&width=300&height=250
https://ap.lijit.com/www/delivery/js/fpi.js

Remove the following redirect chain if possible:

https://ap.lijit.com/www/delivery/fpi.js?%7Brandom%7D&366695799&$RANDOM&%%CACHEBUSTER%%&z=495077&width=300&height=250
https://ap.lijit.com/www/delivery/js/fpi.js

Remove the following redirect chain if possible:

https://bcp.crwdcntrl.net/map/c=9380/tp=MGID/tpid=i4eR1FzfRZIn
https://bcp.crwdcntrl.net/map/ct=y/c=9380/tp=MGID/tpid=i4eR1FzfRZIn

Remove the following redirect chain if possible:

https://bh.contextweb.com/bh/rtset?pid=561322&ev=1&rurl=https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D53%26partnerUserId%3D%25%25VGUI
D%25%25
https://cs.lkqd.net/cs?partnerId=53&partnerUserId=kao5L06XcZwo&ev=1&pid=561322

Remove the following redirect chain if possible:

https://bh.contextweb.com/bh/rtset?pid=561322&ev=1&rurl=https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D57%26partnerUserId%3D%25%25VGUI
D%25%25
https://cs.lkqd.net/cs?partnerId=57&partnerUserId=kao5L06XcZwo&ev=1&pid=561322

Remove the following redirect chain if possible:

https://bluekai-eicm-global.dsp.io/blk?
https://tags.bluekai.com/site/43696?&id=1840-5c-2949828-6

Remove the following redirect chain if possible:

https://bttrack.com/pixel/cookiesync?source=0b0edea9-c9fe-4b9c-9bcd-a51022f2873f&publisherid=MTQxMTk3ZDc5MzJhNmZiYmY5MDQxN2MzN2Q2NDZj
MDg=&pushdata=109&secure=1
https://cm.revcontent.com/pixel_sync?bidder=109&bidder_uid=d5180cdd-1a3d-4799-a65b-def1efef7f14&exchange_uid=MTQxMTk3ZDc5MzJhNmZiYmY5M
DQxN2MzN2Q2NDZjMDg=

Remove the following redirect chain if possible:

https://cas.pxl.ace.advertising.com/cfcm.ashx?providerId=1013&extMatch=1&rcode=1
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=62&external_user_id=EQ880015263666970006

Remove the following redirect chain if possible:

https://cm.g.doubleclick.net/pixel?google_nid=adtech_dbm&google_cm&google_sc
https://pixel.advertising.com/ups/55946/sync?uid=CAESEC-HegR6zyxgJ5fSpjmEW1A&_origin=1&google_cver=1

Remove the following redirect chain if possible:

https://cm.g.doubleclick.net/pixel?google_nid=appnexus&google_cm&google_sc&uid=3609532715836771276
https://ib.adnxs.com/setuid?entity=101&uid=3609532715836771276&code=CAESEFeVfqtbfCXcUOYM1zcS1Aw&google_cver=1

Remove the following redirect chain if possible:

https://cm.g.doubleclick.net/pixel?google_nid=appnexus1&google_sc&google_hm=MzYwOTUzMjcxNTgzNjc3MTI3Ng%3D%3D&google_cm
https://ib.adnxs.com/mapuid?member=181&user=&google_gid=CAESEMNiQPHHWeStIWAOs8DOWbU&google_cver=1

Remove the following redirect chain if possible:

https://cm.g.doubleclick.net/pixel?google_nid=casale_media2_dbm&google_cm&google_sc
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=45&external_user_id=CAESELY7hq0HnuFuuG5LvaOmLB4&google_cver=1

Remove the following redirect chain if possible:

https://cm.g.doubleclick.net/pixel?google_nid=eye&google_cm&google_sc&bid=gdo9o51&newuser=1
https://ps.eyeota.net/match?bid=gdo9o51&newuser=1&google_gid=CAESECJsw9XNJr_-GHPNkSqtjo0&google_cver=1

Remove the following redirect chain if possible:

https://cm.g.doubleclick.net/pixel?google_nid=openx&google_cm&google_sc

Analyze your site at https://gtmetrix.com Page 14 of 85


PageSpeed Recommendations

https://us-u.openx.net/w/1.0/sd?id=537072991&val=CAESEPrKIaaLGvXSGLayIbcDCp0&google_cver=1

Remove the following redirect chain if possible:

https://cm.g.doubleclick.net/pixel?google_nid=rubicon&google_cm&google_sc
https://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEACCJ3epJEPCMQSyLgDpJWw&google_cver=1

Remove the following redirect chain if possible:

https://d.adroll.com/cm/index/ssp
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=105&external_user_id=0

Remove the following redirect chain if possible:

https://d.turn.com/r/dd/id/L2NzaWQvMS9jaWQvMjg0NTA1NDYvdC8w/url/https://ps.eyeota.net/match?bid=1mpjpn0&turn_id=$!{TURN_UUID}&newuser=1
https://ps.eyeota.net/match?bid=1mpjpn0&turn_id=8643648681422002544&newuser=1

Remove the following redirect chain if possible:

https://g.cwkuki.com/cs/D8f2l?u=MTQxMTk3ZDc5MzJhNmZiYmY5MDQxN2MzN2Q2NDZjMDg=
https://cm.revcontent.com/pixel_sync?exchange_uid=MTQxMTk3ZDc5MzJhNmZiYmY5MDQxN2MzN2Q2NDZjMDg%3D&bidder=112&bidder_uid=76e95d90-
580b-11e8-b85a-0242ac110003

Remove the following redirect chain if possible:

https://i.w55c.net/ping_match.gif?ei=RUBICON&rurl=https%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D4210%26nid%3D1523%26put%3D_
wfivefivec_%26expires%3D30
https://pixel.rubiconproject.com/tap.php?v=4210&nid=1523&put=BaYDFrpd1FitHM5&expires=30

Remove the following redirect chain if possible:

https://ib.adnxs.com/getuid?//dmx.districtm.io/s/10010/$UID
https://dmx.districtm.io/s/10010/3609532715836771276

Remove the following redirect chain if possible:

https://ib.adnxs.com/getuid?https://pixel.advertising.com/ups/55936/sync?uid=$UID&_origin=0
https://pixel.advertising.com/ups/55936/sync?uid=3609532715836771276&_origin=0

Remove the following redirect chain if possible:

https://idsync.rlcdn.com/395886.gif?partner_uid=5978151422914825543
https://ml314.com/csync.ashx?fp=&person_id=5978151422914825543&eid=50082

Remove the following redirect chain if possible:

https://in.v12group.com/insync?vxii_pid=10014&vxii_pdid=ce6218ad76692cd9ac9db8c2fb46ad71
https://in.v12group.com/insync?vxii_pdid=ce6218ad76692cd9ac9db8c2fb46ad71&vxii_pdid=ce6218ad76692cd9ac9db8c2fb46ad71&vxii_pid=12&vxii_pid1=
10014&vxii_rcid=fc9c3c1f-ecb8-41ae-8f53-a1d16b33fe58

Remove the following redirect chain if possible:

https://loadm.exelator.com/load/?p=204&g=260&buid=ce6218ad76692cd9ac9db8c2fb46ad71&j=0
https://load77.exelator.com/pixel.gif

Remove the following redirect chain if possible:

https://loadus.exelator.com/load/?p=233&g=001&j=d
https://loadus.exelator.com/load/?p=233&g=001&j=d&xl8blockcheck=1

Remove the following redirect chain if possible:

https://match.adsrvr.org/track/cmf/casale?cm_dsp_id=70&cm_callback_url=https%3A%2F%2Fdsum-sec.casalemedia.com%2Fcrum&cm_user_id=WvqB5
9HM7SUAACpofvsAAAAt
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=39&external_user_id=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&expiration=1528958701

Remove the following redirect chain if possible:

https://match.adsrvr.org/track/cmf/generic?ttd_pid=aoladtech
https://pixel.advertising.com/ups/55953/sync?uid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&_origin=1

Analyze your site at https://gtmetrix.com Page 15 of 85


PageSpeed Recommendations

Remove the following redirect chain if possible:

https://match.adsrvr.org/track/cmf/generic?ttd_pid=eyeota&ttd_tpi=1
https://ps.eyeota.net/match?uid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&bid=1e2n4ou

Remove the following redirect chain if possible:

https://match.adsrvr.org/track/cmf/generic?ttd_pid=lotame&ttd_puid=ce6218ad76692cd9ac9db8c2fb46ad71&ttd_tpi=1
https://bcp.crwdcntrl.net/map/c=10620/tp=TRAD/tpid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d

Remove the following redirect chain if possible:

https://match.adsrvr.org/track/cmf/openx?oxid=a4c55bb4-c659-3c6f-5a51-4756d5ac5254
https://us-u.openx.net/w/1.0/sd?id=537072971&val=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&ttd_puid=a4c55bb4-c659-3c6f-5a51-4756d5ac5254

Remove the following redirect chain if possible:

https://match.adsrvr.org/track/cmf/openx?oxid=f718ea56-b3b4-3879-5ee7-30f495ff04b7
https://us-u.openx.net/w/1.0/sd?id=537072971&val=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&ttd_puid=f718ea56-b3b4-3879-5ee7-30f495ff04b7

Remove the following redirect chain if possible:

https://match.adsrvr.org/track/cmf/rubicon
https://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&expires=30

Remove the following redirect chain if possible:

https://match.rundsp.com/bk?redir=https://tags.bluekai.com/site/15525
https://tags.bluekai.com/site/15525?id=9c7384d0a41940a88f2dcbdc

Remove the following redirect chain if possible:

https://media.sabio.us/imp_pixel?invsrc=11&secure=1
https://cs.lkqd.net/cs?partnerId=39&partnerUserId=6776932692590014083

Remove the following redirect chain if possible:

https://ox.pxl.ace.advertising.com/cfcm.ashx?providerId=1009&extMatch=1&rcode=1
https://us-u.openx.net/w/1.0/sd?id=537073142&val=RUID6w6kibueiyh4z1ib7j4tn5y8xdy4hy5st9yu4rqsmge35y815b8o====

Remove the following redirect chain if possible:

https://p.adsymptotic.com/d/px?_pid=11272&_psign=cc9e6108df5584f8b2442f78e2d3c78d&_puuid=3609532715836771276&_redirect=http%3A%2F%2Fi
b.adnxs.com%2Fsetuid%3Fentity%3D281%26code%3D%24%7BUUID%7D
https://ib.adnxs.com/setuid?entity=281&code=8c0580ce0ae2528e0982e95b4c73cebe

Remove the following redirect chain if possible:

https://p.rfihub.com/cm?in=1&pub=2079
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=57&external_user_id=2810316537904023968

Remove the following redirect chain if possible:

https://p.rfihub.com/cm?in=1&pub=25
https://us-u.openx.net/w/1.0/sd?id=537073062&val=2810316537904023968

Remove the following redirect chain if possible:

https://p.rfihub.com/cm?in=1&pub=530&userid=eHOBv5uY99YDAdoS
https://tags.bluekai.com/site/4722?id=2810316537904023968

Remove the following redirect chain if possible:

https://p.rfihub.com/cm?in=1&pub=64
https://pixel.rubiconproject.com/tap.php?v=13490&nid=2596&put=2810316537904023968&expires=30

Remove the following redirect chain if possible:

https://p.rfihub.com/cm?in=1&pub=758&forward=https://pixel.advertising.com/ups/55856/sync?uid={userid}&_origin=0

Analyze your site at https://gtmetrix.com Page 16 of 85


PageSpeed Recommendations

https://pixel.advertising.com/ups/55856/sync?uid=2810316537904023968

Remove the following redirect chain if possible:

https://pixel-a.sitescout.com/dmp/pixelSync?nid=1
https://pixel.rubiconproject.com/tap.php?v=7430&nid=2238&put=52af87df-3f8d-4bcd-bc21-1d826dc889c2&expires=360

Remove the following redirect chain if possible:

https://pixel-a.sitescout.com/dmp/pixelSync?nid=4
https://us-u.openx.net/w/1.0/sd?id=537072977&val=52af87df-3f8d-4bcd-bc21-1d826dc889c2

Remove the following redirect chain if possible:

https://pixel-a.sitescout.com/dmp/pixelSync?nid=96
https://dmx.districtm.io/s/10001/52af87df-3f8d-4bcd-bc21-1d826dc889c2

Remove the following redirect chain if possible:

https://pixel.quantserve.com/pixel/p-NcBg8UA4xqUFp.gif?idmatch=0
https://pixel.advertising.com/ups/55965/sync?_origin=1&uid=-7zR_fbs0q3jv4Kvq-6a_v6_jv_j6oL_qOyg9_1V

Remove the following redirect chain if possible:

https://pixel.quantserve.com/pixel/p-Z8PuJEk6U7Hyq.gif?idmatch=0
https://dsum-sec.casalemedia.com/rum?cm_dsp_id=81&external_user_id=aMufeGWbnChwyMwqOJnUe23IwHpwncx6O5vniGHg

Remove the following redirect chain if possible:

https://pixel.quantserve.com/pixel/p-mp2sz_fNqt6Bt.gif?idmatch=0
https://stags.bluekai.com/site/16365?id=FSZRqxh2UvsNJQL5RXQaqBAlDqkNcAKpRnajlu7n

Remove the following redirect chain if possible:

https://pixel.rubiconproject.com/exchange/sync.php?p=a9eu
https://aax-eu.amazon-adsystem.com/s/ecm3?id=JH7BBHEJ-1E-D5Z0&ex=d-rubiconproject.com&status=ok

Remove the following redirect chain if possible:

https://pixel.tapad.com/idsync/ex/receive?partner_id=858&partner_url=https%3A%2F%2Fstags.bluekai.com%2Fsite%2F13583%3Fid%3D%24%7BTA_DEVI
CE_ID%7D&partner_device_id=ze5BvSZk99eo%2BwoS
https://stags.bluekai.com/site/13583?id=799e6b71-580b-11e8-98f9-0a580a4c010a

Remove the following redirect chain if possible:

https://pixel.watch/vaf4
https://s3.amazonaws.com/clickmeter.com/Web/static/pixel.gif

Remove the following redirect chain if possible:

https://pm.w55c.net/ping_match.gif?ei=CASALE&rurl=https://dsum-sec.casalemedia.com/crum?cm_dsp_id=47&external_user_id=_wfivefivec_
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=47&external_user_id=BaYDFrpd1FitHM5

Remove the following redirect chain if possible:

https://pm.w55c.net/ping_match.gif?st=BLUEKAI&rurl=https%3A%2F%2Ftags.bluekai.com%2Fsite%2F2964%3Fid%3D_wfivefivec_
https://tags.bluekai.com/site/2964?id=BaYDFrpd1FitHM5

Remove the following redirect chain if possible:

https://ps.eyeota.net/pixel?pid=51md42u&t=ajs&uid=d679af0dac93f348389a3cb3
https://ps.eyeota.net/pixel/bounce/?pid=51md42u&t=ajs&uid=d679af0dac93f348389a3cb3

Remove the following redirect chain if possible:

https://r.nexac.com/e/getdata.xgi?dt=br&pkey=ermz52tcyln62&ru=https%3A%2F%2Fbcp.crwdcntrl.net%2Fmap%2Fc%3D1787%2Ftp%3DDLGX%2Ftpid%3D
%3Cna_id%3E
https://bcp.crwdcntrl.net/map/c=1787/tp=DLGX/tpid=

Analyze your site at https://gtmetrix.com Page 17 of 85


PageSpeed Recommendations

Remove the following redirect chain if possible:

https://r.turn.com/r/du/id/L2NzaWQvMS9zcGlkLzQ/url/https%3A%2F%2Ftags.bluekai.com%2Fsite%2F4499%3Fid%3D%24!%7BTURN_UUID%7D%26BK_S
WAP_DEST%3D4499%26r%3D1
https://tags.bluekai.com/site/4499?id=8643648681422002544&BK_SWAP_DEST=4499&r=1

Remove the following redirect chain if possible:

https://rbp.mxptint.net/sn.ashx
https://pixel.rubiconproject.com/tap.php?v=14321&nid=2313&put=R1B341_A4A958B8_1A952113E&expires=60

Remove the following redirect chain if possible:

https://rub.pxl.ace.advertising.com/cfcm.ashx?providerId=1007&extMatch=1&rcode=1
https://pixel.rubiconproject.com/tap.php?v=7249%7c%7c11203%7c%7c372838&nid=2146,2309,4884&put=RUIDk6wa977yx65aftej7ocm9ab7qrgijst4b5wjo
uxwoxxxbsnqrnoy====&expires=30

Remove the following redirect chain if possible:

https://sb.scorecardresearch.com/b?c1=2&c2=6035391&ns__t=1526366687021&ns_c=UTF-8&c8=Do%20you%20know%20what%20BitCoin%20is%3F%
20Have%20you%20ever%20used%20BitCoin%20before%3F%20-%20GirlsAskGuys&c7=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq219818
1-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&c9=
https://sb.scorecardresearch.com/b2?c1=2&c2=6035391&ns__t=1526366687021&ns_c=UTF-8&c8=Do%20you%20know%20what%20BitCoin%20is%3F
%20Have%20you%20ever%20used%20BitCoin%20before%3F%20-%20GirlsAskGuys&c7=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198
181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&c9=

Remove the following redirect chain if possible:

https://secure.adnxs.com/getuid?https://dsum-sec.casalemedia.com/crum?cm_dsp_id=46&external_user_id=$UID
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=46&external_user_id=3609532715836771276

Remove the following redirect chain if possible:

https://sync-tm.everesttech.net/upi/pid/ZMAwryCI?redir=https%3A%2F%2Fdsum-sec.casalemedia.com%2Frum%3Fcm_dsp_id%3D88%26external_user_id
%3D%24%7BTM_USER_ID%7D
https://dsum-sec.casalemedia.com/rum?cm_dsp_id=88&external_user_id=WvqB5wAAAKNI-RAl

Remove the following redirect chain if possible:

https://sync-tm.everesttech.net/upi/pid/aUTuBPNf?redir=https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D52%26partnerUserId%3D%24%7BUSER_ID
%7D
https://cs.lkqd.net/cs?partnerId=52&partnerUserId=WvqB5wAAAKNI-RAl

Remove the following redirect chain if possible:

https://sync-tm.everesttech.net/upi/pid/btu4jd3a?redir=https%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D191940%26nid%3D3778%26put%3
D%24%7BUSER_ID%7D
https://pixel.rubiconproject.com/tap.php?v=191940&nid=3778&put=WvqB5wAAAKNI-RAl

Remove the following redirect chain if possible:

https://sync-tm.everesttech.net/upi/pid/ny75r2x0?redir=https%3A%2F%2Fus-u.openx.net%2Fw%2F1.0%2Fsd%3Fid%3D537148856%26val%3D%24%7BT
M_USER_ID%7D
https://us-u.openx.net/w/1.0/sd?id=537148856&val=WvqB5wAAAKNI-RAl

Remove the following redirect chain if possible:

https://sync.crwdcntrl.net/map/c=5436/tp=SVRN/tpid=d679af0dac93f348389a3cb3/pv=y?https://ce.lijit.com/merge?pid=5001&3pid=${profile_id}
https://ce.lijit.com/merge?pid=5001&3pid=ce6218ad76692cd9ac9db8c2fb46ad71

Remove the following redirect chain if possible:

https://sync.ipredictive.com/d/sync/cookie/generic?https://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=${ADELPHIC_CUID}&expires=30
https://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=7f4e42e9-580b-11e8-9bea-49295cf7232e&expires=30

Remove the following redirect chain if possible:

https://sync.mathtag.com/sync/img?mt_exid=10002&redir=https%3A%2F%2Fstags.bluekai.com%2Fsite%2F4448%3Fid%3D%5BMM_UUID%5D
https://stags.bluekai.com/site/4448?id=30c15afa-5048-4600-a17d-e2a85c24ab94

Analyze your site at https://gtmetrix.com Page 18 of 85


PageSpeed Recommendations

Remove the following redirect chain if possible:

https://sync.mathtag.com/sync/img?mt_exid=10015&redir=https%3A%2F%2Fps.eyeota.net%2Fmatch%3Fbid%3D7vi0rg0%26uid%3D%5BMM_UUID%5D
https://ps.eyeota.net/match?bid=7vi0rg0&uid=30c15afa-5048-4600-a17d-e2a85c24ab94

Remove the following redirect chain if possible:

https://sync.mathtag.com/sync/img?mt_exid=13&mt_exuid=3609532715836771276&redir=https%3A%2F%2Fib.adnxs.com%2Fsetuid%3Fentity%3D8%26c
ode%3D%5Buuid%5D
https://ib.adnxs.com/setuid?entity=8&code=30c15afa-5048-4600-a17d-e2a85c24ab94

Remove the following redirect chain if possible:

https://sync.mathtag.com/sync/img?mt_exid=15&redir=https%3A%2F%2Fdsum-sec.casalemedia.com%2Fcrum%3Fcm_dsp_id%3D3%26external_user_id
%3D%5BMM_UUID%5D
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=3&external_user_id=30c15afa-5048-4600-a17d-e2a85c24ab94

Remove the following redirect chain if possible:

https://sync.mathtag.com/sync/img?mt_exid=21&redir=https://pixel.advertising.com/ups/55938/sync?uid=[MM_UUID]&_origin=0
https://pixel.advertising.com/ups/55938/sync?uid=30c15afa-5048-4600-a17d-e2a85c24ab94

Remove the following redirect chain if possible:

https://sync.mathtag.com/sync/img?mt_exid=5&redir=https%3A%2F%2Fus-u.openx.net%2Fw%2F1.0%2Fsd%3Fid%3D536872786%26val%3D%5BMM_UU
ID%5D
https://us-u.openx.net/w/1.0/sd?id=536872786&val=30c15afa-5048-4600-a17d-e2a85c24ab94

Remove the following redirect chain if possible:

https://sync.mathtag.com/sync/img?mt_exid=9&redir=https%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D4222%26nid%3D1512%26put%3D
%5BMM_UUID%5D
https://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=30c15afa-5048-4600-a17d-e2a85c24ab94

Remove the following redirect chain if possible:

https://sync.search.spotxchange.com/partner?adv_id=7715&uid=3609532715836771276
https://sync.search.spotxchange.com/partner?adv_id=7715&uid=3609532715836771276&__user_check__=1&sync_id=7a69e606-580b-11e8-abb3-1fdd5b
851f01

Remove the following redirect chain if possible:

https://sync.tidaltv.com/genericusersync.ashx?dpid=3162
https://sync.tidaltv.com/genericusersync.ashx?dpid=3162&s=1

Remove the following redirect chain if possible:

https://syndication.twitter.com/i/jot
https://platform.twitter.com/jot.html

Remove the following redirect chain if possible:

https://tags.bluekai.com/site/20486?limit=0&id=5978151422914825543&redir=https://ml314.com/csync.ashx%3Ffp=$_BK_UUID%26person_id=59781514
22914825543%26eid=50056
https://ml314.com/csync.ashx?fp=KPJBvSe999eQ64oS&person_id=5978151422914825543&eid=50056

Remove the following redirect chain if possible:

https://tap-secure.rubiconproject.com/partner/scripts/rubicon/emily.html?rtb_ext=1&geo=na&co=us
https://eus.rubiconproject.com/usync.html

Remove the following redirect chain if possible:

https://token.rubiconproject.com/token?pid=25470
https://cm.g.doubleclick.net/pixel?google_nid=rp&google_hm=Skg3QkJIRUotMUUtRDVaMA==

Remove the following redirect chain if possible:

https://um.simpli.fi/ox_match
https://us-u.openx.net/w/1.0/sd?id=537072966&val=23423CA9EE81FA5A3AC1C23D02B58862

Analyze your site at https://gtmetrix.com Page 19 of 85


PageSpeed Recommendations

Remove the following redirect chain if possible:

https://um.simpli.fi/pm_match?https://dsum-sec.casalemedia.com/crum?cm_dsp_id=90&external_user_id=$UID
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=90&external_user_id=23423CA9EE81FA5A3AC1C23D02B58862

Remove the following redirect chain if possible:

https://um.simpli.fi/rb_match
https://pixel.rubiconproject.com/tap.php?v=6286&nid=2132&put=23423CA9EE81FA5A3AC1C23D02B58862&expires=365

Remove the following redirect chain if possible:

https://um2.eqads.com/um/dm?cb=//dmx.districtm.io/s/10008/$MACRO
https://dmx.districtm.io/s/10008/174c5830-8905-4d06-9b00-103e88704f9c

Remove the following redirect chain if possible:

https://us-u.openx.net/w/1.0/cm?id=9e0a35ea-c8e3-4b1b-9efa-4af6f54a373e&ph=e1e12abf-0bb5-47ee-ae31-55f011a265d0&r=https://pixel.advertising.com
/ups/55981/sync?_origin=0&uid=
https://us-u.openx.net/w/1.0/cm?cc=1&id=9e0a35ea-c8e3-4b1b-9efa-4af6f54a373e&ph=e1e12abf-0bb5-47ee-ae31-55f011a265d0&r=https://pixel.advertisin
g.com/ups/55981/sync?_origin=0&uid=

Remove the following redirect chain if possible:

https://us-u.openx.net/w/1.0/cm?id=c09b4c7a-cf51-4f9d-988d-8b1b5956bd03&r=https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D51%26partnerUserI
d%3D
https://cs.lkqd.net/cs?partnerId=51&partnerUserId=874d104f-6c6c-06b6-0bb7-3013ae407ae3

Remove the following redirect chain if possible:

https://usermatch.krxd.net/um/v2?partner=bluekai
https://stags.bluekai.com/site/26357?&id=L99uBc_G

Remove the following redirect chain if possible:

https://www.facebook.com/connect/ping?client_id=142488384519&domain=www.girlsaskguys.com&origin=1&redirect_uri=https%3A%2F%2Fstaticxx.faceb
ook.com%2Fconnect%2Fxd_arbiter%2Fr%2FRQ7NiRXMcYA.js%3Fversion%3D42%23cb%3Df1ee1f9c13e248c%26domain%3Dwww.girlsaskguys.com%2
6origin%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Ff2d49587b519bcc%26relation%3Dparent&response_type=token%2Csigned_request
%2Ccode&sdk=joey&version=v2.7
https://staticxx.facebook.com/connect/xd_arbiter/r/RQ7NiRXMcYA.js?version=42

Remove the following redirect chain if possible:

https://x.bidswitch.net/sync?ssp=lkqd
https://x.bidswitch.net/ul_cb/sync?ssp=lkqd

Serve resources from a consistent URL F (0) AVG SCORE: 88% CONTENT HIGH

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
8 request(s) and 344B.

https://beacon-us-west.rubiconproject.com/beacon/d/4651e1e8-ff4d-499e-990a-cbf5f532001e?oo=0&accountId=17174&siteId=163796&zoneId=883438&e
=6A1E40E384DA563BB323F0EA4B03F60713B2A931EF31D120F9BBC92DEC428261217A85E7C5BFCFC49DE3F46F010F12F5729A7421EAA92C1341D
B78C9D85672678E308B89C01DB7DD6A63651199EBE92C172CD28438FCBB6A16B6D405AC02F72677C4637A4C35A30709CC49B91C74591797E939
425E525E686FEF75DB157AAF5695BCEA9A1A431B34
https://ml314.com/csync.ashx?fp=&person_id=5978151422914825543&eid=50082
https://ml314.com/csync.ashx?fp=KPJBvSe999eQ64oS&person_id=5978151422914825543&eid=50056
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.006775474426035322&7899512393
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:1248}];et=1250;eid=114;ai=RB%20Fastlane%5Erubicon%5E372688_
1-640-480%5E%5E1222;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e
=e;z=0.557270568495744&6553624559
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:1248}];et=1250;eid=114;ai=RB%20Fastlane%5Erubicon_preroll%5E3
72688_1-640-480%5E%5E1225;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-

Analyze your site at https://gtmetrix.com Page 20 of 85


PageSpeed Recommendations

before;e=e;z=0.557270568495744&1338601830
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:2558}];eid=58;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q
2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.7819638443337706&2618815769
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.05970694389493891&8781865063
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[{%2228%22:17}];eid=99;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q21
98181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.6641648875542858&1714769425

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
4 request(s) and 624B.

https://pubads.g.doubleclick.net/gampad/ads?sz=3x3&iu=%2F36117602%2Fhdm-aolpreroll%2Fonnetwork&gdfp_req=1&env=vp&output=xml_vast3&unview
ed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
&description_url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&correl
ator=3150678932894122&sdkv=h.3.208.0&sdki=3c0d&scor=2033476065312160&adk=1419277712&u_so=l&osd=2&frm=0&sdr=1&is_amp=0&adsid=NT
&afvsz=200x200%2C250x250%2C300x250%2C336x280%2C450x50%2C468x60%2C480x70%2C728x90&ged=ve4_td30_tt23_pd30_la30000_er4523.158.
4678.458_vi0.0.768.1366_vp0_ts17_eb16619
https://pubads.g.doubleclick.net/gampad/ads?sz=3x3&iu=%2F36117602%2Fhdm-aolpreroll%2Fonnetwork&gdfp_req=1&env=vp&output=xml_vast3&unview
ed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
&description_url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&correl
ator=555625208994171&sdkv=h.3.208.0&sdki=3c0d&scor=232092351644121&adk=1419277712&u_so=l&osd=2&frm=0&sdr=1&is_amp=0&adsid=NT&af
vsz=200x200%2C250x250%2C300x250%2C336x280%2C450x50%2C468x60%2C480x70%2C728x90&ged=ve4_td9_tt2_pd9_la9000_er4523.158.4678.45
8_vi0.0.768.1366_vp0_eb16619
https://pubads.g.doubleclick.net/gampad/ads?sz=640x480%7C400x300&iu=%2F281896196%2FGirlsAskGuys_Desktop_Video_Preroll&gdfp_req=1&env=v
p&output=xml_vast3&unviewed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-
you-ever-used-bitcoin-before&description_url=girlsaskguys.com&correlator=1121481948757424&mpt=playwire&mpv=3.2&eid=495644020&sdkv=h.3.208.0
&sdki=3c0d&scor=2757677140825685&adk=3984514231&u_so=l&osd=2&frm=2&sdr=1&is_amp=0&adsid=NT&ged=timeout
https://pubads.g.doubleclick.net/gampad/ads?sz=640x480%7C400x300&iu=%2F281896196%2FGirlsAskGuys_Desktop_Video_Preroll&gdfp_req=1&env=v
p&output=xml_vast3&unviewed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-
you-ever-used-bitcoin-before&description_url=girlsaskguys.com&correlator=1542266686683055&cust_params=XperLevel%3D%26qkeyword%3D%26oke
yword%3D%26utm_source%3DNone%26utm_medium%3DNone%26utm_campaign%3DNone%26PostInfo%3Dq2198181%26Gender%3DUnknownGen
der%26Age%3DUnknownAge%26Mobile%3DMobileNo%26PageType%3DQuestion%26BrandId%3D%26MarkedAs%3DFalse%26ShowAllAds%3DYes%2
6Topics%3Dother&mpt=playwire&mpv=3.2&eid=495644020&sdkv=h.3.208.0&sdki=3c0d&scor=3366005329209160&adk=3984514231&u_so=l&osd=2&fr
m=2&sdr=1&is_amp=0&adsid=NT&ged=ve4_td11_tt0_pd11_la11000_er0.0.154.300_vi0.0.228.405_vp100_eb24427
https://pubads.g.doubleclick.net/gampad/ads?sz=640x480%7C400x300&iu=%2F281896196%2FGirlsAskGuys_Desktop_Video_Preroll&gdfp_req=1&env=v
p&output=xml_vast3&unviewed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-
you-ever-used-bitcoin-before&description_url=girlsaskguys.com&correlator=980200499255429&mpt=playwire&mpv=3.2&eid=495644020&sdkv=h.3.208.0
&sdki=3c0d&scor=2971216181139792&adk=3984514231&u_so=l&osd=2&frm=2&sdr=1&is_amp=0&adsid=NT&ged=timeout

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
4 request(s) and 444B.

https://adservice.google.ca/adsid/integrator.js?domain=tpc.googlesyndication.com
https://adservice.google.ca/adsid/integrator.js?domain=www.girlsaskguys.com
https://adservice.google.com/adsid/integrator.js?domain=cdn.playwire.com
https://adservice.google.com/adsid/integrator.js?domain=tpc.googlesyndication.com
https://adservice.google.com/adsid/integrator.js?domain=www.girlsaskguys.com

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
1 request(s) and 230.7KiB.

https://imasdk.googleapis.com/js/sdkloader/ima3.js
https://s0.2mdn.net/instream/html5/ima3.js

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
1 request(s) and 76.9KiB.

https://ss3.zedo.com/gecko/tag/networkIds.js?3619072320
https://ss3.zedo.com/gecko/tag/networkIds.js?429390344

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
1 request(s) and 70.2KiB.

https://pagead2.googlesyndication.com/pagead/js/r20180509/r20180504/osd.js
https://pagead2.googlesyndication.com/pagead/osd.js

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
1 request(s) and 23.9KiB.

https://eus.rubiconproject.com/usync.html

Analyze your site at https://gtmetrix.com Page 21 of 85


PageSpeed Recommendations

https://eus.rubiconproject.com/usync.html?geo=na&co=ca

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
1 request(s) and 249B.

https://ads.adaptv.advertising.com/a/h/xiZPj3SGdsAAGBxh6T2NSH4Tsyjd4QtooOt0lqLFswM=?cb=1719978736&pet=preroll&pageUrl=http%3A%2F%2Fgirls
askguys.com&eov=eov&a.cluster=0&a.pvt=0&a.d.pageUrl=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-
have-you-ever-used-bitcoin-before&a.flashonpage=0&a.hasAppInfo=2&a.sdk=o2unit&a.sdkType=js&depth=0&height=415&moatViewableOpportunity=0&p.v
w.active=1&p.vw.psize=3&p.vw.viewable=0&p.vw.viewableOpportunity=0&referrerUrl=&width=737
https://ads.adaptv.advertising.com/a/h/xiZPj3SGdsAAGBxh6T2NSH4Tsyjd4QtooOt0lqLFswM=?cb=400710970&pet=preroll&pageUrl=http%3A%2F%2Fgirlsa
skguys.com&eov=eov&a.cluster=1&a.pvt=0&a.d.pageUrl=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-h
ave-you-ever-used-bitcoin-before&a.flashonpage=0&a.hasAppInfo=2&a.sdk=o2unit&a.sdkType=js&depth=0&height=415&moatViewableOpportunity=0&p.vw
.active=1&p.vw.psize=3&p.vw.viewable=0&p.vw.viewableOpportunity=0&referrerUrl=&width=737

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
1 request(s) and 43B.

http://load77.exelator.com/pixel.gif
https://load77.exelator.com/pixel.gif

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
1 request(s) and 16B.

https://ml314.com/imsync.ashx?pi=&data=eyJwaCI6NTAwLCJ3aCI6MjUwLCJ0YnMiOjAsImR0IjoxNCwicGlkIjoiMTUyNjM2NjcwMDM3NV9ibjVxZjE5bnkiLCJzZ
CI6MjUwfQ%3D%3D
https://ml314.com/imsync.ashx?pi=5978151422914825543&data=eyJwaCI6NTAwLCJ3aCI6MjUwLCJ0YnMiOjAsImR0IjoxNSwicGlkIjoiMTUyNjM2NjcwMDI2
NF9jaHVlNXE3c3oiLCJzZCI6MjUwfQ%3D%3D

Leverage browser caching F (0) AVG SCORE: 59% SERVER HIGH

Leverage browser caching for the following cacheable resources:

http://load77.exelator.com/pixel.gif (expiration not specified)


https://api.content-ad.net/px.gif (expiration not specified)
https://brand-ad-innovations.s3.amazonaws.com/intention-score/bai-intention-score.js (expiration not specified)
https://cm.mgid.com/i.js (expiration not specified)
https://code.jquery.com/jquery-3.1.1.min.js (expiration not specified)
https://d31qbv1cthcecs.cloudfront.net/atrk.js (expiration not specified)
https://d32oduq093hvot.cloudfront.net/icons/c_ad_logo.png (expiration not specified)
https://d32oduq093hvot.cloudfront.net/icons/sponsoredlinksby.png (expiration not specified)
https://d3dytsf4vrjn5x.cloudfront.net/105614/300x250/c9127ce6e704a656ec453fb89c2c9c40.jpg (expiration not specified)
https://d3dytsf4vrjn5x.cloudfront.net/6279/300x250/aa5c21a395a124b874d248d14d4b1d86.jpg (expiration not specified)
https://d3dytsf4vrjn5x.cloudfront.net/79578/300x250/3a067d0e2548a891d8acc7ef4bea71a9.jpg (expiration not specified)
https://dmx.districtm.io/s/10001/52af87df-3f8d-4bcd-bc21-1d826dc889c2 (expiration not specified)
https://dmx.districtm.io/s/10008/174c5830-8905-4d06-9b00-103e88704f9c (expiration not specified)
https://dmx.districtm.io/s/10010/3609532715836771276 (expiration not specified)
https://dmx.districtm.io/s/10016/WvqB5wAAAKNI-RAl&_test=WvqB5wAAAKNI-RAl (expiration not specified)
https://fastlane-adv.rubiconproject.com/v1/auction/video (expiration not specified)
https://js.agkn.com/prod/v0/tag.js (expiration not specified)
https://load77.exelator.com/pixel.gif (expiration not specified)
https://media.carambo.la/Images/1418_3_10.jpg (expiration not specified)
https://media.carambo.la/Images/3389_3_10.jpg (expiration not specified)
https://media.carambo.la/Images/4749_3_10.jpg (expiration not specified)
https://pd.sharethis.com/pd/33across (expiration not specified)
https://pd.sharethis.com/pd/sovrn (expiration not specified)
https://sdk.amazonaws.com/js/aws-sdk-2.129.0.min.js (expiration not specified)
https://video-ads.rubiconproject.com/video/bridge-30638.js (expiration not specified)
https://content.jwplatform.com/libraries/WLok6WPd.js (2 minutes 30 seconds)
https://cdn.playwire.com/bolt/js/zeus/embed.js (2 minutes 45 seconds)
https://ad.lkqd.net/vpaid/vpaid.js?fusion=1.0 (4 minutes)
https://ad.lkqd.net/mediafile/blocking_regex (5 minutes)
https://ad.lkqd.net/vpaid/formats.js?pid=323&sid=174302&apt=auto&volume=0&render=&controls=&support=&execution=outstream&placement=slider&trac
ki=&trackc=&c1=&c2=&c3=&rnd=37541505&m=&close=true&closedelay=15 (5 minutes)
https://syndication.twitter.com/settings (10 minutes)
https://imasdk.googleapis.com/js/sdkloader/ima3.js (15 minutes)
https://s0.2mdn.net/instream/html5/ima3.js (15 minutes)
https://s0.2mdn.net/instream/video/client.js (15 minutes)

Analyze your site at https://gtmetrix.com Page 22 of 85


PageSpeed Recommendations

https://www.googletagmanager.com/gtm.js?id=GTM-5KMRGL (15 minutes)


https://www.googletagservices.com/tag/js/gpt.js (15 minutes)
https://connect.facebook.net/en_US/fbevents.js (20 minutes)
https://connect.facebook.net/en_US/sdk.js (20 minutes)
https://connect.facebook.net/signals/config/781946178525195?v=2.8.14&r=stable (20 minutes)
https://3787.tm.zedo.com/v1/eae01302-531c-41de-b573-22ad40de42e4/atm.js (22 minutes 1 second)
https://apis.google.com/js/platform.js?onload=gpCallback (30 minutes)
https://platform.twitter.com/widgets.js (30 minutes)
https://www.girlsaskguys.com/favicon.png (30 minutes)
https://ads.rubiconproject.com/ad/17174.js (53 minutes 15 seconds)
https://jsc.mgid.com/g/i/girlsaskguys.com.114115.js?t=11841423 (1 hour)
https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js (1 hour)
https://pagead2.googlesyndication.com/pagead/osd.js (1 hour)
https://pagead2.googlesyndication.com/pagead/show_companion_ad.js (1 hour)
https://s.ntv.io/serve/load.js (1 hour)
https://js.gumgum.com/services.js (2 hours)
https://www.google-analytics.com/analytics.js (2 hours)
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15262929340920703819.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg (5 hours 43 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/libs/shifty-4b401bda95.js (7 hours 16 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/scrubber-6af035d6af.js?noext (7 hours 16 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/titlebar-3af6709de6.js?noext (7 hours 16 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/skins/orion-ca0ae891d2.css (7 hours 16 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/appearance_manager-1137985e12.js?noext (7 hours 16 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/controlbar-bb56ce11ba.js?noext (7 hours 16 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/preroll_screen-de6bb182df.js?noext (7 hours 16 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/volume-a2adcb71e7.js?noext (7 hours 16 minutes)
https://cdn.playwire.com/bolt/js/zeus/core-a160b37fa6.js?noext (7 hours 16 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/main.js?1526366697443 (7 hours 16 minutes)
https://cdn.playwire.com/bolt/js/zeus/zeus_iframe-3658f262ba.js (7 hours 16 minutes)
https://cdn.playwire.com/bolt/js/zeus/zeus_boot-081af9499a-bcff0847d3.js (7 hours 16 minutes)
https://cdn.playwire.com/bolt/js/zeus/iframe/libs/require.js (7 hours 16 minutes)
https://cdn.playwire.com/bolt/js/zeus/zeus_global-bb33b35511-b2f521c1ba.js (7 hours 16 minutes)
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15251659200349305815.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg (8 hours 14 minutes)
https://z.moatads.com/aolvidibleapi29384728347/moatapi.js (8 hours 24 minutes)

M inimize request size F (0) AVG SCORE: 96% CONTENT HIGH

The requests for the following URLs don't fit in a single packet. Reducing the size of these requests could reduce latency.

https://securepubads.g.doubleclick.net/gampad/ads?gdfp_req=1&correlator=2457677432378127&output=json_html&callback=googletag.impl.pubads.call
backProxy1&impl=fifs&adsid=NT&json_a=1&hxva=1&scor=534807511884682&vrg=205&guci=2.2.0.0.2.2&sc=1&sfv=1-0-23&iu_parts=281896196%2CGirl
sAskGuys_Desktop_Masthead%2CGirlsAskGuys_Desktop_Right_1%2CGirlsAskGuys_Desktop_Right_2%2CGirlsAskGuys_Desktop_AboveOpinions%2C
GirlsAskGuys_Desktop_BetweenGender%2CGirlsAskGuys_Desktop_UnderOpinions%2CGirlsAskGuys_Desktop_Inter_1%2CGirlsAskGuys_Desktop_End
OfPage%2CGirlsAskGuys_Desktop_Inter_2%2CGirlsAskGuys_Desktop_Inter_4&enc_prev_ius=%2F0%2F1%2C%2F0%2F2%2C%2F0%2F3%2C%2F0%2
F4%2C%2F0%2F5%2C%2F0%2F6%2C%2F0%2F7%2C%2F0%2F8%2C%2F0%2F9%2C%2F0%2F10&prev_iu_szs=320x50%7C300x250%7C728x90%7
C970x250%7C730x250%2C320x50%7C300x250%2C320x50%7C300x250%7C300x600%2C320x50%7C728x90%7C730x400%7C300x250%7C336x280
%7C730x250%2C320x50%7C728x90%7C730x400%7C300x250%7C336x280%7C730x250%2C320x50%7C728x90%7C730x400%7C730x500%7C300x2
50%7C336x280%7C730x250%2C1x1%2C320x50%7C728x90%7C730x400%7C300x250%7C336x280%7C730x250%2C1x1%2C1x1&fluid=height%2Chei
ght%2Cheight%2Cheight%2Cheight%2Cheight%2C0%2Cheight%2C0%2C0&eri=4&cust_params=XperLevel%3D0%26utm_source%3DNone%26utm_m
edium%3DNone%26utm_campaign%3DNone%26PostInfo%3Dq2198181%26Gender%3DUnknownGender%26Age%3DUnknownAge%26Topics%3Doth
er%26Mobile%3DMobileNo%26MarkedAs%3DFalse%26ShowAllAds%3DYes%26PageType%3DQuestion%26BrandId%3DGAG-0&cookie_enabled=1&bc=
5&abxe=1&lmt=1526366687&dt=1526366687202&frm=20&biw=1366&bih=768&oid=3&adxs=0%2C-9%2C-9%2C163%2C163%2C163%2C-9%2C163%2
C-9%2C-9&adys=0%2C-9%2C-9%2C2091%2C3085%2C4760%2C-9%2C4860%2C-9%2C-9&adks=2967190282%2C1923088448%2C3698094709%2C
500454048%2C2910813795%2C2966204064%2C2385381749%2C1564585714%2C2376667967%2C650677945&gut=v2&ifi=1&u_tz=-420&u_his=2&u_
h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=24&u_nplug=4&u_nmime=5&u_sd=1&flash=0&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother
%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&dssz=33&icsg=2147625472&std=0&vis=1&scr_x=0&scr_y=0&psz=1050x90
%7C0x0%7C0x0%7C737x90%7C737x90%7C737x90%7C0x0%7C737x90%7C0x0%7C0x0&ga_vid=75672216.1526366687&ga_sid=1526366687&ga_hid
=68999944 has a request size of 4.8KiB
Request URL: 2.1KiB
Cookies: 62B
Referer Url: 105B
Other: 2.4KiB
https://saxp.zedo.com/asw/fmg.json?g=%7B%22tagProp%22%3A%7B%22tmy%22%3A%22%22%2C%22geo%22%3A%22%22%2C%22charset%22%3A
%22%22%7D%2C%22pageProp%22%3A%7B%22pageUrl%22%3A%22https%253A%252F%252Fwww.girlsaskguys.com%252Fother%252Fq2198181-d
o-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before%22%2C%22referrer%22%3A%22%22%7D%2C%22placements%22%3A%5B%7B%22id%
22%3A%22372688_1%22%2C%22network%22%3A%223787%22%2C%22publisher%22%3A%221%22%2C%22channel%22%3A%221%22%2C%22di
mension%22%3A%2285%22%2C%22width%22%3A%22640%22%2C%22height%22%3A%22480%22%2C%22renderers%22%3A%5B%7B%22name%

Analyze your site at https://gtmetrix.com Page 23 of 85


PageSpeed Recommendations

22%3A%22Inarticle%22%2C%22capability%22%3A%7B%7D%2C%22behaviour%22%3A%7B%22cssSelector%22%3A%5B%22div%20class%20questio
n%7Cguy%7Ccontent%20*%22%5D%2C%22AutoCloseVideo%22%3A%5B%221%22%5D%2C%22removeReplayStrip%22%3A%5B%221%22%5D%2C
%22ClicksOnlyOnAd%22%3A%5B%221%22%5D%2C%22parallelism%22%3A%5B%221%22%5D%2C%22maxParallelCalls%22%3A%5B%2216%22%5
D%2C%22maxParallelismtriggered%22%3A%5B%229%22%5D%2C%22ptimeout%22%3A%5B%223%22%5D%2C%22debugToken%22%3A%5B%2221
aeQSAt%257C5049138641941%22%5D%2C%22NoLB%22%3A%5B%220%22%2C%221%22%5D%2C%22SoundOnload%22%3A%5B%220%22%5D%
2C%22fullscreenIcon%22%3A%5B%220%22%5D%2C%22delaycloseButtonBy%22%3A%5B%223%22%5D%2C%22showDisplayAdsByZINCHeader%22
%3A%5B%22true%22%5D%2C%22pauseVideoOffview%22%3A%5B%220%22%5D%2C%22soundIcon%22%3A%5B%220%22%5D%2C%22removeClo
se%22%3A%5B%220%22%5D%2C%22noAnimation%22%3A%5B%220%22%5D%2C%22LBFirst%22%3A%5B%220%22%5D%2C%22maxInarticleWidt
h%22%3A%5B%22640%22%5D%2C%22videoAdPosition%22%3A%5B%22preroll%22%2C%22midroll%22%2C%22outstream%22%5D%2C%22AddSpa
ceBelow%22%3A%5B%220%22%5D%2C%22AddSpaceAbove%22%3A%5B%220%22%5D%2C%22LBOpen%22%3A%5B%220%22%5D%2C%22LBPo
sition%22%3A%5B%220%22%5D%2C%22LBOffset%22%3A%5B%220%22%5D%2C%22LBMouseover%22%3A%5B%220%22%5D%2C%22LBMobile%
22%3A%5B%220%22%5D%2C%22DisableCookieSync%22%3A%5B%221%22%5D%2C%22scrollTrigger%22%3A%5B%22-1%22%5D%2C%22backfill
OnComplete%22%3A%5B%22true%22%5D%2C%22autoplayContent%22%3A%5B%220%22%5D%2C%22ThumbnailStrip%22%3A%5B%22false%22%5
D%2C%22CTA%22%3A%5B%22Read%20More%22%2C%22Learn%20More%22%2C%22Know%20More%22%2C%22Buy%20Now%22%2C%22Book%
20Test%22%5D%7D%7D%5D%2C%22keyword%22%3A%22%22%2C%22multipleCustomeValues%22%3A%22%22%2C%22customTargeting%22%3A
%22%5Epb_bidder%3Anone%22%2C%22thirdPartyClickURL%22%3A%22https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%3Fxai%3DAKAOjs
vU2DY2BaJdasgGc3qJmLqBmVWI9Q8ufr_TY1hoMIs_Vw0lC3W05HyKNyCNIJlXwKyPOoFp8p19TMgQJo85TyQ7vLCX0mKG8nUBP3rJ9-83GIq6orq7gynwAi
bAv6KKoDZwfbbTMPvDyhfHriyNgJ2NBCDXXTHY1ocelWNM9yq9H5ErJ572iX7qHMl0SU_ArGVMMLcXD53zDYJ8dsH7Mh0u-kDM6VUksT4OCjSVsn0XGCIrDb
QLnfqEP-j2azX4gy971F7aVtiR8mkjD01VXVZS%26sig%3DCg0ArKJSzFtXG1Tt0K4mEAE%26urlfix%3D1%26adurl%3D%22%2C%22thirdPartyImprURL%22
%3A%22https%3A%2F%2Fsecurepubads.g.doubleclick.net%2Fpcs%2Fview%3Fxai%3DAKAOjsumUN1qXCG9ILgR5N0UAGRQW2GltIWseq6rYCYp50YYW
Z0RwwcVvSM_ibH-awgwRV0ODGjfzkzxJjYMLCo-tTYxOJARIuHSV-KgMTPvOHFImjMHgIclmjGuBrElfStk8p-rPjEj_Hv-B1tm_tvVptgsWY5vUl9q7LDjipzwV0c0Ep
YqL2OUH7jelyb6-fhezNo6vwudBpegp66Q5Olh5sJt7Z6qhSJDk0Qb1KrxBabLz5wSk71tQoUMh-Ye7kfCzuIOcqfsj2MMQ3oPFoP3Ocp-pnIU%26sig%3DCg0Ar
KJSzHk4kkPHVhdqEAE%26urlfix%3D1%26adurl%3D%22%2C%22maxGuranteed%22%3A%221%22%2C%22maxNonGuranteed%22%3A%2216%22%2
C%22isLegacyParallelReq%22%3A%221%22%2C%22formatWidth%22%3A%22%5BFWIDTH%5D%22%2C%22formatHeight%22%3A%22%5BFHEIGHT
%5D%22%7D%5D%2C%22masterCapability%22%3A%7B%22cookieWriting%22%3Atrue%7D%7D has a request size of 3.8KiB
Request URL: 3.3KiB
Cookies: 35B
Referer Url: 105B
Other: 291B
https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-2045593450925494&output=html&h=600&slotname=9773687864&adk=20198751&adf=27
51417941&w=300&loeid=332260004&guci=2.2.0.0.2.2&format=300x600&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before&ea=0&flash=0&wgl=1&adsid=NT&dt=1526366692914&bpp=25&bdt=4118&fdt=28&idt=1194&shv=r2
0180509&cbv=r20180504&saldr=aa&correlator=7791416534298&rume=1&frm=24&ga_vid=945367900.1526366694&ga_sid=1526366694&ga_hid=2097
2691&ga_fc=0&pv=2&iag=14&icsg=2&nhd=2&dssz=3&mdo=0&mso=0&u_tz=-420&u_his=3&u_java=0&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_c
d=24&u_nplug=4&u_nmime=5&adx=0&ady=0&biw=-12245933&bih=-12245933&isw=300&ish=600&ifk=4241635468&scr_x=-12245933&scr_y=-12245933
&eid=21060549%2C21061122%2C21061782%2C332260000%2C33895414&oid=3&rx=0&eae=2&brdim=0%2C0%2C0%2C0%2C1367%2C0%2C1366%
2C857%2C300%2C600&vis=1&rsz=%7C%7CceE%7C&abl=NS&ppjl=u&pfx=0&fu=8208&bc=5&osw_key=657224047&ifi=1&fsb=1&dtd=1240 has a
request size of 2.5KiB
Request URL: 1004B
Cookies: 62B
Referer Url: 70B
Other: 1.4KiB
https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-2045593450925494&output=html&h=90&slotname=7921566055&adk=2170461093&adf=3
279755405&w=728&loeid=332260004&guci=2.2.0.0.2.2&format=728x90&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before&ea=0&flash=0&wgl=1&adsid=NT&dt=1526366692797&bpp=24&bdt=4081&fdt=30&idt=643&shv=r20
180509&cbv=r20180504&saldr=aa&correlator=4343462510285&frm=24&ga_vid=1735999800.1526366693&ga_sid=1526366693&ga_hid=434185602&ga
_fc=0&pv=2&iag=14&icsg=2&nhd=2&dssz=3&mdo=0&mso=0&u_tz=-420&u_his=3&u_java=0&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=24&u_
nplug=4&u_nmime=5&adx=0&ady=0&biw=-12245933&bih=-12245933&isw=728&ish=90&ifk=249314431&scr_x=-12245933&scr_y=-12245933&eid=2106
1122%2C21061782%2C62710015%2C62710017%2C332260000&oid=3&rx=0&eae=2&brdim=0%2C0%2C0%2C0%2C1367%2C0%2C1366%2C857%2
C728%2C90&vis=1&rsz=%7C%7CceE%7C&abl=NS&ppjl=u&pfx=0&fu=8208&bc=5&osw_key=3665728787&ifi=1&fsb=1&dtd=706 has a request size of
2.4KiB
Request URL: 995B
Cookies: 62B
Referer Url: 70B
Other: 1.3KiB
https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-2045593450925494&output=html&h=250&slotname=1623751017&adk=3149169305&adf=
3279755404&w=300&loeid=332260004&guci=2.2.0.0.2.2&format=300x250&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-
know-what-bitcoin-is-have-you-ever-used-bitcoin-before&ea=0&flash=0&avail_w=300&wgl=1&dt=1526366692854&bpp=20&bdt=4106&fdt=22&idt=339&shv
=r20180509&cbv=r20180504&saldr=aa&correlator=8268168478908&frm=24&ga_vid=1113473330.1526366693&ga_sid=1526366693&ga_hid=15493272
73&ga_fc=0&pv=2&iag=14&icsg=2&nhd=2&dssz=3&mdo=0&mso=0&u_tz=-420&u_his=3&u_java=0&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=
24&u_nplug=4&u_nmime=5&adx=0&ady=0&biw=-12245933&bih=-12245933&isw=300&ish=250&ifk=4241672993&scr_x=-12245933&scr_y=-12245933&e
id=21061122%2C21061782%2C332260000&oid=3&rx=0&eae=2&brdim=0%2C0%2C0%2C0%2C1367%2C0%2C1366%2C857%2C300%2C250&vis=1&r
sz=%7C%7CceE%7C&abl=NS&ppjl=u&pfx=0&fu=8208&bc=5&osw_key=2988443705&ifi=1&fsb=1&dtd=381 has a request size of 2.4KiB
Request URL: 982B
Cookies: 62B
Referer Url: 70B
Other: 1.3KiB
https://loadus.exelator.com/load//net.php?n=PGltZyB3aWR0aD0iMSIgYWx0PSJFeGVsYXRlRGF0YSIgc3R5bGU9ImRpc3BsYXk6bm9uZSIgc3JjPSJodHRwcz
ovL21hdGNoLmFkc3J2ci5vcmcvdHJhY2svY21mL2dlbmVyaWM%2FdHRkX3BpZD1leGVsYXRlIiBoZWlnaHQ9IjEiPjwvaW1nPjxpbWcgd2lkdGg9IjEiIGFsdD0i
RXhlbGF0ZURhdGEiIHN0eWxlPSJkaXNwbGF5Om5vbmUiIHNyYz0iaHR0cHM6Ly9jbS5nLmRvdWJsZWNsaWNrLm5ldC9waXhlbD9nb29nbGVfbmlkPWV4Z
WxhdGUmZ29vZ2xlX2NtJmdvb2dsZV9zYyIgaGVpZ2h0PSIxIj48L2ltZz48aW1nIHdpZHRoPSIxIiBhbHQ9IkV4ZWxhdGVEYXRhIiBzdHlsZT0iZGlzcGxheTpub25lIi
BzcmM9Imh0dHBzOi8vYWEuYWdrbi5jb20vYWRzY29yZXMvZy5waXhlbD9zaWQ9OTIxMTU3ODYwOCZfZz05MDYmZXg9MTI2NjU5Zjk5NjI4YTM3MWQ5YmIyNT

Analyze your site at https://gtmetrix.com Page 24 of 85


PageSpeed Recommendations

JiMTZjNTEyY2MiIGhlaWdodD0iMSI%2BPC9pbWc%2BaHR0cHM6Ly9zeW5jLmFscGhvbnNvLnR2L3N5bmM%2Fc3JjaWQ9MjAwJnB1aWQ9MTI2NjU5Zjk5NjI
4YTM3MWQ5YmIyNTJiMTZjNTEyY2M%3D&h=f35e0f9d392e13f4eafa9658f9744470 has a request size of 2.2KiB
Request URL: 805B
Cookies: 200B
Referer Url: 105B
Other: 1.2KiB
https://ads.adaptv.advertising.com/a/h/DfcEVqB9s2zYDWfVYbq1E7eFADkvZK0rfvfqU+JOwrE6MZJQBXT2g6Q62TNWKVw3?cb=44556923330698731&page
Url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&duration=58&id=5a
d69fbfc269d67d3ed90424&title=Remembering+Barbara+Bush&eov=eov&categories=pop%2Bculture&context=transId%3D0dc9d590-6e8f-4379-9c2a-6239
ed0dd9f6%2CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2Cmv%
3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2C
at%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=737&a.sdk=O2&mnc
=&pi.sound=0&pi.sideviewInitiation=&spot_id=1&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&pi.autoInitiation=0&session_id=4605a908-3c30-43bd-
a0e3-01ff1e84b5b5&moatViewableOpportunity=0&p.vw.viewable=0&pi.sideview=0&mcc=&p.vw.viewableOpportunity=0&a.d.pageUrl=https%3A%2F%2Fww
w.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&p.vw.active=1&width=737&a.ip=204.187.14.74
&adapViewableOpportunity=0&height=415&pi.flashonpage=0&o2token=AAABY2KLykG0663TLFbyrd4Nax9_bKAzPoEYIA%3D%3D has a request size of
2.2KiB
Request URL: 1.2KiB
Cookies: 441B
Referer Url: 105B
Other: 412B
https://ads.adaptv.advertising.com/a/h/DfcEVqB9s2zYDWfVYbq1EzK6R+KQEJZUnv0SmPPAJvw35g0tAp4BvQ==?cb=44556923330698731&pageUrl=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&duration=58&id=5ad69fbfc269
d67d3ed90424&title=Remembering+Barbara+Bush&eov=eov&categories=pop%2Bculture&context=transId%3D0dc9d590-6e8f-4379-9c2a-6239ed0dd9f6
%2CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2Cmv%3D0%2C
ssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2Cat%3D1%
2Cs%3D0%2Csd%3D0%2Css%3D&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=737&a.sdk=O2&mnc=&pi.sou
nd=0&pi.sideviewInitiation=&spot_id=1&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&pi.autoInitiation=0&session_id=4605a908-3c30-43bd-a0e3-01f
f1e84b5b5&moatViewableOpportunity=0&p.vw.viewable=0&pi.sideview=0&mcc=&p.vw.viewableOpportunity=0&a.d.pageUrl=https%3A%2F%2Fwww.girlsas
kguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&p.vw.active=1&width=737&a.ip=204.187.14.74&adapVi
ewableOpportunity=0&height=415&pi.flashonpage=0&o2token=AAABY2KLyj6PR3ogdDKJn5wV3VOr0GywfXrBrg%3D%3D has a request size of 2.2KiB
Request URL: 1.2KiB
Cookies: 441B
Referer Url: 105B
Other: 412B
https://ads.adaptv.advertising.com/a/h/DfcEVqB9s2wqGlu3CWqkASX946lmNRIoNd0r0YtnBGM=?cb=44556923330698731&pageUrl=https%3A%2F%2Fww
w.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&duration=58&id=5ad69fbfc269d67d3ed90424
&title=Remembering+Barbara+Bush&eov=eov&categories=pop%2Bculture&context=transId%3D0dc9d590-6e8f-4379-9c2a-6239ed0dd9f6%2CstudioId%3
D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2Cmv%3D0%2Cssname%3D%2
C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2Cat%3D1%2Cs%3D0%2Cs
d%3D0%2Css%3D&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=737&a.sdk=O2&mnc=&pi.sound=0&pi.sideview
Initiation=&spot_id=1&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&pi.autoInitiation=0&session_id=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&moat
ViewableOpportunity=0&p.vw.viewable=0&pi.sideview=0&mcc=&p.vw.viewableOpportunity=0&a.d.pageUrl=https%3A%2F%2Fwww.girlsaskguys.com%2Fot
her%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&p.vw.active=1&width=737&a.ip=204.187.14.74&adapViewableOpportunit
y=0&height=415&pi.flashonpage=0&o2token=AAABY2KLykLiJAwMBYtgUV-fN6lcHEca4FXG1g%3D%3D has a request size of 2.2KiB
Request URL: 1.2KiB
Cookies: 441B
Referer Url: 105B
Other: 412B
https://ads.adaptv.advertising.com/a/h/DfcEVqB9s2wpRr4b0aYlpPvcXoGmLsylq2v1kNxKznyK6Jog_80uKw==?cb=44556923330698731&pageUrl=https%3A
%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&duration=58944&id=5ad69fbfc26
9d67d3ed90424&title=Remembering+Barbara+Bush&eov=eov&categories=pop%2Bculture&context=transId%3D0dc9d590-6e8f-4379-9c2a-6239ed0dd9f6
%2CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2Cmv%3D0%2C
ssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2Cat%3D1%
2Cs%3D0%2Csd%3D0%2Css%3D&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=737&a.sdk=O2&mnc=&pi.sou
nd=0&pi.sideviewInitiation=&spot_id=1&apid=&pi.autoInitiation=1&session_id=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&moatViewableOpportunity=0&p.v
w.viewable=0&pi.sideview=0&mcc=&p.vw.viewableOpportunity=0&a.d.pageUrl=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-k
now-what-bitcoin-is-have-you-ever-used-bitcoin-before&p.vw.active=1&width=737&a.ip=204.187.14.74&adapViewableOpportunity=0&height=415&pi.flashon
page=0&o2token=AAABY2KLykJ-42CJ7HmZ5AF7ZI3m0e-O4my42Q%3D%3D has a request size of 2.1KiB
Request URL: 1.2KiB
Cookies: 441B
Referer Url: 105B
Other: 412B
https://ads.adaptv.advertising.com/a/h/oNxT217vt8xwbSDpC4H29Xy22zCSJRdxT8SD2yDDkhqg63SWosWzAw==?cb=44556923330698731&pageUrl=https
%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&duration=58944&id=5ad69fb
fc269d67d3ed90424&title=Remembering+Barbara+Bush&eov=eov&categories=pop%2Bculture&context=transId%3D0dc9d590-6e8f-4379-9c2a-6239ed0d
d9f6%2CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2Cmv%3D0
%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2Cat%3
D1%2Cs%3D0%2Csd%3D0%2Css%3D&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=737&a.sdk=O2&mnc=&pi.
sound=0&pi.sideviewInitiation=&spot_id=1&apid=&pi.autoInitiation=1&session_id=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&moatViewableOpportunity=0
&p.vw.viewable=0&pi.sideview=0&mcc=&p.vw.viewableOpportunity=0&a.d.pageUrl=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-y
ou-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&p.vw.active=1&width=737&a.ip=204.187.14.74&adapViewableOpportunity=0&height=415&pi.fla

Analyze your site at https://gtmetrix.com Page 25 of 85


PageSpeed Recommendations

shonpage=0&o2token=AAABY2KLykP1UuzuBRmNU13H6PhZD7gRWZzO4Q%3D%3D has a request size of 2.1KiB


Request URL: 1.2KiB
Cookies: 441B
Referer Url: 105B
Other: 412B
https://ads.adaptv.advertising.com/a/h/DfcEVqB9s2zYDWfVYbq1E7eFADkvZK0rfvfqU+JOwrE6MZJQBXT2g6Q62TNWKVw3?cb=12886007494098935&page
Url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&duration=32&id=5a
e86ee178e0f507d163254d&title=Go+Behind+The+Scenes+of+Kesha’s+June+Cosmo+Cover+Shoot&eov=eov&categories=fashion&context=transId%3D07
1fbe93-1290-4df1-908a-567aa68d9489%2CstudioId%3D551c755409eab10d9c474d28%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b35
19e45102b384dc50e%2Cmv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv
%3DGREEN%2Cvp%3D0%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.contai
ner_width=737&a.sdk=O2&mnc=&pi.sound=0&pi.sideviewInitiation=&spot_id=1&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&pi.autoInitiation=0&se
ssion_id=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&moatViewableOpportunity=0&p.vw.viewable=0&pi.sideview=0&mcc=&p.vw.viewableOpportunity=0&a.d
.pageUrl=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&p.vw.active=1
&width=737&a.ip=204.187.14.74&adapViewableOpportunity=0&height=415&pi.flashonpage=0&o2token=AAABY2KLalOr14mYcSubz2IDapSuyfHj05gUjA%3
D%3D has a request size of 2.1KiB
Request URL: 1.3KiB
Cookies: 357B
Referer Url: 105B
Other: 412B
https://ads.adaptv.advertising.com/a/h/DfcEVqB9s2wqGlu3CWqkASX946lmNRIoNd0r0YtnBGM=?cb=12886007494098935&pageUrl=https%3A%2F%2Fww
w.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&duration=32&id=5ae86ee178e0f507d163254
d&title=Go+Behind+The+Scenes+of+Kesha’s+June+Cosmo+Cover+Shoot&eov=eov&categories=fashion&context=transId%3D071fbe93-1290-4df1-908a-5
67aa68d9489%2CstudioId%3D551c755409eab10d9c474d28%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2C
mv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0
%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=737&a.sdk=O2
&mnc=&pi.sound=0&pi.sideviewInitiation=&spot_id=1&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&pi.autoInitiation=0&session_id=4605a908-3c30-
43bd-a0e3-01ff1e84b5b5&moatViewableOpportunity=0&p.vw.viewable=0&pi.sideview=0&mcc=&p.vw.viewableOpportunity=0&a.d.pageUrl=https%3A%2F%
2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&p.vw.active=1&width=737&a.ip=204.187.
14.74&adapViewableOpportunity=0&height=415&pi.flashonpage=0&o2token=AAABY2KLalOpbgOCLUJafAdM7H2-dmR95SAykg%3D%3D has a request
size of 2.1KiB
Request URL: 1.3KiB
Cookies: 357B
Referer Url: 105B
Other: 412B
https://px.moatads.com/pixel.gif?e=21&q=0&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&b
q=8&g=9&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366705167&de=273333087614&cu=1526366705167&m=
13071&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=7
68&qh=1366&qg=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&aj=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&dj=
0&aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=1&su=1&of=1&oz=1&bu=12769&cd=12769&ah=12769&am=12769&dq=1
2769&dr=12769&ds=12769&dt=12769&zx=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=8.548&dh=17428&hc=1&er=0&e
s=0&gs=0>=0&eu=0&ev=0&et=1&dp=0&dz=1&ea=1&du=169&eb=1&ec=19283&fk=1&ef=0&eg=0&eh=0&ei=0&ej=0&rf=0&re=0&cl=0&at=0&d=57d325e276
a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859
375382&zMoatOrigSlicer1=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0
&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=377599519&cs=0 has a request size of 2.1KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 105B
Other: 281B
https://px.moatads.com/pixel.gif?e=28&q=0&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&b
q=8&g=8&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366705167&de=273333087614&cu=1526366705167&m=
13065&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=7
68&qh=1366&qg=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&aj=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&dj=
0&aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=1&su=1&of=1&oz=1&bu=12769&cd=12769&ah=12769&am=12769&dq=1
2769&dr=12769&ds=12769&dt=12769&zx=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=8.548&dh=17428&hc=1&er=0&e
s=0&gs=0>=0&eu=0&ev=0&et=1&dp=0&dz=1&ea=1&du=169&eb=1&ec=19283&fk=1&ef=0&eg=0&eh=0&ei=0&ej=0&rf=0&re=0&cl=0&at=0&d=57d325e276
a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859
375382&zMoatOrigSlicer1=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0
&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=341088076&cs=0 has a request size of 2.1KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 105B

Analyze your site at https://gtmetrix.com Page 26 of 85


PageSpeed Recommendations

Other: 281B
https://pubads.g.doubleclick.net/gampad/ads?sz=640x480%7C400x300&iu=%2F281896196%2FGirlsAskGuys_Desktop_Video_Preroll&gdfp_req=1&env=v
p&output=xml_vast3&unviewed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-
you-ever-used-bitcoin-before&description_url=girlsaskguys.com&correlator=1542266686683055&cust_params=XperLevel%3D%26qkeyword%3D%26oke
yword%3D%26utm_source%3DNone%26utm_medium%3DNone%26utm_campaign%3DNone%26PostInfo%3Dq2198181%26Gender%3DUnknownGen
der%26Age%3DUnknownAge%26Mobile%3DMobileNo%26PageType%3DQuestion%26BrandId%3D%26MarkedAs%3DFalse%26ShowAllAds%3DYes%2
6Topics%3Dother&mpt=playwire&mpv=3.2&eid=495644020&sdkv=h.3.208.0&sdki=3c0d&scor=3366005329209160&adk=3984514231&u_so=l&osd=2&fr
m=2&sdr=1&is_amp=0&adsid=NT&ged=ve4_td11_tt0_pd11_la11000_er0.0.154.300_vi0.0.228.405_vp100_eb24427 has a request size of 2.1KiB
Request URL: 862B
Cookies: 62B
Referer Url: 59B
Other: 1.1KiB
https://px.moatads.com/pixel.gif?e=29&q=4&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&b
q=8&g=7&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366705167&de=273333087614&cu=1526366705167&m=
13062&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=7
68&qh=1366&qg=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&aj=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&dj=
0&aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=1&su=1&of=1&oz=1&bu=12769&cd=10046&ah=12769&am=10046&dq=1
2769&dr=10046&ds=12769&dt=10046&zx=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=8.548&dh=17428&hc=1&er=0&e
s=0&gs=0>=0&eu=0&ev=0&et=1&dp=0&dz=1&du=169&eb=1&ec=19283&fk=1&ef=0&eg=0&eh=0&ei=0&ej=0&rf=0&re=0&cl=0&at=0&d=57d325e276a6057
ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent85937538
2&zMoatOrigSlicer1=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0
&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=506754167&cs=0 has a request size of 2.1KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 105B
Other: 281B
https://px.moatads.com/pixel.gif?e=29&q=3&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&b
q=8&g=6&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366705167&de=273333087614&cu=1526366705167&m=
10300&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=7
68&qh=1366&qg=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&aj=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&dj=
0&aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=1&su=1&of=1&oz=1&bu=10046&cd=6571&ah=10046&am=6571&dq=100
46&dr=6571&ds=10046&dt=6571&zx=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=8.548&dh=17428&hc=1&er=0&es=0&
gs=0>=0&eu=0&ev=0&et=1&dp=0&dz=1&du=169&eb=1&ec=19283&fk=1&ef=0&eg=0&eh=0&ei=0&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00
%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrig
Slicer1=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0
%3A1%3A1366%3A857%3A0&fs=143783&na=1682431565&cs=0 has a request size of 2.1KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 105B
Other: 281B
https://ads.adaptv.advertising.com/a/h/DfcEVqB9s2wpRr4b0aYlpPvcXoGmLsylq2v1kNxKznyK6Jog_80uKw==?cb=12886007494098935&pageUrl=https%3A
%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&duration=32704&id=5ae86ee178
e0f507d163254d&title=Go+Behind+The+Scenes+of+Kesha’s+June+Cosmo+Cover+Shoot&eov=eov&categories=fashion&context=transId%3D071fbe93-12
90-4df1-908a-567aa68d9489%2CstudioId%3D551c755409eab10d9c474d28%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102
b384dc50e%2Cmv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGRE
EN%2Cvp%3D0%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width
=737&a.sdk=O2&mnc=&pi.sound=0&pi.sideviewInitiation=&spot_id=1&apid=&pi.autoInitiation=1&session_id=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&
moatViewableOpportunity=0&p.vw.viewable=0&pi.sideview=0&mcc=&p.vw.viewableOpportunity=0&a.d.pageUrl=https%3A%2F%2Fwww.girlsaskguys.com%
2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&p.vw.active=1&width=737&a.ip=204.187.14.74&adapViewableOppor
tunity=0&height=415&pi.flashonpage=0&o2token=AAABY2KLalS-ksqJRQYYkjvM8SSaA0QlogoNpg%3D%3D has a request size of 2.1KiB
Request URL: 1.2KiB
Cookies: 357B
Referer Url: 105B
Other: 412B
https://ads.adaptv.advertising.com/a/h/oNxT217vt8xwbSDpC4H29Xy22zCSJRdxT8SD2yDDkhqg63SWosWzAw==?cb=12886007494098935&pageUrl=https
%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&duration=32704&id=5ae86e
e178e0f507d163254d&title=Go+Behind+The+Scenes+of+Kesha’s+June+Cosmo+Cover+Shoot&eov=eov&categories=fashion&context=transId%3D071fbe
93-1290-4df1-908a-567aa68d9489%2CstudioId%3D551c755409eab10d9c474d28%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e4
5102b384dc50e%2Cmv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3D
GREEN%2Cvp%3D0%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_
width=737&a.sdk=O2&mnc=&pi.sound=0&pi.sideviewInitiation=&spot_id=1&apid=&pi.autoInitiation=1&session_id=4605a908-3c30-43bd-a0e3-01ff1e84b5
b5&moatViewableOpportunity=0&p.vw.viewable=0&pi.sideview=0&mcc=&p.vw.viewableOpportunity=0&a.d.pageUrl=https%3A%2F%2Fwww.girlsaskguys.co

Analyze your site at https://gtmetrix.com Page 27 of 85


PageSpeed Recommendations

m%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&p.vw.active=1&width=737&a.ip=204.187.14.74&adapViewableO
pportunity=0&height=415&pi.flashonpage=0&o2token=AAABY2KLalVDwYgrgJGAJEaXUZsa3jMNVeWHhw%3D%3D has a request size of 2.1KiB
Request URL: 1.2KiB
Cookies: 357B
Referer Url: 105B
Other: 412B
https://px.moatads.com/pixel.gif?e=29&q=2&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&b
q=8&g=4&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366705167&de=273333087614&cu=1526366705167&m=
6654&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=76
8&qh=1366&qg=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&aj=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&dj=0
&aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=1&su=1&of=1&oz=1&bu=6571&cd=2214&ah=6571&am=2214&dq=6571&
dr=2214&ds=6571&dt=2214&zx=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=8.548&dh=17428&hc=1&er=0&es=0&gs=0
>=0&eu=0&ev=0&et=1&dp=0&dz=1&du=169&eb=1&ec=19283&fk=1&ef=0&eg=0&eh=0&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefi
ned%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrigSlicer1=C
9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A
1366%3A857%3A0&fs=143783&na=1732696746&cs=0 has a request size of 2.1KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 105B
Other: 281B
https://px.moatads.com/pixel.gif?e=9&q=1&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(%
2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3De
u!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD
%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0l
Bg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFe
BCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&bq
=8&g=5&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366705167&de=273333087614&cu=1526366705167&m=6
668&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=768
&qh=1366&qg=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&aj=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&dj=0&
aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=1&su=1&of=1&oz=1&bu=6571&cd=6571&ah=6571&am=6571&dq=6571&dr
=6571&ds=6571&dt=6571&zx=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=8.548&dh=17428&hc=1&er=0&es=0&gs=0>=
0&eu=0&ev=0&et=1&dp=0&dz=1&du=169&eb=1&ec=19283&fk=1&ef=0&eg=0&eh=0&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefine
d%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrigSlicer1=C9D
9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A136
6%3A857%3A0&fs=143783&na=941294573&cs=0 has a request size of 2.1KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 105B
Other: 281B
https://log.adaptv.advertising.com/log?3a=prefilledOpportunity&5=738151&11d=3170334404650173&65=preroll&6a=-2&6b=-2&85=Go+Behind+The+Scen
es+of+Kesha’s+June+Cosmo+Cover+Shoot&17b=0&optout=0&3=-2&5c=aolvideo&2e=www.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-
bitcoin-is-have-you-ever-used-bitcoin-before&2f=girlsaskguys.com&30=girlsaskguys.com&31=3&32=0&fd=140477&83=5ae86ee178e0f507d163254d&82=
32704&80=400522289169006334&f8=1A789ec79c-580b-11e8-9111-2c44fd94659c&172=0&171=12920887032793854221&42=false&8f=737&41=415&2
1=transId%3D071fbe93-1290-4df1-908a-567aa68d9489%2CstudioId%3D551c755409eab10d9c474d28%2Cbcid%3D57d325e276a6057ba4a05a00%2C
pid%3D5952b3519e45102b384dc50e%2Cmv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cf
dv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&1b=fashion&77=805091410&67=%7BplayerRev%7D&d6=
2af27f12-73bc-4602-a315-b0c50f9be39a&bf=0&74=ah&d5=1&d8=ip-10-49-140-187&8e=0&f0=0&162=1.77&68=3&ctx.plid=5952b3519e45102b384dc50e
&ctx.container_height=415&ctx.container_width=737&d7=O2&c4=0&91=ONLINE_VIDEO&45=204.187.14.74&17f=ONLINE_VIDEO&ee=Linux&b5=1&144=0
&145=0&146=0&147=0&148=0&149=1&14c=3.4394&14d=3.9088&153=43.4831&154=42.0596&gdpr=0&115=3&120=0&100=%7BadSeq%7D&112=1&13
4=69&64=girlsaskguys.com&33=83167122&a.cv=1 has a request size of 2.1KiB
Request URL: 1.3KiB
Cookies: 441B
Referer Url: 105B
Other: 290B
https://px.moatads.com/pixel.gif?e=29&q=1&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&b
q=8&g=3&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366705167&de=273333087614&cu=1526366705167&m=
2329&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=76
8&qh=1366&qg=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&aj=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&dj=0
&aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=1&su=1&of=1&oz=1&bu=2214&cd=1389&ah=2214&am=1389&dq=2214&
dr=1389&ds=2214&dt=1389&zx=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=8.548&hc=0&er=0&es=0&gs=0>=0&eu=0&
ev=0&et=1&dp=0&dz=1&du=169&eb=1&ec=19283&fk=1&ef=0&eg=0&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefined%3Aundefined
%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrigSlicer1=C9D9C0D0-EC9A-4

Analyze your site at https://gtmetrix.com Page 28 of 85


PageSpeed Recommendations

BFF-A4AE-2FAAC0FC3FAA&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0
&fs=143783&na=123358043&cs=0 has a request size of 2.1KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 105B
Other: 281B
https://px.moatads.com/pixel.gif?e=9&q=0&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(%
2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3De
u!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD
%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0l
Bg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFe
BCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&bq
=8&g=2&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366705167&de=273333087614&cu=1526366705167&m=1
427&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=768
&qh=1366&qg=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&aj=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&dj=0&
aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=1&su=1&of=1&oz=1&bu=1389&cd=77&ah=1389&am=77&dq=1389&dr=77&
ds=1389&dt=77&zx=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=33&hc=0&er=0&es=0&gs=0>=0&eu=0&ev=0&et=1&dp=
0&dz=1&du=169&eb=1&ec=19283&fk=1&ef=0&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e4510
2b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrigSlicer1=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3
FAA&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=5764
55989&cs=0 has a request size of 2.1KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 105B
Other: 281B
https://log.adaptv.advertising.com/log?3a=prefilledOpportunity&5=738151&11d=3170334404650173&65=preroll&6a=-2&6b=-2&85=Remembering+Barbara
+Bush&17b=0&optout=0&3=-2&5c=aolvideo&2e=www.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-
before&2f=girlsaskguys.com&30=girlsaskguys.com&31=3&32=0&fd=140477&83=5ad69fbfc269d67d3ed90424&82=58944&80=400522289169006334&f8
=1A789ec79c-580b-11e8-9111-2c44fd94659c&172=0&171=12920887032793854221&42=false&8f=737&41=415&21=transId%3D0dc9d590-6e8f-4379-9c
2a-6239ed0dd9f6%2CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e
%2Cmv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%
3D0%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&1b=pop%2Bculture&77=805091410&67={playerRev}&d6=8c7986db-d6ef-4a69-a6ca-177e260dc4
c1&bf=0&74=ah&d5=1&d8=ip-10-49-140-94&8e=0&f0=0&162=1.76&68=3&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container
_width=737&d7=O2&c4=0&91=ONLINE_VIDEO&45=204.187.14.74&17f=ONLINE_VIDEO&ee=Linux&b5=1&144=0&145=0&146=0&147=0&148=0&149=1&
14c=3.4305&14d=3.8993&153=43.4637&154=42.0566&gdpr=0&115=3&120=0&100={adSeq}&112=1&134=69&64=girlsaskguys.com&33=71159541&a.cv
=1 has a request size of 2.1KiB
Request URL: 1.2KiB
Cookies: 441B
Referer Url: 105B
Other: 290B
https://px.moatads.com/pixel.gif?e=9&q=0&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(%
2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3De
u!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD
%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0l
Bg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFe
BCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&bq
=8&g=2&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366721677&de=739523300776&cu=1526366721677&m=1
181&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=768
&qh=1366&qg=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&aa=0&ad=0
&cn=0&gk=0&gl=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=0&su=1&of=1&oz=1&bu=1144&cd=65&ah=1144&am=65&dq=1144&dr=65&ds=1144&dt=65&z
x=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=59&hc=0&er=0&es=0&gs=0>=0&eu=0&ev=0&et=1&dp=0&dz=1&du=98&e
b=1&ec=35714&fk=1&ef=0&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=g
irlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrigSlicer1=8EA52084-D509-4EE6-BC88-2B0C50C529F6&zMoatOrigSlice
r2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=910094709&cs=0 has a
request size of 2.0KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 105B
Other: 281B
https://log.adaptv.advertising.com/log?3a=prefilledOpportunity&5=800953&11d=3440066940773565&65=preroll&6a=-2&6b=-2&85=Go+Behind+The+Scen
es+of+Kesha’s+June+Cosmo+Cover+Shoot&17b=0&optout=0&3=-2&5c=aolvideo&2e=www.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-
bitcoin-is-have-you-ever-used-bitcoin-before&2f=girlsaskguys.com&30=girlsaskguys.com&31=3&32=1&fd=140477&83=5ae86ee178e0f507d163254d&82=
32704&80=400522289169006334&f8=1A789ec79c-580b-11e8-9111-2c44fd94659c&172=0&171=12920887032793854221&42=false&8f=737&41=415&2
1=transId%3D071fbe93-1290-4df1-908a-567aa68d9489%2CstudioId%3D551c755409eab10d9c474d28%2Cbcid%3D57d325e276a6057ba4a05a00%2C
pid%3D5952b3519e45102b384dc50e%2Cmv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cf
dv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&1b=fashion&77=805142200&67=%7BplayerRev%7D&d6=
629e6b8d-ea68-41a7-9729-5c56c51f3ace&bf=1&74=ah&d5=1&d8=ip-10-49-140-182&8e=0&f0=0&162=-1&68=3&ctx.plid=5952b3519e45102b384dc50e&
ctx.container_height=415&ctx.container_width=737&d7=O2&c4=0&91=ONLINE_VIDEO&45=204.187.14.74&17f=ONLINE_VIDEO&ee=Linux&b5=1&144=0&
145=0&146=0&147=0&148=0&149=1&gdpr=0&115=3&120=0&100=%7BadSeq%7D&112=1&134=69&64=girlsaskguys.com&33=2016079&a.cv=1 has a
request size of 2.0KiB
Request URL: 1.2KiB
Cookies: 441B

Analyze your site at https://gtmetrix.com Page 29 of 85


PageSpeed Recommendations

Referer Url: 105B


Other: 290B
https://log.adaptv.advertising.com/log?3a=prefilledOpportunity&5=1114642&11d=4787350936888509&65=preroll&6a=-2&6b=-2&85=Go+Behind+The+Sce
nes+of+Kesha’s+June+Cosmo+Cover+Shoot&17b=0&optout=0&3=-2&5c=aolvideo&2e=www.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what
-bitcoin-is-have-you-ever-used-bitcoin-before&2f=girlsaskguys.com&30=girlsaskguys.com&31=3&32=0&fd=140477&83=5ae86ee178e0f507d163254d&82
=32&80=400522289169006334&f8=1A789ec79c-580b-11e8-9111-2c44fd94659c&172=1&171=12920887032793854221&42=false&8f=737&41=415&21=t
ransId%3D071fbe93-1290-4df1-908a-567aa68d9489%2CstudioId%3D551c755409eab10d9c474d28%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid
%3D5952b3519e45102b384dc50e%2Cmv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%
3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&1b=fashion&77=805091410&67=%7BplayerRev%7D&d6=f9f34
a7f-093b-4c2f-b187-4b9bb0765468&bf=0&74=ah&d5=1&d8=ip-10-49-142-252&8e=0&f0=0&162=-1&68=3&ctx.plid=5952b3519e45102b384dc50e&ctx.cont
ainer_height=415&ctx.container_width=737&d7=O2&c4=0&91=ONLINE_VIDEO&45=204.187.14.74&17f=ONLINE_VIDEO&ee=Linux&b5=1&144=0&145=0&
146=0&147=0&148=0&149=0&gdpr=0&115=3&120=0&100=%7BadSeq%7D&112=1&134=69&64=girlsaskguys.com&33=24888515&a.cv=1 has a request
size of 2.0KiB
Request URL: 1.2KiB
Cookies: 441B
Referer Url: 105B
Other: 290B
https://log.adaptv.advertising.com/log?3a=prefilledOpportunity&5=1113111&11d=4780775341958333&65=preroll&6a=-2&6b=-2&85=Go+Behind+The+Sce
nes+of+Kesha’s+June+Cosmo+Cover+Shoot&17b=0&optout=0&3=-2&5c=aolvideo&2e=www.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what
-bitcoin-is-have-you-ever-used-bitcoin-before&2f=girlsaskguys.com&30=girlsaskguys.com&31=3&32=0&fd=140477&83=5ae86ee178e0f507d163254d&82
=32&80=400522289169006334&f8=1A789ec79c-580b-11e8-9111-2c44fd94659c&172=0&171=12920887032793854221&42=false&8f=737&41=415&21=t
ransId%3D071fbe93-1290-4df1-908a-567aa68d9489%2CstudioId%3D551c755409eab10d9c474d28%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid
%3D5952b3519e45102b384dc50e%2Cmv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%
3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&1b=fashion&77=805091410&67=%7BplayerRev%7D&d6=194d
26ee-e48a-4b51-9021-be378d268df3&bf=0&74=ah&d5=1&d8=ip-10-49-143-109&8e=0&f0=0&162=-1&68=3&ctx.plid=5952b3519e45102b384dc50e&ctx.co
ntainer_height=415&ctx.container_width=737&d7=O2&c4=0&91=ONLINE_VIDEO&45=204.187.14.74&17f=ONLINE_VIDEO&ee=Linux&b5=1&144=0&145=0
&146=0&147=0&148=0&149=0&gdpr=0&115=3&120=0&100=%7BadSeq%7D&112=1&134=69&64=girlsaskguys.com&33=3297144&a.cv=1 has a request
size of 2.0KiB
Request URL: 1.2KiB
Cookies: 441B
Referer Url: 105B
Other: 290B
https://px.moatads.com/pixel.gif?e=0&q=0&hp=1&kq=1&lo=0&qs=1&ak=https%3A%2F%2Fwww.girlsaskguys.com%2F%2Fother%2F-&i=AOLVIDIBLE_VIDE
OJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%
25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3Deu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U
%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbB
BBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBH
CZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFeBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCK
qeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=8&g=0&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366705167&de=2
73333087614&cu=1526366705167&m=260&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=8
58&qi=1367&qj=858&qf=1366&qe=768&qh=1366&qg=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&pg=0&pf=
0&ib=1&cc=0&bw=0&bx=0&aa=0&ad=0&cn=0&gk=0&gl=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=0&su=1&of=1&oz=1&bu=77&cd=0&ah=77&am=0&dq=
77&dr=0&ds=77&dt=0&zx=0&fc=1&vm=0&vl=0&vt=0&vd=0&zMoatSRE=0&zMoatVSD=0&hc=0&er=0&es=0&gs=0>=0&eu=0&ev=0&et=1&dp=0&dz=1&eb=1&f
k=1&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=gi
rlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrigSlicer1=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&zMoatOrigSlicer2=N%2FA&ab=3&ac=
1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=2015440955&cs=0 has a request size of 2.0KiB
Request URL: 1.6KiB
Cookies: 0B
Referer Url: 105B
Other: 281B
https://px.moatads.com/pixel.gif?e=0&q=0&hp=1&kq=1&lo=0&qs=1&ak=https%3A%2F%2Fwww.girlsaskguys.com%2F%2Fother%2F-&i=AOLVIDIBLE_VIDE
OJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%
25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3Deu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U
%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbB
BBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBH
CZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFeBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCK
qeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=8&g=0&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366721677&de=7
39523300776&cu=1526366721677&m=182&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=8
58&qi=1367&qj=858&qf=1366&qe=768&qh=1366&qg=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&pg=0&pf=
0&ib=1&cc=0&bw=0&bx=0&aa=0&ad=0&cn=0&gk=0&gl=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=0&su=1&of=1&oz=1&bu=65&cd=0&ah=65&am=0&dq=
65&dr=0&ds=65&dt=0&zx=0&fc=1&vm=0&vl=0&vt=0&vd=0&zMoatSRE=0&zMoatVSD=0&hc=0&er=0&es=0&gs=0>=0&eu=0&ev=0&et=1&dp=0&dz=1&eb=1&f
k=1&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=gi
rlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrigSlicer1=8EA52084-D509-4EE6-BC88-2B0C50C529F6&zMoatOrigSlicer2=N%2FA&ab=3&ac=1
&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=786567174&cs=0 has a request size of 2.0KiB
Request URL: 1.6KiB
Cookies: 0B
Referer Url: 105B
Other: 281B
https://log.adaptv.advertising.com/log?3a=prefilledOpportunity&5=1114644&11d=-2&65=preroll&6a=-2&6b=-2&85=Go+Behind+The+Scenes+of+Kesha’s+J
une+Cosmo+Cover+Shoot&17b=0&optout=0&3=-2&5c=aolvideo&2e=www.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-yo
u-ever-used-bitcoin-before&2f=girlsaskguys.com&30=girlsaskguys.com&31=3&32=0&fd=140477&83=5ae86ee178e0f507d163254d&82=32&80=4005222
89169006334&f8=1A789ec79c-580b-11e8-9111-2c44fd94659c&172=0&171=12920887032793854221&42=false&8f=737&41=415&21=transId%3D071fbe

Analyze your site at https://gtmetrix.com Page 30 of 85


PageSpeed Recommendations

93-1290-4df1-908a-567aa68d9489%2CstudioId%3D551c755409eab10d9c474d28%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e4
5102b384dc50e%2Cmv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3D
GREEN%2Cvp%3D0%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&1b=fashion&77=805091410&67=%7BplayerRev%7D&d6=8f1eae4a-a580-4793-8
bf9-42317cc61b2f&bf=0&74=ah&d5=1&d8=ip-10-49-142-190&8e=0&f0=0&162=-1&68=3&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415
&ctx.container_width=737&d7=O2&c4=0&91=ONLINE_VIDEO&45=204.187.14.74&17f=ONLINE_VIDEO&ee=Linux&b5=1&144=0&145=0&146=0&147=0&1
48=0&149=0&gdpr=0&115=3&120=0&100=%7BadSeq%7D&112=1&134=69&64=girlsaskguys.com&33=8192476&a.cv=1 has a request size of 2.0KiB
Request URL: 1.2KiB
Cookies: 441B
Referer Url: 105B
Other: 290B
https://ads.adaptv.advertising.com/a/h/DfcEVqB9s2zYDWfVYbq1EzK6R+KQEJZUnv0SmPPAJvw35g0tAp4BvQ==?cb=12886007494098935&pageUrl=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&duration=32&id=5ae86ee178e
0f507d163254d&title=Go+Behind+The+Scenes+of+Kesha’s+June+Cosmo+Cover+Shoot&eov=eov&categories=fashion&context=transId%3D071fbe93-129
0-4df1-908a-567aa68d9489%2CstudioId%3D551c755409eab10d9c474d28%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b
384dc50e%2Cmv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREE
N%2Cvp%3D0%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=
737&a.sdk=O2&mnc=&pi.sound=0&pi.sideviewInitiation=&spot_id=1&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&pi.autoInitiation=0&session_id=4
605a908-3c30-43bd-a0e3-01ff1e84b5b5&moatViewableOpportunity=0&p.vw.viewable=0&pi.sideview=0&mcc=&p.vw.viewableOpportunity=0&a.d.pageUrl=ht
tps%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&p.vw.active=1&width=737
&a.ip=204.187.14.74&adapViewableOpportunity=0&height=415&pi.flashonpage=0&o2token=AAABY2KLalB2UsJkvM1KVH84GAFFR0ipLPqbSA%3D%3D
has a request size of 2.0KiB
Request URL: 1.3KiB
Cookies: 235B
Referer Url: 105B
Other: 412B
https://log.adaptv.advertising.com/log?3a=prefilledOpportunity&5=800953&11d=3440066940773565&65=preroll&6a=-2&6b=-2&85=Remembering+Barbara
+Bush&17b=0&optout=0&3=-2&5c=aolvideo&2e=www.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-
before&2f=girlsaskguys.com&30=girlsaskguys.com&31=3&32=1&fd=140477&83=5ad69fbfc269d67d3ed90424&82=58944&80=400522289169006334&f8
=1A789ec79c-580b-11e8-9111-2c44fd94659c&172=0&171=12920887032793854221&42=false&8f=737&41=415&21=transId%3D0dc9d590-6e8f-4379-9c
2a-6239ed0dd9f6%2CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e
%2Cmv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%
3D0%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&1b=pop%2Bculture&77=805091410&67={playerRev}&d6=5e41b4de-36d3-4a00-987d-f585efa558
85&bf=0&74=ah&d5=1&d8=ip-10-49-142-233&8e=0&f0=0&162=-1&68=3&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_
width=737&d7=O2&c4=0&91=ONLINE_VIDEO&45=204.187.14.74&17f=ONLINE_VIDEO&ee=Linux&b5=1&144=0&145=0&146=0&147=0&148=0&149=1&g
dpr=0&115=3&120=0&100={adSeq}&112=1&134=69&64=girlsaskguys.com&33=25688057&a.cv=1 has a request size of 2.0KiB
Request URL: 1.2KiB
Cookies: 441B
Referer Url: 105B
Other: 290B
https://px.moatads.com/pixel.gif?e=29&q=0&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=8&g=1&hq
=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366705167&de=273333087614&cu=1526366705167&m=267&ar=4c9
0a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=768&qh=1366&q
g=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&aa=0&ad=0&cn=0&gk=0
&gl=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=0&su=1&of=1&oz=1&bu=77&cd=77&ah=77&am=77&dq=77&dr=77&ds=77&dt=77&zx=0&fc=1&vm=0&vl=0&
vt=0&vd=0&zMoatSRE=0&zMoatVSD=0&hc=0&er=0&es=0&gs=0>=0&eu=0&ev=0&et=1&dp=0&dz=1&du=169&eb=1&ec=19283&fk=1&ef=0&rf=0&re=0&cl=0
&at=0&d=57d325e276a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw
=aolvidiblecontent859375382&zMoatOrigSlicer1=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=
500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=98514933&cs=0 has a request size of 2.0KiB
Request URL: 1.6KiB
Cookies: 0B
Referer Url: 105B
Other: 281B
https://px.moatads.com/pixel.gif?e=29&q=0&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=8&g=1&hq
=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366721677&de=739523300776&cu=1526366721677&m=189&ar=4c9
0a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=768&qh=1366&q
g=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&aa=0&ad=0&cn=0&gk=0
&gl=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=0&su=1&of=1&oz=1&bu=65&cd=65&ah=65&am=65&dq=65&dr=65&ds=65&dt=65&zx=0&fc=1&vm=0&vl=0&
vt=0&vd=0&zMoatSRE=0&zMoatVSD=0&hc=0&er=0&es=0&gs=0>=0&eu=0&ev=0&et=1&dp=0&dz=1&du=98&eb=1&ec=35714&fk=1&ef=0&rf=0&re=0&cl=0&
at=0&d=57d325e276a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=
aolvidiblecontent859375382&zMoatOrigSlicer1=8EA52084-D509-4EE6-BC88-2B0C50C529F6&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=50
0&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=946171454&cs=0 has a request size of 2.0KiB
Request URL: 1.6KiB

Analyze your site at https://gtmetrix.com Page 31 of 85


PageSpeed Recommendations

Cookies: 0B
Referer Url: 105B
Other: 281B
https://log.adaptv.advertising.com/log?3a=prefilledOpportunity&5=1113111&11d=4780775341958333&65=preroll&6a=-2&6b=-2&85=Remembering+Barbar
a+Bush&17b=0&optout=0&3=-2&5c=aolvideo&2e=www.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin
-before&2f=girlsaskguys.com&30=girlsaskguys.com&31=3&32=0&fd=140477&83=5ad69fbfc269d67d3ed90424&82=58&80=400522289169006334&f8=1A
789ec79c-580b-11e8-9111-2c44fd94659c&172=0&171=12920887032793854221&42=false&8f=737&41=415&21=transId%3D0dc9d590-6e8f-4379-9c2a-
6239ed0dd9f6%2CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2C
mv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0
%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&1b=pop%2Bculture&77=805091410&67={playerRev}&d6=338d7cd1-7860-4688-9e6d-89d0025de35e
&bf=0&74=ah&d5=1&d8=ip-10-49-142-13&8e=0&f0=0&162=-1&68=3&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_widt
h=737&d7=O2&c4=0&91=ONLINE_VIDEO&45=204.187.14.74&17f=ONLINE_VIDEO&ee=Linux&b5=1&144=0&145=0&146=0&147=0&148=0&149=0&gdpr=
0&115=3&120=0&100={adSeq}&112=1&134=69&64=girlsaskguys.com&33=57826915&a.cv=1 has a request size of 2.0KiB
Request URL: 1.2KiB
Cookies: 441B
Referer Url: 105B
Other: 290B
https://log.adaptv.advertising.com/log?3a=prefilledOpportunity&5=1114642&11d=4787350936888509&65=preroll&6a=-2&6b=-2&85=Remembering+Barbar
a+Bush&17b=0&optout=0&3=-2&5c=aolvideo&2e=www.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin
-before&2f=girlsaskguys.com&30=girlsaskguys.com&31=3&32=0&fd=140477&83=5ad69fbfc269d67d3ed90424&82=58&80=400522289169006334&f8=1A
789ec79c-580b-11e8-9111-2c44fd94659c&172=0&171=12920887032793854221&42=false&8f=737&41=415&21=transId%3D0dc9d590-6e8f-4379-9c2a-
6239ed0dd9f6%2CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2C
mv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0
%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&1b=pop%2Bculture&77=805091410&67={playerRev}&d6=23238dd4-ce75-4169-b4b5-5c90ad538c8e&
bf=0&74=ah&d5=1&d8=ip-10-49-143-8&8e=0&f0=0&162=-1&68=3&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=
737&d7=O2&c4=0&91=ONLINE_VIDEO&45=204.187.14.74&17f=ONLINE_VIDEO&ee=Linux&b5=1&144=0&145=0&146=0&147=0&148=0&149=0&gdpr=0
&115=3&120=0&100={adSeq}&112=1&134=69&64=girlsaskguys.com&33=20853980&a.cv=1 has a request size of 2.0KiB
Request URL: 1.2KiB
Cookies: 441B
Referer Url: 105B
Other: 290B
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cfp=1;rndc=1526366706;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2F
config.playwire.com%2F1020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20spac
e.%20What%20does%20this%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversi
on=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.32
02.94%20Safari%2F537.36;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=642306899275547;time=1526366707;headerbids=amazon;
keywords=;categories=Entertainment;acao=* has a request size of 2.0KiB
Request URL: 827B
Cookies: 31B
Referer Url: 70B
Other: 1.1KiB
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cfp=1;rndc=1526366707;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2F
config.playwire.com%2F1020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20spac
e.%20What%20does%20this%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversi
on=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.32
02.94%20Safari%2F537.36;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=642306899275547;time=1526366707;headerbids=amazon;
keywords=;categories=Entertainment;acao=* has a request size of 2.0KiB
Request URL: 827B
Cookies: 31B
Referer Url: 70B
Other: 1.1KiB
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cfp=1;rndc=1526366719;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2F
config.playwire.com%2F1020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20spac
e.%20What%20does%20this%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversi
on=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.32
02.94%20Safari%2F537.36;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=307581884561604;time=1526366720;headerbids=amazon;
keywords=;categories=Entertainment;acao=* has a request size of 2.0KiB
Request URL: 827B
Cookies: 31B
Referer Url: 70B
Other: 1.1KiB
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cfp=1;rndc=1526366720;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2F
config.playwire.com%2F1020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20spac
e.%20What%20does%20this%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversi
on=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.32
02.94%20Safari%2F537.36;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=263206184142299;time=1526366721;headerbids=amazon;
keywords=;categories=Entertainment;acao=* has a request size of 2.0KiB
Request URL: 827B

Analyze your site at https://gtmetrix.com Page 32 of 85


PageSpeed Recommendations

Cookies: 31B
Referer Url: 70B
Other: 1.1KiB
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cfp=1;rndc=1526366721;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2F
config.playwire.com%2F1020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20spac
e.%20What%20does%20this%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversi
on=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.32
02.94%20Safari%2F537.36;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=263206184142299;time=1526366721;headerbids=amazon;
keywords=;categories=Entertainment;acao=* has a request size of 2.0KiB
Request URL: 827B
Cookies: 31B
Referer Url: 70B
Other: 1.1KiB
https://log.adaptv.advertising.com/log?3a=prefilledOpportunity&5=1114644&11d=-2&65=preroll&6a=-2&6b=-2&85=Remembering+Barbara+Bush&17b=0&o
ptout=0&3=-2&5c=aolvideo&2e=www.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&2f=girlsas
kguys.com&30=girlsaskguys.com&31=3&32=0&fd=140477&83=5ad69fbfc269d67d3ed90424&82=58&80=400522289169006334&f8=1A789ec79c-580b-1
1e8-9111-2c44fd94659c&172=0&171=12920887032793854221&42=false&8f=737&41=415&21=transId%3D0dc9d590-6e8f-4379-9c2a-6239ed0dd9f6%2
CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2Cmv%3D0%2Cssn
ame%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2Cat%3D1%2C
s%3D0%2Csd%3D0%2Css%3D&1b=pop%2Bculture&77=805091410&67={playerRev}&d6=4f973e08-d08d-4742-b668-e546c86884e1&bf=0&74=ah&d5=
1&d8=ip-10-49-142-242&8e=0&f0=0&162=-1&68=3&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=737&d7=O2&c
4=0&91=ONLINE_VIDEO&45=204.187.14.74&17f=ONLINE_VIDEO&ee=Linux&b5=1&144=0&145=0&146=0&147=0&148=0&149=0&gdpr=0&115=3&120=0
&100={adSeq}&112=1&134=69&64=girlsaskguys.com&33=37131073&a.cv=1 has a request size of 2.0KiB
Request URL: 1.2KiB
Cookies: 441B
Referer Url: 105B
Other: 290B
https://loadm.exelator.com/load/?p=204&g=001&bi=&j=0&google_gid=CAESEDcfXMyjF7wvrEOS0lY3dUM&google_cver=1 has a request size of 2.0KiB
Request URL: 105B
Cookies: 696B
Referer Url: 805B
Other: 413B
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cors=yes;width=405;height=228;referring_url=https%3A%2F%2Fwww.girlsask
guys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2Fconfig.playwire.com%2F1
020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20space.%20What%20does%20t
his%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.
0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.3
6;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=263206184142299;time=1526366721;headerbids=amazon;keywords=;categories=Ent
ertainment;acao=* has a request size of 2.0KiB
Request URL: 805B
Cookies: 31B
Referer Url: 70B
Other: 1.1KiB
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cors=yes;width=405;height=228;referring_url=https%3A%2F%2Fwww.girlsask
guys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2Fconfig.playwire.com%2F1
020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20space.%20What%20does%20t
his%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.
0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.3
6;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=307581884561604;time=1526366720;headerbids=amazon;keywords=;categories=Ent
ertainment;acao=* has a request size of 2.0KiB
Request URL: 805B
Cookies: 31B
Referer Url: 70B
Other: 1.1KiB
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428851/1013/ADTECH;cors=yes;width=405;height=228;referring_url=https%3A%2F%2Fwww.girlsask
guys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;content_url=https%3A%2F%2Fconfig.playwire.com%2F1
020169%2Fvideos%2Fv2%2F5428851%2Fabr-non-hd.m3u8;media_id=5428851;title=She%20says%20she%20needs%20space.%20What%20does%20t
his%20mean%20and%20what%20can%20I%20do%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.
0%20(X11%3B%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.3
6;ip=__IP__;uniqueid=393303066327748;tags=__TAGS__;number=642306899275547;time=1526366707;headerbids=amazon;keywords=;categories=Ent
ertainment;acao=* has a request size of 2.0KiB
Request URL: 805B
Cookies: 31B
Referer Url: 70B
Other: 1.1KiB
https://loadm.exelator.com/load/?p=204&g=460&buid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&j=0 has a request size of 1.9KiB
Request URL: 90B
Cookies: 696B
Referer Url: 805B
Other: 398B
https://pubads.g.doubleclick.net/gampad/ads?sz=640x480&iu=%2F21661689741%2Fegami.generic&cust_params=pid%3D5952b3519e45102b384dc50e

Analyze your site at https://gtmetrix.com Page 33 of 85


PageSpeed Recommendations

&gdfp_req=1&env=vp&output=xml_vast3&unviewed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-
what-bitcoin-is-have-you-ever-used-bitcoin-before&description_url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bit
coin-is-have-you-ever-used-bitcoin-before&correlator=1987303364521424&sdkv=h.3.208.0&sdki=3c0d&scor=2234299425845776&adk=1419277712&u_s
o=l&osd=2&frm=0&sdr=1&is_amp=0&adsid=NT&afvsz=200x200%2C250x250%2C300x250%2C336x280%2C450x50%2C468x60%2C480x70%2C728x90
&ged=ve4_td13_tt6_pd13_la13000_er4523.158.4678.458_vi0.0.768.1366_vp0_ts4_eb16619 has a request size of 1.9KiB
Request URL: 738B
Cookies: 62B
Referer Url: 59B
Other: 1.0KiB
https://pubads.g.doubleclick.net/gampad/ads?sz=640x480&iu=%2F21661689741%2Fegami.generic&cust_params=pid%3D5952b3519e45102b384dc50e
&gdfp_req=1&env=vp&output=xml_vast3&unviewed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-
what-bitcoin-is-have-you-ever-used-bitcoin-before&description_url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bit
coin-is-have-you-ever-used-bitcoin-before&correlator=3601437744986814&sdkv=h.3.208.0&sdki=3c0d&scor=332004460202951&adk=714375606&u_so=l
&osd=2&frm=0&sdr=1&is_amp=0&adsid=NT&afvsz=200x200%2C250x250%2C300x250%2C336x280%2C450x50%2C468x60%2C480x70%2C728x90&ge
d=ve4_td32_tt25_pd32_la32000_er4523.158.4678.458_vi0.0.768.1366_vp0_ts2_eb16619 has a request size of 1.9KiB
Request URL: 737B
Cookies: 62B
Referer Url: 59B
Other: 1.0KiB
https://www.girlsaskguys.com/favicon.png has a request size of 1.8KiB
Request URL: 40B
Cookies: 1.3KiB (note that this is a static resource, and should be served from a cookieless domain)
Referer Url: 105B
Other: 348B
https://trk.vidible.tv/trk/ad-issue.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv
=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&s=true&
sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=8EA52084-D509-4EE6-BC88-2B0C50C529F6&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&at=
preroll&adIdx=-1&aen=LROS%20-%20Pub%20-%20EGAMI%7CAll%20Domains%20-%20ALL%20Geos%20-%20HTML5%20only&pbl=true&ps=html5-vpai
d&rcid=57d325e276a6057ba4a05a00&rid=5a6b7faa55935e30ecd569fb&txid=0dc9d590-6e8f-4379-9c2a-6239ed0dd9f6&usid=4605a908-3c30-43bd-a0e3
-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ad69fbfc269d67d3ed90424&curl=https%3A%2F%2Fpubads.g.doubleclick.net%2Fgampad%2Fads%
3Fsz%3D640x480%26iu%3D%2F21661689741%2Fegami.generic%26cust_params%3Dpid%253d5952b3519e45102b384dc50e%26impl%3Ds%26gdfp
_req%3D1%26env%3Dvp%26output%3Dxml_vast3%26unviewed_position_start%3D1%26url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252F
other%252Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before%26description_url%3Dhttps%253A%252F%252Fwww.girlsaskguys
.com%252Fother%252Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before%26correlator%3D1526366721133&stg=loaded&crl=IMA
&dt=Failed%20to%20initialize%20GoogleIMA3%20adManager.%20No%20Ads%20VAST%20response%20after%20one%20or%20more%20Wrappers&et=
901&st=9571&cb=0.24681648251831367 has a request size of 1.8KiB
Request URL: 1.4KiB
Cookies: 0B
Referer Url: 105B
Other: 281B
https://trk.vidible.tv/trk/ad-issue.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv
=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&s=true&
sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&at=
preroll&adIdx=-1&aen=LROS%20-%20Pub%20-%20EGAMI%7CAll%20Domains%20-%20ALL%20Geos%20-%20HTML5%20only&pbl=true&ps=html5-vpai
d&rcid=57d325e276a6057ba4a05a00&rid=5a6b7faa55935e30ecd569fb&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e
3-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ae86ee178e0f507d163254d&curl=https%3A%2F%2Fpubads.g.doubleclick.net%2Fgampad%2Fads
%3Fsz%3D640x480%26iu%3D%2F21661689741%2Fegami.generic%26cust_params%3Dpid%253d5952b3519e45102b384dc50e%26impl%3Ds%26gdf
p_req%3D1%26env%3Dvp%26output%3Dxml_vast3%26unviewed_position_start%3D1%26url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252
Fother%252Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before%26description_url%3Dhttps%253A%252F%252Fwww.girlsaskguy
s.com%252Fother%252Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before%26correlator%3D1526366702493&stg=loaded&crl=IM
A&dt=Failed%20to%20initialize%20GoogleIMA3%20adManager.%20No%20Ads%20VAST%20response%20after%20one%20or%20more%20Wrappers&et
=901&st=9571&cb=0.9739610748952432 has a request size of 1.8KiB
Request URL: 1.4KiB
Cookies: 0B
Referer Url: 105B
Other: 281B
https://pubads.g.doubleclick.net/gampad/ads?sz=3x3&iu=%2F36117602%2Fhdm-aolpreroll%2Fonnetwork&gdfp_req=1&env=vp&output=xml_vast3&unview
ed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
&description_url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&correl
ator=3150678932894122&sdkv=h.3.208.0&sdki=3c0d&scor=2033476065312160&adk=1419277712&u_so=l&osd=2&frm=0&sdr=1&is_amp=0&adsid=NT
&afvsz=200x200%2C250x250%2C300x250%2C336x280%2C450x50%2C468x60%2C480x70%2C728x90&ged=ve4_td30_tt23_pd30_la30000_er4523.158.
4678.458_vi0.0.768.1366_vp0_ts17_eb16619 has a request size of 1.8KiB
Request URL: 703B
Cookies: 62B
Referer Url: 59B
Other: 1013B
https://sb.scorecardresearch.com/p?c1=2&c2=6473742&ca2=6035258&ns_type=hidden&ns_st_sv=5.1.1.160316&ns_st_smv=5.1&ns_st_it=r&ns_st_id=1
526366693611&ns_st_ec=2&ns_st_sp=1&ns_st_sc=1&ns_st_sq=1&ns_st_ppc=1&ns_st_apc=1&ns_st_spc=1&ns_st_cn=1&ns_st_ev=hb&ns_st_po=10
006&ns_st_cl=32704&ns_st_hc=1&ns_st_mp=js_api&ns_st_mv=5.1.1.160316&ns_st_pn=1&ns_st_tp=0&ns_st_ci=5ae86ee178e0f507d163254d&ns_st
_pt=10006&ns_st_dpt=10006&ns_st_ipt=10006&ns_st_et=10006&ns_st_det=10006&ns_st_upc=10006&ns_st_dupc=10006&ns_st_iupc=10006&ns_st_
upa=10006&ns_st_dupa=10006&ns_st_iupa=10006&ns_st_lpc=10006&ns_st_dlpc=10006&ns_st_lpa=10006&ns_st_dlpa=10006&ns_st_pa=10006&ns
_ts=1526366714586&ns_st_bc=0&ns_st_dbc=0&ns_st_bt=0&ns_st_dbt=0&ns_st_bp=0&ns_st_skc=0&ns_st_dskc=0&ns_st_ska=0&ns_st_dska=0&ns_

Analyze your site at https://gtmetrix.com Page 34 of 85


PageSpeed Recommendations

st_skd=0&ns_st_skt=0&ns_st_dskt=0&ns_st_pc=0&ns_st_dpc=0&ns_st_pp=0&ns_st_br=0&ns_st_ub=0&ns_st_ki=1200000&ns_st_pr=Cosmopolitan&n
s_st_sn=*null&ns_st_en=*null&ns_st_ep=Go%20Behind%20The%20Scenes%20of%20Kesha’s%20June%20Cosmo%20Cover%20Shoot&ns_st_ct=vc1
1&ns_st_ge=*null&ns_st_st=*null&ns_st_ce=1&ns_st_ia=0&ns_st_ddt=*null&ns_st_tdt=*null&ns_st_pu=Hearst%20Magazine&ns_st_ti=*null&c3=Unkno
wn_Category_ID&ca3=AOL&c4=www.girlsaskguys.com&ca4=Women&c6=*null&ca6=COSMOPOLITAN&c7=https%3A%2F%2Fwww.girlsaskguys.com%2F
other%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&c8=&c9= has a request size of 1.8KiB
Request URL: 1.3KiB
Cookies: 54B
Referer Url: 105B
Other: 290B
https://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=7f4e42e9-580b-11e8-9bea-49295cf7232e&expires=30 has a request size of 1.8KiB
Request URL: 109B
Cookies: 1.4KiB
Referer Url: 41B
Other: 290B
https://sb.scorecardresearch.com/p?c1=2&c2=6473742&ca2=6035258&ns_type=hidden&ns_st_sv=5.1.1.160316&ns_st_smv=5.1&ns_st_it=r&ns_st_id=1
526366693611&ns_st_ec=2&ns_st_sp=1&ns_st_sc=1&ns_st_sq=1&ns_st_ppc=1&ns_st_apc=1&ns_st_spc=1&ns_st_cn=1&ns_st_ev=pause&ns_st_po
=13632&ns_st_cl=32704&ns_st_mp=js_api&ns_st_mv=5.1.1.160316&ns_st_pn=1&ns_st_tp=0&ns_st_ci=5ae86ee178e0f507d163254d&ns_st_pt=1363
2&ns_st_dpt=13632&ns_st_ipt=3626&ns_st_et=13632&ns_st_det=13632&ns_st_upc=13632&ns_st_dupc=13632&ns_st_iupc=3626&ns_st_upa=13632
&ns_st_dupa=13632&ns_st_iupa=3626&ns_st_lpc=13632&ns_st_dlpc=13632&ns_st_lpa=13632&ns_st_dlpa=13632&ns_st_pa=13632&ns_ts=1526366
718212&ns_st_bc=0&ns_st_dbc=0&ns_st_bt=0&ns_st_dbt=0&ns_st_bp=0&ns_st_skc=0&ns_st_dskc=0&ns_st_ska=0&ns_st_dska=0&ns_st_skd=0&ns
_st_skt=0&ns_st_dskt=0&ns_st_pc=1&ns_st_dpc=1&ns_st_pp=1&ns_st_br=0&ns_st_ub=0&ns_st_ki=1200000&ns_st_pr=Cosmopolitan&ns_st_sn=*nul
l&ns_st_en=*null&ns_st_ep=Go%20Behind%20The%20Scenes%20of%20Kesha’s%20June%20Cosmo%20Cover%20Shoot&ns_st_ct=vc11&ns_st_ge=*
null&ns_st_st=*null&ns_st_ce=1&ns_st_ia=0&ns_st_ddt=*null&ns_st_tdt=*null&ns_st_pu=Hearst%20Magazine&ns_st_ti=*null&c3=Unknown_Category_I
D&ca3=AOL&c4=www.girlsaskguys.com&ca4=Women&c6=*null&ca6=COSMOPOLITAN&c7=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198
181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&c8=&c9= has a request size of 1.8KiB
Request URL: 1.3KiB
Cookies: 54B
Referer Url: 105B
Other: 290B
https://pixel.rubiconproject.com/tap.php?v=14321&nid=2313&put=R1B341_A4A958B8_1A952113E&expires=60 has a request size of 1.8KiB
Request URL: 98B
Cookies: 1.4KiB
Referer Url: 41B
Other: 290B
https://pubads.g.doubleclick.net/gampad/ads?sz=3x3&iu=%2F36117602%2Fhdm-aolpreroll%2Fonnetwork&gdfp_req=1&env=vp&output=xml_vast3&unview
ed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
&description_url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&correl
ator=555625208994171&sdkv=h.3.208.0&sdki=3c0d&scor=232092351644121&adk=1419277712&u_so=l&osd=2&frm=0&sdr=1&is_amp=0&adsid=NT&af
vsz=200x200%2C250x250%2C300x250%2C336x280%2C450x50%2C468x60%2C480x70%2C728x90&ged=ve4_td9_tt2_pd9_la9000_er4523.158.4678.45
8_vi0.0.768.1366_vp0_eb16619 has a request size of 1.8KiB
Request URL: 692B
Cookies: 62B
Referer Url: 59B
Other: 1002B
https://trk.vidible.tv/trk/ad-issue.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv
=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&s=true&
sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=8EA52084-D509-4EE6-BC88-2B0C50C529F6&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&at=
preroll&adIdx=-1&aen=FROS%20-%20CO%20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps=
html5-vpaid&rcid=551440471146fb0d084da510&rid=572a5079e4b0fb7d4078f6b5&txid=0dc9d590-6e8f-4379-9c2a-6239ed0dd9f6&usid=4605a908-3c30-4
3bd-a0e3-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ad69fbfc269d67d3ed90424&curl=https%3A%2F%2Fpubads.g.doubleclick.net%2Fgampad
%2Fads%3Fsz%3D3x3%26iu%3D%2F36117602%2Fhdm-aolpreroll%2Fonnetwork%26impl%3Ds%26gdfp_req%3D1%26env%3Dvp%26output%3Dvast
%26unviewed_position_start%3D1%26url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Fother%252Fq2198181-do-you-know-what-bitcoin-is
-have-you-ever-used-bitcoin-before%26description_url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Fother%252Fq2198181-do-you-know-wh
at-bitcoin-is-have-you-ever-used-bitcoin-before%26correlator%3D1526366719203&stg=loaded&crl=IMA&dt=Failed%20to%20initialize%20GoogleIMA3%20
adManager.%20The%20response%20does%20not%20contain%20any%20valid%20ads.&et=901&st=9571&cb=0.9557099457183789 has a request size
of 1.8KiB
Request URL: 1.4KiB
Cookies: 0B
Referer Url: 105B
Other: 281B
https://trk.vidible.tv/trk/ad-issue.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv
=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&s=true&
sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&at=
preroll&adIdx=-1&aen=FROS%20-%20CO%20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps=
html5-vpaid&rcid=551440471146fb0d084da510&rid=572a5079e4b0fb7d4078f6b5&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-
43bd-a0e3-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ae86ee178e0f507d163254d&curl=https%3A%2F%2Fpubads.g.doubleclick.net%2Fgampa
d%2Fads%3Fsz%3D3x3%26iu%3D%2F36117602%2Fhdm-aolpreroll%2Fonnetwork%26impl%3Ds%26gdfp_req%3D1%26env%3Dvp%26output%3Dvast
%26unviewed_position_start%3D1%26url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Fother%252Fq2198181-do-you-know-what-bitcoin-is
-have-you-ever-used-bitcoin-before%26description_url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Fother%252Fq2198181-do-you-know-wh
at-bitcoin-is-have-you-ever-used-bitcoin-before%26correlator%3D1526366699108&stg=loaded&crl=IMA&dt=Failed%20to%20initialize%20GoogleIMA3%20
adManager.%20The%20response%20does%20not%20contain%20any%20valid%20ads.&et=901&st=9571&cb=0.8006510718701103 has a request size
of 1.8KiB

Analyze your site at https://gtmetrix.com Page 35 of 85


PageSpeed Recommendations

Request URL: 1.4KiB


Cookies: 0B
Referer Url: 105B
Other: 281B
https://sb.scorecardresearch.com/p?c1=2&c2=6473742&ca2=6035258&ns_type=hidden&ns_st_sv=5.1.1.160316&ns_st_smv=5.1&ns_st_it=r&ns_st_id=1
526366693611&ns_st_ec=1&ns_st_sp=1&ns_st_sc=1&ns_st_sq=1&ns_st_ppc=1&ns_st_apc=1&ns_st_spc=1&ns_st_cn=1&ns_st_ev=play&ns_st_po=0
&ns_st_cl=32704&ns_st_pb=1&ns_st_mp=js_api&ns_st_mv=5.1.1.160316&ns_st_pn=1&ns_st_tp=0&ns_st_ci=5ae86ee178e0f507d163254d&ns_st_pt=
0&ns_st_dpt=0&ns_st_ipt=0&ns_st_et=0&ns_st_det=0&ns_st_upc=0&ns_st_dupc=0&ns_st_iupc=0&ns_st_upa=0&ns_st_dupa=0&ns_st_iupa=0&ns_st
_lpc=0&ns_st_dlpc=0&ns_st_lpa=0&ns_st_dlpa=0&ns_st_pa=0&ns_ts=1526366704580&ns_st_bc=0&ns_st_dbc=0&ns_st_bt=0&ns_st_dbt=0&ns_st_bp
=0&ns_st_lt=10965&ns_st_skc=0&ns_st_dskc=0&ns_st_ska=0&ns_st_dska=0&ns_st_skd=0&ns_st_skt=0&ns_st_dskt=0&ns_st_pc=0&ns_st_dpc=0&n
s_st_pp=0&ns_st_br=0&ns_st_ub=0&ns_st_ki=1200000&ns_st_pr=Cosmopolitan&ns_st_sn=*null&ns_st_en=*null&ns_st_ep=Go%20Behind%20The%2
0Scenes%20of%20Kesha’s%20June%20Cosmo%20Cover%20Shoot&ns_st_ct=vc11&ns_st_ge=*null&ns_st_st=*null&ns_st_ce=1&ns_st_ia=0&ns_st_d
dt=*null&ns_st_tdt=*null&ns_st_pu=Hearst%20Magazine&ns_st_ti=*null&c3=Unknown_Category_ID&ca3=AOL&c4=www.girlsaskguys.com&ca4=Women&
c6=*null&ca6=COSMOPOLITAN&c7=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bit
coin-before&c8=&c9= has a request size of 1.7KiB
Request URL: 1.3KiB
Cookies: 54B
Referer Url: 105B
Other: 290B
https://sb.scorecardresearch.com/p?c1=2&c2=6473742&ca2=6035258&ns_type=hidden&ns_st_sv=5.1.1.160316&ns_st_smv=5.1&ns_st_it=r&ns_st_id=1
526366718226&ns_st_ec=1&ns_st_sp=1&ns_st_sc=1&ns_st_sq=1&ns_st_ppc=1&ns_st_apc=1&ns_st_spc=1&ns_st_cn=1&ns_st_ev=play&ns_st_po=0
&ns_st_cl=58944&ns_st_pb=1&ns_st_mp=js_api&ns_st_mv=5.1.1.160316&ns_st_pn=1&ns_st_tp=0&ns_st_ci=5ad69fbfc269d67d3ed90424&ns_st_pt=0
&ns_st_dpt=0&ns_st_ipt=0&ns_st_et=0&ns_st_det=0&ns_st_upc=0&ns_st_dupc=0&ns_st_iupc=0&ns_st_upa=0&ns_st_dupa=0&ns_st_iupa=0&ns_st_l
pc=0&ns_st_dlpc=0&ns_st_lpa=0&ns_st_dlpa=0&ns_st_pa=0&ns_ts=1526366721564&ns_st_bc=0&ns_st_dbc=0&ns_st_bt=0&ns_st_dbt=0&ns_st_bp=
0&ns_st_lt=3337&ns_st_skc=0&ns_st_dskc=0&ns_st_ska=0&ns_st_dska=0&ns_st_skd=0&ns_st_skt=0&ns_st_dskt=0&ns_st_pc=0&ns_st_dpc=0&ns_
st_pp=0&ns_st_br=0&ns_st_ub=0&ns_st_ki=1200000&ns_st_pr=GoodHousekeeping&ns_st_sn=*null&ns_st_en=*null&ns_st_ep=Remembering%20Bar
bara%20Bush&ns_st_ct=vc11&ns_st_ge=*null&ns_st_st=*null&ns_st_ce=1&ns_st_ia=0&ns_st_ddt=*null&ns_st_tdt=*null&ns_st_pu=Hearst%20Magazin
e&ns_st_ti=*null&c3=Unknown_Category_ID&ca3=AOL&c4=www.girlsaskguys.com&ca4=Lifestyle&c6=*null&ca6=GOODHOUSEKEEPING&c7=https%3A%
2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&c8=&c9= has a request size of
1.7KiB
Request URL: 1.3KiB
Cookies: 54B
Referer Url: 105B
Other: 290B
https://saxp.zedo.com/asw/fmg.json?g=%7B%22tagProp%22%3A%7B%22tmy%22%3A%220%22%2C%22geo%22%3A%22%22%2C%22charset%22%3
A%22%22%7D%2C%22pageProp%22%3A%7B%22pageUrl%22%3A%22https%253A%252F%252Fwww.girlsaskguys.com%252Fother%252Fq2198181-
do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before%22%2C%22referrer%22%3A%22%22%7D%2C%22placements%22%3A%5B%7B%22id
%22%3A%22364488_1%22%2C%22network%22%3A%223787%22%2C%22publisher%22%3A%221%22%2C%22channel%22%3A%222%22%2C%22d
imension%22%3A%2285%22%2C%22width%22%3A%22500%22%2C%22height%22%3A%22281%22%2C%22renderers%22%3A%5B%7B%22name%
22%3A%22display%22%2C%22capability%22%3A%7B%7D%2C%22behaviour%22%3A%7B%22placementMacro%22%3A%5B%22%25ZZDIVID%25%2
2%5D%7D%7D%5D%2C%22keyword%22%3A%22%22%2C%22multipleCustomeValues%22%3A%22%22%2C%22customTargeting%22%3A%22%5Ep
b_bidder%3Anone%22%2C%22thirdPartyClickURL%22%3A%22%7B%7B%20z_cltr%20%7D%7D%22%2C%22thirdPartyImprURL%22%3A%22%7B%7B
%20z_imtr%20%7D%7D%22%2C%22maxGuranteed%22%3A1%2C%22isLegacyParallelReq%22%3A%221%22%2C%22formatWidth%22%3A%22%5BF
WIDTH%5D%22%2C%22formatHeight%22%3A%22%5BFHEIGHT%5D%22%7D%5D%2C%22masterCapability%22%3A%7B%22cookieWriting%22%3Atr
ue%7D%7D has a request size of 1.7KiB
Request URL: 1.1KiB
Cookies: 168B
Referer Url: 105B
Other: 291B
https://www.facebook.com/tr/?id=781946178525195&ev=ViewContent&dl=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-
what-bitcoin-is-have-you-ever-used-bitcoin-before&rl=&if=false&ts=1526366688444&cd[content_name]=https%3A%2F%2Fwww.girlsaskguys.com%2Fother
%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&cd[content_type]=product&cd[content_category]=Other&cd[content_ids]=%2
Fquestion%2F2198181&cd[gender]=None&cd[xper_level]=0&cd[topics_follow]=undefined&cd[visitor]=Guest&cd[mobile]=false&sw=1367&sh=858&v=2.8.14
&r=stable&ec=1&o=28&it=1526366687370 has a request size of 1.6KiB
Request URL: 590B
Cookies: 42B
Referer Url: 105B
Other: 898B
https://ap.lijit.com/data/ct?tid=a_495079_05d850d5b3854fbd9d3e9a0319ac3914&zoneid=495079&cid=18&geo=CA&all_tags=125%2C130%2C133%2C13
4%2C138%2C151%2C174%2C182%2C185%2C187%2C188%2C189%2C190%2C191%2C192%2C193%2C194%2C195%2C196%2C197%2C198%2C
203%2C205%2C206%2C209%2C211%2C214%2C215%2C219%2C227%2C228%2C229%2C230%2C231%2C232%2C234%2C237%2C238%2C239%
2C241%2C248%2C265%2C272%2C277%2C284%2C290%2C309&tss=795%2C801%2C808%2C842%2C848%2C853&fired_tags=138%2C151%2C18
2%2C234%2C265%2C290&count=6&status=8%2C8%2C8%2C8%2C1%2C1%2C8%2C1%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%
2C8%2C8%2C12%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C1%2C8%2C8%2C8%2C8%2C8%2C1%2C8
%2C8%2C8%2C1%2C8&elapsed_ms=857 has a request size of 1.5KiB
Request URL: 691B
Cookies: 486B
Referer Url: 105B
Other: 290B
https://match.adsrvr.org/track/cmf/generic?ttd_pid=lotame&ttd_puid=ce6218ad76692cd9ac9db8c2fb46ad71&ttd_tpi=1 has a request size of 1.5KiB
Request URL: 109B
Cookies: 425B

Analyze your site at https://gtmetrix.com Page 36 of 85


PageSpeed Recommendations

Referer Url: 592B


Other: 417B
https://video.adaptv.advertising.com/vrm?bcid=57d325e276a6057ba4a05a00&pid=5952b3519e45102b384dc50e&vid=5ad69fbfc269d67d3ed90424&pt=ht
ml5&at=preroll&p.vw.sound=0&autoplayInit=1&width=737&height=415&p.vw.active=1&p.vw.viewable=0&p.vw.viewableOpportunity=0&moatViewableOpportu
nity=0&adapViewableOpportunity=0&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-
bitcoin-before&ps=html5-vpaid&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=8EA52084-D509-4EE6-BC88-2B0C50C529F6&lookahead=true has a
Serverequest
scaled images
size of 1.5KiB F (0) AVG SCORE: 74% IMAGES HIGH
Request URL: 538B
Cookies: 484B
The following
Refererimages are resized in HTML or CSS. Serving scaled images could save 182.2KiB (82% reduction).
Url: 105B
Other: 412B
https://d3dytsf4vrjn5x.cloudfront.net/6279/300x250/aa5c21a395a124b874d248d14d4b1d86.jpg is resized in HTML or CSS from 300x250 to 165x110. Serving
a scaled image could save 14.0KiB (75% reduction).
https://d3dytsf4vrjn5x.cloudfront.net/79578/300x250/3a067d0e2548a891d8acc7ef4bea71a9.jpg is resized in HTML or CSS from 300x250 to 165x110.
Serving a scaled image could save 11.9KiB (75% reduction).
https://images.girlsaskguys.com/custom/topics/dating.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 11.6KiB
(91% reduction).
https://images.girlsaskguys.com/custom/topics/parents-family.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
10.8KiB (91% reduction).
https://images.girlsaskguys.com/content/images/desktop/gag-logo@2x.png is resized in HTML or CSS from 320x84 to 160x42. Serving a scaled image
could save 9.9KiB (75% reduction).
https://images.girlsaskguys.com/custom/topics/relationships.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
8.2KiB (91% reduction).
https://images.girlsaskguys.com/custom/topics/womensbehavior.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
7.5KiB (91% reduction).
https://images.girlsaskguys.com/custom/topics/girlsaskguys.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
7.0KiB (91% reduction).
https://images.girlsaskguys.com/custom/topics/food-beverage.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
6.5KiB (91% reduction).
https://d3dytsf4vrjn5x.cloudfront.net/105614/300x250/c9127ce6e704a656ec453fb89c2c9c40.jpg is resized in HTML or CSS from 300x250 to 165x110.
Serving a scaled image could save 6.4KiB (75% reduction).
https://images.girlsaskguys.com/custom/topics/marriage.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 6.4KiB
(91% reduction).
https://images.girlsaskguys.com/custom/topics/arts.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 5.9KiB (91%
reduction).
https://images.girlsaskguys.com/custom/topics/mensbehavior.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
5.7KiB (91% reduction).
https://images.girlsaskguys.com/custom/topics/giftsforwomen.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
5.6KiB (91% reduction).
https://images.girlsaskguys.com/custom/topics/style.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 5.4KiB (91%
reduction).
https://images.girlsaskguys.com/custom/topics/travel.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 5.2KiB (91%
reduction).
https://images.girlsaskguys.com/custom/topics/politics.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 5.1KiB
(91% reduction).
https://images.girlsaskguys.com/custom/topics/sports-new.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 5.0KiB
(91% reduction).
https://images.girlsaskguys.com/custom/topics/generalhealth.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
4.8KiB (91% reduction).
https://images.girlsaskguys.com/custom/topics/breakup.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 4.7KiB
(91% reduction).
https://images.girlsaskguys.com/custom/topics/education.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 4.7KiB
(91% reduction).
https://images.girlsaskguys.com/custom/topics/flirting.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 4.6KiB
(91% reduction).
https://images.girlsaskguys.com/custom/topics/tech.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 3.6KiB (91%
reduction).
https://images.girlsaskguys.com/custom/topics/howdoilook.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
3.1KiB (91% reduction).
https://images.girlsaskguys.com/custom/topics/news.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 2.9KiB (91%
reduction).
https://images.girlsaskguys.com/custom/topics/other.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 2.8KiB (91%
reduction).
https://images.girlsaskguys.com/custom/topics/religion.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 2.5KiB
(91% reduction).
https://images.girlsaskguys.com/custom/useravatars/girly-girl.jpg is resized in HTML or CSS from 60x60 to 34x34. Serving a scaled image could save 1.7KiB
(67% reduction).
https://images.girlsaskguys.com/users/a94200cf6ff18070881e806ca7122d6f/thumb.jpg?0 is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled
image could save 1.3KiB (44% reduction).
https://images.girlsaskguys.com/custom/useravatars/don-juan.jpg is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled image could save
1.0KiB (44% reduction).
https://images.girlsaskguys.com/custom/useravatars/social-beast.jpg is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled image could save

Analyze your site at https://gtmetrix.com Page 37 of 85


PageSpeed Recommendations

1013B (44% reduction).


https://images.girlsaskguys.com/users/407a1fe82081edfe2142a1bd712333ae/thumb.jpg?103 is resized in HTML or CSS from 60x60 to 45x45. Serving a
scaled image could save 984B (44% reduction).
https://images.girlsaskguys.com/users/d7003ccb54f220dcf951cd593f321c56/thumb.jpg?3 is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled
image could save 910B (44% reduction).
https://images.girlsaskguys.com/custom/useravatars/explorer.jpg is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled image could save 895B
(44% reduction).
https://images.girlsaskguys.com/custom/useravatars/technophile.jpg is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled image could save
854B (44% reduction).
https://pixel.watch/vaf4 is resized in HTML or CSS from 1x1 to 0x0. Serving a scaled image could save 807B (100% reduction).
https://images.girlsaskguys.com/users/b0faa237caaf33be4abc3ff16bcfcde2/thumb.jpg?2 is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled
image could save 704B (44% reduction).
https://images.girlsaskguys.com/users/cb59975165c7d4db18d47ce4f6b671df/thumb.jpg?1 is resized in HTML or CSS from 60x60 to 45x45. Serving a
scaled image could save 571B (44% reduction).
https://images.girlsaskguys.com/custom/useravatars/anonymous_guy.png is resized in HTML or CSS from 60x60 to 46x46. Serving a scaled image could
save 230B (42% reduction).

M inify JavaScript F (0) AVG SCORE: 88% JS HIGH

Minify JavaScript for the following resources to reduce their size by 146.3KiB (5% reduction).

Minifying https://cdn.mirs.com/js/wglibs/mgWidget_1.7.19.js could save 127.2KiB (80% reduction) after compression. See optimized version.
Minifying https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/html5/player-hls-latest-min.js could save 2.1KiB (1% reduction) after compression. See optimized
version.
Minifying https://jsc.mgid.com/g/i/girlsaskguys.com.114115.js?t=11841423 could save 1.5KiB (6% reduction) after compression. See optimized version.
Minifying https://cdn-ssl.vidible.tv/prod/ad-client/js/2.11.3/0.js could save 1.4KiB (2% reduction) after compression. See optimized version.
Minifying https://cdn.mgid.com/js/perfect-scrollbar.js could save 1.3KiB (16% reduction) after compression. See optimized version.
Minifying https://z.moatads.com/aolvidiblecontent859375382/moatvideo.js could save 1.2KiB (2% reduction) after compression. See optimized version.
Minifying https://connect.facebook.net/en_US/sdk.js could save 865B (2% reduction) after compression. See optimized version.
Minifying https://imasdk.googleapis.com/js/sdkloader/ima3.js could save 706B (1% reduction) after compression. See optimized version.
Minifying https://s0.2mdn.net/instream/html5/ima3.js could save 706B (1% reduction) after compression. See optimized version.
Minifying https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/vidible-min.js?embedtag=1 could save 685B (1% reduction) after compression. See optimized ve
rsion.
Minifying https://connect.facebook.net/en_US/fbevents.js could save 646B (6% reduction) after compression. See optimized version.
Minifying https://connect.facebook.net/signals/config/781946178525195?v=2.8.14&r=stable could save 640B (5% reduction) after compression. See optimiz
ed version.
Minifying https://z.moatads.com/aolvidibleapi29384728347/moatapi.js could save 527B (2% reduction) after compression. See optimized version.
Minifying https://pagead2.googlesyndication.com/pagead/show_companion_ad.js could save 444B (1% reduction) after compression. See optimized versio
n.
Minifying https://api.content-ad.net/Scripts/widget2.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403809
&cb=1526366688214 could save 440B (13% reduction) after compression. See optimized version.
Minifying https://api.content-ad.net/Scripts/widget2.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403806&
cb=1526366688264 could save 440B (13% reduction) after compression. See optimized version.
Minifying https://www.googletagmanager.com/gtm.js?id=GTM-5KMRGL could save 409B (2% reduction) after compression. See optimized version.
Minifying https://api.content-ad.net/GetWidget.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403809&cb=152636
6688214&lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&ik=2018051423_1869389dcee2038fe3db57c92dea4bf2&ikb=1869389dcee2038fe3db57c92dea4bf2&duid=62f783
a3060619beb771c6b446f4a3ad3ab622696a1d0a6db5c4de3ff9603624&ls=ip-172-18-62-183&dstlload=true could save 378B (6% reduction) after
compression. See optimized version.
Minifying https://api.content-ad.net/GetWidget.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403806&cb=1526366
688264&lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin
-is-have-you-ever-used-bitcoin-before&ik=2018051423_3fad3bdde3fd1e0f97fa276662009b15&ikb=3fad3bdde3fd1e0f97fa276662009b15&duid=62f783a30
60619beb771c6b446f4a3ad3ab622696a1d0a6db5c4de3ff9603624&ls=ip-172-18-62-183&dstlload=true could save 378B (6% reduction) after
compression. See optimized version.
Minifying https://delivery.vidible.tv/jsonp/pid=5952b3519e45102b384dc50e/57d325e276a6057ba4a05a00.js could save 345B (3% reduction) after
compression. See optimized version.
Minifying https://cdn.playwire.com/bolt/js/plow-2.6.1.js could save 329B (2% reduction) after compression. See optimized version.
Minifying https://ads.rubiconproject.com/header/11406.js?ns=11406 could save 328B (2% reduction) after compression. See optimized version.
Minifying https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/skins/skin6.js?cb=17.21.1374 could save 311B (1% reduction) after compression. See optimized
version.
Minifying https://sdk.amazonaws.com/js/aws-sdk-2.129.0.min.js could save 304B (1% reduction) after compression. See optimized version.
Minifying https://route.carambo.la/inimage/getlayer?pid=grls32&did=110431&wid=0 could save 277B (1% reduction) after compression. See optimized versi
on.
Minifying https://platform.twitter.com/widgets.js could save 238B (1% reduction) after compression. See optimized version.
Minifying https://ss3.zedo.com/gecko/util/tagutil.js?0.786467868619096 could save 225B (4% reduction) after compression. See optimized version.
Minifying https://trends.revcontent.com/serve.js.php?w=95566&t=rc_845&c=1526366686700&width=1366&referer=https%3A%2F%2Fwww.girlsaskguys.co
m%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before could save 146B (2% reduction) after compression. See optimize
d version.
Minifying https://ap.lijit.com/sync could save 138B (1% reduction) after compression. See optimized version.

Analyze your site at https://gtmetrix.com Page 38 of 85


PageSpeed Recommendations

Minifying https://apis.google.com/js/platform.js?onload=gpCallback could save 138B (1% reduction) after compression. See optimized version.
Minifying https://tags.crwdcntrl.net/c/9234/cc.js?ns=_cc9234 could save 112B (2% reduction) after compression. See optimized version.
Minifying https://tags.bkrtx.com/js/bk-coretag.js could save 98B (1% reduction). See optimized version.
Minifying https://ss3.zedo.com/gecko/core/v6.8/fmgt.min.js could save 97B (1% reduction) after compression. See optimized version.
Minifying https://images.girlsaskguys.com/custom/vod.js?v=3 could save 96B (19% reduction) after compression. See optimized version.
Minifying https://secure.quantserve.com/quant.js could save 94B (2% reduction) after compression. See optimized version.
Minifying https://cdn.tynt.com/ids.js could save 89B (3% reduction) after compression. See optimized version.
Minifying https://www.google-analytics.com/analytics.js could save 84B (1% reduction) after compression. See optimized version.
Minifying https://pd.sharethis.com/pd/33across could save 82B (16% reduction). See optimized version.
Minifying https://pd.sharethis.com/pd/sovrn could save 82B (16% reduction). See optimized version.
Minifying https://s0.2mdn.net/instream/video/client.js could save 76B (1% reduction) after compression. See optimized version.
Minifying https://3787.tm.zedo.com/v1/eae01302-531c-41de-b573-22ad40de42e4/atm.js could save 58B (2% reduction). See optimized version.
Minifying https://ap.lijit.com/www/delivery/js/fpi.js could save 58B (3% reduction) after compression. See optimized version.
Minifying https://images.girlsaskguys.com/content/js/core.min.js?29912 could save 57B (1% reduction) after compression. See optimized version.
Minifying https://cdn.playwire.com/bolt/js/zeus/core-a160b37fa6.js?noext could save 54B (1% reduction) after compression. See optimized version.
Minifying https://c.amazon-adsystem.com/aax2/amzn_ads.js could save 50B (2% reduction) after compression. See optimized version.
Minifying https://cdn.playwire.com/bolt/js/__pwhb__03082018.js could save 49B (1% reduction) after compression. See optimized version.
Minifying https://brand-ad-innovations.s3.amazonaws.com/intention-score/bai-intention-score.js could save 48B (1% reduction). See optimized version.
Minifying https://code.jquery.com/jquery-3.1.1.min.js could save 46B (1% reduction) after compression. See optimized version.
Minifying https://s.cxt.ms/action.v3.0.0.min.js could save 46B (6% reduction) after compression. See optimized version.
Minifying https://acds.prod.vidible.tv/o2shim?companionId=&cpmPassback=&placementId=1076847&orgId=21465&injectCompanionDummy=&pauseOnCli
ck=&d.vw=&d.app=&r=http%3A%2F%2Fgirlsaskguys.com could save 43B (1% reduction) after compression. See optimized version.
Minifying https://loadus.exelator.com/load/?p=233&g=001&j=d&xl8blockcheck=1 could save 42B (3% reduction). See optimized version.
Minifying https://js.gumgum.com/services.js could save 35B (1% reduction) after compression. See optimized version.
Minifying https://content.jwplatform.com/libraries/WLok6WPd.js could save 34B (1% reduction) after compression. See optimized version.
Minifying https://cdn.revcontent.com/build/js/rev2.min.js?v=c75d860790cfbd475402bedb463df89716d9b597&del=//trends.revcontent.com/&lg=//cdn.revconte
nt.com/assets/img/rc-logo.png&ci=//cdn.revcontent.com/assets/img/icon-close.png&ab=//trends.revcontent.com/rc-about.php&ldr=//cdn.revcontent.com/asse
ts/img/rc-spinner-md.gif&ht=//trends.revcontent.com/rc-interests.php could save 32B (1% reduction) after compression. See optimized version.
Minifying https://s.ntv.io/serve/load.js could save 25B (1% reduction) after compression. See optimized version.
Minifying https://aa.agkn.com/adscores/g.json?sid=9202507693 could save 24B (16% reduction). See optimized version.
Minifying https://servicer.mgid.com/114115/1?w=730&h=107&cols=4&pv=6&cbuster=1526366693395257590151&ref=https%3A%2F%2Fwww.girlsaskguys.
com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&iframe=1&pageView=1&pvid=163628b68198076f2e7 could
save 17B (1% reduction) after compression. See optimized version.
Minifying https://optimized-by.rubiconproject.com/a/17174/163796/883438-15.js?&cb=0.9999036834783079&tk_st=1&rf=https%3A//www.girlsaskguys.com/
other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&rp_s=c&p_pos=btf&p_screen_res=1367x858&ad_slot=163796_15&rp_se
cure=1 could save 13B (2% reduction) after compression. See optimized version.
Minifying https://ml314.com/utsync.ashx?pub=&adv=&et=0&eid=50282&ct=js&pi=&fp=&clid=&ps=&cl=&mlt=&data=&&cp=https%3A%2F%2Fwww.girlsaskgu
ys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&pv=1526366700264_chue5q7sz&bl=en-us&cb=1643918&
return=https%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D5031%263pid%3D%5BPersonID%5D&ht=&d=&dc=&si=1526366700264_chue5q7sz&cid=&s=
1367x858&rp= could save 12B (5% reduction) after compression. See optimized version.
Minifying https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/coverings/skin6.js?cb=17.21.1374 could save 11B (1% reduction) after compression. See optimiz
ed version.
Minifying https://ps.eyeota.net/pixel/bounce/?pid=51md42u&t=ajs&uid=d679af0dac93f348389a3cb3 could save 10B (2% reduction). See optimized version.
Minifying https://ap.lijit.com/containertag?containerId=18&zoneId=495077&v=2 could save 9B (1% reduction) after compression. See optimized version.
Minifying https://cdn.playwire.com/bolt/js/zeus/zeus_iframe-3658f262ba.js could save 8B (1% reduction) after compression. See optimized version.
Minifying https://cm.mgid.com/i.js could save 7B (5% reduction) after compression. See optimized version.
Minifying https://static.criteo.net/js/ld/publishertag.js could save 7B (1% reduction) after compression. See optimized version.
Minifying https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c;cfp=1;rndc=1526366695;loc=100;target=_blank;misc=%7Brandom%7D&_ADTIME_&$RANDOM&&;rdclick= could save 6B (1% reduction). See optimi
zed version.
Minifying https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c;cfp=1;rndc=1526366695;loc=100;target=_blank;misc=a6bb5ad6&_ADTIME_&$RANDOM&&;rdclick= could save 6B (1% reduction). See optimized ver
sion.
Minifying https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437746%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c;cfp=1;rndc=1526366695;loc=100;target=_blank;misc=abbd5211&_ADTIME_&$RANDOM&&;rdclick= could save 6B (1% reduction). See optimized ver
sion.
Minifying https://gag.gagwebapi.com/api/webpush/script?token=&client=ChromeDesktop could save 6B (7% reduction) after compression. See optimized ve
rsion.
Minifying https://psa.carambo.la/getPsa?width=300&height=250&did=110431&pid=grls32&isMobile=0 could save 6B (2% reduction) after compression. See
optimized version.
Minifying https://ss3.zedo.com/utils/zplayer/wrapper/v8.7/wrapper.js could save 6B (1% reduction) after compression. See optimized version.
Minifying https://pagead2.googlesyndication.com/pagead/js/r20180509/r20180504/show_ads_impl.js could save 5B (1% reduction) after compression. See
optimized version.
Minifying https://cdn.playwire.com/bolt/js/zeus/zeus_global-bb33b35511-b2f521c1ba.js could save 4B (1% reduction) after compression. See optimized versi
on.
Minifying https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=3&r= could save 4B (100% reduction). See optimized version.
Minifying https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js could save 4B (1% reduction) after compression. See optimized version.
Minifying https://secure.adnxs.com/async_usersync?cbfn=AN_async_load could save 4B (1% reduction) after compression. See optimized version.
Minifying https://securepubads.g.doubleclick.net/gpt/pubads_impl_205.js could save 4B (1% reduction) after compression. See optimized version.
Minifying https://ss3.zedo.com/utils/zplayer/wrapper/v8.7/HTML/app/scripts/all.min.js could save 4B (1% reduction) after compression. See optimized version.
Minifying https://www.googletagservices.com/tag/js/gpt.js could save 4B (1% reduction) after compression. See optimized version.
Minifying https://dmx.districtm.io/s/10001/52af87df-3f8d-4bcd-bc21-1d826dc889c2 could save 3B (4% reduction). See optimized version.

Analyze your site at https://gtmetrix.com Page 39 of 85


PageSpeed Recommendations

Minifying https://dmx.districtm.io/s/10008/174c5830-8905-4d06-9b00-103e88704f9c could save 3B (4% reduction). See optimized version.


Minifying https://dmx.districtm.io/s/10010/3609532715836771276 could save 3B (4% reduction). See optimized version.
Minifying https://dmx.districtm.io/s/10016/WvqB5wAAAKNI-RAl&_test=WvqB5wAAAKNI-RAl could save 3B (4% reduction). See optimized version.
Minifying https://pagead2.googlesyndication.com/pagead/js/r20180509/r20180504/osd.js could save 3B (1% reduction) after compression. See optimized ve
rsion.
Minifying https://pagead2.googlesyndication.com/pagead/osd.js could save 3B (1% reduction) after compression. See optimized version.
Minifying https://securepubads.g.doubleclick.net/gpt/pubads_impl_rendering_205.js could save 3B (1% reduction) after compression. See optimized
version.
Minifying https://ss3.zedo.com/gecko/tag/networkIds.js?3619072320 could save 3B (1% reduction) after compression. See optimized version.
Minifying https://ss3.zedo.com/gecko/tag/networkIds.js?429390344 could save 3B (1% reduction) after compression. See optimized version.
Minifying https://tpc.googlesyndication.com/safeframe/1-0-23/js/ext.js could save 3B (1% reduction) after compression. See optimized version.
Minifying https://ad.lkqd.net/vpaid/vpaid.js?fusion=1.0 could save 1B (1% reduction) after compression. See optimized version.
Minifying https://as-sec.casalemedia.com/cygnus?v=8&fn=__pwhbjs__.handleCygnusResponse&s=241978&r=%7B%22id%22%3A%223dff104f958062%2
2%2C%22imp%22%3A%5B%7B%22id%22%3A%22495cf23d116cc1%22%2C%22ext%22%3A%7B%22siteID%22%3A241978%2C%22sid%22%3A%22p
r_1_1_s%22%7D%2C%22video%22%3A%7B%22protocols%22%3A%5B2%2C5%2C3%2C6%5D%2C%22maxduration%22%3A300%2C%22minduration
%22%3A5%2C%22mimes%22%3A%5B%22video%2Fmp4%22%2C%22video%2Fwebm%22%5D%2C%22startdelay%22%3A0%2C%22linearity%22%3A
1%2C%22w%22%3A640%2C%22h%22%3A480%7D%7D%5D%2C%22site%22%3A%7B%22page%22%3A%22https%3A%2F%2Fwww.girlsaskguys.co
m%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before%22%7D%7D could save 1B (2% reduction) after compression.
See optimized version.
Minifying https://ml314.com/tag.aspx?1442018 could save 1B (1% reduction) after compression. See optimized version.
Minifying https://pagead2.googlesyndication.com/pub-config/r20160913/ca-pub-2045593450925494.js could save 1B (2% reduction) after compression.
See optimized version.
Minifying https://rules.quantcount.com/rules-p-aD1qr93XuF6aC.js could save 1B (34% reduction). See optimized version.

Enable Keep-Alive F (1) AVG SCORE: 96% SERVER HIGH

The host agkn.com should enable Keep-Alive. It serves the following resources.

https://aa.agkn.com/adscores/g.json?sid=9202507693
https://aa.agkn.com/adscores/g.pixel?sid=9211578608&_g=906&ex=126659f99628a371d9bb252b16c512cc
https://aa.agkn.com/adscores/g.pixel?sid=9212293438
https://aa.agkn.com/adscores/g.pixel?sid=9212293468
https://aa.agkn.com/adscores/g.pixel?sid=9312270958&tdid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&&bounced=1
https://aa.agkn.com/adscores/g.pixel?sid=9312292258&mt=30c15afa-5048-4600-a17d-e2a85c24ab94

The host zedo.com should enable Keep-Alive. It serves the following resources.

https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.006775474426035322&7899512393
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:1248}];et=1250;eid=114;ai=RB%20Fastlane%5Erubicon%5E372688_
1-640-480%5E%5E1222;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e
=e;z=0.557270568495744&6553624559
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:1248}];et=1250;eid=114;ai=RB%20Fastlane%5Erubicon_preroll%5E3
72688_1-640-480%5E%5E1225;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-
before;e=e;z=0.557270568495744&1338601830
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:2558}];eid=58;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q
2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.7819638443337706&2618815769
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.05970694389493891&8781865063
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[{%2228%22:17}];eid=99;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q21
98181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.6641648875542858&1714769425

The host tynt.com should enable Keep-Alive. It serves the following resources.

https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=1&r=
https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=2&r=
https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=3&r=

The host dotomi.com should enable Keep-Alive. It serves the following resources.

https://casale-match.dotomi.com/casale/match?cm_dsp_id=65&cm_callback_url=https%3A%2F%2Fdsum-sec.casalemedia.com%2Fcrum&cm_user_id=
WvqB59HM7SUAACpofvsAAAAt
https://casale-match.dotomi.com/casale/match?dtm_test=736d91089957093c&cm_callback_url=https%3A%2F%2Fdsum-sec.casalemedia.com%2Fcrum
&cm_dsp_id=65&cm_user_id=WvqB59HM7SUAACpofvsAAAAt

The host eqads.com should enable Keep-Alive. It serves the following resources.

https://um2.eqads.com/um/cs
https://um2.eqads.com/um/dm?cb=//dmx.districtm.io/s/10008/$MACRO

Analyze your site at https://gtmetrix.com Page 40 of 85


PageSpeed Recommendations

Defer parsing of JavaScript F (36) AVG SCORE: 70% JS HIGH

821.0KiB of JavaScript is parsed during initial page load. Defer parsing JavaScript to reduce blocking of page rendering.

https://imasdk.googleapis.com/js/core/bridge3.208.0_en.html (425.2KiB of inline JavaScript)


https://images.girlsaskguys.com/content/js/core.min.js?29912 (298.7KiB)
https://staticxx.facebook.com/connect/xd_arbiter/r/RQ7NiRXMcYA.js?version=42 (34.9KiB of inline JavaScript)
https://cdn.digitru.st/prod/1.5.9/digitrust-server.min.js (15.1KiB)
https://cdn.districtm.io/ids/index.html (13.0KiB of inline JavaScript)
https://connexity.net/c/cse?a=S&A=29a&D=64b3&V=10&R=1367x858c24&T=2f&J=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-yo
u-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&b=7883 (7.8KiB of inline JavaScript)
https://connexity.net/c/cse?a=S&A=29a&D=64b3&V=10&R=1367x858c24&T=2f&J=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-yo
u-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&b=3225 (7.8KiB of inline JavaScript)
https://connexity.net/c/cse?a=S&A=29a&D=64b3&V=10&R=1367x858c24&T=2f&J=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-yo
u-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&b=1135 (7.8KiB of inline JavaScript)
https://www.girlsaskguys.com/other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before (5.6KiB of inline JavaScript)
https://tpc.googlesyndication.com/safeframe/1-0-23/html/container.html (2.5KiB of inline JavaScript)
https://cdn.digitru.st/prod/1.5.9/dt.html (1.8KiB of inline JavaScript)
https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-2045593450925494&output=html&h=250&slotname=1623751017&adk=3149169305&adf=
3279755404&w=300&loeid=332260004&guci=2.2.0.0.2.2&format=300x250&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-
know-what-bitcoin-is-have-you-ever-used-bitcoin-before&ea=0&flash=0&avail_w=300&wgl=1&dt=1526366692854&bpp=20&bdt=4106&fdt=22&idt=339&shv
=r20180509&cbv=r20180504&saldr=aa&correlator=8268168478908&frm=24&ga_vid=1113473330.1526366693&ga_sid=1526366693&ga_hid=15493272
73&ga_fc=0&pv=2&iag=14&icsg=2&nhd=2&dssz=3&mdo=0&mso=0&u_tz=-420&u_his=3&u_java=0&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=
24&u_nplug=4&u_nmime=5&adx=0&ady=0&biw=-12245933&bih=-12245933&isw=300&ish=250&ifk=4241672993&scr_x=-12245933&scr_y=-12245933&e
id=21061122%2C21061782%2C332260000&oid=3&rx=0&eae=2&brdim=0%2C0%2C0%2C0%2C1367%2C0%2C1366%2C857%2C300%2C250&vis=1&r
sz=%7C%7CceE%7C&abl=NS&ppjl=u&pfx=0&fu=8208&bc=5&osw_key=2988443705&ifi=1&fsb=1&dtd=381 (320B of inline JavaScript)
https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-2045593450925494&output=html&h=90&slotname=7921566055&adk=2170461093&adf=3
279755405&w=728&loeid=332260004&guci=2.2.0.0.2.2&format=728x90&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before&ea=0&flash=0&wgl=1&adsid=NT&dt=1526366692797&bpp=24&bdt=4081&fdt=30&idt=643&shv=r20
180509&cbv=r20180504&saldr=aa&correlator=4343462510285&frm=24&ga_vid=1735999800.1526366693&ga_sid=1526366693&ga_hid=434185602&ga
_fc=0&pv=2&iag=14&icsg=2&nhd=2&dssz=3&mdo=0&mso=0&u_tz=-420&u_his=3&u_java=0&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=24&u_
nplug=4&u_nmime=5&adx=0&ady=0&biw=-12245933&bih=-12245933&isw=728&ish=90&ifk=249314431&scr_x=-12245933&scr_y=-12245933&eid=2106
1122%2C21061782%2C62710015%2C62710017%2C332260000&oid=3&rx=0&eae=2&brdim=0%2C0%2C0%2C0%2C1367%2C0%2C1366%2C857%2
C728%2C90&vis=1&rsz=%7C%7CceE%7C&abl=NS&ppjl=u&pfx=0&fu=8208&bc=5&osw_key=3665728787&ifi=1&fsb=1&dtd=706 (320B of inline
JavaScript)
https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-2045593450925494&output=html&h=600&slotname=9773687864&adk=20198751&adf=27
51417941&w=300&loeid=332260004&guci=2.2.0.0.2.2&format=300x600&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before&ea=0&flash=0&wgl=1&adsid=NT&dt=1526366692914&bpp=25&bdt=4118&fdt=28&idt=1194&shv=r2
0180509&cbv=r20180504&saldr=aa&correlator=7791416534298&rume=1&frm=24&ga_vid=945367900.1526366694&ga_sid=1526366694&ga_hid=2097
2691&ga_fc=0&pv=2&iag=14&icsg=2&nhd=2&dssz=3&mdo=0&mso=0&u_tz=-420&u_his=3&u_java=0&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_c
d=24&u_nplug=4&u_nmime=5&adx=0&ady=0&biw=-12245933&bih=-12245933&isw=300&ish=600&ifk=4241635468&scr_x=-12245933&scr_y=-12245933
&eid=21060549%2C21061122%2C21061782%2C332260000%2C33895414&oid=3&rx=0&eae=2&brdim=0%2C0%2C0%2C0%2C1367%2C0%2C1366%
2C857%2C300%2C600&vis=1&rsz=%7C%7CceE%7C&abl=NS&ppjl=u&pfx=0&fu=8208&bc=5&osw_key=657224047&ifi=1&fsb=1&dtd=1240 (320B of
inline JavaScript)

Specify a cache validator E (54) AVG SCORE: 94% SERVER HIGH

The following resources are missing a cache validator. Resources that do not specify a cache validator cannot be refreshed efficiently.
Specify a Last-Modified or ETag header to enable cache validation for the following resources:

https://ads.rubiconproject.com/ad/17174.js
https://api.content-ad.net/px.gif
https://cm.mgid.com/i.js
https://connect.facebook.net/en_US/fbevents.js
https://connect.facebook.net/signals/config/781946178525195?v=2.8.14&r=stable
https://content.jwplatform.com/libraries/WLok6WPd.js
https://dmx.districtm.io/s/10001/52af87df-3f8d-4bcd-bc21-1d826dc889c2
https://dmx.districtm.io/s/10008/174c5830-8905-4d06-9b00-103e88704f9c
https://dmx.districtm.io/s/10010/3609532715836771276
https://dmx.districtm.io/s/10016/WvqB5wAAAKNI-RAl&_test=WvqB5wAAAKNI-RAl
https://fastlane-adv.rubiconproject.com/v1/auction/video
https://imasdk.googleapis.com/js/sdkloader/ima3.js
https://ml314.com/csync.ashx?fp=&person_id=5978151422914825543&eid=50082
https://ml314.com/csync.ashx?fp=KPJBvSe999eQ64oS&person_id=5978151422914825543&eid=50056

Analyze your site at https://gtmetrix.com Page 41 of 85


PageSpeed Recommendations

https://pagead2.googlesyndication.com/pub-config/r20160913/ca-pub-2045593450925494.js
https://pd.sharethis.com/pd/33across
https://pd.sharethis.com/pd/sovrn
https://s0.2mdn.net/instream/html5/ima3.js
https://s0.2mdn.net/instream/video/client.js
https://sb.scorecardresearch.com/beacon.js
https://stags.bluekai.com/site/4448?id=30c15afa-5048-4600-a17d-e2a85c24ab94
https://www.girlsaskguys.com/brand-styles?v=1613
https://www.googletagmanager.com/gtm.js?id=GTM-5KMRGL

Enable gzip compression D (61) AVG SCORE: 84% SERVER HIGH

Enable compression for the following resources to reduce their transfer size by 47.5KiB (60% reduction).

Compressing https://tags.bkrtx.com/js/bk-coretag.js could save 25.3KiB (66% reduction).


Compressing https://brand-ad-innovations.s3.amazonaws.com/intention-score/bai-intention-score.js could save 4.1KiB (59% reduction).
Compressing https://3787.tm.zedo.com/v1/eae01302-531c-41de-b573-22ad40de42e4/atm.js could save 3.5KiB (61% reduction).
Compressing https://js.agkn.com/prod/v0/tag.js could save 1.6KiB (56% reduction).
Compressing https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437746%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c4
4fd94659c;cfp=1;rndc=1526366695;loc=100;target=_blank;misc=abbd5211&_ADTIME_&$RANDOM&&;rdclick= could save 1.5KiB (59% reduction).
Compressing https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c4
4fd94659c;cfp=1;rndc=1526366695;loc=100;target=_blank;misc=a6bb5ad6&_ADTIME_&$RANDOM&&;rdclick= could save 1.5KiB (59% reduction).
Compressing https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c4
4fd94659c;cfp=1;rndc=1526366695;loc=100;target=_blank;misc=%7Brandom%7D&_ADTIME_&$RANDOM&&;rdclick= could save 1.5KiB (59% reduction).
Compressing https://adserver-us.adtech.advertising.com/pubapi/3.0/10334.1/4758003/0/1/ADTECH;v=2;cmd=bid;cors=yes;alias=5226b1998f112d6;bidfloor
=0.15;misc=1526366694582 could save 1.5KiB (65% reduction).
Compressing https://adserver-us.adtech.advertising.com/pubapi/3.0/10334.1/4758003/0/1/ADTECH;v=2;cmd=bid;cors=yes;alias=34e87865420045f;bidfloor
=0.15;misc=1526366693542 could save 1.5KiB (65% reduction).
Compressing https://loadus.exelator.com/load/?p=233&g=001&j=d&xl8blockcheck=1 could save 1002B (50% reduction).
Compressing https://ssum-sec.casalemedia.com/usermatch?s=175407&cb=https%3A%2F%2Fpixel.advertising.com%2Fups%2F55940%2Fsync%3F_orig
in%3D0%26uid%3D could save 934B (66% reduction).
Compressing https://cdn.mgid.com/images/by_mgid_adc_logo_mini.svg could save 866B (49% reduction).
Compressing https://stags.bluekai.com/site/27519?id=CmUMKVr6gewN0gShBgJGAg%3D%3D&ret=html&random=1526366702823 could save 819B (57%
reduction).
Compressing https://loadus.exelator.com/load//net.php?n=PGltZyB3aWR0aD0iMSIgYWx0PSJFeGVsYXRlRGF0YSIgc3R5bGU9ImRpc3BsYXk6bm9uZSIgc3J
jPSJodHRwczovL21hdGNoLmFkc3J2ci5vcmcvdHJhY2svY21mL2dlbmVyaWM%2FdHRkX3BpZD1leGVsYXRlIiBoZWlnaHQ9IjEiPjwvaW1nPjxpbWcgd2lkdGg9
IjEiIGFsdD0iRXhlbGF0ZURhdGEiIHN0eWxlPSJkaXNwbGF5Om5vbmUiIHNyYz0iaHR0cHM6Ly9jbS5nLmRvdWJsZWNsaWNrLm5ldC9waXhlbD9nb29nbGVf
bmlkPWV4ZWxhdGUmZ29vZ2xlX2NtJmdvb2dsZV9zYyIgaGVpZ2h0PSIxIj48L2ltZz48aW1nIHdpZHRoPSIxIiBhbHQ9IkV4ZWxhdGVEYXRhIiBzdHlsZT0iZGlzcGx
heTpub25lIiBzcmM9Imh0dHBzOi8vYWEuYWdrbi5jb20vYWRzY29yZXMvZy5waXhlbD9zaWQ9OTIxMTU3ODYwOCZfZz05MDYmZXg9MTI2NjU5Zjk5NjI4YTM3M
WQ5YmIyNTJiMTZjNTEyY2MiIGhlaWdodD0iMSI%2BPC9pbWc%2BaHR0cHM6Ly9zeW5jLmFscGhvbnNvLnR2L3N5bmM%2Fc3JjaWQ9MjAwJnB1aWQ9MTI2
NjU5Zjk5NjI4YTM3MWQ5YmIyNTJiMTZjNTEyY2M%3D&h=f35e0f9d392e13f4eafa9658f9744470 could save 267B (48% reduction).
Compressing https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=1&r= could save 257B (36% reduction).
Compressing https://ps.eyeota.net/pixel/bounce/?pid=51md42u&t=ajs&uid=d679af0dac93f348389a3cb3 could save 243B (38% reduction).
Compressing https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=2&r= could save 239B (36% reduction).
Compressing https://pd.sharethis.com/pd/33across could save 198B (38% reduction).
Compressing https://pd.sharethis.com/pd/sovrn could save 196B (38% reduction).
Compressing https://fastlane-adv.rubiconproject.com/v1/auction/video could save 189B (46% reduction).
Compressing https://d.agkn.com/iframe/8613/?che=533312693&c=%7B%22bpid%22%3A%22girlsaskguysus%22%2C%22loc%22%3A%22https%3A%2F
%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before%22%2C%22ref%22%3A%22-1%22%
2C%22cid%22%3A%22-1%22%2C%22sid%22%3A%22-1%22%2C%22gen%22%3A%22UnknownGender%22%2C%22age%22%3A%22%22%2C%22ca
t%22%3A%22Other%22%2C%22brd%22%3A%22-1%22%7D could save 184B (40% reduction).
Compressing https://config.playwire.com/1020169/videos/v2/5428851/manifest.f4m could save 176B (41% reduction).
Compressing https://fastlane.rubiconproject.com/a/api/fastlane.json?account_id=17174&site_id=163796&zone_id=785932&size_id=15&p_pos=btf&rp_floo
r=0.01&rp_secure=1&tk_flint=pbjs_lite_v0.34.8&tid=b92039b5-d4f3-4b01-b77f-14ac34942c2c&p_screen_res=1367x858&rand=0.3152130368324719&rf=h
ttps%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before could save 54B (23%
reduction).
Compressing https://fastlane.rubiconproject.com/a/api/fastlane.json?account_id=17174&site_id=163796&zone_id=785932&size_id=15&p_pos=btf&rp_floo
r=0.01&rp_secure=1&tk_flint=pbjs_lite_v0.34.8&tid=994cf248-51b1-42c2-83de-3f214d228cd4&p_screen_res=1367x858&rand=0.3898598296851088&rf=h
ttps%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before could save 53B (23%
reduction).
Compressing https://fastlane.rubiconproject.com/a/api/fastlane.json?account_id=17174&site_id=163796&zone_id=824524&size_id=15&p_pos=btf&rp_floo
r=0.01&rp_secure=1&tk_flint=pbjs_lite_v0.34.8&tid=dfe9050a-9451-48e3-995e-a8b4f4b8dab7&p_screen_res=1367x858&rand=0.39350058892206663&rf
=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before could save 53B (23%
reduction).
Compressing https://aa.agkn.com/adscores/g.json?sid=9202507693 could save 29B (19% reduction).
Compressing https://www.girlsaskguys.com/home/vod?excludedVideos=&topicId=139 could save 17B (9% reduction).
Compressing https://optimized-by.rubiconproject.com/a/api/vast.xml?account_id=11406&site_id=134230&zone_id=861300&size_id=201&tg_c.language=&
p_window.depth=0&rf=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
p_window.url=&p_window.w=737&p_window.h=415&p_aso.video.ext.ad.w=737&p_aso.video.ext.ad.h=415&width=737&height=415&p_aso.video.api=2&p_

Analyze your site at https://gtmetrix.com Page 42 of 85


PageSpeed Recommendations

aso.video.mimes=application/javascript,video/mp4&cb=7939836027483149&rp_secure=1 could save 12B (7% reduction).

Optimize images C (72) AVG SCORE: 70% IMAGES HIGH

Optimize the following images to reduce their size by 32.8KiB (3% reduction).

Losslessly compressing https://cdata.carambo.la/Layer/InImage/Prod/cbola_platform/version_2.18.4.4/css/assets/cbolaSprite.png could save 8.0KiB (35%


reduction). See optimized version.
Losslessly compressing https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15251659200349305815.jpg&static=tru
e&pos=face&h=315&w=420&static=true&fmt=jpeg could save 4.7KiB (31% reduction). See optimized version.
Losslessly compressing https://imgg-cdn.mgid.com/2543/2543365_492x328.jpg could save 4.5KiB (12% reduction). See optimized version.
Losslessly compressing https://ss3.zedo.com/utils/zplayer/wrapper/v8.7/HTML/app/assets/images/10k.gif could save 2.6KiB (26% reduction). See optimized
version.
Losslessly compressing https://aka-cdn-ns.adtechus.com/images/5205_adwords_300x250V1.jpg could save 949B (2% reduction). See optimized version.
Losslessly compressing https://strips.vidible.tv/prod/5ae86ee178e0f507d163254d/2018-05-01/5ae86ee178e0f507d163254d_1920x1080_v1.mp4?c=10&r=
10&h=116 could save 936B (1% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/Content/images/desktop/icons/social_bar.png could save 868B (26% reduction). See optimized v
ersion.
Losslessly compressing https://images.girlsaskguys.com/Content/images/desktop/icons/ico-hdr-video.png could save 843B (62% reduction). See optimize
d version.
Losslessly compressing https://imgg-cdn.mgid.com/2591/2591379_492x328.jpg could save 837B (3% reduction). See optimized version.
Losslessly compressing https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/1502817721.jpg&static=true&pos=face&
h=315&w=420&static=true&fmt=jpeg could save 772B (4% reduction). See optimized version.
Losslessly compressing https://d3dytsf4vrjn5x.cloudfront.net/105614/300x250/c9127ce6e704a656ec453fb89c2c9c40.jpg could save 688B (8% reduction).
See optimized version.
Losslessly compressing https://imgg-cdn.mgid.com/2741/2741147_492x328.jpg could save 687B (5% reduction). See optimized version.
Losslessly compressing https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15262929340920703819.jpg&static=tru
e&pos=face&h=315&w=420&static=true&fmt=jpeg could save 597B (3% reduction). See optimized version.
Losslessly compressing https://d3dytsf4vrjn5x.cloudfront.net/79578/300x250/3a067d0e2548a891d8acc7ef4bea71a9.jpg could save 523B (4% reduction).
See optimized version.
Losslessly compressing https://cdn.video.playwire.com/1020169/videos/5428851/poster_0000.png could save 489B (1% reduction). See optimized version.
Losslessly compressing https://d3dytsf4vrjn5x.cloudfront.net/6279/300x250/aa5c21a395a124b874d248d14d4b1d86.jpg could save 436B (3% reduction).
See optimized version.
Losslessly compressing https://images.girlsaskguys.com/users/a94200cf6ff18070881e806ca7122d6f/thumb.jpg?0 could save 411B (14% reduction). See
optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/useravatars/technophile.jpg could save 348B (18% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/useravatars/don-juan.jpg could save 336B (14% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/useravatars/girly-girl.jpg could save 329B (14% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/useravatars/social-beast.jpg could save 324B (14% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/useravatars/explorer.jpg could save 314B (16% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/howdoilook.jpg could save 263B (8% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/news.jpg could save 263B (9% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/religion.jpg could save 256B (10% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/other.jpg could save 248B (8% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/sports-new.jpg could save 234B (5% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/tech.jpg could save 204B (6% reduction). See optimized version.
Losslessly compressing https://strips.vidible.tv/prod/5ad69fbfc269d67d3ed90424/2018-04-18/5ad69fbfc269d67d3ed90424_1920x1080_v1.mp4?c=10&r=1
0&h=116 could save 202B (1% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/giftsforwomen.jpg could save 105B (2% reduction). See optimized version.
Losslessly compressing https://cm.g.doubleclick.net/pixel?google_nid=rp&google_hm=Skg3QkJIRUotMUUtRDVaMA== could save 100B (58% reduction).
See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/breakup.jpg could save 85B (2% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/flirting.jpg could save 85B (2% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/education.jpg could save 80B (2% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/girlsaskguys.jpg could save 65B (1% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/Content/images/desktop/icons/login.png could save 60B (13% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/generalhealth.jpg could save 58B (2% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/travel.jpg could save 52B (1% reduction). See optimized version.
Losslessly compressing https://media.carambo.la/Images/1418_3_10.jpg could save 46B (1% reduction). See optimized version.
Losslessly compressing https://media.carambo.la/Images/3389_3_10.jpg could save 46B (1% reduction). See optimized version.
Losslessly compressing https://media.carambo.la/Images/4749_3_10.jpg could save 46B (1% reduction). See optimized version.
Losslessly compressing https://media.carambo.la/PSA2/adc_sb3_boy_300x250.jpg could save 46B (1% reduction). See optimized version.
Losslessly compressing https://media.carambo.la/PSA2/adc_tea_goodfit_300x250.jpg could save 46B (1% reduction). See optimized version.
Losslessly compressing https://media.carambo.la/PSA2/adc_twe_brawl_300x250.jpg could save 46B (1% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/marriage.jpg could save 38B (1% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/style.jpg could save 29B (1% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/mensbehavior.jpg could save 26B (1% reduction). See optimized version.
Losslessly compressing https://www.girlsaskguys.com/favicon.png could save 4B (1% reduction). See optimized version.

Analyze your site at https://gtmetrix.com Page 43 of 85


PageSpeed Recommendations

Losslessly compressing https://d32oduq093hvot.cloudfront.net/icons/sponsoredlinksby.png could save 1B (1% reduction). See optimized version.

Optimize the order of styles and scripts B (83) AVG SCORE: 94% CSS/JS HIGH

The following inline script blocks were found in https://www.girlsaskguys.com/other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-


used-bitcoin-before between an external CSS file and another resource. To allow parallel downloading, move the inline script before the
external CSS file, or after the next resource.

Inline script block #1

The following external CSS files were included after an external JavaScript file in https://www.girlsaskguys.com/other/q2198181-do-you-
know-what-bitcoin-is-have-you-ever-used-bitcoin-before. To ensure CSS files are downloaded in parallel, always include external CSS
before external JavaScript.

https://www.girlsaskguys.com/brand-styles?v=1613

Specify image dimensions A (97) AVG SCORE: 98% IMAGES MEDIUM

The following image(s) are missing width and/or height attributes.

https://bttrack.com/pixel/cookiesync?source=0b0edea9-c9fe-4b9c-9bcd-a51022f2873f&publisherid=MTQxMTk3ZDc5MzJhNmZiYmY5MDQxN2MzN2Q2NDZj
MDg=&pushdata=109&secure=1 (Dimensions: 1 x 1)
https://cf.girlsaskguys.com/q2198181/14d6d96a-1366-4b7a-b0a0-321bd4a2752b.jpg (Dimensions: 620 x 350)
https://d32oduq093hvot.cloudfront.net/icons/c_ad_logo.png (Dimensions: 300 x 84) (2 uses)
https://g.cwkuki.com/cs/D8f2l?u=MTQxMTk3ZDc5MzJhNmZiYmY5MDQxN2MzN2Q2NDZjMDg= (Dimensions: 1 x 1)
https://images.girlsaskguys.com/custom/useravatars/girly-girl.jpg (Dimensions: 60 x 60)
https://media.carambo.la/Images/1418_3_10.jpg (Dimensions: 300 x 150) (2 uses)
https://media.carambo.la/Images/3389_3_10.jpg (Dimensions: 300 x 150) (2 uses)
https://media.carambo.la/Images/4749_3_10.jpg (Dimensions: 300 x 150) (2 uses)
https://media.carambo.la/PSA2/adc_sb3_boy_300x250.jpg (Dimensions: 300 x 250)
https://media.carambo.la/PSA2/adc_twe_brawl_300x250.jpg (Dimensions: 300 x 250)
https://pd.sharethis.com/pd/33across?_t_=px&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you
-ever-used-bitcoin-before&partner=33across&rnd=0.10131196410739207&exptid=ZGAQNVr6gewAAAATT50UAw%3D%3D&fcmp=false (Dimensions: 1 x 1)
https://pd.sharethis.com/pd/sovrn?_t_=px&url=&partner=sovrn&rnd=0.1696871479686306&exptid=ZGAQNVr6gewAAAATT50UAw%3D%3D&fcmp=false
(Dimensions: 1 x 1)
https://pd.sharethis.com/pd/sovrn?_t_=px&url=&partner=sovrn&rnd=0.5313065017585734&exptid=ZGAQNVr6gewAAAATT50UAw%3D%3D&fcmp=false
(Dimensions: 1 x 1)

M inify HTM L A (98) AVG SCORE: 98% CONTENT LOW

Minify HTML for the following resources to reduce their size by 2.9KiB (2% reduction).

Minifying https://imasdk.googleapis.com/js/core/bridge3.208.0_en.html could save 1.4KiB (1% reduction) after compression. See optimized version.
Minifying https://www.girlsaskguys.com/other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before could save 510B (3% reduction)
after compression. See optimized version.
Minifying https://platform.twitter.com/widgets/widget_iframe.d383dc1d510865aceaa5e552afcf5663.html?origin=https%3A%2F%2Fwww.girlsaskguys.com&s
ettingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings could save 231B (4% reduction) after compression. See optimized version.
Minifying https://cdn.digitru.st/prod/1.5.9/dt.html could save 208B (23% reduction) after compression. See optimized version.
Minifying https://trends.revcontent.com/serve.js.php?w=95566&t=rc_845&c=1526366686700&width=1366&referer=https://www.girlsaskguys.com/other/q219
8181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before could save 110B (9% reduction) after compression. See optimized version.
Minifying https://ssum-sec.casalemedia.com/usermatch?s=175407&cb=https%3A%2F%2Fpixel.advertising.com%2Fups%2F55940%2Fsync%3F_origin%3
D0%26uid%3D could save 72B (6% reduction). See optimized version.
Minifying https://eus.rubiconproject.com/usync.html could save 68B (1% reduction) after compression. See optimized version.
Minifying https://eus.rubiconproject.com/usync.html?geo=na&co=ca could save 68B (1% reduction) after compression. See optimized version.
Minifying https://bcp.crwdcntrl.net/5/c=9234/rand=981914498/pv=y/genp=cis130%3A73/genp=cis130%3A50/genp=cis130%3A72/genp=cis130%3A22/genp=
cis130%3A69/genp=cis130%3A70/genp=cis130%3A53/genp=cis130%3A71/genp=cis130%3A20/genp=cis130%3A103/genp=cis130%3A17/genp=cis130
%3A91/genp=cis130%3A126/genp=cis130%3A89/genp=cis130%3A86/genp=cis130%3A129/genp=cis130%3A88/genp=cis130%3A85/genp=cis130%3A90
/genp=cis130%3A16/genp=cis130%3A117/genp=cis130%3A19/genp=cis130%3A84/int=%23OpR%2371882%23girlsaskguys%20%3A%20Total%20Site%
20Traffic/int=%23OpR%2371883%23girlsaskguys%20%3A%20Site%20Section%20%3A%20other/rt=ifr could save 43B (6% reduction) after compression.
See optimized version.

Analyze your site at https://gtmetrix.com Page 44 of 85


PageSpeed Recommendations

Minifying https://googleads.g.doubleclick.net/pagead/html/r20180509/r20180504/zrt_lookup.html could save 37B (1% reduction) after compression. See opti
mized version.
Minifying https://staticxx.facebook.com/connect/xd_arbiter/r/RQ7NiRXMcYA.js?version=42 could save 33B (1% reduction) after compression. See optimized v
ersion.
Minifying https://connexity.net/c/cse?a=S&A=29a&D=64b3&V=10&R=1367x858c24&T=2f&J=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq21981
81-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&b=7883 could save 27B (1% reduction) after compression. See optimized version.
Minifying https://connexity.net/c/cse?a=S&A=29a&D=64b3&V=10&R=1367x858c24&T=2f&J=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq21981
81-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&b=1135 could save 26B (1% reduction) after compression. See optimized version.
Minifying https://connexity.net/c/cse?a=S&A=29a&D=64b3&V=10&R=1367x858c24&T=2f&J=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq21981
81-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&b=3225 could save 26B (1% reduction) after compression. See optimized version.
Minifying https://loadus.exelator.com/load//net.php?n=PGltZyB3aWR0aD0iMSIgYWx0PSJFeGVsYXRlRGF0YSIgc3R5bGU9ImRpc3BsYXk6bm9uZSIgc3JjPSJ
odHRwczovL21hdGNoLmFkc3J2ci5vcmcvdHJhY2svY21mL2dlbmVyaWM%2FdHRkX3BpZD1leGVsYXRlIiBoZWlnaHQ9IjEiPjwvaW1nPjxpbWcgd2lkdGg9IjEiI
GFsdD0iRXhlbGF0ZURhdGEiIHN0eWxlPSJkaXNwbGF5Om5vbmUiIHNyYz0iaHR0cHM6Ly9jbS5nLmRvdWJsZWNsaWNrLm5ldC9waXhlbD9nb29nbGVfbml
kPWV4ZWxhdGUmZ29vZ2xlX2NtJmdvb2dsZV9zYyIgaGVpZ2h0PSIxIj48L2ltZz48aW1nIHdpZHRoPSIxIiBhbHQ9IkV4ZWxhdGVEYXRhIiBzdHlsZT0iZGlzcGxheT
pub25lIiBzcmM9Imh0dHBzOi8vYWEuYWdrbi5jb20vYWRzY29yZXMvZy5waXhlbD9zaWQ9OTIxMTU3ODYwOCZfZz05MDYmZXg9MTI2NjU5Zjk5NjI4YTM3MWQ5
YmIyNTJiMTZjNTEyY2MiIGhlaWdodD0iMSI%2BPC9pbWc%2BaHR0cHM6Ly9zeW5jLmFscGhvbnNvLnR2L3N5bmM%2Fc3JjaWQ9MjAwJnB1aWQ9MTI2NjU
5Zjk5NjI4YTM3MWQ5YmIyNTJiMTZjNTEyY2M%3D&h=f35e0f9d392e13f4eafa9658f9744470 could save 24B (5% reduction). See optimized version.
Minifying https://d.agkn.com/iframe/8613/?che=533312693&c=%7B%22bpid%22%3A%22girlsaskguysus%22%2C%22loc%22%3A%22https%3A%2F%2F
www.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before%22%2C%22ref%22%3A%22-1%22%2C%
22cid%22%3A%22-1%22%2C%22sid%22%3A%22-1%22%2C%22gen%22%3A%22UnknownGender%22%2C%22age%22%3A%22%22%2C%22cat%2
2%3A%22Other%22%2C%22brd%22%3A%22-1%22%7D could save 12B (3% reduction). See optimized version.
Minifying https://cdn.playwire.com/bolt/js/zeus/frame-d554cf2ecd-f88fcb9b73.html could save 11B (4% reduction) after compression. See optimized version.
Minifying https://tpc.googlesyndication.com/safeframe/1-0-23/html/container.html could save 10B (1% reduction) after compression. See optimized version.
Minifying https://cdn.playwire.com/bolt/js/zeus/themes/orion/skins/orion-da503a7aa1.html could save 7B (1% reduction) after compression. See optimized ve
rsion.
Minifying https://cdn.districtm.io/ids/index.html could save 3B (1% reduction) after compression. See optimized version.
Minifying https://connexity.net/c/cse?a=Q&B=30 could save 3B (9% reduction) after compression. See optimized version.
Minifying https://stags.bluekai.com/site/51679?ret=html&phint=content_interests%3DEntertainment%2CEntertainment&phint=__bk_t%3DDo%20you%20kn
ow%20what%20BitCoin%20is%3F%20Have%20you%20ever%20used%20BitCoin%20before%3F%20-%20GirlsAskGuys&phint=__bk_k%3D&phint=__bk
_l%3Dhttps%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&limit=10&bknms
=ver=2.0,ua=7de6568bc0f4ae12338097d0e02f2bb5,t=1526366696332,m=771e7900871147d0dd9026daa1e11b1c,k=1,lang=07ef608d8a7e9677f0b83775
f0b83775,sr=1367x858x24,tzo=420,hss=true,hls=true,idb=true,addb=undefined,odb=function,cpu=4b4e4ecaab1f1c93ab1f1c93ab1f1c93,platform=1c17637
dbf2f8edebf2f8edebf2f8ede,notrack=,plugins=4841c73a9e54d579f2ba2327b834369f&r=48555972 could save 3B (5% reduction). See optimized version.
Minifying https://us-u.openx.net/w/1.0/cm?cc=1&id=9e0a35ea-c8e3-4b1b-9efa-4af6f54a373e&ph=e1e12abf-0bb5-47ee-ae31-55f011a265d0&r=https://pixel.
advertising.com/ups/55981/sync?_origin=0&uid= could save 3B (1% reduction) after compression. See optimized version.
Minifying https://platform.twitter.com/jot.html could save 2B (3% reduction) after compression. See optimized version.
Minifying https://stags.bluekai.com/site/27519?id=CmUMKVr6gewN0gShBgJGAg%3D%3D&ret=html&random=1526366702823 could save 2B (1%
reduction). See optimized version.
Minifying https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-2045593450925494&output=html&h=600&slotname=9773687864&adk=20198751
&adf=2751417941&w=300&loeid=332260004&guci=2.2.0.0.2.2&format=300x600&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-d
o-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&ea=0&flash=0&wgl=1&adsid=NT&dt=1526366692914&bpp=25&bdt=4118&fdt=28&idt=1194
&shv=r20180509&cbv=r20180504&saldr=aa&correlator=7791416534298&rume=1&frm=24&ga_vid=945367900.1526366694&ga_sid=1526366694&ga_hi
d=20972691&ga_fc=0&pv=2&iag=14&icsg=2&nhd=2&dssz=3&mdo=0&mso=0&u_tz=-420&u_his=3&u_java=0&u_h=858&u_w=1367&u_ah=858&u_aw=13
67&u_cd=24&u_nplug=4&u_nmime=5&adx=0&ady=0&biw=-12245933&bih=-12245933&isw=300&ish=600&ifk=4241635468&scr_x=-12245933&scr_y=-12
245933&eid=21060549%2C21061122%2C21061782%2C332260000%2C33895414&oid=3&rx=0&eae=2&brdim=0%2C0%2C0%2C0%2C1367%2C0%2
C1366%2C857%2C300%2C600&vis=1&rsz=%7C%7CceE%7C&abl=NS&ppjl=u&pfx=0&fu=8208&bc=5&osw_key=657224047&ifi=1&fsb=1&dtd=1240
could save 1B (1% reduction) after compression. See optimized version.
Minifying https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-2045593450925494&output=html&h=90&slotname=7921566055&adk=217046109
3&adf=3279755405&w=728&loeid=332260004&guci=2.2.0.0.2.2&format=728x90&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-d
o-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&ea=0&flash=0&wgl=1&adsid=NT&dt=1526366692797&bpp=24&bdt=4081&fdt=30&idt=643&
shv=r20180509&cbv=r20180504&saldr=aa&correlator=4343462510285&frm=24&ga_vid=1735999800.1526366693&ga_sid=1526366693&ga_hid=43418
5602&ga_fc=0&pv=2&iag=14&icsg=2&nhd=2&dssz=3&mdo=0&mso=0&u_tz=-420&u_his=3&u_java=0&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_c
d=24&u_nplug=4&u_nmime=5&adx=0&ady=0&biw=-12245933&bih=-12245933&isw=728&ish=90&ifk=249314431&scr_x=-12245933&scr_y=-12245933&e
id=21061122%2C21061782%2C62710015%2C62710017%2C332260000&oid=3&rx=0&eae=2&brdim=0%2C0%2C0%2C0%2C1367%2C0%2C1366%2C
857%2C728%2C90&vis=1&rsz=%7C%7CceE%7C&abl=NS&ppjl=u&pfx=0&fu=8208&bc=5&osw_key=3665728787&ifi=1&fsb=1&dtd=706 could save 1B
(1% reduction) after compression. See optimized version.
Minifying https://um2.eqads.com/um/cs could save 1B (1% reduction) after compression. See optimized version.

Specify a character set early A (99) AVG SCORE: 100% CONTENT MEDIUM

The following resources have no character set specified in their HTTP headers. Specifying a character set in HTTP headers can speed up
browser rendering.

https://cdn.digitru.st/prod/1.5.9/dt.html
https://cdn.districtm.io/ids/index.html
https://cdn.playwire.com/bolt/js/zeus/themes/orion/skins/orion-da503a7aa1.html
https://imasdk.googleapis.com/js/core/bridge3.208.0_en.html
https://ssum-sec.casalemedia.com/usermatch?s=175407&cb=https%3A%2F%2Fpixel.advertising.com%2Fups%2F55940%2Fsync%3F_origin%3D0%26ui
d%3D

Analyze your site at https://gtmetrix.com Page 45 of 85


PageSpeed Recommendations

https://stags.bluekai.com/site/27519?id=CmUMKVr6gewN0gShBgJGAg%3D%3D&ret=html&random=1526366702823
https://tpc.googlesyndication.com/safeframe/1-0-23/html/container.html

M inify CSS A (99) AVG SCORE: 95% CSS HIGH

Minify CSS for the following resources to reduce their size by 272B (1% reduction).

Minifying https://fonts.googleapis.com/css?family=Roboto:100,400,700|Noto+Sans:400,400i,700,700i|Raleway&subset=latin,latin-ext could save 90B (8%


reduction) after compression. See optimized version.
Minifying https://fonts.googleapis.com/css?family=Roboto:500,300,700,400 could save 70B (10% reduction) after compression. See optimized version.
Minifying https://fonts.googleapis.com/css?family=Fira+Sans could save 52B (11% reduction) after compression. See optimized version.
Minifying https://images.girlsaskguys.com/content/css/desktop.min.css?29912 could save 50B (1% reduction) after compression. See optimized version.
Minifying https://cdn.revcontent.com/build/css/rev2.min.css?v=c75d860790cfbd475402bedb463df89716d9b597 could save 4B (1% reduction) after
compression. See optimized version.
Minifying https://www.girlsaskguys.com/brand-styles?v=1613 could save 4B (1% reduction) after compression. See optimized version.
Minifying https://cdn.playwire.com/bolt/js/zeus/themes/orion/skins/orion-ca0ae891d2.css could save 1B (1% reduction) after compression. See optimized ver
sion.
Minifying https://images.girlsaskguys.com/content/css/desktop-question.min.css?29912 could save 1B (1% reduction) after compression. See optimized ver
sion.

Remove query strings from static resources E (54) AVG SCORE: 88% CONTENT LOW

Resources with a "?" in the URL are not cached by some proxy caching servers. Remove the query string and encode the parameters into
the URL for the following resources:

https://ad.lkqd.net/vpaid/formats.js?pid=323&sid=174302&apt=auto&volume=0&render=&controls=&support=&execution=outstream&placement=slider&trac
ki=&trackc=&c1=&c2=&c3=&rnd=37541505&m=&close=true&closedelay=15
https://ad.lkqd.net/vpaid/vpaid.js?fusion=1.0
https://cdata.carambo.la/Layer/InImage/Prod/cbola_platform/version_2.18.4.4/css/fonts/cbolaIcons.woff?phtwnv
https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/coverings/skin6.js?cb=17.21.1374
https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/skins/skin6.js?cb=17.21.1374
https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/vidible-min.js?embedtag=1
https://cdn.playwire.com/bolt/js/zeus/core-a160b37fa6.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/main.js?1526366697443
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/appearance_manager-1137985e12.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/controlbar-bb56ce11ba.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/preroll_screen-de6bb182df.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/scrubber-6af035d6af.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/titlebar-3af6709de6.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/volume-a2adcb71e7.js?noext
https://cdn.revcontent.com/build/css/rev2.min.css?v=c75d860790cfbd475402bedb463df89716d9b597
https://cdn.revcontent.com/build/js/rev2.min.js?v=c75d860790cfbd475402bedb463df89716d9b597&del=//trends.revcontent.com/&lg=//cdn.revcontent.com/a
ssets/img/rc-logo.png&ci=//cdn.revcontent.com/assets/img/icon-close.png&ab=//trends.revcontent.com/rc-about.php&ldr=//cdn.revcontent.com/assets/img/rc
-spinner-md.gif&ht=//trends.revcontent.com/rc-interests.php
https://connect.facebook.net/signals/config/781946178525195?v=2.8.14&r=stable
https://images.girlsaskguys.com/Content/images/gag-icon-sprites_2x.png?29912
https://images.girlsaskguys.com/Content/images/gag-sprites_2x.png?29912
https://images.girlsaskguys.com/content/css/desktop-question.min.css?29912
https://images.girlsaskguys.com/content/css/desktop.min.css?29912
https://images.girlsaskguys.com/content/js/core.min.js?29912
https://images.girlsaskguys.com/content/js/desktop-question.min.js?29912
https://images.girlsaskguys.com/custom/vod.js?v=3
https://images.girlsaskguys.com/users/407a1fe82081edfe2142a1bd712333ae/thumb.jpg?103
https://images.girlsaskguys.com/users/a94200cf6ff18070881e806ca7122d6f/thumb.jpg?0
https://images.girlsaskguys.com/users/b0faa237caaf33be4abc3ff16bcfcde2/thumb.jpg?2
https://images.girlsaskguys.com/users/cb59975165c7d4db18d47ce4f6b671df/thumb.jpg?1
https://images.girlsaskguys.com/users/d7003ccb54f220dcf951cd593f321c56/thumb.jpg?3
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/1502817721.jpg&static=true&pos=face&h=315&w=420&static=tru
e&fmt=jpeg
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15251659200349305815.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15262929340920703819.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg
https://jsc.mgid.com/g/i/girlsaskguys.com.114115.js?t=11841423
https://ml314.com/tag.aspx?1442018

Analyze your site at https://gtmetrix.com Page 46 of 85


PageSpeed Recommendations

https://ss3.zedo.com/gecko/tag/networkIds.js?3619072320
https://ss3.zedo.com/gecko/tag/networkIds.js?429390344
https://ss3.zedo.com/gecko/util/tagutil.js?0.786467868619096
https://strips.vidible.tv/prod/5ad69fbfc269d67d3ed90424/2018-04-18/5ad69fbfc269d67d3ed90424_1920x1080_v1.mp4?c=10&r=10&h=116
https://strips.vidible.tv/prod/5ae86ee178e0f507d163254d/2018-05-01/5ae86ee178e0f507d163254d_1920x1080_v1.mp4?c=10&r=10&h=116
https://tags.crwdcntrl.net/c/9234/cc.js?ns=_cc9234
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.006775474426035322&7899512393
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:1248}];et=1250;eid=114;ai=RB%20Fastlane%5Erubicon%5E372688_
1-640-480%5E%5E1222;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e
=e;z=0.557270568495744&6553624559
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:1248}];et=1250;eid=114;ai=RB%20Fastlane%5Erubicon_preroll%5E3
72688_1-640-480%5E%5E1225;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-
before;e=e;z=0.557270568495744&1338601830
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:2558}];eid=58;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q
2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.7819638443337706&2618815769
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.05970694389493891&8781865063
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[{%2228%22:17}];eid=99;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q21
98181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.6641648875542858&1714769425

Specify a Vary: Accept-Encoding header E (57) AVG SCORE: 96% SERVER LOW

The following publicly cacheable, compressible resources should have a "Vary: Accept-Encoding" header:

https://3787.tm.zedo.com/v1/eae01302-531c-41de-b573-22ad40de42e4/atm.js
https://ad.lkqd.net/mediafile/blocking_regex
https://ad.lkqd.net/vpaid/formats.js?pid=323&sid=174302&apt=auto&volume=0&render=&controls=&support=&execution=outstream&placement=slider&trac
ki=&trackc=&c1=&c2=&c3=&rnd=37541505&m=&close=true&closedelay=15
https://ad.lkqd.net/vpaid/vpaid.js?fusion=1.0
https://brand-ad-innovations.s3.amazonaws.com/intention-score/bai-intention-score.js
https://c.amazon-adsystem.com/aax2/amzn_ads.js
https://cdn.mgid.com/images/by_mgid_adc_logo_mini.svg
https://cdn.playwire.com/bolt/js/__pwhb__03082018.js
https://cdn.playwire.com/bolt/js/plow-2.6.1.js
https://cdn.playwire.com/bolt/js/zeus/core-a160b37fa6.js?noext
https://cdn.playwire.com/bolt/js/zeus/embed.js
https://cdn.playwire.com/bolt/js/zeus/iframe/libs/require.js
https://cdn.playwire.com/bolt/js/zeus/themes/orion/libs/shifty-4b401bda95.js
https://cdn.playwire.com/bolt/js/zeus/themes/orion/main.js?1526366697443
https://cdn.playwire.com/bolt/js/zeus/themes/orion/skins/orion-ca0ae891d2.css
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/appearance_manager-1137985e12.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/controlbar-bb56ce11ba.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/preroll_screen-de6bb182df.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/scrubber-6af035d6af.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/titlebar-3af6709de6.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/volume-a2adcb71e7.js?noext
https://cdn.playwire.com/bolt/js/zeus/zeus_boot-081af9499a-bcff0847d3.js
https://cdn.playwire.com/bolt/js/zeus/zeus_global-bb33b35511-b2f521c1ba.js
https://cdn.playwire.com/bolt/js/zeus/zeus_iframe-3658f262ba.js
https://cdn.revcontent.com/build/css/rev2.min.css?v=c75d860790cfbd475402bedb463df89716d9b597
https://cdn.revcontent.com/build/js/rev2.min.js?v=c75d860790cfbd475402bedb463df89716d9b597&del=//trends.revcontent.com/&lg=//cdn.revcontent.com/a
ssets/img/rc-logo.png&ci=//cdn.revcontent.com/assets/img/icon-close.png&ab=//trends.revcontent.com/rc-about.php&ldr=//cdn.revcontent.com/assets/img/rc
-spinner-md.gif&ht=//trends.revcontent.com/rc-interests.php
https://code.jquery.com/jquery-3.1.1.min.js
https://connect.facebook.net/en_US/fbevents.js
https://connect.facebook.net/signals/config/781946178525195?v=2.8.14&r=stable
https://content.jwplatform.com/libraries/WLok6WPd.js
https://dmx.districtm.io/s/10001/52af87df-3f8d-4bcd-bc21-1d826dc889c2
https://dmx.districtm.io/s/10008/174c5830-8905-4d06-9b00-103e88704f9c
https://dmx.districtm.io/s/10010/3609532715836771276
https://dmx.districtm.io/s/10016/WvqB5wAAAKNI-RAl&_test=WvqB5wAAAKNI-RAl
https://fastlane-adv.rubiconproject.com/v1/auction/video
https://js.agkn.com/prod/v0/tag.js
https://pagead2.googlesyndication.com/pagead/js/r20180509/r20180504/osd.js
https://pagead2.googlesyndication.com/pub-config/r20160913/ca-pub-2045593450925494.js
https://pd.sharethis.com/pd/33across
https://rules.quantcount.com/rules-p-aD1qr93XuF6aC.js
https://static.criteo.net/js/ld/publishertag.js

Analyze your site at https://gtmetrix.com Page 47 of 85


PageSpeed Recommendations

https://tags.bkrtx.com/js/bk-coretag.js
https://tpc.googlesyndication.com/pagead/js/r20180509/r20110914/activeview/osd_listener.js

Avoid a character set in the meta tag A (97) AVG SCORE: 100% CONTENT LOW

The following resources have a character set specified in a meta tag. Specifying a character set in a meta tag disables the lookahead
downloader in IE8. To improve resource download parallelization, move the character set to the HTTP Content-Type response header.

https://cdn.districtm.io/ids/index.html
https://cdn.playwire.com/bolt/js/zeus/frame-d554cf2ecd-f88fcb9b73.html
https://tpc.googlesyndication.com/safeframe/1-0-23/html/container.html

Avoid bad requests A (100) AVG SCORE: 98% CONTENT HIGH

You scored 100% on this recommendation - nothing to do here!

Avoid landing page redirects A (100) AVG SCORE: 98% SERVER HIGH

You scored 100% on this recommendation - nothing to do here!

Inline small CSS A (100) AVG SCORE: 96% CSS HIGH

You scored 100% on this recommendation - nothing to do here!

Inline small JavaScript A (100) AVG SCORE: 94% JS HIGH

You scored 100% on this recommendation - nothing to do here!

Put CSS in the document head A (100) AVG SCORE: 100% CSS HIGH

You scored 100% on this recommendation - nothing to do here!

Combine images using CSS sprites A (100) AVG SCORE: 89% IMAGES HIGH

You scored 100% on this recommendation - nothing to do here!

Avoid CSS @import A (100) AVG SCORE: 98% CSS MEDIUM

You scored 100% on this recommendation - nothing to do here!

Prefer asynchronous resources A (100) AVG SCORE: 100% JS MEDIUM

You scored 100% on this recommendation - nothing to do here!

Analyze your site at https://gtmetrix.com Page 48 of 85


YSlow Recommendations

YSlow Recommendations
RECOMMENDATION GRADE RELATIVE TYPE PRIORITY

Add Expires headers F (0) AVG SCORE: 25% SERVER HIGH

There are 353 static components without a far-future expiration date.

https://fonts.googleapis.com/css?family=Roboto:100,400,700|Noto+Sans:400,400i,700,700i|Raleway&subset=latin,latin-ext
https://s.ntv.io/serve/load.js
https://delivery.vidible.tv/jsonp/pid=5952b3519e45102b384dc50e/57d325e276a6057ba4a05a00.js
https://js.agkn.com/prod/v0/tag.js
https://www.googletagservices.com/tag/js/gpt.js
https://www.googletagmanager.com/gtm.js?id=GTM-5KMRGL
https://adservice.google.ca/adsid/integrator.js?domain=www.girlsaskguys.com
https://adservice.google.com/adsid/integrator.js?domain=www.girlsaskguys.com
https://jadserve.postrelease.com/t?ntv_url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-u
sed-bitcoin-before
https://www.google-analytics.com/analytics.js
https://connect.facebook.net/en_US/fbevents.js
https://connect.facebook.net/en_US/sdk.js
https://d31qbv1cthcecs.cloudfront.net/atrk.js
https://apis.google.com/js/platform.js?onload=gpCallback
https://static.criteo.net/js/ld/publishertag.js
https://pagead2.googlesyndication.com/pagead/show_companion_ad.js
https://securepubads.g.doubleclick.net/gampad/ads?gdfp_req=1&correlator=2457677432378127&output=json_html&callback=googletag.impl.pubads.call
backProxy1&impl=fifs&adsid=NT&json_a=1&hxva=1&scor=534807511884682&vrg=205&guci=2.2.0.0.2.2&sc=1&sfv=1-0-23&iu_parts=281896196%2CGirl
sAskGuys_Desktop_Masthead%2CGirlsAskGuys_Desktop_Right_1%2CGirlsAskGuys_Desktop_Right_2%2CGirlsAskGuys_Desktop_AboveOpinions%2C
GirlsAskGuys_Desktop_BetweenGender%2CGirlsAskGuys_Desktop_UnderOpinions%2CGirlsAskGuys_Desktop_Inter_1%2CGirlsAskGuys_Desktop_End
OfPage%2CGirlsAskGuys_Desktop_Inter_2%2CGirlsAskGuys_Desktop_Inter_4&enc_prev_ius=%2F0%2F1%2C%2F0%2F2%2C%2F0%2F3%2C%2F0%2
F4%2C%2F0%2F5%2C%2F0%2F6%2C%2F0%2F7%2C%2F0%2F8%2C%2F0%2F9%2C%2F0%2F10&prev_iu_szs=320x50%7C300x250%7C728x90%7
C970x250%7C730x250%2C320x50%7C300x250%2C320x50%7C300x250%7C300x600%2C320x50%7C728x90%7C730x400%7C300x250%7C336x280
%7C730x250%2C320x50%7C728x90%7C730x400%7C300x250%7C336x280%7C730x250%2C320x50%7C728x90%7C730x400%7C730x500%7C300x2
50%7C336x280%7C730x250%2C1x1%2C320x50%7C728x90%7C730x400%7C300x250%7C336x280%7C730x250%2C1x1%2C1x1&fluid=height%2Chei
ght%2Cheight%2Cheight%2Cheight%2Cheight%2C0%2Cheight%2C0%2C0&eri=4&cust_params=XperLevel%3D0%26utm_source%3DNone%26utm_m
edium%3DNone%26utm_campaign%3DNone%26PostInfo%3Dq2198181%26Gender%3DUnknownGender%26Age%3DUnknownAge%26Topics%3Doth
er%26Mobile%3DMobileNo%26MarkedAs%3DFalse%26ShowAllAds%3DYes%26PageType%3DQuestion%26BrandId%3DGAG-0&cookie_enabled=1&bc=
5&abxe=1&lmt=1526366687&dt=1526366687202&frm=20&biw=1366&bih=768&oid=3&adxs=0%2C-9%2C-9%2C163%2C163%2C163%2C-9%2C163%2
C-9%2C-9&adys=0%2C-9%2C-9%2C2091%2C3085%2C4760%2C-9%2C4860%2C-9%2C-9&adks=2967190282%2C1923088448%2C3698094709%2C
500454048%2C2910813795%2C2966204064%2C2385381749%2C1564585714%2C2376667967%2C650677945&gut=v2&ifi=1&u_tz=-420&u_his=2&u_
h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=24&u_nplug=4&u_nmime=5&u_sd=1&flash=0&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother
%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&dssz=33&icsg=2147625472&std=0&vis=1&scr_x=0&scr_y=0&psz=1050x90
%7C0x0%7C0x0%7C737x90%7C737x90%7C737x90%7C0x0%7C737x90%7C0x0%7C0x0&ga_vid=75672216.1526366687&ga_sid=1526366687&ga_hid
=68999944
https://trk.vidible.tv/trk/impression.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&s=true&pv=17.21.1374&ifr=false&pt=html5&
sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ev
er-used-bitcoin-before&cb=0.5564340100227898
https://trk.vidible.tv/trk/js-loaded.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&s=true&ifr=false&pt=html5&sid=6f174fe4-a511
-4a61-9f63-14c0f1d3457f&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&cb=0.5564340100227898
https://connect.facebook.net/signals/config/781946178525195?v=2.8.14&r=stable
https://certify.alexametrics.com/atrk.gif?frame_height=768&frame_width=1366&iframe=0&title=Do%20you%20know%20what%20BitCoin%20is%3F%20Hav
e%20you%20ever%20used%20BitCoin%20before%3F%20-%20GirlsAskGuys&time=1526366687444&time_zone_offset=420&screen_params=1367x858x
24&java_enabled=0&cookie_enabled=1&ref_url=&host_url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is
-have-you-ever-used-bitcoin-before&random_number=1531408739&sess_cookie=19aa3c10163628b50d2a3ee2e7f&sess_cookie_flag=1&user_cookie=1
9aa3c10163628b50d2a3ee2e7f&user_cookie_flag=1&dynamic=true&domain=girlsaskguys.com&account=06A9i1aoZM00yc&jsv=20130128&user_lang=en
-US
https://jadserve.postrelease.com/trk.gif?ntv_ui=a7b1090e-8006-4718-a0de-728c666156e6&ntv_ht=34H6WgA&ntv_hu=1580869101&ntv_at=303,302&ntv_a
=AAAAAAAAAAGVoDA&ord=1526366687475&ntv_dpl=1008,1011,1001,1003,1021,1006,1022,1007
https://z.moatads.com/aolvidibleapi29384728347/moatapi.js
https://trk.vidible.tv/trk/js-started.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&s=true&ifr=false&pt=html5&sid=6f174fe4-a511
-4a61-9f63-14c0f1d3457f&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&cb=0.5564340100227898
https://trk.vidible.tv/trk/minjs-loaded.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a511-4a61-9f63-14c0f1d345
7f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-be
fore&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&cb=0.5934671564892016
https://gag.gagwebapi.com/api/webpush/script?token=&client=ChromeDesktop
https://www.facebook.com/impression.php/f384f87e026ba6c/?api_key=142488384519&lid=115&payload=%7B%22source%22%3A%22jssdk%22%7D

Analyze your site at https://gtmetrix.com Page 49 of 85


YSlow Recommendations

https://www.facebook.com/tr/?id=781946178525195&ev=PageView&dl=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-wh
at-bitcoin-is-have-you-ever-used-bitcoin-before&rl=&if=false&ts=1526366688109&sw=1367&sh=858&v=2.8.14&r=stable&ec=0&o=28&it=1526366687370
https://pagead2.googlesyndication.com/pagead/osd.js
https://api.content-ad.net/Scripts/widget2.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403809&cb=152
6366688214
https://route.carambo.la/inimage/getlayer?pid=grls32&did=110431&wid=0
https://ad.lkqd.net/vpaid/formats.js?pid=323&sid=174302&apt=auto&volume=0&render=&controls=&support=&execution=outstream&placement=slider&trac
ki=&trackc=&c1=&c2=&c3=&rnd=37541505&m=&close=true&closedelay=15
https://api.content-ad.net/Scripts/widget2.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403806&cb=1526
366688264
https://js.gumgum.com/services.js
https://brand-ad-innovations.s3.amazonaws.com/intention-score/bai-intention-score.js
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadExtra&c1=activitysensor&cb=0.46312962166
32419
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadExtra&c1=nielsen_ocr&cb=0.635824344659
5222
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadExtra&c1=intentionscore&cb=0.60250491762
31729
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadExtra&c1=nielsen_dcr&cb=0.805963029223
0591
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadExtra&c1=moat&cb=0.05682252162263013
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadExtra&c1=atp&cb=0.07050286488624335
https://trk.vidible.tv/trk/abInfo.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&ab=0&cb=0.5540462171781178
https://trends.revcontent.com/serve.js.php?w=95566&t=rc_845&c=1526366686700&width=1366&referer=https%3A%2F%2Fwww.girlsaskguys.com%2Foth
er%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
https://platform.twitter.com/widgets.js
https://www.facebook.com/tr/?id=781946178525195&ev=ViewContent&dl=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-
what-bitcoin-is-have-you-ever-used-bitcoin-before&rl=&if=false&ts=1526366688444&cd[content_name]=https%3A%2F%2Fwww.girlsaskguys.com%2Fother
%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&cd[content_type]=product&cd[content_category]=Other&cd[content_ids]=%2
Fquestion%2F2198181&cd[gender]=None&cd[xper_level]=0&cd[topics_follow]=undefined&cd[visitor]=Guest&cd[mobile]=false&sw=1367&sh=858&v=2.8.14
&r=stable&ec=1&o=28&it=1526366687370
https://www.facebook.com/tr/?id=781946178525195&ev=ViewPage&dl=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-wh
at-bitcoin-is-have-you-ever-used-bitcoin-before&rl=&if=false&ts=1526366688445&cd[PagePath]=%2Fquestion%2F2198181&cd[topic_link]=other&cd[displa
y_topic_link]=other&sw=1367&sh=858&v=2.8.14&r=stable&ec=2&o=28&it=1526366687370
https://px.moatads.com/pixel.gif?e=0&ac=1&bq=7&i=AOL_VIDIBLE_API1&t=1526366688542&de=911567124104&d=52%3A-%3A-%3A-&bo=girlsaskguys.c
om&bd=girlsaskguys.com&f=0&cs=0
https://cdn.playwire.com/bolt/js/zeus/embed.js
https://cdn.revcontent.com/build/css/rev2.min.css?v=c75d860790cfbd475402bedb463df89716d9b597
https://cdn.revcontent.com/build/js/rev2.min.js?v=c75d860790cfbd475402bedb463df89716d9b597&del=//trends.revcontent.com/&lg=//cdn.revcontent.com/a
ssets/img/rc-logo.png&ci=//cdn.revcontent.com/assets/img/icon-close.png&ab=//trends.revcontent.com/rc-about.php&ldr=//cdn.revcontent.com/assets/img/rc
-spinner-md.gif&ht=//trends.revcontent.com/rc-interests.php
https://sb.scorecardresearch.com/beacon.js
https://pixel.quantserve.com/pixel/p-aD1qr93XuF6aC.gif?labels=Publishers.Publisher-88920,Widgets.Widget-95566
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/1502817721.jpg&static=true&pos=face&h=315&w=420&static=tru
e&fmt=jpeg
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15251659200349305815.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15262929340920703819.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg
https://api.content-ad.net/GetWidget.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403809&cb=1526366688214
&lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have
-you-ever-used-bitcoin-before&ik=2018051423_1869389dcee2038fe3db57c92dea4bf2&ikb=1869389dcee2038fe3db57c92dea4bf2&duid=62f783a306061
9beb771c6b446f4a3ad3ab622696a1d0a6db5c4de3ff9603624&ls=ip-172-18-62-183&dstlload=true
https://api.content-ad.net/GetWidget.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403806&cb=1526366688264&
lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-y
ou-ever-used-bitcoin-before&ik=2018051423_3fad3bdde3fd1e0f97fa276662009b15&ikb=3fad3bdde3fd1e0f97fa276662009b15&duid=62f783a3060619be
b771c6b446f4a3ad3ab622696a1d0a6db5c4de3ff9603624&ls=ip-172-18-62-183&dstlload=true
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a

Analyze your site at https://gtmetrix.com Page 50 of 85


YSlow Recommendations

511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadSkin&c1=skin6&cb=0.05582025440739913
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadExtra&c1=comscorestreamsense&cb=0.568
510008787596
https://ss3.zedo.com/gecko/util/tagutil.js?0.786467868619096
https://cm.revcontent.com/pixel_sync?exchange_uid=MTQxMTk3ZDc5MzJhNmZiYmY5MDQxN2MzN2Q2NDZjMDg%3D&bidder=112&bidder_uid=76e95d90-
580b-11e8-b85a-0242ac110003
https://cm.revcontent.com/pixel_sync?bidder=109&bidder_uid=d5180cdd-1a3d-4799-a65b-def1efef7f14&exchange_uid=MTQxMTk3ZDc5MzJhNmZiYmY5M
DQxN2MzN2Q2NDZjMDg=
https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js
https://cdn.playwire.com/bolt/js/zeus/zeus_global-bb33b35511-b2f521c1ba.js
https://rules.quantcount.com/rules-p-aD1qr93XuF6aC.js
https://fonts.googleapis.com/css?family=Roboto:500,300,700,400
https://media.carambo.la/Images/4749_3_10.jpg
https://media.carambo.la/Images/1418_3_10.jpg
https://media.carambo.la/Images/3389_3_10.jpg
https://tags.crwdcntrl.net/c/9234/cc.js?ns=_cc9234
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=ResourceLoaded&c1=ResourceLoaded&c2=https
%3A%2F%2Fcdn-ssl.vidible.tv%2Fprod%2Fplayer%2Fjs%2F17.21.1374%2Fcoverings%2Fskin6.js%3Fcb%3D17.21.1374&pv=17.21.1374&pt=html5&cb=0.
012086163475489409
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=ResourceLoaded&c1=ResourceLoaded&c2=https
%3A%2F%2Fcdn-ssl.vidible.tv%2Fprod%2Fplayer%2Fjs%2F17.21.1374%2Fskins%2Fskin6.js%3Fcb%3D17.21.1374&pv=17.21.1374&pt=html5&cb=0.191
93319262859365
https://trk.vidible.tv/trk/display.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-
a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-h
ave-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&dt=4595&w=737&h=415&csid=58172559cc52c73a8537
bbbf&cb=0.6676574090056784
https://d32oduq093hvot.cloudfront.net/icons/sponsoredlinksby.png
https://d3dytsf4vrjn5x.cloudfront.net/79578/300x250/3a067d0e2548a891d8acc7ef4bea71a9.jpg
https://d3dytsf4vrjn5x.cloudfront.net/105614/300x250/c9127ce6e704a656ec453fb89c2c9c40.jpg
https://d3dytsf4vrjn5x.cloudfront.net/6279/300x250/aa5c21a395a124b874d248d14d4b1d86.jpg
https://api.content-ad.net/pixel.gif?s=ip-172-18-62-183&ip=204.187.14.74&wid=403809&cb=1526366690098&c=CA&d=&ik=2018051423_1869389dcee203
8fe3db57c92dea4bf2
https://api.content-ad.net/px.gif
https://d32oduq093hvot.cloudfront.net/icons/c_ad_logo.png
https://api.content-ad.net/pixel.gif?s=ip-172-18-60-165&ip=204.187.14.74&wid=403806&cb=1526366690115&c=CA&d=&ik=2018051423_3fad3bdde3fd1e0
f97fa276662009b15
https://px.moatads.com/pixel.gif?e=0&ac=1&bq=7&i=AOL_VIDIBLE_API1&t=1526366691942&de=6951799390&d=252%3A-%3A-%3A-&bo=girlsaskguys.co
m&bd=girlsaskguys.com&f=0&cs=0
https://ad.lkqd.net/vpaid/vpaid.js?fusion=1.0
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeScore=0.
29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.version=0.2
.0&action=user-intention&ct=0&c1=0.7960617829961328&c2=%7B%22sizeScore%22%3A0.29154370272083946%2C%22soundScore%22%3A1%2C%2
2viewportSizeScore%22%3A1%2C%22playersNumberScore%22%3A1%2C%22performanceScore%22%3A1.8804297408767816%2C%22version%22%3
A%220.2.0%22%7D&cb=0.8410343192092966
https://ib.adnxs.com/jpt?callback=Cbola_pbjs.handleAnCB&callback_uid=2ba004cae0d5ec&psa=0&id=13215177&size=300x250&referrer=https%3A%2F%
2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
https://ib.adnxs.com/jpt?callback=Cbola_pbjs.handleAnCB&callback_uid=6d2fe9975e31c9&psa=0&id=12723446&size=300x250&referrer=https%3A%2F%
2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
https://prebid.districtm.ca/lib.js
https://ss3.zedo.com/gecko/tag/Gecko.min.js
https://cdn.digitru.st/prod/1/digitrust.min.js
https://pixel.quantserve.com/pixel;r=897445429;labels=Publishers.Publisher-88920%2CWidgets.Widget-95566;rf=0;a=p-aD1qr93XuF6aC;url=https%3A%2
F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;fpan=1;fpa=P0-713761539-15263666
92357;ns=0;ce=1;cm=;ref=;je=0;sr=1367x858x24;enc=n;dst=1;et=1526366692356;tzo=420;ogl=title.Do%20you%20know%20what%20BitCoin%20is%3F%
20Have%20you%20ever%20used%20BitCoin%20before%3F%2Cdescription.Has%20anyone%20here%20ever%20heard%20of%20BitCoin%20or%20kno
w%20what%20BitCoin%20is%3F%20%20%20If%20you%20do%252C%20and%20%2Ctype.article%2Curl.https%3A%2F%2Fwww%252Egirlsaskguys%2
52Ecom%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you%2Csite_name.GirlsAskGuys%2Cimage.https%3A%2F%2Fcf%252Egirlsaskguys%
252Ecom%2Fq2198181%2Fprimary-share%252Epng%3F88%2Cimage%3Awidth.1200%2Cimage%3Aheight.630
https://jsc.mgid.com/g/i/girlsaskguys.com.114115.js?t=11841423
https://loadus.exelator.com/load/?p=233&g=001&j=d&xl8blockcheck=1
https://ss3.zedo.com/gecko/core/v6.8/fmgt.min.js
https://adservice.google.ca/adsid/integrator.js?domain=tpc.googlesyndication.com
https://adservice.google.com/adsid/integrator.js?domain=tpc.googlesyndication.com

Analyze your site at https://gtmetrix.com Page 51 of 85


YSlow Recommendations

https://pagead2.googlesyndication.com/pub-config/r20160913/ca-pub-2045593450925494.js
https://pixel.mathtag.com/sync/img/?mt_exid=10009&mt_exuid=263790302691003053765
https://servicer.mgid.com/114115/1?w=730&h=107&cols=4&pv=6&cbuster=1526366693395257590151&ref=https%3A%2F%2Fwww.girlsaskguys.com%2F
other%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&iframe=1&pageView=1&pvid=163628b68198076f2e7
https://ib.adnxs.com/jpt?callback=Cbola_pbjs.handleAnCB&callback_uid=312c28c5a192e57&psa=0&id=13215177&size=300x250&referrer=https%3A%2F
%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
https://trk.vidible.tv/trk/page-info.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe
4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is
-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeScore
=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.version=
0.2.0&it=Omniture&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&rd=www.girlsaskguys.com&cb=0.3601255637508578
https://trk.vidible.tv/trk/video-impression.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid
=6f174fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-
bitcoin-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.
sizeScore=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&
m.version=0.2.0&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq219
8181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&vid=5ae86ee178e0f507d163254d&cb=0.0514537801160766
https://trk.vidible.tv/trk/context-intent.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f1
74fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitco
in-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&vid=5ae86ee178e0f507d163254d&cb=0.1585339798674592
https://trk.vidible.tv/qoe/intent.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-
a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-h
ave-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeScore=
0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.version=0
.2.0&it=0&vid=5ae86ee178e0f507d163254d&ct=video&url=https%3A%2F%2Fhlsrv.vidible.tv%2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2
Fhls%2Fplaylist_v1.m3u8&cb=0.739583951508719
https://trk.vidible.tv/trk/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&
pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&s=tru
e&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&ps=html5-vpaid&vid=5ae86ee178e0f507
d163254d&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&cb=0.764124820405071
https://d.agkn.com/pixel/2610/?che=1526366693&sk=263790302691003053765&pd=&puid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d
https://ss3.zedo.com/gecko/tag/networkIds.js?429390344
https://idsync.rlcdn.com/464986.gif?partner_uid=HBWWofwDhq0
https://secure.adnxs.com/async_usersync?cbfn=AN_async_load
https://cdn.digitru.st/prod/1.5.9/digitrust-server.min.js
https://ap.lijit.com/www/delivery/js/fpi.js
https://s0.2mdn.net/instream/html5/ima3.js
https://ads.rubiconproject.com/ad/17174.js
https://pagead2.googlesyndication.com/pcs/activeview?xai=AKAOjsvoQnL4gkXD9DjTQdU837PdOu9PUr9PpOuP2NOjd7Z4pAtIGZN17EtcPwpwUBYbIxz1U7
ORYXGYXbA3xjlypKQg6GMSZZ32KrA&sig=Cg0ArKJSzH6jDyASK_dZEAE&id=osdim&ti=1&adk=2967190282&tt=4833&bs=1366,768&mtos=1501,1501,1501
,1501,1501&tos=1501,0,0,0,0&p=115,319,205,1047&mraid_race=1&mcvt=1501&rs=3&ht=0&tfs=3329&tls=4830&mc=1&lte=1&bas=0&bac=0&avms=geo&
bos=1366,857&ps=1366,6946&ss=1367,858&pt=-1&deb=1-0-10-40-12--1-98-2&tvt=4307&op=1&r=v&uc=1&tgt=INS&cl=1&cec=8&clc=1&cac=0&cd=728x90
&v=r20180509
https://cdn.mirs.com/js/wglibs/mgWidget_1.7.19.js
https://cm.mgid.com/i.js
https://ib.adnxs.com/jpt?callback=Cbola_pbjs.handleAnCB&callback_uid=510e67b231c6fbc&psa=0&id=13215177&size=300x250&referrer=https%3A%2F
%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
https://ap.lijit.com/sync
https://ads.rubiconproject.com/header/11406.js?ns=11406
https://optimized-by.rubiconproject.com/a/17174/163796/883438-15.js?&cb=0.9999036834783079&tk_st=1&rf=https%3A//www.girlsaskguys.com/other/q21
98181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&rp_s=c&p_pos=btf&p_screen_res=1367x858&ad_slot=163796_15&rp_secure=1
https://load77.exelator.com/pixel.gif
https://idsync.rlcdn.com/362358.gif?google_gid=CAESEAtpFF_E3T_nBSazuRGJnRs&google_cver=1
https://ap.lijit.com/adcfg?zoneid=316485&tid=d006146e1e97499ca713107b34f745a5c1961f2a&mode=1&dmn=www.girlsaskguys.com
https://ap.lijit.com/adcfg?zoneid=491736&tid=8ad803ae4f36424ab2dcbc4e5661474606190e19&mode=1&dmn=www.girlsaskguys.com
https://dmx.districtm.io/s/10010/3609532715836771276
https://ap.lijit.com/addelivery?zoneid=316485&tid=a_316485_baa038723ac140569be456b28c15de69&cb=07622300&mode=1&flv=0.0.0&ifr=true&od=www
.girlsaskguys.com&time=06%3A44%3A54&fd=2&be=cr&loc=https%3A%2F%2Fwww.girlsaskguys.com&orig_loc=http%3A%2F%2Fhttps%3A%2F%2Fwww.
girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&abf=true&dpz=false&cv=06f3be7&dop=0&ndw=
1&spif=true&btid=a_316485_baa038723ac140569be456b28c15de69
https://ap.lijit.com/addelivery?zoneid=491736&tid=a_491736_b290dc7f7ef846bfad12ef3a80bb1753&cb=38501367&mode=1&flv=0.0.0&ifr=true&od=www.gi
rlsaskguys.com&time=06%3A44%3A55&fd=2&be=cr&loc=https%3A%2F%2Fwww.girlsaskguys.com&orig_loc=http%3A%2F%2Fhttps%3A%2F%2Fwww.girl
saskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&abf=true&dpz=false&cv=06f3be7&dop=0&ndw=1&s
pif=true&btid=a_316485_baa038723ac140569be456b28c15de69
https://c.amazon-adsystem.com/aax2/amzn_ads.js
https://as-sec.casalemedia.com/cygnus?v=8&fn=__pwhbjs__.handleCygnusResponse&s=241978&r=%7B%22id%22%3A%223dff104f958062%22%2C%
22imp%22%3A%5B%7B%22id%22%3A%22495cf23d116cc1%22%2C%22ext%22%3A%7B%22siteID%22%3A241978%2C%22sid%22%3A%22pr_1_1_s
%22%7D%2C%22video%22%3A%7B%22protocols%22%3A%5B2%2C5%2C3%2C6%5D%2C%22maxduration%22%3A300%2C%22minduration%22%3
A5%2C%22mimes%22%3A%5B%22video%2Fmp4%22%2C%22video%2Fwebm%22%5D%2C%22startdelay%22%3A0%2C%22linearity%22%3A1%2C
%22w%22%3A640%2C%22h%22%3A480%7D%7D%5D%2C%22site%22%3A%7B%22page%22%3A%22https%3A%2F%2Fwww.girlsaskguys.com%2F

Analyze your site at https://gtmetrix.com Page 52 of 85


YSlow Recommendations

other%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before%22%7D%7D
https://g2.gumgum.com/visitor/digitrust?dti=H8QIaPNNpY57TBhCenzcD8VsnmZczUpE9r5QCetBufJIFsxaG7z4jGNfqtdjaV9330GC7lklt%2Bfjy535ZC%2BiNnJ
QwtnPQYiJlE%2BFJNH8YEUiqqTVdjaqwd2qLENYilxKxjhgj90WSGxXofDxHTYA92hQbr1i%2BX6incaS%2FrxPqmYMJ71rteeRdW94mvqJu3VLRabRpNDOUV
VVm79gQ7nzTQTBPP1mfrfk06JF%2Fk88tapsKJhtNZMnRpmulDF%2BNOJql13o9R239wzknrfA9M02qplVX1bJeVOiKRgGnHOIOiOMBzb1eioB36LVMv9pV%2
BvFu%2FniDQPuAIzA4OFXv44hNw%3D%3D&dtk=4&domain=www.girlsaskguys.com
https://dmx.districtm.io/s/10001/52af87df-3f8d-4bcd-bc21-1d826dc889c2
https://beacon.walmart.com/etap.gif?tap=appnexus&thirdpartyuserid=3609532715836771276
https://pr-bh.ybp.yahoo.com/sync/msft/3609532715836771276
https://s0.2mdn.net/instream/video/client.js
https://trk.vidible.tv/trk/action.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv=1
7.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&s=true&si
d=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&actio
n=ResourceLoaded&vid=5ae86ee178e0f507d163254d&c1=ResourceLoaded&c2=https%3A%2F%2Fs0.2mdn.net%2Finstream%2Fhtml5%2Fima3.js&pv=
17.21.1374&pt=html5&cb=0.029316812889798483
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befor
e&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c&at=preroll&adIdx=-1&aen=FROS%20-%20CO%20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl
=true&ps=html5-vpaid&rcid=551440471146fb0d084da510&rid=572a5079e4b0fb7d4078f6b5&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a
908-3c30-43bd-a0e3-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vw
m=0&h=415&cb=0.3288523803519503
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=FROS%20-%20CO%
20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps=html5-vpaid&rcid=551440471146fb0d084da
510&rid=572a5079e4b0fb7d4078f6b5&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=56a11164e4b0
5fb5460fcca3&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://ib.adnxs.com/setuid?entity=101&uid=3609532715836771276&code=CAESEFeVfqtbfCXcUOYM1zcS1Aw&google_cver=1
https://ib.adnxs.com/mapuid?member=181&user=&google_gid=CAESEMNiQPHHWeStIWAOs8DOWbU&google_cver=1
https://dmx.districtm.io/s/10016/WvqB5wAAAKNI-RAl&_test=WvqB5wAAAKNI-RAl
https://dmx.districtm.io/s/10008/174c5830-8905-4d06-9b00-103e88704f9c
https://ib.adnxs.com/setuid?entity=8&code=30c15afa-5048-4600-a17d-e2a85c24ab94
https://ib.adnxs.com/setuid?entity=281&code=8c0580ce0ae2528e0982e95b4c73cebe
https://cm.steepto.com/setmuidn/?muidn=i4eR1FzfRZIn
https://aax.amazon-adsystem.com/e/dtb/bid?src=3308&u=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-h
ave-you-ever-used-bitcoin-before&cb=4803322&mt=V
https://sync.search.spotxchange.com/partner?adv_id=7715&uid=3609532715836771276&__user_check__=1&sync_id=7a69e606-580b-11e8-abb3-1fdd5b
851f01
https://c.mgid.com/c?pv=2&f=1&v=175|117|40|t3SkLumE1fGzFUmeN7bgZX2vteKohlvoKwCsHz4D8KRFPCLNZxWy4FtDO5GzsWYI&fw=1&v=175|117|8|t3SkL
umE1fGzFUmeN7bgZdZGOVzxUQOZ_8qMogHxZpi0VggZ2pY-UeVoUWKM34yY&v=175|117|8|t3SkLumE1fGzFUmeN7bgZSkShrTRYCsuS-nx8rsCh-tbw6Czo
csgexseJRUfDRfG&v=175|117|24|t3SkLumE1fGzFUmeN7bgZVD6Di1r6RJcvvLwPDcJHOVjWMheh5otq3eUphFtRW55&tt=Direct&cid=114115&h2=i6dDxqFY
AGENzktqx-WUzbXB6o71t44bIfJ2ThSkKus*
https://cdn.playwire.com/bolt/js/zeus/iframe/libs/require.js
https://cdn.playwire.com/bolt/js/zeus/zeus_boot-081af9499a-bcff0847d3.js
https://bcp.crwdcntrl.net/map/ct=y/c=9380/tp=MGID/tpid=i4eR1FzfRZIn
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437746%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd94659c;cfp
=1;rndc=1526366695;loc=100;target=_blank;misc=abbd5211&_ADTIME_&$RANDOM&&;rdclick=
https://m.adnxs.com/mapuid?member=280&user=282CD077347D6B042529DB87307D68CB;
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd94659c;cfp
=1;rndc=1526366695;loc=100;target=_blank;misc=%7Brandom%7D&_ADTIME_&$RANDOM&&;rdclick=
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd94659c;cfp
=1;rndc=1526366695;loc=100;target=_blank;misc=a6bb5ad6&_ADTIME_&$RANDOM&&;rdclick=
https://atpixelus.alephd.com/post_adtech?FlEXs2dumRuxdQgN0uMp81aHZMoloHmFojR6HjC6m8PMsJstyja6.TjNJFpQVTLI--ckuimRLsMM7wbgiDJRpIt7u0
9j.ymTo9ksGOcNFbASbNMK4TaN6fPyaJHKNdeC1u.1F1jpu1HioR8TTURN7Os.yXCN3JqIAE.YxTRrfE2aIPVF9Kpbfm37FTkylrNRl33RTlHcXVbB1AV0Us8MA
w==
https://ad.afy11.net/ad?mode=10&sspid=585
https://atpixelus.alephd.com/post_adtech?Of98E-fcV8or3qnt7gmFW3thV3BDsh3l7DRubZVoiA1mRlt8hy4szZvJ7TXUzcQF7rXsocVEWcE.u6LZPo2TgQVrsXC
TYhp9GXIFcjxgONlSCifXqkyIzuMzU39cXBUcgg7s.2rgU2c.mW2ZISEYtC.yg0MMHuSYapk3CnJJ6lW.RPE1imSApywtt7REBzX9oG8JBQVCk6v6wKlD9heGzQ==
https://atpixelus.alephd.com/post_adtech?dz5gr5ooSzhZf8z8DJQ.moa3d.a-sQCeTjEAyUCpZNxCdsnmrzQ6hWdDcbptP.7CzX9xik2dsN4ON.YoktFGqnDMKa
6P1HKsmuaaZvmDgL8GDBPBGyM6AKL--KcaIpOgR1-UXgixaUuQgf7sDLrmOIoL00RjceLzt2O6DJfrevWVgj8OMZN8aTUm3zqUZa1-AvbL.aqkBnVshkPZSfFC
bw==
https://imasdk.googleapis.com/js/sdkloader/ima3.js
https://odr.mookie1.com/t/v2/sync?tagid=V2_2739&src.visitorId=CAESEN-liHBbbpDjQSnJOplfkW4&google_cver=1
http://load77.exelator.com/pixel.gif
https://cdn.playwire.com/bolt/js/zeus/themes/orion/main.js?1526366697443
https://ap.lijit.com/adcfg?zoneid=495079&tid=122211ed6038423985c3803c433a298f71b93ff2&mode=1&dmn=www.girlsaskguys.com
https://ap.lijit.com/adcfg?zoneid=495077&tid=9ae9aa1968f04637bb89afdfc67331217b13f68e&mode=1&dmn=www.girlsaskguys.com
https://ap.lijit.com/adcfg?zoneid=495077&tid=8f627a97b3dd4e8f934e6a98edd0bfad555b381c&mode=1&dmn=www.girlsaskguys.com
https://ap.lijit.com/addelivery?zoneid=495079&tid=a_495079_05d850d5b3854fbd9d3e9a0319ac3914&cb=68600842&mode=1&flv=0.0.0&ifr=true&od=www.
girlsaskguys.com&time=06%3A44%3A58&fd=2&be=cr&loc=https%3A%2F%2Fwww.girlsaskguys.com&orig_loc=http%3A%2F%2Fhttps%3A%2F%2Fwww.g
irlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&abf=false&dpz=false&cv=06f3be7&dop=0&ndw=1
&spif=true&btid=a_316485_baa038723ac140569be456b28c15de69

Analyze your site at https://gtmetrix.com Page 53 of 85


YSlow Recommendations

https://ap.lijit.com/addelivery?zoneid=495077&tid=a_495077_484a26e1d6204cb490d98d105b3a92d1&cb=20944266&mode=1&flv=0.0.0&ifr=true&od=www
.girlsaskguys.com&time=06%3A44%3A58&fd=2&be=cr&loc=https%3A%2F%2Fwww.girlsaskguys.com&orig_loc=http%3A%2F%2Fhttps%3A%2F%2Fwww.
girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&abf=true&dpz=false&cv=06f3be7&dop=0&ndw=
1&spif=true&btid=a_316485_baa038723ac140569be456b28c15de69
https://ap.lijit.com/addelivery?zoneid=495077&tid=a_495077_3a235fdd3eae494c8bb23d4201e02921&cb=72778892&mode=1&flv=0.0.0&ifr=true&od=www.
girlsaskguys.com&time=06%3A44%3A58&fd=2&be=cr&loc=https%3A%2F%2Fwww.girlsaskguys.com&orig_loc=http%3A%2F%2Fhttps%3A%2F%2Fwww.g
irlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&abf=false&dpz=false&cv=06f3be7&dop=0&ndw=1
&spif=true&btid=a_316485_baa038723ac140569be456b28c15de69
https://cdn.playwire.com/bolt/js/zeus/zeus_iframe-3658f262ba.js
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44f
d94659c&at=preroll&adIdx=-1&aen=FROS%20-%20CO%20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&
pbl=true&ps=html5-vpaid&rcid=551440471146fb0d084da510&rid=572a5079e4b0fb7d4078f6b5&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=460
5a908-3c30-43bd-a0e3-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ae86ee178e0f507d163254d&w=737&aert=3775&ar=no&fo=0&ft=0&h=415&c
b=0.41793439442522007
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befor
e&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20VAN%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true
&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade879442b071692878a4c7&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908
-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0
&h=415&cb=0.02242284587459764
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=Oath%201V%20-%2
0AOL%20-%20VAN%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23
&rid=5ade879442b071692878a4c7&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41
110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://trk.vidible.tv/trk/ad-issue.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv
=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&s=true&
sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&at=
preroll&adIdx=-1&aen=FROS%20-%20CO%20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps=
html5-vpaid&rcid=551440471146fb0d084da510&rid=572a5079e4b0fb7d4078f6b5&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-
43bd-a0e3-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ae86ee178e0f507d163254d&curl=https%3A%2F%2Fpubads.g.doubleclick.net%2Fgampa
d%2Fads%3Fsz%3D3x3%26iu%3D%2F36117602%2Fhdm-aolpreroll%2Fonnetwork%26impl%3Ds%26gdfp_req%3D1%26env%3Dvp%26output%3Dvast
%26unviewed_position_start%3D1%26url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Fother%252Fq2198181-do-you-know-what-bitcoin-is
-have-you-ever-used-bitcoin-before%26description_url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Fother%252Fq2198181-do-you-know-wh
at-bitcoin-is-have-you-ever-used-bitcoin-before%26correlator%3D1526366699108&stg=loaded&crl=IMA&dt=Failed%20to%20initialize%20GoogleIMA3%20
adManager.%20The%20response%20does%20not%20contain%20any%20valid%20ads.&et=901&st=9571&cb=0.8006510718701103
https://cdn.mgid.com/js/perfect-scrollbar.js
https://vap4sfo1.lijit.com/addelivery/impression?bannerid=184916&campaignid=232&cb=04111052&tid=a_491736_b290dc7f7ef846bfad12ef3a80bb1753&
zoneid=491736&cids=232&bids=184916&tss=5
https://vap4sfo1.lijit.com/data/fp?tid=a_495079_05d850d5b3854fbd9d3e9a0319ac3914&zoneid=495079&starttime=1526366697643&adcfg=8&adcfg_resp
onse=462&addelivery=470&addelivery_response=1228&lgfired=1746&container=1755&EOL=1755&ctstart=1749&elapsed_ms=1755
https://vap4sfo1.lijit.com/addelivery/impression?bannerid=186041&campaignid=232&cb=46731447&tid=a_495077_484a26e1d6204cb490d98d105b3a92d
1&zoneid=495077&cids=232&bids=186041&tss=5
https://vap4sfo1.lijit.com/data/fp?tid=a_495077_484a26e1d6204cb490d98d105b3a92d1&zoneid=495077&starttime=1526366697675&adcfg=6&adcfg_res
ponse=480&addelivery=483&addelivery_response=1206&lgfired=1756&container=1762&EOL=1763&ctstart=1759&elapsed_ms=1763
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44f
d94659c&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20VAN%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=tr
ue&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade879442b071692878a4c7&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a9
08-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&aert=344&ar=no&fo=0&ft=0&h=415&cb=0.
07586247591190554
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befor
e&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20Rest%20of%20Brands%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%
20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade830747fd696c810db0b7&txid=071fbe93-1290-4df1-908a-567aa68d948
9&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound
=0&vwa=0&vwm=0&h=415&cb=0.0004158311963531336
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=Oath%201V%20-%2
0AOL%20-%20Rest%20of%20Brands%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09
eab108e072da23&rid=5ade830747fd696c810db0b7&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=5
69fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://video-ads.rubiconproject.com/video/bridge-30638.js
https://vap4sfo1.lijit.com/addelivery/impression?bannerid=100898&campaignid=232&cb=11665602&tid=a_316485_baa038723ac140569be456b28c15de6
9&zoneid=316485&cids=232&bids=100898&tss=2

Analyze your site at https://gtmetrix.com Page 54 of 85


YSlow Recommendations

https://vap4sfo1.lijit.com/data/fp?tid=a_495077_3a235fdd3eae494c8bb23d4201e02921&zoneid=495077&starttime=1526366697693&adcfg=1&adcfg_resp
onse=486&addelivery=488&addelivery_response=1201&lgfired=1859&container=1870&EOL=1870&ctstart=1861&elapsed_ms=1870
https://content.jwplatform.com/libraries/WLok6WPd.js
https://ml314.com/tag.aspx?1442018
https://pd.sharethis.com/pd/sovrn
https://s.cxt.ms/action.v3.0.0.min.js
https://ce.lijit.com/merge?pid=5176&3pid=1
https://ap.lijit.com/data/ct?tid=a_495077_484a26e1d6204cb490d98d105b3a92d1&zoneid=495077&cid=18&geo=CA&all_tags=138%2C151%2C185%2C1
98%2C209%2C214%2C215%2C219%2C227%2C228%2C229%2C230%2C231%2C232%2C237%2C238%2C239%2C241%2C265%2C277%2C290&ts
s=425%2C427%2C458%2C475&fired_tags=138%2C151%2C265%2C290&count=4&status=1%2C1%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2
C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C1%2C8%2C1&elapsed_ms=477
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44f
d94659c&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20Rest%20of%20Brands%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-
%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade830747fd696c810db0b7&txid=071fbe93-1290-4df1-908a-567aa68d9
489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&aert=495&ar=no&fo=0&
ft=0&h=415&cb=0.4564251722235455
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befor
e&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20VAN%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=ht
ml5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade94d85c6617767c385912&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-
43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=4
15&cb=0.09230157196087951
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=Oath%201V%20-%2
0AOL%20-%20VAN%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5a
de94d85c6617767c385912&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650
e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://cdn.playwire.com/bolt/js/zeus/core-a160b37fa6.js?noext
https://ap.lijit.com/data/ct?tid=a_495077_3a235fdd3eae494c8bb23d4201e02921&zoneid=495077&cid=18&geo=CA&all_tags=138%2C151%2C185%2C19
8%2C209%2C214%2C215%2C219%2C227%2C228%2C229%2C230%2C231%2C232%2C237%2C238%2C239%2C241%2C265%2C277%2C290&tss
=505%2C511%2C542%2C565&fired_tags=138%2C151%2C265%2C290&count=4&status=1%2C1%2C8%2C12%2C8%2C8%2C8%2C8%2C8%2C8%2
C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C1%2C8%2C1&elapsed_ms=567
https://ap.lijit.com/data/ct?tid=a_495079_05d850d5b3854fbd9d3e9a0319ac3914&zoneid=495079&cid=18&geo=CA&all_tags=125%2C130%2C133%2C13
4%2C138%2C151%2C174%2C182%2C185%2C187%2C188%2C189%2C190%2C191%2C192%2C193%2C194%2C195%2C196%2C197%2C198%2C
203%2C205%2C206%2C209%2C211%2C214%2C215%2C219%2C227%2C228%2C229%2C230%2C231%2C232%2C234%2C237%2C238%2C239%
2C241%2C248%2C265%2C272%2C277%2C284%2C290%2C309&tss=795%2C801%2C808%2C842%2C848%2C853&fired_tags=138%2C151%2C18
2%2C234%2C265%2C290&count=6&status=8%2C8%2C8%2C8%2C1%2C1%2C8%2C1%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%
2C8%2C8%2C12%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C1%2C8%2C8%2C8%2C8%2C8%2C1%2C8
%2C8%2C8%2C1%2C8&elapsed_ms=857
https://ml314.com/utsync.ashx?pub=&adv=&et=0&eid=50282&ct=js&pi=&fp=&clid=&ps=&cl=&mlt=&data=&&cp=https%3A%2F%2Fwww.girlsaskguys.com%
2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&pv=1526366700264_chue5q7sz&bl=en-us&cb=1643918&return=htt
ps%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D5031%263pid%3D%5BPersonID%5D&ht=&d=&dc=&si=1526366700264_chue5q7sz&cid=&s=1367x858
&rp=
https://stats.aws.rubiconproject.com/stats/video/bridge-loaded/js/11406/134230/861300/201
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44f
d94659c&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20VAN%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=
html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade94d85c6617767c385912&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c3
0-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&aert=392&ar=no&fo=0&ft=0&h=415&cb=0.28703
75854176075
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befor
e&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c&at=preroll&adIdx=-1&aen=Direct%20Campaigns%20-%20One%20Video%20-%20CA%20-%20Desktop%20platform%20-%20Sponsorship%20(HT
ML5%20Only)&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=578d75ebe3bb561f57aa4f0d&txid=071fbe93-1290-4df1-908a-567aa68d
9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.so
und=0&vwa=0&vwm=0&h=415&cb=0.38547756639140807
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=Direct%20Campaign
s%20-%20One%20Video%20-%20CA%20-%20Desktop%20platform%20-%20Sponsorship%20(HTML5%20Only)&pbl=true&ps=html5-vpaid&rcid=5512a3
9b09eab108e072da23&rid=578d75ebe3bb561f57aa4f0d&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5
&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://ml314.com/utsync.ashx?pub=&adv=&et=0&eid=50282&ct=js&pi=&fp=&clid=&ps=&cl=&mlt=&data=&&cp=https%3A%2F%2Fwww.girlsaskguys.com%
2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&pv=1526366700375_bn5qf19ny&bl=en-us&cb=6499515&return=htt
ps%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D5031%263pid%3D%5BPersonID%5D&ht=&d=&dc=&si=1526366700264_chue5q7sz&cid=&s=1367x858
&rp=

Analyze your site at https://gtmetrix.com Page 55 of 85


YSlow Recommendations

https://vap4sfo1.lijit.com/addelivery/impression?bannerid=186041&campaignid=232&cb=72283421&tid=a_495077_3a235fdd3eae494c8bb23d4201e0292
1&zoneid=495077&cids=232&bids=186041&tss=0
https://vap4sfo1.lijit.com/data/fp?tid=a_495077_3a235fdd3eae494c8bb23d4201e02921&zoneid=495077&starttime=1526366697693&adcfg=1&adcfg_resp
onse=486&addelivery=488&addelivery_response=1201&lgfired=2726&container=2737&EOL=2738&ctstart=1861&elapsed_ms=2738
https://ml314.com/utsync.ashx?pub=&adv=&et=0&eid=50282&ct=js&pi=&fp=&clid=&ps=&cl=&mlt=&data=&&cp=https%3A%2F%2Fwww.girlsaskguys.com%
2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&pv=1526366700533_4tgjwydbq&bl=en-us&cb=3509414&return=htt
ps%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D5031%263pid%3D%5BPersonID%5D&ht=&d=&dc=&si=1526366700264_chue5q7sz&cid=&s=1367x858
&rp=
https://vap4sfo1.lijit.com/addelivery/impression?bannerid=186043&campaignid=232&cb=59149823&tid=a_495079_05d850d5b3854fbd9d3e9a0319ac391
4&zoneid=495079&cids=232&bids=186043&tss=1
https://vap4sfo1.lijit.com/data/fp?tid=a_495079_05d850d5b3854fbd9d3e9a0319ac3914&zoneid=495079&starttime=1526366697643&adcfg=8&adcfg_resp
onse=462&addelivery=470&addelivery_response=1228&lgfired=2901&container=2906&EOL=2906&ctstart=1749&elapsed_ms=2906
https://ic.tynt.com/b/p?id=s!sovrn&lm=0&ts=1526366700646&dn=IDS&iso=0&img=https%3A%2F%2Fcf.girlsaskguys.com%2Fq2198181%2Fprimary-share.
png%3F88&ct=Do%20you%20know%20what%20BitCoin%20is%3F%20Have%20you%20ever%20used%20BitCoin%20before%3F&t=Do%20you%20kno
w%20what%20BitCoin%20is%3F%20Have%20you%20ever%20used%20BitCoin%20before%3F%20-%20GirlsAskGuys&cu=https%3A%2F%2Fwww.girlsa
skguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
https://pd.sharethis.com/pd/sovrn?_t_=px&url=&partner=sovrn&rnd=0.1696871479686306&exptid=ZGAQNVr6gewAAAATT50UAw%3D%3D&fcmp=false
https://ce.lijit.com/merge?pid=5031&3pid=5978151422914825543
https://ce.lijit.com/merge?pid=5001&3pid=ce6218ad76692cd9ac9db8c2fb46ad71
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44f
d94659c&at=preroll&adIdx=-1&aen=Direct%20Campaigns%20-%20One%20Video%20-%20CA%20-%20Desktop%20platform%20-%20Sponsorship%20(
HTML5%20Only)&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=578d75ebe3bb561f57aa4f0d&txid=071fbe93-1290-4df1-908a-567aa
68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&aert=357&ar=no&f
o=0&ft=0&h=415&cb=0.34421185620099104
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befor
e&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c&at=preroll&adIdx=-1&aen=Direct%20Campaigns%20-%20One%20Video%20-%20CA%20-%20Desktop%20platform%20-%20Standard%20(HTML5
%20Only)&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=57d18681e3bb567867a40a89&txid=071fbe93-1290-4df1-908a-567aa68d94
89&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.soun
d=0&vwa=0&vwm=0&h=415&cb=0.5994579825712758
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=Direct%20Campaign
s%20-%20One%20Video%20-%20CA%20-%20Desktop%20platform%20-%20Standard%20(HTML5%20Only)&pbl=true&ps=html5-vpaid&rcid=5512a39b0
9eab108e072da23&rid=57d18681e3bb567867a40a89&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v
=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://pd.sharethis.com/pd/sovrn?_t_=px&url=&partner=sovrn&rnd=0.5313065017585734&exptid=ZGAQNVr6gewAAAATT50UAw%3D%3D&fcmp=false
https://pd.sharethis.com/pd/sovrn?_t_=px&url=&partner=sovrn&rnd=0.6513199631197999&exptid=ZGAQNVr6gewAAAATT50UAw%3D%3D&fcmp=false
https://ps.eyeota.net/pixel/bounce/?pid=51md42u&t=ajs&uid=d679af0dac93f348389a3cb3
https://cs.lkqd.net/cs?partnerId=52&partnerUserId=WvqB5wAAAKNI-RAl
https://cs.lkqd.net/cs?partnerId=39&partnerUserId=6776932692590014083
https://sdk.amazonaws.com/js/aws-sdk-2.129.0.min.js
https://pr-bh.ybp.yahoo.com/sync/casale/WvqB59HM7SUAACpofvsAAAAtAG4AAAAB
https://cas.pxl.ace.advertising.com/cfcm.ashx?providerId=1013&extMatch=1&rcode=2
https://ml314.com/csync.ashx?fp=&person_id=5978151422914825543&eid=50082
https://cs.lkqd.net/cs?partnerId=6&partnerUserId=cuid_79c33181-580b-11e8-a609-126fa5aac54e
https://magnetic.t.domdex.com/sync/casale
https://acds.prod.vidible.tv/o2shim?companionId=&cpmPassback=&placementId=1076847&orgId=21465&injectCompanionDummy=&pauseOnClick=&d.vw
=&d.app=&r=http%3A%2F%2Fgirlsaskguys.com
https://cs.lkqd.net/cs?partnerId=51&partnerUserId=874d104f-6c6c-06b6-0bb7-3013ae407ae3
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44f
d94659c&at=preroll&adIdx=-1&aen=Direct%20Campaigns%20-%20One%20Video%20-%20CA%20-%20Desktop%20platform%20-%20Standard%20(HTM
L5%20Only)&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=57d18681e3bb567867a40a89&txid=071fbe93-1290-4df1-908a-567aa68d
9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&aert=435&ar=no&fo=0
&ft=0&h=415&cb=0.22843704304799095
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befor
e&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c&at=preroll&adIdx=-1&aen=LROS%20-%20Pub%20-%20EGAMI%7CAll%20Domains%20-%20ALL%20Geos%20-%20HTML5%20only&pbl=true&ps=
html5-vpaid&rcid=57d325e276a6057ba4a05a00&rid=5a6b7faa55935e30ecd569fb&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-
43bd-a0e3-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=41
5&cb=0.3801016913584727
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=LROS%20-%20Pub
%20-%20EGAMI%7CAll%20Domains%20-%20ALL%20Geos%20-%20HTML5%20only&pbl=true&ps=html5-vpaid&rcid=57d325e276a6057ba4a05a00&rid
=5a6b7faa55935e30ecd569fb&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=56a11164e4b05fb5460

Analyze your site at https://gtmetrix.com Page 56 of 85


YSlow Recommendations

fcca3&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=1&r=
https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=2&r=
https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=3&r=
https://dsum-sec.casalemedia.com/rum?cm_dsp_id=88&external_user_id=WvqB5wAAAKNI-RAl
https://pr-bh.ybp.yahoo.com/sync/openx/30023df0-56f5-ae26-6b86-51a32afb9f1d
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=39&external_user_id=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&expiration=1528958701
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=45&external_user_id=CAESELY7hq0HnuFuuG5LvaOmLB4&google_cver=1
https://cs.lkqd.net/cs?partnerId=53&partnerUserId=kao5L06XcZwo&ev=1&pid=561322
https://pr-bh.ybp.yahoo.com/sync/openx/63df8c12-2318-aa30-6f30-26016aa8c9fe
https://cs.lkqd.net/cs?partnerId=57&partnerUserId=kao5L06XcZwo&ev=1&pid=561322
https://us-u.openx.net/w/1.0/sd?id=537148856&val=WvqB5wAAAKNI-RAl
https://connexity.net/c/cse?a=R&A=29a&C=0&D=64b3&N=0-2017720130331164&R=1367x858c24&T=2f&U=e9fb6b9fabdec90c-06ca74a9b3142732-21f5a
6f4e85b2de4&J=https%253a%252f%252fwww.girlsaskguys.com%252fother%252fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befo
re&Q=v2.0.1,h5rR:n,c:n,h5:n,swf:BL,new,TS:(run:2ms),(f_newUID:62ms),(Burl-R:63ms)
https://connexity.net/c/cse?a=L&A=29a&C=0&D=64b3&N=0-2017720130331164&R=1367x858c24&T=2f&P=t&U=e9fb6b9fabdec90c-06ca74a9b3142732-2
1f5a6f4e85b2de4&Q=v2.0.1,h5rR:n,c:n,h5:n,swf:BL,new,h5w:y,swf-w:BL,h5rS:5,TS:(run:2ms),(f_newUID:62ms),(Burl-R:63ms),(rf:63ms),(wrap:64ms),(H5ls
oS-5:64ms),(Burl-L:64ms)
https://us-u.openx.net/w/1.0/sd?id=537072991&val=CAESEPrKIaaLGvXSGLayIbcDCp0&google_cver=1
https://connexity.net/c/cse?a=R&A=29a&C=0&D=64b3&N=0-201772015833193c&R=1367x858c24&T=2f&U=e9fb6b9fabdec90c-06ca74a9b3142732-21f5a
6f4e85b2de4&J=https%253a%252f%252fwww.girlsaskguys.com%252fother%252fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befo
re&Q=v2.0.1,h5rR:4,c:n,h5L:y,TS:(run:2ms),(Burl-R:4ms)
https://us-u.openx.net/w/1.0/sd?id=537072971&val=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&ttd_puid=f718ea56-b3b4-3879-5ee7-30f495ff04b7
https://ps.eyeota.net/match?uid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&bid=1e2n4ou
https://ps.eyeota.net/match?bid=gdo9o51&newuser=1&google_gid=CAESECJsw9XNJr_-GHPNkSqtjo0&google_cver=1
https://connexity.net/c/cse?a=R&A=29a&C=0&D=64b3&N=0-2017720180330c20&R=1367x858c24&T=2f&U=e9fb6b9fabdec90c-06ca74a9b3142732-21f5a
6f4e85b2de4&J=https%253a%252f%252fwww.girlsaskguys.com%252fother%252fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befo
re&Q=v2.0.1,h5rR:3,c:n,h5L:y,TS:(run:1ms),(Burl-R:3ms)
https://ps.eyeota.net/match?bid=r8hrb20&uid=nil
https://pixel.rubiconproject.com/tap.php?v=191940&nid=3778&put=WvqB5wAAAKNI-RAl
https://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&expires=30
https://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEACCJ3epJEPCMQSyLgDpJWw&google_cver=1
https://cs.lkqd.net/cs?partnerId=36&partnerUserId=8c0580ce0ae2528e0982e95b4c73cebe
https://cs.lkqd.net/cs?partnerId=42&partnerUserId=98512229c20e55aaf59f8afe58e430a4&sticky=true
https://us-u.openx.net/w/1.0/sd?id=537072971&val=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&ttd_puid=a4c55bb4-c659-3c6f-5a51-4756d5ac5254
https://cs.lkqd.net/cs?partnerId=4&partnerUserId=799e6b71-580b-11e8-98f9-0a580a4c010a
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=40&external_user_id=174c5830-8905-4d06-9b00-103e88704f9c&expiration=1534315418
https://cs.lkqd.net/cs?partnerId=60&partnerUserId=3609532715836771276
https://cs.lkqd.net/cs?partnerId=46&partnerUserId=17127dda-32bb-42f2-9997-46aef92d6737
https://tt3.zedo.com/log/p.gif?6=28060;a=2843105;n=826;c=826008396;s=1553;zpn=3787;zpc=3787000001;zps=1;zpd=85;x=21760;g=27;m=68;w=2;1=8;os
=8;2=1;z=0.645613608747025;dct=2067;dmf=;dvm=;dsr=;djs=2063;dhs=2065;osn=Linux;osv=Unknown;brn=Chrome;brv=62;dsp=;tuuid=;pu=https%3A%2F
%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;erc=901;u=PrdopzX3RtmiAcKBfvB
F9g**~051518;zet=;et=4436;met=[MET];mt=[MT];dmp=[DSAMP];tt=13;eid=30;ren=5;did=;ai=%7C%7C%7C%7C%7C;&5032601917
https://cs.lkqd.net/cs?partnerId=42&partnerUserId=98512229c20e55aaf59f8afe58e430a4
https://ml314.com/csync.ashx?fp=KPJBvSe999eQ64oS&person_id=5978151422914825543&eid=50056
https://stags.bluekai.com/site/4448?id=30c15afa-5048-4600-a17d-e2a85c24ab94
https://stags.bluekai.com/site/3085?id=
https://cs.lkqd.net/cs?partnerId=63&partnerUserId=68B5ECA6-1E22-44CD-9CA1-84863B95FD63
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=3&external_user_id=30c15afa-5048-4600-a17d-e2a85c24ab94
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=57&external_user_id=2810316537904023968
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=46&external_user_id=3609532715836771276
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=4&external_user_id=8643648681422002544
https://dsum-sec.casalemedia.com/rum?cm_dsp_id=81&external_user_id=aMufeGWbnChwyMwqOJnUe23IwHpwncx6O5vniGHg
https://pubads.g.doubleclick.net/pagead/conversion/?ai=BbfDZ7YH6WpWPPNiKtOUPgJeiiAnq3KiXRQAAABABIN2w3VY4AFicroz3ggRg_ej6gMwDsgEUd3d3
LmdpcmxzYXNrZ3V5cy5jb226AQs2NDB4NDgwX3htbMgBBdoBaWh0dHBzOi8vd3d3LmdpcmxzYXNrZ3V5cy5jb20vb3RoZXIvcTIxOTgxODEtZG8teW91LWtub3
ctd2hhdC1iaXRjb2luLWlzLWhhdmUteW91LWV2ZXItdXNlZC1iaXRjb2luLWJlZm9yZcACAuACAOoCGi8yMTY2MTY4OTc0MS9lZ2FtaS5nZW5lcmlj-AKF0h6AAw
GQA6wCmAPgA6gDAeAEAdIFBhCz89qIEZAGAaAGJNgHAOAHC9IIBwiAYRABGAE&sigh=N1-zyEeIzso&label=videoplayfailed303&sdkv=h.3.208.0
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=105&external_user_id=0
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=47&external_user_id=BaYDFrpd1FitHM5
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44f
d94659c&at=preroll&adIdx=-1&aen=LROS%20-%20Pub%20-%20EGAMI%7CAll%20Domains%20-%20ALL%20Geos%20-%20HTML5%20only&pbl=true&p
s=html5-vpaid&rcid=57d325e276a6057ba4a05a00&rid=5a6b7faa55935e30ecd569fb&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c
30-43bd-a0e3-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ae86ee178e0f507d163254d&w=737&aert=1335&ar=no&fo=0&ft=0&h=415&cb=0.1598
171323202482
https://trk.vidible.tv/trk/ad-issue.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv
=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&s=true&
sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&at=
preroll&adIdx=-1&aen=LROS%20-%20Pub%20-%20EGAMI%7CAll%20Domains%20-%20ALL%20Geos%20-%20HTML5%20only&pbl=true&ps=html5-vpai
d&rcid=57d325e276a6057ba4a05a00&rid=5a6b7faa55935e30ecd569fb&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e
3-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ae86ee178e0f507d163254d&curl=https%3A%2F%2Fpubads.g.doubleclick.net%2Fgampad%2Fads

Analyze your site at https://gtmetrix.com Page 57 of 85


YSlow Recommendations

%3Fsz%3D640x480%26iu%3D%2F21661689741%2Fegami.generic%26cust_params%3Dpid%253d5952b3519e45102b384dc50e%26impl%3Ds%26gdf
p_req%3D1%26env%3Dvp%26output%3Dxml_vast3%26unviewed_position_start%3D1%26url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252
Fother%252Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before%26description_url%3Dhttps%253A%252F%252Fwww.girlsaskguy
s.com%252Fother%252Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before%26correlator%3D1526366702493&stg=loaded&crl=IM
A&dt=Failed%20to%20initialize%20GoogleIMA3%20adManager.%20No%20Ads%20VAST%20response%20after%20one%20or%20more%20Wrappers&et
=901&st=9571&cb=0.9739610748952432
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=90&external_user_id=23423CA9EE81FA5A3AC1C23D02B58862
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=62&external_user_id=EQ880015263666970006
https://trk.vidible.tv/trk/slot-opp.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv
=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&s=true&
sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&at=
preroll&adIdx=-1&ps=html5-vpaid&vid=5ae86ee178e0f507d163254d&w=737&slot=AVAIL&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&cb=0.5141550586
979491
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeScore=0.
29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.version=0.2
.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&action=LoadModule&vid=5ae86ee178e0f507d163254d&seq=1&c1=HLSModule&cb=0.7279037060
541949
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=131&external_user_id=18072662445631213750
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=65&expiration=1526453102&external_user_id=AAADRyqqDGcPbwNht4zjAAAAAAA&cm_user_id=Wv
qB59HM7SUAACpofvsAAAAt
https://dsum-sec.casalemedia.com/rum?cm_dsp_id=64&external_user_id=52af87df-3f8d-4bcd-bc21-1d826dc889c2&expiration=1528958702
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=130&external_user_id=AAO9FE619QQAAHnNWdD9Bw&expiration=1527576302
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=41&external_user_id=7e912f3c-580b-11e8-9746-b5eb1b0375cb
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=107&external_user_id=AB-l3YmnQ7ovql0kefr5sqG8w&expiration=
https://us-u.openx.net/w/1.0/sd?id=536872786&val=30c15afa-5048-4600-a17d-e2a85c24ab94
https://us-u.openx.net/w/1.0/sd?id=537073061&val=8643648681422002544
https://ps.eyeota.net/match?bid=7vi0rg0&uid=30c15afa-5048-4600-a17d-e2a85c24ab94
https://ps.eyeota.net/match?bid=1mpjpn0&turn_id=8643648681422002544&newuser=1
https://pixel.rubiconproject.com/tap.php?v=4210&nid=1523&put=BaYDFrpd1FitHM5&expires=30
https://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=30c15afa-5048-4600-a17d-e2a85c24ab94
https://cm.g.doubleclick.net/pixel?google_nid=rp&google_hm=Skg3QkJIRUotMUUtRDVaMA==
https://pd.sharethis.com/pd/33across
https://live.rezync.com/sync/?c=4656c20ee35215f78e9273796625d90b&p=cab5a4722e64fa65aba8e60b6da5d556&pid=CmUMKVr6gewN0gShBgJGAg%3
D%3D&33random=1526366702823
https://i.simpli.fi/dpx?cid=11411&33random=1526366702825
https://tags.bluekai.com/site/4413?id=WvqB5wAAAKNI-RAl&r=123
https://trk.vidible.tv/qoe/buffer-start.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=9882&vid=5ae86ee178e0f507d163254d&ct=video&url=https%3A%2F%2Fhlsrv.vidible.tv%
2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&cb=0.27063345417181317
https://pixel.rubiconproject.com/tap.php?v=31950&nid=2974&put=4959924899106907430
https://us-u.openx.net/w/1.0/sd?id=537072977&val=52af87df-3f8d-4bcd-bc21-1d826dc889c2
https://us-u.openx.net/w/1.0/sd?id=537072966&val=23423CA9EE81FA5A3AC1C23D02B58862
https://us-u.openx.net/w/1.0/sd?id=537073062&val=2810316537904023968
https://us-u.openx.net/w/1.0/sd?id=537073142&val=RUID6w6kibueiyh4z1ib7j4tn5y8xdy4hy5st9yu4rqsmge35y815b8o====
https://aax-eu.amazon-adsystem.com/s/ecm3?id=JH7BBHEJ-1E-D5Z0&ex=d-rubiconproject.com&status=ok
https://pixel.rubiconproject.com/tap.php?v=7430&nid=2238&put=52af87df-3f8d-4bcd-bc21-1d826dc889c2&expires=360
https://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=8643648681422002544&expires=60
https://loadm.exelator.com/load/?p=204&g=260&buid=ce6218ad76692cd9ac9db8c2fb46ad71
https://pixel.rubiconproject.com/tap.php?v=6286&nid=2132&put=23423CA9EE81FA5A3AC1C23D02B58862&expires=365
https://rtb.openx.net/sync/dds?ox_sc=1&ox_init=1
https://pixel.rubiconproject.com/tap.php?v=7249%7c%7c11203%7c%7c372838&nid=2146,2309,4884&put=RUIDk6wa977yx65aftej7ocm9ab7qrgijst4b5wjo
uxwoxxxbsnqrnoy====&expires=30
https://pixel.rubiconproject.com/tap.php?v=13490&nid=2596&put=2810316537904023968&expires=30
https://cdn.playwire.com/bolt/js/zeus/themes/orion/skins/orion-ca0ae891d2.css
https://idsync.rlcdn.com/378338.gif?
https://stags.bluekai.com/site/13583?id=799e6b71-580b-11e8-98f9-0a580a4c010a
https://idsync.rlcdn.com/47154.gif?served_by=evergreen&partner_uid=30c15afa-5048-4600-a17d-e2a85c24ab94
https://pixel.rubiconproject.com/tap.php?v=14321&nid=2313&put=R1B341_A4A958B8_1A952113E&expires=60
https://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=7f4e42e9-580b-11e8-9bea-49295cf7232e&expires=30
https://pd.sharethis.com/pd/33across?_t_=px&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you
-ever-used-bitcoin-before&partner=33across&rnd=0.10131196410739207&exptid=ZGAQNVr6gewAAAATT50UAw%3D%3D&fcmp=false
https://tags.bluekai.com/site/2964?id=BaYDFrpd1FitHM5
https://stags.bluekai.com/site/16365?id=FSZRqxh2UvsNJQL5RXQaqBAlDqkNcAKpRnajlu7n
https://tags.bluekai.com/site/4722?id=2810316537904023968
https://tags.bluekai.com/site/15525?id=9c7384d0a41940a88f2dcbdc
https://tags.bluekai.com/site/4499?id=8643648681422002544&BK_SWAP_DEST=4499&r=1
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/appearance_manager-1137985e12.js?noext

Analyze your site at https://gtmetrix.com Page 58 of 85


YSlow Recommendations

https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/preroll_screen-de6bb182df.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/titlebar-3af6709de6.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/volume-a2adcb71e7.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/controlbar-bb56ce11ba.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/scrubber-6af035d6af.js?noext
https://bk.addthis.com/site/55122?bku=oo999mSOIkod9A6o
https://stags.bluekai.com/site/26357?&id=L99uBc_G
https://ss3.zedo.com/gecko/tag/networkIds.js?3619072320
https://tags.bluekai.com/site/43696?&id=1840-5c-2949828-6
https://cdn.playwire.com/bolt/js/zeus/themes/orion/libs/shifty-4b401bda95.js
https://trk.vidible.tv/qoe/ray-load.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe
4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is
-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeScore
=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.version=
0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=10952&vid=5ae86ee178e0f507d163254d&ct=video&url=https%3A%2F%2Fhlsrv.vidible.tv%2F
prod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&lvl=2&cb=0.13253994301272587
https://z.moatads.com/aolvidiblecontent859375382/moatvideo.js
https://trk.vidible.tv/trk/video-play.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174f
e4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-i
s-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeScor
e=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.version
=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&w=737&h=415&csid=58172559cc52c73a8537bbbf&bit=982.2822265625&vid=5ae86ee178e0f5
07d163254d&vpt=auto&seq=1&cvt=0&fs=0&vcdn=hlsrv.vidible.tv&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&cb=0.08939828141862538
https://trk.vidible.tv/trk/context-started.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f
174fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitc
oin-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.size
Score=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.ver
sion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&bit=982.2822265625&vid=5ae86ee178e0f507d163254d&vpt=auto&seq=1&cvt=0&fs=0&vcd
n=hlsrv.vidible.tv&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&cb=0.6837774935918051
https://trk.vidible.tv/qoe/start.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeScore=0.
29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.version=0.2
.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=10973&vid=5ae86ee178e0f507d163254d&ct=video&url=https%3A%2F%2Fhlsrv.vidible.tv%2Fpro
d%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&cb=0.10163158438072895
https://sb.scorecardresearch.com/p?c1=2&c2=6473742&ca2=6035258&ns_type=hidden&ns_st_sv=5.1.1.160316&ns_st_smv=5.1&ns_st_it=r&ns_st_id=1
526366693611&ns_st_ec=1&ns_st_sp=1&ns_st_sc=1&ns_st_sq=1&ns_st_ppc=1&ns_st_apc=1&ns_st_spc=1&ns_st_cn=1&ns_st_ev=play&ns_st_po=0
&ns_st_cl=32704&ns_st_pb=1&ns_st_mp=js_api&ns_st_mv=5.1.1.160316&ns_st_pn=1&ns_st_tp=0&ns_st_ci=5ae86ee178e0f507d163254d&ns_st_pt=
0&ns_st_dpt=0&ns_st_ipt=0&ns_st_et=0&ns_st_det=0&ns_st_upc=0&ns_st_dupc=0&ns_st_iupc=0&ns_st_upa=0&ns_st_dupa=0&ns_st_iupa=0&ns_st
_lpc=0&ns_st_dlpc=0&ns_st_lpa=0&ns_st_dlpa=0&ns_st_pa=0&ns_ts=1526366704580&ns_st_bc=0&ns_st_dbc=0&ns_st_bt=0&ns_st_dbt=0&ns_st_bp
=0&ns_st_lt=10965&ns_st_skc=0&ns_st_dskc=0&ns_st_ska=0&ns_st_dska=0&ns_st_skd=0&ns_st_skt=0&ns_st_dskt=0&ns_st_pc=0&ns_st_dpc=0&n
s_st_pp=0&ns_st_br=0&ns_st_ub=0&ns_st_ki=1200000&ns_st_pr=Cosmopolitan&ns_st_sn=*null&ns_st_en=*null&ns_st_ep=Go%20Behind%20The%2
0Scenes%20of%20Kesha%E2%80%99s%20June%20Cosmo%20Cover%20Shoot&ns_st_ct=vc11&ns_st_ge=*null&ns_st_st=*null&ns_st_ce=1&ns_st_i
a=0&ns_st_ddt=*null&ns_st_tdt=*null&ns_st_pu=Hearst%20Magazine&ns_st_ti=*null&c3=Unknown_Category_ID&ca3=AOL&c4=www.girlsaskguys.com&
ca4=Women&c6=*null&ca6=COSMOPOLITAN&c7=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-yo
u-ever-used-bitcoin-before&c8=&c9=
https://trk.vidible.tv/qoe/buffer-end.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=11007&vid=5ae86ee178e0f507d163254d&t=261&ct=video&url=https%3A%2F%2Fhlsrv.vi
dible.tv%2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&bt=1125&cb=0.15211615483770147
https://fonts.googleapis.com/css?family=Fira+Sans
https://trk.vidible.tv/qoe/buffer-start.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=11468&vid=5ae86ee178e0f507d163254d&t=2916&ct=video&url=https%3A%2F%2Fhlsrv.v
idible.tv%2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&cb=0.3384837166601711
https://trk.vidible.tv/qoe/buffer-end.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=11483&vid=5ae86ee178e0f507d163254d&t=2916&ct=video&url=https%3A%2F%2Fhlsrv.v
idible.tv%2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&bt=3&cb=0.9495167569234719
https://trk.vidible.tv/qoe/buffer-start.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=11485&vid=5ae86ee178e0f507d163254d&t=2916&ct=video&url=https%3A%2F%2Fhlsrv.v
idible.tv%2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&cb=0.8901933196746035
https://px.moatads.com/pixel.gif?e=17&i=AOLVIDIBLE_VIDEOJS_CONTENT1&hp=1&kq=1&hq=0&hs=0&hu=0&hr=0&ht=1&bq=8&f=0&tw=null&j=&o=3&t=15

Analyze your site at https://gtmetrix.com Page 59 of 85


YSlow Recommendations

26366705167&de=273333087614&m=0&ar=4c90a2e-clean&q=2&cb=0&cu=1526366705167&ll=3&lm=0&ln=0&r=0&em=0&en=0&d=57d325e276a6057b
a4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&qs=1&bo=girlsaskguys.com&bd=girlsaskguys.com&zMoatOrigSlicer1=C9D9C0
D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&zMoatOrigSlicer2=N%2FA&gw=aolvidiblecontent859375382&fd=1&ac=1&it=500&fs=143783&na=1217334369&cs=
0
https://trk.vidible.tv/moat/moat-tracker.gif?e=l&m=1&pt=77&iv=0&tuv=-1&ivt=0&cvt=0&fvt=0&cfvt=0&vol=0&at=0&cat=0&gmv=0&gmt=0&cgmt=0&apd=77&dh=
33000&hov=0&th=0&d=girlsaskguys.com&w=737&h=414&sp=0&L1id=57d325e276a6057ba4a05a00&L2id=-&L3id=-&L4id=5952b3519e45102b384dc50e
&L5id=5ae86ee178e0f507d163254d&S1id=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&S2id=-&S3id=-&S4id=-&pc=aolvidiblecontent859375382&ord=
1526366705167&r=273333087614
https://trk.vidible.tv/moat/moat-tracker.gif?e=m&m=1&pt=77&iv=0&tuv=-1&ivt=0&cvt=0&fvt=0&cfvt=0&vol=0&at=0&cat=0&gmv=0&gmt=0&cgmt=0&apd=77&dh
=33000&hov=0&th=0&d=girlsaskguys.com&w=737&h=414&sp=0&L1id=57d325e276a6057ba4a05a00&L2id=-&L3id=-&L4id=5952b3519e45102b384dc50
e&L5id=5ae86ee178e0f507d163254d&S1id=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&S2id=-&S3id=-&S4id=-&pc=aolvidiblecontent859375382&ord
=1526366705167&r=273333087614
https://adservice.google.com/adsid/integrator.js?domain=cdn.playwire.com
https://trk.vidible.tv/trk/video-decile.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&d=1&bft=1619&bit=2329.4150390625&vid=5ae86ee178e0f507d163254d&vpt=auto&seq=1&
cvt=3&fs=0&vcdn=hlsrv.vidible.tv&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&cb=0.023272496218178507
https://trk.vidible.tv/qoe/buffer-end.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=12005&vid=5ae86ee178e0f507d163254d&t=3327&ct=video&url=https%3A%2F%2Fhlsrv.v
idible.tv%2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&bt=520&cb=0.0014431486156583073
https://trk.vidible.tv/qoe/buffer-start.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=12008&vid=5ae86ee178e0f507d163254d&t=3327&ct=video&url=https%3A%2F%2Fhlsrv.v
idible.tv%2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&cb=0.49613529045065796
https://px.moatads.com/pixel.gif?e=0&q=0&hp=1&kq=1&lo=0&qs=1&ak=https%3A%2F%2Fwww.girlsaskguys.com%2F%2Fother%2F-&i=AOLVIDIBLE_VIDE
OJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%
25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3Deu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U
%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbB
BBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBH
CZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFeBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCK
qeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=8&g=0&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366705167&de=2
73333087614&cu=1526366705167&m=260&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=8
58&qi=1367&qj=858&qf=1366&qe=768&qh=1366&qg=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&pg=0&pf=
0&ib=1&cc=0&bw=0&bx=0&aa=0&ad=0&cn=0&gk=0&gl=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=0&su=1&of=1&oz=1&bu=77&cd=0&ah=77&am=0&dq=
77&dr=0&ds=77&dt=0&zx=0&fc=1&vm=0&vl=0&vt=0&vd=0&zMoatSRE=0&zMoatVSD=0&hc=0&er=0&es=0&gs=0&gt=0&eu=0&ev=0&et=1&dp=0&dz=1&eb=1
&fk=1&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd
=girlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrigSlicer1=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&zMoatOrigSlicer2=N%2FA&ab=3&
ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=2015440955&cs=0
https://px.moatads.com/pixel.gif?e=29&q=0&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=8&g=1&hq
=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366705167&de=273333087614&cu=1526366705167&m=267&ar=4c9
0a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=768&qh=1366&q
g=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&aa=0&ad=0&cn=0&gk=0
M ake&gl=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=0&su=1&of=1&oz=1&bu=77&cd=77&ah=77&am=77&dq=77&dr=77&ds=77&dt=77&zx=0&fc=1&vm=0&vl=0&
fewer HTTP requests F (0) AVG SCORE: 32% CONTENT HIGH
vt=0&vd=0&zMoatSRE=0&zMoatVSD=0&hc=0&er=0&es=0&gs=0&gt=0&eu=0&ev=0&et=1&dp=0&dz=1&du=169&eb=1&ec=19283&fk=1&ef=0&rf=0&re=0&cl
=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&
This gw=aolvidiblecontent859375382&zMoatOrigSlicer1=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&
page has 141 external Javascript scripts. Try combining them into one.
it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=98514933&cs=0
This page has 9 external stylesheets. Try combining them into one.

Compress components with gzip F (0) AVG SCORE: 85% SERVER HIGH

There are 17 plain text components that should be sent compressed

https://js.agkn.com/prod/v0/tag.js
https://brand-ad-innovations.s3.amazonaws.com/intention-score/bai-intention-score.js
https://loadus.exelator.com/load/?p=233&g=001&j=d&xl8blockcheck=1
https://loadus.exelator.com/load//net.php?n=PGltZyB3aWR0aD0iMSIgYWx0PSJFeGVsYXRlRGF0YSIgc3R5bGU9ImRpc3BsYXk6bm9uZSIgc3JjPSJodHRwcz

Analyze your site at https://gtmetrix.com Page 60 of 85


YSlow Recommendations

ovL21hdGNoLmFkc3J2ci5vcmcvdHJhY2svY21mL2dlbmVyaWM%2FdHRkX3BpZD1leGVsYXRlIiBoZWlnaHQ9IjEiPjwvaW1nPjxpbWcgd2lkdGg9IjEiIGFsdD0i
RXhlbGF0ZURhdGEiIHN0eWxlPSJkaXNwbGF5Om5vbmUiIHNyYz0iaHR0cHM6Ly9jbS5nLmRvdWJsZWNsaWNrLm5ldC9waXhlbD9nb29nbGVfbmlkPWV4Z
WxhdGUmZ29vZ2xlX2NtJmdvb2dsZV9zYyIgaGVpZ2h0PSIxIj48L2ltZz48aW1nIHdpZHRoPSIxIiBhbHQ9IkV4ZWxhdGVEYXRhIiBzdHlsZT0iZGlzcGxheTpub25lIi
BzcmM9Imh0dHBzOi8vYWEuYWdrbi5jb20vYWRzY29yZXMvZy5waXhlbD9zaWQ9OTIxMTU3ODYwOCZfZz05MDYmZXg9MTI2NjU5Zjk5NjI4YTM3MWQ5YmIyNT
JiMTZjNTEyY2MiIGhlaWdodD0iMSI%2BPC9pbWc%2BaHR0cHM6Ly9zeW5jLmFscGhvbnNvLnR2L3N5bmM%2Fc3JjaWQ9MjAwJnB1aWQ9MTI2NjU5Zjk5NjI
4YTM3MWQ5YmIyNTJiMTZjNTEyY2M%3D&h=f35e0f9d392e13f4eafa9658f9744470
https://tags.bkrtx.com/js/bk-coretag.js
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437746%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd94659c;cfp
=1;rndc=1526366695;loc=100;target=_blank;misc=abbd5211&_ADTIME_&$RANDOM&&;rdclick=
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd94659c;cfp
=1;rndc=1526366695;loc=100;target=_blank;misc=%7Brandom%7D&_ADTIME_&$RANDOM&&;rdclick=
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd94659c;cfp
=1;rndc=1526366695;loc=100;target=_blank;misc=a6bb5ad6&_ADTIME_&$RANDOM&&;rdclick=
https://pd.sharethis.com/pd/sovrn
https://ssum-sec.casalemedia.com/usermatch?s=175407&cb=https%3A%2F%2Fpixel.advertising.com%2Fups%2F55940%2Fsync%3F_origin%3D0%26ui
d%3D
https://ssum-sec.casalemedia.com/usermatch?s=175407&cb=https%3A%2F%2Fpixel.advertising.com%2Fups%2F55940%2Fsync%3F_origin%3D0%26ui
d%3D
https://ssum-sec.casalemedia.com/usermatch?s=175407&cb=https%3A%2F%2Fpixel.advertising.com%2Fups%2F55940%2Fsync%3F_origin%3D0%26ui
d%3D
https://ps.eyeota.net/pixel/bounce/?pid=51md42u&t=ajs&uid=d679af0dac93f348389a3cb3
https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=1&r=
https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=2&r=
https://pd.sharethis.com/pd/33across
https://stags.bluekai.com/site/27519?id=CmUMKVr6gewN0gShBgJGAg%3D%3D&ret=html&random=1526366702823

Use a Content Delivery Network (CDN) F (0) AVG SCORE: 21% SERVER MEDIUM

Using a CDN YSlow doesn't recognize? Specify your CDNs in your User Settings.

There are 226 static components that are not on CDN.

https://www.girlsaskguys.com/brand-styles?v=1613
https://delivery.vidible.tv/jsonp/pid=5952b3519e45102b384dc50e/57d325e276a6057ba4a05a00.js
https://jadserve.postrelease.com/t?ntv_url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-u
sed-bitcoin-before
https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/vidible-min.js?embedtag=1
https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/html5/player-hls-latest-min.js
https://trk.vidible.tv/trk/impression.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&s=true&pv=17.21.1374&ifr=false&pt=html5&
sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ev
er-used-bitcoin-before&cb=0.5564340100227898
https://trk.vidible.tv/trk/js-loaded.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&s=true&ifr=false&pt=html5&sid=6f174fe4-a511
-4a61-9f63-14c0f1d3457f&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&cb=0.5564340100227898
https://jadserve.postrelease.com/trk.gif?ntv_ui=a7b1090e-8006-4718-a0de-728c666156e6&ntv_ht=34H6WgA&ntv_hu=1580869101&ntv_at=303,302&ntv_a
=AAAAAAAAAAGVoDA&ord=1526366687475&ntv_dpl=1008,1011,1001,1003,1021,1006,1022,1007
https://trk.vidible.tv/trk/js-started.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&s=true&ifr=false&pt=html5&sid=6f174fe4-a511
-4a61-9f63-14c0f1d3457f&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&cb=0.5564340100227898
https://trk.vidible.tv/trk/minjs-loaded.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a511-4a61-9f63-14c0f1d345
7f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-be
fore&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&cb=0.5934671564892016
https://gag.gagwebapi.com/api/webpush/script?token=&client=ChromeDesktop
https://api.content-ad.net/Scripts/widget2.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403809&cb=152
6366688214
https://route.carambo.la/inimage/getlayer?pid=grls32&did=110431&wid=0
https://api.content-ad.net/Scripts/widget2.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403806&cb=1526
366688264
https://brand-ad-innovations.s3.amazonaws.com/intention-score/bai-intention-score.js
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadExtra&c1=activitysensor&cb=0.46312962166
32419
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadExtra&c1=nielsen_ocr&cb=0.635824344659
5222
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha

Analyze your site at https://gtmetrix.com Page 61 of 85


YSlow Recommendations

ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadExtra&c1=intentionscore&cb=0.60250491762
31729
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadExtra&c1=nielsen_dcr&cb=0.805963029223
0591
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadExtra&c1=moat&cb=0.05682252162263013
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadExtra&c1=atp&cb=0.07050286488624335
https://trk.vidible.tv/trk/abInfo.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&ab=0&cb=0.5540462171781178
https://trends.revcontent.com/serve.js.php?w=95566&t=rc_845&c=1526366686700&width=1366&referer=https%3A%2F%2Fwww.girlsaskguys.com%2Foth
er%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
https://api.content-ad.net/GetWidget.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403809&cb=1526366688214
&lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have
-you-ever-used-bitcoin-before&ik=2018051423_1869389dcee2038fe3db57c92dea4bf2&ikb=1869389dcee2038fe3db57c92dea4bf2&duid=62f783a306061
9beb771c6b446f4a3ad3ab622696a1d0a6db5c4de3ff9603624&ls=ip-172-18-62-183&dstlload=true
https://api.content-ad.net/GetWidget.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403806&cb=1526366688264&
lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-y
ou-ever-used-bitcoin-before&ik=2018051423_3fad3bdde3fd1e0f97fa276662009b15&ikb=3fad3bdde3fd1e0f97fa276662009b15&duid=62f783a3060619be
b771c6b446f4a3ad3ab622696a1d0a6db5c4de3ff9603624&ls=ip-172-18-62-183&dstlload=true
https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/coverings/skin6.js?cb=17.21.1374
https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/skins/skin6.js?cb=17.21.1374
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadSkin&c1=skin6&cb=0.05582025440739913
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=LoadExtra&c1=comscorestreamsense&cb=0.568
510008787596
https://cm.revcontent.com/pixel_sync?exchange_uid=MTQxMTk3ZDc5MzJhNmZiYmY5MDQxN2MzN2Q2NDZjMDg%3D&bidder=112&bidder_uid=76e95d90-
580b-11e8-b85a-0242ac110003
https://cm.revcontent.com/pixel_sync?bidder=109&bidder_uid=d5180cdd-1a3d-4799-a65b-def1efef7f14&exchange_uid=MTQxMTk3ZDc5MzJhNmZiYmY5M
DQxN2MzN2Q2NDZjMDg=
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=ResourceLoaded&c1=ResourceLoaded&c2=https
%3A%2F%2Fcdn-ssl.vidible.tv%2Fprod%2Fplayer%2Fjs%2F17.21.1374%2Fcoverings%2Fskin6.js%3Fcb%3D17.21.1374&pv=17.21.1374&pt=html5&cb=0.
012086163475489409
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&action=ResourceLoaded&c1=ResourceLoaded&c2=https
%3A%2F%2Fcdn-ssl.vidible.tv%2Fprod%2Fplayer%2Fjs%2F17.21.1374%2Fskins%2Fskin6.js%3Fcb%3D17.21.1374&pv=17.21.1374&pt=html5&cb=0.191
93319262859365
https://trk.vidible.tv/trk/display.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-
a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-h
ave-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&dt=4595&w=737&h=415&csid=58172559cc52c73a8537
bbbf&cb=0.6676574090056784
https://api.content-ad.net/pixel.gif?s=ip-172-18-62-183&ip=204.187.14.74&wid=403809&cb=1526366690098&c=CA&d=&ik=2018051423_1869389dcee203
8fe3db57c92dea4bf2
https://api.content-ad.net/px.gif
https://api.content-ad.net/pixel.gif?s=ip-172-18-60-165&ip=204.187.14.74&wid=403806&cb=1526366690115&c=CA&d=&ik=2018051423_3fad3bdde3fd1e0
f97fa276662009b15
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeScore=0.
29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.version=0.2
.0&action=user-intention&ct=0&c1=0.7960617829961328&c2=%7B%22sizeScore%22%3A0.29154370272083946%2C%22soundScore%22%3A1%2C%2
2viewportSizeScore%22%3A1%2C%22playersNumberScore%22%3A1%2C%22performanceScore%22%3A1.8804297408767816%2C%22version%22%3
A%220.2.0%22%7D&cb=0.8410343192092966
https://cdn.digitru.st/prod/1/digitrust.min.js
https://jsc.mgid.com/g/i/girlsaskguys.com.114115.js?t=11841423
https://loadus.exelator.com/load/?p=233&g=001&j=d&xl8blockcheck=1
https://servicer.mgid.com/114115/1?w=730&h=107&cols=4&pv=6&cbuster=1526366693395257590151&ref=https%3A%2F%2Fwww.girlsaskguys.com%2F
other%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&iframe=1&pageView=1&pvid=163628b68198076f2e7
https://trk.vidible.tv/trk/page-info.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe
4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is
-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeScore

Analyze your site at https://gtmetrix.com Page 62 of 85


YSlow Recommendations

=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.version=
0.2.0&it=Omniture&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&rd=www.girlsaskguys.com&cb=0.3601255637508578
https://trk.vidible.tv/trk/video-impression.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid
=6f174fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-
bitcoin-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.
sizeScore=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&
m.version=0.2.0&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq219
8181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&vid=5ae86ee178e0f507d163254d&cb=0.0514537801160766
https://trk.vidible.tv/trk/context-intent.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f1
74fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitco
in-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&vid=5ae86ee178e0f507d163254d&cb=0.1585339798674592
https://trk.vidible.tv/qoe/intent.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-
a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-h
ave-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeScore=
0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.version=0
.2.0&it=0&vid=5ae86ee178e0f507d163254d&ct=video&url=https%3A%2F%2Fhlsrv.vidible.tv%2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2
Fhls%2Fplaylist_v1.m3u8&cb=0.739583951508719
https://trk.vidible.tv/trk/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&
pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&s=tru
e&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&ps=html5-vpaid&vid=5ae86ee178e0f507
d163254d&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&cb=0.764124820405071
https://d.agkn.com/pixel/2610/?che=1526366693&sk=263790302691003053765&pd=&puid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d
https://idsync.rlcdn.com/464986.gif?partner_uid=HBWWofwDhq0
https://cdn.digitru.st/prod/1.5.9/digitrust-server.min.js
https://ap.lijit.com/www/delivery/js/fpi.js
https://cdn.mirs.com/js/wglibs/mgWidget_1.7.19.js
https://cm.mgid.com/i.js
https://imgg-cdn.mgid.com/2543/2543365_492x328.jpg
https://imgg-cdn.mgid.com/2591/2591379_492x328.jpg
https://imgg-cdn.mgid.com/2560/2560061_492x328.jpg
https://imgg-cdn.mgid.com/2741/2741147_492x328.jpg
https://ap.lijit.com/sync
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.006775474426035322&7899512393
https://optimized-by.rubiconproject.com/a/17174/163796/883438-15.js?&cb=0.9999036834783079&tk_st=1&rf=https%3A//www.girlsaskguys.com/other/q21
98181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&rp_s=c&p_pos=btf&p_screen_res=1367x858&ad_slot=163796_15&rp_secure=1
https://idsync.rlcdn.com/362358.gif?google_gid=CAESEAtpFF_E3T_nBSazuRGJnRs&google_cver=1
https://ap.lijit.com/adcfg?zoneid=316485&tid=d006146e1e97499ca713107b34f745a5c1961f2a&mode=1&dmn=www.girlsaskguys.com
https://x.dlx.addthis.com/e/exelate_sync.xgi?na_exid=126659f99628a371d9bb252b16c512cc
https://ap.lijit.com/adcfg?zoneid=491736&tid=8ad803ae4f36424ab2dcbc4e5661474606190e19&mode=1&dmn=www.girlsaskguys.com
https://dmx.districtm.io/s/10010/3609532715836771276
https://ap.lijit.com/addelivery?zoneid=316485&tid=a_316485_baa038723ac140569be456b28c15de69&cb=07622300&mode=1&flv=0.0.0&ifr=true&od=www
.girlsaskguys.com&time=06%3A44%3A54&fd=2&be=cr&loc=https%3A%2F%2Fwww.girlsaskguys.com&orig_loc=http%3A%2F%2Fhttps%3A%2F%2Fwww.
girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&abf=true&dpz=false&cv=06f3be7&dop=0&ndw=
1&spif=true&btid=a_316485_baa038723ac140569be456b28c15de69
https://ap.lijit.com/addelivery?zoneid=491736&tid=a_491736_b290dc7f7ef846bfad12ef3a80bb1753&cb=38501367&mode=1&flv=0.0.0&ifr=true&od=www.gi
rlsaskguys.com&time=06%3A44%3A55&fd=2&be=cr&loc=https%3A%2F%2Fwww.girlsaskguys.com&orig_loc=http%3A%2F%2Fhttps%3A%2F%2Fwww.girl
saskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&abf=true&dpz=false&cv=06f3be7&dop=0&ndw=1&s
pif=true&btid=a_316485_baa038723ac140569be456b28c15de69
https://g2.gumgum.com/visitor/digitrust?dti=H8QIaPNNpY57TBhCenzcD8VsnmZczUpE9r5QCetBufJIFsxaG7z4jGNfqtdjaV9330GC7lklt%2Bfjy535ZC%2BiNnJ
QwtnPQYiJlE%2BFJNH8YEUiqqTVdjaqwd2qLENYilxKxjhgj90WSGxXofDxHTYA92hQbr1i%2BX6incaS%2FrxPqmYMJ71rteeRdW94mvqJu3VLRabRpNDOUV
VVm79gQ7nzTQTBPP1mfrfk06JF%2Fk88tapsKJhtNZMnRpmulDF%2BNOJql13o9R239wzknrfA9M02qplVX1bJeVOiKRgGnHOIOiOMBzb1eioB36LVMv9pV%2
BvFu%2FniDQPuAIzA4OFXv44hNw%3D%3D&dtk=4&domain=www.girlsaskguys.com
https://dmx.districtm.io/s/10001/52af87df-3f8d-4bcd-bc21-1d826dc889c2
https://beacon.walmart.com/etap.gif?tap=appnexus&thirdpartyuserid=3609532715836771276
https://pr-bh.ybp.yahoo.com/sync/msft/3609532715836771276
https://trk.vidible.tv/trk/action.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv=1
7.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&s=true&si
d=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&actio
n=ResourceLoaded&vid=5ae86ee178e0f507d163254d&c1=ResourceLoaded&c2=https%3A%2F%2Fs0.2mdn.net%2Finstream%2Fhtml5%2Fima3.js&pv=
17.21.1374&pt=html5&cb=0.029316812889798483
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befor
e&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c&at=preroll&adIdx=-1&aen=FROS%20-%20CO%20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl
=true&ps=html5-vpaid&rcid=551440471146fb0d084da510&rid=572a5079e4b0fb7d4078f6b5&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a
908-3c30-43bd-a0e3-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vw
m=0&h=415&cb=0.3288523803519503
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&

Analyze your site at https://gtmetrix.com Page 63 of 85


YSlow Recommendations

s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=FROS%20-%20CO%
20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps=html5-vpaid&rcid=551440471146fb0d084da
510&rid=572a5079e4b0fb7d4078f6b5&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=56a11164e4b0
5fb5460fcca3&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://dmx.districtm.io/s/10016/WvqB5wAAAKNI-RAl&_test=WvqB5wAAAKNI-RAl
https://dmx.districtm.io/s/10008/174c5830-8905-4d06-9b00-103e88704f9c
https://cm.steepto.com/setmuidn/?muidn=i4eR1FzfRZIn
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:1248}];et=1250;eid=114;ai=RB%20Fastlane%5Erubicon%5E372688_
1-640-480%5E%5E1222;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e
=e;z=0.557270568495744&6553624559
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:1248}];et=1250;eid=114;ai=RB%20Fastlane%5Erubicon_preroll%5E3
72688_1-640-480%5E%5E1225;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-
before;e=e;z=0.557270568495744&1338601830
https://aax.amazon-adsystem.com/e/dtb/bid?src=3308&u=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-h
ave-you-ever-used-bitcoin-before&cb=4803322&mt=V
https://sync.search.spotxchange.com/partner?adv_id=7715&uid=3609532715836771276&__user_check__=1&sync_id=7a69e606-580b-11e8-abb3-1fdd5b
851f01
https://c.mgid.com/c?pv=2&f=1&v=175|117|40|t3SkLumE1fGzFUmeN7bgZX2vteKohlvoKwCsHz4D8KRFPCLNZxWy4FtDO5GzsWYI&fw=1&v=175|117|8|t3SkL
umE1fGzFUmeN7bgZdZGOVzxUQOZ_8qMogHxZpi0VggZ2pY-UeVoUWKM34yY&v=175|117|8|t3SkLumE1fGzFUmeN7bgZSkShrTRYCsuS-nx8rsCh-tbw6Czo
csgexseJRUfDRfG&v=175|117|24|t3SkLumE1fGzFUmeN7bgZVD6Di1r6RJcvvLwPDcJHOVjWMheh5otq3eUphFtRW55&tt=Direct&cid=114115&h2=i6dDxqFY
AGENzktqx-WUzbXB6o71t44bIfJ2ThSkKus*
https://bcp.crwdcntrl.net/map/ct=y/c=9380/tp=MGID/tpid=i4eR1FzfRZIn
https://m.adnxs.com/mapuid?member=280&user=282CD077347D6B042529DB87307D68CB;
https://atpixelus.alephd.com/post_adtech?FlEXs2dumRuxdQgN0uMp81aHZMoloHmFojR6HjC6m8PMsJstyja6.TjNJFpQVTLI--ckuimRLsMM7wbgiDJRpIt7u0
9j.ymTo9ksGOcNFbASbNMK4TaN6fPyaJHKNdeC1u.1F1jpu1HioR8TTURN7Os.yXCN3JqIAE.YxTRrfE2aIPVF9Kpbfm37FTkylrNRl33RTlHcXVbB1AV0Us8MA
w==
https://ad.afy11.net/ad?mode=10&sspid=585
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:2558}];eid=58;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q
2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.7819638443337706&2618815769
https://atpixelus.alephd.com/post_adtech?Of98E-fcV8or3qnt7gmFW3thV3BDsh3l7DRubZVoiA1mRlt8hy4szZvJ7TXUzcQF7rXsocVEWcE.u6LZPo2TgQVrsXC
TYhp9GXIFcjxgONlSCifXqkyIzuMzU39cXBUcgg7s.2rgU2c.mW2ZISEYtC.yg0MMHuSYapk3CnJJ6lW.RPE1imSApywtt7REBzX9oG8JBQVCk6v6wKlD9heGzQ==
https://atpixelus.alephd.com/post_adtech?dz5gr5ooSzhZf8z8DJQ.moa3d.a-sQCeTjEAyUCpZNxCdsnmrzQ6hWdDcbptP.7CzX9xik2dsN4ON.YoktFGqnDMKa
6P1HKsmuaaZvmDgL8GDBPBGyM6AKL--KcaIpOgR1-UXgixaUuQgf7sDLrmOIoL00RjceLzt2O6DJfrevWVgj8OMZN8aTUm3zqUZa1-AvbL.aqkBnVshkPZSfFC
bw==
https://odr.mookie1.com/t/v2/sync?tagid=V2_2739&src.visitorId=CAESEN-liHBbbpDjQSnJOplfkW4&google_cver=1
https://ap.lijit.com/adcfg?zoneid=495079&tid=122211ed6038423985c3803c433a298f71b93ff2&mode=1&dmn=www.girlsaskguys.com
https://ap.lijit.com/adcfg?zoneid=495077&tid=9ae9aa1968f04637bb89afdfc67331217b13f68e&mode=1&dmn=www.girlsaskguys.com
https://ap.lijit.com/adcfg?zoneid=495077&tid=8f627a97b3dd4e8f934e6a98edd0bfad555b381c&mode=1&dmn=www.girlsaskguys.com
https://ap.lijit.com/addelivery?zoneid=495079&tid=a_495079_05d850d5b3854fbd9d3e9a0319ac3914&cb=68600842&mode=1&flv=0.0.0&ifr=true&od=www.
girlsaskguys.com&time=06%3A44%3A58&fd=2&be=cr&loc=https%3A%2F%2Fwww.girlsaskguys.com&orig_loc=http%3A%2F%2Fhttps%3A%2F%2Fwww.g
irlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&abf=false&dpz=false&cv=06f3be7&dop=0&ndw=1
&spif=true&btid=a_316485_baa038723ac140569be456b28c15de69
https://ap.lijit.com/addelivery?zoneid=495077&tid=a_495077_484a26e1d6204cb490d98d105b3a92d1&cb=20944266&mode=1&flv=0.0.0&ifr=true&od=www
.girlsaskguys.com&time=06%3A44%3A58&fd=2&be=cr&loc=https%3A%2F%2Fwww.girlsaskguys.com&orig_loc=http%3A%2F%2Fhttps%3A%2F%2Fwww.
girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&abf=true&dpz=false&cv=06f3be7&dop=0&ndw=
1&spif=true&btid=a_316485_baa038723ac140569be456b28c15de69
https://ap.lijit.com/addelivery?zoneid=495077&tid=a_495077_3a235fdd3eae494c8bb23d4201e02921&cb=72778892&mode=1&flv=0.0.0&ifr=true&od=www.
girlsaskguys.com&time=06%3A44%3A58&fd=2&be=cr&loc=https%3A%2F%2Fwww.girlsaskguys.com&orig_loc=http%3A%2F%2Fhttps%3A%2F%2Fwww.g
irlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&abf=false&dpz=false&cv=06f3be7&dop=0&ndw=1
&spif=true&btid=a_316485_baa038723ac140569be456b28c15de69
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44f
d94659c&at=preroll&adIdx=-1&aen=FROS%20-%20CO%20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&
pbl=true&ps=html5-vpaid&rcid=551440471146fb0d084da510&rid=572a5079e4b0fb7d4078f6b5&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=460
5a908-3c30-43bd-a0e3-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ae86ee178e0f507d163254d&w=737&aert=3775&ar=no&fo=0&ft=0&h=415&c
b=0.41793439442522007
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befor
e&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20VAN%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true
&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade879442b071692878a4c7&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908
-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0
&h=415&cb=0.02242284587459764
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=Oath%201V%20-%2
0AOL%20-%20VAN%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23
&rid=5ade879442b071692878a4c7&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41
110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://trk.vidible.tv/trk/ad-issue.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv
=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&s=true&

Analyze your site at https://gtmetrix.com Page 64 of 85


YSlow Recommendations

sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&at=
preroll&adIdx=-1&aen=FROS%20-%20CO%20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps=
html5-vpaid&rcid=551440471146fb0d084da510&rid=572a5079e4b0fb7d4078f6b5&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-
43bd-a0e3-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ae86ee178e0f507d163254d&curl=https%3A%2F%2Fpubads.g.doubleclick.net%2Fgampa
d%2Fads%3Fsz%3D3x3%26iu%3D%2F36117602%2Fhdm-aolpreroll%2Fonnetwork%26impl%3Ds%26gdfp_req%3D1%26env%3Dvp%26output%3Dvast
%26unviewed_position_start%3D1%26url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Fother%252Fq2198181-do-you-know-what-bitcoin-is
-have-you-ever-used-bitcoin-before%26description_url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Fother%252Fq2198181-do-you-know-wh
at-bitcoin-is-have-you-ever-used-bitcoin-before%26correlator%3D1526366699108&stg=loaded&crl=IMA&dt=Failed%20to%20initialize%20GoogleIMA3%20
adManager.%20The%20response%20does%20not%20contain%20any%20valid%20ads.&et=901&st=9571&cb=0.8006510718701103
https://cdn.mgid.com/js/perfect-scrollbar.js
https://vap4sfo1.lijit.com/addelivery/impression?bannerid=184916&campaignid=232&cb=04111052&tid=a_491736_b290dc7f7ef846bfad12ef3a80bb1753&
zoneid=491736&cids=232&bids=184916&tss=5
https://vap4sfo1.lijit.com/data/fp?tid=a_495079_05d850d5b3854fbd9d3e9a0319ac3914&zoneid=495079&starttime=1526366697643&adcfg=8&adcfg_resp
onse=462&addelivery=470&addelivery_response=1228&lgfired=1746&container=1755&EOL=1755&ctstart=1749&elapsed_ms=1755
https://vap4sfo1.lijit.com/addelivery/impression?bannerid=186041&campaignid=232&cb=46731447&tid=a_495077_484a26e1d6204cb490d98d105b3a92d
1&zoneid=495077&cids=232&bids=186041&tss=5
https://vap4sfo1.lijit.com/data/fp?tid=a_495077_484a26e1d6204cb490d98d105b3a92d1&zoneid=495077&starttime=1526366697675&adcfg=6&adcfg_res
ponse=480&addelivery=483&addelivery_response=1206&lgfired=1756&container=1762&EOL=1763&ctstart=1759&elapsed_ms=1763
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44f
d94659c&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20VAN%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=tr
ue&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade879442b071692878a4c7&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a9
08-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&aert=344&ar=no&fo=0&ft=0&h=415&cb=0.
07586247591190554
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befor
e&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20Rest%20of%20Brands%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%
20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade830747fd696c810db0b7&txid=071fbe93-1290-4df1-908a-567aa68d948
9&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound
=0&vwa=0&vwm=0&h=415&cb=0.0004158311963531336
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=Oath%201V%20-%2
0AOL%20-%20Rest%20of%20Brands%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09
eab108e072da23&rid=5ade830747fd696c810db0b7&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=5
69fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://vap4sfo1.lijit.com/addelivery/impression?bannerid=100898&campaignid=232&cb=11665602&tid=a_316485_baa038723ac140569be456b28c15de6
9&zoneid=316485&cids=232&bids=100898&tss=2
https://vap4sfo1.lijit.com/data/fp?tid=a_495077_3a235fdd3eae494c8bb23d4201e02921&zoneid=495077&starttime=1526366697693&adcfg=1&adcfg_resp
onse=486&addelivery=488&addelivery_response=1201&lgfired=1859&container=1870&EOL=1870&ctstart=1861&elapsed_ms=1870
https://ml314.com/tag.aspx?1442018
https://pd.sharethis.com/pd/sovrn
https://ce.lijit.com/merge?pid=5176&3pid=1
https://ap.lijit.com/data/ct?tid=a_495077_484a26e1d6204cb490d98d105b3a92d1&zoneid=495077&cid=18&geo=CA&all_tags=138%2C151%2C185%2C1
98%2C209%2C214%2C215%2C219%2C227%2C228%2C229%2C230%2C231%2C232%2C237%2C238%2C239%2C241%2C265%2C277%2C290&ts
s=425%2C427%2C458%2C475&fired_tags=138%2C151%2C265%2C290&count=4&status=1%2C1%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2
C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C1%2C8%2C1&elapsed_ms=477
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44f
d94659c&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20Rest%20of%20Brands%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-
%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade830747fd696c810db0b7&txid=071fbe93-1290-4df1-908a-567aa68d9
489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&aert=495&ar=no&fo=0&
ft=0&h=415&cb=0.4564251722235455
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befor
e&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20VAN%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=ht
ml5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade94d85c6617767c385912&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-
43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=4
15&cb=0.09230157196087951
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=Oath%201V%20-%2
0AOL%20-%20VAN%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5a
de94d85c6617767c385912&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650
e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://ap.lijit.com/data/ct?tid=a_495077_3a235fdd3eae494c8bb23d4201e02921&zoneid=495077&cid=18&geo=CA&all_tags=138%2C151%2C185%2C19
8%2C209%2C214%2C215%2C219%2C227%2C228%2C229%2C230%2C231%2C232%2C237%2C238%2C239%2C241%2C265%2C277%2C290&tss
=505%2C511%2C542%2C565&fired_tags=138%2C151%2C265%2C290&count=4&status=1%2C1%2C8%2C12%2C8%2C8%2C8%2C8%2C8%2C8%2

Analyze your site at https://gtmetrix.com Page 65 of 85


YSlow Recommendations

C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C1%2C8%2C1&elapsed_ms=567
https://ap.lijit.com/data/ct?tid=a_495079_05d850d5b3854fbd9d3e9a0319ac3914&zoneid=495079&cid=18&geo=CA&all_tags=125%2C130%2C133%2C13
4%2C138%2C151%2C174%2C182%2C185%2C187%2C188%2C189%2C190%2C191%2C192%2C193%2C194%2C195%2C196%2C197%2C198%2C
203%2C205%2C206%2C209%2C211%2C214%2C215%2C219%2C227%2C228%2C229%2C230%2C231%2C232%2C234%2C237%2C238%2C239%
2C241%2C248%2C265%2C272%2C277%2C284%2C290%2C309&tss=795%2C801%2C808%2C842%2C848%2C853&fired_tags=138%2C151%2C18
2%2C234%2C265%2C290&count=6&status=8%2C8%2C8%2C8%2C1%2C1%2C8%2C1%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%
2C8%2C8%2C12%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C1%2C8%2C8%2C8%2C8%2C8%2C1%2C8
%2C8%2C8%2C1%2C8&elapsed_ms=857
https://ml314.com/utsync.ashx?pub=&adv=&et=0&eid=50282&ct=js&pi=&fp=&clid=&ps=&cl=&mlt=&data=&&cp=https%3A%2F%2Fwww.girlsaskguys.com%
2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&pv=1526366700264_chue5q7sz&bl=en-us&cb=1643918&return=htt
ps%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D5031%263pid%3D%5BPersonID%5D&ht=&d=&dc=&si=1526366700264_chue5q7sz&cid=&s=1367x858
&rp=
https://stats.aws.rubiconproject.com/stats/video/bridge-loaded/js/11406/134230/861300/201
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44f
d94659c&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20VAN%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=
html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade94d85c6617767c385912&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c3
0-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&aert=392&ar=no&fo=0&ft=0&h=415&cb=0.28703
75854176075
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befor
e&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c&at=preroll&adIdx=-1&aen=Direct%20Campaigns%20-%20One%20Video%20-%20CA%20-%20Desktop%20platform%20-%20Sponsorship%20(HT
ML5%20Only)&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=578d75ebe3bb561f57aa4f0d&txid=071fbe93-1290-4df1-908a-567aa68d
9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.so
und=0&vwa=0&vwm=0&h=415&cb=0.38547756639140807
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=Direct%20Campaign
s%20-%20One%20Video%20-%20CA%20-%20Desktop%20platform%20-%20Sponsorship%20(HTML5%20Only)&pbl=true&ps=html5-vpaid&rcid=5512a3
9b09eab108e072da23&rid=578d75ebe3bb561f57aa4f0d&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5
&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://ml314.com/utsync.ashx?pub=&adv=&et=0&eid=50282&ct=js&pi=&fp=&clid=&ps=&cl=&mlt=&data=&&cp=https%3A%2F%2Fwww.girlsaskguys.com%
2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&pv=1526366700375_bn5qf19ny&bl=en-us&cb=6499515&return=htt
ps%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D5031%263pid%3D%5BPersonID%5D&ht=&d=&dc=&si=1526366700264_chue5q7sz&cid=&s=1367x858
&rp=
https://vap4sfo1.lijit.com/addelivery/impression?bannerid=186041&campaignid=232&cb=72283421&tid=a_495077_3a235fdd3eae494c8bb23d4201e0292
1&zoneid=495077&cids=232&bids=186041&tss=0
https://vap4sfo1.lijit.com/data/fp?tid=a_495077_3a235fdd3eae494c8bb23d4201e02921&zoneid=495077&starttime=1526366697693&adcfg=1&adcfg_resp
onse=486&addelivery=488&addelivery_response=1201&lgfired=2726&container=2737&EOL=2738&ctstart=1861&elapsed_ms=2738
https://ml314.com/utsync.ashx?pub=&adv=&et=0&eid=50282&ct=js&pi=&fp=&clid=&ps=&cl=&mlt=&data=&&cp=https%3A%2F%2Fwww.girlsaskguys.com%
2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&pv=1526366700533_4tgjwydbq&bl=en-us&cb=3509414&return=htt
ps%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D5031%263pid%3D%5BPersonID%5D&ht=&d=&dc=&si=1526366700264_chue5q7sz&cid=&s=1367x858
&rp=
https://vap4sfo1.lijit.com/addelivery/impression?bannerid=186043&campaignid=232&cb=59149823&tid=a_495079_05d850d5b3854fbd9d3e9a0319ac391
4&zoneid=495079&cids=232&bids=186043&tss=1
https://vap4sfo1.lijit.com/data/fp?tid=a_495079_05d850d5b3854fbd9d3e9a0319ac3914&zoneid=495079&starttime=1526366697643&adcfg=8&adcfg_resp
onse=462&addelivery=470&addelivery_response=1228&lgfired=2901&container=2906&EOL=2906&ctstart=1749&elapsed_ms=2906
https://ic.tynt.com/b/p?id=s!sovrn&lm=0&ts=1526366700646&dn=IDS&iso=0&img=https%3A%2F%2Fcf.girlsaskguys.com%2Fq2198181%2Fprimary-share.
png%3F88&ct=Do%20you%20know%20what%20BitCoin%20is%3F%20Have%20you%20ever%20used%20BitCoin%20before%3F&t=Do%20you%20kno
w%20what%20BitCoin%20is%3F%20Have%20you%20ever%20used%20BitCoin%20before%3F%20-%20GirlsAskGuys&cu=https%3A%2F%2Fwww.girlsa
skguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
https://pd.sharethis.com/pd/sovrn?_t_=px&url=&partner=sovrn&rnd=0.1696871479686306&exptid=ZGAQNVr6gewAAAATT50UAw%3D%3D&fcmp=false
https://ce.lijit.com/merge?pid=5031&3pid=5978151422914825543
https://ce.lijit.com/merge?pid=5001&3pid=ce6218ad76692cd9ac9db8c2fb46ad71
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44f
d94659c&at=preroll&adIdx=-1&aen=Direct%20Campaigns%20-%20One%20Video%20-%20CA%20-%20Desktop%20platform%20-%20Sponsorship%20(
HTML5%20Only)&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=578d75ebe3bb561f57aa4f0d&txid=071fbe93-1290-4df1-908a-567aa
68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&aert=357&ar=no&f
o=0&ft=0&h=415&cb=0.34421185620099104
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befor
e&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c&at=preroll&adIdx=-1&aen=Direct%20Campaigns%20-%20One%20Video%20-%20CA%20-%20Desktop%20platform%20-%20Standard%20(HTML5
%20Only)&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=57d18681e3bb567867a40a89&txid=071fbe93-1290-4df1-908a-567aa68d94
89&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.soun
d=0&vwa=0&vwm=0&h=415&cb=0.5994579825712758
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&

Analyze your site at https://gtmetrix.com Page 66 of 85


YSlow Recommendations

s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=Direct%20Campaign
s%20-%20One%20Video%20-%20CA%20-%20Desktop%20platform%20-%20Standard%20(HTML5%20Only)&pbl=true&ps=html5-vpaid&rcid=5512a39b0
9eab108e072da23&rid=57d18681e3bb567867a40a89&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v
=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://pd.sharethis.com/pd/sovrn?_t_=px&url=&partner=sovrn&rnd=0.5313065017585734&exptid=ZGAQNVr6gewAAAATT50UAw%3D%3D&fcmp=false
https://pd.sharethis.com/pd/sovrn?_t_=px&url=&partner=sovrn&rnd=0.6513199631197999&exptid=ZGAQNVr6gewAAAATT50UAw%3D%3D&fcmp=false
https://ps.eyeota.net/pixel/bounce/?pid=51md42u&t=ajs&uid=d679af0dac93f348389a3cb3
https://cs.lkqd.net/cs?partnerId=52&partnerUserId=WvqB5wAAAKNI-RAl
https://cs.lkqd.net/cs?partnerId=39&partnerUserId=6776932692590014083
https://pr-bh.ybp.yahoo.com/sync/casale/WvqB59HM7SUAACpofvsAAAAtAG4AAAAB
https://cas.pxl.ace.advertising.com/cfcm.ashx?providerId=1013&extMatch=1&rcode=2
https://ml314.com/csync.ashx?fp=&person_id=5978151422914825543&eid=50082
https://cs.lkqd.net/cs?partnerId=6&partnerUserId=cuid_79c33181-580b-11e8-a609-126fa5aac54e
https://magnetic.t.domdex.com/sync/casale
https://acds.prod.vidible.tv/o2shim?companionId=&cpmPassback=&placementId=1076847&orgId=21465&injectCompanionDummy=&pauseOnClick=&d.vw
=&d.app=&r=http%3A%2F%2Fgirlsaskguys.com
https://cs.lkqd.net/cs?partnerId=51&partnerUserId=874d104f-6c6c-06b6-0bb7-3013ae407ae3
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44f
d94659c&at=preroll&adIdx=-1&aen=Direct%20Campaigns%20-%20One%20Video%20-%20CA%20-%20Desktop%20platform%20-%20Standard%20(HTM
L5%20Only)&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=57d18681e3bb567867a40a89&txid=071fbe93-1290-4df1-908a-567aa68d
9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&aert=435&ar=no&fo=0
&ft=0&h=415&cb=0.22843704304799095
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befor
e&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd9
4659c&at=preroll&adIdx=-1&aen=LROS%20-%20Pub%20-%20EGAMI%7CAll%20Domains%20-%20ALL%20Geos%20-%20HTML5%20only&pbl=true&ps=
html5-vpaid&rcid=57d325e276a6057ba4a05a00&rid=5a6b7faa55935e30ecd569fb&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-
43bd-a0e3-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=41
5&cb=0.3801016913584727
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=LROS%20-%20Pub
%20-%20EGAMI%7CAll%20Domains%20-%20ALL%20Geos%20-%20HTML5%20only&pbl=true&ps=html5-vpaid&rcid=57d325e276a6057ba4a05a00&rid
=5a6b7faa55935e30ecd569fb&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=56a11164e4b05fb5460
fcca3&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=1&r=
https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=2&r=
https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=3&r=
https://dsum-sec.casalemedia.com/rum?cm_dsp_id=88&external_user_id=WvqB5wAAAKNI-RAl
https://pr-bh.ybp.yahoo.com/sync/openx/30023df0-56f5-ae26-6b86-51a32afb9f1d
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=39&external_user_id=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&expiration=1528958701
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=45&external_user_id=CAESELY7hq0HnuFuuG5LvaOmLB4&google_cver=1
https://cs.lkqd.net/cs?partnerId=53&partnerUserId=kao5L06XcZwo&ev=1&pid=561322
https://pr-bh.ybp.yahoo.com/sync/openx/63df8c12-2318-aa30-6f30-26016aa8c9fe
https://cs.lkqd.net/cs?partnerId=57&partnerUserId=kao5L06XcZwo&ev=1&pid=561322
https://connexity.net/c/cse?a=R&A=29a&C=0&D=64b3&N=0-2017720130331164&R=1367x858c24&T=2f&U=e9fb6b9fabdec90c-06ca74a9b3142732-21f5a
6f4e85b2de4&J=https%253a%252f%252fwww.girlsaskguys.com%252fother%252fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befo
re&Q=v2.0.1,h5rR:n,c:n,h5:n,swf:BL,new,TS:(run:2ms),(f_newUID:62ms),(Burl-R:63ms)
https://connexity.net/c/cse?a=L&A=29a&C=0&D=64b3&N=0-2017720130331164&R=1367x858c24&T=2f&P=t&U=e9fb6b9fabdec90c-06ca74a9b3142732-2
1f5a6f4e85b2de4&Q=v2.0.1,h5rR:n,c:n,h5:n,swf:BL,new,h5w:y,swf-w:BL,h5rS:5,TS:(run:2ms),(f_newUID:62ms),(Burl-R:63ms),(rf:63ms),(wrap:64ms),(H5ls
oS-5:64ms),(Burl-L:64ms)
https://connexity.net/c/cse?a=R&A=29a&C=0&D=64b3&N=0-201772015833193c&R=1367x858c24&T=2f&U=e9fb6b9fabdec90c-06ca74a9b3142732-21f5a
6f4e85b2de4&J=https%253a%252f%252fwww.girlsaskguys.com%252fother%252fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befo
re&Q=v2.0.1,h5rR:4,c:n,h5L:y,TS:(run:2ms),(Burl-R:4ms)
https://ps.eyeota.net/match?uid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&bid=1e2n4ou
https://ps.eyeota.net/match?bid=gdo9o51&newuser=1&google_gid=CAESECJsw9XNJr_-GHPNkSqtjo0&google_cver=1
https://connexity.net/c/cse?a=R&A=29a&C=0&D=64b3&N=0-2017720180330c20&R=1367x858c24&T=2f&U=e9fb6b9fabdec90c-06ca74a9b3142732-21f5a
6f4e85b2de4&J=https%253a%252f%252fwww.girlsaskguys.com%252fother%252fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befo
re&Q=v2.0.1,h5rR:3,c:n,h5L:y,TS:(run:1ms),(Burl-R:3ms)
https://ps.eyeota.net/match?bid=r8hrb20&uid=nil
https://cs.lkqd.net/cs?partnerId=36&partnerUserId=8c0580ce0ae2528e0982e95b4c73cebe
https://cs.lkqd.net/cs?partnerId=42&partnerUserId=98512229c20e55aaf59f8afe58e430a4&sticky=true
https://cs.lkqd.net/cs?partnerId=4&partnerUserId=799e6b71-580b-11e8-98f9-0a580a4c010a
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=40&external_user_id=174c5830-8905-4d06-9b00-103e88704f9c&expiration=1534315418
https://cs.lkqd.net/cs?partnerId=60&partnerUserId=3609532715836771276
https://cs.lkqd.net/cs?partnerId=46&partnerUserId=17127dda-32bb-42f2-9997-46aef92d6737
https://cs.lkqd.net/cs?partnerId=42&partnerUserId=98512229c20e55aaf59f8afe58e430a4
https://ml314.com/csync.ashx?fp=KPJBvSe999eQ64oS&person_id=5978151422914825543&eid=50056
https://cs.lkqd.net/cs?partnerId=63&partnerUserId=68B5ECA6-1E22-44CD-9CA1-84863B95FD63
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=3&external_user_id=30c15afa-5048-4600-a17d-e2a85c24ab94

Analyze your site at https://gtmetrix.com Page 67 of 85


YSlow Recommendations

https://dsum-sec.casalemedia.com/crum?cm_dsp_id=57&external_user_id=2810316537904023968
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=46&external_user_id=3609532715836771276
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=4&external_user_id=8643648681422002544
https://dsum-sec.casalemedia.com/rum?cm_dsp_id=81&external_user_id=aMufeGWbnChwyMwqOJnUe23IwHpwncx6O5vniGHg
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=105&external_user_id=0
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=47&external_user_id=BaYDFrpd1FitHM5
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-bef
ore&s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44f
d94659c&at=preroll&adIdx=-1&aen=LROS%20-%20Pub%20-%20EGAMI%7CAll%20Domains%20-%20ALL%20Geos%20-%20HTML5%20only&pbl=true&p
s=html5-vpaid&rcid=57d325e276a6057ba4a05a00&rid=5a6b7faa55935e30ecd569fb&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c
30-43bd-a0e3-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ae86ee178e0f507d163254d&w=737&aert=1335&ar=no&fo=0&ft=0&h=415&cb=0.1598
171323202482
https://trk.vidible.tv/trk/ad-issue.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv
=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&s=true&
sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&at=
preroll&adIdx=-1&aen=LROS%20-%20Pub%20-%20EGAMI%7CAll%20Domains%20-%20ALL%20Geos%20-%20HTML5%20only&pbl=true&ps=html5-vpai
d&rcid=57d325e276a6057ba4a05a00&rid=5a6b7faa55935e30ecd569fb&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e
3-01ff1e84b5b5&v=56a11164e4b05fb5460fcca3&vid=5ae86ee178e0f507d163254d&curl=https%3A%2F%2Fpubads.g.doubleclick.net%2Fgampad%2Fads
%3Fsz%3D640x480%26iu%3D%2F21661689741%2Fegami.generic%26cust_params%3Dpid%253d5952b3519e45102b384dc50e%26impl%3Ds%26gdf
p_req%3D1%26env%3Dvp%26output%3Dxml_vast3%26unviewed_position_start%3D1%26url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252
Fother%252Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before%26description_url%3Dhttps%253A%252F%252Fwww.girlsaskguy
s.com%252Fother%252Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before%26correlator%3D1526366702493&stg=loaded&crl=IM
A&dt=Failed%20to%20initialize%20GoogleIMA3%20adManager.%20No%20Ads%20VAST%20response%20after%20one%20or%20more%20Wrappers&et
=901&st=9571&cb=0.9739610748952432
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=90&external_user_id=23423CA9EE81FA5A3AC1C23D02B58862
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=62&external_user_id=EQ880015263666970006
https://trk.vidible.tv/trk/slot-opp.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv
=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&s=true&
sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&at=
preroll&adIdx=-1&ps=html5-vpaid&vid=5ae86ee178e0f507d163254d&w=737&slot=AVAIL&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&cb=0.5141550586
979491
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeScore=0.
29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.version=0.2
.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&action=LoadModule&vid=5ae86ee178e0f507d163254d&seq=1&c1=HLSModule&cb=0.7279037060
541949
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=131&external_user_id=18072662445631213750
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=65&expiration=1526453102&external_user_id=AAADRyqqDGcPbwNht4zjAAAAAAA&cm_user_id=Wv
qB59HM7SUAACpofvsAAAAt
https://dsum-sec.casalemedia.com/rum?cm_dsp_id=64&external_user_id=52af87df-3f8d-4bcd-bc21-1d826dc889c2&expiration=1528958702
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=130&external_user_id=AAO9FE619QQAAHnNWdD9Bw&expiration=1527576302
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=41&external_user_id=7e912f3c-580b-11e8-9746-b5eb1b0375cb
https://cdn-ssl.vidible.tv/prod/ad-client/js/2.11.3/0.js
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=107&external_user_id=AB-l3YmnQ7ovql0kefr5sqG8w&expiration=
https://ps.eyeota.net/match?bid=7vi0rg0&uid=30c15afa-5048-4600-a17d-e2a85c24ab94
https://ps.eyeota.net/match?bid=1mpjpn0&turn_id=8643648681422002544&newuser=1
https://pd.sharethis.com/pd/33across
https://live.rezync.com/sync/?c=4656c20ee35215f78e9273796625d90b&p=cab5a4722e64fa65aba8e60b6da5d556&pid=CmUMKVr6gewN0gShBgJGAg%3
D%3D&33random=1526366702823
https://i.simpli.fi/dpx?cid=11411&33random=1526366702825
https://trk.vidible.tv/qoe/buffer-start.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=9882&vid=5ae86ee178e0f507d163254d&ct=video&url=https%3A%2F%2Fhlsrv.vidible.tv%
2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&cb=0.27063345417181317
https://aax-eu.amazon-adsystem.com/s/ecm3?id=JH7BBHEJ-1E-D5Z0&ex=d-rubiconproject.com&status=ok
https://loadm.exelator.com/load/?p=204&g=260&buid=ce6218ad76692cd9ac9db8c2fb46ad71
https://rtb.openx.net/sync/dds?ox_sc=1&ox_init=1
https://idsync.rlcdn.com/378338.gif?
https://idsync.rlcdn.com/47154.gif?served_by=evergreen&partner_uid=30c15afa-5048-4600-a17d-e2a85c24ab94
https://pd.sharethis.com/pd/33across?_t_=px&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you
-ever-used-bitcoin-before&partner=33across&rnd=0.10131196410739207&exptid=ZGAQNVr6gewAAAATT50UAw%3D%3D&fcmp=false
https://bk.addthis.com/site/55122?bku=oo999mSOIkod9A6o
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.05970694389493891&8781865063
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[{%2228%22:17}];eid=99;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q21
98181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.6641648875542858&1714769425
https://trk.vidible.tv/qoe/ray-load.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe
4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is

Analyze your site at https://gtmetrix.com Page 68 of 85


YSlow Recommendations

-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeScore
=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.version=
0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=10952&vid=5ae86ee178e0f507d163254d&ct=video&url=https%3A%2F%2Fhlsrv.vidible.tv%2F
prod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&lvl=2&cb=0.13253994301272587
https://trk.vidible.tv/trk/video-play.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174f
e4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-i
s-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeScor
e=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.version
=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&w=737&h=415&csid=58172559cc52c73a8537bbbf&bit=982.2822265625&vid=5ae86ee178e0f5
07d163254d&vpt=auto&seq=1&cvt=0&fs=0&vcdn=hlsrv.vidible.tv&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&cb=0.08939828141862538
https://trk.vidible.tv/trk/context-started.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f
174fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitc
oin-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.size
Score=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.ver
sion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&bit=982.2822265625&vid=5ae86ee178e0f507d163254d&vpt=auto&seq=1&cvt=0&fs=0&vcd
n=hlsrv.vidible.tv&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&cb=0.6837774935918051
https://trk.vidible.tv/qoe/start.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f174fe4-a
511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-ha
ve-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeScore=0.
29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.version=0.2
.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=10973&vid=5ae86ee178e0f507d163254d&ct=video&url=https%3A%2F%2Fhlsrv.vidible.tv%2Fpro
d%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&cb=0.10163158438072895
https://trk.vidible.tv/qoe/buffer-end.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=11007&vid=5ae86ee178e0f507d163254d&t=261&ct=video&url=https%3A%2F%2Fhlsrv.vi
dible.tv%2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&bt=1125&cb=0.15211615483770147
https://trk.vidible.tv/qoe/buffer-start.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=11468&vid=5ae86ee178e0f507d163254d&t=2916&ct=video&url=https%3A%2F%2Fhlsrv.v
idible.tv%2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&cb=0.3384837166601711
https://trk.vidible.tv/qoe/buffer-end.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=11483&vid=5ae86ee178e0f507d163254d&t=2916&ct=video&url=https%3A%2F%2Fhlsrv.v
idible.tv%2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&bt=3&cb=0.9495167569234719
https://trk.vidible.tv/qoe/buffer-start.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=11485&vid=5ae86ee178e0f507d163254d&t=2916&ct=video&url=https%3A%2F%2Fhlsrv.v
idible.tv%2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&cb=0.8901933196746035
https://trk.vidible.tv/moat/moat-tracker.gif?e=l&m=1&pt=77&iv=0&tuv=-1&ivt=0&cvt=0&fvt=0&cfvt=0&vol=0&at=0&cat=0&gmv=0&gmt=0&cgmt=0&apd=77&dh=
33000&hov=0&th=0&d=girlsaskguys.com&w=737&h=414&sp=0&L1id=57d325e276a6057ba4a05a00&L2id=-&L3id=-&L4id=5952b3519e45102b384dc50e
&L5id=5ae86ee178e0f507d163254d&S1id=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&S2id=-&S3id=-&S4id=-&pc=aolvidiblecontent859375382&ord=
1526366705167&r=273333087614
https://trk.vidible.tv/moat/moat-tracker.gif?e=m&m=1&pt=77&iv=0&tuv=-1&ivt=0&cvt=0&fvt=0&cfvt=0&vol=0&at=0&cat=0&gmv=0&gmt=0&cgmt=0&apd=77&dh
=33000&hov=0&th=0&d=girlsaskguys.com&w=737&h=414&sp=0&L1id=57d325e276a6057ba4a05a00&L2id=-&L3id=-&L4id=5952b3519e45102b384dc50
e&L5id=5ae86ee178e0f507d163254d&S1id=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&S2id=-&S3id=-&S4id=-&pc=aolvidiblecontent859375382&ord
=1526366705167&r=273333087614
https://trk.vidible.tv/trk/video-decile.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&d=1&bft=1619&bit=2329.4150390625&vid=5ae86ee178e0f507d163254d&vpt=auto&seq=1&
cvt=3&fs=0&vcdn=hlsrv.vidible.tv&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&cb=0.023272496218178507
https://trk.vidible.tv/qoe/buffer-end.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
ion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=12005&vid=5ae86ee178e0f507d163254d&t=3327&ct=video&url=https%3A%2F%2Fhlsrv.v
idible.tv%2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&bt=520&cb=0.0014431486156583073
https://trk.vidible.tv/qoe/buffer-start.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=6f17
4fe4-a511-4a61-9f63-14c0f1d3457f&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoi
n-is-have-you-ever-used-bitcoin-before&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&pt=html5&m.intentionScore=0.7960617829961328&m.sizeS
core=0.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.8804297408767816&m.vers
Avoidion=0.2.0&apid=1A789ec79c-580b-11e8-9111-2c44fd94659c&it=12008&vid=5ae86ee178e0f507d163254d&t=3327&ct=video&url=https%3A%2F%2Fhlsrv.v
URL redirects F (0) AVG SCORE: 88% CONTENT MEDIUM
idible.tv%2Fprod%2F5ae86ee178e0f507d163254d%2F2018-05-01%2Fhls%2Fplaylist_v1.m3u8&cb=0.49613529045065796

Analyze your site at https://gtmetrix.com Page 69 of 85


YSlow Recommendations

There are 229 redirects

https://px.c1exchange.com/pubpixel/1234844 redirects to https://cms.c1exchange.com/cookie/match/adv/adx/seed?...


https://cms.c1exchange.com/cookie/match/adv/adx/seed?... redirects to https://cm.g.doubleclick.net/pixel?...
https://cm.g.doubleclick.net/pixel?... redirects to https://cm.g.doubleclick.net/pixel?...
https://sb.scorecardresearch.com/b?... redirects to https://sb.scorecardresearch.com/b2?...
https://cm.g.doubleclick.net/pixel?... redirects to https://cm.c1exchange.com/cookie/match?...
https://cm.c1exchange.com/cookie/match?... redirects to https://cms.c1exchange.com/cookie/match/adv/apn/seed?...
https://cms.c1exchange.com/cookie/match/adv/apn/seed?... redirects to https://ib.adnxs.com/getuid?...
https://pixel.watch/vaf4 redirects to https://s3.amazonaws.com/clickmeter.com/Web/static/pixel.gif
https://ib.adnxs.com/getuid?... redirects to https://ib.adnxs.com/bounce?...
https://www.facebook.com/connect/ping?... redirects to https://staticxx.facebook.com/.../RQ7NiRXMcYA.js?...
https://bttrack.com/pixel/cookiesync?... redirects to https://cm.revcontent.com/pixel_sync?...
https://g.cwkuki.com/cs/D8f2l?... redirects to https://cm.revcontent.com/pixel_sync?...
https://ib.adnxs.com/bounce?... redirects to https://cms.c1exchange.com/cookie/match/appnexus?...
https://aa.agkn.com/adscores/g.pixel?... redirects to https://match.adsrvr.org/track/cmf/generic?...
https://aa.agkn.com/adscores/g.pixel?... redirects to https://pixel.mathtag.com/sync/img?...
https://cms.c1exchange.com/cookie/match/appnexus?... redirects to https://pixel.mathtag.com/sync/img?...
https://pixel.mathtag.com/sync/img?... redirects to https://pixel.mathtag.com/sync/img?...
https://match.adsrvr.org/track/cmf/generic?... redirects to https://match.adsrvr.org/track/cmb/generic?...
https://pixel.mathtag.com/sync/img?... redirects to https://aa.agkn.com/adscores/g.pixel?...
https://adserver-us.adtech.advertising.com/.../ADTECH;v=2;cmd=bid;cors=yes;alias=160f7c8cf13922a;bidfloor=0.15;misc=1526366692189 redirects to
https://adserver-
us.adtech.advertising.com/.../ADTECH;cfp=1;rndc=1526366692;v=2;cmd=bid;cors=yes;alias=160f7c8cf13922a;bidfloor=0.15;misc=1526366692189
https://loadus.exelator.com/load/?... redirects to https://loadus.exelator.com/load/?...
https://pixel.mathtag.com/sync/img?... redirects to https://cms.c1exchange.com/cookie/match/mm?...
https://match.adsrvr.org/track/cmb/generic?... redirects to https://adadvisor.net/adscores/g.pixel?...
https://aa.agkn.com/adscores/g.pixel?... redirects to https://pixel.mathtag.com/sync/img/?...
https://adserver-
us.adtech.advertising.com/.../ADTECH;cfp=1;rndc=1526366692;v=2;cmd=bid;cors=yes;alias=160f7c8cf13922a;bidfloor=0.15;misc=1526366692189
redirects to https://adserver-
us.adtech.advertising.com/.../ADTECH;cfp=1;rndc=1526366692;v=2;cmd=bid;cors=yes;alias=160f7c8cf13922a;bidfloor=0.15;misc=1526366692189
https://cms.c1exchange.com/cookie/match/mm?... redirects to https://s6-pixel.c1exchange.com/pubpixel/dmp/1234844?...
https://adadvisor.net/adscores/g.pixel?... redirects to https://aa.agkn.com/adscores/g.pixel?...
https://syndication.twitter.com/i/jot redirects to https://platform.twitter.com/jot.html
https://adserver-us.adtech.advertising.com/.../ADTECH;apid=1A789ec79c-580b-11e8-9111-
2c44fd94659c;cfp=1;rndc=1526366692;v=2;cmd=bid;cors=yes;alias=160f7c8cf13922a;bidfloor=0.15;misc=1526366692189 redirects to https://adserver-
us.adtech.advertising.com/.../ADTECH;apid=1A789ec79c-580b-11e8-9111-
2c44fd94659c;cfp=1;rndc=1526366692;v=2;cmd=bid;cors=yes;alias=160f7c8cf13922a;bidfloor=0.15;misc=1526366692189
https://aa.agkn.com/adscores/g.pixel?... redirects to https://d.agkn.com/pixel/2610/?...
https://ib.adnxs.com/getuidnb?... redirects to https://loadm.exelator.com/load/?...
https://loadm.exelator.com/load/?... redirects to https://d.turn.com/.../?...
https://ap.lijit.com/www/delivery/fpi.js?... redirects to https://ap.lijit.com/www/delivery/js/fpi.js
https://loadm.exelator.com/load/?... redirects to https://loadm.exelator.com/load/?...
https://d.turn.com/.../?... redirects to https://loadm.exelator.com/load/?...
https://pixel.tapad.com/idsync/ex/receive?... redirects to https://pixel.tapad.com/idsync/ex/receive/check?...
https://rtb.adentifi.com/CookieSyncLKQD redirects to https://rtb.adentifi.com/CookieSyncLKQD&cuidcheck
https://x.bidswitch.net/sync?... redirects to https://x.bidswitch.net/ul_cb/sync?...
https://match.adsrvr.org/track/cmf/generic?... redirects to https://cs.lkqd.net/cs?...
https://sync.tidaltv.com/genericusersync.ashx?... redirects to https://sync.tidaltv.com/genericusersync.ashx?...
https://p.adsymptotic.com/d/px?... redirects to https://p.adsymptotic.com/d/px?...
https://stags.bluekai.com/site/37030?... redirects to https://stags.bluekai.com/site/37030?...
https://media.sabio.us/imp_pixel?... redirects to https://cs.lkqd.net/cs?...
https://sync-tm.everesttech.net/upi/pid/1477?... redirects to https://sync-tm.everesttech.net/ct/upi/pid/1477?...
https://um2.eqads.com/um/dm?... redirects to https://dmx.districtm.io/.../174c5830-8905-4d06-9b00-103e88704f9c
https://pixel-a.sitescout.com/dmp/pixelSync?... redirects to https://dmx.districtm.io/.../52af87df-3f8d-4bcd-bc21-1d826dc889c2
https://ib.adnxs.com/getuid?... redirects to //dmx.districtm.io/s/10010/3609532715836771276
https://ap.lijit.com/www/delivery/fpi.js?... redirects to https://ap.lijit.com/www/delivery/js/fpi.js
https://loadm.exelator.com/load/?... redirects to https://e.nexac.com/e/exelate_sync.xgi?...
https://pixel.tapad.com/idsync/ex/receive/check?... redirects to https://match.adsrvr.org/track/cmf/generic?...
https://x.bidswitch.net/ul_cb/sync?... redirects to //cm.g.doubleclick.net/pixel?...
https://sync.tidaltv.com/genericusersync.ashx?... redirects to https://cs.lkqd.net/cs?...
https://loadm.exelator.com/load/?... redirects to https://load77.exelator.com/pixel.gif
https://cm.g.doubleclick.net/pixel?... redirects to https://idsync.rlcdn.com/362358.gif?...
https://match.adsrvr.org/track/cmf/generic?... redirects to https://loadm.exelator.com/load/?...
https://cm.g.doubleclick.net/pixel?... redirects to https://loadm.exelator.com/load/?...
https://aa.agkn.com/adscores/g.pixel?... redirects to http://loadus.exelator.com/load/?...
https://e.nexac.com/e/exelate_sync.xgi?... redirects to https://x.dlx.addthis.com/e/exelate_sync.xgi?...
https://loadm.exelator.com/load/?... redirects to https://load77.exelator.com/pixel.gif
https://loadm.exelator.com/load/?... redirects to https://load77.exelator.com/pixel.gif
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;... redirects to
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745...

Analyze your site at https://gtmetrix.com Page 70 of 85


YSlow Recommendations

https://c.bing.com/c.gif?... redirects to https://m.adnxs.com/seg?...


https://cm.g.doubleclick.net/pixel?... redirects to https://ib.adnxs.com/setuid?...
https://sync.mathtag.com/sync/img?... redirects to https://ib.adnxs.com/setuid?...
https://cm.g.doubleclick.net/pixel?... redirects to https://ib.adnxs.com/mapuid?...
https://odr.mookie1.com/t/v2/sync?... redirects to https://match.adsrvr.org/track/cmf/generic?...
https://p.adsymptotic.com/d/px?... redirects to https://ib.adnxs.com/setuid?...
https://sync.search.spotxchange.com/partner?... redirects to /partner?adv_id=7715&uid=3609532715836771276&__user_check__=1&sync_id=7a69e606-
580b-11e8-abb3-1fdd5b851f01
https://sync-tm.everesttech.net/ct/upi/pid/1477?... redirects to https://dmx.districtm.io/.../WvqB5wAAAKNI-RAl&_test=WvqB5wAAAKNI-RAl
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;... redirects to
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745...
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437746%7C0%7C170%7CADTECH;... redirects to
https://adserver.adtech.advertising.com/addyn%7C3.0%7C10334.1...
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;... redirects to
https://adserver.adtech.advertising.com/addyn%7C3.0%7C10334.1...
https://m.adnxs.com/seg?... redirects to https://m.adnxs.com/mapuid?...
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;... redirects to
https://adserver.adtech.advertising.com/addyn%7C3.0%7C10334.1...
http://loadus.exelator.com/load/?... redirects to http://dpm.demdex.net/ibs:dpid=3&dpuuid=126659f99628a371d9bb2...
https://bcp.crwdcntrl.net/map/c=9380/tp=MGID/tpid=i4eR1FzfRZIn redirects to https://bcp.crwdcntrl.net/.../tpid=i4eR1FzfRZIn
https://adserver.adtech.advertising.com/addyn%7C3.0%7C10334.1%7C4437746%7C0%7C170... redirects to
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437746...
http://dpm.demdex.net/ibs:dpid=3&dpuuid=126659f99628a371d9bb252b16c512cc&redir=ht... redirects to http://dpm.demdex.net/demconf.jpg?...
https://adserver.adtech.advertising.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170... redirects to
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745...
https://adserver.adtech.advertising.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170... redirects to
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745...
https://match.adsrvr.org/track/cmf/generic?... redirects to https://odr.mookie1.com/t/v2/sync?...
https://m.adnxs.com/mapuid?... redirects to https://m.adnxs.com/mapuid?...
https://odr.mookie1.com/t/v2/sync?... redirects to https://cm.g.doubleclick.net/pixel?...
http://dpm.demdex.net/demconf.jpg?... redirects to http://loadm.exelator.com/load/?...
https://cm.g.doubleclick.net/pixel?... redirects to https://odr.mookie1.com/t/v2/sync?...
http://loadm.exelator.com/load/?... redirects to http://load77.exelator.com/pixel.gif
https://ap.lijit.com/www/delivery/fpi.js?... redirects to https://ap.lijit.com/www/delivery/js/fpi.js
https://cm.g.doubleclick.net/pixel?... redirects to https://pixel.advertising.com/ups/55946/sync?...
https://adt.pxl.ace.advertising.com/cfcm.ashx?... redirects to /cfcm.ashx?providerId=1010&extMatch=1&rcode=1&ctst=1
https://match.adsrvr.org/track/cmf/generic?... redirects to https://pixel.advertising.com/ups/55953/sync?...
https://sync.mathtag.com/sync/img?... redirects to https://pixel.advertising.com/ups/55938/sync?...
https://x.bidswitch.net/sync?... redirects to //px.adhigh.net/p/cm/bsw?...
https://p.rfihub.com/cm?... redirects to https://pixel.advertising.com/ups/55856/sync?...
https://ib.adnxs.com/getuid?... redirects to https://pixel.advertising.com/ups/55936/sync?...
https://pixel.quantserve.com/pixel/p-NcBg8UA4xqUFp.gif?... redirects to https://pixel.advertising.com/ups/55965/sync?...
https://aol-match.dotomi.com/match/bounce/current?... redirects to /match/bounce/current?
dtm_test=2aa1f67e64cc062a&networkId=60&version=1&nuid=%7B%7BAPID%7D%7D&rurl=https%3A%2F%2Fpixel.advertising.com%2Fups%2F55853%2Fsync%3F
https://ap.lijit.com/www/delivery/fpi.js?... redirects to https://ap.lijit.com/www/delivery/js/fpi.js
https://ap.lijit.com/www/delivery/fpi.js?... redirects to https://ap.lijit.com/www/delivery/js/fpi.js
https://px.adhigh.net/p/cm/bsw?... redirects to https://x.bidswitch.net/sync?...
https://adt.pxl.ace.advertising.com/cfcm.ashx?... redirects to https://pixel.advertising.com/ups/55937/sync?...
https://ads.avocet.io/getuid?... redirects to /getuid?
bounce=true&url=%2F%2Fx.bidswitch.net%2Fsync%3Fdsp_id%3D59%26user_id%3D%7B%7BUUID%7D%7D%26ssp%3Daol%26bsw_param%3D17127dda-
32bb-42f2-9997-46aef92d6737
https://x.bidswitch.net/sync?... redirects to //pixel.advertising.com/ups/55859/sync?...
https://ads.avocet.io/getuid?... redirects to //x.bidswitch.net/sync?...
https://sync-eu.exe.bid/bidswitch/sync?... redirects to https://sync-eu.exe.bid/bidswitch/sync?...
https://x.bidswitch.net/sync?... redirects to //pixel.advertising.com/ups/55859/sync?...
https://sync-eu.exe.bid/bidswitch/sync?... redirects to https://x.bidswitch.net/sync?...
https://x.bidswitch.net/sync?... redirects to //pixel.advertising.com/ups/55859/sync?...
https://ps.eyeota.net/pixel?... redirects to /pixel/bounce/?pid=51md42u&t=ajs&uid=d679af0dac93f348389a3cb3
https://sync.crwdcntrl.net/.../pv=y?... redirects to https://ce.lijit.com/merge?...
https://us-u.openx.net/w/1.0/cm?... redirects to https://us-u.openx.net/w/1.0/cm?...
https://tags.bluekai.com/site/20486?... redirects to https://ml314.com/csync.ashx?...
https://ps.eyeota.net/pixel?... redirects to https://ml314.com/utsync.ashx?...
https://track.eyeviewads.com/sync/lkqd redirects to https://pixeltrack.eyeviewads.com/check?...
https://sync.tidaltv.com/genericusersync.ashx?... redirects to https://sb.scorecardresearch.com/p?...
https://us-u.openx.net/w/1.0/cm?... redirects to https://cs.lkqd.net/cs?...
https://sync-tm.everesttech.net/upi/pid/aUTuBPNf?... redirects to https://cs.lkqd.net/cs?...
https://bh.contextweb.com/bh/rtset?... redirects to https://cs.lkqd.net/cs?...
https://bh.contextweb.com/bh/rtset?... redirects to https://cs.lkqd.net/cs?...
https://cookie.brealtime.com/getuid?... redirects to https://secure.adnxs.com/getuid?...
https://image8.pubmatic.com/AdServer/ImgSync?... redirects to /AdServer/ImgSync?
p=156759&pu=https%3A%2F%2Fimage4.pubmatic.com%2FAdServer%2FSPug%3Fp%3D156759%26pr%3Dhttps%253A%252F%252Fcs.lkqd.net%252Fcs%253Fp
https://match.adsrvr.org/track/cmf/generic?... redirects to https://pixel.tapad.com/idsync/ex/receive?...

Analyze your site at https://gtmetrix.com Page 71 of 85


YSlow Recommendations

https://sync.mathtag.com/sync/img?... redirects to https://x.bidswitch.net/sync?...


https://p.adsymptotic.com/d/px/?... redirects to https://match.adsrvr.org/track/cmf/generic?...
https://match.adsrvr.org/track/cmf/generic?... redirects to https://tags.bluekai.com/site/5386?...
https://p.rfihub.com/cm?... redirects to https://dsum-sec.casalemedia.com/crum?...
https://ad.turn.com/r/cs?... redirects to https://dsum-sec.casalemedia.com/crum?...
https://sync.mathtag.com/sync/img?... redirects to https://dsum-sec.casalemedia.com/crum?...
https://um.simpli.fi/pm_match?... redirects to https://dsum-sec.casalemedia.com/crum?...
https://secure.adnxs.com/getuid?... redirects to https://dsum-sec.casalemedia.com/crum?...
https://rp.gwallet.com/r1/cm/p104 redirects to https://rp.gwallet.com/r1/cm/p104?...
https://match.adsrvr.org/track/cmf/casale?... redirects to https://dsum-sec.casalemedia.com/crum?...
https://cm.g.doubleclick.net/pixel?... redirects to https://dsum-sec.casalemedia.com/crum?...
https://sync-tm.everesttech.net/upi/pid/ZMAwryCI?... redirects to https://dsum-sec.casalemedia.com/rum?...
https://pixel.quantserve.com/pixel/p-Z8PuJEk6U7Hyq.gif?... redirects to https://dsum-sec.casalemedia.com/rum?...
https://d.adroll.com/cm/index/ssp redirects to https://dsum-sec.casalemedia.com/crum?...
https://a.tribalfusion.com/i.match?... redirects to /z/i.match?p=b20&redirect=https%3A%2F%2Fdsum-
sec.casalemedia.com/crum%3Fcm_dsp_id%3D131%26external_user_id%3D%24TF_USER_ID_ENC%24&cm_dsp_id=131&cm_callback_url=https%3A%2F%2Fds
sec.casalemedia.com%2Fcrum&cm_user_id=WvqB59HM7SUAACpofvsAAAAt
https://x.bidswitch.net/sync?... redirects to //cs.lkqd.net/cs?...
https://ml314.com/utsync.ashx?... redirects to https://ml314.com/csync.ashx?...
https://casale-match.dotomi.com/casale/match?... redirects to /casale/match?dtm_test=736d91089957093c&cm_callback_url=https%3A%2F%2Fdsum-
sec.casalemedia.com%2Fcrum&cm_dsp_id=65&cm_user_id=WvqB59HM7SUAACpofvsAAAAt
https://pm.w55c.net/ping_match.gif?... redirects to https://dsum-sec.casalemedia.com/crum?...
https://cas.pxl.ace.advertising.com/cfcm.ashx?... redirects to https://dsum-sec.casalemedia.com/crum?...
https://pixel-a.sitescout.com/dmp/pixelSync?... redirects to https://dpm.demdex.net/ibs:dpid=82530&dpuuid=52af87df-3f8d-4b...
https://cm.adgrx.com/bridge?... redirects to https://cm.adgrx.com/bridge.gif?...
https://sb.scorecardresearch.com/p?... redirects to https://sync.tidaltv.com/genericusersync.ashx?...
https://tags.bluekai.com/site/5386?... redirects to https://ib.adnxs.com/getuid?...
https://match.adsrvr.org/track/cmf/generic?... redirects to https://p.adsymptotic.com/d/px?...
https://sync.mathtag.com/sync/img?... redirects to https://us-u.openx.net/w/1.0/sd?...
https://ad.turn.com/r/cs?... redirects to https://us-u.openx.net/w/1.0/sd?...
https://sync-tm.everesttech.net/upi/pid/ny75r2x0?... redirects to https://us-u.openx.net/w/1.0/sd?...
https://match.adsrvr.org/track/cmf/openx?... redirects to https://us-u.openx.net/w/1.0/sd?...
https://cm.g.doubleclick.net/pixel?... redirects to https://us-u.openx.net/w/1.0/sd?...
https://cm.g.doubleclick.net/pixel?... redirects to https://ps.eyeota.net/match?...
https://match.adsrvr.org/track/cmf/generic?... redirects to https://ps.eyeota.net/match?...
https://tags.bluekai.com/site/29537?... redirects to https://sync-tm.everesttech.net/upi/pid/2j4ke5f0?...
https://d.turn.com/.../match?... redirects to https://ps.eyeota.net/match?...
https://sync.mathtag.com/sync/img?... redirects to https://ps.eyeota.net/match?...
https://match.adsrvr.org/track/cmf/openx?... redirects to https://us-u.openx.net/w/1.0/sd?...
https://cs.lkqd.net/cs?... redirects to //cs.lkqd.net/cs?...
https://ml314.com/csync.ashx?... redirects to https://ps.eyeota.net/match?...
https://sync-tm.everesttech.net/upi/pid/btu4jd3a?... redirects to https://pixel.rubiconproject.com/tap.php?...
https://token.rubiconproject.com/token?... redirects to https://pr-bh.ybp.yahoo.com/.../KSyp6i4yVdNqev2GPsn5EUdSAgOZEtemQ7w0kco=?...
https://match.adsrvr.org/track/cmf/rubicon redirects to https://pixel.rubiconproject.com/tap.php?...
https://sync.mathtag.com/sync/img?... redirects to https://pixel.rubiconproject.com/tap.php?...
https://cm.g.doubleclick.net/pixel?... redirects to https://pixel.rubiconproject.com/tap.php?...
https://token.rubiconproject.com/token?... redirects to https://cm.g.doubleclick.net/pixel?...
https://i.w55c.net/ping_match.gif?... redirects to https://pixel.rubiconproject.com/tap.php?...
https://pixeltrack.eyeviewads.com/check?... redirects to https://cs.lkqd.net/cs?...
https://p.adsymptotic.com/d/px?... redirects to https://cs.lkqd.net/cs?...
https://sync.tidaltv.com/genericusersync.ashx?... redirects to https://dpm.demdex.net/ibs:dpid=445&dpuuid=14a5004f-d7ab-4fdd...
https://rtb.openx.net/sync/yahoo redirects to https://ads.yahoo.com/cms/v1?...
https://um.simpli.fi/ox_match redirects to https://us-u.openx.net/w/1.0/sd?...
https://rtb.openx.net/sync/dds redirects to https://cm.g.doubleclick.net/pixel?...
https://pixel-a.sitescout.com/dmp/pixelSync?... redirects to https://us-u.openx.net/w/1.0/sd?...
https://p.rfihub.com/cm?... redirects to https://us-u.openx.net/w/1.0/sd?...
https://ox.pxl.ace.advertising.com/cfcm.ashx?... redirects to https://us-u.openx.net/w/1.0/sd?...
https://dpm.demdex.net/ibs:dpid=445&dpuuid=14a5004f-d7ab-4fdd-9955-6df857be8536&r... redirects to https://sync.tidaltv.com/genericusersync.ashx?...
https://cs.lkqd.net/cs?... redirects to //cs.lkqd.net/cs?...
https://secure.adnxs.com/getuid?... redirects to https://cs.lkqd.net/cs?...
https://pixel.tapad.com/idsync/ex/receive?... redirects to https://cs.lkqd.net/cs?...
https://image8.pubmatic.com/AdServer/ImgSync?... redirects to http://cm.g.doubleclick.net/pixel?...
https://sync.tidaltv.com/genericusersync.ashx?... redirects to https://tags.bluekai.com/site/5379?...
http://cm.g.doubleclick.net/pixel?... redirects to http://image2.pubmatic.com/AdServer/Pug?...
https://tag.clrstm.com/sync?... redirects to https://tag.clrstm.com/ul_cb/sync?...
https://tags.bluekai.com/site/5379?... redirects to https://sync.tidaltv.com/genericusersync.ashx?...
https://tap-secure.rubiconproject.com/partner/scripts/rubicon/emily.html?... redirects to https://eus.rubiconproject.com/usync.html
http://image2.pubmatic.com/AdServer/Pug?... redirects to https://image8.pubmatic.com/AdServer/ImgSync?...
https://image8.pubmatic.com/AdServer/ImgSync?... redirects to https://image4.pubmatic.com/AdServer/SPug?...
https://tag.clrstm.com/ul_cb/sync?... redirects to https://x.bidswitch.net/sync?...
https://image4.pubmatic.com/AdServer/SPug?... redirects to https://cs.lkqd.net/cs?...
https://sync.mathtag.com/sync/img?... redirects to https://stags.bluekai.com/site/4448?...

Analyze your site at https://gtmetrix.com Page 72 of 85


YSlow Recommendations

https://sync.tidaltv.com/genericusersync.ashx?... redirects to https://loadm.exelator.com/load/?...


https://ib.adnxs.com/getuid?... redirects to https://stags.bluekai.com/site/3085?...
https://x.bidswitch.net/sync?... redirects to //cs.lkqd.net/cs?...
https://loadm.exelator.com/load/?... redirects to https://load77.exelator.com/pixel.gif
https://pixel-a.sitescout.com/dmp/pixelSync?... redirects to https://pixel.rubiconproject.com/tap.php?...
https://ad.turn.com/r/cs?... redirects to https://pixel.rubiconproject.com/tap.php?...
https://um.simpli.fi/rb_match redirects to https://pixel.rubiconproject.com/tap.php?...
https://rub.pxl.ace.advertising.com/cfcm.ashx?... redirects to https://pixel.rubiconproject.com/tap.php?...
https://sync.ipredictive.com/d/sync/cookie/generic?... redirects to https://pixel.rubiconproject.com/tap.php?...
https://rbp.mxptint.net/sn.ashx redirects to https://pixel.rubiconproject.com/tap.php?...
https://p.rfihub.com/cm?... redirects to https://pixel.rubiconproject.com/tap.php?...
http://match.adsrvr.org/track/cmf/generic?... redirects to http://image2.pubmatic.com/AdServer/Pug?...
http://image2.pubmatic.com/AdServer/Pug?... redirects to https://image8.pubmatic.com/AdServer/ImgSync?...
https://p.rfihub.com/cm?... redirects to https://simage2.pubmatic.com/AdServer/Pug?...
https://simage2.pubmatic.com/AdServer/Pug?... redirects to https://image8.pubmatic.com/AdServer/ImgSync?...
https://casale-match.dotomi.com/casale/match?... redirects to https://dsum-sec.casalemedia.com/crum?...
https://a.tribalfusion.com/z/i.match?... redirects to https://dsum-sec.casalemedia.com/crum?...
https://dpm.demdex.net/ibs:dpid=82530&dpuuid=52af87df-3f8d-4bcd-bc21-1d826dc889c2... redirects to https://pixel.tapad.com/idsync/ex/push?...
https://pixel.tapad.com/idsync/ex/push?... redirects to https://dsum-sec.casalemedia.com/rum?...
https://rp.gwallet.com/r1/cm/p104?... redirects to https://dsum-sec.casalemedia.com/crum?...
https://cm.adgrx.com/bridge.gif?... redirects to https://dsum-sec.casalemedia.com/crum?...
https://sync-tm.everesttech.net/upi/pid/2j4ke5f0?... redirects to https://tags.bluekai.com/site/4413?...
https://pr-bh.ybp.yahoo.com/.../KSyp6i4yVdNqev2GPsn5EUdSAgOZEtemQ7w0kco=?... redirects to https://pixel.rubiconproject.com/tap.php?...
https://ads.yahoo.com/cms/v1?... redirects to https://cookiex.ngd.yahoo.com/ack?...
https://loadus.exelator.com/load/?... redirects to https://sync.crwdcntrl.net/map/c=3859/tp=VISD/?...
https://ads.yahoo.com/cms/v1?... redirects to https://cookiex.ngd.yahoo.com/ack?...
https://sync.crwdcntrl.net/map/c=3859/tp=VISD/?... redirects to https://loadm.exelator.com/load/?...
https://cm.g.doubleclick.net/pixel?... redirects to https://rtb.openx.net/sync/dds?...
https://sync.mathtag.com/sync/img?... redirects to https://idsync.rlcdn.com/47154.gif?...
https://pm.w55c.net/ping_match.gif?... redirects to https://tags.bluekai.com/site/2964?...
https://p.rfihub.com/cm?... redirects to https://tags.bluekai.com/site/4722?...
https://pixel.tapad.com/idsync/ex/receive?... redirects to https://stags.bluekai.com/site/13583?...
https://match.rundsp.com/bk?... redirects to https://tags.bluekai.com/site/15525?...
https://usermatch.krxd.net/um/v2?... redirects to https://stags.bluekai.com/site/26357?...
https://bluekai-eicm-global.dsp.io/blk?... redirects to https://tags.bluekai.com/site/43696?...
https://pixel.quantserve.com/pixel/p-mp2sz_fNqt6Bt.gif?... redirects to https://stags.bluekai.com/site/16365?...
https://r.turn.com/.../https%3A%2F%2Ftags.bluekai.com%2Fsite%2F4499%3Fid%3D%24!%7BTURN_UUID%7D%26BK_SWAP_DEST%3D4499%26r%3D1
redirects to https://tags.bluekai.com/site/4499?...
https://pixel-a.sitescout.com/connectors/bluekai/usersync?... redirects to https://tags.bluekai.com/site/17724?...
https://tags.bluekai.com/site/17724?... redirects to https://bk.addthis.com/site/55122?...

Use cookie-free domains F (0) AVG SCORE: 49% COOKIE LOW

There are 287 components that are not cookie-free

https://images.girlsaskguys.com/content/css/desktop.min.css?29912
https://images.girlsaskguys.com/content/css/desktop-question.min.css?29912
https://www.girlsaskguys.com/brand-styles?v=1613
https://images.girlsaskguys.com/content/images/desktop/gag-logo@2x.png
https://images.girlsaskguys.com/custom/topics/sports-new.jpg
https://images.girlsaskguys.com/custom/topics/womensbehavior.jpg
https://images.girlsaskguys.com/custom/topics/mensbehavior.jpg
https://images.girlsaskguys.com/custom/topics/flirting.jpg
https://images.girlsaskguys.com/custom/topics/dating.jpg
https://images.girlsaskguys.com/custom/topics/relationships.jpg
https://images.girlsaskguys.com/custom/topics/style.jpg
https://images.girlsaskguys.com/custom/topics/generalhealth.jpg
https://images.girlsaskguys.com/custom/topics/marriage.jpg
https://images.girlsaskguys.com/custom/topics/breakup.jpg
https://images.girlsaskguys.com/custom/topics/education.jpg
https://images.girlsaskguys.com/custom/topics/arts.jpg
https://images.girlsaskguys.com/custom/topics/parents-family.jpg
https://images.girlsaskguys.com/custom/topics/food-beverage.jpg
https://images.girlsaskguys.com/custom/topics/girlsaskguys.jpg
https://images.girlsaskguys.com/custom/topics/howdoilook.jpg
https://images.girlsaskguys.com/custom/topics/other.jpg
https://images.girlsaskguys.com/custom/topics/religion.jpg
https://images.girlsaskguys.com/custom/topics/giftsforwomen.jpg
https://images.girlsaskguys.com/custom/topics/politics.jpg
https://images.girlsaskguys.com/custom/topics/tech.jpg
https://images.girlsaskguys.com/custom/topics/travel.jpg

Analyze your site at https://gtmetrix.com Page 73 of 85


YSlow Recommendations

https://images.girlsaskguys.com/custom/topics/news.jpg
https://images.girlsaskguys.com/custom/useravatars/anonymous_guy.png
https://images.girlsaskguys.com/users/b0faa237caaf33be4abc3ff16bcfcde2/thumb.jpg?2
https://images.girlsaskguys.com/users/cb59975165c7d4db18d47ce4f6b671df/thumb.jpg?1
https://images.girlsaskguys.com/users/d7003ccb54f220dcf951cd593f321c56/thumb.jpg?3
https://images.girlsaskguys.com/custom/useravatars/explorer.jpg
https://images.girlsaskguys.com/custom/useravatars/social-beast.jpg
https://delivery.vidible.tv/jsonp/pid=5952b3519e45102b384dc50e/57d325e276a6057ba4a05a00.js
https://images.girlsaskguys.com/users/a94200cf6ff18070881e806ca7122d6f/thumb.jpg?0
https://images.girlsaskguys.com/custom/useravatars/technophile.jpg
https://images.girlsaskguys.com/custom/useravatars/don-juan.jpg
https://images.girlsaskguys.com/users/407a1fe82081edfe2142a1bd712333ae/thumb.jpg?103
https://images.girlsaskguys.com/custom/vod.js?v=3
https://images.girlsaskguys.com/custom/Logos/gag-signup-1.gif
https://images.girlsaskguys.com/custom/useravatars/girly-girl.jpg
https://images.girlsaskguys.com/content/js/core.min.js?29912
https://images.girlsaskguys.com/content/js/desktop-question.min.js?29912
https://images.girlsaskguys.com/Content/images/gag-icon-sprites_2x.png?29912
https://images.girlsaskguys.com/Content/images/desktop/icons/login.png
https://images.girlsaskguys.com/Content/images/gag-sprites_2x.png?29912
https://jadserve.postrelease.com/t?ntv_url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-u
sed-bitcoin-before
https://apis.google.com/js/platform.js?onload=gpCallback
https://images.girlsaskguys.com/Content/images/desktop/nocover-girl.png
https://images.girlsaskguys.com/Content/images/desktop/icons/ico-hdr-video.png
https://securepubads.g.doubleclick.net/gampad/ads?gdfp_req=1&correlator=2457677432378127&output=json_html&callback=googletag.impl.pubads.call
backProxy1&impl=fifs&adsid=NT&json_a=1&hxva=1&scor=534807511884682&vrg=205&guci=2.2.0.0.2.2&sc=1&sfv=1-0-23&iu_parts=281896196%2CGirl
sAskGuys_Desktop_Masthead%2CGirlsAskGuys_Desktop_Right_1%2CGirlsAskGuys_Desktop_Right_2%2CGirlsAskGuys_Desktop_AboveOpinions%2C
GirlsAskGuys_Desktop_BetweenGender%2CGirlsAskGuys_Desktop_UnderOpinions%2CGirlsAskGuys_Desktop_Inter_1%2CGirlsAskGuys_Desktop_End
OfPage%2CGirlsAskGuys_Desktop_Inter_2%2CGirlsAskGuys_Desktop_Inter_4&enc_prev_ius=%2F0%2F1%2C%2F0%2F2%2C%2F0%2F3%2C%2F0%2
F4%2C%2F0%2F5%2C%2F0%2F6%2C%2F0%2F7%2C%2F0%2F8%2C%2F0%2F9%2C%2F0%2F10&prev_iu_szs=320x50%7C300x250%7C728x90%7
C970x250%7C730x250%2C320x50%7C300x250%2C320x50%7C300x250%7C300x600%2C320x50%7C728x90%7C730x400%7C300x250%7C336x280
%7C730x250%2C320x50%7C728x90%7C730x400%7C300x250%7C336x280%7C730x250%2C320x50%7C728x90%7C730x400%7C730x500%7C300x2
50%7C336x280%7C730x250%2C1x1%2C320x50%7C728x90%7C730x400%7C300x250%7C336x280%7C730x250%2C1x1%2C1x1&fluid=height%2Chei
ght%2Cheight%2Cheight%2Cheight%2Cheight%2C0%2Cheight%2C0%2C0&eri=4&cust_params=XperLevel%3D0%26utm_source%3DNone%26utm_m
edium%3DNone%26utm_campaign%3DNone%26PostInfo%3Dq2198181%26Gender%3DUnknownGender%26Age%3DUnknownAge%26Topics%3Doth
er%26Mobile%3DMobileNo%26MarkedAs%3DFalse%26ShowAllAds%3DYes%26PageType%3DQuestion%26BrandId%3DGAG-0&cookie_enabled=1&bc=
5&abxe=1&lmt=1526366687&dt=1526366687202&frm=20&biw=1366&bih=768&oid=3&adxs=0%2C-9%2C-9%2C163%2C163%2C163%2C-9%2C163%2
C-9%2C-9&adys=0%2C-9%2C-9%2C2091%2C3085%2C4760%2C-9%2C4860%2C-9%2C-9&adks=2967190282%2C1923088448%2C3698094709%2C
500454048%2C2910813795%2C2966204064%2C2385381749%2C1564585714%2C2376667967%2C650677945&gut=v2&ifi=1&u_tz=-420&u_his=2&u_
h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=24&u_nplug=4&u_nmime=5&u_sd=1&flash=0&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother
%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&dssz=33&icsg=2147625472&std=0&vis=1&scr_x=0&scr_y=0&psz=1050x90
%7C0x0%7C0x0%7C737x90%7C737x90%7C737x90%7C0x0%7C737x90%7C0x0%7C0x0&ga_vid=75672216.1526366687&ga_sid=1526366687&ga_hid
=68999944
https://securepubads.g.doubleclick.net/gpt/pubads_impl_rendering_205.js
https://images.girlsaskguys.com/Content/images/desktop/icons/social_bar.png
https://jadserve.postrelease.com/trk.gif?ntv_ui=a7b1090e-8006-4718-a0de-728c666156e6&ntv_ht=34H6WgA&ntv_hu=1580869101&ntv_at=303,302&ntv_a
=AAAAAAAAAAGVoDA&ord=1526366687475&ntv_dpl=1008,1011,1001,1003,1021,1006,1022,1007
https://gag.gagwebapi.com/api/webpush/script?token=&client=ChromeDesktop
https://www.facebook.com/tr/?id=781946178525195&ev=PageView&dl=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-wh
at-bitcoin-is-have-you-ever-used-bitcoin-before&rl=&if=false&ts=1526366688109&sw=1367&sh=858&v=2.8.14&r=stable&ec=0&o=28&it=1526366687370
https://api.content-ad.net/Scripts/widget2.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403809&cb=152
6366688214
https://api.content-ad.net/Scripts/widget2.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403806&cb=1526
366688264
https://trends.revcontent.com/serve.js.php?w=95566&t=rc_845&c=1526366686700&width=1366&referer=https%3A%2F%2Fwww.girlsaskguys.com%2Foth
er%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
https://www.facebook.com/tr/?id=781946178525195&ev=ViewContent&dl=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-
what-bitcoin-is-have-you-ever-used-bitcoin-before&rl=&if=false&ts=1526366688444&cd[content_name]=https%3A%2F%2Fwww.girlsaskguys.com%2Fother
%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&cd[content_type]=product&cd[content_category]=Other&cd[content_ids]=%2
Fquestion%2F2198181&cd[gender]=None&cd[xper_level]=0&cd[topics_follow]=undefined&cd[visitor]=Guest&cd[mobile]=false&sw=1367&sh=858&v=2.8.14
&r=stable&ec=1&o=28&it=1526366687370
https://www.facebook.com/tr/?id=781946178525195&ev=ViewPage&dl=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-wh
at-bitcoin-is-have-you-ever-used-bitcoin-before&rl=&if=false&ts=1526366688445&cd[PagePath]=%2Fquestion%2F2198181&cd[topic_link]=other&cd[displa
y_topic_link]=other&sw=1367&sh=858&v=2.8.14&r=stable&ec=2&o=28&it=1526366687370
https://cdn.revcontent.com/build/css/rev2.min.css?v=c75d860790cfbd475402bedb463df89716d9b597
https://cdn.revcontent.com/build/js/rev2.min.js?v=c75d860790cfbd475402bedb463df89716d9b597&del=//trends.revcontent.com/&lg=//cdn.revcontent.com/a
ssets/img/rc-logo.png&ci=//cdn.revcontent.com/assets/img/icon-close.png&ab=//trends.revcontent.com/rc-about.php&ldr=//cdn.revcontent.com/assets/img/rc
-spinner-md.gif&ht=//trends.revcontent.com/rc-interests.php
https://sb.scorecardresearch.com/beacon.js
https://pixel.quantserve.com/pixel/p-aD1qr93XuF6aC.gif?labels=Publishers.Publisher-88920,Widgets.Widget-95566
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/1502817721.jpg&static=true&pos=face&h=315&w=420&static=tru

Analyze your site at https://gtmetrix.com Page 74 of 85


YSlow Recommendations

e&fmt=jpeg
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15251659200349305815.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15262929340920703819.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg
https://api.content-ad.net/GetWidget.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403809&cb=1526366688214
&lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have
-you-ever-used-bitcoin-before&ik=2018051423_1869389dcee2038fe3db57c92dea4bf2&ikb=1869389dcee2038fe3db57c92dea4bf2&duid=62f783a306061
9beb771c6b446f4a3ad3ab622696a1d0a6db5c4de3ff9603624&ls=ip-172-18-62-183&dstlload=true
https://api.content-ad.net/GetWidget.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403806&cb=1526366688264&
lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-y
ou-ever-used-bitcoin-before&ik=2018051423_3fad3bdde3fd1e0f97fa276662009b15&ikb=3fad3bdde3fd1e0f97fa276662009b15&duid=62f783a3060619be
b771c6b446f4a3ad3ab622696a1d0a6db5c4de3ff9603624&ls=ip-172-18-62-183&dstlload=true
https://cm.revcontent.com/pixel_sync?exchange_uid=MTQxMTk3ZDc5MzJhNmZiYmY5MDQxN2MzN2Q2NDZjMDg%3D&bidder=112&bidder_uid=76e95d90-
580b-11e8-b85a-0242ac110003
https://cm.revcontent.com/pixel_sync?bidder=109&bidder_uid=d5180cdd-1a3d-4799-a65b-def1efef7f14&exchange_uid=MTQxMTk3ZDc5MzJhNmZiYmY5M
DQxN2MzN2Q2NDZjMDg=
https://api.content-ad.net/pixel.gif?s=ip-172-18-62-183&ip=204.187.14.74&wid=403809&cb=1526366690098&c=CA&d=&ik=2018051423_1869389dcee203
8fe3db57c92dea4bf2
https://api.content-ad.net/px.gif
https://api.content-ad.net/pixel.gif?s=ip-172-18-60-165&ip=204.187.14.74&wid=403806&cb=1526366690115&c=CA&d=&ik=2018051423_3fad3bdde3fd1e0
f97fa276662009b15
https://ad.lkqd.net/vpaid/vpaid.js?fusion=1.0
https://ib.adnxs.com/jpt?callback=Cbola_pbjs.handleAnCB&callback_uid=2ba004cae0d5ec&psa=0&id=13215177&size=300x250&referrer=https%3A%2F%
2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
https://ib.adnxs.com/jpt?callback=Cbola_pbjs.handleAnCB&callback_uid=6d2fe9975e31c9&psa=0&id=12723446&size=300x250&referrer=https%3A%2F%
2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
https://prebid.districtm.ca/lib.js
https://pixel.quantserve.com/pixel;r=897445429;labels=Publishers.Publisher-88920%2CWidgets.Widget-95566;rf=0;a=p-aD1qr93XuF6aC;url=https%3A%2
F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;fpan=1;fpa=P0-713761539-15263666
92357;ns=0;ce=1;cm=;ref=;je=0;sr=1367x858x24;enc=n;dst=1;et=1526366692356;tzo=420;ogl=title.Do%20you%20know%20what%20BitCoin%20is%3F%
20Have%20you%20ever%20used%20BitCoin%20before%3F%2Cdescription.Has%20anyone%20here%20ever%20heard%20of%20BitCoin%20or%20kno
w%20what%20BitCoin%20is%3F%20%20%20If%20you%20do%252C%20and%20%2Ctype.article%2Curl.https%3A%2F%2Fwww%252Egirlsaskguys%2
52Ecom%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you%2Csite_name.GirlsAskGuys%2Cimage.https%3A%2F%2Fcf%252Egirlsaskguys%
252Ecom%2Fq2198181%2Fprimary-share%252Epng%3F88%2Cimage%3Awidth.1200%2Cimage%3Aheight.630
https://loadus.exelator.com/load/?p=233&g=001&j=d&xl8blockcheck=1
https://adservice.google.com/adsid/integrator.js?domain=tpc.googlesyndication.com
https://pixel.mathtag.com/sync/img/?mt_exid=10009&mt_exuid=263790302691003053765
https://servicer.mgid.com/114115/1?w=730&h=107&cols=4&pv=6&cbuster=1526366693395257590151&ref=https%3A%2F%2Fwww.girlsaskguys.com%2F
other%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&iframe=1&pageView=1&pvid=163628b68198076f2e7
https://ib.adnxs.com/jpt?callback=Cbola_pbjs.handleAnCB&callback_uid=312c28c5a192e57&psa=0&id=13215177&size=300x250&referrer=https%3A%2F
%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
https://d.agkn.com/pixel/2610/?che=1526366693&sk=263790302691003053765&pd=&puid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d
https://idsync.rlcdn.com/464986.gif?partner_uid=HBWWofwDhq0
https://secure.adnxs.com/async_usersync?cbfn=AN_async_load
https://ap.lijit.com/www/delivery/js/fpi.js
https://ads.rubiconproject.com/ad/17174.js
https://cm.mgid.com/i.js
https://imgg-cdn.mgid.com/2543/2543365_492x328.jpg
https://imgg-cdn.mgid.com/2591/2591379_492x328.jpg
https://imgg-cdn.mgid.com/2560/2560061_492x328.jpg
https://imgg-cdn.mgid.com/2741/2741147_492x328.jpg
https://ib.adnxs.com/jpt?callback=Cbola_pbjs.handleAnCB&callback_uid=510e67b231c6fbc&psa=0&id=13215177&size=300x250&referrer=https%3A%2F
%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
https://ap.lijit.com/sync
https://ads.rubiconproject.com/header/11406.js?ns=11406
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.006775474426035322&7899512393
https://optimized-by.rubiconproject.com/a/17174/163796/883438-15.js?&cb=0.9999036834783079&tk_st=1&rf=https%3A//www.girlsaskguys.com/other/q21
98181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&rp_s=c&p_pos=btf&p_screen_res=1367x858&ad_slot=163796_15&rp_secure=1
https://load77.exelator.com/pixel.gif
https://idsync.rlcdn.com/362358.gif?google_gid=CAESEAtpFF_E3T_nBSazuRGJnRs&google_cver=1
https://ap.lijit.com/adcfg?zoneid=316485&tid=d006146e1e97499ca713107b34f745a5c1961f2a&mode=1&dmn=www.girlsaskguys.com
https://x.dlx.addthis.com/e/exelate_sync.xgi?na_exid=126659f99628a371d9bb252b16c512cc
https://ap.lijit.com/adcfg?zoneid=491736&tid=8ad803ae4f36424ab2dcbc4e5661474606190e19&mode=1&dmn=www.girlsaskguys.com
https://dmx.districtm.io/s/10010/3609532715836771276
https://ss3.zedo.com/utils/zplayer/wrapper/v8.7/wrapper.js
https://ss3.zedo.com/jsc/images/zplayer/inarticle-Watch-Text-Btn-rbg.png
https://ss3.zedo.com/jsc/images/zplayer/inarticle-Play-Btn.png
https://ap.lijit.com/addelivery?zoneid=316485&tid=a_316485_baa038723ac140569be456b28c15de69&cb=07622300&mode=1&flv=0.0.0&ifr=true&od=www
.girlsaskguys.com&time=06%3A44%3A54&fd=2&be=cr&loc=https%3A%2F%2Fwww.girlsaskguys.com&orig_loc=http%3A%2F%2Fhttps%3A%2F%2Fwww.
girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&abf=true&dpz=false&cv=06f3be7&dop=0&ndw=

Analyze your site at https://gtmetrix.com Page 75 of 85


YSlow Recommendations

1&spif=true&btid=a_316485_baa038723ac140569be456b28c15de69
https://ap.lijit.com/addelivery?zoneid=491736&tid=a_491736_b290dc7f7ef846bfad12ef3a80bb1753&cb=38501367&mode=1&flv=0.0.0&ifr=true&od=www.gi
rlsaskguys.com&time=06%3A44%3A55&fd=2&be=cr&loc=https%3A%2F%2Fwww.girlsaskguys.com&orig_loc=http%3A%2F%2Fhttps%3A%2F%2Fwww.girl
saskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&abf=true&dpz=false&cv=06f3be7&dop=0&ndw=1&s
pif=true&btid=a_316485_baa038723ac140569be456b28c15de69
https://as-sec.casalemedia.com/cygnus?v=8&fn=__pwhbjs__.handleCygnusResponse&s=241978&r=%7B%22id%22%3A%223dff104f958062%22%2C%
22imp%22%3A%5B%7B%22id%22%3A%22495cf23d116cc1%22%2C%22ext%22%3A%7B%22siteID%22%3A241978%2C%22sid%22%3A%22pr_1_1_s
%22%7D%2C%22video%22%3A%7B%22protocols%22%3A%5B2%2C5%2C3%2C6%5D%2C%22maxduration%22%3A300%2C%22minduration%22%3
A5%2C%22mimes%22%3A%5B%22video%2Fmp4%22%2C%22video%2Fwebm%22%5D%2C%22startdelay%22%3A0%2C%22linearity%22%3A1%2C
%22w%22%3A640%2C%22h%22%3A480%7D%7D%5D%2C%22site%22%3A%7B%22page%22%3A%22https%3A%2F%2Fwww.girlsaskguys.com%2F
other%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before%22%7D%7D
https://g2.gumgum.com/visitor/digitrust?dti=H8QIaPNNpY57TBhCenzcD8VsnmZczUpE9r5QCetBufJIFsxaG7z4jGNfqtdjaV9330GC7lklt%2Bfjy535ZC%2BiNnJ
QwtnPQYiJlE%2BFJNH8YEUiqqTVdjaqwd2qLENYilxKxjhgj90WSGxXofDxHTYA92hQbr1i%2BX6incaS%2FrxPqmYMJ71rteeRdW94mvqJu3VLRabRpNDOUV
VVm79gQ7nzTQTBPP1mfrfk06JF%2Fk88tapsKJhtNZMnRpmulDF%2BNOJql13o9R239wzknrfA9M02qplVX1bJeVOiKRgGnHOIOiOMBzb1eioB36LVMv9pV%2
BvFu%2FniDQPuAIzA4OFXv44hNw%3D%3D&dtk=4&domain=www.girlsaskguys.com
https://dmx.districtm.io/s/10001/52af87df-3f8d-4bcd-bc21-1d826dc889c2
https://beacon.walmart.com/etap.gif?tap=appnexus&thirdpartyuserid=3609532715836771276
https://pr-bh.ybp.yahoo.com/sync/msft/3609532715836771276
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=FROS%20-%20CO%
20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps=html5-vpaid&rcid=551440471146fb0d084da
510&rid=572a5079e4b0fb7d4078f6b5&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=56a11164e4b0
5fb5460fcca3&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://ib.adnxs.com/setuid?entity=101&uid=3609532715836771276&code=CAESEFeVfqtbfCXcUOYM1zcS1Aw&google_cver=1
https://ib.adnxs.com/mapuid?member=181&user=&google_gid=CAESEMNiQPHHWeStIWAOs8DOWbU&google_cver=1
https://dmx.districtm.io/s/10016/WvqB5wAAAKNI-RAl&_test=WvqB5wAAAKNI-RAl
https://dmx.districtm.io/s/10008/174c5830-8905-4d06-9b00-103e88704f9c
https://ib.adnxs.com/setuid?entity=8&code=30c15afa-5048-4600-a17d-e2a85c24ab94
https://ib.adnxs.com/setuid?entity=281&code=8c0580ce0ae2528e0982e95b4c73cebe
https://cm.steepto.com/setmuidn/?muidn=i4eR1FzfRZIn
https://ss3.zedo.com/utils/zplayer/wrapper/v8.7/HTML/app/assets/images/10k.gif
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:1248}];et=1250;eid=114;ai=RB%20Fastlane%5Erubicon%5E372688_
1-640-480%5E%5E1222;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e
=e;z=0.557270568495744&6553624559
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:1248}];et=1250;eid=114;ai=RB%20Fastlane%5Erubicon_preroll%5E3
72688_1-640-480%5E%5E1225;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-
before;e=e;z=0.557270568495744&1338601830
https://sync.search.spotxchange.com/partner?adv_id=7715&uid=3609532715836771276&__user_check__=1&sync_id=7a69e606-580b-11e8-abb3-1fdd5b
851f01
https://c.mgid.com/c?pv=2&f=1&v=175|117|40|t3SkLumE1fGzFUmeN7bgZX2vteKohlvoKwCsHz4D8KRFPCLNZxWy4FtDO5GzsWYI&fw=1&v=175|117|8|t3SkL
umE1fGzFUmeN7bgZdZGOVzxUQOZ_8qMogHxZpi0VggZ2pY-UeVoUWKM34yY&v=175|117|8|t3SkLumE1fGzFUmeN7bgZSkShrTRYCsuS-nx8rsCh-tbw6Czo
csgexseJRUfDRfG&v=175|117|24|t3SkLumE1fGzFUmeN7bgZVD6Di1r6RJcvvLwPDcJHOVjWMheh5otq3eUphFtRW55&tt=Direct&cid=114115&h2=i6dDxqFY
AGENzktqx-WUzbXB6o71t44bIfJ2ThSkKus*
https://bcp.crwdcntrl.net/map/ct=y/c=9380/tp=MGID/tpid=i4eR1FzfRZIn
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437746%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd94659c;cfp
=1;rndc=1526366695;loc=100;target=_blank;misc=abbd5211&_ADTIME_&$RANDOM&&;rdclick=
https://m.adnxs.com/mapuid?member=280&user=282CD077347D6B042529DB87307D68CB;
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd94659c;cfp
=1;rndc=1526366695;loc=100;target=_blank;misc=%7Brandom%7D&_ADTIME_&$RANDOM&&;rdclick=
https://adserver.adtechus.com/addyn%7C3.0%7C10334.1%7C4437745%7C0%7C170%7CADTECH;apid=1A789ec79c-580b-11e8-9111-2c44fd94659c;cfp
=1;rndc=1526366695;loc=100;target=_blank;misc=a6bb5ad6&_ADTIME_&$RANDOM&&;rdclick=
https://ad.afy11.net/ad?mode=10&sspid=585
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:2558}];eid=58;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q
2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.7819638443337706&2618815769
https://ss3.zedo.com/utils/zplayer/wrapper/v8.7/HTML/app/scripts/all.min.js
https://odr.mookie1.com/t/v2/sync?tagid=V2_2739&src.visitorId=CAESEN-liHBbbpDjQSnJOplfkW4&google_cver=1
http://load77.exelator.com/pixel.gif
https://ap.lijit.com/adcfg?zoneid=495079&tid=122211ed6038423985c3803c433a298f71b93ff2&mode=1&dmn=www.girlsaskguys.com
https://ap.lijit.com/adcfg?zoneid=495077&tid=9ae9aa1968f04637bb89afdfc67331217b13f68e&mode=1&dmn=www.girlsaskguys.com
https://ap.lijit.com/adcfg?zoneid=495077&tid=8f627a97b3dd4e8f934e6a98edd0bfad555b381c&mode=1&dmn=www.girlsaskguys.com
https://ss3.zedo.com/utils/zplayer/wrapper/v8.7/HTML/app/styles/themes/default/videogular.min.css
https://ap.lijit.com/addelivery?zoneid=495079&tid=a_495079_05d850d5b3854fbd9d3e9a0319ac3914&cb=68600842&mode=1&flv=0.0.0&ifr=true&od=www.
girlsaskguys.com&time=06%3A44%3A58&fd=2&be=cr&loc=https%3A%2F%2Fwww.girlsaskguys.com&orig_loc=http%3A%2F%2Fhttps%3A%2F%2Fwww.g
irlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&abf=false&dpz=false&cv=06f3be7&dop=0&ndw=1
&spif=true&btid=a_316485_baa038723ac140569be456b28c15de69
https://ap.lijit.com/addelivery?zoneid=495077&tid=a_495077_484a26e1d6204cb490d98d105b3a92d1&cb=20944266&mode=1&flv=0.0.0&ifr=true&od=www
.girlsaskguys.com&time=06%3A44%3A58&fd=2&be=cr&loc=https%3A%2F%2Fwww.girlsaskguys.com&orig_loc=http%3A%2F%2Fhttps%3A%2F%2Fwww.
girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&abf=true&dpz=false&cv=06f3be7&dop=0&ndw=
1&spif=true&btid=a_316485_baa038723ac140569be456b28c15de69
https://ap.lijit.com/addelivery?zoneid=495077&tid=a_495077_3a235fdd3eae494c8bb23d4201e02921&cb=72778892&mode=1&flv=0.0.0&ifr=true&od=www.
girlsaskguys.com&time=06%3A44%3A58&fd=2&be=cr&loc=https%3A%2F%2Fwww.girlsaskguys.com&orig_loc=http%3A%2F%2Fhttps%3A%2F%2Fwww.g

Analyze your site at https://gtmetrix.com Page 76 of 85


YSlow Recommendations

irlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&abf=false&dpz=false&cv=06f3be7&dop=0&ndw=1
&spif=true&btid=a_316485_baa038723ac140569be456b28c15de69
https://ss3.zedo.com/jsc/images/zplayer/inarticle-Pause-Btn.png
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=Oath%201V%20-%2
0AOL%20-%20VAN%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23
&rid=5ade879442b071692878a4c7&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41
110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://cdn.mgid.com/js/perfect-scrollbar.js
https://media.carambo.la/PSA2/adc_tea_goodfit_300x250.jpg
https://vap4sfo1.lijit.com/addelivery/impression?bannerid=184916&campaignid=232&cb=04111052&tid=a_491736_b290dc7f7ef846bfad12ef3a80bb1753&
zoneid=491736&cids=232&bids=184916&tss=5
https://vap4sfo1.lijit.com/data/fp?tid=a_495079_05d850d5b3854fbd9d3e9a0319ac3914&zoneid=495079&starttime=1526366697643&adcfg=8&adcfg_resp
onse=462&addelivery=470&addelivery_response=1228&lgfired=1746&container=1755&EOL=1755&ctstart=1749&elapsed_ms=1755
https://media.carambo.la/PSA2/adc_sb3_boy_300x250.jpg
https://vap4sfo1.lijit.com/addelivery/impression?bannerid=186041&campaignid=232&cb=46731447&tid=a_495077_484a26e1d6204cb490d98d105b3a92d
1&zoneid=495077&cids=232&bids=186041&tss=5
https://vap4sfo1.lijit.com/data/fp?tid=a_495077_484a26e1d6204cb490d98d105b3a92d1&zoneid=495077&starttime=1526366697675&adcfg=6&adcfg_res
ponse=480&addelivery=483&addelivery_response=1206&lgfired=1756&container=1762&EOL=1763&ctstart=1759&elapsed_ms=1763
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=Oath%201V%20-%2
0AOL%20-%20Rest%20of%20Brands%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09
eab108e072da23&rid=5ade830747fd696c810db0b7&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=5
69fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://video-ads.rubiconproject.com/video/bridge-30638.js
https://media.carambo.la/PSA2/adc_twe_brawl_300x250.jpg
https://vap4sfo1.lijit.com/addelivery/impression?bannerid=100898&campaignid=232&cb=11665602&tid=a_316485_baa038723ac140569be456b28c15de6
9&zoneid=316485&cids=232&bids=100898&tss=2
https://vap4sfo1.lijit.com/data/fp?tid=a_495077_3a235fdd3eae494c8bb23d4201e02921&zoneid=495077&starttime=1526366697693&adcfg=1&adcfg_resp
onse=486&addelivery=488&addelivery_response=1201&lgfired=1859&container=1870&EOL=1870&ctstart=1861&elapsed_ms=1870
https://cdn.tynt.com/ids.js
https://pd.sharethis.com/pd/sovrn
https://ce.lijit.com/merge?pid=5176&3pid=1
https://ap.lijit.com/data/ct?tid=a_495077_484a26e1d6204cb490d98d105b3a92d1&zoneid=495077&cid=18&geo=CA&all_tags=138%2C151%2C185%2C1
98%2C209%2C214%2C215%2C219%2C227%2C228%2C229%2C230%2C231%2C232%2C237%2C238%2C239%2C241%2C265%2C277%2C290&ts
s=425%2C427%2C458%2C475&fired_tags=138%2C151%2C265%2C290&count=4&status=1%2C1%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2
C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C1%2C8%2C1&elapsed_ms=477
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=Oath%201V%20-%2
0AOL%20-%20VAN%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5a
de94d85c6617767c385912&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=569fa372e4b0e41110650
e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://ap.lijit.com/data/ct?tid=a_495077_3a235fdd3eae494c8bb23d4201e02921&zoneid=495077&cid=18&geo=CA&all_tags=138%2C151%2C185%2C19
8%2C209%2C214%2C215%2C219%2C227%2C228%2C229%2C230%2C231%2C232%2C237%2C238%2C239%2C241%2C265%2C277%2C290&tss
=505%2C511%2C542%2C565&fired_tags=138%2C151%2C265%2C290&count=4&status=1%2C1%2C8%2C12%2C8%2C8%2C8%2C8%2C8%2C8%2
C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C1%2C8%2C1&elapsed_ms=567
https://ap.lijit.com/data/ct?tid=a_495079_05d850d5b3854fbd9d3e9a0319ac3914&zoneid=495079&cid=18&geo=CA&all_tags=125%2C130%2C133%2C13
4%2C138%2C151%2C174%2C182%2C185%2C187%2C188%2C189%2C190%2C191%2C192%2C193%2C194%2C195%2C196%2C197%2C198%2C
203%2C205%2C206%2C209%2C211%2C214%2C215%2C219%2C227%2C228%2C229%2C230%2C231%2C232%2C234%2C237%2C238%2C239%
2C241%2C248%2C265%2C272%2C277%2C284%2C290%2C309&tss=795%2C801%2C808%2C842%2C848%2C853&fired_tags=138%2C151%2C18
2%2C234%2C265%2C290&count=6&status=8%2C8%2C8%2C8%2C1%2C1%2C8%2C1%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%
2C8%2C8%2C12%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C8%2C1%2C8%2C8%2C8%2C8%2C8%2C1%2C8
%2C8%2C8%2C1%2C8&elapsed_ms=857
https://ml314.com/utsync.ashx?pub=&adv=&et=0&eid=50282&ct=js&pi=&fp=&clid=&ps=&cl=&mlt=&data=&&cp=https%3A%2F%2Fwww.girlsaskguys.com%
2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&pv=1526366700264_chue5q7sz&bl=en-us&cb=1643918&return=htt
ps%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D5031%263pid%3D%5BPersonID%5D&ht=&d=&dc=&si=1526366700264_chue5q7sz&cid=&s=1367x858
&rp=
https://stats.aws.rubiconproject.com/stats/video/bridge-loaded/js/11406/134230/861300/201
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=Direct%20Campaign
s%20-%20One%20Video%20-%20CA%20-%20Desktop%20platform%20-%20Sponsorship%20(HTML5%20Only)&pbl=true&ps=html5-vpaid&rcid=5512a3
9b09eab108e072da23&rid=578d75ebe3bb561f57aa4f0d&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5
&v=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://ml314.com/utsync.ashx?pub=&adv=&et=0&eid=50282&ct=js&pi=&fp=&clid=&ps=&cl=&mlt=&data=&&cp=https%3A%2F%2Fwww.girlsaskguys.com%
2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&pv=1526366700375_bn5qf19ny&bl=en-us&cb=6499515&return=htt
ps%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D5031%263pid%3D%5BPersonID%5D&ht=&d=&dc=&si=1526366700264_chue5q7sz&cid=&s=1367x858
&rp=
https://vap4sfo1.lijit.com/addelivery/impression?bannerid=186041&campaignid=232&cb=72283421&tid=a_495077_3a235fdd3eae494c8bb23d4201e0292

Analyze your site at https://gtmetrix.com Page 77 of 85


YSlow Recommendations

1&zoneid=495077&cids=232&bids=186041&tss=0
https://vap4sfo1.lijit.com/data/fp?tid=a_495077_3a235fdd3eae494c8bb23d4201e02921&zoneid=495077&starttime=1526366697693&adcfg=1&adcfg_resp
onse=486&addelivery=488&addelivery_response=1201&lgfired=2726&container=2737&EOL=2738&ctstart=1861&elapsed_ms=2738
https://ml314.com/utsync.ashx?pub=&adv=&et=0&eid=50282&ct=js&pi=&fp=&clid=&ps=&cl=&mlt=&data=&&cp=https%3A%2F%2Fwww.girlsaskguys.com%
2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&pv=1526366700533_4tgjwydbq&bl=en-us&cb=3509414&return=htt
ps%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D5031%263pid%3D%5BPersonID%5D&ht=&d=&dc=&si=1526366700264_chue5q7sz&cid=&s=1367x858
&rp=
https://vap4sfo1.lijit.com/addelivery/impression?bannerid=186043&campaignid=232&cb=59149823&tid=a_495079_05d850d5b3854fbd9d3e9a0319ac391
4&zoneid=495079&cids=232&bids=186043&tss=1
https://vap4sfo1.lijit.com/data/fp?tid=a_495079_05d850d5b3854fbd9d3e9a0319ac3914&zoneid=495079&starttime=1526366697643&adcfg=8&adcfg_resp
onse=462&addelivery=470&addelivery_response=1228&lgfired=2901&container=2906&EOL=2906&ctstart=1749&elapsed_ms=2906
https://ic.tynt.com/b/p?id=s!sovrn&lm=0&ts=1526366700646&dn=IDS&iso=0&img=https%3A%2F%2Fcf.girlsaskguys.com%2Fq2198181%2Fprimary-share.
png%3F88&ct=Do%20you%20know%20what%20BitCoin%20is%3F%20Have%20you%20ever%20used%20BitCoin%20before%3F&t=Do%20you%20kno
w%20what%20BitCoin%20is%3F%20Have%20you%20ever%20used%20BitCoin%20before%3F%20-%20GirlsAskGuys&cu=https%3A%2F%2Fwww.girlsa
skguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before
https://pd.sharethis.com/pd/sovrn?_t_=px&url=&partner=sovrn&rnd=0.1696871479686306&exptid=ZGAQNVr6gewAAAATT50UAw%3D%3D&fcmp=false
https://ce.lijit.com/merge?pid=5031&3pid=5978151422914825543
https://ce.lijit.com/merge?pid=5001&3pid=ce6218ad76692cd9ac9db8c2fb46ad71
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=Direct%20Campaign
s%20-%20One%20Video%20-%20CA%20-%20Desktop%20platform%20-%20Standard%20(HTML5%20Only)&pbl=true&ps=html5-vpaid&rcid=5512a39b0
9eab108e072da23&rid=57d18681e3bb567867a40a89&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v
=569fa372e4b0e41110650e54&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://pd.sharethis.com/pd/sovrn?_t_=px&url=&partner=sovrn&rnd=0.5313065017585734&exptid=ZGAQNVr6gewAAAATT50UAw%3D%3D&fcmp=false
https://pd.sharethis.com/pd/sovrn?_t_=px&url=&partner=sovrn&rnd=0.6513199631197999&exptid=ZGAQNVr6gewAAAATT50UAw%3D%3D&fcmp=false
https://ps.eyeota.net/pixel/bounce/?pid=51md42u&t=ajs&uid=d679af0dac93f348389a3cb3
https://cs.lkqd.net/cs?partnerId=52&partnerUserId=WvqB5wAAAKNI-RAl
https://cs.lkqd.net/cs?partnerId=39&partnerUserId=6776932692590014083
https://pr-bh.ybp.yahoo.com/sync/casale/WvqB59HM7SUAACpofvsAAAAtAG4AAAAB
https://cas.pxl.ace.advertising.com/cfcm.ashx?providerId=1013&extMatch=1&rcode=2
https://ml314.com/csync.ashx?fp=&person_id=5978151422914825543&eid=50082
https://cs.lkqd.net/cs?partnerId=6&partnerUserId=cuid_79c33181-580b-11e8-a609-126fa5aac54e
https://cs.lkqd.net/cs?partnerId=51&partnerUserId=874d104f-6c6c-06b6-0bb7-3013ae407ae3
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before&
s=true&sid=6f174fe4-a511-4a61-9f63-14c0f1d3457f&vvuid=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&at=preroll&adIdx=-1&aen=LROS%20-%20Pub
%20-%20EGAMI%7CAll%20Domains%20-%20ALL%20Geos%20-%20HTML5%20only&pbl=true&ps=html5-vpaid&rcid=57d325e276a6057ba4a05a00&rid
=5a6b7faa55935e30ecd569fb&txid=071fbe93-1290-4df1-908a-567aa68d9489&usid=4605a908-3c30-43bd-a0e3-01ff1e84b5b5&v=56a11164e4b05fb5460
fcca3&vid=5ae86ee178e0f507d163254d&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=1&r=
https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=2&r=
https://de.tynt.com/deb/v2?id=s!sovrn&dn=IDS&cc=3&r=
https://dsum-sec.casalemedia.com/rum?cm_dsp_id=88&external_user_id=WvqB5wAAAKNI-RAl
https://pr-bh.ybp.yahoo.com/sync/openx/30023df0-56f5-ae26-6b86-51a32afb9f1d
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=39&external_user_id=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&expiration=1528958701
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=45&external_user_id=CAESELY7hq0HnuFuuG5LvaOmLB4&google_cver=1
https://cs.lkqd.net/cs?partnerId=53&partnerUserId=kao5L06XcZwo&ev=1&pid=561322
https://pr-bh.ybp.yahoo.com/sync/openx/63df8c12-2318-aa30-6f30-26016aa8c9fe
https://cs.lkqd.net/cs?partnerId=57&partnerUserId=kao5L06XcZwo&ev=1&pid=561322
https://us-u.openx.net/w/1.0/sd?id=537148856&val=WvqB5wAAAKNI-RAl
https://connexity.net/c/cse?a=R&A=29a&C=0&D=64b3&N=0-2017720130331164&R=1367x858c24&T=2f&U=e9fb6b9fabdec90c-06ca74a9b3142732-21f5a
6f4e85b2de4&J=https%253a%252f%252fwww.girlsaskguys.com%252fother%252fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befo
re&Q=v2.0.1,h5rR:n,c:n,h5:n,swf:BL,new,TS:(run:2ms),(f_newUID:62ms),(Burl-R:63ms)
https://connexity.net/c/cse?a=L&A=29a&C=0&D=64b3&N=0-2017720130331164&R=1367x858c24&T=2f&P=t&U=e9fb6b9fabdec90c-06ca74a9b3142732-2
1f5a6f4e85b2de4&Q=v2.0.1,h5rR:n,c:n,h5:n,swf:BL,new,h5w:y,swf-w:BL,h5rS:5,TS:(run:2ms),(f_newUID:62ms),(Burl-R:63ms),(rf:63ms),(wrap:64ms),(H5ls
oS-5:64ms),(Burl-L:64ms)
https://us-u.openx.net/w/1.0/sd?id=537072991&val=CAESEPrKIaaLGvXSGLayIbcDCp0&google_cver=1
https://connexity.net/c/cse?a=R&A=29a&C=0&D=64b3&N=0-201772015833193c&R=1367x858c24&T=2f&U=e9fb6b9fabdec90c-06ca74a9b3142732-21f5a
6f4e85b2de4&J=https%253a%252f%252fwww.girlsaskguys.com%252fother%252fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befo
re&Q=v2.0.1,h5rR:4,c:n,h5L:y,TS:(run:2ms),(Burl-R:4ms)
https://us-u.openx.net/w/1.0/sd?id=537072971&val=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&ttd_puid=f718ea56-b3b4-3879-5ee7-30f495ff04b7
https://ps.eyeota.net/match?uid=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&bid=1e2n4ou
https://ps.eyeota.net/match?bid=gdo9o51&newuser=1&google_gid=CAESECJsw9XNJr_-GHPNkSqtjo0&google_cver=1
https://connexity.net/c/cse?a=R&A=29a&C=0&D=64b3&N=0-2017720180330c20&R=1367x858c24&T=2f&U=e9fb6b9fabdec90c-06ca74a9b3142732-21f5a
6f4e85b2de4&J=https%253a%252f%252fwww.girlsaskguys.com%252fother%252fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-befo
re&Q=v2.0.1,h5rR:3,c:n,h5L:y,TS:(run:1ms),(Burl-R:3ms)
https://ps.eyeota.net/match?bid=r8hrb20&uid=nil
https://pixel.rubiconproject.com/tap.php?v=191940&nid=3778&put=WvqB5wAAAKNI-RAl
https://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&expires=30
https://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEACCJ3epJEPCMQSyLgDpJWw&google_cver=1
https://cs.lkqd.net/cs?partnerId=36&partnerUserId=8c0580ce0ae2528e0982e95b4c73cebe

Analyze your site at https://gtmetrix.com Page 78 of 85


YSlow Recommendations

https://cs.lkqd.net/cs?partnerId=42&partnerUserId=98512229c20e55aaf59f8afe58e430a4&sticky=true
https://us-u.openx.net/w/1.0/sd?id=537072971&val=c9dbf2f9-b56c-44e6-bc86-375c49ff668d&ttd_puid=a4c55bb4-c659-3c6f-5a51-4756d5ac5254
https://cs.lkqd.net/cs?partnerId=4&partnerUserId=799e6b71-580b-11e8-98f9-0a580a4c010a
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=40&external_user_id=174c5830-8905-4d06-9b00-103e88704f9c&expiration=1534315418
https://cs.lkqd.net/cs?partnerId=60&partnerUserId=3609532715836771276
https://cs.lkqd.net/cs?partnerId=46&partnerUserId=17127dda-32bb-42f2-9997-46aef92d6737
https://tt3.zedo.com/log/p.gif?6=28060;a=2843105;n=826;c=826008396;s=1553;zpn=3787;zpc=3787000001;zps=1;zpd=85;x=21760;g=27;m=68;w=2;1=8;os
=8;2=1;z=0.645613608747025;dct=2067;dmf=;dvm=;dsr=;djs=2063;dhs=2065;osn=Linux;osv=Unknown;brn=Chrome;brv=62;dsp=;tuuid=;pu=https%3A%2F
%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;erc=901;u=PrdopzX3RtmiAcKBfvB
F9g**~051518;zet=;et=4436;met=[MET];mt=[MT];dmp=[DSAMP];tt=13;eid=30;ren=5;did=;ai=%7C%7C%7C%7C%7C;&5032601917
https://cs.lkqd.net/cs?partnerId=42&partnerUserId=98512229c20e55aaf59f8afe58e430a4
https://ml314.com/csync.ashx?fp=KPJBvSe999eQ64oS&person_id=5978151422914825543&eid=50056
https://stags.bluekai.com/site/4448?id=30c15afa-5048-4600-a17d-e2a85c24ab94
https://stags.bluekai.com/site/3085?id=
https://cs.lkqd.net/cs?partnerId=63&partnerUserId=68B5ECA6-1E22-44CD-9CA1-84863B95FD63
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=3&external_user_id=30c15afa-5048-4600-a17d-e2a85c24ab94
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=57&external_user_id=2810316537904023968
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=46&external_user_id=3609532715836771276
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=4&external_user_id=8643648681422002544
https://dsum-sec.casalemedia.com/rum?cm_dsp_id=81&external_user_id=aMufeGWbnChwyMwqOJnUe23IwHpwncx6O5vniGHg
https://pubads.g.doubleclick.net/pagead/conversion/?ai=BbfDZ7YH6WpWPPNiKtOUPgJeiiAnq3KiXRQAAABABIN2w3VY4AFicroz3ggRg_ej6gMwDsgEUd3d3
LmdpcmxzYXNrZ3V5cy5jb226AQs2NDB4NDgwX3htbMgBBdoBaWh0dHBzOi8vd3d3LmdpcmxzYXNrZ3V5cy5jb20vb3RoZXIvcTIxOTgxODEtZG8teW91LWtub3
ctd2hhdC1iaXRjb2luLWlzLWhhdmUteW91LWV2ZXItdXNlZC1iaXRjb2luLWJlZm9yZcACAuACAOoCGi8yMTY2MTY4OTc0MS9lZ2FtaS5nZW5lcmlj-AKF0h6AAw
GQA6wCmAPgA6gDAeAEAdIFBhCz89qIEZAGAaAGJNgHAOAHC9IIBwiAYRABGAE&sigh=N1-zyEeIzso&label=videoplayfailed303&sdkv=h.3.208.0
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=105&external_user_id=0
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=47&external_user_id=BaYDFrpd1FitHM5
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=90&external_user_id=23423CA9EE81FA5A3AC1C23D02B58862
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=62&external_user_id=EQ880015263666970006
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=131&external_user_id=18072662445631213750
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=65&expiration=1526453102&external_user_id=AAADRyqqDGcPbwNht4zjAAAAAAA&cm_user_id=Wv
qB59HM7SUAACpofvsAAAAt
https://dsum-sec.casalemedia.com/rum?cm_dsp_id=64&external_user_id=52af87df-3f8d-4bcd-bc21-1d826dc889c2&expiration=1528958702
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=130&external_user_id=AAO9FE619QQAAHnNWdD9Bw&expiration=1527576302
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=41&external_user_id=7e912f3c-580b-11e8-9746-b5eb1b0375cb
https://dsum-sec.casalemedia.com/crum?cm_dsp_id=107&external_user_id=AB-l3YmnQ7ovql0kefr5sqG8w&expiration=
https://us-u.openx.net/w/1.0/sd?id=536872786&val=30c15afa-5048-4600-a17d-e2a85c24ab94
https://us-u.openx.net/w/1.0/sd?id=537073061&val=8643648681422002544
https://ps.eyeota.net/match?bid=7vi0rg0&uid=30c15afa-5048-4600-a17d-e2a85c24ab94
https://ps.eyeota.net/match?bid=1mpjpn0&turn_id=8643648681422002544&newuser=1
https://pixel.rubiconproject.com/tap.php?v=4210&nid=1523&put=BaYDFrpd1FitHM5&expires=30
https://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=30c15afa-5048-4600-a17d-e2a85c24ab94
https://cm.g.doubleclick.net/pixel?google_nid=rp&google_hm=Skg3QkJIRUotMUUtRDVaMA==
https://pd.sharethis.com/pd/33across
https://live.rezync.com/sync/?c=4656c20ee35215f78e9273796625d90b&p=cab5a4722e64fa65aba8e60b6da5d556&pid=CmUMKVr6gewN0gShBgJGAg%3
D%3D&33random=1526366702823
https://i.simpli.fi/dpx?cid=11411&33random=1526366702825
https://tags.bluekai.com/site/4413?id=WvqB5wAAAKNI-RAl&r=123
https://pixel.rubiconproject.com/tap.php?v=31950&nid=2974&put=4959924899106907430
https://us-u.openx.net/w/1.0/sd?id=537072977&val=52af87df-3f8d-4bcd-bc21-1d826dc889c2
https://us-u.openx.net/w/1.0/sd?id=537072966&val=23423CA9EE81FA5A3AC1C23D02B58862
https://us-u.openx.net/w/1.0/sd?id=537073062&val=2810316537904023968
https://us-u.openx.net/w/1.0/sd?id=537073142&val=RUID6w6kibueiyh4z1ib7j4tn5y8xdy4hy5st9yu4rqsmge35y815b8o====
https://pixel.rubiconproject.com/tap.php?v=7430&nid=2238&put=52af87df-3f8d-4bcd-bc21-1d826dc889c2&expires=360
https://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=8643648681422002544&expires=60
https://loadm.exelator.com/load/?p=204&g=260&buid=ce6218ad76692cd9ac9db8c2fb46ad71
https://pixel.rubiconproject.com/tap.php?v=6286&nid=2132&put=23423CA9EE81FA5A3AC1C23D02B58862&expires=365
https://rtb.openx.net/sync/dds?ox_sc=1&ox_init=1
https://pixel.rubiconproject.com/tap.php?v=7249%7c%7c11203%7c%7c372838&nid=2146,2309,4884&put=RUIDk6wa977yx65aftej7ocm9ab7qrgijst4b5wjo
uxwoxxxbsnqrnoy====&expires=30
https://pixel.rubiconproject.com/tap.php?v=13490&nid=2596&put=2810316537904023968&expires=30
https://idsync.rlcdn.com/378338.gif?
https://stags.bluekai.com/site/13583?id=799e6b71-580b-11e8-98f9-0a580a4c010a
https://idsync.rlcdn.com/47154.gif?served_by=evergreen&partner_uid=30c15afa-5048-4600-a17d-e2a85c24ab94
https://pixel.rubiconproject.com/tap.php?v=14321&nid=2313&put=R1B341_A4A958B8_1A952113E&expires=60
https://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=7f4e42e9-580b-11e8-9bea-49295cf7232e&expires=30
https://pd.sharethis.com/pd/33across?_t_=px&url=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you
-ever-used-bitcoin-before&partner=33across&rnd=0.10131196410739207&exptid=ZGAQNVr6gewAAAATT50UAw%3D%3D&fcmp=false
https://tags.bluekai.com/site/2964?id=BaYDFrpd1FitHM5
https://stags.bluekai.com/site/16365?id=FSZRqxh2UvsNJQL5RXQaqBAlDqkNcAKpRnajlu7n
https://tags.bluekai.com/site/4722?id=2810316537904023968
https://tags.bluekai.com/site/15525?id=9c7384d0a41940a88f2dcbdc
https://tags.bluekai.com/site/4499?id=8643648681422002544&BK_SWAP_DEST=4499&r=1

Analyze your site at https://gtmetrix.com Page 79 of 85


YSlow Recommendations

https://bk.addthis.com/site/55122?bku=oo999mSOIkod9A6o
https://stags.bluekai.com/site/26357?&id=L99uBc_G
https://ss3.zedo.com/gecko/tag/networkIds.js?3619072320
https://tags.bluekai.com/site/43696?&id=1840-5c-2949828-6
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.05970694389493891&8781865063
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[{%2228%22:17}];eid=99;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q21
98181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.6641648875542858&1714769425
https://sb.scorecardresearch.com/p?c1=2&c2=6473742&ca2=6035258&ns_type=hidden&ns_st_sv=5.1.1.160316&ns_st_smv=5.1&ns_st_it=r&ns_st_id=1
526366693611&ns_st_ec=1&ns_st_sp=1&ns_st_sc=1&ns_st_sq=1&ns_st_ppc=1&ns_st_apc=1&ns_st_spc=1&ns_st_cn=1&ns_st_ev=play&ns_st_po=0
&ns_st_cl=32704&ns_st_pb=1&ns_st_mp=js_api&ns_st_mv=5.1.1.160316&ns_st_pn=1&ns_st_tp=0&ns_st_ci=5ae86ee178e0f507d163254d&ns_st_pt=
0&ns_st_dpt=0&ns_st_ipt=0&ns_st_et=0&ns_st_det=0&ns_st_upc=0&ns_st_dupc=0&ns_st_iupc=0&ns_st_upa=0&ns_st_dupa=0&ns_st_iupa=0&ns_st
_lpc=0&ns_st_dlpc=0&ns_st_lpa=0&ns_st_dlpa=0&ns_st_pa=0&ns_ts=1526366704580&ns_st_bc=0&ns_st_dbc=0&ns_st_bt=0&ns_st_dbt=0&ns_st_bp
=0&ns_st_lt=10965&ns_st_skc=0&ns_st_dskc=0&ns_st_ska=0&ns_st_dska=0&ns_st_skd=0&ns_st_skt=0&ns_st_dskt=0&ns_st_pc=0&ns_st_dpc=0&n
s_st_pp=0&ns_st_br=0&ns_st_ub=0&ns_st_ki=1200000&ns_st_pr=Cosmopolitan&ns_st_sn=*null&ns_st_en=*null&ns_st_ep=Go%20Behind%20The%2
0Scenes%20of%20Kesha%E2%80%99s%20June%20Cosmo%20Cover%20Shoot&ns_st_ct=vc11&ns_st_ge=*null&ns_st_st=*null&ns_st_ce=1&ns_st_i
a=0&ns_st_ddt=*null&ns_st_tdt=*null&ns_st_pu=Hearst%20Magazine&ns_st_ti=*null&c3=Unknown_Category_ID&ca3=AOL&c4=www.girlsaskguys.com&
ca4=Women&c6=*null&ca6=COSMOPOLITAN&c7=https%3A%2F%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-yo
u-ever-used-bitcoin-before&c8=&c9=
https://adservice.google.com/adsid/integrator.js?domain=cdn.playwire.com
Reduce DNS lookups
https://sb.scorecardresearch.com/c2/6035391/cs.js F (0) AVG SCORE: 69% CONTENT LOW

The components are split over more than 4 domains

www.girlsaskguys.com: 4 components, 95.1K (25.0K GZip)


fonts.googleapis.com: 3 components, 29.9K (2.2K GZip)
images.girlsaskguys.com: 47 components, 1175.3K (173.3K GZip)
s.ntv.io: 1 component, 236.7K (68.8K GZip)
delivery.vidible.tv: 1 component, 48.2K (11.4K GZip)
js.agkn.com: 1 component, 2.9K
px.c1exchange.com: 1 component, 0.0K
www.googletagservices.com: 1 component, 14.6K (5.8K GZip)
www.googletagmanager.com: 1 component, 57.2K (21.7K GZip)
cms.c1exchange.com: 4 components, 0.0K
trends.revcontent.com: 3 components, 33.8K (11.4K GZip)
adservice.google.ca: 2 components, 0.2K (0.2K GZip)
adservice.google.com: 3 components, 0.3K (0.3K GZip)
securepubads.g.doubleclick.net: 13 components, 247.6K (84.4K GZip)
jadserve.postrelease.com: 2 components, 0.8K (0.4K GZip)
cm.g.doubleclick.net: 16 components, 4.8K
www.google-analytics.com: 1 component, 35.1K (14.3K GZip)
connect.facebook.net: 3 components, 311.3K (90.5K GZip)
d31qbv1cthcecs.cloudfront.net: 1 component, 4.2K (1.2K GZip)
apis.google.com: 1 component, 44.0K (16.9K GZip)
sb.scorecardresearch.com: 8 components, 1.6K (0.9K GZip)
static.criteo.net: 1 component, 71.3K (20.1K GZip)
pagead2.googlesyndication.com: 7 components, 572.1K (210.7K GZip)
tpc.googlesyndication.com: 7 components, 107.9K (39.8K GZip)
cdn-ssl.vidible.tv: 5 components, 1708.6K (498.4K GZip)
trk.vidible.tv: 144 components, 6.1K
cm.c1exchange.com: 1 component, 0.0K
certify.alexametrics.com: 1 component, 0.04K
z.moatads.com: 2 components, 423.4K (130.9K GZip)
cdn.vidible.tv: 1 component, 0.01K (0.03K GZip)
api.facebook.com: 1 component, 0.3K (0.2K GZip)
gag.gagwebapi.com: 1 component, 0.1K (0.2K GZip)
d.agkn.com: 2 components, 0.5K
www.facebook.com: 6 components, 0.1K (0.05K GZip)
api.content-ad.net: 7 components, 92.7K (19.5K GZip)
route.carambo.la: 1 component, 642.6K (167.4K GZip)
pixel.watch: 1 component, 0.0K
ad.lkqd.net: 3 components, 523.1K (149.6K GZip)
js.gumgum.com: 1 component, 76.9K (32.2K GZip)
brand-ad-innovations.s3.amazonaws.com: 1 component, 7.0K
platform.twitter.com: 3 components, 141.2K (42.2K GZip)
px.moatads.com: 17 components, 0.7K
ib.adnxs.com: 16 components, 0.7K
staticxx.facebook.com: 2 components, 83.6K (25.6K GZip)
cdn.playwire.com: 19 components, 1007.7K (273.5K GZip)
cdn.revcontent.com: 2 components, 257.1K (83.6K GZip)
secure.quantserve.com: 1 component, 11.0K (4.7K GZip)

Analyze your site at https://gtmetrix.com Page 80 of 85


YSlow Recommendations

bttrack.com: 1 component, 0.2K


g.cwkuki.com: 1 component, 0.0K
pixel.quantserve.com: 5 components, 0.07K
s3.amazonaws.com: 1 component, 1.0K (0.07K GZip)
img.revcontent.com: 3 components, 70.3K
ss3.zedo.com: 12 components, 1693.4K (381.9K GZip)
g2.gumgum.com: 3 components, 0.5K (0.3K GZip)
v.lkqd.net: 6 components, 35.1K (13.1K GZip)
aa.agkn.com: 6 components, 0.1K
cm.revcontent.com: 2 components, 0.07K
rules.quantcount.com: 1 component, 0.0K
analytics.carambo.la: 1 component, 0.04K
cdata.carambo.la: 2 components, 23.8K (0.04K GZip)
media.carambo.la: 6 components, 89.0K
tags.crwdcntrl.net: 1 component, 30.2K (9.1K GZip)
pixel.mathtag.com: 4 components, 0.04K
d32oduq093hvot.cloudfront.net: 2 components, 4.0K
d3dytsf4vrjn5x.cloudfront.net: 3 components, 43.6K
t.lkqd.net: 14 components, 0.0K
match.adsrvr.org: 16 components, 4.3K
ap.lijit.com: 24 components, 185.8K (42.7K GZip)
adserver-us.adtech.advertising.com: 5 components, 4.5K
prebid.districtm.ca: 1 component, 21.0K (6.3K GZip)
fastlane.rubiconproject.com: 3 components, 0.7K
loadus.exelator.com: 5 components, 2.5K
cdn.digitru.st: 3 components, 43.5K (13.2K GZip)
syndication.twitter.com: 2 components, 0.07K (0.09K GZip)
jsc.mgid.com: 1 component, 111.3K (30.0K GZip)
aka-cdn-ns.adtechus.com: 1 component, 69.8K
adadvisor.net: 1 component, 0.0K
cdn.districtm.io: 1 component, 14.9K (5.2K GZip)
acdn.adnxs.com: 1 component, 0.9K (0.5K GZip)
googleads.g.doubleclick.net: 4 components, 18.2K (7.9K GZip)
echo.intergient.com: 36 components, 0.0K
config.playwire.com: 3 components, 17.9K (2.2K GZip)
loadm.exelator.com: 10 components, 0.09K
idsync.rlcdn.com: 11 components, 0.1K
servicer.mgid.com: 1 component, 16.4K (3.6K GZip)
video.adaptv.advertising.com: 2 components, 20.3K (4.1K GZip)
saxp.zedo.com: 4 components, 142.8K (11.5K GZip)
d.turn.com: 2 components, 0.0K
pixel.tapad.com: 5 components, 0.0K
rtb.adentifi.com: 1 component, 0.0K
x.bidswitch.net: 8 components, 0.0K
sync.tidaltv.com: 6 components, 0.0K
gu.dyntrk.com: 3 components, 0.0K
p.adsymptotic.com: 4 components, 0.0K
stags.bluekai.com: 8 components, 1.7K
media.sabio.us: 1 component, 0.2K
sync-tm.everesttech.net: 7 components, 0.0K
um2.eqads.com: 2 components, 0.2K (0.1K GZip)
pixel-a.sitescout.com: 5 components, 0.0K
secure.adnxs.com: 3 components, 1.5K (0.6K GZip)
tags.bkrtx.com: 1 component, 39.1K
cdn.video.playwire.com: 13 components, 395.9K
s0.2mdn.net: 2 components, 262.9K (91.2K GZip)
ads.rubiconproject.com: 2 components, 104.6K (31.7K GZip)
cdn.mirs.com: 1 component, 752.4K (189.6K GZip)
cm.mgid.com: 1 component, 0.2K (0.1K GZip)
imgg-cdn.mgid.com: 4 components, 135.0K
tt1.zedo.com: 6 components, 0.2K
e.nexac.com: 1 component, 0.1K
optimized-by.rubiconproject.com: 2 components, 1.8K (0.9K GZip)
load77.exelator.com: 2 components, 0.08K
x.dlx.addthis.com: 1 component, 0.04K
dmx.districtm.io: 5 components, 0.4K
adserver.adtechus.com: 8 components, 7.6K
c.amazon-adsystem.com: 1 component, 11.9K (4.0K GZip)
as-sec.casalemedia.com: 1 component, 0.05K (0.07K GZip)
c.bing.com: 1 component, 0.0K
sync.mathtag.com: 9 components, 0.0K
beacon.walmart.com: 1 component, 0.06K

Analyze your site at https://gtmetrix.com Page 81 of 85


YSlow Recommendations

router.infolinks.com: 1 component, 3.0K (3.0K GZip)


pr-bh.ybp.yahoo.com: 5 components, 0.1K
odr.mookie1.com: 3 components, 0.04K
sync.search.spotxchange.com: 2 components, 0.04K
imasdk.googleapis.com: 8 components, 3848.5K (1286.5K GZip)
ads-trk.vidible.tv: 14 components, 0.6K
m.adnxs.com: 3 components, 0.04K
cm.steepto.com: 1 component, 0.04K
bcp.crwdcntrl.net: 5 components, 2.0K (0.8K GZip)
fastlane-adv.rubiconproject.com: 1 component, 0.4K
adserver.adtech.advertising.com: 3 components, 0.0K
aax.amazon-adsystem.com: 1 component, 0.03K
dpm.demdex.net: 4 components, 0.0K
c.mgid.com: 1 component, 0.04K
atpixelus.alephd.com: 3 components, 0.1K
adt.pxl.ace.advertising.com: 2 components, 0.3K
p.rfihub.com: 6 components, 0.0K
ad.afy11.net: 1 component, 0.04K
aol-match.dotomi.com: 1 component, 0.0K
video-ads.rubiconproject.com: 2 components, 56.7K (17.2K GZip)
code.jquery.com: 1 component, 86.7K (35.1K GZip)
px.adhigh.net: 1 component, 0.0K
ads.avocet.io: 2 components, 0.3K
sync-eu.exe.bid: 2 components, 0.0K
pubads.g.doubleclick.net: 9 components, 29.7K (4.3K GZip)
psa.carambo.la: 3 components, 1.9K (1.1K GZip)
ads.adaptv.advertising.com: 14 components, 21.9K (12.3K GZip)
cdn.mgid.com: 1 component, 44.7K (8.6K GZip)
vap4sfo1.lijit.com: 10 components, 0.4K
content.jwplatform.com: 1 component, 164.9K (50.3K GZip)
ml314.com: 11 components, 24.9K (11.7K GZip)
cdn.tynt.com: 1 component, 8.9K (3.4K GZip)
pd.sharethis.com: 6 components, 1.2K
s.cxt.ms: 1 component, 1.6K (0.4K GZip)
ce.lijit.com: 3 components, 0.1K
ps.eyeota.net: 8 components, 1.0K
sync.crwdcntrl.net: 3 components, 0.04K
ssum-sec.casalemedia.com: 3 components, 4.6K
us-u.openx.net: 15 components, 2.5K (1.2K GZip)
eus.rubiconproject.com: 2 components, 49.0K (13.6K GZip)
stats.aws.rubiconproject.com: 1 component, 0.04K
ic.tynt.com: 1 component, 0.03K
connexity.net: 10 components, 28.7K (10.4K GZip)
tags.bluekai.com: 12 components, 0.4K
track.eyeviewads.com: 1 component, 0.0K
bh.contextweb.com: 2 components, 0.0K
cookie.brealtime.com: 1 component, 0.0K
image8.pubmatic.com: 3 components, 0.5K
cs.lkqd.net: 15 components, 0.5K
api.ipify.org: 1 component, 0.01K
sdk.amazonaws.com: 1 component, 1480.4K (220.6K GZip)
ad.turn.com: 3 components, 0.0K
um.simpli.fi: 3 components, 0.4K
rp.gwallet.com: 2 components, 0.0K
cas.pxl.ace.advertising.com: 2 components, 0.2K
d.adroll.com: 1 component, 0.07K
a.tribalfusion.com: 2 components, 0.07K
casale-match.dotomi.com: 2 components, 0.0K
pm.w55c.net: 2 components, 0.0K
magnetic.t.domdex.com: 1 component, 0.04K
cm.adgrx.com: 2 components, 0.0K
acds.prod.vidible.tv: 1 component, 15.8K (6.3K GZip)
de.tynt.com: 3 components, 1.4K
dsum-sec.casalemedia.com: 19 components, 0.8K
token.rubiconproject.com: 2 components, 0.0K
usync.aws.rubiconproject.com: 1 component, 0.1K
i.w55c.net: 1 component, 0.0K
pixeltrack.eyeviewads.com: 1 component, 0.0K
rtb.openx.net: 3 components, 0.04K
ox.pxl.ace.advertising.com: 1 component, 0.1K
pixel.rubiconproject.com: 13 components, 0.5K
tag.clrstm.com: 2 components, 0.0K

Analyze your site at https://gtmetrix.com Page 82 of 85


YSlow Recommendations

tt3.zedo.com: 1 component, 0.04K


tap-secure.rubiconproject.com: 1 component, 0.2K (0.2K GZip)
image2.pubmatic.com: 2 components, 0.7K
image4.pubmatic.com: 1 component, 0.4K
rub.pxl.ace.advertising.com: 1 component, 0.2K
sync.ipredictive.com: 1 component, 0.0K
rbp.mxptint.net: 1 component, 0.2K
simage2.pubmatic.com: 1 component, 0.3K
log.adaptv.advertising.com: 10 components, 0.0K
ads.yahoo.com: 2 components, 0.0K
live.rezync.com: 1 component, 0.04K
i.simpli.fi: 1 component, 0.04K
cookiex.ngd.yahoo.com: 2 components, 0.0K
aax-eu.amazon-adsystem.com: 1 component, 0.04K
match.rundsp.com: 1 component, 0.0K
usermatch.krxd.net: 1 component, 0.0K
bluekai-eicm-global.dsp.io: 1 component, 0.0K
r.turn.com: 1 component, 0.0K
bk.addthis.com: 1 component, 0.06K
r.nexac.com: 1 component, 0.0K
in.v12group.com: 2 components, 0.2K
ads.intergi.com: 8 components, 0.0K
pippio.com: 2 components, 0.0K
pixel.sojern.com: 1 component, 0.01K
Configure entity tags (ETags) F (0) AVG SCORE: 91% SERVER LOW

There are 15 components with misconfigured ETags

https://px.moatads.com/pixel.gif?e=0&ac=1&bq=7&i=AOL_VIDIBLE_API1&t=1526366688542&de=911567124104&d=52%3A-%3A-%3A-&bo=girlsaskguys.c
om&bd=girlsaskguys.com&f=0&cs=0
https://px.moatads.com/pixel.gif?e=0&ac=1&bq=7&i=AOL_VIDIBLE_API1&t=1526366691942&de=6951799390&d=252%3A-%3A-%3A-&bo=girlsaskguys.co
m&bd=girlsaskguys.com&f=0&cs=0
https://tags.bkrtx.com/js/bk-coretag.js
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.006775474426035322&7899512393
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:1248}];et=1250;eid=114;ai=RB%20Fastlane%5Erubicon%5E372688_
1-640-480%5E%5E1222;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e
=e;z=0.557270568495744&6553624559
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:1248}];et=1250;eid=114;ai=RB%20Fastlane%5Erubicon_preroll%5E3
72688_1-640-480%5E%5E1225;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-
before;e=e;z=0.557270568495744&1338601830
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:2558}];eid=58;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q
2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.7819638443337706&2618815769
https://video-ads.rubiconproject.com/video/bridge-30638.js
https://tt3.zedo.com/log/p.gif?6=28060;a=2843105;n=826;c=826008396;s=1553;zpn=3787;zpc=3787000001;zps=1;zpd=85;x=21760;g=27;m=68;w=2;1=8;os
=8;2=1;z=0.645613608747025;dct=2067;dmf=;dvm=;dsr=;djs=2063;dhs=2065;osn=Linux;osv=Unknown;brn=Chrome;brv=62;dsp=;tuuid=;pu=https%3A%2F
%2Fwww.girlsaskguys.com%2Fother%2Fq2198181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;erc=901;u=PrdopzX3RtmiAcKBfvB
F9g**~051518;zet=;et=4436;met=[MET];mt=[MT];dmp=[DSAMP];tt=13;eid=30;ren=5;did=;ai=%7C%7C%7C%7C%7C;&5032601917
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q2198181-do-you-kn
ow-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.05970694389493891&8781865063
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[{%2228%22:17}];eid=99;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/other/q21
98181-do-you-know-what-bitcoin-is-have-you-ever-used-bitcoin-before;e=e;z=0.6641648875542858&1714769425
https://px.moatads.com/pixel.gif?e=17&i=AOLVIDIBLE_VIDEOJS_CONTENT1&hp=1&kq=1&hq=0&hs=0&hu=0&hr=0&ht=1&bq=8&f=0&tw=null&j=&o=3&t=15
26366705167&de=273333087614&m=0&ar=4c90a2e-clean&q=2&cb=0&cu=1526366705167&ll=3&lm=0&ln=0&r=0&em=0&en=0&d=57d325e276a6057b
a4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&qs=1&bo=girlsaskguys.com&bd=girlsaskguys.com&zMoatOrigSlicer1=C9D9C0
D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&zMoatOrigSlicer2=N%2FA&gw=aolvidiblecontent859375382&fd=1&ac=1&it=500&fs=143783&na=1217334369&cs=
0
https://px.moatads.com/pixel.gif?e=0&q=0&hp=1&kq=1&lo=0&qs=1&ak=https%3A%2F%2Fwww.girlsaskguys.com%2F%2Fother%2F-&i=AOLVIDIBLE_VIDE
OJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%
25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3Deu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U
%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbB
BBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBH
CZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFeBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCK
qeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=8&g=0&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366705167&de=2
73333087614&cu=1526366705167&m=260&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=8
58&qi=1367&qj=858&qf=1366&qe=768&qh=1366&qg=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&pg=0&pf=
0&ib=1&cc=0&bw=0&bx=0&aa=0&ad=0&cn=0&gk=0&gl=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=0&su=1&of=1&oz=1&bu=77&cd=0&ah=77&am=0&dq=
77&dr=0&ds=77&dt=0&zx=0&fc=1&vm=0&vl=0&vt=0&vd=0&zMoatSRE=0&zMoatVSD=0&hc=0&er=0&es=0&gs=0&gt=0&eu=0&ev=0&et=1&dp=0&dz=1&eb=1
&fk=1&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd
=girlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrigSlicer1=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&zMoatOrigSlicer2=N%2FA&ab=3&
ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=2015440955&cs=0

Analyze your site at https://gtmetrix.com Page 83 of 85


YSlow Recommendations

https://px.moatads.com/pixel.gif?e=29&q=0&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=8&g=1&hq
=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=4523&f=0&j=&o=3&t=1526366705167&de=273333087614&cu=1526366705167&m=267&ar=4c9
0a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=768&qh=1366&q
g=857&lk=4523&lb=6969&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&aa=0&ad=0&cn=0&gk=0
&gl=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=0&su=1&of=1&oz=1&bu=77&cd=77&ah=77&am=77&dq=77&dr=77&ds=77&dt=77&zx=0&fc=1&vm=0&vl=0&
vt=0&vd=0&zMoatSRE=0&zMoatVSD=0&hc=0&er=0&es=0&gs=0&gt=0&eu=0&ev=0&et=1&dp=0&dz=1&du=169&eb=1&ec=19283&fk=1&ef=0&rf=0&re=0&cl
=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&
gw=aolvidiblecontent859375382&zMoatOrigSlicer1=C9D9C0D0-EC9A-4BFF-A4AE-2FAAC0FC3FAA&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&
it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=98514933&cs=0
https://sb.scorecardresearch.com/c2/6035391/cs.js

M inify JavaScript and CSS D (60) AVG SCORE: 71% CSS/JS MEDIUM

There are 4 components that can be minified

https://images.girlsaskguys.com/custom/vod.js?v=3
https://api.content-ad.net/Scripts/widget2.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403809&cb=152
6366688214
https://api.content-ad.net/Scripts/widget2.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403806&cb=1526
366688264
https://rules.quantcount.com/rules-p-aD1qr93XuF6aC.js

Reduce the number of DOM elements B (89) AVG SCORE: 92% CONTENT LOW

There are 1112 DOM elements on the page

M ake AJAX cacheable A (100) AVG SCORE: 100% JS MEDIUM

You scored 100% on this recommendation - nothing to do here!

Remove duplicate JavaScript and CSS A (100) AVG SCORE: 100% CSS/JS MEDIUM

You scored 100% on this recommendation - nothing to do here!

Avoid AlphaImageLoader filter A (100) AVG SCORE: 99% CSS MEDIUM

You scored 100% on this recommendation - nothing to do here!

Avoid HTTP 404 (Not Found) error A (100) AVG SCORE: 98% CONTENT MEDIUM

You scored 100% on this recommendation - nothing to do here!

Use GET for AJAX requests A (100) AVG SCORE: 100% JS LOW

You scored 100% on this recommendation - nothing to do here!

Analyze your site at https://gtmetrix.com Page 84 of 85


YSlow Recommendations

Avoid CSS expressions A (100) AVG SCORE: 99% CSS LOW

You scored 100% on this recommendation - nothing to do here!

Reduce cookie size A (100) AVG SCORE: 100% COOKIE LOW

You scored 100% on this recommendation - nothing to do here!

M ake favicon small and cacheable A (100) AVG SCORE: 100% IMAGES LOW

You scored 100% on this recommendation - nothing to do here!

M ake JavaScript and CSS external (n/a) CSS/JS MEDIUM

Only consider this if your property is a common user home page.

There is a total of 20 inline scripts

Analyze your site at https://gtmetrix.com Page 85 of 85

Vous aimerez peut-être aussi