-
Notifications
You must be signed in to change notification settings - Fork 96
/
open-cookie-database.csv
We can't make this file beautiful and searchable because it's too large.
2200 lines (2200 loc) · 540 KB
/
open-cookie-database.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ID,Platform,Category,Cookie / Data Key name,Domain,Description,Retention period,Data Controller,User Privacy & GDPR Rights Portals,Wildcard match
256c0fe2-d881-11e9-8a34-2a2ae2dbcce4,Google Tag Manager,Functional,cookiePreferences,,Registers cookie preferences of a user,2 years,Google,https://business.safety.google/privacy/,0
317ce4c0-91e3-4ee4-9ccc-75c15a0c2305,Google Tag Manager,Analytics,td,www.googletagmanager.com,"Registers statistical data on users' behaviour on the website. Used for internal analytics by the website operator.",session,Google,https://business.safety.google/privacy/,0
6ca095be-4711-47f0-9e83-eecc86ff12c9,Cookiebot,Functional,CookieConsent,,"Stores the user's cookie consent state for the current domain",1 year,Cookiebot,https://www.cookiebot.com/en/cookie-declaration/,0
256c1410-d881-11e9-8a34-2a2ae2dbcce4,Cookiebot,Functional,CookieConsentBulkTicket,cookiebot.com (3rd party),Enables sharing cookie preferences across domains / websites,1 year,Cookiebot,https://www.cookiebot.com/en/cookie-declaration/,0
256c1550-d881-11e9-8a34-2a2ae2dbcce4,Cookiebot,Functional,userlang,cookiebot.com (3rd party),Saves language preferences of user for a website,1 year,Cookiebot,https://www.cookiebot.com/en/cookie-declaration/,1
a03ec23f-e06d-4f6c-b089-5e89039594b2,Cookiebot,Functional,consentUUID,,"This cookie is used as a unique identification for the users who has accepted the cookie consent box.",1 year,Cookiebot,https://www.cookiebot.com/en/cookie-declaration/,0
f21e0af3-6f2c-4570-9385-a16bc250a5c0,Cookiebot,Functional,CrossConsent,,"Stores the user's cookie consent state for the current domain",Session,Cookiebot,https://www.cookiebot.com/en/cookie-declaration/,0
0ae97a8e-ebff-440b-8114-9480f6b59d4c,Cookiebot,Functional,1.gif,,"Used to count the number of sessions to the website, necessary for optimizing CMP product delivery.",Session,Cookiebot,https://www.cookiebot.com/en/cookie-declaration/,0
b8aa928c-fa80-451f-9a23-f45e22309946,Cookiebot,Functional,cb-currency,,"Stores the user's currency preference",Session,Cookiebot,https://www.cookiebot.com/en/cookie-declaration/,0
35a27898-d3e3-428f-948c-3db70359ba5d,Cookiebot,Functional,CookieConsentBulkSetting-,,"Enables cookie consent across multiple websites",1 Year,Cookiebot,https://www.cookiebot.com/en/cookie-declaration/,1
24daac45-6c94-4c77-a972-66a9e5248413,Maxlead,Functional,cookieconsent_variant,,Stores the variant of shown cookie banner,1 year,Maxlead,https://maxlead.com/privacy-statement/,0
87a6c581-24b5-4d1b-bf99-c0e493364625,Maxlead,Functional,cookieconsent_system,,Cookie consent system cookie for saving user's cookie opt-in/out choices.,1 year,Maxlead,https://maxlead.com/privacy-statement/,0
b735da18-68f1-4dd4-95d4-ee1e29f1d37f,Maxlead,Functional,cookieconsent_level,,Cookie consent system cookie for storing the level of cookie consent.,1 year,Maxlead,https://maxlead.com/privacy-statement/,0
551c9acd-8d52-4808-bf2c-88acc840c091,Maxlead,Functional,cookieconsent_seen,,Used to support the GDPR / AVG compliant cookie consent system,1 year,Maxlead,https://maxlead.com/privacy-statement/,0
256c18e8-d881-11e9-8a34-2a2ae2dbcce4,Google Analytics,Analytics,_ga,,ID used to identify users,2 years,Google,https://business.safety.google/privacy/,0
0ccecd8f-5d07-4412-a875-f077462d9e21,Google Analytics,Analytics,_gali,,Used by Google Analytics to determine which links on a page are being clicked,30 seconds,Google,https://business.safety.google/privacy/,0
d7496a0e-7f4b-4e20-b288-9d5e4852fa79,Google Analytics,Analytics,_ga_,,"ID used to identify users",2 years,Google,https://business.safety.google/privacy/,1
256c1ae6-d881-11e9-8a34-2a2ae2dbcce4,Google Analytics,Analytics,_gid,,"ID used to identify users for 24 hours after last activity",24 hours,Google,https://business.safety.google/privacy/,0
256c1c3a-d881-11e9-8a34-2a2ae2dbcce4,Google Analytics,Analytics,_gat,,"Used to monitor number of Google Analytics server requests when using Google Tag Manager",1 minute,Google,https://business.safety.google/privacy/,1
256c1d7a-d881-11e9-8a34-2a2ae2dbcce4,Google Analytics,Analytics,_dc_gtm_,,"Used to monitor number of Google Analytics server requests",1 minute,Google,https://business.safety.google/privacy/,1
256c1eba-d881-11e9-8a34-2a2ae2dbcce4,Google Analytics,Analytics,AMP_TOKEN,,"Contains a token code that is used to read out a Client ID from the AMP Client ID Service. By matching this ID with that of Google Analytics, users can be matched when switching between AMP content and non-AMP content. Reference: https://support.google.com/analytics/answer/7486764?hl=en",30 seconds till 1 year,Google,https://business.safety.google/privacy/,0
2caa7a78-e93f-49ca-8fe6-1aaafae1efaa,Google Analytics,Analytics,_gat_gtag_,,"Used to set and get tracking data",1 hour,Google,https://business.safety.google/privacy/,1
256c2090-d881-11e9-8a34-2a2ae2dbcce4,Google Analytics,Marketing,_gac_,,Contains information related to marketing campaigns of the user. These are shared with Google AdWords / Google Ads when the Google Ads and Google Analytics accounts are linked together.,90 days,Google,https://business.safety.google/privacy/,1
256c26f8-d881-11e9-8a34-2a2ae2dbcce4,Google Analytics,Analytics,__utma,,ID used to identify users and sessions,2 years after last activity,Google,https://business.safety.google/privacy/,0
256c287e-d881-11e9-8a34-2a2ae2dbcce4,Google Analytics,Analytics,__utmt,,Used to monitor number of Google Analytics server requests,10 minutes,Google,https://business.safety.google/privacy/,0
256c29c8-d881-11e9-8a34-2a2ae2dbcce4,Google Analytics,Analytics,__utmb,,Used to distinguish new sessions and visits. This cookie is set when the GA.js javascript library is loaded and there is no existing __utmb cookie. The cookie is updated every time data is sent to the Google Analytics server.,30 minutes after last activity,Google,https://business.safety.google/privacy/,0
256c2afe-d881-11e9-8a34-2a2ae2dbcce4,Google Analytics,Analytics,__utmc,,Used only with old Urchin versions of Google Analytics and not with GA.js. Was used to distinguish between new sessions and visits at the end of a session.,End of session (browser),Google,https://business.safety.google/privacy/,0
256c2c3e-d881-11e9-8a34-2a2ae2dbcce4,Google Analytics,Analytics,__utmz,,Contains information about the traffic source or campaign that directed user to the website. The cookie is set when the GA.js javascript is loaded and updated when data is sent to the Google Anaytics server,6 months after last activity,Google,https://business.safety.google/privacy/,0
256c2d74-d881-11e9-8a34-2a2ae2dbcce4,Google Analytics,Analytics,__utmv,google-analytics.com (3rd party) or ,Contains custom information set by the web developer via the _setCustomVar method in Google Analytics. This cookie is updated every time new data is sent to the Google Analytics server.,2 years after last activity,Google,https://privacy.google.com/take-control.html,0
256c310c-d881-11e9-8a34-2a2ae2dbcce4,Google Analytics,Analytics,__utmx,,Used to determine whether a user is included in an A / B or Multivariate test.,18 months,Google,https://business.safety.google/privacy/,0
256c326a-d881-11e9-8a34-2a2ae2dbcce4,Google Analytics,Analytics,__utmxx,,Used to determine when the A / B or Multivariate test in which the user participates ends,18 months,Google,https://business.safety.google/privacy/,0
adaf20d2-6e49-4f6f-a9cf-141429e079ff,Google Analytics,Marketing,FPAU,,"Assigns a specific ID to the visitor. This allows the website to determine the number of specific user-visits for analysis and statistics.",session,Google,https://business.safety.google/privacy/,0
0383d3ec-050e-4463-9023-72c1cf98c19c,Google Analytics,Analytics,FPID,,"Registers statistical data on users' behaviour on the website. Used for internal analytics by the website operator.",session,Google,https://business.safety.google/privacy/,0
db552746-1482-4f31-be94-0bafaf3112ff,Google Analytics,Analytics,FPLC,,"This FPLC cookie is the cross-domain linker cookie hashed from the FPID cookie. It’s not HttpOnly, which means it can be read with JavaScript. It has a relatively short lifetime, just 20 hours.",session,Google,https://business.safety.google/privacy/,0
f6f65358-15e8-4dcc-9014-13ae87d0e880,Google reCAPTCHA,Functional,_GRECAPTCHA,google.com,Google reCAPTCHA sets a necessary cookie (_GRECAPTCHA) when executed for the purpose of providing its risk analysis.,179 days,Google,https://business.safety.google/privacy/,0
a7c6fd4e-b7ea-45fa-abf3-39fd556af0e9,Google AdSense,Security,__eoi,,"This cookie is used for security authenticate users, prevent fraud, and protect users as they interact with a service.",3 Months,Google,https://business.safety.google/privacy/,0
c9619c86-c109-41e1-ab01-d133dffe3604,Google AdSense,Functional,pm_sess,,"This cookie is used for functionality allow users to interact with a service or site to access features that are fundamental to that service. Things considered fundamental to the service include preferences like the user's choice of language, product optimizations that help maintain and improve a service, and maintaining information relating to a user's session, such as the content of a shopping cart.",30 minutes,Google,https://business.safety.google/privacy/,0
25e3aef9-eaf9-41d0-bb14-c0b45a938ae6,Google AdSense,Functional,pm_sess_NNN,,"This cookie is used for functionality allow users to interact with a service or site to access features that are fundamental to that service. Things considered fundamental to the service include preferences like the user's choice of language, product optimizations that help maintain and improve a service, and maintaining information relating to a user's session, such as the content of a shopping cart.",30 minutes,Google,https://business.safety.google/privacy/,0
a4818583-f3a0-49e6-b7f8-beeec8e9afac,Google AdSense,Security,aboutads_sessNNN,,"This cookie is used for security authenticate users, prevent fraud, and protect users as they interact with a service.",30 minutes,Google,https://business.safety.google/privacy/,0
ca596088-42ff-4166-8c16-1332d2acc760,Google AdSense,Functional,ANID,,"Cookies used for functionality allow users to interact with a service or site to access features that are fundamental to that service. Things considered fundamental to the service include preferences like the user's choice of language, product optimizations that help maintain and improve a service, and maintaining information relating to a user's session, such as the content of a shopping cart.",13 months,Google,https://business.safety.google/privacy/,0
0dff2311-5b7b-4b10-883e-934ecad895cb,Google Analytics,Functional,GA_OPT_OUT,google-analytics.com,"Cookies used for functionality allow users to interact with a service or site to access features that are fundamental to that service. Things considered fundamental to the service include preferences like the user's choice of language, product optimizations that help maintain and improve a service, and maintaining information relating to a user's session, such as the content of a shopping cart.",10 Nov 2030,Google,https://business.safety.google/privacy/,0
c86ce0bd-8cdc-42ac-b5cf-63be0d1e27f0,Google Ads,Marketing,Conversion,www.googleadservices.com,"Google uses cookies for advertising, including serving and rendering ads, personalizing ads (depending on your ad settings at g.co/adsettings), limiting the number of times an ad is shown to a user, muting ads you have chosen to stop seeing, and measuring the effectiveness of ads.",90 days,Google,https://business.safety.google/privacy/,0
6f4a8f61-24b0-402c-924c-1b9221850394,Google Optimize,Analytics,_opt_awkid,,"Cookies used for analytics help collect data that allows services to understand how users interact with a particular service. These insights allow services both to improve content and to build better features that improve the user's experience.",24 hours,Google,https://business.safety.google/privacy/,0
cbb19074-b720-443d-930c-05f716d8e4ac,Google Optimize,Analytics,_opt_awgid,,"Cookies used for analytics help collect data that allows services to understand how users interact with a particular service. These insights allow services both to improve content and to build better features that improve the user's experience.",24 hours,Google,https://business.safety.google/privacy/,0
786e0660-5aaf-462b-9c40-a796941ffda6,Google Optimize,Analytics,_opt_awmid,,"Cookies used for analytics help collect data that allows services to understand how users interact with a particular service. These insights allow services both to improve content and to build better features that improve the user's experience.",24 hours,Google,https://business.safety.google/privacy/,0
16fd1470-cd7a-4026-bdab-985ce4a2456d,Google Optimize,Analytics,_gaexp_rc,,"Cookies used for analytics help collect data that allows services to understand how users interact with a particular service. These insights allow services both to improve content and to build better features that improve the user's experience.",24 hours,Google,https://business.safety.google/privacy/,0
060ad0c7-1668-453e-b15e-9411a6b75060,Google Optimize,Analytics,_opt_awcid,,"Cookies used for analytics help collect data that allows services to understand how users interact with a particular service. These insights allow services both to improve content and to build better features that improve the user's experience.",24 hours,Google,https://business.safety.google/privacy/,0
97fa8293-8665-4128-ab02-cea9dc0bf593,Google Surveys,Marketing,PAIDCONTENT,doubleclick.net,"Google uses cookies for advertising, including serving and rendering ads, personalizing ads (depending on your ad settings at g.co/adsettings), limiting the number of times an ad is shown to a user, muting ads you have chosen to stop seeing, and measuring the effectiveness of ads.",30 Days,Google,https://business.safety.google/privacy/,0
39843495-56eb-4525-8cce-2b6afb833024,Google Optimize,Analytics,_opt_expid,,"Cookies used for analytics help collect data that allows services to understand how users interact with a particular service. These insights allow services both to improve content and to build better features that improve the user's experience.",10 seconds,Google,https://business.safety.google/privacy/,0
fde73d6c-b934-4e40-a7b1-b9b759b75aa6,Google Hotel Ads,Marketing,_gcl_ha,,"Google uses cookies for advertising, including serving and rendering ads, personalizing ads (depending on your ad settings at g.co/adsettings), limiting the number of times an ad is shown to a user, muting ads you have chosen to stop seeing, and measuring the effectiveness of ads.",90 Days,Google,https://business.safety.google/privacy/,0
e9271972-3290-48c1-84e8-f25bc1d0b4d4,Google Flights,Marketing,_gcl_gf,,"Google uses cookies for advertising, including serving and rendering ads, personalizing ads (depending on your ad settings at g.co/adsettings), limiting the number of times an ad is shown to a user, muting ads you have chosen to stop seeing, and measuring the effectiveness of ads.",90 Days,Google,https://business.safety.google/privacy/,0
f54e4e1a-9520-4c58-8499-0119302caf49,Google Ads,Marketing,_gcl_aw,,"Google uses cookies for advertising, including serving and rendering ads, personalizing ads (depending on your ad settings at g.co/adsettings), limiting the number of times an ad is shown to a user, muting ads you have chosen to stop seeing, and measuring the effectiveness of ads.",90 Days,Google,https://business.safety.google/privacy/,0
a94fd98e-f1f5-4de9-af1a-e2165ed92e54,Google Ads,Marketing,_gcl_gs,,"Google uses cookies for advertising, including serving and rendering ads, personalizing ads (depending on your ad settings at g.co/adsettings), limiting the number of times an ad is shown to a user, muting ads you have chosen to stop seeing, and measuring the effectiveness of ads.",90 Days,Google,https://business.safety.google/privacy/,0
877f434a-514f-4b24-be46-e0b797f179a6,Google Ads,Marketing,_gcl_gb,,"Google uses cookies for advertising, including serving and rendering ads, personalizing ads (depending on your ad settings at g.co/adsettings), limiting the number of times an ad is shown to a user, muting ads you have chosen to stop seeing, and measuring the effectiveness of ads.",90 Days,Google,https://business.safety.google/privacy/,0
6c9fcc47-04cb-44df-8f25-e0eefe3f4bb2,Google Ads,Marketing,_gac_gb_,,"Google uses cookies for advertising, including serving and rendering ads, personalizing ads (depending on your ad settings at g.co/adsettings), limiting the number of times an ad is shown to a user, muting ads you have chosen to stop seeing, and measuring the effectiveness of ads.",90 Days,Google,https://business.safety.google/privacy/,1
995b9a10-86e4-441c-874b-abcd2cccfee6,Google Ads,Marketing,FPGCLGB,,"Google uses cookies for advertising, including serving and rendering ads, personalizing ads (depending on your ad settings at g.co/adsettings), limiting the number of times an ad is shown to a user, muting ads you have chosen to stop seeing, and measuring the effectiveness of ads.",90 Days,Google,https://business.safety.google/privacy/,0
f0d36ea1-1fb5-4778-9ebc-f05ff2d386bc,Google Ads,Marketing,FPGCLAW,,"Google uses cookies for advertising, including serving and rendering ads, personalizing ads (depending on your ad settings at g.co/adsettings), limiting the number of times an ad is shown to a user, muting ads you have chosen to stop seeing, and measuring the effectiveness of ads.",90 Days,Google,https://business.safety.google/privacy/,0
6f12cc4e-0649-4fd5-901e-8a7fe4717863,Google AdSense,Marketing,__gsas,,"Provides ad delivery or retargeting.",3 months,Google,https://business.safety.google/privacy/,0
39235f09-fa59-4a79-963c-38f340e49419,Google AdSense,Marketing,__gpi,,"Collects information on user behaviour on multiple websites. This information is used in order to optimize the relevance of advertisement on the website.",13 months,Google,https://business.safety.google/privacy/,0
86f2a180-bed9-44c0-967e-e27e81e23c29,Google AdSense,Marketing,__gpi_optout,,"Collects information on user behaviour on multiple websites. This information is used in order to optimize the relevance of advertisement on the website.",13 months,Google,https://business.safety.google/privacy/,0
b65551f0-5561-40dd-83bf-e9653b8141ca,Google AdSense,Marketing,GED_PLAYLIST_ACTIVITY,,"Improves targeting/advertising within the website",session,Google,https://business.safety.google/privacy/,0
ccb157dc-7e8b-43ee-9d02-c2a04b6f822f,Google AdSense,Marketing,ACLK_DATA,,"This cookie is used to help improve advertising. This targets advertising based on what's relevant to a user, to improve reporting on campaign performance.",5 minutes,Google,https://business.safety.google/privacy/,0
217c63cb-7c0f-47ba-be0f-abf493c61bbd,Google,Functional,_Secure-ENID,,"Remembers user preferences like language, search results per page, and SafeSearch settings",13 months,Google,https://business.safety.google/privacy/,0
79834b6b-a95e-454c-8f4e-d1a997681992,Google,Functional,Secure-YEC,,"Serve a similar purpose for YouTube, including detecting and resolving problems",13 months,Google,https://business.safety.google/privacy/,0
30998f8f-1ed6-4521-92e1-a55581781acb,Google,Functional,CGIC,,"Improves search results delivery by autocompleting queries based on user input",6 months,Google,https://business.safety.google/privacy/,0
06714cc8-f1c9-4a75-95cc-43e04d038164,Google,Functional,_Secure-YEC,,"Used to detect spam, fraud, and abuse to protect advertisers and YouTube creators",13 months,Google,https://business.safety.google/privacy/,0
85ee88c5-a024-4791-be4f-3fa0f842243f,Google,Marketing,AdID,,"Show Google ads on non-Google sites and personalize ads based on user settings",2 weeks,Google,https://business.safety.google/privacy/,0
ddf78359-a760-4c18-a9b7-790544dc8a3c,Google,Marketing,DSID,,"Identifies signed-in users on non-Google sites to respect ad personalization settings",2 weeks,Google,https://business.safety.google/privacy/,0
0610ebea-5103-4541-8afd-ae0df06c58fb,Google,Marketing,gcl,,"Helps advertisers determine user actions on their site after clicking an ad",90 days,Google,https://business.safety.google/privacy/,0
a248e499-5297-4f83-abbf-d8e7a821f621,Google,Marketing,gac,,"Measure user activity and ad campaign performance for advertisers",90 days,Google,https://business.safety.google/privacy/,0
cf2f2038-a2b8-4856-ba2d-7b9c332b8a46,Google Ads,Functional,AEC,google.com,"AEC cookies ensure that requests within a browsing session are made by the user, and not by other sites. These cookies prevent malicious sites from acting on behalf of a user without that user's knowledge.",6 months,Google,https://business.safety.google/privacy/,0
1af7a9b5-b4a0-49b8-a1e7-03132739256c,Google Ads,Marketing,ADS_VISITOR_ID,google.com,"Cookie required to use the options and on-site web services",2 months,Google,https://business.safety.google/privacy/,0
9e56660c-afe5-4829-bd92-0d730c15a25a,Google Ads,Marketing,__Secure-3PSIDCC,google.com,"Targeting cookie. Used to create a user profile and display relevant and personalised Google Ads to the user.",2 years,Google,https://business.safety.google/privacy/,0
c5b5ac86-e7d0-449d-a667-07bb7593f5bb,Google Ads,Marketing,__Secure-3PSIDTS,google.com,"Targeting cookie. Used to create a user profile and display relevant and personalised Google Ads to the user.",2 years,Google,https://business.safety.google/privacy/,0
eabd72b0-2436-4fc9-912e-b7addf1295ca,Google Ads,Marketing,__Secure-1PSIDTS,google.com,"Targeting cookie. Used to create a user profile and display relevant and personalised Google Ads to the user.",2 years,Google,https://business.safety.google/privacy/,0
1511ad6e-79a7-4296-b2e6-b0fc8c8038ec,Google Ads,Marketing,__Secure-1PAPISID,google.com,"Targeting cookie. Used to create a user profile and display relevant and personalised Google Ads to the user.",2 years,Google,https://business.safety.google/privacy/,0
d57f4820-a329-4925-a1ec-288afc3e0729,Google Ads,Marketing,__Secure-3PSID,google.com,"Targeting cookie. Used to profile the interests of website visitors and display relevant and personalised Google ads.",2 years,Google,https://business.safety.google/privacy/,0
8e1dbb8c-95d0-487d-bf33-1bef7d2f4177,Google Ads,Marketing,__Secure-1PSID,google.com,"Targeting cookie. Used to create a user profile and display relevant and personalised Google Ads to the user.",2 years,Google,https://business.safety.google/privacy/,0
7e3cac28-1fb9-402b-8fac-d1d2989b18bf,Google Ads,Marketing,__Secure-1PSIDCC,google.com,"Targeting cookie. Used to create a user profile and display relevant and personalised Google Ads to the user.",2 years,Google,https://business.safety.google/privacy/,0
dd3f910b-6f8c-42f5-9bc3-9174981087f2,Google Ads,Marketing,__Secure-3PAPISID,google.com,"Profiles the interests of website visitors to serve relevant and personalised ads through retargeting.",2 years,Google,https://business.safety.google/privacy/,0
33eb887f-769a-48c5-8c42-a53a6e732aef,Google Maps,Marketing,OGPC,google.com,"These cookies are used by Google to store user preferences and information while viewing Google mapped pages.",1 month,Google,https://business.safety.google/privacy/,0
b7be9e13-1cb3-4e9e-beaa-2ae74e80e999,Google Maps,Marketing,OGP,google.com,"This cookie is used by Google to activate and track the Google Maps functionality.",2 months,Google,https://business.safety.google/privacy/,0
82fd4cb1-c1ad-477e-9c87-b67c7f43ace2,Google,Marketing,1P_JAR,.gstatic.com,"These cookies are set via embedded youtube-videos. They register anonymous statistical data on for example how many times the video is displayed and what settings are used for playback.",1 month,Google,https://business.safety.google/privacy/,0
45d71b84-2fcd-43b5-9b14-895966ac8f5b,Google,Functional,CONSENT,.gstatic.com,"Google cookie consent tracker",20 years,Google,https://business.safety.google/privacy/,0
7327d6c6-c159-454c-8e77-0eff566f940a,Google,Functional,SOCS,google.com,"Stores a user's state regarding their cookies choices",13 months,Google,https://business.safety.google/privacy/,0
84adc20d-d55a-468a-8efd-7be4ecb9a0a7,Google,Functional,ACCOUNT_CHOOSER,accounts.google.com,"Used to sign in with Google account.",session,Google,https://business.safety.google/privacy/,0
3388a262-a13c-4447-8351-88348bcf05be,Google,Functional,SMSV,accounts.google.com,"Used to sign in with Google account.",session,Google,https://business.safety.google/privacy/,0
e8f5fa5d-444d-41b5-8f89-9f8b14218608,Google,Functional,__Host-1PLSID,accounts.google.com,"Used to sign in with Google account.",1 year,Google,https://business.safety.google/privacy/,0
ac6ad8bd-f2b3-44ef-aab0-068f222798c5,Google,Functional,__Host-3PLSID,accounts.google.com,"Used to sign in with Google account.",1 year,Google,https://business.safety.google/privacy/,0
989a2666-d750-4ee0-912d-2721074224c7,Google,Functional,__Host-GAPS,accounts.google.com,"Used to sign in with Google account.",1 year,Google,https://business.safety.google/privacy/,0
950de05e-9ffb-4d32-aeeb-da1ed512915f,Google,Functional,LSOLH,accounts.google.com,"This cookie is for authentication with your Google account",1 year,Google,https://business.safety.google/privacy/,0
8e6c0c88-bf65-438e-9422-54c1623b9d0b,Google,Functional,g_enabled_idps,accounts.google.com,"Used for Google Single Sign On",1 year,Google,https://business.safety.google/privacy/,0
5766235e-2e0a-4d96-81e1-6e31e1cfcb5d,Google,Functional,G_AUTHUSER_H,accounts.google.com,"Google Authentication",session,Google,https://business.safety.google/privacy/,0
f769aa1c-b630-4b70-a1a5-3094b61eefda,Google,Functional,__Secure-ENID,.google.com,"Used by Google to prevent fraudulent login attempts. This also contains a Google user ID which can be used for statistics and marketing purposes following a successful login",11 Months,Google,https://business.safety.google/privacy/,0
f9012303-313b-415d-812b-2f08aa799dc4,Google,Functional,SEARCH_SAMESITE,google.com,"SameSite prevents the browser from sending this cookie along with cross-site requests. The main goal is mitigate the risk of cross-origin information leakage. It also provides some protection against cross-site request forgery attacks.",session,Google,https://business.safety.google/privacy/,0
d75d8983-8686-42b2-aa0c-2ed071043ef0,Google,Marketing,AID,google.com,"Download certain Google Tools and save certain preferences, for example the number of search results per page or activation of the SafeSearch Filter. Adjusts the ads that appear in Google Search.",1 year,Google,https://business.safety.google/privacy/,0
8dc5d7e3-e31f-421a-8bad-6540172d787f,Google,Marketing,SID,google.com,"Download certain Google Tools and save certain preferences, for example the number of search results per page or activation of the SafeSearch Filter. Adjusts the ads that appear in Google Search.",2 years,Google,https://business.safety.google/privacy/,0
0bc163fa-23bd-45a7-b806-99479027d645,Google,Marketing,HSID,google.com,"Download certain Google Tools and save certain preferences, for example the number of search results per page or activation of the SafeSearch Filter. Adjusts the ads that appear in Google Search.",2 years,Google,https://business.safety.google/privacy/,0
4b518a73-d523-4959-825c-48af82f7f11d,Google,Marketing,APISID,google.com,"Download certain Google Tools and save certain preferences, for example the number of search results per page or activation of the SafeSearch Filter. Adjusts the ads that appear in Google Search.",2 years,Google,https://business.safety.google/privacy/,0
411c539d-3b7f-436f-a9b2-8a0b6b691337,Google,Marketing,SAPISID,google.com,"Download certain Google Tools and save certain preferences, for example the number of search results per page or activation of the SafeSearch Filter. Adjusts the ads that appear in Google Search.",2 years,Google,https://business.safety.google/privacy/,0
29807136-035b-44cb-b1b5-91d45888e716,Google,Marketing,SSID,google.com,"Download certain Google Tools and save certain preferences, for example the number of search results per page or activation of the SafeSearch Filter. Adjusts the ads that appear in Google Search.",2 years,Google,https://business.safety.google/privacy/,0
7a3a89ed-e09b-4719-8500-6982006125f1,Google,Marketing,SIDCC,google.com,"Download certain Google Tools and save certain preferences, for example the number of search results per page or activation of the SafeSearch Filter. Adjusts the ads that appear in Google Search.",2 years,Google,https://business.safety.google/privacy/,0
c85ea658-6b34-44e6-8df2-23e421b82a27,Google,Marketing,OTZ,google.com,"Aggregate analysis of website visitors",17 days,Google,https://business.safety.google/privacy/,0
8a195dfa-5adf-49ad-ac4f-10bec8088b8b,Google,Marketing,A,google.com,"Google uses this cookies to make advertising more engaging to users and more valuable to publishers and advertisers",17 days,Google,https://business.safety.google/privacy/,0
fcedd5a1-738d-4da5-a57e-ec6f4d15e480,Google,Marketing,DV,google.com,"This cookies is used to collect website statistics and track conversion rates and Google ad personalisation",1 year,Google,https://business.safety.google/privacy/,0
8879d41f-3de1-4f87-b1db-b1bbdfba7d3f,Google,Marketing,NID,google.com,"This cookies is used to collect website statistics and track conversion rates and Google ad personalisation",1 year,Google,https://business.safety.google/privacy/,0
b53b27fc-4b77-4655-a920-503bf5160739,Google,Marketing,TAID,google.com,"This cookie is used to link your activity across devices if you've previously signed in to your Google Account on another device. We do this to coordinate that the ads you see across devices and measure conversion events.",14 days,Google,https://business.safety.google/privacy/,0
0e67d1e2-d311-4465-85a8-5faca50b4ce4,Google,Marketing,FPGCLDC,google.com,"Used to help advertisers determine how many times users who click on their ads end up taking an action on their site",90 days,Google,https://business.safety.google/privacy/,0
f0c95579-9131-4caf-8240-51eb01be6eb9,Google,Marketing,_gcl_au,,"Used by Google AdSense for experimenting with advertisement efficiency across websites using their services.",3 months,Google,https://business.safety.google/privacy/,0
63855ee1-89f5-471c-bb7e-512f0b06f65a,Google,Marketing,_gcl_dc,,"Used by Google AdSense for experimenting with advertisement efficiency across websites using their services.",3 months,Google,https://business.safety.google/privacy/,0
d991f1cb-2ed2-4463-85d4-fa10098f76bc,Google Optimize,Functional,_gaexp,,"Used to determine a user's inclusion in an experiment and the expiry of experiments a user has been included in.",90 days,Google,,0
4b44dca1-6588-4fa1-86e6-f51cd2f3c7b1,Google,Functional,GCLB,,"This cookie is used in context with load balancing - This optimizes the response rate between the visitor and the site, by distributing the traffic load on multiple network links or servers.",Session,Google,https://business.safety.google/privacy/,0
33a4886d-2374-4a65-a1ea-2a391096b208,Google,Analytics,FCCDCF,,"Cookie for Google Funding Choices API which allows for functionality specific to consent gathering for things like GDPR consent and CCPA opt-out.",13 months,Google,https://business.safety.google/privacy/,0
fb2f09bf-40c9-4798-b3a7-6d60d5a07dab,Google,Analytics,FCNEC,,"Cookie for Google Funding Choices API which allows for functionality specific to consent gathering for things like GDPR consent and CCPA opt-out.",13 months,Google,https://business.safety.google/privacy/,0
5bb1e580-4276-494c-a00d-5be4404756e7,Google,Functional,receive-cookie-deprecation,,"This cookie ensures browers in an experiment group of the Chrome-facilitated testing period include the Sec-Cookie-Deprecation request header as soon as it becomes available.",180 days,Google,https://business.safety.google/privacy/,0
6ca594b8-269b-4ed3-86d1-127c2f1bd20e,Google,Marketing,_dcid,,"Collects information on user behaviour on multiple websites. This information is used in order to optimize the relevance of advertisement on the website.",400 days,Google,https://business.safety.google/privacy/,0
b3a0611c-5ab5-483d-b7d5-b91e105e913c,Google,Marketing,SNID,.google.com,"This cookie is used to collect website statistics and track conversion rates and Google ad personalisation",6 months,Google,https://business.safety.google/privacy/,0
6e2b569d-c5ea-449a-8db0-db5e04378247,Google,Marketing,cookies_accepted,.developers.google.com,"This functionality cookie is simply to verify that you have allowed us to set cookies on your machine",1 year,Google,https://business.safety.google/privacy/,0
b37e458d-66fe-4e5d-bc02-1fe1810ebdc5,Google,Functional,django_language,developers.google.com,"Cookie necessary for the use of the options and services of the website.",3 month,Google,https://business.safety.google/privacy/,0
37094191-e791-4f82-8c82-9ffda7296119,Google,Marketing,GN_PREF,news.google.com,"This cookie is used to collect website statistics and track conversion rates and Google ad personalisation",1 year,Google,https://business.safety.google/privacy/,0
20e2d3c6-7792-4e5f-b242-e433d149b82f,Google,Marketing,OSID,.google.com,"This cookie is used to collect website statistics and track conversion rates and Google ad personalisation",6 months,Google,https://business.safety.google/privacy/,0
c8f6e83d-4c03-4278-bc5a-6098ab0ecb42,Google,Marketing,__Secure-OSID,.google.com,"This cookie is used to collect website statistics and track conversion rates and Google ad personalisation",6 months,Google,https://business.safety.google/privacy/,0
d861c54f-2c45-445f-8506-7cdc58ed17f6,Google,Marketing,LSID,.google.com,"This cookie is used to collect website statistics and track conversion rates and Google ad personalisation",6 months,Google,https://business.safety.google/privacy/,0
00714b33-b652-4fd8-96dc-133049533390,Google,Marketing,COMPASS,.google.com,"This cookie is used to collect website statistics and track conversion rates and Google ad personalisation",2 days,Google,https://business.safety.google/privacy/,0
59a15040-c4c0-4245-8968-990d0843a7a3,Google,Marketing,UULE,.google.com,"sends precise location information from your browser to Googles servers so that Google can show you results that are relevant to your location. The use of this cookie depends on your browser settings and whether you have chosen to have location turned on for your browser.",6 hours,Google,https://business.safety.google/privacy/,0
256c8986-d881-11e9-8a34-2a2ae2dbcce4,DoubleClick/Google Marketing,Marketing,IDE,doubleclick.net (3rd party),"This cookie is used for targeting, analyzing and optimisation of ad campaigns in DoubleClick/Google Marketing Suite ",2 years,Google,https://business.safety.google/privacy/,0
256c8af8-d881-11e9-8a34-2a2ae2dbcce4,DoubleClick/Google Marketing,Marketing,DSID,doubleclick.net (3rd party),"This cookie is used for targeting, analyzing and optimisation of ad campaigns in DoubleClick/Google Marketing Suite ",2 weeks,Google,https://business.safety.google/privacy/,0
256c8c38-d881-11e9-8a34-2a2ae2dbcce4,DoubleClick/Google Marketing,Marketing,ID,doubleclick.net (3rd party),"This cookie is used for targeting, analyzing and optimisation of ad campaigns in DoubleClick/Google Marketing Suite ",2 months,Google,https://business.safety.google/privacy/,0
4421f8c6-111e-4891-8fb8-e06e14b88b86,DoubleClick/Google Marketing,Marketing,RUL,doubleclick.net (3rd party),"Used by DoubleClick to determine if the website ad was properly displayed. This is done to make their marketing efforts more efficient.",1 year,Google,https://business.safety.google/privacy/,0
8ad1ca29-b3d1-4ffb-92ca-a05524228dc7,DoubleClick/Google Marketing,Marketing,FLC,doubleclick.net (3rd party),"This cookie is used to link your activity across devices if you’ve previously signed in to your Google Account on another device. We do this to coordinate that the ads you see across devices and measure conversion events.",10 seconds,Google,https://business.safety.google/privacy/,0
cd5b4059-c31a-4467-bb0d-5fe50b0589b4,DoubleClick/Google Marketing,Marketing,__gads,,"This cookie is used by Google for a variety of purposes (e.g., ensuring Frequency Caps work correctly). It includes AdSense if you have AdSense enabled. This cookie is associated with the DoubleClick for Publishers service from Google. Its purpose is to monitor the showing of advertisements on the site, for which the owner may earn some revenue. The main purpose of this cookie is targeting/advertising.",various,Google,https://business.safety.google/privacy/,0
aa3571ac-7c69-4840-835a-9c086e5acda0,DoubleClick/Google Marketing,Marketing,GoogleAdServingTest,,"Used to register what ads have been displayed to the user.",session,Google,https://business.safety.google/privacy/,0
e8f90515-90ef-4ffa-917f-660d257126e4,DoubleClick/Google Marketing,Marketing,ar_debug,doubleclick.net,"Store and track conversions",Persistent,Google,https://business.safety.google/privacy/,0
4204f375-a3e5-4b04-ae39-9adb71f3eb5d,DoubleClick/Google Marketing,Functional,test_cookie,doubleclick.net,"This cookie is set by DoubleClick (which is owned by Google) to determine if the website visitor's browser supports cookies.",1 year,Google,https://business.safety.google/privacy/,0
498e5e87-99a1-4f49-adbf-c2736e1af491,DoubleClick/Google Marketing,Marketing,APC,doubleclick.net,"This cookie is used for targeting, analyzing and optimisation of ad campaigns in DoubleClick/Google Marketing Suite",6 months,Google,https://business.safety.google/privacy/,0
256c33aa-d881-11e9-8a34-2a2ae2dbcce4,comScore,Analytics,S1,nl.sitestat.com (3rd party),Comscore: statistical and analytical data,5 years,comScore,https://www.comscore.com/About/Privacy-Policy,0
256c34e0-d881-11e9-8a34-2a2ae2dbcce4,comScore,Analytics,C1,nl.sitestat.com (3rd party),Comscore: statistical and analytical data,5 years,comScore,https://www.comscore.com/About/Privacy-Policy,0
256c3620-d881-11e9-8a34-2a2ae2dbcce4,Adobe Analytics,Analytics,s_cc,,Used to determine if browser of user accepts cookies or not,End of session (browser),Adobe,https://www.adobe.com/nl/privacy.html,0
256c39ea-d881-11e9-8a34-2a2ae2dbcce4,Adobe Analytics,Analytics,s_sq,,Used to register the previous link clicked by the user,End of session (browser),Adobe,https://www.adobe.com/nl/privacy.html,0
256c3b48-d881-11e9-8a34-2a2ae2dbcce4,Adobe Analytics,Analytics,s_vi, or 207.net (3rd party),Contains a unique ID to identify a user,2 years,Adobe,https://www.adobe.com/nl/privacy.html,1
256c3c92-d881-11e9-8a34-2a2ae2dbcce4,Adobe Analytics,Analytics,s_fid,,Alternative cookie with unique user ID / timestamp when the s_vi cookie can not be set for technical reasons,5 years,Adobe,https://www.adobe.com/nl/privacy.html,0
34ec510b-b257-4c77-80f0-660b068a30f7,Adobe Analytics,Analytics,fid,,"If other visitor ID methods fail, Adobe sets a fallback cookie or uses a combination of IP address and user agent to identify the visitor.",2 years,Adobe,https://www.adobe.com/nl/privacy.html,0
0e649408-23f7-4d86-ba7a-7b63c01e2d03,Adobe Analytics,Marketing,s_ecid,,"This cookie is set by the customer's domain after the AMCV cookie is set by the client. The purpose of this cookie is to allow persistent ID tracking in the 1st-party state and is used as a reference ID if the AMCV cookie has expired.",2 years,Advertiser's website,https://www.adobe.com/nl/privacy.html,0
59604f12-af2c-4e48-a0c9-8b295845f0ce,Adobe Analytics,Analytics,s_ppv,,"Stores information on the percentage of the page displayed",session,Adobe,https://www.adobe.com/nl/privacy.html,0
85f9f4ca-4805-487e-a4db-11d707aec6b7,Adobe Analytics,Analytics,s_tp,,"This lets us know how much of the page you viewed.",session,Adobe,https://www.adobe.com/nl/privacy.html,0
9e583fe9-0868-4174-8e9e-c43e100e27a6,Adobe Analytics,Functional,sat_track,"","The sat_track cookie is a part of Adobe Analytics. It controls the enabling and disabling of cookies and whether they are loaded onto the site.",90 days,Adobe,https://www.adobe.com/privacy,0
256c3dc8-d881-11e9-8a34-2a2ae2dbcce4,Adobe Audience Manager,Marketing,demdex, or demdex.net (3rd party),"Unique value with which Audience Manager can identify a user. Used, among others, for identification, segmentation, modeling and reporting purposes.",180 days after last activity or 10 years when opting out,Adobe,https://www.adobe.com/nl/privacy.html,0
256c3efe-d881-11e9-8a34-2a2ae2dbcce4,Adobe Audience Manager,Marketing,dextp,,Registers the date plus time (timestamp) on which a data synchronization was last performed by the Audience Manager.,180 days after last activity ,Adobe,https://www.adobe.com/nl/privacy.html,0
256c4034-d881-11e9-8a34-2a2ae2dbcce4,Adobe Audience Manager,Marketing,dst,,Used to register a possible error message when sending data to a linked system.,180 days after last activity or 10 years when opting out,Adobe,https://www.adobe.com/nl/privacy.html,0
256c43e0-d881-11e9-8a34-2a2ae2dbcce4,Adobe Audience Manager,Marketing,_dp, or demdex.net (3rd party),Used to determine if browser of user accepts cookies or not,30 seconds,Adobe,https://www.adobe.com/nl/privacy.html,0
6ca755d4-8ecc-4031-a28e-b6d42235fb38,Adobe Audience Manager,Marketing,aam_uuid,,"Adobe Audience Manager - data management platform uses these cookies to assign a unique ID when users visit a website.",1 month,Adobe,https://www.adobe.com/nl/privacy.html,0
a4b664ae-feb8-4ce4-9f21-27ac382d4702,Adobe Audience Manager,Marketing,AMCV_,,"Adobe Experience Cloud uses a cookie to store a unique visitor ID that is used across Experience Cloud Solutions.",2 years,Adobe,https://www.adobe.com/nl/privacy.html,1
fc79d591-2969-4609-85d9-3750faa5d5fb,Adobe Audience Manager,Marketing,AMCVS_,,"The AMCVS cookie serves as a flag indicating that the session has been initialized. Its value is always 1 and discontinues when the session has ended.",Session,Adobe,https://www.adobe.com/nl/privacy.html,1
795dc59a-1c7c-4bde-9ea8-53268889840b,Adobe Audience Manager,Marketing,mbox,,"Adobe Target uses cookies to give website operators the ability to test which online content and offers are more relevant to visitors.",2 years,Adobe,https://www.adobe.com/nl/privacy.html,0
0b7e888e-67e1-416d-bea1-d574fd2bdc91,Adobe Audience Manager,Functional,at_check,,"A simple test value used to determine if a visitor supports cookies. Set each time a visitor requests a page.",session,Adobe,https://www.adobe.com/nl/privacy.html,0
2932ef1f-14ec-4003-91d6-959f68914913,Adobe Audience Manager,Functional,renderid,,"This cookie is needed by the dispatcher (webserver) to distinguish between the different publisher server.",session,Adobe,https://www.adobe.com/nl/privacy.html,0
d3310445-3289-4ae1-8086-4ca24f95c18a,Adobe Audience Manager,Marketing,dpm,,"DPM is an abbreviation for Data Provider Match. It tells internal, Adobe systems that a call from Audience Manager or the Adobe Experience Cloud ID Service is passing in customer data for synchronization or requesting an ID.",180 days,Adobe,https://www.adobe.com/nl/privacy.html,0
256c453e-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,TPC,adform.net (3rd party),Used to determine if browser of user accepts third party cookies or not,14 days,Adform,https://site.adform.com/privacy-center/overview,0
256c4714-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,C,adform.net (3rd party),Used to determine if browser of user accepts cookies or not,60 days till 3650 days,Adform,https://site.adform.com/privacy-center/overview,0
256c489a-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,uid,adform.net (3rd party),Contains a unique ID to identify a user,60 days,Adform,https://site.adform.com/privacy-center/overview,0
256c49e4-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,cid,adform.net (3rd party),Unique value to be able to identify cookies from users (same as uid),60 days,Adform,https://site.adform.com/privacy-center/overview,0
256c4b1a-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,GCM,adform.net (3rd party),Checks if a new partner cookie synchronization is required,1 day,Adform,https://site.adform.com/privacy-center/overview,0
256c4cd2-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,CM,adform.net (3rd party),Checks if a new partner cookie synchronization is required (cookie set by ad server),1 day,Adform,https://site.adform.com/privacy-center/overview,0
256c5038-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,CM14,adform.net (3rd party),Checks if a new partner cookie synchronization is required (cookie set during cookie synchronization ),1 day,Adform,https://site.adform.com/privacy-center/overview,0
256c5196-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,token,adform.net (3rd party),Security token for opt out functionality,End of session (browser),Adform,https://site.adform.com/privacy-center/overview,0
256c52cc-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,otsid,adform.net (3rd party),Opt out cookie for specific advertiser,365 days,Adform,https://site.adform.com/privacy-center/overview,0
256c540c-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,adtrc,adform.net (3rd party),Used to determine if browser related information has been collected,7 days,Adform,https://site.adform.com/privacy-center/overview,0
256c5542-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,SR,adform.net (3rd party),"Unique value that records info about consecutive ads - includes: total impressions, daily impressions, total clicks, daily clicks, and last impression date",1 day,Adform,https://site.adform.com/privacy-center/overview,1
256c5678-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,CT,adform.net (3rd party),Identifies the last click membership for third-party pixels on advertiser's pages,1 hour,Adform,https://site.adform.com/privacy-center/overview,1
256c5b3c-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,EBFCD,adform.net (3rd party),Registers daily max. number of impressions (frequency cap) for expanding advertisements (expandables),7 days,Adform,https://site.adform.com/privacy-center/overview,1
256c5cb8-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,EBFC,adform.net (3rd party),Registers max. total number of impressions (frequency cap) for expanding advertisements (expandables),7 days,Adform,https://site.adform.com/privacy-center/overview,1
256c5df8-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,CFFC,adform.net (3rd party),Registers max. number of impressions (frequency cap) for compound banners,7 days,Adform,https://site.adform.com/privacy-center/overview,1
256c5f2e-d881-11e9-8a34-2a2ae2dbcce4,Adform,Marketing,DigiTrust.v1.identity,adform.net (3rd party),"Unique value with which the user is identified by DigiTrust, an independent industrial body",7 days,Adform,https://site.adform.com/privacy-center/overview,0
5c4d75ef-55cf-4483-9a9d-a33ce8e950b5,Adform,Marketing,adformfrpid,,"Collects data on the user across websites - This data is used to make advertisement more relevant.",30 days,Adform,https://site.adform.com/privacy-center/overview,0
256c606e-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,lu,facebook.com (3rd party),"Used to record whether the person chose to remain logged in Contents: User ID and miscellaneous log in information (e.g., number of logins per account, state of the ""remember me"" check box, etc.)",2 year,Facebook,https://www.facebook.com/about/privacy/,0
256c61a4-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,xs,facebook.com (3rd party),"Used in conjunction with the c_user cookie to authenticate your identity to Facebook. Contents: Session ID, creation time, authentication value, secure session state, caching group ID",90 days,Facebook,https://www.facebook.com/about/privacy/,0
256c62da-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,c_user,facebook.com (3rd party),"Used in conjunction with the xs cookie to authenticate your identity to Facebook. Contents: User ID",90 days,Facebook,https://www.facebook.com/about/privacy/,0
256c6668-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,m_user,facebook.com (3rd party),"Used to authenticate your identity on Facebook's mobile website. Contents: Email, User ID, authentication value, version, user agent capability, creation time, Facebook version indicator",90 days,Facebook,https://www.facebook.com/about/privacy/,0
256c67a8-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,pl,facebook.com (3rd party),"Used to record that a device or browser logged in via Facebook platform. Contents: Y/N",90 days,Facebook,https://www.facebook.com/about/privacy/,0
256c68fc-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,dbln,facebook.com (3rd party),"Used to enable device-based logins Contents: Login authentication values",2 years,Facebook,https://www.facebook.com/about/privacy/,0
256c6a32-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,aks,facebook.com (3rd party),"Determines the login state of a person visiting accountkit.com Contents: Account kit access token",30 days,Facebook,https://www.facebook.com/about/privacy/,0
256c6b68-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,aksb,facebook.com (3rd party),"Authenticates logins using Account Kit Contents: Request time value",30 minutes,Facebook,https://www.facebook.com/about/privacy/,0
256c6d8e-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,sfau,facebook.com (3rd party),"Optimizes recovery flow after failed login attempts Contents: Encrypted user ID, contact point, time stamp, and other login information",1 day,Facebook,https://www.facebook.com/about/privacy/,0
256c7176-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,ick,facebook.com (3rd party),Stores an encryption key used to encrypt cookies,2 years,Facebook,https://www.facebook.com/about/privacy/,0
256c72f2-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,csm,facebook.com (3rd party),Insecure indicator,90 days,Facebook,https://www.facebook.com/about/privacy/,0
256c74c8-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,s,facebook.com (3rd party),"Facebook browser identification, authentication, marketing, and other Facebook-specific function cookies.",90 days,Facebook,https://www.facebook.com/about/privacy/,0
256c7612-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,datr,facebook.com (3rd party),"Used to prevent creation of fake / spammy accounts. Datr cookie is associated with a browser, not individual people.",2 years,Facebook,https://www.facebook.com/about/privacy/,0
256c7752-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,sb,facebook.com (3rd party),"Facebook browser identification, authentication, marketing, and other Facebook-specific function cookies.",2 years,Facebook,https://www.facebook.com/about/privacy/,0
256c787e-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,fr,facebook.com (3rd party),"Contains a unique browser and user ID, used for targeted advertising.",90 days,Facebook,https://www.facebook.com/about/privacy/,0
256c7c5c-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,oo,facebook.com (3rd party),Ad optout cookie,5 years,Facebook,https://www.facebook.com/about/privacy/,0
256c7db0-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,ddid,facebook.com (3rd party),Used to open a specific location in an advertiser's app upon installation,28 days,Facebook,https://www.facebook.com/about/privacy/,0
256c7f04-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,locale,facebook.com (3rd party),"This cookie contains the display locale of the last logged in user on this browser. This cookie appears to only be set after the user logs out. The locale cookie has a lifetime of one week.",7 days,Facebook,https://www.facebook.com/about/privacy/,0
0d249cd5-ae35-4dbb-ad00-d5ca46948619,Facebook,Marketing,_fbp,facebook.com (3rd party),Used by Facebook to deliver a series of advertisement products such as real time bidding from third party advertisers,4 months,Facebook,https://www.facebook.com/about/privacy/,0
d437b1da-7729-4c74-a5cc-e73620f5e381,Facebook,Marketing,_fbc,facebook.com (3rd party),Used by Facebook to deliver a series of advertisement products such as real time bidding from third party advertisers,2 years,Facebook,https://www.facebook.com/about/privacy/,0
256c8170-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,js_ver,facebook.com (3rd party),Records the age of Facebook javascript files.,7 days,Facebook,https://www.facebook.com/about/privacy/,0
256c82a6-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,rc,facebook.com (3rd party),Used to optimize site performance for advertisers,7 days,Facebook,https://www.facebook.com/about/privacy/,0
256c84f4-d881-11e9-8a34-2a2ae2dbcce4,Facebook,Marketing,campaign_click_url,facebook.com (3rd party),Records the Facebook URL that an individual landed on after clicking on an ad promoting Facebook,30 days,Facebook,https://www.facebook.com/about/privacy/,0
47a69b68-dfe1-480f-972f-0a09762af6b5,Facebook,Functional,wd,facebook.com (3rd party),"This cookie stores the browser window dimensions and is used by Facebook to optimise the rendering of the page.",Session,Facebook,https://www.facebook.com/about/privacy/,0
983bb537-a3d2-4d0c-b6ce-64f2fa4434cd,Facebook,Marketing,usida,facebook.com (3rd party),"Collects a combination of the user’s browser and unique identifier, used to tailor advertising to users.",Session,Facebook,https://www.facebook.com/about/privacy/,0
4c55ca74-d188-4923-a76b-d6d108063438,Facebook,Functional,presence,facebook.com (3rd party),"The presence cookie is used to contain the user’s chat state.",Session,Facebook,https://www.facebook.com/about/privacy/,0
256c8d78-d881-11e9-8a34-2a2ae2dbcce4,Platform161,Marketing,fl_inst,creative-serving.com (3rd party),Used to check if Flash plugin is enabled in browser of user.,7 days,Platform161,https://platform161.com/cookie-and-privacy-policy/,0
256c8eae-d881-11e9-8a34-2a2ae2dbcce4,Platform161,Marketing,pvc2,creative-serving.com (3rd party),Contains information related to ad impressions.,13 months,Platform161,https://platform161.com/cookie-and-privacy-policy/,0
256c8fe4-d881-11e9-8a34-2a2ae2dbcce4,Platform161,Marketing,pcc2,creative-serving.com (3rd party),Contains information related to ad impressions.,13 months,Platform161,https://platform161.com/cookie-and-privacy-policy/,0
256c93ae-d881-11e9-8a34-2a2ae2dbcce4,Platform161,Marketing,trc,creative-serving.com (3rd party),Contains information related to ad impressions.,13 months,Platform161,https://platform161.com/cookie-and-privacy-policy/,0
256c9516-d881-11e9-8a34-2a2ae2dbcce4,Platform161,Marketing,tuuid,creative-serving.com (3rd party),Unique value to identify individual users.,13 months,Platform161,https://platform161.com/cookie-and-privacy-policy/,0
256c964c-d881-11e9-8a34-2a2ae2dbcce4,Platform161,Marketing,ad2,creative-serving.com (3rd party),Contains information related to ad impressions.,13 months,Platform161,https://platform161.com/cookie-and-privacy-policy/,0
256c9840-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,MR,.bing.com (3rd party) or .microsoft.com (3rd party),Used to collect information for analytics purposes.,6 months,Microsoft,https://account.microsoft.com/privacy,0
256c999e-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,MUID,.bing.com (3rd party) or .microsoft.com (3rd party),"Identifies unique web browsers visiting Microsoft sites. These cookies are used for advertising, site analytics, and other operational purposes.",1 year,Microsoft,https://account.microsoft.com/privacy,0
256c9b60-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,MUIDB,.bing.com (3rd party) or .microsoft.com (3rd party),"Identifies unique web browsers visiting Microsoft sites. These cookies are used for advertising, site analytics, and other operational purposes.",1 year,Microsoft,https://account.microsoft.com/privacy,0
256c9eb2-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,MC1,.bing.com (3rd party) or .microsoft.com (3rd party),"Identifies unique web browsers visiting Microsoft sites. These cookies are used for advertising, site analytics, and other operational purposes.",1 year,Microsoft,https://account.microsoft.com/privacy,0
256ca010-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,MSFPC,.bing.com (3rd party) or .microsoft.com (3rd party),"Identifies unique web browsers visiting Microsoft sites. These cookies are used for advertising, site analytics, and other operational purposes.",1 year,Microsoft,https://account.microsoft.com/privacy,0
256ca150-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,_uetsid,.bing.com (3rd party) or .microsoft.com (3rd party),This cookie is used by Bing to determine what ads should be shown that may be relevant to the end user perusing the site.,30 minutes,Microsoft,https://account.microsoft.com/privacy,0
8a195ee3-9a8c-4442-9ee2-37a718864253,Bing / Microsoft,Marketing,_uetvid,.bing.com (3rd party) or .microsoft.com (3rd party),"This is a cookie utilised by Microsoft Bing Ads and is a tracking cookie. It allows us to engage with a user that has previously visited our website.",16 days,Microsoft,https://account.microsoft.com/privacy,0
256ca290-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,ANON,microsoft.com (3rd party),"Contains the A, a unique identifier derived from your Microsoft account, which is used for advertising, personalization, and operational purposes. It is also used to preserve your choice to opt out of interest-based advertising from Microsoft if you have chosen to associate the opt-out with your Microsoft account.",1 year,Microsoft,https://account.microsoft.com/privacy,0
b15dc96b-ad02-4c36-9dee-d0c7bafea40f,Bing / Microsoft,Marketing,ANONCHK,microsoft.com (3rd party),"Used to store session ID for a users session to ensure that clicks from adverts on the Bing search engine are verified for reporting purposes and for personalisation",10 minutes,Microsoft,https://account.microsoft.com/privacy,0
256ca3c6-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,CC,microsoft.com (3rd party),Contains a country code as determined from your IP address.,1 year,Microsoft,https://account.microsoft.com/privacy,0
256ca4fc-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Functional,PPAuth,microsoft.com (3rd party),Helps to authenticate you when you sign in with your Microsoft account.,5 years,Microsoft,https://account.microsoft.com/privacy,0
256ca632-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Functional,MSPAuth,microsoft.com (3rd party),Helps to authenticate you when you sign in with your Microsoft account.,5 years,Microsoft,https://account.microsoft.com/privacy,0
256ca95c-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Functional,MSNRPSAuth,microsoft.com (3rd party),Helps to authenticate you when you sign in with your Microsoft account.,5 years,Microsoft,https://account.microsoft.com/privacy,0
256caf10-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Functional,KievRPSAuth,microsoft.com (3rd party),Helps to authenticate you when you sign in with your Microsoft account.,5 years,Microsoft,https://account.microsoft.com/privacy,0
256cb096-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Functional,WLSSC,microsoft.com (3rd party),Helps to authenticate you when you sign in with your Microsoft account.,5 years,Microsoft,https://account.microsoft.com/privacy,0
256cb1d6-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Functional,MSPProf,microsoft.com (3rd party),Helps to authenticate you when you sign in with your Microsoft account.,5 years,Microsoft,https://account.microsoft.com/privacy,0
256cb30c-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Functional,MC0,microsoft.com (3rd party),Detects whether cookies are enabled in the browser.,End of session (browser),Microsoft,https://account.microsoft.com/privacy,0
256cb438-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Functional,MS0,microsoft.com (3rd party),Identifies a specific session.,End of session (browser),Microsoft,https://account.microsoft.com/privacy,0
256cb816-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,NAP,microsoft.com (3rd party),"Contains an encrypted version of your country, postal code, age, gender, language and occupation, if known, based on your Microsoft account profile.",1 year,Microsoft,https://account.microsoft.com/privacy,0
256cb97e-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,MH,microsoft.com (3rd party),"Appears on co-branded sites where Microsoft is partnering with an advertiser. This cookie identifies the advertiser, so the right ad is selected.",End of session (browser),Microsoft,https://account.microsoft.com/privacy,0
256cbabe-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,childinfo,microsoft.com (3rd party),Contains information that Microsoft account uses within its pages in relation to child accounts.,5 years,Microsoft,https://account.microsoft.com/privacy,0
256cbbf4-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,kcdob,microsoft.com (3rd party),Contains information that Microsoft account uses within its pages in relation to child accounts.,5 years,Microsoft,https://account.microsoft.com/privacy,0
256cbd2a-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,kcrelid,microsoft.com (3rd party),Contains information that Microsoft account uses within its pages in relation to child accounts.,5 years,Microsoft,https://account.microsoft.com/privacy,0
256cbe56-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,kcru,microsoft.com (3rd party),Contains information that Microsoft account uses within its pages in relation to child accounts.,5 years,Microsoft,https://account.microsoft.com/privacy,0
256cc270-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,pcfm,microsoft.com (3rd party),Contains information that Microsoft account uses within its pages in relation to child accounts.,5 years,Microsoft,https://account.microsoft.com/privacy,0
256cc3f6-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Functional,x-ms-gateway-slice,microsoft.com (3rd party),Identifies a gateway for load balancing.,End of session (browser),Microsoft,https://account.microsoft.com/privacy,0
256cc540-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,ToptOut,.bing.com (3rd party) or .microsoft.com (3rd party),Records your decision not to receive interest-based advertising delivered by Microsoft.,1 year,Microsoft,https://account.microsoft.com/privacy,0
256cc676-d881-11e9-8a34-2a2ae2dbcce4,Bing / Microsoft,Marketing,ACH01,.bing.com (3rd party) or .microsoft.com (3rd party),Maintains information about which ad and where the user clicked on the ad.,End of session (browser),Microsoft,https://account.microsoft.com/privacy,0
86987c90-d49d-4f18-92c6-cb7219941de6,Bing / Microsoft,Functional,AADSSO,microsoft.com (3rd party),Microsoft Microsoft Online Authentication Cookie,End of session (browser),Microsoft,https://account.microsoft.com/privacy,0
55cd7242-c471-4f79-beae-239c8527249d,Bing / Microsoft,Functional,brcap,microsoft.com (3rd party),Microsoft Microsoft Online Authentication Cookie,1 year,Microsoft,https://account.microsoft.com/privacy,0
3b3839c7-29e4-488f-ac31-966017009ccd,Bing / Microsoft,Functional,SRM_B,microsoft.com (3rd party),"Collected user data is specifically adapted to the user or device. The usercan also be followed outside of the loaded website, creating a picture of the visitor's behavior.",1 year,Microsoft,https://account.microsoft.com/privacy,0
594f6af4-c339-43ad-8547-ca711c17ee19,Bing / Microsoft,Marketing,_RwBf,bing.com,"This cookie helps us to track the effectiveness of advertising campaigns on the Bing advertising network.",1 year,Microsoft,https://account.microsoft.com/privacy,0
09d36a13-5d27-40e7-b833-f6054a7c8022,Bing / Microsoft,Marketing,_HPVN,bing.com,"Analysis service that connects data from the Bing advertising network with actions performed on the website.",1 year,Microsoft,https://account.microsoft.com/privacy,0
5dd00925-86b2-4c0c-bf6a-1bd86db4fcdd,Bing / Microsoft,Marketing,_UR,bing.com,"This cookie is used by the Bing advertising network for advertising tracking purposes.",1 year,Microsoft,https://account.microsoft.com/privacy,0
63fb866a-437d-421d-9740-b78b5365e2b1,Bing / Microsoft,Marketing,OID,bing.com,"This cookie is used by the Bing advertising network for advertising tracking purposes.",3 months,Microsoft,https://account.microsoft.com/privacy,0
365b8488-d7ef-48c0-bebf-285e31846a87,Bing / Microsoft,Marketing,OIDI,bing.com,"This cookie is used by the Bing advertising network for advertising tracking purposes.",3 months,Microsoft,https://account.microsoft.com/privacy,0
f0682f93-501a-4b71-805c-6b4957235a55,Bing / Microsoft,Marketing,OIDR,bing.com,"This cookie is used by the Bing advertising network for advertising tracking purposes.",3 months,Microsoft,https://account.microsoft.com/privacy,0
59744a0e-f21b-4686-a2aa-f6bbf527defe,Bing / Microsoft,Marketing,BCP,bing.com,"This cookie is used for advertisement tracking purposes.",1 year,Microsoft,https://account.microsoft.com/privacy,0
09e1abf7-9719-42f8-b72a-50dd13e3c8f5,Bing / Microsoft,Marketing,BFBUSR,bing.com,"This cookie is used for advertisement tracking purposes.",1 year,Microsoft,https://account.microsoft.com/privacy,0
975dd26e-1890-48bc-9106-34b5afe892ba,Bing / Microsoft,Marketing,BFB,bing.com,"This cookie is used for advertisement tracking purposes.",1 year,Microsoft,https://account.microsoft.com/privacy,0
5d3b368c-0b2e-4e80-896d-aa40043b6ab9,Bing / Microsoft,Marketing,ACL,bing.com,"This cookie is used for advertisement tracking purposes.",3 months,Microsoft,https://account.microsoft.com/privacy,0
9b6136da-9570-4bbb-979c-7fecd0a472ad,Bing / Microsoft,Marketing,ACLUSR,bing.com,"This cookie is used for advertisement tracking purposes.",1 year,Microsoft,https://account.microsoft.com/privacy,0
890efa28-0de4-4a5b-9298-075a15bdef7a,Bing / Microsoft,Marketing,MSPTC,bing.com,"This cookie registers data on the visitor. The information is used to optimize advertisement relevance.",1 year,Microsoft,https://account.microsoft.com/privacy,0
d828ed06-e5b8-4a18-92d2-6b66b6440e3e,Azure / Microsoft,Functional,buid,microsoft.com (3rd party),This cookie is used by Microsoft to securely verify your login information,1 month,Microsoft,https://account.microsoft.com/privacy,0
e2740aa9-302f-48f4-8da4-adc87a648d84,Azure / Microsoft,Functional,esctx,microsoft.com (3rd party),This cookie is used by Microsoft to securely verify your login information,session,Microsoft,https://account.microsoft.com/privacy,0
d9a536e7-ec2f-45a1-bc57-44116eea5eba,Azure / Microsoft,Functional,fpc,microsoft.com (3rd party),This cookie is used by Microsoft to securely verify your login information,session,Microsoft,https://account.microsoft.com/privacy,0
5ba88877-4115-44b0-86f5-858d5becb80f,Azure / Microsoft,Functional,stsservicecookie,microsoft.com (3rd party),Cookie for Azure Active Directory B2C-verification,session,Microsoft,https://account.microsoft.com/privacy,0
0a8ed6cf-bb76-4870-a055-c728bba2a375,Azure / Microsoft,Functional,ARRAffinity,,"When using Microsoft Azure as a hosting platform and enabling load balancing, this cookie ensures that requests from one visitor's browsing session are always handled by the same server in the cluster.",1 year,Microsoft,https://account.microsoft.com/privacy,0
d26e571a-4f43-11eb-ae93-0242ac130002,Azure / Microsoft,Functional,ARRAffinitySameSite,,"When using Microsoft Azure as a hosting platform and enabling load balancing, this cookie ensures that requests from one visitor's browsing session are always handled by the same server in the cluster.",1 year,Microsoft,https://account.microsoft.com/privacy,0
4cd8f567-80a5-4338-80d4-4f803b198f8d,Azure / Microsoft,Security,__AntiXsrfToken,,"This cookie is used to prevent Cross-site request forgery (often abbreviated as CSRF) attacks of the website. CSRF attacks exploit the trust that a site has in a user's browser.",session,Microsoft,https://account.microsoft.com/privacy,0
27c3efb8-ae3c-411c-a323-487b49109a64,Azure / Microsoft,Functional,.ASPXANONYMOUS,,"Created by ASP.Net. This cookie configures anonymous identification for application authorization. This is required to identify entities that are not authenticated when authorization is required.",session,Microsoft,https://account.microsoft.com/privacy,0
ab2c6849-022d-46e0-84f0-12617c09d8de,Azure / Microsoft,Functional,.ASPXAUTH,,"Created by ASP.Net. .ASPXAUTH is a cookie to identify if the user is authenticated( As user's identity has been verified)",session,Microsoft,https://account.microsoft.com/privacy,0
9d87ca66-a460-4b51-8a78-3fa9277f1913,Azure / Microsoft,Functional,nSGt-,microsoft.com (3rd party),This cookie is used by Microsoft to securely verify your Sharepoint login information,session,Microsoft,https://account.microsoft.com/privacy,1
a5ddb0d6-438d-46d9-bcea-ab4057e50ed5,Azure / Microsoft,Functional,RpsContextCookie,microsoft.com (3rd party),This cookie is used by Microsoft to securely verify your Sharepoint login information,session,Microsoft,https://account.microsoft.com/privacy,0
33dd473d-db07-49aa-99b5-592f360a35ba,Azure / Microsoft,Functional,ASLBSACORS,,"Microsoft App Service and Front Door Affinity Cookies. These cookies are used to direct your browser to use the appropriate backend server.",Session,Microsoft,https://account.microsoft.com/privacy,0
2cd84dc9-cd06-4d89-a006-14b911e538e5,Azure / Microsoft,Functional,ASLBSA,,"Microsoft App Service and Front Door Affinity Cookies. These cookies are used to direct your browser to use the appropriate backend server.",Session,Microsoft,https://account.microsoft.com/privacy,0
b4cdb430-343f-4e20-acbd-4a59783552d5,Azure / Microsoft,Functional,ASPSESSIO,,"Browsing session: the asterisks identify an alphanumerical code that varies from session to session in automatic mode.",Session,Microsoft,https://account.microsoft.com/privacy,1
c049562e-e15a-44e8-81c4-baf64fe9ca8f,Azure / Microsoft,Functional,ApplicationGatewayAffinity,,"This cookie is used by Azure Apps to keep a user session on the same server.",Session,Microsoft,https://account.microsoft.com/privacy,0
46ef85a0-166d-47f6-9769-2ab599e2cf90,Azure / Microsoft,Functional,ApplicationGatewayAffinityCORS,,"This cookie is used by Azure Apps to keep a user session on the same server.",Session,Microsoft,https://account.microsoft.com/privacy,0
5af4a198-5e16-42df-9a53-cc1adcc6194c,Azure / Microsoft,Functional,VisitorStorageGuid,,"This cookie is used by Azure Apps to keep a user session on the same server.",Session,Microsoft,https://account.microsoft.com/privacy,0
0128daf8-544e-4ab1-8117-b50984228f9f,Microsoft Azure App Insights,Functional,ai_session,,"This is a unique anonymous session identifier cookie.",Session,Microsoft,https://account.microsoft.com/privacy,0
9ad53afc-814f-4ca7-968a-3d82ac166c77,Microsoft Azure App Insights,Functional,ai_user,,"This is a unique user identifier cookie enabling counting of the number of users accessing the application over time.",1 year,Microsoft,https://account.microsoft.com/privacy,0
ac37dcdc-9f72-49e9-8b92-1682565bee79,Microsoft Dynamics,Functional,AADNonce.forms,forms.office.comm,"Unique identifier of one authentication session to prevent replay.",session,Microsoft,https://account.microsoft.com/privacy,0
15d0764e-e305-4f65-987e-cec21ca7209d,Microsoft Dynamics,Functional,DcLcid,forms.office.comm,"Saves language preference.",90 days,Microsoft,https://account.microsoft.com/privacy,0
6b0fcf2e-09e7-4b4d-acb5-d39e946ae32c,Microsoft,Analytics,_clck,clarity.ms," This cookie is installed by Microsoft Clarity to store information of how visitors use a website and help in creating an analytics report of how the website is doing. The data collected including the number visitors, the source where they have come from, and the pages visited in an anonymous form.",1 year,Microsoft,https://account.microsoft.com/privacy,0
a8e8abce-2d0b-49f9-93ed-9cf17ef7b234,Microsoft,Analytics,_clsk,clarity.ms,"This cookie is installed by Microsoft Clarity to store information of how visitors use a website and help in creating an analytics report of how the website is doing. The data collected including the number visitors, the source where they have come from, and the pages visited in an anonymous form.",session,Microsoft,https://account.microsoft.com/privacy,0
56e8eec5-b667-4ea9-bd0e-bd6c4be2594e,Microsoft,Analytics,SM,clarity.ms,"This is a Microsoft cookie which we use to measure the use of the website for internal analytics",session,Microsoft,https://account.microsoft.com/privacy,0
c44c1631-94e5-457e-bd09-d089bf114bd2,Microsoft,Analytics,CLID,clarity.ms,"The cookie is set by embedded Microsoft Clarity scripts. The purpose of this cookie is for heatmap and session recording.",1 year,Microsoft,https://account.microsoft.com/privacy,0
d0f95b27-3bfc-493e-85d7-46a24b752256,Microsoft,Analytics,MicrosoftApplicationsTelemetryDeviceId,,"Used to store a unique device ID for tracking behavior and usage of the website",1 year,Microsoft,https://account.microsoft.com/privacy,0
01902673-8069-4bc6-8904-b9f2ce3c54e4,Microsoft,Functional,esctx-,".login.microsoftonline.com","This cookie is set by Microsoft for secure authentication of the users' login details",session,Microsoft,https://account.microsoft.com/privacy,1
3dda7f31-dc56-4294-b8db-9b905fe680ee,Microsoft,Functional,isFirstSession,,"This cookie is used when user opts-in to saving information",Session,Microsoft,https://account.microsoft.com/privacy,1
19d2b26f-5f8e-44c8-a414-a624c160e3e3,Microsoft,Functional,MSO,,"This cookie identifies a session",1 Year,Microsoft,https://account.microsoft.com/privacy,1
85b50422-6f30-4d09-8806-4898ee3d31ea,Microsoft,Analytics,X-FD-FEATURES,,"This cookie is used for tracking analytics and evenly spreading load on the website",1 Year,Microsoft,https://account.microsoft.com/privacy,1
26d74563-35c1-4f29-899b-efa6722e680f,Microsoft,Analytics,X-FD-Time,,"This cookie is used for tracking analytics and evenly spreading load on website",1 Year,Microsoft,https://account.microsoft.com/privacy,1
68da1a76-85e6-472b-ad59-7ebb9bae2e29,ASP.net,Functional,ASP.NET_SessionId,,"ASP.Net_SessionId is a cookie which is used to identify the users session on the server. The session being an area on the server which can be used to store session state in between http requests.",session,Microsoft,https://account.microsoft.com/privacy,0
256cc7a2-d881-11e9-8a34-2a2ae2dbcce4,X,Marketing,guest_id,twitter.com (3rd party),This cookie is set by X to identify and track the website visitor. Registers if a users is signed in the X platform and collects information about ad preferences. ,2 years,X,https://help.twitter.com/nl/safety-and-security#ads-and-data-privacy,0
256cc8d8-d881-11e9-8a34-2a2ae2dbcce4,X,Marketing,personalization_id,twitter.com (3rd party),"Unique value with which users can be identified by X. Collected information is used to be personalize X services, including X trends, stories, ads and suggestions.",2 years,X,https://help.twitter.com/nl/safety-and-security#ads-and-data-privacy,0
e4c4bc7f-a0ef-45f5-aa79-4a048cb5353e,X,Marketing,ct0,twitter.com (3rd party),"These cookies enable us to track visitor activity from our X ads on our website, and also to allow users to share content from our websites. They cookies do not provide us with any confidential information relating to your account.",2 years,X,https://twitter.com/en/privacy,0
d26e6386-4f43-11eb-ae93-0242ac130002,X,Marketing,gt,twitter.com (3rd party),"Twitter uses these cookies to support plugin integration with our website. If you use the Tweet plugin and log into your X account, X will set some of these cookies to remember that you are logged in. X will also use cookies for their own analytics purposes.",1 year,X,https://twitter.com/en/privacy,0
ca0f3300-e7ff-4cff-8728-cb77a8299c5c,X,Marketing,guest_id_marketing,twitter.com (3rd party),"This cookie is for advertising when logged out",2 years,X,https://twitter.com/en/privacy,0
8c80295d-6711-40a3-b4b1-299099339ce7,X,Marketing,guest_id_ads,twitter.com (3rd party),"This cookie is for advertising when logged out",2 years,X,https://twitter.com/en/privacy,0
2757f362-78e0-4bd5-b1e4-fce5c7977ddc,X,Marketing,muc_ads,"t.co","These cookies are placed when you come to our website via X. A cookie from X is also placed on our website, with which we can later show a relevant offer on X",24 months,X,https://twitter.com/en/privacy,0
6aa88c2d-b6d5-4830-b6fc-56bfa5847332,X,Marketing,_twitter_sess,twitter.com (3rd party),"This cookie is set due to X integration and sharing capabilities for the social media.",Session,X,https://twitter.com/en/privacy,0
9ea2f9fe-433d-414f-916f-1a646c52c4a2,X,Marketing,"ads_prefs",.twitter.com,"These cookies enable us to track visitor activity from our X ads on our website, and also to allow users to share content from our websites. They cookies do not provide us with any confidential information relating to your account.",2 years,X,https://twitter.com/en/privacy,0
e6d53ec2-e120-4bcc-a16a-35807f20c07e,X,Marketing,"auth_token",.twitter.com,"These cookies enable us to track visitor activity from our X ads on our website, and also to allow users to share content from our websites. They cookies do not provide us with any confidential information relating to your account.",2 years,X,https://twitter.com/en/privacy,0
08e4dd71-f1af-4ebd-b39e-41d06e46913c,X,Security,"csrf_same_site",.twitter.com,"These cookies enable us to track visitor activity from our X ads on our website, and also to allow users to share content from our websites. They cookies do not provide us with any confidential information relating to your account.",2 years,X,https://twitter.com/en/privacy,0
792739e2-2e87-4270-8fa9-32abd418aac1,X,Security,"csrf_same_site_set",.twitter.com,"These cookies enable us to track visitor activity from our X ads on our website, and also to allow users to share content from our websites. They cookies do not provide us with any confidential information relating to your account.",2 years,X,https://twitter.com/en/privacy,0
97378e1f-bb7c-4eb3-a5ac-c69892eddb77,X,Marketing,"dnt",.twitter.com,"These are third party X cookies. These cookies enable users, if they wish, to login to their X account share content from our websites with their friends. These cookies do not allow us access to your accounts or provide us with any confidential information relating to your accounts. These cookies also allow a news feed of tweets to appear on the website.",2 years,X,https://twitter.com/en/privacy,0
1c4c68b4-7927-4bd4-ac94-4dc7db3b1a5d,X,Marketing,"eu_cn",.twitter.com,"These are third party X cookies. These cookies enable users, if they wish, to login to their X account share content from our websites with their friends. These cookies do not allow us access to your accounts or provide us with any confidential information relating to your accounts. These cookies also allow a news feed of tweets to appear on the website.",2 years,X,https://twitter.com/en/privacy,0
c747dd6b-8d77-424e-a864-a945ce86fe9a,X,Marketing,"external_referer",.twitter.com,"Our Website uses X buttons to allow our visitors to follow our promotional X feeds, and sometimes embed feeds on our Website.",2 years,X,https://twitter.com/en/privacy,0
0aea63ec-0c4f-4673-8fe3-c16811fa0ebf,X,Marketing,"kdt",.twitter.com,"These are third party X cookies. These cookies enable users, if they wish, to login to their X account share content from our websites with their friends. These cookies do not allow us access to your accounts or provide us with any confidential information relating to your accounts. These cookies also allow a news feed of tweets to appear on the website.",2 years,X,https://twitter.com/en/privacy,0
b03a8c12-7a81-4fb0-af00-1d231b29ba23,X,Marketing,"remember_checked_on",.twitter.com,"These cookies enable us to track visitor activity from our X ads on our website, and also to allow users to share content from our websites. These cookies do not provide us with any confidential information relating to your account.",2 years,X,https://twitter.com/en/privacy,0
193036b6-d22f-4167-ab5c-4a66de4656dd,X,Marketing,"rweb_optin",.twitter.com,"These cookies enable us to track visitor activity from our X ads on our website, and also to allow users to share content from our websites. These cookies do not provide us with any confidential information relating to your account.",2 years,X,https://twitter.com/en/privacy,0
5ebcae77-10f9-4d62-839d-18ddfdf17237,X,Marketing,"syndication_guest_id",.twitter.com,"Used to collect information about users browsing behaviour for marketing purposes including digital display and social media advertising.",2 years,X,https://twitter.com/en/privacy,0
2cd52409-5089-4c52-a20d-037251c1e8f2,X,Marketing,"twid",.twitter.com,"These cookies enable us to track visitor activity from our X ads on our website, and also to allow users to share content from our websites. They cookies do not provide us with any confidential information relating to your account.",2 years,X,https://twitter.com/en/privacy,0
da6f4e9e-8e66-40a1-902a-a17588932f39,X,Marketing,"tfw_exp",.twitter.com,"These cookies enable us to track visitor activity from our X ads on our website, and also to allow users to share content from our websites. They cookies do not provide us with any confidential information relating to your account.",2 years,X,https://twitter.com/en/privacy,0
256ccfea-d881-11e9-8a34-2a2ae2dbcce4,Inspectlet,Analytics,__insp_pad,Inspectlet.com (3rd party),This cookie contains the page number of the session recording.,End of session (browser),Inspectlet,https://docs.inspectlet.com/hc/en-us,0
256cd12a-d881-11e9-8a34-2a2ae2dbcce4,Inspectlet,Analytics,__insp_sid,Inspectlet.com (3rd party),This cookie contains the ID of the Inspectlet session that is being recorded.,End of session (browser),Inspectlet,https://docs.inspectlet.com/hc/en-us,0
256cd3e6-d881-11e9-8a34-2a2ae2dbcce4,Inspectlet,Analytics,__insp_ref,Inspectlet.com (3rd party),The cookie contains the referrer source/URL,End of session (browser),Inspectlet,https://docs.inspectlet.com/hc/en-us,0
256cd53a-d881-11e9-8a34-2a2ae2dbcce4,Inspectlet,Analytics,__insp_scpt,Inspectlet.com (3rd party),This cookie contains an integer that allows us to know if the screen capture was triggered or not.,End of session (browser),Inspectlet,https://docs.inspectlet.com/hc/en-us,0
256cd922-d881-11e9-8a34-2a2ae2dbcce4,Inspectlet,Analytics,__insp_nv,Inspectlet.com (3rd party),This cookie contains a value that allows Inspectlet to know if this user is a new visitor or a returning visitor.,End of session (browser),Inspectlet,https://docs.inspectlet.com/hc/en-us,0
256cda62-d881-11e9-8a34-2a2ae2dbcce4,Inspectlet,Analytics,__insp_wid,Inspectlet.com (3rd party),This cookie contains an uniqe user ID provided by the website if set up.,End of session (browser),Inspectlet,https://docs.inspectlet.com/hc/en-us,0
256cdba2-d881-11e9-8a34-2a2ae2dbcce4,Inspectlet,Analytics,__insp_uid,Inspectlet.com (3rd party),This cookie contains random ID assigned to a visitor.,1 year,Inspectlet,https://docs.inspectlet.com/hc/en-us,0
67415e3d-9f91-4c1a-97dd-548930e7b93a,Inspectlet,Analytics,__insp_dct,Inspectlet.com (3rd party),"Registers statistical data on visitors' behaviour on the website. Used for internal analytics by the website operator.",Session,Inspectlet,https://docs.inspectlet.com/hc/en-us,0
256cdcd8-d881-11e9-8a34-2a2ae2dbcce4,Indeed,Analytics,CTK,indeed.com,"This cookie is used to provide a more consistent user experience across sessions by providing improved job recommendations and other services we offer on Indeed. This also helps Indeed analyze in aggregate the best way to help people get jobs. This cookie does not use 3rd party data and is not used for targeting.",1825 days,Indeed,https://www.indeed.com/legal,0
3396e275-3c40-4d7e-8cfa-296449b3b126,Indeed,Analytics,ctkgen,,Contains information related to registering (counting) a job application via a job listing on indeed.com.,1 day,Indeed,https://www.indeed.com/legal,0
ab213874-e693-4de7-a939-d051ab018570,Indeed,Security,INDEED_CSRF_TOKEN,,"This cookie is used by Cloudflare to identify trusted web traffic.",Session,Indeed,https://www.indeed.com/legal,0
0b4227d4-2473-4ff5-9408-bf219843b6e3,Indeed,Analytics,jasx_pool_id,,Contains information related to registering (counting) a job application via a job listing on indeed.com.,Session,Indeed,https://www.indeed.com/legal,0
2c1380a0-ec77-4161-af73-292f48c3ced3,Indeed,Analytics,pagead/conv/%INTEGER%,,Contains information related to registering (counting) a job application via a job listing on indeed.com.,Session,Indeed,https://www.indeed.com/legal,0
06dcc491-d34b-456f-ae56-f683284f5dbd,Abovo Media,Analytics,tv_spot_tracker,,Contains information about the timeslot of a running TV ad,End of session (browser),Abovo Media,https://www.abovomedia.nl/cookies/,0
cf563c2f-115b-43c1-82cd-93030ef4fe6c,CookieConsent.io,Functional,cookie-consent-io,,"Registers cookie preferences of a user",1 year,CookieConsent.io,https://www.cookieconsent.io/cookies/,0
7ca640be-cf2f-41fe-9290-58813a1f28aa,CookieConsent.io,Functional,cookie-consent-io-timestamp,,"Registers user activity timestamp",30 days,CookieConsent.io,https://www.cookieconsent.io/cookies/,1
c2b375c6-534f-4237-8cd1-b2a0d88936be,CookieConsent.io,Functional,cookie-consent-io-gdpr,,"Register anonymous consent identifier for GDPR consent compliance",1 year,CookieConsent.io,https://www.cookieconsent.io/cookies/,0
13f1566a-2358-4033-b842-89f58eb4271e,CookieConsent.io,Marketing,ccec_user,,"Contains information about the customer to allow retargeting.",1 year,CookieConsent.io,https://www.cookieconsent.io/cookies/,0
4c1be785-76a1-4272-b890-155b3c2e130c,Youtube,Marketing,GPS,youtube.com (3rd party),Registers a unique ID on mobile devices to enable tracking based on geographical GPS location.,1 day,Google,https://business.safety.google/privacy/,0
87613af8-8486-47ef-93c9-b45c9c285106,Youtube,Marketing,VISITOR_INFO1_LIVE,youtube.com (3rd party),Tries to estimate the users' bandwidth on pages with integrated YouTube videos. Also used for marketing,179 days,Google,https://business.safety.google/privacy/,0
9c0c0aeb-8893-43e5-9943-7dbad447400b,Youtube,Functional,PREF,youtube.com (3rd party),"This cookie stores your preferences and other information, in particular preferred language, how many search results you wish to be shown on your page, and whether or not you wish to have Google’s SafeSearch filter turned on.",10 years from set/ update,Google,https://business.safety.google/privacy/,0
d0a28cbf-c082-477b-99fe-b45d0ef7e440,Youtube,Functional,YSC,youtube.com (3rd party),"Registers a unique ID to keep statistics of what videos from YouTube the user has seen.",Session,Google,https://business.safety.google/privacy/,0
1de90fdf-b57b-4c6f-b41f-f169856a0049,Youtube,Functional,DEVICE_INFO,youtube.com (3rd party),"Used to detect if the visitor has accepted the marketing category in the cookie banner. This cookie is necessary for GDPR-compliance of the website.",179 days,Google,https://business.safety.google/privacy/,0
b1e3d99b-e670-4b9f-9521-0d00dedf8f58,Youtube,Functional,LOGIN_INFO,youtube.com (3rd party),"This cookie is used to play YouTube videos embedded on the website.",2 years,Google,https://business.safety.google/privacy/,0
2728a6ef-63ee-4f43-960c-b523f7e0286b,Youtube,Marketing,VISITOR_PRIVACY_METADATA,youtube.com (3rd party),"Youtube visitor privacy metadata cookie",180 days,Google,https://business.safety.google/privacy/,0
a578ee93-0514-4c0c-a51a-32177058f5f5,Admatic,Marketing,__adm_ui,admatic.com.tr (3rd party),"Used to track visitors on multiple websites, in order to present relevant advertisement based on the visitor's preferences.",1 year,Admatic,http://www.admatic.com.tr/en/privacy-policy.html,0
b9b6969a-e377-4930-bbf2-cc392ed0bbe0,Admatic,Marketing,__adm_uiex,admatic.com.tr (3rd party),"Used to track visitors on multiple websites, in order to present relevant advertisement based on the visitor's preferences.",1 year,Admatic,http://www.admatic.com.tr/en/privacy-policy.html,0
964f057a-34ae-4352-831a-b413901c1511,Admatic,Marketing,__adm_usyncc,admatic.com.tr (3rd party),"Used to identify the visitor across visits and devices. This allows the website to present the visitor with relevant advertisement - The service is provided by third party advertisement hubs, which facilitate real-time bidding for advertisers.",5 days,Admatic,http://www.admatic.com.tr/en/privacy-policy.html,0
c92f9463-6c9d-4aa3-a14e-d0eee6e03089,Admatic,Marketing,uids,admatic.com.tr (3rd party),"Registers user behaviour and navigation on the website, and any interaction with active campaigns. This is used for optimizing advertisement and for efficient retargeting.",3 months,Admatic,http://www.admatic.com.tr/en/privacy-policy.html,0
0083f4a3-159a-4ed8-80d0-0d26ec97b778,Cloudflare,Functional,__cfduid,,"The '__cfduid' cookie is set by the CloudFlare service to identify trusted web traffic. It does not correspond to any user id in the web application, nor does the cookie store any personally identifiable",5 years,Cloudflare,https://www.cloudflare.com/privacypolicy/,0
1170a387-6b75-45ed-9d7b-f4e536fb96a0,Cloudflare,Functional,__cfruid,,"Used by the content network, Cloudflare, to identify trusted web traffic.",session,Cloudflare,https://www.cloudflare.com/privacypolicy/,0
36b7ca9d-ebcd-4d0e-b81e-27d44303f834,Cloudflare,Functional,__cf_bm,,"Cloudflare's bot products identify and mitigate automated traffic to protect your site from bad bots. Cloudflare places the __cf_bm cookie on End User devices that access Customer sites that are protected by Bot Management or Bot Fight Mode. The __cf_bm cookie is necessary for the proper functioning of these bot solutions.",session,Cloudflare,https://www.cloudflare.com/privacypolicy/,0
11c9eecd-9cc2-40b7-9766-8f160d3b0e71,Cloudflare,Functional,cf_chl_2,,"Used by Cloudflare for the execution of Javascript or Captcha challenges. These cookies are not used for tracking or beyond the scope of the challenge.",session,Cloudflare,https://www.cloudflare.com/privacypolicy/,0
d0a9b819-431c-4fb0-ae69-898ee704671f,Cloudflare,Functional,__cflb,,"When enabling session affinity with Cloudflare Load Balancer, Cloudflare sets a __cflb cookie with a unique value on the first response to the requesting client. Cloudflare routes future requests to the same origin, optimizing network resource usage. In the event of a failover, Cloudflare sets a new __cflb cookie to direct future requests to the failover pool.",session,Cloudflare,https://www.cloudflare.com/privacypolicy/,0
f1fbdbbe-1326-4a0b-9a70-8d260c554936,Cloudflare,Functional,_cfuvid,,"The _cfuvid cookie is only set when a site uses this option in a Rate Limiting Rule, and is only used to allow the Cloudflare WAF to distinguish individual users who share the same IP address.",session,Cloudflare,https://www.cloudflare.com/privacypolicy/,0
295b46f4-649d-4e06-9352-66173288b564,Cloudflare,Functional,cf_clearance,,"Whether a CAPTCHA or Javascript challenge has been solved.",session,Cloudflare,https://www.cloudflare.com/privacypolicy/,0
b6f57431-6029-4265-96bb-1737109dd2c5,Cloudflare,Functional,__cfseq,,"Sequence rules uses cookies to track the order of requests a user has made and the time between requests and makes them available via Cloudflare Rules. This allows you to write rules that match valid or invalid sequences. The specific cookies used to validate sequences are called sequence cookies.",session,Cloudflare,https://www.cloudflare.com/privacypolicy/,0
f45579be-391f-4959-834c-c807e71aa5ba,CloudFlare,Functional,cf_ob_info,,"The cf_ob_info cookie provides information on: The HTTP Status Code returned by the origin web server. The Ray ID of the original failed request. The data center serving the traffic",session,Cloudflare,https://www.cloudflare.com/privacypolicy/,0
ebc25c6f-c389-4428-8074-14db2637f857,CloudFlare,Functional,cf_use_ob,,"The cf_use_ob cookie informs Cloudflare to fetch the requested resource from the Always Online cache on the designated port. Applicable values are: 0, 80, and 443. The cf_ob_info and cf_use_ob cookies are persistent cookies that expire after 30 seconds.",session,Cloudflare,https://www.cloudflare.com/privacypolicy/,0
b25d897d-28e7-48bb-a8f0-165fe44e57f0,CloudFlare,Functional,__cfwaitingroom,,"The __cfwaitingroom cookie is only used to track visitors that access a waiting room enabled host and path combination for a zone. Visitors using a browser that does not accept cookies cannot visit the host and path combination while the waiting room is active.",session,Cloudflare,https://www.cloudflare.com/privacypolicy/,0
92c0239f-37c6-4dc0-a7e4-cc6b9ebdefc0,CloudFlare,Functional,cf_chl_rc_i,,"These cookies are for internal use which allows Cloudflare to identify production issues on clients.",session,Cloudflare,https://www.cloudflare.com/privacypolicy/,0
35e6fb7b-e088-415c-bed1-4e8d9a22d12d,CloudFlare,Functional,cf_chl_rc_ni,,"These cookies are for internal use which allows Cloudflare to identify production issues on clients.",session,Cloudflare,https://www.cloudflare.com/privacypolicy/,0
fadb907b-fb79-4e0a-997c-e9a495b452f2,CloudFlare,Functional,cf_chl_rc_m,,"These cookies are for internal use which allows Cloudflare to identify production issues on clients.",session,Cloudflare,https://www.cloudflare.com/privacypolicy/,0
717b8c97-4205-4c1e-960b-0e6c1267b268,Sonobi,Marketing,__uin_bw,.go.sonobi.com (3rd party),"Collects information on visitor behaviour on multiple websites. This information is used on the website, in order to optimize the relevance of advertisement.",1 month,Sonobi,https://sonobi.com/privacy-policy/,0
befebc70-9497-4f2c-be86-b76ef2a2d3f4,Sonobi,Marketing,__uir_bw,.go.sonobi.com (3rd party),"Collects data on visitors' behaviour and interaction - This is used to optimize the website and make advertisement on the website more relevant.",1 day,Sonobi,https://sonobi.com/privacy-policy/,0
b1ece5c5-f6b1-4109-8437-da5e522f1c2d,Sonobi,Marketing,__uis,.go.sonobi.com (3rd party),"Used to track visitors on multiple websites, in order to present relevant advertisement based on the visitor's preferences.",29 days,Sonobi,https://sonobi.com/privacy-policy/,0
26db9f36-98f5-49fc-bc18-82561fbdaa10,Sonobi,Marketing,HAPLB5S,.go.sonobi.com (3rd party),"Used to track visitors on multiple websites, in order to present relevant advertisement based on the visitor's preferences.",29 days,Sonobi,https://sonobi.com/privacy-policy/,0
4da9f26a-7deb-4dfb-9294-1d50cfac1fdc,Pulsepoint,Marketing,_dbefe,contextweb.com (3rd party),"Collects information on user preferences and/or interaction with web-campaign content - This is used on CRM-campaign-platform used by website owners for promoting events or products.",Session,Pulsepoint,http://pulsepoints-new-website.webflow.io/privacy-policy/platform#consumer-choice,0
12f79b22-7bc6-41b6-a99a-781a40dfae4d,Hotjar,Analytics,_hjHasCachedUserAttributes,,"This cookie sets when a user first lands on a page. Persists the Hotjar User ID which is unique to that site. Hotjar does not track users across different sites. Ensures data from subsequent visits to the same site are attributed to the same user ID.",365 days,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
5b248efa-5559-4cc7-8124-4f63dd14be68,Hotjar,Analytics,_hjid,,"Hotjar cookie. This cookie is set when the customer first lands on a page with the Hotjar script. It is used to persist the random user ID, unique to that site on the browser. This ensures that behavior in subsequent visits to the same site will be attributed to the same user ID.",365 days,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
de424da6-ebca-4b4e-9c8a-8f787e6d6be9,Hotjar,Analytics,hj_visitor,,"hotjar uses cookies to enhance the user’s experience on our website, for example to complete forms, navigating the site, and identify returning users and offer related content. Users can control the use of cookies at the individual browser level.",Session,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
24f2ca01-28b6-44b5-8522-45bb4e4b1ebb,Hotjar,Analytics,_hjIncludedInSample,,"Hotjar cookie. This session cookie is set to let Hotjar know whether that visitor is included in the sample which is used to generate funnels.",365 days,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
b905f5e4-95ec-4ee3-abef-519b4c29c969,Hotjar,Analytics,_hjClosedSurveyInvites,,"Hotjar cookie. This cookie is set once a visitor interacts with a Survey invitation modal popup. It is used to ensure that the same invite does not re-appear if it has already been shown.",365 days,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
c0133a22-7958-4591-a519-1103338ac773,Hotjar,Analytics,_hjDonePolls,,"Hotjar cookie. This cookie is set once a visitor completes a poll using the Feedback Poll widget. It is used to ensure that the same poll does not re-appear if it has already been filled in.",365 days,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
a2f3198e-04b5-4df7-8cff-e563ee09682a,Hotjar,Analytics,_hjMinimizedPolls,,"Hotjar cookie. This cookie is set once a visitor minimizes a Feedback Poll widget. It is used to ensure that the widget stays minimizes when the visitor navigates through your site.",365 days,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
88f44d0f-5e6c-459e-b63b-e459a564c030,Hotjar,Analytics,_hjDoneTestersWidgets,,"Hotjar cookie. This cookie is set once a visitor submits their information in the Recruit User Testers widget. It is used to ensure that the same form does not re-appear if it has already been filled in.",365 days,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
d303f84d-98b9-46b5-82f2-9492aeaeda44,Hotjar,Analytics,_hjMinimizedTestersWidgets,,"Hotjar cookie. This cookie is set once a visitor minimizes a Recruit User Testers widget. It is used to ensure that the widget stays minimizes when the visitor navigates through your site.",365 days,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
34479527-3991-4b50-8bda-e7b009e1b158,Hotjar,Analytics,_hjShownFeedbackMessage,,"This cookie is set when a visitor minimizes or completes Incoming Feedback. This is done so that the Incoming Feedback will load as minimized immediately if they navigate to another page where it is set to show.",365 days,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
9aa4f191-9480-41a9-9a04-a42167692f42,Hotjar,Functional,_hjTLDTest,,"When the Hotjar script executes we try to determine the most generic cookie path we should use, instead of the page hostname. This is done so that cookies can be shared across subdomains (where applicable). To determine this, we try to store the _hjTLDTest cookie for different URL substring alternatives until it fails. After this check, the cookie is removed.",session,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
5a58ce72-7931-4e38-ac0d-417c55a417dc,Hotjar,Functional,_hjUserAttributesHash,,"User Attributes sent through the Hotjar Identify API are cached for the duration of the session in order to know when an attribute has changed and needs to be updated.",session,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
71403a88-bf55-46d9-920c-9afe2697567f,Hotjar,Analytics,_hjCachedUserAttributes,,"This cookie stores User Attributes which are sent through the Hotjar Identify API, whenever the user is not in the sample. These attributes will only be saved if the user interacts with a Hotjar Feedback tool.",session,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
f8d29695-1bd7-44b8-91fe-7a1aa2b18c88,Hotjar,Functional,_hjLocalStorageTest,,"This cookie is used to check if the Hotjar Tracking Script can use local storage. If it can, a value of 1 is set in this cookie. The data stored in_hjLocalStorageTest has no expiration time, but it is deleted immediately after creating it so the expected storage time is under 100ms.",,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
7ceaaae0-5c92-4d1d-bb53-0d17d2149136,Hotjar,Functional,_hjptid,,"This cookie is set for logged in users of Hotjar, who have Admin Team Member permissions. It is used during pricing experiments to show the Admin consistent pricing across the site.",session,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
ed193ad7-4c44-4745-9707-cbb809846a76,Hotjar,Functional,_hjAbsoluteSessionInProgress,,"The cookie is set so Hotjar can track the beginning of the user's journey for a total session count. It does not contain any identifiable information.",30 minutes,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
883ed7d5-7aca-4881-8ba5-2d07914a4602,Hotjar,Functional,_hjFirstSeen,,"The cookie is set so Hotjar can track the beginning of the user's journey for a total session count. It does not contain any identifiable information.",30 minutes,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
76fd02da-511e-442d-be68-2287d801687b,Hotjar,Functional,_hjIncludedInPageviewSample,,"This cookie is set to let Hotjar know whether that visitor is included in the data sampling defined by your site's page view limit.",30 minutes,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
9f4670f2-4605-4369-9aa1-db1f378f3e1b,Hotjar,Functional,_hjIncludedInSessionSample,,"This cookie is set to let Hotjar know whether that visitor is included in the data sampling defined by your site's daily session limit",30 minutes,Hotjar,https://www.hotjar.com/legal/policies/privacy/,1
283823c6-684c-466e-8ca4-23b18231e5a3,Hotjar,Functional,_hjSession_,,"A cookie that holds the current session data. This ensues that subsequent requests within the session window will be attributed to the same Hotjar session.",30 minutes,Hotjar,https://www.hotjar.com/legal/policies/privacy/,1
d5da1a8e-0ccd-4b3a-a19d-ec38807a5444,Hotjar,Functional,_hjSessionUser_,,"Hotjar cookie that is set when a user first lands on a page with the Hotjar script. It is used to persist the Hotjar User ID, unique to that site on the browser. This ensures that behavior in subsequent visits to the same site will be attributed to the same user ID.",365 days,Hotjar,https://www.hotjar.com/legal/policies/privacy/,1
fbd277cd-4557-4f15-a904-059050e860a5,Hotjar,Functional,_hjSessionTooLarge,,"Causes Hotjar to stop collecting data if a session becomes too large. This is determined automatically by a signal from the WebSocket server if the session size exceeds the limit.",session,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
8ba37a44-16e4-4ac4-bdcf-9d362ae9a543,Hotjar,Functional,_hjSessionRejected,,"If present, this cookie will be set to 1 for the duration of a user’s session, if Hotjar rejected the session from connecting to our WebSocket due to server overload. This cookie is only applied in extremely rare situations to prevent severe performance issues.",session,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
666ada6a-a291-48b0-806c-7cd370566ef5,Hotjar,Functional,_hjSessionResumed,,"A cookie that is set when a session/recording is reconnected to Hotjar servers after a break in connection.",session,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
de5544b6-398e-4053-abfc-8694eb2629c9,Hotjar,Functional,hjViewportId,,"This cookie stores user viewport details such as size and dimensions.",Session,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
e58f848b-7093-4d04-8bda-c725bfbf7b94,Hotjar,Functional,_hjSessionStorageTest,,"This cookie checks if the Hotjar Tracking Code can use Session Storage. If it can, a value of 1 is set.",Session,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
385c6538-5914-4e21-8feb-227fd7bf85f0,Hotjar,Functional,_hjCookieTest,,"This cookie checks to see if the Hotjar Tracking Code can use cookies. If it can, a value of 1 is set.",Session,Hotjar,https://www.hotjar.com/legal/policies/privacy/,0
886a9c0e-69e8-4a46-8098-92fee9adf89d,Active Campaign,Marketing,ac_enable_tracking,,"This cookie is associated with Active Campaign and is set to confirm that tracking has been enabled for the website. Tracking is used to create reports of our web traffic and improve the user experience of the website.",29 days,Active Campaign,https://www.activecampaign.com/gdpr-updates/,0
afc3bacc-af10-4f2d-aafa-9579eed92550,Active Campaign,Marketing,prism_,,"This cookie is used by Active Campaign for site tracking purposes.",30 days,Active Campaign,https://www.activecampaign.com/gdpr-updates/,1
00f5c304-26d5-40b9-98ae-6a2815d8e56a,Microsoft,Functional,ASP.NET_Sessio,,"General purpose platform session cookie, used by sites written with Microsoft .NET based technologies. Usually used to maintain an anonymised user session by the server.",Session,Microsoft,https://account.microsoft.com/privacy,0
7db60a47-ab52-4b22-bca6-2b07ed8f1b64,Microsoft,Functional,ASP.NET_Sessio_Fallback,,"Fallback session cookie to support older browsers that haven't implemented the Secure flag, in modern evergreen browsers this cookie is never set as it haven't got the Secure flag.",Session,Microsoft,https://account.microsoft.com/privacy,0
2bb7633d-e2c5-4d14-b8f8-d3f13019b835,Oracle,Functional,JSESSIO,,"JSESSIO is a platform session cookie and is used by sites with JavaServer Pages (JSP). The cookie is used to maintain an anonymous user session by the server.",Session,Oracle,https://www.oracle.com/privacy,0
1e7e7ff7-508b-4663-8a5e-0b1069b517b3,Oracle,Functional,ORA_WWV_APP_,,"Security cookie for applications.",Session,Oracle,https://www.oracle.com/privacy,1
be2658e3-0144-4f3a-8c82-d5ac5bd4f248,Oracle,Analytics,ELOQUA,.eloqua.com,"This cookies allow better understand how visitors use the website. This cookie data may be used to personalise the content or design of the website",13 months,Oracle,https://www.oracle.com/privacy,0
deb8cd6d-bceb-4cc9-a3ea-50bc30deb61d,Oracle,Analytics,ELQSTATUS,.eloqua.com,"This cookie is used to track individual visitors and their use of the site. It is set when you first visit the site and updated on subsequent visits.",13 months,Oracle,https://www.oracle.com/privacy,0
492406bd-e296-41d0-8b42-16961a258b2d,Laravel,Functional,laravel_session,,"Internally laravel uses laravel_session to identify a session instance for a user",Session,Laravel,https://www.laravel.com,0
87742550-35d9-4f2d-980c-d421f3f5bc97,PHP.net,Functional,PHPSESSID,,"Cookie generated by applications based on the PHP language. This is a general purpose identifier used to maintain user session variables. It is normally a random generated number, how it is used can be specific to the site, but a good example is maintaining a logged-in status for a user between pages.",Sessions,PHP.net,https://www.php.net/privacy.php,0
e2cbbaa8-4fab-43ea-a527-f71ea8acdc79,PHP.net,Functional,__Secure-PHPSESSID,,"Cookie generated by applications based on the PHP language. This is a general purpose identifier used to maintain user session variables. It is normally a random generated number, how it is used can be specific to the site, but a good example is maintaining a logged-in status for a user between pages.",Sessions,PHP.net,https://www.php.net/privacy.php,0
86531df2-94a9-43e0-9262-856c57f16160,,Security,XSRF-TOKEN,,"This cookie is written to help with site security in preventing Cross-Site Request Forgery attacks.",Session,,,0
1b1067dd-9003-40f8-a2d6-c6ac72bb6779,LinkedIn,Marketing,lidc,linkedin.com (3rd party),"Used by the social networking service, LinkedIn, for tracking the use of embedded services.",1 day,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
657f80f4-7eb6-41c9-9bc7-7d2570a0887f,LinkedIn,Marketing,bcookie,linkedin.com (3rd party),"Used by LinkedIn to track the use of embedded services.",1 year,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
002f276f-84c1-428a-bbe3-951a6cf56175,LinkedIn,Marketing,bscookie,linkedin.com (3rd party),"Used by LinkedIn to track the use of embedded services.",1 year,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
2bfa0944-e050-45fd-900a-73bc4518eb64,LinkedIn,Marketing,trkCode,linkedin.com (3rd party),"This cookie is used by LinkedIn to support the functionality of adding a panel invite labeled 'Follow Us'",1 year,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
efbf7fc7-a1a1-4a65-8ac8-4df28f94a3a7,LinkedIn,Marketing,trkInfo,linkedin.com (3rd party),"This cookie is used by LinkedIn to support the functionality of adding a panel invite labeled 'Follow Us'",1 year,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
8cd6fef5-7fc9-4df4-8eb1-bb1ff356596c,LinkedIn,Marketing,li_oatml,linkedin.com (3rd party),"Collects information about how visitors use our site.",30 days,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
2ffce5f8-6d1f-43f5-be99-698d7894ce64,LinkedIn,Marketing,liap,linkedin.com (3rd party),"Cookie used for Sign-in with Linkedin and/or to allow for the Linkedin follow feature.",90 days,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
de9a3d96-7cc3-4f27-b1bd-682203dd7497,LinkedIn,Marketing,lissc,linkedin.com (3rd party),"Pending",1 year,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
d32a876f-84a1-4251-9ad1-6954cd330d9f,LinkedIn,Marketing,spectroscopyId,linkedin.com (3rd party),"These cookies are set by LinkedIn for advertising purposes, including: tracking visitors so that more relevant ads can be presented, allowing users to use the 'Apply with LinkedIn' or the 'Sign-in with LinkedIn' functions, collecting information about how visitors use the site, etc.",session,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
1874cfdd-0691-4ce0-a158-bc3c1605275e,LinkedIn,Marketing,UserMatchHistory,linkedin.com (3rd party),"These cookies are set by LinkedIn for advertising purposes, including: tracking visitors so that more relevant ads can be presented, allowing users to use the 'Apply with LinkedIn' or the 'Sign-in with LinkedIn' functions, collecting information about how visitors use the site, etc.",session,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
d26e3d52-4f43-11eb-ae93-0242ac130002,LinkedIn,Functional,lang,linkedin.com (3rd party),"Used to remember a user's language setting",session,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
d26e4a7c-4f43-11eb-ae93-0242ac130002,LinkedIn,Functional,li_gc,linkedin.com (3rd party),"Used to store guest consent to the use of cookies for non-essential purposes",2 years,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
d26e5396-4f43-11eb-ae93-0242ac130002,LinkedIn,Functional,li_rm,linkedin.com (3rd party),"Used as part of the LinkedIn Remember Me feature and is set when a user clicks Remember Me on the device to make it easier for him or her to sign in to that device",1 year,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
92250c0b-2cb3-4eea-8b38-f8cc19228ef0,LinkedIn,Analytics,AnalyticsSyncHistory,linkedin.com (3rd party),"Used to store information about the time a sync with the lms_analytics cookie took place for users in the Designated Countries",30 days,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
e27a162d-c15e-4b12-871e-a133c095aab1,LinkedIn,Analytics,ln_or,,"Used to determine if Oribi analytics can be carried out on a specific domain",1 day,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
ae06e8a9-ad4f-4bfa-96b9-0368a70528c0,LinkedIn,Marketing,li_sugr,,"Used to make a probabilistic match of a user's identity outside the Designated Countries",90 days,LinkedIn,https://www.linkedin.com/legal/privacy-policy,0
9f90b386-51bb-4c92-b0ed-3a0582b29d7b,LinkedIn,Functional,sdsc,.linkedin.com,This cookie is used for signed data service context cookie used for database routing to ensure consistency across all databases when a change is made. Used to ensure that user-inputted content is immediately available to the submitting user upon submission,Session,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
8e14e455-1a4b-4c4d-8e96-10e5e939e3d5,LinkedIn,Functional,li_mc,.linkedin.com,This cookie is used as a temporary cache to avoid database lookups for a member's consent for use of non-essential cookies and used for having consent information on the client side to enforce consent on the client side,6 months,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
cc6df0e9-2b60-4dc3-800e-de0d81183ca4,LinkedIn,Marketing,lms_ads,.linkedin.com,This cookie is used to identify LinkedIn Members off LinkedIn for advertising,30 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
20a6b2e9-0545-4cb2-8b6e-590e0b95a2b9,LinkedIn,Marketing,_guid,linkedin.com,This cookie is used to identify a LinkedIn Member for advertising through Google Ads,90 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
198c31cf-ce07-4dce-b01c-f584d7d53276,LinkedIn,Marketing,BizographicsOptOut,.linkedin.com,This cookie is used to determine opt-out status for non-members,10 years,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
945e3caf-7798-424e-9700-af7e130527e7,LinkedIn,Marketing,IRLD,.linkedin.com,This cookie is used for Affiliate Marketing Cookie for LinkedIn,2 years,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
7c0cb836-620c-4079-a1ee-0c520bed18c7,LinkedIn,Analytics,l_page,.linkedin.com,This cookie is used for measuring conversion metrics on LinkedIn,6 months,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
668e64dc-d5bb-42e3-b083-d38900fc0948,LinkedIn,Marketing,ABSELB,.linkedin.com,This is Load Balancer Cookie for affiliate marketing,2 years,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
f1ed3705-e2de-42cf-809f-6531be29fa0f,LinkedIn,Marketing,brwsr,.linkedin.com,This cookie is used to Affiliate Marketing Cookie for LinkedIn,2 years,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
c2e8e307-3f90-4709-8aee-a663d05d94cb,LinkedIn,Functional,lihc_auth_,.linkedin.com,"Used by LinkedIn HelpCenter Live Chat to store language and chat start timestamp. Example names of this cookie include lihc_auth_en, lihc_auth_es, depending on language preference.",Session,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
24dc49e8-19cf-4f32-852e-f556d45ad98c,LinkedIn,Functional,li_a,.linkedin.com,"Used to authenticate enterprise users on Sales Navigator and Recruiter",30 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
a6e271d9-687a-409d-b707-4221a73dbd95,LinkedIn,Functional,li_ep_auth_context,.linkedin.com,"User to authenticate LinkedIn enterprise customers",30 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
8fc60781-d155-49b7-b37d-87a49b9ad1fc,LinkedIn,Functional,fcookie,.linkedin.com,"Used for bot detection.",7 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
d83b1164-bb69-4507-8d23-9b0b1774a9cd,LinkedIn,Functional,ccookie,.linkedin.com,"To remember if a user received a captcha challenge.",20 minutes,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
c79acb52-8a66-423f-90e7-53448078c776,LinkedIn,Functional,chp_token,.linkedin.com,"Used to denote whether the user has gone through two factor authentication or solved a Captcha.",Session,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
1c1cffc3-b0fe-4fa3-8e4e-1b8f92f62083,LinkedIn,Functional,li_cu,.linkedin.com,"Used to map a user to a captcha challenge page",15 minutes,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
47b94e9f-c30c-400f-a645-a237b59048f5,LinkedIn,Functional,denial-client-ip,.linkedin.com,"Stores user IP address for anti-scraping and DOS prevention",5 seconds,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
f3a68b2c-6d78-42ae-96f0-ed817fbb7b17,LinkedIn,Functional,denial-reason-code,.linkedin.com,"Used for anti-scraping and DOS prevention",5 seconds,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
7bba3267-6c3e-4f0f-8f97-3861e8751402,LinkedIn,Functional,rtc,.linkedin.com,"Used as part of anti-abuse processes on LinkedIn",120 seconds,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
327a4ab8-f711-4a57-a27a-75152da16acc,LinkedIn,Functional,li_referer,.linkedin.com,"Used to detect bots. Cookie remembers the referring website before redirecting the user to captcha for authorization",15 minutes,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
bc501153-d371-44c7-b3f6-b2a5488de212,LinkedIn,Functional,f_token,.linkedin.com,"Used to detect bots for anti-scraping",3 minutes,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
12b4adc5-c04d-4734-a2ce-094c7b3e38f1,LinkedIn,Functional,li_apfcdc,.linkedin.com,"Used for triggering the abuse prevention features on member device.",10 hours,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
d83446d2-f97e-44d5-a281-79035478f6e7,LinkedIn,Functional,li_odapfcc,.linkedin.com,"Used to control the number of abuse prevention features collected from member device.",2 Years,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
d664591f-9f3d-45ed-a8bb-5e179aefe194,LinkedIn,Functional,ac_L,.linkedin.com,"Counts the number of times the account center banner, which is displayed to inform users with an incomplete profile how to complete their profile, was closed by a user to determine display logic",180 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
5d80b4ce-4386-474b-99fe-35e25186d965,LinkedIn,Functional,ac_LD,.linkedin.com,"Contains the date when the account center was displayed to a user to determine display logic",180 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
f5ee406c-ea07-4555-b545-824db53a197a,LinkedIn,Functional,recent_history_status,.linkedin.com,"Used to determine whether a user enabled or disabled the Guest Recent History Setting",10 years,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
2c566b05-f25d-436a-8761-ba66019ee8e4,LinkedIn,Functional,all_u_b,.linkedin.com,"To know if a user has opted in to viewing LinkedIn on an unsupported browser",21 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
9b929c49-6611-4b6b-aa0b-d48fd7992fc5,LinkedIn,Functional,uh,.linkedin.com,"Used to set the user preference for the mobile web platform via a user's settings",Session,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
d479c11a-1205-462e-8f5e-a00d9dad9591,LinkedIn,Functional,pushPermInfo,.linkedin.com,"Used across multiple LinkedIn services to determine cool off for push notification prompts",365 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
55a86447-2a5b-4b6c-843c-739890dae9f1,LinkedIn,Functional,pushPermState,.linkedin.com,"Used across multiple LinkedIn services to determine the user's push notification permission preference ",30 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
96ff75d5-fb39-44ae-a5ff-1bdf7a82d13a,LinkedIn,Functional,wwepo,.linkedin.com,"Used to ensure that useres who choose to sign up using phone only have that setting and preference respected",90 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
a8405a5c-daa3-4031-87f2-589842b3a150,LinkedIn,Functional,li_ec,.linkedin.com,"Used to store unbound enterprise users' cookie consent",6 months,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
81c41695-b3e0-4acb-b23c-e9de1dd04f8d,LinkedIn,Functional,li_gpc,.linkedin.com,"Used to remember a user's preferences on LinkedIn's Global Privacy Control",1 hour,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
a65b8a0a-c3b5-4d33-bb09-e7b3e348dc28,LinkedIn,Functional,li_gp,.linkedin.com,"Stores privacy preferences for guests to LinkedIn",1 year,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
21dc9e98-ae66-4cad-8047-280e940219db,LinkedIn,Functional,PLAY_FLASH,.linkedin.com,"Used by some LinkedIn services to facilitate the display of messages on page transitions . Users include notifying a user when a form is successfully submitted or fails , and to provide other similar notifications.",Session,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
e78aed35-1707-4d8c-b195-f4e56c74cbd4,LinkedIn,Functional,PLAY_LANG,.linkedin.com,"Used by some LinkedIn services to remember a user's language preference",Session,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
a23e77e3-f262-4c56-bae6-890de0abd68f,LinkedIn,Functional,PLAY_SESSION,.linkedin.com,"Used by some LinkedIn services to store session information",Session,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
f1e4afe2-e658-48bc-9fbd-b35aa605012d,LinkedIn,Functional,redirectFromM2MInviteAccept,linkedin.com,"Determines the appropriate profile display logic when a user accepts an invitation to connect on LinkedIn from a LinkedIn member via email.",Session,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
b12ecb3d-bfab-4430-b4a1-54ffe9465f92,LinkedIn,Functional,redirectFromM2MInviteSent,.linkedin.com,"Used to notify and provide the appropriate profile display logic when the user sends an invitation to connect on LinkedIn from a LinkedIn member via email.",Session,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
dc6195f5-1cf2-43c1-b585-93696d641fc1,LinkedIn,Functional,cookie.policy.banner.eu,.linkedin.com,"Used to display cookie banner in LinkedIn Lite ",365 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
c31a65b4-61ec-4b86-8159-a6fe827f6ce2,LinkedIn,Functional,cookie.policy.banner.nl,.linkedin.com,"Used to display cookie banner in LinkedIn Lite on the Netherlands site.",365 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
80e601cf-32fb-4bc6-80fb-d093bbcd72d0,LinkedIn,Functional,appName,linkedin.com,"Used to identify the source as the LinkedIn Lite app to send the right service worker to the app",Session,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
7958c2fa-0087-49ee-ba36-87bd3de13aa1,LinkedIn,Functional,appLang,linkedin.com,"Used to set the right language on the LinkedIn Lite app",Session,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
aebbbfd6-97c6-4545-9b16-a1a54043c2bb,LinkedIn,Functional,lls-integration,.linkedin.com,"Validates whitelisted partners for content integrations",30 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
d9e296c5-815f-49c2-bb21-1856e1c17261,LinkedIn,Functional,feed-sort,.linkedin.com,"Used to remember a member's preference how the feed should be sorted",1 day,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
41e21dbc-8dde-4e10-a1a1-0bed68725038,LinkedIn,Functional,abiRedirect,.linkedin.com,"Enables import of address book during onboarding flow for users who choose to import their address book",Session,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
179ece60-1030-4afe-8eff-fdd455468062,LinkedIn,Functional,lil-lang,.linkedin.com,"Stores user's selected language setting for LinkedIn Learning",Session,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
3732a894-dc58-4315-95f8-c2ecbb6f70f2,LinkedIn,Functional,li_alerts,.linkedin.com,"Used to track impressions of LinkedIn alerts, such as the Cookie Banner and to implement cool off periods for display of alerts",1 year,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
dcdffc54-b2f9-4ee2-8697-b55075da639b,LinkedIn,Functional,li_theme,.linkedin.com,"Remembers a user's display preference/theme setting",6 months,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
1e45bd71-017c-45df-9a55-fec342d4091b,LinkedIn,Functional,integration_type,linkedin.com,"Used to determine which integration traffic is coming from to render the profile namecard experience",30 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
e23f6a7d-7614-4cd1-bced-91d4a01779e0,LinkedIn,Functional,li_theme_set,.linkedin.com,"Remembers which users have updated their display / theme preferences",6 months,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
c2538158-5116-479e-9997-40e9fea13636,LinkedIn,Functional,lms_analytics,.linkedin.com,"Used to identify LinkedIn Members off LinkedIn for analytics",30 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
b1ba9abe-9902-418b-ae40-7594f977d67b,LinkedIn,Functional,li_fat_id,,"Member indirect identifier for Members for conversion tracking, retargeting, analytics",30 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
024f3a29-875c-4d2d-af0d-4df3a44a8b41,LinkedIn,Functional,li_giant,,"Indirect indentifier for groups of LinkedIn Members used for conversion tracking",7 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
45531e07-1a76-407b-a4ac-55a49083b11b,LinkedIn,Analytics,queryString,,"This cookie is used to persist marketing tracking parameters",15 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
fab4c35b-fde9-4dfd-884a-1f23561307c1,LinkedIn,Analytics,VID,.linkedin.com,"ID associated with a visitor to a LinkedIn microsite which is used to determine conversions for lead gen purposes",1 year,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
ba30a65d-e2c0-4a43-87d1-978e7d05e7b2,LinkedIn,Functional,recent_history,.linkedin.com,"Used to remember URLs visited by the guest to show the pages back where they left off",90 days,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
90f1f41c-2784-4139-aa55-3b051f3a0a42,LinkedIn,Analytics,sharebox-suggestion,.linkedin.com,"Displays a banner that provides help text to first time users of the Elevate share box",Session,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
f2b973c2-1fdc-4fff-bb04-ea04c7c4f30e,LinkedIn,Analytics,li_cc,.linkedin.com,"Used to ensure a user's phone number is inputted in China",1 week,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
95ac0270-0653-43ec-93ea-1f93860e51f8,LinkedIn,Analytics,lss_bundle_viewer,.linkedin.com,"Stores consent when a user agrees to view a Smartlinks link",1 month,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
da2f8444-d1b6-4c64-8df4-df7d375392af,LinkedIn,Analytics,interstitial_page_reg_oauth_url,.linkedin.com,"Stores the referring page to ensure the Authentication screen displays correctly",1 day,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
2bdfc8fa-6955-4b81-a933-3ad184278867,LinkedIn,Analytics,df_ts,linkedin.com,"Device fingerprinting sampling for performance optimization",1 day,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
2c2557e0-c0ab-41e3-9035-6a94ac6129a3,LinkedIn,Analytics,li_feed_xray,.linkedin.com,"Used to show new items in developer option 'Feed X-ray'",Session,LinkedIn,https://www.linkedin.com/legal/cookie-policy,0
f2848679-5866-4774-9ac6-c8b503416706,Oribi,Analytics,oribi_user_guid,.oribi.io,"This cookie is used to identify a unique visitor",1 year,Oribi,https://www.linkedin.com/legal/cookie-policy,0
8cfecb87-ae88-451e-8c9b-e356fc7b5c97,Oribi,Analytics,oribi_cookie_test,linkedin.com,"This cookie is used To determine if tracking can be enabled on a current domain",Session,Oribi,https://www.linkedin.com/legal/cookie-policy,0
22352329-2eac-4e0c-b674-733e4483cd12,Amazon Web Services,Functional,AWSALB,,"These cookies enable us to allocate server traffic to make the user experience as smooth as possible. A so-called load balancer is used to determine which server currently has the best availability. The information generated cannot identify you as an individual.",Session,Amazon Web Services,https://aws.amazon.com/privacy/,0
9ae92467-906c-4876-b6a9-6426a034fb2b,Amazon Web Services,Functional,AWSALBCORS,,"For continued stickiness support with CORS use cases after the Chromium update, we are creating additional stickiness cookies for each of these duration-based stickiness features named AWSALBCORS (ALB).",Session,Amazon Web Services,https://aws.amazon.com/privacy/,0
d26e9be4-4f43-11eb-ae93-0242ac130002,Amazon Web Services,Functional,AWSELBCORS,,"For continued stickiness support with CORS use cases after the Chromium update, we are creating additional stickiness cookies for each of these duration-based stickiness features named AWSELBCORS (ALB).",Session,Amazon Web Services,https://aws.amazon.com/privacy/,0
95092dcc-a484-452b-afab-d7ed6a7c514d,Amazon Web Services,Functional,AWSELB,,"AWS Classic Load Balancer Cookie: Load Balancing Cookie: Used to map the session to the instance.",Session,Amazon Web Services,https://aws.amazon.com/privacy/,0
6531c756-a65f-43eb-bd03-8336b8f237f5,Amazon Web Services,Functional,AWSALBTGCORS,,"For continued stickiness support with CORS use cases after the Chromium update, we are creating additional stickiness cookies for each of these duration-based stickiness features named AWSELBCORS (ALB).",Session,Amazon Web Services,https://aws.amazon.com/privacy/,0
27a0b41d-adff-4ee7-90a0-d5c5258a657e,Amazon Web Services,Functional,AWSALBTG,,"For continued stickiness support with CORS use cases after the Chromium update, we are creating additional stickiness cookies for each of these duration-based stickiness features named AWSELBCORS (ALB).",Session,Amazon Web Services,https://aws.amazon.com/privacy/,0
7b4b999c-98d8-43fe-84f9-b218e4745003,Amazon Web Services,Functional,aws-csds-token,,"Anonymous metrics validation token",1 hour,Amazon Web Services,https://aws.amazon.com/privacy/,0
2cb771a7-12f7-4e38-a0c4-9bdbad75edad,Amazon Web Services,Functional,aws_lang,,"Stores the language used with AWS.",Session,Amazon Web Services,https://aws.amazon.com/privacy/,0
bba23965-929a-4fda-a511-ca890c148edc,Amazon Web Services,Analytics,aws-target-visitor-id,,"Used to collect anonymised information about how which web pages are visited, how long users spend on pages and what users search for.",1 Year,Amazon Web Services,https://aws.amazon.com/privacy/,0
1ef29cd7-0f08-4436-8708-3fd50ad3acb1,Amazon Web Services,Functional,aws-priv,,"Anonymous cookie for privacy regulations",1 Year,Amazon Web Services,https://aws.amazon.com/privacy/,0
c61e67a6-083a-40dc-ab3c-2a10f520fbd9,Amazon,Marketing,ad-id,amazon-adsystem.com,"Clickthroughs to Amazon websites: Noting how the user got to Amazon via this website",190 days,Amazon,https://amazon.com/privacy/,0
b3b1c8a5-9a3c-4f80-b6c4-9a2280be76c1,Amazon,Marketing,ad-privacy,amazon-adsystem.com,"Provided by amazon-adsystem.com for tracking user actions on other websites to provide targeted content to the users.",5 years,Amazon,https://amazon.com/privacy/,0
dc906e7e-79df-4e0e-8a44-054969e6abbe,Casale Media,Marketing,CMID,casalemedia.com,"Collects visitor data related to the user's visits to the website, such as the number of visits, average time spent on the website and what pages have been loaded, with the purpose of displaying targeted ads.",1 day,Casale Media,https://casalemedia.com,0
5d5492be-b079-4724-91c6-ca313b757413,Casale Media,Marketing,CMPRO,casalemedia.com,"Collects data on visitor behaviour from multiple websites, in order to present more relevant advertisement - This also allows the website to limit the number of times that the visitor is shown the same advertisement.",1 day,Casale Media,https://casalemedia.com,0
de9295f2-9e49-49b5-b5a8-20d14e8ecc93,Casale Media,Marketing,CMPS,casalemedia.com,"Collects visitor data related to the user's visits to the website, such as the number of visits, average time spent on the website and what pages have been loaded, with the purpose of displaying targeted ads",1 day,Casale Media,https://casalemedia.com,0
45e633a4-c426-4d6c-80ed-b892948f1526,Casale Media,Marketing,CMRUM3,casalemedia.com,"Collects visitor data related to the user's visits to the website, such as the number of visits, average time spent on the website and what pages have been loaded, with the purpose of displaying targeted ads.",1 day,Casale Media,https://casalemedia.com,0
16644476-619b-4cc8-8fca-a3f765ef8737,Casale Media,Marketing,CMST,casalemedia.com,"Collects visitor data related to the user's visits to the website, such as the number of visits, average time spent on the website and what pages have been loaded, with the purpose of displaying targeted ads.",1 day,Casale Media,https://casalemedia.com,0
694c598d-0740-468e-80da-6b48423fc2cc,Outbrain,Marketing,cookieJartestCookie,outbrain.com,"Pending",1 day,Outbrain,https://www.outbrain.com/legal/privacy#privacy-policy,0
f78cbb95-bec5-45b9-ab35-9e42cf2be030,Outbrain,Marketing,obuid,outbrain.com,"Holds the anonymous user's ID. Used for tracking user actions, such as clicks on the recommendations",3 months,Outbrain,https://www.outbrain.com/legal/privacy#privacy-policy,0
fc53bc46-9df5-4e94-8618-2fa8ca94498b,Outbrain,Marketing,apnxs,outbrain.com,"This cookie is set by Outbrain and it is used to analyse technical data about the website",4 months,Outbrain,https://www.outbrain.com/legal/privacy#privacy-policy,0
aa525714-6b3d-42f8-9160-8eaa01c55ec3,Outbrain,Marketing,criteo,outbrain.com,"This cookie is set by Outbrain and it is used to analyse technical data about the website",1 months,Outbrain,https://www.outbrain.com/legal/privacy#privacy-policy,0
db53d42b-a997-49ac-84be-4cd287f6e603,Outbrain,Marketing,mdfrc,outbrain.com,"This cookie is set by Outbrain and it is used to analyse technical data about the website",4 months,Outbrain,https://www.outbrain.com/legal/privacy#privacy-policy,0
87e730d9-e70f-4e85-ab6d-fae050199bab,Outbrain,Marketing,adrl,outbrain.com,"This cookie is set by Outbrain and it is used to analyse technical data about the website",4 months,Outbrain,https://www.outbrain.com/legal/privacy#privacy-policy,0
82d5e8f5-6990-47c7-9c6c-c85730aa6021,Outbrain,Marketing,ttd,outbrain.com,"This cookie is set by Outbrain and it is used to analyse technical data about the website",4 months,Outbrain,https://www.outbrain.com/legal/privacy#privacy-policy,0
f065b629-d233-4dbb-ad73-16c6b8f5c001,Outbrain,Marketing,recs,outbrain.com,"Stores the recommendations we’re recommending so that we don’t show only the same recommendations on the same page",1 minute,Outbrain,https://www.outbrain.com/legal/privacy#privacy-policy,0
8a803559-b6ef-4e8a-ad32-4f5529e4a24b,CHEQ AI Technologies,Functional,_cq_duid,,"Used by the website to protect against fraud in relation to its referral system.",3 months,CHEQ AI Technologies,https://cheq.ai/privacy-compliance/,0
d021f36c-adf9-4bf0-a242-a0f9edeaf1af,CHEQ AI Technologies,Functional,_cq_suid,,"This cookie is used to distinguish between humans and bots.",3 months,CHEQ AI Technologies,https://cheq.ai/privacy-compliance/,0
46949a58-d46d-4ae5-9a02-983a7ce8c9e4,justpremium.com,Marketing,jpxumaster,justpremium.com,"Used to present the visitor with relevant content and advertisement - The service is provided by third party advertisement hubs, which facilitate real-time bidding for advertisers.",1 month,JustPremium,https://justpremium.com/terms-conditions/,0
3d9b3c86-cf0e-4bc4-8159-1c2fd0289769,justpremium.com,Marketing,jpxumatched,justpremium.com,"Used to present the visitor with relevant content and advertisement - The service is provided by third party advertisement hubs, which facilitate real-time bidding for advertisers.",1 month,JustPremium,https://justpremium.com/terms-conditions/,0
478f9deb-9578-43a6-92a4-6a05ecdb4c49,PubMatic,Marketing,PUBMDCID,pubmatic.com,"Registers a unique ID that identifies the user's device during return visits across websites that use the same ad network. The ID is used to allow targeted ads.",3 months,PubMatic,https://pubmatic.com/legal/privacy/,0
45a07494-a150-46a2-9030-cec154399683,PubMatic,Marketing,pp,pubmatic.com,"This cookie tracks the last publisher website that you visited that contained an advertisement served by PubMatic.",3 months,PubMatic,https://pubmatic.com/legal/privacy/,0
e801cd22-198f-4a02-bba8-b684d72575d6,PubMatic,Marketing,SPugT,pubmatic.com,"This cookie is used to track when the server-side cookie store was last updated for the browser, and it is used in conjunction with the PugT cookie, described below.",30 days,PubMatic,https://pubmatic.com/legal/privacy/,0
50bfccd5-9096-44aa-ac86-a061eed8f655,PubMatic,Marketing,KADUSERCOOKIE,pubmatic.com,"PubMatic UserId. this identifier to identify each user uniquely. Some of the uses of this anonymous identifier are to support frequency capping, perform UID sync ups with DSP's, DMP's. DMP's / DP's push audicne data against this ID. API publishers sends this ID while making API requests to PubMatic AdServer. UAS Ad Engine also uses this cookie for FCAP purposes.",90 days,PubMatic,https://pubmatic.com/legal/privacy/,0
4a91ceec-54d1-482d-8595-2de34aa42962,PubMatic,Marketing,PUBRETARGET,pubmatic.com,"Pixel expiry. Used to indicate if user must be considered for various re-targeting ad campaigns running in PubMatic system.",90 days,PubMatic,https://pubmatic.com/legal/privacy/,0
5b6f63df-a3a3-408a-b401-04e401e48a42,PubMatic,Marketing,KCCH,pubmatic.com,"To avoid race condition in PubMatic userId generation, showad.js / universalpixel.js set this cookie first. if and only if not set already. Existence of this cookie means that current flow of the execution should not generate PubMatic userId cookie, as its already being set by other flow which has set KCCH.",30 secs,PubMatic,https://pubmatic.com/legal/privacy/,0
4198a3b1-5936-48b8-9b27-bac2935e99be,PubMatic,Marketing,SyncRTB,pubmatic.com,"Keeps list of DSP pixel Id's PubMatic synced with so far. PubMatic does userId sync up with DSP's. This cookie holds next sync up time for every pixel. Helps to maintain sync up frequency at DSP level.",90 days,PubMatic,https://pubmatic.com/legal/privacy/,1
002d1e0e-ab66-403f-be34-b7cb682c743b,PubMatic,Marketing,DPSync,pubmatic.com,"Keeps list of DMP pixel Id's PubMatic synced with so far PubMatic does userId sync up with DMP's. This cookie holds next sync up time for every pixel. Helps to maintain sync up frequency at DMP level.",90 days,PubMatic,https://pubmatic.com/legal/privacy/,1
d339f1bc-0533-44af-bc56-8446138caa92,PubMatic,Marketing,ADUSERCOOKIE,pubmatic.com,"PubMatic UserId. this identifier to identify each user uniquely. Some of the uses of this anonymous identifier are to support frequency capping, perform UID sync ups with DSP's, DMP's. DMP's / DP's push audicne data against this ID. API publishers sends this ID while making API requests to PubMatic AdServer. UAS Ad Engine also uses this cookie for FCAP purposes.",90 days,PubMatic,https://pubmatic.com/legal/privacy/,0
3ea9aef3-a7ab-4918-8422-55ac89cad19d,PubMatic,Marketing,PugT,pubmatic.com,"It is used to track when the cookies were updated on the browser. It is used to limit the number of calls to server side cookie store",30 days,PubMatic,https://pubmatic.com/legal/privacy/,0
210c6f5d-e8dc-437c-b260-686434558803,PubMatic,Marketing,KRTBCOOKIE_,pubmatic.com,"Registers a unique ID that identifies the user's device during return visits across websites that use the same ad network. The ID is used to allow targeted ads.",29 days,Pubmatic,https://pubmatic.com/legal/privacy/,1
89fcf954-ff19-49f6-aedb-880a42d7a95a,PubMatic,Analytics,f5_cspm,simage2.pubmatic.com,"This cookie name is associated with the BIG-IP product suite from company F5. It is used to monitor page load speed, as part of site performance monitoring.",Session,Pubmatic,https://pubmatic.com/legal/privacy/,0
0252d350-3bbc-4599-adfb-5c96f040409c,PubMatic,Functional,KTPCACOOKIE,pubmatic.com,"We use this cookie to check if third-party cookies are enabled on the user’s browser.",90 days,Pubmatic,https://pubmatic.com/legal/privacy/,0
018480be-3b99-4e1e-9e32-7ed9647ba5b7,PubMatic,Functional,COKENBLD,pubmatic.com,"This cookie sets a flag to “true” if cookies are enabled on the user’s browser.",1 day,Pubmatic,https://pubmatic.com/legal/privacy/,0
e375f89d-feeb-42e5-a675-c58847e174e7,PubMatic,Marketing,USCC,pubmatic.com,"This cookie enables PubMatic to sync user IDs properly in situations where multiple advertisements might appear on the same webpage.",1 day,Pubmatic,https://pubmatic.com/legal/privacy/,0
c013f01e-99ae-40c9-9222-8a9e82aeca8a,PubMatic,Marketing,DPPIX_ON,pubmatic.com,"These cookies enable PubMatic to properly sync cookie IDs with our partners by ensuring that our partners do not override each other during the sync process.",20 seconds,Pubmatic,https://pubmatic.com/legal/privacy/,0
d2353b54-3448-4e9f-b9ea-cc99c6138020,PubMatic,Marketing,SYNCUPPIX_ON,pubmatic.com,"These cookies enable PubMatic to properly sync cookie IDs with our partners by ensuring that our partners do not override each other during the sync process.",20 seconds,Pubmatic,https://pubmatic.com/legal/privacy/,0
b3f68e9b-c9a7-47d4-a6b1-c788e0721f53,PubMatic,Functional,PUBUIDSYNCUPFQ,pubmatic.com,"This cookie indicates the last time that we synced IDs with our partner.",3 months,Pubmatic,https://pubmatic.com/legal/privacy/,0
0f9b0fea-d25b-4681-bc29-bfe62827c8f8,PubMatic,Marketing,camfreq_,pubmatic.com,"This cookie is set for each campaign and indicates the number of times (e.g., frequency) that a particular advertisement may have been shown on the applicable publisher site.",30 days,Pubmatic,https://pubmatic.com/legal/privacy/,1
e36c535b-4e3d-4472-9b90-3735bbb03428,PubMatic,Marketing,pubfreq_,pubmatic.com,"This cookie is set for each advertising network and indicates the number of times (e.g., frequency) that a particular advertisement may have been shown on the applicable publisher site.",30 days,Pubmatic,https://pubmatic.com/legal/privacy/,1
8ccebab5-0dcb-4a20-9e20-a9c9a3050192,PubMatic,Functional,pubtime_,pubmatic.com,"This cookie stores the period of time after which ad frequency counters reset.",1 day,Pubmatic,https://pubmatic.com/legal/privacy/,1
f42b671a-b7ba-4e34-a886-6fbb1705d979,PubMatic,Functional,PMFREQ_ON,pubmatic.com,"This cookie ensures the proper functioning of the camfreq and pubfreq cookies, described above, in situations where one cookie may override the other.",1 day,Pubmatic,https://pubmatic.com/legal/privacy/,0
9835c4b2-1423-4657-94b3-65954018bcc9,PubMatic,Marketing,DPFQ,pubmatic.com,"This cookie stores information regarding the number of times that a partner’s pixel is loaded by a user’s browser. This enables us to cap the number of times that a pixel is used to record a user’s visit to a website within a specific period of time.",90 days,Pubmatic,https://pubmatic.com/legal/privacy/,0
7427b529-e7c5-4991-b020-30a651979534,PubMatic,Marketing,pi,pubmatic.com,"This cookie enables us to determine which set of pixels needs to be executed on the browser.",1 day,Pubmatic,https://pubmatic.com/legal/privacy/,0
e4b35336-20a7-4271-8b27-540cccb7b49d,PubMatic,Functional,FPtrust,pubmatic.com,"This cookie is a session cookie used to support the opt-out process via the Network Advertising Initiative.",1 day,Pubmatic,https://pubmatic.com/legal/privacy/,0
667ca36c-6d90-4705-9fea-d40ca16fb5c5,PubMatic,Functional,_curtime,pubmatic.com,"This cookie stores the current timestamp.",1 day,Pubmatic,https://pubmatic.com/legal/privacy/,0
31fe69ca-964c-474a-98ca-6383495c21c1,PubMatic,Functional,PMDTSHR,pubmatic.com,"This cookie is set for Komli ad server and is used for default impression when other data is not available.",1 day,Pubmatic,https://pubmatic.com/legal/privacy/,0
6c439033-bc86-4148-b105-30a979fc0ec2,PubMatic,Functional,chk,pubmatic.com,"This cookie is set on Google Chrome browsers that have a version less 67 or non-Chrome browsers, and is used for testing purposes.",3 months,Pubmatic,https://pubmatic.com/legal/privacy/,0
ee79a1d2-23b6-4107-92fc-e65e968ff5e2,PubMatic,Functional,chkSecSet,pubmatic.com,"This cookie is set on Google Chrome browsers that have a version less 67 or non-Chrome browsers, and is used for testing purposes.",3 months,Pubmatic,https://pubmatic.com/legal/privacy/,0
25b6636f-ba42-49b0-8b9d-abb9ff3f8d03,PubMatic,Functional,chkChromeAb67,pubmatic.com,"This cookie is set on Google Chrome browsers that have a version above 67 and is used for testing purposes.",3 months,Pubmatic,https://pubmatic.com/legal/privacy/,0
4fff74de-df07-46e1-a7c2-a931424ead76,PubMatic,Functional,chkChromeAb67Sec,pubmatic.com,"This cookie is set on Google Chrome browsers that have a version above 67 and is used for testing purposes.",3 months,Pubmatic,https://pubmatic.com/legal/privacy/,0
25b84ce8-ed55-4bde-af7b-928f633a072b,PubMatic,Functional,pubsyncexp,pubmatic.com,"Sets a unique ID for the visitor, that allows third party advertisers to target the visitor with relevant advertisement. This pairing service is provided by third party advertisement hubs, which facilitates real-time bidding for advertisers.",1 day,Pubmatic,https://pubmatic.com/legal/privacy/,0
67947227-f9d0-4bc5-9fb2-ad49e364bc92,PubMatic,Functional,ipc,pubmatic.com,"This cookie is a short-lived cookie that stores information needed to coordinate cookie syncing.",1 year,Pubmatic,https://pubmatic.com/legal/privacy/,0
0d33763c-b5ab-47f0-b79c-6cc7395a3b69,Kiyoh,Functional,Kiyohnl,kiyoh.nl,"Cookies are associated with the use of Kiyoh to collect and display customer reviews",1 year,Kiyoh,https://www.kiyoh.nl/disclaimer.html,0
cadac166-ff43-4094-b8a3-8da2699c4c78,ID5,Marketing,id5,id5-sync.com,"Sets a unique ID for the visitor, that allows third party advertisers to target the visitor with relevant advertisement. This pairing service is provided by third party advertisement hubs, which facilitates real-time bidding for advertisers.",1 day,ID5,https://id5.io/privacy-policy/,0
1798e3dd-210f-4453-bd36-f2eb4381b68d,ID5,Marketing,cip,id5-sync.com,"Used to present the visitor with relevant content and advertisement - The service is provided by third party advertisement hubs, which facilitate real-time bidding for advertisers.",1 day,ID5,https://id5.io/privacy-policy/,0
446cfe80-bc72-4b91-b3a2-bd85f6680d4e,ID5,Marketing,car,id5-sync.com,"Used to present the visitor with relevant content and advertisement - The service is provided by third party advertisement hubs, which facilitate real-time bidding for advertisers.",1 day,ID5,https://id5.io/privacy-policy/,0
d08ef865-4f8d-4f48-8ba3-268d60586a28,ID5,Marketing,callback,id5-sync.com,"Collects data on visitor behaviour from multiple websites, in order to present more relevant advertisement - This also allows the website to limit the number of times that the visitor is shown the same advertisement.",1 day,ID5,https://id5.io/privacy-policy/,0
3aada5ca-ab25-43c7-87b2-d7c676dd424f,ID5,Marketing,cnac,id5-sync.com,"Used to present the visitor with relevant content and advertisement - The service is provided by third party advertisement hubs, which facilitate real-time bidding for advertisers.",1 day,ID5,https://id5.io/privacy-policy/,0
0926e9a2-8d64-43df-8754-c0f5288c5c11,ID5,Marketing,cf,id5-sync.com,"Sets a unique ID for the visitor, that allows third party advertisers to target the visitor with relevant advertisement. This pairing service is provided by third party advertisement hubs, which facilitates real-time bidding for advertisers.",1 day,ID5,https://id5.io/privacy-policy/,0
d9a88445-80df-4409-9619-ffe234f4ddca,ID5,Functional,gdpr,id5-sync.com,"Determines whether the visitor has accepted the cookie consent box. This ensures that the cookie consent box will not be presented again upon re-en try.",1 day,ID5,https://id5.io/privacy-policy/,0
89c83c41-018d-40d8-b20a-e59116440143,ID5,Functional,gpp,id5-sync,"A valid IAB Global Privacy Platform consent string. If the string is missing, misconstructed, or otherwise invalid, we will treat the request as if it has no consent string and process accordingly.",Session,ID5,https://id5.io/privacy-policy/,0
ba085448-f3f6-47cf-9d33-78f41aa07359,ComScore,Marketing,UIDR,.scorecardresearch.com,"Collects information of the user and his/her movement, such as timestamp for visits, most recently loaded pages and IP address. The data is used by the marketing research network, Scorecard Research, to analyse traffic patterns and carry out surveys to help their clients better understand the customer's preferences.",2 years,ComScore,https://www.comscore.com/About/Privacy-Policy,0
1842a174-010a-43ad-b4af-b28c07cdeafb,ComScore,Marketing,UID,.scorecardresearch.com,"Collects information of the user and his/her movement, such as timestamp for visits, most recently loaded pages and IP address. The data is used by the marketing research network, Scorecard Research, to analyse traffic patterns and carry out surveys to help their clients better understand the customer's preferences.",2 years,ComScore,https://www.comscore.com/About/Privacy-Policy,0
4e6c97e1-d42b-42ec-a37f-1979a5da04c3,ComScore,Marketing,PID,.scorecardresearch.com,"Collects a code that identifies the specific website or advertiser participating in the ScorecardResearch data collection program.",1 year,ComScore,https://www.comscore.com/About/Privacy-Policy,0
07e85dc0-bd8a-4d76-a74a-782302d85caa,ComScore,Marketing,XID,.scorecardresearch.com,"Collects a unique identifier assigned to a device (computer, phone, tablet) to track the user across different websites.",1 year,ComScore,https://www.comscore.com/About/Privacy-Policy,0
b15f9684-e3a1-44ee-a396-5ca7b40719fd,semasio.net,Marketing,SEUNCY,semasio.net,"Registers a unique ID that identifies the user’s device for return visits.",179 days,semasio.net,http://www.semasio.net,0
9f2cccf1-9a5f-4108-9864-6c4f118ed1c8,Federated Media Publishing,Marketing,ljt_reader,,"Collects data related to reader interests, context, demographics and other information on behalf of the Lijit platform with the purpose of finding interested users on websites with related content.",1 year,Federated Media Publishing,,0
126ea187-97ad-4bad-925a-5c2d755fb3a7,rekmob.com,Marketing,rek_content,rekmob.com,"Pending",6 days,rekmob.com,,0
62d55d01-69a9-4223-a020-ae274c03fe3d,Improve Digital,Marketing,um,ad.360yield.com,"To enable the bidding process.",90 days,ad.360yield.com,https://www.improvedigital.com/platform-privacy-policy/,0
a3b82f4c-3673-426b-a619-3c1c4c284ee3,Improve Digital,Marketing,umeh,ad.360yield.com,"To enable the bidding process.",90 days,ad.360yield.com,https://www.improvedigital.com/platform-privacy-policy/,0
e05e2ae9-16ff-4072-8f49-1f05a3ab08d2,vmg.host,Marketing,BSWtracker,vmg.host,"Collects data on visitor behaviour from multiple websites, in order to present more relevant advertisement - This also allows the website to limit the number of times that the visitor is shown the same advertisement.",694 days,vmg.host,,0
3a267085-9f06-436b-ae64-d42a63c19b3b,1rx.io,Marketing,_rxuuid,1rx.io,"Sets a unique ID for the visitor, with which external advertisers can target the visitor with relevant advertisements. This linking service is provided by third-party advertising hubs, facilitating real-time bidding for advertisers.",1 year,1rx.io,,0
3196b95a-9b88-4c48-aff8-0df0905520f7,Atlas,Marketing,AA003,atdmt.com,"Collects information on visitor behaviour on multiple websites. This information is used on the website, in order to optimize the relevance of advertisement.",3 months,Atlas,,0
76ecbfd7-314d-4a01-9692-603cfe212330,Atlas,Marketing,ATN,atdmt.com,"Collects information on visitor behaviour on multiple websites. This information is used on the website, in order to optimize the relevance of advertisement.",3 months,Atlas,,0
64b3c4d8-ad3c-4963-9e0c-5dc5ec24ef5d,Teads,Marketing,tt_viewer,teads.com,"Teads uses a “tt_viewer” cookie to help personalize the video ads you see on our partner websites.",1 year,Teads.com,https://www.teads.com/privacy-policy/,0
25b4a1fb-346c-4dbc-ba30-5e0269ae05d0,Teads,Marketing,tt_bluekai,.teads.tv,"Avoid calling to bluekai. This avoids unnecessary calls to bluekai.",1 day,Teads.com,https://www.teads.com/privacy-policy/,0
5085dd3e-3a25-470b-b083-4eb9846985d5,Teads,Marketing,tt_exelate,.teads.tv,"Avoid calling to Exelate. This avoids unnecessary calls to Eleate.",1 day,Teads.com,https://www.teads.com/privacy-policy/,0
4a8babdd-ff24-48d4-a644-cacec51b83f7,Teads,Marketing,tt_liveramp,.teads.tv,"Avoid calling to Liveramp. This avoids unnecessary calls to Liveramp.",1 day,Teads.com,https://www.teads.com/privacy-policy/,0
1387014e-ea7b-47f9-85b9-31c704f229b0,Teads,Marketing,tt_neustar,.teads.tv,"Avoid calling to Nuestar. This avoids unnecessary calls to Neustar.",1 day,Teads.com,https://www.teads.com/privacy-policy/,0
2202e01f-c751-43f3-8fe0-77b5d0ce8ca0,Teads,Marketing,tt_salesforce,.teads.tv,"Avoid calling to Salesforce. This avoids unnecessary calls to Salesforce.",1 day,Teads.com,https://www.teads.com/privacy-policy/,0
b478ffd8-aa0d-4d33-ad21-b46a1d0a1860,Adobe ColdFusion,Functional,cfid,,"This cookie is used to determine which type of device the visitor is using, so the website can be properly formatted",1 day,Adobe ColdFusion,,0
dcaebf29-7f2e-4522-b295-23f93020b89a,Adobe ColdFusion,Functional,cftoken,,"This cookie is used to determine which type of device the visitor is using, so the website can be properly formatted",1 day,Adobe ColdFusion,,0
191053d2-9b99-4fd8-beed-0848de0cd971,Visx.net,Marketing,um2,visx.net,"Sets a unique ID for the visitor, that allows third party advertisers to target the visitor with relevant advertisement. This pairing service is provided by third party advertisement hubs, which facilitates real-time bidding for advertisers.",2 years,visx.net,,0
d62265f5-b213-4830-ae2a-b1c84f9b9c8b,bidswitch.net,Marketing,tuuid_lu,bidswitch.net,"Contains a unique visitor ID, which allows Bidswitch.com to track the visitor across multiple websites. This allows Bidswitch to optimize advertisement relevance and ensure that the visitor does not see the same ads multiple times.",3 months,bidswitch.net,,0
74bb46b3-b3eb-4a2a-95b7-bc4cc2e1f8fb,adscale.de,Marketing,uu,adscale.de,"Used to target ads by registering the user's movements across websites.",1 year,adscale.de,,0
ef38b65a-94e6-4b44-a596-5b6cb5a618bd,adscale.de,Marketing,cct,adscale.de,"Necessary for the shopping cart functionality on the website",session,adscale.de,,0
a9cc924c-28a7-4a56-8688-38aef554e390,adscale.de,Marketing,tu,adscale.de,"Used to target ads by registering the user's movements across websites.",29 days,adscale.de,,0
452ba8c5-b674-4910-803a-46d1461f75ca,betweendigital.com,Marketing,betweendigital.com,ut,"Collects data on visitors' behaviour and interaction - This is used to optimize the website and make advertisement on the website more relevant.",10 years,betweendigital.com,,0
ea3efa31-071a-4e8c-8916-89c0ed348d8f,betweendigital.com,Functional,ss,betweendigital.com,"Necessary for the functionality of the website's chat-box function.",10 years,betweendigital.com,,0
4b1ab77a-d10f-4915-aa8e-dbcb789f4bff,Seedtag,Marketing,st_csd,seedtag.com,"Date of the last cookie-syn",1 year,seedtag.com,https://www.seedtag.com/privacy/,0
dd0ee2e6-80c0-4e80-8ec1-d2a1fc1ed735,Seedtag,Marketing,st_cs,seedtag.com,"Unique identifiers of DSPs",1 year,seedtag.com,https://www.seedtag.com/privacy/,0
b92dce55-ffca-4ba8-bbcb-4e9ca17579c9,Seedtag,Marketing,st_uid,seedtag.com,"This cookie is used to store randomly generated unique browser identifier",1 year,seedtag.com,https://www.seedtag.com/privacy/,0
73be3ddb-3e4d-48a6-81cc-80e53e9a3c17,Seedtag,Marketing,st_cnt,seedtag.com,"This cookie is used to store low precision geolocation (Country, City)",1 year,seedtag.com,https://www.seedtag.com/privacy/,0
624734b3-5c15-4cff-84d8-4be4d28e39ba,Seedtag,Marketing,st_chc,seedtag.com,"This cookie is used to store Cookie-sync",1 year,seedtag.com,https://www.seedtag.com/privacy/,0
406e235a-9688-48f8-b9e9-cd5024a178b2,Seedtag,Marketing,st_ssp,seedtag.com,"This cookie is used to store low precision geolocation",1 year,seedtag.com,https://www.seedtag.com/privacy/,0
ea39fd05-dd35-46f9-93a3-b939196c1dae,Smartadserver,Marketing,cnfq,smartadserver.com,"Technical cookie used to trigger the injection of monitoring scripts from a CNAME",360 minutes,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
b1157f8c-fdb8-4db9-b2e4-26610dee2281,Smartadserver,Marketing,lcsrc,smartadserver.com,"Technical cookie used to refresh date serialized in ISO format",13 months,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
778744f0-b143-408b-a4cb-c6afcaad89fb,Smartadserver,Functional,dyncdn,smartadserver.com,"End-point and traffic data",1 day,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
51dc1bbc-309d-4137-b43b-b1e0b67716a0,Smartadserver,Marketing,gid,smartadserver.com,"Global unique ID cross domains associated with an end-user",13 months,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
a7fa8fbb-d8ff-40c9-a5b2-77a7f04a1823,Smartadserver,Marketing,csfq,smartadserver.com,"Technical cookie used to trigger the injection of monitoring scripts",6 hours,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
e64bda3a-2b05-4a03-895c-ebea8a7a3c0b,Smartadserver,Marketing,partner-,smartadserver.com,"Labeling end-users with keywords defined by a client.",13 months,Equativ.com,https://equativ.com/end-users-privacy-policy/,1
78a8b8c8-608a-409b-8f0e-f95fbf6c4296,Smartadserver,Analytics,vs,smartadserver.com,"Counting new visits",session,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
b3353c79-d1f8-47ff-a3fe-254fc1650f5b,Smartadserver,Marketing,Comp,smartadserver.com,"Labeling end-users with keywords defined by a client.",13 months,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
2b636deb-be2f-4e9f-ab63-4e11bcdbfa11,Smartadserver,Marketing,Pwb,smartadserver.com,"Allows for the display of ads in the correct format based on browser, screen size, and OS.",2 days,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
e1815421-bf71-4cdc-bbc5-2761f5448c69,Smartadserver,Functional,Pdomid,smartadserver.com,"Technical cookie used to distribute the traffic between Smart's servers",13 months,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
7bed4fc6-3fca-4399-baf9-1cc4f8a5d328,Smartadserver,Marketing,sasd,smartadserver.com,"Geolocation collection",1 day,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
3fdf0b93-682e-4355-870b-191251c4b67e,Smartadserver,Marketing,sasd2,smartadserver.com,"Geolocation collection",1 day,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
8d120253-b686-4e5a-bed6-987aef4e8b75,Smartadserver,Marketing,TestIfCookie,,"Technical cookie used to test if persistent cookies are accepted",session cookie,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
e1d06d71-3a5c-4a20-9808-38bb0bd35862,Smartadserver,Marketing,csync,smartadserver.com,"Optimises ad display based on the user's movement combined and various advertiser bids for displaying user ads.",1 day,Equativ.com,https://equativ.com/privacy-policy/,0
2fe3a197-42b3-4033-af47-e568044cc8ec,Smartadserver,Marketing,TestIfCookieP,smartadserver.com,"Technical cookie used to test if persistent cookies are accepted",13 months,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
72ccbe92-6c9b-4441-8b3e-2ec84120b80d,Smartadserver,Marketing,pid,.smartadserver.com,"Unique ID associated with an end-user (according to a domain and browser)",13 months,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
c51d2ae1-ecab-457a-b47a-ecc11a138b12,Smartadserver,Analytics,pbw,.smartadserver.com,"This cookie collects cached data by browser ID, operating system ID and screen size",13 months,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
92bd76ef-12bf-49fd-a75d-0baddc2a19c5,Smartadserver,Marketing,lcsrd,.smartadserver.com,"This cookie is used to present the visitor with relevant content and advertisements",13 months,Equativ.com,https://equativ.com/end-users-privacy-policy/,0
b67c0fe1-3df2-4c7c-8ecb-ba7247299484,Microsoft,Security,.AspNetCore.Antiforgery.,,"Anti-forgery cookie is a security mechanism to defend against cross-site request forgery (CSRF) attacks.",Session,Microsoft,,1
c7fa66a8-7594-4dba-9890-f45ea2413843,Unrulymedia.com,Marketing,unruly_m,,"Pending",6 days,Unrulymedia.com,,1
12b149c1-3379-4f8f-bde0-6262b279e005,Outbrain,Marketing,bdswch,outbrain.com,"Used to present the visitor with relevant content and advertisement - The service is provided by third party advertisement hubs, which facilitate real-time bidding for advertisers.",3 months,Outbrain,https://www.outbrain.com/legal/privacy#privacy-policy,0
07c371e2-d427-41d0-bccb-e3737d20178c,LiveIntent,Marketing,lidid,liadm.com,"Collects data on visitors' behaviour and interaction - This is used to make advertisement on the website more relevant. The cookie also allows the website to detect any referrals from other websites.",2 years,LiveIntent,,0
c3f6522c-1012-4ff4-a590-a7b31adc8c6a,LiveIntent,Marketing,_li_ss,liadm.com,"Sets a unique ID for the visitor, that allows third party advertisers to target the visitor with relevant advertisement. This pairing service is provided by third party advertisement hubs, which facilitates real-time bidding for advertisers.",1 month,LiveIntent,,0
20749ddc-cac3-4b92-ba6e-682300b43604,TripleLift,Marketing,tluid,3lift.com,"This cookie is used to identify the visitor and optimize ad-relevance by collecting visitor data from multiple websites – this exchange of visitor data is normally provided by a third-party data-center or ad-exchange.",3 months,TripleLift,https://triplelift.com/advertising-technology-platform-cookie-notice/,0
7ca9e713-9c4b-4c42-83d0-8118d0b3ad39,TripleLift,Marketing,tluidp,3lift.com,"This cookie is used to identify the visitor and optimize ad-relevance by collecting visitor data from multiple websites with – this exchange of visitor data is normally provided by a third-party data-center or ad-exchange.",3 months,TripleLift,https://triplelift.com/advertising-technology-platform-cookie-notice/,0
717e0bb0-cda0-4e49-8418-12af4e3ae8cf,TripleLift,Marketing,optout,3lift.com,"This cookie is used to determine whether the visitor has accepted the cookie consent box.",5 years,TripleLift,https://triplelift.com/advertising-technology-platform-cookie-notice/,0
3bac3d4a-cb4c-45eb-b270-14b59240a528,TripleLift,Marketing,sync,3lift.com,"This cookie is used in order to transact in digital advertising, TripleLift exchanges (or syncs) identifiers with other companies. This cookie keeps track of which companies have recently been synced in order to avoid syncing with the same companies repetitively.",3 months,TripleLift,https://triplelift.com/advertising-technology-platform-cookie-notice/,0
f9200827-44f9-4ca1-9fd7-779d15d60155,Taboola,Marketing,t_gid,taboola.com,"This Partitioned cookie gives a user who interacts with Taboola Widget a User ID allowing us to target advertisements and content to this specific user ID.",13 months,taboola.com,,0
71a1fd68-cebf-4d40-bdf0-23cd5fab2f46,Taboola,Functional,t_pt_gid,.taboola.com,"Assigns a unique User ID that Taboola uses for attribution and reporting purposes, and to tailor recommendations to this specific user.",1 Year,taboola.com,https://www.taboola.com/policies/cookie-policy,0
1b6c7e7d-e469-4834-ab43-a702e39e3142,Taboola,Marketing,taboola_session_id,.taboola.com,"Creates a temporary session ID to avoid the display of duplicate recommendations on the page.",Session,taboola.com,https://www.taboola.com/policies/cookie-policy,0
b0e73672-75e0-4b30-8918-02cbed8c59e2,Taboola,Functional,taboola_select,.taboola.com,"Maintains a record of whether the user performed an action in the “Taboola Select” feature.",1 year,taboola.com,https://www.taboola.com/policies/cookie-policy,0
89bed886-e46d-4671-8945-b741d8b8a23a,Taboola,Functional,taboola_fp_td_user_id,.taboola.com,"Indicates that the user clicked on an item that was recommended by Taboola’s Services. This is used for reporting and analytics purposes.",1 year,taboola.com,https://www.taboola.com/policies/cookie-policy,0
70a35cb7-b81f-4f41-825d-3e9dfd2250c8,Taboola,Functional,_tb_sess_r,.taboola.com,"Used on websites of our publisher Customers that utilize the Taboola Newsroom services. It maintains a session reference about the user’s visit to this particular website.",30 minutes,taboola.com,https://www.taboola.com/policies/cookie-policy,0
0023f6a9-0654-4a06-9ad4-374ea3617ca9,Taboola,Marketing,_tb_t_ppg,.taboola.com,"Used on websites of our publisher Customers that utilize the Taboola Newsroom services. This cookie is used to identify the referring website (i.e. the website that the user visited prior to arriving at this publisher’s website).",30 minutes,taboola.com,https://www.taboola.com/policies/cookie-policy,0
828095c1-b582-4ed2-89dc-3eea1dae2abe,Taboola,Analytics,abLdr,.taboola.com,"Supports routine technical and performance improvements for Taboola’s browser-based Services.",3 hours,taboola.com,https://www.taboola.com/policies/cookie-policy,0
9e31f373-a70a-4ce8-85c3-2e37e32ef8d8,Taboola,Analytics,abMbl,.taboola.com," Supports routine technical and performance improvements for Taboola’s mobile SDK Services.",3 hours,taboola.com,https://www.taboola.com/policies/cookie-policy,0
9be70595-25f5-4ed9-916a-138e5f40d4f4,Taboola,Analytics,tb_click_param,.taboola.com,"Used on websites of our publisher Customers that utilize the Taboola Newsroom services. It measures performance of the publisher’s homepage articles that are clicked.",50 seconds,taboola.com,https://www.taboola.com/policies/cookie-policy,0
3b89dcd0-1da7-4382-8d20-a4c9eb614e00,openx.net,Marketing,i,,"Registers user data, such as IP address, geographical location, websites visited and on which advertisements the user has clicked, with the aim of optimizing the display of advertisements based on user relocation on websites that use the same advertising network.",1 year,OpenX,https://www.openx.com/privacy-center/privacy-policy/,0
107fe6d8-822c-4aab-9e25-659bfb1142ab,openx.net,Marketing,univ_id,openx.net,"This cookie collects information about the visitor for the purpose of serving advertisements.",3 days,OpenX,https://www.openx.com/privacy-center/privacy-policy/,0
ed0006e3-167e-4bf3-92cf-7cb569a9f8a5,openx.net,Marketing,pd,openx.net,"This cookie stores information about which other third parties the user cookie (‘i’ cookie) has been synced with to reduce the amount of user matching done on your device.",15 days,OpenX,https://www.openx.com/privacy-center/privacy-policy/,0
d56d39f1-3fc6-4947-9533-1f5115066624,openx.net,Marketing,OAID,,"This cookie is used by the ad server software to manage which ads are placed on our website, and to capture clicks on those ads. Information is collected in anonymous form, and we do not use this data to deliver specific content, advertising or otherwise, to your browser.",1 year,OpenX,https://www.openx.com/privacy-center/privacy-policy/,0
d19b42a1-1f06-48ed-9e02-3171b8c92771,openx.net,Marketing,OAGEO,,"Used to avoid the repeated display of the same ad. Contains information about the users location.",Session,OpenX,https://www.openx.com/privacy-center/privacy-policy/,1
abd1eb75-e0f4-47a9-8196-17d51fd6b35f,AddThis,Functional,__atuvc,.addthis.com,"This cookie is associated with the AddThis social sharing widget, it stores an updated page share count.",2 years,AddThis,https://www.addthis.com/privacy,0
1d648233-6aab-4ae5-82b4-ec8eef7b1d1c,AddThis,Functional,__atuvs,.addthis.com,"This cookie is associated with the AddThis social sharing widget, which serves a similar purpose to other cookies set by the service.",2 years,AddThis,https://www.addthis.com/privacy,0
deb26341-c10a-4360-a63f-669379a82ff4,AddThis,Functional,ssc,.addthis.com,"AddThis - Cookie related to an AddThis sharing button available on the website",2 years,AddThis,https://www.addthis.com/privacy,0
7cc2204d-93b8-40eb-b547-eba0d7b0bfbf,AddThis,Functional,uvc,.addthis.com,"AddThis - Cookie related to an AddThis sharing button available on the website",2 years,AddThis,https://www.addthis.com/privacy,0
d9afbac4-6c81-4ecf-9021-f7925c4e4f1d,AddThis,Functional,loc,.addthis.com,"AddThis - Cookie related to an AddThis sharing button available on the website",2 years,AddThis,https://www.addthis.com/privacy,0
c8493aa7-62c1-40b5-b1ff-cf843fb28dd9,AddThis,Functional,na_id,.addthis.com,"AddThis - Cookie related to an AddThis sharing button available on the website",2 years,AddThis,https://www.addthis.com/privacy,0
2f732a30-91ed-40ab-8701-13a50a973509,AddThis,Functional,na_tc,.addthis.com,"AddThis - Cookie related to an AddThis sharing button available on the website",2 years,AddThis,https://www.addthis.com/privacy,0
312d83c5-a57f-4848-a531-3b27ad555a60,AddThis,Functional,ouid,.addthis.com,"AddThis - Cookie related to an AddThis sharing button available on the website",2 years,AddThis,https://www.addthis.com/privacy,0
4f4dce79-5bd7-4c57-8b8e-a69a3c6f52d2,AddThis,Functional,na_sc_x,.dlx.addthis.com,"Used by the social sharing platform AddThis to keep a record of parts of the site that has been visited in order to recommend other parts of the site.",1 month,AddThis,https://www.addthis.com/privacy,0
5bf92cdc-06f1-4ff6-a7f8-9bf890eeac96,Funda,Marketing,DG_HID,funda.nl,"Pending",30 days,Funda,https://www.funda.nl/privacybeleid/consument/,0
e9e26b83-2484-4d51-8f15-2affa14294ef,Funda,Marketing,DG_IID,funda.nl,"Pending",30 days,Funda,https://www.funda.nl/privacybeleid/consument/,0
01302635-dea4-4f63-a38c-ad27df980f33,Funda,Marketing,DG_SID,funda.nl,"Pending",30 days,Funda,https://www.funda.nl/privacybeleid/consument/,0
5d04307b-018d-455c-915c-3b6f69b41a75,Funda,Marketing,DG_UID,funda.nl,"Pending",30 days,Funda,https://www.funda.nl/privacybeleid/consument/,0
d4f501a2-e9c3-4be3-b8d4-e30a51084fae,Funda,Marketing,DG_ZID,funda.nl,"Pending",30 days,Funda,https://www.funda.nl/privacybeleid/consument/,0
649c8a3b-3bf1-45af-bcc6-5a2eb0491c70,Funda,Marketing,DG_ZUID,funda.nl,"Pending",30 days,Funda,https://www.funda.nl/privacybeleid/consument/,0
8f784c70-e387-4d9f-81fd-49238a1cdc15,Funda,Functional,"fonts-loaded",funda.nl,"This cookie checks and remembers whether you have the font used by funda. Remembering this check makes visiting the website faster.",30 days,Funda,https://www.funda.nl/privacybeleid/consument/,0
4ea6a00a-1b1f-49be-8825-1ba74e3b496c,Funda,Functional,"html-classes",funda.nl,"Remembering how the website is displayed to adjust the appearance of the site to the environment and browser used by the user. This ensures that the site loads faster on a subsequent visit.",30 days,Funda,https://www.funda.nl/privacybeleid/consument/,0
7f5e1a9f-4e6e-4210-8b38-aa402b957f67,Funda,Functional,SNLB2,funda.nl,"Pending",30 days,Funda,https://www.funda.nl/privacybeleid/consument/,0
4951c825-94b4-404e-bffd-1981fb6a8d5c,LiveZilla GmbH,Functional,"lz_last_visit","","Last Visit (Timestamp), used to determine when the website visitor browsed the website the last time.",1 Year,LiveZilla GmbH,,0
d435d501-cf43-45cd-b884-2187e778da1a,LiveZilla GmbH,Functional,"lz_userid","","Sets up a unique ID which is used to generate statistical data about the website visitor's usage of the website.",1 Year,LiveZilla GmbH,,0
fd1b3efb-9261-4797-9a8b-91cfcf43ebfc,LiveZilla GmbH,Functional,"lz_visits","","Number of visits, is used to identify how often the website visitor already visited the website.",1 Year,LiveZilla GmbH,,0
90074925-d0e8-48fa-9279-a0f771a48c86,AFAS,Functional,".secureclient","","Pending",Session,AFAS,,0
8613148a-96ca-4445-9499-1d5d11d98b71,AFAS,Functional,".securesession","","Pending",Session,AFAS,,0
6063bbe4-245f-458f-95fb-724c23948e40,AFAS,Functional,".stateflags","","Pending",Session,AFAS,,0
a1d65bda-06df-4141-93ea-84a399c0f0d2,AFAS,Functional,".auth","","Pending",Session,AFAS,,0
c5eb2700-0b5c-4260-a3e4-1940122bb3d5,Adxcore,Marketing,"advst_uid_11",".adxcore.com","Pending",6 months,Adxcore,,0
80264006-f818-41e1-b9a5-88466efc156f,Adxcore,Marketing,"DISPATCHER","dispatcher.adxcore.com","Pending",6 months,Adxcore,,0
abc72578-7e9d-4293-bdf2-30aafb9cd155,Fidelity-media.com,Marketing,"DSP_UID","fidelity-media.com","Pending",9 days,Fidelity-media.com,,0
80cb67ec-857a-4ed2-829b-323780e7b488,Picreel,Analytics,"picreel_tracker__visited","","Used for statistical purposes when counting the number of pages, the user visited",Unlimited,Picreel,,0
81e2981c-f698-40c1-86b1-45f4405c9a9e,Picreel,Analytics,"picreel_tracker__first_visit","","Used for statistical purposes, keeping the date of the first visit",Unlimited,Picreel,,0
42b33d4f-cd26-4984-a683-5556786bf586,Picreel,Analytics,"picreel_tracker__page_views","","Pending",Unlimited,Picreel,,0
19724b2b-0eec-42ec-963b-d54b6b0337da,Picreel,Analytics,"picreel_new_price","","Pending",Unlimited,Picreel,,0
e35dbf4a-7ee6-4f3a-bda3-f7ff5856e036,Trustpilot,Analytics,"__auc",".trustpilot.com","Used to track and report information to the Alexa analytics",1 year,Trustpilot,,0
e827d57f-a6a5-404e-93d5-a466bd7eb682,Trustpilot,Analytics,"ajs_user_id",".trustpilot.com"," This cookie helps track visitor usage, events, target marketing, and can also measure application performance and stability.",1 year,Trustpilot,,0
881eb924-e16c-4edc-8b17-1914f91ae1ea,Trustpilot,Analytics,"ajs_anonymous_id",".trustpilot.com","Used for Analytics and help count how many people visit a certain site by tracking if you have visited before",1 year,Trustpilot,,0
0930be02-cc2d-4b7a-9372-ae132342204e,Trustpilot,Analytics,"ajs_group_id",".trustpilot.com","Track visitor usage and events within the website",1 year,Trustpilot,,0
ec86fd50-73ad-4f71-8b8d-e326f552ab75,Trustpilot,Analytics,"__asc",.trustpilot.com,"A cookie set by Trustpilot if you click the read more widget",1 year,Trustpilot,,0
2ff0da06-abc1-4f28-bba0-87bcbefad68b,Inspectlet,Analytics,"__insp_norec_sess",inspectlet.com,"Inspectlet uses cookies to keep track of session information. These cookies are needed to accurately understand how visitors are navigating the website.",1 year,Inspectlet,https://docs.inspectlet.com/hc/en-us,0
805b79f6-8fb6-4369-acdb-7cf2a698e7f0,Inspectlet,Analytics,"__insp_slim",inspectlet.com,"Inspectlet uses cookies to keep track of session information. These cookies are needed to accurately understand how visitors are navigating the website.",1 year,Inspectlet,https://docs.inspectlet.com/hc/en-us,0
db34f9b2-a7af-48ec-b430-55b6df7695bb,Inspectlet,Analytics,"__insp_targlpt",inspectlet.com,"Inspectlet uses cookies to keep track of session information. These cookies are needed to accurately understand how visitors are navigating the website.",1 year,Inspectlet,https://docs.inspectlet.com/hc/en-us,0
2af09a9a-20b8-45dd-892e-99dea2bd0b9d,Inspectlet,Analytics,"__insp_targlpu",inspectlet.com,"Inspectlet uses cookies to keep track of session information. These cookies are needed to accurately understand how visitors are navigating the website.",1 year,Inspectlet,https://docs.inspectlet.com/hc/en-us,0
cc650f6e-ffba-11e9-8d71-362b9e155667,Microsoft,Functional,"__RequestVerificationToken","","This is an anti-forgery cookie set by web applications built using ASP.NET MVC technologies. It is designed to stop unauthorised posting of content to a website, known as Cross-Site Request Forgery.",session,Microsoft,,1
cc6513b0-ffba-11e9-8d71-362b9e155667,Sonobi,Marketing,"__uin_mm",sonobi.com,"These cookies are used to deliver adverts more relevant to you and your interests. They are also used to limit the number of times you see an advertisement as well as help measure the effectiveness of the advertising campaign.",44 days,Sonobi,https://sonobi.com/privacy-policy/,0
cc6514dc-ffba-11e9-8d71-362b9e155667,Sonobi,Marketing,"__uir_mm",sonobi.com,"These cookies are used to deliver adverts more relevant to you and your interests. They are also used to limit the number of times you see an advertisement as well as help measure the effectiveness of the advertising campaign.",14 days,Sonobi,https://sonobi.com/privacy-policy/,0
cc6517fc-ffba-11e9-8d71-362b9e155667,Lotame,Marketing,"_cc_aud",crwdcntrl.net,"Collects anonymous statistical data related to the user's website visits, such as the number of visits, average time spent on the website and what pages have been loaded. The purpose is to segment the website's users according to factors such as demographics and geographical location, in order to enable media and marketing agencies to structure and understand their target groups to enable customised online advertising. ",269 days,Lotame,https://www.lotame.com/about-lotame/privacy/lotames-products-services-privacy-policy/,0
cc651932-ffba-11e9-8d71-362b9e155667,Lotame,Marketing,"_cc_cc",crwdcntrl.net,"Collects anonymous statistical data related to the user's website visits, such as the number of visits, average time spent on the website and what pages have been loaded. The purpose is to segment the website's users according to factors such as demographics and geographical location, in order to enable media and marketing agencies to structure and understand their target groups to enable customised online advertising. ",session,Lotame,https://www.lotame.com/about-lotame/privacy/lotames-products-services-privacy-policy/,0
cc651cf2-ffba-11e9-8d71-362b9e155667,Lotame,Marketing,"_cc_id",crwdcntrl.net,"Collects anonymous statistical data related to the user's website visits, such as the number of visits, average time spent on the website and what pages have been loaded. The purpose is to segment the website's users according to factors such as demographics and geographical location, in order to enable media and marketing agencies to structure and understand their target groups to enable customised online advertising.",269 days,Lotame,https://www.lotame.com/about-lotame/privacy/lotames-products-services-privacy-policy/,0
19b74270-863a-44aa-8a02-08c04201b154,Lotame,Marketing,panoramaId,"","Registers data on visitors from multiple visits and on multiple websites. This information is used to measure the efficiency of advertisement on websites.",session,Lotame,https://www.lotame.com/about-lotame/privacy/lotames-products-services-privacy-policy/,0
037aff40-32d5-4bdf-907c-eea35bb3fa24,Lotame,Marketing,panoramaId_expiry,"","Registers data on visitors from multiple visits and on multiple websites. This information is used to measure the efficiency of advertisement on websites.",session,Lotame,https://www.lotame.com/about-lotame/privacy/lotames-products-services-privacy-policy/,0
f8d10413-a5e4-4de7-a561-6308aebcae58,Lotame,Marketing,panoramaId_expiry_exp,"","Contains the expiry-date for the cookie with corresponding name.",session,Lotame,https://www.lotame.com/about-lotame/privacy/lotames-products-services-privacy-policy/,0
026355fe-de48-46af-b1fb-91abec1d52ef,Lotame,Marketing,_cc_domain,"","Registers data on visitors from multiple visits and on multiple websites. This information is used to measure the efficiency of advertisement on websites.",session,Lotame,https://www.lotame.com/about-lotame/privacy/lotames-products-services-privacy-policy/,0
cc651e46-ffba-11e9-8d71-362b9e155667,Neustar,Marketing,"ab",agkn.com,"This cookie is used by the website’s operator in context with multi-variate testing. This is a tool used to combine or change content on the website. This allows the website to find the best variation/edition of the site.",1 year,Neustar,https://www.home.neustar/privacy,0
cc65229c-ffba-11e9-8d71-362b9e155667,BlueKai,Marketing,bkdc,bluekai.com,"Registers anonymised user data, such as IP address, geographical location, visited websites, and what ads the user has clicked, with the purpose of optimising ad display based on the user's movement on websites that use the same ad network.",179 days,Oracle,https://www.oracle.com/legal/privacy/marketing-cloud-data-cloud-privacy-policy.html,0
cc6523e6-ffba-11e9-8d71-362b9e155667,BlueKai,Marketing,bku,bluekai.com,"Registers anonymised user data, such as IP address, geographical location, visited websites, and what ads the user has clicked, with the purpose of optimising ad display based on the user's movement on websites that use the same ad network.",179 days,Oracle,https://www.oracle.com/legal/privacy/marketing-cloud-data-cloud-privacy-policy.html,0
cc6526ca-ffba-11e9-8d71-362b9e155667,Adobe Advertising,Marketing,everest_g_v2,everesttech.net,"This cookie stores the browser and surfer ID.Created after a user initially clicks a client's ad, and used to map the current and subsequent clicks with other events on the client's website",2 years,Adobe,https://www.adobe.com/privacy.html,0
53500d03-07fb-42e6-8b1d-e4927a08a4d2,Adobe Advertising,Marketing,everest_session_v2,everesttech.net,"This cookie stores the session ID",session,Adobe,https://www.adobe.com/privacy.html,0
c41c6369-3106-4971-8e4b-5bff6410d46d,Adobe Advertising,Marketing,ev_tm,everesttech.net,"This cookie stores the Adobe Advertising DSP (Demand Side Platform) ID. A third-party cookie that stores the DSP ID that corresponds to the surfer ID in the everest_g_v2 cookie",2 years,Adobe,https://www.adobe.com/privacy.html,0
f68ab2f7-685b-461f-a5ab-2bfb8be86cf0,Adobe Advertising,Marketing,_tmae,everesttech.net,"This cookie stores Encoded IDs and time stamps for ad engagements using Adobe Advertising DSP tracking.A third-party cookie that stores user engagements with ads, such as 'last seen ad xyz123 on June 30, 2016'",1 year,Adobe,https://www.adobe.com/privacy.html,0
02d42fbd-11a4-4954-bba5-12f4c4b9604d,Adobe Advertising,Marketing,_lcc,everesttech.net,"This cookie stores IDs and time stamps (in the format yyyymmdd) of display clicks. It is a third-party cookie used to determine if a click event on a display ad applies to an Adobe Analytics hit",15 minutes,Adobe,https://www.adobe.com/privacy.html,0
519c9841-b2fe-4563-a9db-b5f924096811,Adobe Advertising,Marketing,ev_sync_ax,everesttech.net,"This cookie stores The date when synchronization is performed, in the format yyyymmdd. A third-party, ad exchange-specific cookie that syncs the Adobe Advertising surfer ID with the partner ad exchange. It's created for new surfers and sends a synchronization request when it's expired.",1 year,Adobe,https://www.adobe.com/privacy.html,0
f8bcf9b6-49e1-4d16-825d-780056141185,Adobe Advertising,Marketing,ev_sync_bk,everesttech.net,"This cookie stores The date when synchronization is performed, in the format yyyymmdd. A third-party, ad exchange-specific cookie that syncs the Adobe Advertising surfer ID with the partner ad exchange. It's created for new surfers and sends a synchronization request when it's expired.",1 year,Adobe,https://www.adobe.com/privacy.html,0
2d8b482b-98e2-4110-b0ba-22c464bc668d,Adobe Advertising,Marketing,ev_sync_dd,everesttech.net,"This cookie stores The date when synchronization is performed, in the format yyyymmdd. A third-party, ad exchange-specific cookie that syncs the Adobe Advertising surfer ID with the partner ad exchange. It's created for new surfers and sends a synchronization request when it's expired.",1 year,Adobe,https://www.adobe.com/privacy.html,0
d031b4a4-b995-491a-ade8-0ee4a6f39527,Adobe Advertising,Marketing,ev_sync_fs,everesttech.net,"This cookie stores The date when synchronization is performed, in the format yyyymmdd. A third-party, ad exchange-specific cookie that syncs the Adobe Advertising surfer ID with the partner ad exchange. It's created for new surfers and sends a synchronization request when it's expired.",1 year,Adobe,https://www.adobe.com/privacy.html,0
d6fb85b9-3c38-402f-9a1f-5ff3fb2e5cf0,Adobe Advertising,Marketing,ev_sync_ix,everesttech.net,"This cookie stores The date when synchronization is performed, in the format yyyymmdd. A third-party, ad exchange-specific cookie that syncs the Adobe Advertising surfer ID with the partner ad exchange. It's created for new surfers and sends a synchronization request when it's expired.",1 year,Adobe,https://www.adobe.com/privacy.html,0
11aae5ad-01a0-4dec-be9c-bbd69d00fe85,Adobe Advertising,Marketing,ev_sync_nx,everesttech.net,"This cookie stores The date when synchronization is performed, in the format yyyymmdd. A third-party, ad exchange-specific cookie that syncs the Adobe Advertising surfer ID with the partner ad exchange. It's created for new surfers and sends a synchronization request when it's expired.",1 year,Adobe,https://www.adobe.com/privacy.html,0
7ac34e34-3c12-4498-98ed-ed5ed6c86dc7,Adobe Advertising,Marketing,ev_sync_ox,everesttech.net,"This cookie stores The date when synchronization is performed, in the format yyyymmdd. A third-party, ad exchange-specific cookie that syncs the Adobe Advertising surfer ID with the partner ad exchange. It's created for new surfers and sends a synchronization request when it's expired.",1 year,Adobe,https://www.adobe.com/privacy.html,0
460e6ee4-93fd-4116-945a-79ea488a93c8,Adobe Advertising,Marketing,ev_sync_pm,everesttech.net,"This cookie stores The date when synchronization is performed, in the format yyyymmdd. A third-party, ad exchange-specific cookie that syncs the Adobe Advertising surfer ID with the partner ad exchange. It's created for new surfers and sends a synchronization request when it's expired.",1 year,Adobe,https://www.adobe.com/privacy.html,0
f7c52e43-81f6-4ebe-bf6e-07a3b9067621,Adobe Advertising,Marketing,ev_sync_rc,everesttech.net,"This cookie stores The date when synchronization is performed, in the format yyyymmdd. A third-party, ad exchange-specific cookie that syncs the Adobe Advertising surfer ID with the partner ad exchange. It's created for new surfers and sends a synchronization request when it's expired.",1 year,Adobe,https://www.adobe.com/privacy.html,0
8f268495-ba09-40ce-82d8-8239bea929f1,Adobe Advertising,Marketing,ev_sync_tm,everesttech.net,"This cookie stores The date when synchronization is performed, in the format yyyymmdd. A third-party, ad exchange-specific cookie that syncs the Adobe Advertising surfer ID with the partner ad exchange. It's created for new surfers and sends a synchronization request when it's expired.",1 year,Adobe,https://www.adobe.com/privacy.html,0
28b47f23-bd3a-468a-a470-7e393eecc61c,Adobe Advertising,Marketing,ev_sync_yh,everesttech.net,"This cookie stores the date when synchronization is performed, in the format yyyymmdd. A third-party, ad exchange-specific cookie that syncs the Adobe Advertising surfer ID with the partner ad exchange. It's created for new surfers and sends a synchronization request when it's expired.",1 year,Adobe,https://www.adobe.com/privacy.html,0
417dfb98-920e-4095-bd17-d4596576eff2,Adobe Advertising,Marketing,adcloud,,"This cookie stores The timestamps of the surfer's last visit to the advertiser’s website and the surfer's last search click, and the ef_id that was created when the user clicked an ad",1 year,Adobe,https://www.adobe.com/privacy.html,0
55d48120-ff9c-42b6-8a64-7dfe5b066ee1,Adobe Advertising,Marketing,id_adcloud,,"This cookie stores the surfer ID",91 days,Adobe,https://www.adobe.com/privacy.html,0
cc65280a-ffba-11e9-8d71-362b9e155667,MediaMath,Marketing,mt_misc,mathtag.com,"MediaMath uses this cookie to hold attributes about the browser for fraud prevention and other technical optimizations.",30 days,MediaMath,https://www.mediamath.com/privacy-policy/,0
cc652936-ffba-11e9-8d71-362b9e155667,MediaMath,Marketing,mt_mop,mathtag.com,"MediaMath uses this cookie to synchronize the visitor ID with a limited number of trusted exchanges and data partners",30 days,MediaMath,https://www.mediamath.com/privacy-policy/,0
cc652a58-ffba-11e9-8d71-362b9e155667,PowerLinks,Marketing,pl_user_id,powerlinks.com,"This cookie registers data on the visitor. The information is used to optimize advertisement relevance.",3 months,PowerLinks,https://www.powerlinks.com/privacy-policy/,0
cc652d8c-ffba-11e9-8d71-362b9e155667,Rapleaf,Marketing,pxrc,rlcdn.com,"This cookie registers non-personal data on the visitor. The information is used to optimize advertisement relevance.",2 months,Tower Data,https://www.towerdata.com/privacy-policy,0
cc652ec2-ffba-11e9-8d71-362b9e155667,Rapleaf,Marketing,rlas3,rlcdn.com,"Collects anonymous data related to the user's visits to the website, such as the number of visits, average time spent on the website and what pages have been loaded, with the purpose of displaying targeted ads.",1 year,Tower Data,https://www.towerdata.com/privacy-policy,0
cc653124-ffba-11e9-8d71-362b9e155667,Tapad,Marketing,TapAd_DID,tapad.com,"Used to determine what type of devices (smartphones, tablets, computers, TVs etc.) is used by a user.",2 months,Tapad,https://www.tapad.com/privacy,0
cc65325a-ffba-11e9-8d71-362b9e155667,Tapad,Marketing,TapAd_TS,tapad.com,"Used to determine what type of devices (smartphones, tablets, computers, TVs etc.) is used by a user.",2 months,Tapad,https://www.tapad.com/privacy,0
d9c922d7-9cb5-49cd-ac85-b90e85cc988c,Tapad,Marketing,TapAd_3WAY_SYNCS,"","Used for data-synchronization with advertisement networks",2 months,Tapad,https://www.tapad.com/privacy,0
cc65337c-ffba-11e9-8d71-362b9e155667,The Tradedesk,Marketing,TDCPM,adsrvr.org,"Registers a unique ID that identifies a returning user's device. The ID is used for targeted ads.",1 year,The Tradedesk,https://adsrvr.org/,0
cc6536a6-ffba-11e9-8d71-362b9e155667,The Tradedesk,Marketing,TDID,adsrvr.org,"Registers a unique ID that identifies a returning user's device. The ID is used for targeted ads.",1 year,The Tradedesk,https://adsrvr.org/,0
cc653926-ffba-11e9-8d71-362b9e155667,FreeWheel,Marketing,uid-bp-,stickyadstv.com,"The uid cookie is used by FreeWheel to generate statistics to show how many people may have seen a particular ad. Whereas the other cookies recognize returning users for the purpose of presenting users with relevant advertisements.",2 months,FreeWheel,https://www.freewheel.com/privacy-policy,1
b4b4f0b0-2d9f-4e45-b450-3bece993a134,FreeWheel,Marketing,MRM_UID,stickyadstv.com,"Used to track the visitor across multiple devices including TV",1 month,FreeWheel,https://www.freewheel.com/privacy-policy,0
cc654204-ffba-11e9-8d71-362b9e155667,MediaMath,Marketing,uuidc,mathtag.com,"Collects data on the user's visits to the website, such as what pages have been loaded. The registered data is used for targeted ads.",1 year,MediaMath,https://www.mediamath.com/privacy-policy/,0
cc654330-ffba-11e9-8d71-362b9e155667,Zeotap,Marketing,zc,zeotap.com,"Registers data on visitors from multiple visits and on multiple websites. This information is used to measure the efficiency of advertisement on websites.",10 years,Zeotap,https://zeotap.com/product-privacy-policy/,0
e82ffa6d-803d-4a51-9b82-4cf65875b9bf,Zeotap,Marketing,zsc,zeotap.com,"Frequency capping for cookie syncing",1 day,Zeotap,https://zeotap.com/product-privacy-policy/,0
fbabd7f4-7531-496e-a5e1-1f24a846b9c3,Zeotap,Marketing,zi,zeotap.com,"User Identification",1 year,Zeotap,https://zeotap.com/product-privacy-policy/,0
1bdc0a8b-9942-48cf-b1d9-0022282f82da,Zeotap,Marketing,idp,zeotap.com,"User Identification",1 year,Zeotap,https://zeotap.com/product-privacy-policy/,0
52d0618e-c9e2-47d3-859a-186186868141,Zeotap,Marketing,zuc,zeotap.com,"User Identification",1 year,Zeotap,https://zeotap.com/product-privacy-policy/,0
cc654452-ffba-11e9-8d71-362b9e155667,Trustpilot,Marketing,amplitude_id,trustpilot.com,"These cookies are used by the TrustPilot service to identify you and enable you to leave reviews of our products and services.",1 year,Trustpilot,,1
7c8d9e1c-a598-4dd0-8eb4-ab6ba3fb716b,Trustpilot,Security,csrf-canary,trustpilot.com,"These cookies are used by the TrustPilot service to identify you and enable you to leave reviews of our products and services. ",session,Trustpilot,,0
9dbe7157-3b2b-4ee3-9519-de3d2ead2357,ID5,Marketing,3pi,id5-sync.com,"Sets a unique ID for the visitor, that allows third party advertisers to target the visitor with relevant advertisement. This pairing service is provided by third party advertisement hubs, which facilitates real-time bidding for advertisers.",3 months,ID5,https://www.id5.io/privacy-policy,0
10d67aaa-88a3-4a0c-b1de-5f69bce4712b,Admixer,Marketing,am-uid,admixer.net,"This cookie is used to identify the visitor and optimize ad-relevance by collecting visitor data from multiple websites – this exchange of visitor data is normally provided by a third-party data-center or ad-exchange.",2 years,Admixer,https://admixer.net/privacy,0
61a87462-76eb-4dee-a66b-bf2135a22003,Lotame,Marketing,_cc_dc,crwdcntrl.net,"Collects anonymous statistical data related to the user's website visits, such as the number of visits, average time spent on the website and what pages have been loaded. The purpose is to segment the website's users according to factors such as demographics and geographical location, in order to enable media and marketing agencies to structure and understand their target groups to enable customised online advertising.",session,Lotame,https://www.lotame.com/about-lotame/privacy/lotames-products-services-privacy-policy/,0
66f480fa-d77b-4206-9182-157c27cd35bf,BlueKai,Marketing,bkpa,bluekai.com,"Used to present the visitor with relevant content and advertisement - The service is provided by third party advertisement hubs, which facilitate real-time bidding for advertisers.",179 days,Oracle,https://www.oracle.com/legal/privacy/marketing-cloud-data-cloud-privacy-policy.html,0
a0744952-23e9-4ac9-bd17-cc5170a2a512,SOVRN,Marketing,_ljtrtb_,lijit.com,"These cookies are used temporarily when multiple partners pass us their ID simultaneously. To avoid technical conflicts that arise from accessing the ljtrtb cookie for multiple partners at the same time, we store each partner’s ID in a separate cookie and then consolidate these IDs into the ljtrtb cookie when it’s available.",1 year,SOVRN,https://www.sovrn.com/legal/privacy-policy/,1
ba50ecb2-9df0-4175-bbf0-118902e4c876,SOVRN,Marketing,ljtrtb,lijit.com,"Enables us to help our advertising partners make decisions about displaying an advertisement to you. We store the ID that each partner uses to identify you and pass that information to the partner when a website requests an advertisement from us.",1 year,SOVRN,https://www.sovrn.com/legal/privacy-policy/,0
80da4bb9-e5d4-4e20-958b-a1e1e2779272,Mediamath,Marketing,uuid,mathtag.com,"Collects data on the user's visits to the website, such as what pages have been loaded. The registered data is used for targeted ads.",1 year,MediaMath,https://www.mediamath.com/privacy-policy/,0
4c25e90e-f66c-4395-98db-fdbaea92e5a4,Pinterest,Functional,_pinterest_cm,pinterest.com,"Pinterest cookie ensures that you can share our website pages via Pinterest by means of the 'share' button",347 days,Pinterest,https://policy.pinterest.com/en/privacy-policy,0
21e2b62f-6d9f-4527-9857-d59a71ee0b39,Pinterest,Functional,_pinterest_sess,pinterest.com,"session cookie (expires after your session) which collects anonymous data about a user's visit to the website, such as the number of visits, average time spent on the site and which pages have been loaded in order to personalise and improve the Pinterest service.",session,Pinterest,https://policy.pinterest.com/en/privacy-policy,0
3a0db572-1853-4f7a-96cf-828ff9e76246,Pinterest,Marketing,_pin_unauth,pinterest.com,"Registers a unique ID that identifies and recognizes the user. Is used for targeted advertising.",1 day,Pinterest,https://policy.pinterest.com/en/privacy-policy,0
1a147750-3567-43ef-b292-eb9a11b203b1,Pinterest,Marketing,_pinterest_ct_ua,pinterest.com,"This cookieis a third party cookie which groups actions for users who cannot be identified by Pinterest.",session,Pinterest,https://policy.pinterest.com/en/privacy-policy,0
d26e90ae-4f43-11eb-ae93-0242ac130002,Pinterest,Marketing,sessionFunnelEventLogged,pinterest.com,"A generic technical cookie used for storing user session identifier in web applications",1 day,Pinterest,https://policy.pinterest.com/en/privacy-policy,0
d26e68cc-4f43-11eb-ae93-0242ac130002,Pinterest,Marketing,_routing_id,pinterest.com,"Allows users to share pictures via Pinterest / the Pin It button. Pinterest can collect statistical information about usage of their service.",1 day,Pinterest,https://policy.pinterest.com/en/privacy-policy,0
eeb9582c-ff10-487d-84fc-159df04d1027,Pinterest,Marketing,_derived_epik,pinterest.com,"Cookie is placed by the Pinterest tag when a match is identified when no cookies are present, such as enhanced match.",1 year,Pinterest,https://policy.pinterest.com/en/privacy-policy,0
eaed072c-3f66-418b-8227-ff53a0354439,Pinterest,Marketing,_pinterest_ct,"","They contain a user ID and the timestamp at which the cookie was created.",1 year,Pinterest,https://policy.pinterest.com/en/privacy-policy,0
10aa90b3-a444-4a56-b2fd-c32e9a2ff457,Pinterest,Marketing,_pinterest_ct_rt,"","They contain a user ID and the timestamp at which the cookie was created.",1 year,Pinterest,https://policy.pinterest.com/en/privacy-policy,0
b7f93cf5-84f9-4746-818f-92de4962d2ad,Pinterest,Marketing,_epik,pinterest.com,"Cookie is placed by the JavaScript tag based on information sent from Pinterest with promoted traffic to help identify the user.",1 year,Pinterest,https://policy.pinterest.com/en/privacy-policy,0
db6d9896-ca05-4748-a9d3-621516aefb67,nopCommerce,Functional,Nop.customer,"","Customer cookie. Used to identifier guest customers.",1 month,nopCommerce,https://www.nopcommerce.com/privacy-policy,0
23827816-ede0-4bd0-bcba-0a269e8a67e3,nopCommerce,Functional,NopCommerce.RecentlyViewedProducts,"","Recently viewed products cookie. Stores a list of the recently viewed products",10 days,nopCommerce,https://www.nopcommerce.com/privacy-policy,0
a561b5cc-ffd9-4948-b185-e16a5348364e,nopCommerce,Functional,NOPCOMMERCE.AUTH,"","Forms authentication cookie. Used for authenticating registered customers.",session,nopCommerce,https://www.nopcommerce.com/privacy-policy,0
6ddbfbd9-098d-4c5e-943c-1b687f7a260c,FeedbackCompany,Functional,tsrvid,"","Feedback company review cookie",1 year,FeedbackCompany,https://www.feedbackcompany.com/nl-nl/privacy-statement/,0
681f241d-b8e4-4963-b6af-6da47011f8e5,Magento,Security,form_key,"","A security measure that appends a random string to all form submissions to protect the data from Cross-Site Request Forgery (CSRF).",session,Adobe,https://www.adobe.com/privacy.html,0
fe153693-d590-446a-a81b-672f7b3d4d5b,Magento,Functional,product_data_storage,"","Stores configuration for product data related to Recently Viewed / Compared Products.",session,Adobe,https://www.adobe.com/privacy.html,1
b088f9b1-fba4-447d-b221-a9d741f0b245,Magento,Functional,mage-cache-sessid,"","The value of this cookie triggers the cleanup of local cache storage. When the cookie is removed by the backend application, the Admin cleans up local storage, and sets the cookie value to true.",session,Adobe,https://www.adobe.com/privacy.html,0
21c54c2c-0a0f-4af7-a5f7-4271fc9263d4,Magento,Functional,mage-cache-storage,"","Local storage of visitor-specific content that enables ecommerce functions.",session,Adobe,https://www.adobe.com/privacy.html,1
65c3688b-73ae-4470-a84a-652e59b15eaf,Magento,Functional,mage-cache-storage-section-invalidation,"","Forces local storage of specific content sections that should be invalidated.",session,Adobe,https://www.adobe.com/privacy.html,1
e007854c-80d5-4886-80dd-5fbbb8c4ca76,Magento,Functional,mage-cache-timeout,"","This cookie is necessary for the cache function. A cache is used by the website to optimize the response time between the visitor and the website. The cache is usually stored on the visitor's browser.",session,Adobe,https://www.adobe.com/privacy.html,1
ad8f5721-fde1-4e6a-a256-b94153531682,Magento,Functional,mage-messages,"","Tracks error messages and other notifications that are shown to the user, such as the cookie consent message, and various error messages. The message is deleted from the cookie after it is shown to the shopper.",1 year,Adobe,https://www.adobe.com/privacy.html,0
8a623f7c-1818-43a8-9ecf-734584a384f6,Magento,Functional,mage-translation-file-version,"","Tracks the version of translations in local storage. Used when Translation Strategy is configured as Dictionary (Translation on Storefront side).",session,Adobe,https://www.adobe.com/privacy.html,0
d6eb855b-e6cb-4bb1-92a0-927c034bc343,Magento,Functional,mage-translation-storage,"","Stores translated content when requested by the shopper. Used when Translation Strategy is configured as Dictionary (Translation on Storefront side).",session,Adobe,https://www.adobe.com/privacy.html,0
3bf0ce4d-9731-4659-a657-f3d5de7bd31a,Magento,Functional,recently_compared_product,"","Stores product IDs of recently compared products.",session,Adobe,https://www.adobe.com/privacy.html,1
b6467864-6873-4c36-8ddd-deca2b4aa287,Magento,Functional,recently_compared_product_previous,"","Stores product IDs of previously compared products for easy navigation.",session,Adobe,https://www.adobe.com/privacy.html,1
1b537c1f-2ecc-4dd5-aad2-9646e6e28e88,Magento,Functional,recently_viewed_product,"","Stores product IDs of recently viewed products for easy navigation.",session,Adobe,https://www.adobe.com/privacy.html,1
08649653-410d-4184-8f6d-b5b2d278dad4,Magento,Functional,recently_viewed_product_previous,"","Stores product IDs of recently previously viewed products for easy navigation.",session,Adobe,https://www.adobe.com/privacy.html,1
a6e668bc-85c4-454b-a115-2aa7847ed0ff,Magento,Functional,user_allowed_save_cookie,"","Indicates if a customer is allowed to use cookies.",session,Adobe,https://www.adobe.com/privacy.html,0
1ce46e4a-1754-4d20-a201-e586ffd2a691,Magento,Functional,external_no_cache,"","A flag that indicates if caching is disabled.",session,Adobe,https://www.adobe.com/privacy.html,0
80630716-3fa3-40ff-b32b-d620997cb32f,Magento,Functional,persistent_shopping_cart,"","Stores the key (ID) of persistent cart to make it possible to restore the cart for an anonymous shopper.",session,Adobe,https://www.adobe.com/privacy.html,0
5d6fd130-4012-495d-bee2-6cb888a61b43,Magento,Functional,stf,"","Records the time messages are sent by the SendFriend (Email a Friend) module.",session,Adobe,https://www.adobe.com/privacy.html,0
7650d8d8-186d-4fd7-9299-c2289831cd34,Magento,Functional,pollN,"","A poll ID that indicates if a vote has occurred.",session,Adobe,https://www.adobe.com/privacy.html,0
ea02f0e9-d66b-4db5-8076-04bf103b261e,Magento,Functional,frontend,"","Session ID",session,Adobe,https://www.adobe.com/privacy.html,0
6ace7772-0576-4a56-b17a-bce66edf805c,Magento,Functional,guest-view,"","Allows guests to edit their orders.",session,Adobe,https://www.adobe.com/privacy.html,0
70340ce5-cac9-4999-8a7a-534fe8667a93,Magento,Functional,mage-banners-cache-storage,,"Stores banner content locally to improve performance.",1 hour,Adobe,https://www.adobe.com/privacy.html,0
d211e247-570f-494e-85e3-f9c977aecd52,Magento,Functional,searchReport-log,,"Magento, used to log information about searching",1 year,Adobe,https://www.adobe.com/privacy.html,0
4115e97d-6324-4229-bca2-5bcdd87876d9,Magento,Functional,private_content_version,,"Appends a random, unique number and time to pages with customer content to prevent them from being cached on the server.",1 year,Adobe,https://www.adobe.com/privacy.html,0
f8a5d529-5db0-4524-8fde-53aa30fece72,Magento,Functional,X-Magento-Vary,,"X-Magento-Vary cookie is used by Magento 2 system to highlight that version of a page requested by a user has been changed. It allows having different versions of the same page stored in cache e.g. Varnish.",session,Adobe,https://www.adobe.com/privacy.html,0
1846b26d-6632-4c1d-82a7-4bd1d880e131,Magento,Functional,section_data_ids,,"Stores customer-specific information related to shopper-initiated actions such as display wish list, checkout information, etc.",session,Adobe,https://www.adobe.com/privacy.html,0
0346e59b-4bd4-4388-a19f-fab346ff4d02,Magento,Functional,section_data_clean,,"Determines which products the user has viewed, allowing the website to promote related products.",1 day,Adobe,https://www.adobe.com/privacy.html,0
dd7685d1-5699-4c46-9fc1-32d31207f21b,Magento,Functional,last_visited_store,,"This cookie keeps track of the last website you visited. This is necessary to enable the correct language on the website.",1 day,Adobe,https://www.adobe.com/privacy.html,0
088e7df0-01d5-42ed-ad6f-171643b70fd8,Magento,Functional,store,,"This cookie keeps track of the last website you visited. This is necessary to enable the correct language on the website.",1 day,Adobe,https://www.adobe.com/privacy.html,0
da6e6e44-b717-45df-b96a-2484f854268b,Magento,Functional,login_redirect,,"Preserves the destination page that was loading before the customer was directed to log in.",session,Adobe,https://www.adobe.com/privacy.html,0
16c7e05b-b046-4342-8157-d49b053a1a83,PowerLinks Media Limited,Marketing,dsps:,px.powerlinks.com,"Service to display targeted advertising to visitors.",90 days,PowerLinks Media Limited,https://www.powerlinks.com/privacy-policy/,1
d9f37df9-e813-4409-a2f6-b20fdec00be6,Vuble,Marketing,_mb,vuble.tv,"Used in context with video-advertisement. The cookie limits the number of times a visitor is shown the same advertisement-content. The cookie is also used to ensure relevance of the video-advertisement to the specific visitor.",session,Vuble,https://www.vuble.tv/privacy,0
3581f81b-77ba-4303-8110-6f7fea42eead,Wordpress,Functional,wordpress_test_cookie,"","Cookie set by WordPress to check if the cookies are enabled on the browser to provide appropriate user experience to the users",session,Wordpress,,0
3b7c8773-741c-459c-bda7-70d2b681c16b,Joomla!,Functional,componentType,"","componentType is a session cookie, used for correct recording the type of the page (frontpage, single page, blog etc)",session,Joomla!,,0
0fb20e92-eb37-4b5b-a455-abdb89df7276,Joomla!,Functional,componentStyle,"","componentStyle is a session cookie, used for setting the proper template in compliance with visited type of the page",session,Joomla!,,0
6d8c1055-67aa-4ceb-975e-3c6b35a1663b,Joomla! Engagebox,Functional,nrid,"","This cookie is used to remember a user's choice about cookies on the website. Where users have previously indicated a preference, that user’s preference will be stored in this cookie.",2 years,Joomla!,,0
004512f2-1641-4054-b4c5-61e0a7fc7e68,Sharpspring,Marketing,koitk,".marketingautomation.services","Collects data on visitors behavior and interaction - This is used to optimize the website and make advertisement on the website more relevant.",3 years,Constant Contact,https://www.constantcontact.com/legal/privacy-notice,0
44f3fa5c-a04c-4116-abbc-d3fd307d8723,Sharpspring,Marketing,__ss_referrer,"","This cookie contains information about where the visitor came from, called the source for the visit.",6 hours,Constant Contact,https://www.constantcontact.com/legal/privacy-notice,0
93f3e1ea-e4fb-4220-a0b8-6914b4227e99,Sharpspring,Marketing,__ss_tk,"","This is Sharspring’s token cookie which enables user tracking. It ensures that the visit to website is connected to the user independent of the session and the source.",25 years,Constant Contact,https://www.constantcontact.com/legal/privacy-notice,0
838d4b4e-8db1-4666-a584-de645682f861,Sharpspring,Marketing,__ss,"","This cookie is storing the session ID for your visit. It is used in combination with _ss_tk to group website visits in reports for a single user.",30 minutes,Constant Contact,https://www.constantcontact.com/legal/privacy-notice,0
2c4137e9-a985-4786-85a4-9de056f6777f,Matomo,Analytics,_pk_id,"","Used to store a few details about the user such as the unique visitor ID",13 months,Matomo,https://matomo.org/privacy-policy/,1
4f72b12e-0b31-4863-9e8c-9701993f2e04,Matomo,Analytics,_pk_ref,"","Used to store the attribution information, the referrer initially used to visit the website",6 months,Matomo,https://matomo.org/privacy-policy/,1
a92a94f8-74f6-41e3-853c-d8a66cd78ea1,Matomo,Analytics,_pk_ses,"","Short lived cookies used to temporarily store data for the visit",30 minutes,Matomo,https://matomo.org/privacy-policy/,1
418d76c5-5567-4cf0-a0d9-f4e2816c5464,Matomo,Analytics,_pk_cvar,"","Short lcts data on visitors behavior and interaction - This is used to optimize the website and make advertisement on the website more relevant.",3 years,Sharpspring,https://sharpspring.com/legal/privacy/,0
db0dbc7f-dd7d-4e19-af62-a0db83f8ca2e,Matomo,Analytics,_pk_hsr,"","Short lived cookies used to temporarily store data for the visit",30 minutes,Matomo,https://matomo.org/privacy-policy/,1
73a8e9ca-6f5a-46d9-a270-ef3136f05d13,Matomo,Analytics,_pk_testcookie,"","Cookie is created and should be then directly deleted (used to check whether the visitor’s browser supports cookies)",session,Matomo,https://matomo.org/privacy-policy/,1
d3e732b4-f6ea-448a-8276-5b5d76d7f5dc,Matomo,Analytics,mtm_consent,"","Cookie is created with no expiry date to forever remember that consent was given by the user.",forever,Matomo,https://matomo.org/privacy-policy/,0
cf48ca73-2c7c-409d-ba08-c8e32b44a1d9,Matomo,Analytics,mtm_consent_removed,,"Cookie is used to store the user consent preference",forever,Matomo,https://matomo.org/privacy-policy/,0
0622a84d-0a73-4086-bdd9-48a37c01fbe8,Matomo,Analytics,mtm_cookie_consent,,"Cookie is used to store the user consent preference",forever,Matomo,https://matomo.org/privacy-policy/,0
c734b67c-a1dd-4e52-b63b-0275ce06d202,Matomo,Analytics,matomo_ignore,,"cookie will be a third party cookie. This cookie does not contain personal information or any ID and the cookie value is the same for all visitors)",30 years,Matomo,https://matomo.org/privacy-policy/,0
cc4c8b7b-d6ee-4c9c-acb2-0caef86f595f,Matomo,Analytics,matomo_sessid,,"when you use the opt-out feature (this is called a nonce and helps prevent CSRF security issues)",14 days,Matomo,https://matomo.org/privacy-policy/,0
62cae092-29cc-4dd2-a326-3e19a984df6d,Datatrics,Marketing,datatrics_optin,"","Saving opt-in preferences.",undefined,Datatrics,https://www.datatrics.com/privacy,0
a6b6adb1-fb5f-4cbe-a651-5927c94fdc14,Datatrics,Marketing,datatricsDebugger,"","Saving Datatrics debugger preferences.",undefined,Datatrics,https://www.datatrics.com/privacy,0
33a6f48c-b796-43f5-a083-dc093d0d0db0,Datatrics,Marketing,datatrics_customData,"","Saving defined custom data.",undefined,Datatrics,https://www.datatrics.com/privacy,0
90e704b5-a83f-4013-8896-be4b018b3b4c,WePublish,Analytics,_wepublishGa,"","ID used to identify users",2 years,WePublish,https://www.wepublish.com/privacy-statement.html,0
4671a3b3-58ef-4b48-962d-abfb4b5e8143,WePublish,Analytics,_wepublishGa_gid,"","ID used to identify users for 24 hours after last activity 24 hours",24 hours,WePublish,https://www.wepublish.com/privacy-statement.html,0
eb839f61-f36a-4f51-a4d1-ff37fa75b995,OneTrust,Functional,OptanonConsent,"","This cookie is set by the cookie compliance solution from OneTrust. It stores information about the categories of cookies the site uses and whether visitors have given or withdrawn consent for the use of each category. This enables site owners to prevent cookies in each category from being set in the user’s browser, when consent is not given. The cookie has a normal lifespan of one year, so that returning visitors to the site will have their preferences remembered. It contains no information that can identify the site visitor.",1 year,OneTrust,https://www.onetrust.com/privacy-notice/,0
ef1e8fd4-cc42-4fc0-ad79-5f6d34d08196,OneTrust,Functional,OptanonAlertBoxClosed,,"This cookie is set by the cookie compliance solution from OneTrust. It stores information about the categories of cookies the site uses and whether visitors have given or withdrawn consent for the use of each category. This enables site owners to prevent cookies in each category from being set in the users browser, when consent is not given. The cookie has a normal lifespan of one year, so that returning visitors to the site will have their preferences remembered. It contains no information that can identify the site visitor.",1 year,OneTrust,https://www.onetrust.com/privacy/,0
ae064472-a4be-4c56-8bb2-ca12085741c5,OneTrust,Functional,OptanonControl,"","This cookie is set by the cookie compliance solution from OneTrust. It stores information about the categories of cookies the site uses and whether visitors have given or withdrawn consent for the use of each category. This enables site owners to prevent cookies in each category from being set in the user’s browser, when consent is not given. The cookie has a normal lifespan of one year, so that returning visitors to the site will have their preferences remembered. It contains no information that can identify the site visitor.",1 year,OneTrust,https://www.onetrust.com/privacy-notice/,0
537d6567-9087-480b-bdf2-b3ca9a0240ce,OneTrust,Functional,OneTrustWPCCPAGoogleOptOut,"","This cookie is set by OneTrust. It is used to honor IAB CCPA laws for consent.",365 days,OneTrust,https://www.onetrust.com/privacy-notice/,0
93a9be17-4c85-4280-b4a8-63bd5a15b3b0,OneTrust,Functional,FunctionalCookie,"","This cookie works with the OneTrust Cookie Management Platform to activate scripts and cookies associated with the Functional Cookies category, when the user gives appropriate consent.",0 days,OneTrust,https://www.onetrust.com/privacy-notice/,0
9da43c11-dd40-4c71-be3d-be091f176757,OneTrust,Marketing,_mkto_trk,.onetrust.com,"This cookie is associated with an email marketing service provided by Marketo. This tracking cookie allows a website to link visitor behaviour to the recipient of an email marketing campaign, to measure campaign effectiveness.",729 days,OneTrust,https://www.onetrust.com/privacy-notice/,0
fad16835-0d5f-4f4d-932a-67c0e8befb5b,OneTrust,Functional,utm_key,.onetrust.com,"This cookie is set to save personalized marketing campaign parameters. It displays customized data depending on the type of website visitor.",Session,OneTrust,https://www.onetrust.com/privacy-notice/,0
8f86b23c-f248-4888-8d34-d9ecbb36ad38,OneTrust,Functional,__Secure-fgpt,.onetrust.com,"This cookie is set due an HTTP response header to send information between client and cloud server domains, like location and payload data. Its attribute has a “secure” flag in its name indicating that the cookie is sent only in HTTPS schemas to enhance security and prevent unauthorized access of information.",Session,OneTrust,https://www.onetrust.com/privacy-notice/,0
95c66258-b4be-4239-97ce-5def7a3dcde3,Optimizely,Marketing,optimizelyEndUserId,"","Stores a visitor's unique Optimizely identifier. It's a combination of a timestamp and random number. No other information about you or your visitors is stored inside.",6 months,Optimizely,https://www.optimizely.com/privacy/,0
d06b6423-c8fc-4ddb-9fe0-b0afd15e06f4,Optimizely,Marketing,optimizelyRedirectData,"","After Optimizely has executed a redirect experiment, stores various data from the original page so that Optimizely still has access to it on the new page.",5 seconds,Optimizely,https://www.optimizely.com/privacy/,0
497178e7-6d4a-4b9c-bd00-149c4b28288e,Optimizely,Marketing,optimizelyDomainTestCookie,"","When Optimizely loads a URL, the snippet places the cookie to get the current domain, for the purpose of whether cross-domain syncing is possible. If successful, the cookie is immediately removed. ",6 months,Optimizely,https://www.optimizely.com/privacy/,0
27514e91-1f8f-4797-bbb1-f97b716e087f,Optimizely,Marketing,optimizelyOptOut,"","Stores a boolean indicating whether the visitor has opted out of participating in Optimizely-powered experimentation.",10 years,Optimizely,https://www.optimizely.com/privacy/,0
01d8d81d-2b8a-4396-a3c7-8260c98ec66f,Channel.me,Functional,wwwchannelme_z_sid,"","The cookie is used when using the co-browsing feature.",session,Channel.me,https://channel.me/privacy,0
037e4ca1-426a-42ca-bf61-a58649bf439f,Ortec,Marketing,app_ts,"adscience.nl","Used by adscience.nl to display remarketing campaigns.",1 year,Ortec,https://www.ortecadscience.com/privacy-policy/,0
c35002d1-f451-4451-83b0-d255e6474439,Ortec,Marketing,viewer,"adscience.nl","Used by adscience.nl to measure visitor numbers and information and use it to optimize marketing campaigns.",1 year,Ortec,https://www.ortecadscience.com/privacy-policy/,0
d26e446e-4f43-11eb-ae93-0242ac130002,Ortec,Marketing,spx_ts,"adscience.nl","These cookies ensure that relevant advertisements are displayed on external websites.",1 year,Ortec,https://www.ortecadscience.com/privacy-policy/,0
3c0a4563-7473-4e32-bea5-c41037df8e8c,Ortec,Marketing,adx_ts,"adscience.nl","These cookies ensure that relevant advertisements are displayed on external websites.",1 year,Ortec,https://www.ortecadscience.com/privacy-policy/,0
0b0472de-3ebb-46cb-85f3-b92a90954730,Ortec,Marketing,id_ts,"adscience.nl","These cookies ensure that relevant advertisements are displayed on external websites.",1 year,Ortec,https://www.ortecadscience.com/privacy-policy/,0
f2856634-3da6-4b8d-a671-d057c0964724,LiveRamp,Marketing,euconsent,"faktor.io","Cookie compliance check",1 year,LiveRamp,https://liveramp.com/privacy/,0
0538ac53-d35f-4870-ac7d-4244feb01845,Wix.com,Functional,SSR-caching,"wix.com","Indicates how a site was rendered",session,Wix.com,https://support.wix.com/article/cookies-and-your-wix-site,0
41a4b6b6-ec46-45a3-a4b8-5caffe6d617c,Wix.com,Functional,smSession,"wix.com","Identifies logged in site members",2 weeks,Wix.com,https://support.wix.com/article/cookies-and-your-wix-site,0
a67e35d5-c52e-49f2-a9d2-e2591b545a75,Wix.com,Marketing,svSession,"wix.com","Identifies unique visitors and tracks a visitor’s sessions on a site",2 years,Wix.com,https://support.wix.com/article/cookies-and-your-wix-site,0
1a8e2bc9-8c16-4a23-b595-ad4ba2b05411,Wix.com,Functional,ForceFlashSite,"wix.com","When viewing a mobile site (old mobile under m.domain.com) it will force the server to display the non-mobile version and avoid redirecting to the mobile site",session,Wix.com,https://support.wix.com/article/cookies-and-your-wix-site,0
afde4912-510e-4f52-ac39-f58977720637,Wix.com,Functional,hs,"wix.com","Security",session,Wix.com,https://support.wix.com/article/cookies-and-your-wix-site,0
d26e6458-4f43-11eb-ae93-0242ac130002,Wix.com,Functional,bSession,"","Used for system effectiveness measurement",30 minutes,Wix.com,https://support.wix.com/article/cookies-and-your-wix-site,0
30d32788-4edb-4675-9542-4b17bca4e76d,Wix.com,Functional,TS01,"","Used for security and anti-fraud reasons",session,Wix.com,https://support.wix.com/article/cookies-and-your-wix-site,1
ad4e0c1f-e2ac-432e-8f9e-cbc8ca5ec997,Wix.com,Functional,fedops.logger.sessionId,"","Used for stability/effectiveness measurement",12 months,Wix.com,https://support.wix.com/article/cookies-and-your-wix-site,0
d22eb370-2a05-4a8c-8fbe-1bbe7dffe0df,Wix.com,Functional,wixLanguage,"","Used on multilingual websites to save user language preference",12 months,Wix.com,https://support.wix.com/article/cookies-and-your-wix-site,0
13d01850-f212-4b49-ba9a-fc2cea36e5f9,Wix.com,Functional,_wixCIDX,"","Used for system monitoring/debugging",3 months,Wix.com,https://support.wix.com/article/cookies-and-your-wix-site,0
1303f1b4-a92a-4aae-b194-1b566ff3f1d0,Wix.com,Functional,_wix_browser_sess,"","Used for system monitoring/debugging",session,Wix.com,https://support.wix.com/article/cookies-and-your-wix-site,0
c99aabe0-84aa-4a8d-844e-04434e43ceee,Wix.com,Functional,consent-policy,"","Used for cookie banner parameters",12 months,Wix.com,https://support.wix.com/article/cookies-and-your-wix-site,0
d7537e15-0c06-4809-9268-c6a7463fb0ea,Shopify,Functional,_ab,"shopify.com","Used in connection with access to admin.",session,Shopify.com,https://www.shopify.com/legal/cookies,0
5e57c371-a58b-495b-b531-bdaccf24d9d8,Shopify,Functional,_secure_session_id,"shopify.com","Used in connection with navigation through a storefront.",session,Shopify.com,https://www.shopify.com/legal/cookies,0
a55ceb63-c236-476a-ac80-622185b9fd99,Shopify,Functional,Cart,"shopify.com","Used in connection with shopping cart.",14 days,Shopify.com,https://www.shopify.com/legal/cookies,0
5dd35bc2-a22a-4d2f-8c5a-a5e12ce93416,Shopify,Functional,cart_sig,"shopify.com","Used in connection with shopping cart.",14 days,Shopify.com,https://www.shopify.com/legal/cookies,0
1adc0de6-347c-4644-9286-f48d77057b25,Shopify,Functional,cart_ts,"shopify.com","Used in connection with checkout.",14 days,Shopify.com,https://www.shopify.com/legal/cookies,0
2959eef0-4fba-49a3-a22b-30e43dea2007,Shopify,Functional,checkout_token,"shopify.com","Used in connection with checkout.",14 days,Shopify.com,https://www.shopify.com/legal/cookies,0
2c989391-974d-4c35-9b73-4912cf582ffa,Shopify,Functional,Secret,"shopify.com","Used in connection with checkout.",14 days,Shopify.com,https://www.shopify.com/legal/cookies,0
8b7d64a9-54a7-4d2c-a077-86587e85d35f,Shopify,Functional,Secure_customer_sig,"shopify.com","Used in connection with customer login.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
18e3c28a-7585-4cb9-8845-a619b9b71017,Shopify,Functional,storefront_digest,"shopify.com","Used in connection with customer login.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
7716fa22-1d62-4d6b-bfd3-814e4d30f14f,Shopify,Functional,_shopify_u,"shopify.com","Used to facilitate updating customer account information.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
760cc429-de7d-44a7-a11d-2eca02a2d9eb,Shopify,Marketing,_tracking_consent,"shopify.com","Tracking preferences.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
c81f44f1-fb14-4aa3-834f-a10447fc715a,Shopify,Marketing,_landing_page,"shopify.com","Track landing pages.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
7f922608-e85b-45a4-9a31-64fa41a8b965,Shopify,Marketing,_orig_referrer,"shopify.com","Track landing pages.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
8ed5c4ec-4aa5-4853-b7a4-72c54c14e0a4,Shopify,Analytics,_s,"shopify.com","Shopify analytics.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
063c5294-d06d-4e73-8917-fe1c390c751e,Shopify,Analytics,_shopify_fs,"shopify.com","Shopify analytics.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
e88d4aea-74d1-4df9-9eec-7d928cba8c4e,Shopify,Analytics,_shopify_s,"shopify.com","Shopify analytics.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
8279d951-4d14-46a1-9bd5-b08e671f0769,Shopify,Marketing,_shopify_sa_t,"shopify.com","Shopify analytics relating to marketing & referrals.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
4a77a115-2912-4bbe-85b9-5f534afddcc2,Shopify,Analytics,_shopify_uniq,"shopify.com","Shopify analytics.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
55a7eed1-ee8a-48a9-831a-cbbe7c3c9e22,Shopify,Analytics,_shopify_visit,"shopify.com","Shopify analytics.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
32a91d61-9233-4206-8db6-385480315088,Shopify,Analytics,_shopify_y,"shopify.com","Shopify analytics.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
a9556aff-c7cc-4052-b13c-31f9a147eded,Shopify,Analytics,_y,"shopify.com","Shopify analytics.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
775b8d74-3e73-4ade-aa73-c81ad28aa1b4,Shopify,Analytics,tracked_start_checkout,"shopify.com","Shopify analytics relating to checkout.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
4cc88769-7b2e-4cc2-acad-10321338f2a2,Shopify,Analytics,ki_r,"shopify.com","Shopify analytics.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
f1ce8887-198b-4102-9e61-404f0916aaff,Shopify,Analytics,ki_t,"shopify.com","Shopify analytics.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
8cc5567a-f7ba-4f12-b061-e702d1982dbf,Shopify,Analytics,_Brochure_session,"shopify.com","Used in connection with browsing through site.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
c6e20d92-71db-4fb5-9994-aabeb5334d71,Shopify,Functional,shopify_pay_redirect,"shopify.com","Used in connection with checkout.","30 minutes, 3w or 1y depending on value",Shopify.com,https://www.shopify.com/legal/cookies,0
bcea7287-06f2-44b6-9883-d6623dab4587,Shopify,Functional,cart_currency,"shopify.com","Set after a checkout is completed to ensure that new carts are in the same currency as the last checkout.",14 days,Shopify.com,https://www.shopify.com/legal/cookies,0
2f6b4c68-ae87-4ba1-804d-85d97e55ba1d,Shopify,Functional,dynamic_checkout_shown_on_cart,"shopify.com","Used in connection with checkout.","30 minutes",Shopify.com,https://www.shopify.com/legal/cookies,0
31e2ff22-9dcc-4cb9-8b93-c8910f8ea9ac,Shopify,Functional,keep_alive,"shopify.com","Used in connection with buyer localization.","14 weeks",Shopify.com,https://www.shopify.com/legal/cookies,0
40c81881-293d-4e1c-98d7-75835af82702,Shopify,Functional,checkout_session_token,"","Used in connection with checkout.","3 weeks",Shopify.com,https://www.shopify.com/legal/cookies,1
9eb8edfa-011c-4abe-bae3-434514b28b4d,Shopify,Functional,checkout_session_lookup,"","Used in connection with checkout.","3 weeks",Shopify.com,https://www.shopify.com/legal/cookies,0
90d55b3e-fcfa-4e24-9e23-5a255850ccc1,Shopify,Functional,cart_ver,"","Used in connection with shopping cart.","2 weeks",Shopify.com,https://www.shopify.com/legal/cookies,0
6ec7fa86-131b-4450-ab89-05647e569500,Shopify,Functional,localization,"","Used in connection with checkout.","2 weeks",Shopify.com,https://www.shopify.com/legal/cookies,0
df4eda36-4b3a-476f-9ff2-b89b2efc990c,Shopify,Functional,locale_bar_accepted,"","This cookie is provided by app (BEST Currency Converter) and is used to secure currency chosen by the customer.",session,Shopify.com,https://www.shopify.com/legal/cookies,0
f1633975-043b-462c-9469-485ff8f303c2,Shopify,Functional,_cmp_a,"","Used for managing customer privacy settings.","1 day",Shopify.com,https://www.shopify.com/legal/cookies,0
38e6da70-a8e5-4e7d-acc5-5cce2c8520ad,Shopify,Functional,_shopify_country,"","For shops where pricing currency/country set from GeoIP, that cookie stores the country we've detected. This cookie helps avoid doing GeoIP lookups after the first request.",session,Shopify.com,https://www.shopify.com/legal/cookies,0
36987975-8709-48e7-8ad4-0e6cbadef1e4,Shopify,Functional,_customer_account_shop_sessions,,"Used in combination with the _secure_account_session_id cookie to track a user's session for new customer accounts",30 days,Shopify.com,https://www.shopify.com/legal/cookies,0
8e282de0-355d-4f11-a1b5-f56802ed508f,Shopify,Functional,_secure_account_session_id,,"Used to track a user's session for new customer accounts",30 Days,Shopify.com,https://www.shopify.com/legal/cookies,0
91e35d09-af8f-4bf7-9f54-198c6908210d,Shopify,Functional,_shopify_m,shopify.com,"Used for managing customer privacy settings.",1 year,Shopify.com,https://www.shopify.com/legal/cookies,0
9a87f042-b73e-4124-bae4-6463dd71b893,Shopify,Functional,_shopify_tm,shopify.com,"Used for managing customer privacy settings.",30 minutes,Shopify.com,https://www.shopify.com/legal/cookies,0
41d18ff6-bc29-490c-bcad-48183f213281,Shopify,Functional,_shopify_tw,shopify.com,"Used for managing customer privacy settings.",2 weeks,Shopify.com,https://www.shopify.com/legal/cookies,0
961c17d4-7f5a-4fd7-b6f1-518d37f3dd83,Shopify,Functional,_storefront_u,shopify.com,"Used to facilitate updating customer account information.",1 minute,Shopify.com,https://www.shopify.com/legal/cookies,0
27e9ecb1-599c-43a1-b0c6-06077e110d59,Shopify,Functional,customer_account_locale,shopify.com,"Used in connection with new customer accounts",1 year,Shopify.com,https://www.shopify.com/legal/cookies,0
5a617fcc-285f-43d0-9392-8465cf419b41,Shopify,Functional,hide_shopify_pay_for_checkout,shopify.com,"Used in connection with checkout.",Session,Shopify.com,https://www.shopify.com/legal/cookies,0
997a6f34-b46f-42c6-8122-36a576d853b4,Shopify,Functional,master_device_id,shopify.com,"Used in connection with merchant login.",2 years,Shopify.com,https://www.shopify.com/legal/cookies,0
903bc761-0581-4f62-9073-de71850ee6e8,Shopify,Functional,previous_step,shopify.com,"Used in connection with checkout.",1 year,Shopify.com,https://www.shopify.com/legal/cookies,0
596e690c-c0d3-473c-bcc3-a6b82ce5c887,Shopify,Functional,discount_code,shopify.com,"Used in connection with checkout.",Session,Shopify.com,https://www.shopify.com/legal/cookies,0
3d286b04-daa6-449f-b468-23e483ff191e,Shopify,Functional,remember_me,shopify.com,"Used in connection with checkout.",1 Year,Shopify.com,https://www.shopify.com/legal/cookies,0
bf479a72-a40e-4ef1-852a-30211a665fe6,Shopify,Functional,shopify_pay,shopify.com,"Used in connection with checkout.",1 Year,Shopify.com,https://www.shopify.com/legal/cookies,0
9a1a244e-c366-4d25-b962-6bc7a7cd3d33,Shopify,Functional,shop_pay_accelerated,shopify.com,"Used in connection with checkout.",1 Year,Shopify.com,https://www.shopify.com/legal/cookies,0
a5995c74-f399-49c7-8aab-0034143d8b38,Shopify,Functional,checkout_prefill,shopify.com,"Used in connection with checkout.",5 minutes,Shopify.com,https://www.shopify.com/legal/cookies,0
eb6826c9-6a4e-45a5-9369-3740c665352f,Shopify,Functional,checkout_queue_token,shopify.com,"Used in connection with checkout.",1 Year,Shopify.com,https://www.shopify.com/legal/cookies,0
87fbfda8-291a-43fe-8526-ef8b941b4c1d,Shopify,Functional,checkout_worker_session,shopify.com,"Used in connection with checkout.",3 days,Shopify.com,https://www.shopify.com/legal/cookies,0
b6017992-ef4d-428c-8451-355a245a0839,Shopify,Functional,checkout_session_token_,shopify.com,"Used in connection with checkout.",3 weeks,Shopify.com,https://www.shopify.com/legal/cookies,1
db8a2848-8814-4873-b929-c772c180a749,Shopify,Functional,identity-state,shopify.com,"Used in connection with customer authentication",24 hours,Shopify.com,https://www.shopify.com/legal/cookies,0
71952385-014e-4d6c-9ce5-642be5a41a84,Shopify,Functional,identity-state-,shopify.com,"Used in connection with customer authentication",24 hours,Shopify.com,https://www.shopify.com/legal/cookies,1
96bca650-4d60-491f-80a5-b798429ce072,Shopify,Functional,identity_customer_account_number,shopify.com,"Used in connection with customer authentication",12 weeks,Shopify.com,https://www.shopify.com/legal/cookies,0
e9786556-51ea-48d4-9175-1162a877ddb7,Shopify,Functional,card_update_verification_id,shopify.com,"Used in connection with checkout.",20 minutes,Shopify.com,https://www.shopify.com/legal/cookies,0
8eda59fc-ed15-4d90-b3e5-218b569fbcab,Shopify,Functional,customer_account_new_login,shopify.com,"Used in connection with customer authentication",24 hours,Shopify.com,https://www.shopify.com/legal/cookies,0
52b2c26d-4fd7-4fb1-b336-f3c961374b06,Shopify,Functional,customer_account_preview,shopify.com,"Used in connection with customer authentication",7 days,Shopify.com,https://www.shopify.com/legal/cookies,0
122d9f7d-7770-4564-acf9-27900fef1375,Shopify,Functional,customer_payment_method,shopify.com,"Used in connection with checkout.",1 hour,Shopify.com,https://www.shopify.com/legal/cookies,0
aeb185be-8020-4b4f-92b9-1891ca02df6e,Shopify,Functional,customer_shop_pay_agreement,shopify.com,"Used in connection with checkout.",1 hour,Shopify.com,https://www.shopify.com/legal/cookies,0
2b7f5f70-48b3-4db2-b17a-665a7b616ed1,Shopify,Functional,pay_update_intent_id,shopify.com,"Used in connection with checkout.",20 minutes,Shopify.com,https://www.shopify.com/legal/cookies,0
3c6c1e40-05e6-4152-a17d-8aa840b75247,Shopify,Functional,profile_preview_token,shopify.com,"Used in connection with checkout.",5 minutes,Shopify.com,https://www.shopify.com/legal/cookies,0
43d2f8d1-81f9-44b4-9676-20d6c18ff9f2,Shopify,Functional,login_with_shop_finalize,shopify.com,"Used in connection with customer authentication",5 minutes,Shopify.com,https://www.shopify.com/legal/cookies,0
22e8e52e-4da3-46a1-b456-f760858d2799,Shopify,Functional,preview_theme,shopify.com,"Used in connection with the theme editor",Session,Shopify.com,https://www.shopify.com/legal/cookies,0
73e28a66-9455-4a41-9bd1-098186248ef0,Shopify,Functional,shopify-editor-unconfirmed-settings,shopify.com,"Used in connection with the theme editor",16 hours,Shopify.com,https://www.shopify.com/legal/cookies,0
6b6b9eaf-3f9c-40a4-854d-8d136eb3baa9,Shopify,Analytics,_shopify_d,,"Shopify analytics.",Session,Shopify.com,https://www.shopify.com/legal/cookies,0
a2bc0b4c-41a8-4e90-8ee9-2b1f34d53c88,Shopify,Analytics,shop_analytics,,"Shopify analytics.",30 minutes,Shopify.com,https://www.shopify.com/legal/cookies,0
90a43d1d-e187-40f7-af1a-b1b14632b849,Shopify,Analytics,_shopify_sa_p,,"Shopify analytics relating to marketing & referrals.",30 minutes,Shopify.com,https://www.shopify.com/legal/cookies,0
9a486145-3a75-4cc2-ab5e-34a6030911df,Shopify,Analytics,_shopify_ga,,"Shopify and Google Analytics.",Session,Shopify.com,https://www.shopify.com/legal/cookies,0
96098b04-6859-4c46-b254-780891ef9ec7,Hubspot,Functional,__hs_opt_out,"hubspot.com","This cookie is used by the opt-in privacy policy to remember not to ask the visitor to accept cookies again.",13 months,HubSpot,https://legal.hubspot.com/privacy-policy,0
761003cd-e442-4cb9-b6dc-edfbbc51a9d7,Hubspot,Functional,__hs_do_not_track,"hubspot.com","This cookie can be set to prevent the tracking code from sending any information to HubSpot.",13 months,HubSpot,https://legal.hubspot.com/privacy-policy,0
70cdab38-f868-4238-9618-1f4119d7ef9b,Hubspot,Functional,__hs_initial_opt_in,"hubspot.com","This cookie is used to prevent the banner from always displaying when visitors are browsing in strict mode.",7 days,HubSpot,https://legal.hubspot.com/privacy-policy,0
60ff1d1b-27ca-42e2-975b-cbed8128b2f3,Hubspot,Functional,hs_ab_test,"hubspot.com","This cookie is used to consistently serve visitors the same version of an A/B test page they’ve seen before.",session,HubSpot,https://legal.hubspot.com/privacy-policy,0
525e102f-dc0d-40ee-9737-1759a85a5538,Hubspot,Functional,hs-messages-is-open,"hubspot.com","This cookie is used to determine and save whether the chat widget is open for future visits.",30 minutes,HubSpot,https://legal.hubspot.com/privacy-policy,0
8d4aef75-5691-4ce1-8aa2-2c4bfc8b2ec8,Hubspot,Functional,hs-messages-hide-welcome-message,"hubspot.com","This cookie is used to prevent the chat widget welcome message from appearing again for one day after it is dismissed.",1 day,HubSpot,https://legal.hubspot.com/privacy-policy,0
8868a0de-b135-4699-b036-9034f4afb180,Hubspot,Functional,__hsmem,"hubspot.com","This cookie is set when visitors log in to a HubSpot-hosted site.",1 year,HubSpot,https://legal.hubspot.com/privacy-policy,0
32f84cc2-4b28-4188-afef-61b717fa833a,Hubspot,Security,hs-membership-csrf,"hubspot.com","This cookie is used to ensure that content membership logins cannot be forged.",session,HubSpot,https://legal.hubspot.com/privacy-policy,0
7ebd789a-0a35-4ac1-b4fc-05ca2769822e,Hubspot,Functional,hs_langswitcher_choice,"hubspot.com","This cookie is used to save the visitor's selected language choice when viewing pages in multiple languages.",2 years,HubSpot,https://legal.hubspot.com/privacy-policy,0
a4a0bfbb-2fff-4352-a931-105381955855,Hubspot,Marketing,__hstc,"hubspot.com","The main cookie for tracking visitors.",13 months,HubSpot,https://legal.hubspot.com/privacy-policy,0
02865dba-5da8-46ec-b100-50c1b8a1e913,Hubspot,Marketing,hubspotutk,"hubspot.com","This cookie keeps track of a visitor's identity. It is passed to HubSpot on form submission and used when deduplicating contacts.",13 months,HubSpot,https://legal.hubspot.com/privacy-policy,0
0641f061-2be6-4d26-adea-d8614c7f097b,Hubspot,Marketing,__hssc,"hubspot.com","This cookie keeps track of sessions.",30 minutes,HubSpot,https://legal.hubspot.com/privacy-policy,0
04f6c79c-87a2-420f-a341-15b806967c80,Hubspot,Marketing,__hssrc,"hubspot.com","Whenever HubSpot changes the session cookie, this cookie is also set to determine if the visitor has restarted their browser.",session,HubSpot,https://legal.hubspot.com/privacy-policy,0
ba027223-659a-4141-8934-68626ab815a6,Hubspot,Marketing,messagesUtk,"hubspot.com","This cookie is used to recognize visitors who chat with you via the chatflows tool. If the visitor leaves your site before they're added as a contact, they will have this cookie associated with their browser.",13 months,HubSpot,https://legal.hubspot.com/privacy-policy,0
17141c3b-2579-43e6-adf9-30afac2c2144,Hubspot,Marketing,hubspotapi,"hubspot.com","This cookie allows the user to access the app with the correct permissions.",7 days,HubSpot,https://legal.hubspot.com/privacy-policy,0
1b57e026-3773-4b7b-ab6b-a48ec464e19a,Hubspot,Functional,hubspotapi-prefs,"hubspot.com","This is used with the hubspotapi cookie to remember whether the user checked the 'remember me' box (controls the expiration of the main cookie's authentication).",1 Year,HubSpot,https://legal.hubspot.com/privacy-policy,0
5018c57b-f27a-43f2-a60c-0ef264eb10ac,Hubspot,Security,hubspotapi-csrf,"hubspot.com","This is used for CSRF prevention - preventing third party websites from accessing your data. Expires after a year.",1 year,HubSpot,https://legal.hubspot.com/privacy-policy,0
30cc0365-5d7a-47c5-ac62-bad561f7e697,HubSpot,Functional,__hs_cookie_cat_pref,,"This cookie is used to record the categories a visitor consented to.",6 months,HubSpot,https://legal.hubspot.com/privacy-policy,0
a84fdcb8-ee7a-4775-b793-86327c89905d,HubSpot,Functional,__hs_gpc_banner_dismiss,,"This cookie is used when the Global Privacy Control banner is dismissed.",180 days,HubSpot,https://legal.hubspot.com/privacy-policy,0
381d2fe8-9478-4ea9-a7a8-19d2049cc669,HubSpot,Functional,__hs_notify_banner_dismiss,,"This cookie is used when the website uses a Notify consent banner type.",180 days,HubSpot,https://legal.hubspot.com/privacy-policy,0
bf0017c3-9d7d-4f2b-b723-1bedc5938f3c,Vimeo,Analytics,vuid,"vimeo.com","This first party cookie created by Vimeo is used to assign a Vimeo Analytics unique id.",1 minute,Vimeo,https://vimeo.com/cookie_policy,0
bd57513e-37b1-4467-a3de-8eeb47afce76,Vimeo,Functional,Player,"vimeo.com","This first party cookie created by Vimeo is used to remember user’s player mode preferences.",1 minute,Vimeo,https://vimeo.com/cookie_policy,0
b12b1e25-6dd2-4a46-9877-a1fc9fa379ac,Vimeo,Functional,continuous_play_v3,"vimeo.com","Used to keep track of whether continuous play is on or not for a user",2 years,Vimeo,https://vimeo.com/cookie_policy,0
fd513ad4-4265-439d-a1c1-ac12f3854e1e,Vimeo,Analytics,sd_identity,"vimeo.com","Collects analytical tracking information about videos and enables the player to function properly.",2 years,Vimeo,https://vimeo.com/cookie_policy,0
235a47ee-b06a-4c82-a476-e64b775ee7e0,Vimeo,Analytics,sd_client_id,"vimeo.com","Collects analytical tracking information about videos and enables the player to function properly.",2 years,Vimeo,https://vimeo.com/cookie_policy,0
8a90cba6-c361-4513-b33c-509aec12d1a9,Stripe,Functional,__stripe_mid,"stripe.com","Fraud prevention and detection",1 year,Stripe,https://stripe.com/en-nl/privacy,0
123902bd-1664-4dbf-9af5-50b1d3ebf1bb,Stripe,Functional,__stripe_sid,"stripe.com","Fraud prevention and detection",30 minutes,Stripe,https://stripe.com/en-nl/privacy,0
bc05330f-677d-4020-841f-a639abc68908,Stripe,Functional,m,"m.stripe.com","Set by payment provider stripe.com to process payments",10 years,Stripe,https://stripe.com/en-nl/privacy,0
f729f681-c576-47d5-92b1-7ca7964fd869,Snapwidget,Functional,_gat_pro,"snapwidget.com","Allows Snapwidget to offer anonymous analytics about how the visitors are using your widgets",24 hours,Snapwidget,https://snapwidget.com/privacy,0
8a23f0ad-722d-4d91-9ef8-52528e903a4f,WooCommerce,Functional,woocommerce_cart_hash,"woocommerce.com","Helps WooCommerce determine when cart contents/data changes.",session,WooCommerce,https://automattic.com/privacy/,0
f1e0e5b1-d7a1-4afc-80b6-1ba4430c237f,WooCommerce,Functional,woocommerce_items_in_cart,"woocommerce.com","Helps WooCommerce determine when cart contents/data changes.",session,WooCommerce,https://automattic.com/privacy/,0
8f50fe5d-20dc-4811-b118-e49d52a0fc35,WooCommerce,Functional,wp_woocommerce_session_,"woocommerce.com","Contains a unique code for each customer so that it knows where to find the cart data in the database for each customer.",2 days,WooCommerce,https://automattic.com/privacy/,1
15b17bfb-d0ef-4806-b2fa-b319185bc3aa,WooCommerce,Functional,woocommerce_recently_viewed,"woocommerce.com","Powers the Recent Viewed Products widget",session,WooCommerce,https://automattic.com/privacy/,0
a8a7e455-ceb9-4b31-954f-2e47d64f0a1c,WooCommerce,Functional,store_notice,,"Allows customers to dismiss the Store Notice.",session,WooCommerce,https://automattic.com/privacy/,1
5f5b453b-c210-4f12-b886-244bf528b113,WooCommerce,Functional,woocommerce_snooze_suggestions__,,"Allows dashboard users to dismiss Marketplace suggestions, if enabled.",2 days,WooCommerce,https://automattic.com/privacy/,1
7b62b8e9-3858-4d78-a0ef-d8736e763fa9,WooCommerce,Functional,woocommerce_dismissed_suggestions__,,"Count of suggestion dismissals, if enabled.",1 month,WooCommerce,https://automattic.com/privacy/,1
e2a7734f-e396-4228-b92b-87258a4f456c,WooCommerce / Jetpack,Functional,tk_ai,,"Stores a randomly-generated anonymous ID. This is only used within the dashboard (/wp-admin) area and is used for usage tracking, if enabled.",session,WooCommerce / Jetpack,https://automattic.com/privacy/,0
85a47c97-0a09-453d-9472-7a42b29509cb,WooCommerce,Analytics,sbjs_session,,"The number of page views in this session and the current page path",30 minutes,WooCommerce,https://automattic.com/privacy/,0
b05482c5-1326-4d4f-a379-f036824c097d,WooCommerce,Analytics,sbjs_udata,,"Information about the visitor’s user agent, such as IP, the browser, and the device type",session,WooCommerce,https://automattic.com/privacy/,0
674dbcbc-14eb-40a2-8ea8-07e6472fb269,WooCommerce,Analytics,sbjs_first,,"Traffic origin information for the visitor’s first visit to your store (only applicable if the visitor returns before the session expires)",session,WooCommerce,https://automattic.com/privacy/,0
bc895914-a965-4aec-a3bd-f5ef04a12663,WooCommerce,Analytics,sbjs_current,,"Traffic origin information for the visitor’s current visit to your store",session,WooCommerce,https://automattic.com/privacy/,0
4c9c2504-c777-4cfe-aa7f-86b2f72a5202,WooCommerce,Analytics,sbjs_first_add,,"Timestamp, referring URL, and entry page for your visitor’s first visit to your store (only applicable if the visitor returns before the session expires)",session,WooCommerce,https://automattic.com/privacy/,0
dde38589-4de1-4dde-83fa-2bd158c3af48,WooCommerce,Analytics,sbjs_current_add,,"Timestamp, referring URL, and entry page for your visitor’s current visit to your store",session,WooCommerce,https://automattic.com/privacy/,0
74158bd6-6302-4b50-86cf-15327e145b65,WooCommerce,Analytics,sbjs_migrations,,"Technical data to help with migrations between different versions of the tracking feature",session,WooCommerce,https://automattic.com/privacy/,0
e59b49e5-6bec-4c0e-9a3b-d69fc55d7e13,Reddit,Marketing,edgebucket,"reddit.com","Used by Reddit to deliver advertising",2 years,Reddit,https://www.redditinc.com/policies/privacy-policy,0
94d0f8b5-66a2-48b6-91da-26533a1030e7,Reddit,Marketing,initref,"reddit.com","Used by Reddit to deliver advertising",session,Reddit,https://www.redditinc.com/policies/privacy-policy,0
a03609f5-64b4-4161-b5b5-48f843f5f08b,Reddit,Marketing,_rdt_uuid,,"This cookie is set by Reddit and is used for remarketing on reddit.com.",90 days,Reddit,https://www.reddit.com/policies/privacy-policy/,0
90b292bb-8769-415e-ba03-c54142f838ed,Imperva,Functional,incap_ses_,"","This cookie is set to allow a visitor to receive site content from one out of multiple servers as the visitor browses the site. This allows the visitor's session to be maintained.",session,Imperva,https://www.imperva.com/legal/privacy-policy/,1
1db82f57-9897-4e57-86cb-163dd2e6b0f2,Imperva,Functional,nlbi_,"","Incapsula DDoS Protection and Web Application Firewall: Load balancing cookie. To ensure requests by a client are sent to the same origin server.",session,Imperva,https://www.imperva.com/legal/privacy-policy/,1
21c1d8c3-5db8-4613-a370-53e22596ce44,Imperva,Functional,visid_incap_,"","This cookie is from the incapsula CDN and helps us with reliability, security and the performance of our site.",1 year,Imperva,https://www.imperva.com/legal/privacy-policy/,1
5d4bd049-33d3-423c-8ff6-313a59a6404d,Spotify,Functional,sp_t,"spotify.com","Required to ensure the functionality of the integrated Spotify plugin. This does not result in any cross-site functionality.",2 months,Spotify,https://www.spotify.com/us/privacy/,0
0e052395-ba52-4aa3-a964-b79dfa1623d1,Spotify,Functional,sp_landing,"spotify.com","Required to ensure the functionality of the integrated Spotify plugin. This does not result in any cross-site functionality.",1 day,Spotify,https://www.spotify.com/us/privacy/,0
efc813d6-20fa-4d23-9bd0-e2679bc78ea8,Xandr,Marketing,anj,"adnxs.com","The anj cookie contains data denoting whether a cookie ID is synced with our partners. ID syncing enables our partners to use their data from outside the Platform on the Platform. ",90 days,Xandr,https://about.ads.microsoft.com/en-us/solutions/xandr/platform-privacy-policy,0
f87f69d8-0e73-483c-9b39-169b9c36b5f4,Xandr,Marketing,uuid2,"adnxs.com","This cookie contains a unique randomly-generated value that enables the Platform to distinguish browsers and devices.",90 days,Xandr,https://about.ads.microsoft.com/en-us/solutions/xandr/platform-privacy-policy,0
fd712d88-8df2-4601-8178-504b29260182,Xandr,Analytics,usersync,.adnxs.com,"This cookie contains data denoting whether a cookie ID is synced with our partners. ID syncing enables our partners to use their data from outside the Platform on the Platform.",90 days,Xandr,https://about.ads.microsoft.com/en-us/solutions/xandr/platform-privacy-policy,0
fc9c767e-d1a1-4303-b29c-4a89630e4271,Xandr,Marketing,icu,.adnxs.com,"This cookie is used to select ads and limit the number of times a user sees a particular ad. It contains information such as the number of times an ad has been shown, how recently an ad has been shown, or how many total ads have been shown.",90 days,Xandr,https://about.ads.microsoft.com/en-us/solutions/xandr/platform-privacy-policy,0
ae9fca0f-64e8-46b3-9143-aee8dba1e041,Xandr,Analytics,pses,,"This cookie is used to measure the time a user spends on a site.",Session,Xandr,https://about.ads.microsoft.com/en-us/solutions/xandr/platform-privacy-policy,0
b52d31f6-1786-4cbb-978c-55520a9c81fd,Xandr,Functional,token,.adnxs.com,"Cookies that start with token are helper cookies used as a security measure with industry opt-out pages. They contain a unique value only to verify the origin of opt-out requests.",1440 Minutes,Xandr,https://about.ads.microsoft.com/en-us/solutions/xandr/platform-privacy-policy,0
ea5bede7-3bed-4141-9268-522d13d33592,Xandr,Marketing,uids,.adnxs.com,"This cookie contains a base 64 encoded JSON object which contains external unique randomly-generated values that enable other Prebid Server demand partners to distinguish browsers and mobile devices.",120 days,Xandr,https://about.ads.microsoft.com/en-us/solutions/xandr/platform-privacy-policy,0
8a8c67fa-4cb8-4a8c-a108-f3d0c6c068fe,Xandr,Functional,sess,.adnxs.com,"The sess cookie contains a single non-unique value: “1”.It is used by the Platform to test whether a browser is configured to accept cookies from Xandr.",Session,Xandr,https://about.ads.microsoft.com/en-us/solutions/xandr/platform-privacy-policy,0
c11d8312-8bc7-492e-b010-d9d4f582d7c9,Xandr,Marketing,XANDR_PANID,.adnxs.com,"This cookie registers data on the visitor. The information is used to optimize advertisement relevance.",400 days,Xandr,https://about.ads.microsoft.com/en-us/solutions/xandr/platform-privacy-policy,0
d75d0734-3d1e-4a84-81d0-e7258f7afb48,Intershop,Functional,cc-,"","References a cart for anonymous users",session,Intershop,https://www.intershop.com/en/privacy-policy,1
afbd4ea0-e8a6-4f9d-b596-50dce8b04dde,Intershop,Functional,pgid-org-,"","Hash of personalization information. Used to cache pages or snippets for users with same personalization information",session,Intershop,https://www.intershop.com/en/privacy-policy,1
c079f281-2119-4e28-a0d5-897e89e450fa,Intershop,Functional,SecureSessionID-,"","Reference to authenticated user",session,Intershop,https://www.intershop.com/en/privacy-policy,1
e869ccf4-82a4-4ca6-8d28-be73852ffbb6,Kentico,Security,CMSCsrfCookie,"","Store's a security token that the system uses to validate all form data submitted via POST requests. Helps protect against Cross site request forgery.",session,Kentico,https://xperience.io/policies/privacy-policy,0
37550359-138b-4cc3-b10f-e0f5f7221b97,Kentico,Functional,CMSCookieLevel,"","Specifies which cookies are allowed by the visitor.",1 year,Kentico,https://xperience.io/policies/privacy-policy,0
4558bcaa-1cde-46c2-91cd-39c983ce60f7,Kentico,Analytics,CMSLandingPageLoaded,"","Indicates that the landing page has already been visited and the Landing page activity is not logged again for the current visitor. Expires after 20 minutes and the expiration period of the key is renewed every time the website is accessed again.",20 minutes,Kentico,https://xperience.io/policies/privacy-policy,0
fbcc2259-0908-49a7-bda7-4eee3e51a1bb,Kentico,Functional,CMSPreferredCulture,"","Stores the visitor's preferred content culture.",1 year,Kentico,https://xperience.io/policies/privacy-policy,0
4ee96fef-8b5d-4f25-9d8f-348a1f060743,Kentico,Analytics,CMSUserPage,"","Stores the IDs (DocumentID, NodeID) of the last visited page. Used for logging landing and exit page web analytics and activities.",20 minutes,Kentico,https://xperience.io/policies/privacy-policy,0
e89424b3-5bca-430d-91ca-501947b659d0,Kentico,Analytics,CurrentContact,"","Stores the GUID of the contact related to the current site visitor. Used to track activities on the website.",50 years,Kentico,https://xperience.io/policies/privacy-policy,0
b39f0e44-747a-4b9d-bb02-d79ee217aa5f,Kentico,Analytics,VisitorStatus,"",Indicates if the visitor is new or returning. Used for tracking the visitors statistic in Web analytics.,20 years,Kentico,https://xperience.io/policies/privacy-policy,0
221f7d7b-6263-472e-97c7-3b35a1c8581c,Snapchat,Marketing,sc_at,snapchat.com,"Used to identify a visitor across multiple domains.",1 year,Snapchat,https://www.snap.com/en-US/privacy/privacy-policy/,0
5ed12296-efe3-43a7-bcd0-f83b120c97e0,Snapchat,Marketing,sc-a-nonce,snapchat.com,"Nonce control. Used to encrypt session data.",1 year,Snapchat,https://www.snap.com/en-US/privacy/privacy-policy/,0
d26e5dfa-4f43-11eb-ae93-0242ac130002,Snapchat,Marketing,_scid,"","Used to help identify a visitor.",1 year,Snapchat,https://www.snap.com/en-US/privacy/privacy-policy/,0
7066f313-1588-4135-a978-292448a89465,Snapchat,Marketing,_schn,"","This cookies come from the Snapchat retargeting pixel. This pixel is used to retarget and attribute traffic coming from the social network.",1 day,Snapchat,https://www.snap.com/en-US/privacy/privacy-policy/,0
ac02cf31-7650-430e-b65d-5f4c70861d30,Snapchat,Functional,X-AB,"","This cookie is used by the website’s operator in context with multi-variate testing. This is a tool used to combine or change content on the website. This allows the website to find the best variation/edition of the site.",1 day,Snapchat,,0
66bbd376-f956-4a8e-a691-134241d1e88e,Snapchat,Marketing,_scid_r,"","Sets a unique ID for the visitor, that allows third party advertisers to target the visitor with relevant advertisement. This pairing service is provided by third party advertisement hubs, which facilitates real-time bidding for advertisers.",13 months,Snapchat,https://www.snap.com/en-US/privacy/privacy-policy/,0
f123d6b2-72a1-44e2-a872-600787443328,Visual Website Optimizer,Functional,_vwo_uuid_v2,"","Used to track visitor movements anonymously.",1 year,Visual Website Optimizer,https://vwo.com/privacy-policy/,0
f9995ddb-7cf9-4f9b-8e97-0b7bed0402bf,Visual Website Optimizer,Functional,_vwo_uuid,"","Used to track visitor movements anonymously.",1 year,Visual Website Optimizer,https://vwo.com/privacy-policy/,0
6f725fb6-2f3b-40c5-b096-92fa41e5254d,Visual Website Optimizer,Functional,_vis_opt_s,"","This cookie detects if you are new or returning to a particular test.",100 days,Visual Website Optimizer,https://vwo.com/privacy-policy/,0
c9e8dd8a-5ffb-460b-919a-5a93eb9cdc5f,Visual Website Optimizer,Functional,_vis_opt_test_cookie,"","This is a temporary session cookie generated to detect if the cookies are enabled on the user browser or not.",100 days,Visual Website Optimizer,https://vwo.com/privacy-policy/,0
409d9a72-f82c-4c3a-adb1-fb976dfa7aac,Visual Website Optimizer,Functional,_vis_opt_exp_,"","This cookie is generated when a goal is created.",100 days,Visual Website Optimizer,https://vwo.com/privacy-policy/,1
2bdf1a3b-1a57-4259-a727-2fbd3f44849e,Visual Website Optimizer,Analytics,_vwo_sn,"","Collects statistics on the visitor's visits to the website, such as the number of visits, average time spent on the website and what pages have been read.",1 day,Visual Website Optimizer,https://vwo.com/privacy-policy/,0
a19aa639-0aee-446c-910a-619afef7d837,Visual Website Optimizer,Analytics,_vwo_ds,"","Collects data on the user's visits to the website, such as the number of visits, average time spent on the website and what pages have been loaded with the purpose of generating reports for optimising the website content.",2 months,Visual Website Optimizer,https://vwo.com/privacy-policy/,0
9a5ab3c6-686c-49be-8d9f-52299fc6233c,Visual Website Optimizer,Analytics,_vwo_referrer,"","Registers data on visitors' website-behaviour. This is used for internal analysis and website optimization.",session,Visual Website Optimizer,https://vwo.com/privacy-policy/,0
d66bab6d-d432-4eb7-9b8b-8d7beb49386c,Visual Website Optimizer,Functional,_vwo_ssm,dev.visualwebsiteoptimizer.com,"This cookie is used for testing and is created only on sites that use the HTTP protocol. This is used to check if VWO can create cookies on them, post which this cookie is deleted.",10 years,Visual Website Optimizer,https://vwo.com/privacy-policy/,0
d26e3348-4f43-11eb-ae93-0242ac130002,ZOHO,Functional,zc_consent,"","Determines whether the user has accepted the cookie consent box.",1 year,ZOHO,https://www.zoho.com/privacy.html,0
d26e484c-4f43-11eb-ae93-0242ac130002,ZOHO,Security,ZCAMPAIGN_CSRF_TOKEN,"","This cookie is used to distinguish between humans and bots.",session,ZOHO,https://www.zoho.com/privacy.html,0
d26e585a-4f43-11eb-ae93-0242ac130002,ZOHO,Marketing,zc_show,"","Collects data on visitors' preferences and behaviour on the website - This information is used make content and advertisement more relevant to the specific visitor.",1 year,ZOHO,https://www.zoho.com/privacy.html,0
d26e9842-4f43-11eb-ae93-0242ac130002,ZOHO,Functional,zc_cu_exp,"","Contains the expiration date for the cookie with its name.",1 year,ZOHO,https://www.zoho.com/privacy.html,0
d26ea01c-4f43-11eb-ae93-0242ac130002,ZOHO,Marketing,zc_loc,"","Collects information on user preferences and/or interaction with web-campaign content - This is used on CRM-campaign-platform used by website owners for promoting events or products.",session,ZOHO,https://www.zoho.com/privacy.html,0
4b17b5df-5cfd-4e30-94da-cdbcc46f54d6,ZOHO,Functional,uesign,salesiq.zoho.com,"This cookie is used to manage the security of the applications.",1 month,ZOHO,https://www.zoho.com/privacy.html,0
d26e374e-4f43-11eb-ae93-0242ac130002,WhatsApp,Functional,wa_ul,whatsapp.com,"Used to access the service it provides.",session,WhatsApp,https://www.whatsapp.com/privacy/,0
d26e49c8-4f43-11eb-ae93-0242ac130002,WhatsApp,Functional,wa_lang_pref,whatsapp.com,"Used by WhatsApp to save language preferences",6 days,WhatsApp,https://www.whatsapp.com/privacy/,0
d26e43b0-4f43-11eb-ae93-0242ac130002,Perfect Audience,Marketing,pa_rubicon_ts,prfct.co,"This cookie is set by Perfect Audience and is used for advertising purposes based on user behavior data.",2 years,Perfect Audience,https://www.perfectaudience.com/privacy/,0
d26e76fa-4f43-11eb-ae93-0242ac130002,Perfect Audience,Marketing,pa_google_ts,prfct.co,"This cookie is set by Perfect Audience and is used for advertising purposes based on user behavior data.",2 years,Perfect Audience,https://www.perfectaudience.com/privacy/,0
d26e77ae-4f43-11eb-ae93-0242ac130002,Perfect Audience,Marketing,pa_twitter_ts,prfct.co,"This cookie is set by Perfect Audience and is used for advertising purposes based on user behavior data.",2 years,Perfect Audience,https://www.perfectaudience.com/privacy/,0
d26e7bf0-4f43-11eb-ae93-0242ac130002,Perfect Audience,Marketing,pa_yahoo_ts,prfct.co,"This cookie is set by Perfect Audience and is used for advertising purposes based on user behavior data.",2 years,Perfect Audience,https://www.perfectaudience.com/privacy/,0
d26e9900-4f43-11eb-ae93-0242ac130002,Perfect Audience,Marketing,pa_openx_ts,prfct.co,"This cookie is set by Perfect Audience and is used for advertising purposes based on user behavior data.",2 years,Perfect Audience,https://www.perfectaudience.com/privacy/,0
d26ea652-4f43-11eb-ae93-0242ac130002,Perfect Audience,Marketing,pa_uid,prfct.co,"This cookie is set by Perfect Audience and is used for advertising purposes based on user behavior data.",2 years,Perfect Audience,https://www.perfectaudience.com/privacy/,0
d26e40ae-4f43-11eb-ae93-0242ac130002,MailMunch,Marketing,mailmunch_second_pageview,"","Used for tracking by the Mailmunch mailing list software",1 year,MailMunch,https://legal.mailmunch.com/privacy/,0
d26e946e-4f43-11eb-ae93-0242ac130002,MailMunch,Marketing,_mailmunch_visitor_id,"","This cookie is set by MailMunch which is email collection and email marketing platform.",1 year,MailMunch,https://legal.mailmunch.com/privacy/,0
d26e59e0-4f43-11eb-ae93-0242ac130002,Partnerize,Marketing,tPHG-PS,prf.hn,"Partnerize’s tracking cookie, deployed either upon a user’s clicking of a link on a partner website, or upon the loading of a customer's image to a partner website.",1 year,Partnerize,https://partnerize.com/privacy-policy/,0
d26e6f52-4f43-11eb-ae93-0242ac130002,Digital Audience,Marketing,digitalAudience,digitalaudience.io,"Digital Audience uses cookies to improve the effectiveness of digital platforms, thanks to online recognition mechanisms.",Unlimited,Digital Audience,https://digitalaudience.io/legal/,0
d26e763c-4f43-11eb-ae93-0242ac130002,Drupal CMS,Functional,has_js,"","Drupal uses this cookie to indicate whether or not the visitors browser has JavaScript enabled.",session,Drupal CMS,https://www.drupal.org/privacy,0
d26e5eb8-4f43-11eb-ae93-0242ac130002,Optinmonster,Marketing,_omappvs,"","Cookie is used to identify returning visitors",1 day,Optinmonster,https://optinmonster.com/privacy/,0
d26e9b26-4f43-11eb-ae93-0242ac130002,Optinmonster,Marketing,_omappvp,"","Cookie is used to identify returning visitors",1 day,Optinmonster,https://optinmonster.com/privacy/,0
83bb5f54-8139-4636-bcfe-963c61fef97f,Leadfeeder,Marketing,_lfa,"","Leadfeeder cookie collects the behavioral data of all website visitors. This includes; pages viewed, visitor source and time spent on the site",2 years,Leadfeeder,https://www.leadfeeder.com/privacy/,0
3686a3ce-0b5a-412e-a28a-6b913094c088,SnapEngage,Marketing,SnapABugHistory,"","This cookie is associated with live chat software from SnapEngage. It identifies a visitor to enable a history of engagement to be recorded.",1 year,SnapEngage,https://snapengage.com/privacy-policy/,0
f518a80b-bc3b-4f56-a426-154ead117a8a,SnapEngage,Functional,SnapABugUserAlias,"","Stores a unique ID string for each chat-box session. This allows the website-support to see previous issues and reconnect with the previous supporter.",1 year,SnapEngage,https://snapengage.com/privacy-policy/,0
0a671a46-3fbd-4121-a601-5d9eae7b6055,SnapEngage,Functional,SnapABugVisit,"","This cookie is associated with live chat software from SnapEngage. It identifies a new user session.",1 year,SnapEngage,https://snapengage.com/privacy-policy/,0
db26f6b6-580c-4e32-bf8c-304357f2fc29,SnapEngage,Marketing,SnapABugRef,"","This cookie is associated with live chat software from SnapEngage. It records the landing page and origin of a visitor.",1 year,SnapEngage,https://snapengage.com/privacy-policy/,0