-
Notifications
You must be signed in to change notification settings - Fork 0
/reddit
1002 lines (806 loc) · 430 KB
/reddit
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
<!DOCTYPE html><html lang="en"><head><script>
var __SUPPORTS_TIMING_API = typeof performance === 'object' && !!performance.mark && !! performance.measure && !!performance.getEntriesByType;
function __perfMark(name) { __SUPPORTS_TIMING_API && performance.mark(name); };
var __firstLoaded = false;
function __markFirstPostVisible() {
if (__firstLoaded) { return; }
__firstLoaded = true;
__perfMark("first_post_title_image_loaded");
}
</script><script>
__perfMark('head_tag_start');
</script><title>reddit: the front page of the internet</title><meta charSet="utf8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><style>
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, button, cite, code,
del, dfn, em, img, input, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
font-family: BentonSans, sans-serif;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
a {
color: inherit;
text-decoration: inherit;
}
html, body {
width: 100%;
margin: 0;
};
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
button {
background: transparent;
border: none;
color: inherit;
cursor: pointer;
padding: initial;
}
body {
min-height: calc(100vh - 48px);
line-height: 1;
font-family: IBMPlexSans, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
}
body ::-moz-selection {
background-color: #7dbcff99;
}
input, textarea, [contenteditable] {
font-family Noto Sans, Arial, sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 21px;
}
</style><style type="text/css" data-styled-components="cRyTPG buiwVR eMLfYp gFkiFS isqbWk eAICLF eMpKLK imyGpC eFNOac lcwViv hLCjnv ccNujx bKZwgN jMKIgO kCxZdn exNEfa edyYyY jBTzrG izesju fxOYte eUhTeS bTaMRD dSKiPU cXRnFU cNaGat hcePqI yQUgx cspzEt ccjdDL gwgtxT iKOkcd jHJasF ePVVqs iYvFKz iNXRIc illVHt yPkkG kgVjDg hgijtZ bhWWEo kfLJdE dGVBeH kEJruH fLroyf kuMSMg fKfgvn dPChbf xLIlr eegxjA hYAhIh hVXhHI dEQgTg aVOJu bhDOuz fXGokz hHLUeR clxnGR FuFkN fGICXp hxpTao iRFTnd kabAwx iiOULB bVDUJS gBulPH hbcgEe kTfnjO jnqAtA ycAjH juutRX fkcbSO kiEVp cAaFtO fAVHJE eWwmfL fmkWQd eEVuIz bjFASC RqhAo fURlGq jxkQrE bwPbWc jCVUKH hCpeeB eghWMc jEnHgK gBukcb emRVBu liRtqP dusrSl camSYk daeHTp lhpqQT eTLhLs gjflKZ cvMqVT fqSozF zaJq bPQPXc fcfDwz ebGXPK cUBHAr jDZAxm iCfBkd IyvWL giMEpI junIdA fGjVuX fajTRC bduZqE lnwutk kXVArd cJlUoW gdpVib hPmpwW iIHfsN ZdrFI bZEUhO ettNWZ fWlrHt jySElJ hyvsNa gunVhj isNqYD kaCpdv hIWxVw bwDOHe jRGzVD iBcIzr blMQvr kZsOoN ihsrZL kDJUEO hErNoh hvyqlW dfazTP ghrRRY lmASNF ceypt duzqvS CUukh dSBshO dYDuCS faOhIY gCUJbB QJfmE hyedSq lghAXa ljlNSY byKexP iooGMG RdprA kZSlbc lhvVig hGTztL lkdqxw fePAzF OohQE hBojQe bfUTRJ jvKTHE fnfHa dNrhli bFtNdL dagesX dwmvbJ hsugzJ cXpeRf fhgKHO eTOCSy cpewgg eEEbxk cHkkoG fqKXrr hjxxdC jpZMnH bmnsEB hSAKYw kddyLv dikVDQ bftogP hYctxm fedWgZ" data-styled-components-is-local="true">/* sc-component-id: s1ksf9tn-0 */
.hbcgEe{display:none;}
/* sc-component-id: b5szba-0 */
.dusrSl{font-size:12px;font-weight:400;line-height:16px;margin:4px 8px;white-space:nowrap;color:#4FBCFF;fill:#4FBCFF;}
.dusrSl:visited{color:#4193c6;fill:#4193c6;}
.dusrSl:hover{-webkit-text-decoration:underline;text-decoration:underline;}
/* sc-component-id: s1cu8rnh-0 */
.kCxZdn{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}
/* sc-component-id: sc-keyframes-cRyTPG */
@-webkit-keyframes cRyTPG{from{opacity:.5;-webkit-transform:translate(-128px,-128px) scale(.75);-ms-transform:translate(-128px,-128px) scale(.75);transform:translate(-128px,-128px) scale(.75);}to{-webkit-transform:translate(-128px,-128px) scale(1.5);-ms-transform:translate(-128px,-128px) scale(1.5);transform:translate(-128px,-128px) scale(1.5);opacity:0;}}
@keyframes cRyTPG{from{opacity:.5;-webkit-transform:translate(-128px,-128px) scale(.75);-ms-transform:translate(-128px,-128px) scale(.75);transform:translate(-128px,-128px) scale(.75);}to{-webkit-transform:translate(-128px,-128px) scale(1.5);-ms-transform:translate(-128px,-128px) scale(1.5);transform:translate(-128px,-128px) scale(1.5);opacity:0;}}
/* sc-component-id: i729lw-0 */
.ebGXPK{display:none;}
/* sc-component-id: ej8hhi-1 */
.eghWMc{display:inline-block;vertical-align:text-bottom;width:20px;height:20px;font-size:20px;font-weight:400;line-height:20px;width:20px;height:20px;pointer-events:none;}
/* sc-component-id: ej8hhi-4 */
.cJlUoW{display:inline-block;vertical-align:text-bottom;width:20px;height:20px;font-size:20px;font-weight:400;line-height:20px;width:20px;height:20px;pointer-events:none;}
/* sc-component-id: s1m0a5q6-1 */
.hCpeeB{color:#D7DADC;}
.kXVArd{color:#818384;}
/* sc-component-id: sc-keyframes-buiwVR */
@-webkit-keyframes buiwVR{from{background-position:0 0;}to{background-position:-200% 0;}}
@keyframes buiwVR{from{background-position:0 0;}to{background-position:-200% 0;}}
/* sc-component-id: s1awasw7-1 */
/* sc-component-id: m2byoz-0 */
.gBukcb{display:inline-block;vertical-align:middle;font-size:14px;font-weight:400;line-height:14px;}
/* sc-component-id: s14hmdpf-0 */
.hPmpwW{display:inline-block;vertical-align:middle;font-size:14px;font-weight:400;line-height:14px;}
/* sc-component-id: deu748-0 */
.jEnHgK{border-radius:2px;}
.jEnHgK:hover,.jEnHgK:focus{background-color:rgba(215,218,220,0.1);outline:none;}
/* sc-component-id: deu748-1 */
.fWlrHt{border-radius:2px;}
.fWlrHt:hover,.fWlrHt:focus{background-color:rgba(215,218,220,0.1);outline:none;}
/* sc-component-id: deu748-2 */
.gdpVib{border-radius:2px;}
.gdpVib:hover,.gdpVib:focus{background-color:rgba(215,218,220,0.1);outline:none;}
/* sc-component-id: s6qudme-0 */
.gunVhj{margin-left:3px;}
/* sc-component-id: s6qudme-2 */
.jySElJ{font-size:12px;font-weight:500;line-height:16px;border-radius:2px;display:inline-block;margin-right:5px;overflow:hidden;text-overflow:ellipsis;vertical-align:text-bottom;white-space:nowrap;background-color:#343536;color:#FFFFFF;padding:0 4px;}
/* sc-component-id: s6qudme-3 */
.hyvsNa{font-size:12px;font-weight:500;line-height:16px;border-radius:2px;display:inline-block;margin-right:5px;overflow:hidden;text-overflow:ellipsis;vertical-align:text-bottom;white-space:nowrap;background-color:#343536;color:#FFFFFF;margin-left:0;padding:0 4px;}
/* sc-component-id: s8zor71-2 */
.kZSlbc{font-size:12px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:24px;text-transform:uppercase;border:1px solid transparent;border-radius:4px;box-sizing:border-box;text-align:center;-webkit-letter-spacing:1px;-moz-letter-spacing:1px;-ms-letter-spacing:1px;letter-spacing:1px;-webkit-text-decoration:none;text-decoration:none;font-size:12px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:24px;text-transform:uppercase;padding:3px 16px;background-color:#D7DADC;border-color:#D7DADC;color:#1A1A1B;fill:#1A1A1B;display:block;}
.kZSlbc:hover{background-color:#dfe1e3;border-color:#dfe1e3;color:#1A1A1B;fill:#1A1A1B;}
.kZSlbc:active,.kZSlbc.active{background-color:#acaeb0;border-color:#acaeb0;color:#1A1A1B;fill:#1A1A1B;}
.kZSlbc:disabled,.kZSlbc[disabled],.kZSlbc[data-disabled]{background-color:#ebeced;border-color:#ebeced;color:rgba(26,26,27,0.5);fill:rgba(26,26,27,0.5);cursor:not-allowed;}
/* sc-component-id: s8zor71-3 */
.cpewgg{font-size:12px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:24px;text-transform:uppercase;border:1px solid transparent;border-radius:4px;box-sizing:border-box;text-align:center;-webkit-letter-spacing:1px;-moz-letter-spacing:1px;-ms-letter-spacing:1px;letter-spacing:1px;-webkit-text-decoration:none;text-decoration:none;font-size:12px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:24px;text-transform:uppercase;padding:3px 16px;background-color:#D7DADC;border-color:#D7DADC;color:#1A1A1B;fill:#1A1A1B;}
.cpewgg:hover{background-color:#dfe1e3;border-color:#dfe1e3;color:#1A1A1B;fill:#1A1A1B;}
.cpewgg:active,.cpewgg.active{background-color:#acaeb0;border-color:#acaeb0;color:#1A1A1B;fill:#1A1A1B;}
.cpewgg:disabled,.cpewgg[disabled],.cpewgg[data-disabled]{background-color:#ebeced;border-color:#ebeced;color:rgba(26,26,27,0.5);fill:rgba(26,26,27,0.5);cursor:not-allowed;}
/* sc-component-id: s1o43ulv-1 */
.fGjVuX{font-size:12px;font-weight:700;line-height:16px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:32px;position:relative;}
/* sc-component-id: s1fauk9w-0 */
.jnqAtA{-webkit-text-decoration:none;text-decoration:none;fill:currentColor;color:inherit;}
/* sc-component-id: s1l2kw3h-0 */
.gBulPH{display:inline-block;vertical-align:text-bottom;width:16px;height:16px;font-size:16px;font-weight:400;line-height:16px;}
/* sc-component-id: b1zwxr-0 */
.hxpTao{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;text-align:left;width:100%;}
/* sc-component-id: s1nordvo-0 */
.iRFTnd{display:inline-block;vertical-align:middle;margin-right:2px;width:20px;}
/* sc-component-id: s1nordvo-1 */
.bVDUJS{display:inline-block;}
/* sc-component-id: s1nordvo-2 */
.fGICXp{font-size:14px;font-weight:500;line-height:18px;color:#D7DADC;fill:#D7DADC;background-color:#1A1A1B;display:block;padding:8px;text-transform:capitalize;white-space:nowrap;}
.fGICXp:not(:first-child){border-top:#343536 solid 1px;}
.fGICXp:focus{background-color:#17232D;border-color:#17232D;color:#D7DADC;fill:#D7DADC;outline:none;}
.kTfnjO{font-size:14px;font-weight:500;line-height:18px;color:#D7DADC;fill:#D7DADC;background-color:#1A1A1B;display:block;padding:8px;text-transform:capitalize;white-space:nowrap;}
.kTfnjO:not(:first-child){border-top:#343536 solid 1px;}
.kTfnjO:active,.kTfnjO:hover,.kTfnjO:focus{background-color:#17232D;border-color:#17232D;color:#D7DADC;fill:#D7DADC;outline:none;}
.ycAjH{font-size:14px;font-weight:500;line-height:18px;color:#818384;fill:#818384;background-color:#1A1A1B;display:block;padding:8px;text-transform:capitalize;white-space:nowrap;}
.ycAjH:not(:first-child){border-top:#343536 solid 1px;}
.ycAjH:active,.ycAjH:hover,.ycAjH:focus{background-color:#17232D;border-color:#17232D;color:#D7DADC;fill:#D7DADC;outline:none;}
/* sc-component-id: s18u2fuq-1 */
.bduZqE{height:24px;border-radius:2px;}
.bduZqE:hover,.bduZqE:focus{background-color:rgba(215,218,220,0.1);outline:none;}
/* sc-component-id: s18u2fuq-2 */
.lnwutk{display:inline-block;vertical-align:text-bottom;width:16px;height:16px;font-size:16px;font-weight:400;line-height:16px;color:#818384;}
/* sc-component-id: vlzsw3-0 */
.giMEpI{display:inline-block;vertical-align:text-bottom;width:16px;height:16px;font-size:16px;font-weight:400;line-height:16px;fill:currentColor;display:block;margin:0 auto;height:16px;width:16px;}
/* sc-component-id: vlzsw3-1 */
.junIdA{fill:currentColor;display:block;margin:0 auto;height:16px;width:16px;}
/* sc-component-id: vlzsw3-2 */
.IyvWL{display:inline-block;vertical-align:text-bottom;width:16px;height:16px;font-size:16px;font-weight:400;line-height:16px;fill:currentColor;display:block;margin:0 auto;height:16px;width:16px;}
/* sc-component-id: vlzsw3-5 */
.fcfDwz{display:inline-block;vertical-align:text-bottom;width:16px;height:16px;font-size:16px;font-weight:400;line-height:16px;fill:currentColor;display:block;margin:0 auto;height:16px;width:16px;}
/* sc-component-id: vlzsw3-17 */
.fajTRC{border-radius:4px;cursor:pointer;height:24px;line-height:0px;padding:0 4px;width:100%;}
@media (min-width:1080px){.fajTRC{display:none;}}
/* sc-component-id: s1afabjy-1 */
.bPQPXc{width:auto;height:25px;white-space:nowrap;padding-right:4px;margin-right:4px;text-transform:capitalize;word-wrap:initial;word-break:initial;border-radius:2px;}
.bPQPXc:hover,.bPQPXc:focus{background-color:rgba(215,218,220,0.1);outline:none;}
@media(max-width:460px){.bPQPXc{display:none;}}
.iCfBkd{width:auto;height:25px;white-space:nowrap;padding-right:4px;margin-right:4px;text-transform:capitalize;word-wrap:initial;word-break:initial;border-radius:2px;}
.iCfBkd:hover,.iCfBkd:focus{background-color:rgba(215,218,220,0.1);outline:none;}
@media(max-width:1080px){.iCfBkd{display:none;}}
/* sc-component-id: w931f2-0 */
.lhpqQT{color:#818384;font-size:6px;line-height:20px;}
/* sc-component-id: s15cosxg-0 */
.zaJq{margin-right:4px;}
/* sc-component-id: s15cosxg-1 */
.jDZAxm{border-radius:2px;padding:4px;text-transform:capitalize;}
.jDZAxm:hover,.jDZAxm:focus{background-color:rgba(215,218,220,0.1);outline:none;}
/* sc-component-id: s15cosxg-2 */
.cUBHAr{width:auto;margin:0 4px 0 0;word-break:normal;}
@media(max-width:520px){.cUBHAr{display:none;}}
/* sc-component-id: s15cosxg-3 */
.fqSozF ._1Hw7tY9pMr-T1F4P1C-xNU{border-radius:2px;}
.fqSozF ._1Hw7tY9pMr-T1F4P1C-xNU:hover,.fqSozF ._1Hw7tY9pMr-T1F4P1C-xNU:focus{background-color:rgba(215,218,220,0.1);outline:none;}
.fqSozF ._1UoeAeSRhOKSNdY_h3iS1O{font-size:12px;font-weight:700;line-height:16px;}
.fqSozF ._3-miAEojrCvx_4FQ8x3P-s{font-size:12px;font-weight:700;line-height:16px;}
.fqSozF ._15c1hqseW25EvRu0WP2Dq5{color:#818384;}
.fqSozF .undefined{font-size:12px;font-weight:400;line-height:16px;}
/* sc-component-id: xq4oc1-0 */
.ettNWZ{font-size:12px;font-weight:400;line-height:16px;margin:4px 8px;white-space:nowrap;color:#4FBCFF;fill:#4FBCFF;font-size:12px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:24px;text-transform:uppercase;border:1px solid transparent;border-radius:4px;box-sizing:border-box;text-align:center;-webkit-letter-spacing:1px;-moz-letter-spacing:1px;-ms-letter-spacing:1px;letter-spacing:1px;-webkit-text-decoration:none;text-decoration:none;background-color:transparent;height:27px;radius:4px;font-size:12px;padding-top:1px;padding-bottom:2px;padding-right:20px;padding-left:20px;border-color:#4FBCFF;color:#4FBCFF;fill:#4FBCFF;}
.ettNWZ:visited{color:#4193c6;fill:#4193c6;}
.ettNWZ:hover{-webkit-text-decoration:underline;text-decoration:underline;}
.ettNWZ:hover{border-color:#72c9ff;color:#72c9ff;fill:#72c9ff;}
.ettNWZ:active{border-color:#3f96cc;color:#3f96cc;fill:#3f96cc;}
.ettNWZ:disabled,.ettNWZ[disabled],.ettNWZ[data-disabled]{border-color:rgba(79,188,255,0.5);color:rgba(79,188,255,0.5);fill:rgba(79,188,255,0.5);cursor:not-allowed;}
.ettNWZ:hover{-webkit-text-decoration:none;text-decoration:none;}
/* sc-component-id: s1y8gf4b-0 */
.bwPbWc{border-radius:2px;cursor:pointer;color:#818384;}
.bwPbWc:hover,.bwPbWc:focus{background-color:,props => Object(polished__WEBPACK_IMPORTED_MODULE_0__["rgba"])(Object(reddit_models_Theme_NewColorSystem__WEBPACK_IMPORTED_MODULE_8__[/* getStyles */ "c"])(props).navIcon,0.10),;outline:none;}
.bwPbWc:hover{color:#5a75cc;}
.bwPbWc:active{color:#8da8ff;}
.iBcIzr{color:#818384;}
/* sc-component-id: dplx91-0 */
.jxkQrE{border-radius:2px;cursor:pointer;color:#818384;}
.jxkQrE:hover,.jxkQrE:focus{background-color:,props => Object(polished__WEBPACK_IMPORTED_MODULE_0__["rgba"])(Object(reddit_models_Theme_NewColorSystem__WEBPACK_IMPORTED_MODULE_8__[/* getStyles */ "c"])(props).navIcon,0.10),;outline:none;}
.jxkQrE:hover{color:#cc3700;}
.jxkQrE:active{color:#ff6a32;}
.bwDOHe{color:#818384;}
/* sc-component-id: s1b4xnj8-0 */
.fURlGq{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;fill:inherit;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}
.fURlGq .cYUyoUM3wmgRXEHv1LlZv:focus{border-radius:2px;background-color:rgba(215,218,220,0.1);outline:none;}
.fURlGq ._1rZYMD_4xY3gRcSS3p8ODO{font-size:12px;font-weight:700;line-height:16px;}
/* sc-component-id: s1ukwo15-0 */
.RqhAo:focus{outline:none;}
/* sc-component-id: sc-keyframes-eMLfYp */
@-webkit-keyframes eMLfYp{from{opacity:0;}to{opacity:1;}}
@keyframes eMLfYp{from{opacity:0;}to{opacity:1;}}
/* sc-component-id: s1lxazz9-0 */
.gjflKZ ._10Q0ZYgDml-1g2q2eQ5ky_{color:#818384;}
.gjflKZ ._2y3bja4n4-unxyUrMEFH8C{color:#818384;}
.gjflKZ ._2y3bja4n4-unxyUrMEFH8C{color:#818384;}
.gjflKZ ._3mcXKZUh7FvUMLSv0AHyXs{color:#818384;}
.gjflKZ ._3mcXKZUh7FvUMLSv0AHyXs:focus,.gjflKZ ._3mcXKZUh7FvUMLSv0AHyXs:hover{outline:none;background-color:rgba(215,218,220,0.1);}
/* sc-component-id: xvda30-0 */
.camSYk{display:inline-block;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;}
/* sc-component-id: k9omvt-1 */
.eTLhLs{font-size:12px;font-weight:400;line-height:16px;color:inherit;}
.eTLhLs:hover{-webkit-text-decoration:underline;text-decoration:underline;}
/* sc-component-id: s160fkbq-4 */
.eTOCSy{font-size:12px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:24px;text-transform:uppercase;padding:4px 9px 2px;width:100%;}
/* sc-component-id: s3dr7r-0 */
.iIHfsN{font-size:10px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:12px;text-transform:uppercase;color:#4FBCFF;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;}
/* sc-component-id: s1i3ufq7-0 */
.daeHTp{font-size:12px;font-weight:700;line-height:16px;color:#D7DADC;display:inline;line-height:20px;-webkit-text-decoration:none;text-decoration:none;vertical-align:baseline;}
.daeHTp:hover{-webkit-text-decoration:underline;text-decoration:underline;}
/* sc-component-id: g2ylbe-0 */
.ZdrFI{color:#818384;font-size:6px;line-height:20px;vertical-align:middle;}
/* sc-component-id: s1okktje-0 */
.liRtqP{display:inline;color:#D7DADC;word-wrap:break-word;font-size:16px;font-weight:500;line-height:20px;padding-right:5px;}
@media (max-width:639px){.liRtqP{font-size:14px;font-weight:500;line-height:18px;}}
/* sc-component-id: s1okktje-1 */
.emRVBu .SQnoC3ObvgnGjWt90zD9Z:visited .s1okktje-0{color:#6f7071;}
.emRVBu .y8HYJ-y_lTUHkQIc1mdCq:visited .s1okktje-0{color:#edeeef;}
/* sc-component-id: s1f2y58t-0 */
.izesju{font-family:Noto Sans,Arial,sans-serif;font-size:12px;font-weight:400;line-height:18px;background:#FF4500;border-radius:12px;box-sizing:border-box;box-shadow:0px 0px 0px 0.5px #1A1A1B;color:#FFFFFF;font-size:8px;font-weight:bold;height:12px;left:18px;line-height:12px;min-width:12px;padding:0px 3px;position:absolute;text-align:center;top:2px;vertical-align:middle;z-index:1;}
/* sc-component-id: s1atn12p-0 */
.fxOYte{fill:#D7DADC;height:16px;position:relative;width:16px;}
/* sc-component-id: s1r31706-0 */
.eUhTeS{fill:#D7DADC;height:16px;width:16px;}
/* sc-component-id: s1dqr9jy-0 */
.imyGpC{position:absolute !important;-webkit-clip:rect(1px 1px 1px 1px);clip:rect(1px 1px 1px 1px);-webkit-clip:rect(1px,1px,1px,1px);clip:rect(1px,1px,1px,1px);}
/* sc-component-id: r2jmej-0 */
.eFNOac{display:inline-block;fill:#D7DADC;height:20px;margin-left:2px;width:20px;vertical-align:middle;}
/* sc-component-id: lbgdi5-0 */
.jHJasF{margin-right:2px;}
/* sc-component-id: o914k-1 */
.hcePqI{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}
/* sc-component-id: o914k-2 */
.iKOkcd{font-size:12px;font-weight:500;line-height:16px;color:#A8AAAB;}
/* sc-component-id: o914k-3 */
.ccjdDL{display:none;}
@media(min-width:1210px){.ccjdDL{display:block;}}
/* sc-component-id: o914k-6 */
.yQUgx{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-left:8px;text-align:left;width:32px;width:auto;}
@media(min-width:1210px){.yQUgx{width:175px;}}
/* sc-component-id: o914k-10 */
.ePVVqs{display:inline-block;fill:#D7DADC;height:20px;margin-left:2px;width:20px;vertical-align:middle;display:inline-block;fill:#D7DADC;height:20px;vertical-align:middle;width:20px;}
/* sc-component-id: o914k-11 */
.cspzEt{border-radius:4px;float:left;margin-right:5px;max-height:24px;max-width:24px;}
/* sc-component-id: o914k-12 */
.cNaGat{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;text-align:left;width:100%;border-radius:4px;border:1px solid transparent;padding:2px 0;}
.cNaGat:focus,.cNaGat:hover{border-color:#343536;outline:none;}
.cNaGat.dropdown-open{border-radius:4px 4px 0 0;border-color:#343536;outline:none;}
/* sc-component-id: o914k-18 */
.gwgtxT{font-size:12px;font-weight:500;line-height:16px;color:#D7DADC;white-space:nowrap;}
/* sc-component-id: s1dxm5k4-0 */
.edyYyY ~ .edyYyY{margin-left:8px;}
/* sc-component-id: s1dxm5k4-1 */
.dSKiPU{fill:#0079D3;height:16px;width:16px;}
/* sc-component-id: s1dxm5k4-3 */
.bTaMRD{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;padding:8px;position:relative;border-radius:2px;}
.bTaMRD:hover,.bTaMRD:focus{background-color:rgba(215,218,220,0.1);outline:none;}
/* sc-component-id: s1dxm5k4-4 */
.jBTzrG{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;padding:8px;position:relative;border-radius:2px;}
.jBTzrG:hover,.jBTzrG:focus{background-color:rgba(215,218,220,0.1);outline:none;}
/* sc-component-id: s1dxm5k4-5 */
.exNEfa{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:none;}
@media (min-width:600px){.exNEfa{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}
/* sc-component-id: s1dxm5k4-6 */
.cXRnFU{margin-left:8px;}
/* sc-component-id: s1qes5uk-0 */
.jMKIgO{background-color:#1A1A1B;border:1px solid #343536;border-top-width:0;color:#D7DADC;padding:0px;}
.jMKIgO ._3HTtcITrR-crvsRovLrijl{fill:#818384;height:16px;width:16px;}
.jMKIgO ._3HTtcITrR-crvsRovLrijl._2H51id1RX9dGNrtrAIOMGK{fill:#4FBCFF;}
.jMKIgO ._1JNAu7U5gWAkRoykwfUWhY{color:#818384;}
.jMKIgO ._1JNAu7U5gWAkRoykwfUWhY.m-withBorder{border-top:4px solid #343536;}
.jMKIgO .XEkFoehJNxIH9Wlr5Ilzd{padding:12px 16px;}
.jMKIgO .XEkFoehJNxIH9Wlr5Ilzd._2H51id1RX9dGNrtrAIOMGK{border-bottom:1px solid #343536;}
.jMKIgO .XEkFoehJNxIH9Wlr5Ilzd._2H51id1RX9dGNrtrAIOMGK:last-of-type{border-bottom:none;}
.jMKIgO .XEkFoehJNxIH9Wlr5Ilzd:hover{background-color:#272729;border-color:#343536;}
.jMKIgO .XEkFoehJNxIH9Wlr5Ilzd:hover ._3HTtcITrR-crvsRovLrijl.m-hoverable{fill:#D7DADC;}
.jMKIgO .XEkFoehJNxIH9Wlr5Ilzd.m-focused{background-color:#272729;}
.jMKIgO .XEkFoehJNxIH9Wlr5Ilzd.typeahead{padding:12px 16px 6px 16px;}
.jMKIgO .XEkFoehJNxIH9Wlr5Ilzd ._2aqH0n-kSzFY7HZZ5GL-Jb.typeahead{font-size:14px;font-weight:500;line-height:18px;}
.jMKIgO .XEkFoehJNxIH9Wlr5Ilzd ._2Efd4uMAp4YawdvL9Zhdhv{color:#818384;}
.jMKIgO .XEkFoehJNxIH9Wlr5Ilzd ._2Efd4uMAp4YawdvL9Zhdhv.m-noPostTitle{margin-top:8px;}
.jMKIgO ._3n88GuUHAnxPu6a--3e0sz,.jMKIgO ._1TJuQGHgWvq2fnkVcPN7d0{background-color:#343536;}
.jMKIgO ._1TJuQGHgWvq2fnkVcPN7d0{margin:12px 16px;width:auto;}
/* sc-component-id: s1vm61o8-0 */
.bKZwgN{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#272729;border-radius:4px;border:1px solid #343536;box-shadow:none;color:#D7DADC;display:block;height:36px;outline:none;padding:0 16px 0 40px;width:100%;}
.bKZwgN:hover,.bKZwgN:focus{background-color:#1A1A1B;border:1px solid #D7DADC;}
.bKZwgN::-webkit-input-placeholder{color:#818384;}
.bKZwgN:-moz-placeholder{color:#818384;opacity:1;}
.bKZwgN::-moz-placeholder{color:#818384;opacity:1;}
.bKZwgN:-ms-input-placeholder{color:#818384;}
/* sc-component-id: s1vm61o8-1 */
.hLCjnv{position:absolute;top:50%;left:0;height:18px;margin-left:16px;margin-top:-9px;}
/* sc-component-id: s1vm61o8-2 */
.ccNujx{fill:#818384;width:18px;height:18px;}
/* sc-component-id: s1vm61o8-3 */
.lcwViv{position:relative;}
/* sc-component-id: s1ipn2bl-0 */
.eMpKLK{color:#D7DADC;}
.eMpKLK ._2vkeRJojnV7cb9pMlPHy7d{background-color:#1A1A1B;border-bottom:1px solid #343536;}
.eMpKLK .Y4MkVr6trrdypfZVUkpIA{background-color:#1A1A1B;border-bottom:1px solid #343536;}
@media (min-width:560px){.eMpKLK .Y4MkVr6trrdypfZVUkpIA{-webkit-flex:1 1 100%;-ms-flex:1 1 100%;flex:1 1 100%;}}.eMpKLK ._2dlTXDaX9JuL0bekTwhV18{fill:#D7DADC;}
.eMpKLK .{border-right:1px solid #343536;}
.eMpKLK ._3CG2U_hX3HI-ibl5v2RCq1,.eMpKLK ._2FVCfsIPxXtl6S-c69sXO4{fill:#D7DADC;}
.eMpKLK ._3jiriKeNer8y0-1r6oWIFM{border-radius:4px;border:1px solid transparent;}
.eMpKLK ._3jiriKeNer8y0-1r6oWIFM.m-open{border-color:#343536;border-radius:4px 4px 0 0;}
.eMpKLK ._3jiriKeNer8y0-1r6oWIFM.m-not-pinned:hover,.eMpKLK ._3jiriKeNer8y0-1r6oWIFM.m-not-pinned:focus{border-color:#343536;}
.eMpKLK .TMMvbwyeh9yuHKmQWHrE3{background-color:#1A1A1B;border:1px solid #343536;border-top-width:0;color:#D7DADC;}
.eMpKLK .h-jI8r2f9ozTNqu_2TBeY{background-color:#1A1A1B;color:#D7DADC;}
.eMpKLK .h-jI8r2f9ozTNqu_2TBeY:focus{border-color:#343536;outline:none;}
.eMpKLK ._1hCoGzhwFdfF2vGbt8IjSy{background-color:#818384;}
.eMpKLK ._37tmRmxaFMjRRrvwcY2JmY{background-color:#272729;border:1px solid #343536;color:#D7DADC;}
.eMpKLK ._37tmRmxaFMjRRrvwcY2JmY:hover,.eMpKLK ._37tmRmxaFMjRRrvwcY2JmY:focus{background-color:#1A1A1B;border:1px solid #D7DADC;}
.eMpKLK ._1Ok0AiXwAeYl2SsUBaxgPC{color:#818384;}
.eMpKLK ._3n88GuUHAnxPu6a--3e0sz,.eMpKLK ._1TJuQGHgWvq2fnkVcPN7d0{background-color:#343536;}
.eMpKLK .XEkFoehJNxIH9Wlr5Ilzd.m-focused{background-color:#272729;}
.eMpKLK .t2A0mgkgGzc8cAahJsR7a{fill:#343536;}
.eMpKLK .t2A0mgkgGzc8cAahJsR7a.m-favorite{fill:#D7DADC;}
.eMpKLK ._26MVepkxZHzpNv1cuAA4JA.m-focused{background-color:#272729;}
@media(max-width:1250px){.eMpKLK ._2FVCfsIPxXtl6S-c69sXO4{display:none;}}
.eMpKLK ._2dqQ0-lgXxJq7S-QgupMNE{color:#818384;fill:#818384;}
.eMpKLK ._2dqQ0-lgXxJq7S-QgupMNE.m-active{color:#D7DADC;}
.eMpKLK ._2qcLS5et_OlJluP0WWDdsJ{color:#D7DADC;fill:#D7DADC;}
.eMpKLK .x0hiXHicn7r3BG9m1FJH4{border-right:1px solid #343536;}
.eMpKLK ._3dZnYgFFpifT-M_Vs2FAq6{fill:#D7DADC;border-radius:2px;}
.eMpKLK ._3dZnYgFFpifT-M_Vs2FAq6:hover,.eMpKLK ._3dZnYgFFpifT-M_Vs2FAq6:focus{background-color:rgba(215,218,220,0.1);outline:none;}
/* sc-component-id: s4rdgu3-0 */
.eAICLF{-webkit-flex:0;-ms-flex:0;flex:0;left:0;position:fixed;right:0;top:0;z-index:80;}
/* sc-component-id: s4rdgu3-1 */
.iYvFKz{padding-left:0px;-webkit-transition:margin-top 0.3s ease;transition:margin-top 0.3s ease;}
.iYvFKz .seo0sf-0{background-color:#1A1A1B;position:fixed;left:0;bottom:0;width:270px;overflow-y:scroll;overflow-x:hidden;z-index:4;}
/* sc-component-id: h4934a-0 */
.isqbWk{background-color:#1A1A1B;min-height:calc(100vh - 48px);}
.isqbWk:after{content:" ";position:fixed;top:100%;left:0;right:0;height:200px;background-color:#030303;}
/* sc-component-id: o51j48-0 */
.hGTztL{font-size:12px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:24px;text-transform:uppercase;border:1px solid transparent;border-radius:4px;box-sizing:border-box;text-align:center;-webkit-letter-spacing:1px;-moz-letter-spacing:1px;-ms-letter-spacing:1px;letter-spacing:1px;-webkit-text-decoration:none;text-decoration:none;font-size:12px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:24px;text-transform:uppercase;padding:3px 16px;background-color:transparent;border-color:#D7DADC;color:#D7DADC;fill:#D7DADC;font-size:14px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:32px;text-transform:uppercase;display:block;padding:0 16px;width:100%;margin-top:10px;}
.hGTztL:hover{border-color:#dfe1e3;color:#dfe1e3;fill:#dfe1e3;}
.hGTztL:active{border-color:#acaeb0;color:#acaeb0;fill:#acaeb0;}
.hGTztL:disabled,.hGTztL[disabled],.hGTztL[data-disabled]{border-color:rgba(215,218,220,0.5);color:rgba(215,218,220,0.5);fill:rgba(215,218,220,0.5);cursor:not-allowed;}
/* sc-component-id: o51j48-1 */
.lkdqxw{max-width:256px;white-space:normal;text-align:center;}
/* sc-component-id: s11ntmk-0 */
.blMQvr{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:8px 0;}
/* sc-component-id: s11ntmk-1 */
.kDJUEO{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;margin-left:8px;}
/* sc-component-id: s11ntmk-3 */
.jRGzVD{border-radius:4px;background:rgba(0,0,0,0.15);height:16px;margin:1.5px 0 1.5px -8px;width:16px;}
/* sc-component-id: s11ntmk-4 */
.hIWxVw{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;fill:inherit;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}
/* sc-component-id: s11ntmk-5 */
.kZsOoN{display:none;display:block;height:60px;-webkit-flex:0 0 80px;-ms-flex:0 0 80px;flex:0 0 80px;display:block;height:60px;-webkit-flex:0 0 80px;-ms-flex:0 0 80px;flex:0 0 80px;display:block;height:60px;-webkit-flex:0 0 80px;-ms-flex:0 0 80px;flex:0 0 80px;margin-left:8px;}
@media(min-width:420px){.kZsOoN{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:60px;-webkit-flex:0 0 80px;-ms-flex:0 0 80px;flex:0 0 80px;}}
/* sc-component-id: s11ntmk-6 */
.ihsrZL{-webkit-animation:none 1.5s ease infinite;animation:none 1.5s ease infinite;background:#272729;background-size:200%;border-radius:4px;border-radius:4px;-webkit-flex:1;-ms-flex:1;flex:1;height:100%;width:100%;border-radius:2px;position:relative;}
/* sc-component-id: s11ntmk-7 */
.hErNoh{-webkit-animation:none 1.5s ease infinite;animation:none 1.5s ease infinite;background:#272729;background-size:200%;border-radius:4px;height:20px;width:328px;}
/* sc-component-id: s11ntmk-8 */
.hvyqlW{-webkit-animation:none 1.5s ease infinite;animation:none 1.5s ease infinite;background:#272729;background-size:200%;border-radius:4px;height:10px;margin-top:8px;width:88px;}
/* sc-component-id: s11ntmk-9 */
.dfazTP{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;margin:auto 8px 0 0;}
/* sc-component-id: s11ntmk-10 */
.ghrRRY{-webkit-animation:none 1.5s ease infinite;animation:none 1.5s ease infinite;background:#272729;background-size:200%;border-radius:4px;height:12px;width:16px;}
/* sc-component-id: s11ntmk-11 */
.lmASNF{border-right:1px solid #343536;height:16px;margin:0 8px;vertical-align:middle;}
/* sc-component-id: s11ntmk-12 */
.ceypt{-webkit-animation:none 1.5s ease infinite;animation:none 1.5s ease infinite;background:#272729;background-size:200%;border-radius:4px;height:12px;width:110px;}
/* sc-component-id: s11ntmk-13 */
.duzqvS{-webkit-animation:none 1.5s ease infinite;animation:none 1.5s ease infinite;background:#272729;background-size:200%;border-radius:4px;height:12px;margin-left:8px;width:20px;}
/* sc-component-id: s11ntmk-14 */
.kaCpdv{border:1px solid #343536;margin-bottom:-1px;position:relative;z-index:0;position:relative;background-color:rgba(26,26,27,0.8);color:#818384;color:#818384;cursor:pointer;fill:#818384;overflow:hidden;position:relative;-webkit-backface-visibility:hidden;backface-visibility:hidden;margin-bottom:-1px;position:relative;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);z-index:0;border:1px solid #343536;}
.kaCpdv:hover{border:1px solid #818384;z-index:1;}
@media (min-width:640px){.kaCpdv{padding-left:40px;}}
.kaCpdv:hover{border:1px solid #818384;z-index:1;}
/* sc-component-id: rybpsf-0 */
.isNqYD{height:156px;overflow:hidden;margin-bottom:-20px;}
/* sc-component-id: s1rcgrht-0 */
.eEVuIz .hidden{display:none;}
/* sc-component-id: bzwakq-0 */
.bZEUhO{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#272729;height:35px;margin-right:-8px;margin-bottom:8px;}
/* sc-component-id: bzwakq-1 */
.cvMqVT{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;fill:inherit;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;margin:0px;padding:0 2px;max-height:24px;}
.cvMqVT .cYUyoUM3wmgRXEHv1LlZv:focus{border-radius:2px;background-color:rgba(215,218,220,0.1);outline:none;}
.cvMqVT ._1rZYMD_4xY3gRcSS3p8ODO{font-size:12px;font-weight:700;line-height:16px;}
.cvMqVT ._1rZYMD_4xY3gRcSS3p8ODO{font-size:12px;font-weight:700;line-height:16px;}
.cvMqVT ._1rZYMD_4xY3gRcSS3p8ODO{line-height:15px;margin:0 1px;text-align:center;width:32px;}
.cvMqVT .ceU_3ot04pOVIcrrXH9fY{margin-right:8px;}
@media (min-width:640px){.cvMqVT{display:none;}}
/* sc-component-id: bzwakq-2 */
.bjFASC{border:1px solid #343536;margin-bottom:-1px;position:relative;z-index:0;position:relative;background-color:rgba(26,26,27,0.8);color:#818384;color:#818384;cursor:pointer;fill:#818384;overflow:hidden;position:relative;cursor:pointer;}
.bjFASC .nL7Q54U2LLg9rkVdSxxLe{background:rgba(215,218,220,0.03);}
@media (max-width:639px){.bjFASC ._2MkcR85HDnYngvlVW2gMMa{border-radius:4px;height:60px;width:80px;}}
@media (min-width:640px){.bjFASC ._2MkcR85HDnYngvlVW2gMMa{border-radius:4px;-webkit-flex:1;-ms-flex:1;flex:1;height:100%;width:100%;}}
.bjFASC .m0n699kowSp8Wfa40lqpF{background-color:#D7DADC;}
.bjFASC ._2c1ElNxHftd8W_nZtcG9zf{border-radius:4px;-webkit-flex:1;-ms-flex:1;flex:1;height:100%;width:100%;}
.bjFASC .GnWcY6GPzeZ5rzsiQ98fo{-webkit-filter:blur(60px);filter:blur(60px);}
.bjFASC ._2YO2O4rMRYYMeH_t2y8M5w{color:#D7DADC;}
.bjFASC ._2rOixIHGmpfZB93ihJsw3V{color:#1A1A1B;}
.bjFASC ._38EcSQ9jzVrdtzkXO1cydX{display:none;display:block;height:60px;-webkit-flex:0 0 80px;-ms-flex:0 0 80px;flex:0 0 80px;display:block;height:60px;-webkit-flex:0 0 80px;-ms-flex:0 0 80px;flex:0 0 80px;display:block;height:60px;-webkit-flex:0 0 80px;-ms-flex:0 0 80px;flex:0 0 80px;}
@media(min-width:420px){.bjFASC ._38EcSQ9jzVrdtzkXO1cydX{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:60px;-webkit-flex:0 0 80px;-ms-flex:0 0 80px;flex:0 0 80px;}}.bjFASC:hover{border:1px solid #818384;z-index:1;}
@media (min-width:640px){.bjFASC{padding-left:40px;}}
.bjFASC .x7sinePdvDKj7bf-cdm4Z{border-right:1px solid #343536;}
.bjFASC ._1Hw7tY9pMr-T1F4P1C-xNU{border-radius:2px;}
.bjFASC ._1Hw7tY9pMr-T1F4P1C-xNU:hover,.bjFASC ._1Hw7tY9pMr-T1F4P1C-xNU:focus{background-color:rgba(215,218,220,0.1);outline:none;}
.bjFASC ._1UoeAeSRhOKSNdY_h3iS1O{font-size:12px;font-weight:700;line-height:16px;}
.bjFASC ._3-miAEojrCvx_4FQ8x3P-s{font-size:12px;font-weight:700;line-height:16px;}
.bjFASC ._15c1hqseW25EvRu0WP2Dq5{color:#818384;}
.bjFASC .undefined{font-size:12px;font-weight:400;line-height:16px;}
.bjFASC ._1L0pdcPf58t25Jy6ljHIKR{color:#D7DADC;}
.bjFASC .s46mo3ittWDxpPuCSXJ_T{color:#EA0027;}
.bjFASC .MMQAY3zdk1u4R9hIKTklf{color:#24A0ED;}
.bjFASC ._3hh-iGjzOv78L_7t_PUHev{fill:#D7DADC;}
.bjFASC ._2fCzxBE1dlMh4OFc7B3Dun{color:#818384;}
.bjFASC ._2tbHP6ZydRpjI44J3syuqC{color:#818384;}
.bjFASC ._3jOxDPIQ0KaOWpzvSQo-1s{color:#818384;}
.bjFASC ._3V0C4FGg6153xIBQjwsycq{color:#818384;}
.bjFASC ._3nhTfmUMmYib8x61No0h3r{color:#818384;}
.bjFASC ._1knR9NIIXdSFC9IeFN11JL{color:#75D377;}
.bjFASC ._2WSiH2JwZq4bXuvrDn-cgU{color:#FFD635;}
.bjFASC ._3wTfn3Meg1rXJ-qd2jUWMt{color:#FFD635;}
.bjFASC ._3yuF1RnBRJL4OS_STsoXcC{color:#FF585B;}
.bjFASC ._3guZWUAROueft8TPPGDZ-R{color:#FFB000;}
.bjFASC ._2BWw37nLL0rX6n7xcXciyD{color:#FF585B;}
.bjFASC .NI8uZ-19oHf9gPO8jOvFu{color:#75D377;}
.bjFASC ._SMl46gACTEszA_4A0Qfs{fill:#75D377;}
.bjFASC ._3IEDcFIIs_TeXsZtKZGzUd{font-size:12px;font-weight:400;line-height:16px;color:#FF585B;}
.bjFASC ._16Ih3bzeELRlI6AWeW-nFy{font-size:12px;font-weight:400;line-height:16px;color:#FF585B;}
.bjFASC ._1poyrkZ7g36PawDueRza-J{background:#1A1A1B;}
/* sc-component-id: s1akftvf-0 */
.dNrhli{-webkit-flex:0 0;-ms-flex:0 0;flex:0 0;}
/* sc-component-id: s1akftvf-1 */
.dwmvbJ{-webkit-flex:1 1 100%;-ms-flex:1 1 100%;flex:1 1 100%;width:100%;}
/* sc-component-id: s1akftvf-2 */
.fhgKHO{-webkit-flex:0 0 106px;-ms-flex:0 0 106px;flex:0 0 106px;}
/* sc-component-id: s1akftvf-3 */
.fnfHa{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}
/* sc-component-id: s17ivpdx-0 */
.faOhIY{border-radius:5px 5px 4px 4px;overflow:visible;word-wrap:break-word;background-color:#1A1A1B;color:#D7DADC;fill:#D7DADC;}
.faOhIY ._ZhON3a3vplThB8NFwuJn{font-size:10px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:12px;text-transform:uppercase;background-color:#1A1A1B;color:#818384;fill:#818384;}
.faOhIY ._ZhON3a3vplThB8NFwuJn button:hover,.faOhIY ._ZhON3a3vplThB8NFwuJn a:hover{background-color:rgba(129,131,132,0.2);}
/* sc-component-id: fa9nbo-0 */
.gCUJbB{background:#0079D3 url(https://www.redditstatic.com/desktop2x/img/id-cards/home-banner@2x.png) no-repeat center / cover;border-radius:4px 4px 0 0;height:34px;margin:-12px -12px 10px;}
/* sc-component-id: fa9nbo-2 */
.QJfmE{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-top:-23px;}
.QJfmE > *{display:inline-block;vertical-align:middle;}
/* sc-component-id: fa9nbo-3 */
.hyedSq{background:url('https://www.redditstatic.com/desktop2x/img/id-cards/snoo-home@2x.png');background-size:40px 68px;display:inline-block;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;height:68px;position:relative;width:40px;}
/* sc-component-id: fa9nbo-5 */
.ljlNSY{font-size:16px;font-weight:500;line-height:20px;display:inline-block;}
/* sc-component-id: fa9nbo-6 */
.lghAXa{margin-left:10px;margin-top:30px;}
/* sc-component-id: fa9nbo-13 */
.byKexP{font-family:Noto Sans,Arial,sans-serif;font-size:14px;font-weight:400;line-height:21px;margin-top:8px;word-wrap:break-word;}
/* sc-component-id: fa9nbo-14 */
.iooGMG{margin-top:12px;}
/* sc-component-id: fa9nbo-18 */
.RdprA{display:block;width:100%;font-size:14px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:32px;text-transform:uppercase;padding:0 16px;}
/* sc-component-id: fa9nbo-19 */
.lhvVig{display:block;padding:0 16px;width:100%;font-size:14px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:32px;text-transform:uppercase;margin-top:11px;}
/* sc-component-id: ii4q9d-0 */
.fePAzF{margin-top:16px;width:312px;}
/* sc-component-id: s3ijttu-1 */
.OohQE{padding:6px;}
/* sc-component-id: s3ijttu-2 */
.hBojQe{min-height:270px;min-width:300px;}
.hBojQe::before{content:'advertisement';color:inherit;display:block;font-size:10px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:12px;text-transform:uppercase;padding-bottom:4px;font-weight:500;}
/* sc-component-id: s21l9wz-0 */
.bmnsEB{-webkit-flex:0 0 33.333%;-ms-flex:0 0 33.333%;flex:0 0 33.333%;width:33.333%;}
/* sc-component-id: s1168hkq-0 */
.jpZMnH{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;margin-bottom:16px;padding:12px;}
/* sc-component-id: s1168hkq-1 */
.hSAKYw{font-size:12px;font-weight:500;line-height:16px;display:block;-webkit-text-decoration:none;text-decoration:none;text-transform:capitalize;}
/* sc-component-id: s1168hkq-2 */
.kddyLv{font-size:12px;font-weight:500;line-height:16px;text-align:center;padding-bottom:12px;}
/* sc-component-id: s1168hkq-3 */
.dikVDQ{-webkit-text-decoration:none;text-decoration:none;text-transform:capitalize;margin:0 4px;}
/* sc-component-id: s1168hkq-4 */
.hjxxdC{margin-top:16px;}
/* sc-component-id: s1ayxy26-0 */
.hYctxm{text-align:center;}
/* sc-component-id: s1ayxy26-1 */
.fedWgZ{font-size:12px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:24px;text-transform:uppercase;border:1px solid transparent;border-radius:4px;box-sizing:border-box;text-align:center;-webkit-letter-spacing:1px;-moz-letter-spacing:1px;-ms-letter-spacing:1px;letter-spacing:1px;-webkit-text-decoration:none;text-decoration:none;font-size:12px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:24px;text-transform:uppercase;padding:3px 16px;background-color:#D7DADC;border-color:#D7DADC;color:#1A1A1B;fill:#1A1A1B;width:128px;}
.fedWgZ:hover{background-color:#dfe1e3;border-color:#dfe1e3;color:#1A1A1B;fill:#1A1A1B;}
.fedWgZ:active,.fedWgZ.active{background-color:#acaeb0;border-color:#acaeb0;color:#1A1A1B;fill:#1A1A1B;}
.fedWgZ:disabled,.fedWgZ[disabled],.fedWgZ[data-disabled]{background-color:#ebeced;border-color:#ebeced;color:rgba(26,26,27,0.5);fill:rgba(26,26,27,0.5);cursor:not-allowed;}
/* sc-component-id: s1uypday-0 */
.cHkkoG{-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;position:relative;width:inherit;}
/* sc-component-id: s1uypday-1 */
.bftogP{margin-top:50vh;position:-webkit-sticky;position:sticky;top:calc(100vh - 40px);}
/* sc-component-id: s1uypday-5 */
.fqKXrr{position:-webkit-sticky;position:sticky;top:57px;}
/* sc-component-id: kufqoz-0 */
.bFtNdL{height:32px;}
/* sc-component-id: kufqoz-1 */
.dagesX{border-radius:100%;height:32px;margin-right:8px;width:32px;background:#0079D3;box-sizing:border-box;fill:#FFFFFF;padding:3px;}
/* sc-component-id: kufqoz-2 */
.eEEbxk{border-radius:100%;height:32px;margin-right:8px;width:32px;}
/* sc-component-id: kufqoz-3 */
.jvKTHE{width:100%;}
/* sc-component-id: kufqoz-4 */
.hsugzJ{font-size:12px;font-weight:500;line-height:16px;display:block;overflow:hidden;text-overflow:ellipsis;width:132px;}
.hsugzJ:hover{-webkit-text-decoration:underline;text-decoration:underline;}
/* sc-component-id: kufqoz-5 */
.cXpeRf{font-size:12px;font-weight:400;line-height:16px;padding-bottom:4px;}
/* sc-component-id: sdccme-0 */
.dGVBeH{min-width:0;width:100%;}
@media(min-width:960px){.dGVBeH{width:100%;}}
/* sc-component-id: s1ljaa4r-0 */
.iNXRIc{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;min-height:calc(100vh - 48px);}
/* sc-component-id: s1ljaa4r-1 */
.kgVjDg{z-index:3;}
/* sc-component-id: s1ljaa4r-2 */
.hgijtZ{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;position:relative;top:0;left:0;right:0;padding:0;background-color:#1A1A1B;}
/* sc-component-id: s1ljaa4r-3 */
.yPkkG{min-height:100%;overflow:hidden;position:relative;-webkit-flex:0 0 1;-ms-flex:0 0 1;flex:0 0 1;}
.yPkkG:before{content:' ';position:fixed;width:100%;height:100%;top:0;left:0;will-change:transform;}
/* sc-component-id: s1ljaa4r-4 */
.illVHt:before{background:#030303;}
/* sc-component-id: s1ljaa4r-5 */
.fmkWQd{-webkit-align-items:top;-webkit-box-align:top;-ms-flex-align:top;align-items:top;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin:0 auto;max-width:1248px;padding:20px 0;position:relative;}
@media(min-width:640px){.fmkWQd{padding:20px 24px;}}
/* sc-component-id: s1ljaa4r-6 */
.CUukh{display:none;-webkit-flex:0 0 312px;-ms-flex:0 0 312px;flex:0 0 312px;width:312px;margin-top:0;}
@media(min-width:960px){.CUukh{display:block;}}
/* sc-component-id: s1dqsdhz-0 */
.fLroyf{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;left:12px;position:absolute;right:12px;-webkit-transition:left 300ms ease-in-out;transition:left 300ms ease-in-out;z-index:3;}
@media(min-width:640px){.fLroyf{left:24px;right:24px;}}
@media(min-width:960px){.fLroyf{right:360px;}}
@media(max-width:639px){.fLroyf{left:8px;}}
/* sc-component-id: s8rr6fz-0 */
.kfLJdE{-webkit-align-items:top;-webkit-box-align:top;-ms-flex-align:top;align-items:top;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin:0 auto;max-width:1248px;}
/* sc-component-id: s8rr6fz-1 */
.eWwmfL{display:none;-webkit-flex:0 0 312px;-ms-flex:0 0 312px;flex:0 0 312px;width:312px;}
@media(min-width:960px){.eWwmfL{display:block;}}
/* sc-component-id: s8rr6fz-2 */
.kEJruH{height:40px;min-width:320px;width:100%;}
/* sc-component-id: s8rr6fz-3 */
.bhWWEo{background:#1A1A1B;}
/* sc-component-id: s4jiyd-0 */
.dYDuCS{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;height:100%;}
/* sc-component-id: mwgtia-0 */
.bfUTRJ{font-size:12px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:24px;text-transform:uppercase;border:1px solid transparent;border-radius:4px;box-sizing:border-box;text-align:center;-webkit-letter-spacing:1px;-moz-letter-spacing:1px;-ms-letter-spacing:1px;letter-spacing:1px;-webkit-text-decoration:none;text-decoration:none;font-size:12px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:24px;text-transform:uppercase;padding:3px 16px;background-color:#FF4500;border-color:#FF4500;color:#1A1A1B;padding:0;}
.bfUTRJ:hover{background-color:#ff6a32;border-color:#ff6a32;color:#1A1A1B;}
.bfUTRJ:active{background-color:#cc3700;border-color:#cc3700;color:#1A1A1B;}
.bfUTRJ:disabled,.bfUTRJ[disabled],.bfUTRJ[data-disabled]{background-color:#ffa27f;border-color:#ffa27f;color:rgba(26,26,27,0.5);cursor:not-allowed;}
/* sc-component-id: s1qt4be1-0 */
.juutRX{fill:#33a8ff;fill:currentColor;display:block;margin:0 auto;height:16px;width:16px;}
/* sc-component-id: s1qt4be1-1 */
.fkcbSO{fill:#33a8ff;fill:currentColor;display:block;margin:0 auto;height:16px;width:16px;}
/* sc-component-id: s1qt4be1-2 */
.kiEVp{fill:#33a8ff;fill:currentColor;display:block;margin:0 auto;height:16px;width:16px;}
/* sc-component-id: s1qt4be1-3 */
.cAaFtO{fill:#33a8ff;fill:currentColor;display:block;margin:0 auto;height:16px;width:16px;}
/* sc-component-id: s1qt4be1-4 */
.iiOULB{fill:#33a8ff;fill:currentColor;display:block;margin:0 auto;height:16px;width:16px;}
/* sc-component-id: s1qt4be1-5 */
.fAVHJE{fill:#33a8ff;fill:currentColor;display:block;margin:0 auto;height:16px;width:16px;}
/* sc-component-id: s1t1e1ub-1 */
.kabAwx{fill:#818384;}
/* sc-component-id: s1t1e1ub-3 */
.hHLUeR{font-size:10px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:12px;text-transform:uppercase;color:#818384;margin-top:1px;}
/* sc-component-id: s1t1e1ub-4 */
.FuFkN{font-size:12px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:24px;text-transform:uppercase;border:none;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:4px;padding:4px;}
/* sc-component-id: s1t1e1ub-5 */
.clxnGR{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:4px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}
/* sc-component-id: s1t1e1ub-7 */
.fXGokz{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}
/* sc-component-id: s1yee1w-0 */
.fKfgvn{font-size:10px;font-weight:700;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;line-height:12px;text-transform:uppercase;color:#818384;margin-top:1px;}
/* sc-component-id: s1yee1w-1 */
.hVXhHI{text-transform:capitalize;}
/* sc-component-id: s1yee1w-2 */
.bhDOuz{fill:rgba(215,218,220,0.2);height:20px;width:20px;}
/* sc-component-id: s1yee1w-3 */
.aVOJu{fill:#D7DADC;height:20px;width:20px;}
/* sc-component-id: s1yee1w-4 */
.hYAhIh{fill:rgba(215,218,220,0.2);height:20px;width:20px;}
/* sc-component-id: s1yee1w-5 */
.dPChbf{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-left:12px;}
/* sc-component-id: s1yee1w-6 */
.eegxjA{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;position:relative;}
.eegxjA ~ .eegxjA{margin-left:4px;}
/* sc-component-id: s1yee1w-7 */
.dEQgTg{outline:none;}
/* sc-component-id: s1yee1w-8 */
.kuMSMg{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;padding:10px 16px 10px 0;}
/* sc-component-id: jeicq4-0 */
.dSBshO{width:inherit;}
/* sc-component-id: sc-keyframes-gFkiFS */
@-webkit-keyframes gFkiFS{0%{opacity:0;-webkit-transform:scale(1.8);-ms-transform:scale(1.8);transform:scale(1.8);}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1;}}
@keyframes gFkiFS{0%{opacity:0;-webkit-transform:scale(1.8);-ms-transform:scale(1.8);transform:scale(1.8);}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1;}}
</style><style data-href="chunkCSS/RedesignContentFonts.b22742b7754d9701eb81.css">@font-face{font-family:Noto Sans;font-weight:400;font-style:normal;src:url(https://www.redditstatic.com/desktop2x/fonts/NotoSans/Regular-d6a6aa8dc0f93416a832ea04a18c6fb8.woff2) format("woff2"),url(https://www.redditstatic.com/desktop2x/fonts/NotoSans/Regular-e6bbcdd30d3bd4d6b170bcb6d3552cab.woff) format("woff")}@font-face{font-family:Noto Sans;font-weight:400;font-style:italic;src:url(https://www.redditstatic.com/desktop2x/fonts/NotoSans/Italic-fca7c15cdda5570c8f739b9d71e9ed6d.woff2) format("woff2"),url(https://www.redditstatic.com/desktop2x/fonts/NotoSans/Italic-5267af566ab853eb9d74db1a78a46c67.woff) format("woff")}@font-face{font-family:Noto Sans;font-weight:700;font-style:normal;src:url(https://www.redditstatic.com/desktop2x/fonts/NotoSans/Bold-d4ba4ecba17e90993f442f7bb082a3a2.woff2) format("woff2"),url(https://www.redditstatic.com/desktop2x/fonts/NotoSans/Bold-c34ba754b7235b49d33b294ff7a54179.woff) format("woff")}@font-face{font-family:Noto Sans;font-weight:700;font-style:italic;src:url(https://www.redditstatic.com/desktop2x/fonts/NotoSans/Bold-Italic-be39cd37f002d25d500c67b88871bed4.woff2) format("woff2"),url(https://www.redditstatic.com/desktop2x/fonts/NotoSans/Bold-Italic-255b4934a1f414dd312aa89382d65114.woff) format("woff")}
@font-face{font-family:Noto Mono;font-weight:400;font-style:normal;src:url(https://www.redditstatic.com/desktop2x/fonts/NotoMono/Regular-b16bb0524a7e7ee597970333c0c67180.woff2) format("woff2"),url(https://www.redditstatic.com/desktop2x/fonts/NotoMono/Regular-e6bbcdd30d3bd4d6b170bcb6d3552cab.woff) format("woff")}@font-face{font-family:Noto Mono;font-weight:400;font-style:normal;src:url(https://www.redditstatic.com/desktop2x/fonts/NotoMono/el-Regular-29d72243d2cd6145b28bcb80dc33f0e4.woff2) format("woff2"),url(https://www.redditstatic.com/desktop2x/fonts/NotoMono/el-Regular-06ee3f893717454d11a16c3e8d0aa9f9.woff) format("woff");unicode-range:u+0370-03ff,u+1f??}
/*# sourceMappingURL=RedesignContentFonts.b22742b7754d9701eb81.css.map*/</style><style data-href="chunkCSS/RedesignSystemFonts.63df12c7826437b3752c.css">@font-face{font-family:IBMPlexSans;font-weight:400;font-style:normal;src:url(https://www.redditstatic.com/desktop2x/fonts/IBMPlexSans/Regular-116bb6d508f5307861d3b1269bc597e7.woff2) format("woff2"),url(https://www.redditstatic.com/desktop2x/fonts/IBMPlexSans/Regular-e6bbcdd30d3bd4d6b170bcb6d3552cab.woff) format("woff")}@font-face{font-family:IBMPlexSans;font-weight:500;font-style:normal;src:url(https://www.redditstatic.com/desktop2x/fonts/IBMPlexSans/Medium-c4b185e25a4dde85a29f902cd5ce5360.woff2) format("woff2"),url(https://www.redditstatic.com/desktop2x/fonts/IBMPlexSans/Medium-1051a531d3e1ee3483a6533158557139.woff) format("woff")}@font-face{font-family:IBMPlexSans;font-weight:700;font-style:normal;src:url(https://www.redditstatic.com/desktop2x/fonts/IBMPlexSans/Bold-875de5047556e7c822519d95d7ee692d.woff2) format("woff2"),url(https://www.redditstatic.com/desktop2x/fonts/IBMPlexSans/Bold-c34ba754b7235b49d33b294ff7a54179.woff) format("woff")}
/*# sourceMappingURL=RedesignSystemFonts.63df12c7826437b3752c.css.map*/</style><style data-href="chunkCSS/RedesignOldContentFonts.81d01de2e8dc152fec34.css"></style><style data-href="chunkCSS/Governance~Reddit.191276fe35b6ad1cd61c.css">@font-face{font-family:redesignFont;src:url(https://www.redditstatic.com/desktop2x/fonts/redesignIcon/redesignFont.b0419b89b9448e2ee48b97a2167a634e.eot),url(https://www.redditstatic.com/desktop2x/fonts/redesignIcon/redesignFont.b0419b89b9448e2ee48b97a2167a634e.woff),url(https://www.redditstatic.com/desktop2x/fonts/redesignIcon/redesignFont.b0419b89b9448e2ee48b97a2167a634e.ttf),url(https://www.redditstatic.com/desktop2x/fonts/redesignIcon/redesignFont.b0419b89b9448e2ee48b97a2167a634e.svg)}.icon:before{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:redesignFont}.icon-addCollection:before{content:"\F101"}.icon-addGild:before{content:"\F102"}.icon-addGildDashed:before{content:"\F103"}.icon-admin:before{content:"\F104"}.icon-approve:before{content:"\F105"}.icon-archived:before{content:"\F106"}.icon-calendar:before{content:"\F107"}.icon-chevronCollapse:before{content:"\F108"}.icon-clear:before{content:"\F109"}.icon-coin:before{content:"\F10A"}.icon-collection:before{content:"\F10B"}.icon-comment:before{content:"\F10C"}.icon-create:before{content:"\F10D"}.icon-crosspost:before{content:"\F10E"}.icon-distinguishShield:before{content:"\F10F"}.icon-downvote:before{content:"\F110"}.icon-dropdownTriangle:before{content:"\F111"}.icon-embed:before{content:"\F112"}.icon-envelope:before{content:"\F113"}.icon-expand:before{content:"\F114"}.icon-expandoArrowCollapse:before{content:"\F115"}.icon-expandoArrowExpand:before{content:"\F116"}.icon-expandoMediaGif:before{content:"\F117"}.icon-expandoMediaImage:before{content:"\F118"}.icon-expandoMediaLightbox:before{content:"\F119"}.icon-expandoMediaLink:before{content:"\F11A"}.icon-expandoMediaText:before{content:"\F11B"}.icon-expandoMediaVideo:before{content:"\F11C"}.icon-gif:before{content:"\F11D"}.icon-gild:before{content:"\F11E"}.icon-hide:before{content:"\F11F"}.icon-ignoreReport:before{content:"\F120"}.icon-info:before{content:"\F121"}.icon-link:before{content:"\F122"}.icon-list:before{content:"\F123"}.icon-live:before{content:"\F124"}.icon-lock:before{content:"\F125"}.icon-menu:before{content:"\F126"}.icon-modActions:before{content:"\F127"}.icon-modSettings:before{content:"\F128"}.icon-op:before{content:"\F129"}.icon-outboundLink:before{content:"\F12A"}.icon-pencil:before{content:"\F12B"}.icon-photos:before{content:"\F12C"}.icon-planet:before{content:"\F12D"}.icon-plus:before{content:"\F12E"}.icon-premium:before{content:"\F12F"}.icon-promoted:before{content:"\F130"}.icon-remove:before{content:"\F131"}.icon-report:before{content:"\F132"}.icon-save:before{content:"\F133"}.icon-share:before{content:"\F134"}.icon-source:before{content:"\F135"}.icon-spam:before{content:"\F136"}.icon-sticky:before{content:"\F137"}.icon-tag:before{content:"\F138"}.icon-text:before{content:"\F139"}.icon-unpin:before{content:"\F13A"}.icon-upvote:before{content:"\F13B"}.icon-video:before{content:"\F13C"}
/*# sourceMappingURL=Governance~Reddit.191276fe35b6ad1cd61c.css.map*/</style><style data-href="chunkCSS/Reddit.f9e79d855d68c739a635.css">
._5IWt6wvqkAL0fRSJBu25B{height:10px;margin-right:5px;vertical-align:middle;width:10px}
._1H6-wE3jxCdsIeXW5AMjj8{display:-ms-inline-flexbox;display:inline-flex}.-kceiAQn0jpWOpu7qZRjD:focus,._1H6-wE3jxCdsIeXW5AMjj8:focus{outline-width:0}._1H6-wE3jxCdsIeXW5AMjj8:focus>.-kceiAQn0jpWOpu7qZRjD{outline:2px auto Highlight;outline:5px auto -webkit-focus-ring-color}.-kceiAQn0jpWOpu7qZRjD{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center}
._2jjk9b3mpveU6Vpam4kPBm{display:-ms-flexbox;display:flex;-ms-flex-direction:row-reverse;flex-direction:row-reverse}
._1vXXD2qKLnHetdKvisFzBD,.x0hiXHicn7r3BG9m1FJH4{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}.x0hiXHicn7r3BG9m1FJH4{margin-right:8px;padding-right:8px}._3dZnYgFFpifT-M_Vs2FAq6{height:16px;line-height:14px;padding:8px;width:16px}._3dZnYgFFpifT-M_Vs2FAq6~._3dZnYgFFpifT-M_Vs2FAq6{margin-left:8px}
._3bwuX1FpzX5u_wA4guPMPr{display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end;margin-top:20px}.Jhin6G-lA_hRx1B2Fsd4n{position:relative;width:500px}._79WkapNMwGIVAyl6zLB7j{height:16px;position:absolute;right:16px;top:16px;width:16px}.hfVDp17HN3YB0M-CBz_f7{font-family:Noto Sans,Arial,sans-serif;font-size:14px;font-weight:400;line-height:21px;margin:4px 0 20px}._1y1DpSvV8z-efiRs1QAYXH{font-size:16px;font-weight:500;line-height:20px}._3o6OMyfFgjSd0ypaod08lL{font-weight:500}.RrqK6usE8PEMhLL7FD-iE{margin-top:8px}._3azUNnNEaA5eEJp_2vo9wc{font-size:14px;font-weight:700;letter-spacing:.5px;line-height:32px;text-transform:uppercase}._1ZuJ4cYdwXBjhOxsWSpt_J{margin-left:8px}
._2lPBwpVCWIEI428aTPAwZx{height:12px;width:12px}._1_Rq-E5LCS_6JTARElGK12{height:12px;position:absolute;right:12px;top:12px;width:12px}._2IHh1GBfUxJVQQX0dJvAry{border-radius:4px;border-style:solid;border-width:1px;box-shadow:0 1px 4px 0 rgba(0,0,0,.1);padding:16px 12px;position:fixed;right:4px;top:46px;width:260px;z-index:100}._2IHh1GBfUxJVQQX0dJvAry:before{background-color:#169df0;border-radius:3px;border-style:solid;border-width:2px 0 0 2px;content:"";height:12px;position:absolute;right:47px;top:-8px;transform:rotate(45deg);width:12px}@media (min-width:1210px){._2IHh1GBfUxJVQQX0dJvAry:before{right:193px}}._1l7oRxdMdQQ7NG2BqRCukJ{background-color:#169df0;border-radius:4px 4px 0 0;height:8px;left:0;position:absolute;right:0;top:0}._3tEYeY-LfC8l7tb0sWeImJ{font-size:14px;font-weight:500;line-height:18px}._42_eHTHzRRdWB7Fg8R_QS{font-size:14px;line-height:21px}._33SFF8h93OHkDyAJ59D1nc,._42_eHTHzRRdWB7Fg8R_QS{font-family:Noto Sans,Arial,sans-serif;font-weight:400}._33SFF8h93OHkDyAJ59D1nc{font-size:12px;line-height:18px;margin:8px 0 12px}._9wv2Od0X3vE5kIG9M0Ic{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;width:100%}._193xt0mDvkWqbClnP3Aj6T{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1}.BwIqd_kQSoiSr3qEDtdp_{margin-left:4px}
.nSJCQrnLY07CzwT8tTsNO{border-radius:4px;border-style:solid;border-width:1px;box-shadow:0 1px 4px 0 rgba(0,0,0,.1);padding:16px 12px;position:absolute;right:4px;top:46px;width:280px}.nSJCQrnLY07CzwT8tTsNO:before{border-radius:3px;border-style:solid;border-width:2px 0 0 2px;content:"";height:12px;right:19px;position:absolute;top:-8px;transform:rotate(45deg);width:12px}.csebgIdGwT3fBJ8kUT2aQ{font-size:10px;font-weight:700;letter-spacing:.5px;line-height:12px;text-transform:uppercase}.rsZg2IAMPbcDGNPnNIBy_{font-size:14px;font-weight:500;line-height:18px}._3m-DocsNGlVUjAtAm7ZZLi{font-family:Noto Sans,Arial,sans-serif;font-size:12px;font-weight:400;line-height:18px;margin:8px 0 12px}._3tJL-r-lrTcB_GkrrlZxEN{width:112px}
@media (min-width:1180px){._3Wg53T10KuuPmyWOMWsY2F{width:120px}}._234aKY_LemFWuSTYVoshHn{height:16px;margin-right:8px;width:16px}._2qcLS5et_OlJluP0WWDdsJ{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:row;flex-direction:row;font-size:12px;line-height:16px;width:120px}@media (min-width:1180px){.U3FRqDA_Qhr4icbaNXSuf button{width:70px}}._1JBkpB_FOZMZ7IPr3FyNfH{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-direction:row;flex-direction:row;display:none}@media (min-width:616px){._1JBkpB_FOZMZ7IPr3FyNfH{display:-ms-flexbox;display:flex}}._31lJpVPojF0SAR5usRZ36h{display:none}@media (min-width:1310px){._31lJpVPojF0SAR5usRZ36h{display:block}}._19oWd7e3z7-ztUGzdIoCR7{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-direction:row;flex-direction:row}.Z_HUY3BUsGOBOtdmH94ZS{margin-left:4px}@media (min-width:1180px){.Z_HUY3BUsGOBOtdmH94ZS{margin-left:16px}}._3Z5rfDuvQDBNfBgpXdnt_b{display:-ms-inline-flexbox;display:inline-flex;position:absolute}
._165RkdCO9QoaErMgkkAsEc{border-radius:4px;height:20px;width:20px}
._3CG2U_hX3HI-ibl5v2RCq1{height:20px;margin-top:-10px;pointer-events:none;position:absolute;right:8px;top:50%;width:20px}._3jiriKeNer8y0-1r6oWIFM{box-sizing:border-box;height:36px;position:relative;width:72px}._3jiriKeNer8y0-1r6oWIFM.xjCRzBW5hOCrr1kwceHRs button{cursor:default}@media (min-width:995px){._3jiriKeNer8y0-1r6oWIFM{width:270px}}._1GieMuLljOrqnVpRAwz7VP{display:none;font-size:14px;font-weight:500;line-height:18px}@media (min-width:995px){._1GieMuLljOrqnVpRAwz7VP{display:inline}}.eZQ5o2PrhR59wkAtPbxMU{color:#0079d3;fill:#0079d3}._1jKtP65jnxLmoGCSqxAgkZ,.eZQ5o2PrhR59wkAtPbxMU{height:22px;left:10px;margin-top:-11px;position:absolute;top:50%;width:22px}._139PgjqaVJ8tq4kF4QznMX{color:#0079d3;fill:#0079d3}._1VemFsujoJ-6RR82VRSPeM{color:#75d377;fill:#75d377}.TMMvbwyeh9yuHKmQWHrE3{box-sizing:border-box;border-radius:0 0 4px 4px;left:-1px;margin-top:-1px;max-height:482px;overflow-x:hidden;overflow-y:scroll;padding-bottom:16px;position:absolute;right:0;top:100%;width:270px}._334CPGEglbIA_2CwQAn43P,.JisrPypso_3RK4iDgDdke{color:#ddbd37;fill:#ddbd37}.JisrPypso_3RK4iDgDdke{height:22px;left:10px;margin-top:-11px;position:absolute;top:50%;width:22px}.yeM4RoZW6FtJxVPe3Z84C{color:#ff4500;fill:#ff4500}._2ulegyMhoTE_WCFyBC-IBx{color:#ff4500;fill:#ff4500}._2L4XuYlbElLC5REx1XpdG_,._2ulegyMhoTE_WCFyBC-IBx{height:22px;left:10px;margin-top:-11px;position:absolute;top:50%;width:22px}._2L4XuYlbElLC5REx1XpdG_{color:#75d377;fill:#75d377}._2FVCfsIPxXtl6S-c69sXO4{cursor:pointer;height:16px;margin-top:-7px;position:absolute;right:36px;top:50%;width:16px}._2FVCfsIPxXtl6S-c69sXO4._371yhrlWAj7dxOsk1PWqG4{cursor:default;opacity:.2}.h-jI8r2f9ozTNqu_2TBeY{bottom:0;border-radius:4px;box-sizing:border-box;height:100%;left:0;line-height:34px;overflow:hidden;padding-left:40px;padding-right:56px;position:absolute;text-align:left;text-overflow:ellipsis;top:0;white-space:nowrap;width:100%}._3fvJBCH6c6P0NvMwoqK9MJ{font-size:13px;line-height:14px;text-align:center}._1hCoGzhwFdfF2vGbt8IjSy,._3fvJBCH6c6P0NvMwoqK9MJ{height:22px;left:10px;margin-top:-11px;position:absolute;top:50%;width:22px}._1hCoGzhwFdfF2vGbt8IjSy{border-radius:50%}
._26MVepkxZHzpNv1cuAA4JA{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}.oiDWziAp_Bua6rb7oQKXs{width:100%}.cq0sTeCPC4GI78UNPdClD{-ms-flex-positive:0;flex-grow:0;height:20px;width:20px}._1nBP1OfpQDgTmzRFqaVult{-ms-flex-positive:1;flex-grow:1;font-size:14px;line-height:18px;margin-left:8px;max-width:208px;overflow:hidden;text-align:left;text-overflow:ellipsis;white-space:nowrap}
._1Ok0AiXwAeYl2SsUBaxgPC{font-size:10px;font-weight:500;line-height:16px;text-transform:uppercase}
.XEkFoehJNxIH9Wlr5Ilzd{-ms-flex-direction:row;flex-direction:row}._17q-ew4FcK6U0ZiybWkIGG,.XEkFoehJNxIH9Wlr5Ilzd{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex}._3HTtcITrR-crvsRovLrijl{-ms-flex-positive:0;flex-grow:0;font-size:12px;height:20px;line-height:13px;vertical-align:middle;width:20px}._2aqH0n-kSzFY7HZZ5GL-Jb{-ms-flex-positive:1;flex-grow:1;font-size:14px;line-height:18px;margin-left:8px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._2aqH0n-kSzFY7HZZ5GL-Jb._2H51id1RX9dGNrtrAIOMGK{font-size:16px;color:#0079d3}._2Efd4uMAp4YawdvL9Zhdhv{font-size:12px;font-weight:400;line-height:16px;-ms-flex-positive:1;flex-grow:1;margin-left:8px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:4px;display:inline-block;vertical-align:top}._1JNAu7U5gWAkRoykwfUWhY{font-size:10px;font-weight:700;letter-spacing:.5px;line-height:12px;text-transform:uppercase;padding:16px 16px 8px}.t2A0mgkgGzc8cAahJsR7a{margin-left:8px}._3Hhjob0kyyqVjBXut8STgU,.t2A0mgkgGzc8cAahJsR7a{-ms-flex-positive:0;flex-grow:0;font-size:12px;height:20px;line-height:13px;vertical-align:middle;width:20px}._3Hhjob0kyyqVjBXut8STgU{fill:#0079d3}.BNJ5Y52EyQmTHFZJwjoXJ{display:-ms-flexbox;display:flex;-ms-flex:1 1 100%;flex:1 1 100%;-ms-flex-direction:column;flex-direction:column;padding-right:8px}._3P_WRCH8aFjwOFA7B1RlBL{margin-left:24px}
._3n88GuUHAnxPu6a--3e0sz{height:16px;width:160px}._1TJuQGHgWvq2fnkVcPN7d0{height:20px;margin-top:16px;width:100%}
._37tmRmxaFMjRRrvwcY2JmY{height:30px;margin:16px 16px 0;outline:none;padding:0 6px;box-sizing:border-box;width:calc(100% - 32px)}._2MgAHlPDdKvXiG-Qbz5cbC{padding:8px 24px}._2XRPX11qL4-HxWPuHAzOW5{padding:16px 24px 8px}
.wbuVa6YG7M8XkqaQ7Jh2I{-ms-flex-align:center;align-items:center;box-sizing:border-box;display:-ms-flexbox;display:flex;-ms-flex-flow:row nowrap;flex-flow:row nowrap;height:36px;position:relative;width:72px}@media (min-width:995px){.wbuVa6YG7M8XkqaQ7Jh2I{width:270px}}._2dqQ0-lgXxJq7S-QgupMNE{-ms-flex-align:center;align-items:center;border-radius:4px;display:-ms-flexbox;display:flex;padding:4px 8px;position:relative}._2dqQ0-lgXxJq7S-QgupMNE.m-active ._2vaxHFhEXUi8w9mcExfLrx{color:#0079d3;fill:#0079d3}._2dqQ0-lgXxJq7S-QgupMNE.m-highlighted{background-color:#fff;z-index:96}._2dqQ0-lgXxJq7S-QgupMNE.m-disabled{cursor:default}.kYSum1Wd7yU21JxlhEpQf{font-size:14px;font-weight:500;line-height:18px;display:none}@media (min-width:995px){.kYSum1Wd7yU21JxlhEpQf{display:inline}}._2vaxHFhEXUi8w9mcExfLrx{height:22px;margin-right:4px;width:22px}._2rWvOyeOipRn46kEPRRe-K{background:#e41536;border-radius:50%;bottom:4px;left:6px;height:10px;position:absolute;width:10px}._24l8oamR3PHwMxXhdqxV3P{background-color:rgba(28,28,28,.5);bottom:0;left:0;position:fixed;right:0;top:0;z-index:95}
.GnWcY6GPzeZ5rzsiQ98fo{background-size:cover}._2MkcR85HDnYngvlVW2gMMa{position:relative;vertical-align:bottom;overflow:hidden}._2hIvPRO2xz4rn9LXAJXYDa{height:20px;left:50%;margin-left:-10px;margin-top:-10px;pointer-events:none;position:absolute;top:50%;width:20px}._25ZOvQhQdAqwdxPd5z-KFB{display:none}._33Pa96SGhFVpZeI6a7Y_Pl{background-size:cover;background-repeat:no-repeat;background-position:50% top}.m0n699kowSp8Wfa40lqpF{bottom:0;border-top-left-radius:4px;height:18px;position:absolute;right:0;width:18px}._2rOixIHGmpfZB93ihJsw3V{font-size:10px;margin-left:4px;vertical-align:baseline}._2YO2O4rMRYYMeH_t2y8M5w{position:relative;background-color:transparent}._2c1ElNxHftd8W_nZtcG9zf{box-sizing:border-box;border:1px solid}._78ohNtfA1urjgUhnN1jLi{height:100%}
.nL7Q54U2LLg9rkVdSxxLe{display:relative}._1Y6dfr4zLlrygH-FLmr8x-{-ms-flex:1 1 100%;flex:1 1 100%;position:relative;word-break:break-word}@media (min-width:640px){._1Y6dfr4zLlrygH-FLmr8x-{margin-left:8px}}._1qc1-Anfrhr6APGcBKFk8M{margin-bottom:8px}._3r40yytzBnldjGGOrs2mCw{width:auto}.ssgs3QQidkqeycI33hlBa{-ms-flex-positive:1;flex-grow:1}._36kpXQ-z7Hr61j8878uRkP{-ms-flex-align:center;align-items:center;bottom:-8px;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;left:-4px;position:absolute;right:0}@media (max-width:639px){._1wDt70OnYnqsrm0XIsNn8v{display:none}}._35zWJjb5RJMIMkexZ2Prus{-ms-flex:0 0 24px;flex:0 0 24px}@media (max-width:639px){._35zWJjb5RJMIMkexZ2Prus{display:none}}._2XDITKxlj4y3M99thqyCsO{display:-ms-flexbox;display:flex;position:relative;-ms-flex-direction:row;flex-direction:row;padding:8px}@media (max-width:639px){._2XDITKxlj4y3M99thqyCsO{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}._2Ddj1d6vOe9NlJqkdothNe{position:absolute;bottom:4px;right:8px}@media (min-width:640px){._2Ddj1d6vOe9NlJqkdothNe{display:none}}.iRkLLvxarfGu_2c7HxhW0{padding-bottom:8px}._2FcpdQwjwRwk7X_NiZub8x{margin-right:8px}._2e9Lv1I3dOmICVO9fg3uTG{transition:filter .5s;height:60px;width:80px;border:none;border-radius:4px}._38EcSQ9jzVrdtzkXO1cydX{border-radius:4px;display:block}@media (max-width:639px){._38EcSQ9jzVrdtzkXO1cydX{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:end;align-items:flex-end;-ms-flex-direction:column;flex-direction:column;min-height:80px}}.rmPDRyja27ULjwD3rW14H.rmPDRyja27ULjwD3rW14H{margin-bottom:0}
._13jLUpnQtcA8FXyw5Kv06q{display:-ms-inline-flexbox;display:inline-flex;-ms-flex:0 0 auto;flex:0 0 auto}
.lrzZ8b0L6AzLkQj5Ww7H1{display:inline-block}._2fiIRtMpITeCAzXc4cANKp{margin-bottom:10px}._2xu1HuBz1Yx6SP10AGVx_I{display:-ms-inline-flexbox;display:inline-flex;margin:0;padding:0;vertical-align:text-top}
._2uZcUQgumllsYgn5TxSizG{font-size:12px;line-height:20px}._1u5ghYiKbGasP3ORCsbasV{margin-left:4px}
._1wrPey753PxLyLbB0NCEZP{display:inline-block}.qgDkGQIoFEpMMeNtfI0BY{font-size:13px;padding-left:3px;vertical-align:sub}.FKej75-i0z1XubMqeVh9Q{display:inline-block;margin-right:8px}.SQnoC3ObvgnGjWt90zD9Z{color:inherit}.y8HYJ-y_lTUHkQIc1mdCq{display:inline;position:relative;text-decoration:none;word-break:break-word}._1hLrLjnE1G_RBCNcN9MVQf{visibility:hidden;position:absolute;left:-99999px;top:0}
._1x9diBHPBP-hL1JiwUwJ5J{font-size:14px;font-weight:500;line-height:18px;color:#ff585b;padding-left:3px;padding-right:24px}._1xKxnscCn2PjBiXhorZef4,._2B0OHMLKb9TXNdd9g5Ere-{height:16px;padding-right:4px;vertical-align:top}._1LLqoNXrOsaIkMtOuTBmO5{height:20px;padding-right:8px;vertical-align:bottom}.QB2Yrr8uihZVRhvwrKuMS{height:18px;padding-right:8px;vertical-align:top}
._1hdDhVEGWEdVJcgy2XQ2Eq{box-sizing:border-box;display:inline-block;-ms-flex:none;flex:none;height:16px;margin-right:8px;vertical-align:middle;width:16px}._1hdDhVEGWEdVJcgy2XQ2Eq._1biYoFBD4CLgOvrr_HinV4{border:0;height:32px;width:32px}._1M-azLenSs2UgxeZ2rJX20{margin-left:8px}._2-DL_E9cFo1xsqU3Q8BXnJ{-ms-flex:none;flex:none}
._2GyPfdsi-MbQFyHRECo9GO,._30BbATRhFv3V83DHNDjJAO{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:row;flex-direction:row}._2GyPfdsi-MbQFyHRECo9GO{height:48px}._2vkeRJojnV7cb9pMlPHy7d,.Y4MkVr6trrdypfZVUkpIA{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;box-sizing:border-box;-ms-flex-direction:row;flex-direction:row;-ms-flex-positive:1;flex-grow:1;padding:0 20px}.Y4MkVr6trrdypfZVUkpIA{max-width:100vw}._1iqnOY2Y57wmetu8MAjiId{-ms-flex-positive:1;flex-grow:1;max-width:390px;margin:0 auto}._2dlTXDaX9JuL0bekTwhV18{-ms-flex-positive:1;flex-grow:1;margin-left:16px;margin-right:16px;width:auto}._1O4jTk-dZ-VIxsCuYB6OR8{height:32px;padding:8px 8px 8px 0;width:32px}._1bWuGs_1sq4Pqy099x_yy-{display:none;height:18px;margin-right:20px;width:auto}@media (min-width:1070px){._1bWuGs_1sq4Pqy099x_yy-{display:block}}._3dnbqz69WJTFCss8wl7Wlk{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-positive:1;flex-grow:1}._23q1waDr4n_2fR5A7zcZzb{display:none}@media (min-width:788px){._23q1waDr4n_2fR5A7zcZzb{display:-ms-flexbox;display:flex}}._2u8LqkbMtzd0lpblMFbJq5{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-positive:0;flex-grow:0}
._1rZYMD_4xY3gRcSS3p8ODO{pointer-events:none;word-break:normal}
._2GCoZTwJW7199HSwNZwlHk{position:relative}.jR747Vd1NbfaLusf5bHre{display:inline-block;overflow:hidden;width:16px;height:18px;line-height:16px;font-size:16px}.ZyxIIl4FP5gHGrJDzNpUC{position:relative}._1iKd82bq_nqObFvSH1iC_Q{display:inline-block;overflow:hidden;height:24px;width:24px;font-size:16px;line-height:24px}
._39UOLMgvssWenwbRxz_iEn{position:relative}._3wVayy5JvIMI67DheMYra2{display:inline-block;overflow:hidden;width:16px;height:16px;line-height:16px;font-size:16px}._2Jxk822qXs4DaXwsN7yyHA{position:relative}._2q7IQ0BUOWeEZoeAxN555e{display:inline-block;overflow:hidden;height:24px;width:24px;font-size:16px;line-height:24px}
._2k73nZrjAYiwAj9hv7K-kq,.ceU_3ot04pOVIcrrXH9fY{background-position:50%;background-repeat:no-repeat;background-size:contain;cursor:pointer}
.cYUyoUM3wmgRXEHv1LlZv{height:24px;width:24px}.nmB1I04Z-G4nY3g3s_17F{animation:nmB1I04Z-G4nY3g3s_17F .4s ease 0s 1 both}._1L6r7KisMt3CYUGWSEMGiR{animation:_1L6r7KisMt3CYUGWSEMGiR .4s ease 0s 1 both}@keyframes nmB1I04Z-G4nY3g3s_17F{0%{transform:translateY(0)}50%{transform:translateY(-10px)}90%{transform:translateY(2px)}to{transform:translateY(0)}}@keyframes _1L6r7KisMt3CYUGWSEMGiR{0%{transform:translateY(0)}50%{transform:translateY(10px)}90%{transform:translateY(-2px)}to{transform:translateY(0)}}
.K4Eem3pMbRbAYioOfqN5E{box-sizing:border-box;height:100%;margin:auto}.-DOLBAFWXMQX1Q3ErGO8I,.K4Eem3pMbRbAYioOfqN5E{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;width:100%}.-DOLBAFWXMQX1Q3ErGO8I{-ms-flex:1;flex:1}i._33YMDoIltkTaZemWTS7Yki{color:#818384;font-size:16px;margin-right:8px}.P9Qd6oTCWgLr3ackKg0I5{display:-ms-inline-flexbox;display:inline-flex;min-width:0}._15Igkrvvp7jIfVHt0eKzFd:before{margin-right:8px}._15Igkrvvp7jIfVHt0eKzFd:after,._15Igkrvvp7jIfVHt0eKzFd:before{border-right:1px solid #343536;content:"";display:inline-block;height:16px;vertical-align:text-bottom;width:0}._15Igkrvvp7jIfVHt0eKzFd:after{margin:0 8px}._25ONQRwoX20oeRXFl_FZXt{display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end}button.c_rRg_d32D6ZO5sV8DmMM{border-radius:4px;color:#818384;display:inline-block;line-height:22px;height:24px;outline:none;padding:0 6px}button.c_rRg_d32D6ZO5sV8DmMM:focus,button.c_rRg_d32D6ZO5sV8DmMM:hover{background:#343536;color:#818384}button.c_rRg_d32D6ZO5sV8DmMM .C9XkFfcvNxFrFRVdKxc8x{display:inline-block;height:24px;line-height:21px;vertical-align:bottom}button.c_rRg_d32D6ZO5sV8DmMM svg{fill:#818384;height:22px;margin-right:8px;vertical-align:top;width:12px}
.FRrbwuHy8Zmlubp3nowLZ{position:relative}._3hELZctjzdizaWjW1al9DZ{padding:20px 20px 0}._2oY_N7NWiAv9m_mFIRdwVX{text-align:center;position:absolute;border-radius:2px;cursor:pointer;top:50%;width:15px;height:15px;padding:8px;margin-top:-10px;right:16px}._3B-ny-D97ZKwdUyXAaWF19{height:12px;width:12px}
._2Jt0Cjod2bIVz4VEgb6ZNn{height:25px;margin:0 0 3px 12px;width:24px}._1BkkYahLrqvrnZoHHBH9pU{margin:0 12px}
._1uQwMnfXrOfzkL_CFxH6fd,.vOGtEDdh1mVbkqinhg3Ov{text-decoration:underline}._3el1HrJryfAxBUzu4HsIhE{padding-left:8px;position:fixed;width:100%;-ms-flex-align:center;align-items:center;color:#fff;display:-ms-flexbox;display:flex}._3el1HrJryfAxBUzu4HsIhE._1ivoPEQV9lryC0mH-f_uGY,._3el1HrJryfAxBUzu4HsIhE._36j6vvbAY0wIrxbyXuNQhn{background-color:#ea0027;top:0;height:25px}._1oAzKCYwbVOQ-AbuRZfMg2{-ms-flex:0 1 60px;flex:0 1 60px;height:60px}._6aklZuhHMm1XJcsi8dEeP._6aklZuhHMm1XJcsi8dEeP{fill:#fff}
._1nxEQl5D2Bx2jxDILRHemb._1nxEQl5D2Bx2jxDILRHemb{margin-top:48px}._1nxEQl5D2Bx2jxDILRHemb._1nxEQl5D2Bx2jxDILRHemb._2P-zXcOfggYIWnL3EfXUHP{margin-top:73px}._1nxEQl5D2Bx2jxDILRHemb._1nxEQl5D2Bx2jxDILRHemb.lFh-yJxFAehr1v_mfimce{margin-top:88px}._1nxEQl5D2Bx2jxDILRHemb._1nxEQl5D2Bx2jxDILRHemb._3o7sV2ySJ76-f1ktwzclmi{margin-top:73px}._2DJXORCrmcNpPTSq0LqL6i._2DJXORCrmcNpPTSq0LqL6i,._2mIbM_6nl-2OnOGEbEMRXa._2mIbM_6nl-2OnOGEbEMRXa,._3obgdFz00GvpqpuX8QCsNK._3obgdFz00GvpqpuX8QCsNK,.zoWOQnp55WuhEugRSwfw1.zoWOQnp55WuhEugRSwfw1{top:48px}._2DJXORCrmcNpPTSq0LqL6i._2DJXORCrmcNpPTSq0LqL6i._2P-zXcOfggYIWnL3EfXUHP,._2mIbM_6nl-2OnOGEbEMRXa._2mIbM_6nl-2OnOGEbEMRXa._2P-zXcOfggYIWnL3EfXUHP,._3obgdFz00GvpqpuX8QCsNK._3obgdFz00GvpqpuX8QCsNK._2P-zXcOfggYIWnL3EfXUHP,.zoWOQnp55WuhEugRSwfw1.zoWOQnp55WuhEugRSwfw1._2P-zXcOfggYIWnL3EfXUHP{top:73px}._2DJXORCrmcNpPTSq0LqL6i._2DJXORCrmcNpPTSq0LqL6i.lFh-yJxFAehr1v_mfimce,._2mIbM_6nl-2OnOGEbEMRXa._2mIbM_6nl-2OnOGEbEMRXa.lFh-yJxFAehr1v_mfimce,._3obgdFz00GvpqpuX8QCsNK._3obgdFz00GvpqpuX8QCsNK.lFh-yJxFAehr1v_mfimce,.zoWOQnp55WuhEugRSwfw1.zoWOQnp55WuhEugRSwfw1.lFh-yJxFAehr1v_mfimce{top:88px}._2DJXORCrmcNpPTSq0LqL6i._2DJXORCrmcNpPTSq0LqL6i._3o7sV2ySJ76-f1ktwzclmi,._2mIbM_6nl-2OnOGEbEMRXa._2mIbM_6nl-2OnOGEbEMRXa._3o7sV2ySJ76-f1ktwzclmi,._3obgdFz00GvpqpuX8QCsNK._3obgdFz00GvpqpuX8QCsNK._3o7sV2ySJ76-f1ktwzclmi,.zoWOQnp55WuhEugRSwfw1.zoWOQnp55WuhEugRSwfw1._3o7sV2ySJ76-f1ktwzclmi{top:73px}._2AJ0ZwpZtFJ10GdcU0CUew,._2SL_DAWw1V6pxZysgrdeBe._2SL_DAWw1V6pxZysgrdeBe{top:56px}._2AJ0ZwpZtFJ10GdcU0CUew._2P-zXcOfggYIWnL3EfXUHP,._2SL_DAWw1V6pxZysgrdeBe._2SL_DAWw1V6pxZysgrdeBe._2P-zXcOfggYIWnL3EfXUHP{top:81px}._2AJ0ZwpZtFJ10GdcU0CUew.lFh-yJxFAehr1v_mfimce,._2SL_DAWw1V6pxZysgrdeBe._2SL_DAWw1V6pxZysgrdeBe.lFh-yJxFAehr1v_mfimce{top:96px}._2AJ0ZwpZtFJ10GdcU0CUew._3o7sV2ySJ76-f1ktwzclmi,._2SL_DAWw1V6pxZysgrdeBe._2SL_DAWw1V6pxZysgrdeBe._3o7sV2ySJ76-f1ktwzclmi{top:81px}._1ht98h5gXjzYhFyRZgB0Pv._1ht98h5gXjzYhFyRZgB0Pv{top:354px}._1ht98h5gXjzYhFyRZgB0Pv._1ht98h5gXjzYhFyRZgB0Pv._2P-zXcOfggYIWnL3EfXUHP{top:379px}._1ht98h5gXjzYhFyRZgB0Pv._1ht98h5gXjzYhFyRZgB0Pv.lFh-yJxFAehr1v_mfimce{top:394px}._1ht98h5gXjzYhFyRZgB0Pv._1ht98h5gXjzYhFyRZgB0Pv._3o7sV2ySJ76-f1ktwzclmi{top:379px}.cx1ohrUAq6ARaXTX2u8YN.cx1ohrUAq6ARaXTX2u8YN{margin-top:0}.cx1ohrUAq6ARaXTX2u8YN.cx1ohrUAq6ARaXTX2u8YN._2P-zXcOfggYIWnL3EfXUHP{margin-top:25px}.cx1ohrUAq6ARaXTX2u8YN.cx1ohrUAq6ARaXTX2u8YN.lFh-yJxFAehr1v_mfimce{margin-top:40px}.cx1ohrUAq6ARaXTX2u8YN.cx1ohrUAq6ARaXTX2u8YN._3o7sV2ySJ76-f1ktwzclmi{margin-top:25px}._14-8KVF3BKuTNsLNWcOG2X{height:0}._29IbETWb5VVDcfk_-GumWz{height:100%;overflow-y:auto;position:relative;-webkit-overflow-scrolling:touch;width:100%;will-change:transform;contain:layout style size}._29IbETWb5VVDcfk_-GumWz._34Bl1Of1839ZWJXR8IY0Ym{will-change:unset}
._1gsAk1ihQliBnDybgyjghy{outline:none}
._27RfkQ1Fuxjg5UzNJqCtC-{padding:8px 8px 8px 0;height:32px;width:32px}._1j_hHS0lKR-ok52j1iYlId{height:18px;width:auto}.XGVEYXuPeFqHqAf2DqHaM{padding:0 16px}
.StyledHtml{color:#353535}.StyledHtml blockquote,.StyledHtml ol,.StyledHtml p,.StyledHtml pre,.StyledHtml table,.StyledHtml ul{margin-top:5px;margin-bottom:5px}.StyledHtml blockquote:first-child,.StyledHtml ol:first-child,.StyledHtml p:first-child,.StyledHtml pre:first-child,.StyledHtml table:first-child,.StyledHtml ul:first-child{margin-top:0}.StyledHtml blockquote:last-child,.StyledHtml ol:last-child,.StyledHtml p:last-child,.StyledHtml pre:last-child,.StyledHtml table:last-child,.StyledHtml ul:last-child{margin-bottom:0}.StyledHtml h1,.StyledHtml h3,.StyledHtml h5{font-weight:700}.StyledHtml h1,.StyledHtml h2{font-size:1.28571429em;line-height:1.38888889em;margin:15px 0}.StyledHtml h3,.StyledHtml h4{font-size:1.14285714em;line-height:1.25em;margin:10px 0}.StyledHtml h5,.StyledHtml h6{font-size:1em;line-height:1.42857143em;margin-top:10px;margin-bottom:5px}.StyledHtml h6{text-decoration:underline}.StyledHtml em{font-style:italic}.StyledHtml strong{font-weight:700}.StyledHtml p{word-wrap:break-word;overflow-wrap:break-word}.StyledHtml li,.StyledHtml p,.StyledHtml pre>code,.StyledHtml td,.StyledHtml th{line-height:1.42857143em}.StyledHtml dd{margin-bottom:1em}.StyledHtml sup{vertical-align:super;font-size:80%}.StyledHtml del{text-decoration:line-through}.StyledHtml blockquote,.StyledHtml code,.StyledHtml pre,.StyledHtml pre code{background-color:#fcfcf7;padding:0 5px}.StyledHtml pre code{padding:0}.StyledHtml code,.StyledHtml pre,.StyledHtml pre code{font-family:monospace;font-weight:400;border:1px solid #ccccca;word-break:break-all;word-break:break-word}.StyledHtml blockquote{display:inline-block;border-left:2px solid #ccccca}.StyledHtml blockquote p{margin:4px 0}.StyledHtml code{white-space:nowrap}.StyledHtml pre code{white-space:pre-wrap;background-color:transparent;border:none}.StyledHtml ul{list-style:disc}.StyledHtml ol{list-style:decimal}.StyledHtml ol,.StyledHtml ul{margin-left:40px}.StyledHtml table{margin:1em 0;border:1px solid #ccccca}.StyledHtml thead{background-color:#eff7ff;border-bottom:1px solid #ccccca}.StyledHtml td,.StyledHtml th{padding:.5em;border-right:1px solid #ccccca}.StyledHtml td:last-child,.StyledHtml th:last-child{border-right:none}.StyledHtml tr{border-bottom:1px solid #ccccca}.StyledHtml tr:last-child{border-bottom:none}.StyledHtml a{text-decoration:none;color:#0079d3}.StyledHtml a[title]:empty:after{content:attr(title)}
/*# sourceMappingURL=Reddit.f9e79d855d68c739a635.css.map*/</style><style data-href="chunkCSS/CollectionCommentsPage~CommentsPage~Explore~Frontpage~GlobalModalContainer~GovernanceReleaseNotesMod~6b4ca950.db5cfb766e961dd26794.css">.mainbar{height:100%}.bar{position:absolute;top:6px;height:4px;border-radius:2px}.bar,.bar.background{width:100%}.background{background:#fff;opacity:.2}.lookahead{background:#fff;opacity:.5}.buffered{background:#fff;opacity:.7}.progress{background:#0079d3}
.video-setting-container{position:relative;border-radius:4px;background-color:rgba(0,0,0,.6)}.autoplay-container .set-autoplay-button,.autoplay-container .video-resolution-button,.video-resolution-container .set-autoplay-button,.video-resolution-container .video-resolution-button{cursor:pointer;display:-ms-flexbox;display:flex;opacity:.5;text-align:left;white-space:nowrap}.autoplay-container .set-autoplay-button svg,.autoplay-container .video-resolution-button svg,.video-resolution-container .set-autoplay-button svg,.video-resolution-container .video-resolution-button svg{height:12px;width:12px;margin:4px 0 0 2px;visibility:hidden}.autoplay-container .set-autoplay-button .autoplay-description,.autoplay-container .set-autoplay-button .video-resolution-description,.autoplay-container .video-resolution-button .autoplay-description,.autoplay-container .video-resolution-button .video-resolution-description,.video-resolution-container .set-autoplay-button .autoplay-description,.video-resolution-container .set-autoplay-button .video-resolution-description,.video-resolution-container .video-resolution-button .autoplay-description,.video-resolution-container .video-resolution-button .video-resolution-description{display:block;width:100%;margin:2px 2px 2px 5px;color:#fff;font-size:12px;line-height:16px}.autoplay-container .set-autoplay-button .video-hd,.autoplay-container .video-resolution-button .video-hd,.video-resolution-container .set-autoplay-button .video-hd,.video-resolution-container .video-resolution-button .video-hd{font-weight:700;color:#0079d3}.autoplay-container .set-autoplay-button:focus,.autoplay-container .set-autoplay-button:hover,.autoplay-container .video-resolution-button:focus,.autoplay-container .video-resolution-button:hover,.video-resolution-container .set-autoplay-button:focus,.video-resolution-container .set-autoplay-button:hover,.video-resolution-container .video-resolution-button:focus,.video-resolution-container .video-resolution-button:hover{opacity:.75}.autoplay-container .set-autoplay-button[aria-checked=true],.autoplay-container .video-resolution-button[aria-checked=true],.video-resolution-container .set-autoplay-button[aria-checked=true],.video-resolution-container .video-resolution-button[aria-checked=true]{opacity:1}.autoplay-container .set-autoplay-button[aria-checked=true] svg,.autoplay-container .video-resolution-button[aria-checked=true] svg,.video-resolution-container .set-autoplay-button[aria-checked=true] svg,.video-resolution-container .video-resolution-button[aria-checked=true] svg{visibility:visible}.autoplay-container .set-autoplay-button,.video-resolution-container .set-autoplay-button{border-bottom:1px solid #030303;padding-bottom:3px}
:host,reddit-video-volume-slider{position:relative}.slider-container{height:96px;width:24px;border-radius:4px;background-color:rgba(0,0,0,.6);cursor:pointer;position:relative;left:50%;transform:translateX(-50%)}.slider-bar{width:4px;border-radius:2px;position:absolute;margin:0 auto;left:0;right:0}.slider-track{background-color:hsla(0,0%,100%,.5);top:8px;bottom:8px;margin:6px auto}.slider-progress{background-color:#0079d3;height:100%;bottom:0}.slider-thumb{position:absolute;left:-4px;top:-6px;margin-left:auto;margin-right:auto;width:12px;height:12px;background-color:#fff;border-radius:50%;box-shadow:0 0 6px 0 rgba(0,0,0,.5)}
.reddit-video-player-root{height:100%;-webkit-user-select:none;-ms-user-select:none;user-select:none;cursor:default;white-space:nowrap}.reddit-video-player-root:after{display:block;content:"";padding-top:56.25%}.reddit-video-player-root__fullscreen{height:100vh;width:100vw}.reddit-video-player-root:not(.using-keys) [tabindex],.reddit-video-player-root:not(.using-keys) button{outline:none}.HTML5StreamPlayer__video__fullscreen::-webkit-media-controls-enclosure{display:none!important}.HTML5StreamPlayer{-webkit-user-select:none;-ms-user-select:none;user-select:none;width:100%;height:auto;position:absolute;top:50%;transform:translateY(-50%);left:0;z-index:0;overflow:hidden;object-fit:contain}.HTML5StreamPlayer__video__fullscreen{max-width:100vw;max-height:100vh;-webkit-video-playable-inline:true;width:100%;height:auto;left:50%;margin:0 auto;position:absolute;top:50%;transform:translate(-50%,-50%)}.HTML5StreamPlayer__video__regular{z-index:0;width:100%;height:100%;-webkit-video-playable-inline:true;position:absolute;top:0;left:0}
/*# sourceMappingURL=CollectionCommentsPage~CommentsPage~Explore~Frontpage~GlobalModalContainer~GovernanceReleaseNotesMod~6b4ca950.db5cfb766e961dd26794.css.map*/</style><style data-href="chunkCSS/CollectionCommentsPage~CommentsPage~Explore~Frontpage~GovernanceReleaseNotesModal~ModListing~ModQueu~db251346.f0fd554767f8c9a605bf.css">._3K6DCjWs2dQ93YYZDOHjib{display:block;height:100%;position:relative}
._3Oa0THmZ3f5iZXAQ0hBJ0k{position:relative;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}._2_tDEnGMLxpM6uOa2kaDB3{display:block;max-width:100%;position:relative}._3hUbl08LBz2mbXjy0iYhOS{font-size:12px;font-weight:700;letter-spacing:.5px;line-height:24px;text-transform:uppercase;background-color:rgba(80,85,87,.8);border-radius:4px;bottom:16px;color:#fff;line-height:32px;position:absolute;text-align:center;text-decoration:none;width:320px;left:50%;transform:translate(-50%)}
._2iaYXFpGyyEGq1rp02cl5w{filter:blur(20px) brightness(.8);height:100%;left:0;position:absolute;top:0;transform:scale(1.3);width:100%}.m3aNC6yp8RrNM_-a0rrfa{position:relative}._3gBRFDB5C34UWyxEe_U6mD{pointer-events:none;width:100%}._3JgI-GOrkmyIeDeyzXdyUD{position:absolute;top:0;left:0;bottom:0;right:0}
._3spkFGVnKMHZ83pDAhW3Mx{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;width:100%;height:100%}.tErWI93xEKrI2OkozPs7J{display:block;height:100%;max-width:100%;position:relative}
/*# sourceMappingURL=CollectionCommentsPage~CommentsPage~Explore~Frontpage~GovernanceReleaseNotesModal~ModListing~ModQueu~db251346.f0fd554767f8c9a605bf.css.map*/</style><style data-href="chunkCSS/CollectionCommentsPage~CommentsPage~Frontpage~ModListing~ModQueuePages~ModerationPages~Multireddit~N~0561de65.144bfc428bad9a38050a.css">._2LeW9tc_6Fs1n7Ou8uD-70{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;position:relative}._2LeW9tc_6Fs1n7Ou8uD-70._3sYCnvIxJkhkOfLVTWR67K{padding-right:22px}._3u6g9UTYlEOr-yfM5hyq3p{margin-left:4px;margin-right:2px;cursor:default;vertical-align:middle;max-height:16px;max-width:16px}._2y3bja4n4-unxyUrMEFH8C{display:inline-block;font-size:12px;font-weight:400;line-height:16px}._3cvmhvAbUM05VkxFte0UZ{cursor:pointer}._3cvmhvAbUM05VkxFte0UZ ._3u6g9UTYlEOr-yfM5hyq3p{cursor:inherit}._10Q0ZYgDml-1g2q2eQ5ky_{margin-left:4px;font-size:12px;font-weight:400;line-height:16px}._10Q0ZYgDml-1g2q2eQ5ky_:hover{text-decoration:underline}._3mcXKZUh7FvUMLSv0AHyXs{visibility:hidden;opacity:0;transition:visibility 0s linear .1s,opacity .1s linear;font-size:16px;position:absolute;right:0;padding:2px;border-radius:4px;outline:none}._3mcXKZUh7FvUMLSv0AHyXs ._2J9jlNokb9X4gvrrZR3BX2{display:block;height:16px;width:16px;font-size:16px}._2LeW9tc_6Fs1n7Ou8uD-70:hover ._3mcXKZUh7FvUMLSv0AHyXs{visibility:visible;opacity:1;transition-delay:0s}
._308WM6C-yV5iwS0Iy8nOfI{background-color:#fff;border-radius:6px;box-sizing:border-box;height:86px;margin-left:-3px;margin-top:16px;padding:3px;position:relative;width:86px}._1l7CTV4NjDjmzX8DiiSgTL{-ms-flex:1 1 50%;flex:1 1 50%}._1l7CTV4NjDjmzX8DiiSgTL:not(:first-child){margin-left:8px}._2fBB4fy1NGOVbL2SkveXXk{margin-top:8px;margin-bottom:8px;display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}._2fBB4fy1NGOVbL2SkveXXk:hover ._wi1DtT7oN7k_x5oIV8zm{text-decoration:underline}._32tzMaZn7x3dfQC5MXndJn{-ms-flex:0 1 auto;flex:0 1 auto;margin-right:6px;white-space:nowrap;cursor:pointer}._6xPPP5HdELF-SZJL8layH{display:inline-block;vertical-align:top;padding:0 4px;border-radius:20px;margin-left:4px;background:#edeff1;color:#7c7c7c;font-size:12px;font-weight:400;line-height:16px}._wi1DtT7oN7k_x5oIV8zm{-ms-flex:1 1 auto;flex:1 1 auto}._2Eq8z6UD7I0ul3wnZ-YT80{margin:0;vertical-align:top}
/*# sourceMappingURL=CollectionCommentsPage~CommentsPage~Frontpage~ModListing~ModQueuePages~ModerationPages~Multireddit~N~0561de65.144bfc428bad9a38050a.css.map*/</style><style data-href="chunkCSS/CollectionCommentsPage~CommentsPage~Explore~Frontpage~GovernanceReleaseNotesModal~ModListing~ModQueu~1084d5fc.04d17b28b3399cb11f73.css">.Chtkt3BCZQruf0LtmFg2c{-webkit-mask-image:linear-gradient(180deg,#000 60%,transparent);mask-image:linear-gradient(180deg,#000 60%,transparent);overflow:hidden;padding:5px 8px 10px}._3xX726aBn29LDbsDtzr_6E{padding:5px 8px;max-width:800px}._1aLU7RPNLdvfcbaNdcN11x{margin:12px 0}._1aLU7RPNLdvfcbaNdcN11x .Owi9iYzjyVpDq_0YbCdJY:not(:first-child){margin-top:24px}._1aLU7RPNLdvfcbaNdcN11x .Owi9iYzjyVpDq_0YbCdJY>div{border-radius:4px;height:16px;margin:8px 0}._1aLU7RPNLdvfcbaNdcN11x .Owi9iYzjyVpDq_0YbCdJY>div:last-child{width:80%}
._3dhFVFchWAAFXfLFTa94n9{display:block;height:0;margin-bottom:-1em;overflow:hidden}._1Q2mF3u7v9hBVu_4bkC7R4{display:none}
/*# sourceMappingURL=CollectionCommentsPage~CommentsPage~Explore~Frontpage~GovernanceReleaseNotesModal~ModListing~ModQueu~1084d5fc.04d17b28b3399cb11f73.css.map*/</style><style data-href="chunkCSS/CollectionCommentsPage~CommentsPage~Explore~Frontpage~ModListing~ModQueuePages~ModerationPages~Multi~fc7712a4.a75e03d411ba54f486c9.css">.WxKparxaBCy4-EWML7xc3{display:inline-block;width:16px;height:16px;font-size:16px;font-weight:400;line-height:16px}._1Gn6JH0U8GJtJXSIc54IMU,._1MDjRAzxk1RSTB12748O1v,._2IVG3b9-lczna8tonL9FWB,._2YXLfgRGcJoCJROcTAGqir,._3ch9jJ0painNf41PmU4F9i,._3phKxmomoio9ulzAoL4XhZ,.hMF1wBi2Z6Lh9zHskfhX1,.MAe2tslj1FAD6GliiZ3it,.XHMWG1CPWX8RXeNg-o5-R,.xwmljjCrovDE5C9MasZja{display:inline-block;width:16px;height:16px;font-size:16px;font-weight:400;line-height:16px;vertical-align:text-bottom}._2trXhUAJMhIhxp8a2zvOVP,._3ACtZ0jvC5KDN8RNxR0lXX,._3cdJ6BHH65ws78AzuO0KLw{display:inline-block;width:16px;height:16px;font-size:16px;font-weight:400;line-height:16px;vertical-align:top}
._3IEDcFIIs_TeXsZtKZGzUd{background:transparent;border-radius:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}._3IEDcFIIs_TeXsZtKZGzUd:focus{outline:none}
.cF9DU_4WDAKS4gs43ct2_{display:-ms-flexbox;display:flex;-ms-flex-direction:row-reverse;flex-direction:row-reverse}
._1oxgVV3q47KbjEKqP5CHuM{margin-left:2px}
._37gsGHa8DMRAxBmQS-Ppg8{margin:0 4px}
._3I_U-htoXoQEzFLCM48kHO{position:relative}._3I_U-htoXoQEzFLCM48kHO:hover ._1Zlk1VrZ8puYZy5lJOfz--{display:block}._1Zlk1VrZ8puYZy5lJOfz--{display:none;font-weight:700;padding-right:16px;position:absolute;right:0;text-transform:uppercase;top:50%;transform:translateY(-50%)}
._1nuqTgVTX8jg3ZxQI1y07J{border-radius:4px;box-sizing:border-box;display:-ms-flexbox;display:flex;-ms-flex-flow:column nowrap;flex-flow:column nowrap;max-height:70vh;max-width:600px;min-height:400px;width:80vw}
._20cjHfhXYWuAKzRGNxePHy{font-size:12px;font-weight:500;line-height:16px;border-radius:2px;border:1px solid #ffb000;display:inline-block;margin-left:4px;padding:2px 4px;text-transform:capitalize}._3fdQM74ud_8KssWgeznOrR{fill:#ffb000;height:12px;margin-right:4px;vertical-align:middle;width:12px}
/*# sourceMappingURL=CollectionCommentsPage~CommentsPage~Explore~Frontpage~ModListing~ModQueuePages~ModerationPages~Multi~fc7712a4.a75e03d411ba54f486c9.css.map*/</style><style data-href="chunkCSS/CollectionCommentsPage~CommentsPage~Explore~Frontpage~ModListing~ModQueuePages~ModerationPages~Multi~d27514f2.74558e80025c6b0b2e49.css">._3DVrpDrMM9NLT6TlsTUMxC{display:inline-block;height:16px;margin-right:4px;vertical-align:middle;width:16px}._1UoeAeSRhOKSNdY_h3iS1O{padding:4px}._3m17ICJgx45k_z-t82iVuO{cursor:default}._1Hw7tY9pMr-T1F4P1C-xNU{border-radius:2px}.FHCV02u6Cp2zYL0fhQPsO{display:inline-block;line-height:1;text-transform:capitalize;vertical-align:middle}
._3cuXnOdiXHbT8t5tAaGgKr{margin-top:-4px;vertical-align:middle}
._3-miAEojrCvx_4FQ8x3P-s{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;height:32px;padding:0 8px 0 4px;position:relative}@media (max-width:639px){._3-miAEojrCvx_4FQ8x3P-s{margin-right:-40px}}.x7sinePdvDKj7bf-cdm4Z{height:16px;margin-left:4px;vertical-align:middle}._21pmAV9gWG6F_UKVe7YIE0{-ms-flex:1 1 auto;flex:1 1 auto}._15c1hqseW25EvRu0WP2Dq5{vertical-align:middle}._1GQDWqbF-wkYWbrpmOvjqJ{margin-right:4px;vertical-align:middle}._3XELg38mTJetc-xIUOKrMy{width:auto;margin:0 4px 0 2px;word-break:normal;white-space:nowrap}@media (max-width:380px){._3XELg38mTJetc-xIUOKrMy{display:none}}._6_44iTtZoeY6_XChKt5b0{display:inline-block;line-height:1;vertical-align:middle}._3NIVQWStkLT7RXnwKpKNuT{margin-right:4px}._2qww3J5KKzsD7e5DO0BvvU{word-break:normal;white-space:nowrap;min-width:25px}@media (max-width:639px){.TtGNMQuRdiYPax8_SOiIL{display:none}}
._1poyrkZ7g36PawDueRza-J{background:#fff}
/*# sourceMappingURL=CollectionCommentsPage~CommentsPage~Explore~Frontpage~ModListing~ModQueuePages~ModerationPages~Multi~d27514f2.74558e80025c6b0b2e49.css.map*/</style><style data-href="chunkCSS/Frontpage.416d66f646b388ca53df.css">._1yF34mDRcD_ii0n-Ak0OdI{border-radius:4px;box-sizing:border-box;margin:0 10px 0 16px;max-width:92px;overflow:hidden;padding:4px 14px;text-transform:uppercase;white-space:nowrap;font-size:12px;font-weight:400;line-height:16px;font-weight:700}._1yF34mDRcD_ii0n-Ak0OdI:focus,._1yF34mDRcD_ii0n-Ak0OdI:hover{outline:none}
._2A1Ng1fBxjU-qYqbEJn_sm{margin:0 8px 8px}.IFgFh6RCA8WaJ74oUrILE{-ms-flex-align:center;align-items:center;box-sizing:border-box;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-pack:justify;justify-content:space-between;height:40px;width:100%}.IFgFh6RCA8WaJ74oUrILE ._2XCKBYzBTZpjOAFEWv1tSy{margin:0}._2gNxoOe_xKaMk0mmYMQCGs{margin:0 3px 3px 10px}._2gNxoOe_xKaMk0mmYMQCGs .IFgFh6RCA8WaJ74oUrILE{height:30px}
.RvLtAcdRtbOQbhFB7MD_T{box-sizing:border-box;color:inherit;height:24px;padding:4px;position:relative;width:24px}.RvLtAcdRtbOQbhFB7MD_T:hover .saNpcHve-34zjaa0cbIxW._25HJpaEPiVNq6Ss3Ad7dp9{visibility:hidden}.RvLtAcdRtbOQbhFB7MD_T:hover .saNpcHve-34zjaa0cbIxW._2S05CzViTnl3I2ekCABqFo{visibility:visible}.RvLtAcdRtbOQbhFB7MD_T .saNpcHve-34zjaa0cbIxW{display:inline-block;font-size:14px;height:14px;left:4px;line-height:14px;position:absolute;top:4px;vertical-align:middle;width:14px}.RvLtAcdRtbOQbhFB7MD_T .saNpcHve-34zjaa0cbIxW._1zB4YvOwHPxdPEXG2CYhKB{font-size:16px;line-height:16px;left:3px}.RvLtAcdRtbOQbhFB7MD_T .saNpcHve-34zjaa0cbIxW._25HJpaEPiVNq6Ss3Ad7dp9{visibility:visible}.RvLtAcdRtbOQbhFB7MD_T .saNpcHve-34zjaa0cbIxW._2S05CzViTnl3I2ekCABqFo{visibility:hidden}
@keyframes _1C5oqr8CA_wteJsqqSRq0B{0%{transform:rotate(0deg)}25%{transform:rotate(1turn)}to{transform:rotate(1turn)}}@keyframes _3qV2ZaEJd_k1NSZDxMjK-g{0%{margin-bottom:0;opacity:0;transform:scale(0)}25%,75%{margin-bottom:60px;opacity:1;transform:scale(1)}to{margin-bottom:80px;opacity:0;transform:scale(1.5)}}._2uGwXKrmP9OljxIhbSCOjc{font-size:14px;font-weight:700;line-height:22px;margin-left:2px}.dVX1qcOidD13L5NRRKOPb{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center}._2tKg0JJT2prOVVIOrtS2JP,.dVX1qcOidD13L5NRRKOPb{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex}._2tKg0JJT2prOVVIOrtS2JP{animation:_3qV2ZaEJd_k1NSZDxMjK-g 1.4s;border-radius:30px;-ms-flex-direction:row;flex-direction:row;margin-bottom:0;opacity:0;padding:5px;transform:scale(0)}._3dLs5lIwl_kKHq589IyKz5{animation:_1C5oqr8CA_wteJsqqSRq0B 1.4s;height:22px;transform:rotate(0deg);width:22px}
._2mybT6Ih7gVf5B6COa9kd2{border-radius:4px;height:100%;left:0;min-width:4px;opacity:.1;pointer-events:none;position:absolute;top:0;transition:width .25s}._2mybT6Ih7gVf5B6COa9kd2._1kOO45KEOZraWGZ-cUgKq-{opacity:.3}._3CF-7jBH1KihljB9AqaU04{height:20px;margin-left:8px;width:20px}._3uG88YeFdY0J8n4v07jkf9{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;height:32px;padding-right:10px;position:relative}._1Ot3PH7267obvD1i_V2D00,._1VDLlB8Ys3WO8XWSZfhomw{-ms-flex-positive:0;flex-grow:0;font-size:14px;font-weight:500;line-height:20px;padding:0 10px;text-align:center;transition:opacity .25s;width:52px}._3G6ZB4S9YZ26E49tE8zLJQ{opacity:0}._1Ot3PH7267obvD1i_V2D00{margin-left:-72px}.iV9AWdqazd5c9IHXNEQXX{opacity:1}._3PfYu2DtunAwYpv53tmvOb{font-size:14px;line-height:20px;max-width:calc(100% - 100px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
._3NpICHyFK-vnQ5_1ZcNtNn{display:inline-block;margin-top:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:12px;font-weight:400;line-height:16px}._1YnhQ_-VBuRiYmNRfa798~._1YnhQ_-VBuRiYmNRfa798{margin-top:8px}
._3vyz17dpfnySBJJyBF9IqH{display:inline-block;position:relative}._3vyz17dpfnySBJJyBF9IqH:hover ._3YsZUGQHAWfxmTN8wbFYPd{display:block}._1YKCRAHpaqTk8N5LBvZ9_A{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;margin-top:20px}._2RQF5_CKHRDPDOJ-TwwXFy{margin:0 5px}._3YsZUGQHAWfxmTN8wbFYPd{font-size:12px;font-weight:500;line-height:16px;background-color:#000;border-radius:4px;color:#fff;display:none;left:100%;margin-left:5px;margin-top:-13px;padding:5px 8px;position:absolute;top:50%;width:161px}._3YsZUGQHAWfxmTN8wbFYPd:after{border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000;content:"";top:50%;margin-top:-5px;position:absolute;right:100%;width:0}._28wp7DzoykykevfZW56u3_{-ms-flex-positive:1;flex-grow:1;font-size:12px;line-height:16px;margin-left:20px;overflow:hidden;text-overflow:ellipsis;width:100%;white-space:nowrap}._3nN8pAR2tWvzxcstONuzMH{cursor:pointer;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}._3nN8pAR2tWvzxcstONuzMH~._3nN8pAR2tWvzxcstONuzMH{margin-top:16px}._1d_v-dIPu8uuwF0UTaQNmF{height:20px;margin-right:8px}._3grr_S6IK0w2iyC7Ocv5u9{font-size:14px;line-height:20px;word-break:break-word}.fmooe0ZUmdU_XdnKBjg6X{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;white-space:nowrap}
._3xG1v2CUdyxRoHrB7dgiFw{font-size:16px;line-height:20px;font-weight:500;margin-bottom:16px}
.b6nqW0WFO2M4SexVBxfHU{height:10px;left:50%;margin-left:-5px;margin-top:-5px;position:absolute;top:50%;width:10px}._1QSw_HlkZ06PQ4H_Gl5Qmi{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}.tIv0l4mIAasOfzH_1MZzr{height:20px;margin-left:8px;position:relative;width:20px}.vdDwj3MECrKPWOzGvwtX4{height:20px;width:20px}._1kLHoqYVgmdy-N798MqUkD{border-radius:100%;box-sizing:border-box;height:100%;width:100%}._19t_3cFD9b1D_z7gV6r1Lf{border-radius:100%;box-sizing:border-box;height:20px;margin-left:8px;overflow:hidden;position:relative;width:20px}._240PIKFetxH16NIbed3MhP,.faQEx7XG3jztMB7Ba0IzB{bottom:0;box-sizing:border-box;position:absolute;top:0;transform-origin:left;width:50%}._240PIKFetxH16NIbed3MhP{left:0}.faQEx7XG3jztMB7Ba0IzB{left:50%}._3kJ7s4NNHNqugbRuUIg9B9{font-size:12px;font-weight:400;line-height:16px}
._1399Kcm0dM3RnJzlAPzZsE{font-size:14px;font-weight:700;line-height:32px;border-bottom:2px solid transparent;display:inline-block;font-size:12px;font-weight:500;padding:4px 12px 2px;vertical-align:middle}._3-DDU6UwhIWiQZZtZLB8nv{cursor:pointer}._3-DDU6UwhIWiQZZtZLB8nv:hover{opacity:.8}
._16Gygedl8JROR3rsORhsAq{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:justify;justify-content:space-between}
._3agF4JIMydb6n5U8QiQ6Tv{border-radius:4px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative}.Biin4hWHcVT2EfDytVnNn{height:14px;margin-right:8px;width:14px}._2-Y0QlWKQ9uE8EEq087km1{box-sizing:border-box;-ms-flex-positive:1;flex-grow:1;padding:25px 20px 10px;width:100%}._31DHxzl3U6nsgzY4XJjCSD{-ms-flex-negative:0;flex-shrink:0;padding:0 20px}._2JVvMYg8RBHtf5C2szMdV7{bottom:10px;left:15px;position:absolute}
._2y2WPgX5vi2SAfi_nz_Q7B{font-family:Noto Sans,Arial,sans-serif;font-size:14px;font-weight:400;line-height:21px;color:#ea0027}
._23h0-EcaBUorIHC-JZyh6J{-ms-flex-align:center;align-items:center;box-sizing:border-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:100%;left:0;padding:8px 4px 8px 0;position:absolute;top:0}@media (max-width:639px){._23h0-EcaBUorIHC-JZyh6J{display:none}}
._1knR9NIIXdSFC9IeFN11JL,._2BWw37nLL0rX6n7xcXciyD,._2etEb_0bRB9axAqF3uX28S,._3guZWUAROueft8TPPGDZ-R,._3vju76MdF2FaGmELBeiJ_r,._3wTfn3Meg1rXJ-qd2jUWMt,._3yuF1RnBRJL4OS_STsoXcC,._SMl46gACTEszA_4A0Qfs,.NI8uZ-19oHf9gPO8jOvFu{cursor:default;padding:0 4px;height:12px;width:12px;font-size:12px;vertical-align:text-top}._SMl46gACTEszA_4A0Qfs{margin-top:2px}._2WSiH2JwZq4bXuvrDn-cgU{cursor:default;padding:0 4px;height:12px;width:12px;font-size:12px;vertical-align:text-top;font-size:11px}._16Ih3bzeELRlI6AWeW-nFy,.COGitU-ItwLZG_fP5rsdE{vertical-align:top}
._2ntJEAiwKXBGvxrJiqxx_2{border-radius:4px;height:24px;vertical-align:middle;width:24px}
._3nQr7AT1U0w1HdVk-xepUB,.pvn75ouWnsoKK4l_QS9yI{height:16px;width:16px}._3d-Rpbq-Qb88tf5D_s1rsj{height:16px;width:16px;display:none}._3nhTfmUMmYib8x61No0h3r{font-size:12px;font-weight:400;line-height:16px;margin-left:5px}._15KjTxLhBmrJE79nlBUuxb{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:row;flex-direction:row}._15KjTxLhBmrJE79nlBUuxb:hover ._3nhTfmUMmYib8x61No0h3r{text-decoration:underline}._15KjTxLhBmrJE79nlBUuxb:hover .pvn75ouWnsoKK4l_QS9yI{display:none}._15KjTxLhBmrJE79nlBUuxb:hover ._3d-Rpbq-Qb88tf5D_s1rsj{display:block}
._2kj4VmBwjxriyYFAErhLcT{cursor:default;padding:0 4px;height:12px;width:12px;font-size:12px}._2v3rPYFjifVGM7CfOh1dOl{display:inline-block;margin-right:4px}._3AStxql1mQsrZuUIFP9xSg{font-size:12px;font-weight:400;line-height:16px;-ms-flex-align:center;align-items:center;color:inherit}.MMQAY3zdk1u4R9hIKTklf,.s46mo3ittWDxpPuCSXJ_T{cursor:default;padding:0 4px;height:12px;width:12px;font-size:12px;line-height:inherit;margin-top:-2px;vertical-align:top}._3hh-iGjzOv78L_7t_PUHev{display:inline-block;height:10px;margin-left:2px;margin-right:2px;margin-bottom:-1px;vertical-align:baseline;width:10px}.eQgJJIfdY4JNXam_N622j{margin-right:3px;text-decoration:none}.eQgJJIfdY4JNXam_N622j:hover{text-decoration:underline}.SxdIdV2SgMWcIFG6Qsk0Q{margin:-2px 4px 0;vertical-align:bottom}._2tbHP6ZydRpjI44J3syuqC,._3V0C4FGg6153xIBQjwsycq{margin-right:3px;text-decoration:none}._2tbHP6ZydRpjI44J3syuqC:hover,._3V0C4FGg6153xIBQjwsycq:hover{text-decoration:underline}._3jOxDPIQ0KaOWpzvSQo-1s{margin-right:3px;text-decoration:none;-ms-flex:0 0 auto;flex:0 0 auto}._3jOxDPIQ0KaOWpzvSQo-1s:hover{text-decoration:underline}._1iAifs5p5MzPoJz5YrErUW{-ms-flex:1 1 auto;flex:1 1 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._2fCzxBE1dlMh4OFc7B3Dun{-ms-flex:0 0 auto;flex:0 0 auto;margin-right:3px}
._1x9gNS8wlrugqgwofOEcGq{margin:0 8px}.Ywkt6EDfNWINeTr9lP29H{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.iaAYGvTNtknkTxuHArCzL{-ms-flex-wrap:wrap;flex-wrap:wrap}._1L0pdcPf58t25Jy6ljHIKR{color:inherit}
._2nvX_gR9FhSQ1lY6b1bWFW{padding:0 16px!important}._3lvJB_SaoWUqdHyOufnmZ6{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-flow:row nowrap;flex-flow:row nowrap}._2i0YV5wtThaZqsLsq3DBCh,.Z6QJrMufwPMvNNas6O93V{height:18px;width:18px}
._1SRZN02bVXzHIIMqGwlZD7{margin:0 8px;vertical-align:middle}.cZPZhMe-UCZ8htPodMyJ5{-ms-flex:1 1 auto;flex:1 1 auto}._28_NUs_O8Nh1DCErsNLCHk{margin-right:10px}._3z6z1xnp828wcarJXfzzjr{height:12px;width:12px}._2wFk1qX4e1cxk8Pkw1rAHk,.nU4Je7n-eSXStTBAPMYt8{display:inline}._1WX5Y5qFVBTdr6hCPpARDB{width:20px;height:20px;margin-right:4px}._2dr_3pZUCk8KfJ-x0txT_l{-ms-flex:0 0 auto;flex:0 0 auto}._2dQWElMH3F-0U9e25bPo1f{position:absolute;right:0;top:0}
._11R7M_VOgKO1RJyRSRErT3{padding-top:8px}._11R7M_VOgKO1RJyRSRErT3._3js7RHbLSHKV13qUFCVIhb{padding-top:0}._1ixsU4oQRnNfZ91jhBU74y{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;overflow-y:auto}._3KYCJ3N4w1YmvpFMo_3zcn{margin:8px}.STit0dLageRsa2yR4te_b{margin-top:8px}._3wiKjmhpIpoTE2r5KCm2o6{margin:0 8px}._2dkCPUHQTdBWU2B0dYnkRb{margin:8px 8px 0}._3COAjvFMb0tRTTAI3nxufG{pointer-events:none}
.i7Fs9tR9IvW9lWlOG_yrY{margin-left:8px}
.uLddwn0or3x3p7TMOGwHI{overflow:hidden;position:relative}._3KNrvlujtKPx0Hka0j-LZq{left:0;width:100%}._3A0kCYVWPNDyvhkR29Kvqr,._3EqWUAaRoh-h-P6bjNuzEc,._3KNrvlujtKPx0Hka0j-LZq{height:100%;object-fit:cover;position:absolute;top:0}._3EqWUAaRoh-h-P6bjNuzEc{left:0;object-position:left center}._3t3SNjGA-P0PnCELDP4GOn{height:100%;object-fit:cover;position:absolute;top:0;object-position:right center;right:0;text-align:right}
.FohHGMokxXLkon1aacMoi{position:relative}._1Uj2L1UhJuirkaXINcf9S8{margin-bottom:10px;padding:16px 0 16px 12px}._2DB_2VI3a-y6nk57R2aWVo{font-size:16px;font-weight:500;line-height:20px}.zfoxmi0VvZvMZu1rHVbMX{top:0;left:0;right:0;bottom:0;max-height:300px;position:absolute;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;z-index:10}.Ii7DEkcMDxQHElTHeeaci{margin:0 50px 10px;text-align:center}.rpBJOHq2PR60pnwJlUyP0{min-height:1000px;width:100%}.QBfRw7Rj8UkxybFpX-USO{height:auto;width:100%}
._1xomvNxK4aHGoGa-YDw1Mc{display:inline}@media (min-width:640px){._1xomvNxK4aHGoGa-YDw1Mc{display:none}}.YA9IzN0YR-G5_oD5EUydl{-ms-flex-align:normal;align-items:normal;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}.WnMeTcero48dKo501T-19{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex}._1TjU-e4dgCSlbuHHatC0G9{margin:0 8px;vertical-align:middle}._3YgWdffoKyCp7UaGAEQpoo{display:-ms-flexbox;display:flex}._1_B8IWlNlt5jJVg4cKy7nL{margin-left:8px}._1csviRG5jI9xOrcsmpbfwt._1csviRG5jI9xOrcsmpbfwt{padding-top:0}
._3bQEGKZVfI8j_t56qjH6r4{border-radius:4px;display:inline-block;margin-left:8px;padding:2px 4px}._2GiAdFyQViHKMYzKhOJBCA{width:16px;height:16px;margin:auto 0;display:inline-block;vertical-align:middle}.niuIllRepxB-nzyQ2sy8K{display:inline-block;padding-left:4px;font-size:14px;font-weight:500;line-height:18px}
._1EXT9lmMeAuJHjitH63xL3,._14FztpdG5uQeI59c0ES_Ow,._82JBewX3NQ8J2CyTSVbdA{contain:content;cursor:default;background-color:grey;margin-bottom:0}._1EXT9lmMeAuJHjitH63xL3,._14FztpdG5uQeI59c0ES_Ow{border-radius:4px 4px 0 0}._3sJmQxLnPr7ZiJo8LG_oSO{contain:content;cursor:default;background-color:grey;margin-bottom:0}@media (min-width:960px){._3sJmQxLnPr7ZiJo8LG_oSO{margin-left:50px;margin-right:50px}}._1__Ck_5QYZzNRjPUDoMWJS{contain:content;cursor:default;background-color:grey;margin-bottom:0}@media (min-width:960px){._1__Ck_5QYZzNRjPUDoMWJS{margin-left:0;margin-right:0}}._3K5_n7unoO1ICW-F9IJflu{box-sizing:border-box;display:-ms-flexbox;display:flex;-ms-flex-flow:row nowrap;flex-flow:row nowrap;height:58px;padding:12px}.s7TpgiIJvTwEL1e77SWaF{width:34px;height:34px;margin:auto 0}._3z0AZVLWYLu-lpH6us8Z8F{padding-left:6px}._1Q05BdBW6_L_RNpi1cICuc{font-size:18px;font-weight:500;line-height:22px}._2yjaIxJhyQ3e0NPxkzhbGI{font-size:12px;font-weight:400;line-height:16px}._3cUUH2Nk_AAcEw4ir9BcRj{overflow:hidden;padding:0 0 2px 12px}._3pH7HhSC72JJTjOW3yu7R0{padding:10px;padding-left:16px}._2pQgx4Bf9k5blsPbr-rlnN{font-family:Noto Sans,Arial,sans-serif;font-size:14px;font-weight:400;line-height:18px}.YSuEoDLM1fyv38ltV1L0V{padding:0 16px 16px}
._3t9arP5eM3zZ3uRMfsrQrx{fill:#0079d3}._3BHhTG19-Bx-GwEHkRpaPT{fill:#000}.Me2ew63ptrCQr1mobGNee{height:16px;width:16px}._2GSTksf31wbm95D_Em9_cA{fill:#fff}
button:focus{outline:none}._2vWDDpepKDRWqekB9vJEi{height:46px;width:46px}
.qxO-jkRl1-0EUFMSW12Wx{display:-ms-flexbox;display:flex;-ms-flex:0 0 100%;flex:0 0 100%;-ms-flex-direction:column;flex-direction:column;height:100%}._10app6y4qukOnb1vd3WjaL{-ms-flex:1;flex:1;width:100%}.Dmp1nT-wBa1YnTs1m5Qh-{padding:12px 12px 4px}._3zDhT2pkq9c_2I1Wc0TC7W{padding:2px 0}._1baTc1hWul6JGRus85W_n9{height:18px}._1baTc1hWul6JGRus85W_n9+._1baTc1hWul6JGRus85W_n9{margin-top:4px}._1QAmOEgKAW-xepM1iAQ1vt{margin:8px 0}._2kjKnQFVUV8rujMRQ0FJcM{height:20px;margin-right:4px;width:20px}._1gWkHloK0RuxI3PqEBqAlk{height:15px;width:150px}._3Se1TreUiuh_QYZKmggj-E{height:12px;margin-left:8px;width:52px}._1auh4Ct-kA4za4GqRMTChm{height:12px;margin-left:8px;width:40px}._3KZqW8v85dlRDNmHXcrU5X{height:12px;margin-left:8px;width:20px}
._380AW2tV1AjseFZoaW2xp3{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}._3RDCFf4elKrhJHKKZkPPD{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1}._1iE8_7IcegvYg_Wg3A0jTR{display:-ms-flexbox;-ms-flex-direction:column;flex-direction:column;overflow-x:scroll}._1B27sUe973sxluKyC6_HnP,._2jBymLZmAms1MelhCFZsUI{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-10px}._1B27sUe973sxluKyC6_HnP{max-height:310px}._3_Nr3saSmaO8BeqrN2u7Pb{flex:1 0 100%}._3_Nr3saSmaO8BeqrN2u7Pb,._21q6EU8IrGnKgnRi9Fcrko{box-sizing:border-box;-ms-flex:1 0 100%;min-height:250px;min-width:280px}._21q6EU8IrGnKgnRi9Fcrko{flex:1 0 100%;-ms-flex:1;flex:1;margin-bottom:10px;margin-right:10px}@media (min-width:640px){._21q6EU8IrGnKgnRi9Fcrko{max-width:480px}}@media (max-width:1330px){._21q6EU8IrGnKgnRi9Fcrko:nth-child(4){display:none}}@media (max-width:1040px){._21q6EU8IrGnKgnRi9Fcrko:nth-child(3){display:none}}@media (min-width:640px){._3rjlIRqkC_nm_BoSlEQ8u-{box-sizing:border-box;-ms-flex:1 0 100%;flex:1 0 100%;min-height:250px;min-width:280px;-ms-flex:1;flex:1;margin-bottom:10px;margin-right:10px;margin-right:12px;max-height:310px;max-width:324px;min-width:324px}}@media (min-width:640px) and (min-width:640px){._3rjlIRqkC_nm_BoSlEQ8u-{max-width:480px}}@media (min-width:640px) and (max-width:1330px){._3rjlIRqkC_nm_BoSlEQ8u-:nth-child(4){display:none}}@media (min-width:640px) and (max-width:1040px){._3rjlIRqkC_nm_BoSlEQ8u-:nth-child(3){display:none}}@media (max-width:640px){._3rjlIRqkC_nm_BoSlEQ8u-{min-height:250px}}._1XdjckgSGhgpGEGUohL62w{-ms-flex:0 0 290px;flex:0 0 290px;margin-left:16px;min-width:290px}._69IUkr5xucpVcbGP5l070:first-child{padding-top:0}
._1Yi7fbTTde5XeZybixm6FR{-ms-flex-align:center;align-items:center}.gWdCEy56VxHUE2mBMBOW6{height:32px;position:relative}._12F_RRHdGrCd7fUWkfqSgn{bottom:-1px;left:-1px;position:absolute}.OSpYRUTaGaz3fjrn4W5P9{display:inline-block}._1_5Q3J1CP2DOHmfGlUHZf3{margin-right:8px;max-width:160px}._2wcnJRvYkbVflIjjKlL5UQ{height:32px;margin-right:8px;width:32px}._2vd1AsQKSbwADj27oRcCpI{font-size:12px;font-weight:500;line-height:16px;display:block;font-size:11px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._2vd1AsQKSbwADj27oRcCpI:hover{text-decoration:underline}._2vCu8MDznHrM1jxVe1QlBk{font-size:12px;font-weight:400;line-height:16px;white-space:nowrap}._2RT-YVauGr7kW3UYPzKHiy{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-flow:row nowrap;flex-flow:row nowrap}._18hknfXm8lfBF7Ukdz7q_p{font-size:12px;font-weight:500;line-height:16px;margin-right:16px;white-space:nowrap}@media (max-width:480px){._18hknfXm8lfBF7Ukdz7q_p{display:none}}._2DMxsEeoABpUf9b0cmcofA{font-size:12px;font-weight:400;line-height:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._3TPTU-e7e845VpQqN3B9ni{font-size:12px;font-weight:400;line-height:16px;margin-top:4px}._1IK16jx0Si95U3hxV79faK{height:12px;margin-right:6px;margin-top:-2px;vertical-align:middle;width:12px}
._3TV1zxvLEbF8phHfZ17hyU{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex:0 0 auto;flex:0 0 auto;height:32px;margin:0 0 0 -5px;padding:0;position:relative;white-space:nowrap}._2-No1ECt3Twm8oRh3GhL5T{margin-right:4px;vertical-align:middle}._1Y9kO8WxKheHpQbgAgYk9P{margin:0 8px}._3ZNfZZMmSFZUWWm-nHK327{display:inline-block;line-height:1;vertical-align:middle}
._35Bx3s8VlFspHwPlg1MaHt{display:-ms-flexbox;display:flex;-ms-flex-flow:row nowrap;flex-flow:row nowrap;position:relative}._32Ni_aGBoPzRxNSy5eC_ck{width:20px;height:20px;margin-right:4px}
._1HoOlmppFDBC4s5XWY-Qcd{border-radius:5px;cursor:pointer;margin-bottom:12px;width:208px}._3vSJGY3bytdlY4DhANolyh{max-width:180px;overflow:hidden;padding:4px 3px;text-overflow:ellipsis;white-space:nowrap}
._3FMwep96W9D-wkC9u2Pc0L{-ms-flex:1;flex:1}._2yVioz8mzc0YBV2JyNXzRj,._3mrITcnODXcvMf9oonBXeD{display:-ms-flexbox;display:flex;-ms-flex-flow:column nowrap;flex-flow:column nowrap;-ms-flex:1;flex:1}._3mrITcnODXcvMf9oonBXeD{padding:12px 12px 4px;min-height:0}._20xUo-97VDWkydk8rn74dR{margin:4px 0}._1qlC_L_v_Aher9NBsvBIMR{padding-left:0;padding-right:0}._1UmG626eNsebZt_eyKdDL4{display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;overflow:hidden}._3wSK3_gZiuaUZtqPKu9z3M h2{display:inline-block;overflow:hidden;text-overflow:ellipsis;line-height:22px;max-height:44px;display:-webkit-inline-box;-webkit-line-clamp:2}
._2K1NDLfQ1li98LnvydBdNi{margin-top:4px;margin-bottom:8px}._2ZzXnnvViW1cNiyJDAwQDt{margin-top:4px;margin-bottom:4px}._3u6y1RQYCofMUyoR2kjC5l,._19mUmrg6WesSKSmZhQEjWV{-ms-flex:1 1 100%;flex:1 1 100%;margin-top:8px;overflow:hidden}._19mUmrg6WesSKSmZhQEjWV{-webkit-mask-image:linear-gradient(180deg,#000 60%,transparent);mask-image:linear-gradient(180deg,#000 60%,transparent)}._19mUmrg6WesSKSmZhQEjWV a{display:inline-block;max-width:250px;word-wrap:break-word}._19mUmrg6WesSKSmZhQEjWV table{max-width:250px}._1yIBLJ6HB85lFgtecGo5fE{-ms-flex:1 1 100%;flex:1 1 100%;margin-top:8px;overflow:hidden;display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-direction:column-reverse;flex-direction:column-reverse;height:180px;margin-left:-12px;margin-right:-12px;max-height:180px}._3UTXxzS2wbR9EWHksS_e8h{border:none;border-radius:0;height:180px;margin-bottom:0;max-height:180px;width:auto}._1Vzo24SML9Mhww7IxRI2pp{margin-top:4px}._2S1d6YLjro9lYVxzu3lo54 h2,.RIdh-lLjEPPyxAGw3Tu5k h2{font-size:16px;font-weight:500;line-height:20px}._2S1d6YLjro9lYVxzu3lo54 h2{display:inline-block;overflow:hidden;text-overflow:ellipsis;max-height:40px;display:-webkit-inline-box;-webkit-line-clamp:2}._2VNbdMdEXhCajLS8-L_dXA{-ms-flex:1;flex:1}
._1VEyfPEuexzZe9hba-iRHO{margin-top:4px}._1n20xUS5qp4e47iFGtw9aq,._2d67jSTekybXHvVa0aiPeA{margin-top:8px;overflow:hidden}._1n20xUS5qp4e47iFGtw9aq{display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-direction:column-reverse;flex-direction:column-reverse;margin-bottom:25px;margin-top:0}._12w64RgWbMewiHS8jnNSdb{padding-left:0;padding-right:0;max-height:unset}._2CBVS5apo2hj7P_BQTEGHU{margin-top:8px;overflow:hidden;-webkit-mask-image:linear-gradient(180deg,#000 60%,transparent);mask-image:linear-gradient(180deg,#000 60%,transparent);white-space:normal}._1FUSfbWJGefwqYuAM60ure{white-space:nowrap}.jrtYM65qam5e0uL2n3kee{bottom:5px;position:absolute;padding-left:8px}._2ryN5exqPp-pb-4tTHxLZM{border:none;border-radius:0;margin-bottom:0;width:auto}._1JWdNxX9pLv1cIjUnBA9pq{margin-top:4px}.nNAl8h2xgmI3rh94B2_yZ h2{display:inline-block;display:-webkit-inline-box;margin-top:8px;white-space:normal;font-size:16px;font-weight:500;line-height:20px}._3_ODhuQqf0ZWHwOj6t6qdW{padding-bottom:6px}._3_ODhuQqf0ZWHwOj6t6qdW h2{font-size:14px;font-weight:500;overflow:hidden;text-overflow:ellipsis;margin:0;padding:0;padding-left:8px;box-sizing:border-box;width:100%;white-space:nowrap;line-height:18px;display:block;-webkit-line-clamp:1}._3ooqRA2VZagRfjcB1yzI3b{-ms-flex:1;flex:1}
._3frwIZsviN9DZsLG67sLmi{display:-ms-flexbox;-ms-flex-direction:column;flex-direction:column;overflow-x:scroll}.RQnxwFRMh3X83Hz9EBfjo{box-sizing:border-box;display:-ms-flexbox;display:flex;height:232px;left:0;position:relative;white-space:nowrap}._2xZ8GerjLj79paUkBotIT0,._3Pb_4mgxuF76RyWxZcdGBZ{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;height:100%;position:absolute;top:-6px}._2xZ8GerjLj79paUkBotIT0{left:-12px}._2RjGX5q2_airKi2_ZERfkI{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;height:100%;position:absolute;top:-6px;right:0}
._3LMtz1VfEWV-85GKpc8tgB{box-sizing:border-box;background-color:#fff;width:312px;max-width:100%}._2NxXHps09aM9E8f6T9fcpr{margin-bottom:16px;border-radius:4px;overflow:hidden}._2NxXHps09aM9E8f6T9fcpr .uauJRz5x506whPi7jNdhN{color:#fff}._1DgODuUDpTNxSdMDFfYVeZ{width:16px;height:16px;margin:auto 0;display:inline-block;vertical-align:middle}._1eCy13PzruHlBXloycuhFd._1eCy13PzruHlBXloycuhFd._1eCy13PzruHlBXloycuhFd{margin-left:0;margin-right:6px}.NcbcnAd5Qh8hI-iay_t5X{padding:16px 0 6px 16px;font-family:Noto Sans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px}._1zWgCFkzt6omnEcdurqSZq{font-size:14px;font-weight:500;line-height:18px;padding:12px}._2S5O_ulAuPoFp8peDGeJvk,.uauJRz5x506whPi7jNdhN{font-family:Noto Sans,Arial,sans-serif;font-size:14px;font-weight:400;line-height:18px}._2S5O_ulAuPoFp8peDGeJvk{margin:16px}._31S13zvnSBkU1qj8hY2V8-{font-size:12px;font-weight:500;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;line-height:16px;-ms-flex-pack:justify;justify-content:space-between;margin:0;padding:0 12px;height:26px}._2f_zpcjXKEGOljlCzi35PS{display:inline-block}.iONHXmsE1o0mkysu98aXs{font-family:Noto Sans,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;display:inline-block}.L4JsIe9bt-W8T3obgHd1K{margin-left:4px}.L4JsIe9bt-W8T3obgHd1K:hover{text-decoration:underline}
._1sf7GjDaEBhme5ClA39yBo{margin-top:12px}._3NeLiUZNL4IFv7G1HHx8Km{position:relative;float:right;top:-14px;right:-8px}._1pX_BOlTi53SAMVSDu_OrT{height:20px;margin-left:-16px;margin-right:-16px}._2zf-tJ6dr3umn1gcuEpDk8{font-size:12px;font-weight:500;line-height:16px;-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;margin-top:12px}._1RYE13EcDNn1A1X1-h42f_{height:18px;margin-top:8px}._1q9k3G4VKHdAOsl64CbSge{border-radius:4px;height:12px;width:12px}._2HnhAFvq_dYxe2LgLqRXfK:hover{text-decoration:underline}
._3s4G_DfiVzqlz5GEzdeH2J{margin-bottom:16px;width:312px;max-width:312px;border-radius:4px;overflow:hidden}
._ZhON3a3vplThB8NFwuJn{border-radius:4px 4px 0 0;display:-ms-flexbox;display:flex;padding:0 12px}._2sggAEfRQLyoAl4J__5twU{padding:12px 0}.TmgZY6tDcdErbE5d7E0HJ{padding:12px}._3RPJ8hHnfFohktLZca18J6{padding:0}
._2a172ppKObqWfRHr8eWBKV{-ms-flex-negative:0;flex-shrink:0;margin-right:8px}
._3Qx5bBCG_O8wVZee9J-KyJ{margin-top:10px;padding-top:10px}._3Qx5bBCG_O8wVZee9J-KyJ ._2NbKFI9n3wPM76pgfAPEsN{margin:0;padding:0}._3Qx5bBCG_O8wVZee9J-KyJ ._2NbKFI9n3wPM76pgfAPEsN ._2btz68cXFBI3RWcfSNwbmJ{font-family:Noto Sans,Arial,sans-serif;font-size:14px;font-weight:400;line-height:21px;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;margin:8px 0}._3Qx5bBCG_O8wVZee9J-KyJ ._2NbKFI9n3wPM76pgfAPEsN ._2btz68cXFBI3RWcfSNwbmJ.QgBK4ECuqpeR2umRjYcP2{opacity:.4}._3Qx5bBCG_O8wVZee9J-KyJ ._2NbKFI9n3wPM76pgfAPEsN ._2btz68cXFBI3RWcfSNwbmJ label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;font-size:12px;font-weight:500;line-height:16px}._3Qx5bBCG_O8wVZee9J-KyJ ._2NbKFI9n3wPM76pgfAPEsN ._2btz68cXFBI3RWcfSNwbmJ label svg{fill:currentColor;height:20px;margin-right:4px;width:20px}._3Qx5bBCG_O8wVZee9J-KyJ ._4OtOUaGIjjp2cNJMUxme_{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;padding:0;width:100%}._3Qx5bBCG_O8wVZee9J-KyJ ._4OtOUaGIjjp2cNJMUxme_ svg{display:inline-block;height:12px;width:12px}
._1KWSZXqSM_BLhBzkPyJFGR{border-radius:4px;padding:12px;position:relative;width:auto}.c_dVyWK3BXRxSN3ULLJ_t{border-radius:4px 4px 0 0;height:34px;left:0;position:absolute;right:0;top:0}._1OQL3FCA9BfgI57ghHHgV3{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:start;justify-content:flex-start;margin-top:32px}._1OQL3FCA9BfgI57ghHHgV3 ._33jgwegeMTJ-FJaaHMeOjV{border-radius:9001px;height:32px;width:32px}._1OQL3FCA9BfgI57ghHHgV3 ._1wQQNkVR4qNpQCzA19X4B6{height:16px;margin-left:8px;width:200px}._39IvqNe6cqNVXcMFxFWFxx{display:-ms-flexbox;display:flex;margin:12px 0}._39IvqNe6cqNVXcMFxFWFxx ._29TSdL_ZMpyzfQ_bfdcBSc{-ms-flex:1;flex:1}._39IvqNe6cqNVXcMFxFWFxx .JEV9fXVlt_7DgH-zLepBH{height:18px;width:50px}._39IvqNe6cqNVXcMFxFWFxx ._3YCOmnWpGeRBW_Psd5WMPR{height:12px;margin-top:4px;width:60px}._2iO5zt81CSiYhWRF9WylyN{height:18px;margin-bottom:4px}._2iO5zt81CSiYhWRF9WylyN._2E9u5XvlGwlpnzki78vasG{width:230px}._2iO5zt81CSiYhWRF9WylyN.fDElwzn43eJToKzSCkejE{width:100%}._2iO5zt81CSiYhWRF9WylyN._2kNB7LAYYqYdyS85f8pqfi{width:250px}._2iO5zt81CSiYhWRF9WylyN._1XmngqAPKZO_1lDBwcQrR7{width:120px}._3XbVvl-zJDbcDeEdSgxV4_{border-radius:4px;height:32px;margin-top:16px;width:100%}
._37coyt0h8ryIQubA7RHmUc{margin-top:12px;padding-top:12px}._2XJvPvYIEYtcS4ORsDXwa3{border-radius:24px;box-sizing:border-box;-ms-flex:none;flex:none;margin-right:8px}._2Vkdik1Q8k0lBEhhA_lRKE{height:32px;width:32px}._2Vkdik1Q8k0lBEhhA_lRKE,.eGjjbHtkgFc-SYka3LM3M{border-radius:24px;box-sizing:border-box;-ms-flex:none;flex:none;margin-right:8px;background-position:50%;background-repeat:no-repeat;background-size:100%}.eGjjbHtkgFc-SYka3LM3M{height:36px;width:36px}.ZtU5GBgjF1m_LMGdL3d7x{height:32px;width:32px;padding:5px}._3mmJ1GWMWurrNWGlAosDIq,.ZtU5GBgjF1m_LMGdL3d7x{border-radius:24px;box-sizing:border-box;-ms-flex:none;flex:none;margin-right:8px}._3mmJ1GWMWurrNWGlAosDIq{height:36px;width:36px}
._3NFddqqrzfM8noBES52Qcy{-ms-flex-align:center;align-items:center;padding:12px 0 4px}._3NFddqqrzfM8noBES52Qcy:first-child{padding-top:0}._3NFddqqrzfM8noBES52Qcy:last-child{padding-bottom:10px}._3jEbHrUmHtMsZcfN-z_GpD{padding-right:8px}._2IANzA2n-6eA5T8Tz0TEVE{margin-top:8px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
._2xvhS-vDti9NRsRHMeqFmX,._3lILa1kmfAauhn7UzHzjLJ{contain:content;cursor:default;margin-bottom:24px}._2xvhS-vDti9NRsRHMeqFmX{border-radius:4px}._11h2c3EwgJFkGto36dozz7{contain:content;cursor:default;margin-bottom:24px}@media (min-width:960px){._11h2c3EwgJFkGto36dozz7{margin-left:50px;margin-right:50px}}._24S-GP9dX3BODxJwehVvRx{contain:content;cursor:default;margin-bottom:24px}@media (min-width:960px){._24S-GP9dX3BODxJwehVvRx{margin-left:0;margin-right:0}}._3UiOKr6dA-zB_4O4l14Icx{padding:10px 16px}.M4vA4bj3WWpggduxPTpBA{padding:0 0 16px 16px}._1l2RfnlEvwmRPfDwe46NRR{padding:0 16px 16px}
.pIlxiRadWdcEAlZpZ3w57{font-size:22px;font-weight:500;line-height:26px}._3vnIPkjF9gBa5GN2XFL1-n{font-size:20px;font-weight:500;line-height:24px}.MvcJW2tVfXEu3OFs8dyUn{font-size:18px;font-weight:500;line-height:22px}._1EMItyJFgJK_DvcDtXBW5N{font-size:16px;font-weight:500;line-height:20px}._1mVw3TrTmgMkNGKgvDGV4m{font-size:14px;font-weight:500;line-height:18px}._1g_9si81i_Ia2WHfpJJysD{font-size:12px;font-weight:500;line-height:16px}.hvzV6yOQzOK0U0lb9LIvc{font-size:12px;font-weight:400;line-height:16px}._2d5LK8qj16SfFMeiO51ZxA{font-size:12px;font-weight:500;line-height:16px}._25hPBsDfNcLK2OHu5-NUuT{font-size:10px;font-weight:700;letter-spacing:.5px;line-height:12px;text-transform:uppercase}.bd1M804sJobTLMn9jONGB{font-size:12px;font-weight:700;line-height:16px}._1DsZf85_3IARf2X_-StG2S{font-size:12px;line-height:24px}._1aPJzuSXNyPQv9HMxGsdTF,._1DsZf85_3IARf2X_-StG2S{font-weight:700;letter-spacing:.5px;text-transform:uppercase}._1aPJzuSXNyPQv9HMxGsdTF,._2Or84wUVDTQzfcwoGc7hDN{font-size:14px;line-height:32px}._2Or84wUVDTQzfcwoGc7hDN{font-weight:700}._2Je67ruqe_x3kX9CxIJw5j{font-size:22px;line-height:26px}._1uZDFpBkclKxCYaLJCdi8V,._2Je67ruqe_x3kX9CxIJw5j{font-family:Noto Sans,Arial,sans-serif;font-weight:400}._1uZDFpBkclKxCYaLJCdi8V{font-size:20px;line-height:24px}._1Ohj1SaXQOG-zW_vtbBdJl{font-size:18px;line-height:22px}._1Ohj1SaXQOG-zW_vtbBdJl,._3nI5qwD_dLjCpstcuSuzAO{font-family:Noto Sans,Arial,sans-serif;font-weight:400}._3nI5qwD_dLjCpstcuSuzAO{font-size:16px;line-height:20px}._1V79Mo61gXvVAUMIbL8xII{font-size:14px;line-height:18px}._1V79Mo61gXvVAUMIbL8xII,._21ljVz_9cQigv7inOMChAh{font-family:Noto Sans,Arial,sans-serif;font-weight:400}._21ljVz_9cQigv7inOMChAh{font-size:12px;line-height:16px}._1FceGC28wdOKKUG8PA4aSj{font-size:14px;line-height:21px}._1FceGC28wdOKKUG8PA4aSj,.G7nA9YAsdHSxeatvbcFfb{font-family:Noto Sans,Arial,sans-serif;font-weight:400}.G7nA9YAsdHSxeatvbcFfb{font-size:12px;line-height:18px}._3tx_deDztLnD8a7aX8ujTQ{font-family:Noto Mono,Menlo,Monaco,Consolas,monospace;font-size:13px;font-weight:400;line-height:20px}._1Fvwm_nUnZInOU-lABGsba{-ms-flex-align:stretch;align-items:stretch;-ms-flex-flow:row nowrap;flex-flow:row nowrap;height:40px;overflow:hidden}._1Fvwm_nUnZInOU-lABGsba,._2-ZGfZ8pVitk1Yqnsi6T4O{display:-ms-flexbox;display:flex}._3F10i35Gntc-o4JIMuVHZP{font-size:12px;font-weight:500;line-height:16px;-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;padding:0 10px;position:relative;white-space:nowrap}._3yylOQ1SS6TbgJKQ-8Ux7T{color:#0079d3}._3yylOQ1SS6TbgJKQ-8Ux7T:after{background-color:#0079d3;bottom:0;content:"";height:2px;left:0;position:absolute;width:100%}._3mQpw_UbTbG4OYN4uquCwf{height:20px;width:20px}.uBD5FR-aGquNrZX3qcvqv{-ms-flex-align:center;align-items:center;cursor:pointer;display:-ms-flexbox;display:flex;height:100%;position:absolute;top:0;width:24px}.EJw8EFAUIlMSU6YEHQEpX{left:0}.EJw8EFAUIlMSU6YEHQEpX ._3mQpw_UbTbG4OYN4uquCwf{transform:rotate(90deg)}._2smW023ohact6kPgSOwT5F{right:0}._2smW023ohact6kPgSOwT5F ._3mQpw_UbTbG4OYN4uquCwf{transform:rotate(-90deg)}
._3v16LgmyO8Zf2vXkCMxaap{position:-webkit-sticky;position:sticky;z-index:100;top:48px}._3v16LgmyO8Zf2vXkCMxaap._2dq2JfGI0L_UOOpy9csUuG{top:73px}._3v16LgmyO8Zf2vXkCMxaap._1hNmV-PmgC6xhngpX4Ww6c{top:88px}._3v16LgmyO8Zf2vXkCMxaap._3kGgzwkJvWmHQjDRfE3Zla{top:73px}._2GfQ0hFW3IubWuHuFqgPhn{margin:0 auto;max-width:1030px;position:relative}
._1b1Jalg2nxA_Z-BjKXRfAV{padding:8px 12px;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}._3-m5rOa3loUClNwpCv1uWU{height:24px;-ms-flex:0 0 24px;flex:0 0 24px;margin-right:12px}._3-m5rOa3loUClNwpCv1uWU path{fill:#ff4500}._1LofvgShcWAGgRJOa2IRlf{-ms-flex:1 1 auto;flex:1 1 auto}._17PUokUAvL3YJx6EyPdD9d{font-size:12px;font-weight:500;line-height:16px}.rn1KP8t9htFxyeAF8fdJ4{font-size:12px;font-weight:400;line-height:16px}._1Cg0rke34k99vLcCo_aCP1{-ms-flex:0 0 84px;flex:0 0 84px;height:28px;font-size:12px;font-weight:700;letter-spacing:.5px;line-height:24px;text-transform:uppercase}
._1JH-ukr83Pz2SZd5gYfjin{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex}._1fk4TxaaWwKgRCawvegijy{-ms-flex:0 0 32px;flex:0 0 32px;height:32px;margin-right:10px;width:32px}._2oFobGD6mMTl7VOWU4WEzg{font-size:12px;font-weight:500;line-height:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.eizo6O6TAwt9GD2gH-eXI:hover{text-decoration:underline}.x0jD2G0P19ywQfbEuUczh{-ms-flex:0 0 20px;flex:0 0 20px;height:20px;margin-left:20px;margin-right:8px}._37iZf6F-3XPLqF7SZ0AmYC{display:block;height:100%;width:100%}
._1BlAvWVMCHrKuk1aBiD0rO{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex}.SdGgakyQ3Q1wV1BG02KpS{-ms-flex:0 0 32px;flex:0 0 32px;height:32px;margin-right:8px;width:32px}._3UvQsAqQD7ZaeOwhy_dmq{border-radius:2px;height:16px;width:100%;margin-right:48px}
.Akj-sMP73429cfA-JV1_p{font-size:16px;font-weight:500;line-height:20px;margin-bottom:8px}._2wBIRCyBuaNPTzZ3B2VMkb{font-family:Noto Sans,Arial,sans-serif;font-size:14px;font-weight:400;line-height:21px;margin-bottom:16px}.Ncc60HBC_dv44qnV2OevV+.Ncc60HBC_dv44qnV2OevV{margin-top:8px}
._3E6INjIzonJwM0r4N1QJYK{margin-left:16px}.lMwVtd6llwkRVdjCNiCAl{background:var(--newCommunityTheme-line);height:20px;width:1px}
._3_c5cqV3WsdQo95Ql4El73,._3SRia4h16KBodhRWPhm8Yn{-ms-flex:1;flex:1;display:-ms-flexbox;display:flex;border-radius:4px;position:relative;-ms-flex-flow:row wrap;flex-flow:row wrap}._3SRia4h16KBodhRWPhm8Yn{height:180px;margin:0 auto;max-width:1020px;overflow:hidden}._3R8QK7DFEcDSPoSj255qHJ{height:16px;margin-bottom:4px;margin-left:10px}._3R8QK7DFEcDSPoSj255qHJ.fLTQnOxtJpKvmnJh5ATHh{width:90%;margin-top:110px}._3R8QK7DFEcDSPoSj255qHJ._2c6Ke7Z35QpkUQA7b_RdMX{width:75%}._1WvWGBpNLkD_JVC5Fdzz6n{border-radius:9001px;float:left;margin-left:10px;height:16px;width:16px}._3_bgt7LjReM2xalPiPzPhR{height:16px;margin-left:36px;width:100px}._1K3CRPtfEoi_X2HCsP1PDn{border-radius:4px;display:inline-block;-ms-flex:1;flex:1;height:180px;margin-right:10px;max-width:375px;min-width:208px}
._1_pR1ht4IEZ9YEim8HWhnn{-ms-flex-align:center;align-items:center;box-sizing:border-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-height:180px;-ms-flex-pack:center;justify-content:center;padding:0 24px;position:relative}.cNNw0iJilp53i5nVfBxEf{max-width:984px;width:100%}._3Wmex7eM-A2PuwJcY9tzuC{font-size:22px;font-weight:500;line-height:26px;color:#fff;font-size:44px;line-height:44px}.qv0Unf-rou9xlx3G0102y{font-size:20px;font-weight:500;line-height:24px;color:#fff;margin-top:20px;max-width:580px}.OoDUyBh7E8pgzdHjnv8T0{height:100%;object-position:left center}._2x0bYf3CVk5DL1cL-UPrxw{object-position:right center;height:100%}._15Qf6H_pWI2JiMAUCMaBPI{fill:#fff;height:16px;position:absolute;right:16px;top:16px;width:16px}
._1fauFKjg428h9E1m4B2Vr-{padding-bottom:10px}
/*# sourceMappingURL=Frontpage.416d66f646b388ca53df.css.map*/</style><link as="script" href="https://www.redditstatic.com/desktop2x/runtime~Reddit.781800aacb69877ebf97.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/RedesignContentFonts.a6f956d0b6518f708071.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/RedesignSystemFonts.6f01c338e1546906d45d.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/RedesignOldContentFonts.371bf7e083617c73517a.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/vendors~Chat~Client~Gifts~Poll~Reddit~RedesignChat.b7dece05c8943cdea084.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/vendors~Chat~Client~Gifts~Governance~Reddit.25ba2299bcb3613f8f06.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/vendors~Chat~Client~Governance~Reddit.b2f8d4f01894b2592d5b.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/vendors~Client~Governance~Reddit.f0c54af17c78c7813e02.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/vendors~Gifts~Poll~Reddit.465b9d2661dafd9d1341.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/vendors~Governance~Reddit.faa615b571967bf75e18.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/vendors~Reddit.a0b748cb4abb06a9a155.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/Governance~Profile~ProfileHomepage~ProfilePostComments~R2CommentsPage~R2Listing~Reddit.545c4781b7979f67dc2d.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/ChatPage~Client~Gifts~Governance~Reddit.9647228e55287df19071.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/Chat~Client~Gifts~Governance~Reddit.270df24b99bef88f1d52.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/Chat~Client~Governance~Reddit.b38f8402bdfcb077067a.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/Chat~Governance~Reddit~RedesignChat.08f16af6f9e5027b9144.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/Client~Governance~Reddit.ceaf77eb2b37d3e30b40.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/Governance~Reddit.0f1967fed1d683f8158b.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/Reddit.2bbd43e5a2b280d62008.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/vendors~CollectionCommentsPage~CommentsPage~Explore~Frontpage~ModListing~ModQueuePages~ModerationPag~2698b78e.7a3127ba5ec30ed4e1c0.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/vendors~Chat~CollectionCommentsPage~CommentsPage~Frontpage~PostCreation~RedesignChat~RichTextEditor~~f6a0790c.b36927a082075e6f9b86.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/CollectionCommentsPage~CommentsPage~Explore~Frontpage~GlobalModalContainer~GovernanceReleaseNotesMod~6b4ca950.3d417f996fa925da83a7.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/CollectionCommentsPage~CommentsPage~Explore~Frontpage~GovernanceReleaseNotesModal~ModListing~ModQueu~db251346.65f48f74b9b541d312c0.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/CollectionCommentsPage~CommentsPage~Frontpage~ModListing~ModQueuePages~ModerationPages~Multireddit~N~0561de65.b553a30a1dc002e38208.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/CollectionCommentsPage~CommentsPage~Explore~Frontpage~GovernanceReleaseNotesModal~ModListing~ModQueu~1084d5fc.fc0dd8e4bc35d0c1945c.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/CollectionCommentsPage~CommentsPage~Explore~Frontpage~ModListing~ModQueuePages~ModerationPages~Multi~fc7712a4.452d84669ac00a0919db.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/CollectionCommentsPage~CommentsPage~Explore~Frontpage~ModListing~ModQueuePages~ModerationPages~Multi~d27514f2.ed81b501752d50594326.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/CollectionCommentsPage~CommentsPage~Frontpage~ModListing~ModQueuePages~Multireddit~News~OriginalCont~53555296.8b5a35a56e34816f81c4.js" rel="preload"/><link as="script" href="https://www.redditstatic.com/desktop2x/Frontpage.a9fdee22075593488a2f.js" rel="preload"/><link rel="canonical" href="https://www.reddit.com/"/><link rel="next" href="https://www.reddit.com/?after=t3_bdrgyc"/><meta property="og:ttl" content="600"/><meta property="og:site_name" content="reddit"/><meta property="twitter:site" content="@reddit"/><meta property="twitter:card" content="summary"/><meta property="og:title" content="reddit"/><meta property="twitter:title" content="reddit"/><meta property="twitter:image" content="https://www.redditstatic.com/icon.png"/><meta property="og:type" content="website"/><meta property="og:url" content="https://www.reddit.com/"/><meta property="og:image" content="https://www.redditstatic.com/icon.png"/><meta property="og:image:width" content="256"/><meta property="og:image:height" content="256"/><link rel="apple-touch-icon" sizes="57x57" href="https://www.redditstatic.com/desktop2x/img/favicon/apple-icon-57x57.png"/><link rel="apple-touch-icon" sizes="60x60" href="https://www.redditstatic.com/desktop2x/img/favicon/apple-icon-60x60.png"/><link rel="apple-touch-icon" sizes="72x72" href="https://www.redditstatic.com/desktop2x/img/favicon/apple-icon-72x72.png"/><link rel="apple-touch-icon" sizes="76x76" href="https://www.redditstatic.com/desktop2x/img/favicon/apple-icon-76x76.png"/><link rel="apple-touch-icon" sizes="114x114" href="https://www.redditstatic.com/desktop2x/img/favicon/apple-icon-114x114.png"/><link rel="apple-touch-icon" sizes="120x120" href="https://www.redditstatic.com/desktop2x/img/favicon/apple-icon-120x120.png"/><link rel="apple-touch-icon" sizes="144x144" href="https://www.redditstatic.com/desktop2x/img/favicon/apple-icon-144x144.png"/><link rel="apple-touch-icon" sizes="152x152" href="https://www.redditstatic.com/desktop2x/img/favicon/apple-icon-152x152.png"/><link rel="apple-touch-icon" sizes="180x180" href="https://www.redditstatic.com/desktop2x/img/favicon/apple-icon-180x180.png"/><link rel="icon" type="image/png" sizes="192x192" href="https://www.redditstatic.com/desktop2x/img/favicon/android-icon-192x192.png"/><link rel="icon" type="image/png" sizes="32x32" href="https://www.redditstatic.com/desktop2x/img/favicon/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="96x96" href="https://www.redditstatic.com/desktop2x/img/favicon/favicon-96x96.png"/><link rel="icon" type="image/png" sizes="16x16" href="https://www.redditstatic.com/desktop2x/img/favicon/favicon-16x16.png"/><link rel="manifest" href="https://www.redditstatic.com/desktop2x/img/favicon/manifest.json"/><meta name="msapplication-TileColor" content="#ffffff"/><meta name="msapplication-TileImage" content="https://www.redditstatic.com/desktop2x/img/favicon/ms-icon-144x144.png"/><meta name="theme-color" content="#ffffff"/><meta name="jsapi"/></head><body><script>
__perfMark('app_html_start');
</script><div id="2x-container"><div class="h4934a-0 isqbWk"><div tabindex="-1"><div class="_1gsAk1ihQliBnDybgyjghy" id="SHORTCUT_FOCUSABLE_DIV" tabindex="-1"><style>:root { --newCommunityTheme-actionIcon: #818384;--newCommunityTheme-active: #0079D3;--newCommunityTheme-banner-backgroundColor: #2d97e5;--newCommunityTheme-banner-backgroundImage: ;--newCommunityTheme-banner-backgroundImagePosition: cover;--newCommunityTheme-banner-communityNameFormat: slashtag;--newCommunityTheme-banner-height: 64;--newCommunityTheme-banner-iconColor: #0079D3;--newCommunityTheme-banner-iconDimensions-borderRadius: 24;--newCommunityTheme-banner-iconDimensions-customSize: 32;--newCommunityTheme-banner-iconDimensions-padding: 6;--newCommunityTheme-banner-iconDimensions-size: 24;--newCommunityTheme-banner-iconImage: ;--newCommunityTheme-banner-lineHeight: 38;--newCommunityTheme-banner-positionedImage: ;--newCommunityTheme-banner-positionedImageAlignment: left;--newCommunityTheme-banner-positionedImageHeight: 48;--newCommunityTheme-banner-secondaryBannerPositionedImage: ;--newCommunityTheme-body: #1A1A1B;--newCommunityTheme-bodyText: #D7DADC;--newCommunityTheme-button: #D7DADC;--newCommunityTheme-canvas: #030303;--newCommunityTheme-errorText: #FF0000;--newCommunityTheme-field: #272729;--newCommunityTheme-flair: #343536;--newCommunityTheme-highlight: #17232D;--newCommunityTheme-inactive: #343536;--newCommunityTheme-lightText: #FFFFFF;--newCommunityTheme-line: #343536;--newCommunityTheme-linkText: #4FBCFF;--newCommunityTheme-menu: #030303;--newCommunityTheme-menuActiveText: #D7DADC;--newCommunityTheme-menuInactiveText: #D7DADC;--newCommunityTheme-metaText: #818384;--newCommunityTheme-navBar-activeLink: #E9F5FD;--newCommunityTheme-navBar-activeSubmenuCaret: #D7DADC;--newCommunityTheme-navBar-activeSubmenuLink: #D7DADC;--newCommunityTheme-navBar-backgroundColor: #030303;--newCommunityTheme-navBar-backgroundImage: ;--newCommunityTheme-navBar-hoverLink: #D7DADC;--newCommunityTheme-navBar-inactiveLink: #D7DADC;--newCommunityTheme-navBar-inactiveSubmenuCaret: #D7DADC;--newCommunityTheme-navBar-inactiveSubmenuLink: #D7DADC;--newCommunityTheme-navBar-submenuBackgroundColor: #1A1A1B;--newCommunityTheme-navIcon: #D7DADC;--newCommunityTheme-pageHeader: #818384;--newCommunityTheme-placeholder: #3A3A3C;--newCommunityTheme-post: #1A1A1B;--newCommunityTheme-postFlairText: #FFFFFF;--newCommunityTheme-postIcon: #818384;--newCommunityTheme-postLine: #343536;--newCommunityTheme-report: #1C1402;--newCommunityTheme-titleText: #D7DADC;--newCommunityTheme-voteIcons-downvoteActive: ;--newCommunityTheme-voteIcons-downvoteInactive: ;--newCommunityTheme-voteIcons-upvoteActive: ;--newCommunityTheme-voteIcons-upvoteInactive: ;--newCommunityTheme-voteText-base: #818384;--newCommunityTheme-voteText-downvote: #7193FF;--newCommunityTheme-voteText-upvote: #FF4500;--newCommunityTheme-widgetColors-lineColor: #343536;--newCommunityTheme-widgetColors-sidebarWidgetBackgroundColor: #1A1A1B;--newCommunityTheme-widgetColors-sidebarWidgetHeaderColor: #1A1A1B;--newRedditTheme-actionIcon: #818384;--newRedditTheme-active: #0079D3;--newRedditTheme-banner-backgroundColor: #24A0ED;--newRedditTheme-banner-backgroundImage: ;--newRedditTheme-banner-backgroundImagePosition: cover;--newRedditTheme-banner-communityNameFormat: slashtag;--newRedditTheme-banner-height: 64;--newRedditTheme-banner-iconColor: #24A0ED;--newRedditTheme-banner-iconDimensions-borderRadius: 24;--newRedditTheme-banner-iconDimensions-customSize: 32;--newRedditTheme-banner-iconDimensions-padding: 6;--newRedditTheme-banner-iconDimensions-size: 24;--newRedditTheme-banner-iconImage: ;--newRedditTheme-banner-lineHeight: 38;--newRedditTheme-banner-positionedImage: ;--newRedditTheme-banner-positionedImageAlignment: cover;--newRedditTheme-banner-positionedImageHeight: 48;--newRedditTheme-banner-secondaryBannerPositionedImage: ;--newRedditTheme-body: #1A1A1B;--newRedditTheme-bodyText: #D7DADC;--newRedditTheme-button: #D7DADC;--newRedditTheme-canvas: #030303;--newRedditTheme-errorText: #FF0000;--newRedditTheme-field: #272729;--newRedditTheme-flair: #343536;--newRedditTheme-highlight: #17232D;--newRedditTheme-inactive: #343536;--newRedditTheme-lightText: #FFFFFF;--newRedditTheme-line: #343536;--newRedditTheme-linkText: #4FBCFF;--newRedditTheme-menu: #030303;--newRedditTheme-menuActiveText: #D7DADC;--newRedditTheme-menuInactiveText: #D7DADC;--newRedditTheme-metaText: #818384;--newRedditTheme-navBar-activeLink: #E9F5FD;--newRedditTheme-navBar-activeSubmenuCaret: #D7DADC;--newRedditTheme-navBar-activeSubmenuLink: #D7DADC;--newRedditTheme-navBar-backgroundColor: #030303;--newRedditTheme-navBar-backgroundImage: ;--newRedditTheme-navBar-hoverLink: #D7DADC;--newRedditTheme-navBar-inactiveLink: #D7DADC;--newRedditTheme-navBar-inactiveSubmenuCaret: #D7DADC;--newRedditTheme-navBar-inactiveSubmenuLink: #D7DADC;--newRedditTheme-navBar-submenuBackgroundColor: #1A1A1B;--newRedditTheme-navIcon: #D7DADC;--newRedditTheme-pageHeader: #818384;--newRedditTheme-placeholder: #3A3A3C;--newRedditTheme-post: #1A1A1B;--newRedditTheme-postFlairText: #FFFFFF;--newRedditTheme-postIcon: #818384;--newRedditTheme-postLine: #343536;--newRedditTheme-report: #1C1402;--newRedditTheme-titleText: #D7DADC;--newRedditTheme-voteIcons-downvoteActive: ;--newRedditTheme-voteIcons-downvoteInactive: ;--newRedditTheme-voteIcons-upvoteActive: ;--newRedditTheme-voteIcons-upvoteInactive: ;--newRedditTheme-voteText-base: #818384;--newRedditTheme-voteText-downvote: #7193FF;--newRedditTheme-voteText-upvote: #FF4500;--newRedditTheme-widgetColors-lineColor: #343536;--newRedditTheme-widgetColors-sidebarWidgetBackgroundColor: #1A1A1B;--newRedditTheme-widgetColors-sidebarWidgetHeaderColor: #1A1A1B;--subredditContext-customEmojisSize: ;--subredditContext-isCommentsPage: ;--subredditContext-isOverlay: ; }</style><div class=""><header class="_2GyPfdsi-MbQFyHRECo9GO cx1ohrUAq6ARaXTX2u8YN s4rdgu3-0 eAICLF s1ipn2bl-0 eMpKLK" data-redditstyle="true"><div class="_2vkeRJojnV7cb9pMlPHy7d"><div class="_3dnbqz69WJTFCss8wl7Wlk"><span class="s1dqr9jy-0 imyGpC">Press J to jump to the feed. Press question mark to learn the rest of the keyboard shortcuts</span><a aria-label="Home" class="_30BbATRhFv3V83DHNDjJAO" href="/"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="_1O4jTk-dZ-VIxsCuYB6OR8"><g><circle fill="#FF4500" cx="10" cy="10" r="10"></circle><path fill="#FFF" d="M16.67,10A1.46,1.46,0,0,0,14.2,9a7.12,7.12,0,0,0-3.85-1.23L11,4.65,13.14,5.1a1,1,0,1,0,.13-0.61L10.82,4a0.31,0.31,0,0,0-.37.24L9.71,7.71a7.14,7.14,0,0,0-3.9,1.23A1.46,1.46,0,1,0,4.2,11.33a2.87,2.87,0,0,0,0,.44c0,2.24,2.61,4.06,5.83,4.06s5.83-1.82,5.83-4.06a2.87,2.87,0,0,0,0-.44A1.46,1.46,0,0,0,16.67,10Zm-10,1a1,1,0,1,1,1,1A1,1,0,0,1,6.67,11Zm5.81,2.75a3.84,3.84,0,0,1-2.47.77,3.84,3.84,0,0,1-2.47-.77,0.27,0.27,0,0,1,.38-0.38A3.27,3.27,0,0,0,10,14a3.28,3.28,0,0,0,2.09-.61A0.27,0.27,0,1,1,12.48,13.79Zm-0.18-1.71a1,1,0,1,1,1-1A1,1,0,0,1,12.29,12.08Z"></path></g></svg><svg class="_1bWuGs_1sq4Pqy099x_yy-" viewBox="0 0 55 17.44"><g fill="#D7DADC"><circle fill="#FF4500" cx="45.77" cy="3.33" r="2.05"></circle><path fill="inherit" d="M16.73,12.05a1.44,1.44,0,0,0,1.54-1.48,4.91,4.91,0,0,0-.1-0.83,5.66,5.66,0,0,0-5.34-4.61c-3,0-5.51,2.76-5.51,6.15s2.47,6.15,5.51,6.15a5.47,5.47,0,0,0,4.26-1.78,1.19,1.19,0,0,0-.19-1.77,1.25,1.25,0,0,0-1.53.16,3.78,3.78,0,0,1-2.54,1.09,3.42,3.42,0,0,1-3.14-3.08h7ZM12.82,7.44a3.3,3.3,0,0,1,3,2.56h-6A3.3,3.3,0,0,1,12.82,7.44Z"></path><path fill="inherit" d="M7.44,6.32a1.15,1.15,0,0,0-1-1.14A4.46,4.46,0,0,0,2.31,6.69V6.54A1.15,1.15,0,1,0,0,6.54V16a1.18,1.18,0,0,0,1.08,1.2A1.15,1.15,0,0,0,2.31,16V11.15A3.51,3.51,0,0,1,6.15,7.47H6.38A1.15,1.15,0,0,0,7.44,6.32Z"></path><path fill="inherit" d="M46.92,7.56a1.15,1.15,0,0,0-2.31,0V16a1.15,1.15,0,1,0,2.31,0V7.56Z"></path><path fill="inherit" d="M29.87,1.15A1.15,1.15,0,0,0,28.72,0h0a1.15,1.15,0,0,0-1.15,1.15V6.31a4,4,0,0,0-2.95-1.18c-3,0-5.51,2.76-5.51,6.15s2.47,6.15,5.51,6.15a4.08,4.08,0,0,0,3-1.19A1.15,1.15,0,0,0,29.87,16V1.15Zm-5.26,14c-1.77,0-3.21-1.72-3.21-3.85s1.43-3.85,3.21-3.85,3.21,1.72,3.21,3.85S26.39,15.13,24.62,15.13Z"></path><path fill="inherit" d="M41.92,1.15A1.15,1.15,0,0,0,40.77,0h0a1.15,1.15,0,0,0-1.15,1.15V6.31a4,4,0,0,0-2.95-1.18c-3,0-5.51,2.76-5.51,6.15s2.47,6.15,5.51,6.15a4.08,4.08,0,0,0,3-1.19A1.15,1.15,0,0,0,41.92,16V1.15Zm-5.26,14c-1.77,0-3.21-1.72-3.21-3.85s1.43-3.85,3.21-3.85,3.21,1.72,3.21,3.85S38.44,15.13,36.67,15.13Z"></path><path fill="inherit" d="M52.91,16V7.44h1a1,1,0,0,0,1.06-1,1,1,0,0,0-1-1.09H52.91V3.76a1.18,1.18,0,0,0-1.08-1.19,1.15,1.15,0,0,0-1.23,1.15V5.38h-1a1,1,0,0,0-1.06,1,1,1,0,0,0,1,1.09h1V16a1.15,1.15,0,0,0,1.15,1.15h0A1.15,1.15,0,0,0,52.91,16Z"></path></g></svg></a><div class="_3jiriKeNer8y0-1r6oWIFM m-not-pinned"><button aria-label="Start typing to filter your communities or use up and down to select." class="h-jI8r2f9ozTNqu_2TBeY" role="navigation"><span class="_1GieMuLljOrqnVpRAwz7VP">Home</span><svg class="eZQ5o2PrhR59wkAtPbxMU" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M7 8c0-1.654 1.346-3 3-3s3 1.346 3 3v2.843c-.511.17-1.47.392-3 .392-1.535 0-2.495-.223-3-.391V8zm8 1.895c2.409.46 4 1.241 4 2.131 0 1.418-4.03 2.568-9 2.568s-9-1.15-9-2.568c0-.89 1.59-1.671 4-2.131V8c0-2.757 2.243-5 5-5s5 2.243 5 5v1.895zM2.74 14.599c2.152.744 5.127.995 7.26.995s5.108-.25 7.26-.995l-2.955 2.12a7.394 7.394 0 0 1-8.61 0l-2.955-2.12z" fill="inherit" fill-rule="evenodd"></path><circle cx="16" cy="4" r="4" fill="none"></circle><circle cx="16" cy="4" r="3" fill="none"></circle></svg><svg class="_3CG2U_hX3HI-ibl5v2RCq1 r2jmej-0 eFNOac" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g><path fill="inherit" d="M14.1711599,9.3535 L9.99925636,13.529 L5.82735283,9.3535 C5.51262415,9.0385 5.73543207,8.5 6.18054835,8.5 L13.8179644,8.5 C14.2630807,8.5 14.4858886,9.0385 14.1711599,9.3535"></path></g></svg></button></div><div class="_3jiriKeNer8y0-1r6oWIFM _2dlTXDaX9JuL0bekTwhV18 s1vm61o8-3 lcwViv" id="SearchDropdown"><label class="s1vm61o8-1 hLCjnv" for="header-search-bar"><svg class="s1vm61o8-2 ccNujx" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg"><g><path d="M12.4743167,11.1299698 L14.6957506,13.2817166 C15.0924476,13.665969 15.1025359,14.2990536 14.7182834,14.6957506 C14.334031,15.0924476 13.7009464,15.1025359 13.3042494,14.7182834 L11.0486163,12.5334103 C10.0079655,13.2768564 8.73367013,13.7142857 7.35714286,13.7142857 C3.84600096,13.7142857 1,10.8682847 1,7.35714286 C1,3.84600096 3.84600096,1 7.35714286,1 C10.8682847,1 13.7142857,3.84600096 13.7142857,7.35714286 C13.7142857,8.76975383 13.2536226,10.0747029 12.4743167,11.1299698 Z M11.7142857,7.35714286 C11.7142857,4.95057046 9.76371525,3 7.35714286,3 C4.95057046,3 3,4.95057046 3,7.35714286 C3,9.76371525 4.95057046,11.7142857 7.35714286,11.7142857 C9.76371525,11.7142857 11.7142857,9.76371525 11.7142857,7.35714286 Z"></path></g></svg></label><form action="/search" autoComplete="off" method="get"><input type="search" class="s1vm61o8-0 bKZwgN" id="header-search-bar" name="q" placeholder="Search Reddit" role="search" value=""/></form></div></div><div class="_2u8LqkbMtzd0lpblMFbJq5"><div class="x0hiXHicn7r3BG9m1FJH4 _23q1waDr4n_2fR5A7zcZzb"><div class="_1vXXD2qKLnHetdKvisFzBD"><a class="_3dZnYgFFpifT-M_Vs2FAq6" id="header-quicklinks-popular" href="/r/popular"><svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g><polygon fill="none" points="0 20 20 20 20 0 0 0"></polygon><polygon fill="inherit" points="12.5 3.5 20 3.5 20 11 17.5 8.5 11.25 14.75 7.5 11 2.5 16 0 13.5 7.5 6 11.25 9.75 15 6"></polygon></g></svg></a><a class="_3dZnYgFFpifT-M_Vs2FAq6" id="header-quicklinks-all" href="/r/all"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><g fill-rule="evenodd"><polygon fill="none" points="0 20 20 20 20 .001 0 .001"></polygon><path fill="inherit" d="M1.25,17.5 L1.25,7.5 L6.25,7.5 L6.25,17.5 L1.25,17.5 Z M12.49995,17.5001 L7.49995,17.5001 L7.49995,5.0001 L4.99995,5.0001 L9.99995,0.0006 L14.99995,5.0001 L12.49995,5.0001 L12.49995,17.5001 Z M13.75,17.5 L13.75,12.5 L18.75,12.5 L18.75,17.5 L13.75,17.5 Z"></path></g></svg></a><a class="_3dZnYgFFpifT-M_Vs2FAq6" id="header-quicklinks-oc" href="/original"><svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill="inherit" d="M16.9998,2.9995 C18.1028,2.9995 18.9998,3.8975 18.9998,4.9995 L18.9998,14.9995 C18.9998,16.1025 18.1028,16.9995 16.9998,16.9995 L2.9998,16.9995 C1.8978,16.9995 0.9998,16.1025 0.9998,14.9995 L0.9998,4.9995 C0.9998,3.8975 1.8978,2.9995 2.9998,2.9995 L16.9998,2.9995 Z M13.9648,13.3525 C15.2718,13.3525 16.3188,12.6745 16.8278,11.5665 L15.1818,10.9775 C14.9318,11.4765 14.4528,11.8165 13.8338,11.8165 C13.0158,11.8165 12.3478,11.0575 12.3478,9.9995 C12.3478,8.9525 13.0058,8.1735 13.8438,8.1735 C14.4528,8.1735 14.9218,8.5025 15.1308,8.9615 L16.6968,8.2435 C16.1988,7.2755 15.2108,6.6365 13.9648,6.6365 C12.0588,6.6365 10.5118,8.1335 10.5118,9.9995 C10.5118,11.8755 12.0588,13.3525 13.9648,13.3525 Z M6.6248,13.3635 C8.5408,13.3635 10.0878,11.8755 10.0878,9.9995 C10.0878,8.1335 8.5408,6.6365 6.6248,6.6365 C4.7188,6.6365 3.1718,8.1335 3.1718,9.9995 C3.1718,11.8755 4.7188,13.3635 6.6248,13.3635 Z M6.625,8.1641 C7.562,8.1641 8.262,8.9421 8.262,10.0001 C8.262,11.0481 7.562,11.8361 6.625,11.8361 C5.697,11.8361 4.998,11.0481 4.998,10.0001 C4.998,8.9421 5.697,8.1641 6.625,8.1641 Z"></path></svg></a></div></div><div class="_19oWd7e3z7-ztUGzdIoCR7"><div class="s1cu8rnh-0 kCxZdn" id="email-verification-tooltip-id"><div class="s1dxm5k4-5 exNEfa"><span class="s1dxm5k4-0 edyYyY" id="HeaderUserActions--Chat"><a class="s1dxm5k4-4 jBTzrG" href="https://www.reddit.com/chat"><svg class="s1atn12p-0 fxOYte" viewBox="0 0 25 25" xmlns="http://www.w3.org/2000/svg"><g><path d="M18.5 13.17a1.62 1.62 0 0 1-2.35 0c-.31-.3-.48-.73-.48-1.17 0-.44.17-.87.49-1.17a1.7 1.7 0 0 1 2.35 0c.32.3.49.73.49 1.17 0 .44-.17.87-.5 1.17m-4.86-.85c-.03.1-.05.21-.1.32l-.15.28c-.07.1-.14.19-.22.25a1.62 1.62 0 0 1-2.35 0 1.85 1.85 0 0 1-.36-.53c-.05-.1-.07-.21-.1-.32-.01-.1-.03-.21-.03-.32 0-.44.18-.87.5-1.17a1.7 1.7 0 0 1 2.34 0c.32.3.5.73.5 1.17l-.03.32m-5.33 0c-.03.1-.06.21-.11.32-.04.1-.1.2-.15.28-.06.1-.13.19-.21.27a1.67 1.67 0 0 1-2.35 0c-.08-.08-.14-.18-.21-.27a1.85 1.85 0 0 1-.25-.6 1.62 1.62 0 0 1 .47-1.5 1.7 1.7 0 0 1 2.34 0 1.85 1.85 0 0 1 .47.85l.02.33-.02.32M12 0A12.01 12.01 0 0 0 1.99 18.6L.7 22.46a.67.67 0 0 0 .84.84L5.4 22A12.01 12.01 0 0 0 24 12c0-6.62-5.38-12-12-12"></path><path d="M18.5 13.17a1.62 1.62 0 0 1-2.35 0c-.31-.3-.48-.73-.48-1.17 0-.44.17-.87.49-1.17a1.7 1.7 0 0 1 2.35 0c.32.3.49.73.49 1.17 0 .44-.17.87-.5 1.17" fill="transparent"></path><path d="M13.64 12.32c-.03.1-.05.21-.1.32l-.15.28c-.07.1-.14.19-.22.25a1.62 1.62 0 0 1-2.35 0 1.85 1.85 0 0 1-.36-.53c-.05-.1-.07-.21-.1-.32-.01-.1-.03-.21-.03-.32 0-.44.18-.87.5-1.17a1.7 1.7 0 0 1 2.34 0c.32.3.5.73.5 1.17l-.03.32" fill="transparent"></path><path d="M8.3 12.32a1.85 1.85 0 0 1-.25.6c-.06.1-.13.19-.21.27a1.67 1.67 0 0 1-2.35 0c-.08-.08-.14-.18-.21-.27a1.85 1.85 0 0 1-.25-.6 1.62 1.62 0 0 1 .47-1.5 1.7 1.7 0 0 1 2.34 0 1.85 1.85 0 0 1 .47.85l.02.33-.02.32" fill="transparent"></path></g></svg></a></span><span class="s1dxm5k4-0 edyYyY" id="HeaderUserActions--Messages"><a class="s1dxm5k4-4 jBTzrG" href="/message/inbox"><svg class="s1r31706-0 eUhTeS" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M8.10849995,9.1565 L2.79999995,3.848 C3.17249995,3.6285 3.60499995,3.5 4.06849995,3.5 L16.5685,3.5 C17.0315,3.5 17.464,3.6285 17.8365,3.848 L12.528,9.1565 C11.31,10.375 9.32699995,10.375 8.10849995,9.1565 Z M13.1435,10.3085 L18.452,5 C18.6715,5.3725 18.8,5.805 18.8,6.2685 L18.8,13.7685 C18.8,15.149 17.6805,16.2685 16.3,16.2685 L3.79999995,16.2685 C2.41899995,16.2685 1.29999995,15.149 1.29999995,13.7685 L1.29999995,6.2685 C1.29999995,5.805 1.42849995,5.3725 1.64799995,5 L6.95649995,10.3085 C7.80949995,11.1615 8.92949995,11.588 10.05,11.588 C11.17,11.588 12.2905,11.1615 13.1435,10.3085 Z"></path></svg></a></span><span class="s1dxm5k4-0 edyYyY" id="HeaderUserActions--NewPost"><button class="s1dxm5k4-3 bTaMRD" aria-label="Create Post"><svg class="s1dxm5k4-1 dSKiPU" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M5,15 C4.448,15 4,14.553 4,14 L4,11.172 C4,10.906 4.105,10.652 4.293,10.465 L12.379,2.379 C12.77,1.988 13.402,1.988 13.793,2.379 L16.621,5.207 C17.012,5.598 17.012,6.23 16.621,6.621 L8.536,14.707 C8.348,14.895 8.094,15 7.829,15 L5,15 Z M17,16 C17.552,16 18,16.447 18,17 C18,17.553 17.552,18 17,18 L3,18 C2.448,18 2,17.553 2,17 C2,16.447 2.448,16 3,16 L17,16 Z"></path><g fill="none" fill-rule="evenodd"><polygon points="0 20 20 20 20 0 0 0"></polygon><use></use></g></svg></button></span></div><div class="header-user-dropdown"><button class="s1dxm5k4-6 cXRnFU o914k-12 cNaGat" aria-expanded="false" aria-haspopup="true" id="USER_DROPDOWN_ID"><div class="o914k-1 hcePqI"><div class="o914k-6 yQUgx"><img class="o914k-11 cspzEt" src="https://www.redditstatic.com/avatars/avatar_default_19_FF66AC.png"/><div class="o914k-3 ccjdDL"><div class="o914k-18 gwgtxT">eug0212</div><span class="o914k-2 iKOkcd"><svg width="12" height="12" viewBox="1 -4 20 23" xmlns="http://www.w3.org/2000/svg"><defs><path d="M4.034 3.471c2.18 0 4.119 1.31 4.941 3.335a.563.563 0 0 1-.262.71 2.79 2.79 0 0 0-1.197 1.195.56.56 0 0 1-.71.263 5.312 5.312 0 0 1-3.334-4.94c0-.31.252-.563.562-.563zm7.254 4.045a.562.562 0 0 1-.262-.71 5.312 5.312 0 0 1 4.94-3.335c.312 0 .562.251.562.563a5.312 5.312 0 0 1-3.334 4.94.558.558 0 0 1-.71-.262 2.802 2.802 0 0 0-1.196-1.196zm1.907 3.51a5.314 5.314 0 0 1 3.333 4.94c0 .31-.25.563-.562.563a5.314 5.314 0 0 1-4.94-3.335.564.564 0 0 1 .262-.71 2.807 2.807 0 0 0 1.197-1.198.56.56 0 0 1 .71-.26zm-4.482 1.457a.563.563 0 0 1 .262.711 5.315 5.315 0 0 1-4.941 3.335.563.563 0 0 1-.563-.563c0-2.18 1.31-4.118 3.335-4.94a.563.563 0 0 1 .71.261c.268.516.681.928 1.197 1.196zM10 6.333A6.497 6.497 0 0 0 7.755 3.54 4.46 4.46 0 0 1 9.71 1.08a.562.562 0 0 1 .578 0 4.46 4.46 0 0 1 1.957 2.459A6.497 6.497 0 0 0 10 6.333zm8.92 3.377c.107.178.107.4 0 .58a4.462 4.462 0 0 1-2.46 1.955 6.502 6.502 0 0 0-2.793-2.246 6.491 6.491 0 0 0 2.794-2.244A4.452 4.452 0 0 1 18.92 9.71zM10 13.666a6.497 6.497 0 0 0 2.246 2.795 4.46 4.46 0 0 1-1.957 2.458.556.556 0 0 1-.578 0 4.46 4.46 0 0 1-1.956-2.458A6.497 6.497 0 0 0 10 13.666zM6.333 10a6.497 6.497 0 0 0-2.794 2.245A4.46 4.46 0 0 1 1.08 10.29a.557.557 0 0 1 0-.578 4.46 4.46 0 0 1 2.458-1.957A6.497 6.497 0 0 0 6.333 10z" id="a"></path></defs><g fill="none" fill-rule="evenodd"><path d="M0 20h20V0H0z"></path><mask id="b" fill="#fff"><use xlink:href="#a"></use></mask><g mask="url(#b)" fill="#FF4500"><path d="M0 0h20v20H0z"></path></g></g></svg><span>2 karma</span></span></div></div><svg class="o914k-10 ePVVqs" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g><path fill="inherit" d="M14.1711599,9.3535 L9.99925636,13.529 L5.82735283,9.3535 C5.51262415,9.0385 5.73543207,8.5 6.18054835,8.5 L13.8179644,8.5 C14.2630807,8.5 14.4858886,9.0385 14.1711599,9.3535"></path></g></svg></div><span class="s1dqr9jy-0 imyGpC">User account menu</span></button></div></div></div></div></div></header></div><style>:root { --newCommunityTheme-actionIcon: #818384;--newCommunityTheme-active: #0079D3;--newCommunityTheme-banner-backgroundColor: #2d97e5;--newCommunityTheme-banner-backgroundImage: ;--newCommunityTheme-banner-backgroundImagePosition: cover;--newCommunityTheme-banner-communityNameFormat: slashtag;--newCommunityTheme-banner-height: 64;--newCommunityTheme-banner-iconColor: #0079D3;--newCommunityTheme-banner-iconDimensions-borderRadius: 24;--newCommunityTheme-banner-iconDimensions-customSize: 32;--newCommunityTheme-banner-iconDimensions-padding: 6;--newCommunityTheme-banner-iconDimensions-size: 24;--newCommunityTheme-banner-iconImage: ;--newCommunityTheme-banner-lineHeight: 38;--newCommunityTheme-banner-positionedImage: ;--newCommunityTheme-banner-positionedImageAlignment: left;--newCommunityTheme-banner-positionedImageHeight: 48;--newCommunityTheme-banner-secondaryBannerPositionedImage: ;--newCommunityTheme-body: #1A1A1B;--newCommunityTheme-bodyText: #D7DADC;--newCommunityTheme-button: #D7DADC;--newCommunityTheme-canvas: #030303;--newCommunityTheme-errorText: #FF0000;--newCommunityTheme-field: #272729;--newCommunityTheme-flair: #343536;--newCommunityTheme-highlight: #17232D;--newCommunityTheme-inactive: #343536;--newCommunityTheme-lightText: #FFFFFF;--newCommunityTheme-line: #343536;--newCommunityTheme-linkText: #4FBCFF;--newCommunityTheme-menu: #030303;--newCommunityTheme-menuActiveText: #D7DADC;--newCommunityTheme-menuInactiveText: #D7DADC;--newCommunityTheme-metaText: #818384;--newCommunityTheme-navBar-activeLink: #E9F5FD;--newCommunityTheme-navBar-activeSubmenuCaret: #D7DADC;--newCommunityTheme-navBar-activeSubmenuLink: #D7DADC;--newCommunityTheme-navBar-backgroundColor: #030303;--newCommunityTheme-navBar-backgroundImage: ;--newCommunityTheme-navBar-hoverLink: #D7DADC;--newCommunityTheme-navBar-inactiveLink: #D7DADC;--newCommunityTheme-navBar-inactiveSubmenuCaret: #D7DADC;--newCommunityTheme-navBar-inactiveSubmenuLink: #D7DADC;--newCommunityTheme-navBar-submenuBackgroundColor: #1A1A1B;--newCommunityTheme-navIcon: #D7DADC;--newCommunityTheme-pageHeader: #818384;--newCommunityTheme-placeholder: #3A3A3C;--newCommunityTheme-post: #1A1A1B;--newCommunityTheme-postFlairText: #FFFFFF;--newCommunityTheme-postIcon: #818384;--newCommunityTheme-postLine: #343536;--newCommunityTheme-report: #1C1402;--newCommunityTheme-titleText: #D7DADC;--newCommunityTheme-voteIcons-downvoteActive: ;--newCommunityTheme-voteIcons-downvoteInactive: ;--newCommunityTheme-voteIcons-upvoteActive: ;--newCommunityTheme-voteIcons-upvoteInactive: ;--newCommunityTheme-voteText-base: #818384;--newCommunityTheme-voteText-downvote: #7193FF;--newCommunityTheme-voteText-upvote: #FF4500;--newCommunityTheme-widgetColors-lineColor: #343536;--newCommunityTheme-widgetColors-sidebarWidgetBackgroundColor: #1A1A1B;--newCommunityTheme-widgetColors-sidebarWidgetHeaderColor: #1A1A1B;--newRedditTheme-actionIcon: #818384;--newRedditTheme-active: #0079D3;--newRedditTheme-banner-backgroundColor: #24A0ED;--newRedditTheme-banner-backgroundImage: ;--newRedditTheme-banner-backgroundImagePosition: cover;--newRedditTheme-banner-communityNameFormat: slashtag;--newRedditTheme-banner-height: 64;--newRedditTheme-banner-iconColor: #24A0ED;--newRedditTheme-banner-iconDimensions-borderRadius: 24;--newRedditTheme-banner-iconDimensions-customSize: 32;--newRedditTheme-banner-iconDimensions-padding: 6;--newRedditTheme-banner-iconDimensions-size: 24;--newRedditTheme-banner-iconImage: ;--newRedditTheme-banner-lineHeight: 38;--newRedditTheme-banner-positionedImage: ;--newRedditTheme-banner-positionedImageAlignment: cover;--newRedditTheme-banner-positionedImageHeight: 48;--newRedditTheme-banner-secondaryBannerPositionedImage: ;--newRedditTheme-body: #1A1A1B;--newRedditTheme-bodyText: #D7DADC;--newRedditTheme-button: #D7DADC;--newRedditTheme-canvas: #030303;--newRedditTheme-errorText: #FF0000;--newRedditTheme-field: #272729;--newRedditTheme-flair: #343536;--newRedditTheme-highlight: #17232D;--newRedditTheme-inactive: #343536;--newRedditTheme-lightText: #FFFFFF;--newRedditTheme-line: #343536;--newRedditTheme-linkText: #4FBCFF;--newRedditTheme-menu: #030303;--newRedditTheme-menuActiveText: #D7DADC;--newRedditTheme-menuInactiveText: #D7DADC;--newRedditTheme-metaText: #818384;--newRedditTheme-navBar-activeLink: #E9F5FD;--newRedditTheme-navBar-activeSubmenuCaret: #D7DADC;--newRedditTheme-navBar-activeSubmenuLink: #D7DADC;--newRedditTheme-navBar-backgroundColor: #030303;--newRedditTheme-navBar-backgroundImage: ;--newRedditTheme-navBar-hoverLink: #D7DADC;--newRedditTheme-navBar-inactiveLink: #D7DADC;--newRedditTheme-navBar-inactiveSubmenuCaret: #D7DADC;--newRedditTheme-navBar-inactiveSubmenuLink: #D7DADC;--newRedditTheme-navBar-submenuBackgroundColor: #1A1A1B;--newRedditTheme-navIcon: #D7DADC;--newRedditTheme-pageHeader: #818384;--newRedditTheme-placeholder: #3A3A3C;--newRedditTheme-post: #1A1A1B;--newRedditTheme-postFlairText: #FFFFFF;--newRedditTheme-postIcon: #818384;--newRedditTheme-postLine: #343536;--newRedditTheme-report: #1C1402;--newRedditTheme-titleText: #D7DADC;--newRedditTheme-voteIcons-downvoteActive: ;--newRedditTheme-voteIcons-downvoteInactive: ;--newRedditTheme-voteIcons-upvoteActive: ;--newRedditTheme-voteIcons-upvoteInactive: ;--newRedditTheme-voteText-base: #818384;--newRedditTheme-voteText-downvote: #7193FF;--newRedditTheme-voteText-upvote: #FF4500;--newRedditTheme-widgetColors-lineColor: #343536;--newRedditTheme-widgetColors-sidebarWidgetBackgroundColor: #1A1A1B;--newRedditTheme-widgetColors-sidebarWidgetHeaderColor: #1A1A1B;--subredditContext-customEmojisSize: ;--subredditContext-isCommentsPage: ;--subredditContext-isOverlay: ; }</style><div class=""><div class="_1nxEQl5D2Bx2jxDILRHemb s4rdgu3-1 iYvFKz" aria-hidden="false"><div><div class="s1ljaa4r-0 iNXRIc"><div class="s1ljaa4r-4 illVHt s1ljaa4r-3 yPkkG"></div><div class="s1ljaa4r-1 kgVjDg"><div class="s1ljaa4r-2 hgijtZ"></div><div class="s8rr6fz-3 bhWWEo"><div class="s8rr6fz-0 kfLJdE"><div class="sdccme-0 dGVBeH"><div class="s8rr6fz-2 kEJruH"><div class="s1dqsdhz-0 fLroyf"><div class="s1yee1w-8 kuMSMg" id="view--layout--FUE"><div class="s1yee1w-0 fKfgvn">View</div><div class="s1yee1w-5 dPChbf"><button class="s1yee1w-7 xLIlr s1yee1w-6 eegxjA" aria-label="card" aria-pressed="false" id="layoutSwitch--card"><svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="s1yee1w-4 hYAhIh"><path fill="inherit" d="M1.75,9.375 L1.75,1.75 L18.25,1.75 L18.25,9.375 L1.75,9.375 Z M1.75,18.25 L1.75,10.625 L18.25,10.625 L18.25,18.25 L1.75,18.25 Z"></path></svg></button><button class="s1yee1w-7 dEQgTg s1yee1w-6 eegxjA" aria-label="classic" aria-pressed="true" id="layoutSwitch--classic"><svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="s1yee1w-3 aVOJu"><path fill="inherit" d="M1.75,6.60294118 L1.75,1.75 L18.25,1.75 L18.25,6.60294118 L1.75,6.60294118 Z M1.75,12.4264706 L1.75,7.57352941 L18.25,7.57352941 L18.25,12.4264706 L1.75,12.4264706 Z M1.75,18.25 L1.75,13.3970588 L18.25,13.3970588 L18.25,18.25 L1.75,18.25 Z"></path></svg></button><button class="s1yee1w-7 xLIlr s1yee1w-6 eegxjA" aria-label="compact" aria-pressed="false" id="layoutSwitch--compact"><svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="s1yee1w-2 bhDOuz"><path fill="inherit" d="M1.75,4.95149254 L1.75,1.75 L18.25,1.75 L18.25,4.95149254 L1.75,4.95149254 Z M1.75,9.38432836 L1.75,6.18283582 L18.25,6.18283582 L18.25,9.38432836 L1.75,9.38432836 Z M1.75,18.25 L1.75,15.0485075 L18.25,15.0485075 L18.25,18.25 L1.75,18.25 Z M1.75,13.8171642 L1.75,10.6156716 L18.25,10.6156716 L18.25,13.8171642 L1.75,13.8171642 Z"></path></svg></button></div></div><div class="lMwVtd6llwkRVdjCNiCAl"></div><div class="_3E6INjIzonJwM0r4N1QJYK s1t1e1ub-7 fXGokz"><div class="s1t1e1ub-3 hHLUeR">Sort</div><div class="s1t1e1ub-5 clxnGR"><button class="s1t1e1ub-4 FuFkN s1nordvo-2 fGICXp b1zwxr-0 hxpTao" id="ListingSort--SortPicker" role="menuitem"><div class="s1nordvo-0 iRFTnd"><svg class="s1qt4be1-4 iiOULB" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M13.47 9.414a2 2 0 1 1-2.828-2.828 2 2 0 0 1 2.828 2.828M18.056 3c0 3.003-1.169 5.826-3.293 7.949l-2.389 2.389c1.091 1.738.89 4.061-.62 5.572a.5.5 0 0 1-.708 0l-2.829-2.829-4.243-4.242-2.828-2.828a.5.5 0 0 1 0-.707 4.467 4.467 0 0 1 3.182-1.319c.86 0 1.68.249 2.39.697l2.388-2.389A11.173 11.173 0 0 1 17.056 2a1 1 0 0 1 1 1zM3.207 14.727c.688-.687 1.616-.627 2.182-.06.283.284.44.662.439 1.062 0 .4-.156.777-.44 1.06-.789.79-1.798 1.207-2.827 1.207a.5.5 0 0 1-.5-.5c0-1.045.407-2.028 1.146-2.768z" fill="currentColor"></path></g></svg></div><span class="s1nordvo-1 bVDUJS">best</span><i class="icon icon-dropdownTriangle _1oxgVV3q47KbjEKqP5CHuM s1l2kw3h-0 gBulPH"></i></button></div><div class="s1ksf9tn-0 hbcgEe"><a class="s1nordvo-2 kTfnjO s1fauk9w-0 jnqAtA" role="menuitem" href="/best/"><div class="s1nordvo-0 iRFTnd"><svg class="s1qt4be1-4 iiOULB" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M13.47 9.414a2 2 0 1 1-2.828-2.828 2 2 0 0 1 2.828 2.828M18.056 3c0 3.003-1.169 5.826-3.293 7.949l-2.389 2.389c1.091 1.738.89 4.061-.62 5.572a.5.5 0 0 1-.708 0l-2.829-2.829-4.243-4.242-2.828-2.828a.5.5 0 0 1 0-.707 4.467 4.467 0 0 1 3.182-1.319c.86 0 1.68.249 2.39.697l2.388-2.389A11.173 11.173 0 0 1 17.056 2a1 1 0 0 1 1 1zM3.207 14.727c.688-.687 1.616-.627 2.182-.06.283.284.44.662.439 1.062 0 .4-.156.777-.44 1.06-.789.79-1.798 1.207-2.827 1.207a.5.5 0 0 1-.5-.5c0-1.045.407-2.028 1.146-2.768z" fill="currentColor"></path></g></svg></div><span class="s1nordvo-1 bVDUJS">best</span></a><a class="s1nordvo-2 ycAjH s1fauk9w-0 jnqAtA" role="menuitem" href="/hot/"><div class="s1nordvo-0 iRFTnd"><svg class="s1qt4be1-0 juutRX" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><title>Hot</title><path d="M10.31.61a.5.5,0,0,0-.61,0C9.41.83,2.75,6.07,2.75,11.47a8.77,8.77,0,0,0,3.14,6.91.5.5,0,0,0,.75-.64,3.84,3.84,0,0,1-.55-2A7.2,7.2,0,0,1,10,9.56a7.2,7.2,0,0,1,3.91,6.23,3.84,3.84,0,0,1-.55,2,.5.5,0,0,0,.75.64,8.77,8.77,0,0,0,3.14-6.91C17.25,6.07,10.59.83,10.31.61Z"></path></svg></div><span class="s1nordvo-1 bVDUJS">hot</span></a><a class="s1nordvo-2 ycAjH s1fauk9w-0 jnqAtA" role="menuitem" href="/new/"><div class="s1nordvo-0 iRFTnd"><svg class="s1qt4be1-1 fkcbSO" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g><polygon fill="inherit" points="17.16 10 19.07 12.936 15.799 14.188 15.619 17.686 12.237 16.776 10.035 19.5 7.833 16.776 4.451 17.686 4.271 14.188 1 12.936 2.91 10 1 7.065 4.271 5.812 4.451 2.315 7.833 3.224 10.035 .5 12.237 3.224 15.619 2.315 15.799 5.812 19.07 7.065"></polygon></g></svg></div><span class="s1nordvo-1 bVDUJS">new</span></a><a class="s1nordvo-2 ycAjH s1fauk9w-0 jnqAtA" role="menuitem" href="/controversial/"><div class="s1nordvo-0 iRFTnd"><svg class="s1qt4be1-2 kiEVp" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g><polygon fill="inherit" points="16 0 7.25 0 3.5 10.108 8.5 10.108 4.475 20 16 8 11 8"></polygon></g></svg></div><span class="s1nordvo-1 bVDUJS">controversial</span></a><a class="s1nordvo-2 ycAjH s1fauk9w-0 jnqAtA" role="menuitem" href="/top/"><div class="s1nordvo-0 iRFTnd"><svg class="s1qt4be1-3 cAaFtO" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g><path fill="inherit" d="M1.25,17.5 L1.25,7.5 L6.25,7.5 L6.25,17.5 L1.25,17.5 Z M12.49995,17.5001 L7.49995,17.5001 L7.49995,5.0001 L4.99995,5.0001 L9.99995,0.0006 L14.99995,5.0001 L12.49995,5.0001 L12.49995,17.5001 Z M13.75,17.5 L13.75,12.5 L18.75,12.5 L18.75,17.5 L13.75,17.5 Z"></path></g></svg></div><span class="s1nordvo-1 bVDUJS">top</span></a><a class="s1nordvo-2 ycAjH s1fauk9w-0 jnqAtA" role="menuitem" href="/rising/"><div class="s1nordvo-0 iRFTnd"><svg class="s1qt4be1-5 fAVHJE" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g><path fill="inherit" d="M18.5 4h-6a.5.5 0 0 0-.35.85l1.64 1.65-3.29 3.29L8.21 7.5a1 1 0 0 0-1.41 0L.65 13.65a.5.5 0 0 0 0 .71l2 2a.5.5 0 0 0 .71 0l4.14-4.15 2.29 2.29a1 1 0 0 0 1.41 0l5.3-5.29 1.65 1.65a.5.5 0 0 0 .85-.36v-6a.5.5 0 0 0-.5-.5z"></path></g></svg></div><span class="s1nordvo-1 bVDUJS">rising</span></a></div></div></div></div></div><div class="s8rr6fz-1 eWwmfL"></div></div></div><div style="max-width:100%"></div><div class="s1ljaa4r-5 fmkWQd" style="max-width:100%"><div class="sdccme-0 dGVBeH"><div class="rpBJOHq2PR60pnwJlUyP0 s1rcgrht-0 eEVuIz"><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_bdt4ii s1ukwo15-0 RqhAo" id="t3_bdt4ii" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_bdt4ii"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">34</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><a href="https://youtu.be/xT9VgRxY9cc" rel="noopener noreferrer" target="_blank"><div class="_2c1ElNxHftd8W_nZtcG9zf _2YO2O4rMRYYMeH_t2y8M5w _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" style="border-color:#D7DADC;background:"><i class="icon icon-link _2hIvPRO2xz4rn9LXAJXYDa s1m0a5q6-1 hCpeeB ej8hhi-1 eghWMc"></i><div class="m0n699kowSp8Wfa40lqpF"><i class="icon icon-outboundLink _2rOixIHGmpfZB93ihJsw3V"></i></div></div></a></div></div><button class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><a data-click-id="body" class="SQnoC3ObvgnGjWt90zD9Z" href="/r/Cello/comments/bdt4ii/gautier_capu%C3%A7on_paying_homage_to_notre_dame/"><h2 class="s1okktje-0 liRtqP">Gautier Capuçon paying homage to Notre Dame Cathedral. Transcending the role of the artist in to something more.</h2></a></span><a class="b5szba-0 dusrSl" href="https://youtu.be/xT9VgRxY9cc" size="2" rel="noopener noreferrer" target="_blank">youtu.be/xT9VgR...<i class="icon icon-outboundLink qgDkGQIoFEpMMeNtfI0BY"></i></a><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="xvda30-0 camSYk"><a class="_1L0pdcPf58t25Jy6ljHIKR s1i3ufq7-0 daeHTp" data-click-id="subreddit" href="/r/Cello/">r/Cello</a><div id="SubredditInfoTooltip--t3_bdt4ii--Cello"></div></div><span class="_37gsGHa8DMRAxBmQS-Ppg8 w931f2-0 lhpqQT" role="presentation">•</span><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="_2fCzxBE1dlMh4OFc7B3Dun">Posted by</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/elynwen">u/elynwen</a><div id="UserInfoTooltip--t3_bdt4ii"></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/r/Cello/comments/bdt4ii/gautier_capuçon_paying_homage_to_notre_dame/" id="PostTopMeta--Created--false--t3_bdt4ii" target="_blank" rel="nofollow noopener">6 hours ago</a></div><div></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 "></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="_36kpXQ-z7Hr61j8878uRkP"><button class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">34</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/r/Cello/comments/bdt4ii/gautier_capu%C3%A7on_paying_homage_to_notre_dame/"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">5 comments</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_bdt4ii-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-hide vlzsw3-0 giMEpI"></i></div><span class="s1nordvo-1 bVDUJS">hide</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-report _1MDjRAzxk1RSTB12748O1v vlzsw3-1 junIdA"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">report</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_bdt4ii-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_bdrsqy s1ukwo15-0 RqhAo" id="t3_bdrsqy" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_bdrsqy"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">34.8k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><div class="_2c1ElNxHftd8W_nZtcG9zf _2YO2O4rMRYYMeH_t2y8M5w _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" style="border-color:#343536;background:"><i class="icon icon-text _2hIvPRO2xz4rn9LXAJXYDa s1m0a5q6-1 kXVArd ej8hhi-4 cJlUoW"></i></div></div></div><a class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-2 gdpVib" aria-label="View content" data-click-id="expando_open" rel="nofollow" href="/r/AskReddit/comments/bdrsqy/you_suddenly_have_all_the_money_youll_ever_want/"><i class="icon icon-expandoMediaLightbox saNpcHve-34zjaa0cbIxW s14hmdpf-0 hPmpwW"></i></a></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><a data-click-id="body" class="SQnoC3ObvgnGjWt90zD9Z" href="/r/AskReddit/comments/bdrsqy/you_suddenly_have_all_the_money_youll_ever_want/"><h2 class="s1okktje-0 liRtqP">You suddenly have all the money you'll ever want or need in your life. What's the first thing you do with your newfound wealth?</h2></a></span><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="xvda30-0 camSYk"><a class="_1L0pdcPf58t25Jy6ljHIKR s1i3ufq7-0 daeHTp" data-click-id="subreddit" href="/r/AskReddit/">r/AskReddit</a><div id="SubredditInfoTooltip--t3_bdrsqy--AskReddit"></div></div><span class="_37gsGHa8DMRAxBmQS-Ppg8 w931f2-0 lhpqQT" role="presentation">•</span><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="_2fCzxBE1dlMh4OFc7B3Dun">Posted by</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/SquidleyStudios">u/SquidleyStudios</a><div id="UserInfoTooltip--t3_bdrsqy"></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/r/AskReddit/comments/bdrsqy/you_suddenly_have_all_the_money_youll_ever_want/" id="PostTopMeta--Created--false--t3_bdrsqy" target="_blank" rel="nofollow noopener">9 hours ago</a></div><div></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 _3sYCnvIxJkhkOfLVTWR67K"><span class="_2y3bja4n4-unxyUrMEFH8C s1lxazz9-0 gjflKZ"><i id="PostAwardBadges--t3_bdrsqy-gid1"><img class="_3u6g9UTYlEOr-yfM5hyq3p" src="https://www.redditstatic.com/desktop2x/img/gold/badges/award-silver-cartoon.png"/></i></span><button class="_3mcXKZUh7FvUMLSv0AHyXs"><i class="icon icon-addGildDashed _2J9jlNokb9X4gvrrZR3BX2"></i></button></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="_36kpXQ-z7Hr61j8878uRkP"><a class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-2 gdpVib" aria-label="View content" data-click-id="expando_open" rel="nofollow" href="/r/AskReddit/comments/bdrsqy/you_suddenly_have_all_the_money_youll_ever_want/"><i class="icon icon-expandoMediaLightbox saNpcHve-34zjaa0cbIxW s14hmdpf-0 hPmpwW"></i></a><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">34.8k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/r/AskReddit/comments/bdrsqy/you_suddenly_have_all_the_money_youll_ever_want/"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">19.9k comments</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_bdrsqy-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-hide vlzsw3-0 giMEpI"></i></div><span class="s1nordvo-1 bVDUJS">hide</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-report _1MDjRAzxk1RSTB12748O1v vlzsw3-1 junIdA"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">report</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_bdrsqy-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_q=CgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA=&s=cfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ= promotedlink s1ukwo15-0 RqhAo" id="t3_q=CgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA=&s=cfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ=" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid #D7DADC"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_q=CgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA=&s=cfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ="><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">2</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><a href="https://alb.reddit.com/c?q=CgADCJJZCxa-Gd8KAAUh-O3ndAFg0QoABiH47ed0AGDRCAAHAAAAAgoADAiW27DedfJgAA==&s=rcAyazYflm3KW-6p580TFXWLx8TDztmJpxBWgf3ggtY=&r=aHR0cHM6Ly93d3cubWF0Y2guY29tL2NweC9lbi11cy9sYW5kaW5nL2Rpc3BsYXkvODQxMjM_dHJhY2tpbmdpZD02MDIyMjYmYmFubmVyaWQ9OTU1MTI0NA==" rel="noopener noreferrer" target="_blank"><div aria-label="If only it were easier to meet new people in your area…Oh wait, it is. Try Match!" class="_2c1ElNxHftd8W_nZtcG9zf _33Pa96SGhFVpZeI6a7Y_Pl _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" role="img" style="background-image:url(https://b.thumbs.redditmedia.com/7iAHiLKMMFxCm3iXLzo5tcWaaZXR11ItU60rponL-Gw.jpg);border-color:#343536"><img alt="If only it were easier to meet new people in your area…Oh wait, it is. Try Match!" class="_25ZOvQhQdAqwdxPd5z-KFB hiddenImg"/></div></a></div></div><button class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><h2 class="s1okktje-0 liRtqP">If only it were easier to meet new people in your area…Oh wait, it is. Try Match!</h2></span><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="s3dr7r-0 iIHfsN">promoted</span><span class="_37gsGHa8DMRAxBmQS-Ppg8 g2ylbe-0 ZdrFI" role="presentation">•</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/match">u/match</a><div id="UserInfoTooltip--t3_q=CgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA=&s=cfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ="></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/comments/bbe20j/if_only_it_were_easier_to_meet_new_people_in_your/?instanceId=t3_q%3DCgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA%3D%26s%3DcfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ%3D" id="PostTopMeta--Created--false--t3_q=CgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA=&s=cfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ=" target="_blank" rel="nofollow noopener">6 days ago</a><span class="_1iAifs5p5MzPoJz5YrErUW"><span class="_2fCzxBE1dlMh4OFc7B3Dun">from</span><a class="_3V0C4FGg6153xIBQjwsycq" href="https://alb.reddit.com/c?q=CgADCJJZCxa-Gd8KAAUh-O3ndAFg0QoABiH47ed0AGDRCAAHAAAAAgoADAiW27DedfJgAA==&s=rcAyazYflm3KW-6p580TFXWLx8TDztmJpxBWgf3ggtY=&r=aHR0cHM6Ly93d3cubWF0Y2guY29tL2NweC9lbi11cy9sYW5kaW5nL2Rpc3BsYXkvODQxMjM_dHJhY2tpbmdpZD02MDIyMjYmYmFubmVyaWQ9OTU1MTI0NA==" rel="noopener noreferrer" target="_blank">match.com</a></span></div><div><i class="icon icon-lock XHMWG1CPWX8RXeNg-o5-R _3wTfn3Meg1rXJ-qd2jUWMt" id="PostBadges--Lock--t3_q=CgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA=&s=cfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ="><span class="i729lw-0 ebGXPK">Comments are locked</span></i></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 "></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="bzwakq-0 bZEUhO"><a class="b5szba-0 dusrSl" href="https://alb.reddit.com/c?q=CgADCJJZCxa-Gd8KAAUh-O3ndAFg0QoABiH47ed0AGDRCAAHAAAAAgoADAiW27DedfJgAA==&s=rcAyazYflm3KW-6p580TFXWLx8TDztmJpxBWgf3ggtY=&r=aHR0cHM6Ly93d3cubWF0Y2guY29tL2NweC9lbi11cy9sYW5kaW5nL2Rpc3BsYXkvODQxMjM_dHJhY2tpbmdpZD02MDIyMjYmYmFubmVyaWQ9OTU1MTI0NA==" rel="noopener noreferrer" target="_blank">match.com</a><a class="xq4oc1-0 ettNWZ" href="https://alb.reddit.com/c?q=CgADCJJZCxa-Gd8KAAUh-O3ndAFg0QoABiH47ed0AGDRCAAHAAAAAgoADAiW27DedfJgAA==&s=rcAyazYflm3KW-6p580TFXWLx8TDztmJpxBWgf3ggtY=&r=aHR0cHM6Ly93d3cubWF0Y2guY29tL2NweC9lbi11cy9sYW5kaW5nL2Rpc3BsYXkvODQxMjM_dHJhY2tpbmdpZD02MDIyMjYmYmFubmVyaWQ9OTU1MTI0NA==" rel="noopener noreferrer" target="_blank">Sign Up</a></div><div class="_36kpXQ-z7Hr61j8878uRkP"><button class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">2</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/comments/bbe20j/if_only_it_were_easier_to_meet_new_people_in_your/?instanceId=t3_q%3DCgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA%3D%26s%3DcfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ%3D"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">comment</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_q=CgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA=&s=cfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ=-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_q=CgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA=&s=cfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ=-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_bdvwpz s1ukwo15-0 RqhAo" id="t3_bdvwpz" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_bdvwpz"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">5.8k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><a href="https://i.imgur.com/fhQYRY3.gifv" rel="noopener noreferrer" target="_blank"><div aria-label="The inside of Notre Dame after the fire" class="_2c1ElNxHftd8W_nZtcG9zf _33Pa96SGhFVpZeI6a7Y_Pl _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" role="img" style="background-image:url(https://a.thumbs.redditmedia.com/iam6lSZWkLb1wjp7P2mZ1URRa2LldOjRy1pVbvKlUu4.jpg);border-color:#D7DADC"><div class="m0n699kowSp8Wfa40lqpF"><i class="icon icon-outboundLink _2rOixIHGmpfZB93ihJsw3V"></i></div><img alt="The inside of Notre Dame after the fire" class="_25ZOvQhQdAqwdxPd5z-KFB hiddenImg"/></div></a></div></div><a class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-1 fWlrHt" aria-label="Open external content" data-click-id="expando_open" href="https://i.imgur.com/fhQYRY3.gifv" target="_blank"><i class="icon icon-outboundLink saNpcHve-34zjaa0cbIxW _1zB4YvOwHPxdPEXG2CYhKB"></i></a></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><a data-click-id="body" class="SQnoC3ObvgnGjWt90zD9Z" href="/r/interestingasfuck/comments/bdvwpz/the_inside_of_notre_dame_after_the_fire/"><h2 class="s1okktje-0 liRtqP">The inside of Notre Dame after the fire</h2></a></span><a class="b5szba-0 dusrSl" href="https://i.imgur.com/fhQYRY3.gifv" size="2" rel="noopener noreferrer" target="_blank">i.imgur.com/fhQYRY...<i class="icon icon-outboundLink qgDkGQIoFEpMMeNtfI0BY"></i></a><div class="_2xu1HuBz1Yx6SP10AGVx_I"><div class="lrzZ8b0L6AzLkQj5Ww7H1"></div><div class="lrzZ8b0L6AzLkQj5Ww7H1"><a href="/r/interestingasfuck/search?q=flair_name%253A%2522%252Fr%252FALL%2522&restrict_sr=1"><span class="s6qudme-2 jySElJ">/r/ALL</span></a></div></div><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="xvda30-0 camSYk"><a class="_1L0pdcPf58t25Jy6ljHIKR s1i3ufq7-0 daeHTp" data-click-id="subreddit" href="/r/interestingasfuck/">r/interestingasfuck</a><div id="SubredditInfoTooltip--t3_bdvwpz--interestingasfuck"></div></div><span class="_37gsGHa8DMRAxBmQS-Ppg8 w931f2-0 lhpqQT" role="presentation">•</span><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="_2fCzxBE1dlMh4OFc7B3Dun">Posted by</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/EverybodyWantsToBeUs">u/EverybodyWantsToBeUs</a><div id="UserInfoTooltip--t3_bdvwpz"></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/r/interestingasfuck/comments/bdvwpz/the_inside_of_notre_dame_after_the_fire/" id="PostTopMeta--Created--false--t3_bdvwpz" target="_blank" rel="nofollow noopener">2 hours ago</a></div><div></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 "></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="_36kpXQ-z7Hr61j8878uRkP"><a class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-1 fWlrHt" aria-label="Open external content" data-click-id="expando_open" href="https://i.imgur.com/fhQYRY3.gifv" target="_blank"><i class="icon icon-outboundLink saNpcHve-34zjaa0cbIxW _1zB4YvOwHPxdPEXG2CYhKB"></i></a><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">5.8k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/r/interestingasfuck/comments/bdvwpz/the_inside_of_notre_dame_after_the_fire/"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">303 comments</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_bdvwpz-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-hide vlzsw3-0 giMEpI"></i></div><span class="s1nordvo-1 bVDUJS">hide</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-report _1MDjRAzxk1RSTB12748O1v vlzsw3-1 junIdA"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">report</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_bdvwpz-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_bdsk8w s1ukwo15-0 RqhAo" id="t3_bdsk8w" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_bdsk8w"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">4.8k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><div class="_2c1ElNxHftd8W_nZtcG9zf _2YO2O4rMRYYMeH_t2y8M5w _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" style="border-color:#343536;background:"><i class="icon icon-text _2hIvPRO2xz4rn9LXAJXYDa s1m0a5q6-1 kXVArd ej8hhi-4 cJlUoW"></i></div></div></div><a class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-2 gdpVib" aria-label="View content" data-click-id="expando_open" rel="nofollow" href="/r/AskReddit/comments/bdsk8w/what_are_some_things_that_people_dont_realise/"><i class="icon icon-expandoMediaLightbox saNpcHve-34zjaa0cbIxW s14hmdpf-0 hPmpwW"></i></a></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><a data-click-id="body" class="SQnoC3ObvgnGjWt90zD9Z" href="/r/AskReddit/comments/bdsk8w/what_are_some_things_that_people_dont_realise/"><h2 class="s1okktje-0 liRtqP">What are some things that people dont realise would happen if there was actually a zombie outbreak?</h2></a></span><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="xvda30-0 camSYk"><a class="_1L0pdcPf58t25Jy6ljHIKR s1i3ufq7-0 daeHTp" data-click-id="subreddit" href="/r/AskReddit/">r/AskReddit</a><div id="SubredditInfoTooltip--t3_bdsk8w--AskReddit"></div></div><span class="_37gsGHa8DMRAxBmQS-Ppg8 w931f2-0 lhpqQT" role="presentation">•</span><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="_2fCzxBE1dlMh4OFc7B3Dun">Posted by</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/KindaQute">u/KindaQute</a><div id="UserInfoTooltip--t3_bdsk8w"></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/r/AskReddit/comments/bdsk8w/what_are_some_things_that_people_dont_realise/" id="PostTopMeta--Created--false--t3_bdsk8w" target="_blank" rel="nofollow noopener">7 hours ago</a></div><div></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 "></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="_36kpXQ-z7Hr61j8878uRkP"><a class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-2 gdpVib" aria-label="View content" data-click-id="expando_open" rel="nofollow" href="/r/AskReddit/comments/bdsk8w/what_are_some_things_that_people_dont_realise/"><i class="icon icon-expandoMediaLightbox saNpcHve-34zjaa0cbIxW s14hmdpf-0 hPmpwW"></i></a><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">4.8k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/r/AskReddit/comments/bdsk8w/what_are_some_things_that_people_dont_realise/"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">2.9k comments</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_bdsk8w-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-hide vlzsw3-0 giMEpI"></i></div><span class="s1nordvo-1 bVDUJS">hide</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-report _1MDjRAzxk1RSTB12748O1v vlzsw3-1 junIdA"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">report</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_bdsk8w-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_bdulkr s1ukwo15-0 RqhAo" id="t3_bdulkr" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_bdulkr"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">16.7k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><div aria-label="2nd attempt at making it to LWIAY, since animated memes are popular now lol" class="_2c1ElNxHftd8W_nZtcG9zf _33Pa96SGhFVpZeI6a7Y_Pl _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" role="img" style="background-image:url(https://b.thumbs.redditmedia.com/heIQLQjrbTeoMP1tSl_Myy_XCnp8iz6aVU5EGRCFuZE.jpg);border-color:#343536"><img alt="2nd attempt at making it to LWIAY, since animated memes are popular now lol" class="_25ZOvQhQdAqwdxPd5z-KFB hiddenImg"/></div></div></div><button class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><a data-click-id="body" class="SQnoC3ObvgnGjWt90zD9Z" href="/r/PewdiepieSubmissions/comments/bdulkr/2nd_attempt_at_making_it_to_lwiay_since_animated/"><h2 class="s1okktje-0 liRtqP">2nd attempt at making it to LWIAY, since animated memes are popular now lol</h2></a></span><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="xvda30-0 camSYk"><a class="_1L0pdcPf58t25Jy6ljHIKR s1i3ufq7-0 daeHTp" data-click-id="subreddit" href="/r/PewdiepieSubmissions/">r/PewdiepieSubmissions</a><div id="SubredditInfoTooltip--t3_bdulkr--PewdiepieSubmissions"></div></div><span class="_37gsGHa8DMRAxBmQS-Ppg8 w931f2-0 lhpqQT" role="presentation">•</span><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="_2fCzxBE1dlMh4OFc7B3Dun">Posted by</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/superwedge">u/superwedge</a><div id="UserInfoTooltip--t3_bdulkr"></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/r/PewdiepieSubmissions/comments/bdulkr/2nd_attempt_at_making_it_to_lwiay_since_animated/" id="PostTopMeta--Created--false--t3_bdulkr" target="_blank" rel="nofollow noopener">4 hours ago</a></div><div></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 _3sYCnvIxJkhkOfLVTWR67K"><span class="_2y3bja4n4-unxyUrMEFH8C s1lxazz9-0 gjflKZ"><i id="PostAwardBadges--t3_bdulkr-gid1"><img class="_3u6g9UTYlEOr-yfM5hyq3p" src="https://www.redditstatic.com/desktop2x/img/gold/badges/award-silver-cartoon.png"/></i>2</span><button class="_3mcXKZUh7FvUMLSv0AHyXs"><i class="icon icon-addGildDashed _2J9jlNokb9X4gvrrZR3BX2"></i></button></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="_36kpXQ-z7Hr61j8878uRkP"><button class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">16.7k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/r/PewdiepieSubmissions/comments/bdulkr/2nd_attempt_at_making_it_to_lwiay_since_animated/"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">143 comments</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_bdulkr-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-hide vlzsw3-0 giMEpI"></i></div><span class="s1nordvo-1 bVDUJS">hide</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-report _1MDjRAzxk1RSTB12748O1v vlzsw3-1 junIdA"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">report</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_bdulkr-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_bdt5ac s1ukwo15-0 RqhAo" id="t3_bdt5ac" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_bdt5ac"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">39</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><div class="_2c1ElNxHftd8W_nZtcG9zf _2YO2O4rMRYYMeH_t2y8M5w _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" style="border-color:#343536;background:"><i class="icon icon-text _2hIvPRO2xz4rn9LXAJXYDa s1m0a5q6-1 kXVArd ej8hhi-4 cJlUoW"></i></div></div></div><button class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><a data-click-id="body" class="SQnoC3ObvgnGjWt90zD9Z" href="/r/engineering/comments/bdt5ac/molding_a_polymer_with_high_shrinkage/"><h2 class="s1okktje-0 liRtqP">Molding a polymer with high shrinkage</h2></a></span><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="xvda30-0 camSYk"><a class="_1L0pdcPf58t25Jy6ljHIKR s1i3ufq7-0 daeHTp" data-click-id="subreddit" href="/r/engineering/">r/engineering</a><div id="SubredditInfoTooltip--t3_bdt5ac--engineering"></div></div><span class="_37gsGHa8DMRAxBmQS-Ppg8 w931f2-0 lhpqQT" role="presentation">•</span><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="_2fCzxBE1dlMh4OFc7B3Dun">Posted by</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/WakezoneFitness">u/WakezoneFitness</a><div id="UserInfoTooltip--t3_bdt5ac"></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/r/engineering/comments/bdt5ac/molding_a_polymer_with_high_shrinkage/" id="PostTopMeta--Created--false--t3_bdt5ac" target="_blank" rel="nofollow noopener">6 hours ago</a></div><div></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 "></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="_36kpXQ-z7Hr61j8878uRkP"><button class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">39</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/r/engineering/comments/bdt5ac/molding_a_polymer_with_high_shrinkage/"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">41 comments</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_bdt5ac-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-hide vlzsw3-0 giMEpI"></i></div><span class="s1nordvo-1 bVDUJS">hide</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-report _1MDjRAzxk1RSTB12748O1v vlzsw3-1 junIdA"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">report</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_bdt5ac-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_bdsxdo s1ukwo15-0 RqhAo" id="t3_bdsxdo" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_bdsxdo"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">20.0k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><a href="https://media.giphy.com/media/HNg3DbNsZ38Zy/giphy.gif" rel="noopener noreferrer" target="_blank"><div aria-label="Why you can't drop water on burning buildings" class="_2c1ElNxHftd8W_nZtcG9zf _33Pa96SGhFVpZeI6a7Y_Pl _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" role="img" style="background-image:url(https://b.thumbs.redditmedia.com/99rI1GArsCJ-kZOgfDrptprndPBcA00llkfw6rKpqmM.jpg);border-color:#D7DADC"><div class="m0n699kowSp8Wfa40lqpF"><i class="icon icon-outboundLink _2rOixIHGmpfZB93ihJsw3V"></i></div><img alt="Why you can't drop water on burning buildings" class="_25ZOvQhQdAqwdxPd5z-KFB hiddenImg"/></div></a></div></div><button class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><a data-click-id="body" class="SQnoC3ObvgnGjWt90zD9Z" href="/r/interestingasfuck/comments/bdsxdo/why_you_cant_drop_water_on_burning_buildings/"><h2 class="s1okktje-0 liRtqP">Why you can't drop water on burning buildings</h2></a></span><a class="b5szba-0 dusrSl" href="https://media.giphy.com/media/HNg3DbNsZ38Zy/giphy.gif" size="2" rel="noopener noreferrer" target="_blank">media.giphy.com/media/...<i class="icon icon-outboundLink qgDkGQIoFEpMMeNtfI0BY"></i></a><div class="_2xu1HuBz1Yx6SP10AGVx_I"><div class="lrzZ8b0L6AzLkQj5Ww7H1"></div><div class="lrzZ8b0L6AzLkQj5Ww7H1"><a href="/r/interestingasfuck/search?q=flair_name%253A%2522%252Fr%252FALL%2522&restrict_sr=1"><span class="s6qudme-2 jySElJ">/r/ALL</span></a></div></div><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="xvda30-0 camSYk"><a class="_1L0pdcPf58t25Jy6ljHIKR s1i3ufq7-0 daeHTp" data-click-id="subreddit" href="/r/interestingasfuck/">r/interestingasfuck</a><div id="SubredditInfoTooltip--t3_bdsxdo--interestingasfuck"></div></div><span class="_37gsGHa8DMRAxBmQS-Ppg8 w931f2-0 lhpqQT" role="presentation">•</span><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="_3hh-iGjzOv78L_7t_PUHev"><path d="M9.06,8.64c1.12-1.26,2.2-2.45,4.44-2.6V7.5a1,1,0,0,0,.6.92,1,1,0,0,0,.41.09,1,1,0,0,0,.67-.26l3.16-2.9a.5.5,0,0,0,0-.74L15.18,1.7a1,1,0,0,0-1.68.74V4c-3.14.17-4.69,1.88-5.93,3.28C6.58,8.42,6,9,5,9H2a1,1,0,0,0,0,2H5C6.93,11,8,9.82,9.06,8.64Z"></path><path d="M15.18,11.76a1,1,0,0,0-1.68.74V14c-2.23-.16-3.29-1.32-4.39-2.56-.21-.24-.43-.48-.66-.72a5.63,5.63,0,0,1-1.77,1.06,13.34,13.34,0,0,1,.94,1A7.85,7.85,0,0,0,13.5,16v1.59a1,1,0,0,0,.6.92,1,1,0,0,0,.41.09,1,1,0,0,0,.67-.26l3.16-2.9a.5.5,0,0,0,0-.74Z"></path></svg><span class="_2fCzxBE1dlMh4OFc7B3Dun">Crossposted by</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/human-1234567890">u/human-1234567890</a><div id="UserInfoTooltip--t3_bdsxdo"></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/r/interestingasfuck/comments/bdsxdo/why_you_cant_drop_water_on_burning_buildings/" id="PostTopMeta--Created--false--t3_bdsxdo" target="_blank" rel="nofollow noopener">6 hours ago</a></div><div></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 "></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="_36kpXQ-z7Hr61j8878uRkP"><button class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">20.0k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/r/interestingasfuck/comments/bdsxdo/why_you_cant_drop_water_on_burning_buildings/"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">921 comments</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_bdsxdo-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-hide vlzsw3-0 giMEpI"></i></div><span class="s1nordvo-1 bVDUJS">hide</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-report _1MDjRAzxk1RSTB12748O1v vlzsw3-1 junIdA"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">report</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_bdsxdo-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_bdrj1q s1ukwo15-0 RqhAo" id="t3_bdrj1q" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_bdrj1q"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">832</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><a href="https://i.redd.it/ldpebbbj8ls21.jpg" rel="noopener noreferrer" target="_blank"><div aria-label="Found him on Instagram" class="_2c1ElNxHftd8W_nZtcG9zf _33Pa96SGhFVpZeI6a7Y_Pl _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" role="img" style="background-image:url(https://a.thumbs.redditmedia.com/BXnFqNXXaaca9SaGjGv6CA2m_5zpbwB3WOsYfSw8dP0.jpg);border-color:#343536"><img alt="Found him on Instagram" class="_25ZOvQhQdAqwdxPd5z-KFB hiddenImg"/></div></a></div></div><button class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><a data-click-id="body" class="SQnoC3ObvgnGjWt90zD9Z" href="/r/foundfelix/comments/bdrj1q/found_him_on_instagram/"><h2 class="s1okktje-0 liRtqP">Found him on Instagram</h2></a></span><a class="b5szba-0 dusrSl" href="https://i.redd.it/ldpebbbj8ls21.jpg" size="2" rel="noopener noreferrer" target="_blank">i.redd.it/ldpebb...<i class="icon icon-outboundLink qgDkGQIoFEpMMeNtfI0BY"></i></a><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="xvda30-0 camSYk"><a class="_1L0pdcPf58t25Jy6ljHIKR s1i3ufq7-0 daeHTp" data-click-id="subreddit" href="/r/foundfelix/">r/foundfelix</a><div id="SubredditInfoTooltip--t3_bdrj1q--foundfelix"></div></div><span class="_37gsGHa8DMRAxBmQS-Ppg8 w931f2-0 lhpqQT" role="presentation">•</span><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="_2fCzxBE1dlMh4OFc7B3Dun">Posted by</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/buklau98">u/buklau98</a><div id="UserInfoTooltip--t3_bdrj1q"></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/r/foundfelix/comments/bdrj1q/found_him_on_instagram/" id="PostTopMeta--Created--false--t3_bdrj1q" target="_blank" rel="nofollow noopener">10 hours ago</a></div><div></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 "></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="_36kpXQ-z7Hr61j8878uRkP"><button class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">832</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/r/foundfelix/comments/bdrj1q/found_him_on_instagram/"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">44 comments</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_bdrj1q-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-hide vlzsw3-0 giMEpI"></i></div><span class="s1nordvo-1 bVDUJS">hide</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-report _1MDjRAzxk1RSTB12748O1v vlzsw3-1 junIdA"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">report</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_bdrj1q-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_bducvy s1ukwo15-0 RqhAo" id="t3_bducvy" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_bducvy"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">169</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><a href="https://i.imgur.com/kZ6qQy7.jpg" rel="noopener noreferrer" target="_blank"><div aria-label="Edvard Grieg taking a break from hiking on Løvstakken (circa 1900)" class="_2c1ElNxHftd8W_nZtcG9zf _33Pa96SGhFVpZeI6a7Y_Pl _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" role="img" style="background-image:url(https://a.thumbs.redditmedia.com/Z4g1LDiIQ8f6yRxbCZzHzk0v4-ZcM8Y1dT5dR91CW88.jpg);border-color:#D7DADC"><div class="m0n699kowSp8Wfa40lqpF"><i class="icon icon-outboundLink _2rOixIHGmpfZB93ihJsw3V"></i></div><img alt="Edvard Grieg taking a break from hiking on Løvstakken (circa 1900)" class="_25ZOvQhQdAqwdxPd5z-KFB hiddenImg"/></div></a></div></div><button class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><a data-click-id="body" class="SQnoC3ObvgnGjWt90zD9Z" href="/r/classicalmusic/comments/bducvy/edvard_grieg_taking_a_break_from_hiking_on/"><h2 class="s1okktje-0 liRtqP">Edvard Grieg taking a break from hiking on Løvstakken (circa 1900)</h2></a></span><a class="b5szba-0 dusrSl" href="https://i.imgur.com/kZ6qQy7.jpg" size="2" rel="noopener noreferrer" target="_blank">i.imgur.com/kZ6qQy...<i class="icon icon-outboundLink qgDkGQIoFEpMMeNtfI0BY"></i></a><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="xvda30-0 camSYk"><a class="_1L0pdcPf58t25Jy6ljHIKR s1i3ufq7-0 daeHTp" data-click-id="subreddit" href="/r/classicalmusic/">r/classicalmusic</a><div id="SubredditInfoTooltip--t3_bducvy--classicalmusic"></div></div><span class="_37gsGHa8DMRAxBmQS-Ppg8 w931f2-0 lhpqQT" role="presentation">•</span><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="_2fCzxBE1dlMh4OFc7B3Dun">Posted by</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/SuperBreakfast">u/SuperBreakfast</a><div id="UserInfoTooltip--t3_bducvy"></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/r/classicalmusic/comments/bducvy/edvard_grieg_taking_a_break_from_hiking_on/" id="PostTopMeta--Created--false--t3_bducvy" target="_blank" rel="nofollow noopener">4 hours ago</a></div><div></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 "></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="_36kpXQ-z7Hr61j8878uRkP"><button class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">169</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/r/classicalmusic/comments/bducvy/edvard_grieg_taking_a_break_from_hiking_on/"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">6 comments</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_bducvy-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-hide vlzsw3-0 giMEpI"></i></div><span class="s1nordvo-1 bVDUJS">hide</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-report _1MDjRAzxk1RSTB12748O1v vlzsw3-1 junIdA"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">report</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_bducvy-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_bdx576 s1ukwo15-0 RqhAo" id="t3_bdx576" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_bdx576"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">•</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><a href="https://www.youtube.com/watch?v=OnWolLQSZic" rel="noopener noreferrer" target="_blank"><div aria-label="Boston Dynamics: Mush, Spot, Mush!" class="_2c1ElNxHftd8W_nZtcG9zf _33Pa96SGhFVpZeI6a7Y_Pl _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" role="img" style="background-image:url(https://b.thumbs.redditmedia.com/j7EZGHfn-LPnT2NEyjQOoNXkV_RnX0HZAv5I-oW1FwI.jpg);border-color:#D7DADC"><div class="m0n699kowSp8Wfa40lqpF"><i class="icon icon-outboundLink _2rOixIHGmpfZB93ihJsw3V"></i></div><img alt="Boston Dynamics: Mush, Spot, Mush!" class="_25ZOvQhQdAqwdxPd5z-KFB hiddenImg"/></div></a></div></div><button class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><a data-click-id="body" class="SQnoC3ObvgnGjWt90zD9Z" href="/r/engineering/comments/bdx576/boston_dynamics_mush_spot_mush/"><h2 class="s1okktje-0 liRtqP">Boston Dynamics: Mush, Spot, Mush!</h2></a></span><a class="b5szba-0 dusrSl" href="https://www.youtube.com/watch?v=OnWolLQSZic" size="2" rel="noopener noreferrer" target="_blank">youtube.com/watch?...<i class="icon icon-outboundLink qgDkGQIoFEpMMeNtfI0BY"></i></a><div class="_2xu1HuBz1Yx6SP10AGVx_I"><div class="lrzZ8b0L6AzLkQj5Ww7H1"></div><div class="lrzZ8b0L6AzLkQj5Ww7H1"><a href="/r/engineering/search?q=flair_name%253A%2522%255BGENERAL%255D%2522&restrict_sr=1"><span class="s6qudme-2 jySElJ">[GENERAL]</span></a></div></div><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="xvda30-0 camSYk"><a class="_1L0pdcPf58t25Jy6ljHIKR s1i3ufq7-0 daeHTp" data-click-id="subreddit" href="/r/engineering/">r/engineering</a><div id="SubredditInfoTooltip--t3_bdx576--engineering"></div></div><span class="_37gsGHa8DMRAxBmQS-Ppg8 w931f2-0 lhpqQT" role="presentation">•</span><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="_2fCzxBE1dlMh4OFc7B3Dun">Posted by</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/Get-Smarter">u/Get-Smarter</a><div id="UserInfoTooltip--t3_bdx576"></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/r/engineering/comments/bdx576/boston_dynamics_mush_spot_mush/" id="PostTopMeta--Created--false--t3_bdx576" target="_blank" rel="nofollow noopener">28 minutes ago</a></div><div></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 "></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="_36kpXQ-z7Hr61j8878uRkP"><button class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">•</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/r/engineering/comments/bdx576/boston_dynamics_mush_spot_mush/"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">3 comments</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_bdx576-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-hide vlzsw3-0 giMEpI"></i></div><span class="s1nordvo-1 bVDUJS">hide</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-report _1MDjRAzxk1RSTB12748O1v vlzsw3-1 junIdA"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">report</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_bdx576-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_bdsenk s1ukwo15-0 RqhAo" id="t3_bdsenk" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_bdsenk"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">18.1k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><div aria-label="Everyone after Pepsi supported T-Series" class="_2c1ElNxHftd8W_nZtcG9zf _33Pa96SGhFVpZeI6a7Y_Pl _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" role="img" style="background-image:url(https://b.thumbs.redditmedia.com/KZVoTh7Bti-IdVj-u1AKisgp6BPmxB9E9q06xzpmJbQ.jpg);border-color:#343536"><img alt="Everyone after Pepsi supported T-Series" class="_25ZOvQhQdAqwdxPd5z-KFB hiddenImg"/></div></div></div><button class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><a data-click-id="body" class="SQnoC3ObvgnGjWt90zD9Z" href="/r/PewdiepieSubmissions/comments/bdsenk/everyone_after_pepsi_supported_tseries/"><h2 class="s1okktje-0 liRtqP">Everyone after Pepsi supported T-Series</h2></a></span><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="xvda30-0 camSYk"><a class="_1L0pdcPf58t25Jy6ljHIKR s1i3ufq7-0 daeHTp" data-click-id="subreddit" href="/r/PewdiepieSubmissions/">r/PewdiepieSubmissions</a><div id="SubredditInfoTooltip--t3_bdsenk--PewdiepieSubmissions"></div></div><span class="_37gsGHa8DMRAxBmQS-Ppg8 w931f2-0 lhpqQT" role="presentation">•</span><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="_2fCzxBE1dlMh4OFc7B3Dun">Posted by</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/rAge_Shitposting">u/rAge_Shitposting</a><div id="UserInfoTooltip--t3_bdsenk"></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/r/PewdiepieSubmissions/comments/bdsenk/everyone_after_pepsi_supported_tseries/" id="PostTopMeta--Created--false--t3_bdsenk" target="_blank" rel="nofollow noopener">7 hours ago</a></div><div></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 "></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="_36kpXQ-z7Hr61j8878uRkP"><button class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">18.1k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/r/PewdiepieSubmissions/comments/bdsenk/everyone_after_pepsi_supported_tseries/"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">247 comments</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_bdsenk-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-hide vlzsw3-0 giMEpI"></i></div><span class="s1nordvo-1 bVDUJS">hide</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-report _1MDjRAzxk1RSTB12748O1v vlzsw3-1 junIdA"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">report</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_bdsenk-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_bdsoj6 s1ukwo15-0 RqhAo" id="t3_bdsoj6" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_bdsoj6"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">2.9k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><a href="https://www.youtube.com/watch?v=x-64CaD8GXw" rel="noopener noreferrer" target="_blank"><div class="_2c1ElNxHftd8W_nZtcG9zf _2YO2O4rMRYYMeH_t2y8M5w _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" style="border-color:#D7DADC;background:"><i class="icon icon-link _2hIvPRO2xz4rn9LXAJXYDa s1m0a5q6-1 hCpeeB ej8hhi-1 eghWMc"></i><div class="m0n699kowSp8Wfa40lqpF"><i class="icon icon-outboundLink _2rOixIHGmpfZB93ihJsw3V"></i></div></div></a></div></div><button class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><a data-click-id="body" class="SQnoC3ObvgnGjWt90zD9Z" href="/r/Music/comments/bdsoj6/dropkick_murphys_im_shipping_up_to_boston_celtic/"><h2 class="s1okktje-0 liRtqP">Dropkick Murphys - I'm Shipping Up to Boston [Celtic Rock] (2005)</h2></a></span><a class="b5szba-0 dusrSl" href="https://www.youtube.com/watch?v=x-64CaD8GXw" size="2" rel="noopener noreferrer" target="_blank">youtube.com/watch?...<i class="icon icon-outboundLink qgDkGQIoFEpMMeNtfI0BY"></i></a><div class="_2xu1HuBz1Yx6SP10AGVx_I"><div class="lrzZ8b0L6AzLkQj5Ww7H1"></div><div class="lrzZ8b0L6AzLkQj5Ww7H1"><a href="/r/Music/search?q=flair_name%253A%2522music%2520streaming%2522&restrict_sr=1"><div class="s6qudme-3 hyvsNa s6qudme-0 gunVhj"><span>music streaming</span></div></a></div></div><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="xvda30-0 camSYk"><a class="_1L0pdcPf58t25Jy6ljHIKR s1i3ufq7-0 daeHTp" data-click-id="subreddit" href="/r/Music/">r/Music</a><div id="SubredditInfoTooltip--t3_bdsoj6--Music"></div></div><span class="_37gsGHa8DMRAxBmQS-Ppg8 w931f2-0 lhpqQT" role="presentation">•</span><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="_2fCzxBE1dlMh4OFc7B3Dun">Posted by</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/fraggle_captain">u/fraggle_captain</a><div id="UserInfoTooltip--t3_bdsoj6"></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/r/Music/comments/bdsoj6/dropkick_murphys_im_shipping_up_to_boston_celtic/" id="PostTopMeta--Created--false--t3_bdsoj6" target="_blank" rel="nofollow noopener">7 hours ago</a></div><div></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 "></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="_36kpXQ-z7Hr61j8878uRkP"><button class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">2.9k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/r/Music/comments/bdsoj6/dropkick_murphys_im_shipping_up_to_boston_celtic/"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">309 comments</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_bdsoj6-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-hide vlzsw3-0 giMEpI"></i></div><span class="s1nordvo-1 bVDUJS">hide</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-report _1MDjRAzxk1RSTB12748O1v vlzsw3-1 junIdA"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">report</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_bdsoj6-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_bdu9ad s1ukwo15-0 RqhAo" id="t3_bdu9ad" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_bdu9ad"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">995</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><div class="_2c1ElNxHftd8W_nZtcG9zf _2YO2O4rMRYYMeH_t2y8M5w _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" style="border-color:#343536;background:"><i class="icon icon-text _2hIvPRO2xz4rn9LXAJXYDa s1m0a5q6-1 kXVArd ej8hhi-4 cJlUoW"></i></div></div></div><a class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-2 gdpVib" aria-label="View content" data-click-id="expando_open" rel="nofollow" href="/r/AskReddit/comments/bdu9ad/whats_the_most_infuriating_1st_world_problem/"><i class="icon icon-expandoMediaLightbox saNpcHve-34zjaa0cbIxW s14hmdpf-0 hPmpwW"></i></a></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><a data-click-id="body" class="SQnoC3ObvgnGjWt90zD9Z" href="/r/AskReddit/comments/bdu9ad/whats_the_most_infuriating_1st_world_problem/"><h2 class="s1okktje-0 liRtqP">What's the most infuriating 1st world problem?</h2></a></span><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="xvda30-0 camSYk"><a class="_1L0pdcPf58t25Jy6ljHIKR s1i3ufq7-0 daeHTp" data-click-id="subreddit" href="/r/AskReddit/">r/AskReddit</a><div id="SubredditInfoTooltip--t3_bdu9ad--AskReddit"></div></div><span class="_37gsGHa8DMRAxBmQS-Ppg8 w931f2-0 lhpqQT" role="presentation">•</span><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="_2fCzxBE1dlMh4OFc7B3Dun">Posted by</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/Tigasar">u/Tigasar</a><div id="UserInfoTooltip--t3_bdu9ad"></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/r/AskReddit/comments/bdu9ad/whats_the_most_infuriating_1st_world_problem/" id="PostTopMeta--Created--false--t3_bdu9ad" target="_blank" rel="nofollow noopener">4 hours ago</a></div><div></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 "></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="_36kpXQ-z7Hr61j8878uRkP"><a class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-2 gdpVib" aria-label="View content" data-click-id="expando_open" rel="nofollow" href="/r/AskReddit/comments/bdu9ad/whats_the_most_infuriating_1st_world_problem/"><i class="icon icon-expandoMediaLightbox saNpcHve-34zjaa0cbIxW s14hmdpf-0 hPmpwW"></i></a><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">995</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/r/AskReddit/comments/bdu9ad/whats_the_most_infuriating_1st_world_problem/"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">1.3k comments</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_bdu9ad-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-hide vlzsw3-0 giMEpI"></i></div><span class="s1nordvo-1 bVDUJS">hide</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-report _1MDjRAzxk1RSTB12748O1v vlzsw3-1 junIdA"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">report</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_bdu9ad-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_q=CgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA=&s=4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0= promotedlink s1ukwo15-0 RqhAo" id="t3_q=CgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA=&s=4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0=" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid #D7DADC"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_q=CgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA=&s=4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0="><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">•</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><a href="https://alb.reddit.com/c?q=CgADCLSfRKhF0FcKAAUh-O3ndQFg0QoABiH47ed1AGDRCAAHAAAAAgoADAi0oA71zGZDAA==&s=4rB2IIG1y0M10069UJiBVBN9RrtkaXXfSd9ha0dkJeA=&r=aHR0cHM6Ly92M20uZ3RhcmNhZGUuY29tLz9xPTVjOTllZTJlM2FlMzc2OTk4ODg5JnNpZD17YmFpZHUwNl9HYW1lIG9mIFRocm9uZXNfVDFfMDAxXzA0MTVfM30=" rel="noopener noreferrer" target="_blank"><div aria-label="HBO, Warner Bros. Interactive Entertainment and Yoozoo Games have collaborated to recreate Westeros on a massive scale, delivering an authentic and immersive multiplayer world laid out across the Seven Kingdoms – complete with major landmarks and castles from the epic TV series." class="_2c1ElNxHftd8W_nZtcG9zf _33Pa96SGhFVpZeI6a7Y_Pl _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" role="img" style="background-image:url(https://b.thumbs.redditmedia.com/TYS5RJlfj0xgzIljHpoHF_9A_qA_W6kxrYQ_bxDNNqE.jpg);border-color:#343536"><img alt="HBO, Warner Bros. Interactive Entertainment and Yoozoo Games have collaborated to recreate Westeros on a massive scale, delivering an authentic and immersive multiplayer world laid out across the Seven Kingdoms – complete with major landmarks and castles from the epic TV series." class="_25ZOvQhQdAqwdxPd5z-KFB hiddenImg"/></div></a></div></div><button class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><h2 class="s1okktje-0 liRtqP">HBO, Warner Bros. Interactive Entertainment and Yoozoo Games have collaborated to recreate Westeros on a massive scale, delivering an authentic and immersive multiplayer world laid out across the Seven Kingdoms – complete with major landmarks and castles from the epic TV series.</h2></span><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="s3dr7r-0 iIHfsN">promoted</span><span class="_37gsGHa8DMRAxBmQS-Ppg8 g2ylbe-0 ZdrFI" role="presentation">•</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/recommend_app_3">u/recommend_app_3</a><div id="UserInfoTooltip--t3_q=CgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA=&s=4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0="></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/comments/bdd6ln/hbo_warner_bros_interactive_entertainment_and/?instanceId=t3_q%3DCgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA%3D%26s%3D4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0%3D" id="PostTopMeta--Created--false--t3_q=CgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA=&s=4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0=" target="_blank" rel="nofollow noopener">1 day ago</a><span class="_1iAifs5p5MzPoJz5YrErUW"><span class="_2fCzxBE1dlMh4OFc7B3Dun">from</span><a class="_3V0C4FGg6153xIBQjwsycq" href="https://alb.reddit.com/c?q=CgADCLSfRKhF0FcKAAUh-O3ndQFg0QoABiH47ed1AGDRCAAHAAAAAgoADAi0oA71zGZDAA==&s=4rB2IIG1y0M10069UJiBVBN9RrtkaXXfSd9ha0dkJeA=&r=aHR0cHM6Ly92M20uZ3RhcmNhZGUuY29tLz9xPTVjOTllZTJlM2FlMzc2OTk4ODg5JnNpZD17YmFpZHUwNl9HYW1lIG9mIFRocm9uZXNfVDFfMDAxXzA0MTVfM30=" rel="noopener noreferrer" target="_blank">got.gtarcade.com/en/</a></span></div><div><i class="icon icon-lock XHMWG1CPWX8RXeNg-o5-R _3wTfn3Meg1rXJ-qd2jUWMt" id="PostBadges--Lock--t3_q=CgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA=&s=4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0="><span class="i729lw-0 ebGXPK">Comments are locked</span></i></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 "></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="bzwakq-0 bZEUhO"><a class="b5szba-0 dusrSl" href="https://alb.reddit.com/c?q=CgADCLSfRKhF0FcKAAUh-O3ndQFg0QoABiH47ed1AGDRCAAHAAAAAgoADAi0oA71zGZDAA==&s=4rB2IIG1y0M10069UJiBVBN9RrtkaXXfSd9ha0dkJeA=&r=aHR0cHM6Ly92M20uZ3RhcmNhZGUuY29tLz9xPTVjOTllZTJlM2FlMzc2OTk4ODg5JnNpZD17YmFpZHUwNl9HYW1lIG9mIFRocm9uZXNfVDFfMDAxXzA0MTVfM30=" rel="noopener noreferrer" target="_blank">got.gtarcade.com/en/</a><a class="xq4oc1-0 ettNWZ" href="https://alb.reddit.com/c?q=CgADCLSfRKhF0FcKAAUh-O3ndQFg0QoABiH47ed1AGDRCAAHAAAAAgoADAi0oA71zGZDAA==&s=4rB2IIG1y0M10069UJiBVBN9RrtkaXXfSd9ha0dkJeA=&r=aHR0cHM6Ly92M20uZ3RhcmNhZGUuY29tLz9xPTVjOTllZTJlM2FlMzc2OTk4ODg5JnNpZD17YmFpZHUwNl9HYW1lIG9mIFRocm9uZXNfVDFfMDAxXzA0MTVfM30=" rel="noopener noreferrer" target="_blank">Sign Up</a></div><div class="_36kpXQ-z7Hr61j8878uRkP"><button class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">•</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/comments/bdd6ln/hbo_warner_bros_interactive_entertainment_and/?instanceId=t3_q%3DCgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA%3D%26s%3D4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0%3D"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">comment</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_q=CgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA=&s=4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0=-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_q=CgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA=&s=4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0=-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_bdrehf s1ukwo15-0 RqhAo" id="t3_bdrehf" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_bdrehf"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">39.0k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><a href="https://i.redd.it/ncu206zg2ls21.jpg" rel="noopener noreferrer" target="_blank"><div aria-label="The skeletal remains of anthropologist and bigfoot enthusiast, Grover Krantz, alongside his Irish Wolfhound, Clyde, on display at the Smithsonian's National Museum of Natural History. Nothing speaks best friends till the end louder than this." class="_2c1ElNxHftd8W_nZtcG9zf _33Pa96SGhFVpZeI6a7Y_Pl _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" role="img" style="background-image:url(https://a.thumbs.redditmedia.com/RiAVRDdNxEeLtCSNeoP7zrothUs-H8pVH5oh2sS6yK0.jpg);border-color:#343536"><img alt="The skeletal remains of anthropologist and bigfoot enthusiast, Grover Krantz, alongside his Irish Wolfhound, Clyde, on display at the Smithsonian's National Museum of Natural History. Nothing speaks best friends till the end louder than this." class="_25ZOvQhQdAqwdxPd5z-KFB hiddenImg"/></div></a></div></div><button class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><a data-click-id="body" class="SQnoC3ObvgnGjWt90zD9Z" href="/r/interestingasfuck/comments/bdrehf/the_skeletal_remains_of_anthropologist_and/"><h2 class="s1okktje-0 liRtqP">The skeletal remains of anthropologist and bigfoot enthusiast, Grover Krantz, alongside his Irish Wolfhound, Clyde, on display at the Smithsonian's National Museum of Natural History. Nothing speaks best friends till the end louder than this.</h2></a></span><a class="b5szba-0 dusrSl" href="https://i.redd.it/ncu206zg2ls21.jpg" size="2" rel="noopener noreferrer" target="_blank">i.redd.it/ncu206...<i class="icon icon-outboundLink qgDkGQIoFEpMMeNtfI0BY"></i></a><div class="_2xu1HuBz1Yx6SP10AGVx_I"><div class="lrzZ8b0L6AzLkQj5Ww7H1"></div><div class="lrzZ8b0L6AzLkQj5Ww7H1"><a href="/r/interestingasfuck/search?q=flair_name%253A%2522%252Fr%252FALL%2522&restrict_sr=1"><span class="s6qudme-2 jySElJ">/r/ALL</span></a></div></div><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="xvda30-0 camSYk"><a class="_1L0pdcPf58t25Jy6ljHIKR s1i3ufq7-0 daeHTp" data-click-id="subreddit" href="/r/interestingasfuck/">r/interestingasfuck</a><div id="SubredditInfoTooltip--t3_bdrehf--interestingasfuck"></div></div><span class="_37gsGHa8DMRAxBmQS-Ppg8 w931f2-0 lhpqQT" role="presentation">•</span><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="_2fCzxBE1dlMh4OFc7B3Dun">Posted by</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/Dildo_Baggins__">u/Dildo_Baggins__</a><div id="UserInfoTooltip--t3_bdrehf"></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/r/interestingasfuck/comments/bdrehf/the_skeletal_remains_of_anthropologist_and/" id="PostTopMeta--Created--false--t3_bdrehf" target="_blank" rel="nofollow noopener">10 hours ago</a></div><div></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 "></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="_36kpXQ-z7Hr61j8878uRkP"><button class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">39.0k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/r/interestingasfuck/comments/bdrehf/the_skeletal_remains_of_anthropologist_and/"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">429 comments</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_bdrehf-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-hide vlzsw3-0 giMEpI"></i></div><span class="s1nordvo-1 bVDUJS">hide</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-report _1MDjRAzxk1RSTB12748O1v vlzsw3-1 junIdA"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">report</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_bdrehf-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div><div><div><div class="scrollerItem bzwakq-2 bjFASC Post t3_bdshgi s1ukwo15-0 RqhAo" id="t3_bdshgi" tabindex="-1"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s1b4xnj8-0 fURlGq"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote" id="upvote-button-t3_bdshgi"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">16.0k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div></div><div class="_1poyrkZ7g36PawDueRza-J"><div class="_2XDITKxlj4y3M99thqyCsO"><div class="_38EcSQ9jzVrdtzkXO1cydX"><div class="_38EcSQ9jzVrdtzkXO1cydX nL7Q54U2LLg9rkVdSxxLe"><div class="_2MkcR85HDnYngvlVW2gMMa "><a href="https://i.redd.it/awrhuwacwls21.jpg" rel="noopener noreferrer" target="_blank"><div aria-label="Gonna leave this here..." class="_2c1ElNxHftd8W_nZtcG9zf _33Pa96SGhFVpZeI6a7Y_Pl _2e9Lv1I3dOmICVO9fg3uTG" data-click-id="image" role="img" style="background-image:url(https://a.thumbs.redditmedia.com/Np69Bp8H1yj2XkjnnjuN86o9ThAnNxzMse_UopT77o0.jpg);border-color:#343536"><img alt="Gonna leave this here..." class="_25ZOvQhQdAqwdxPd5z-KFB hiddenImg"/></div></a></div></div><button class="_2Ddj1d6vOe9NlJqkdothNe RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button></div><div class="_1Y6dfr4zLlrygH-FLmr8x-" data-click-id="body" style="padding-bottom:16px"><div class="s1okktje-1 emRVBu"><span class="y8HYJ-y_lTUHkQIc1mdCq"><a data-click-id="body" class="SQnoC3ObvgnGjWt90zD9Z" href="/r/PewdiepieSubmissions/comments/bdshgi/gonna_leave_this_here/"><h2 class="s1okktje-0 liRtqP">Gonna leave this here...</h2></a></span><a class="b5szba-0 dusrSl" href="https://i.redd.it/awrhuwacwls21.jpg" size="2" rel="noopener noreferrer" target="_blank">i.redd.it/awrhuw...<i class="icon icon-outboundLink qgDkGQIoFEpMMeNtfI0BY"></i></a><div class="_1hLrLjnE1G_RBCNcN9MVQf">
<img src="https://www.redditstatic.com/desktop2x/img/renderTimingPixel.png" style="width: 1px; height: 1px;" onLoad="(__markFirstPostVisible || function(){})();" />
</div></div><div class="Ywkt6EDfNWINeTr9lP29H"><div class="xvda30-0 camSYk"><a class="_1L0pdcPf58t25Jy6ljHIKR s1i3ufq7-0 daeHTp" data-click-id="subreddit" href="/r/PewdiepieSubmissions/">r/PewdiepieSubmissions</a><div id="SubredditInfoTooltip--t3_bdshgi--PewdiepieSubmissions"></div></div><span class="_37gsGHa8DMRAxBmQS-Ppg8 w931f2-0 lhpqQT" role="presentation">•</span><div class="_3AStxql1mQsrZuUIFP9xSg iaAYGvTNtknkTxuHArCzL"><span class="_2fCzxBE1dlMh4OFc7B3Dun">Posted by</span><div class="xvda30-0 camSYk"><a class="_2tbHP6ZydRpjI44J3syuqC k9omvt-1 eTLhLs" href="/user/SlytherinMC">u/SlytherinMC</a><div id="UserInfoTooltip--t3_bdshgi"></div></div><a class="_3jOxDPIQ0KaOWpzvSQo-1s" data-click-id="timestamp" href="https://www.reddit.com/r/PewdiepieSubmissions/comments/bdshgi/gonna_leave_this_here/" id="PostTopMeta--Created--false--t3_bdshgi" target="_blank" rel="nofollow noopener">7 hours ago</a></div><div></div><div class="s1lxazz9-0 gjflKZ _2LeW9tc_6Fs1n7Ou8uD-70 "></div></div><div class="iRkLLvxarfGu_2c7HxhW0"></div><div class="_36kpXQ-z7Hr61j8878uRkP"><button class="_35zWJjb5RJMIMkexZ2Prus RvLtAcdRtbOQbhFB7MD_T deu748-0 jEnHgK" aria-expanded="false" aria-haspopup="true" aria-label="Expand content" data-click-id="expando_open"><i class="icon icon-expandoArrowExpand saNpcHve-34zjaa0cbIxW m2byoz-0 gBukcb"></i></button><div class="bzwakq-1 cvMqVT"><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="upvote" aria-pressed="false" data-click-id="upvote"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 jxkQrE"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div></button><div class="_1rZYMD_4xY3gRcSS3p8ODO" style="color:#D7DADC">16.0k</div><button class="cYUyoUM3wmgRXEHv1LlZv " aria-label="downvote" aria-pressed="false" data-click-id="downvote"><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 bwPbWc"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></button></div><div class="x7sinePdvDKj7bf-cdm4Z _1wDt70OnYnqsrm0XIsNn8v"></div><div class="_3-miAEojrCvx_4FQ8x3P-s ssgs3QQidkqeycI33hlBa s15cosxg-3 fqSozF"><a rel="nofollow" data-click-id="comments" data-test-id="comments-page-link-num-comments" class="_1UoeAeSRhOKSNdY_h3iS1O _1Hw7tY9pMr-T1F4P1C-xNU _2qww3J5KKzsD7e5DO0BvvU s15cosxg-0 zaJq" href="/r/PewdiepieSubmissions/comments/bdshgi/gonna_leave_this_here/"><i class="icon icon-comment _3ch9jJ0painNf41PmU4F9i _3DVrpDrMM9NLT6TlsTUMxC" role="presentation"></i><span class="FHCV02u6Cp2zYL0fhQPsO">153 comments</span></a><button class="s1afabjy-1 bPQPXc b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-gild vlzsw3-5 fcfDwz"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">Give Award</span></button><div class="s15cosxg-2 cUBHAr" id="t3_bdshgi-share-menu"><button class="s15cosxg-1 jDZAxm" data-click-id="share"><i class="icon icon-share xwmljjCrovDE5C9MasZja _1GQDWqbF-wkYWbrpmOvjqJ"></i><span class="_6_44iTtZoeY6_XChKt5b0">share</span></button></div><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-save vlzsw3-2 IyvWL"></i></div><span class="s1nordvo-1 bVDUJS">save</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-hide vlzsw3-0 giMEpI"></i></div><span class="s1nordvo-1 bVDUJS">hide</span></button><button class="s1afabjy-1 iCfBkd b1zwxr-0 hxpTao" role="menuitem"><div class="s1nordvo-0 iRFTnd"><i class="icon icon-report _1MDjRAzxk1RSTB12748O1v vlzsw3-1 junIdA"><span class="i729lw-0 ebGXPK"></span></i></div><span class="s1nordvo-1 bVDUJS">report</span></button><div class="s1o43ulv-1 fGjVuX"></div><div><button class="vlzsw3-17 fajTRC s18u2fuq-1 bduZqE" aria-expanded="false" aria-haspopup="true" aria-label="more options" id="t3_bdshgi-overflow-menu"><i class="icon icon-menu s18u2fuq-2 lnwutk"></i></button></div><div class="_21pmAV9gWG6F_UKVe7YIE0"></div></div></div></div></div></div></div></div></div></div><div class="FohHGMokxXLkon1aacMoi"><div class="rybpsf-0 isNqYD"><div class="s11ntmk-14 kaCpdv"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s11ntmk-4 hIWxVw"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 bwDOHe"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div><div class="s11ntmk-3 jRGzVD"></div><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 iBcIzr"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></div></div><div class="s11ntmk-0 blMQvr"><div class="s11ntmk-5 kZsOoN"><div class="s11ntmk-6 ihsrZL"></div></div><div class="s11ntmk-1 kDJUEO"><div><div class="s11ntmk-7 hErNoh"></div><div class="s11ntmk-8 hvyqlW"></div></div><div class="s11ntmk-9 dfazTP"><div class="s11ntmk-10 ghrRRY"></div><div class="s11ntmk-11 lmASNF"></div><div class="s11ntmk-12 ceypt"></div><div class="s11ntmk-13 duzqvS"></div></div></div></div></div><div class="s11ntmk-14 kaCpdv"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s11ntmk-4 hIWxVw"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 bwDOHe"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div><div class="s11ntmk-3 jRGzVD"></div><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 iBcIzr"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></div></div><div class="s11ntmk-0 blMQvr"><div class="s11ntmk-5 kZsOoN"><div class="s11ntmk-6 ihsrZL"></div></div><div class="s11ntmk-1 kDJUEO"><div><div class="s11ntmk-7 hErNoh"></div><div class="s11ntmk-8 hvyqlW"></div></div><div class="s11ntmk-9 dfazTP"><div class="s11ntmk-10 ghrRRY"></div><div class="s11ntmk-11 lmASNF"></div><div class="s11ntmk-12 ceypt"></div><div class="s11ntmk-13 duzqvS"></div></div></div></div></div><div class="s11ntmk-14 kaCpdv"><div class="_23h0-EcaBUorIHC-JZyh6J" style="width:40px;border-left:4px solid transparent"><div class="s11ntmk-4 hIWxVw"><div class="_2q7IQ0BUOWeEZoeAxN555e dplx91-0 bwDOHe"><i class="icon icon-upvote _2Jxk822qXs4DaXwsN7yyHA"></i></div><div class="s11ntmk-3 jRGzVD"></div><div class="_1iKd82bq_nqObFvSH1iC_Q s1y8gf4b-0 iBcIzr"><i class="icon icon-downvote ZyxIIl4FP5gHGrJDzNpUC"></i></div></div></div><div class="s11ntmk-0 blMQvr"><div class="s11ntmk-5 kZsOoN"><div class="s11ntmk-6 ihsrZL"></div></div><div class="s11ntmk-1 kDJUEO"><div><div class="s11ntmk-7 hErNoh"></div><div class="s11ntmk-8 hvyqlW"></div></div><div class="s11ntmk-9 dfazTP"><div class="s11ntmk-10 ghrRRY"></div><div class="s11ntmk-11 lmASNF"></div><div class="s11ntmk-12 ceypt"></div><div class="s11ntmk-13 duzqvS"></div></div></div></div></div></div></div></div><div class="s1ljaa4r-6 CUukh" style="margin-left:24px"><div class="jeicq4-0 dSBshO s4jiyd-0 dYDuCS"><div class="s17ivpdx-0 faOhIY" data-redditstyle="true"><div class="TmgZY6tDcdErbE5d7E0HJ"><div class="fa9nbo-0 gCUJbB"></div><div class="fa9nbo-2 QJfmE"><div class="fa9nbo-3 hyedSq" title=""></div><div class="fa9nbo-6 lghAXa"><span class="fa9nbo-5 ljlNSY">Home</span></div></div><p class="fa9nbo-13 byKexP">Your personal Reddit frontpage. Come here to check in with your favorite communities.</p><div class="fa9nbo-14 iooGMG"><a class="fa9nbo-18 RdprA s8zor71-2 kZSlbc" href="/submit">Create post</a><button class="o51j48-0 hGTztL" disabled="" id="create-community-button">Create Community</button></div></div></div><div class="ii4q9d-0 fePAzF"><div class="s3ijttu-1 OohQE s17ivpdx-0 faOhIY" data-redditstyle="false"><div class="_3RPJ8hHnfFohktLZca18J6"><div class="s3ijttu-2 hBojQe"></div></div></div></div><div class="ii4q9d-0 fePAzF"><div class="s17ivpdx-0 faOhIY" data-redditstyle="false"><div class="_3RPJ8hHnfFohktLZca18J6"><div class="_1b1Jalg2nxA_Z-BjKXRfAV"><svg class="_3-m5rOa3loUClNwpCv1uWU" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><title>Reddit Premium</title><path d="M13.535 15.785c-1.678.244-2.883.742-3.535 1.071v-5.113a2 2 0 0 0-2-2H4.217c.044-.487.076-1.016.076-1.629 0-1.692-.489-2.968-.884-3.722L4.8 3.001H10v4.742a2 2 0 0 0 2 2h3.783c.06.67.144 1.248.22 1.742.097.632.182 1.177.182 1.745 0 1.045-.829 2.291-2.65 2.555m5.028-12.249l-2.242-2.242a1 1 0 0 0-.707-.293H4.386a1 1 0 0 0-.707.293L1.436 3.536a1 1 0 0 0-.069 1.337c.009.011.926 1.2.926 3.241 0 1.304-.145 2.24-.273 3.065-.106.684-.206 1.33-.206 2.051 0 1.939 1.499 4.119 4.364 4.534 2.086.304 3.254 1.062 3.261 1.065a1.016 1.016 0 0 0 1.117.004c.011-.007 1.18-.765 3.266-1.069 2.864-.415 4.363-2.595 4.363-4.534 0-.721-.099-1.367-.206-2.051-.128-.825-.272-1.761-.272-3.065 0-2.033.893-3.199.926-3.241a.999.999 0 0 0-.07-1.337"></path></svg><div class="_1LofvgShcWAGgRJOa2IRlf"><div class="_17PUokUAvL3YJx6EyPdD9d">Reddit Premium</div><div class="rn1KP8t9htFxyeAF8fdJ4">The best Reddit experience, with monthly Coins</div></div><button class="_1Cg0rke34k99vLcCo_aCP1 mwgtia-0 bfUTRJ">Try Now</button></div></div></div></div><div class="ii4q9d-0 fePAzF"><div class="s17ivpdx-0 faOhIY" data-redditstyle="false"><div class="_ZhON3a3vplThB8NFwuJn"><div class="_2sggAEfRQLyoAl4J__5twU">Trending Communities</div></div><div class="TmgZY6tDcdErbE5d7E0HJ"><div class="kufqoz-3 jvKTHE"><div class="_3NFddqqrzfM8noBES52Qcy"><div class="s1akftvf-3 fnfHa"><div class="s1akftvf-0 dNrhli"><div class="kufqoz-0 bFtNdL"><svg class="kufqoz-1 dagesX" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" data-redditstyle="true"><path d="M15.8286,15.8998 C15.3466,16.3788 12.6326,15.5598 8.5516,11.4798 C4.4706,7.3968 3.6486,4.6858 4.1316,4.2038 C4.3566,3.9788 4.9286,3.9208 5.9126,4.3518 C5.6166,4.5678 5.3306,4.8008 5.0666,5.0658 C5.0536,5.0798 5.0416,5.0948 5.0266,5.1098 C5.5756,6.4268 6.8946,8.4088 9.2596,10.7728 C11.6206,13.1338 13.6046,14.4538 14.9246,15.0028 C14.9376,14.9898 14.9526,14.9778 14.9666,14.9638 C15.2316,14.6988 15.4646,14.4128 15.6786,14.1178 C16.1096,15.1028 16.0526,15.6748 15.8286,15.8998 M16.7526,11.8998 C17.4066,9.5458 16.8136,6.9138 14.9666,5.0658 C13.6436,3.7438 11.8866,3.0148 10.0166,3.0148 C9.3686,3.0148 8.7356,3.1078 8.1286,3.2768 C5.7306,1.7598 3.9176,1.5898 2.7176,2.7898 C1.4036,4.1028 2.0736,6.1918 3.2866,8.1688 C2.6446,10.5128 3.2276,13.1258 5.0666,14.9638 C6.3886,16.2868 8.1456,17.0148 10.0166,17.0148 C10.6536,17.0148 11.2746,16.9178 11.8736,16.7518 C13.0856,17.4938 14.3406,18.0318 15.4316,18.0318 C16.1156,18.0318 16.7366,17.8198 17.2426,17.3138 C18.4416,16.1138 18.2706,14.2988 16.7526,11.8998"></path></svg></div></div><div class="s1akftvf-1 dwmvbJ"><div class="_3jEbHrUmHtMsZcfN-z_GpD"><a class="kufqoz-4 hsugzJ" href="/r/holdmybeaker">r/holdmybeaker</a><div><p class="kufqoz-5 cXpeRf">71.3k members</p></div></div></div><div class="s1akftvf-2 fhgKHO"><button class="s160fkbq-4 eTOCSy s8zor71-3 cpewgg">Join</button></div></div></div><div class="_3NFddqqrzfM8noBES52Qcy"><div class="s1akftvf-3 fnfHa"><div class="s1akftvf-0 dNrhli"><div class="kufqoz-0 bFtNdL"><svg class="kufqoz-1 dagesX" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" data-redditstyle="true"><path d="M15.8286,15.8998 C15.3466,16.3788 12.6326,15.5598 8.5516,11.4798 C4.4706,7.3968 3.6486,4.6858 4.1316,4.2038 C4.3566,3.9788 4.9286,3.9208 5.9126,4.3518 C5.6166,4.5678 5.3306,4.8008 5.0666,5.0658 C5.0536,5.0798 5.0416,5.0948 5.0266,5.1098 C5.5756,6.4268 6.8946,8.4088 9.2596,10.7728 C11.6206,13.1338 13.6046,14.4538 14.9246,15.0028 C14.9376,14.9898 14.9526,14.9778 14.9666,14.9638 C15.2316,14.6988 15.4646,14.4128 15.6786,14.1178 C16.1096,15.1028 16.0526,15.6748 15.8286,15.8998 M16.7526,11.8998 C17.4066,9.5458 16.8136,6.9138 14.9666,5.0658 C13.6436,3.7438 11.8866,3.0148 10.0166,3.0148 C9.3686,3.0148 8.7356,3.1078 8.1286,3.2768 C5.7306,1.7598 3.9176,1.5898 2.7176,2.7898 C1.4036,4.1028 2.0736,6.1918 3.2866,8.1688 C2.6446,10.5128 3.2276,13.1258 5.0666,14.9638 C6.3886,16.2868 8.1456,17.0148 10.0166,17.0148 C10.6536,17.0148 11.2746,16.9178 11.8736,16.7518 C13.0856,17.4938 14.3406,18.0318 15.4316,18.0318 C16.1156,18.0318 16.7366,17.8198 17.2426,17.3138 C18.4416,16.1138 18.2706,14.2988 16.7526,11.8998"></path></svg></div></div><div class="s1akftvf-1 dwmvbJ"><div class="_3jEbHrUmHtMsZcfN-z_GpD"><a class="kufqoz-4 hsugzJ" href="/r/Recursion">r/Recursion</a><div><p class="kufqoz-5 cXpeRf">17.4k members</p></div></div></div><div class="s1akftvf-2 fhgKHO"><button class="s160fkbq-4 eTOCSy s8zor71-3 cpewgg">Join</button></div></div></div><div class="_3NFddqqrzfM8noBES52Qcy"><div class="s1akftvf-3 fnfHa"><div class="s1akftvf-0 dNrhli"><div class="kufqoz-0 bFtNdL"><svg class="kufqoz-1 dagesX" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" data-redditstyle="true"><path d="M15.8286,15.8998 C15.3466,16.3788 12.6326,15.5598 8.5516,11.4798 C4.4706,7.3968 3.6486,4.6858 4.1316,4.2038 C4.3566,3.9788 4.9286,3.9208 5.9126,4.3518 C5.6166,4.5678 5.3306,4.8008 5.0666,5.0658 C5.0536,5.0798 5.0416,5.0948 5.0266,5.1098 C5.5756,6.4268 6.8946,8.4088 9.2596,10.7728 C11.6206,13.1338 13.6046,14.4538 14.9246,15.0028 C14.9376,14.9898 14.9526,14.9778 14.9666,14.9638 C15.2316,14.6988 15.4646,14.4128 15.6786,14.1178 C16.1096,15.1028 16.0526,15.6748 15.8286,15.8998 M16.7526,11.8998 C17.4066,9.5458 16.8136,6.9138 14.9666,5.0658 C13.6436,3.7438 11.8866,3.0148 10.0166,3.0148 C9.3686,3.0148 8.7356,3.1078 8.1286,3.2768 C5.7306,1.7598 3.9176,1.5898 2.7176,2.7898 C1.4036,4.1028 2.0736,6.1918 3.2866,8.1688 C2.6446,10.5128 3.2276,13.1258 5.0666,14.9638 C6.3886,16.2868 8.1456,17.0148 10.0166,17.0148 C10.6536,17.0148 11.2746,16.9178 11.8736,16.7518 C13.0856,17.4938 14.3406,18.0318 15.4316,18.0318 C16.1156,18.0318 16.7366,17.8198 17.2426,17.3138 C18.4416,16.1138 18.2706,14.2988 16.7526,11.8998"></path></svg></div></div><div class="s1akftvf-1 dwmvbJ"><div class="_3jEbHrUmHtMsZcfN-z_GpD"><a class="kufqoz-4 hsugzJ" href="/r/css_irl">r/css_irl</a><div><p class="kufqoz-5 cXpeRf">24.6k members</p></div></div></div><div class="s1akftvf-2 fhgKHO"><button class="s160fkbq-4 eTOCSy s8zor71-3 cpewgg">Join</button></div></div></div><div class="_3NFddqqrzfM8noBES52Qcy"><div class="s1akftvf-3 fnfHa"><div class="s1akftvf-0 dNrhli"><div class="kufqoz-0 bFtNdL"><img class="kufqoz-2 eEEbxk" src="https://b.thumbs.redditmedia.com/sbre62xgX6GkwcSGmwj8Qq-9EGmtzQ9S4phDHyRgPLA.png"/></div></div><div class="s1akftvf-1 dwmvbJ"><div class="_3jEbHrUmHtMsZcfN-z_GpD"><a class="kufqoz-4 hsugzJ" href="/r/gameofthrones">r/gameofthrones</a><div><p class="kufqoz-5 cXpeRf">1.9m members</p></div></div></div><div class="s1akftvf-2 fhgKHO"><button class="s160fkbq-4 eTOCSy s8zor71-3 cpewgg">Join</button></div></div></div><div class="_3NFddqqrzfM8noBES52Qcy"><div class="s1akftvf-3 fnfHa"><div class="s1akftvf-0 dNrhli"><div class="kufqoz-0 bFtNdL"><img class="kufqoz-2 eEEbxk" src="https://b.thumbs.redditmedia.com/FoGtUSGK537hMofEV_SRsR8EeqHa8eRyQ1SGc59PvdM.png"/></div></div><div class="s1akftvf-1 dwmvbJ"><div class="_3jEbHrUmHtMsZcfN-z_GpD"><a class="kufqoz-4 hsugzJ" href="/r/france">r/france</a><div><p class="kufqoz-5 cXpeRf">264k members</p></div></div></div><div class="s1akftvf-2 fhgKHO"><button class="s160fkbq-4 eTOCSy s8zor71-3 cpewgg">Join</button></div></div></div></div></div></div></div><div class="s1uypday-0 cHkkoG"><div class="s1uypday-5 fqKXrr"><div class="ii4q9d-0 fePAzF"><div class="s3ijttu-1 OohQE s17ivpdx-0 faOhIY" data-redditstyle="false"><div class="_3RPJ8hHnfFohktLZca18J6"><div class="s3ijttu-2 hBojQe"></div></div></div></div><div class="s1168hkq-4 hjxxdC s17ivpdx-0 faOhIY" data-redditstyle="false"><div class="_3RPJ8hHnfFohktLZca18J6"><div class="s1168hkq-0 jpZMnH"><div class="s21l9wz-0 bmnsEB"><div><a class="s1168hkq-1 hSAKYw" href="https://about.reddit.com">about</a><a class="s1168hkq-1 hSAKYw" href="https://about.reddit.com/careers/">careers</a><a class="s1168hkq-1 hSAKYw" href="https://about.reddit.com/press/">press</a></div></div><div class="s21l9wz-0 bmnsEB"><div><a class="s1168hkq-1 hSAKYw" href="https://about.reddit.com/advertise/">advertise</a><a class="s1168hkq-1 hSAKYw" href="http://www.redditblog.com/">blog</a><a class="s1168hkq-1 hSAKYw" href="https://www.reddithelp.com">help</a></div></div><div class="s21l9wz-0 bmnsEB"><div><a class="s1168hkq-1 hSAKYw" href="https://www.reddit.com/mobile/download">the reddit app</a><a class="s1168hkq-1 hSAKYw" href="https://www.reddit.com/coins">reddit coins</a><a class="s1168hkq-1 hSAKYw" href="https://www.reddit.com/premium">reddit premium</a><a class="s1168hkq-1 hSAKYw" href="http://redditgifts.com/">reddit gifts</a></div></div></div><div class="s1168hkq-2 kddyLv"><div><a class="s1168hkq-3 dikVDQ" href="https://www.reddit.com/help/contentpolicy"> <!-- -->content policy</a><span>|</span><a class="s1168hkq-3 dikVDQ" href="https://www.reddit.com/help/privacypolicy"> <!-- -->privacy policy</a></div><div><a class="s1168hkq-3 dikVDQ" href="https://www.reddit.com/help/useragreement"> <!-- -->user agreement</a><span>|</span><a class="s1168hkq-3 dikVDQ" href="https://www.reddit.com/help/healthycommunities/"> <!-- -->mod policy</a></div><div>© 2019 Reddit, Inc. All rights reserved</div></div></div></div></div><div class="s1uypday-1 bftogP s1ayxy26-0 hYctxm"><button class="s1ayxy26-1 fedWgZ">back to top</button></div></div></div></div></div></div></div></div></div></div><style>:root { --newCommunityTheme-actionIcon: #818384;--newCommunityTheme-active: #0079D3;--newCommunityTheme-banner-backgroundColor: #2d97e5;--newCommunityTheme-banner-backgroundImage: ;--newCommunityTheme-banner-backgroundImagePosition: cover;--newCommunityTheme-banner-communityNameFormat: slashtag;--newCommunityTheme-banner-height: 64;--newCommunityTheme-banner-iconColor: #0079D3;--newCommunityTheme-banner-iconDimensions-borderRadius: 24;--newCommunityTheme-banner-iconDimensions-customSize: 32;--newCommunityTheme-banner-iconDimensions-padding: 6;--newCommunityTheme-banner-iconDimensions-size: 24;--newCommunityTheme-banner-iconImage: ;--newCommunityTheme-banner-lineHeight: 38;--newCommunityTheme-banner-positionedImage: ;--newCommunityTheme-banner-positionedImageAlignment: left;--newCommunityTheme-banner-positionedImageHeight: 48;--newCommunityTheme-banner-secondaryBannerPositionedImage: ;--newCommunityTheme-body: #1A1A1B;--newCommunityTheme-bodyText: #D7DADC;--newCommunityTheme-button: #D7DADC;--newCommunityTheme-canvas: #030303;--newCommunityTheme-errorText: #FF0000;--newCommunityTheme-field: #272729;--newCommunityTheme-flair: #343536;--newCommunityTheme-highlight: #17232D;--newCommunityTheme-inactive: #343536;--newCommunityTheme-lightText: #FFFFFF;--newCommunityTheme-line: #343536;--newCommunityTheme-linkText: #4FBCFF;--newCommunityTheme-menu: #030303;--newCommunityTheme-menuActiveText: #D7DADC;--newCommunityTheme-menuInactiveText: #D7DADC;--newCommunityTheme-metaText: #818384;--newCommunityTheme-navBar-activeLink: #E9F5FD;--newCommunityTheme-navBar-activeSubmenuCaret: #D7DADC;--newCommunityTheme-navBar-activeSubmenuLink: #D7DADC;--newCommunityTheme-navBar-backgroundColor: #030303;--newCommunityTheme-navBar-backgroundImage: ;--newCommunityTheme-navBar-hoverLink: #D7DADC;--newCommunityTheme-navBar-inactiveLink: #D7DADC;--newCommunityTheme-navBar-inactiveSubmenuCaret: #D7DADC;--newCommunityTheme-navBar-inactiveSubmenuLink: #D7DADC;--newCommunityTheme-navBar-submenuBackgroundColor: #1A1A1B;--newCommunityTheme-navIcon: #D7DADC;--newCommunityTheme-pageHeader: #818384;--newCommunityTheme-placeholder: #3A3A3C;--newCommunityTheme-post: #1A1A1B;--newCommunityTheme-postFlairText: #FFFFFF;--newCommunityTheme-postIcon: #818384;--newCommunityTheme-postLine: #343536;--newCommunityTheme-report: #1C1402;--newCommunityTheme-titleText: #D7DADC;--newCommunityTheme-voteIcons-downvoteActive: ;--newCommunityTheme-voteIcons-downvoteInactive: ;--newCommunityTheme-voteIcons-upvoteActive: ;--newCommunityTheme-voteIcons-upvoteInactive: ;--newCommunityTheme-voteText-base: #818384;--newCommunityTheme-voteText-downvote: #7193FF;--newCommunityTheme-voteText-upvote: #FF4500;--newCommunityTheme-widgetColors-lineColor: #343536;--newCommunityTheme-widgetColors-sidebarWidgetBackgroundColor: #1A1A1B;--newCommunityTheme-widgetColors-sidebarWidgetHeaderColor: #1A1A1B;--newRedditTheme-actionIcon: #818384;--newRedditTheme-active: #0079D3;--newRedditTheme-banner-backgroundColor: #24A0ED;--newRedditTheme-banner-backgroundImage: ;--newRedditTheme-banner-backgroundImagePosition: cover;--newRedditTheme-banner-communityNameFormat: slashtag;--newRedditTheme-banner-height: 64;--newRedditTheme-banner-iconColor: #24A0ED;--newRedditTheme-banner-iconDimensions-borderRadius: 24;--newRedditTheme-banner-iconDimensions-customSize: 32;--newRedditTheme-banner-iconDimensions-padding: 6;--newRedditTheme-banner-iconDimensions-size: 24;--newRedditTheme-banner-iconImage: ;--newRedditTheme-banner-lineHeight: 38;--newRedditTheme-banner-positionedImage: ;--newRedditTheme-banner-positionedImageAlignment: cover;--newRedditTheme-banner-positionedImageHeight: 48;--newRedditTheme-banner-secondaryBannerPositionedImage: ;--newRedditTheme-body: #1A1A1B;--newRedditTheme-bodyText: #D7DADC;--newRedditTheme-button: #D7DADC;--newRedditTheme-canvas: #030303;--newRedditTheme-errorText: #FF0000;--newRedditTheme-field: #272729;--newRedditTheme-flair: #343536;--newRedditTheme-highlight: #17232D;--newRedditTheme-inactive: #343536;--newRedditTheme-lightText: #FFFFFF;--newRedditTheme-line: #343536;--newRedditTheme-linkText: #4FBCFF;--newRedditTheme-menu: #030303;--newRedditTheme-menuActiveText: #D7DADC;--newRedditTheme-menuInactiveText: #D7DADC;--newRedditTheme-metaText: #818384;--newRedditTheme-navBar-activeLink: #E9F5FD;--newRedditTheme-navBar-activeSubmenuCaret: #D7DADC;--newRedditTheme-navBar-activeSubmenuLink: #D7DADC;--newRedditTheme-navBar-backgroundColor: #030303;--newRedditTheme-navBar-backgroundImage: ;--newRedditTheme-navBar-hoverLink: #D7DADC;--newRedditTheme-navBar-inactiveLink: #D7DADC;--newRedditTheme-navBar-inactiveSubmenuCaret: #D7DADC;--newRedditTheme-navBar-inactiveSubmenuLink: #D7DADC;--newRedditTheme-navBar-submenuBackgroundColor: #1A1A1B;--newRedditTheme-navIcon: #D7DADC;--newRedditTheme-pageHeader: #818384;--newRedditTheme-placeholder: #3A3A3C;--newRedditTheme-post: #1A1A1B;--newRedditTheme-postFlairText: #FFFFFF;--newRedditTheme-postIcon: #818384;--newRedditTheme-postLine: #343536;--newRedditTheme-report: #1C1402;--newRedditTheme-titleText: #D7DADC;--newRedditTheme-voteIcons-downvoteActive: ;--newRedditTheme-voteIcons-downvoteInactive: ;--newRedditTheme-voteIcons-upvoteActive: ;--newRedditTheme-voteIcons-upvoteInactive: ;--newRedditTheme-voteText-base: #818384;--newRedditTheme-voteText-downvote: #7193FF;--newRedditTheme-voteText-upvote: #FF4500;--newRedditTheme-widgetColors-lineColor: #343536;--newRedditTheme-widgetColors-sidebarWidgetBackgroundColor: #1A1A1B;--newRedditTheme-widgetColors-sidebarWidgetHeaderColor: #1A1A1B;--subredditContext-customEmojisSize: ;--subredditContext-isCommentsPage: ;--subredditContext-isOverlay: ; }</style><div class=""></div></div></div></div></div><script>
__perfMark('ads_dot_js_fetch_start');
</script><script src="https://www.redditstatic.com/desktop2x/js/ads.js"></script><script>
__perfMark('redux_json_start');
</script><script id="data">window.___r = {"accountManagerModalData":{},"activeModalId":null,"ads":{},"alpha":{"notFound":{"users":[],"subreddits":[]},"error":null,"pending":false},"apiRequestState":{},"approvedSubmitters":{"api":{"error":null,"pending":{}},"fetchedTokens":{},"loadMore":{},"models":{},"search":{"api":{"error":null,"pending":false},"result":null},"userOrder":{}},"authorFlair":{"inContext":null,"models":{}},"awards":{"create":{"api":{"error":null,"pending":false}},"manageable":{"api":{"error":null,"pending":{}},"order":{}},"models":{},"usable":{"api":{"error":null,"pending":{}},"order":{}}},"badges":{"api":{"subreddit":{"error":{},"pending":{}},"user":{"error":{},"pending":{}}},"models":{}},"banned":{"api":{"error":null,"pending":{}},"fetchedTokens":{},"inContext":null,"loadMore":{},"models":{},"search":{"api":{"error":null,"pending":false},"result":null},"userOrder":{}},"blockUser":{"api":{"error":{},"pending":{}}},"brandSafety":{"isViewSafe":true,"hasBrandSafetyBeenAssessed":false},"categories":{"api":{"list":{"error":null,"loaded":false,"pending":false},"subreddits":{"error":{},"loaded":{},"pending":{}}},"ids":[],"models":{},"nameToId":{}},"chat":{"isInited":false,"isUserSubredditChatEnabled":false,"subredditSettings":{"subredditId":null,"bannedWords":"","domains":"","rateLimit":-1,"regexes":[]},"promos":{"displaySubredditChatFtux":false},"unread":{"api":{"error":{"apiError":null},"pending":false},"count":{"basicChannelCount":0,"subredditChannelCount":0}}},"claimGold":{"api":{"error":null,"pending":false,"showLoader":false},"code":"","showModal":false},"comments":{"collapsed":{},"drafts":{},"focused":{},"hidden":{},"isEditing":{},"models":{},"replyFormOpen":{},"submit":{"error":{},"pending":{}},"visitHighlightFilter":"Last"},"commentsPage":{"api":{"error":{},"fullyLoaded":{},"pending":{}},"keyToCommentThreadLinkSets":{},"keyToHeadCommentId":{},"keyToPostId":{},"ads":[]},"contentGate":{},"continueThreads":{"models":{}},"creations":{"api":{"collection":{"createOrUpdate":{"error":null,"pending":false}},"draft":{"deleteDraft":{"error":{},"pending":{}},"listing":{"error":null,"pending":false},"save":{"error":{"apiError":null,"needsCaptcha":false,"validationError":null,"submitValidationError":null},"pending":false}},"editor":{"converting":{"pending":{}},"mediaUpload":{"error":null,"pending":false}},"page":{"error":{},"fetched":{},"pending":{}},"post":{"submit":{"error":{"apiError":null,"needsCaptcha":false,"validationError":null,"submitValidationError":null},"pending":false},"update":{"error":null,"pending":false}},"subreddit":{"change":{"error":null,"pending":false}}},"drafts":{},"formData":{"body":{"link":"","markdown":"","media":null,"rte":{"isBound":false,"editorKey":"2a0206","initialRTJSON":{"document":[]}}},"eventSchedule":null,"flair":null,"govType":null,"isNSFW":false,"isOC":false,"isPoll":false,"isPublicLink":false,"isSpoiler":false,"newSubreddit":"","newTopMod":"","nextSubreddit":null,"ocCategory":null,"postToTwitter":false,"polls":null,"recaptcha":"","sendReplies":true,"submissionType":"post","title":""},"formState":{"fieldValidation":{"title":null,"body":null,"link":null,"flair":null},"isChanged":false,"modalId":null,"ocCategory":null,"submitMode":0},"postEditing":{"draft":{"markdown":"","rte":{"isBound":false,"editorKey":"521e3c","initialRTJSON":{"document":[]}}},"editorMode":"richtext","postId":null}},"dashboard":{"selectedComponent":null,"subredditPending":false,"subredditLoaded":{}},"discoveryUnits":{"api":{"list":{"error":null,"loaded":false,"pending":false}},"models":{},"nameToId":{}},"economics":{"currentPaymentTarget":null,"ftue":{"tippingHighlightViewed":null,"topTippersViewed":null},"paymentSystems":{"status":2},"tipDetails":{}},"emojis":{},"externalAccount":{"api":{"connect":{"error":{},"pending":{}},"disconnect":{"error":{},"pending":{}},"user":{"error":{},"pending":{}},"subreddit":{"error":{},"fetched":{},"pending":{}}},"user":{},"subreddit":{}},"featureFlags":{"overrides":{"introModal":null,"jiraTicket":null,"markdownMode":null,"modQueue":null,"newRedditSubdomain":null,"spBadges":null,"spBadgePurchase":null,"spCommunityTipJar":null,"spFavoriteCreators":null,"spGovPolls":null,"spHarberger":null,"spLeaderboard":null,"spLoadtest":null,"spPoints":null,"spPolls":null,"spPublicPoints":null,"spSpinoffs":null,"spSupport":null,"spTopTippers":null,"communityAwards":null,"createCommunityAwards":null,"communityTopics":null,"events":null,"collections":null,"rteVideoPoster":null,"userSeenSubredditChatFtux":null,"userInChat":null,"userInSubredditChat":null,"userInChatUserSettings":null,"devAndStagingWatermark":null,"fpsMeter":null,"rabbitHole":null,"news":null,"redesignProfiles":null,"measureScrollFPS":null,"showVerboseErrors":null,"uappBanner":null,"canProxyGild":null,"experiments":null,"enableGraphQl":null,"importExportThemes":null,"grantUserFlair":null,"spezModal":null,"superbOwl":null,"gameOfThronesEvent":null,"isBeforeGOTEnd":null,"isGOTPriorPremiereWeek":null,"isAfterGOTPremiere":null,"isGOTRepeatActive":null,"enableShadowMode":null,"useGraphQLInFrontpage":null,"pushNotificationsBrowserSupported":null,"enableCrowdControlMode":null,"customFeeds":null,"snoovatar30":null,"__requiredDoNotRemove":null}},"fontFiles":[{"family":"IBMPlexSans","weight":700,"style":"normal","woffUrl":"fonts/IBMPlexSans/Bold-c34ba754b7235b49d33b294ff7a54179.woff","woff2Url":"fonts/IBMPlexSans/Bold-875de5047556e7c822519d95d7ee692d.woff2"},{"family":"IBMPlexSans","weight":500,"style":"normal","woffUrl":"fonts/IBMPlexSans/Medium-1051a531d3e1ee3483a6533158557139.woff","woff2Url":"fonts/IBMPlexSans/Medium-c4b185e25a4dde85a29f902cd5ce5360.woff2"},{"family":"IBMPlexSans","weight":400,"style":"normal","woffUrl":"fonts/IBMPlexSans/Regular-e6bbcdd30d3bd4d6b170bcb6d3552cab.woff","woff2Url":"fonts/IBMPlexSans/Regular-116bb6d508f5307861d3b1269bc597e7.woff2"},{"family":"Noto Mono","weight":400,"style":"normal","woffUrl":"fonts/NotoMono/Regular-e6bbcdd30d3bd4d6b170bcb6d3552cab.woff","woff2Url":"fonts/NotoMono/Regular-b16bb0524a7e7ee597970333c0c67180.woff2"},{"family":"Noto Mono","weight":400,"style":"normal","woffUrl":"fonts/NotoMono/el-Regular-06ee3f893717454d11a16c3e8d0aa9f9.woff","woff2Url":"fonts/NotoMono/el-Regular-29d72243d2cd6145b28bcb80dc33f0e4.woff2"},{"family":"Noto Sans","weight":700,"style":"italic","woffUrl":"fonts/NotoSans/Bold-Italic-255b4934a1f414dd312aa89382d65114.woff","woff2Url":"fonts/NotoSans/Bold-Italic-be39cd37f002d25d500c67b88871bed4.woff2"},{"family":"Noto Sans","weight":700,"style":"normal","woffUrl":"fonts/NotoSans/Bold-c34ba754b7235b49d33b294ff7a54179.woff","woff2Url":"fonts/NotoSans/Bold-d4ba4ecba17e90993f442f7bb082a3a2.woff2"},{"family":"Noto Sans","weight":400,"style":"normal","woffUrl":"fonts/NotoSans/Regular-e6bbcdd30d3bd4d6b170bcb6d3552cab.woff","woff2Url":"fonts/NotoSans/Regular-d6a6aa8dc0f93416a832ea04a18c6fb8.woff2"},{"family":"Noto Sans","weight":700,"style":"italic","woffUrl":"fonts/OldNotoSans/Bold-Italic-255b4934a1f414dd312aa89382d65114.woff","woff2Url":"fonts/OldNotoSans/Bold-Italic-5a241c76c24e463ef9bcc5855d20209b.woff2"},{"family":"Noto Sans","weight":700,"style":"normal","woffUrl":"fonts/OldNotoSans/Bold-c34ba754b7235b49d33b294ff7a54179.woff","woff2Url":"fonts/OldNotoSans/Bold-b85bf848c28799f5ad34ee29db68051c.woff2"},{"family":"Noto Sans","weight":400,"style":"normal","woffUrl":"fonts/OldNotoSans/Regular-e6bbcdd30d3bd4d6b170bcb6d3552cab.woff","woff2Url":"fonts/OldNotoSans/Regular-e50c34178d20d5fa4ab3c1f6c67901a9.woff2"}],"gameOfThronesEvent":{"api":{"error":{"gotPollGetError":null,"gotPollSubmitError":null},"pending":{"gotPollGetPending":false,"gotPollSubmitPending":false}},"components":{"isPledgeBannerAndThronePoolClosed":true},"models":{"polls":[{"titleImage":{"1x":"https://www.redditstatic.com/desktop2x/img/got-event/got_title_image@1x_v2.png","3x":"https://www.redditstatic.com/desktop2x/img/got-event/got_title_image@3x_v2.png","2x":"https://www.redditstatic.com/desktop2x/img/got-event/got_title_image@2x_v2.png","size":{"width":222,"height":28}},"subtitle":"Who do you want to win the Iron Throne?","questions":[{"text":"Who do you want to win the Iron Throne?","buttonPrompt":"Bend the Knee","id":"76eea352-2b88-4ea1-ab19-aa442edcb16e","answers":[{"titleTextColor":"#FFFFFF","text":"Jon Snow","iconImage":{"1x":"https://emoji.redditmedia.com/8viora70kte21_t5_2rjz2/Jon_Snow","3x":"https://emoji.redditmedia.com/8viora70kte21_t5_2rjz2/Jon_Snow","2x":"https://emoji.redditmedia.com/8viora70kte21_t5_2rjz2/Jon_Snow","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":242472,"name":"JonWinsTheThrone","subscriberCountText":"know nothing","userFlair":":Jon_Snow: Team Jon","id":"t5_yoyii","namePrefixed":"r/JonWinsTheThrone"},"backgroundColor":"#373C3F","analyticsText":"jon_snow","id":"a0e144da-5063-4416-9682-5f5e2f48fe1d"},{"titleTextColor":"#FFFFFF","text":"Daenerys Targaryen","iconImage":{"1x":"https://emoji.redditmedia.com/p77ls757rte21_t5_2rjz2/Targaryen","3x":"https://emoji.redditmedia.com/p77ls757rte21_t5_2rjz2/Targaryen","2x":"https://emoji.redditmedia.com/p77ls757rte21_t5_2rjz2/Targaryen","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":128307,"name":"DaenerysWinsTheThrone","subscriberCountText":"bent the knee","userFlair":":Targaryen: Team Daenerys","id":"t5_yoxrd","namePrefixed":"r/DaenerysWinsTheThrone"},"backgroundColor":"#B41B1B","analyticsText":"daenerys_targaryen","id":"2cc633c4-a710-4da9-9ac9-c03bbd1dd846"},{"titleTextColor":"#FFFFFF","text":"Tyrion Lannister","iconImage":{"1x":"https://emoji.redditmedia.com/0yid57u7rte21_t5_2rjz2/Tyrion_Lannister","3x":"https://emoji.redditmedia.com/0yid57u7rte21_t5_2rjz2/Tyrion_Lannister","2x":"https://emoji.redditmedia.com/0yid57u7rte21_t5_2rjz2/Tyrion_Lannister","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":82831,"name":"TyrionWinsTheThrone","subscriberCountText":"drink and know things","userFlair":":Tyrion_Lannister: Team Tyrion","id":"t5_yoz21","namePrefixed":"r/TyrionWinsTheThrone"},"backgroundColor":"#C8932D","analyticsText":"tyrion_lannister","id":"9e159260-0cbb-4383-9221-8f504a73851e"},{"titleTextColor":"#FFFFFF","text":"Jaime Lannister","iconImage":{"1x":"https://emoji.redditmedia.com/ijlua9zzjte21_t5_2rjz2/Jaime_Lannister","3x":"https://emoji.redditmedia.com/ijlua9zzjte21_t5_2rjz2/Jaime_Lannister","2x":"https://emoji.redditmedia.com/ijlua9zzjte21_t5_2rjz2/Jaime_Lannister","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":22993,"name":"JaimeWinsTheThrone","subscriberCountText":"Kingslayers","userFlair":":Jaime_Lannister: Team Jaime","id":"t5_yp094","namePrefixed":"r/JaimeWinsTheThrone"},"backgroundColor":"#C8932D","analyticsText":"jaime_lannister","id":"9dfb0ca6-e681-4cb4-a08a-1fb54a0c456d"},{"titleTextColor":"#FFFFFF","text":"Cersei Lannister","iconImage":{"1x":"https://emoji.redditmedia.com/6y1a34v8ite21_t5_2rjz2/Cersei_Lannister","3x":"https://emoji.redditmedia.com/6y1a34v8ite21_t5_2rjz2/Cersei_Lannister","2x":"https://emoji.redditmedia.com/6y1a34v8ite21_t5_2rjz2/Cersei_Lannister","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":13588,"name":"CerseiWinsTheThrone","subscriberCountText":"paid their debts","userFlair":":Cersei_Lannister: Team Cersei ","id":"t5_yoxxf","namePrefixed":"r/CerseiWinsTheThrone"},"backgroundColor":"#C8932D","analyticsText":"cersei_lannister","id":"7477d0ca-5d03-4fec-b040-392151b986e8"},{"titleTextColor":"#FFFFFF","text":"Arya Stark","iconImage":{"1x":"https://emoji.redditmedia.com/z3kro107ite21_t5_2rjz2/Arya_Stark","3x":"https://emoji.redditmedia.com/z3kro107ite21_t5_2rjz2/Arya_Stark","2x":"https://emoji.redditmedia.com/z3kro107ite21_t5_2rjz2/Arya_Stark","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":53495,"name":"AryaWinsTheThrone","subscriberCountText":"said \"not today!\"","userFlair":":Arya_Stark: Team Arya","id":"t5_yoy12","namePrefixed":"r/AryaWinsTheThrone"},"backgroundColor":"#373C3F","analyticsText":"arya_stark","id":"d5bd3886-2022-4da0-8def-43031a9dcdfb"},{"titleTextColor":"#FFFFFF","text":"Sansa Stark","iconImage":{"1x":"https://emoji.redditmedia.com/sf5th459kte21_t5_2rjz2/Sansa_Stark","3x":"https://emoji.redditmedia.com/sf5th459kte21_t5_2rjz2/Sansa_Stark","2x":"https://emoji.redditmedia.com/sf5th459kte21_t5_2rjz2/Sansa_Stark","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":36458,"name":"SansaWinsTheThrone","subscriberCountText":"Remember the North","userFlair":":Sansa_Stark: Team Sansa","id":"t5_yoyb2","namePrefixed":"r/SansaWinsTheThrone"},"backgroundColor":"#373C3F","analyticsText":"sansa_stark","id":"6df10862-6247-4ad1-968e-07dca87c488a"},{"titleTextColor":"#FFFFFF","text":"Bran Stark","iconImage":{"1x":"https://emoji.redditmedia.com/oht6j2v7ite21_t5_2rjz2/Bran_Stark","3x":"https://emoji.redditmedia.com/oht6j2v7ite21_t5_2rjz2/Bran_Stark","2x":"https://emoji.redditmedia.com/oht6j2v7ite21_t5_2rjz2/Bran_Stark","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":13524,"name":"BranWinsTheThrone","subscriberCountText":"Greenseers","userFlair":":Bran_Stark: Team Bran","id":"t5_yoz0h","namePrefixed":"r/BranWinsTheThrone"},"backgroundColor":"#373C3F","analyticsText":"bran_stark","id":"c61cf5d2-6623-4db9-bbea-7ea76c5b53dc"},{"titleTextColor":"#FFFFFF","text":"Night King","iconImage":{"1x":"https://emoji.redditmedia.com/zubz75s0wp621_t5_2rjz2/Night_King","3x":"https://emoji.redditmedia.com/zubz75s0wp621_t5_2rjz2/Night_King","2x":"https://emoji.redditmedia.com/zubz75s0wp621_t5_2rjz2/Night_King","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":39522,"name":"NKWinsTheThrone","subscriberCountText":"Wights","userFlair":":Night_King: Team of the Dead","id":"t5_yp06j","namePrefixed":"r/NKWinsTheThrone"},"backgroundColor":"#B4CAE1","analyticsText":"night_king","bannerImage":{"1x":"https://www.redditstatic.com/desktop2x/img/got-event/night_king_background@1x.png","3x":"https://www.redditstatic.com/desktop2x/img/got-event/night_king_background@3x.png","2x":"https://www.redditstatic.com/desktop2x/img/got-event/night_king_background@2x.png","size":{"width":375,"height":58}},"id":"ff51161b-56a3-4f6d-aacd-7960d7c0f480"},{"titleTextColor":"#FFFFFF","text":"Nobody","iconImage":{"1x":"https://emoji.redditmedia.com/3ycyqgpaite21_t5_2rjz2/Faceless_Men","3x":"https://emoji.redditmedia.com/3ycyqgpaite21_t5_2rjz2/Faceless_Men","2x":"https://emoji.redditmedia.com/3ycyqgpaite21_t5_2rjz2/Faceless_Men","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":64185,"name":"NobodyWinsTheThrone","subscriberCountText":"not playing the Game","userFlair":":Faceless_Men: Team Nobody","id":"t5_yoz5o","namePrefixed":"r/NobodyWinsTheThrone"},"backgroundColor":"#125B9D","analyticsText":"nobody","id":"30409307-5f1d-4975-a3bd-fc71f9393b2e"},{"titleTextColor":"#FFFFFF","text":"Lyanna Mormont","iconImage":{"1x":"https://emoji.redditmedia.com/0f2uldh4kte21_t5_2rjz2/Mormont","3x":"https://emoji.redditmedia.com/0f2uldh4kte21_t5_2rjz2/Mormont","2x":"https://emoji.redditmedia.com/0f2uldh4kte21_t5_2rjz2/Mormont","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":10289,"name":"LyannaWinsTheThrone","subscriberCountText":"worth 10 mainlanders","userFlair":":Mormont: Team Lyanna","id":"t5_zggl1","namePrefixed":"r/LyannaWinsTheThrone"},"backgroundColor":"#023E02","analyticsText":"lyanna_mormont","id":"37908831-9d48-4779-abc5-febf32376811"},{"titleTextColor":"#FFFFFF","text":"Gendry","iconImage":{"1x":"https://emoji.redditmedia.com/vvx998xbite21_t5_2rjz2/Gendry","3x":"https://emoji.redditmedia.com/vvx998xbite21_t5_2rjz2/Gendry","2x":"https://emoji.redditmedia.com/vvx998xbite21_t5_2rjz2/Gendry","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":23009,"name":"GendryWinsTheThrone","subscriberCountText":"still rowing","userFlair":":Gendry: Team Gendry","id":"t5_yoyka","namePrefixed":"r/GendryWinsTheThrone"},"backgroundColor":"#1A1A1B","analyticsText":"gendry","id":"2c4ce729-3ef4-438b-bb9a-c2c5e4836792"},{"titleTextColor":"#000000","text":"Theon Greyjoy","iconImage":{"1x":"https://emoji.redditmedia.com/1rwrk2hcite21_t5_2rjz2/Greyjoy","3x":"https://emoji.redditmedia.com/1rwrk2hcite21_t5_2rjz2/Greyjoy","2x":"https://emoji.redditmedia.com/1rwrk2hcite21_t5_2rjz2/Greyjoy","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":3304,"name":"TheonWinsTheThrone","subscriberCountText":"redeeming themselves","userFlair":":Greyjoy: Team Theon","id":"t5_yozps","namePrefixed":"r/TheonWinsTheThrone"},"backgroundColor":"#FF9800","analyticsText":"theon_greyjoy","id":"78296fd9-c3cb-4ea4-b22d-57541b8426cd"},{"titleTextColor":"#000000","text":"Euron Greyjoy","iconImage":{"1x":"https://emoji.redditmedia.com/984jx2naite21_t5_2rjz2/Euron_Greyjoy","3x":"https://emoji.redditmedia.com/984jx2naite21_t5_2rjz2/Euron_Greyjoy","2x":"https://emoji.redditmedia.com/984jx2naite21_t5_2rjz2/Euron_Greyjoy","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":2500,"name":"EuronWinsTheThrone","subscriberCountText":"Ironborn","userFlair":":Euron_Greyjoy: Team Euron","id":"t5_yozjv","namePrefixed":"r/EuronWinsTheThrone"},"backgroundColor":"#FF9800","analyticsText":"euron_greyjoy","id":"d1a890a4-49f3-4e18-b86d-b5207b664f87"},{"titleTextColor":"#FFFFFF","text":"Sam Tarly","iconImage":{"1x":"https://emoji.redditmedia.com/zzglp3r8kte21_t5_2rjz2/Samwell_Tarly","3x":"https://emoji.redditmedia.com/zzglp3r8kte21_t5_2rjz2/Samwell_Tarly","2x":"https://emoji.redditmedia.com/zzglp3r8kte21_t5_2rjz2/Samwell_Tarly","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":17270,"name":"SamWinsTheThrone","subscriberCountText":"Maesters","userFlair":":Samwell_Tarly: Team Sam","id":"t5_yozp6","namePrefixed":"r/SamWinsTheThrone"},"backgroundColor":"#A8A8A8","analyticsText":"sam_tarly","id":"c8955ce4-ca47-4307-bc6d-259ce9be8236"},{"titleTextColor":"#FFFFFF","text":"Missandei","iconImage":{"1x":"https://emoji.redditmedia.com/h6qsig9lq5r21_t5_2rjz2/Missandei","3x":"https://emoji.redditmedia.com/h6qsig9lq5r21_t5_2rjz2/Missandei","2x":"https://emoji.redditmedia.com/h6qsig9lq5r21_t5_2rjz2/Missandei","size":{"width":36,"height":36}},"subreddit":{"subscriberCount":4336,"name":"MissandeiWinsAThrone","subscriberCountText":"speaking 19 languages","userFlair":":Missandei: Team Missandei","id":"t5_zgina","namePrefixed":"r/MissandeiWinsAThrone"},"backgroundColor":"#007579","analyticsText":"missandei","id":"86e2ffdb-2a7c-4aa3-80dd-9b2e55e00cc0"}],"restriction":"You won't be able to change your choice after you submit"}],"backgroundColor":"#0F4373","title":"THRONE POOL","buttonPrompt":"MAKE YOUR CHOICE","iconImage":{"1x":"https://www.redditstatic.com/desktop2x/img/got-event/got_comm_icon.png","3x":"https://www.redditstatic.com/desktop2x/img/got-event/got_comm_icon.png","2x":"https://www.redditstatic.com/desktop2x/img/got-event/got_comm_icon.png","size":{"width":46,"height":46}},"id":"fbfabab1-0a3e-40ad-aa99-b84d146f47bc"}]}},"gild":{"api":{"error":null,"pending":false,"showLoader":false},"gildModalThingId":null,"gildType":"gid_2","includeMessage":false,"isAnonymous":true,"isIframed":false,"message":"","selectedAward":{"awardType":"GLOBAL","coinPrice":500,"coinReward":100,"description":"","daysOfDripExtension":0,"icon":{"url":"https://www.redditstatic.com/desktop2x/img/gold/badges/award-gold-medium.png?v=2"},"id":"gid_2","isEnabled":true,"name":"Gold","daysOfPremium":7}},"goldPurchase":{"coinPurchaseModal":{"activePage":"selectPayment","gildThingId":null,"purchasePackage":null,"showModal":false},"payment":{"cardName":"","cardValidation":{"cardCvc":"","cardExpiry":"","cardNumber":"","nameOnCard":"","postalCode":""},"paymentMethod":"paypal","paypal":{"errorMessage":null,"passthrough":""},"rememberCard":true,"savedCards":[],"savedCardsPending":false,"stripeToken":{"errorMessage":null,"pending":false},"useSavedCard":null},"premiumPurchaseModal":{"activePage":"selectPayment","showModal":false},"updateCardModal":{"pending":false}},"header":{"isSubscriptionsDropdownOpen":false},"imageUploads":{},"isEmailVerificationTooltipShowing":true,"isModeratorWithPostPerms":false,"jsApi":[],"leaderboard":{"api":{"error":{},"pending":{}},"dateRangeSelection":{},"models":{}},"listings":{"activeKey":"(frontpage)--[sort:'best']","listingOrder":{"api":{"error":{},"pending":{}},"identifiers":{},"ids":{},"fetchedTokens":{},"loadMore":{}},"postOrder":{"api":{"error":{"(frontpage)--[sort:'best']":null},"pending":{"(frontpage)--[sort:'best']":false}},"endMarkers":{},"fetchedTokens":{"(frontpage)--[sort:'best']":{}},"ids":{"(frontpage)--[sort:'best']":["t3_bdt4ii","t3_bdrsqy","t3_q=CgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA=\u0026s=cfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ=","t3_bdvwpz","t3_bdsk8w","t3_bdulkr","t3_bdt5ac","t3_bdsxdo","t3_bdrj1q","t3_bducvy","t3_bdx576","t3_bdsenk","t3_bdsoj6","t3_bdu9ad","t3_q=CgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA=\u0026s=4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0=","t3_bdrehf","t3_bdshgi","t3_bduvvn","t3_bdu3hy","t3_bds52d","t3_bdsrfp","t3_bdsii2","t3_bdsqqo","t3_bdsf9m","t3_bdrrb5","t3_bdwds0","t3_bdrgyc"]},"listingSort":{},"loadMore":{"(frontpage)--[sort:'best']":{"token":"t3_bdrgyc","dist":13}}}},"live":{"featured":null,"isFrontpageLoaded":true},"mediaPlayback":{"isMuted":true,"volume":1},"meta":{"isBot":false,"isSessionSeo":false,"userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36","country":"CA","domain":"www.reddit.com","protocol":"https","sessionReferrerDomain":"","method":"GET","pageloadServerTime":1555439861136},"moderatingSubreddits":{},"moderationLog":{"actions":{"itemOrder":{},"models":{}},"endCursor":null,"hasNextPage":{},"hasPreviousPage":{},"moderators":[],"startCursor":null},"moderators":{"editableModerators":{},"editableUserOrder":{"data":{},"api":{"error":{},"pending":{}}},"invitedModerators":{"api":{"error":null,"pending":false},"models":{},"userOrder":{}},"invitePending":{},"loadMoreModerators":{},"loadMoreEditableModerators":{},"models":{},"search":{"api":{"error":null,"pending":false},"result":null},"userOrder":{"data":{},"api":{"error":{},"pending":{}}}},"modListingPage":{"filteredSubreddits":{"api":{"error":null,"pending":false},"names":[]}},"modModeEnabled":true,"modQueue":{"bulkAction":{"api":{"error":null,"pending":false},"selectedItems":{},"undoLastAction":{}},"edited":{"api":{"error":null,"pending":false},"itemOrder":{},"loadMore":{}},"moderatedCommunitiesOrder":{"after":null,"data":[],"loaded":false,"pending":false},"modqueue":{"api":{"error":null,"pending":false},"itemOrder":{},"loadMore":{}},"reports":{"api":{"error":null,"pending":false},"itemOrder":{},"loadMore":{}},"spam":{"api":{"error":null,"pending":false},"itemOrder":{},"loadMore":{}},"unmoderated":{"api":{"error":null,"pending":false},"itemOrder":{},"loadMore":{}}},"moreComments":{"api":{"error":{},"pending":{}},"models":{}},"multireddits":{"api":{"create":{"error":null,"fetched":false,"pending":false},"forUser":{"fetched":false,"pending":false}},"byUserId":{},"models":{}},"muted":{"api":{"error":null,"pending":{}},"fetchedTokens":{},"inContext":null,"loadMore":{},"models":{},"search":{"api":{"error":null,"pending":false},"result":null},"userOrder":{}},"news":{"topics":{"api":{"error":null,"pending":false},"models":{"availableTopics":[],"selectedSubtopic":null,"selectedTopic":null}},"stories":{"api":{"error":null,"pending":false},"models":{}},"communityInfo":{"activeCommunityIds":{}}},"notificationBannerId":null,"nps":{"pending":false,"success":false},"oldSiteRules":[],"originalContent":{"bestPosts":{"api":{"error":{},"pending":{}}},"categories":{"api":{"error":null,"pending":false},"models":{}},"topCommunities":{"api":{"error":{},"pending":{}}},"topCreators":{"api":{"error":{},"pending":{}}}},"partnerSubredditConnection":{"api":{"page":{"error":{},"fetched":{},"pending":{}}}},"platform":{"allowNavigationCallback":null,"currentPage":{"key":"/","meta":{"name":"index"},"queryParams":{},"routeMatch":{"match":{"path":"/","url":"/","isExact":true,"params":{},"queryParams":{}},"route":{"path":"/","chunk":"Frontpage","exact":true,"meta":{"name":"index"},"prefetches":["CommentsPage","Subreddit"]}},"status":200,"url":"/","urlParams":{}},"lastPage":null,"referrers":{},"sessionReferrer":null,"metas":{"/":{"title":"reddit: the front page of the internet"}}},"postCollection":{"models":{},"subredditToIds":{},"api":{"error":{"reorderError":null,"updateDescriptionError":null},"pending":{"reorderPending":false,"updateDescriptionPending":false}}},"polls":{"api":{"voting":{"error":{},"pending":{}}},"models":{},"results":{"byLockedVotingPower":{},"byVoters":{},"byVotingPower":{}},"rewards":{}},"postFlair":{"t5_2qhpi":{"displaySettings":{"position":"left","isEnabled":true},"permissions":{"canAssignOwn":false},"templateIds":[],"templates":{}},"t5_2qt55":{"displaySettings":{"position":"left","isEnabled":true},"permissions":{"canAssignOwn":false},"templateIds":[],"templates":{}},"t5_trwdo":{"displaySettings":{"position":"right","isEnabled":true},"permissions":{"canAssignOwn":false},"templateIds":[],"templates":{}},"t5_2qhsa":{"displaySettings":{"position":"left","isEnabled":true},"permissions":{"canAssignOwn":false},"templateIds":[],"templates":{}},"t5_2qh1u":{"displaySettings":{"position":"left","isEnabled":true},"permissions":{"canAssignOwn":false},"templateIds":[],"templates":{}},"t5_3m0tc":{"displaySettings":{"position":"left","isEnabled":true},"permissions":{"canAssignOwn":false},"templateIds":[],"templates":{}},"t5_2qhyq":{"displaySettings":{"position":"right","isEnabled":true},"permissions":{"canAssignOwn":false},"templateIds":[],"templates":{}},"t5_2qpfi":{"displaySettings":{"position":"","isEnabled":false},"permissions":{"canAssignOwn":false},"templateIds":[],"templates":{}},"t5_2qh1i":{"displaySettings":{"position":"right","isEnabled":true},"permissions":{"canAssignOwn":false},"templateIds":[],"templates":{}}},"posts":{"bestOCPosts":{},"embedAndImage":{"loadable":{}},"expanded":{},"focus":null,"instances":{"t3_bdd6ln":["t3_q=CgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA=\u0026s=4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0="],"t3_bbe20j":["t3_q=CgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA=\u0026s=cfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ="]},"metaMap":{},"models":{"t3_bdrgyc":{"domain":"i.redd.it","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":207,"upvoteRatio":null,"author":"NoeyBlowHoley","postCategories":null,"media":{"obfuscated":null,"content":"https://i.redd.it/vdxryktu6ls21.png","width":1109,"resolutions":[{"url":"https://preview.redd.it/vdxryktu6ls21.png?width=108\u0026crop=smart\u0026auto=webp\u0026s=31494afb5676c799cabec3f232c52a3e9e2b4735","width":108,"height":129},{"url":"https://preview.redd.it/vdxryktu6ls21.png?width=216\u0026crop=smart\u0026auto=webp\u0026s=274fd8bd541ea25279ef7e65dbb1bab836e548a7","width":216,"height":259},{"url":"https://preview.redd.it/vdxryktu6ls21.png?width=320\u0026crop=smart\u0026auto=webp\u0026s=750db0f7cec357eb67cc5a63649fff0faab07ef8","width":320,"height":383},{"url":"https://preview.redd.it/vdxryktu6ls21.png?width=640\u0026crop=smart\u0026auto=webp\u0026s=fb43ee187d0a223f7beae90d4ec0a7655a530b8e","width":640,"height":767},{"url":"https://preview.redd.it/vdxryktu6ls21.png?width=960\u0026crop=smart\u0026auto=webp\u0026s=e4fff5c1e478d849d30660eb204907e307f492b3","width":960,"height":1151},{"url":"https://preview.redd.it/vdxryktu6ls21.png?width=1080\u0026crop=smart\u0026auto=webp\u0026s=f5a4fbc28903aa4f4652a23aa468a480910d41c8","width":1080,"height":1295}],"type":"image","height":1330},"numCrossposts":2,"isSponsored":false,"id":"t3_bdrgyc","contentCategories":null,"source":null,"isLocked":false,"score":13324,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://preview.redd.it/vdxryktu6ls21.png?auto=webp\u0026s=18395185a0fa8063a2c667f472ad3a5b0523f175","width":1109,"height":1330},"liveCommentsWebsocket":"wss://ws-05ca86577a8823343.wss.redditmedia.com/link/bdrgyc?m=AQAAdXK3XBMYpWxD6A4pHFgtSV7H5ewxISOPZ1RPiAEa9T0zfxWg","thumbnail":{"url":"https://b.thumbs.redditmedia.com/61GEKc4IrZko9iT8n9PhC4fL5wl6qtfaYQxsYnFdbOg.jpg","width":140,"height":140},"belongsTo":{"type":"subreddit","id":"t5_3m0tc"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_11ldgb","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdrgyc","suggestedSort":"top","isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/PewdiepieSubmissions/comments/bdrgyc/ea_bad_company/","created":1555403238000,"title":"EA bad company","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdrj1q":{"domain":"i.redd.it","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":44,"upvoteRatio":null,"author":"buklau98","postCategories":null,"media":{"obfuscated":null,"content":"https://i.redd.it/ldpebbbj8ls21.jpg","width":1080,"resolutions":[{"url":"https://preview.redd.it/ldpebbbj8ls21.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=a3b150b446451aec5adf4764358c600ad9c989eb","width":108,"height":105},{"url":"https://preview.redd.it/ldpebbbj8ls21.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=3c7b722a8fadc25abcee3874550361b410981583","width":216,"height":210},{"url":"https://preview.redd.it/ldpebbbj8ls21.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=9bd659a09886537c7762018e2e8e4e24a3940fa6","width":320,"height":311},{"url":"https://preview.redd.it/ldpebbbj8ls21.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=e66ebec6e003cb4156f6a199717c7c4fc4909705","width":640,"height":623},{"url":"https://preview.redd.it/ldpebbbj8ls21.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=6e640e477802d05c6bae334590700f2c131f4bd7","width":960,"height":935},{"url":"https://preview.redd.it/ldpebbbj8ls21.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=308f95278b5eff9d79cefb9c7fef5da41fd2cd39","width":1080,"height":1052}],"type":"image","height":1052},"numCrossposts":0,"isSponsored":false,"id":"t3_bdrj1q","contentCategories":null,"source":null,"isLocked":false,"score":832,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://preview.redd.it/ldpebbbj8ls21.jpg?auto=webp\u0026s=cc5461739053ddac68e66af9b2449f99477e46c3","width":1080,"height":1052},"liveCommentsWebsocket":"wss://ws-0923bbc74403c90dc.wss.redditmedia.com/link/bdrj1q?m=AQAAdXK3XHgSfRryLGyS-bY3grXdTB5KbUa7BA7oANw5N-mA_zcr","thumbnail":{"url":"https://a.thumbs.redditmedia.com/BXnFqNXXaaca9SaGjGv6CA2m_5zpbwB3WOsYfSw8dP0.jpg","width":140,"height":136},"belongsTo":{"type":"subreddit","id":"t5_trwdo"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_273cguhp","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdrj1q","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/foundfelix/comments/bdrj1q/found_him_on_instagram/","created":1555403795000,"title":"Found him on Instagram","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdsf9m":{"domain":"i.redd.it","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":102,"upvoteRatio":null,"author":"Iloveass275470","postCategories":null,"media":{"obfuscated":null,"content":"https://i.redd.it/awpt39lwuls21.jpg","width":720,"resolutions":[{"url":"https://preview.redd.it/awpt39lwuls21.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=10c4e26c81d6bbff1eb97bbb7b39f35cffc560d3","width":108,"height":102},{"url":"https://preview.redd.it/awpt39lwuls21.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=fb31f1022b25fdb94e3e3a20facff6b8d47c31de","width":216,"height":205},{"url":"https://preview.redd.it/awpt39lwuls21.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=69554dd9cd5700eb46dbebd958c41d6574ca9f5d","width":320,"height":304},{"url":"https://preview.redd.it/awpt39lwuls21.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=adba715152480558fcd9a19f27b64ebe83ee425a","width":640,"height":608}],"type":"image","height":685},"numCrossposts":2,"isSponsored":false,"id":"t3_bdsf9m","contentCategories":null,"source":null,"isLocked":false,"score":8199,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://preview.redd.it/awpt39lwuls21.jpg?auto=webp\u0026s=64f414ab48d6a1a00d23f77ece61fccf3ea49b8d","width":720,"height":685},"liveCommentsWebsocket":"wss://ws-0151020449913d17a.wss.redditmedia.com/link/bdsf9m?m=AQAAdXK3XKT62YxpAh23KngFp-N1O1AWTGeRpnYd-l9nJMnw_MtP","thumbnail":{"url":"https://b.thumbs.redditmedia.com/eE1XQJ0QuDGfGWcD1SsJp1-L0zhLDVQpZLPIrsbIhmA.jpg","width":140,"height":133},"belongsTo":{"type":"subreddit","id":"t5_3m0tc"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_3lyafwzg","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdsf9m","suggestedSort":"top","isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/PewdiepieSubmissions/comments/bdsf9m/o/","created":1555411326000,"title":":O","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdwds0":{"domain":"self.engineering","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":true,"saved":false,"numComments":1,"upvoteRatio":null,"author":"jasonturer1211","postCategories":null,"media":{"obfuscated":null,"richtextContent":{"document":[{"c":[{"e":"text","t":"Hi,"}],"e":"par"},{"c":[{"e":"text","t":"My boss has asked me to change a chain-drive with timing pulley belt system on a 20 ton hydraulic press. I have no experience with timing pulley and how to select the proper one. Can anyone help me select a correct one?"}],"e":"par"},{"c":[{"e":"text","t":"Current specifications are as follows,"}],"e":"par"},{"c":[{"e":"text","t":"The pump shaft is 1\" in diameter"}],"e":"par"},{"c":[{"e":"text","t":"sprocket that goes on top has 36 teeth, overall dia of 6\""}],"e":"par"},{"c":[],"e":"par"},{"c":[{"e":"text","t":"motor shaft is 1-1/8\" in diameter, 1700RPM"}],"e":"par"},{"c":[{"e":"text","t":"sprocket that goes on top has 18 teeth and overall dia of 3\""}],"e":"par"},{"c":[{"e":"text","t":"Can anyone please help me with this?"}],"e":"par"}]},"type":"rtjson","rteMode":"richtext","mediaMetadata":null},"numCrossposts":0,"isSponsored":false,"id":"t3_bdwds0","contentCategories":null,"source":null,"isLocked":false,"score":0,"isSpoiler":false,"isArchived":false,"hidden":false,"liveCommentsWebsocket":"wss://ws-0a35f3d8511870c46.wss.redditmedia.com/link/bdwds0?m=AQAAdXK3XIwYRmfotuDy252VynYuSr0iktE63RFeeVjbzLEG1enh","thumbnail":{"url":"self","width":null,"height":null},"belongsTo":{"type":"subreddit","id":"t5_2qhpi"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_322ixdap","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdwds0","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/engineering/comments/bdwds0/question_about_timing_pulley_and_belt_selection/","created":1555434266000,"title":"Question about timing pulley and belt selection","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[{"text":"[MECHANICAL]","textColor":"dark","type":"text","backgroundColor":"","templateId":"2b1d25e4-2c24-11e3-aea9-12313b04c5c2"}]},"t3_q=CgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA=\u0026s=cfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ=":{"domain":"match.com","isCrosspostable":false,"isMeta":false,"isStickied":false,"domainOverride":"match.com","callToAction":"Sign Up","eventsOnRender":["https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA=\u0026s=cfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ="],"isScoreHidden":false,"saved":false,"numComments":0,"upvoteRatio":null,"author":"match","postCategories":null,"media":{"obfuscated":null,"content":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?auto=webp\u0026s=5f025a1b28a0324df409e42251f7eaa0cd4d2595","width":1200,"resolutions":[{"url":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=e57357fd76e69129f2aad1716d73a870205c43e4","width":108,"height":56},{"url":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=c44be5b2a0c3567e25ebc3318500db31eb5ca345","width":216,"height":113},{"url":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=cb27caf16973094ee3359874dcf7fdbab536682c","width":320,"height":167},{"url":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=7a361261de22904bcc940975ab77479d7c699348","width":640,"height":334},{"url":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=60b366bd4579f861eaed07b6c35f51aaf8bb6372","width":960,"height":502},{"url":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=60544897cc6282e5b72ded1276d8101635f85af1","width":1080,"height":565}],"type":"image","height":628},"numCrossposts":0,"isSponsored":true,"id":"t3_q=CgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA=\u0026s=cfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ=","contentCategories":null,"source":{"url":"https://www.match.com/cpx/en-us/landing/display/84123?trackingid=602226\u0026bannerid=9551244","outboundUrl":"https://alb.reddit.com/c?q=CgADCJJZCxa-Gd8KAAUh-O3ndAFg0QoABiH47ed0AGDRCAAHAAAAAgoADAiW27DedfJgAA==\u0026s=rcAyazYflm3KW-6p580TFXWLx8TDztmJpxBWgf3ggtY=\u0026r=aHR0cHM6Ly93d3cubWF0Y2guY29tL2NweC9lbi11cy9sYW5kaW5nL2Rpc3BsYXkvODQxMjM_dHJhY2tpbmdpZD02MDIyMjYmYmFubmVyaWQ9OTU1MTI0NA==","outboundUrlCreated":null,"displayText":"match.com","outboundUrlExpiration":null},"isLocked":true,"score":2,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?auto=webp\u0026s=5f025a1b28a0324df409e42251f7eaa0cd4d2595","width":1200,"height":628},"liveCommentsWebsocket":"wss://ws-0151020449913d17a.wss.redditmedia.com/link/bbe20j?m=AQAAdXK3XJ96iI_m9cHNikVl93jf5hKWBGftHQSJezOAnp0R0QKn","thumbnail":{"url":"https://b.thumbs.redditmedia.com/7iAHiLKMMFxCm3iXLzo5tcWaaZXR11ItU60rponL-Gw.jpg","width":140,"height":93},"belongsTo":{"type":"profile","id":"t5_z3vmm"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":false,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_3hkijyt8","isNSFW":false,"isMediaOnly":false,"postId":"t3_bbe20j","suggestedSort":"qa","isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/comments/bbe20j/if_only_it_were_easier_to_meet_new_people_in_your/?instanceId=t3_q%3DCgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA%3D%26s%3DcfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ%3D","created":1554847469000,"title":"If only it were easier to meet new people in your area…Oh wait, it is. Try Match!","events":[{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndABg0QgABwAAAAEKAAwIltuw3nXyYAA=\u0026s=cfvOQcNi9T6eh9sm6KM0fOWidtwNKVbykJDll8lv8jQ=","type":1},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndAVg0QoABiH47ed0AGDRCAAHAAAAAwoADAiW27DedfJgAA==\u0026s=1nYva0Uth6OdJx3n4S41dd8Bn7dUQsOIh9o6LmRRe5A=","type":3},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndARg0QoABiH47ed0AGDRCAAHAAAABAoADAiW27DedfJgAA==\u0026s=0HGq54koAjhLaj3j0MkO0mw165ahfSEVqhNjM1qizcQ=","type":4},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndANg0QoABiH47ed0AGDRCAAHAAAABQoADAiW27DedfJgAA==\u0026s=T2GS2l4st0Dec_op0ItCTDlhMIG2A0PGKoOvLWCt9uc=","type":5},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndAZg0QoABiH47ed0AGDRCAAHAAAABgoADAiW27DedfJgAA==\u0026s=q0G0XfEqhx48vgrwwwoZiLc9X1yqAIycmTBb-62-AD8=","type":6},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndAJg0QoABiH47ed0AGDRCAAHAAAABwoADAiW27DedfJgAA==\u0026s=Z6caQD1HicGig8W9u_CvuxjOiZxegkZpzIPYySZLXd4=","type":7},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndAdg0QoABiH47ed0AGDRCAAHAAAACAoADAiW27DedfJgAA==\u0026s=69mgNwn8CCbk0vTg2NTMRjK_5w9S0ojLlQb-J2TimIo=","type":8},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndAhg0QoABiH47ed0AGDRCAAHAAAACQoADAiW27DedfJgAA==\u0026s=Y_y4yoNBdT5ZnkM3qe4MRf1Q2UGfW7RbXFc1Gqmwf6Y=","type":9},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndAlg0QoABiH47ed0AGDRCAAHAAAAZAoADAiW27DedfJgAA==\u0026s=2ZZeVdhlwc5ILIaSwDIGqvhQPTrWW9UeqYnkurFrYyc=","type":100},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndApg0QoABiH47ed0AGDRCAAHAAAAZQoADAiW27DedfJgAA==\u0026s=S4Vqyn6yMphCw_FADrkXCLRo_VQ2iKBiAEmMCEaBfzM=","type":101},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndAtg0QoABiH47ed0AGDRCAAHAAAAZgoADAiW27DedfJgAA==\u0026s=N1M0whaVWd3Je-RScaSRky7-44RBIGboTC7mpHbur78=","type":102},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndAxg0QoABiH47ed0AGDRCAAHAAAAZwoADAiW27DedfJgAA==\u0026s=necL_eFH2PXTZj5SAKhOSbQCKv77kqCsoqvbROshKTY=","type":103},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndA1g0QoABiH47ed0AGDRCAAHAAAAaAoADAiW27DedfJgAA==\u0026s=5TZ2rkYxvDzPX9nSSmfuTu7l4VJ-xFe-35wA7HdjOUM=","type":104},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndA5g0QoABiH47ed0AGDRCAAHAAAAaQoADAiW27DedfJgAA==\u0026s=fZEia0MNKXp33GsqyGZQpnGOZAMI6ISJV28I8ZAxTuk=","type":105},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndA9g0QoABiH47ed0AGDRCAAHAAAAagoADAiW27DedfJgAA==\u0026s=SxraAf5afJtTAjl065POfGW_-Fkk_6HHMg1HLxVQ4CM=","type":106},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndBBg0QoABiH47ed0AGDRCAAHAAAAawoADAiW27DedfJgAA==\u0026s=3Czf3UMoRReeB2tYr5xoGRI_OwZR9yP7DO8v6CbiP7Q=","type":107},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndBFg0QoABiH47ed0AGDRCAAHAAAAbAoADAiW27DedfJgAA==\u0026s=QnXgKpXKE1ur41HKu7lMO4NvcPWqxpz7DY0K0shlYEE=","type":108},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndBJg0QoABiH47ed0AGDRCAAHAAAAbQoADAiW27DedfJgAA==\u0026s=XdBJ9vrgaZSg2UwZUf7tqHdLzg3CJEOdyT2WPrag_3M=","type":109},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndBNg0QoABiH47ed0AGDRCAAHAAAAbgoADAiW27DedfJgAA==\u0026s=nE1BB7ap6DeSGrK8DYvgE23dH6WiYL3QydutjtbXQYM=","type":110},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndBRg0QoABiH47ed0AGDRCAAHAAAAbwoADAiW27DedfJgAA==\u0026s=Oc6O_c90glTVc3Aze5OCPuy_H9WzI9gM6tmmMuPs49g=","type":111},{"url":"https://alb.reddit.com/i.gif?q=CgADCJJZCxa-Gd8KAAUh-O3ndBVg0QoABiH47ed0AGDRCAAHAAAAcAoADAiW27DedfJgAA==\u0026s=tyScFWwndz384PJDT66lZHhFui65lgp1TkJOMrfOrFk=","type":112}],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdrrb5":{"domain":"i.redd.it","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":181,"upvoteRatio":null,"author":"spaghetswiper","postCategories":null,"media":{"obfuscated":null,"content":"https://i.redd.it/86mgp88rels21.jpg","width":768,"resolutions":[{"url":"https://preview.redd.it/86mgp88rels21.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=13524d10ee88d100d4dc7b006e4100471ebca883","width":108,"height":108},{"url":"https://preview.redd.it/86mgp88rels21.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=c16ce6082236413f20ccf76287e8c06767856722","width":216,"height":216},{"url":"https://preview.redd.it/86mgp88rels21.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=efd43d11733ae3827dd61c0f91985f6fa0fedfb8","width":320,"height":320},{"url":"https://preview.redd.it/86mgp88rels21.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=7b031ef20ccb48824ea4ef5be81486367a2c07b0","width":640,"height":640}],"type":"image","height":768},"numCrossposts":1,"isSponsored":false,"id":"t3_bdrrb5","contentCategories":null,"source":null,"isLocked":false,"score":18528,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://preview.redd.it/86mgp88rels21.jpg?auto=webp\u0026s=2653dad610a7147a2bcfb49b0c7892e155dfffeb","width":768,"height":768},"liveCommentsWebsocket":"wss://ws-0a35f3d8511870c46.wss.redditmedia.com/link/bdrrb5?m=AQAAdXK3XK38qTv7IlwEHHlG0VjnZJAd7SwfczVkdOWLeoXssluy","thumbnail":{"url":"https://b.thumbs.redditmedia.com/Tu0MjKVzoKOqLhRjfZ4wOfCzA2Yn6F-VlfaGq7a_2hI.jpg","width":140,"height":140},"belongsTo":{"type":"subreddit","id":"t5_3m0tc"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_2vjd9r3l","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdrrb5","suggestedSort":"top","isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/PewdiepieSubmissions/comments/bdrrb5/i_swear_90_of_people_will_understand_this/","created":1555405886000,"title":"I swear 90% of people will understand this","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdt4ii":{"domain":"youtu.be","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":5,"upvoteRatio":null,"author":"elynwen","postCategories":null,"media":{"obfuscated":null,"content":"https://www.redditmedia.com/mediaembed/bdt4ii","width":600,"provider":"YouTube","type":"embed","height":338},"numCrossposts":0,"isSponsored":false,"id":"t3_bdt4ii","contentCategories":null,"source":{"url":"https://youtu.be/xT9VgRxY9cc","outboundUrl":"https://out.reddit.com/t3_bdt4ii?url=https%3A%2F%2Fyoutu.be%2FxT9VgRxY9cc\u0026token=AQAABS-2XObczQ2y9_-9GtO-JX9HokSP0M8daAS-XzoXxFYvVdgl\u0026app_name=desktop2x","outboundUrlCreated":1555439861000,"displayText":"youtu.be","outboundUrlExpiration":1555443461000,"outboundUrlReceived":1555439861913},"isLocked":false,"score":34,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://external-preview.redd.it/kdKXmKrrl2huPXUnUMvsdvqFR150qf0IAjI_v6pXfls.jpg?auto=webp\u0026s=fe1c684ed2c6b551895793c1b1bce713c5b523f5","width":480,"height":360},"liveCommentsWebsocket":"wss://ws-0db1600f2bcaee566.wss.redditmedia.com/link/bdt4ii?m=AQAAdXK3XO7Y7nnXP1bH5VKvGFpBP_PKUSd2z4hSfchfHirvkOED","thumbnail":{"url":"image","width":140,"height":105},"belongsTo":{"type":"subreddit","id":"t5_2qpfi"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_129rl8","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdt4ii","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/Cello/comments/bdt4ii/gautier_capuçon_paying_homage_to_notre_dame/","created":1555416298000,"title":"Gautier Capuçon paying homage to Notre Dame Cathedral. Transcending the role of the artist in to something more.","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdsk8w":{"domain":"self.AskReddit","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":2862,"upvoteRatio":null,"author":"KindaQute","postCategories":null,"media":{"obfuscated":null,"richtextContent":{"document":[]},"type":"rtjson","rteMode":"richtext","mediaMetadata":null},"numCrossposts":0,"isSponsored":false,"id":"t3_bdsk8w","contentCategories":null,"source":null,"isLocked":false,"score":4780,"isSpoiler":false,"isArchived":false,"hidden":false,"liveCommentsWebsocket":"wss://ws-0151020449913d17a.wss.redditmedia.com/link/bdsk8w?m=AQAAdXK3XEHPQHFmtcYt-AATliYeCQ5xGAPR6D6FnpGxRVlN8Qvb","thumbnail":{"url":"self","width":null,"height":null},"belongsTo":{"type":"subreddit","id":"t5_2qh1i"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_1qize9uv","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdsk8w","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/AskReddit/comments/bdsk8w/what_are_some_things_that_people_dont_realise/","created":1555412405000,"title":"What are some things that people dont realise would happen if there was actually a zombie outbreak?","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdrehf":{"domain":"i.redd.it","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":429,"upvoteRatio":null,"author":"Dildo_Baggins__","postCategories":null,"media":{"obfuscated":null,"content":"https://i.redd.it/ncu206zg2ls21.jpg","width":800,"resolutions":[{"url":"https://preview.redd.it/ncu206zg2ls21.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=840b31897b1a0b08b259377fbe836748a019e960","width":108,"height":81},{"url":"https://preview.redd.it/ncu206zg2ls21.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=c9df6a937c3df8a0617fa81bd37d77b7df61728f","width":216,"height":162},{"url":"https://preview.redd.it/ncu206zg2ls21.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=ad8c825884cd6b1c4de6a75b12fcfdc1c5a0086b","width":320,"height":240},{"url":"https://preview.redd.it/ncu206zg2ls21.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=8bcb5c7d62be1a3214b50bec1edbfc8bea6477ab","width":640,"height":480}],"type":"image","height":600},"numCrossposts":6,"isSponsored":false,"id":"t3_bdrehf","contentCategories":null,"source":null,"isLocked":false,"score":38956,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://preview.redd.it/ncu206zg2ls21.jpg?auto=webp\u0026s=d6b6f1915fe493a0da97bf26a3127cec6fb56c50","width":800,"height":600},"liveCommentsWebsocket":"wss://ws-0151020449913d17a.wss.redditmedia.com/link/bdrehf?m=AQAAdXK3XKW1FW8x8y2mlLD3vf3esNwLun2Lw2yCpsHU2TqPGcQ2","thumbnail":{"url":"https://a.thumbs.redditmedia.com/RiAVRDdNxEeLtCSNeoP7zrothUs-H8pVH5oh2sS6yK0.jpg","width":140,"height":105},"belongsTo":{"type":"subreddit","id":"t5_2qhsa"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_1r0wb5cm","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdrehf","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/interestingasfuck/comments/bdrehf/the_skeletal_remains_of_anthropologist_and/","created":1555402593000,"title":"The skeletal remains of anthropologist and bigfoot enthusiast, Grover Krantz, alongside his Irish Wolfhound, Clyde, on display at the Smithsonian's National Museum of Natural History. Nothing speaks best friends till the end louder than this.","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[{"text":"/r/ALL","textColor":"dark","type":"text","backgroundColor":"","templateId":null}]},"t3_bdsqqo":{"domain":"i.redd.it","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":40,"upvoteRatio":null,"author":"alexa77712318","postCategories":null,"media":{"obfuscated":null,"content":"https://i.redd.it/vzu5pxhx1ms21.png","width":500,"resolutions":[{"url":"https://preview.redd.it/vzu5pxhx1ms21.png?width=108\u0026crop=smart\u0026auto=webp\u0026s=5a014659bdbbe0b1794835008eeea33717d1e0c0","width":108,"height":129},{"url":"https://preview.redd.it/vzu5pxhx1ms21.png?width=216\u0026crop=smart\u0026auto=webp\u0026s=e7e86ce76621d4a676184443155a6e604f60d230","width":216,"height":258},{"url":"https://preview.redd.it/vzu5pxhx1ms21.png?width=320\u0026crop=smart\u0026auto=webp\u0026s=f65010b45a7539e00944ae3ffb4a4d35c64a04f7","width":320,"height":382}],"type":"image","height":598},"numCrossposts":1,"isSponsored":false,"id":"t3_bdsqqo","contentCategories":null,"source":null,"isLocked":false,"score":5845,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://preview.redd.it/vzu5pxhx1ms21.png?auto=webp\u0026s=06cc3c0297fd98ddc5468cfbc97d22194aef38da","width":500,"height":598},"liveCommentsWebsocket":"wss://ws-05ca86577a8823343.wss.redditmedia.com/link/bdsqqo?m=AQAAdXK3XLqbvMoJFkmuXqSTTx3VVO-vbRmIVS9tHgpID3l52H4a","thumbnail":{"url":"https://b.thumbs.redditmedia.com/cIKW1HUXv3ohC8rCl__5hN3cz4tlQg7jM2XlrGLGTGg.jpg","width":140,"height":140},"belongsTo":{"type":"subreddit","id":"t5_3m0tc"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_l8xthh0","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdsqqo","suggestedSort":"top","isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/PewdiepieSubmissions/comments/bdsqqo/coke_is_better/","created":1555413680000,"title":"Coke is better.","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdd6ln":{"domain":"got.gtarcade.com/en/","isCrosspostable":false,"isMeta":false,"isStickied":false,"domainOverride":"got.gtarcade.com/en/","callToAction":"Sign Up","isScoreHidden":true,"saved":false,"id":"t3_bdd6ln","upvoteRatio":null,"author":"recommend_app_3","postCategories":null,"media":{"obfuscated":null,"height":628,"content":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?auto=webp\u0026s=b9410e998fa82a707f2a4231383c91afd4c7e5e5","width":1200,"resolutions":[{"url":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=44e0893241c87a21e6a8b0f0bfe5918cb7ee4b56","width":108,"height":56},{"url":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=add0641826bfaef9869176b1a43af858ebe56491","width":216,"height":113},{"url":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=14f9d190096a4affa362c33d93f7024ef3444d2d","width":320,"height":167},{"url":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=c068f7d67592a52199c6b68fb0c84cacd2e625a9","width":640,"height":334},{"url":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=3c544584f811c6202eae94b283e8a2d40cde48d4","width":960,"height":502},{"url":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=bc46f7b0ada343623146b1df93fc6952e6f2957e","width":1080,"height":565}],"type":"image"},"numCrossposts":0,"isSponsored":true,"numComments":0,"source":{"url":"https://v3m.gtarcade.com/?q=5c99ee2e3ae376998889\u0026sid={baidu06_Game of Thrones_T1_001_0415_3}","displayText":"got.gtarcade.com/en/","outboundUrlCreated":null,"outboundUrl":"","outboundUrlExpiration":null},"isLocked":true,"score":0,"isArchived":false,"hidden":false,"preview":{"url":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?auto=webp\u0026s=b9410e998fa82a707f2a4231383c91afd4c7e5e5","width":1200,"height":628},"liveCommentsWebsocket":"wss://ws-05367c2ee758c4e14.wss.redditmedia.com/link/bdd6ln?m=AQAAdXK3XEhXihK7v9EEK2bec0YyKpIDKvDI3r6TjfN3lidu1WKD","thumbnail":{"url":"https://b.thumbs.redditmedia.com/TYS5RJlfj0xgzIljHpoHF_9A_qA_W6kxrYQ_bxDNNqE.jpg","width":140,"height":105},"belongsTo":{"type":"profile","id":"t5_ypssn"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":false,"contentCategories":null,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_3h8w68t7","goldCount":0,"isMediaOnly":false,"postId":"t3_bdd6ln","suggestedSort":"qa","isBlank":false,"voteState":0,"viewCount":0,"permalink":"https://www.reddit.com/comments/bdd6ln/hbo_warner_bros_interactive_entertainment_and/","isSpoiler":false,"isNSFW":false,"created":1555312941000,"events":[],"isOriginalContent":false,"distinguishType":null,"title":"HBO, Warner Bros. Interactive Entertainment and Yoozoo Games have collaborated to recreate Westeros on a massive scale, delivering an authentic and immersive multiplayer world laid out across the Seven Kingdoms – complete with major landmarks and castles from the epic TV series.","eventsOnRender":[],"flair":[]},"t3_q=CgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA=\u0026s=4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0=":{"domain":"got.gtarcade.com/en/","isCrosspostable":false,"isMeta":false,"isStickied":false,"domainOverride":"got.gtarcade.com/en/","callToAction":"Sign Up","eventsOnRender":["https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA=\u0026s=4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0="],"isScoreHidden":true,"saved":false,"numComments":0,"upvoteRatio":null,"author":"recommend_app_3","postCategories":null,"media":{"obfuscated":null,"content":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?auto=webp\u0026s=b9410e998fa82a707f2a4231383c91afd4c7e5e5","width":1200,"resolutions":[{"url":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=44e0893241c87a21e6a8b0f0bfe5918cb7ee4b56","width":108,"height":56},{"url":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=add0641826bfaef9869176b1a43af858ebe56491","width":216,"height":113},{"url":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=14f9d190096a4affa362c33d93f7024ef3444d2d","width":320,"height":167},{"url":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=c068f7d67592a52199c6b68fb0c84cacd2e625a9","width":640,"height":334},{"url":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=3c544584f811c6202eae94b283e8a2d40cde48d4","width":960,"height":502},{"url":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=bc46f7b0ada343623146b1df93fc6952e6f2957e","width":1080,"height":565}],"type":"image","height":628},"numCrossposts":0,"isSponsored":true,"id":"t3_q=CgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA=\u0026s=4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0=","contentCategories":null,"source":{"url":"https://v3m.gtarcade.com/?q=5c99ee2e3ae376998889\u0026sid={baidu06_Game of Thrones_T1_001_0415_3}","outboundUrl":"https://alb.reddit.com/c?q=CgADCLSfRKhF0FcKAAUh-O3ndQFg0QoABiH47ed1AGDRCAAHAAAAAgoADAi0oA71zGZDAA==\u0026s=4rB2IIG1y0M10069UJiBVBN9RrtkaXXfSd9ha0dkJeA=\u0026r=aHR0cHM6Ly92M20uZ3RhcmNhZGUuY29tLz9xPTVjOTllZTJlM2FlMzc2OTk4ODg5JnNpZD17YmFpZHUwNl9HYW1lIG9mIFRocm9uZXNfVDFfMDAxXzA0MTVfM30=","outboundUrlCreated":null,"displayText":"got.gtarcade.com/en/","outboundUrlExpiration":null},"isLocked":true,"score":0,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://external-preview.redd.it/Uk8cZkVAvGdEZ985y-GtQ_JlOnApvLB0dDO8DeA1oyk.jpg?auto=webp\u0026s=b9410e998fa82a707f2a4231383c91afd4c7e5e5","width":1200,"height":628},"liveCommentsWebsocket":"wss://ws-05367c2ee758c4e14.wss.redditmedia.com/link/bdd6ln?m=AQAAdXK3XEhXihK7v9EEK2bec0YyKpIDKvDI3r6TjfN3lidu1WKD","thumbnail":{"url":"https://b.thumbs.redditmedia.com/TYS5RJlfj0xgzIljHpoHF_9A_qA_W6kxrYQ_bxDNNqE.jpg","width":140,"height":105},"belongsTo":{"type":"profile","id":"t5_ypssn"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":false,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_3h8w68t7","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdd6ln","suggestedSort":"qa","isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/comments/bdd6ln/hbo_warner_bros_interactive_entertainment_and/?instanceId=t3_q%3DCgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA%3D%26s%3D4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0%3D","created":1555312941000,"title":"HBO, Warner Bros. Interactive Entertainment and Yoozoo Games have collaborated to recreate Westeros on a massive scale, delivering an authentic and immersive multiplayer world laid out across the Seven Kingdoms – complete with major landmarks and castles from the epic TV series.","events":[{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQBg0QgABwAAAAEKAAwItKAO9cxmQwA=\u0026s=4uKSKnxZXc8SyAtNdZyNsBkI2of8j1j35pH5U9idcf0=","type":1},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQVg0QoABiH47ed1AGDRCAAHAAAAAwoADAi0oA71zGZDAA==\u0026s=0Q-yp6ZzpehN6Sofbj1aNXcPvJOanJCAD87enWURtO0=","type":3},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQRg0QoABiH47ed1AGDRCAAHAAAABAoADAi0oA71zGZDAA==\u0026s=K0TOYsEYWLbaEVfbc648yB5_tvvMAJTkR0QbCTze8lU=","type":4},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQNg0QoABiH47ed1AGDRCAAHAAAABQoADAi0oA71zGZDAA==\u0026s=SiwZgQsMywB_paKJNYZFrJd7LQBCYEEYdo1WURP7fUg=","type":5},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQZg0QoABiH47ed1AGDRCAAHAAAABgoADAi0oA71zGZDAA==\u0026s=EwF7ofqXHGCHsBPOsZBLhFmOlpPXW8EHNtkiRK2uD2g=","type":6},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQJg0QoABiH47ed1AGDRCAAHAAAABwoADAi0oA71zGZDAA==\u0026s=tFlvoRDR3m37oeeGgzd9cZbQmywsoWZhcQ9amRWCbR8=","type":7},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQdg0QoABiH47ed1AGDRCAAHAAAACAoADAi0oA71zGZDAA==\u0026s=Cx0EaiEaCmWZhOAseuLWeeFYOdBV52CKTaJD-i7ZKEA=","type":8},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQhg0QoABiH47ed1AGDRCAAHAAAACQoADAi0oA71zGZDAA==\u0026s=CfV-PNXCGfyVgotI56eEWULXe6-UXwLy-2JUNV2YOsY=","type":9},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQlg0QoABiH47ed1AGDRCAAHAAAAZAoADAi0oA71zGZDAA==\u0026s=r3qM5L4nzJ7d2UDarQXqHf0nmlH5HaXm5eJRn-y2Tzw=","type":100},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQpg0QoABiH47ed1AGDRCAAHAAAAZQoADAi0oA71zGZDAA==\u0026s=EyheV1jVEx8ue6DGz4fTxwoQEAAKyiY-cfSa3_jqSsE=","type":101},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQtg0QoABiH47ed1AGDRCAAHAAAAZgoADAi0oA71zGZDAA==\u0026s=XIeQc1HhIOzqW0U7T18p76cwNgmdWNZv7nRHOnUrgCQ=","type":102},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQxg0QoABiH47ed1AGDRCAAHAAAAZwoADAi0oA71zGZDAA==\u0026s=JR7OtuUiOqL6txVBY3rg-0d-JO01GnowOfXn25oqz6g=","type":103},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQ1g0QoABiH47ed1AGDRCAAHAAAAaAoADAi0oA71zGZDAA==\u0026s=PGmIdf67Wzx4rHvZx9HjHj2Yezt5-kViWoaW5wwe-co=","type":104},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQ5g0QoABiH47ed1AGDRCAAHAAAAaQoADAi0oA71zGZDAA==\u0026s=A1YoMkwPdltIXoyIC7oyRlyP-Wtp9Ozj9GOUMaOq_8s=","type":105},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndQ9g0QoABiH47ed1AGDRCAAHAAAAagoADAi0oA71zGZDAA==\u0026s=wpSy1kAlPX8suqG4-ULAfVN979lq56N8A_Ab3EB8RrI=","type":106},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndRBg0QoABiH47ed1AGDRCAAHAAAAawoADAi0oA71zGZDAA==\u0026s=HwJOEUqwE-ArkGw01Qtq3Nc8ec0qlaMkpJdPMNtVBPM=","type":107},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndRFg0QoABiH47ed1AGDRCAAHAAAAbAoADAi0oA71zGZDAA==\u0026s=CfkhxTTn3MfuuvneYNd0SlosYNv7M2Pz6ABvCj6AjbY=","type":108},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndRJg0QoABiH47ed1AGDRCAAHAAAAbQoADAi0oA71zGZDAA==\u0026s=R8YpadUOia6IrAVH_J4dVxlUfGBImhx-eyw08DO-9Jc=","type":109},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndRNg0QoABiH47ed1AGDRCAAHAAAAbgoADAi0oA71zGZDAA==\u0026s=VuWKzQu7o1KfSDaczDlRZh7_VX9W7bK3wy5-9_7s8HU=","type":110},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndRRg0QoABiH47ed1AGDRCAAHAAAAbwoADAi0oA71zGZDAA==\u0026s=2mmOgVGN5ejrccINvA-XgH4yLs3qU0lNdFsjVmulAE4=","type":111},{"url":"https://alb.reddit.com/i.gif?q=CgADCLSfRKhF0FcKAAUh-O3ndRVg0QoABiH47ed1AGDRCAAHAAAAcAoADAi0oA71zGZDAA==\u0026s=5lKuZakNUuLcDCaQarttRBb9RR70bXW-Ao0HwkgKvU8=","type":112}],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bbe20j":{"domain":"match.com","isCrosspostable":false,"isMeta":false,"isStickied":false,"domainOverride":"match.com","callToAction":"Sign Up","isScoreHidden":false,"saved":false,"id":"t3_bbe20j","upvoteRatio":null,"author":"match","postCategories":null,"media":{"obfuscated":null,"height":628,"content":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?auto=webp\u0026s=5f025a1b28a0324df409e42251f7eaa0cd4d2595","width":1200,"resolutions":[{"url":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=e57357fd76e69129f2aad1716d73a870205c43e4","width":108,"height":56},{"url":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=c44be5b2a0c3567e25ebc3318500db31eb5ca345","width":216,"height":113},{"url":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=cb27caf16973094ee3359874dcf7fdbab536682c","width":320,"height":167},{"url":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=7a361261de22904bcc940975ab77479d7c699348","width":640,"height":334},{"url":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=60b366bd4579f861eaed07b6c35f51aaf8bb6372","width":960,"height":502},{"url":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=60544897cc6282e5b72ded1276d8101635f85af1","width":1080,"height":565}],"type":"image"},"numCrossposts":0,"isSponsored":true,"numComments":0,"source":{"url":"https://www.match.com/cpx/en-us/landing/display/84123?trackingid=602226\u0026bannerid=9551244","displayText":"match.com","outboundUrlCreated":null,"outboundUrl":"","outboundUrlExpiration":null},"isLocked":true,"score":2,"isArchived":false,"hidden":false,"preview":{"url":"https://external-preview.redd.it/nCugpqZD10unng4kz4XdUCSku4jNXFwAdIj0emhpBqs.jpg?auto=webp\u0026s=5f025a1b28a0324df409e42251f7eaa0cd4d2595","width":1200,"height":628},"liveCommentsWebsocket":"wss://ws-0151020449913d17a.wss.redditmedia.com/link/bbe20j?m=AQAAdXK3XJ96iI_m9cHNikVl93jf5hKWBGftHQSJezOAnp0R0QKn","thumbnail":{"url":"https://b.thumbs.redditmedia.com/7iAHiLKMMFxCm3iXLzo5tcWaaZXR11ItU60rponL-Gw.jpg","width":140,"height":93},"belongsTo":{"type":"profile","id":"t5_z3vmm"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":false,"contentCategories":null,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_3hkijyt8","goldCount":0,"isMediaOnly":false,"postId":"t3_bbe20j","suggestedSort":"qa","isBlank":false,"voteState":0,"viewCount":0,"permalink":"https://www.reddit.com/comments/bbe20j/if_only_it_were_easier_to_meet_new_people_in_your/","isSpoiler":false,"isNSFW":false,"created":1554847469000,"events":[],"isOriginalContent":false,"distinguishType":null,"title":"If only it were easier to meet new people in your area…Oh wait, it is. Try Match!","eventsOnRender":[],"flair":[]},"t3_bdrsqy":{"domain":"self.AskReddit","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":19936,"upvoteRatio":null,"author":"SquidleyStudios","postCategories":null,"media":{"obfuscated":null,"richtextContent":{"document":[]},"type":"rtjson","rteMode":"richtext","mediaMetadata":null},"numCrossposts":4,"isSponsored":false,"id":"t3_bdrsqy","contentCategories":null,"source":null,"isLocked":false,"score":34807,"isSpoiler":false,"isArchived":false,"hidden":false,"liveCommentsWebsocket":"wss://ws-088bcb34d0f0a1624.wss.redditmedia.com/link/bdrsqy?m=AQAAdXK3XFjY-HB0e29bIeKcQU6G0npXG40QaLC7PYnP50Z88mXj","thumbnail":{"url":"self","width":null,"height":null},"belongsTo":{"type":"subreddit","id":"t5_2qh1i"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":1,"gid2":0,"gid3":0},"authorId":"t2_8549fd7","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdrsqy","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/AskReddit/comments/bdrsqy/you_suddenly_have_all_the_money_youll_ever_want/","created":1555406230000,"title":"You suddenly have all the money you'll ever want or need in your life. What's the first thing you do with your newfound wealth?","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdt5ac":{"domain":"self.engineering","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":41,"upvoteRatio":null,"author":"WakezoneFitness","postCategories":null,"media":{"obfuscated":null,"richtextContent":{"document":[{"c":[{"e":"text","t":"Hi all,"}],"e":"par"},{"c":[{"e":"text","t":"I have a question that I'm hoping some of the bright minds of reddit may be able to help me with. My boss has tasked me with molding a polymer material to a final dimension, the problem is that this polymer has a shrinkage of 5% that is kicked by temperature (90 F) and the shrinkage is not uniform. I have searched everywhere on the internet that I can think of but have found no helpful information. While I can't give out to much information on the material or the piece I am tasked with making I will say that it is a donutish shape with a wall thickness of around .200\". The material heats up as it cures to a temp of around 300 F and sticks to the core of whatever it is cured in. The material has the consistency of somewhere between syrup and water."}],"e":"par"},{"c":[],"e":"par"},{"c":[{"e":"text","t":"My initial though process was to just create a mold with a top and bottom cavity and force the material into the shape I want throughout the entire cycle but I fear that the chemical reaction will be too strong and may force the mold open."}],"e":"par"},{"c":[],"e":"par"},{"c":[{"e":"text","t":"I am still in the very initial stages of this project so I wanted to hear the input of others before I get too deep into one path. Any advice or information you all have is greatly appreciate."}],"e":"par"},{"c":[],"e":"par"},{"c":[{"e":"text","t":"Thanks"}],"e":"par"}]},"type":"rtjson","rteMode":"richtext","mediaMetadata":null},"numCrossposts":0,"isSponsored":false,"id":"t3_bdt5ac","contentCategories":null,"source":null,"isLocked":false,"score":39,"isSpoiler":false,"isArchived":false,"hidden":false,"liveCommentsWebsocket":"wss://ws-05367c2ee758c4e14.wss.redditmedia.com/link/bdt5ac?m=AQAAdXK3XHTUFI5XKf_3xMVkSCiKNe3wATHdGBIwqV1Dwcd68FVl","thumbnail":{"url":"self","width":null,"height":null},"belongsTo":{"type":"subreddit","id":"t5_2qhpi"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_1j14hqoe","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdt5ac","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/engineering/comments/bdt5ac/molding_a_polymer_with_high_shrinkage/","created":1555416437000,"title":"Molding a polymer with high shrinkage","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdx576":{"domain":"youtube.com","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":true,"saved":false,"numComments":3,"upvoteRatio":null,"author":"Get-Smarter","postCategories":null,"media":{"obfuscated":null,"content":"https://www.redditmedia.com/mediaembed/bdx576","width":600,"provider":"YouTube","type":"embed","height":338},"numCrossposts":0,"isSponsored":false,"id":"t3_bdx576","contentCategories":null,"source":{"url":"https://www.youtube.com/watch?v=OnWolLQSZic","outboundUrl":"https://out.reddit.com/t3_bdx576?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DOnWolLQSZic\u0026token=AQAABS-2XLyhp78u3n5-JTz_PxE6d6QucQjUzk0s_aEJHO9kY6HQ\u0026app_name=desktop2x","outboundUrlCreated":1555439861000,"displayText":"youtube.com","outboundUrlExpiration":1555443461000,"outboundUrlReceived":1555439861914},"isLocked":false,"score":0,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://external-preview.redd.it/P7_Dv_GsMDydRwEbmLRUt5gdw7Hrr8xB98m9XLhevmI.jpg?auto=webp\u0026s=c922c788987b5a6994d6e9b50634271c9cb50486","width":480,"height":360},"liveCommentsWebsocket":"wss://ws-01c9d16404246687a.wss.redditmedia.com/link/bdx576?m=AQAAdXK3XOph10JzFfpY17ZT51llJlj4Yaa90YM8viRaseq3sjkC","thumbnail":{"url":"https://b.thumbs.redditmedia.com/j7EZGHfn-LPnT2NEyjQOoNXkV_RnX0HZAv5I-oW1FwI.jpg","width":140,"height":105},"belongsTo":{"type":"subreddit","id":"t5_2qhpi"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_122a2v","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdx576","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/engineering/comments/bdx576/boston_dynamics_mush_spot_mush/","created":1555438139000,"title":"Boston Dynamics: Mush, Spot, Mush!","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[{"text":"[GENERAL]","textColor":"dark","type":"text","backgroundColor":"","templateId":"22f728b0-2c24-11e3-8bb4-12313d096169"}]},"t3_bdu9ad":{"domain":"self.AskReddit","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":1289,"upvoteRatio":null,"author":"Tigasar","postCategories":null,"media":{"obfuscated":null,"richtextContent":{"document":[]},"type":"rtjson","rteMode":"richtext","mediaMetadata":null},"numCrossposts":0,"isSponsored":false,"id":"t3_bdu9ad","contentCategories":null,"source":null,"isLocked":false,"score":995,"isSpoiler":false,"isArchived":false,"hidden":false,"liveCommentsWebsocket":"wss://ws-0151020449913d17a.wss.redditmedia.com/link/bdu9ad?m=AQAAdXK3XOL5-h9x-tlx0fe21oDGFH5S79ZuRm7K-_e6H2bv76Xt","thumbnail":{"url":"self","width":null,"height":null},"belongsTo":{"type":"subreddit","id":"t5_2qh1i"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_vdtf3h7","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdu9ad","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/AskReddit/comments/bdu9ad/whats_the_most_infuriating_1st_world_problem/","created":1555423096000,"title":"What's the most infuriating 1st world problem?","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdsenk":{"domain":"v.redd.it","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":247,"upvoteRatio":null,"author":"rAge_Shitposting","postCategories":null,"media":{"obfuscated":null,"hlsUrl":"https://v.redd.it/ykx4q1deuls21/HLSPlaylist.m3u8","posterUrl":"https://external-preview.redd.it/saKVWo_1fPinW-N6ei5_uowT7zV75h41uaUBU04Oaew.png?width=640\u0026crop=smart\u0026format=pjpg\u0026auto=webp\u0026s=97b055cdac2c59f69c311122463730f8092f24df","height":1080,"dashUrl":"https://v.redd.it/ykx4q1deuls21/DASHPlaylist.mpd","width":498,"scrubberThumbSource":"https://v.redd.it/ykx4q1deuls21/DASH_240","type":"video","isGif":false},"numCrossposts":4,"isSponsored":false,"id":"t3_bdsenk","contentCategories":null,"source":null,"isLocked":false,"score":18123,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://external-preview.redd.it/saKVWo_1fPinW-N6ei5_uowT7zV75h41uaUBU04Oaew.png?format=pjpg\u0026auto=webp\u0026s=9aa77432fbbceb3497265baef89355242c3e6ef8","width":886,"height":1920},"liveCommentsWebsocket":"wss://ws-05ca86577a8823343.wss.redditmedia.com/link/bdsenk?m=AQAAdXK3XOL6OOAsNl6T4KThsjmhl5kom6sLKTZl5XEqK2UH_eFj","thumbnail":{"url":"https://b.thumbs.redditmedia.com/KZVoTh7Bti-IdVj-u1AKisgp6BPmxB9E9q06xzpmJbQ.jpg","width":140,"height":140},"belongsTo":{"type":"subreddit","id":"t5_3m0tc"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_1qahp0g6","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdsenk","suggestedSort":"top","isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/PewdiepieSubmissions/comments/bdsenk/everyone_after_pepsi_supported_tseries/","created":1555411203000,"title":"Everyone after Pepsi supported T-Series","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdulkr":{"domain":"v.redd.it","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":143,"upvoteRatio":null,"author":"superwedge","postCategories":null,"media":{"obfuscated":null,"hlsUrl":"https://v.redd.it/8b2ch1j4zms21/HLSPlaylist.m3u8","posterUrl":"https://external-preview.redd.it/iPo39Ewz266P0G2vF8y079KF5iTRPDCOAssMVNIHtVE.png?width=960\u0026crop=smart\u0026format=pjpg\u0026auto=webp\u0026s=7e9b79207a55ae1012c693e341568f719f3c6d26","height":1080,"dashUrl":"https://v.redd.it/8b2ch1j4zms21/DASHPlaylist.mpd","width":1920,"scrubberThumbSource":"https://v.redd.it/8b2ch1j4zms21/DASH_240","type":"video","isGif":true},"numCrossposts":3,"isSponsored":false,"id":"t3_bdulkr","contentCategories":null,"source":null,"isLocked":false,"score":16660,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://external-preview.redd.it/iPo39Ewz266P0G2vF8y079KF5iTRPDCOAssMVNIHtVE.png?format=pjpg\u0026auto=webp\u0026s=39ad2972f5d9708a3145eb2ee133c6a9cb56afc5","width":1920,"height":1080},"liveCommentsWebsocket":"wss://ws-0db1600f2bcaee566.wss.redditmedia.com/link/bdulkr?m=AQAAdXK3XGmheSNxIk5hABfTCkNUgWM-ghSLCRNfjdhS05f9CDLA","thumbnail":{"url":"https://b.thumbs.redditmedia.com/heIQLQjrbTeoMP1tSl_Myy_XCnp8iz6aVU5EGRCFuZE.jpg","width":140,"height":78},"belongsTo":{"type":"subreddit","id":"t5_3m0tc"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":2,"gid2":0,"gid3":0},"authorId":"t2_rrjdzu6","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdulkr","suggestedSort":"top","isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/PewdiepieSubmissions/comments/bdulkr/2nd_attempt_at_making_it_to_lwiay_since_animated/","created":1555425081000,"title":"2nd attempt at making it to LWIAY, since animated memes are popular now lol","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bds52d":{"domain":"i.imgur.com","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":142,"upvoteRatio":null,"author":"sezar4321","postCategories":null,"media":null,"numCrossposts":20,"isSponsored":false,"id":"t3_bds52d","contentCategories":null,"source":{"url":"https://i.imgur.com/4cdXCGG.gifv","outboundUrl":"https://out.reddit.com/t3_bds52d?url=https%3A%2F%2Fi.imgur.com%2F4cdXCGG.gifv\u0026token=AQAABS-2XP9WrNxC18zJkz3_zh8Wj97kYUWilEV3YUyUDUxfykSi\u0026app_name=desktop2x","outboundUrlCreated":1555439861000,"displayText":"i.imgur.com","outboundUrlExpiration":1555443461000,"outboundUrlReceived":1555439861914},"isLocked":false,"score":7981,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://external-preview.redd.it/yucejOlpX7TNinz5TtG680ET11w8BSl0L_W2Cetn7X0.jpg?auto=webp\u0026s=c176d127744240a5472c2d7b59ac911344971e3f","width":640,"height":640},"liveCommentsWebsocket":"wss://ws-0151020449913d17a.wss.redditmedia.com/link/bds52d?m=AQAAdXK3XIEGLayhWPMrL3XM_iywN75AV6S98GeCci2vzGnDROmN","thumbnail":{"url":"https://b.thumbs.redditmedia.com/CzeUaKfUMYSz58WHzM2cQs1Q-91VtcwakYbWJDBY46M.jpg","width":140,"height":140},"belongsTo":{"type":"subreddit","id":"t5_2qhsa"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_p8gjay9","isNSFW":false,"isMediaOnly":false,"postId":"t3_bds52d","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/interestingasfuck/comments/bds52d/the_way_forest_looks_from_the_sky/","created":1555409045000,"title":"the way forest looks from the sky","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdsii2":{"domain":"i.redd.it","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":79,"upvoteRatio":null,"author":"b_lz","postCategories":null,"media":{"obfuscated":null,"content":"https://i.redd.it/kcstpee3xls21.jpg","width":640,"resolutions":[{"url":"https://preview.redd.it/kcstpee3xls21.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=2768020c5314175fc805bec7ad12b35bd29a73d4","width":108,"height":140},{"url":"https://preview.redd.it/kcstpee3xls21.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=384cfc50eacc8b51a657588c11755ea7960283ae","width":216,"height":281},{"url":"https://preview.redd.it/kcstpee3xls21.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=00ab5ad89ddb5e97bb504d22a574928cd8e10648","width":320,"height":416},{"url":"https://preview.redd.it/kcstpee3xls21.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=876809bc42c946420f8caaf8eeb3bb0900f4cc02","width":640,"height":833}],"type":"image","height":833},"numCrossposts":0,"isSponsored":false,"id":"t3_bdsii2","contentCategories":null,"source":null,"isLocked":false,"score":9370,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://preview.redd.it/kcstpee3xls21.jpg?auto=webp\u0026s=9ac65f520896674486fc612cf0d81c77e3ad06a6","width":640,"height":833},"liveCommentsWebsocket":"wss://ws-0db1600f2bcaee566.wss.redditmedia.com/link/bdsii2?m=AQAAdXK3XBzxXL6Gftp6b0vtchsc8mgAygngHcMdhvMW_KWPB84d","thumbnail":{"url":"https://b.thumbs.redditmedia.com/YuJNnk7IMT4S9z3loQFFuqMhSQc0u573RBd_akaiClI.jpg","width":140,"height":140},"belongsTo":{"type":"subreddit","id":"t5_3m0tc"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_2zj02htk","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdsii2","suggestedSort":"top","isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/PewdiepieSubmissions/comments/bdsii2/so_nice_and_round/","created":1555412053000,"title":"So nice and round","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdsxdo":{"domain":"media.giphy.com","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":921,"upvoteRatio":null,"author":"human-1234567890","postCategories":null,"media":null,"numCrossposts":0,"isSponsored":false,"id":"t3_bdsxdo","contentCategories":null,"source":{"url":"https://media.giphy.com/media/HNg3DbNsZ38Zy/giphy.gif","outboundUrl":"https://out.reddit.com/t3_bdsxdo?url=https%3A%2F%2Fmedia.giphy.com%2Fmedia%2FHNg3DbNsZ38Zy%2Fgiphy.gif\u0026token=AQAABS-2XDVPmvOtF9hHCt7_m54Os3RDw9-piy1AcSTNHnYn2e7b\u0026app_name=desktop2x","outboundUrlCreated":1555439861000,"displayText":"media.giphy.com","outboundUrlExpiration":1555443461000,"outboundUrlReceived":1555439861914},"isLocked":false,"score":20045,"isSpoiler":false,"isArchived":false,"hidden":false,"liveCommentsWebsocket":"wss://ws-05ca86577a8823343.wss.redditmedia.com/link/bdsxdo?m=AQAAdXK3XDEWsoXzDsnWl7VjP8OHv8n5hX6VDpNXR6QQsznwG6hh","thumbnail":{"url":"https://b.thumbs.redditmedia.com/99rI1GArsCJ-kZOgfDrptprndPBcA00llkfw6rKpqmM.jpg","width":140,"height":107},"belongsTo":{"type":"subreddit","id":"t5_2qhsa"},"crosspostRootId":"t3_bdr1qo","crosspostParentId":"t3_bdr1qo","sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_1qvesusi","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdsxdo","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/interestingasfuck/comments/bdsxdo/why_you_cant_drop_water_on_burning_buildings/","created":1555414976000,"title":"Why you can't drop water on burning buildings","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[{"text":"/r/ALL","textColor":"dark","type":"text","backgroundColor":"","templateId":null}]},"t3_bdu3hy":{"domain":"i.imgur.com","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":150,"upvoteRatio":null,"author":"Convince","postCategories":null,"media":null,"numCrossposts":4,"isSponsored":false,"id":"t3_bdu3hy","contentCategories":null,"source":{"url":"https://i.imgur.com/8zldtHf.gifv","outboundUrl":"https://out.reddit.com/t3_bdu3hy?url=https%3A%2F%2Fi.imgur.com%2F8zldtHf.gifv\u0026token=AQAABS-2XADcsylsaxK7g5vN-HnCzCycCbE6DTEywfMsEJwa6FPb\u0026app_name=desktop2x","outboundUrlCreated":1555439861000,"displayText":"i.imgur.com","outboundUrlExpiration":1555443461000,"outboundUrlReceived":1555439861914},"isLocked":false,"score":3055,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://external-preview.redd.it/OmbhMx484MWPqeoIJd4GAQsTqvQ4_6jQfvLMCNlWL5Q.jpg?auto=webp\u0026s=798eb882a4e2e765a1485523fc8fd56a699351a4","width":854,"height":854},"liveCommentsWebsocket":"wss://ws-01c9d16404246687a.wss.redditmedia.com/link/bdu3hy?m=AQAAdXK3XBGgPqjpTGepeJ4bUfJNgVqyUn1nyZQWhZTisQbBWkfA","thumbnail":{"url":"https://b.thumbs.redditmedia.com/2o8Z0PDLy99TYQu62kNMBbZR1ep7sgP_vIB3MrCnxMA.jpg","width":140,"height":140},"belongsTo":{"type":"subreddit","id":"t5_2qhsa"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_9196p","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdu3hy","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/interestingasfuck/comments/bdu3hy/this_3d_printed_concept_tire_does_not_need_air/","created":1555422168000,"title":"This 3D printed concept tire does not need air","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdr1qo":{"domain":"media.giphy.com","isCrosspostable":false,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":942,"upvoteRatio":null,"author":"Agarast","postCategories":null,"media":{"obfuscated":null,"gifBackgroundImage":"https://external-preview.redd.it/tDQfIBx2PUcZJlwnUW2z1S7DbWuc5wzuO4Nxoa5UN3M.gif?format=png8\u0026s=6d8b8925cb3347eca5ec5ed8cc618c75e3bf5d28","gifBackgroundResolutions":[{"url":"https://external-preview.redd.it/tDQfIBx2PUcZJlwnUW2z1S7DbWuc5wzuO4Nxoa5UN3M.gif?width=108\u0026crop=smart\u0026format=png8\u0026s=657ee5590bb0d2aede3fa61b5d64abc51fe925ee","width":108,"height":82},{"url":"https://external-preview.redd.it/tDQfIBx2PUcZJlwnUW2z1S7DbWuc5wzuO4Nxoa5UN3M.gif?width=216\u0026crop=smart\u0026format=png8\u0026s=90775323249b8f6251b4f7b97100dd9696b24d07","width":216,"height":165},{"url":"https://external-preview.redd.it/tDQfIBx2PUcZJlwnUW2z1S7DbWuc5wzuO4Nxoa5UN3M.gif?width=320\u0026crop=smart\u0026format=png8\u0026s=403a4299b2a3c3ff801deae13f4940e38d774ccd","width":320,"height":245}],"height":360,"content":"https://external-preview.redd.it/tDQfIBx2PUcZJlwnUW2z1S7DbWuc5wzuO4Nxoa5UN3M.gif?format=mp4\u0026s=ae888bf34d51685057f3e5c800e3effe0878337b","width":470,"resolutions":[{"url":"https://external-preview.redd.it/tDQfIBx2PUcZJlwnUW2z1S7DbWuc5wzuO4Nxoa5UN3M.gif?width=108\u0026format=mp4\u0026s=5eea087cfdd80fe3b8c711b1a28335a2b79c44a3","width":108,"height":82},{"url":"https://external-preview.redd.it/tDQfIBx2PUcZJlwnUW2z1S7DbWuc5wzuO4Nxoa5UN3M.gif?width=216\u0026format=mp4\u0026s=4b79d54b014eded8ffafa543d3801ba7b5c037cf","width":216,"height":165},{"url":"https://external-preview.redd.it/tDQfIBx2PUcZJlwnUW2z1S7DbWuc5wzuO4Nxoa5UN3M.gif?width=320\u0026format=mp4\u0026s=3e21beb07b52e6e0414041c1f56aad9db2a1d94b","width":320,"height":245}],"type":"gifvideo"},"numCrossposts":11,"isSponsored":false,"id":"t3_bdr1qo","contentCategories":null,"source":{"url":"https://media.giphy.com/media/HNg3DbNsZ38Zy/giphy.gif","outboundUrl":"https://out.reddit.com/t3_bdr1qo?url=https%3A%2F%2Fmedia.giphy.com%2Fmedia%2FHNg3DbNsZ38Zy%2Fgiphy.gif\u0026token=AQAABS-2XBNvyv0YbflevGGBxvi_S2y3DljcMIQ9vvbPV3vO8g-d\u0026app_name=desktop2x","outboundUrlCreated":1555439861000,"displayText":"media.giphy.com","outboundUrlExpiration":1555443461000,"outboundUrlReceived":1555439861914},"isLocked":false,"score":9637,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://external-preview.redd.it/tDQfIBx2PUcZJlwnUW2z1S7DbWuc5wzuO4Nxoa5UN3M.gif?format=png8\u0026s=6d8b8925cb3347eca5ec5ed8cc618c75e3bf5d28","width":470,"height":360},"liveCommentsWebsocket":"wss://ws-0923bbc74403c90dc.wss.redditmedia.com/link/bdr1qo?m=AQAAdXK3XNm9e6LxcSnp8sMyYTquQ4PvhzAjT1jbMZ_HLOzvaCxc","thumbnail":{"url":"default","width":140,"height":107},"belongsTo":{"type":"subreddit","id":"t5_2qt55"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":false,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_qh2tw","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdr1qo","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/gifs/comments/bdr1qo/why_you_cant_drop_water_on_burning_buildings/","created":1555399604000,"title":"Why you can't drop water on burning buildings","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[{"text":"Rule 1: Repost","textColor":"dark","type":"text","backgroundColor":"","templateId":"6649a81e-ea2c-11e4-ae78-22000bb26aad"}]},"t3_bdshgi":{"domain":"i.redd.it","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":153,"upvoteRatio":null,"author":"SlytherinMC","postCategories":null,"media":{"obfuscated":null,"content":"https://i.redd.it/awrhuwacwls21.jpg","width":720,"resolutions":[{"url":"https://preview.redd.it/awrhuwacwls21.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=f7657ee0f854f788d1f5bf1cd10f09d6d030088b","width":108,"height":109},{"url":"https://preview.redd.it/awrhuwacwls21.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=60248f9399bb9dacec9c90aa00fbf763ac3cf2d3","width":216,"height":219},{"url":"https://preview.redd.it/awrhuwacwls21.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=92c4e4f6ce7fb916944bb30ee7a23bbe60963abb","width":320,"height":325},{"url":"https://preview.redd.it/awrhuwacwls21.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=51acc2f359934abd6d61d2950eb2405f2ce2eebd","width":640,"height":650}],"type":"image","height":732},"numCrossposts":0,"isSponsored":false,"id":"t3_bdshgi","contentCategories":null,"source":null,"isLocked":false,"score":16029,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://preview.redd.it/awrhuwacwls21.jpg?auto=webp\u0026s=6852918881e4244bab4aa3ccf53064b88daf168b","width":720,"height":732},"liveCommentsWebsocket":"wss://ws-0a35f3d8511870c46.wss.redditmedia.com/link/bdshgi?m=AQAAdXK3XPGrfO5gzOfjO2Onb3pHZzejaBNCSHbpPKB9wESE0ZPW","thumbnail":{"url":"https://a.thumbs.redditmedia.com/Np69Bp8H1yj2XkjnnjuN86o9ThAnNxzMse_UopT77o0.jpg","width":140,"height":140},"belongsTo":{"type":"subreddit","id":"t5_3m0tc"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_3g1wqcyk","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdshgi","suggestedSort":"top","isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/PewdiepieSubmissions/comments/bdshgi/gonna_leave_this_here/","created":1555411816000,"title":"Gonna leave this here...","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bducvy":{"domain":"i.imgur.com","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":6,"upvoteRatio":null,"author":"SuperBreakfast","postCategories":null,"media":{"obfuscated":null,"content":"https://external-preview.redd.it/yz0A99Rlnlr1H_8QJX0S6ifDlpY6JrMuodaWkyRekIo.jpg?auto=webp\u0026s=6fa6fa943ac8af84b154fa39582686298c0635d7","width":927,"resolutions":[{"url":"https://external-preview.redd.it/yz0A99Rlnlr1H_8QJX0S6ifDlpY6JrMuodaWkyRekIo.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=4c1120fd47e49286eb24251e47ffa8d0f58c5a3a","width":108,"height":98},{"url":"https://external-preview.redd.it/yz0A99Rlnlr1H_8QJX0S6ifDlpY6JrMuodaWkyRekIo.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=2a7a1ca09a3248ba3df27b095c0470a88dc367ce","width":216,"height":197},{"url":"https://external-preview.redd.it/yz0A99Rlnlr1H_8QJX0S6ifDlpY6JrMuodaWkyRekIo.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=e114575ec92677d733399c5c74f401ccf091f3d7","width":320,"height":292},{"url":"https://external-preview.redd.it/yz0A99Rlnlr1H_8QJX0S6ifDlpY6JrMuodaWkyRekIo.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=c93546ab7c5cbae50d0f6a9fdcc3a9790f5d0674","width":640,"height":584}],"type":"image","height":847},"numCrossposts":0,"isSponsored":false,"id":"t3_bducvy","contentCategories":null,"source":{"url":"https://i.imgur.com/kZ6qQy7.jpg","outboundUrl":"https://out.reddit.com/t3_bducvy?url=https%3A%2F%2Fi.imgur.com%2FkZ6qQy7.jpg\u0026token=AQAABS-2XLrTmzgDq-J0YSycuLYgb7DJbc7lxDWzMBW_V0LqPVkc\u0026app_name=desktop2x","outboundUrlCreated":1555439861000,"displayText":"i.imgur.com","outboundUrlExpiration":1555443461000,"outboundUrlReceived":1555439861914},"isLocked":false,"score":169,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://external-preview.redd.it/yz0A99Rlnlr1H_8QJX0S6ifDlpY6JrMuodaWkyRekIo.jpg?auto=webp\u0026s=6fa6fa943ac8af84b154fa39582686298c0635d7","width":927,"height":847},"liveCommentsWebsocket":"wss://ws-01c9d16404246687a.wss.redditmedia.com/link/bducvy?m=AQAAdXK3XEk8mOmOjeZwh50J7uLK7XXGWwAa1iClVSt9TtvBa6Rs","thumbnail":{"url":"https://a.thumbs.redditmedia.com/Z4g1LDiIQ8f6yRxbCZzHzk0v4-ZcM8Y1dT5dR91CW88.jpg","width":140,"height":127},"belongsTo":{"type":"subreddit","id":"t5_2qhyq"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_dz249","isNSFW":false,"isMediaOnly":false,"postId":"t3_bducvy","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/classicalmusic/comments/bducvy/edvard_grieg_taking_a_break_from_hiking_on/","created":1555423689000,"title":"Edvard Grieg taking a break from hiking on Løvstakken (circa 1900)","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdsoj6":{"domain":"youtube.com","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":309,"upvoteRatio":null,"author":"fraggle_captain","postCategories":null,"media":{"obfuscated":null,"content":"https://www.redditmedia.com/mediaembed/bdsoj6","width":459,"provider":"YouTube","type":"embed","height":344},"numCrossposts":1,"isSponsored":false,"id":"t3_bdsoj6","contentCategories":null,"source":{"url":"https://www.youtube.com/watch?v=x-64CaD8GXw","outboundUrl":"https://out.reddit.com/t3_bdsoj6?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dx-64CaD8GXw\u0026token=AQAABS-2XJkc2QQQGKYSfnF5FKnOFGaRo12tqJN4dZxvr0yMZJDy\u0026app_name=desktop2x","outboundUrlCreated":1555439861000,"displayText":"youtube.com","outboundUrlExpiration":1555443461000,"outboundUrlReceived":1555439861914},"isLocked":false,"score":2851,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://external-preview.redd.it/u9o_9Dcz5zahgoTMB1_Q24AdtpQKe4eCHsqef6wDtac.jpg?auto=webp\u0026s=8dac5e04f7d4880b6b12a09de9fc8e8b4a36a03e","width":480,"height":360},"liveCommentsWebsocket":"wss://ws-0151020449913d17a.wss.redditmedia.com/link/bdsoj6?m=AQAAdXK3XBzm0OPY50LXO8d9OczPAas1ipB4tOe9cte6njqRqQC1","thumbnail":{"url":"image","width":140,"height":105},"belongsTo":{"type":"subreddit","id":"t5_2qh1u"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":false,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_j9xd9","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdsoj6","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/Music/comments/bdsoj6/dropkick_murphys_im_shipping_up_to_boston_celtic/","created":1555413255000,"title":"Dropkick Murphys - I'm Shipping Up to Boston [Celtic Rock] (2005)","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[{"templateId":null,"textColor":"dark","type":"richtext","backgroundColor":"","richtext":[{"e":"text","t":"music streaming"}]},{"text":"music streaming","textColor":"dark","type":"text","backgroundColor":"","templateId":null}]},"t3_bdsrfp":{"domain":"i.redd.it","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":80,"upvoteRatio":null,"author":"yeetthatfeet","postCategories":null,"media":{"obfuscated":null,"content":"https://i.redd.it/1d73gz3c2ms21.jpg","width":3024,"resolutions":[{"url":"https://preview.redd.it/1d73gz3c2ms21.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=11a3a0d21cf4d57799fb7b6edef9f83f18c03ba8","width":108,"height":144},{"url":"https://preview.redd.it/1d73gz3c2ms21.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=d5098eae7ab0fe2b7a78b1a58de84ce15bc68216","width":216,"height":288},{"url":"https://preview.redd.it/1d73gz3c2ms21.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=867b228cba6c6fae3065803074acdadada319f15","width":320,"height":426},{"url":"https://preview.redd.it/1d73gz3c2ms21.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=e72296ca101ea6bf863c0ff16fbb1e9f3c943850","width":640,"height":853},{"url":"https://preview.redd.it/1d73gz3c2ms21.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=f3d76dde7211df6fb38be8cd6aa3fe6b60c156d4","width":960,"height":1280},{"url":"https://preview.redd.it/1d73gz3c2ms21.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=56d4fc5ac420e8cd7ca1d29b077d35e16d311581","width":1080,"height":1440}],"type":"image","height":4032},"numCrossposts":0,"isSponsored":false,"id":"t3_bdsrfp","contentCategories":null,"source":null,"isLocked":false,"score":8476,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://preview.redd.it/1d73gz3c2ms21.jpg?auto=webp\u0026s=4a9f76a78de071339f4bab6f16c3dd7e12a2c0a4","width":3024,"height":4032},"liveCommentsWebsocket":"wss://ws-0a35f3d8511870c46.wss.redditmedia.com/link/bdsrfp?m=AQAAdXK3XJLpyYuy2xjaW-Mu5aPSwWAfR1hNKlZK5BIQk25uHeh4","thumbnail":{"url":"https://b.thumbs.redditmedia.com/v1aZZazRWjrVwif_SZTC_Tm1BzGxm2OBm_zZUpeVyVY.jpg","width":140,"height":140},"belongsTo":{"type":"subreddit","id":"t5_3m0tc"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":true,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_1ourt43u","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdsrfp","suggestedSort":"top","isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/PewdiepieSubmissions/comments/bdsrfp/hehe/","created":1555413829000,"title":"Hehe","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]},"t3_bdvwpz":{"domain":"i.imgur.com","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":303,"upvoteRatio":null,"author":"EverybodyWantsToBeUs","postCategories":null,"media":null,"numCrossposts":2,"isSponsored":false,"id":"t3_bdvwpz","contentCategories":null,"source":{"url":"https://i.imgur.com/fhQYRY3.gifv","outboundUrl":"https://out.reddit.com/t3_bdvwpz?url=https%3A%2F%2Fi.imgur.com%2FfhQYRY3.gifv\u0026token=AQAABS-2XLL8ZcOxfoU6zCPo1yNZ6Ree7Te7YYdXcqncm2Z7yqem\u0026app_name=desktop2x","outboundUrlCreated":1555439861000,"displayText":"i.imgur.com","outboundUrlExpiration":1555443461000,"outboundUrlReceived":1555439861914},"isLocked":false,"score":5827,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://external-preview.redd.it/kCt3L660H8rBvrafEcgjQ62YunXsGFukvduJr082LT0.jpg?auto=webp\u0026s=1cb4dc887f20a60f821939693751021bb77bc464","width":480,"height":848},"liveCommentsWebsocket":"wss://ws-0a35f3d8511870c46.wss.redditmedia.com/link/bdvwpz?m=AQAAdXK3XFiCo39HFr6f9hyPd8VLyag0dfVhghDQPHtfx6MgKX8k","thumbnail":{"url":"https://a.thumbs.redditmedia.com/iam6lSZWkLb1wjp7P2mZ1URRa2LldOjRy1pVbvKlUu4.jpg","width":140,"height":140},"belongsTo":{"type":"subreddit","id":"t5_2qhsa"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":false,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_2k06m8jm","isNSFW":false,"isMediaOnly":false,"postId":"t3_bdvwpz","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/interestingasfuck/comments/bdvwpz/the_inside_of_notre_dame_after_the_fire/","created":1555431832000,"title":"The inside of Notre Dame after the fire","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[{"text":"/r/ALL","textColor":"dark","type":"text","backgroundColor":"","templateId":null}]},"t3_bduvvn":{"domain":"i.imgur.com","isCrosspostable":true,"isMeta":false,"isStickied":false,"domainOverride":null,"callToAction":null,"eventsOnRender":[],"isScoreHidden":false,"saved":false,"numComments":33,"upvoteRatio":null,"author":"H1ggyBowson","postCategories":null,"media":null,"numCrossposts":2,"isSponsored":false,"id":"t3_bduvvn","contentCategories":null,"source":{"url":"https://i.imgur.com/hIJNRnz.gifv","outboundUrl":"https://out.reddit.com/t3_bduvvn?url=https%3A%2F%2Fi.imgur.com%2FhIJNRnz.gifv\u0026token=AQAABS-2XIsfi3l5Lu36CTR1ll1uA8-QbyXFrypORKaIwaO3PK8g\u0026app_name=desktop2x","outboundUrlCreated":1555439861000,"displayText":"i.imgur.com","outboundUrlExpiration":1555443461000,"outboundUrlReceived":1555439861914},"isLocked":false,"score":2241,"isSpoiler":false,"isArchived":false,"hidden":false,"preview":{"url":"https://external-preview.redd.it/jabZnISM60Tb13tXJNMqBogR3ANB1-dK3xpK9ELgZ_k.jpg?auto=webp\u0026s=a47d29f97a10bcd3d4be8ad6d4969c3ba9cf7b51","width":480,"height":854},"liveCommentsWebsocket":"wss://ws-0a35f3d8511870c46.wss.redditmedia.com/link/bduvvn?m=AQAAdXK3XN0QlaAD6_nOC5llTGry-KEr9kzavCGgJMX94AaLTILU","thumbnail":{"url":"https://b.thumbs.redditmedia.com/mtPDuh7XzmOw5f4UqfUdIi-tSxsbeGLZlmD3kYJFxGc.jpg","width":140,"height":140},"belongsTo":{"type":"subreddit","id":"t5_2qhsa"},"crosspostRootId":null,"crosspostParentId":null,"sendReplies":false,"goldCount":0,"gildings":{"gid1":0,"gid2":0,"gid3":0},"authorId":"t2_6mra40a","isNSFW":false,"isMediaOnly":false,"postId":"t3_bduvvn","suggestedSort":null,"isBlank":false,"viewCount":0,"permalink":"https://www.reddit.com/r/interestingasfuck/comments/bduvvn/cylindrical_art/","created":1555426637000,"title":"Cylindrical art","events":[],"isOriginalContent":false,"distinguishType":null,"voteState":0,"flair":[]}},"recent":[],"video":{"autoPlayed":{},"buffering":{},"consumed":{},"continuousViewStartedAt":{},"fullscreen":null,"loadable":{},"loadTimes":{},"metadata":{},"paused":{},"playing":{},"started":{},"time":{}}},"postStickiedComments":{"data":{}},"givePremium":{"api":{"error":null,"pending":false},"givePremiumModalAccountName":""},"products":{"api":{"fetch":{"error":{},"pending":{}},"purchase":{"error":{},"pending":{}}},"currentlyPurchasing":null,"models":{}},"profileCommentsPage":{"api":{"error":{},"pending":{}},"endMarkers":{},"fetchedTokens":{},"commentIds":{},"loadMore":{}},"profilePrivatePage":{"api":{"error":{},"pending":{}},"ids":{},"pageInfo":{}},"profileModSettingsPage":{"api":{"pending":true}},"profileOverviewPage":{"chrono":{"api":{"error":{},"pending":{}},"fetchedTokens":{},"ids":{},"loadMore":{}},"conversations":{"api":{"error":{},"pending":{}},"extraComments":{"api":{"error":{},"pending":{}},"models":{}},"keyToCommentThreadLinkSets":{},"keyToHeadCommentId":{},"keyToPostId":{}}},"profilePostsPage":{},"profiles":{"about":{},"models":{},"moderated":{"api":{"pending":{}},"models":{},"pageInfo":{}},"pinnedPosts":{"data":{},"initialData":{},"pending":{}},"trophyCases":{}},"providerFlair":{"models":{}},"promos":{"mobilePromoBanner":false,"upsellSignUpBannerLarge":false,"upsellSignUpBannerMedium":false,"upsellSignUpBannerSmall":null},"recommendations":{},"removalReasons":{"api":{"error":null,"pending":false},"models":{},"reasonOrder":{},"removedItemIds":null},"reportFlow":{"api":{"error":{},"pending":{},"success":{}},"openedFromModalPage":false,"postOrCommentId":null,"userIsMod":false},"requestHost":"www.reddit.com","runTimeEnvVars":{"staging":false,"startTimeInMillis":1555439465389},"search":{"relatedQueries":{},"searchQuery":null,"typeahead":{"idsByQuery":{},"models":{}},"viewTreatment":{}},"searchDiscoveryUnits":{"headerContent":{},"models":{},"order":{}},"shortcuts":{"activeCommentId":null,"activePostId":null,"namespace":"Listing"},"sidebarPromotedPosts":{"firstFetch":false,"models":{}},"sitewideRules":[],"structuredStyles":{"draft":{},"exportStyles":{"error":null,"pending":false},"flairTemplate":{"models":{}},"imagePreviews":{},"isBladeEditorDirty":false,"isEditing":null,"models":{}},"stylesheets":"https://www.redditstatic.com/desktop2x/chunkCSS/Reddit.f9e79d855d68c739a635.css","subredditAutocomplete":{"api":{"error":{},"pending":{}},"models":{}},"subredditChannels":{"api":{"error":{},"pending":{},"whitelist":{}},"models":{},"selected":null},"subreddits":{"about":{},"api":{"about":{"error":{},"pending":false},"connectToPartner":{"error":null,"lastConnectedSubredditId":null,"pending":false},"create":{"error":{"apiError":null},"lastCreatedSubredditId":null,"pending":false},"rules":false,"topContent":{"error":{},"pending":{}},"wiki":{"error":{},"pending":{}}},"appliedFilters":{"meta":{}},"byCategory":{},"crosspostable":{"api":{"errors":null,"pending":false},"ids":{}},"duplicates":{"models":{}},"gov":{"assets":{},"distributions":{},"meta":{},"releaseNotes":{}},"models":{"t5_2qhpi":{"whitelistStatus":"all_ads","isNSFW":false,"subscribers":223644,"primaryColor":"","id":"t5_2qhpi","icon":{"url":"","width":null,"height":null},"isQuarantined":false,"name":"engineering","title":"engineering","url":"/r/engineering/","wls":6,"freeFormReports":true,"displayText":"r/engineering","type":"public","communityIcon":""},"t5_2qhjz":{"whitelistStatus":"all_ads","isNSFW":false,"subscribers":264962,"primaryColor":"#162f56","id":"t5_2qhjz","icon":{"url":"https://b.thumbs.redditmedia.com/FoGtUSGK537hMofEV_SRsR8EeqHa8eRyQ1SGc59PvdM.png","width":256,"height":256},"isQuarantined":false,"name":"france","title":"France","url":"/r/france/","displayText":"r/france","type":"public","communityIcon":""},"t5_2qt55":{"whitelistStatus":"all_ads","isNSFW":false,"subscribers":18204317,"primaryColor":"#5a74cc","id":"t5_2qt55","icon":{"url":"","width":null,"height":null},"isQuarantined":false,"name":"gifs","title":".gifs - funny, animated gifs for your viewing pleasure","url":"/r/gifs/","wls":6,"freeFormReports":true,"displayText":"r/gifs","type":"public","communityIcon":""},"t5_37hue":{"whitelistStatus":"no_ads","isNSFW":false,"subscribers":71349,"primaryColor":"","id":"t5_37hue","icon":{"url":"","width":null,"height":null},"isQuarantined":false,"name":"holdmybeaker","title":"Hold My Beaker","url":"/r/holdmybeaker/","displayText":"r/holdmybeaker","type":"public","communityIcon":""},"t5_trwdo":{"whitelistStatus":"all_ads","isNSFW":false,"subscribers":45241,"primaryColor":"#011c69","id":"t5_trwdo","icon":{"url":"","width":null,"height":null},"isQuarantined":false,"name":"foundfelix","title":"foundfelix","url":"/r/foundfelix/","wls":6,"freeFormReports":true,"displayText":"r/foundfelix","type":"public","communityIcon":"https://styles.redditmedia.com/t5_trwdo/styles/communityIcon_vvwd2v7rsba21.png"},"t5_2qhsa":{"whitelistStatus":"all_ads","isNSFW":false,"subscribers":3562931,"primaryColor":"","id":"t5_2qhsa","icon":{"url":"https://a.thumbs.redditmedia.com/-8aNvX6BtAwPbrHmha2TfndP7VFYvsx6p0zwKBWqNu8.png","width":256,"height":256},"isQuarantined":false,"name":"interestingasfuck","title":"Interesting As Fuck","url":"/r/interestingasfuck/","wls":6,"freeFormReports":true,"displayText":"r/interestingasfuck","type":"public","communityIcon":""},"t5_2qh1u":{"whitelistStatus":"all_ads","isNSFW":false,"subscribers":19583985,"primaryColor":"#1a9cfd","id":"t5_2qh1u","icon":{"url":"https://b.thumbs.redditmedia.com/UO8Hj8ZnQmYGeE9ZIjKPQEwlX46OBPC_kj2Jqlt5nqo.png","width":256,"height":256},"isQuarantined":false,"name":"Music","title":"/r/Music","url":"/r/Music/","wls":6,"freeFormReports":true,"displayText":"r/Music","type":"public","communityIcon":""},"t5_3e35p":{"whitelistStatus":"all_ads","isNSFW":false,"subscribers":24632,"primaryColor":"#373c3f","id":"t5_3e35p","icon":{"url":"","width":null,"height":null},"isQuarantined":false,"name":"css_irl","title":"css_irl","url":"/r/css_irl/","displayText":"r/css_irl","type":"public","communityIcon":""},"t5_2rjz2":{"whitelistStatus":"all_ads","isNSFW":false,"subscribers":1871313,"primaryColor":"#005ba1","id":"t5_2rjz2","icon":{"url":"https://b.thumbs.redditmedia.com/sbre62xgX6GkwcSGmwj8Qq-9EGmtzQ9S4phDHyRgPLA.png","width":256,"height":256},"isQuarantined":false,"name":"gameofthrones","title":"Game of Thrones","url":"/r/gameofthrones/","displayText":"r/gameofthrones","type":"public","communityIcon":"https://styles.redditmedia.com/t5_2rjz2/styles/communityIcon_n7s2f0r0pna21.png"},"t5_3m0tc":{"whitelistStatus":"no_ads","isNSFW":false,"subscribers":1479568,"primaryColor":"#000000","id":"t5_3m0tc","icon":{"url":"https://b.thumbs.redditmedia.com/LJYC4x3EKYCq1g3lTEMCSoMmihL32ecZoRw-ztolzuM.png","width":256,"height":256},"isQuarantined":false,"name":"PewdiepieSubmissions","title":"🚨SUB GAP: -194379🚨","url":"/r/PewdiepieSubmissions/","wls":0,"displayText":"r/PewdiepieSubmissions","type":"public","communityIcon":"https://styles.redditmedia.com/t5_3m0tc/styles/communityIcon_h87alocos7121.png"},"t5_2qt6j":{"whitelistStatus":"no_ads","isNSFW":false,"subscribers":17366,"primaryColor":"","id":"t5_2qt6j","icon":{"url":"","width":null,"height":null},"isQuarantined":false,"name":"Recursion","title":"Recursion","url":"/r/Recursion/","displayText":"r/Recursion","type":"public","communityIcon":""},"t5_2qhyq":{"whitelistStatus":"all_ads","isNSFW":false,"subscribers":471096,"primaryColor":"","id":"t5_2qhyq","icon":{"url":"","width":null,"height":null},"isQuarantined":false,"name":"classicalmusic","title":"Classical Music","url":"/r/classicalmusic/","wls":6,"freeFormReports":true,"displayText":"r/classicalmusic","type":"public","communityIcon":"https://styles.redditmedia.com/t5_2qhyq/styles/communityIcon_lled93rujli01.png"},"t5_2qpfi":{"whitelistStatus":"no_ads","isNSFW":false,"subscribers":7958,"primaryColor":"","id":"t5_2qpfi","icon":{"url":"","width":null,"height":null},"isQuarantined":false,"name":"Cello","title":"for the cello minded.","url":"/r/Cello/","wls":null,"freeFormReports":true,"displayText":"r/Cello","type":"public","communityIcon":""},"t5_2qh1i":{"whitelistStatus":"all_ads","isNSFW":false,"subscribers":22335880,"primaryColor":"#646d73","id":"t5_2qh1i","icon":{"url":"https://b.thumbs.redditmedia.com/EndDxMGB-FTZ2MGtjepQ06cQEkZw_YQAsOUudpb9nSQ.png","width":256,"height":256},"isQuarantined":false,"name":"AskReddit","title":"Ask Reddit...","url":"/r/AskReddit/","wls":6,"freeFormReports":true,"displayText":"r/AskReddit","type":"public","communityIcon":"https://styles.redditmedia.com/t5_2qh1i/styles/communityIcon_tijjpyw1qe201.png"}},"moderated":{"api":{"errors":null,"fetched":false,"pending":false},"order":null},"original":[],"products":{},"rules":{},"settings":{},"subredditWiki":{"listingPage":{},"pages":{}},"top":{},"topContent":{},"trending":["t5_37hue","t5_2qt6j","t5_3e35p","t5_2rjz2","t5_2qhjz"]},"subredditSettings":{"postRequirements":{"formState":{"isLoading":true,"isSaving":false,"hasFormError":false,"serverError":null,"titleStrings":{"isToggled":false,"strings":[]},"titleRegEx":{"isToggled":false,"regex":[]},"titleLength":{"isToggled":false,"min":null,"max":null},"postLength":{"isToggled":false,"min":null,"max":null},"postingGuidelines":{"requirement":"none","guidelines":null},"postBodyRequirement":"none","linkListPermission":"none","linkDomain":{"whitelist":[],"blacklist":[]},"reposts":{"isToggled":false,"days":null},"flair":{"isToggled":false}},"formErrors":{"titleRegEx":{"regex":null},"titleStrings":{"strings":null},"titleLength":{"min":null,"max":null},"postLength":{"min":null,"max":null},"postingGuidelines":{"guidelines":null},"postBodyRequirement":{"requirement":null},"linkListPermission":{"permission":null},"linkDomain":{"whitelist":null,"blacklist":null},"reposts":{"days":null}},"initialData":null},"requirementsBySubreddit":{}},"subredditStickyPosts":{"data":{}},"subscriptions":{"api":{"errors":null,"fetched":false,"pending":false},"favoriteProfileOrder":[],"favoriteSubredditOrder":[],"profileOrder":[],"subredditOrder":[]},"tags":{"api":{"create":{"pending":false,"error":false},"deleteTag":{"pending":false,"error":false},"fetch":{"pending":false,"error":false},"update":{"pending":false,"error":false}},"availableGlobalTagOrder":{"global":[],"recommendedGlobal":[]},"models":{"globalSubredditTags":{},"subredditScopedTags":{},"itemTags":{},"sortedItemTags":{}},"selected":{"selectedOptions":{},"deselectedOptions":{},"inputByItemId":{}}},"themes":{"current":{"subredditContext":{"shouldShowNSFWContent":false},"communityTheme":{},"newCommunityTheme":{"active":"#0079D3","banner":{"backgroundColor":"#2d97e5","backgroundImagePosition":"cover","communityNameFormat":"slashtag","iconColor":"#0079D3","iconDimensions":{"borderRadius":"24","customSize":"32","padding":"6","size":"24"},"lineHeight":"38","height":64,"positionedImageHeight":48,"positionedImageAlignment":"left","showCommunityIcon":true},"flair":"#343536","navBar":{"activeLink":"#E9F5FD","activeSubmenuCaret":"#D7DADC","activeSubmenuLink":"#D7DADC","backgroundColor":"#030303","hoverLink":"#D7DADC","inactiveLink":"#D7DADC","inactiveSubmenuCaret":"#D7DADC","inactiveSubmenuLink":"#D7DADC","submenuBackgroundColor":"#1A1A1B","useOverlay":false},"actionIcon":"#818384","body":"#1A1A1B","bodyText":"#D7DADC","button":"#D7DADC","canvas":"#030303","errorText":"#FF0000","field":"#272729","highlight":"#17232D","inactive":"#343536","lightText":"#FFFFFF","line":"#343536","linkText":"#4FBCFF","menu":"#030303","menuActiveText":"#D7DADC","menuInactiveText":"#D7DADC","metaText":"#818384","navIcon":"#D7DADC","pageHeader":"#818384","placeholder":"#3A3A3C","post":"#1A1A1B","postFlairText":"#FFFFFF","postIcon":"#818384","postLine":"#343536","report":"#1C1402","titleText":"#D7DADC","voteText":{"base":"#818384","downvote":"#7193FF","upvote":"#FF4500"},"voteIcons":{},"widgetColors":{"sidebarWidgetBackgroundColor":"#1A1A1B","sidebarWidgetHeaderColor":"#1A1A1B","lineColor":"#343536"}},"redditTheme":{},"newRedditTheme":{"active":"#0079D3","banner":{"backgroundColor":"#24A0ED","backgroundImagePosition":"cover","communityNameFormat":"slashtag","iconColor":"#24A0ED","iconDimensions":{"borderRadius":"24","customSize":"32","padding":"6","size":"24"},"lineHeight":"38","height":64,"positionedImageHeight":48,"positionedImageAlignment":"cover","showCommunityIcon":true},"flair":"#343536","navBar":{"activeLink":"#E9F5FD","activeSubmenuCaret":"#D7DADC","activeSubmenuLink":"#D7DADC","backgroundColor":"#030303","hoverLink":"#D7DADC","inactiveLink":"#D7DADC","inactiveSubmenuCaret":"#D7DADC","inactiveSubmenuLink":"#D7DADC","submenuBackgroundColor":"#1A1A1B","useOverlay":false},"actionIcon":"#818384","body":"#1A1A1B","bodyText":"#D7DADC","button":"#D7DADC","canvas":"#030303","errorText":"#FF0000","field":"#272729","highlight":"#17232D","inactive":"#343536","lightText":"#FFFFFF","line":"#343536","linkText":"#4FBCFF","menu":"#030303","menuActiveText":"#D7DADC","menuInactiveText":"#D7DADC","metaText":"#818384","navIcon":"#D7DADC","pageHeader":"#818384","placeholder":"#3A3A3C","post":"#1A1A1B","postFlairText":"#FFFFFF","postIcon":"#818384","postLine":"#343536","report":"#1C1402","titleText":"#D7DADC","voteText":{"base":"#818384","downvote":"#7193FF","upvote":"#FF4500"},"voteIcons":{},"widgetColors":{"sidebarWidgetBackgroundColor":"#1A1A1B","sidebarWidgetHeaderColor":"#1A1A1B","lineColor":"#343536"}}},"cached":{}},"toaster":[],"tooltipId":null,"tracking":{"viewportDataLoaded":{}},"transfers":{"communityPoints":{"api":{"error":null,"pending":false},"contentId":null,"initialRecipient":""}},"trending":{"models":[]},"trophies":{},"uploads":{},"user":{"account":{"commentKarma":1,"hasUserProfile":true,"goldExpiration":null,"hasStripeSubscription":false,"isSuspended":false,"postKarma":1,"isGold":false,"creddits":0,"seenPremiumAdblockModal":false,"inChat":false,"isMod":false,"hasUnreadModmail":false,"showTwitter":false,"seenSubredditChatFtux":false,"nightmode":true,"profileId":"t5_9zptv","geopopular":"","hasUnreadOldModmail":false,"id":"t2_q72897y","hasGoldSubscription":false,"inRedesignBeta":true,"seenRedesignModal":true,"hasPaypalSubscription":false,"created":1514669856,"url":"/user/eug0212","hasIOSSubscription":false,"coins":0,"hasExternalAccount":false,"isEmployee":false,"hasAndroidSubscription":false,"accountIcon":"https://www.redditstatic.com/avatars/avatar_default_19_FF66AC.png","seenLayoutSwitch":true,"displayText":"eug0212","hasUnreadMail":false,"isFPR":false,"showRecentPosts":5,"gildedLastMonth":null,"showTrending":true,"hasVerifiedEmail":true,"email":null,"inboxCount":0},"accountSettings":{"changeEmail":{"api":{"pending":false}},"resetPassword":{"api":{"pending":false}}},"blocked":{"api":{},"data":[]},"chatSettings":{"invitePolicy":"Everyone"},"drafts":null,"experiments":{"models":[{"id":165,"name":"android_graphql_popular_feed","variant":"true","version":"1"},{"id":135,"name":"app_selector_modal_shading_2","variant":"control_2","version":"2"},{"id":62,"name":"best_sort_explore_batch","variant":"best_sort_explore_enabled","version":"5"},{"id":131,"name":"desktop_m2m_logged_out_v1_5","variant":"2_visit_milestone_persistent_topbanner_no_tooltip","version":"5"},{"id":143,"name":"desktop_persistence","variant":"30_minutes","version":"14"},{"id":69,"name":"desktop_seo_post_test_v1","variant":"listing_on_bottom","version":"10"},{"id":58,"name":"dn_perms_current_pre_prompt","variant":"dark_system_dialogue","version":"9"},{"id":106,"name":"email_verification_banner","variant":"banner","version":"2"},{"id":146,"name":"game_of_thrones_ce","variant":"got_enabled","version":"7"},{"id":145,"name":"game_of_thrones_ce_test","variant":"got_enabled","version":"1"},{"id":149,"name":"ios_category_carousel_new","variant":"sort_most_retention","version":"1"},{"id":126,"name":"ios_new_comments_3","variant":"new_comments_cached","version":"4"},{"id":72,"name":"ios_wkwebview_youtube_rollout","variant":"enabled","version":"5"},{"id":50,"name":"lnl_vs_best_vs_explore_exploit","variant":"best_sort","version":"33"},{"id":57,"name":"logged_in_transactional_dn_test","variant":"treatment","version":"5"},{"id":98,"name":"logged_in_trending_dns_2","variant":"trending_only","version":"5"},{"id":137,"name":"logged_out_pn_personalization","variant":"expanded_best_sort_tos","version":"15"},{"id":3,"name":"mattknox_prime","variant":"control_2","version":"13"},{"id":156,"name":"mux_sampling_a","variant":"on","version":"9"},{"id":157,"name":"mux_sampling_b","variant":"on","version":"19"},{"id":4,"name":"my_first","variant":"enabled","version":"72"},{"id":140,"name":"post_view_consume_killswitch","variant":"false","version":"2"},{"id":79,"name":"rails_search_results_redesign","variant":"treatment_1","version":"9"},{"id":43,"name":"redesign_go_to_home","variant":"home_after_0","version":"7"},{"id":83,"name":"related_queries_rollout","variant":"active","version":"9"},{"id":92,"name":"subreddit_top_content","variant":"control_1","version":"5"},{"id":78,"name":"time_on_subreddit_push_notifications","variant":"expanded_best_sort","version":"12"},{"id":63,"name":"trending_dropdown_redesign","variant":"treatment_1","version":"9"},{"id":114,"name":"trending_entry_points_holdout_redesign","variant":"treatment_1","version":"8"},{"id":81,"name":"trending_entrypoint_redesign","variant":"treatment_1","version":"7"},{"id":119,"name":"work_manager_android","variant":"true","version":"4"}],"localPersisted":{},"overrides":{}},"features":{"mweb_xpromo_revamp_v2":{"owner":"growth","variant":"control_2","experiment_id":457},"chat_subreddit":true,"show_amp_link":true,"sequence_orbit":true,"chat_rollout":true,"chat_reddar_reports":true,"default_srs_holdout":{"owner":"relevance","variant":"control_1","experiment_id":171},"richtext_previews":true,"email_verification":{"owner":"growth","variant":"control_1","experiment_id":1038},"sequence":true,"mweb_xpromo_modal_listing_click_daily_dismissible_ios":true,"sequence_heartbeat":true,"dual_write_user_prefs":true,"show_nps_survey":true,"do_not_track":true,"chat_user_settings":true,"sequence_x1f40d_x1f451":true,"sequence_submit":true,"mweb_xpromo_interstitial_comments_ios":true,"mweb_xpromo_modal_listing_click_daily_dismissible_android":true,"micronutrient_drip":true,"mweb_xpromo_interstitial_comments_android":true,"seq_randomize_sort":true,"chat_group_rollout":true,"mweb_sharing_clipboard":{"owner":"growth","variant":"treatment_1","experiment_id":315},"spez_modal":true,"mweb_link_tab":{"owner":"growth","variant":"control_2","experiment_id":404}},"isCustomizeFlyoutShowing":false,"topContentDismissalPrefsSet":{},"language":"en","loggedOutData":{"accountCompleteness":{"collapsed":false,"step":"initial"},"dataLoaded":false,"feedMultiName":[],"homeFeed":{"similar":[],"topBanner":{"isClosed":false,"viewsCount":0},"views":[],"votes":{}},"isFrontpageHome":false,"postsCount":0,"tooltips":{"home_active":{},"subscribe_feed":{},"subscribe_id":{},"subscribe_reminder":{},"vote":{},"vote_reminder":{},"vote_success":{}},"views":{"count":{"beforeBanner":0,"total":0},"posts":[]},"votes":{"comments":{},"posts":{}}},"loid":{"blob":"Z0FBQUFBQmI0dmtuTVZGTDZFZmdLRWlnZ0RvWFlFQ0ZZRTl0M2M4STVZUzFvTTFlMTlmTFdkaTNfMHFpVnBUd3hHbnN4QlJsNXJKWVpoeGRWVi10U2JLNmN3TUN3ZExQU0s5ZGV5NVdhWkREbGNheHFvbUp1SVRidGRCNDB1X3p5cVBxU2N0clk0OEQ","loid":"00000000000q72897y","loidCreated":"1514669809917","version":2},"notificationPrefs":{"api":{"getPreferences":{"error":null,"loaded":false,"pending":false},"setPreferences":{"error":null,"loaded":false,"pending":false}},"isPrePromptVisible":false,"preferences":{"chatMessages":false,"trendingPosts":false,"unreadMessages":false}},"ownedBadges":{},"prefs":{"allowClickTracking":true,"autoplayVideo":true,"collapsedTraySections":{"favorites":false,"multis":false,"moderating":false,"subscriptions":false,"profiles":false},"commentMode":"richtext","layout":"classic","rememberCommunityLayout":false,"defaultCommentSort":"confidence","editorMode":"richtext","featuresViewedHistory":{"commentForm":{"markdownModeNotification":true}},"geopopular":"","globalTheme":"REDDIT","hasSeenCustomizeFlyout":false,"hideNSFW":true,"labelNSFW":true,"markMessagesRead":true,"nightmode":true,"openPostInNewTab":false,"over18":false,"profileOptOut":false,"showActiveCommunities":true,"showTwitter":false,"sort":"hot","stylesEnabled":true,"subreddit":{},"topContentDismissalTime":null,"topContentTimesDismissed":0,"rememberCommunitySort":false,"useMarkdown":false},"reddaid":"ZHCIBOEWR6OIYHYA","session":{"accessToken":"57023348398-gxh2ULOEJD7QSJHxPn86RH4-jfE","expires":"2019-04-16T19:37:32.432Z","expiresIn":3600,"unsafeLoggedOut":false,"safe":true},"sessionRefreshFailed":false,"sessionTracker":"SvCwodRUB15pym5QKw.0.1555439862159.Z0FBQUFBQmN0aUQyM3g2MEZiSm1Vd05RN3RNUjFLNXJyT3g2UlNZeDZuai1PYmozbE5hd1JMSFAxanEwY0JlbUlLdjFsdjgwX1VyVi02VEVaM0V3SmlXOS1tblAta0pyVnlkOHVWXzc0eTN3UTc4RFNDSWY2aElRaF9BY3diV3k2OEhxQUtDSGhQYXA","shuffledCategories":["electronics","writing","videos","picsAndGifs","tech","entertainment","relationships","sports","fashion","science","gaming","music","photography","health","dIY","food","videoGames","news","advice","funny","outdoors","travel","memes","tv","vroom","art","animals"],"temporaryGQL":{"isEmployee":false,"isLoggedIn":true},"wallets":{},"whitelist":{"api":{},"data":[]}},"userFlair":{},"users":{"api":{"error":{},"pending":false},"appliedBadges":{},"models":{},"nameAvailable":{},"publicWallets":{},"topOCCreators":{}},"widgets":{"idCardIds":{},"menuIds":{},"models":{},"moderatorIds":{},"sidebar":{}}}; window.___prefetches = ["https://www.redditstatic.com/desktop2x/CommentsPage.9f6beb70f9c4353c49ab.js","https://www.redditstatic.com/desktop2x/Subreddit.2b0e2e05493c1d09c52c.js"];</script><script>