-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathillegal_url_request.py
More file actions
1940 lines (1716 loc) · 95.3 KB
/
illegal_url_request.py
File metadata and controls
1940 lines (1716 loc) · 95.3 KB
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
illegal_url = "http://103.204.13.68:8905/bbs/board.php?bo_table=toons&wr_id=1768032&stx=%EC%9B%90%ED%94%BC%EC%8A%A4(ONE%20PIECE)&is=2"
illegal_html = """
<html lang="ko"><head>
<!--81inc-cache -->
<meta name="viewport" content="initial-scale=1, width=device-width">
<meta name="google-site-verification" content="tSAA9Ppm__YnWF4dnLOthyCXsxf37gK-1ndZy3wjNOo">
<meta name="mobile-web-app-capable" content="yes">
<!--<script src="https://analytics-script.ad-shield.io/script.min.js"></script>
<meta name="adshield-analytics-verification" content="d9807b97-6ce3-4e93-bf5f-473b8060ab0c"/>-->
<meta charset="utf-8">
<meta http-equiv="imagetoolbar" content="no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="title" content="원피스(ONE PIECE) 1122화, 전극진, 일일툰, 무료웹툰">
<meta name="subject" content="원피스(ONE PIECE) 1122화, 전극진, 일일툰, 무료웹툰">
<meta name="publisher" content="일일툰">
<meta name="author" content="전극진">
<meta name="robots" content="index,follow">
<meta name="keywords" content="원피스(ONE PIECE) 1122화, 전극진,웹툰,만화,코믹,무료,Free,Webtoon,Comic,Comix,Manga,ani,animation,애니,최신,최신화,무료만화,원펀맨,무료애니,무료웹툰">
<meta name="description" content="열혈강호, 전극진, 열혈강호는 무림 정파와 사파,신지를 일대기로 그린 작품이다,중원 무림의 천마신군의 제자 한비광과 정파 천하오절 담신우의 손녀 담화린을 중심으로 벌어지는 이야기이다">
<link rel="image_src" href="" 11toon7.com="" 03="" 1768032.webp""="">
<link rel="canonical" href="http://103.204.13.68:8905/bbs/board.php?bo_table=toons&wr_id=1768032&stx=원피스(ONE PIECE) 1122화&is=2">
<!-- for Facebook -->
<meta property="og:title" content="원피스(ONE PIECE) 1122화">
<meta property="og:site_name" content="일일툰">
<meta property="og:author" content="전극진 ">
<meta property="og:type" content="article">
<meta property="og:image" content="" 11toon7.com="" 03="" 1768032.webp""="">
<meta property="og:description" content="원피스(ONE PIECE) 1122화, 전극진, 열혈강호는 무림 정파와 사파,신지를 일대기로 그린 작품이다,중원 무림의 천마신군의 제자 한비광과 정파 천하오절 담신우의 손녀 담화린을 중심으로 벌어지는 이야기이다,웹툰,만화,코믹,무료,Free,Webtoon,Comic,Comix,Manga,ani,animation,애니,최신,최신화,무료만화,원펀맨,무료애니,무료웹툰">
<meta property="og:url" content="http://103.204.13.68:8905/bbs/board.php?bo_table=toons&wr_id=1768032&stx=원피스(ONE PIECE) 1122화&is=2">
<!-- for Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="http://103.204.13.68:8905/bbs/board.php?bo_table=toons&wr_id=1768032&stx=원피스(ONE PIECE) 1122화&is=2">
<meta name="twitter:title" content="원피스(ONE PIECE) 1122화">
<meta name="twitter:description" content="원피스(ONE PIECE) 1122화, 전극진, 열혈강호는 무림 정파와 사파,신지를 일대기로 그린 작품이다,중원 무림의 천마신군의 제자 한비광과 정파 천하오절 담신우의 손녀 담화린을 중심으로 벌어지는 이야기이다,웹툰,만화,코믹,무료,Free,Webtoon,Comic,Comix,Manga,ani,animation,애니,최신,최신화,무료만화,원펀맨,무료애니,무료웹툰">
<meta name="twitter:image" content="" 11toon7.com="" 03="" 1768032.webp""="">
<meta name="twitter:image:width" content="280">
<meta name="twitter:image:height" content="390">
<title> 원피스(ONE PIECE) 1122화 - 일일툰 일본만화 무료만화 무료웹툰 무료애니</title>
<link rel="icon" sizes="192x192" href="http://pl4050.com/toonfile/toonres/img/192x192.jpg">
<link rel="stylesheet" media="screen" href="http://pl4050.com/toonfile/toonres/theme/toon/static/css/global.css">
<link rel="stylesheet" media="screen" href="http://pl4050.com/toonfile/toonres/theme/toon/static/css/viewer.css?v=3">
<link rel="stylesheet" media="screen" href="http://pl4050.com/toonfile/toonres/theme/toon/static/css/bootstrap.min.css">
<!--<link rel="stylesheet" media="screen" href="http://pl4050.com/toonfile/toonres/theme/toon/static/css/iconfont.css">-->
<link rel="stylesheet" media="screen" href="http://pl4050.com/toonfile/toonres/theme/toon/static/css/new_style.css">
<link rel="stylesheet" media="screen" href="http://pl4050.com/toonfile/toonres/theme/toon/static/css/new-body.css">
<link rel="stylesheet" href="http://pl4050.com/toonfile/toonres/theme/basic/skin/board/toon_gallery/style.css?ver=171222">
<script type="text/javascript" src="http://pl4050.com/toonfile/toonres/theme/toon/static/js/jquery.js"></script>
<script type="text/javascript" src="http://pl4050.com/toonfile/toonres/theme/toon/static/js/my.js?v=240207"></script>
<script type="text/javascript" src="http://pl4050.com/toonfile/toonres/theme/toon/static/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/NYGdYy_kABpEEHqbWhH4bKccqIqUG7UcrfXL2fCjAtkhYK7mtShmxLYie9SOyTM6GWcsRiFNpDS9n3NXaybBQw=="></script><script type="text/javascript" src="/Q0Rl_O1y8TaBpohpPQnFzTOZiQu40ftbOkFrUZHYpiwYeCTU3c0J8T2B4NT_8g67YmSYjaiy0rbZUFtsIxvAFw=="></script><script async="" src="https://www.googletagmanager.com/gtag/js?id=G-7FZZ1MB0C5"></script><script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-7FZZ1MB0C5');
</script><style type="text/css"></style></head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<body class="is-logged ko-KR ko is-comic" data-page-id="" data-screen="" data-weekday="2" data-direction="ttb" data-purchased="false">
<div id="overlay"></div>
<div id="viewer-coach" class="viewer-coach">
<div class="viewer-coach-image"></div>
</div>
<div id="viewer-header-wrapper" style="display: none;">
<header class="viewer-header is-active" data-ga-event-category="뷰어_UI">
<div class="viewer-header__inner">
<div class="viewer-header__home">
<a class="viewer-header__logo" href="/" data-ga-on="click" data-ga-event-action="" data-ga-event-label="버튼_홈" data-head="81cache">
<span class="a11y">레진코믹스 홈으로</span>
</a>
</div>
<div class="viewer-header__episode">
<a class="viewer-header__episode-link" href="/bbs/board.php?bo_table=toons&stx=원피스(ONE PIECE)&is=2" data-ga-on="click" data-ga-event-action="" data-ga-event-label="버튼_에피소드목록">
<h1 class="viewer-header__subject">
<span class="viewer-header__title">원피스(ONE PIECE) 1122화</span>
</h1>
</a>
</div>
<aside class="viewer-header__control-box">
<h2 class="a11y">뷰어 기능</h2>
<ul class="viewer-header__control-list">
<li class="viewer-header__control-item" style="display:none">
<button class="viewer-header__control-btn m--preview" data-purchased="false" type="button"></button>
</li>
<li class="viewer-header__control-item" style="display:none">
<button class="viewer-header__control-btn m--avatar" type="button">
<span class="a11y">아바타</span>
</button>
</li>
<!-- 구독하기 + 레진패스 -->
<li class="viewer-header__control-item" style="display:none;">
<button class="viewer-header__control-btn m--subscribe" data-initial-subscribe="${subscribed" ?="" "true"="" :="" "false"="" }="" type="button" aria-describedby="subscribe-tooltip" data-tooltip="#subscribe-tooltip">
<span class="a11y">구독</span>
</button>
<div id="subscribe-tooltip" class="coach-tooltip" role="tooltip">
최신화 놓치기 싫다면<br>지금 구독하세요.
</div>
</li>
<li class="viewer-header__control-item" style="display:none;">
<button class="viewer-header__control-btn m--lzpass" data-initial-lzpass="${lzpass" ?="" "true"="" :="" "false"="" }="" type="button" aria-describedby="lzpass-tooltip" data-tooltip="#lzpass-tooltip" data-ga-on="click" data-ga-event-action="" data-ga-event-label="버튼_레진패스">
<span class="a11y">레진패스</span>
</button>
<div id="lzpass-tooltip" class="coach-tooltip" role="tooltip">
레진패스 모드<br>배너 없이 몰아보기!
</div>
</li>
<!-- /구독하기 + 레진패스 -->
<li class="viewer-header__control-item" style="display:none">
<button class="viewer-header__control-btn m--cross" type="button" data-ga-on="click" data-ga-event-action="" data-ga-event-label="버튼_크로스/스크롤_전환">
<span class="a11y">크로스/스크롤 전환</span>
</button>
</li>
<li class="viewer-header__control-item" style="display:none">
<button class="viewer-header__control-btn m--bgm" type="button" data-ga-on="click" data-ga-event-action="" data-ga-event-label="버튼_BGM">
<span class="a11y">배경음</span>
</button>
</li>
<li class="viewer-header__control-item" style="display:none">
<button class="viewer-header__control-btn m--fontsize" type="button">
<span class="a11y">글자크기</span>
</button>
<ul class="viewer-header__fontsize-list">
<li class="viewer-header__fontsize-item">
<button class="viewer-header__fontsize-btn m--down" type="button">
<span class="a11y">작게</span>
</button>
</li>
<li class="viewer-header__fontsize-item">
<button class="viewer-header__fontsize-btn m--up" type="button">
<span class="a11y">크게</span>
</button>
</li>
</ul>
</li>
<li class="viewer-header__control-item" style="display:">
<button id="fullscreenBtn" class="viewer-header__control-btn m--fullscreen" type="button" data-ga-on="click" data-ga-event-action="" data-ga-event-label="버튼_전체화면">
<span class="a11y">전체화면</span>
</button>
</li>
<li class="viewer-header__control-item" style="display:none;">
<button class="viewer-header__control-btn m--share" type="button">
<span class="a11y">공유</span>
</button>
<ul class="viewer-header__share-list">
<li class="viewer-header__share-item">
<a class="viewer-header__share-btn m--facebook" href="#" target="_blank" data-ga-on="click" data-ga-event-action="" data-ga-event-label="버튼_공유_페이스북">
페이스북 공유하기
</a>
</li>
<li class="viewer-header__share-item">
<a class="viewer-header__share-btn m--twitter" href="#" target="_blank" data-ga-on="click" data-ga-event-action="" data-ga-event-label="버튼_공유_트위터">
트위터 공유하기
</a>
</li>
</ul>
</li>
<li class="viewer-header__control-item" style="display:none">
<button class="viewer-header__control-btn m--list" type="button">
<span class="a11y">목차보기</span>
</button>
</li>
<li class="viewer-header__control-item">
<label class="viewer-header__control-btn m--more" for="viewer-header__more" style="display:none">
<span class="a11y">추가 기능 보기</span>
</label>
<input type="checkbox" id="viewer-header__more" class="viewer-header__more">
<ul class="viewer-header__optional-list">
<li class="viewer-header__control-item" style="display:none">
<button class="viewer-header__control-btn m--avatar" type="button">
<span class="a11y">캐릭터 보기</span>
</button>
</li>
<li class="viewer-header__control-item" style="display:none">
<button class="viewer-header__control-btn m--fontsize" type="button">
<span class="a11y">글자크기</span>
</button>
<ul class="viewer-header__fontsize-list">
<li class="viewer-header__fontsize-item">
<button class="viewer-header__fontsize-btn m--down" type="button">
<span class="a11y">작게</span>
</button>
</li>
<li class="viewer-header__fontsize-item">
<button class="viewer-header__fontsize-btn m--up" type="button">
<span class="a11y">크게</span>
</button>
</li>
</ul>
</li>
<li class="viewer-header__control-item" style="display:none">
<button class="viewer-header__control-btn m--list" type="button">
<span class="a11y">목차보기</span>
</button>
</li>
</ul>
</li>
</ul>
</aside>
</div>
</header>
</div>
<div id="contents-wrapper" class="contents-wrapper headerror">
<style>
.view-content {
padding: 0px 15px 20px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
user-drag: none;
}
.view-mobile .view-content {
padding: 0px 0px 20px;
}
.view-content img {
width: auto;
height: auto;
max-width: 100%;
}
.view-content p {
padding: 0;
margin: 0;
line-height: 22px;
}
.view-content{
position:relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
line-height: 0;
/* width: 50%; */
margin: 0 auto;
}
.view-content > .mm{
left:0;
right:0;
top:0;
bottom:0;
background-color:#fff;
position: absolute;
background-color: #fff;
opacity: 0;
}
.mobile-m > a > .hide-m{
display:none!important;
}
@media (max-width: 600px){
.responsive .at-body .at-container {
padding: 0 !important;
}
.view-content{
padding: 0 !important;
width: 98%!important;
}
.pink-button{
margin:0 10px;
}
}
@media (max-width: 980px){
.mobile-m{
width:100%!important;
}
.mobile-m > a > .show-m{
display:none!important;
}
.mobile-m > a > .hide-m{
display:block!important;
}
.mobile-m > a{
display:block;
width:100%;
height:100%;
}
.mobile-m > a > img{
width:100%;
}
}
.ad400__100{
display: none;
}
.ad720_90{
display:block;
display: flex;
}
@media (max-width: 980px) {
.ad400__100{
display:block;
display: flex;
}
.ad720_90{
display: none;
}
}
</style>
<span id="adsbig3"><div style="margin: 0 auto;width: 50%;justify-content: center;" class="mobile-m ad720_90">
<a href="http://1bet1.vip/" target="_blank">
<img src="//wwwimageup.angle777899.com/other/atoona/원벳원1bet1_720x90-111.gif" class="show-m" alt="1bet1 원벳원 720x90">
</a>
</div><div style="margin: 0 auto;width: 50%;justify-content: center;" class="mobile-m ad720_90">
<a href="http://wn-st.com" target="_blank">
<img src="//wwwimageup.angle777899.com/other/atoona/위너winner_720x90-1111.gif" class="show-m" alt="위너 720x90">
</a>
</div><div style="margin: 0 auto;width: 50%;justify-content: center;" class="mobile-m ad720_90">
<a href="https://lula.ooo/" target="_blank">
<img src="//wwwimageup.angle777899.com/other/atoona/룰라720x90-6224.gif" class="show-m" alt="lula 룰라 일일툰 추천베팅사이트 가입코드 6224 가입첫충40%">
</a>
</div><div style="margin: 0 auto;width: 50%;justify-content: center;" class="mobile-m ad720_90">
<a href="http://md-2424.com/index?code=3333" target="_blank">
<img src="//wwwimageup.angle777899.com/other/atoona/모델-72090.gif" class="show-m" alt="모델 가입첫충100% 매충10% 돌발 20% 일일툰 추천 사이트">
</a>
</div></span>
<span id="adssmall3"><div style="margin: 0 auto;width: 50%;justify-content: center;" class="mobile-m ad400__100">
<a href="http://wn-st.com" target="_blank">
<img src="//wwwimageup.angle777899.com/other/atoona/위너winner_400x100-1111.gif" class="hide-m" alt="위너 400x100">
</a>
</div><div style="margin: 0 auto;width: 50%;justify-content: center;" class="mobile-m ad400__100">
<a href="http://md-2424.com/index?code=3333" target="_blank">
<img src="//wwwimageup.angle777899.com/other/atoona/모델-400100.gif" class="hide-m" alt="모델 가입첫충100% 매충10% 돌발 20% 일일툰 추천 사이트">
</a>
</div><div style="margin: 0 auto;width: 50%;justify-content: center;" class="mobile-m ad400__100">
<a href="http://1bet1.vip/" target="_blank">
<img src="//wwwimageup.angle777899.com/other/atoona/원벳원1bet1_400x100-111.gif" class="hide-m" alt="1bet1 원벳원 400x100">
</a>
</div><div style="margin: 0 auto;width: 50%;justify-content: center;" class="mobile-m ad400__100">
<a href="https://lula.ooo/" target="_blank">
<img src="//wwwimageup.angle777899.com/other/atoona/룰라400x100-6224.gif" class="hide-m" alt="lula 룰라 일일툰 추천베팅사이트 가입코드 6224 가입첫충40%">
</a>
</div></span>
<div id="scroll-list" class="view-content scroll-viewer">
<div class="mm"></div>
<canvas width="704" height="322" style="max-width: 100%;"></canvas><canvas style="max-width: 100%;" width="704" height="702"></canvas><canvas width="704" height="429" style="max-width: 100%;"></canvas><canvas style="max-width: 100%;" width="704" height="595"></canvas><canvas width="704" height="452" style="max-width: 100%;"></canvas><canvas style="max-width: 100%;" width="704" height="572"></canvas><canvas width="1409" height="503" style="max-width: 100%;"></canvas><canvas style="max-width: 100%;" width="1409" height="521"></canvas><canvas width="704" height="335" style="max-width: 100%;"></canvas><canvas style="max-width: 100%;" width="704" height="689"></canvas><canvas width="704" height="411" style="max-width: 100%;"></canvas><canvas style="max-width: 100%;" width="704" height="613"></canvas><canvas width="1409" height="390" style="max-width: 100%;"></canvas><canvas style="max-width: 100%;" width="1409" height="634"></canvas><canvas width="1409" height="328" style="max-width: 100%;"></canvas><canvas style="max-width: 100%;" width="1409" height="696"></canvas><canvas width="1409" height="505" style="max-width: 100%;"></canvas><canvas style="max-width: 100%;" width="1409" height="519"></canvas><canvas width="704" height="315" style="max-width: 100%;"></canvas><canvas style="max-width: 100%;" width="704" height="709"></canvas><canvas width="704" height="454" style="max-width: 100%;"></canvas><canvas style="max-width: 100%;" width="704" height="570"></canvas><canvas width="704" height="480" style="max-width: 100%;"></canvas><canvas style="max-width: 100%;" width="704" height="544"></canvas><canvas width="704" height="475" style="max-width: 100%;"></canvas><canvas style="max-width: 100%;" width="704" height="549"></canvas></div>
<div class="viewer-list scroll-control idle">
<div style="margin: 0 auto;width: 50%;justify-content: center;" class="mobile-m ad720_90">
<a href="http://wbet.space/" target="_blank">
<img src="//wwwimageup.angle777899.com/other/atoona/wbet_720x90-1112.gif" class="show-m" alt="wbet 더블유벳 가입코드1112 가입첫충 30% 무한매충10% 스포츠토토 베팅상한 5천만원 일일툰 안전놀이터 추천 스포츠 인플레이|유럽식 스포츠|라이브 호텔 카지노|라이브 포커">
</a>
</div><div style="margin: 0 auto;width: 50%;justify-content: center;" class="mobile-m ad400__100">
<a href="http://wbet.space/" target="_blank">
<img src="//wwwimageup.angle777899.com/other/atoona/wbet_400x100-1112.gif" class="hide-m" alt="wbet 더블유벳 가입코드1112 가입첫충 30% 무한매충10% 스포츠토토 베팅상한 5천만원 일일툰 안전놀이터 추천 스포츠 인플레이|유럽식 스포츠|라이브 호텔 카지노|라이브 포커">
</a>
</div></div>
<div style="width: 80%; margin: 0 auto;">
<script>
// 글자수 제한
var char_min = parseInt(0); // 최소
var char_max = parseInt(0); // 최대
</script>
<style>
.media-object i {
background: rgb(245, 245, 245);
padding: 7px;
border-radius: 50%;
width: 30px;
height: 30px;
text-align: center;
color: rgb(143, 143, 143);
font-size: 15px;
display: inline-block;
}
.media-user img{
border-radius:50%;
overflow:hidden;
width: 30px;
height: 30px;
}
</style>
<button type="button" class="cmt_btn"><i class="fa fa-commenting-o" aria-hidden="true"></i> 댓글목록</button>
<!-- 댓글 시작 { -->
<section id="bo_vc">
<article id="c_371840">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">만화킴</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 00:20:33</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
매듭에 패기를 담아뒀다고? 패기를 물질적인 형태로 저장이 가능하다는 거지?
<br>그럼 나중에 우솝같은 ㅈ밥한테 루피가 패왕색 패기 빌려주는거 나오냐? ㅋㅋㅋㅋ </div>
<p></p>
</div>
</article>
<article id="c_371888" style="margin-left:50px;border-top-color:#e0e0e0">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">썬업예372</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 01:08:39</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
우솝이 새총으로 쏘고
<br>쵸파는 럼블을 이용해 뭔가 만들겠지??
<br>나미는 구름으로 던지고?? ㅋㅋㅋ </div>
<p></p>
</div>
</article>
<article id="c_371841">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">성난돌돌이</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 00:20:34</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
자폭기 써서 오로성 강제 리스폰 실화냐? </div>
<p></p>
</div>
</article>
<article id="c_371838">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">세타</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 00:39:30</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
에그헤드 끝?? </div>
<p></p>
</div>
</article>
<article id="c_371839">
<header style="z-index:17">
<div class="media-user"><img src="//11toonimg1.spotv24.com/data/user/63.jpg" class="img-circle" alt="Us"><span class="member">뽕뽕뿡</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 00:44:52</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
철인28호 짧고 굵은 퇴장이었다 편히 잠들길.... </div>
<p></p>
</div>
</article>
<article id="c_371842">
<header style="z-index:17">
<div class="media-user"><img src="//11toonimg1.spotv24.com/data/user/63.jpg" class="img-circle" alt="Us"><span class="member">뽕뽕뿡</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 00:46:59</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
우리들의 세계!!! 아니냐? 크으으읔 버황!!!!!! </div>
<p></p>
</div>
</article>
<article id="c_371843">
<header style="z-index:17">
<div class="media-user"><img src="//11toonimg1.spotv24.com/data/user/53.jpg" class="img-circle" alt="Us"><span class="member">고진감퇴</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 00:47:43</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
루피: 패기는 다른 사람에게 저장할 수 있는거지!?
<br>에메트: 후후후후후후! 극소수의 강자만 말이지! </div>
<p></p>
</div>
</article>
<article id="c_371845">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">페로나</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 01:15:01</time>
</span>
</header>
<div class="cmt_contents">
<p>ㅅㅂ 조이 보이 얼마나 쎘던거냐?ㄷㄷ 페기를 저큰 로봇에 저장ㄷㄷ 엄청난 위력일듯 카무사리 천방끕은 될듯 </p>
</div>
</article>
<article id="c_371889">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">으네</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 01:29:26</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
와 조이보이 패왕색 지리네 ㅋㅋㅋ </div>
<p></p>
</div>
</article>
<article id="c_371886">
<header style="z-index:17">
<div class="media-user"><img src="//11toonimg1.spotv24.com/data/user/84.jpg" class="img-circle" alt="Us"><span class="member">감정코칭</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 01:39:35</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
결국 패기가 최고구만 패없찐들은 엑스트라나 하러 가라 </div>
<p></p>
</div>
</article>
<article id="c_371885">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">왕입니다</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 01:44:08</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
패기로 소환해제된 거 보면 오로성 자체가 임의 능력같은 거거나 임으로부터 힘을 부여받은 건가? 열매 생성 원리의 상위버전같은? </div>
<p></p>
</div>
</article>
<article id="c_371887">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">호랑리아리</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 01:56:47</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
뭉게뭉게의 스모커.... 언제 떡상하냐... </div>
<p></p>
</div>
</article>
<article id="c_371892">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">zool94</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 02:35:37</time>
</span>
</header>
<div class="cmt_contents">
<p>이무한테도 영향이 끼치네 ㅋㅋㅋㅋ
패왕색 이젠 등급이 점점 하락되는거 같은데...</p>
</div>
</article>
<article id="c_371895">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">David</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 03:19:07</time>
</span>
</header>
<div class="cmt_contents">
<p></p><p>패기를 담는 디이얼도 있을까?</p><p></p>
</div>
</article>
<article id="c_371941">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">길릭</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 03:57:30</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
페이지 분할 때문에 내용이 좀 많이 뒤죽박죽이네 </div>
<p></p>
</div>
</article>
<article id="c_371912">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">abc53433</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 04:39:09</time>
</span>
</header>
<div class="cmt_contents">
<p>막짤 샹크스 아님? 밀짚모자같은데 </p>
</div>
</article>
<article id="c_371942">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">bluechip</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 06:53:19</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
코비야 그렇게 평생 딸치면서 살거냐 </div>
<p></p>
</div>
</article>
<article id="c_371943">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">아이go</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 07:56:09</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
조이보이 패왕색에 오로성들 세턴 빼고 권력의 방으로 가고 이무까지 영향을 받다니 ㅋㅋㅋ
<br>
<br>코비는 루피가 세계를 가라앉게 만들거라고 생각하나 ㅋㅋㅋ
<br>
<br>루피는 신용할만한 존재란걸 모르네....티치가 해적왕 못하게 막아야지 </div>
<p></p>
</div>
</article>
<article id="c_371940">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">꼬부기</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 08:25:00</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
패기 저장 미쳤누 ㅋㅋ </div>
<p></p>
</div>
</article>
<article id="c_371961">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">mbtious</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 10:02:49</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
오로성 변신풀려서 마리조아까지 쫓아내고, 임은 두려움에 오열까지 해버리네..해군은 중장급외 전부 기절..뭐여 이거 무서워 조이보이
<br>혼자서 사황 3명분 하는거아님 ㅎㄷㄷㄷㄷ </div>
<p></p>
</div>
</article>
<article id="c_371975">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">mbtious</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 11:04:40</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
번역이 제대로한거라면 조이보이 대사가 의미심장하다..
<br>과거로부터 내가 너를 구하는거지/ 늘 그래왔잖아 </div>
<p></p>
</div>
</article>
<article id="c_371984">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">라꾸꾸꾸s</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 12:12:49</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
결국 결말은
<br>루피가 원피스를 얻음.
<br>하지만 세계에 알려지는건 버기일듯
<br>세계는 버기가 원피스를 얻었고, 해적왕의 자리에 올랐다 라고 공표할듯
<br>
<br>몇몇 주요인물들만 원피슨는 루피에게 있다라고 정도로 알려짐. </div>
<p></p>
</div>
</article>
<article id="c_371993">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">우자</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 14:30:58</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
나의 세계가 아니라 우리의 세계다!
<br>버기가 소년만화 주인공 같은 대사를 치네 ㅋㅋㅋ </div>
<p></p>
</div>
</article>
<article id="c_371994">
<header style="z-index:17">
<div class="media-user"><img src="//11toonimg1.spotv24.com/data/user/56.jpg" class="img-circle" alt="Us"><span class="member">훈짱v</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 14:46:14</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
이건 뭐 패기 핵폭탄 전술 이잔여. </div>
<p></p>
</div>
</article>
<article id="c_372013">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">zzipoo81</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 18:46:17</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
빨리 완결 나왔으면 좋겠다. </div>
<p></p>
</div>
</article>
<article id="c_372017">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">흐린세상</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-02 19:39:47</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
샹크인가 ㅋㅋ </div>
<p></p>
</div>
</article>
<article id="c_372499">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">왕돼지아빠</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-03 21:22:39</time>
</span>
</header>
<div class="cmt_contents">
<p></p><div>
패기가 엄청 나네 </div>
<p></p>
</div>
</article>
<article id="c_372582">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">abc53433</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-04 03:40:23</time>
</span>
</header>
<div class="cmt_contents">
<p>나루토 블리치 작가는 땅을 치고 후회하겠지 ㅋㅋ 걍 코난처럼 롱런 계속하는게 나은듯 후속편만들면 나블 꼴 남</p>
</div>
</article>
<article id="c_373061">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">페로나</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-05 19:00:42</time>
</span>
</header>
<div class="cmt_contents">
<p>조이보이 진짜 엄청나네 ㄷㄷ최대치 페왕색이 저정도 워력이면 이무년 요실금 까지 오게할정도ㅎㄷㄷ 하다
저정도 페기면 진짜 최강아니냐... 페기만으로도 오로성 바를 정도인데 ㅁㅊ</p>
</div>
</article>
<article id="c_373721">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">페로나</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-07 22:51:55</time>
</span>
</header>
<div class="cmt_contents">
<p>거기에 개사기 니카 열매 까지 먹었었는데 진짜 ㅈㄴ쎘겠네 ㄷㄷ 머 힌수염 카이도우 좃발르고 로저도 발랏을 정도 같음 역대 최고 최강의 페기임ㄷㄷ</p>
</div>
</article>
<article id="c_373977">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">페로나</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-08 14:16:58</time>
</span>
</header>
<div class="cmt_contents">
<p>악마의 열매에도 의지가 있다 했음 특히 고무열매는 세계 정부에서도 악마의 열매가 피하는거 같다함 결코 자기들 손에 안들어 온다고 정부서 이름 까지도 숨기고 바꾼 열매
고작 쓰레기 고무 열매에 웨? 태양신 니카 열매라 해도 신급 열매 꾀됨 우릉 흔들 소울 부처 번쩍 둥실 어둠 능력 보단 누구 열매 였는지가 중요한거 같음 니카모습 보고
에메드가 조이보이랑 똑같다함 조이보이가 니카 열매 능력자였단거지 이무 아주 조이보이라면 치를 떨고 극협임
조이보이 닮은 놈이 또 나타나서 내앞길 막을까 두려웠 겠지 그래서 고무열매 찿아 없엘 생각 이었던거 같음 </p>
</div>
</article>
<article id="c_374333">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">페로나</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-09 22:08:53</time>
</span>
</header>
<div class="cmt_contents">
<p>오로성 진짜 모냐?ㄷㄷ 조이 페기에 변신 풀리고 마리조아로 이동된 오로성 자체가 능력자가 아니라 능력자로 부터 능력을 부여 받은거 같음 임년이겠지 임년이 능력자고 자기 능력으로 오로성을 만든 임년이 올포원마냥 능력을 저장 하고 부여 할수 있는 능력이 있는듯 </p>
</div>
</article>
<article id="c_374334">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">페로나</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-09 22:14:53</time>
</span>
</header>
<div class="cmt_contents">
<p>임년 능력 불로 불사 능력 빼앗고 부여 하는 능력 염력 같은 능력</p>
</div>
</article>
<article id="c_374335">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">페로나</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-09 22:17:26</time>
</span>
</header>
<div class="cmt_contents">
<p>괴수 변신으로 무효화 시키는 능력에 </p>
</div>
</article>
<article id="c_374336">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">페로나</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-09 22:28:28</time>
</span>
</header>
<div class="cmt_contents">
<p>먼수로 이기냐?...그림자 능력도 있는거 같고 아 오로성 능력이 임년 능력인듯 임=오로성 오로성은 임의 분신 같은거 </p>
</div>
</article>
<article id="c_375190">
<header style="z-index:17">
<div class="media-object"><i class="fa fa-user"></i><span class="member">페로나</span></div>
<span class="sound_only">작성일</span>
<span class="bo_vc_hdinfo">
<i class="fa fa-clock-o" aria-hidden="true"></i>
<time datetime="">2024-08-12 16:58:57</time>
</span>