サイト内のリンク構造を解析する

戻る

import java.util.*;
import java.io.*;
/**
* $Id: CrossReferenceContainer.html,v 1.1 2009/06/22 16:11:41 kishi Exp kishi $
* @author KISHI Yasuhiro
*/

public class CrossReferenceContainer extends HashMap {
    private Reader reader;
    /** クローリングした結果が格納されるMAP */
    private Map crawlingResult;

    public CrossReferenceContainer() {
        super();

        crawlingResult = new HashMap();
    }

    public void setReader( Reader reader ) {
        this.reader = reader;
    }

    public void parse() throws Throwable {
        try {
            // クロール結果の内容を全て読み込む
            setCrawlingResult();

            // クロスレファレンスを求める
            getCrossReference();

        } catch ( Throwable e ) {
            throw e;
        }
    }

    private void getCrossReference() {
        Iterator iterator = this.keySet().iterator();
        while ( iterator.hasNext() ) {
            String url = ( String ) iterator.next();
            seekLinks( url );
        }
    }

    private void seekLinks( String url ) {
        System.err.print( "*" );

        // System.out.println( url );

        Iterator iterator = crawlingResult.keySet().iterator();
        while ( iterator.hasNext() ) {
            String key = ( String ) iterator.next();
            String value = ( String ) crawlingResult.get( key );
            if ( url.equals( value ) ) {
                if ( key.length() == 0 ) {
                    // ルートノードである
                    continue;
                }

                String parentKey = getParentKey( key );
                // System.out.println( "*** " + key  + " --> " + parentKey);

                addLinks( url, parentKey );
            }
        }
    }

    private String getParentKey( String key ) {
        if ( !key.contains( "-" ) ) {
            return "";
        } else {
            String[] arr = key.split( "-" );
            StringBuilder sb = new StringBuilder();

            sb.append( arr[ 0 ] );
            for ( int i = 1;i < arr.length - 1;i++ ) {
                sb.append( "-" );
                sb.append( arr[ i ] );
            }

            return sb.toString();
        }
    }

    private void addLinks( String url, String parentKey ) {

        String linkURL = ( String ) crawlingResult.get( parentKey );
        // System.out.println( "	" + linkURL );

        HashSet links = ( HashSet ) this.get( url );
        if ( !links.contains( linkURL ) ) {
            links.add( linkURL );
        }

    }

    private void setCrawlingResult() throws Throwable {
        BufferedReader br = new BufferedReader( reader );

        try {
            String line = null;
            while ( ( line = br.readLine() ) != null ) {
                // System.out.println( line);

                String token[] = line.split( "\t" );
                // System.out.println(token[0]);

                String path = token[ 0 ];
                String url = token[ 1 ];

                crawlingResult.put( path, url );

                this.put( url, new HashSet() );
            }

            br.close();
        } catch ( Throwable e ) {
            throw e;
        }
    }

    public void dumpAll() {
        System.out.println();

        Iterator iterator = this.keySet().iterator();
        int i = 0;
        while ( iterator.hasNext() ) {
            String url = ( String ) iterator.next();
            HashSet links = ( HashSet ) this.get( url );
            System.out.printf( "%s", url );
            System.out.printf( "\t%4d\n", links.size() );
        }
    }

    /** 単体試験 */
    static public void main( String[] args ) throws Throwable {
        if ( args.length != 1 ) {
            System.out.println( "Usage: java CrossReferenceContainer [inputFileName]" );
            System.exit( 1 );
        }

        CrossReferenceContainer container = new CrossReferenceContainer();
        try {
            container.setReader( new FileReader( args[ 0 ] ) );
            container.parse();

            container.dumpAll();

        } catch ( Throwable e ) {
            throw e;
        }
    }

}

■実行結果(リンク数が多いもの順にソートして表示)

