-
Notifications
You must be signed in to change notification settings - Fork 0
/
Xml01.xml
5423 lines (5036 loc) · 276 KB
/
Xml01.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"?>
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
<channel>
<title>일빵빵 입에 달고 사는 기초영어</title>
<link>https://www.facebook.com/ilbangbangspeaking</link><description></description>
<language>ko-kr</language><copyright>토마토출판사</copyright>
<itunes:author>토마토출판사</itunes:author>
<itunes:keywords>일빵빵, 기초영어, 영어회화, 무료영어, 입에달고사는기초영어</itunes:keywords>
<itunes:subtitle></itunes:subtitle>
<itunes:summary>'넣었다 뺐다' 공식으로 영어기본개념 및 기초영어회화 순발력 키우기.</itunes:summary>
<itunes:owner>
<itunes:email>tomato911@hanmail.net</itunes:email><itunes:name>Jeff Suh</itunes:name></itunes:owner>
<itunes:category text="Education">
</itunes:category>
<itunes:image href="http://file.ssenhosting.com/data1/tomato2u/tomato2u-ilbangbangspeaking.jpg" />
<itunes:explicit>no</itunes:explicit>
<item>
<title>(특별판 제25강) NATIVE 원음 241-250</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native25.mp3" length="8441730" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native25.mp3</guid><pubDate>Wed, 02 Nov 2016 14:28:49 +0900</pubDate>
<itunes:duration>00:05:52</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제25강) What makes you ~ 질문에 대답하기 241-250</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special25.mp3" length="43562840" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special25.mp3</guid><pubDate>Tue, 01 Nov 2016 17:52:09 +0900</pubDate>
<itunes:duration>00:30:15</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제24강) NATIVE 원음 231-240</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native24.mp3" length="7806641" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native24.mp3</guid><pubDate>Thu, 06 Oct 2016 20:14:49 +0900</pubDate>
<itunes:duration>00:05:25</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제24강) What do you say ~ 질문에 대답하기 231-240</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special24.mp3" length="49322527" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special24.mp3</guid><pubDate>Sun, 02 Oct 2016 17:22:47 +0900</pubDate>
<itunes:duration>00:34:15</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title> (특별판 제23강) NATIVE 원음 221-230</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native23.mp3" length="8464300" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native23.mp3</guid><pubDate>Mon, 26 Sep 2016 16:26:27 +0900</pubDate>
<itunes:duration>00:05:53</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제23강) What do you ~ 질문에 대답하기 221-230</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special23.mp3" length="57366151" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special23.mp3</guid><pubDate>Sun, 25 Sep 2016 18:37:55 +0900</pubDate>
<itunes:duration>00:39:50</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제22강) NATIVE 원음 211-220</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native22.mp3" length="8409129" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native22.mp3</guid><pubDate>Thu, 08 Sep 2016 10:56:40 +0900</pubDate>
<itunes:duration>00:05:50</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제22강) What is ~ 질문에 대답하기 211-220</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special22.mp3" length="53237760" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special22.mp3</guid><pubDate>Wed, 07 Sep 2016 16:11:47 +0900</pubDate>
<itunes:duration>00:36:58</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제21강) NATIVE 원음 201-210</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native21.mp3" length="6977828" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native21.mp3</guid><pubDate>Tue, 06 Sep 2016 19:29:58 +0900</pubDate>
<itunes:duration>00:04:51</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제21강) What is ~ 질문에 대답하기 201-210</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special21.mp3" length="35363108" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special21.mp3</guid><pubDate>Mon, 05 Sep 2016 18:51:43 +0900</pubDate>
<itunes:duration>00:24:33</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제20강) NATIVE 원음 191-200</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native20.mp3" length="8646112" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native20.mp3</guid><pubDate>Sun, 28 Aug 2016 16:50:05 +0900</pubDate>
<itunes:duration>00:06:00</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제20강) Is there any~ 질문에 대답하기 191-200</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special20.mp3" length="54200111" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special20.mp3</guid><pubDate>Sat, 27 Aug 2016 19:15:22 +0900</pubDate>
<itunes:duration>00:37:38</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제19강) NATIVE 원음 181-190</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native19.mp3" length="7233619" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native19.mp3</guid><pubDate>Thu, 18 Aug 2016 14:35:57 +0900</pubDate>
<itunes:duration>00:05:01</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제19강) Is there any~ 질문에 대답하기 181-190</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special19.mp3" length="47683082" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special19.mp3</guid><pubDate>Wed, 17 Aug 2016 17:25:12 +0900</pubDate>
<itunes:duration>00:33:07</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제18강) NATIVE 원음 171-180</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native18.mp3" length="8406622" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native18.mp3</guid><pubDate>Wed, 10 Aug 2016 17:18:19 +0900</pubDate>
<itunes:duration>00:05:50</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제18강) Is it~ 질문에 대답하기 171-180</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special18.mp3" length="68885524" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special18.mp3</guid><pubDate>Tue, 09 Aug 2016 22:04:27 +0900</pubDate>
<itunes:duration>00:47:50</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제17강) NATIVE 원음 161-170</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native17.mp3" length="7599751" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native17.mp3</guid><pubDate>Mon, 18 Jul 2016 15:56:02 +0900</pubDate>
<itunes:duration>00:05:17</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제17강) Is it~ 질문에 대답하기 161-170</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special17.mp3" length="56229511" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special17.mp3</guid><pubDate>Sat, 16 Jul 2016 17:36:36 +0900</pubDate>
<itunes:duration>00:39:03</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제16강) NATIVE 원음 151-160</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native16.mp3" length="9538873" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native16.mp3</guid><pubDate>Mon, 11 Jul 2016 21:07:15 +0900</pubDate>
<itunes:duration>00:06:37</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제16강) Would (Do) you mind 질문에 대답하기 151-160</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special16.mp3" length="63005466" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special16.mp3</guid><pubDate>Fri, 08 Jul 2016 17:56:54 +0900</pubDate>
<itunes:duration>00:43:45</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제15강) NATIVE 원음 141-150</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native15.mp3" length="9081208" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native15.mp3</guid><pubDate>Wed, 29 Jun 2016 19:12:18 +0900</pubDate>
<itunes:duration>00:06:18</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제15강) Would (Do) you mind 질문에 대답하기 141-150</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special15.mp3" length="89763213" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special15.mp3</guid><pubDate>Tue, 28 Jun 2016 18:37:29 +0900</pubDate>
<itunes:duration>01:02:20</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제14강) NATIVE 원음 131-140</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native14.mp3" length="7819807" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native14.mp3</guid><pubDate>Fri, 24 Jun 2016 16:35:52 +0900</pubDate>
<itunes:duration>00:05:26</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제14강) Would you like to 질문에 대답하기 131-140</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special14.mp3" length="70028434" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special14.mp3</guid><pubDate>Tue, 21 Jun 2016 19:04:10 +0900</pubDate>
<itunes:duration>00:48:38</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제13강) NATIVE 원음 121-130</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native13.mp3" length="5962814" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native13.mp3</guid><pubDate>Mon, 13 Jun 2016 17:04:10 +0900</pubDate>
<itunes:duration>00:04:08</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제13강) Would you like 질문에 대답하기 121-130</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special13.mp3" length="28894788" type="audio/mp3" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special13.mp3</guid><pubDate>Thu, 09 Jun 2016 17:00:48 +0900</pubDate>
<itunes:duration>00:24:05</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제12강) NATIVE 원음 111-120</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native12.mp3" length="9395931" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native12.mp3</guid><pubDate>Sun, 05 Jun 2016 19:27:52 +0900</pubDate>
<itunes:duration>00:06:31</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제12강) Do I have to 질문에 대답하기 111-120</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/final12.mp3" length="29529861" type="audio/mp3" />
<guid>http://file.ssenhosting.com/data1/tomato2u/final12.mp3</guid><pubDate>Mon, 30 May 2016 18:47:05 +0900</pubDate>
<itunes:duration>00:49:13</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제11강) NATIVE 원음 100-110</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native11.mp3" length="4921468" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native11.mp3</guid><pubDate>Sat, 21 May 2016 19:19:15 +0900</pubDate>
<itunes:duration>00:05:08</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제11강) Do I have to 질문에 대답하기 101-110</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special11.mp3" length="79241716" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special11.mp3</guid><pubDate>Thu, 19 May 2016 15:04:02 +0900</pubDate>
<itunes:duration>01:22:33</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제10강) NATIVE 원음 091-100</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native10.mp3" length="4174157" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native10.mp3</guid><pubDate>Mon, 16 May 2016 14:27:02 +0900</pubDate>
<itunes:duration>00:04:21</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제10강) Do you have any 질문에 대답하기 091-100</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special10.mp3" length="61929011" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special10.mp3</guid><pubDate>Sun, 15 May 2016 18:50:21 +0900</pubDate>
<itunes:duration>01:04:31</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제09강) NATIVE 원음 081-090</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native09.mp3" length="4532348" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native09.mp3</guid><pubDate>Thu, 12 May 2016 19:13:21 +0900</pubDate>
<itunes:duration>00:04:43</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제09강) Do you have any 질문에 대답하기 081-090</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special09.mp3" length="53156883" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special09.mp3</guid><pubDate>Wed, 11 May 2016 22:42:23 +0900</pubDate>
<itunes:duration>00:55:22</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제08강) NATIVE 원음 071-080</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native08.mp3" length="4101432" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native08.mp3</guid><pubDate>Wed, 04 May 2016 19:18:45 +0900</pubDate>
<itunes:duration>00:04:16</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제08강) Do you 질문에 대답하기 071-080</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special08.mp3" length="44920998" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special08.mp3</guid><pubDate>Tue, 03 May 2016 15:23:10 +0900</pubDate>
<itunes:duration>00:46:48</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제07강) NATIVE 원음 061-070</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native07.mp3" length="3176906" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native07.mp3</guid><pubDate>Sat, 30 Apr 2016 16:15:11 +0900</pubDate>
<itunes:duration>00:03:19</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제07강) Do you 질문에 대답하기 061-070</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special07.mp3" length="44057494" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special07.mp3</guid><pubDate>Fri, 29 Apr 2016 22:00:03 +0900</pubDate>
<itunes:duration>00:45:54</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제06강) NATIVE 원음 051-060</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native06.mp3" length="3373347" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native06.mp3</guid><pubDate>Sat, 23 Apr 2016 22:21:33 +0900</pubDate>
<itunes:duration>00:03:31</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제06강) Are you 질문에 대답하기 051-060</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special06.mp3" length="65930970" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special06.mp3</guid><pubDate>Fri, 22 Apr 2016 17:17:59 +0900</pubDate>
<itunes:duration>01:08:41</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제05강) NATIVE 원음 041-050</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native05.mp3" length="3643767" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native05.mp3</guid><pubDate>Tue, 19 Apr 2016 17:55:51 +0900</pubDate>
<itunes:duration>00:03:48</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제05강) Are you 질문에 대답하기 041-050</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special05.mp3" length="64175959" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special05.mp3</guid><pubDate>Mon, 18 Apr 2016 22:02:10 +0900</pubDate>
<itunes:duration>01:06:51</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제04강) NATIVE 원음 031-040</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native04.mp3" length="3012230" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native04.mp3</guid><pubDate>Mon, 04 Apr 2016 15:54:43 +0900</pubDate>
<itunes:duration>00:03:08</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제04강) Can you 질문에 대답하기 031-040</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special04.mp3" length="49175404" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special04.mp3</guid><pubDate>Fri, 01 Apr 2016 15:04:05 +0900</pubDate>
<itunes:duration>00:51:13</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제04강) 안내</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/100special04.mp4" length="963021" type="video/mp4" />
<guid>http://file.ssenhosting.com/data1/tomato2u/100special04.mp4</guid><pubDate>Thu, 31 Mar 2016 15:56:28 +0900</pubDate>
<itunes:duration>00:00:12</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제03강) NATIVE 원음 021-030</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native03.mp3" length="3128005" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native03.mp3</guid><pubDate>Tue, 29 Mar 2016 17:21:51 +0900</pubDate>
<itunes:duration>00:03:15</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제03강) Can you 질문에 대답하기 021-030</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special03.mp3" length="74489520" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special03.mp3</guid><pubDate>Sun, 27 Mar 2016 17:06:23 +0900</pubDate>
<itunes:duration>01:17:36</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제03강) 안내</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/100special03.mp4" length="999087" type="video/mp4" />
<guid>http://file.ssenhosting.com/data1/tomato2u/100special03.mp4</guid><pubDate>Sat, 26 Mar 2016 15:42:33 +0900</pubDate>
<itunes:duration>00:00:12</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제02강) NATIVE 원음 011-020</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native02.mp3" length="3263006" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native02.mp3</guid><pubDate>Tue, 22 Mar 2016 13:16:50 +0900</pubDate>
<itunes:duration>00:03:24</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제02강) Can I 질문에 대답하기 011-020</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special02.mp3" length="66618931" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special02.mp3</guid><pubDate>Sun, 20 Mar 2016 16:36:26 +0900</pubDate>
<itunes:duration>01:09:24</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제02강) 안내</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/100special02.mp4" length="865291" type="video/mp4" />
<guid>http://file.ssenhosting.com/data1/tomato2u/100special02.mp4</guid><pubDate>Sun, 20 Mar 2016 12:33:40 +0900</pubDate>
<itunes:duration>00:00:12</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제01강) NATIVE 원음 001-010</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/native01.mp3" length="3209507" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/native01.mp3</guid><pubDate>Thu, 17 Mar 2016 12:47:30 +0900</pubDate>
<itunes:duration>00:03:21</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제01강) Can I 질문에 대답하기 001-010</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/special01.mp3" length="58248044" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/special01.mp3</guid><pubDate>Wed, 16 Mar 2016 20:41:09 +0900</pubDate>
<itunes:duration>01:00:40</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판 제01강) 안내</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/100special01.mp4" length="820177" type="video/mp4" />
<guid>http://file.ssenhosting.com/data1/tomato2u/100special01.mp4</guid><pubDate>Wed, 16 Mar 2016 11:17:58 +0900</pubDate>
<itunes:duration>00:00:12</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판intro강의편) 질문에 대답하는 요령 TIP4</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/specialintro.mp3" length="47901883" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/specialintro.mp3</guid><pubDate>Sun, 13 Mar 2016 15:18:30 +0900</pubDate>
<itunes:duration>00:49:54</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(특별판) 일빵빵기초영어 마지막 이야기 intro</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/specialedition.mp4" length="4839781" type="video/mpeg4" />
<guid>http://file.ssenhosting.com/data1/tomato2u/specialedition.mp4</guid><pubDate>Thu, 18 Feb 2016 14:51:46 +0900</pubDate>
<itunes:duration>00:00:42</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>서울시교육청 선정 2016년 겨울방학 필독도서</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/2016Whoswallowedthestars.mp4" length="69165609" type="video/mp4" />
<guid>http://file.ssenhosting.com/data1/tomato2u/2016Whoswallowedthestars.mp4</guid><pubDate>Tue, 29 Dec 2015 17:20:15 +0900</pubDate>
<itunes:duration>00:02:27</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(똘복군송별회) 제작해주신 서사모 회원분들과 일빵빵 가족분들께 모두 감사드립니다.</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/final.mp4" length="75877799" type="video/mp4" />
<guid>http://file.ssenhosting.com/data1/tomato2u/final.mp4</guid><pubDate>Tue, 24 Nov 2015 11:26:09 +0900</pubDate>
<itunes:duration>00:07:49</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(문장활용하기편) PASSPORT-5</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/passport5.mp3" length="38570944" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/passport5.mp3</guid><pubDate>Wed, 18 Nov 2015 00:06:59 +0900</pubDate>
<itunes:duration>00:40:11</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(문장활용하기편) 제150강 활용해서질문하기 - [의문사질문] 왜~인가요?</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/05150.mp3" length="34409742" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/05150.mp3</guid><pubDate>Sun, 08 Nov 2015 18:46:02 +0900</pubDate>
<itunes:duration>00:35:51</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(문장활용하기편) 제150강 공식</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/150mp4.mp4" length="455485" type="video/mp4" />
<guid>http://file.ssenhosting.com/data1/tomato2u/150mp4.mp4</guid><pubDate>Sun, 08 Nov 2015 18:29:48 +0900</pubDate>
<itunes:duration>00:00:22</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(문장활용하기편) 제149강 활용해서질문하기 - [의문사질문] 어디서(에) ~인가요?</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/05149.mp3" length="48010552" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/05149.mp3</guid><pubDate>Thu, 05 Nov 2015 18:58:28 +0900</pubDate>
<itunes:duration>00:50:01</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(문장활용하기편) 제149강 공식</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/149mp4.mp4" length="454259" type="video/mp4" />
<guid>http://file.ssenhosting.com/data1/tomato2u/149mp4.mp4</guid><pubDate>Thu, 05 Nov 2015 18:10:46 +0900</pubDate>
<itunes:duration>00:00:22</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(문장활용하기편) 제148강 활용해서질문하기 - [의문사질문] 언제~인가요?</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/05148.mp3" length="30810696" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/05148.mp3</guid><pubDate>Tue, 03 Nov 2015 18:12:33 +0900</pubDate>
<itunes:duration>00:32:06</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(문장활용하기편) 제148강 공식</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/148mp4.mp4" length="448811" type="video/mp4" />
<guid>http://file.ssenhosting.com/data1/tomato2u/148mp4.mp4</guid><pubDate>Tue, 03 Nov 2015 14:51:46 +0900</pubDate>
<itunes:duration>00:00:22</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(문장활용하기편) 제147강 활용해서질문하기 - [의문사질문] 어째서 ~하나요?</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/05147.mp3" length="37334621" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/05147.mp3</guid><pubDate>Sun, 01 Nov 2015 19:51:52 +0900</pubDate>
<itunes:duration>00:38:53</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(문장활용하기편) 제147강 공식</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/147mp4.mp4" length="452831" type="video/mp4" />
<guid>http://file.ssenhosting.com/data1/tomato2u/147mp4.mp4</guid><pubDate>Sun, 01 Nov 2015 14:50:05 +0900</pubDate>
<itunes:duration>00:00:22</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(문장활용하기편) 제146강 활용해서질문하기 - [의문사질문] ~는 어때요?</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/05146.mp3" length="37887163" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/05146.mp3</guid><pubDate>Thu, 29 Oct 2015 17:10:53 +0900</pubDate>
<itunes:duration>00:39:28</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(문장활용하기편) 제146강 공식</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/146mp4.mp4" length="444226" type="video/mp4" />
<guid>http://file.ssenhosting.com/data1/tomato2u/146mp4.mp4</guid><pubDate>Thu, 29 Oct 2015 15:19:32 +0900</pubDate>
<itunes:duration>00:00:22</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(문장활용하기편) 제145강 활용해서질문하기 - [의문사질문] 얼마나 자주? / 언제쯤? / 몇 시까지?</title>
<itunes:author></itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary></itunes:summary>
<description>
<![CDATA[]]>
</description>
<enclosure url="http://file-ex.ssenhosting.com/data1/tomato2u/05145.mp3" length="32683153" type="audio/mpeg" />
<guid>http://file.ssenhosting.com/data1/tomato2u/05145.mp3</guid><pubDate>Tue, 27 Oct 2015 17:54:38 +0900</pubDate>
<itunes:duration>00:34:03</itunes:duration><itunes:explicit>no</itunes:explicit>
<itunes:keywords></itunes:keywords>
</item>
<item>
<title>(문장활용하기편) 제145강 공식</title>
<itunes:author></itunes:author>