forked from nguyenphu04723/ThemeBlogspot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kompiajaib-theme.xml
1441 lines (1408 loc) · 138 KB
/
kompiajaib-theme.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<HTML expr:dir='data:blog.languageDirection' itemscope='' itemtype='http://schema.org/NewsArticle' lang='id'>
<b:attr cond='data:blog.isMobileRequest == "true"' name='amp' value='amp'/>
<b:class cond='data:blog.pageType == "static_page"' name='static_page'/>
<head>
<meta charset='utf-8'/>
<meta content='width=device-width,minimum-scale=1,initial-scale=1' name='viewport'/>
<meta content='IE=9; IE=8; IE=7; IE=EDGE; chrome=1' http-equiv='X-UA-Compatible'/>
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.pageTitle/></title>
<b:else/>
<b:if cond='data:blog.pageType == "error_page"'>
<title>404: Page Not Found | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>
</b:if>
<!-- Chrome, Firefox OS and Opera -->
<meta content='#00626B' name='theme-color'/>
<!-- Windows Phone -->
<meta content='#00626B' name='msapplication-navbutton-color'/>
<meta content='blogger' name='generator'/>
<link expr:href='data:blog.homepageUrl + "favicon.ico"' rel='icon' type='image/x-icon'/>
<link href='https://4.bp.blogspot.com/-AlKgA0khl74/W6uk6nCx4XI/AAAAAAAACAk/8tYhvytsxXIIlOFKf2U2Zyh7OVk8QZ6TACLcBGAs/s1600/32x32.png' rel='icon' sizes='32x32'/>
<link href='https://1.bp.blogspot.com/-T3liyFw8WVE/W6uk50JI7oI/AAAAAAAACAY/ZZxhJqwAdKwHfIq536lF5fqHutrBp0gBACLcBGAs/s1600/192x192.png' rel='icon' sizes='192x192'/>
<link href='https://1.bp.blogspot.com/-9PB2nG_5wZU/W6uk5ltSLZI/AAAAAAAACAU/0g8cJyFU4nEws4SlExaEbC1eUzNdcTj3ACLcBGAs/s1600/180x180.png' rel='apple-touch-icon-precomposed'/>
<meta content='https://1.bp.blogspot.com/-XqTIGHKy40g/W6uk45L_erI/AAAAAAAACAQ/OYTSiR93LZIqb6h7U9NiLj5faHUxv4D-QCLcBGAs/s1600/144x144.png' name='msapplication-TileImage'/>
<b:if cond='data:blog.isMobileRequest == "false"'>
<link expr:href='data:blog.url' rel='canonical'/>
<link expr:href='data:blog.url + "?m=1"' rel='amphtml'/>
</b:if>
<b:if cond='data:blog.isMobileRequest == "true"'>
<link expr:href='data:blog.url' rel='canonical'/>
</b:if>
<link expr:href='data:blog.homepageUrl + "feeds/posts/default"' expr:title='data:blog.title + "- Atom"' rel='alternate' type='application/atom+xml'/>
<link expr:href='data:blog.homepageUrl + "feeds/posts/default?alt=rss"' expr:title='data:blog.title + "- RSS"' rel='alternate' type='application/rss+xml'/>
<link expr:href='"https://www.blogger.com/feeds/" + data:blog.blogId + "/posts/default"' expr:title='data:blog.title + "- Atom"' rel='alternate' type='application/atom+xml'/>
<link href='https://plus.google.com/u/0/108087962843007456202' rel='me'/>
<link href='https://www.blogger.com/openid-server.g' rel='openid.server'/>
<link expr:href='data:blog.homepageUrl' rel='openid.delegate'/>
<link href='https://plus.google.com/u/0/108087962843007456202/posts' rel='publisher'/>
<meta content='xxxxx' name='msvalidate.01'/>
<meta content='xxxxx' name='google-site-verification'/>
<meta content='xxxxx' name='hitads'/>
<b:if cond='data:blog.pageType == "item"'>
<meta expr:content='data:blog.pageName' name='keywords'/>
<b:if cond='data:blog.postImageUrl'>
<link expr:href='data:blog.postImageUrl' rel='image_src'/>
</b:if>
<meta expr:content='data:blog.pageName' property='og:title'/>
<meta expr:content='data:blog.canonicalUrl' property='og:url'/>
<meta content='article' property='og:type'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' name='description'/>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
<b:else/>
<meta expr:content='"Silahkan kunjungi " + data:blog.pageTitle + " Untuk membaca postingan-postingan menarik."' name='description'/>
<meta expr:content='"Silahkan kunjungi " + data:blog.pageTitle + " Untuk membaca postingan-postingan menarik."' property='og:description'/>
</b:if>
</b:if>
<meta expr:content='data:blog.title' property='og:site_name'/>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta expr:content='data:blog.title' name='keywords'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' name='description'/>
<meta expr:content='data:blog.title' property='og:title'/>
<meta content='website' property='og:type'/>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
</b:if>
</b:if>
<b:if cond='data:blog.postImageUrl'>
<meta expr:content='data:blog.postImageUrl' property='og:image'/>
<meta content='530' property='og:image:width'/>
<meta content='280' property='og:image:height'/>
<meta expr:content='data:blog.pageName' property='og:image:alt'/>
<b:else/>
<meta content='https://3.bp.blogspot.com/-w47GFtvZORY/W9hSH2llS0I/AAAAAAAABBc/8xbrm5ggTo0G9GkDVaGfS2VNSpqATFBJQCLcBGAs/s320/2017-09-10-07-40-30923110_Kawan-Kodingpng790.jpg' property='og:image'/>
<meta expr:content='data:blog.title' property='og:image:alt'/>
<meta content='158' property='og:image:width'/>
<meta content='158' property='og:image:height'/>
</b:if>
<meta content='129858171117292' property='fb:app_id'/>
<meta content='100017551931135' property='fb:admins'/>
<meta content='100017551931135' property='fb:profile_id'/>
<meta content='100017551931135' property='fb:pages'/>
<meta content='Keanu Rivaldy' name='Author'/>
<meta content='https://www.facebook.com/' property='article:author'/>
<meta expr:content='data:blog.title' name='twitter:site'/>
<meta content='summary_large_image' name='twitter:card'/>
<meta content='@xxx' name='twitter:creator'/>
<link href='//1.bp.blogspot.com' rel='dns-prefetch'/><link href='//2.bp.blogspot.com' rel='dns-prefetch'/><link href='//3.bp.blogspot.com' rel='dns-prefetch'/><link href='//4.bp.blogspot.com' rel='dns-prefetch'/><link href='//www.blogger.com' rel='dns-prefetch'/><link href='//fonts.googleapis.com' rel='dns-prefetch'/><link href='//resources.blogblog.com' rel='dns-prefetch'/><link href='//www.facebook.com' rel='dns-prefetch'/><link href='//plus.google.com' rel='dns-prefetch'/><link href='//twitter.com' rel='dns-prefetch'/><link href='//www.youtube.com' rel='dns-prefetch'/><link href='//feedburner.google.com' rel='dns-prefetch'/><link href='//feeds.feedburner.com' rel='dns-prefetch'/><link href='//github.com' rel='dns-prefetch'/><link href='//platform.twitter.com' rel='dns-prefetch'/><link href='//apis.google.com' rel='dns-prefetch'/><link href='//connect.facebook.net' rel='dns-prefetch'/><link href='//www.google-analytics.com' rel='dns-prefetch'/><link href='//pagead2.googlesyndication.com' rel='dns-prefetch'/><link href='//googleads.g.doubleclick.net' rel='dns-prefetch'/><link href='//www.gstatic.com' rel='dns-prefetch'/><link href='//www.googletagservices.com' rel='dns-prefetch'/><link href='//static.xx.fbcdn.net' rel='dns-prefetch'/><link href='//tpc.googlesyndication.com' rel='dns-prefetch'/><link href='//syndication.twitter.com' rel='dns-prefetch'/><link href='//fonts.gstatic.com' rel='dns-prefetch'/><link href='https://cdn.ampproject.org' rel='dns-prefetch'/><link href='https://3p.ampproject.net' rel='dns-prefetch'/><link href='https://cdn.rawgit.com' rel='dns-prefetch'/><link href='https://lh3.googleusercontent.com' rel='dns-prefetch'/><link href='https://tpc.googlesyndication.com' rel='dns-prefetch'/><link href='https://i.ytimg.com' rel='dns-prefetch'/><link href='https://i3.ytimg.com' rel='dns-prefetch'/><link href='https://img.youtube.com' rel='dns-prefetch'/><link href='https://www.googletagmanager.com' rel='dns-prefetch'/><link href='https://adservice.google.co.id/' rel='dns-prefetch'/><link href='https://adservice.google.com/' rel='dns-prefetch'/><link href='https://cdn.staticaly.com' rel='dns-prefetch'/>
<!--<b:skin><![CDATA[
#header-wrapper{width:100%;}
#main-wrapper{width:60%;float:right;}
#sidebar-wrapper{width:40%;float:left;}
ul,li{list-style: none;}
]]></b:skin>
<b:if cond='data:blog.pageType != "error_page"'>
<style amp-custom='amp-custom'>
/*<![CDATA[*/
#navbar-iframe{height:0;visibility:hidden}body{background:#fff}body,.btn{font-family:-apple-system,BlinkMacSystemFont,"Roboto","Segoe UI","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif}.post-body a[href^="http://"]:after,.post-body a[href^="https://"]:after,.transition4s,a{transition:all .4s ease-in-out}.spoiler-amp amp-accordion h4,:active,:focus{outline:0}::selection{background:#2B0C93}a img{border-width:0}b{color:#000}*{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#toc a:hover,.PageList ul li a:hover,.author a:hover,.breadcrumbs a:hover,.color2B0C93,.halaman-kanan:hover a,.halaman-kiri:hover a,.post-body a,.post-body blockquote cite,.post-body code,.post-body pre,.post-body pre code,.postmeta a:hover,.post-body a,a.tombol-link:hover{color:#2B0C93}.colorfff,::selection{color:#fff}#disqusbox::before,#related::before,#video-top::before,#video-top2::before,#video-top3::before,#video-top4::before,#video-top5::before,:target::before{content:"";display:block;height:70px;margin-top:-70px;visibility:hidden}#disqusbox::before{height:90px;margin-top:-90px}.color333,.post-body .table td,.post-body .table th,.post-body h1,.post-body h2,.post-body h3,.post-body h4,.post-body h5,.post-body h6,.footer1 h4,.footer2 h4,.footer3 h4,.footer4 h4{color:#333}#toc a,#toc li,.color555{color:#555}a,a:hover,abbr[title]{text-decoration:none}.displayinlineblock,.inline-block,.name-sender,.photo-sender,.post-body a[href^="http://"]:after,.post-body a[href^="http://"]:hover:after,.post-body a[href^="https://"]:after,.post-body a[href^="https://"]:hover:after,.post-sender::before,.status-msg-wrap a{display:inline-block}#navbar-iframe,.archive_page #sidebar-wrapper,.archive_page .post .post-body .snippets,.contact-box amp-accordion section:not([expanded]) .show-less,.contact-box amp-accordion section[expanded] .show-more,.displaynone,.home_page #sidebar-wrapper,.post .jump-link,.post-body .thumbnail,.post-body a.btn[href^="http://"]:after,.post-body a.btn[href^="http://"]:hover:after,.post-body a.btn[href^="https://"]:after,.post-body a.btn[href^="https://"]:hover:after,.post-body a[href^="http://kodeken.com/"]:after,.post-body a[href^="http://kodeken.com/"]:hover:after,.post-body a[href^="https://kodeken.com/"]:after,.post-body a[href^="https://kodeken.com/"]:hover:after,.quickedit,.static_page #comments,.static_page #sidebar-wrapper,.static_page .disqus,.static_page .leaderboard,amp-accordion.shares section:not([expanded]) .show-less,amp-accordion.shares section[expanded] .show-more,amp-sidebar li.menu-mobile,body>span.notranslate,section:not([expanded]) .show-less,section[expanded] .show-more,.home_page .custom .post .post-body,.post_page .backwlabel,.kategori a:nth-child(n+2){display:none}.disclaimer_box .content p,.m0,.post-body .post-toc,.post-body .separator a,.spoiler-amp amp-accordion div p,.spoiler-amp amp-accordion div pre,.static_page .footer-wrapper,.static_page .outer-wrapper,.status-msg-body,body{margin:0}.disclaimer_box .content p,.iklan-ataspost,.iklan-bawahpost,.p0,.post-body .post-toc,.spoiler-amp amp-accordion div p,.static_page #main-wrapper,.static_page .outer-wrapper,.static_page .post-body,.status-msg-wrap,.home_page .content-wrapper{padding:0}.floatleft,.img-left,.photo-sender,.post-body .post-content,.spoiler-amp .spoiler_title{float:left}.floatright,.img-right,.post-body .post-toc{float:right}#toc a,#toc li,.fontroboto,.status-msg-wrap,.scrollToTop{font-family:-apple-system,BlinkMacSystemFont,"Roboto","Segoe UI","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif}#toc a,#toc li,.fontweight400,.post-body h1,.post-body h2,.post-body h3,.post-body h4,.post-body h5,.post-body h6,.spoiler-amp amp-accordion h4,.status-msg-wrap{font-weight:400}.btn,.btn-link,#btn_toc,.fontweight600,.name-sender,.post-body a,.post-body a.btn[href^="http://"],.post-body a.btn[href^="https://"],.post-body a[href^="http://"],.post-body a[href^="https://"],.post-body b,.status-msg-wrap a,.tg-bf,.footer1 a.fontweight600{font-weight:500}.disclaimer_box .content b,.fontweight700{font-weight:700}.positionfixed{position:fixed}#toc a,.contact-me,.displayblock,.post-body blockquote cite{display:block}.borderradius3,.spoiler-amp amp-accordion h4,.status-msg-wrap a,kbd{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.post-body blockquote cite,.post-body i,.tg-it{font-style:italic}.post-body pre,i.klik-url{-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all}.liststyle0{list-style:none}.clear{clear:both}#header-wrapper,.outer-wrapper,.backwlabel{width:100%;max-width:1440px;box-shadow:0 0 40px 0 rgba(0,0,0,.1)}#header a span{background:url(//3.bp.blogspot.com/-jLMI8Oza1Sk/WrBzRCAInZI/AAAAAAAADAs/0y51ES6y4KgyyHXQPGpQbma8tgrR-9wYwCLcBGAs/s3000/animasi_header.png) repeat-y;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-webkit-animation:aitf 80s linear infinite;-webkit-transform:translate3d(0,0,0);-webkit-backface-visibility:hidden;background-clip:text}#main-wrapper,#sidebar-wrapper{word-wrap:break-word}.outer-wrapper{padding:0 10px}#header-wrapper{height:70px;margin:0 auto;padding:0 20px;top:0;left:0;background:#fff;z-index:999}#header{width:20%;line-height:70px}#header h1,#header h1 a,#header p,#header p a{font-size:30px;letter-spacing:-1px;word-spacing:-5px;color:#fff}.search_box{width:30%;line-height:70px}.BlogSearch .gsc-search-box{width:100%}.BlogSearch input.gsc-input{width:99%;width:calc(100% - 10px);padding-right:4px\9;padding-left:4px\9;margin-bottom:0;height:32px;padding:0 12px;font:400 14px -apple-system,BlinkMacSystemFont,"Roboto","Segoe UI","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;line-height:1;vertical-align:middle;background-color:#fff;background-image:none;border:1px solid transparent;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.BlogSearch input.gsc-input:focus{border-color:#2B0C93;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(43,12,147,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(43,12,147,.6)}.BlogSearch input.gsc-input::-moz-placeholder{opacity:1}.BlogSearch input.gsc-input:-moz-placeholder,.BlogSearch input.gsc-input:-ms-input-placeholder,.BlogSearch input.gsc-input::-moz-placeholder,.BlogSearch input.gsc-input::-webkit-input-placeholder{color:#999}.BlogSearch td.gsc-search-button{width:60px}.BlogSearch input.gsc-search-button{background-color:#2B0C93;color:#fff;border:0;width:100%;height:34px;padding:6px 0;text-align:center;font:500 14px -apple-system,BlinkMacSystemFont,"Roboto","Segoe UI","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;line-height:1.428571429;vertical-align:middle;background-image:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.page{width:47%;width:calc(50% - 48px);padding:0 0 0 20px}.PageList ul{text-align:right;position: relative;top: 22px;}.PageList ul li a{font-size:95%;line-height:70px;padding:0 15px;color:#fff}#main-wrapper{width:76.7%;width:calc(100% - 327px);margin:0 auto}.post{padding:10px 0 0 80px}.post h1.post-title{font-size:40px;font-weight:300;line-height:1.2;margin:8px 0 10px -80px;padding-left:10px}.post .thumb-post{margin:20px -10px 10px -80px}.post-body{font-size:16px;line-height:1.6;width:80%;width:calc(100% - 200px);counter-reset:blockquote}.post-body h1,.post-body h2,.post-body h3,.post-body h4,.post-body h5,.post-body h6{line-height:1.1;margin:10px 0}.post-body h1{font-size:40px}.post-body h2{font-size:38px}.post-body h3{font-size:34px}.post-body h4,.post-body h5,.post-body h6{font-size:30px}.post-body a:hover{color:#000}.post-body img{width:100%;height:auto}.post-body .share-box{position:relative;margin-top:20px}.post-body amp-carousel,.post-body amp-facebook,.post-body amp-iframe[src*='youtube.com'],.post-body amp-youtube{margin:0 0 0 -80px}.post-body amp-img.emojika{vertical-align:-12%}.post-body blockquote,.post-body blockquote.kata-kata{font-size:16px;font-family:Georgia;color:#000;border-left:3px solid #2B0C93;padding:10px;margin:0 0 0 -80px;background:#efefef}.post-body blockquote.kata-kata{counter-increment:blockquote;padding-left:40px;position:relative}
.post-body blockquote.kata-kata:before{content:counter(blockquote)'.';position:absolute;left:0;top:0;color:#000;font-size:16px;z-index:2;width:40px;height:40px;line-height:40px;text-align:center}.post-body pre,.tg-left{text-align:left}.post-body blockquote cite{font-size:16px;margin-top:5px}.post-body blockquote cite:before{content:"\2014 \2009";color:#000}.post-body code,.post-body pre,.post-body pre code{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;white-space:initial;word-spacing:normal;word-break:normal;font-size:16px;font-weight:400;line-height:1.1em}.post-body pre{border-left:3px solid #2B0C93;background:#f6f0ff;padding:8px 10px;overflow:auto;max-width:98%;max-width:calc(100% + 80px);margin:0 0 0 -80px}.post-body ul li pre{max-width:100%;margin:10px 0}.tg-right{text-align:right}.center,.tg-center{text-align:center}#btn_toc,.back_toc{cursor:pointer}.post-body .post-toc{width:180px;position:-webkit-sticky;position:sticky;top:100px}.post-body .post-content{width:80%;width:calc(100% - 200px)}#btn_toc{margin-left:15px}#btn_toc svg,.messenger-icon,.va-middle{vertical-align:middle}#toc{display:grid}#toc a,#toc li{font-size:95%;line-height:1.1}#toc li{margin-bottom:5px}.post-toc{border-left:4px solid #2B0C93}#toc ol{margin:5px 0 0;padding:0 0 0 30px}.post-body p.desc-post{font-size:16px;line-height:1.6}.author,.postmeta{color:#666}.author,.post-labels{padding:2px 5px 2px 0}.authorphoto,.post-labels{display:block}.postmeta,h3.date-header{font-size:95%}.postmeta{width:170px;margin:20px 0 0;position:-webkit-sticky;position:sticky;top:100px}.author a,.postmeta a{color:#666;font-weight:400}span.post-author,.content-wrapper,.backwlabel{position:relative}.postmeta .foto{width:80px;height:80px;margin-bottom:5px;-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%;overflow:hidden}
.kategori{margin:5px 10px 11px 0;display:block;overflow:hidden;position:absolute;bottom:0;right:0}
.kategori a,.postby a{display:inline-block;padding:4px 9px 3px;text-transform:uppercase;font-size:11px}.postby{margin:5px 10px 11px 0;display:block;overflow:hidden;position:absolute;bottom:0;}
.postmeta .foto img{-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%}.postmeta svg{width:18px;height:18px;vertical-align:-1px;display:inline;float:left;margin-right:4px}.postmeta svg path{fill:#999}.post-labels svg+a{display:block;margin-left:0;margin-top:0}.post-labels a{display:block;margin-left:22px;margin-top:5px}.post-icons svg{width:24px;height:24px}.post-icons{position:absolute;top:0;left:60px}h2.donate{font-size:16px;margin:10px 0}.reaction-buttons{margin-top:20px}.reactions-label{font-size:16px;margin-right:.7em}.reactions-iframe{overflow:hidden}.reactions-iframe amp-iframe{vertical-align:-3px;margin-left:-.7em}.breadcrumbs{background:#fff;line-height:1.2em;width:auto;overflow:hidden;margin:0 0 10px -80px;padding-left:10px;font-size:90%;color:#888;text-overflow:ellipsis;-webkit-text-overflow:ellipsis;white-space:nowrap}.breadcrumbs a{text-decoration:none;color:#666}.breadcrumbs svg{width:14px;height:14px;vertical-align:-2px}.breadcrumbs svg path{fill:#666}#sidebar-wrapper{background:#fff;width:327px;height:90.4%;height:calc(100vh - 70px);top:70px;left:10px;overflow-x:hidden;overflow-y:auto}.sidebar h2,.sidebar h2 span{padding:0 0 6px;line-height:1;font-size:22px}.sidebar h2{text-transform:uppercase;margin:0 0 10px;border-bottom:3px solid #dedede}.sidebar h2 span{position:relative}.sidebar h2 span:after{content:"";background:#2B0C93;height:3px;width:100%;position:absolute;bottom:-2px;left:0}.sidebar{color:#666;line-height:1.3em;font-size:16px;padding-top:10px;padding-right:10px}.sidebar .widget{margin:0 auto 10px;padding:0}.kotak_iklan{width:272px}.sidebar .widget-content,.m0auto{margin:0 auto}.kotak_iklan{margin:0 auto 10px}.sidebar .widget:last-child{margin:0 auto;padding:0 0 20px}.kotak_iklan,a.tombol-link{text-align:center}.kotak{background:#aaa;height:125px;width:125px;display:inline}.kotak:nth-child(1),.kotak:nth-child(3),.open-recent.mobile-up{margin-right:22px}.kotak:nth-child(1),.kotak:nth-child(2){margin-bottom:22px}.grayscale{background:gray}.banner300sidebar{background:#FFECB3;width:300px;height:250px;position:relative;margin:0 auto 10px}.banner300sidebar:before{content:"Your Banner Here";font-weight:500;font-size:24px;color:#555;line-height:250px;position:absolute;top:0;left:0;right:0;text-align:center}.banner300sidebar img{display:block}.link-btn{position:relative;padding-top:15px}.label-link-btn{font-size:11px;color:#333;position:absolute;top:0;left:0}.label-link-btn svg{width:15px;height:15px;vertical-align:-3px}.label-link-btn svg path{fill:#00aecd}a.tombol-link{width:100%;height:41px;display:block;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;line-height:41px;box-shadow:0 1px 1px rgba(255,255,255,.35) inset,0 1px 1px rgba(0,0,0,.3);align-items:center;justify-content:center;background-color:#2B0C93;border:1px solid #fff;border-radius:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none;color:#fff;font-size:16px;margin:5px auto}a.tombol-link:hover{background-color:#fff}#side-bar h6,amp-sidebar li a{color:#efefef}.btn-sidebaramp{background-image:url("data:image/svg+xml;charset=utf8,%3csvg viewBox='0 0 25 25' width='34' height='34' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cg%3e%3cpath style='fill:%23ffffff' d='M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z'%3e%3c/path%3e%3c/g%3e%3c/svg%3e");background-repeat:no-repeat;background-size:34px 34px;background-position:center center;background-color:transparent;width:48px;height:70px;line-height:70px;border:none;position:absolute;top:0;right:10px;z-index:1001;cursor:pointer}.btn-sidebaramp:hover{background-image:url("data:image/svg+xml;charset=utf8,%3csvg viewBox='0 0 25 25' width='34' height='34' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cg%3e%3cpath style='fill:%232B0C93' d='M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z'%3e%3c/path%3e%3c/g%3e%3c/svg%3e")}amp-sidebar{width:300px;height:100%;height:100vh;opacity:0.98;background-image:linear-gradient(151deg,#2b0c93 14%,rgba(248,66,114,0.96) 100%)}svg.amp-close-image{position:absolute;top:15px;left:16px;cursor:pointer}amp-sidebar ul{margin-top:30px}amp-sidebar li:first-child{padding-top:0}amp-sidebar li a{font-size:16px;padding:10px 20px}amp-sidebar button{margin-left:20px}#side-bar h6{border:none;background-color:#2B0C93;font-size:16px;margin:0 0 10px 20px}amp-sidebar ul li.drop ul{background:#de133b;margin-top:10px}amp-sidebar ul li.drop ul li,amp-sidebar ul li.drop ul li:first-child{padding:10px 20px 0 40px}amp-sidebar li.drop section{padding:10px 0 0}amp-sidebar li.drop li{border:0}amp-sidebar li.drop li:last-child{padding:10px 20px 10px 40px;margin-bottom:-2px}#side-bar h6 svg{width:20px;height:20px;vertical-align:middle;float:right;margin-right:20px}#side-bar h6 svg path{fill:#efefef}.ampstart-social-follow,.follow_sidebar,.logo_sidebar{display:block;text-align:center}.logo_sidebar{height:auto;margin:40px auto 0;font-family:inherit;font-size:26px;font-weight:500;color:#fff;letter-spacing:-1px;word-spacing:-5px;line-height:1}.follow_sidebar{line-height:normal;letter-spacing:normal;font-family:inherit;text-transform:uppercase;font-weight:500;color:#fff;font-size:.94rem;padding-top:1.5rem}.ampstart-social-follow{margin:.5rem 0 1rem;-webkit-box-pack:initial;-ms-flex-pack:initial;justify-content:initial;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style:none;padding-left:0}.ampstart-social-follow li{display:inline-block;margin-right:0;padding:0}.ampstart-social-follow li .gp svg{vertical-align:4px}.p1{padding:.5rem}svg:not(:root){overflow:hidden}.ampstart-icon,.ampstart-sidebar .ampstart-icon{fill:#fff}.archive_page .blog-pager svg path,.home_page .blog-pager svg path,svg.panahkanan path,svg.panahkiri path{fill:#fff}.archive_page #Blog1,.home_page #Blog1{padding-bottom:55px;position:relative}.archive_page .home-box,.archive_page .lasthome-box,.archive_page a.blog-pager-newer-link,.archive_page a.blog-pager-older-link,.archive_page a.home-link,.home_page .home-box,.home_page .lasthome-box,.home_page a.blog-pager-newer-link,.home_page a.blog-pager-older-link,.home_page a.home-link{line-height:45px;position:absolute;width:43px;height:43px;text-align:center}
.archive_page .blog-pager svg,.home_page .blog-pager svg,.gmail-icon{width:24px;height:24px;vertical-align:-5px}.archive_page #blog-pager,.home_page #blog-pager{clear:both;text-align:center;position:absolute;width:200px;height:45px;line-height:45px;bottom:0;left:50%;margin:0 0 0 -110px;overflow:visible}.archive_page #blog-pager-home-link a.home-link,.archive_page a.blog-pager-newer-link,.archive_page a.blog-pager-older-link,.home_page #blog-pager-home-link a.home-link,.home_page a.blog-pager-newer-link,.home_page a.blog-pager-older-link{background:#2B0C93;border:1px solid transparent;bottom:0}.archive_page a.blog-pager-older-link,.home_page a.blog-pager-older-link{right:0;z-index:2}.archive_page a.blog-pager-newer-link,.home_page a.blog-pager-newer-link{left:0;z-index:2}.archive_page #blog-pager-home-link a.home-link,.home_page #blog-pager-home-link a.home-link{left:50%;margin-left:-22.5px}.archive_page .home-box,.archive_page .lasthome-box,.home_page .home-box,.home_page .lasthome-box{background:#2B0C93;border:1px solid transparent;border-radius:3px;bottom:0;z-index:1;cursor:not-allowed}.archive_page .home-box,.home_page .home-box{left:0}.archive_page .lasthome-box,.home_page .lasthome-box{right:0}.halaman{line-height:1.2em;margin:0;height:0;width:100%;max-width:1440px;position:fixed;bottom:0;left:0;z-index:999;opacity:0}.halaman-kanan,.halaman-kiri{background:#2B0C93;width:40px;height:40px;position:absolute;bottom:0}.current-pageleft,.current-pageright,.halaman-kanan a,.halaman-kiri a,.isihalaman-kanan,.isihalaman-kiri{width:40px;height:40px;position:absolute;bottom:0;z-index:2;right:0}.current-pageleft,.current-pageright{cursor:not-allowed}.halaman-kiri{border-radius:3px 0 0;right:80px}.halaman-kanan{right:40px}.current-pageleft,.current-pageright,.halaman-kanan a,.halaman-kiri a{color:transparent;font-size:0;line-height:1}svg.panahkanan,svg.panahkiri{position:absolute;top:50%;left:50%;margin-top:-17px;width:34px;height:34px;margin-left:-17px;z-index:1}.related-post h4{margin:20px 0 10px;font-size:24px}.related-post{width:100%;padding-right:200px}.disqus-box{margin:20px 200px 0 80px}.disqus{margin:0 -130px 0 -8px;padding:0 0 20px}.share-box{position:relative;margin-top:20px;padding-right:200px}.footer-wrapper{margin:40px -10px 0 327px;padding:3px 0 0;font-size:16px;font-weight:400;line-height:1.6em;text-align:left}.footer2-wrapper{background:#fff;background:rgba(255,255,255,.8);padding:40px 20px 60px}.footer1{width:34%;padding:0 30px 10px 0}.footer2,.footer3,.footer4{width:22%;padding:0 0 10px 30px}.footer1 h4,.footer2 h4,.footer3 h4,.footer4 h4{font-size:20px}.footer-wrapper a{font-weight:400;color:#555}.footer-wrapper a:hover{color:#2B0C93}.footer1 p.desktop-up{width:100%}.footer-wrapper ul{margin:5px 0}.footer-wrapper ul.social{margin:5px 0 0 -4px}.footer1 .logo-footer{font-size:40px;margin-bottom:10px;line-height:1}.footer1 .logo-footer a:hover,.home_page .post:hover h2.post-title a,.open-chat{-webkit-animation:flash 1s linear 1s infinite normal;animation:flash 1s linear 1s infinite normal}@-webkit-keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}.home_page .post h2.post-title a:hover{-webkit-animation:none;animation:none}#footer{margin:30px 20px 33px}#FollowByEmail1 h2{width:15%;color:#fff;margin:0;line-height:38px}.follow-by-email-inner{width:85%;margin:0}.follow-by-email-inner .follow-by-email-address{width:39.5%;width:calc(40% - 10px);font:400 14px -apple-system,BlinkMacSystemFont,"Roboto","Segoe UI","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;height:36px;line-height:1;margin:0 10px 0 0;padding:0 10px;color:#555;position:relative;z-index:1;background:#fff;border:none}.follow-by-email-inner .follow-by-email-submit{width:35%;height:38px;font-size:16px;text-transform:uppercase;color:#FFF;padding:0 20px;cursor:pointer;background-color:#2B0C93;border:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.follow-button{width:24.5%;width:calc(25% - 10px);margin:0 0 0 10px}hr{height:0;border:0;border-top:1px solid #ddd}kbd{-moz-box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 2px #fff inset;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 2px #fff inset;background-color:#f7f7f7;border:1px solid #ccc;box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 2px #fff inset;font-family:Arial,Helvetica,sans-serif;font-size:11px;line-height:1.4;margin:0 .1em;padding:.1em .6em;text-shadow:0 1px 0 #fff;vertical-align:3px}.post-body a.btn[href^="http://"],.post-body a.btn[href^="https://"],a.btn-primary,a.btn:hover{color:#fff}.btn,.btn:active{background-image:none}.btn{padding:6px 12px;margin-bottom:5px;font-size:16px;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-radius:4px;border:1px solid transparent;display:inline-block}.btn:focus,.btn:hover{color:#333;text-decoration:none;outline:0}.btn:active{outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-primary,.parse_box>section>:first-child,.kategori a,.postby a{color:#fff;background-color:#2B0C93;border-color:#230a77}.btn-primary:focus,.parse_box>section>:first-child:focus{color:#fff;background-color:#230a77;border-color:#1e0966}.btn-primary:active,.btn-primary:hover,.kategori a:hover,.postby a:hover,.parse_box>section>:first-child:active,.parse_box>section>:first-child:hover{color:#fff;background-color:#230a77;border-color:#1e0966}.btn-link{color:#337ab7;border-radius:0}.btn-link,.btn-link:active{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-lg{padding:10px 16px;font-size:16px;line-height:1.3333333;border-radius:6px;font-weight:bold}.btn-sm,.btn-xs{font-size:12px;line-height:1.5;border-radius:3px}.btn-sm{padding:5px 10px}.btn-xs{padding:1px 5px}.btn-block{display:block;width:100%;white-space:unset}.btn-block+.btn-block{margin-top:5px}.btn-play{color:#fff;background-color:#D32F2F;border-color:#C62828;padding:10px 16px 10px 40px;position:relative;font:500 18px Roboto,sans-serif}.btn-play:focus{color:#fff;background-color:#C62828;border-color:#B71C1C}.btn-play:active,.btn-play:hover{color:#fff;background-color:#C62828;border-color:#B71C1C}.btn-play:before{content:"";color:#fff;background-image:url(https://1.bp.blogspot.com/-DpJGZ47Olck/WSkXyTDP1kI/AAAAAAAArQQ/UwIxH4hYRIkbgZkN0_mUrkK12HveGFsXACLcB/s1600/play.png);background-size:cover;background-repeat:no-repeat;width:30px;height:40px;position:absolute;left:0;top:50%;margin-top:-20px}.spoiler-amp amp-accordion div blockquote,.spoiler-amp amp-accordion div p,.spoiler-amp amp-accordion div pre{-webkit-animation:slide-down .3s ease-out;-moz-animation:slide-down .3s ease-out}.spoiler-amp amp-accordion h4{width:62px;background:#26272a;padding:5px 0 5px 22px;color:#efefef;font-size:12px;font-family:arial,san-serif;line-height:1}.spoiler-amp section:not([expanded]) h4:before,.spoiler-amp section[expanded] h4:before{height:0;width:0;border-style:solid;position:absolute;left:8px;content:""}.spoiler-amp .spoiler_title{display:inline;margin:0 10px 0 0;padding:4px 0;font-size:16px;line-height:1}.spoiler-amp section:not([expanded]) h4:before{border-width:4px 4px 4px 7px;border-color:transparent transparent transparent #fff;top:7px}.spoiler-amp section[expanded] h4:before{border-width:7px 4px 4px;border-color:#fff transparent transparent;top:8px}.spoiler-amp amp-accordion div{width:100%;border:1px solid #ddd;background:#efefef;height:auto;padding:6px 10px;margin:8px 0 0;overflow:hidden}.spoiler-amp amp-accordion div p amp-img{margin:4px 0}.spoiler-amp amp-accordion section:not([expanded]):after{content:"";display:block;background:#efefef;padding:6px;border:1px solid #ddd;margin:8px 0 0}@-webkit-keyframes slide-down{0%{opacity:0;-webkit-transform:translateY(-100%)}100%{opacity:1;-webkit-transform:translateY(0)}}@-moz-keyframes slide-down{0%{opacity:0;-moz-transform:translateY(-100%)}100%{opacity:1;-moz-transform:translateY(0)}}.post-sender{background:#E5E5E5;padding:10px;width:auto;display:block;position:relative;font-size:16px;margin:30px auto;color:#555}.photo-sender,.post-sender amp-img{width:90px;height:90px}.title-sender{border-bottom:1px solid #dbdbdb;padding-bottom:8px;line-height:1.3em}.photo-sender{overflow:hidden;margin:10px 10px 0 0;position:relative}.name-sender{font-size:20px;line-height:1;margin-bottom:10px;text-align:left}.profil-description{padding-top:10px;border-top:1px solid #eeeded;line-height:1.1}.profil-description p{margin-top:5px;margin-bottom:0;line-height:1.3em;font-size:100%}
.post-sender::before{content:"";border-left:10px solid transparent;border-right:10px solid transparent;border-bottom:10px solid #E5E5E5;position:absolute;top:-10px;left:50%;margin-left:-10px}.post-body a[href^="http://www.kodeken.com/"]:after,.post-body a[href^="https://www.kodeken.com/"]:after{content:'';background:url("data:image/svg+xml;charset=utf8,%3csvg viewBox='0 0 24 24' width='16' height='16' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cg%3e%3cpath style='fill:%232B0C93' d='M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z'%3e%3c/path%3e%3c/g%3e%3c/svg%3e") no-repeat;background-size:16px 16px;width:16px;height:16px;margin-left:3px;vertical-align:-2px}.post-body a[href^="http://kodeken.com/"]:hover:after,.post-body a[href^="https://kodeken.com/"]:hover:after{background:url("data:image/svg+xml;charset=utf8,%3csvg viewBox='0 0 24 24' width='16' height='16' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cg%3e%3cpath style='fill:%23000' d='M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z'%3e%3c/path%3e%3c/g%3e%3c/svg%3e") no-repeat}.status-msg-wrap{font-size:16px;width:99.999999%;width:calc(100% - 20px);height:auto;color:#666;margin:0 20px 10px 0;position:relative}.status-msg-border{border:1px solid #000;opacity:0;width:100%;position:relative;height:10px}.status-msg-bg{background-color:#ccc;opacity:.8;width:100%;position:relative;z-index:1}.status-msg-body{color:#fff;text-align:center;padding:6px 10px 10px;width:100%;word-wrap:break-word;z-index:4;box-shadow:0 3px 20px 0 rgba(0,0,0,.075);line-height:1.3}.status-msg-hidden{visibility:hidden;padding:.3em 0}.status-msg-wrap a{color:#fff;background:#2B0C93;margin:0 10px 0 -7px;padding:3px 10px;line-height:1.3}.status-msg-body b{color:#fff;display:block;margin-bottom:6px;font-size:20px;font-weight:500}.status-msg-body:after{content:"";display:block;clear:both}.status-msg-body a:last-child{margin-right:0}.archive_page .outer-wrapper,.home_page .outer-wrapper{padding:0 20px}.archive_page #main-wrapper,.home_page #main-wrapper{width:102%;width:calc(100% + 20px);margin:0 -20px 0 0;padding:20px 0;float:none}.home_page .backwlabel{padding:70px 0 0}.home_page .btswlabel{background:#fff;background:rgba(255,255,255,.8);width:102%;width:calc(100% + 20px);margin:0 -20px 0 0}.home_page .btswlabel h3{font-size:30px;padding:20px 0 0}.home_page .wlabelu{width:100%;max-width:1440px;padding:0 20px}.wlabeli a{line-height:70px;color:#fff}.content-wrapper{padding:70px 0 0}.archive_page .footer-wrapper,.home_page .footer-wrapper{width:104%;width:calc(100% + 40px);margin:15px -20px 0;float:none}.archive_page .post,.home_page .post,.wlabeli{margin:0 20px 20px 0;padding:12px 10px 10px;position:relative;width:23.5%;width:calc(25% - 20px);height:280px;display:flex;flex-direction:column;justify-content:center;float:left;transition:all .4s ease-in-out;overflow:hidden;box-shadow:0 3px 20px 0 rgba(0,0,0,.075)}.wlabeli{padding:0;height:auto}.archive_page .custom .post,.home_page .custom .post{height:150px}.archive_page .post h2.post-title,.home_page .post h2.post-title{font-size:26px;font-weight:300;margin:0;display:block;line-height:1.2}.archive_page .post h2.post-title a,.home_page .post h2.post-title a{color:#555;display:block}.archive_page .post .post-body,.home_page .post .post-body{width:unset;float:none;display:inline}.archive_page .post:after,.home_page .post:after{content:"";position:absolute;left:0;width:100%}.archive_page .post:hover,.home_page .post:hover{transform:translateY(-5px);box-shadow:0 3px 50px 0 rgba(0,0,0,0.075)}.archive_page .post .post-body .snippets,.home_page .post .post-body .snippets{font-size:16px;margin-top:20px;line-height:1.2}.archive_page .post:after,.home_page .post:after{top:0;height:2px}.footer-wrapper,.archive_page .post:after,.archive_page .post:hover h2.post-title a,.gradient-text,.home_page .post:after,.home_page .post:hover h2.post-title a,#header-wrapper,.status-msg-body,.disclaimer_box,amp-sidebar nav ul li a:hover,.note,.home_page .backwlabel,.wlabeli{background:#2b0c93;background:-moz-linear-gradient(left,#2b0c93 0,#a54098 56%,#f84272 100%);background:-webkit-linear-gradient(left,#2b0c93 0,#a54098 56%,#f84272 100%);background:linear-gradient(to right,#2b0c93 0,#a54098 56%,#f84272 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b0c93',endColorstr='#f84272',GradientType=1 )}.archive_page .post:hover h2.post-title a,.gradient-text,.home_page .post:hover h2.post-title a{background-clip:text;-webkit-background-clip:text;text-fill-color:transparent;-webkit-text-fill-color:transparent}.static_page .postmeta{position:fixed;top:-1000px;left:-1000px}.static_page .post h2.post-title{text-align:center;margin-top:-150px;padding:0 0 100px}.static_page .post h2.post-title a{font-size:16px;font-weight:500;color:#333}.static_page #main-wrapper{width:100%}.static_page .post-body{width:100%;margin:0}.static_page a.home-link{visibility:hidden}.static_page .post{padding:20px}.contact-box{margin-top:10px}.contact-box svg{width:24px;height:24px;vertical-align:-6px;margin-right:5px}.contact-box svg path{fill:#444}.contact-box .bbm svg{width:20px;height:20px;vertical-align:-5px;margin-right:5px}.contact-box .bbm{margin-top:6px}.post-body .contact-me a{color:#444;font-weight:400}.post-body .contact-me a[href^="http://"]:after,.post-body .contact-me a[href^="https://"]:after,.post-body .contact-me a[href^="mailto:"]:after{content:"";background:url("data:image/svg+xml;charset=utf8,%3csvg viewBox='0 0 24 24' width='16' height='16' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cg%3e%3cpath style='fill:%23444' d='M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z'%3e%3c/path%3e%3c/g%3e%3c/svg%3e") no-repeat;background-size:16px 16px;width:16px;height:16px;display:inline-block;margin-left:3px;vertical-align:-2px}.contact-me span{-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all}.contact-me amp-accordion h5 span{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.contact-box .bbm,.contact-box .map{position:relative;padding-left:29px}.contact-box .bbm .barcode-bbm{margin:10px 0;width:300px}.contact-box .bbm span span{font-weight:300}.contact-box .map svg{position:absolute;top:0;left:0}.contact-box .bbm svg{position:absolute;top:4px;left:0}.contact-box amp-accordion h5{background:0 0;border:none;color:#444;font-weight:500;font-size:16px;margin:0;padding:0;text-align:left}.img-center{text-align:center;margin:0 auto}.img-left,.img-right{margin-bottom:1em;text-align:center}.img-left{clear:left;margin-right:1em}.img-right{clear:right;margin-left:1em}.img-width-100,.img-width-200,.img-width-300,.img-width-400,.img-width-500,.img-width-600,.img-width-700,.img-width-800{width:100%;text-align:center;clear:both}.img-width-100{max-width:100px}.img-width-200{max-width:200px}.img-width-300{max-width:300px}.img-width-400{max-width:400px}.img-width-500{max-width:500px}.img-width-600{max-width:600px}.img-width-700{max-width:700px}.img-width-800{max-width:800px}.archive_page .scrollToTop,.home_page .scrollToTop,.scrollToTop{color:#fafafa;font-size:1.4em;outline:0;background:#2B0C93;opacity:0;cursor:pointer;position:absolute;visibility:hidden;padding:0}.iklan-ataspost,.iklan-bawahpost{display:block;height:auto;margin:20px auto}.iklan-ataspost h4{font-size:16px;font-weight:700;color:#555;color:rgb(85,85,85);margin:20px 0 10px;padding-bottom:10px;border-bottom:1px solid #ddd}.scrollToTop{box-shadow:none;width:40px;height:40px;border-radius:0;border:none;z-index:999;bottom:0;right:0}.archive_page .scrollToTop,.home_page .scrollToTop{box-shadow:0 1px 1.5px 0 rgba(0,0,0,.12),0 1px 1px 0 rgba(0,0,0,.24);width:50px;height:50px;border-radius:100px;border:none;bottom:10px;right:10px}#marker{position:absolute;top:100px;width:0;height:0}.scrollToTop svg{width:34px;height:34px;vertical-align:middle}#totop:before{content:"";display:block;height:20px;margin-top:-20px;visibility:hidden}#marker+svg.to_top.notranslate{display:none}.disclaimer_box{width:100%;padding:2px;border-radius:6px;margin-bottom:20px}.disclaimer_box .content{background:#fff;padding:8px 12px;font-size:16px;border-radius:4px;box-shadow:0 0 0 3px rgba(255,255,255,.3);line-height:1.5}#scrollToTopBox{width:100%;max-width:1440px;height:0;position:fixed;bottom:0;left:0;z-index:1000}@font-face{font-family:'Material Icons';font-style:normal;font-weight:400;src:local('Material Icons'),local('MaterialIcons-Regular'),url(https://fonts.gstatic.com/s/materialicons/v12/2fcrYFNaTjcS6g4U3t-Y5ewrjPiaoEww8AihgqWRJAo.woff) format('woff'),url(https://fonts.gstatic.com/s/materialicons/v12/2fcrYFNaTjcS6g4U3t-Y5ZjZjT5FdEJ140U2DJYC3mY.woff2) format('woff2'),url(https://fonts.gstatic.com/s/materialicons/v12/2fcrYFNaTjcS6g4U3t-Y5bbKic1PW3nceB3q24YFOMg.ttf) format('truetype')}.material-icons{font-family:'Material Icons';font-weight:400;font-style:normal;font-size:inherit;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';vertical-align:middle}.material-icons.md-16{font-size:16px}
.material-icons.md-18{font-size:16px}.material-icons.md-24{font-size:24px}.material-icons.md-36{font-size:36px}.material-icons.md-48{font-size:48px}.material-icons.md-red{color:red}.material-icons.md-yellow{color:#ff0}.material-icons.md-green{color:green}.material-icons.md-blue{color:#00f}.material-icons.md-grey{color:grey}.post-body .search-box input.box1,.post-body .search-box input.box2{border:5px solid #ddd;padding:8px 12px;width:100%}.post-body .search-box input.box1:focus,.post-body .search-box input.box2:focus{border:5px solid #e8554e;outline:0}.post-body .search-box{display:block;border:1px solid #ddd;padding:20px;margin:10px auto}.skip-navigation{background-color:#fff;color:#000;display:block;height:0;left:0;line-height:50px;overflow:hidden;padding-top:0;position:fixed;text-align:center;top:0;width:100%;z-index:900}.post-body .search-box input.box1{-moz-box-sizing:unset;-webkit-box-sizing:unset;box-sizing:unset}.tooltip{background:#2B0C93;padding:0 10px;position:absolute;bottom:125%;right:10px;border-radius:3px;display:none;color:#fff;white-space:nowrap;height:25px;line-height:25px;font-size:14px;font-weight:400}.tooltip:after{content:"";width:0;height:0;border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #2B0C93;position:absolute;top:100%;right:5px}.title-pop:hover .tooltip{display:block}.mobile-up,amp-youtube#test-off img{display:none;visibility:hidden}.shareAddThis{margin:0 0 0 -80px;height:53px;overflow:hidden;padding-left:10px}.shareAddThis amp-addthis iframe{margin-top:0;margin-left:-8px}.comment-side1{width:calc(100% - 123px)}.comment-side2{width:123px;margin:-48px 0 0 0;position:-webkit-sticky;position:sticky;top:80px;z-index:999}.parse-box{width:700px;height:auto;position:fixed;bottom:0;left:50%;margin-left:-350px;padding:20px 20px 0;border-radius:3px 3px 0 0;background:#fff;-webkit-box-shadow:0 1px 18px rgba(0,0,0,.3);box-shadow:0 1px 18px rgba(0,0,0,.3)}#hide-parser{position:absolute;top:-10px;right:-10px;border-radius:100%;width:30px;height:30px;line-height:30px;padding:0;font-size:24px;text-align:center;margin:0}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes slideInUp{0%{-webkit-transform:translateY(100%);transform:translateY(100%);visibility:visible}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInUp{0%{-webkit-transform:translateY(100%);transform:translateY(100%);visibility:visible}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.follow-button{background-color:#2B0C93;color:#fff;font-size:16px;line-height:1.3em;min-width:54px;text-align:center;-webkit-transition:all 218ms;-moz-transition:all 218ms;-o-transition:all 218ms;transition:all 218ms;-webkit-user-select:none;-moz-user-select:none;cursor:pointer;padding:0;height:38px;line-height:38px}.iklan-ataspost{margin:20px 0 20px -80px;padding-left:10px}.top-comments-box-fixed,.chat-box-fixed{background:#fff;position:fixed;top:0;right:0;bottom:0;height:100%;height:100vh;width:300px;padding:0;z-index:999;-webkit-animation-name:slideInRight;animation-name:slideInRight;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;overflow:visible}.top-comments-box-fixed h3{font-size:18px;margin:0;padding:0 0 0 10px;color:#fff;height:50px;line-height:50px;background:#2e9fff;position:relative;-webkit-box-shadow:0 1px 8px rgba(0,0,0,.3);box-shadow:0 1px 8px rgba(0,0,0,.3)}.top-comments-box-fixed h3 span{position:relative;z-index:2}.top-comments-box-fixed h3:after{content:"";background:url("https://1.bp.blogspot.com/-ZVAt0WUJt1g/Wu65BsZrzVI/AAAAAAAAxaM/awKsRn2rLNo-tEEu5sc_DpSSBhSZ49XBwCLcBGAs/s1600/Disqus_logo.png") 10px 5px no-repeat;background-size:70%;opacity:.3;top:0;left:0;bottom:0;right:0;position:absolute;z-index:1}.close-recent:active,.close-recent:focus,.open-recent:active,.open-recent:focus,.close-chat:active,.close-chat:focus,.open-chat:active,.open-chat:focus{outline:0}.close-recent,.close-chat{position:absolute;top:0;right:0;width:50px;height:50px;line-height:45px;text-align:center;font-size:40px;font-weight:300;color:#fff;cursor:pointer;z-index:2}.close-chat{right:unset;left:-25px;width:25px;height:25px;line-height:20px}.top-comments-box-fixed amp-iframe{height:87.5%;height:calc(100vh - 50px);width:300px;position:absolute;top:50px;left:0;bottom:0}.chat-box-fixed amp-iframe{height:100%;height:100vh;width:300px;position:absolute;top:0;left:0;bottom:0}.lightbox-recent-disqus,.lightbox-chat{background:rgba(0,0,0,.3);width:100%;height:100%;position:absolute}@-webkit-keyframes slideInRight{0%{-webkit-transform:translateX(100%);transform:translateX(100%);visibility:visible}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInRight{0%{-webkit-transform:translateX(100%);transform:translateX(100%);visibility:visible}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.open-recent svg,.open-chat svg{vertical-align:middle;cursor:pointer}.open-recent:hover svg path,.open-chat:hover svg path{fill:#2B0C93;transition:all .4s ease-in-out}.mb0{margin-bottom:0}.mt0{margin-top:0}.PageList ul li .open-chat{padding:0 15px}.note{padding:2px;margin:0 20px 20px 0;position:relative}.note p{margin:0;padding:8px 30px 8px 10px;line-height:1.5;font-size:16px;font-weight:400;background:rgba(255,255,255,.8);color:#2b0c93}.note .close-note{position:absolute;top:5px;right:5px;width:20px;height:20px;line-height:20px;text-align:center;font-size:24px;font-weight:500;color:#2b0c93;opacity:.3;cursor:pointer}.note b{font-weight:500;color:#2b0c93}.post_page .note{margin:10px 0 10px 10px}.static_page .note{margin:10px 20px 0}.note .close-note:hover{opacity:1}
@media screen and (max-width:1366px){.archive_page .post h2.post-title,.home_page .post h2.post-title{font-size:26px}}@media screen and (max-width:1280px){.archive_page .post h2.post-title,.home_page .post h2.post-title{font-size:24px}}@media screen and (max-width:1024px){.archive_page .post h2.post-title,.home_page .post h2.post-title{font-size:30px}.post{margin:0;padding:20px 0 0 10px}.related-post,.share-box{padding-right:0}.disqus-box{margin:20px 0 20px 10px}.archive_page .post,.home_page .post,.wlabeli{width:49%;width:calc(50% - 20px)}.post-body,.post_page .postmeta{float:none;width:100%}.post .thumb-post{margin:20px 0 10px}.post_page .footer2-wrapper{padding:10px}.post_page .footer1,.post_page .footer2,.post_page .footer3,.post_page .footer4{width:100%;padding:0;float:none;display:block}.post_page .footer1{margin-bottom:10px}.post_page .postmeta{position:relative;top:unset;margin-top:20px}.postmeta .foto{display:inline-block;float:left;margin-right:10px;margin-bottom:0}.post-labels a,.post-labels svg+a{display:inline-block;float:left;padding:5px 8px;background:#2B0C93;color:#fff;border-radius:3px;margin:0 5px 5px 0}.postmeta svg{display:none}.post-body amp-carousel,.post-body amp-facebook,.post-body amp-iframe[src*='youtube.com'],.post-body amp-youtube,.post-body blockquote,.post-body blockquote.kata-kata,.post-body pre{margin:0 -10px}.iklan-ataspost{margin:20px -10px;padding-left:0}.iklan-ataspost h4{margin:20px 10px 10px}.post h1.post-title{margin:10px 0 10px -10px}.breadcrumbs,.shareAddThis{margin:0 0 0 -10px}.post-icons{top:-20px}.post-body pre{max-width:102%;max-width:calc(100% + 20px)}.post-body ul li pre{max-width:100%;margin:0}.PageList ul li a{padding:0 10px}.post_page .search_box,.search_box{width:25%}.page,.post_page .page{width:54%;width:calc(55% - 48px)}#header h1,#header h1 a,#header p,#header p a{font-size:24px}.disqus{margin:0 -8px}}@media screen and (max-width:960px){#header{width:50%}.search_box{width:49%;width:calc(50% - 48px)}amp-sidebar li.menu-mobile{display:block}.page{display:none}#FollowByEmail1 h2,.follow-by-email-inner,.follow-by-email-inner .follow-by-email-address,.follow-by-email-inner .follow-by-email-submit,.follow-by-email-inner .follow-by-email-submit,.follow-button{float:none;width:100%;margin:0 0 10px}#FollowByEmail1 h2{text-align:center}}@media screen and (max-width:800px){.halaman{max-width:100%}.archive_page .post h2.post-title,.home_page .post h2.post-title{font-size:28px}.footer1{padding:0 0 10px}.post_page #main-wrapper{width:100%}.post_page .post{margin:0;padding:10px 0 0}.disqus-box,.halaman{margin:20px 0}.post_page .footer-wrapper{margin:20px -10px 0}.post_page #header-wrapper{padding:0 10px}.post_page .btn-sidebaramp{right:0}.post_page .search_box{width:49%;width:calc(50% - 38px)}.scrollToTop{color:#fafafa;font-size:1.4em;box-shadow:0 1px 1.5px 0 rgba(0,0,0,.12),0 1px 1px 0 rgba(0,0,0,.24);width:50px;height:50px;border-radius:100px;border:none;outline:0;background:#2B0C93;bottom:10px;right:10px;position:absolute;opacity:0;visibility:hidden;cursor:pointer}.halaman{line-height:1.2em;height:auto;position:relative;bottom:unset;left:unset;z-index:1;opacity:1}.halaman-kanan,.halaman-kiri{color:#666;background:0 0;width:50%;position:relative;bottom:unset;right:unset}.halaman-kiri{border-radius:0;height:auto;padding:0 10px 0 20px;text-align:left}.halaman-kanan{height:auto;padding:0 20px 0 10px;text-align:right}.current-pageleft,.current-pageright,.halaman-kanan a,.halaman-kiri a{background:0 0;text-decoration:none;color:#666;font-size:20px;line-height:1;width:100%;height:auto;position:relative;bottom:unset;right:unset}.isihalaman-kanan,.isihalaman-kiri{padding-top:2px;width:100%;height:auto;position:relative;bottom:unset;right:unset}svg.panahkanan,svg.panahkiri{position:absolute;top:50%;margin-top:-12.5px;width:25px;height:25px;margin-left:0}svg.panahkanan path,svg.panahkiri path{fill:#666}svg.panahkiri{left:-10px}svg.panahkanan{left:unset;right:-10px}#sidebar-wrapper{position:relative;height:auto;top:unset;left:unset;width:300px;margin:0 auto}.sidebar{border-right:none;padding-right:0}.current-pageleft .tooltip,.halaman-kiri .tooltip{right:unset;left:10px}.current-pageleft .tooltip:after,.halaman-kiri .tooltip:after{right:unset;left:5px}.desktop-up,amp-sidebar ul{display:none;visibility:hidden}.mobile-up,amp-sidebar[side][open] ul{display:block;visibility:visible}.open-chat.mobile-up{box-shadow:0 1px 1.5px 0 rgba(0,0,0,.12),0 1px 1px 0 rgba(0,0,0,.24);width:50px;height:50px;line-height:50px;border-radius:100px;border:none;background:#2B0C93;position:fixed;bottom:90px;left:10px;text-align:center;z-index:997}.open-chat{-webkit-animation:unset;animation:unset}.open-chat:hover svg path{fill:#fff}.note{margin:0 0 20px 0}.post_page .note{margin:10px 0}.static_page .note{margin:10px 10px 0}}@media screen and (max-width:667px){.archive_page .post h2.post-title,.home_page .post h2.post-title{font-size:22px}.archive_page .scrollToTop,.home_page .scrollToTop,.scrollToTop{bottom:90px}}@media screen and (max-width:640px){#header-wrapper,.btn-sidebaramp{height:50px}#related::before,#video-top::before,:target::before{height:50px;margin-top:-50px}#disqusbox::before{height:63px;margin-top:-63px}#header,.btn-sidebaramp,.search_box{line-height:50px}.BlogSearch td.gsc-search-button{display:none}.BlogSearch input.gsc-input{width:100%}.img-width-500.img-left,.img-width-500.img-right,.img-width-600.img-left,.img-width-600.img-right,.img-width-700.img-left,.img-width-700.img-right{clear:both;float:none;margin:1em auto;text-align:center}.post-body pre{max-width:102%;max-width:calc(100% + 20px);margin:0 -10px}.post-body ul li pre{max-width:100%;margin:0}.footer1,.footer2,.footer3,.footer4{width:100%;padding:0;float:none;display:block;margin-bottom:20px}.post-body .post-content,.post-body .post-toc{margin-bottom:20px;position:static;width:100%}.static_page .post{padding:20px 10px}.shareAddThis{height:98px}.comment-side1{width:100%;float:none}.comment-side2{width:80px;margin:20px 0 0 8px;position:-webkit-sticky;position:sticky;top:unset;float:none;z-index:0}.parse-box{width:90%;margin-left:-45%}.home_page .backwlabel{padding:51px 0 0}}@media screen and (max-width:600px){.archive_page .post h2.post-title,.home_page .post h2.post-title{font-size:16px}}@media screen and (max-width:568px){.archive_page #main-wrapper,.home_page #main-wrapper{width:100%;margin:0}.archive_page .post h2.post-title,.home_page .post h2.post-title{font-size:32px}.archive_page .post,.home_page .post,.wlabeli{margin:0 0 20px;width:100%;float:none;height:auto}.archive_page #blog-pager,.home_page #blog-pager{margin:0 0 0 -100px}.status-msg-wrap{width:100%}.home_page .btswlabel{width:100%}.wlabeliz{display:none}}@media screen and (max-width:414px){#header{width:42%}.post_page .search_box,.search_box{width:57%;width:calc(58% - 38px)}#header h1,#header h1 a,#header p,#header p a{font-size:20px}#header-wrapper,.archive_page .outer-wrapper,.home_page .outer-wrapper,.home_page .wlabelu{padding:0 10px}.img-width-100.img-left,.img-width-100.img-right,.img-width-200.img-left,.img-width-200.img-right,.img-width-300.img-left,.img-width-300.img-right,.img-width-400.img-left,.img-width-400.img-right{clear:both;float:none;margin:1em auto;text-align:center}.btn-sidebaramp{right:0}.post h1.post-title{font-size:30px}.post_page .post{padding:5px 0 0}amp-sidebar{width:300px}.archive_page .footer-wrapper,.home_page .footer-wrapper{width:106%;width:calc(100% + 20px);margin:0 -10px;float:none}.reactions-label,.shortener-box .shorten-text{display:block;margin-bottom:5px}.archive_page .post h2.post-title,.home_page .post h2.post-title{font-size:28px}.footer2-wrapper{padding:10px 10px 20px}#sidebar-wrapper{width:102%;width:calc(100% + 20px);margin:0 -10px}#footer{margin:7px 10px 10px}.open-recent.mobile-up{margin-right:8px}}@media screen and (max-width:375px){#header{width:50%}.post_page .search_box,.search_box{width:49%;width:calc(50% - 38px)}.current-pageleft,.current-pageright,.halaman-kanan a,.halaman-kiri a{font-size:17px}}@media screen and (max-width:320px){#header h1,#header h1 a,#header p,#header p a{font-size:18px}.current-pageleft,.current-pageright,.halaman-kanan a,.halaman-kiri a{font-size:16px}.chat-box-fixed,.chat-box-fixed amp-iframe{width:280px}}
/*]]>*/
</style></b:if>
<b:if cond='data:blog.pageType == "error_page"'>
<style amp-custom='amp-custom'>
/*<![CDATA[*/
body{background:#fff url(https://i.giphy.com/media/Y8a0CT2xsbo9G/giphy.webp)no-repeat center center fixed;background-size:cover;font-family:-apple-system,BlinkMacSystemFont,"Roboto","Segoe UI","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;font-size:16px}#error-page{margin-bottom:10px;padding:10px;text-align:center}#error-page .error-404{text-align:center;transition:all .8s ease 0s;color:red;font-size:800%;font-weight:900;margin-bottom:0;margin-top:0;line-height:1em}#error-page .large-heading1{color:#fff;font-size:400%;margin-top:1%;margin-bottom:0;position:relative;font-weight:300}#error-page .large-heading2{color:#fff;font-size:250%}#error-page .light-heading1{color:#fff;font-size:150%}#error-page .light-heading2{color:#fff;font-size:100%;line-height:1.8em}#error-page .light-heading2 span{background:#000;border-radius:3px;padding:2px 5px}#error-page a{text-decoration:none;color:#fff}.clear{clear:both}
/*]]>*/
</style>
</b:if>
<style amp-boilerplate='amp-boilerplate'>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style><noscript><style amp-boilerplate='amp-boilerplate'>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript>
<script async='async' src='https://cdn.ampproject.org/v0.js'/>
<script async='async' custom-element='amp-analytics' src='https://cdn.ampproject.org/v0/amp-analytics-0.1.js'/>
<b:if cond='data:blog.pageType != "error_page"'>
<script async='async' custom-element='amp-form' src='https://cdn.ampproject.org/v0/amp-form-0.1.js'/>
<script async='async' custom-element='amp-sidebar' src='https://cdn.ampproject.org/v0/amp-sidebar-0.1.js'/>
<script async='async' custom-element='amp-position-observer' src='https://cdn.ampproject.org/v0/amp-position-observer-0.1.js'/>
<script async='async' custom-element='amp-animation' src='https://cdn.ampproject.org/v0/amp-animation-0.1.js'/>
<script async='async' custom-element='amp-lightbox' src='https://cdn.ampproject.org/v0/amp-lightbox-0.1.js'/>
<script async='async' custom-element='amp-iframe' src='https://cdn.ampproject.org/v0/amp-iframe-0.1.js'/>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<!--<script async='async' custom-element='amp-twitter' src='https://cdn.ampproject.org/v0/amp-twitter-0.1.js'/>-->
<script async='async' custom-element='amp-facebook' src='https://cdn.ampproject.org/v0/amp-facebook-0.1.js'/>
<script async='async' custom-element='amp-youtube' src='https://cdn.ampproject.org/v0/amp-youtube-0.1.js'/>
<script async='async' custom-element='amp-image-lightbox' src='https://cdn.ampproject.org/v0/amp-image-lightbox-0.1.js'/>
<script async='async' custom-element='amp-addthis' src='https://cdn.ampproject.org/v0/amp-addthis-0.1.js'/>
<!--<script async='async' custom-element='amp-social-share' src='https://cdn.ampproject.org/v0/amp-social-share-0.1.js'/>-->
<!--<script async='async' custom-element='amp-audio' src='https://cdn.ampproject.org/v0/amp-audio-0.1.js'/>-->
<script async='async' custom-element='amp-accordion' src='https://cdn.ampproject.org/v0/amp-accordion-0.1.js'/>
</b:if>
<b:if cond='data:blog.pageType not in {"static_page"} and data:blog.isMobileRequest == "true" and data:blog.pageType not in {"error_page"}'>
<script async='async' custom-element='amp-sticky-ad' src='https://cdn.ampproject.org/v0/amp-sticky-ad-1.0.js'/>
</b:if>
<b:if cond='data:blog.pageType not in {"error_page"} and data:blog.isMobileRequest == "true" and not data:blog.searchQuery'>
<script async='async' custom-element='amp-ad' src='https://cdn.ampproject.org/v0/amp-ad-0.1.js'/>
</b:if>
<b:if cond='data:blog.pageType not in {"static_page","error_page"} and data:blog.isMobileRequest == "true" and not data:blog.searchQuery'>
<script async='async' custom-element='amp-auto-ads' src='https://cdn.ampproject.org/v0/amp-auto-ads-0.1.js'/>
</b:if>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "<data:blog.homepageUrl/>",
"potentialAction": {
"@type": "SearchAction",
"target": "<data:blog.homepageUrl/>/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
</b:if>
</head><!--<head/>-->
<body>
<b:if cond='data:blog.pageType not in {"static_page","error_page"} and data:blog.isMobileRequest == "true" and not data:blog.searchQuery'>
<amp-auto-ads data-ad-client='ca-pub-4708949119445737' type='adsense'/>
</b:if>
<b:if cond='data:blog.pageType == "error_page"'>
<!--<meta http-equiv="refresh" expr:content=""10;URL=" + data:blog.homepageUrl"/>-->
<div id='error-page'>
<div class='large-heading1'>OOPS!</div>
<div class='error-404'>404</div>
<div class='large-heading2'>LAMAN TIDAK DITEMUKAN</div><br/>
<div class='light-heading1'>Mungkin halaman telah dihapus. Kami mohon maaf atas ketidaknyamanan ini.</div><br/>
<div class='light-heading2'>Anda akan diarahkan ke homepage blog sesaat lagi.<br/>Atau silahkan Klik <a expr:href='data:blog.homepageUrl' expr:title='data:blog.title'><span><b>DI SINI</b></span></a> untuk kembali ke homepage <b>AnyNime</b>
</div>
</div>
<b:class cond='data:blog.pageType == "error_page"' name='m0 fontroboto'/>
</b:if>
<b:if cond='data:blog.pageType != "error_page"'>
<b:class cond='data:blog.pageType == "index"' name='home_page'/>
<b:class cond='data:blog.pageType == "item"' name='post_page'/>
<b:class cond='data:blog.pageType == "archive"' name='archive_page'/>
<a aria-label='Skip' class='skip-navigation' href='#main' role='button' tabindex='0'>
Skip to main content
</a>
<div id='totop'/>
<amp-sidebar class='p0' id='side-bar' layout='nodisplay' side='right'>
<svg aria-label='Close Sidebar' class='amp-close-image' height='20' on='tap:side-bar.close' role='button' tabindex='0' viewBox='0 0 24 24' width='20'>
<path d='M19,3H16.3H7.7H5A2,2 0 0,0 3,5V7.7V16.4V19A2,2 0 0,0 5,21H7.7H16.4H19A2,2 0 0,0 21,19V16.3V7.7V5A2,2 0 0,0 19,3M15.6,17L12,13.4L8.4,17L7,15.6L10.6,12L7,8.4L8.4,7L12,10.6L15.6,7L17,8.4L13.4,12L17,15.6L15.6,17Z' fill='#fff'/>
</svg>
<div class='logo_sidebar'>Kompi Ajaib</div>
<nav><ul class='p0 liststyle0'><li class='menu-mobile liststyle0 m0 p0'><a class='fontweight600 displayblock' href='/p/about.html' title='About'>About</a></li><li class='menu-mobile liststyle0 m0 p0'><a class='fontweight600 displayblock' href='/p/contact-us.html' title='Contact'>Contact</a></li><li class='menu-mobile liststyle0 m0 p0'><a class='fontweight600 displayblock' href='/p/privacy.html' title='Privacy'>Privacy</a></li><li class='menu-mobile liststyle0 m0 p0'><a class='fontweight600 displayblock' href='/p/sitemap.html' title='Sitemap'>Sitemap</a></li><li class='menu-mobile liststyle0 m0 p0'><a class='fontweight600 displayblock' href='/p/iklan.html' title='Iklan'>Iklan</a></li><li class='liststyle0 m0 p0'><a class='fontweight600 displayblock' href='/search/label/Game%20Online?max-results=16' itemprop='url' rel='nofollow noopener' target='_blank' title='Dunia Gaming'>Dunia Gaming</a></li><li class='liststyle0 m0 p0'><a class='fontweight600 displayblock' href='/search/label/Mobile?max-results=16' itemprop='url' rel='nofollow noopener' target='_blank' title='Mobile'>Mobile</a></li><li class='liststyle0 m0 p0'><a class='fontweight600 displayblock' href='/search/label/Emulator?max-results=16' itemprop='url' rel='nofollow noopener' title='Emulator'>Emulator</a></li><li class='liststyle0 m0 p0'><a class='fontweight600 displayblock' href='/search/label/Blogger?max-results=16' itemprop='url' rel='nofollow noopener' target='_blank' title='Blogger'>Blogger</a></li></ul></nav>
<h3 class='follow_sidebar'>follow us</h3><ul class='ampstart-social-follow list-reset flex justify-around items-center img-center flex-wrap m0 mb4'>
<li><a aria-label='Link to Facebook' class='inline-block p1' href='#' rel='nofollow noopener' target='_blank'><svg height='30' viewbox='0 0 56 55' width='30' xmlns='http://www.w3.org/2000/svg'><title>Facebook</title><path class='ampstart-icon ampstart-icon-fb' d='M47.5 43c0 1.2-.9 2.1-2.1 2.1h-10V30h5.1l.8-5.9h-5.9v-3.7c0-1.7.5-2.9 3-2.9h3.1v-5.3c-.6 0-2.4-.2-4.6-.2-4.5 0-7.5 2.7-7.5 7.8v4.3h-5.1V30h5.1v15.1H10.7c-1.2 0-2.2-.9-2.2-2.1V8.3c0-1.2 1-2.2 2.2-2.2h34.7c1.2 0 2.1 1 2.1 2.2V43'/></svg></a></li>
<li><a aria-label='Link to Instagram' class='inline-block p1' href='#' rel='nofollow noopener' target='_blank'><svg height='30' viewbox='0 0 54 54' width='30' xmlns='http://www.w3.org/2000/svg'><title>instagram</title><path class='ampstart-icon ampstart-icon-instagram' d='M27.2 6.1c-5.1 0-5.8 0-7.8.1s-3.4.4-4.6.9c-1.2.5-2.3 1.1-3.3 2.2-1.1 1-1.7 2.1-2.2 3.3-.5 1.2-.8 2.6-.9 4.6-.1 2-.1 2.7-.1 7.8s0 5.8.1 7.8.4 3.4.9 4.6c.5 1.2 1.1 2.3 2.2 3.3 1 1.1 2.1 1.7 3.3 2.2 1.2.5 2.6.8 4.6.9 2 .1 2.7.1 7.8.1s5.8 0 7.8-.1 3.4-.4 4.6-.9c1.2-.5 2.3-1.1 3.3-2.2 1.1-1 1.7-2.1 2.2-3.3.5-1.2.8-2.6.9-4.6.1-2 .1-2.7.1-7.8s0-5.8-.1-7.8-.4-3.4-.9-4.6c-.5-1.2-1.1-2.3-2.2-3.3-1-1.1-2.1-1.7-3.3-2.2-1.2-.5-2.6-.8-4.6-.9-2-.1-2.7-.1-7.8-.1zm0 3.4c5 0 5.6 0 7.6.1 1.9.1 2.9.4 3.5.7.9.3 1.6.7 2.2 1.4.7.6 1.1 1.3 1.4 2.2.3.6.6 1.6.7 3.5.1 2 .1 2.6.1 7.6s0 5.6-.1 7.6c-.1 1.9-.4 2.9-.7 3.5-.3.9-.7 1.6-1.4 2.2-.7.7-1.3 1.1-2.2 1.4-.6.3-1.7.6-3.5.7-2 .1-2.6.1-7.6.1-5.1 0-5.7 0-7.7-.1-1.8-.1-2.9-.4-3.5-.7-.9-.3-1.5-.7-2.2-1.4-.7-.7-1.1-1.3-1.4-2.2-.3-.6-.6-1.7-.7-3.5 0-2-.1-2.6-.1-7.6 0-5.1.1-5.7.1-7.7.1-1.8.4-2.8.7-3.5.3-.9.7-1.5 1.4-2.2.7-.6 1.3-1.1 2.2-1.4.6-.3 1.6-.6 3.5-.7h7.7zm0 5.8c-5.4 0-9.7 4.3-9.7 9.7 0 5.4 4.3 9.7 9.7 9.7 5.4 0 9.7-4.3 9.7-9.7 0-5.4-4.3-9.7-9.7-9.7zm0 16c-3.5 0-6.3-2.8-6.3-6.3s2.8-6.3 6.3-6.3 6.3 2.8 6.3 6.3-2.8 6.3-6.3 6.3zm12.4-16.4c0 1.3-1.1 2.3-2.3 2.3-1.3 0-2.3-1-2.3-2.3 0-1.2 1-2.3 2.3-2.3 1.2 0 2.3 1.1 2.3 2.3z'/></svg></a></li>
<li><a aria-label='Link to Twitter' class='inline-block p1' href='#' rel='nofollow noopener' target='_blank'><svg height='30' viewbox='0 0 53 49' width='30' xmlns='http://www.w3.org/2000/svg'><title>Twitter</title><path class='ampstart-icon ampstart-icon-twitter' d='M45 6.9c-1.6 1-3.3 1.6-5.2 2-1.5-1.6-3.6-2.6-5.9-2.6-4.5 0-8.2 3.7-8.2 8.3 0 .6.1 1.3.2 1.9-6.8-.4-12.8-3.7-16.8-8.7C8.4 9 8 10.5 8 12c0 2.8 1.4 5.4 3.6 6.9-1.3-.1-2.6-.5-3.7-1.1v.1c0 4 2.8 7.4 6.6 8.1-.7.2-1.5.3-2.2.3-.5 0-1 0-1.5-.1 1 3.3 4 5.7 7.6 5.7-2.8 2.2-6.3 3.6-10.2 3.6-.6 0-1.3-.1-1.9-.1 3.6 2.3 7.9 3.7 12.5 3.7 15.1 0 23.3-12.6 23.3-23.6 0-.3 0-.7-.1-1 1.6-1.2 3-2.7 4.1-4.3-1.4.6-3 1.1-4.7 1.3 1.7-1 3-2.7 3.6-4.6'/></svg></a></li>
<li><a aria-label='Link to Google+' class='inline-block p1 gp' href='#' rel='nofollow noopener' target='_blank'><svg height='24' viewbox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><title>Google+</title><path class='ampstart-icon ampstart-icon-google' d='M20,2A2,2 0 0,1 22,4V20A2,2 0 0,1 20,22H4A2,2 0 0,1 2,20V4C2,2.89 2.9,2 4,2H20M20,12H18V10H17V12H15V13H17V15H18V13H20V12M9,11.29V13H11.86C11.71,13.71 11,15.14 9,15.14C7.29,15.14 5.93,13.71 5.93,12C5.93,10.29 7.29,8.86 9,8.86C10,8.86 10.64,9.29 11,9.64L12.36,8.36C11.5,7.5 10.36,7 9,7C6.21,7 4,9.21 4,12C4,14.79 6.21,17 9,17C11.86,17 13.79,15 13.79,12.14C13.79,11.79 13.79,11.57 13.71,11.29H9Z'/></svg></a></li></ul>
</amp-sidebar>
<b:if cond='data:blog.pageType != "static_page" and data:blog.pageType != "error_page"'>
<div class='clear'/>
<div class='backwlabel'>
<div class='btswlabel'>
</div></div></b:if>
<div class='outer-wrapper m0 p0'>
<div class='positionfixed' id='header-wrapper'>
<div aria-label='Open' class='btn-sidebaramp p0' on='tap:side-bar.toggle' role='button' tabindex='0'/>
<header>
<b:section class='header p0 m0 floatleft' id='header' maxwidgets='1' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Welcome To Banten (Header)' type='Header' version='1'>
<b:widget-settings>
<b:widget-setting name='displayUrl'/>
<b:widget-setting name='displayHeight'>0</b:widget-setting>
<b:widget-setting name='sectionWidth'>-1</b:widget-setting>
<b:widget-setting name='useImage'>false</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='imagePlacement'>BEHIND</b:widget-setting>
<b:widget-setting name='displayWidth'>0</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<div id='header-inner'>
<div class='titlewrapper'>
<b:if cond='data:blog.pageType not in {"item"}'>
<h1 class='title colorfff p0 m0 fontroboto fontweight600 floatleft' itemprop='headline'>
<b:include name='title'/>
</h1><span aria-label='Recent Comments' class='open-recent mobile-up floatright' on='tap:disqus-recent.show,disqus-recent-iframe.show,recent-disqus-box' role='button' tabindex='0'><svg height='24' viewBox='0 0 24 24' width='24'><path d='M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M13,10V6H11V10H13M13,14V12H11V14H13Z' fill='#fff'/></svg></span>
<b:else/>
<p class='title colorfff p0 m0 fontroboto fontweight600 floatleft' itemprop='headline'>
<b:include name='title'/>
</p><span aria-label='Recent Comments' class='open-recent mobile-up floatright' on='tap:disqus-recent.show,disqus-recent-iframe.show,recent-disqus-box' role='button' tabindex='0'><svg height='24' viewBox='0 0 24 24' width='24'><path d='M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M13,10V6H11V10H13M13,14V12H11V14H13Z' fill='#fff'/></svg></span>
</b:if>
</div><b:include name='description'/>
</div>
</b:includable>
<b:includable id='description'>
<div class='descriptionwrapper displaynone'>
<p class='description' itemprop='description'><span><data:description/></span></p>
</div>
</b:includable>
<b:includable id='title'>
<a class='colorfff p0 m0 fontroboto fontweight600 transition4s' expr:href='data:blog.homepageUrl' expr:title='data:title' itemprop='url'><span itemprop='name'><data:title/></span></a>
</b:includable>
</b:widget>
</b:section>
</header>
<b:section class='search_box p0 m0 floatleft' id='search_box' maxwidgets='1' showaddelement='no'>
<b:widget id='BlogSearch1' locked='true' title='Search This Blog' type='BlogSearch' version='1'>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title displaynone'><data:title/></h2>
</b:if>
<div class='widget-content'>
<div expr:id='data:widget.instanceId + "_form"'>
<form action='//www.google.com/search' class='gsc-search-box' target='_top'>
<b:attr cond='not data:view.isPreview' name='target' value='_top'/>
<table cellpadding='0' cellspacing='0' class='gsc-search-box'>
<tbody>
<tr>
<td class='gsc-input'>
<input autocomplete='off' class='gsc-input color555 borderradius3' expr:value='data:view.isSearch ? data:view.search.query.escaped : ""' name='q' placeholder='Search....' required='' size='10' title='search' type='text'/>
<input name='as_sitesearch' type='hidden' value='anynime.blogspot.com'/>
</td>
<td class='gsc-search-button'>
<input class='gsc-search-button colorfff borderradius3' title='search' type='submit' value='Search'/>
</td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
</b:includable>
</b:widget>
</b:section>
<b:section class='page floatleft m0' id='page' maxwidgets='1' showaddelement='no'>
<b:widget id='PageList1' locked='true' title='Halaman' type='PageList' version='1'>
<b:widget-settings>
<b:widget-setting name='pageListJson'>{}</b:widget-setting>
<b:widget-setting name='homeTitle'>Home</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<div class='widget-content'>
<ul class='p0 m0 liststyle0'>
<b:loop values='data:links' var='link'>
<b:if cond='data:link.isCurrentPage'>
<li class='p0 m0 displayinlineblock'><a class='colorfff fontweight600 displayinlineblock' expr:href='data:link.href' expr:title='data:link.title'><data:link.title/></a></li>
<b:else/>
<li class='p0 m0 displayinlineblock'><a class='colorfff fontweight600 displayinlineblock' expr:href='data:link.href' expr:title='data:link.title'><data:link.title/></a></li>
</b:if>
</b:loop>
<li class='p0 m0 displayinlineblock'>
<span aria-label='Open Chat' class='open-chat displayinlineblock' on='tap:chat-kompi.show,chat-iframe.show,chat-box' role='button' tabindex='0'><svg height='24' viewBox='0 0 24 24' width='24'><path d='M12,23A1,1 0 0,1 11,22V19H7A2,2 0 0,1 5,17V7A2,2 0 0,1 7,5H21A2,2 0 0,1 23,7V17A2,2 0 0,1 21,19H16.9L13.2,22.71C13,22.89 12.76,23 12.5,23H12M13,17V20.08L16.08,17H21V7H7V17H13M3,15H1V3A2,2 0 0,1 3,1H19V3H3V15M9,9H19V11H9V9M9,13H17V15H9V13Z' fill='#fff'/></svg></span>
</li>
<li class='p0 m0 displayinlineblock'>
<span aria-label='Recent Comments' class='open-recent displayinlineblock' on='tap:disqus-recent.show,disqus-recent-iframe.show,recent-disqus-box' role='button' tabindex='0'><svg height='24' viewBox='0 0 24 24' width='24'><path d='M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M13,10V6H11V10H13M13,14V12H11V14H13Z' fill='#fff'/></svg></span>
</li>
</ul>
</div>
</b:includable>
</b:widget>
</b:section>
<div class='clear'/>
</div>
<div class='clear'/>
<div class='content-wrapper m0'>
<div class='floatright p0' id='main-wrapper'>
<b:section class='main' id='main' showaddelement='no'>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog' version='1'>
<b:widget-settings>
<b:widget-setting name='commentLabel'>Comment</b:widget-setting>
<b:widget-setting name='showShareButtons'>false</b:widget-setting>
<b:widget-setting name='authorLabel'>By</b:widget-setting>
<b:widget-setting name='disableGooglePlusShare'>true</b:widget-setting>
<b:widget-setting name='style.unittype'>TextAndImage</b:widget-setting>
<b:widget-setting name='timestampLabel'>pada tanggal</b:widget-setting>
<b:widget-setting name='reactionsLabel'>Reaction</b:widget-setting>
<b:widget-setting name='showAuthorProfile'>false</b:widget-setting>
<b:widget-setting name='style.layout'>1x1</b:widget-setting>
<b:widget-setting name='showLocation'>false</b:widget-setting>
<b:widget-setting name='showTimestamp'>true</b:widget-setting>
<b:widget-setting name='postsPerAd'>1</b:widget-setting>
<b:widget-setting name='style.bordercolor'>#ffffff</b:widget-setting>
<b:widget-setting name='showDateHeader'>false</b:widget-setting>
<b:widget-setting name='style.textcolor'>#000000</b:widget-setting>
<b:widget-setting name='showCommentLink'>false</b:widget-setting>
<b:widget-setting name='style.urlcolor'>#008000</b:widget-setting>
<b:widget-setting name='showAuthor'>true</b:widget-setting>
<b:widget-setting name='style.linkcolor'>#0000ff</b:widget-setting>
<b:widget-setting name='style.bgcolor'>#ffffff</b:widget-setting>
<b:widget-setting name='showLabels'>true</b:widget-setting>
<b:widget-setting name='postLabelsLabel'>Labels</b:widget-setting>
<b:widget-setting name='showBacklinks'>false</b:widget-setting>
<b:widget-setting name='showInlineAds'>false</b:widget-setting>
<b:widget-setting name='showReactions'>true</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='top'>
<b:if cond='data:mobileindex'>
<!-- mobile index -->
<div class='blog-posts hfeed'>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.isFirstPost == "false"'>
</div>
</b:if>
<div class="mobile-date-outer date-outer">
<div expr:onclick='data:post.indexOnclick'>
<b:include data='post' name='mobile-index-post'/>
</div>
<b:if cond='data:post.trackLatency'>
<data:post.latencyJs/>
</b:if>
</b:loop>
<b:if cond='data:numPosts != 0'>
</div>
</b:if>
</div>
<b:else/>
<!-- posts -->
<div class='blog-posts hfeed'>
<b:include data='top' name='status-message'/>
<data:defaultAdStart/>
<b:loop index='x' values='data:posts' var='post'>
<div class='post-outer'>
<b:if cond='data:post.isFirstPost'>
<div class='firstpost'><b:include data='post' name='post'/></div>
<b:else/>
<b:if cond='data:x==1'>
<b:include data='post' name='post'/>
</b:if>
<b:if cond='data:x==2'>
<b:include data='post' name='post'/>
</b:if>
<b:if cond='data:x==3'>
<b:include data='post' name='post'/>
</b:if>
<b:if cond='data:x==4'>
<div class='custom m0'>
<b:include data='post' name='post'/>
</div>
</b:if>
<b:if cond='data:x==5'>
<div class='custom m0'>
<b:include data='post' name='post'/>
</div>
</b:if>
<b:if cond='data:x==6'>
<div class='custom m0'>
<b:include data='post' name='post'/>
</div></b:if>
<b:if cond='data:x==7'>
<div class='custom m0'>
<b:include data='post' name='post'/>
</div></b:if>
<b:if cond='data:x==8'>
<div class='custom m0'>
<b:include data='post' name='post'/>
</div></b:if>
<b:if cond='data:x==9'>
<div class='custom m0'>
<b:include data='post' name='post'/>
</div></b:if>
<b:if cond='data:x==10'>
<div class='custom m0'>
<b:include data='post' name='post'/>
</div></b:if>
<b:if cond='data:x==11'>
<div class='custom m0'>
<b:include data='post' name='post'/>
</div></b:if>
<b:if cond='data:x==12'>
<b:include data='post' name='post'/>
</b:if>
<b:if cond='data:x==13'>
<b:include data='post' name='post'/>
</b:if>
<b:if cond='data:x==14'>
<b:include data='post' name='post'/>
</b:if>
<b:if cond='data:x==15'>
<b:include data='post' name='post'/>
</b:if>
<b:if cond='data:x==16'>
<b:include data='post' name='post'/>
</b:if>
</b:if>
<b:include cond='data:blog.pageType == "item"' data='post' name='disqus-comment'/>
</div>
<b:if cond='data:post.includeAd'>
<b:if cond='data:post.isFirstPost'>
<data:defaultAdEnd/>
<b:else/>
<data:adEnd/>
</b:if>
<b:if cond='data:mobile == "false"'>
<div class='inline-ad'>
<data:adCode/>
</div>
</b:if>
<data:adStart/>
</b:if>
<b:if cond='data:post.trackLatency'>
<data:post.latencyJs/>
</b:if>
</b:loop>
<data:adEnd/>
</div>
</b:if>
<!-- navigation -->
<b:if cond='data:mobile'>
<b:include name='mobile-nextprev'/>
<b:else/>
<b:include name='nextprev'/>
<!-- feed links -->
<b:include name='feedLinks'/>
</b:if>
</b:includable>
<b:includable id='author-post' var='post'>
<b:if cond='data:blog.pageType != "item"'>
<span class='post-author vcard' itemprop='author' itemscope='itemscope' itemtype='https://schema.org/Person'>
<meta expr:content='data:post.author' itemprop='name'/>
<meta expr:content='data:post.authorProfileUrl' itemprop='url'/>
<meta expr:content='data:post.authorPhoto.url' itemprop='image'/>
</span>
<span class='vcard'>
<abbr class='fn' expr:title='data:post.author'/>
</span>
<abbr class='updated' expr:title='data:post.timestampISO8601'/>
<meta expr:content='data:post.timestampISO8601' itemprop='datePublished'/>
<meta expr:content='data:post.lastUpdatedISO8601' itemprop='dateModified'/>
</b:if>
<b:if cond='data:blog.pageType in {"static_page","item"}'>
<span class='post-author vcard' itemprop='author' itemscope='itemscope' itemtype='https://schema.org/Person'>
<b:if cond='data:post.authorProfileUrl'>
<b:if cond='data:post.authorPhoto.url'>
<div class='foto'>
<amp-img alt='author-photo' class='authorphoto' expr:src='resizeImage(data:post.authorPhoto.url,80)' height='80' itemprop='image' layout='responsive' title='author photo' width='80'/>
</div>
</b:if>
<span class='fn author displayinlineblock'>
<a class='g-profile' expr:href='data:post.authorProfileUrl' itemprop='url' rel='author' title='author profile'>
<span itemprop='name'><data:post.author/></span>
</a>
</span>
<b:else/>
<span class='fn author'><span itemprop='name'><data:post.author/></span></span>
</b:if>
<meta expr:content='data:post.authorPhoto.url' itemprop='image'/>
</span>
<abbr class='updated' expr:title='data:post.timestampISO8601'/>
<meta expr:content='data:post.timestampISO8601' itemprop='datePublished'/>
<meta expr:content='data:post.lastUpdatedISO8601' itemprop='dateModified'/>
</b:if>
</b:includable>
<b:includable id='backlinkDeleteIcon' var='backlink'>
<span expr:class='"item-control " + data:backlink.adminClass'>
<a expr:href='data:backlink.deleteUrl' expr:title='data:top.deleteBacklinkMsg'>
<img alt='delete icon' expr:title='data:top.deleteBacklinkMsg' height='13' src='//www.blogger.com/img/icon_delete13.gif' width='13'/>
</a>
</span>
</b:includable>
<b:includable id='backlinks' var='post'>
<a name='links'/><h4><data:post.backlinksLabel/></h4>
<b:if cond='data:post.numBacklinks != 0'>
<dl class='comments-block' id='comments-block'>
<b:loop values='data:post.backlinks' var='backlink'>
<div class='collapsed-backlink backlink-control'>
<dt class='comment-title'>
<span class='backlink-toggle-zippy'> </span>
<a expr:href='data:backlink.url' expr:title='data:backlink.title' rel='nofollow'><data:backlink.title/></a>
<b:include data='backlink' name='backlinkDeleteIcon'/>
</dt>
<dd class='comment-body collapseable'>
<data:backlink.snippet/>
</dd>
<dd class='comment-footer collapseable'>
<span class='comment-author'><data:post.authorLabel/> <data:backlink.author/></span>
<span class='comment-timestamp'><data:post.timestampLabel/> <data:backlink.timestamp/></span>
</dd>
</div>
</b:loop>
</dl>
</b:if>
<p class='comment-footer'>
<a class='comment-link' expr:href='data:post.createLinkUrl' expr:id='data:widget.instanceId + "_backlinks-create-link"' expr:title='data:post.createLinkLabel' rel='nofollow'><data:post.createLinkLabel/></a>
</p>
</b:includable>
<b:includable id='breadcrumb' var='posts'>
<b:if cond='data:blog.homepageUrl != data:blog.url and data:blog.pageType == "item"'>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.labels'>
<div class='breadcrumbs fontweight400 p0 displayblock fontroboto' itemscope='itemscope' itemtype='https://schema.org/BreadcrumbList'>
<a class='fontweight400 displayinlineblock' expr:href='data:blog.homepageUrl' title='Home'>
<svg viewBox='0 0 24 24'><path d='M10,20V14H14V20H19V12H22L12,3L2,12H5V20H10Z' fill='#000000'/></svg> <span>Home</span></a>
<svg viewBox='0 0 24 24'><path d='M5.5,9A1.5,1.5 0 0,0 7,7.5A1.5,1.5 0 0,0 5.5,6A1.5,1.5 0 0,0 4,7.5A1.5,1.5 0 0,0 5.5,9M17.41,11.58C17.77,11.94 18,12.44 18,13C18,13.55 17.78,14.05 17.41,14.41L12.41,19.41C12.05,19.77 11.55,20 11,20C10.45,20 9.95,19.78 9.58,19.41L2.59,12.42C2.22,12.05 2,11.55 2,11V6C2,4.89 2.89,4 4,4H9C9.55,4 10.05,4.22 10.41,4.58L17.41,11.58M13.54,5.71L14.54,4.71L21.41,11.58C21.78,11.94 22,12.45 22,13C22,13.55 21.78,14.05 21.42,14.41L16.04,19.79L15.04,18.79L20.75,13L13.54,5.71Z' fill='#000000'/></svg>
<b:loop index='num' values='data:post.labels' var='label'>
<span itemprop='itemListElement' itemscope='itemscope' itemtype='https://schema.org/ListItem'>
<a expr:href='data:label.url + "?&max-results=16"' expr:title='data:label.name' itemprop='item' itemscope='itemscope' itemtype='https://schema.org/Thing'>
<span itemprop='name'><data:label.name/></span>
</a>
<meta expr:content='data:num+1' itemprop='position'/>
</span>
<b:if cond='data:label.isLast != "true"'>
<svg viewBox='0 0 24 24'><path d='M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z' fill='#000000'/></svg>
</b:if>
</b:loop>
<svg viewBox='0 0 24 24'><path d='M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z' fill='#000000'/></svg>
<span><data:post.title/></span>
</div>
</b:if>
</b:loop>
</b:if>
</b:includable>
<b:includable id='comment-form' var='post'/>
<b:includable id='commentDeleteIcon' var='comment'/>
<b:includable id='comment_count_picker' var='post'/>
<b:includable id='comment_picker' var='post'/>
<b:includable id='comments' var='post'/>
<b:includable id='disqus-comment' var='post'>
<div class='disqus-box' id='disqusbox'>
<b:if cond='data:blog.pageType != "static_page"'>
<div id='open-comment'/>
<div class='disclaimer_box'>
<div class='content'>
<b>Comment Policy:</b> Silahkan tuliskan komentar Anda yang sesuai dengan topik postingan halaman ini. Komentar yang berisi tautan tidak akan ditampilkan sebelum disetujui.
</div>
</div>
<div aria-label='Buka Komentar' class='btn btn-lg btn-primary btn-block fontroboto borderradius3 fontweight600 displayblock' id='buka-komen' on='tap:komen.show,tutup-komen.show,buka-komen.hide,disqusbox.scrollTo("position"="top")' role='button' tabindex='0'>Buka Komentar</div>
<div aria-label='Tutup Komentar' class='btn btn-lg btn-primary btn-block fontroboto borderradius3 fontweight600 displayblock' hidden='' id='tutup-komen' on='tap:komen.hide,tutup-komen.hide,buka-komen.show,related.scrollTo("position"="top")' role='button' tabindex='0'>Tutup Komentar</div>
</b:if>
<div class='disqus fontroboto' hidden='' id='komen'>
<div class='comment-side2 floatright'>
<b:include data='post' name='pesan-komentar'/>
</div>
<div class='comment-side1 floatleft'>
<amp-iframe expr:src='"https://cdn.staticaly.com/gh/KompiAjaib/kompi-html/master/ampdisqus_blogger4.html?shortname=https-dev-tamplate-blogspot-com&fontBodyFamily=sans-serif&fontLinkColor=00acc1&canonicalurl=" + data:blog.canonicalUrl + "&title=" + data:blog.pageName' frameborder='0' height='300' layout='responsive' resizable='resizable' sandbox='allow-forms allow-scripts allow-same-origin allow-modals allow-popups' width='600'>
<div aria-label='Disqus Comments' overflow='' role='button' tabindex='0'/>
</amp-iframe>
</div>
<div class='clear'/>
</div>
</div>
</b:includable>
<b:includable id='fb-comments' var='post'>
<div class='fb-comments disqus-comments'>
<amp-facebook-comments data-numposts='5' expr:data-href='data:post.url' height='180' layout='responsive' width='600'>
</amp-facebook-comments>
</div>
<div class='clear'/>
<b:include name='nav-post'/>
<div class='clear'/>
</b:includable>
<b:includable id='feedLinks'>
<b:if cond='data:blog.pageType != "item"'> <!-- Blog feed links -->
<b:if cond='data:feedLinks'>
<div class='blog-feeds'>
<b:include data='feedLinks' name='feedLinksBody'/>
</div>
</b:if>
<b:else/> <!--Post feed links -->
<div class='post-feeds'>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.allowComments'>
<b:if cond='data:post.feedLinks'>
<b:include data='post.feedLinks' name='feedLinksBody'/>
</b:if>
</b:if>
</b:loop>
</div>
</b:if>
</b:includable>
<b:includable id='feedLinksBody' var='links'/>
<b:includable id='gp-comments' var='post'>
<div id='g_comments'>
<div class='g-comments' data-first_party_property='BLOGGER' data-view_type='FILTERED_POSTMOD' data-width='706' expr:data-href='data:blog.canonicalUrl'>
</div></div>
</b:includable>
<b:includable id='iframe_comments' var='post'/>
<b:includable id='mobile-index-post' var='post'>
<b:if cond='data:post.dateHeader'>
<div class='mobile-index-date'>
<div class='date-header'>
<span><data:post.dateHeader/></span>
</div>
</div>
</b:if>
<div class='mobile-post-outer'>
<div class='mobile-index-title-outer'>
<h3 class='mobile-index-title entry-title'>
<a expr:title='data:post.title' href='javascript:void(0)'><data:post.title/></a>
</h3>
</div>
<div>
<div class='mobile-index-arrow'>
<a href='javascript:void(0)'>&rsaquo;</a>
</div>
<div class='mobile-post-contents'>
<b:if cond='data:post.thumbnailUrl'>
<div class='mobile-index-thumbnail'>
<div class='Image'>
<img expr:src='data:post.thumbnailUrl'/>
</div>
</div>
</b:if>
<div class='post-body'>
<b:if cond='data:post.snippet'><data:post.snippet/></b:if>
</div>
</div>
<div class='clear'/>
</div>
<div class='mobile-index-comment'>
<b:if cond='data:blog.pageType != "item" and data:blog.pageType != "static_page"'>
<b:if cond='data:post.allowComments'>
<b:if cond='data:post.numComments != 0'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1 <data:top.commentLabel/><b:else/><data:post.numComments/> <data:top.commentLabelPlural/></b:if></a>
</b:if>
</b:if>
</b:if>
</div>
</div>
</b:includable>
<b:includable id='mobile-main' var='top'>
<!-- posts -->
<div class='blog-posts hfeed'>
<b:include data='top' name='status-message'/>
<b:if cond='data:blog.pageType == "index"'>
<b:loop values='data:posts' var='post'>
<b:include data='post' name='mobile-index-post'/>
</b:loop>
<b:else/>
<b:loop values='data:posts' var='post'>
<b:include data='post' name='mobile-post'/>
</b:loop>
</b:if>
</div>
<b:include name='mobile-nextprev'/>
</b:includable>
<b:includable id='mobile-nextprev'>
<div class='blog-pager' id='blog-pager'>
<b:if cond='data:newerPageUrl'>
<div class='mobile-link-button' id='blog-pager-newer-link'>
<a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + "_blog-pager-newer-link"' expr:title='data:newerPageTitle'><data:newerPageTitle/></a>
</div>
</b:if>
<b:if cond='data:olderPageUrl'>
<div class='mobile-link-button' id='blog-pager-older-link'>
<a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + "_blog-pager-older-link"' expr:title='data:olderPageTitle'><data:olderPageTitle/></a>
</div>
</b:if>
<div class='mobile-link-button' id='blog-pager-home-link'>
<a class='home-link' expr:href='data:blog.homepageUrl' expr:title='data:homeMsg'><data:homeMsg/></a>
</div>
<div class='mobile-desktop-link'>
<a class='home-link' expr:href='data:desktopLinkUrl' expr:title='data:homeMsg'><data:desktopLinkMsg/></a>
</div>
</div>
<div class='clear'/>
</b:includable>
<b:includable id='mobile-post' var='post'>
<div class='date-outer'>
<b:if cond='data:post.dateHeader'>
<h2 class='date-header'><span><data:post.dateHeader/></span></h2>
</b:if>
<div class='date-posts'>
<div class='post-outer'>
<div class='post hentry uncustomized-post-template'>
<a expr:name='data:post.id'/>
<b:if cond='data:post.title'>
<h3 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link' expr:title='data:post.title'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<b:if cond='data:blog.url != data:post.url'>
<a expr:href='data:post.url' expr:title='data:post.title'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>
<div class='post-header'>
<div class='post-header-line-1'/>
</div>
<div class='post-body entry-content' expr:id='"post-body-" + data:post.id'>
<data:post.body/>
<div class='clear'/> <!-- clear for photos floats -->
</div>
<div class='post-footer'>
<div class='post-footer-line post-footer-line-1'>
<span class='post-author vcard'>
<b:if cond='data:top.showAuthor'>
<b:if cond='data:post.authorProfileUrl'>
<span class='fn'>
<a expr:href='data:post.authorProfileUrl' rel='author' title='author profile'>
<data:post.author/>
</a>
</span>
<b:else/>
<span class='fn'><data:post.author/></span>
</b:if>
</b:if>
</span>
<span class='post-timestamp'>
<b:if cond='data:top.showTimestamp'>
<data:top.timestampLabel/>
<b:if cond='data:post.url'>
<a class='timestamp-link' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='published' expr:title='data:post.timestampISO8601'><data:post.timestamp/></abbr></a>
</b:if>
</b:if>
</span>
<span class='post-comment-link'>
<b:if cond='data:blog.pageType != "item" and data:blog.pageType != "static_page"'>
<b:if cond='data:post.allowComments'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick' title='comment'><b:if cond='data:post.numComments == 1'>1 <data:top.commentLabel/><b:else/><data:post.numComments/> <data:top.commentLabelPlural/></b:if></a>
</b:if>
</b:if>
</span>
</div>
<div class='post-footer-line post-footer-line-2'>
<b:if cond='data:top.showMobileShare'>
<div class='mobile-link-button goog-inline-block' id='mobile-share-button'>
<a href='javascript:void(0);'><data:shareMsg/></a>
</div>
</b:if>
<b:if cond='data:top.showDummy'>
<div class='goog-inline-block dummy-container'><data:post.dummyTag/></div>
</b:if>
</div>
</div>
</div>
<b:if cond='data:blog.pageType == "static_page" or data:blog.pageType == "item"'>
<b:include data='post' name='comments'/>
</b:if>
</div>
</div>
</div>
</b:includable>
<b:includable id='nav-post'>
<b:if cond='data:blog.pageType == "item"'>
<div class='halaman p0' id='halaman'>
<div class='blog-pager' id='blog-pager'>
<div class='halaman-kiri m0 floatleft tg-left'>
<div class='isihalaman-kiri p0'>
<b:if cond='data:newerPageUrl'>
<span id='blog-pager-newer-link'>
<a class='blog-pager-newer-link p0 fontroboto fontweight600 title-pop' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + "_blog-pager-newer-link"'>Next Post<span class='tooltip'>Next Post</span></a>
</span>
<b:else/>
<span class='current-pageleft p0 fontroboto fontweight600 tg-left title-pop'>Newest Post<span class='tooltip'>Newest Post</span></span>
</b:if>
<div class='clear'/>
</div>
<svg class='panahkiri' viewBox='0 0 24 24'>
<path d='M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z' fill='#000000'/>
</svg>
</div>
<div class='halaman-kanan m0 floatright tg-right'>
<div class='isihalaman-kanan p0'>
<b:if cond='data:olderPageUrl'>
<span id='blog-pager-older-link'>
<a class='blog-pager-older-link p0 fontroboto fontweight600 title-pop' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + "_blog-pager-older-link"' expr:title='data:olderPageTitle'>Previous Post<span class='tooltip'>Previous Post</span></a>
</span>
<b:else/>
<span class='current-pageright p0 fontroboto fontweight600 tg-right title-pop'>Oldest Post<span class='tooltip'>Oldest Post</span></span>
</b:if>
<div class='clear'/>
</div>
<svg class='panahkanan' viewBox='0 0 24 24'>
<path d='M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z' fill='#000000'/>
</svg>
</div>
</div>
<div class='clear'/>
</div>
<div class='clear'/>
</b:if>
</b:includable>
<b:includable id='nextprev'>
<b:if cond='data:blog.pageType != "item" and data:blog.pageType != "static_page"'>
<div class='blog-pager' id='blog-pager'>
<b:if cond='data:newerPageUrl'>
<div class='floatleft' id='blog-pager-newer-link'>
<a class='blog-pager-newer-link p0 borderradius3' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + "_blog-pager-newer-link"' expr:title='data:newerPageTitle'><svg viewBox='0 0 24 24'>
<path d='M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z' fill='#000000'/>
</svg></a>
</div>
</b:if>
<b:if cond='data:olderPageUrl'>
<div class='floatright' id='blog-pager-older-link'>
<a class='blog-pager-older-link p0 borderradius3' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + "_blog-pager-older-link"' expr:title='data:olderPageTitle'><svg viewBox='0 0 24 24'>
<path d='M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z' fill='#000000'/>
</svg></a>
</div>
</b:if>
<div class='mobile-link-button' id='blog-pager-home-link'>
<a class='home-link p0 borderradius3' expr:href='data:blog.homepageUrl' expr:title='data:homeMsg'><svg viewBox='0 0 24 24'>
<path d='M10,20V14H14V20H19V12H22L12,3L2,12H5V20H10Z' fill='#000000'/>
</svg></a>
</div>
<b:if cond='data:mobileLinkUrl'>
<div class='blog-mobile-link'>
<a expr:href='data:mobileLinkUrl'><data:mobileLinkMsg/></a>
</div>
</b:if>
<div class='home-box p0' title='This is the newest page'><svg viewBox='0 0 24 24'>
<path d='M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z' fill='#000000'/>
</svg>
</div>
<div class='lasthome-box p0' title='This is the latest page'><svg viewBox='0 0 24 24'>
<path d='M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z' fill='#000000'/>
</svg>
</div>
</div>
</b:if>
<div class='clear'/>
</b:includable>
<b:includable id='pesan-blogger' var='post'/>
<b:includable id='pesan-komentar' var='post'>
<div class='pesan-komentar' id='pesan-komentar'>
<div aria-label='Code Parser' class='btn btn-lg btn-primary' id='show-parse' on='tap:parsebox.show,parse-box.show,hide-parser.show,show-parse.hide' role='button' tabindex='0'>Code Parser</div>
<div class='parse-box slideInUp' hidden='' id='parse-box'>
<div aria-label='Hide Parser' class='btn btn-primary btn-xs' hidden='' id='hide-parser' on='tap:parsebox.hide,parse-box.hide,hide-parser.hide,show-parse.show' role='button' tabindex='0'>&times;</div>
<amp-iframe frameborder='0' height='300' hidden='' id='parsebox' layout='fixed-height' sandbox='allow-forms allow-scripts allow-same-origin allow-modals allow-popups' src='https://cdn.staticaly.com/gh/KompiAjaib/kompi-html/master/parser-code2.html'>
<amp-img height='300' layout='fixed-height' placeholder='' src='https://2.bp.blogspot.com/-rRo__E6FsPs/Ws7U-IT8KNI/AAAAAAAAw_Q/qCwa6vKHgTIB-ytesdA4FlKrXMRYt5NMACLcBGAs/s1600/placeholder.png' width='auto'/>
</amp-iframe>
</div>
<!---<div class='tombol-pesan'>Use parse tool to easy get the text style on disqus comments:</div> -->
<!--<div id='isi-pesan'>
<ul>
<li>To write a <b>bold</b> letter please use <code>&lt;strong&gt;&lt;/strong&gt;</code> or <code>&lt;b&gt;&lt;/b&gt;</code>.</li>
<li>To write a <i>italic</i> letter please use <code>&lt;em&gt;&lt;/em&gt;</code> or <code>&lt;i&gt;&lt;/i&gt;</code>.</li>
<li>To write a <u>underline</u> letter please use <code>&lt;u&gt;&lt;/u&gt;</code>.</li>
<li>To write a <span class='strike'>strikethrought</span> letter please use <code>&lt;strike&gt;&lt;/strike&gt;</code>.</li>
<li>To write HTML code, please use <code>&lt;code&gt;&lt;/code&gt;</code> or <code>&lt;pre&gt;&lt;/pre&gt;</code> or <code>&lt;pre&gt;&lt;code&gt;&lt;/code&gt;&lt;/pre&gt;</code>.<br/>
And use <b>parse tool</b> below to easy get the style.</li>
</ul>
</div>-->
<div class='clear'/>
<!--<b:if cond='data:blog.pageType == "item"'>
<amp-accordion class='parse_box'>
<section>
<h5 class='btn btn-primary btn-xs'>
<span class='show-more'>Show Parser</span>
<span class='show-less'>Hide Parser</span>
</h5>
<div class='parse-box'>
<amp-iframe frameborder='0' height='250' layout='responsive' sandbox='allow-forms allow-scripts allow-same-origin allow-modals allow-popups' src='https://cdn.staticaly.com/gh/KompiAjaib/kompi-html/master/parser-code2.html' width='747'>
</amp-iframe>
</div>
</section>
</amp-accordion>
<div class='clear'/>
</b:if>-->
</div>
</b:includable>
<b:includable id='post' var='post'>
<article class='post hentry m0'>
<b:if cond='data:post.firstImageUrl'>
<div itemprop='image' itemscope='itemscope' itemtype='https://schema.org/ImageObject'>
<meta expr:content='resizeImage(data:post.firstImageUrl,800,"1:1")' itemprop='url'/>
<meta content='800' itemprop='width'/>
<meta content='800' itemprop='height'/>
</div>
<b:else/>
<div itemprop='image' itemscope='itemscope' itemtype='https://schema.org/ImageObject'>
<meta content='https://3.bp.blogspot.com/-x_mMtgFf6XE/VlhLxwdLekI/AAAAAAAAj3c/N7fRz1lbMSg/s800-c/no-thumbnail.jpg' itemprop='url'/>
<meta content='800' itemprop='width'/>
<meta content='800' itemprop='height'/>
</div>
</b:if>
<div itemprop='publisher' itemscope='itemscope' itemtype='https://schema.org/Organization'>
<div itemprop='logo' itemscope='itemscope' itemtype='https://schema.org/ImageObject'>
<meta content='https://2.bp.blogspot.com/-u0CQJL_7dDQ/WloxlIv7B8I/AAAAAAAABmk/stcVxIHh7a8lUNXyYiJCFxDkW1kFimmWACLcBGAs/s1600/192.png' itemprop='url'/>
<meta content='600' itemprop='width'/>
<meta content='60' itemprop='height'/>
</div>
<meta expr:content='data:blog.title' itemprop='name'/>
</div>
<meta expr:content='data:post.timestampISO8601' itemprop='datePublished'/>
<meta expr:content='data:post.lastUpdatedISO8601' itemprop='dateModified'/>
<!--<b:if cond='data:blog.pageType != "item" and data:blog.pageType != "static_page"'>
<a expr:href='data:post.url' expr:title='data:post.title'>
<b:if cond='data:post.firstImageUrl'>
<div class='_post-part _post-thumbnail-area'>
<amp-img expr:alt='data:post.title' expr:src='resizeImage(data:post.firstImageUrl,333)' expr:title='data:post.title' height='222' layout='responsive' width='333'/>
</div>
<b:else/>
<div class='_post-part _post-thumbnail-area'>
<amp-img class='_post-thumbnail' expr:alt='data:post.title' height='222' layout='responsive' src='https://2.bp.blogspot.com/-ex3V86fj4dQ/UrCQQa4cLsI/AAAAAAAAFdA/j2FCTmGOrog/s333/no-thumbnail.png' width='333'/>
</div>
</b:if>
</a>
</b:if>-->
<b:include data='posts' name='breadcrumb'/>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:post.title'>
<h2 class='post-title entry-title center' itemprop='headline'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link' expr:title='data:post.title' itemprop='url mainEntityOfPage'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url' expr:title='data:post.title' itemprop='url mainEntityOfPage'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h2>
</b:if>
<b:else/>
<h1 class='post-title entry-title' itemprop='headline'>
<b:if cond='data:post.link'>
<a class='color2B0C93 displayblock' expr:href='data:post.link' expr:title='data:post.title' itemprop='url mainEntityOfPage'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a class='color2B0C93 displayblock' expr:href='data:post.url' expr:title='data:post.title' itemprop='url mainEntityOfPage'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h1>
</b:if>
<b:if cond='data:blog.pageType == "item" and data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' itemprop='description'/>
<meta expr:content='data:blog.metaDescription' property='twitter:description'/>
<b:else/>
<meta expr:content='data:post.snippet' itemprop='description'/>
<meta expr:content='data:post.snippet' property='twitter:description'/>
</b:if>
<b:if cond='data:blog.pageType == "static_page"'>
<div class='postmeta fontroboto fontweight400 m0 floatright p0'>
<h3 class='date-header fontroboto fontweight400 m0'>
<b:include data='post' name='author-post'/>
</h3>
</div>
</b:if>
<b:if cond='data:blog.pageType == "item" and data:blog.pageType != "error_page"'>
<!--<div class='iklan-ataspost'>
<b:if cond='data:blog.isMobileRequest == "false" and not data:blog.searchQuery'>