$ java CrossReferenceContainer 2005-05-21.tsv | awk '!/^$/' | sort -nr -k2 | cat -n

     1	http://www.asahi.com/shimbun/	 137
     2	http://www.asahi.com/home.html	 136
     3	http://www.asahi.com/policy/link.html	 135
     4	http://www.asahi.com/policy/copyright.html	 135
     5	http://www.asahi.com/advertising/	 134
     6	http://www.asahi.com/reference/	 133
     7	http://www.asahi.com/policy/	 133
     8	http://www.asahi.com/information/	 133
     9	http://www.asahi.com/english/	 133
    10	http://www.asahi.com/sports/	 132
    11	http://www.asahi.com/politics/	 132
    12	http://www.asahi.com/national/	 132
    13	http://www.asahi.com/international/	 132
    14	http://www.asahi.com/health/	 132
    15	http://www.asahi.com/culture/	 132
    16	http://www.asahi.com/business/	 132
    17	http://www.asahi.com/shopping/	 131
    18	http://www.asahi.com/life/	 131
    19	http://www.asahi.com/digital/	 131
    20	http://www.asahi.com/policy/index.html	 130
    21	http://www.asahi.com/shougi/	 129
    22	http://www.asahi.com/science/	 129
    23	http://www.asahi.com/job/	 129
    24	http://www.asahi.com/igo/	 129
    25	http://www.asahi.com/housing/	 129
    26	http://www.asahi.com/edu/	 129
    27	http://www.asahi.com/column/	 129
    28	http://www.asahi.com/car/	 129
    29	http://www.asahi.com/travel/	 128
    30	http://www.asahi.com/sitemap/	 128
    31	http://www.asahi.com/paper/editorial.html	 128
    32	http://www.asahi.com/information/service/webud.html	 128
    33	http://www.asahi.com/information/mobile/	 128
    34	http://www.asahi.com/tool/	 127
    35	http://www.asahi.com/kojinjoho/index.html	 120
    36	http://www.asahi.com/information/db/	 119
    37	http://www.asahi.com/dino2005/	 116
    38	http://www.asahi.com/berlin/	 115
    39	http://www.asahi.com/reference/use.html	 114
    40	http://www.asahi.com/housing/reform/index.html?navi	  95
    41	http://www.asahi.com/ad/clients/tsushin2005/index.html?navi	  95
    42	http://www.asahi.com/ad/clients/renai2004/?navi	  95
    43	http://www.asahi.com/ad/clients/ninchisho/index02.html?navi	  95
    44	http://www.asahi.com/ad/clients/ninchisho/index.html?navi	  95
    45	http://www.asahi.com/ad/clients/minatomirai/index.html?navi	  95
    46	http://www.asahi.com/ad/clients/mansionnavi/?navi	  95
    47	http://www.asahi.com/ad/clients/lufthansa	  95
    48	http://www.asahi.com/ad/clients/index.html	  95
    49	http://www.asahi.com/whatsnew/ranking/index.html	  94
    50	http://www.asahi.com/sports/update/0521/168.html	  93
    51	http://www.asahi.com/sports/update/0521/143.html	  91
    52	http://www.asahi.com/international/update/0521/009.html	  89
    53	http://www.asahi.com/national/update/0521/TKY200505210223.html	  88
    54	http://www.asahi.com/ad/clients/tsushin2005/kyotozokei.html?navi	  86
    55	http://www.asahi.com/ad/clients/minatomirai/keyword05_06.html?navi	  86
    56	http://www.asahi.com/starwars3/	  67
    57	http://www.asahi.com/housing/column/TKY200505190199.html	  62
    58	http://www.asahi.com/igo/news/TKY200505190354.html	  60
    59	http://www.asahi.com/world/germany/	  56
    60	http://www.asahi.com/job/special/TKY200505180192.html	  56
    61	http://www.asahi.com/shopping/special/index40.html	  55
    62	http://www.asahi.com/shopping/special/index23.html	  55
    63	http://www.asahi.com/edu/nie/tamate/kiji/TKY200505160221.html	  55
    64	http://www.asahi.com/world/china/	  54
    65	http://www.asahi.com/shougi/news/TKY200505190259.html	  54
    66	http://www.asahi.com/paper/front.html	  54
    67	http://www.asahi.com/paper/column.html	  54
    68	http://www.asahi.com/health/news/aged.html	  54
    69	http://www.asahi.com/digital/av/OSK200505200047.html	  54
    70	http://www.asahi.com/car/italycolumn/TKY200505190238.html	  54
    71	http://www.asahi.com/world/germany/life/TKY200505170134.html?to	  53
    72	http://www.asahi.com/world/china/nanpou/050519.html	  53
    73	http://www.asahi.com/science/oriori/index.html	  53
    74	http://www.asahi.com/nankyoku/	  53
    75	http://www.asahi.com/health/news/	  53
    76	http://www.asahi.com/event/index.html	  22
    77	http://www.asahi.com/policy/privacy.html	  21
    78	http://www.asahi.com/sports/column/TKY200505200222.html	  20
    79	http://www.asahi.com/sports/fb/TKY200505210140.html	  19
    80	http://www.asahi.com/sports/column/TKY200505190120.html	  19
    81	http://www.asahi.com/sports/column/TKY200505190118.html	  19
    82	http://www.asahi.com/sports/column/TKY200505100131.html	  19
    83	http://www.asahi.com/sports/spo/winter.html	  18
    84	http://www.asahi.com/sports/spo/usa.html	  18
    85	http://www.asahi.com/sports/spo/sumo.html	  18
    86	http://www.asahi.com/sports/spo/rugby.html	  18
    87	http://www.asahi.com/sports/spo/motor.html	  18
    88	http://www.asahi.com/sports/spo/index.html	  18
    89	http://www.asahi.com/sports/spo/KYD200505210003.html	  18
    90	http://www.asahi.com/sports/golf/index.html	  18
    91	http://www.asahi.com/sports/golf/TKY200505120144.html	  18
    92	http://www.asahi.com/sports/fb/world.html	  18
    93	http://www.asahi.com/sports/fb/national.html	  18
    94	http://www.asahi.com/sports/fb/japan.html	  18
    95	http://www.asahi.com/sports/fb/index.html	  18
    96	http://www.asahi.com/sports/fb/TKY200505210135.html	  18
    97	http://www.asahi.com/sports/column/	  18
    98	http://www.asahi.com/sports/bb/pro.html	  18
    99	http://www.asahi.com/sports/bb/mlb.html	  18
   100	http://www.asahi.com/sports/bb/index.html	  18
   101	http://www.asahi.com/sports/bb/ama.html	  18
   102	http://www.asahi.com/sports/bb/TKY200505210149.html	  18
   103	http://www.asahi.com/national/update/0521/TKY200505210248.html	  17
   104	http://www.asahi.com/national/update/0521/TKY200505210287.html	  16
   105	http://www.asahi.com/national/update/0521/TKY200505210285.html	  16
   106	http://www.asahi.com/national/update/0521/TKY200505210284.html	  16
   107	http://www.asahi.com/national/update/0521/TKY200505210271.html	  16
   108	http://www.asahi.com/national/update/0521/TKY200505210269.html	  16
   109	http://www.asahi.com/national/update/0521/TKY200505210268.html	  16
   110	http://www.asahi.com/national/update/0521/TKY200505210220.html	  16
   111	http://www.asahi.com/national/update/0521/TKY200505210219.html	  16
   112	http://www.asahi.com/national/update/0521/OSK200505210015.html	  16
   113	http://www.asahi.com/culture/column/moyashi/TKY200505180260.html	  16
   114	http://www.asahi.com/sports/update/0521/195.html	  15
   115	http://www.asahi.com/sports/update/0521/194.html	  15
   116	http://www.asahi.com/sports/update/0521/193.html	  15
   117	http://www.asahi.com/sports/update/0521/155.html	  15
   118	http://www.asahi.com/national/list.html	  15
   119	http://www.asahi.com/culture/list_moyashi.html	  15
   120	http://www.asahi.com/culture/column/yurufemi/TKY200505180227.html	  15
   121	http://www.asahi.com/advertising/index.html	  15
   122	http://www.asahi.com/starwars3/050407.html	  14
   123	http://www.asahi.com/sports/update/0521/196.html	  14
   124	http://www.asahi.com/sports/update/0521/192.html	  14
   125	http://www.asahi.com/sports/update/0521/179.html	  14
   126	http://www.asahi.com/sports/update/0521/175.html	  14
   127	http://www.asahi.com/sports/update/0521/171.html	  14
   128	http://www.asahi.com/sports/update/0521/170.html	  14
   129	http://www.asahi.com/national/update/0521/	  14
   130	http://www.asahi.com/event/sympo.html	  14
   131	http://www.asahi.com/event/sports.html	  14
   132	http://www.asahi.com/event/exhibition.html	  14
   133	http://www.asahi.com/event/etc.html	  14
   134	http://www.asahi.com/event/concert.html	  14
   135	http://www.asahi.com/event/award.html	  14
   136	http://www.asahi.com/culture/list_yurufemi.html	  14
   137	http://www.asahi.com/sports/list.html	  13
   138	http://www.asahi.com/shopping/index.html	  13
   139	http://www.asahi.com/sports/update/0521/	  12
   140	http://www.asahi.com/business/stock.html	  12
   141	http://www.asahi.com/business/exchange.html	  12
   142	http://www.asahi.com/life/food/	  11
   143	http://www.asahi.com/kansai/wakuwaku/	  11
   144	http://www.asahi.com/kansai/	  11
   145	http://www.asahi.com/information/index.html	  11
   146	http://www.asahi.com/event/	  11
   147	http://www.asahi.com/business/column/index.html	  11
   148	http://www.asahi.com/shopping/master/TKY200505180182.html	  10
   149	http://www.asahi.com/shimbun/honsya/j/associate.html	  10
   150	http://www.asahi.com/reference/index.html	  10
   151	http://www.asahi.com/politics/update/0520/008.html	  10
   152	http://www.asahi.com/kansai/wakuwaku/class0517-2.html	  10
   153	http://www.asahi.com/housing/diary/TKY200505160147.html	  10
   154	http://www.asahi.com/health/soudan/jhealth/TKY200505200214.html	  10
   155	http://www.asahi.com/edu/news/index.html	  10
   156	http://www.asahi.com/business/yutai/	  10
   157	http://www.asahi.com/business/topics_list.html	  10
   158	http://www.asahi.com/business/topics/index.html	  10
   159	http://www.asahi.com/business/today_shikyo/index.html	  10
   160	http://www.asahi.com/business/today_eye/index.html	  10
   161	http://www.asahi.com/business/statistics_list.html	  10
   162	http://www.asahi.com/business/products/index.html	  10
   163	http://www.asahi.com/business/market_tyo.html	  10
   164	http://www.asahi.com/business/market_ny.html	  10
   165	http://www.asahi.com/business/market_euro.html	  10
   166	http://www.asahi.com/business/market_asia.html	  10
   167	http://www.asahi.com/business/list_toyo.html	  10
   168	http://www.asahi.com/business/list_reuters.html	  10
   169	http://www.asahi.com/business/interest.html	  10
   170	http://www.asahi.com/business/industry_list.html	  10
   171	http://www.asahi.com/business/fund/news/index.html	  10
   172	http://www.asahi.com/business/fund/index.html	  10
   173	http://www.asahi.com/business/finance_list.html	  10
   174	http://www.asahi.com/business/data/index.html	  10
   175	http://www.asahi.com/business/aera/index.html	  10
   176	http://www.asahi.com/travel/matsuri/index.html	   9
   177	http://www.asahi.com/travel/matsuri/TKY200505150097.html	   9
   178	http://www.asahi.com/pinkribbon2005/	   9
   179	http://www.asahi.com/national/incident.html	   9
   180	http://www.asahi.com/life/food/sweets/TKY200505110276.html	   9
   181	http://www.asahi.com/life/food/memo/TKY200505210134.html	   9
   182	http://www.asahi.com/life/column/ogiwara/TKY200505180139.html	   9
   183	http://www.asahi.com/life/column/mikata/TKY200505180240.html	   9
   184	http://www.asahi.com/international/update/0521/007.html	   9
   185	http://www.asahi.com/housing/diary/	   9
   186	http://www.asahi.com/housing/column/	   9
   187	http://www.asahi.com/health/soudan/	   9
   188	http://www.asahi.com/car/moto/index.html	   9
   189	http://www.asahi.com/car/moto/050518.html	   9
   190	http://www.asahi.com/car/cg/index.html	   9
   191	http://www.asahi.com/car/cg/TKY200505170252.html	   9
   192	http://www.asahi.com/business/update/0521/022.html	   9
   193	http://www.asahi.com/business/update/0521/021.html	   9
   194	http://www.asahi.com/business/update/0521/011.html	   9
   195	http://www.asahi.com/business/update/0521/010.html	   9
   196	http://www.asahi.com/business/update/0521/009.html	   9
   197	http://www.asahi.com/business/update/0521/008.html	   9
   198	http://www.asahi.com/business/update/0521/007.html	   9
   199	http://www.asahi.com/business/update/0521/006.html	   9
   200	http://www.asahi.com/business/update/0521/005.html	   9
   201	http://www.asahi.com/business/update/0521/004.html	   9
   202	http://www.asahi.com/ad/clients/minatomirai/vol02.html?navi	   9
   203	http://www.asahi.com/ad/clients/mansionnavi/map02.html?navi	   9
   204	http://www.asahi.com/zest/	   8
   205	http://www.asahi.com/sports/fb/	   8
   206	http://www.asahi.com/shopping/master/	   8
   207	http://www.asahi.com/shopping	   8
   208	http://www.asahi.com/shimbun/saiyou/index.html	   8
   209	http://www.asahi.com/shimbun/honsya/index.html	   8
   210	http://www.asahi.com/politics/update/0521/007.html	   8
   211	http://www.asahi.com/politics/update/0521/006.html	   8
   212	http://www.asahi.com/politics/update/0521/005.html	   8
   213	http://www.asahi.com/politics/update/0521/004.html	   8
   214	http://www.asahi.com/politics/update/0521/003.html	   8
   215	http://www.asahi.com/politics/update/0521/002.html	   8
   216	http://www.asahi.com/politics/update/0521/001.html	   8
   217	http://www.asahi.com/politics/update/0520/014.html	   8
   218	http://www.asahi.com/politics/update/0520/013.html	   8
   219	http://www.asahi.com/pinkribbon2005/design.html	   8
   220	http://www.asahi.com/life/update/0521/008.html	   8
   221	http://www.asahi.com/life/update/0521/007.html	   8
   222	http://www.asahi.com/life/update/0521/006.html	   8
   223	http://www.asahi.com/life/update/0521/005.html	   8
   224	http://www.asahi.com/life/update/0521/004.html	   8
   225	http://www.asahi.com/life/update/0521/003.html	   8
   226	http://www.asahi.com/life/update/0521/002.html	   8
   227	http://www.asahi.com/life/update/0521/001.html	   8
   228	http://www.asahi.com/life/update/0520/005.html	   8
   229	http://www.asahi.com/life/food/sweets/index.html	   8
   230	http://www.asahi.com/life/food/memo/index.html	   8
   231	http://www.asahi.com/life/column/ogiwara/index.html	   8
   232	http://www.asahi.com/life/column/mikata/index.html	   8
   233	http://www.asahi.com/life/column/	   8
   234	http://www.asahi.com/international/update/0521/012.html	   8
   235	http://www.asahi.com/international/update/0521/011.html	   8
   236	http://www.asahi.com/international/update/0521/010.html	   8
   237	http://www.asahi.com/international/update/0521/008.html	   8
   238	http://www.asahi.com/international/update/0521/006.html	   8
   239	http://www.asahi.com/international/update/0521/005.html	   8
   240	http://www.asahi.com/international/update/0521/004.html	   8
   241	http://www.asahi.com/international/update/0521/003.html	   8
   242	http://www.asahi.com/information/service/index.html	   8
   243	http://www.asahi.com/information/release/index.html	   8
   244	http://www.asahi.com/edu/news/TKY200505160181.html	   8
   245	http://www.asahi.com/business/list.html	   8
   246	http://www.asahi.com/national/etc.html	   7
   247	http://www.asahi.com/life/update/0520/006.html	   7
   248	http://www.asahi.com/life/list.html	   7
   249	http://www.asahi.com/international/list.html	   7
   250	http://www.asahi.com/culture1_oricon/	   7
   251	http://www.asahi.com/culture/update/0521/011.html	   7
   252	http://www.asahi.com/culture/update/0521/008.html	   7
   253	http://www.asahi.com/culture/update/0520/018.html	   7
   254	http://www.asahi.com/culture/update/0520/017.html	   7
   255	http://www.asahi.com/culture/update/0520/015.html	   7
   256	http://www.asahi.com/culture/update/0520/013.html	   7
   257	http://www.asahi.com/culture/update/0520/012.html	   7
   258	http://www.asahi.com/culture/update/0520/002.html	   7
   259	http://www.asahi.com/culture/update/0518/019.html	   7
   260	http://www.asahi.com/sports/spo/	   6
   261	http://www.asahi.com/sports/fb/SEB200505200004.html	   6
   262	http://www.asahi.com/science/news/TKY200505210285.html	   6
   263	http://www.asahi.com/science/news/TKY200505210249.html	   6
   264	http://www.asahi.com/science/news/TKY200505210145.html	   6
   265	http://www.asahi.com/science/news/TKY200505210132.html	   6
   266	http://www.asahi.com/science/news/TKY200505200281.html	   6
   267	http://www.asahi.com/science/index.html	   6
   268	http://www.asahi.com/politics/update/0520/009.html	   6
   269	http://www.asahi.com/politics/list.html	   6
   270	http://www.asahi.com/life/update/0521/	   6
   271	http://www.asahi.com/international/update/0521/	   6
   272	http://www.asahi.com/information/pri.html	   6
   273	http://www.asahi.com/information/link.html	   6
   274	http://www.asahi.com/information/copyright.html	   6
   275	http://www.asahi.com/event/event-asahi.html	   6
   276	http://www.asahi.com/event/TKY200505090220.html	   6
   277	http://www.asahi.com/culture/update/0520/001.html	   6
   278	http://www.asahi.com/culture/list.html	   6
   279	http://www.asahi.com/culture/column/yurufemi/	   6
   280	http://www.asahi.com/culture/column/moyashi/	   6
   281	http://www.asahi.com/column/wakayama/TKY200504250098.html	   6
   282	http://www.asahi.com/car/newcar/TKY200505200125.html	   6
   283	http://www.asahi.com/business/update/0521/	   6
   284	http://www.asahi.com/sports/update/0521/144.html	   5
   285	http://www.asahi.com/sports/update/0520/084.html	   5
   286	http://www.asahi.com/sports/bb/	   5
   287	http://www.asahi.com/special/hub/	   5
   288	http://www.asahi.com/special/050320/	   5
   289	http://www.asahi.com/special/041023/	   5
   290	http://www.asahi.com/shopping/kishi/TKY200505160220.html	   5
   291	http://www.asahi.com/shimbun/main.html	   5
   292	http://www.asahi.com/science/list.html	   5
   293	http://www.asahi.com/politics/update/0521/	   5
   294	http://www.asahi.com/politics/government.html	   5
   295	http://www.asahi.com/obituaries/update/0521/003.html	   5
   296	http://www.asahi.com/obituaries/update/0521/002.html	   5
   297	http://www.asahi.com/obituaries/update/0521/001.html	   5
   298	http://www.asahi.com/obituaries/update/0520/001.html	   5
   299	http://www.asahi.com/obituaries/update/0519/005.html	   5
   300	http://www.asahi.com/obituaries/	   5
   301	http://www.asahi.com/life/life.html	   5
   302	http://www.asahi.com/international/update/0521/001.html	   5
   303	http://www.asahi.com/international/asia.html	   5
   304	http://www.asahi.com/housing/world/TKY200505210190.html	   5
   305	http://www.asahi.com/expo2005/	   5
   306	http://www.asahi.com/english/Herald-asahi/politicslist.html	   5
   307	http://www.asahi.com/english/Herald-asahi/TKY200505210204.html	   5
   308	http://www.asahi.com/english/Herald-asahi/TKY200505210200.html	   5
   309	http://www.asahi.com/edu/nie/kiji/kiji/TKY200505200141.html	   5
   310	http://www.asahi.com/culture/theater/TKY200505210237.html	   5
   311	http://www.asahi.com/culture/theater/TKY200505210234.html	   5
   312	http://www.asahi.com/column/wakamiya/index.html	   5
   313	http://www.asahi.com/car/newcar/index.html	   5
   314	http://www.asahi.com/business/update/0521/001.html	   5
   315	http://www.asahi.com/business/update/0520/103.html	   5
   316	http://www.asahi.com/ad/clients/minatomirai/	   5
   317	http://www.asahi.com/tool/sitesearch/index.html	   4
   318	http://www.asahi.com/tool/map/index.html	   4
   319	http://www.asahi.com/tool/jisho/index.html	   4
   320	http://www.asahi.com/sports/update/0521/137.html	   4
   321	http://www.asahi.com/sports/fb/TKY200505200191.html	   4
   322	http://www.asahi.com/sports/bb/TKY200505210150.html	   4
   323	http://www.asahi.com/special/robot/	   4
   324	http://www.asahi.com/special/nuclear/index.html	   4
   325	http://www.asahi.com/special/nuclear/TKY200505200145.html	   4
   326	http://www.asahi.com/special/abductees/index.html	   4
   327	http://www.asahi.com/special/050215/	   4
   328	http://www.asahi.com/sitemap/index.html	   4
   329	http://www.asahi.com/shopping/kishi/	   4
   330	http://www.asahi.com/shimbun/subscribe2.html	   4
   331	http://www.asahi.com/politics/update/0520/012.html	   4
   332	http://www.asahi.com/politics/update/0518/005.html	   4
   333	http://www.asahi.com/politics/update/0518/002.html	   4
   334	http://www.asahi.com/life/update/0519/004.html	   4
   335	http://www.asahi.com/life/food/restaurants/index.html	   4
   336	http://www.asahi.com/international/update/0520/015.html	   4
   337	http://www.asahi.com/international/asiamachi/TKY200505150120.html	   4
   338	http://www.asahi.com/information/english/form_ntwr.html	   4
   339	http://www.asahi.com/information/english/form_aw.html	   4
   340	http://www.asahi.com/iht-asahi/index.html	   4
   341	http://www.asahi.com/edu/nie/kiji/	   4
   342	http://www.asahi.com/edu/news/TKY200505200295.html	   4
   343	http://www.asahi.com/edu/column/ikuji/index.html	   4
   344	http://www.asahi.com/edu/column/ikuji/TKY200505190108.html	   4
   345	http://www.asahi.com/digital/column01/TKY200505190145.html	   4
   346	http://www.asahi.com/culture/theater/index.html	   4
   347	http://www.asahi.com/culture/theater/TKY200505210138.html	   4
   348	http://www.asahi.com/culture/theater/TKY200505200239.html	   4
   349	http://www.asahi.com/culture/theater/	   4
   350	http://www.asahi.com/culture/nikkan/NIK200505210018.html	   4
   351	http://www.asahi.com/culture/nikkan/NIK200505210017.html	   4
   352	http://www.asahi.com/culture/nikkan/NIK200505210016.html	   4
   353	http://www.asahi.com/culture/nikkan/NIK200505210015.html	   4
   354	http://www.asahi.com/culture/nikkan/NIK200505210014.html	   4
   355	http://www.asahi.com/culture/nikkan/	   4
   356	http://www.asahi.com/culture/music/	   4
   357	http://www.asahi.com/culture/fashion/	   4
   358	http://www.asahi.com/column/wakayama/TKY200503270067.html	   4
   359	http://www.asahi.com/ad/clients/ninchisho/	   4
   360	http://www.asahi.com/ad/clients/moneyplan/	   4
   361	http://www.asahi.com/ad/clients/lufthansa/	   4
   362	http://www.asahi.com/ad/clients/	   4
   363	http://www.asahi.com/travel/kaido/index.html	   3
   364	http://www.asahi.com/travel/kaido/TKY200505170150.html	   3
   365	http://www.asahi.com/travel/index.html	   3
   366	http://www.asahi.com/sports/update/0521/169.html	   3
   367	http://www.asahi.com/sports/update/0521/156.html	   3
   368	http://www.asahi.com/sports/update/0521/127.html	   3
   369	http://www.asahi.com/sports/update/0521/104.html	   3
   370	http://www.asahi.com/sports/spo/TKY200505200190.html	   3
   371	http://www.asahi.com/sports/golf/	   3
   372	http://www.asahi.com/sports/fb/TKY200505160315.html	   3
   373	http://www.asahi.com/sports/fb/TKY200505030214.html	   3
   374	http://www.asahi.com/sports/bb/game.html	   3
   375	http://www.asahi.com/sports/bb/TKY200505210147.html	   3
   376	http://www.asahi.com/special/space/	   3
   377	http://www.asahi.com/special/nuclear/TKY200505160130.html	   3
   378	http://www.asahi.com/special/MiddleEast/	   3
   379	http://www.asahi.com/special/050410/	   3
   380	http://www.asahi.com/special/041020/	   3
   381	http://www.asahi.com/special/	   3
   382	http://www.asahi.com/shopping/special/index38.html	   3
   383	http://www.asahi.com/shopping/rank/index.html	   3
   384	http://www.asahi.com/shopping/news/index.html	   3
   385	http://www.asahi.com/shopping/guide/index.html	   3
   386	http://www.asahi.com/shopping/guide/faq.html	   3
   387	http://www.asahi.com/shopping/asapaso/TKY200505200244.html	   3
   388	http://www.asahi.com/shimbun/syokai_shimbun.html	   3
   389	http://www.asahi.com/shimbun/school.html	   3
   390	http://www.asahi.com/shimbun/saiyou/	   3
   391	http://www.asahi.com/shimbun/honsya/	   3
   392	http://www.asahi.com/science/news/TKY200504040275.html	   3
   393	http://www.asahi.com/science/news/	   3
   394	http://www.asahi.com/politics/update/0520/011.html	   3
   395	http://www.asahi.com/politics/update/0520/010.html	   3
   396	http://www.asahi.com/politics/update/0520/007.html	   3
   397	http://www.asahi.com/politics/update/0520/006.html	   3
   398	http://www.asahi.com/politics/update/0520/005.html	   3
   399	http://www.asahi.com/politics/update/0520/004.html	   3
   400	http://www.asahi.com/politics/update/0520/001.html	   3
   401	http://www.asahi.com/obituaries/update/0521/	   3
   402	http://www.asahi.com/obituaries/index.html	   3
   403	http://www.asahi.com/national/update/0520/TKY200505200136.html	   3
   404	http://www.asahi.com/life/update/0520/004.html	   3
   405	http://www.asahi.com/life/update/0520/003.html	   3
   406	http://www.asahi.com/life/update/0519/008.html	   3
   407	http://www.asahi.com/life/update/0519/007.html	   3
   408	http://www.asahi.com/job/special/	   3
   409	http://www.asahi.com/international/update/0521/002.html	   3
   410	http://www.asahi.com/international/update/0520/010.html	   3
   411	http://www.asahi.com/international/update/0520/009.html	   3
   412	http://www.asahi.com/international/seoul/TKY200505100200.html	   3
   413	http://www.asahi.com/information/soken/	   3
   414	http://www.asahi.com/information/service/magazine.html	   3
   415	http://www.asahi.com/information/service/	   3
   416	http://www.asahi.com/information/db/pft.html	   3
   417	http://www.asahi.com/housing/world/index.html	   3
   418	http://www.asahi.com/health/news/medical.html	   3
   419	http://www.asahi.com/health/news/TKY200505210220.html	   3
   420	http://www.asahi.com/health/news/TKY200505200102.html	   3
   421	http://www.asahi.com/english/weekly/index.html	   3
   422	http://www.asahi.com/english/weekly/	   3
   423	http://www.asahi.com/edu/news/OSK200505190020.html	   3
   424	http://www.asahi.com/digital/index.html	   3
   425	http://www.asahi.com/culture/update/0518/016.html	   3
   426	http://www.asahi.com/culture/theater/TKY200505200304.html	   3
   427	http://www.asahi.com/culture/theater/TKY200505200218.html	   3
   428	http://www.asahi.com/culture/theater/TKY200505160090.html	   3
   429	http://www.asahi.com/culture/theater/TKY200505130122.html	   3
   430	http://www.asahi.com/culture/theater/JJT200505200003.html	   3
   431	http://www.asahi.com/culture/nikkan/index.html	   3
   432	http://www.asahi.com/culture/list_bunka.html	   3
   433	http://www.asahi.com/culture/enews/RTR200505210012.html	   3
   434	http://www.asahi.com/culture/enews/RTR200505210011.html	   3
   435	http://www.asahi.com/culture/enews/RTR200505210010.html	   3
   436	http://www.asahi.com/culture/enews/RTR200505200037.html	   3
   437	http://www.asahi.com/culture/enews/RTR200505200028.html	   3
   438	http://www.asahi.com/culture/enews/	   3
   439	http://www.asahi.com/business/update/0521/003.html	   3
   440	http://www.asahi.com/business/update/0520/086.html	   3
   441	http://www.asahi.com/business/update/0520/052.html	   3
   442	http://www.asahi.com/business/column/TKY200505200219.html	   3
   443	http://www.asahi.com/berlin/topics/index.html	   3
   444	http://www.asahi.com/berlin/intro/index.html	   3
   445	http://www.asahi.com/berlin/info/map.html	   3
   446	http://www.asahi.com/berlin/info/index.html	   3
   447	http://www.asahi.com/berlin/history/index.html	   3
   448	http://www.asahi.com/berlin/gallery/index.html	   3
   449	http://www.asahi.com/berlin/event/index.html	   3
   450	http://www.asahi.com/berlin/coupon/index.html	   3
   451	http://www.asahi.com/ad/clients/waseda/index.html	   3
   452	http://www.asahi.com/ad/clients/tsushin2005/index.html	   3
   453	http://www.asahi.com/ad/clients/renai2004/	   3
   454	http://www.asahi.com/ad/clients/mansionnavi/	   3
   455	http://www.asahi.com/ad/clients/atom/	   3
   456	http://www.asahi.com/	   3
   457	http://www.asahi.com	   3
   458	http://www.asahi.com/whatsnew/index.html?t	   2
   459	http://www.asahi.com/travel/zeitaku/index.html	   2
   460	http://www.asahi.com/travel/zeitaku/TKY200505150162.html	   2
   461	http://www.asahi.com/travel/news/TKY200505170363.html	   2
   462	http://www.asahi.com/travel/?t	   2
   463	http://www.asahi.com/sports/update/0521/196.html?t	   2
   464	http://www.asahi.com/sports/update/0521/195.html?t5	   2
   465	http://www.asahi.com/sports/update/0521/195.html?t	   2
   466	http://www.asahi.com/sports/update/0521/194.html?ts	   2
   467	http://www.asahi.com/sports/update/0521/194.html?t	   2
   468	http://www.asahi.com/sports/update/0521/193.html?t	   2
   469	http://www.asahi.com/sports/update/0521/192.html?t	   2
   470	http://www.asahi.com/sports/update/0521/179.html?t	   2
   471	http://www.asahi.com/sports/update/0521/175.html?t	   2
   472	http://www.asahi.com/sports/update/0521/168.html?tc	   2
   473	http://www.asahi.com/sports/update/0521/155.html?t	   2
   474	http://www.asahi.com/sports/update/0521/143.html?tc	   2
   475	http://www.asahi.com/sports/update/0521/125.html	   2
   476	http://www.asahi.com/sports/update/0521/124.html	   2
   477	http://www.asahi.com/sports/update/0521/082.html	   2
   478	http://www.asahi.com/sports/update/0521/073.html	   2
   479	http://www.asahi.com/sports/update/0521/072.html	   2
   480	http://www.asahi.com/sports/update/0521/060.html	   2
   481	http://www.asahi.com/sports/update/0521/003.html	   2
   482	http://www.asahi.com/sports/update/0520/139.html	   2
   483	http://www.asahi.com/sports/update/0520/138.html	   2
   484	http://www.asahi.com/sports/update/0520/066.html	   2
   485	http://www.asahi.com/sports/update/0517/151.html	   2
   486	http://www.asahi.com/sports/spo/other.html	   2
   487	http://www.asahi.com/sports/spo/TKY200505160210.html	   2
   488	http://www.asahi.com/sports/spo/OTH200505170001.html	   2
   489	http://www.asahi.com/sports/spo/?t	   2
   490	http://www.asahi.com/sports/list.html?t	   2
   491	http://www.asahi.com/sports/fb/j1ranking.html	   2
   492	http://www.asahi.com/sports/fb/game.html	   2
   493	http://www.asahi.com/sports/fb/?t	   2
   494	http://www.asahi.com/sports/bb/game.html?to	   2
   495	http://www.asahi.com/sports/bb/TKY200505210143.html	   2
   496	http://www.asahi.com/sports/bb/TKY200505200196.html	   2
   497	http://www.asahi.com/sports/bb/?t	   2
   498	http://www.asahi.com/sports/?t	   2
   499	http://www.asahi.com/spo/2005prince-league/index.html	   2
   500	http://www.asahi.com/special/robot/OSK200505140022.html	   2
   501	http://www.asahi.com/special/robot/?t	   2
   502	http://www.asahi.com/special/nuclear/	   2
   503	http://www.asahi.com/special/nhk/	   2
   504	http://www.asahi.com/special/index.html?t	   2
   505	http://www.asahi.com/special/bse/	   2
   506	http://www.asahi.com/special/abductees/	   2
   507	http://www.asahi.com/special/050318/	   2
   508	http://www.asahi.com/special/041227/	   2
   509	http://www.asahi.com/shougi/topics/index.html	   2
   510	http://www.asahi.com/shougi/open23/yagura.html	   2
   511	http://www.asahi.com/shougi/open23/result.html	   2
   512	http://www.asahi.com/shougi/open23/honsen_23/	   2
   513	http://www.asahi.com/shougi/open23/5ban_nittei.html	   2
   514	http://www.asahi.com/shougi/open/	   2
   515	http://www.asahi.com/shougi/open.html	   2
   516	http://www.asahi.com/shougi/news/index.html	   2
   517	http://www.asahi.com/shougi/books/	   2
   518	http://www.asahi.com/shougi/?t	   2
   519	http://www.asahi.com/shopping/yuruyuru/TKY200504280090.html	   2
   520	http://www.asahi.com/shopping/yuruyuru/	   2
   521	http://www.asahi.com/shopping/special/open_special.html	   2
   522	http://www.asahi.com/shopping/special/index43.html?tn	   2
   523	http://www.asahi.com/shopping/special/index43.html	   2
   524	http://www.asahi.com/shopping/special/index42.html	   2
   525	http://www.asahi.com/shopping/special/index41.html	   2
   526	http://www.asahi.com/shopping/special/index39.html	   2
   527	http://www.asahi.com/shopping/special/index37.html	   2
   528	http://www.asahi.com/shopping/special/index36.html	   2
   529	http://www.asahi.com/shopping/special/index34.html	   2
   530	http://www.asahi.com/shopping/rank/	   2
   531	http://www.asahi.com/shopping/protalk/TKY200505160348.html	   2
   532	http://www.asahi.com/shopping/protalk/	   2
   533	http://www.asahi.com/shopping/news/TKY200505200299.html	   2
   534	http://www.asahi.com/shopping/news/TKY200505180304.html	   2
   535	http://www.asahi.com/shopping/news/TKY200505180298.html	   2
   536	http://www.asahi.com/shopping/news/TKY200505180291.html	   2
   537	http://www.asahi.com/shopping/news/	   2
   538	http://www.asahi.com/shopping/master/index.html	   2
   539	http://www.asahi.com/shopping/interiorlife/TKY200505060150.html	   2
   540	http://www.asahi.com/shopping/interiorlife/	   2
   541	http://www.asahi.com/shopping/index.html?tn	   2
   542	http://www.asahi.com/shopping/gwpresent/	   2
   543	http://www.asahi.com/shopping/asapaso/	   2
   544	http://www.asahi.com/shopping/?t	   2
   545	http://www.asahi.com/shimbun/kengaku/	   2
   546	http://www.asahi.com/shimbun/index.html	   2
   547	http://www.asahi.com/shimbun/honsya/j/system.html	   2
   548	http://www.asahi.com/shimbun/honsya/j/sports.html	   2
   549	http://www.asahi.com/shimbun/honsya/j/sales.html	   2
   550	http://www.asahi.com/shimbun/honsya/j/research.html	   2
   551	http://www.asahi.com/shimbun/honsya/j/publication.html	   2
   552	http://www.asahi.com/shimbun/honsya/j/public.html	   2
   553	http://www.asahi.com/shimbun/honsya/j/print.html	   2
   554	http://www.asahi.com/shimbun/honsya/j/platform.html	   2
   555	http://www.asahi.com/shimbun/honsya/j/nie.html	   2
   556	http://www.asahi.com/shimbun/honsya/j/network.html	   2
   557	http://www.asahi.com/shimbun/honsya/j/index.html	   2
   558	http://www.asahi.com/shimbun/honsya/j/image.html	   2
   559	http://www.asahi.com/shimbun/honsya/j/history.html	   2
   560	http://www.asahi.com/shimbun/honsya/j/forum.html	   2
   561	http://www.asahi.com/shimbun/honsya/j/flash.html	   2
   562	http://www.asahi.com/shimbun/honsya/j/exclusive.html.html	   2
   563	http://www.asahi.com/shimbun/honsya/j/environment.html	   2
   564	http://www.asahi.com/shimbun/honsya/j/english.html	   2
   565	http://www.asahi.com/shimbun/honsya/j/emb.html	   2
   566	http://www.asahi.com/shimbun/honsya/j/editorial.html	   2
   567	http://www.asahi.com/shimbun/honsya/j/edit.html	   2
   568	http://www.asahi.com/shimbun/honsya/j/data.html	   2
   569	http://www.asahi.com/shimbun/honsya/j/contribution.html	   2
   570	http://www.asahi.com/shimbun/honsya/j/business.html	   2
   571	http://www.asahi.com/shimbun/honsya/j/broadcasting.html	   2
   572	http://www.asahi.com/shimbun/honsya/j/baseball.html	   2
   573	http://www.asahi.com/shimbun/honsya/j/aspara.html	   2
   574	http://www.asahi.com/shimbun/honsya/j/ad.html	   2
   575	http://www.asahi.com/shimbun/honsya/j/access.html	   2
   576	http://www.asahi.com/shimbun/honsya/j/aan.html	   2
   577	http://www.asahi.com/science/oriori/index.html?t	   2
   578	http://www.asahi.com/science/news/TKY200505210285.html?t	   2
   579	http://www.asahi.com/science/news/TKY200505210249.html?t	   2
   580	http://www.asahi.com/science/news/TKY200505210132.html?t	   2
   581	http://www.asahi.com/science/news/TKY200505200228.html	   2
   582	http://www.asahi.com/science/news/TKY200505190351.html	   2
   583	http://www.asahi.com/science/news/TKY200505190201.html	   2
   584	http://www.asahi.com/science/news/TKY200505190165.html	   2
   585	http://www.asahi.com/science/news/TKY200505170348.html	   2
   586	http://www.asahi.com/science/news/TKY200505170347.html	   2
   587	http://www.asahi.com/science/news/TKY200505170341.html	   2
   588	http://www.asahi.com/science/news/TKY200505160276.html	   2
   589	http://www.asahi.com/science/news/TKY200505160266.html	   2
   590	http://www.asahi.com/science/news/OSK200505170044.html	   2
   591	http://www.asahi.com/science/list.html?t	   2
   592	http://www.asahi.com/science/?t	   2
   593	http://www.asahi.com/politics/update/0521/007.html?t	   2
   594	http://www.asahi.com/politics/update/0521/006.html?t	   2
   595	http://www.asahi.com/politics/update/0521/005.html?t	   2
   596	http://www.asahi.com/politics/update/0521/004.html?t	   2
   597	http://www.asahi.com/politics/update/0521/003.html?t	   2
   598	http://www.asahi.com/politics/update/0520/003.html	   2
   599	http://www.asahi.com/politics/update/0520/002.html	   2
   600	http://www.asahi.com/politics/update/0519/002.html	   2
   601	http://www.asahi.com/politics/update/0519/001.html	   2
   602	http://www.asahi.com/politics/update/0518/006.html	   2
   603	http://www.asahi.com/politics/update/0518/004.html	   2
   604	http://www.asahi.com/politics/update/0518/003.html	   2
   605	http://www.asahi.com/politics/update/0518/001.html	   2
   606	http://www.asahi.com/politics/update/0517/009.html	   2
   607	http://www.asahi.com/politics/update/0517/008.html	   2
   608	http://www.asahi.com/politics/update/0517/007.html	   2
   609	http://www.asahi.com/politics/update/0517/006.html	   2
   610	http://www.asahi.com/politics/update/0517/005.html	   2
   611	http://www.asahi.com/politics/update/0517/004.html	   2
   612	http://www.asahi.com/politics/update/0516/006.html	   2
   613	http://www.asahi.com/politics/update/0516/004.html	   2
   614	http://www.asahi.com/politics/update/0515/002.html	   2
   615	http://www.asahi.com/politics/update/0515/001.html	   2
   616	http://www.asahi.com/politics/update/0512/012.html	   2
   617	http://www.asahi.com/politics/local.html?t	   2
   618	http://www.asahi.com/politics/local.html	   2
   619	http://www.asahi.com/politics/list.html?t	   2
   620	http://www.asahi.com/politics/government.html?t	   2
   621	http://www.asahi.com/politics/?t	   2
   622	http://www.asahi.com/photonews/OSK200505210011.html?t	   2
   623	http://www.asahi.com/paper/editorial.html?t	   2
   624	http://www.asahi.com/obituaries/update/0521/003.html?t	   2
   625	http://www.asahi.com/obituaries/update/0521/002.html?t	   2
   626	http://www.asahi.com/obituaries/update/0521/001.html?t	   2
   627	http://www.asahi.com/obituaries/index.html?t	   2
   628	http://www.asahi.com/national/update/0521/TKY200505210287.html?t5	   2
   629	http://www.asahi.com/national/update/0521/TKY200505210287.html?t	   2
   630	http://www.asahi.com/national/update/0521/TKY200505210285.html?t5	   2
   631	http://www.asahi.com/national/update/0521/TKY200505210285.html?t	   2
   632	http://www.asahi.com/national/update/0521/TKY200505210284.html?t	   2
   633	http://www.asahi.com/national/update/0521/TKY200505210271.html?t	   2
   634	http://www.asahi.com/national/update/0521/TKY200505210269.html?t	   2
   635	http://www.asahi.com/national/update/0521/TKY200505210268.html?t1	   2
   636	http://www.asahi.com/national/update/0521/TKY200505210268.html?t	   2
   637	http://www.asahi.com/national/update/0521/TKY200505210248.html?t	   2
   638	http://www.asahi.com/national/update/0521/TKY200505210223.html?tc	   2
   639	http://www.asahi.com/national/update/0521/TKY200505210220.html?t	   2
   640	http://www.asahi.com/national/update/0521/TKY200505210219.html?t	   2
   641	http://www.asahi.com/national/update/0521/TKY200505210214.html	   2
   642	http://www.asahi.com/national/update/0521/TKY200505210118.html	   2
   643	http://www.asahi.com/national/update/0521/TKY200505200382.html	   2
   644	http://www.asahi.com/national/update/0521/SEB200505200006.html	   2
   645	http://www.asahi.com/national/update/0521/OSK200505210015.html?t	   2
   646	http://www.asahi.com/national/update/0520/TKY200505200333.html	   2
   647	http://www.asahi.com/national/update/0520/TKY200505200282.html	   2
   648	http://www.asahi.com/national/update/0520/TKY200505200193.html	   2
   649	http://www.asahi.com/national/update/0520/TKY200505200177.html	   2
   650	http://www.asahi.com/national/update/0520/SEB200505190013.html	   2
   651	http://www.asahi.com/national/list.html?t	   2
   652	http://www.asahi.com/national/?t	   2
   653	http://www.asahi.com/life/update/0521/007.html?t5	   2
   654	http://www.asahi.com/life/update/0521/007.html?t	   2
   655	http://www.asahi.com/life/update/0521/006.html?t	   2
   656	http://www.asahi.com/life/update/0521/005.html?t	   2
   657	http://www.asahi.com/life/update/0521/004.html?t	   2
   658	http://www.asahi.com/life/update/0521/003.html?t	   2
   659	http://www.asahi.com/life/update/0518/007.html	   2
   660	http://www.asahi.com/life/list.html?t	   2
   661	http://www.asahi.com/life/health.html	   2
   662	http://www.asahi.com/life/food/meika/index.html	   2
   663	http://www.asahi.com/life/food/meika/TKY200505110288.html	   2
   664	http://www.asahi.com/life/education.html	   2
   665	http://www.asahi.com/life/?t	   2
   666	http://www.asahi.com/job/?t	   2
   667	http://www.asahi.com/international/weekly-asia/present.html	   2
   668	http://www.asahi.com/international/weekly-asia/index.html	   2
   669	http://www.asahi.com/international/weekly-asia/TKY200505170177.html	   2
   670	http://www.asahi.com/international/weekly-asia/TKY200505170166.html	   2
   671	http://www.asahi.com/international/update/0521/012.html?t	   2
   672	http://www.asahi.com/international/update/0521/011.html?t	   2
   673	http://www.asahi.com/international/update/0521/010.html?t	   2
   674	http://www.asahi.com/international/update/0521/009.html?tc	   2
   675	http://www.asahi.com/international/update/0521/009.html?t	   2
   676	http://www.asahi.com/international/update/0521/008.html?t	   2
   677	http://www.asahi.com/international/update/0520/016.html	   2
   678	http://www.asahi.com/international/update/0520/013.html	   2
   679	http://www.asahi.com/international/update/0520/012.html	   2
   680	http://www.asahi.com/international/update/0520/011.html	   2
   681	http://www.asahi.com/international/update/0520/005.html	   2
   682	http://www.asahi.com/international/update/0520/003.html	   2
   683	http://www.asahi.com/international/update/0520/001.html	   2
   684	http://www.asahi.com/international/update/0519/010.html	   2
   685	http://www.asahi.com/international/update/0519/008.html	   2
   686	http://www.asahi.com/international/update/0519/007.html	   2
   687	http://www.asahi.com/international/update/0519/004.html	   2
   688	http://www.asahi.com/international/update/0519/002.html	   2
   689	http://www.asahi.com/international/shien/TKY200505090115.html	   2
   690	http://www.asahi.com/international/shien/	   2
   691	http://www.asahi.com/international/seoul/	   2
   692	http://www.asahi.com/international/list.html?t	   2
   693	http://www.asahi.com/international/jinmin/TKY200505210227.html	   2
   694	http://www.asahi.com/international/index.html	   2
   695	http://www.asahi.com/international/etc.html	   2
   696	http://www.asahi.com/international/asiamachi/	   2
   697	http://www.asahi.com/international/america.html	   2
   698	http://www.asahi.com/international/aan/	   2
   699	http://www.asahi.com/international/?t	   2
   700	http://www.asahi.com/information/service/rss.html	   2
   701	http://www.asahi.com/information/service/books.html	   2
   702	http://www.asahi.com/information/release/TKY200505180220.html?to	   2
   703	http://www.asahi.com/information/release/TKY200505180220.html	   2
   704	http://www.asahi.com/information/release/TKY200505090155.html	   2
   705	http://www.asahi.com/information/release/TKY200504220173.html	   2
   706	http://www.asahi.com/information/release/TKY200504120174.html	   2
   707	http://www.asahi.com/information/release/TKY200504040181.html	   2
   708	http://www.asahi.com/information/pda/index.html	   2
   709	http://www.asahi.com/information/pda/ane/index.html	   2
   710	http://www.asahi.com/information/mobile/sp.html	   2
   711	http://www.asahi.com/information/mobile/ng.html	   2
   712	http://www.asahi.com/information/mobile/mlb.html	   2
   713	http://www.asahi.com/information/mobile/melo.html	   2
   714	http://www.asahi.com/information/mobile/index.html	   2
   715	http://www.asahi.com/information/mobile/imotion.html	   2
   716	http://www.asahi.com/information/mobile/cnn.html	   2
   717	http://www.asahi.com/information/mobile/chie.html	   2
   718	http://www.asahi.com/information/mobile/an.html	   2
   719	http://www.asahi.com/information/mobile/all.html	   2
   720	http://www.asahi.com/information/mail.html	   2
   721	http://www.asahi.com/information/db/person.html	   2
   722	http://www.asahi.com/information/db/kensaku.html	   2
   723	http://www.asahi.com/information/db/info/20041020.html	   2
   724	http://www.asahi.com/information/db/forl.html	   2
   725	http://www.asahi.com/information/db/forb.html	   2
   726	http://www.asahi.com/information/db/daiko.html	   2
   727	http://www.asahi.com/information/cd/senzencd10.html	   2
   728	http://www.asahi.com/information/cd/senkyo2004.html	   2
   729	http://www.asahi.com/information/cd/midashicd.html	   2
   730	http://www.asahi.com/information/cd/CDHIASK2004.html	   2
   731	http://www.asahi.com/information/cd/	   2
   732	http://www.asahi.com/igo/topics/index.html	   2
   733	http://www.asahi.com/igo/topics/TKY200505200211.html	   2
   734	http://www.asahi.com/igo/news/index.html	   2
   735	http://www.asahi.com/igo/netgo/index.html	   2
   736	http://www.asahi.com/igo/meijin30/topics/041128.html	   2
   737	http://www.asahi.com/igo/meijin30/member.html	   2
   738	http://www.asahi.com/igo/meijin30/league.html	   2
   739	http://www.asahi.com/igo/meijin/whatis.html	   2
   740	http://www.asahi.com/igo/meijin/index.html	   2
   741	http://www.asahi.com/igo/?t	   2
   742	http://www.asahi.com/igo/100sen/index.html	   2
   743	http://www.asahi.com/ietoolbar/	   2
   744	http://www.asahi.com/housing/soudan/TKY200505120141.html	   2
   745	http://www.asahi.com/housing/reform/	   2
   746	http://www.asahi.com/housing/news/TKY200505200366.html	   2
   747	http://www.asahi.com/housing/news/TKY200505190155.html	   2
   748	http://www.asahi.com/housing/column/index.html	   2
   749	http://www.asahi.com/housing/amano/TKY200505150085.html	   2
   750	http://www.asahi.com/housing/?t	   2
   751	http://www.asahi.com/health/news/TKY200505200375.html	   2
   752	http://www.asahi.com/health/jhcolumn/index.html	   2
   753	http://www.asahi.com/health/jhcolumn/050520/index.html	   2
   754	http://www.asahi.com/health/?t	   2
   755	http://www.asahi.com/expo2005/videog.html?t	   2
   756	http://www.asahi.com/english/weekly/study/index.html	   2
   757	http://www.asahi.com/english/column/index.html	   2
   758	http://www.asahi.com/english/?t	   2
   759	http://www.asahi.com/edu/nie/tamate/index.html	   2
   760	http://www.asahi.com/edu/nie/tamate/	   2
   761	http://www.asahi.com/edu/nie/sv05/index.html	   2
   762	http://www.asahi.com/edu/nie/kiji/index.html	   2
   763	http://www.asahi.com/edu/nie/index.html	   2
   764	http://www.asahi.com/edu/nie/ff/index.html	   2
   765	http://www.asahi.com/edu/news/nyushi.html	   2
   766	http://www.asahi.com/edu/news/kosodate.html	   2
   767	http://www.asahi.com/edu/news/it.html	   2
   768	http://www.asahi.com/edu/news/TKY200505200361.html?t	   2
   769	http://www.asahi.com/edu/news/TKY200505200361.html	   2
   770	http://www.asahi.com/edu/news/TKY200505200272.html	   2
   771	http://www.asahi.com/edu/news/TKY200505200102.html	   2
   772	http://www.asahi.com/edu/column/special/index.html	   2
   773	http://www.asahi.com/edu/column/ikuji/	   2
   774	http://www.asahi.com/edu/column/gakkou/index.html	   2
   775	http://www.asahi.com/edu/column/advice/index.html	   2
   776	http://www.asahi.com/edu/?t	   2
   777	http://www.asahi.com/digital/ranking/weekly/index.html	   2
   778	http://www.asahi.com/digital/hotwired/TKY200505200267.html	   2
   779	http://www.asahi.com/digital/av/index.html	   2
   780	http://www.asahi.com/digital/?t	   2
   781	http://www.asahi.com/culture/update/0521/011.html?t	   2
   782	http://www.asahi.com/culture/update/0521/008.html?t	   2
   783	http://www.asahi.com/culture/update/0521/	   2
   784	http://www.asahi.com/culture/update/0520/017.html?t	   2
   785	http://www.asahi.com/culture/update/0516/009.html	   2
   786	http://www.asahi.com/culture/theater/index.html?t	   2
   787	http://www.asahi.com/culture/theater/TKY200505210234.html?t	   2
   788	http://www.asahi.com/culture/theater/TKY200505180228.html	   2
   789	http://www.asahi.com/culture/theater/TKY200505180218.html	   2
   790	http://www.asahi.com/culture/theater/TKY200505170258.html	   2
   791	http://www.asahi.com/culture/theater/TKY200505140197.html	   2
   792	http://www.asahi.com/culture/theater/TKY200505130206.html	   2
   793	http://www.asahi.com/culture/theater/TKY200505120100.html	   2
   794	http://www.asahi.com/culture/theater/TKY200505110128.html	   2
   795	http://www.asahi.com/culture/theater/TKY200505100345.html	   2
   796	http://www.asahi.com/culture/theater/TKY200505080066.html	   2
   797	http://www.asahi.com/culture/theater/NGY200505180001.html	   2
   798	http://www.asahi.com/culture/theater/JJT200505200002.html	   2
   799	http://www.asahi.com/culture/theater/?t	   2
   800	http://www.asahi.com/culture/nikkan/NIK200505210018.html?t	   2
   801	http://www.asahi.com/culture/nikkan/NIK200505210015.html?t	   2
   802	http://www.asahi.com/culture/nikkan/NIK200505210014.html?t	   2
   803	http://www.asahi.com/culture/music/index.html?t	   2
   804	http://www.asahi.com/culture/music/TKY200505190181.html	   2
   805	http://www.asahi.com/culture/music/TKY200505180287.html	   2
   806	http://www.asahi.com/culture/music/TKY200505170256.html	   2
   807	http://www.asahi.com/culture/list_geinou.html	   2
   808	http://www.asahi.com/culture/list.html?t	   2
   809	http://www.asahi.com/culture/fashion/TKY200505200176.html	   2
   810	http://www.asahi.com/culture/enews/index.html?t	   2
   811	http://www.asahi.com/culture/enews/RTR200505210012.html?t	   2
   812	http://www.asahi.com/culture/?t	   2
   813	http://www.asahi.com/column/?t	   2
   814	http://www.asahi.com/car/ranking/carview/TKY200505060102.html	   2
   815	http://www.asahi.com/car/ranking/TKY200505170193.html	   2
   816	http://www.asahi.com/car/news/TKY200505190290.html	   2
   817	http://www.asahi.com/car/news/TKY200505170367.html	   2
   818	http://www.asahi.com/car/?t	   2
   819	http://www.asahi.com/business/update/0521/022.html?t5	   2
   820	http://www.asahi.com/business/update/0521/022.html?t	   2
   821	http://www.asahi.com/business/update/0521/021.html?t	   2
   822	http://www.asahi.com/business/update/0521/011.html?t	   2
   823	http://www.asahi.com/business/update/0521/010.html?t	   2
   824	http://www.asahi.com/business/update/0521/004.html?t	   2
   825	http://www.asahi.com/business/update/0519/109.html	   2
   826	http://www.asahi.com/business/topics/TKY200502150091.html	   2
   827	http://www.asahi.com/business/today_shikyo/TKY200505200250.html	   2
   828	http://www.asahi.com/business/today_eye/TKY200502150255.html	   2
   829	http://www.asahi.com/business/special/TKY200504280212.html	   2
   830	http://www.asahi.com/business/special/	   2
   831	http://www.asahi.com/business/list.html?t	   2
   832	http://www.asahi.com/business/index.html	   2
   833	http://www.asahi.com/business/fund/rating/TKY200505210230.html?t	   2
   834	http://www.asahi.com/business/fund/rating/TKY200505210230.html	   2
   835	http://www.asahi.com/business/fund/index.html?t	   2
   836	http://www.asahi.com/business/?t	   2
   837	http://www.asahi.com/business-sp/net/index.html	   2
   838	http://www.asahi.com/business-sp/net/TKY200505170109.html	   2
   839	http://www.asahi.com/business	   2
   840	http://www.asahi.com/berlin/topics/TKY200505200309.html	   2
   841	http://www.asahi.com/berlin/topics/TKY200505090097.html	   2
   842	http://www.asahi.com/berlin/topics/TKY200505020280.html	   2
   843	http://www.asahi.com/berlin/mgallery/index.html	   2
   844	http://www.asahi.com/berlin/mgallery/TKY200505190221.html?t	   2
   845	http://www.asahi.com/berlin/mgallery/TKY200505190221.html	   2
   846	http://www.asahi.com/berlin/mgallery/TKY200505190212.html	   2
   847	http://www.asahi.com/berlin/info/gw.html	   2
   848	http://www.asahi.com/berlin/history/	   2
   849	http://www.asahi.com/berlin/help/index.html	   2
   850	http://www.asahi.com/berlin/help/	   2
   851	http://www.asahi.com/berlin/gallery/10_national/	   2
   852	http://www.asahi.com/berlin/gallery/09_paintings/	   2
   853	http://www.asahi.com/berlin/gallery/08_sculpture/	   2
   854	http://www.asahi.com/berlin/gallery/07_byzantine/	   2
   855	http://www.asahi.com/berlin/gallery/06_coins/	   2
   856	http://www.asahi.com/berlin/gallery/05_islamic/	   2
   857	http://www.asahi.com/berlin/gallery/04_greece/	   2
   858	http://www.asahi.com/berlin/gallery/03_eastern/	   2
   859	http://www.asahi.com/berlin/gallery/02_egypt/	   2
   860	http://www.asahi.com/berlin/gallery/01_prehistory/	   2
   861	http://www.asahi.com/berlin/?t	   2
   862	http://www.asahi.com/ad/clients/waseda/opinion/opinion138.html?navi	   2
   863	http://www.asahi.com/ad/clients/rikkyo/	   2
   864	http://www.asahi.com/ad/clients/minatomirai/index.html	   2
   865	http://www.asahi.com/ad/clients/lufthansa/?navi	   2
   866	http://www.asahi.com/ad/clients/fact/index.html	   2
   867	http://www.asahi.com/ad/clients/aeracd/index.html	   2
   868	http://www.asahi.com/world/germany/news/TKY200505200309.html	   1
   869	http://www.asahi.com/world/china/news/TKY200505200137.html	   1
   870	http://www.asahi.com/whatsnew/	   1
   871	http://www.asahi.com/travel/seoul/index.html	   1
   872	http://www.asahi.com/travel/seoul/TKY200505100200.html	   1
   873	http://www.asahi.com/travel/news/index.html	   1
   874	http://www.asahi.com/travel/news/TKY200505210274.html	   1
   875	http://www.asahi.com/travel/news/TKY200505170089.html	   1
   876	http://www.asahi.com/travel/news/TKY200505140195.html	   1
   877	http://www.asahi.com/travel/news/OSK200505150026.html	   1
   878	http://www.asahi.com/tech/	   1
   879	http://www.asahi.com/sports/update/0521/144.html?t	   1
   880	http://www.asahi.com/sports/update/0521/013.html	   1
   881	http://www.asahi.com/sports/update/0520/137.html	   1
   882	http://www.asahi.com/sports/update/0520/113.html	   1
   883	http://www.asahi.com/sports/update/0520/112.html	   1
   884	http://www.asahi.com/sports/update/0520/110.html	   1
   885	http://www.asahi.com/sports/update/0520/095.html	   1
   886	http://www.asahi.com/sports/update/0520/083.html	   1
   887	http://www.asahi.com/sports/update/0519/128.html	   1
   888	http://www.asahi.com/sports/update/0515/169.html	   1
   889	http://www.asahi.com/sports/spo/TKY200505210276.html	   1
   890	http://www.asahi.com/sports/spo/TKY200505210263.html	   1
   891	http://www.asahi.com/sports/spo/TKY200505210253.html	   1
   892	http://www.asahi.com/sports/spo/TKY200505210241.html	   1
   893	http://www.asahi.com/sports/spo/TKY200505200319.html	   1
   894	http://www.asahi.com/sports/spo/TKY200505200276.html	   1
   895	http://www.asahi.com/sports/spo/TKY200505200275.html	   1
   896	http://www.asahi.com/sports/spo/TKY200505190269.html	   1
   897	http://www.asahi.com/sports/spo/TKY200505190154.html	   1
   898	http://www.asahi.com/sports/spo/TKY200505190121.html	   1
   899	http://www.asahi.com/sports/spo/TKY200505170360.html	   1
   900	http://www.asahi.com/sports/spo/TKY200505170340.html	   1
   901	http://www.asahi.com/sports/spo/TKY200505170246.html	   1
   902	http://www.asahi.com/sports/spo/TKY200505160203.html	   1
   903	http://www.asahi.com/sports/spo/TKY200505160120.html	   1
   904	http://www.asahi.com/sports/spo/TKY200505160099.html	   1
   905	http://www.asahi.com/sports/spo/TKY200505120268.html	   1
   906	http://www.asahi.com/sports/spo/TKY200505090332.html	   1
   907	http://www.asahi.com/sports/spo/OSK200505210010.html	   1
   908	http://www.asahi.com/sports/spo/OSK200505200043.html	   1
   909	http://www.asahi.com/sports/spo/NGY200505210002.html	   1
   910	http://www.asahi.com/sports/spo/NGY200505200001.html	   1
   911	http://www.asahi.com/sports/spo/KYD200505210006.html	   1
   912	http://www.asahi.com/sports/spo/KYD200505210004.html	   1
   913	http://www.asahi.com/sports/spo/KYD200505200002.html	   1
   914	http://www.asahi.com/sports/spo/KYD200505190008.html	   1
   915	http://www.asahi.com/sports/spo/KYD200505190007.html	   1
   916	http://www.asahi.com/sports/spo/KYD200504240011.html	   1
   917	http://www.asahi.com/sports/senbatsu2005/index.html	   1
   918	http://www.asahi.com/sports/golf/TKY200505190121.html	   1
   919	http://www.asahi.com/sports/fb/result-j2.html	   1
   920	http://www.asahi.com/sports/fb/result-j1.html	   1
   921	http://www.asahi.com/sports/fb/j-member.html	   1
   922	http://www.asahi.com/sports/fb/group-b.html	   1
   923	http://www.asahi.com/sports/fb/TKY200505210279.html	   1
   924	http://www.asahi.com/sports/fb/TKY200505210277.html	   1
   925	http://www.asahi.com/sports/fb/TKY200505200320.html	   1
   926	http://www.asahi.com/sports/fb/TKY200505200179.html	   1
   927	http://www.asahi.com/sports/fb/TKY200505190262.html	   1
   928	http://www.asahi.com/sports/fb/TKY200505190257.html	   1
   929	http://www.asahi.com/sports/fb/TKY200505190099.html	   1
   930	http://www.asahi.com/sports/fb/TKY200505180246.html	   1
   931	http://www.asahi.com/sports/fb/TKY200505170301.html	   1
   932	http://www.asahi.com/sports/fb/TKY200505170181.html	   1
   933	http://www.asahi.com/sports/fb/TKY200505160171.html	   1
   934	http://www.asahi.com/sports/fb/TKY200505150154.html	   1
   935	http://www.asahi.com/sports/fb/TKY200505130342.html	   1
   936	http://www.asahi.com/sports/fb/TKY200505130271.html	   1
   937	http://www.asahi.com/sports/fb/TKY200505120257.html	   1
   938	http://www.asahi.com/sports/fb/TKY200503290220.html	   1
   939	http://www.asahi.com/sports/fb/OSK200505210011.html	   1
   940	http://www.asahi.com/sports/fb/KYD200505170005.html	   1
   941	http://www.asahi.com/sports/fb/KYD200505160001.html	   1
   942	http://www.asahi.com/sports/fb/KYD200505130001.html	   1
   943	http://www.asahi.com/sports/fb/JJT200505210003.html	   1
   944	http://www.asahi.com/sports/fb/JJT200505200005.html	   1
   945	http://www.asahi.com/sports/fb/JJT200505200004.html	   1
   946	http://www.asahi.com/sports/fb/JJT200505200001.html	   1
   947	http://www.asahi.com/sports/fb/JJT200505190001.html	   1
   948	http://www.asahi.com/sports/column/index.html	   1
   949	http://www.asahi.com/sports/bb/giants.html	   1
   950	http://www.asahi.com/sports/bb/TKY200505210280.html	   1
   951	http://www.asahi.com/sports/bb/TKY200505210258.html	   1
   952	http://www.asahi.com/sports/bb/TKY200505210245.html	   1
   953	http://www.asahi.com/sports/bb/TKY200505210198.html	   1
   954	http://www.asahi.com/sports/bb/TKY200505210155.html	   1
   955	http://www.asahi.com/sports/bb/TKY200505210152.html	   1
   956	http://www.asahi.com/sports/bb/TKY200505210142.html	   1
   957	http://www.asahi.com/sports/bb/TKY200505210122.html	   1
   958	http://www.asahi.com/sports/bb/TKY200505200317.html	   1
   959	http://www.asahi.com/sports/bb/TKY200505200195.html	   1
   960	http://www.asahi.com/sports/bb/TKY200505200194.html	   1
   961	http://www.asahi.com/sports/bb/TKY200505200192.html	   1
   962	http://www.asahi.com/sports/bb/TKY200505200104.html	   1
   963	http://www.asahi.com/sports/bb/TKY200505190146.html	   1
   964	http://www.asahi.com/sports/bb/TKY200505180241.html	   1
   965	http://www.asahi.com/sports/bb/TKY200505160255.html	   1
   966	http://www.asahi.com/sports/bb/TKY200505150141.html	   1
   967	http://www.asahi.com/sports/bb/TKY200505150103.html	   1
   968	http://www.asahi.com/sports/bb/TKY200505140193.html	   1
   969	http://www.asahi.com/sports/bb/SEB200505210004.html	   1
   970	http://www.asahi.com/sports/bb/SEB200505200005.html	   1
   971	http://www.asahi.com/sports/bb/KYD200505210005.html	   1
   972	http://www.asahi.com/sports/bb/KYD200505210001.html	   1
   973	http://www.asahi.com/sports/bb/KYD200505190006.html	   1
   974	http://www.asahi.com/sports/bb/JJT200505210001.html	   1
   975	http://www.asahi.com/spo/2005prince-league/TKY200505210272.html	   1
   976	http://www.asahi.com/spo/2005prince-league/TKY200505140213.html	   1
   977	http://www.asahi.com/special/webvote/index.html	   1
   978	http://www.asahi.com/special/space/TKY200505160142.html	   1
   979	http://www.asahi.com/special/robot/TKY200505200312.html	   1
   980	http://www.asahi.com/special/robot/TKY200505160266.html	   1
   981	http://www.asahi.com/special/robot/TKY200505090165.html	   1
   982	http://www.asahi.com/special/robot/TKY200505040180.html	   1
   983	http://www.asahi.com/special/robot/TKY200504230154.html	   1
   984	http://www.asahi.com/special/robot/TKY200504200233.html	   1
   985	http://www.asahi.com/special/robot/TKY200504120262.html	   1
   986	http://www.asahi.com/special/robot/TKY200504080258.html	   1
   987	http://www.asahi.com/special/robot/TKY200504060293.html	   1
   988	http://www.asahi.com/special/robot/TKY200504020189.html	   1
   989	http://www.asahi.com/special/robot/TKY200503160473.html	   1
   990	http://www.asahi.com/special/robot/TKY200503150265.html	   1
   991	http://www.asahi.com/special/robot/TKY200503040161.html	   1
   992	http://www.asahi.com/special/robot/TKY200502280310.html	   1
   993	http://www.asahi.com/special/robot/OSK200505140017.html	   1
   994	http://www.asahi.com/special/robot/OSK200503020052.html	   1
   995	http://www.asahi.com/sit/wedding/	   1
   996	http://www.asahi.com/sit/w_history/	   1
   997	http://www.asahi.com/sit/unexplored/	   1
   998	http://www.asahi.com/sit/trekking/	   1
   999	http://www.asahi.com/sit/silkroad/	   1
  1000	http://www.asahi.com/sit/safari/	   1
  1001	http://www.asahi.com/sit/nature/	   1
  1002	http://www.asahi.com/sit/music_eu/	   1
  1003	http://www.asahi.com/sit/heritage/	   1
  1004	http://www.asahi.com/sit/cruise/	   1
  1005	http://www.asahi.com/sit/asia_resort/	   1
  1006	http://www.asahi.com/sit/asia_history/	   1
  1007	http://www.asahi.com/sit/america/	   1
  1008	http://www.asahi.com/sit/abroad50/	   1
  1009	http://www.asahi.com/sit/	   1
  1010	http://www.asahi.com/shougi/topics/TKY200505170265.html	   1
  1011	http://www.asahi.com/shougi/topics/TKY200505170262.html	   1
  1012	http://www.asahi.com/shougi/topics/TKY200505170259.html	   1
  1013	http://www.asahi.com/shougi/topics/TKY200505120187.html	   1
  1014	http://www.asahi.com/shougi/topics/TKY200505100206.html	   1
  1015	http://www.asahi.com/shougi/topics/TKY200505070194.html	   1
  1016	http://www.asahi.com/shougi/topics/TKY200505040145.html	   1
  1017	http://www.asahi.com/shougi/topics/TKY200504300223.html	   1
  1018	http://www.asahi.com/shougi/topics/TKY200504270179.html	   1
  1019	http://www.asahi.com/shougi/topics/TKY200504220150.html	   1
  1020	http://www.asahi.com/shougi/topics/	   1
  1021	http://www.asahi.com/shougi/open23/photo/01.html	   1
  1022	http://www.asahi.com/shougi/open23/open.html	   1
  1023	http://www.asahi.com/shougi/open23/honsen_22/	   1
  1024	http://www.asahi.com/shougi/open23/honsen_21/	   1
  1025	http://www.asahi.com/shougi/open23/honsen_20/	   1
  1026	http://www.asahi.com/shougi/open23/5ban03.html	   1
  1027	http://www.asahi.com/shougi/open23/5ban02.html	   1
  1028	http://www.asahi.com/shougi/open23/5ban01.html	   1
  1029	http://www.asahi.com/shougi/open23/5ban.html	   1
  1030	http://www.asahi.com/shougi/news/TKY200505150132.html	   1
  1031	http://www.asahi.com/shougi/news/TKY200505140189.html	   1
  1032	http://www.asahi.com/shougi/news/TKY200505130307.html	   1
  1033	http://www.asahi.com/shougi/news/TKY200504260328.html	   1
  1034	http://www.asahi.com/shougi/news/TKY200504190114.html	   1
  1035	http://www.asahi.com/shougi/news/TKY200504180209.html	   1
  1036	http://www.asahi.com/shougi/news/TKY200504130324.html	   1
  1037	http://www.asahi.com/shougi/news/OSK200505040017.html	   1
  1038	http://www.asahi.com/shougi/news/OSK200505040016.html	   1
  1039	http://www.asahi.com/shougi/news/	   1
  1040	http://www.asahi.com/shougi/kifu/23kai/050520.html	   1
  1041	http://www.asahi.com/shougi/kifu/23kai/050504.html	   1
  1042	http://www.asahi.com/shougi/kifu/23kai/050419.html	   1
  1043	http://www.asahi.com/shougi/kifu/23kai/050407.html	   1
  1044	http://www.asahi.com/shougi/kifu/	   1
  1045	http://www.asahi.com/shougi/books/TKY200505190217.html	   1
  1046	http://www.asahi.com/shougi/books/TKY200505010111.html	   1
  1047	http://www.asahi.com/shougi/books/TKY200504300163.html	   1
  1048	http://www.asahi.com/shougi/books/TKY200504180179.html	   1
  1049	http://www.asahi.com/shougi/books/TKY200504140268.html	   1
  1050	http://www.asahi.com/shougi/ama/050516.html	   1
  1051	http://www.asahi.com/shougi/ama/050402.html	   1
  1052	http://www.asahi.com/shougi/ama/05031003.html	   1
  1053	http://www.asahi.com/shougi/ama/05031002.html	   1
  1054	http://www.asahi.com/shougi/ama/05031001.html	   1
  1055	http://www.asahi.com/shougi/ama/	   1
  1056	http://www.asahi.com/shopping/special/index43.html%E3%80%80	   1
  1057	http://www.asahi.com/shopping/special/	   1
  1058	http://www.asahi.com/shopping/ryouhin/TKY200503010133.html	   1
  1059	http://www.asahi.com/shimbun/subscribe3.html	   1
  1060	http://www.asahi.com/shimbun/saiyou/tech/movinstyle/01.html	   1
  1061	http://www.asahi.com/shimbun/saiyou/tech/movinnow01.html	   1
  1062	http://www.asahi.com/shimbun/saiyou/tech/index.html	   1
  1063	http://www.asahi.com/shimbun/saiyou/research/index.html	   1
  1064	http://www.asahi.com/shimbun/saiyou/letter/index.html	   1
  1065	http://www.asahi.com/shimbun/saiyou/info/taigu.html	   1
  1066	http://www.asahi.com/shimbun/saiyou/info/syosai_tech.html	   1
  1067	http://www.asahi.com/shimbun/saiyou/info/syosai_eb.html	   1
  1068	http://www.asahi.com/shimbun/saiyou/info/syakaijin.html	   1
  1069	http://www.asahi.com/shimbun/saiyou/info/saishin.html	   1
  1070	http://www.asahi.com/shimbun/saiyou/info/message.html	   1
  1071	http://www.asahi.com/shimbun/saiyou/info/kensyu.html	   1
  1072	http://www.asahi.com/shimbun/saiyou/info/jiji01.html	   1
  1073	http://www.asahi.com/shimbun/saiyou/info/houshin.html	   1
  1074	http://www.asahi.com/shimbun/saiyou/info/gaiyou.html	   1
  1075	http://www.asahi.com/shimbun/saiyou/info/faq.html	   1
  1076	http://www.asahi.com/shimbun/saiyou/edit/movinstyle/01.html	   1
  1077	http://www.asahi.com/shimbun/saiyou/edit/movinnow01.html	   1
  1078	http://www.asahi.com/shimbun/saiyou/edit/index.html	   1
  1079	http://www.asahi.com/shimbun/saiyou/diary/index.html	   1
  1080	http://www.asahi.com/shimbun/saiyou/data/index.html	   1
  1081	http://www.asahi.com/shimbun/saiyou/business/movinstyle/01.html	   1
  1082	http://www.asahi.com/shimbun/saiyou/business/movinnow01.html	   1
  1083	http://www.asahi.com/shimbun/saiyou/business/index.html	   1
  1084	http://www.asahi.com/shimbun/kengaku/tokyo.html	   1
  1085	http://www.asahi.com/shimbun/kengaku/seibu.html	   1
  1086	http://www.asahi.com/shimbun/kengaku/nagoya.html	   1
  1087	http://www.asahi.com/shimbun/kengaku/kyoto.html	   1
  1088	http://www.asahi.com/shimbun/kengaku/index.html	   1
  1089	http://www.asahi.com/shimbun/honsya/e/index.html	   1
  1090	http://www.asahi.com/shimbun/credit.html	   1
  1091	http://www.asahi.com/shimbun/areapage.html	   1
  1092	http://www.asahi.com/science/oriori/	   1
  1093	http://www.asahi.com/science/news/TKY200505150203.html	   1
  1094	http://www.asahi.com/science/news/TKY200505140229.html	   1
  1095	http://www.asahi.com/science/news/TKY200505140121.html	   1
  1096	http://www.asahi.com/science/news/TKY200505130142.html	   1
  1097	http://www.asahi.com/science/news/TKY200505120331.html	   1
  1098	http://www.asahi.com/politics/update/0517/003.html	   1
  1099	http://www.asahi.com/politics/update/0517/002.html	   1
  1100	http://www.asahi.com/politics/update/0517/001.html	   1
  1101	http://www.asahi.com/politics/update/0516/008.html	   1
  1102	http://www.asahi.com/politics/update/0516/007.html	   1
  1103	http://www.asahi.com/politics/update/0516/003.html	   1
  1104	http://www.asahi.com/politics/naikaku/index.html	   1
  1105	http://www.asahi.com/politics/naikaku/TKY200504240134.html	   1
  1106	http://www.asahi.com/photonews/TKY200505210241.html	   1
  1107	http://www.asahi.com/photonews/TKY200505210218.html	   1
  1108	http://www.asahi.com/photonews/TKY200505210132.html	   1
  1109	http://www.asahi.com/photonews/TKY200505210122.html	   1
  1110	http://www.asahi.com/photonews/TKY200505200346.html	   1
  1111	http://www.asahi.com/photonews/TKY200505200343.html	   1
  1112	http://www.asahi.com/photonews/TKY200505200312.html	   1
  1113	http://www.asahi.com/photonews/TKY200505200251.html	   1
  1114	http://www.asahi.com/photonews/OSK200505210011.html	   1
  1115	http://www.asahi.com/photonews/	   1
  1116	http://www.asahi.com/pft/hanaoriori/oriori.html	   1
  1117	http://www.asahi.com/paper/sports.html	   1
  1118	http://www.asahi.com/paper/politics.html	   1
  1119	http://www.asahi.com/paper/national.html	   1
  1120	http://www.asahi.com/paper/international.html	   1
  1121	http://www.asahi.com/paper/editorial20050520.html	   1
  1122	http://www.asahi.com/paper/editorial20050519.html	   1
  1123	http://www.asahi.com/paper/editorial20050518.html	   1
  1124	http://www.asahi.com/paper/editorial20050517.html	   1
  1125	http://www.asahi.com/paper/editorial20050516.html	   1
  1126	http://www.asahi.com/paper/editorial20050515.html	   1
  1127	http://www.asahi.com/paper/business.html	   1
  1128	http://www.asahi.com/paper/	   1
  1129	http://www.asahi.com/offtime/	   1
  1130	http://www.asahi.com/obituaries/update/0519/004.html	   1
  1131	http://www.asahi.com/obituaries/update/0519/003.html	   1
  1132	http://www.asahi.com/obituaries/update/0519/002.html	   1
  1133	http://www.asahi.com/obituaries/update/0519/001.html	   1
  1134	http://www.asahi.com/national/update/0521/TKY200505210210.html	   1
  1135	http://www.asahi.com/national/update/0521/TKY200505210208.html	   1
  1136	http://www.asahi.com/national/update/0521/TKY200505210201.html	   1
  1137	http://www.asahi.com/national/update/0521/TKY200505210191.html	   1
  1138	http://www.asahi.com/national/update/0521/TKY200505210174.html	   1
  1139	http://www.asahi.com/national/update/0521/TKY200505210151.html	   1
  1140	http://www.asahi.com/national/update/0521/TKY200505210126.html	   1
  1141	http://www.asahi.com/national/update/0521/TKY200505200370.html	   1
  1142	http://www.asahi.com/national/update/0521/TKY200505200369.html	   1
  1143	http://www.asahi.com/national/update/0521/TKY200505200366.html	   1
  1144	http://www.asahi.com/national/update/0521/SEB200505200007.html	   1
  1145	http://www.asahi.com/national/update/0521/OSK200505210008.html	   1
  1146	http://www.asahi.com/national/update/0520/TKY200505200359.html	   1
  1147	http://www.asahi.com/national/update/0520/TKY200505200343.html	   1
  1148	http://www.asahi.com/national/update/0520/TKY200505200335.html	   1
  1149	http://www.asahi.com/national/update/0520/TKY200505200329.html	   1
  1150	http://www.asahi.com/national/update/0520/TKY200505200324.html	   1
  1151	http://www.asahi.com/national/update/0520/TKY200505200321.html	   1
  1152	http://www.asahi.com/national/update/0520/TKY200505200297.html	   1
  1153	http://www.asahi.com/national/update/0520/TKY200505200295.html	   1
  1154	http://www.asahi.com/national/update/0520/TKY200505200283.html	   1
  1155	http://www.asahi.com/national/update/0520/TKY200505200281.html	   1
  1156	http://www.asahi.com/national/update/0520/TKY200505200175.html	   1
  1157	http://www.asahi.com/national/update/0520/TKY200505190367.html	   1
  1158	http://www.asahi.com/national/update/0520/SEB200505200003.html	   1
  1159	http://www.asahi.com/national/update/0520/OSK200505200048.html	   1
  1160	http://www.asahi.com/national/update/0520/OSK200505200045.html	   1
  1161	http://www.asahi.com/national/update/0519/TKY200505190252.html	   1
  1162	http://www.asahi.com/national/update/0518/TKY200505180289.html	   1
  1163	http://www.asahi.com/national/update/0518/TKY200505180207.html	   1
  1164	http://www.asahi.com/national/update/0518/TKY200505180183.html	   1
  1165	http://www.asahi.com/national/update/0517/TKY200505170347.html	   1
  1166	http://www.asahi.com/national/update/0514/TKY200505140190.html	   1
  1167	http://www.asahi.com/national/trial.html	   1
  1168	http://www.asahi.com/national/calamity.html	   1
  1169	http://www.asahi.com/nankyoku/whitemail/	   1
  1170	http://www.asahi.com/nankyoku/qa/index.html	   1
  1171	http://www.asahi.com/nankyoku/people/index.html	   1
  1172	http://www.asahi.com/nankyoku/borderless/	   1
  1173	http://www.asahi.com/motion/	   1
  1174	http://www.asahi.com/money/	   1
  1175	http://www.asahi.com/medical/index.html	   1
  1176	http://www.asahi.com/life/update/0520/002.html	   1
  1177	http://www.asahi.com/life/update/0520/001.html	   1
  1178	http://www.asahi.com/life/update/0519/010.html	   1
  1179	http://www.asahi.com/life/update/0519/009.html	   1
  1180	http://www.asahi.com/life/update/0519/006.html	   1
  1181	http://www.asahi.com/life/update/0519/005.html	   1
  1182	http://www.asahi.com/life/update/0519/003.html	   1
  1183	http://www.asahi.com/life/update/0519/002.html	   1
  1184	http://www.asahi.com/life/update/0519/001.html	   1
  1185	http://www.asahi.com/life/update/0518/006.html	   1
  1186	http://www.asahi.com/life/update/0518/005.html	   1
  1187	http://www.asahi.com/life/update/0518/004.html	   1
  1188	http://www.asahi.com/life/update/0518/003.html	   1
  1189	http://www.asahi.com/life/update/0518/002.html	   1
  1190	http://www.asahi.com/life/update/0517/007.html	   1
  1191	http://www.asahi.com/life/update/0517/006.html	   1
  1192	http://www.asahi.com/life/travel.html	   1
  1193	http://www.asahi.com/life/housing.html	   1
  1194	http://www.asahi.com/life/food/table/TKY200504020142.html	   1
  1195	http://www.asahi.com/life/food/memo/TKY200505200121.html	   1
  1196	http://www.asahi.com/life/food/italian/TKY200505090264.html	   1
  1197	http://www.asahi.com/life/food/index.html	   1
  1198	http://www.asahi.com/life/column/index.html	   1
  1199	http://www.asahi.com/life/car.html	   1
  1200	http://www.asahi.com/kansaisq/	   1
  1201	http://www.asahi.com/kansai/yotsuba/index.html	   1
  1202	http://www.asahi.com/kansai/yotsuba/OSK200505170027.html	   1
  1203	http://www.asahi.com/kansai/wakuwaku/asahi01.html	   1
  1204	http://www.asahi.com/kansai/umaimon/index.html	   1
  1205	http://www.asahi.com/kansai/umaimon/OSK200505160026.html	   1
  1206	http://www.asahi.com/kansai/takara/index.html	   1
  1207	http://www.asahi.com/kansai/takara/OSK200505180020.html	   1
  1208	http://www.asahi.com/kansai/syun/index.html	   1
  1209	http://www.asahi.com/kansai/syun/OSK200505180025.html	   1
  1210	http://www.asahi.com/kansai/smile/index.html	   1
  1211	http://www.asahi.com/kansai/smile/OSK200505170028.html	   1
  1212	http://www.asahi.com/kansai/sanshi/index.html	   1
  1213	http://www.asahi.com/kansai/sanshi/OSK200505200025.html	   1
  1214	http://www.asahi.com/kansai/onayami/index.html	   1
  1215	http://www.asahi.com/kansai/onayami/OSK200505200022.html	   1
  1216	http://www.asahi.com/kansai/okiniiri/index.html	   1
  1217	http://www.asahi.com/kansai/okiniiri/OSK200505170057.html	   1
  1218	http://www.asahi.com/kansai/okan/index.html	   1
  1219	http://www.asahi.com/kansai/okan/OSK200505190048.html	   1
  1220	http://www.asahi.com/kansai/news/index.html	   1
  1221	http://www.asahi.com/kansai/news/OSK200505200040.html	   1
  1222	http://www.asahi.com/kansai/news/OSK200505200039.html	   1
  1223	http://www.asahi.com/kansai/news/OSK200505200038.html	   1
  1224	http://www.asahi.com/kansai/news/OSK200505200037.html	   1
  1225	http://www.asahi.com/kansai/news/OSK200505200036.html	   1
  1226	http://www.asahi.com/kansai/news/OSK200505200032.html	   1
  1227	http://www.asahi.com/kansai/news/OSK200505200031.html	   1
  1228	http://www.asahi.com/kansai/news/OSK200505200029.html	   1
  1229	http://www.asahi.com/kansai/news/OSK200505200027.html	   1
  1230	http://www.asahi.com/kansai/news/OSK200505200023.html	   1
  1231	http://www.asahi.com/kansai/news/OSK200505200021.html	   1
  1232	http://www.asahi.com/kansai/news/OSK200505200020.html	   1
  1233	http://www.asahi.com/kansai/news/OSK200505200019.html	   1
  1234	http://www.asahi.com/kansai/news/OSK200505200018.html	   1
  1235	http://www.asahi.com/kansai/news/OSK200505200016.html	   1
  1236	http://www.asahi.com/kansai/news/OSK200505200015.html	   1
  1237	http://www.asahi.com/kansai/news/OSK200505200012.html	   1
  1238	http://www.asahi.com/kansai/news/OSK200505200011.html	   1
  1239	http://www.asahi.com/kansai/news/OSK200505200010.html	   1
  1240	http://www.asahi.com/kansai/news/OSK200505190008.html	   1
  1241	http://www.asahi.com/kansai/news/OSK200505180040.html	   1
  1242	http://www.asahi.com/kansai/news/OSK200505180014.html	   1
  1243	http://www.asahi.com/kansai/news/OSK200505170024.html	   1
  1244	http://www.asahi.com/kansai/news/OSK200505170015.html	   1
  1245	http://www.asahi.com/kansai/news/OSK200505010009.html	   1
  1246	http://www.asahi.com/kansai/kyosho/index.html	   1
  1247	http://www.asahi.com/kansai/kyosho/OSK200505190024.html	   1
  1248	http://www.asahi.com/kansai/keiki/index.html	   1
  1249	http://www.asahi.com/kansai/keiki/OSK200505170059.html	   1
  1250	http://www.asahi.com/kansai/kataritsugu/OSK200504260035.html	   1
  1251	http://www.asahi.com/kansai/kataritsugu/	   1
  1252	http://www.asahi.com/kansai/kansaiisan/index.html	   1
  1253	http://www.asahi.com/kansai/kansaiisan/OSK200505190031.html	   1
  1254	http://www.asahi.com/kansai/kaban/index.html	   1
  1255	http://www.asahi.com/kansai/kaban/OSK200505190028.html	   1
  1256	http://www.asahi.com/kansai/index.html	   1
  1257	http://www.asahi.com/kansai/horiekenichi/index.html	   1
  1258	http://www.asahi.com/kansai/horiekenichi/OSK200505150019.html	   1
  1259	http://www.asahi.com/kansai/fuukei/index.html	   1
  1260	http://www.asahi.com/kansai/fuukei/OSK200505160018.html	   1
  1261	http://www.asahi.com/kansai/depa/index.html	   1
  1262	http://www.asahi.com/kansai/depa/OSK200505190026.html	   1
  1263	http://www.asahi.com/kansai/densetsu/index.html	   1
  1264	http://www.asahi.com/kansai/densetsu/OSK200505200026.html	   1
  1265	http://www.asahi.com/kansai/demae/	   1
  1266	http://www.asahi.com/job/news/TKY200505210247.html	   1
  1267	http://www.asahi.com/job/news/TKY200505200297.html	   1
  1268	http://www.asahi.com/job/news/TKY200503110536.html	   1
  1269	http://www.asahi.com/job/news/OSK200505210009.html	   1
  1270	http://www.asahi.com/job/news/	   1
  1271	http://www.asahi.com/jinmyakuki/TKY200504250140.html	   1
  1272	http://www.asahi.com/jinmyakuki/TKY200504060230.html	   1
  1273	http://www.asahi.com/jinmyakuki/	   1
  1274	http://www.asahi.com/international/update/0520/014.html	   1
  1275	http://www.asahi.com/international/update/0520/008.html	   1
  1276	http://www.asahi.com/international/update/0520/007.html	   1
  1277	http://www.asahi.com/international/update/0520/006.html	   1
  1278	http://www.asahi.com/international/update/0520/004.html	   1
  1279	http://www.asahi.com/international/update/0520/002.html	   1
  1280	http://www.asahi.com/international/update/0519/012.html	   1
  1281	http://www.asahi.com/international/update/0519/011.html	   1
  1282	http://www.asahi.com/international/update/0519/009.html	   1
  1283	http://www.asahi.com/international/update/0519/006.html	   1
  1284	http://www.asahi.com/international/update/0519/005.html	   1
  1285	http://www.asahi.com/international/update/0519/003.html	   1
  1286	http://www.asahi.com/international/update/0519/001.html	   1
  1287	http://www.asahi.com/international/update/0518/014.html	   1
  1288	http://www.asahi.com/international/update/0518/012.html	   1
  1289	http://www.asahi.com/international/update/0518/001.html	   1
  1290	http://www.asahi.com/international/update/0517/009.html	   1
  1291	http://www.asahi.com/international/update/0516/005.html	   1
  1292	http://www.asahi.com/international/update/0510/004.html	   1
  1293	http://www.asahi.com/international/middleeast.html	   1
  1294	http://www.asahi.com/international/jinmin/index.html	   1
  1295	http://www.asahi.com/international/jinmin/TKY200505210229.html	   1
  1296	http://www.asahi.com/international/jinmin/TKY200505210228.html	   1
  1297	http://www.asahi.com/international/jinmin/TKY200505200260.html	   1
  1298	http://www.asahi.com/international/jinmin/	   1
  1299	http://www.asahi.com/international/europe.html	   1
  1300	http://www.asahi.com/information/soken/contents0505.pdf	   1
  1301	http://www.asahi.com/information/release/TKY200505200273.html	   1
  1302	http://www.asahi.com/information/release/TKY200505160156.html	   1
  1303	http://www.asahi.com/information/release/	   1
  1304	http://www.asahi.com/information/english/index.html	   1
  1305	http://www.asahi.com/iht-asahi/search.html	   1
  1306	http://www.asahi.com/igo/topics/TKY200505180243.html	   1
  1307	http://www.asahi.com/igo/topics/TKY200505170264.html	   1
  1308	http://www.asahi.com/igo/topics/TKY200505170260.html	   1
  1309	http://www.asahi.com/igo/topics/TKY200505120188.html	   1
  1310	http://www.asahi.com/igo/topics/TKY200505100208.html	   1
  1311	http://www.asahi.com/igo/topics/TKY200505080106.html	   1
  1312	http://www.asahi.com/igo/topics/TKY200505070196.html	   1
  1313	http://www.asahi.com/igo/topics/TKY200505040144.html	   1
  1314	http://www.asahi.com/igo/topics/TKY200504290233.html	   1
  1315	http://www.asahi.com/igo/topics/	   1
  1316	http://www.asahi.com/igo/news/TKY200505100283.html	   1
  1317	http://www.asahi.com/igo/news/TKY200504270230.html	   1
  1318	http://www.asahi.com/igo/news/TKY200504200274.html	   1
  1319	http://www.asahi.com/igo/news/TKY200504190207.html	   1
  1320	http://www.asahi.com/igo/news/TKY200503250223.html	   1
  1321	http://www.asahi.com/igo/news/TKY200503170291.html	   1
  1322	http://www.asahi.com/igo/news/TKY200503100354.html	   1
  1323	http://www.asahi.com/igo/news/TKY200503020247.html	   1
  1324	http://www.asahi.com/igo/news/	   1
  1325	http://www.asahi.com/igo/netgo/	   1
  1326	http://www.asahi.com/igo/meijin30/komado.html	   1
  1327	http://www.asahi.com/igo/meijin30/19/	   1
  1328	http://www.asahi.com/igo/meijin30/18/	   1
  1329	http://www.asahi.com/igo/meijin30/17/	   1
  1330	http://www.asahi.com/igo/meijin30/16/	   1
  1331	http://www.asahi.com/igo/meijin30/.html	   1
  1332	http://www.asahi.com/igo/meijin/	   1
  1333	http://www.asahi.com/igo/kifu/30ki/050517.html	   1
  1334	http://www.asahi.com/igo/kifu/	   1
  1335	http://www.asahi.com/igo/books/TKY200505020226.html	   1
  1336	http://www.asahi.com/igo/books/TKY200503170239.html	   1
  1337	http://www.asahi.com/igo/100sen/	   1
  1338	http://www.asahi.com/housing/zasshi/index.html	   1
  1339	http://www.asahi.com/housing/zasshi/TKY200412070186.html	   1
  1340	http://www.asahi.com/housing/zasshi/	   1
  1341	http://www.asahi.com/housing/world/TKY200505180118.html	   1
  1342	http://www.asahi.com/housing/world/	   1
  1343	http://www.asahi.com/housing/soudan/index.html	   1
  1344	http://www.asahi.com/housing/soudan/	   1
  1345	http://www.asahi.com/housing/sell.html	   1
  1346	http://www.asahi.com/housing/reform/index.html	   1
  1347	http://www.asahi.com/housing/news/index.html	   1
  1348	http://www.asahi.com/housing/news/TKY200505170279.html	   1
  1349	http://www.asahi.com/housing/news/TKY200505170080.html	   1
  1350	http://www.asahi.com/housing/news/TKY200505150197.html	   1
  1351	http://www.asahi.com/housing/news/TKY200505120337.html	   1
  1352	http://www.asahi.com/housing/news/TKY200505110234.html	   1
  1353	http://www.asahi.com/housing/news/TKY200505100094.html	   1
  1354	http://www.asahi.com/housing/news/TKY200505090288.html	   1
  1355	http://www.asahi.com/housing/news/TKY200505090276.html	   1
  1356	http://www.asahi.com/housing/news/TKY200505080177.html	   1
  1357	http://www.asahi.com/housing/news/TKY200505060148.html	   1
  1358	http://www.asahi.com/housing/news/TKY200505060142.html	   1
  1359	http://www.asahi.com/housing/news/TKY200504260192.html	   1
  1360	http://www.asahi.com/housing/news/TKY200504220322.html	   1
  1361	http://www.asahi.com/housing/news/TKY200504140279.html	   1
  1362	http://www.asahi.com/housing/news/TKY200504140232.html	   1
  1363	http://www.asahi.com/housing/news/OSK200505130046.html	   1
  1364	http://www.asahi.com/housing/news/OSK200504280083.html	   1
  1365	http://www.asahi.com/housing/news/OSK200504270084.html	   1
  1366	http://www.asahi.com/housing/nationwide.html	   1
  1367	http://www.asahi.com/housing/diary/index.html	   1
  1368	http://www.asahi.com/housing/company.html	   1
  1369	http://www.asahi.com/housing/columnlist/index.html	   1
  1370	http://www.asahi.com/housing/baibai.html	   1
  1371	http://www.asahi.com/housing/amano/index.html	   1
  1372	http://www.asahi.com/housing/amano/	   1
  1373	http://www.asahi.com/health/soudan/index.html	   1
  1374	http://www.asahi.com/health/news/index.html	   1
  1375	http://www.asahi.com/health/news/cancer.html	   1
  1376	http://www.asahi.com/health/news/alz.html	   1
  1377	http://www.asahi.com/health/news/TKY200505210249.html	   1
  1378	http://www.asahi.com/health/news/TKY200505210222.html	   1
  1379	http://www.asahi.com/health/news/TKY200505200230.html	   1
  1380	http://www.asahi.com/health/news/TKY200505190168.html	   1
  1381	http://www.asahi.com/health/news/TKY200505180255.html	   1
  1382	http://www.asahi.com/health/news/TKY200505170371.html	   1
  1383	http://www.asahi.com/health/news/TKY200505170348.html	   1
  1384	http://www.asahi.com/health/news/TKY200505150205.html	   1
  1385	http://www.asahi.com/health/news/TKY200505140110.html	   1
  1386	http://www.asahi.com/health/news/TKY200503270165.html	   1
  1387	http://www.asahi.com/health/news/TKY200503270144.html	   1
  1388	http://www.asahi.com/health/news/TKY200503250253.html	   1
  1389	http://www.asahi.com/health/news/OSK200505130030.html	   1
  1390	http://www.asahi.com/health/news/OSK200505100049.html	   1
  1391	http://www.asahi.com/health/jhcolumn/	   1
  1392	http://www.asahi.com/expo2005/videog.html	   1
  1393	http://www.asahi.com/expo2005/video/toyota2.wvx	   1
  1394	http://www.asahi.com/expo2005/video/toyota2.ram	   1
  1395	http://www.asahi.com/expo2005/video/toyota1.wvx	   1
  1396	http://www.asahi.com/expo2005/video/toyota1.ram	   1
  1397	http://www.asahi.com/expo2005/video/mezame.wvx	   1
  1398	http://www.asahi.com/expo2005/video/mezame.ram	   1
  1399	http://www.asahi.com/expo2005/video/3d.wvx	   1
  1400	http://www.asahi.com/expo2005/video/3d.ram	   1
  1401	http://www.asahi.com/expo2005/specialmap.html	   1
  1402	http://www.asahi.com/expo2005/quiz.html	   1
  1403	http://www.asahi.com/expo2005/news.html	   1
  1404	http://www.asahi.com/expo2005/midokoro.html	   1
  1405	http://www.asahi.com/expo2005/mediaasahi.html	   1
  1406	http://www.asahi.com/expo2005/information.html	   1
  1407	http://www.asahi.com/expo2005/history.html	   1
  1408	http://www.asahi.com/expo2005/eventcalendar.html	   1
  1409	http://www.asahi.com/event/hana/	   1
  1410	http://www.asahi.com/english/weekly/memo/memo050521.html	   1
  1411	http://www.asahi.com/english/weekly/memo/memo050520.html	   1
  1412	http://www.asahi.com/english/weekly/memo/memo.html	   1
  1413	http://www.asahi.com/english/svn/index.html	   1
  1414	http://www.asahi.com/english/svn/TKY200505200143.html	   1
  1415	http://www.asahi.com/english/omoi/	   1
  1416	http://www.asahi.com/english/index.html	   1
  1417	http://www.asahi.com/english/hungrywords.html	   1
  1418	http://www.asahi.com/english/haiku/index.html	   1
  1419	http://www.asahi.com/english/asianet/index.html	   1
  1420	http://www.asahi.com/english/Herald-asahi/worldlist.html	   1
  1421	http://www.asahi.com/english/Herald-asahi/voxlist.html	   1
  1422	http://www.asahi.com/english/Herald-asahi/sportslist.html	   1
  1423	http://www.asahi.com/english/Herald-asahi/opinionlist.html	   1
  1424	http://www.asahi.com/english/Herald-asahi/nationlist.html	   1
  1425	http://www.asahi.com/english/Herald-asahi/lifelist.html	   1
  1426	http://www.asahi.com/english/Herald-asahi/business.html	   1
  1427	http://www.asahi.com/english/Herald-asahi/artslist.html	   1
  1428	http://www.asahi.com/english/Herald-asahi/TKY200505210203.html	   1
  1429	http://www.asahi.com/english/Herald-asahi/TKY200505210202.html	   1
  1430	http://www.asahi.com/english/Herald-asahi/TKY200505210199.html	   1
  1431	http://www.asahi.com/english/Herald-asahi/TKY200505210192.html	   1
  1432	http://www.asahi.com/english/Herald-asahi/TKY200505210189.html	   1
  1433	http://www.asahi.com/english/Herald-asahi/TKY200505210187.html	   1
  1434	http://www.asahi.com/english/Herald-asahi/TKY200505210186.html	   1
  1435	http://www.asahi.com/english/Herald-asahi/TKY200505210180.html	   1
  1436	http://www.asahi.com/english/Herald-asahi/TKY200505210179.html	   1
  1437	http://www.asahi.com/english/Herald-asahi/TKY200505210178.html	   1
  1438	http://www.asahi.com/english/Herald-asahi/TKY200505210177.html	   1
  1439	http://www.asahi.com/english/Herald-asahi/TKY200505210176.html	   1
  1440	http://www.asahi.com/english/Herald-asahi/TKY200505210175.html	   1
  1441	http://www.asahi.com/english/Herald-asahi/TKY200505210172.html	   1
  1442	http://www.asahi.com/english/Herald-asahi/TKY200505210170.html	   1
  1443	http://www.asahi.com/english/Herald-asahi/TKY200505210168.html	   1
  1444	http://www.asahi.com/english/Herald-asahi/TKY200505210166.html	   1
  1445	http://www.asahi.com/english/Herald-asahi/TKY200505210162.html	   1
  1446	http://www.asahi.com/english/Herald-asahi/TKY200505210157.html	   1
  1447	http://www.asahi.com/english/Herald-asahi/TKY200505210153.html	   1
  1448	http://www.asahi.com/english/Herald-asahi/TKY200505200155.html	   1
  1449	http://www.asahi.com/english/Herald-asahi/TKY200505200150.html	   1
  1450	http://www.asahi.com/english/Herald-asahi/TKY200505200140.html	   1
  1451	http://www.asahi.com/english/Herald-asahi/TKY200505200139.html	   1
  1452	http://www.asahi.com/english/Herald-asahi/TKY200505190079.html	   1
  1453	http://www.asahi.com/edu/news/TKY200505200141.html	   1
  1454	http://www.asahi.com/edu/news/TKY200505190243.html	   1
  1455	http://www.asahi.com/edu/news/TKY200505190239.html	   1
  1456	http://www.asahi.com/edu/news/TKY200505190214.html	   1
  1457	http://www.asahi.com/edu/news/TKY200505190165.html	   1
  1458	http://www.asahi.com/edu/news/TKY200505190132.html	   1
  1459	http://www.asahi.com/edu/news/TKY200505170336.html	   1
  1460	http://www.asahi.com/edu/news/TKY200505170272.html	   1
  1461	http://www.asahi.com/edu/news/TKY200505170271.html	   1
  1462	http://www.asahi.com/edu/news/TKY200505160312.html	   1
  1463	http://www.asahi.com/edu/news/TKY200505160179.html	   1
  1464	http://www.asahi.com/edu/news/TKY200505130254.html	   1
  1465	http://www.asahi.com/edu/news/TKY200505130212.html	   1
  1466	http://www.asahi.com/edu/news/TKY200505120089.html	   1
  1467	http://www.asahi.com/edu/news/TKY200505100215.html	   1
  1468	http://www.asahi.com/edu/news/TKY200505090120.html	   1
  1469	http://www.asahi.com/edu/news/TKY200503150240.html	   1
  1470	http://www.asahi.com/edu/news/	   1
  1471	http://www.asahi.com/dokagaku/	   1
  1472	http://www.asahi.com/digital/sj/index.html	   1
  1473	http://www.asahi.com/digital/sj/TKY200505100340.html	   1
  1474	http://www.asahi.com/digital/ranking/weekly/	   1
  1475	http://www.asahi.com/digital/ranking/monthly/index.html	   1
  1476	http://www.asahi.com/digital/ranking/monthly/	   1
  1477	http://www.asahi.com/digital/pc/index.html	   1
  1478	http://www.asahi.com/digital/pc/TKY200505180291.html	   1
  1479	http://www.asahi.com/digital/pc/TKY200505180117.html	   1
  1480	http://www.asahi.com/digital/pc/TKY200505180071.html	   1
  1481	http://www.asahi.com/digital/pc/TKY200505170352.html	   1
  1482	http://www.asahi.com/digital/pc/OSK200505180041.html	   1
  1483	http://www.asahi.com/digital/nikkanko/index.html	   1
  1484	http://www.asahi.com/digital/nikkanko/NKK200505200020.html	   1
  1485	http://www.asahi.com/digital/nikkanko/NKK200505200019.html	   1
  1486	http://www.asahi.com/digital/nikkanko/NKK200505200013.html	   1
  1487	http://www.asahi.com/digital/nikkanko/NKK200504260012.html	   1
  1488	http://www.asahi.com/digital/news.html	   1
  1489	http://www.asahi.com/digital/mobile/index.html	   1
  1490	http://www.asahi.com/digital/mobile/TKY200505200112.html	   1
  1491	http://www.asahi.com/digital/mobile/TKY200505170334.html	   1
  1492	http://www.asahi.com/digital/mobile/TKY200505170290.html	   1
  1493	http://www.asahi.com/digital/mobile/TKY200505170089.html	   1
  1494	http://www.asahi.com/digital/mobile/TKY200505160253.html	   1
  1495	http://www.asahi.com/digital/internet/index.html	   1
  1496	http://www.asahi.com/digital/internet/TKY200505200301.html	   1
  1497	http://www.asahi.com/digital/internet/TKY200505190358.html	   1
  1498	http://www.asahi.com/digital/internet/TKY200505190315.html	   1
  1499	http://www.asahi.com/digital/internet/TKY200505190285.html	   1
  1500	http://www.asahi.com/digital/internet/TKY200505190173.html	   1
  1501	http://www.asahi.com/digital/hotwired/index.html	   1
  1502	http://www.asahi.com/digital/hotwired/TKY200505200266.html	   1
  1503	http://www.asahi.com/digital/hotwired/TKY200505200265.html	   1
  1504	http://www.asahi.com/digital/hotwired/TKY200505200264.html	   1
  1505	http://www.asahi.com/digital/hotwired/TKY200505200263.html	   1
  1506	http://www.asahi.com/digital/column01/index.html	   1
  1507	http://www.asahi.com/digital/bcnnews/index.html	   1
  1508	http://www.asahi.com/digital/bcnnews/BCN200505200013.html	   1
  1509	http://www.asahi.com/digital/bcnnews/BCN200505200011.html	   1
  1510	http://www.asahi.com/digital/bcnnews/BCN200505200010.html	   1
  1511	http://www.asahi.com/digital/bcnnews/BCN200503140011.html	   1
  1512	http://www.asahi.com/digital/av/TKY200505210120.html	   1
  1513	http://www.asahi.com/digital/av/TKY200505200312.html	   1
  1514	http://www.asahi.com/digital/av/TKY200505200299.html	   1
  1515	http://www.asahi.com/digital/av/TKY200505190291.html	   1
  1516	http://www.asahi.com/digital/av/TKY200505180117.html	   1
  1517	http://www.asahi.com/digital/av/TKY200505170147.html	   1
  1518	http://www.asahi.com/digital/av/TKY200505130135.html	   1
  1519	http://www.asahi.com/digital/apc/index.html	   1
  1520	http://www.asahi.com/digital/apc/TKY200505190150.html	   1
  1521	http://www.asahi.com/culture/update/0520/	   1
  1522	http://www.asahi.com/culture/update/0518/018.html	   1
  1523	http://www.asahi.com/culture/update/0518/017.html	   1
  1524	http://www.asahi.com/culture/update/0518/012.html	   1
  1525	http://www.asahi.com/culture/update/0518/011.html	   1
  1526	http://www.asahi.com/culture/update/0518/001.html	   1
  1527	http://www.asahi.com/culture/update/0517/016.html	   1
  1528	http://www.asahi.com/culture/update/0517/015.html	   1
  1529	http://www.asahi.com/culture/update/0517/014.html	   1
  1530	http://www.asahi.com/culture/update/0516/017.html	   1
  1531	http://www.asahi.com/culture/update/0516/016.html	   1
  1532	http://www.asahi.com/culture/update/0516/001.html	   1
  1533	http://www.asahi.com/culture/update/0515/011.html	   1
  1534	http://www.asahi.com/culture/update/0515/010.html	   1
  1535	http://www.asahi.com/culture/update/0515/009.html	   1
  1536	http://www.asahi.com/culture/update/0514/013.html	   1
  1537	http://www.asahi.com/culture/update/0514/010.html	   1
  1538	http://www.asahi.com/culture/update/0514/009.html	   1
  1539	http://www.asahi.com/culture/update/0514/008.html	   1
  1540	http://www.asahi.com/culture/music/index.html	   1
  1541	http://www.asahi.com/culture/music/TKY200505160212.html	   1
  1542	http://www.asahi.com/culture/music/TKY200505060104.html	   1
  1543	http://www.asahi.com/culture/music/TKY200504150207.html	   1
  1544	http://www.asahi.com/culture/music/TKY200504140185.html	   1
  1545	http://www.asahi.com/culture/music/TKY200504140184.html	   1
  1546	http://www.asahi.com/culture/music/TKY200504110167.html	   1
  1547	http://www.asahi.com/culture/music/TKY200504070269.html	   1
  1548	http://www.asahi.com/culture/music/TKY200504020231.html	   1
  1549	http://www.asahi.com/culture/music/TKY200503290251.html	   1
  1550	http://www.asahi.com/culture/music/TKY200503260102.html	   1
  1551	http://www.asahi.com/culture/music/TKY200503240210.html	   1
  1552	http://www.asahi.com/culture/music/JJT200504290001.html	   1
  1553	http://www.asahi.com/culture/fashion/index.html	   1
  1554	http://www.asahi.com/culture/fashion/TKY200505180142.html	   1
  1555	http://www.asahi.com/culture/fashion/TKY200505130201.html	   1
  1556	http://www.asahi.com/culture/enews/index.html	   1
  1557	http://www.asahi.com/culture/enews/RTR200505200026.html	   1
  1558	http://www.asahi.com/culture/enews/RTR200505200022.html	   1
  1559	http://www.asahi.com/culture/enews/RTR200505190029.html	   1
  1560	http://www.asahi.com/culture/enews/RTR200505190028.html	   1
  1561	http://www.asahi.com/culture/enews/RTR200505190023.html	   1
  1562	http://www.asahi.com/culture/enews/RTR200505190021.html	   1
  1563	http://www.asahi.com/culture/enews/RTR200505180026.html	   1
  1564	http://www.asahi.com/culture/enews/RTR200505180025.html	   1
  1565	http://www.asahi.com/culture/enews/RTR200505180022.html	   1
  1566	http://www.asahi.com/culture/enews/RTR200505170030.html	   1
  1567	http://www.asahi.com/culture/enews/RTR200505170028.html	   1
  1568	http://www.asahi.com/culture/enews/RTR200505170024.html	   1
  1569	http://www.asahi.com/culture/enews/RTR200505170023.html	   1
  1570	http://www.asahi.com/culture/enews/RTR200505170021.html	   1
  1571	http://www.asahi.com/culture/enews/RTR200505170020.html	   1
  1572	http://www.asahi.com/culture/enews/RTR200505160029.html	   1
  1573	http://www.asahi.com/culture/enews/RTR200505160027.html	   1
  1574	http://www.asahi.com/culture/enews/RTR200505160023.html	   1
  1575	http://www.asahi.com/culture/enews/RTR200505160021.html	   1
  1576	http://www.asahi.com/culture/enews/RTR200505160018.html	   1
  1577	http://www.asahi.com/culture/enews/RTR200505160017.html	   1
  1578	http://www.asahi.com/culture/enews/RTR200505150001.html	   1
  1579	http://www.asahi.com/culture/enews/RTR200505140016.html	   1
  1580	http://www.asahi.com/culture/enews/RTR200505140015.html	   1
  1581	http://www.asahi.com/column/bluesea/index.html	   1
  1582	http://www.asahi.com/column/bluesea/TKY200505160151.html	   1
  1583	http://www.asahi.com/car/window2	   1
  1584	http://www.asahi.com/car/video/	   1
  1585	http://www.asahi.com/car/tokyo2004/	   1
  1586	http://www.asahi.com/car/special/	   1
  1587	http://www.asahi.com/car/resizable=1,scrollbars=0,menubar=0,directories=0,status=0,location=0,width=400,height=300	   1
  1588	http://www.asahi.com/car/news/index.html	   1
  1589	http://www.asahi.com/car/news/TKY200505200269.html	   1
  1590	http://www.asahi.com/car/news/TKY200505180298.html	   1
  1591	http://www.asahi.com/car/news/TKY200505170377.html	   1
  1592	http://www.asahi.com/car/news/OSK200505170064.html	   1
  1593	http://www.asahi.com/car/news/NGY200505160006.html	   1
  1594	http://www.asahi.com/car/news/	   1
  1595	http://www.asahi.com/car/newcarbywebcg/index.html	   1
  1596	http://www.asahi.com/car/newcarbywebcg/TKY200505160246.html	   1
  1597	http://www.asahi.com/car/newcarbywebcg/TKY200504130136.html	   1
  1598	http://www.asahi.com/car/newcarbywebcg/TKY200504080245.html	   1
  1599	http://www.asahi.com/car/newcarbywebcg/	   1
  1600	http://www.asahi.com/car/newcar/TKY200505190129.html	   1
  1601	http://www.asahi.com/car/newcar/TKY200505190128.html	   1
  1602	http://www.asahi.com/car/newcar/TKY200505180137.html	   1
  1603	http://www.asahi.com/car/newcar/TKY200505180130.html	   1
  1604	http://www.asahi.com/car/newcar/	   1
  1605	http://www.asahi.com/car/nambo/gw_0.html	   1
  1606	http://www.asahi.com/car/nambo/	   1
  1607	http://www.asahi.com/car/mycar/mycar184.html	   1
  1608	http://www.asahi.com/car/mycar/	   1
  1609	http://www.asahi.com/car/motorsports/index.html	   1
  1610	http://www.asahi.com/car/motorsports/TKY200505210263.html	   1
  1611	http://www.asahi.com/car/motorsports/TKY200505160210.html	   1
  1612	http://www.asahi.com/car/motorsports/TKY200505160203.html	   1
  1613	http://www.asahi.com/car/motorsports/TKY200505150164.html	   1
  1614	http://www.asahi.com/car/motorsports/OTH200505170001.html	   1
  1615	http://www.asahi.com/car/motorsports/	   1
  1616	http://www.asahi.com/car/moto/setumei.html	   1
  1617	http://www.asahi.com/car/moto/	   1
  1618	http://www.asahi.com/car/italycolumn/index.html	   1
  1619	http://www.asahi.com/car/italycolumn/	   1
  1620	http://www.asahi.com/car/index.html	   1
  1621	http://www.asahi.com/car/cg/	   1
  1622	http://www.asahi.com/business/update/0521/002.html	   1
  1623	http://www.asahi.com/business/update/0520/108.html	   1
  1624	http://www.asahi.com/business/update/0520/106.html	   1
  1625	http://www.asahi.com/business/update/0520/105.html	   1
  1626	http://www.asahi.com/business/update/0520/102.html	   1
  1627	http://www.asahi.com/business/update/0520/096.html	   1
  1628	http://www.asahi.com/business/update/0520/095.html	   1
  1629	http://www.asahi.com/business/update/0520/077.html	   1
  1630	http://www.asahi.com/business/update/0520/072.html	   1
  1631	http://www.asahi.com/business/update/0520/067.html	   1
  1632	http://www.asahi.com/business/update/0520/038.html	   1
  1633	http://www.asahi.com/business/update/0520/037.html	   1
  1634	http://www.asahi.com/business/update/0520/001.html	   1
  1635	http://www.asahi.com/business/update/0519/111.html	   1
  1636	http://www.asahi.com/business/update/0519/110.html	   1
  1637	http://www.asahi.com/business/update/0519/108.html	   1
  1638	http://www.asahi.com/business/update/0519/104.html	   1
  1639	http://www.asahi.com/business/update/0519/103.html	   1
  1640	http://www.asahi.com/business/update/0519/085.html	   1
  1641	http://www.asahi.com/business/update/0519/082.html	   1
  1642	http://www.asahi.com/business/update/0519/074.html	   1
  1643	http://www.asahi.com/business/update/0519/073.html	   1
  1644	http://www.asahi.com/business/update/0519/055.html	   1
  1645	http://www.asahi.com/business/update/0519/037.html	   1
  1646	http://www.asahi.com/business/update/0516/099.html	   1
  1647	http://www.asahi.com/business/toyo/market/TKZ200505200012.html	   1
  1648	http://www.asahi.com/business/toyo/market/TKZ200505200009.html	   1
  1649	http://www.asahi.com/business/toyo/kabuto/TKZ200505200011.html	   1
  1650	http://www.asahi.com/business/toyo/kabuto/TKZ200505200010.html	   1
  1651	http://www.asahi.com/business/toyo/kabuto/TKZ200505200006.html	   1
  1652	http://www.asahi.com/business/topics/TKY200505210121.html	   1
  1653	http://www.asahi.com/business/today_shikyo/TKY200505200202.html	   1
  1654	http://www.asahi.com/business/today_eye/TKY200505200252.html	   1
  1655	http://www.asahi.com/business/reuters/RTR200505210009.html	   1
  1656	http://www.asahi.com/business/reuters/RTR200505210008.html	   1
  1657	http://www.asahi.com/business/reuters/RTR200505210007.html	   1
  1658	http://www.asahi.com/business/reuters/RTR200505210005.html	   1
  1659	http://www.asahi.com/business/reuters/RTR200505210004.html	   1
  1660	http://www.asahi.com/business/products/TKY200505210154.html	   1
  1661	http://www.asahi.com/business/pressrelease/050512.html	   1
  1662	http://www.asahi.com/business/pressrelease/050314.html	   1
  1663	http://www.asahi.com/business/fund/shisan/TKY200505070134.html	   1
  1664	http://www.asahi.com/business/fund/shisan/TKY200504020190.html	   1
  1665	http://www.asahi.com/business/fund/shisan/TKY200503050194.html	   1
  1666	http://www.asahi.com/business/fund/return/TKY200504230181.html	   1
  1667	http://www.asahi.com/business/fund/return/TKY200503260157.html	   1
  1668	http://www.asahi.com/business/fund/return/TKY200502260200.html	   1
  1669	http://www.asahi.com/business/fund/rating/TKY200504160126.html	   1
  1670	http://www.asahi.com/business/fund/rating/TKY200503190172.html	   1
  1671	http://www.asahi.com/business/fund/rating/	   1
  1672	http://www.asahi.com/business/fund/ranking/TKY200504090164.html	   1
  1673	http://www.asahi.com/business/fund/ranking/TKY200503120121.html	   1
  1674	http://www.asahi.com/business/fund/ranking/TKY200502120144.html	   1
  1675	http://www.asahi.com/business/fund/news/TKY200505160124.html	   1
  1676	http://www.asahi.com/business/fund/news/TKY200505020090.html	   1
  1677	http://www.asahi.com/business/fund/news/TKY200504250087.html	   1
  1678	http://www.asahi.com/business/fund/	   1
  1679	http://www.asahi.com/business/aera/TKY200505170152.html	   1
  1680	http://www.asahi.com/berlin/mgallery/TKY200505190137.html	   1
  1681	http://www.asahi.com/berlin/mgallery/TKY200505180151.html	   1
  1682	http://www.asahi.com/berlin/mgallery/TKY200505170165.html	   1
  1683	http://www.asahi.com/berlin/mgallery/TKY200505170164.html	   1
  1684	http://www.asahi.com/berlin/mgallery/TKY200505130235.html	   1
  1685	http://www.asahi.com/berlin/mgallery/TKY200505130165.html	   1
  1686	http://www.asahi.com/berlin/mgallery/TKY200505120146.html	   1
  1687	http://www.asahi.com/berlin/mgallery/TKY200505110224.html	   1
  1688	http://www.asahi.com/berlin/mgallery/TKY200505100233.html	   1
  1689	http://www.asahi.com/berlin/mgallery/TKY200505090174.html	   1
  1690	http://www.asahi.com/berlin/mgallery/TKY200505070192.html	   1
  1691	http://www.asahi.com/berlin/mgallery/TKY200505060051.html	   1
  1692	http://www.asahi.com/berlin/mgallery/TKY200505050128.html	   1
  1693	http://www.asahi.com/berlin/mgallery/TKY200505040135.html	   1
  1694	http://www.asahi.com/berlin/mgallery/TKY200505030146.html	   1
  1695	http://www.asahi.com/berlin/mgallery/TKY200505020178.html	   1
  1696	http://www.asahi.com/berlin/mgallery/	   1
  1697	http://www.asahi.com/berlin/index.html	   1
  1698	http://www.asahi.com/advertising/info/english/index_english.html	   1
  1699	http://www.asahi.com/advertising/ad_index.html	   1
  1700	http://www.asahi.com/ad/clients/waseda/teacher/index.html	   1
  1701	http://www.asahi.com/ad/clients/waseda/student/index.html	   1
  1702	http://www.asahi.com/ad/clients/waseda/sports/index.html	   1
  1703	http://www.asahi.com/ad/clients/waseda/resercher/index.html	   1
  1704	http://www.asahi.com/ad/clients/waseda/opinion/index.html	   1
  1705	http://www.asahi.com/ad/clients/waseda/opinion/	   1
  1706	http://www.asahi.com/ad/clients/waseda/ob/index.html	   1
  1707	http://www.asahi.com/ad/clients/waseda/campusnow/index.html	   1
  1708	http://www.asahi.com/ad/clients/tsushin2005/waseda.html	   1
  1709	http://www.asahi.com/ad/clients/tsushin2005/voice.html	   1
  1710	http://www.asahi.com/ad/clients/tsushin2005/toyo.html	   1
  1711	http://www.asahi.com/ad/clients/tsushin2005/sikaku.html	   1
  1712	http://www.asahi.com/ad/clients/tsushin2005/schedule.html	   1
  1713	http://www.asahi.com/ad/clients/tsushin2005/nara.html	   1
  1714	http://www.asahi.com/ad/clients/tsushin2005/musabi.html	   1
  1715	http://www.asahi.com/ad/clients/tsushin2005/kyotozokei.html	   1
  1716	http://www.asahi.com/ad/clients/tsushin2005/keio.html	   1
  1717	http://www.asahi.com/ad/clients/tsushin2005/form.html	   1
  1718	http://www.asahi.com/ad/clients/tsushin2005/about.html	   1
  1719	http://www.asahi.com/ad/clients/search/ninchi/index.html	   1
  1720	http://www.asahi.com/ad/clients/ninchisho/index02.html	   1
  1721	http://www.asahi.com/ad/clients/ninchisho/index.html	   1
  1722	http://www.asahi.com/ad/clients/minatomirai/vol03.html	   1
  1723	http://www.asahi.com/ad/clients/minatomirai/keyword03_04.html	   1
  1724	http://www.asahi.com/ad/clients/minatomirai/keyword.html	   1
  1725	http://www.asahi.com/ad/clients/mansionnavi/pop.html	   1
  1726	http://www.asahi.com/ad/clients/mansionnavi/map.html	   1
  1727	http://www.asahi.com/ad/clients/mansionnavi/column24.html	   1
  1728	http://www.asahi.com/ad/clients/lufthansa/service.html	   1
  1729	http://www.asahi.com/ad/clients/atom/world_index.html	   1
  1730	http://www.asahi.com/ad/clients/atom/tezuka_index.html	   1
  1731	http://www.asahi.com/ad/clients/atom/news.html	   1
  1732	http://www.asahi.com/ad/clients/atom/index.html	   1
  1733	http://www.asahi.com/ad/clients/atom/hommage_01.html	   1
  1734	http://www.asahi.com/ad/clients/atom/adspecial/index.html	   1

