<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>You Look Too Cool &#187; JSON</title>
	<atom:link href="http://stabucky.com/wp/archives/tag/json/feed" rel="self" type="application/rss+xml" />
	<link>http://stabucky.com/wp</link>
	<description>ゆるくつくる - stabuckyのブログ。</description>
	<lastBuildDate>Thu, 09 Feb 2012 22:24:25 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Bing APIを使う</title>
		<link>http://stabucky.com/wp/archives/3493</link>
		<comments>http://stabucky.com/wp/archives/3493#comments</comments>
		<pubDate>Fri, 18 Nov 2011 22:49:45 +0000</pubDate>
		<dc:creator>stabucky</dc:creator>
				<category><![CDATA[マイクロソフト]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[JSON]]></category>

		<guid isPermaLink="false">http://stabucky.com/wp/?p=3493</guid>
		<description><![CDATA[BingもGoogleやYahoo!と同様にAPIがあります。 IDを取得すれば、簡単に使うことができます。 使い方は次の通りです。 IDの取得 まず自分のIDを取得しておきます。 開発者 &#8211; Bing ウェブ検索 次のようなURLを与えます。 http://api.search.live.net/json.aspx?Appid={ID}&#038;sources=web&#038;query={検索語} すると次のようなデータ(JSON形式)が得られます。 実際は改行がなく見づらいので適当に改行を入れてあります。 {&#34;SearchResponse&#34;:{ &#160; &#34;Version&#34;:&#34;2.2&#34;, &#160; &#34;Query&#34;:{ &#160; &#160; &#34;SearchTerms&#34;:&#34;検索語&#34;}, &#160; &#34;Web&#34;:{ &#160; &#160; &#34;Total&#34;:101000000, &#160; &#160; &#34;Offset&#34;:0, &#160; &#160; &#34;Results&#34;:[{ &#160; &#160; &#160; &#34;Title&#34;:&#34;ページのタイトル&#34;, &#160; &#160; &#160; &#34;Description&#34;:&#34;ページの内容&#34;, &#160; &#160; &#160; &#34;Url&#34;:&#34;http:\/\/www.***.com\/&#34;, &#160; &#160; &#160; &#34;CacheUrl&#34;:&#34;http:\/\/cc.bingj.com\/cache.aspx?q=***&#34;, &#160; &#160; &#160; &#34;DisplayUrl&#34;:&#34;www.***.com&#34;, &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://stabucky.com/wp/archives/3493/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WikipediaAPIを使ってみる</title>
		<link>http://stabucky.com/wp/archives/3108</link>
		<comments>http://stabucky.com/wp/archives/3108#comments</comments>
		<pubDate>Tue, 09 Aug 2011 11:13:28 +0000</pubDate>
		<dc:creator>stabucky</dc:creator>
				<category><![CDATA[デジタル]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[ウィキペディア]]></category>

		<guid isPermaLink="false">http://stabucky.com/wp/?p=3108</guid>
		<description><![CDATA[今、GoogleやYahoo!のAPIについて調べているのですが、その中でウィキペディアの検索結果を取得できるAPIがあることを知りました。 WikipediaAPI &#8211; ウィキペディア情報をサイトで利用できるAPI 5年も前からあるのですね。 どんな動きをするのか、サンプルを作って確認してみました。jQueryを使っています。 HTML &#60;input type=&#34;text&#34; id=&#34;word&#34;&#62; &#60;input type=&#34;button&#34; id=&#34;sbtn&#34; value=&#34;search&#34;&#62; &#60;div id=&#34;mydiv&#34;&#62;&#60;/div&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js&#34;&#62;&#60;/script&#62; &#60;script&#62; //ここにコード &#60;/script&#62; コード $&#40;&#34;#sbtn&#34;&#41;.click&#40;function &#40;&#41; &#123; &#160; &#160; $&#40;&#34;#mydiv&#34;&#41;.empty&#40;&#41;; &#160; &#160; var url = &#34;http://wikipedia.simpleapi.net/api?output=json&#38;keyword=&#34;; &#160; &#160; url += encodeURI&#40;$&#40;&#34;#word&#34;&#41;.val&#40;&#41;&#41;; &#160; &#160; $.getJSON&#40;url, null, function &#40;data, status&#41; &#123; &#160; &#160; &#160; &#160; for &#40;var i [...]]]></description>
		<wfw:commentRss>http://stabucky.com/wp/archives/3108/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JSONの\uXXXXをデコード</title>
		<link>http://stabucky.com/wp/archives/2650</link>
		<comments>http://stabucky.com/wp/archives/2650#comments</comments>
		<pubDate>Sat, 16 Apr 2011 09:05:42 +0000</pubDate>
		<dc:creator>stabucky</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JSON]]></category>

		<guid isPermaLink="false">http://stabucky.com/wp/?p=2650</guid>
		<description><![CDATA[TwitterAPIなどを使い、JSON形式でデータを取得した場合、文字列が次のようになっている場合があります。 \u4eca\u671d\u306f 初めて見ると「文字化けか」と思ってしまうかもしれませんが、これはJSONのルール通りなんだそうです。 この「\uXXXX」形式は「Unicode文字エスケープシーケンス」、「unicode escape sequence」などと呼ぶそうです。 2.4.1 Unicode 文字エスケープ シーケンス (C#) Unicodeにおける文字番号を4桁の16進数に置き換えて、頭に「\u」を付けます。 これをJavaScriptを使って人間が読める形にする方法(デコード)を調べました。 単純な方法 簡単なのは次のようにJavaScriptでページに書く方法です。 document.write&#40;&#34;\u4eca\u671d\u306f&#34;&#41;; これで次のように表示されます。 今朝は 関数を使う方法 「json_str_decode」という関数を作ってみました。 このケースでは「\」が(JavaScriptの)エスケープシーケンスに該当してしまうので「\\」のようにしないと正しく認識しません。 document.write&#40;json_str_decode&#40;&#34;\\u4eca\\u671d\\u306f&#34;&#41;&#41;; function json_str_decode&#40;str&#41;&#123; &#160; &#160; arrs=str.match&#40;/\\u.{4}/g&#41;; &#160; &#160; var t=&#34;&#34;; &#160; &#160; for&#40;i=0;i&#60;arrs.length;i++&#41;&#123; &#160; &#160; &#160; &#160; t+=String.fromCharCode&#40;arrs&#91;i&#93;.replace&#40;&#34;\\u&#34;,&#34;0x&#34;&#41;&#41;; &#160; &#160; &#125; &#160; &#160; return&#40;t&#41;; &#125; 次のようにテキストエリアなどに貼り付けて使う場合には「\\」とする必要がありません。 &#60;textarea id=&#34;ta&#34;&#62;\u4eca\u671d\u306f&#60;/textarea&#62; &#60;div id=&#34;mydiv&#34;&#62;&#60;/div&#62; var a=document.getElementById&#40;&#34;ta&#34;&#41;.value; document.write&#40;json_str_decode&#40;a&#41;&#41;;]]></description>
		<wfw:commentRss>http://stabucky.com/wp/archives/2650/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter APIを使い、JSON形式でツイートを取得</title>
		<link>http://stabucky.com/wp/archives/2645</link>
		<comments>http://stabucky.com/wp/archives/2645#comments</comments>
		<pubDate>Thu, 14 Apr 2011 15:32:19 +0000</pubDate>
		<dc:creator>stabucky</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[TwitterAPI]]></category>

		<guid isPermaLink="false">http://stabucky.com/wp/?p=2645</guid>
		<description><![CDATA[Twitter APIについて調べたので、メモ的に書いておきます。 URLとして「http://api.twitter.com/1/statuses/user_timeline/stabucky.json?count=1」を指定すると次のようにJSON形式で戻ってきます。 つまり直近1回分のツイートの内容を示しています。 ［&#123; &#160; &#160; &#34;favorited&#34;: false, &#160; &#160; &#34;text&#34;: &#34;\u300c\u6c17\u4ed9&#34;, &#160; &#160; &#34;retweet_count&#34;: 0, &#160; &#160; &#34;coordinates&#34;: null, &#160; &#160; &#34;in_reply_to_screen_name&#34;: null, &#160; &#160; &#34;in_reply_to_status_id_str&#34;: null, &#160; &#160; &#34;place&#34;: null, &#160; &#160; &#34;in_reply_to_status_id&#34;: null, &#160; &#160; &#34;contributors&#34;: null, &#160; &#160; &#34;geo&#34;: null, &#160; &#160; &#34;retweeted&#34;: false, &#160; &#160; &#34;source&#34;: &#123;アプリケーション&#125;, &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://stabucky.com/wp/archives/2645/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHPでGoogle Image Search APIを使う</title>
		<link>http://stabucky.com/wp/archives/2613</link>
		<comments>http://stabucky.com/wp/archives/2613#comments</comments>
		<pubDate>Tue, 05 Apr 2011 13:23:12 +0000</pubDate>
		<dc:creator>stabucky</dc:creator>
				<category><![CDATA[デジタル]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://stabucky.com/wp/?p=2613</guid>
		<description><![CDATA[自分のウェブサイトにキーワードに関連した画像を貼り付けたいと思います。 Googleのイメージ検索(Google Image Search API)を使い、PHPで取得する方法を使います。 API Keyの取得 APIを使うには自分自身のKeyを取得する必要があります。 ここでは関係ないですが、このKeyは他の検索でも同じものを使うことができます。 Sign-up for an API Key &#8211; Google Loader &#8211; Google Code URL 検索のためのURLを与えるとJSON形式で検索結果が戻ってきます。 基本的なURLは次の通りです。 vはバージョンです。今のところ1.0だそうです。 keyには自分のAPI Keyをセットします。 qには検索語をセットします。日本語のときはURLエンコードする必要があります。また「hl=ja」を付けるとよいでしょう。 具体的な使い方は後述します。 https://ajax.googleapis.com/ajax/services/search/images v=1.0 key={API Key} q={検索語} 詳細は次の部分に書かれています。 JSON Developer&#8217;s Guide JSON 検索結果はJSON形式で得られます。 PHP5ではJSON形式のデータが簡単に扱えるようになりました。 $arrs=json_decode&#40;JSON形式の文字列, TRUE&#41;; これだけでJSON形式の文字列を連想配列に取り込むことができます。 ポイントは第2引数です。指定しないとオブジェクト形式になります。「TRUE」を指定すると連想配列になります。 私は連想配列の方が使いやすいので「TRUE」を指定します。 詳しくはYou Look Too Cool » PHPでJSONを使うを参考にしてください。 サンプル $json=&#34;[{&#34;id&#34;:&#34;1&#34;,&#34;name&#34;:&#34;taro&#34;},{&#34;id&#34;:&#34;2&#34;,&#34;name&#34;:&#34;jiro&#34;}]&#34;; $arrs=json_decode&#40;$json, TRUE&#41;; [...]]]></description>
		<wfw:commentRss>http://stabucky.com/wp/archives/2613/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHPでJSONを使う</title>
		<link>http://stabucky.com/wp/archives/2611</link>
		<comments>http://stabucky.com/wp/archives/2611#comments</comments>
		<pubDate>Tue, 05 Apr 2011 10:18:51 +0000</pubDate>
		<dc:creator>stabucky</dc:creator>
				<category><![CDATA[デジタル]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[配列]]></category>

		<guid isPermaLink="false">http://stabucky.com/wp/?p=2611</guid>
		<description><![CDATA[PHPでJSONを使う場合について、まとめます。 前提 前提は次の通りとします。 太郎と次郎がいて、それぞれidとnameを持っています。 次郎には子供がいて(春子、夏子)、それぞれnameを持っています。 太郎 次郎 id 1 2 name taro jiro child なし 春子 夏子 name haruko natsuko 一つずつ代入 これを$personsという変数に代入するときは次の通りです。 $persons&#91;0&#93;&#91;&#34;id&#34;&#93; = &#34;1&#34;; $persons&#91;0&#93;&#91;&#34;name&#34;&#93; = &#34;taro&#34;; $persons&#91;1&#93;&#91;&#34;id&#34;&#93; = &#34;2&#34;; $persons&#91;1&#93;&#91;&#34;name&#34;&#93; = &#34;jiro&#34;; $persons&#91;1&#93;&#91;&#34;child&#34;&#93;&#91;0&#93;&#91;&#34;name&#34;&#93; = &#34;haruko&#34;; $persons&#91;1&#93;&#91;&#34;child&#34;&#93;&#91;1&#93;&#91;&#34;name&#34;&#93; = &#34;natsuko&#34;; arrayを使う arrayを使う場合は次の通りです。 カンマで区切って引数にセットすると配列になります。 「=>」を使うと連想配列になります。 $persons=array&#40; &#160; &#160; array&#40; &#160; &#160; &#160; &#160; &#34;id&#34; =&#62; &#34;1&#34;, [...]]]></description>
		<wfw:commentRss>http://stabucky.com/wp/archives/2611/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>「東京電力の電気使用状況 API」を使う</title>
		<link>http://stabucky.com/wp/archives/2522</link>
		<comments>http://stabucky.com/wp/archives/2522#comments</comments>
		<pubDate>Sat, 26 Mar 2011 00:27:51 +0000</pubDate>
		<dc:creator>stabucky</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[東京電力]]></category>

		<guid isPermaLink="false">http://stabucky.com/wp/?p=2522</guid>
		<description><![CDATA[東京電力から電力の使用状況が公開されましたが、これをJSON形式で扱えるAPIを公開しているサイトがありました。 東京電力の電気使用状況 API これを試してみます。 JSON形式なのでJavaScriptで簡単に使うことができます。 データ例は次の通りです。 {&#34;hours&#34;:[2990,2850,2770,2710,2700,2830,3100,3350],&#34;capability&#34;:3850,&#34;updated&#34;:&#34;2011-03-25 08:05:00&#34;} hoursは午前0時から1時間毎の電力です。現時点までの情報が配列で得られます。単位は万キロワット。 capabilityは電力の最高限度です。 updatedは更新時刻です。 サンプル サンプルは次の通りです。 なおJavaScriptの部分についてはjQueryを使っています。 HTML &#60;html&#62; &#60;body&#62; &#60;div id=&#34;main&#34;&#62;&#60;/main&#62; &#60;/body&#62; &#60;/html&#62; JavaScript var td = new Date&#40;&#41;; var ymd = td.getFullYear&#40;&#41; * 10000 + &#40;td.getMonth&#40;&#41; + 1&#41; * 100 + td.getDate&#40;&#41;; $.getJSON&#40;&#34;http://denki.cuppat.net/data/&#34; + ymd + &#34;.json&#34;, function&#40;json&#41;&#123; &#160; &#160; $&#40;&#34;#main&#34;&#41;.append&#40;&#34;&#60;p&#62;&#34; + td.getDate&#40;&#41; + &#34;日&#60;/p&#62;&#34;&#41;; &#160; [...]]]></description>
		<wfw:commentRss>http://stabucky.com/wp/archives/2522/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>はてなハイクとTwitterのAPIの違い</title>
		<link>http://stabucky.com/wp/archives/636</link>
		<comments>http://stabucky.com/wp/archives/636#comments</comments>
		<pubDate>Sat, 21 Feb 2009 02:21:10 +0000</pubDate>
		<dc:creator>stabucky</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[はてな]]></category>

		<guid isPermaLink="false">http://stabucky.com/wp/?p=636</guid>
		<description><![CDATA[はてなハイクのAPIはTwitterと互換性があるとのこと。 私はJavaScriptではてなハイクとTwitterの過去の投稿を抽出しているのですが、確かに同じコードで動きます。 しかし若干、異なる点があるので、書いておきます。 URL はてなハイクの場合 http://h.hatena.ne.jp/api/statuses/user_timeline/stabucky.json Twitterの場合 http://twitter.com/statuses/user_timeline/stabucky.json ユーザーIDを指定して記事をJSON形式で取得する場合のURLです。 当然、最初は違いますが、途中からは同じ。 日時 はてなハイクの場合 「2009-02-20T22:57:59Z」 Twitterの場合 「Fri Feb 20 22:57:59 +0000 2009」 「2009年2月20日 22:57:59」が上のように表記されます。両方とも標準時ですので、日本時間だと「2009年2月21日 7:57:59」です。 JSON形式で取得する場合の添え字は「created_at」。 JavaScriptで変換するならば次のようなコード。 function hatenadate&#40;td&#41; &#123; &#160; &#160; re=/^(....)-(..)-(..)T(..:..:..)Z$/; &#160; &#160; pat=&#34;$2/$3/$1 $4 UTC+0000&#34; &#160; &#160; rep=new Date&#40;td.replace&#40;re,pat&#41;&#41;; &#160; &#160; return&#40;rep.toLocaleString&#40;&#41;&#41;; &#125; function twitterdate&#40;td&#41;&#123; &#160; &#160; re=/^(.+) (.+) (..) (..:..:..) (.+) (.+)$/; &#160; [...]]]></description>
		<wfw:commentRss>http://stabucky.com/wp/archives/636/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBAでExcelの表をJSON形式に変換する</title>
		<link>http://stabucky.com/wp/archives/587</link>
		<comments>http://stabucky.com/wp/archives/587#comments</comments>
		<pubDate>Fri, 06 Feb 2009 14:41:41 +0000</pubDate>
		<dc:creator>stabucky</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[メモ]]></category>

		<guid isPermaLink="false">http://stabucky.com/wp/?p=587</guid>
		<description><![CDATA[Excelの次のような表をJSON形式にするVBAです。 id name date 1 a1 20081010 2 a2 20081011 3 a3 20081012 4 a4 20081013 5 a5 20081014 6 a6 20081015 7 a7 20081016 8 a8 20081017 9 a9 20081018 10 a10 20081019 新しいシートを開き、そこにJSON形式のテキストを出力します。 Sub 表をJSON形式にする() &#160; &#160; Dim arr(1000) &#160; &#160; Dim gyo, retsu, gyosu, cnt As Long &#160; &#160; Dim lin, temp [...]]]></description>
		<wfw:commentRss>http://stabucky.com/wp/archives/587/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JSONに関するメモ</title>
		<link>http://stabucky.com/wp/archives/584</link>
		<comments>http://stabucky.com/wp/archives/584#comments</comments>
		<pubDate>Fri, 06 Feb 2009 14:22:45 +0000</pubDate>
		<dc:creator>stabucky</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[メモ]]></category>

		<guid isPermaLink="false">http://stabucky.com/wp/?p=584</guid>
		<description><![CDATA[JSON形式のデータは次のような文字列で表される。 &#91;&#123;&#34;id&#34;:&#34;1&#34;,&#34;name&#34;:&#34;suzuki&#34;&#125;,&#123;&#34;id&#34;:&#34;2&#34;,&#34;name&#34;:&#34;satou&#34;&#125;&#93; JavaScriptではそのまま配列変数として使える。 ※この場合は2次元の配列となる。 var recs=&#91;&#123;&#34;id&#34;:&#34;1&#34;,&#34;name&#34;:&#34;suzuki&#34;&#125;,&#123;&#34;id&#34;:&#34;2&#34;,&#34;name&#34;:&#34;satou&#34;&#125;&#93;; alert&#40;recs&#91;1&#93;&#91;&#34;name&#34;&#93;&#41;; このようにすると「satou」と表示される。 ※0番目からカウントしたときの1番目の「name」である「satou」が表示される。 JSON形式のデータが外部ファイルのときは次のようにする。 ※この例では外部ファイルは「test.json」である。 req = new ActiveXObject&#40;&#34;Microsoft.XMLHTTP&#34;&#41;; req.open&#40;&#34;GET&#34;,&#34;test.json&#34;,false&#41;; req.send&#40;&#41;; text=req.responseText; recs=eval&#40;text&#41;; ここでポイントはevalを使うことである。 単に「recs=text」としてしまうと recs='[{&#34;id&#34;:&#34;1&#34;,&#34;name&#34;:&#34;suzuki&#34;},{&#34;id&#34;:&#34;2&#34;,&#34;name&#34;:&#34;satou&#34;}]'; と同じことになり、文字列として読み込んでしまう。 evalを使うとJavaScriptで使える形式に変換してくれる。 JSONはXMLよりもシンプルであり、JavaScriptにおいてはCSVよりも簡単に扱える。 text=&#34;1,suzuki;2,satou&#34;; を配列に読み込むには recs=new Array&#40;&#41;; lines=text.split&#40;&#34;;&#34;&#41;; for&#40;i=0;i&#38;lt;lines.length;i++&#41;&#123; &#160; &#160; recs&#91;i&#93;=lines&#91;i&#93;.split&#40;&#34;,&#34;&#41;; &#125; のような手順が必要である。 JSONならば text='[{&#34;id&#34;:&#34;1&#34;,&#34;name&#34;:&#34;suzuki&#34;},{&#34;id&#34;:&#34;2&#34;,&#34;name&#34;:&#34;satou&#34;}]'; recs=eval&#40;text&#41;; で済んでしまう。 JSON形式のデータは途中に改行が入っていても構わない。また入れ子にすることもできる。 &#91; &#160; &#160; &#123;&#34;id&#34;:&#34;1&#34;,&#34;name&#34;:&#34;suzuki&#34;&#125;, &#160; &#160; &#123;&#34;id&#34;:&#34;2&#34;,&#34;name&#34;:&#34;satou&#34;&#125;, &#160; &#160; &#123;&#34;id&#34;:&#34;3&#34;,&#34;name&#34;:&#34;yamada&#34;, &#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://stabucky.com/wp/archives/584/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