■発生頻度を度数分で求めてみる(集計するレンジを2にした場合)

# $Id: CrossReferenceContainer.html,v 1.1 2009/06/22 16:11:41 kishi Exp kishi $
# 度数分布を得る

BEGIN{
    pitch = 2;
    max = 0;
}
{
    if ( / ^ $ / ) {
        continue;
    }
    linkCount = $2;

    key = int( linkCount / pitch );
### print key;

    COUNT[ key ] ++;

    if ( key > max ) {
        max = key;
    }
}
END{
    printf("\n");

    for ( i = 0;i <= max;i++ ) {
    printf( "%2d: %3d\n", i, COUNT[ i ] );
    }
}

$ java CrossReferenceContainer 2005-05-21.tsv | awk -f FrequencyDistribution.awk

 0: 868
 1: 505
 2:  79
 3:  38
 4:  70
 5:  34
 6:   5
 7:  23
 8:  11
 9:  24
10:   2
11:   1
12:   0
13:   0
14:   0
15:   0
16:   0
17:   0
18:   0
19:   0
20:   0
21:   0
22:   0
23:   0
24:   0
25:   0
26:   5
27:  10
28:   2
29:   0
30:   1
31:   1
32:   0
33:   1
34:   0
35:   0
36:   0
37:   0
38:   0
39:   0
40:   0
41:   0
42:   0
43:   2
44:   2
45:   1
46:   1
47:  10
48:   0
49:   0
50:   0
51:   0
52:   0
53:   0
54:   0
55:   0
56:   0
57:   2
58:   1
59:   1
60:   1
61:   0
62:   0
63:   1
64:  13
65:   4
66:  11
67:   3
68:   2

戻る inserted by FC2 system