<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/sers/">
    <title>Simulated Experience Racers Story</title>
    <link>http://w.atwiki.jp/sers/</link>
    <atom:link href="https://w.atwiki.jp/sers/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>Simulated Experience Racers Story</description>

    <dc:language>ja</dc:language>
    <dc:date>2013-07-05T22:50:35+09:00</dc:date>
    <utime>1373032235</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/sers/pages/54.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sers/pages/53.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sers/pages/19.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sers/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sers/pages/52.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sers/pages/50.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sers/pages/17.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sers/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sers/pages/51.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/sers/pages/40.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/sers/pages/54.html">
    <title>てｓｔ</title>
    <link>https://w.atwiki.jp/sers/pages/54.html</link>
    <description>
      メニュー部分ここから。編集注意---
#javascript(){{
/*
Image Navigation plugin 1.0
Hiroshi Sato,2010
http://net-king.com
*/
(function($) {

         function imageNavigationSlide(option) {
             var $active = $(&#039;.navi-image a.active&#039;, option.elem);
             if ( $active.length == 0 ) $active = $(&#039;.navi-image a:last&#039;, option.elem);
             var $next =  $active.next().length ? $active.next() : $(&#039;.navi-image a:first&#039; ,option.elem);
             $active.addClass(&#039;last-active&#039;);
             var $active_navi = $(&quot;.navi .&quot;+ $active.attr(&quot;rel&quot;) +&quot;&quot;, option.elem); 
             var $next_navi = $(&quot;.navi .&quot;+ $next.attr(&quot;rel&quot;) +&quot;&quot;, option.elem); 
             //rolloverImage_out($active_navi,option);
             //rolloverImage_on($next_navi,option);
             $active_navi.removeClass(&quot;active&quot;);
             $next_navi.addClass(&quot;active&quot;);
             rolloverImage_chenge(option);
             $next.css({opacity: 0.0})
                 .addClass(&#039;active&#039;)
                 .animate({opacity: 1.0}, option.animationTime, function() {
                     $active.removeClass(&quot;active last-active&quot;);
                 });
         }
         function startInterval(option){
             if(option.autoPlay) imageNavigationID = setInterval(function(){ imageNavigationSlide(option) }, option.time );
         }
         function rolloverImage_on(obj, option){
             if (!option.rolloverImage) return;
             $(&quot;img.over&quot;, obj).stop().fadeTo(option.rolloverTime,1);
         }
         function rolloverImage_out(obj, option){
             if (!option.rolloverImage) return;
             $(&quot;.over&quot;, obj).fadeTo(option.rolloutTime,0);
         }
         function rolloverImage_chenge(option){
             $(&quot;.navi a.active img.over&quot;, option.elem).stop().fadeTo(option.rolloverTime,1);
             $(&quot;.navi a:not(.active) img.over&quot;, option.elem).stop().fadeTo(option.rolloutTime,0);
         }

$.fn.imageNavigation = function(option) {
             //init
             option = $.extend({
               elem:this,
               time: 2000,
               animationTime: 500,
               autoPlay: true,
               rolloverImage: true,
               rolloverTime: 10,
               rolloutTime: 800
             }, option);
             var $active = $(&#039;.navi-image a.active&#039;, option.elem);
             if ( $active.length == 0 ) {
               $active = $(&#039;.navi-image a:first&#039;, option.elem);
               $active.addClass(&quot;active&quot;);
               $(&quot;.navi a:first&quot;, option.elem).addClass(&quot;active&quot;);
             }
             
             naviCnt = $(&quot;.navi a&quot;, option.elem).size();
             for(i=1;i&lt;=naviCnt;i++) {
               $(&quot;.navi li:nth-child(&quot;+i+&quot;) a&quot;,option.elem).addClass(&quot;navi-&quot;+i).attr(&quot;rel&quot;,&quot;navi-&quot;+i);
               $(&quot;.navi-image a:nth-child(&quot;+i+&quot;)&quot;,option.elem).addClass(&quot;navi-&quot;+i).attr(&quot;rel&quot;,&quot;navi-&quot;+i);
             }

             $(&quot;.navi li a&quot;, option.elem).each(function(){
               $(this).css(&quot;position&quot;, &quot;relative&quot;);
               if(option.rolloverImage) {
                 overSrc = $(&quot;img&quot;, this).attr(&quot;src&quot;).replace(/^(.+)(\.[a-z]+)$/, &quot;$1_on$2&quot;);
                 $(this).prepend(&#039;&lt;img src=&quot;&#039;+overSrc+&#039;&quot; class=&quot;over&quot; /&gt;&#039;);
                 $(&quot;img.over&quot; ,this).css(&quot;position&quot;, &quot;absolute&quot;).css({opacity: 0.0});
               }
             });
             $(&quot;a.active img.over&quot;, this).stop().css({opacity: 1.0});

             $(&quot;.navi a&quot;,option.elem).mouseover(function(){
               $active = $(&#039;.navi-image a.active&#039;, option.elem);
               $next = $(&quot;.navi-image a.&quot;+$(this).attr(&quot;rel&quot;)+&quot;&quot;);
               $(&#039;.navi a&#039;, option.elem).removeClass(&quot;active&quot;);
               $(this).addClass(&quot;active&quot;);
               //rolloverImage_on(this, option);
               rolloverImage_chenge(this, option);
               if($active.attr(&quot;rel&quot;) != $next.attr(&quot;rel&quot;) ) {
                 $active.addClass(&#039;last-active&#039;);
                 $active.removeClass(&#039;active&#039;);
                 $next.stop().css({opacity: 0.0})
                 .addClass(&#039;active&#039;)
                 .animate({opacity: 1.0}, option.animationTime, function() {
                   $active.removeClass(&#039;active last-active&#039;);
                 });
               }
             }).mouseout(function(){
               rolloverImage_out(this, option);
               $activeING = $(&quot;.navi-image a.active:animated&quot;,option.elem);
               if($activeING.length !=0 ) {
                 $activeING.stop().css({opacity: 1.0});
                 $(&quot;.navi-image a.last-active&quot;).each(function(){
                   $(this).removeClass(&quot;last-active&quot;);
                 });
               }
             });
             
             $(option.elem).mouseover(function(){
               if(option.autoPlay) clearInterval(imageNavigationID);
             }).mouseout(function(){
               startInterval(option);
             });
             startInterval(option);
             
             if(option.rolloverImage){
               $(&quot;.navi&quot;, option.elem).hover(function(){
               },function(){
                 $(&quot;a.active img.over&quot;, this).stop().css({opacity: 1.0});
                 rolloverImage_chenge(option);
               });
             }
}

})(jQuery);
}}
#javascript(){{
      $(function(){
        $(&quot;#image-navigation&quot;).imageNavigation({
          time:4000,
          animationTime:500,
          rolloverTime: 0,
          rolloutTime: 500
        });
      });
}}
#html2(){
&lt;div id=&quot;image-navigation&quot;&gt;
  &lt;div class=&quot;navi-image&quot;&gt;
      &lt;a href=&quot;http://www32.atwiki.jp/sers/pages/48.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=NSX.jpg&quot; /&gt;&lt;/a&gt;
      &lt;a href=&quot;http://www32.atwiki.jp/sers/pages/49.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=GT300.jpg&quot; /&gt;&lt;/a&gt;
      &lt;a href=&quot;http://www32.atwiki.jp/sers/pages/22.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=GT500.jpg&quot; /&gt;&lt;/a&gt;
      &lt;a href=&quot;http://www32.atwiki.jp/sers/pages/23.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=FormulaGT.jpg&quot; /&gt;&lt;/a&gt;
  &lt;/div&gt;
  &lt;div class=&quot;navi&quot;&gt;
    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;http://www32.atwiki.jp/sers/pages/48.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=menu_NSX.jpg&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;http://www32.atwiki.jp/sers/pages/49.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=menu_GT300.jpg&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;http://www32.atwiki.jp/sers/pages/22.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=menu_GT500.jpg&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;http://www32.atwiki.jp/sers/pages/23.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=menu_FormulaGT.jpg&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/div&gt;
  &lt;div style=&quot;clear:both;&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
}
// ---スライドメニュー部分ここまで---    </description>
    <dc:date>2013-07-05T22:50:35+09:00</dc:date>
    <utime>1373032235</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sers/pages/53.html">
    <title>あ</title>
    <link>https://w.atwiki.jp/sers/pages/53.html</link>
    <description>
          </description>
    <dc:date>2013-06-22T03:20:54+09:00</dc:date>
    <utime>1371838854</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sers/pages/19.html">
    <title>参加申請所</title>
    <link>https://w.atwiki.jp/sers/pages/19.html</link>
    <description>
      ----
&amp;font(i,b,20){参加申請所}
----
レギュレーションを熟読し、ご理解頂きありがとうございます。
このページから、SERSへの参加申請が可能です。
上限はありませんので奮ってご参加ください

下の欄に希望名、PSID、ツイッターID、ワンメイクorラリーを記入し、送信してください。


形式：-[PSID] [TwitterID] [ゼッケンナンバー]　-- [名前]
例：- PSID:crose_albionX TwitterID:Suc6904 [69]   -- スク  (2012-05-12 03:35:32)
----
#region(close,シーズン1 新規参加)
- ru-bin24 [24] ○  -- る～びん  (2012-05-21 22:35:45)
- Annulaire [7] 〇  -- アニュレール  (2012-05-22 11:48:42)
- sato_shio [10]　○  -- ライコファン  (2012-05-22 17:50:34)
- take3iverson[67]○  -- たっけん  (2012-05-22 19:06:05)
- takusupra [4] ○  -- ぱじゃまさいくりんぐ  (2012-05-23 00:10:52)
- ayumu5619[84]○  -- アユム  (2012-05-24 01:07:28)
- Spa_against [31] ×  -- すぱ  (2012-05-24 19:57:59)
- karuro02[2]×  -- カルロ  (2012-05-26 01:40:16)
- mclaren-slr_[20]○  -- たまを  (2012-05-26 01:43:36)
- ptx015[15]〇  -- じゅーご  (2012-05-30 11:47:17)
- neru_son[39]○  -- ねるそん  (2012-05-30 21:18:21)
- massa134[99]○  -- ペペロンチーノ  (2012-05-31 13:20:56)
- mirann-x[6]○  -- ミラン  (2012-05-31 22:34:57)
- tadanobebu1116[16]○  -- めだまやき  (2012-06-01 22:21:16)
- ALMA1011[44]◯  -- ALMA  (2012-06-02 03:29:02)
- DAN-MOT[11]〇 --だんもち  (2012-06-02 20:24:15)
- junkeda[8]○  -- ﾃﾗｹﾀﾞｹﾀﾞ  (2012-06-03 20:36:26)
- minosuke77[17]○  -- みのすけ  (2012-06-04 22:48:09)
#endregion
#region(close,シーズン1 途中参加)
- KOSHIRYU[88]  -- 虎子龍  (2012-06-22 21:30:39)
- LQfreeeem[85]  -- バウム  (2012-07-04 22:33:01)
#endregion

#region(close,シーズン2 新規参加)
- esso-supra enndoresupoke [1]  -- えんどれす  (2012-07-21 22:50:32)
- nicorin_full NicorinFull [12]  -- にこりん  (2012-07-22 03:36:26)
- F1_butashabu　F1_butashabu [33]  -- 豚しゃぶ  (2012-07-23 13:37:21)
- a12b56  a12b56 [32] -- エビ  (2012-07-23 15:53:56)
- Brazell42 Brazell42 [42]  -- ぶらぜる  (2012-07-23 18:32:07)
- PERAFECT_STAR DRIFTLOVER35R　[35]　  -- りょーが  (2012-07-24 02:16:21)
- LQfreeeem LaVels_oranGe [19]  -- ひゅーず  (2012-07-27 14:54:50)
- RARUDO63GT　rarudospaku [63]  -- ラルド  (2012-08-01 00:20:49)
#endregion
#region(close,シーズン2 途中参加)
- rei34rei  NekoJarashi567 [49]  -- 凪  (2012-08-07 16:56:22)
- trueno111　DajaLevin1_1_1 [24]  -- れびん  (2012-08-16 21:17:09)
#endregion

#region(close,シーズン3 新規参加)
- PSID:GRC-romoly　ゼッケンナンバー:14 TwitterID:GRC_romoly ワンメイク  -- GRC  (2012-10-11 22:37:13)
- PSID:kou9178 TwitterID:kou_9178 [91]  ワンメイク  -- こう  (2012-10-21 21:39:50)
#endregion
シーズン3途中参加
- PSID:Yuni0616_LRT TwitterID:Yuni0616_LRT [6] ワンメイク  -- ゆに  (2012-11-24 23:38:08)
- PSID:GP02_saisaris TwitterID:pedoria_scarlet  -- pedoria_scarlet  (2012-11-24 23:44:31)
#comment
&amp;font(u){名前欄に希望名、コメント欄にPSID、ゼッケンナンバー、TwitterIDを記入してください。}
&amp;font(u){※ゼッケンナンバーは既に参加者の中で選ばれていない番号を選んでください。}    </description>
    <dc:date>2012-11-24T23:44:31+09:00</dc:date>
    <utime>1353768271</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sers/pages/15.html">
    <title>SERS 全体レギュレーション</title>
    <link>https://w.atwiki.jp/sers/pages/15.html</link>
    <description>
      ----
&amp;sizex(4){&amp;bold(){SERS 大会レギュレーション}}
----

---
&amp;font(red){赤字はシーズン2から3にあたっての変更部分}
---

&amp;bold(){&amp;u(){第1条　大会名称}}
Simulated Experience Racers Story(通称SERS)

&amp;bold(){&amp;u(){第2条　大会趣旨}}
SERSはPS3ゲーム『GT５』上で参加者に実際にレーサーになるためのキャリアを歩んでもらう大会です。
カテゴリを多く設置し、より多くの人に楽しんでもらうことが趣旨です。
シーズンを重ね、勝利を重ねるごとに上位カテゴリへ参加できるようになります。

&amp;bold(){&amp;u(){第3条　参加資格}}
○PS3ゲーム『GT５』(正式名称GRAN TURISMO 5)をプレイする環境があり、オンライン対戦を快適に行える者。
○第4条の紳士協定を理解した者。
○必要最低限のモラルを持っている者。

&amp;bold(){&amp;u(){第4条　紳士協定}}
○無理な追い越し、突っ込みはしない。
⇒また、無理な突っ込み等でｵｰﾊﾞｰﾃｲｸした場合は、譲ること。
○故意でなくとも、相手にぶつけてしまった場合、迷惑をかけてしまった場合はレース後に謝罪文を入れる。
○明らかに悪意のある幅寄せ、ぶつけ合い等はしないものとする。
○ランオフからレーシングラインに戻る時は十分に減速し、後方確認もした上で復帰する（4輪脱の場合）。
⇒車両全体がランオフに出ていない場合は、アクセルを緩める程度でよしとする。
○ぶつけられた場合でも相手を誹謗、中傷しない。
○明らかに故意ではないショートカットを行ったり、ランオフを使ってタイムを上げる行為を連続して行わない。
○モラルに反する行為、マナー違反とみなされる行為をしない。

上記を守れないものはレース後に審議の対象になる場合がある。
その後&amp;underdot(red,2px){タイムペナルティ}の対象になる場合がある。
審議は運営者全員で、リプレイをみて裁判する。

※参加者からの異議が無い限り、基本的には審議はなしとする。
⇒異議がある参加者はレースの日付から1日以内に運営へ連絡すること（開催日含まず）

&amp;bold(){&amp;u(){第5条　各カテゴリのレギュレーション}}
詳しい車種などの事は各カテゴリの方に記載してある通り。
レギュレーション違反は失格の対象になるのでしっかり読んで理解すること。

&amp;bold(){&amp;u(){第6条　カテゴリについて}}
横カテゴリについては参加する権利が無ければ参加資格は得られないが、
縦カテゴリについては既存の権利でどこでも参加することが可能である。
※詳しくはカテゴリ一覧にて

&amp;bold(){&amp;u(){第7条　アシスト}}
TCS：許可
スキッドリカバリーフォース：OFF
アクティブステアリング：OFF
ASM：OFF
ABS：許可
レーシングライン：許可
特例は認めないものとする。

&amp;bold(){&amp;u(){第8条　コース設定}}
コースは各カテゴリのﾚｷﾞｭﾚｰｼｮﾝに書いてある通り。
ブースト：なし
ペナルティ：各シリーズ毎に設定
勝者決定後のレース継続時間：120秒
衝突判定：有り
車両の破損表現：ON
メカニカルダメージ：弱い
スリップストリームの強さ：弱い
雨・コース外でのグリップ低下：リアル
タイヤ／燃料の消耗：ON

&amp;bold(){&amp;u(){第9条　レース}}
レースは運営陣のラウンジで行う。
したがって参加者は事前に指定の運営者のフレンド登録を承認しておくこと。

また、レースは一部を除き各カテゴリで15分間の予選を設ける。
バグ回避レースは予選前に行い、その後準備ができた場合コースインすること。これを準備完了の合図とする。
予選後はタイムアタックを行っている者のみ走行を許可し、それ以外の者は1コーナー付近でアタックの邪魔にならないよう待機すること。
&amp;underdot(red,2px){※予選後ラウンジに戻ることは許可するがその場合最後尾となる。}

&amp;bold(){&amp;u(){第10条　主催者、及び運営陣　連絡先}}

公式Twitterアカウント：&amp;link2(SERS_official,https://twitter.com/SERS_official,target=blank)

総合管理人：アルマ
○コミュニティ：&amp;link2(アルマーニ　それってうめぇんか・・・？,http://com.nicovideo.jp/community/co1611308,target=blank,title=アルマーニ　それってうめぇんか・・・？)
&amp;nicovideo_com(&lt;iframe width=&quot;350&quot; height=&quot;176&quot; src=&quot;http://ext.nicovideo.jp/thumb_community/co1611308&quot; scrolling=&quot;no&quot; style=&quot;border:solid 1px #CCC;&quot; frameborder=&quot;0&quot;&gt;&lt;a href=&quot;http://com.nicovideo.jp/community/co1611308&quot;&gt;【ニコニコ動画】アルマーニ　それってうめぇんか・・・？&lt;/a&gt;&lt;/iframe&gt;)
○TwitterID：&amp;link2(440Alma,https://twitter.com/#!/440Alma,target=blank)

副管理人：スク
○コミュニティ：&amp;link2(sucstudio ustream,http://www.ustream.tv/channel/sucstudio,target=blank,title=sucstudio)
○TwitterID：&amp;link2(Suc6904,https://twitter.com/#!/Suc6904,target=blank)

カテゴリー運営長：ミラン
○コミュニティ：&amp;link2(ミランの部屋,http://com.nicovideo.jp/community/co1630761,target=blank,title=ミランの部屋)
&amp;nicovideo_com(&lt;iframe width=&quot;312&quot; height=&quot;176&quot; src=&quot;http://ext.nicovideo.jp/thumb_community/co1630761&quot; scrolling=&quot;no&quot; style=&quot;border:solid 1px #CCC;&quot; frameborder=&quot;0&quot;&gt;&lt;a href=&quot;http://com.nicovideo.jp/community/co1630761&quot;&gt;【ニコニコ動画】ミランの部屋&lt;/a&gt;&lt;/iframe&gt;)
○TwitterID：&amp;link2(mirann111,https://twitter.com/#!/mirann111,target=blank)

アドバイザー：ブラゼル
○TwitterID：&amp;link2(Brazell42,https://twitter.com/#!/Brazell42,target=blank)

アドバイザー：虎子龍
○TwitterID：&amp;link2(KOSHIRYU_MOTORS,https://twitter.com/KOSHIRYU_MOTORS,target=blank)

こちらから参加者へ連絡をする場合があるので、公式アカウントと運営者はフォローしてください。

&amp;bold(){&amp;u(){第11条　最初のシーズンについて}}
原則最初のシーズンは&amp;font(red,i){『Beginner Series』}から始めるものとする。

&amp;bold(){&amp;u(){第12条　シーズン後}}
シーズン後は各カテゴリ、各グループの中の上位3名が現在のカテゴリより1つ上のカテゴリに進む権利があるものとする。
※ただし、&amp;font(red,i){『Beginner Series』}についてのみ、上位5名とする。


&amp;bold(){&amp;u(){第13条　スポット参戦}}
1シーズンに付き一度だけスポットでレースに参戦する事が可能である。
参戦する場合は希望クラスを公式アカウントに連絡する事。メンバーに空きが有る場合のみ参戦が許可される。
参戦する場合は該当クラスのレギュレーションに従う事。

&amp;bold(){&amp;u(){第14条　連絡手段}}
○大会の内容については[[目安箱]]へ
○その他出欠など、グループ内での連絡はツイッターを使用するものとする。
⇒急な対応が必要になる場合を想定して、&amp;underdot(red,3px){ツイッターは登録し、最低でも同グループの人は全員フォローすること。}
&amp;font(red,i){○運営のリプには必ず返事をしてください。リプを返さず無断でラウンジに入った場合は審議の対象となります。}
&amp;font(red){日程の決定はTwitterのリプを通して行ります。}

----
運営からのお願い
----
○宣伝の為にも動画は積極的に上げてもらえると助かります。
○動画をうｐした場合は運営に一言ください。
○無断欠席は無しの方向で。
○運営がレース中に回線落ちした場合、グループの代表者は運営にリプレイを提出してください。    </description>
    <dc:date>2012-11-21T21:48:07+09:00</dc:date>
    <utime>1353502087</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sers/pages/52.html">
    <title>SuperGT GT500 Driver&amp;Result</title>
    <link>https://w.atwiki.jp/sers/pages/52.html</link>
    <description>
      *SuperGT GT500 Driver&amp;Result

#googlespreadsheets2(https://docs.google.com/spreadsheet/pub?key=0AgPS6HKdnwgJdE9NVjY2blk2WlFIbWZWUDdNQ1BJVEE&amp;output=html){825,325}

各ラウンド開催時間
|Rd|1|2|3|4|5|
|時間|00/00 00:00|00/00 00:00|00/00 00:00|00/00 00:00|00/00 00:00|    </description>
    <dc:date>2012-10-24T20:10:20+09:00</dc:date>
    <utime>1351077020</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sers/pages/50.html">
    <title>One Make Driver&amp;Result</title>
    <link>https://w.atwiki.jp/sers/pages/50.html</link>
    <description>
      *One Make Driver&amp;Result

#googlespreadsheets2(https://docs.google.com/spreadsheet/pub?key=0AgPS6HKdnwgJdDdkZFRLUmxGaHBvWktMSEFhOG51WXc&amp;output=html){775,555}

各ラウンド開催時間
|Rd|1|2|3|4|5|
|時間|10/24 22:00|00/00 00:00|00/00 00:00|00/00 00:00|00/00 00:00|    </description>
    <dc:date>2012-10-24T20:09:23+09:00</dc:date>
    <utime>1351076963</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sers/pages/17.html">
    <title>トップページ</title>
    <link>https://w.atwiki.jp/sers/pages/17.html</link>
    <description>
      // ---スライドメニュー部分ここから。編集注意---
#javascript(){{
/*
Image Navigation plugin 1.0
Hiroshi Sato,2010
http://net-king.com
*/
(function($) {

         function imageNavigationSlide(option) {
             var $active = $(&#039;.navi-image a.active&#039;, option.elem);
             if ( $active.length == 0 ) $active = $(&#039;.navi-image a:last&#039;, option.elem);
             var $next =  $active.next().length ? $active.next() : $(&#039;.navi-image a:first&#039; ,option.elem);
             $active.addClass(&#039;last-active&#039;);
             var $active_navi = $(&quot;.navi .&quot;+ $active.attr(&quot;rel&quot;) +&quot;&quot;, option.elem); 
             var $next_navi = $(&quot;.navi .&quot;+ $next.attr(&quot;rel&quot;) +&quot;&quot;, option.elem); 
             //rolloverImage_out($active_navi,option);
             //rolloverImage_on($next_navi,option);
             $active_navi.removeClass(&quot;active&quot;);
             $next_navi.addClass(&quot;active&quot;);
             rolloverImage_chenge(option);
             $next.css({opacity: 0.0})
                 .addClass(&#039;active&#039;)
                 .animate({opacity: 1.0}, option.animationTime, function() {
                     $active.removeClass(&quot;active last-active&quot;);
                 });
         }
         function startInterval(option){
             if(option.autoPlay) imageNavigationID = setInterval(function(){ imageNavigationSlide(option) }, option.time );
         }
         function rolloverImage_on(obj, option){
             if (!option.rolloverImage) return;
             $(&quot;img.over&quot;, obj).stop().fadeTo(option.rolloverTime,1);
         }
         function rolloverImage_out(obj, option){
             if (!option.rolloverImage) return;
             $(&quot;.over&quot;, obj).fadeTo(option.rolloutTime,0);
         }
         function rolloverImage_chenge(option){
             $(&quot;.navi a.active img.over&quot;, option.elem).stop().fadeTo(option.rolloverTime,1);
             $(&quot;.navi a:not(.active) img.over&quot;, option.elem).stop().fadeTo(option.rolloutTime,0);
         }

$.fn.imageNavigation = function(option) {
             //init
             option = $.extend({
               elem:this,
               time: 2000,
               animationTime: 500,
               autoPlay: true,
               rolloverImage: true,
               rolloverTime: 10,
               rolloutTime: 800
             }, option);
             var $active = $(&#039;.navi-image a.active&#039;, option.elem);
             if ( $active.length == 0 ) {
               $active = $(&#039;.navi-image a:first&#039;, option.elem);
               $active.addClass(&quot;active&quot;);
               $(&quot;.navi a:first&quot;, option.elem).addClass(&quot;active&quot;);
             }
             
             naviCnt = $(&quot;.navi a&quot;, option.elem).size();
             for(i=1;i&lt;=naviCnt;i++) {
               $(&quot;.navi li:nth-child(&quot;+i+&quot;) a&quot;,option.elem).addClass(&quot;navi-&quot;+i).attr(&quot;rel&quot;,&quot;navi-&quot;+i);
               $(&quot;.navi-image a:nth-child(&quot;+i+&quot;)&quot;,option.elem).addClass(&quot;navi-&quot;+i).attr(&quot;rel&quot;,&quot;navi-&quot;+i);
             }

             $(&quot;.navi li a&quot;, option.elem).each(function(){
               $(this).css(&quot;position&quot;, &quot;relative&quot;);
               if(option.rolloverImage) {
                 overSrc = $(&quot;img&quot;, this).attr(&quot;src&quot;).replace(/^(.+)(\.[a-z]+)$/, &quot;$1_on$2&quot;);
                 $(this).prepend(&#039;&lt;img src=&quot;&#039;+overSrc+&#039;&quot; class=&quot;over&quot; /&gt;&#039;);
                 $(&quot;img.over&quot; ,this).css(&quot;position&quot;, &quot;absolute&quot;).css({opacity: 0.0});
               }
             });
             $(&quot;a.active img.over&quot;, this).stop().css({opacity: 1.0});

             $(&quot;.navi a&quot;,option.elem).mouseover(function(){
               $active = $(&#039;.navi-image a.active&#039;, option.elem);
               $next = $(&quot;.navi-image a.&quot;+$(this).attr(&quot;rel&quot;)+&quot;&quot;);
               $(&#039;.navi a&#039;, option.elem).removeClass(&quot;active&quot;);
               $(this).addClass(&quot;active&quot;);
               //rolloverImage_on(this, option);
               rolloverImage_chenge(this, option);
               if($active.attr(&quot;rel&quot;) != $next.attr(&quot;rel&quot;) ) {
                 $active.addClass(&#039;last-active&#039;);
                 $active.removeClass(&#039;active&#039;);
                 $next.stop().css({opacity: 0.0})
                 .addClass(&#039;active&#039;)
                 .animate({opacity: 1.0}, option.animationTime, function() {
                   $active.removeClass(&#039;active last-active&#039;);
                 });
               }
             }).mouseout(function(){
               rolloverImage_out(this, option);
               $activeING = $(&quot;.navi-image a.active:animated&quot;,option.elem);
               if($activeING.length !=0 ) {
                 $activeING.stop().css({opacity: 1.0});
                 $(&quot;.navi-image a.last-active&quot;).each(function(){
                   $(this).removeClass(&quot;last-active&quot;);
                 });
               }
             });
             
             $(option.elem).mouseover(function(){
               if(option.autoPlay) clearInterval(imageNavigationID);
             }).mouseout(function(){
               startInterval(option);
             });
             startInterval(option);
             
             if(option.rolloverImage){
               $(&quot;.navi&quot;, option.elem).hover(function(){
               },function(){
                 $(&quot;a.active img.over&quot;, this).stop().css({opacity: 1.0});
                 rolloverImage_chenge(option);
               });
             }
}

})(jQuery);
}}
#javascript(){{
      $(function(){
        $(&quot;#image-navigation&quot;).imageNavigation({
          time:4000,
          animationTime:500,
          rolloverTime: 0,
          rolloutTime: 500
        });
      });
}}
#html2(){
&lt;div id=&quot;image-navigation&quot;&gt;
  &lt;div class=&quot;navi-image&quot;&gt;
      &lt;a href=&quot;http://www32.atwiki.jp/sers/pages/48.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=NSX.jpg&quot; /&gt;&lt;/a&gt;
      &lt;a href=&quot;http://www32.atwiki.jp/sers/pages/49.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=GT300.jpg&quot; /&gt;&lt;/a&gt;
      &lt;a href=&quot;http://www32.atwiki.jp/sers/pages/22.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=GT500.jpg&quot; /&gt;&lt;/a&gt;
      &lt;a href=&quot;http://www32.atwiki.jp/sers/pages/23.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=FormulaGT.jpg&quot; /&gt;&lt;/a&gt;
  &lt;/div&gt;
  &lt;div class=&quot;navi&quot;&gt;
    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;http://www32.atwiki.jp/sers/pages/48.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=menu_NSX.jpg&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;http://www32.atwiki.jp/sers/pages/49.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=menu_GT300.jpg&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;http://www32.atwiki.jp/sers/pages/22.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=menu_GT500.jpg&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;http://www32.atwiki.jp/sers/pages/23.html&quot;&gt;&lt;img src=&quot;http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=menu_FormulaGT.jpg&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/div&gt;
  &lt;div style=&quot;clear:both;&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
}
// ---スライドメニュー部分ここまで---

*TOP NEWS
&amp;font(20,#ff1493,b,u){ニュース欄でレギュレーションの変更の通知などを行うのでこまめにチェックすること}

&amp;font(18,b){シーズン3開始}
シーズン3が本日開幕です。日程の調整は公式Twitterアカウント：&amp;link2(SERS_official,https://twitter.com/SERS_official,target=blank)にて行いますので参加者は必ずフォローをお願いします。
また、本日から途中参加受付も開始します。参加希望者は新規参加申請よりお願いします。
申請完了後公式アカウントのフォローをお願いします。
#right(){2012/10/22}

&amp;font(18,b){シーズン3受付開始}
-シーズン3受付を本日より開始します。10/5～10/19迄受付期間とします。10/22～シーズン3開始となります。
#right(){2012/10/05}

&amp;font(18,b){オフシーズン企画F2007ワンメイク開催中止}
-運営の都合により開催出来なくなってしまいましたので中止とさせていただきます。

&amp;font(18,b){オフシーズン企画F2007ワンメイク開催}
-オフシーズン企画をやるのでみなさん是非参加してください。
-[[詳細はこちら&gt;http://www32.atwiki.jp/sers/pages/46.html]]

&amp;font(18,b){シーズン2の途中参加申請締切}
-&amp;font(red){最後の参加者がエントリー申請を完了させましたので、シーズン2新規参入を締め切りました。}
#right(){2012/08/17}

&amp;font(18,b){シーズン2の新規参加申請締切と途中参加申請開始}
-&amp;s(){シーズン2新規参入の締め切りをしたと同時に、途中参加申請を開始しました。}
-&amp;s(){途中参加と言っても何らかのペナルティがあるわけではありませんので、どしどしご参加ください。}
-&amp;s(){人数に限りがありますので、実質残り1名までとさせていただきます。}

-参加者の方々でまだ第1戦目の日程確認のリプを返していない方は早急にリプを返してください。
-また、SGT300に出る方々は車検がありますので忘れないようにお願いします。
#right(){2012/08/07}

&amp;font(18,b){SuperGT300 マシン抽選枠}
-SGT300の抽選は&amp;font(i,b,u){本日22時}より、スクのUst、アルマーニの生放送（未定）で行います。
-関係者は見るべし！！
#right(){2012/08/06}

&amp;font(18,b){シーズン2の参加申請開始}
-レギュレーションを固定しましたので、シーズン２の参加申請を開始します。
-申請期間はおよそ2週間で、&amp;font(red,i,b,u){8/6}までとなっております。
-1人でも多くの参加をお待ちしております。
-&amp;font(red){直前までマシン変更の申請は受け付けております。申請される方は参加申請の欄に記入されるか、運営にリプを送ってください。}
#right(){2012/07/21}

&amp;font(18,b){全体レギュレーションの細かい部分調整}
-レギュレーションにて細かい部分をシーズン2開幕前に修正しました。
-また、新規参入、継続参加申請の方々はよく確認し理解の上記入をお願いします。
#right(){2012/07/13}

&amp;font(18,b){シーズン1閉幕}
-無事シーズン1を終わることが出来ました。参加者の皆様にはきちんとルールとマナーを守っていただき感謝いたします。
-また、レースを盛り上げていただき、重ねて感謝申し上げます。
-シーズン1　カート選手権グループAではライコファン、グループBではる～びんが共に2位と接戦になりながらもタイトル獲得。
-シーズン2では今回タイトルを取れなかった者、優勝を惜しくも逃したものがタイトル争いに加わるでしょう。

-また、シーズン2までは少し時間が空くと思いますが、開幕しましたら参加者の皆様は奮ってご参加下さい。
-勿論、新規参入の方々も大歓迎です。
#right(){2012/07/13}

&amp;font(18,b){連絡手段に関して}
-第三戦グループBに関して、決勝の出席に返答せず決勝参加しているドライバーがいました。
-運営の仕事を円滑に行うためにもツイッターやwikiの方の確認をお願いします。
-また、なかなか連絡が取れない場合はPSMailも利用してください。お願いします。
#right(){2012/06/27}

&amp;font(18,b){ﾚｷﾞｭﾚｰｼｮﾝに一部訂正}
-全日本カート選手権の第三戦、ジェットコースターサーキットのローリングラップに関して、
-40kmだと1コーナーが難しいとの意見より、ジェットコースターサーキットのローリングラップの制限速度は60kmに改正。

-また、ローリングラップ中にスピン、コースオフした場合速やかに予選順位ではなく隊列の最後尾に戻るものとする。
#right(){2012/06/25}

&amp;font(18,b){全日本カート選手権のグループ分け発表}
-TAの結果が固定したので、カートのグループ分けを発表。
-現在TAの順位でグループA、グループBと振り分けられており、昇格人数は新規参入者の関係で少し変更になる可能性がある。
-また、個人でグループを確認し代表者を作り運営へ第一戦の日程を知らせること。
-連絡方法はツイッターやPSメールで行うものとする。
#right(){2012/06/06}

&amp;font(18,b){TAへの申請についての変更点}
-&amp;s(){TAへの参加は締切を過ぎた場合は受付をしない}
-→締切を過ぎた場合、締切までに申請した人が優先権を得、空いている所(14人未満の時間帯)に参加できる
#right(){2012/06/02}    </description>
    <dc:date>2012-10-22T20:52:26+09:00</dc:date>
    <utime>1350906746</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sers/pages/14.html">
    <title>メニュー</title>
    <link>https://w.atwiki.jp/sers/pages/14.html</link>
    <description>
      [[TOP PAGE&gt;http://www32.atwiki.jp/sers/]]
[[目安箱]]
----
**SERS MENU
○[[レギュレーション&gt;http://www32.atwiki.jp/sers/pages/15.html]]
○[[新規 or 継続参加申請&gt;http://www32.atwiki.jp/sers/pages/18.html]]
//42

○[[VIDEO&gt;http://www32.atwiki.jp/sers/pages/24.html]]
○[[DATA&gt;http://www32.atwiki.jp/sers/pages/41.html]]

**カテゴリ一覧
//[[カテゴリ一覧]]
----
//Beginner
#image(http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=%E3%83%93%E3%82%AE%E3%83%8A%E3%83%BC1.png,width=133,height=25)
#treemenu(title=OneMake Series,[[レギュレーション&gt;http://www32.atwiki.jp/sers/pages/48.html]],[[Driver&amp;Result&gt;http://www32.atwiki.jp/sers/pages/50.html]])

#treemenu(title=SRC,[[レギュレーション&gt;http://www32.atwiki.jp/sers/pages/47.html]],[[Driver&amp;Result]])
//カート→20
//エリーゼ→43

----
//Amateur
#image(http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=%E3%82%A2%E3%83%9E%E3%83%81%E3%83%A5%E3%82%A21.png,width=133,height=25)
#treemenu(title=SuperGT GT300,[[レギュレーション&gt;http://www32.atwiki.jp/sers/pages/49.html]],[[Driver&amp;Result&gt;http://www32.atwiki.jp/sers/pages/51.html]])
//GT300 Season2→21

----
//Professional
#image(http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=%E3%83%97%E3%83%AD1.png,width=133,height=25)
#treemenu(title=SuperGT GT500,[[レギュレーション&gt;http://www32.atwiki.jp/sers/pages/22.html]],[[Driver&amp;Result&gt;http://www32.atwiki.jp/sers/pages/52.html]])

----
//Super
#image(http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=%E3%82%B9%E3%83%BC%E3%83%91%E3%83%BC1.png,width=133,height=25)
#treemenu(title=FormulaGT選手権,[[レギュレーション&gt;http://www32.atwiki.jp/sers/pages/23.html]])


----
//間違ってSeason1からSGT,FGT作っちゃった。
//SGT300⇒29,30　500⇒31,32　FGT⇒33,34
&amp;font(i,b,#00e0e0){This wiki}
　&amp;font(i,b,#00e0e0){Special Thanks to}
　　&amp;font(i,b,#00e0e0){&amp;link2(Annulaire,https://twitter.com/#!/Annulaire,target=blank,title=ｱﾆｭﾏﾏ)}
#image(http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=anyumama.png,width=133,height=222)

　　&amp;font(i,b,#00e0e0){&amp;link2(さっちゃん,https://twitter.com/Lsachi_12,target=blank,title=さっちゃん)}
#image(http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=%E3%82%B0%E3%83%A9%E3%83%95%E3%82%A3%E3%83%83%E3%82%AF%E3%82%A4%E3%83%A9%E3%82%B9%E3%83%88%200041.jpg,width=133,height=110)

----
&amp;font(i,b,#DC143C,16){Sponser}
まーちゃん氏主催
#image(http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=MDSS%20%E3%83%AD%E3%82%B4%EF%BC%91.jpg,http://www34.atwiki.jp/f1mdss/,width=133,height=61)

アニュレール氏主催
#image(http://www32.atwiki.jp/sers/?cmd=upload&amp;act=open&amp;page=%E3%83%88%E3%83%83%E3%83%97%E3%83%9A%E3%83%BC%E3%82%B8&amp;file=SEF%E3%83%AD%E3%82%B4.png,http://www48.atwiki.jp/sefes/,width=133,height=50)
----
今日：&amp;counter(today)
合計：&amp;counter(total)    </description>
    <dc:date>2012-10-22T20:46:12+09:00</dc:date>
    <utime>1350906372</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sers/pages/51.html">
    <title>SuperGT GT300 Driver&amp;Result</title>
    <link>https://w.atwiki.jp/sers/pages/51.html</link>
    <description>
      *SuperGT GT300 Driver&amp;Result

#googlespreadsheets2(https://docs.google.com/spreadsheet/pub?key=0AgPS6HKdnwgJdGpIcmU0Wmp6YzQ0MENNVnpTN0ZJb0E&amp;output=html){825,400}

各ラウンド開催時間
|Rd|1|2|3|4|5|
|時間|00/00 00:00|00/00 00:00|00/00 00:00|00/00 00:00|00/00 00:00|    </description>
    <dc:date>2012-10-22T20:41:01+09:00</dc:date>
    <utime>1350906061</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/sers/pages/40.html">
    <title>継続参加申請所</title>
    <link>https://w.atwiki.jp/sers/pages/40.html</link>
    <description>
      ----
&amp;font(i,b,20){継続参加申請所}
----
SERSに継続参加していただきありがとうございます。
レギュレーションの調整が行われていますので確認の上お願いします。
また、各レース前にニュース欄をきちんと確認して下さい。

継続参加する際、該当者は各シリーズの希望マシンを第二候補まで以下の記入方法にて添えてご記入ください。
○GT500の希望マシン記入方法
-GT500クラスのﾚｷﾞｭﾚｰｼｮﾝの使用許可車両内のメーカーを第２希望まで記入ください。
○GT300の希望マシンの記入方法
-GT300クラスのﾚｷﾞｭﾚｰｼｮﾝの使用許可車両の中の車種の最初の文字と年式を記入ください。
-(クスコスバルADVAN インプレッサ (JGTC) &#039;03　だった場合、ク&#039;03）

『Beiginner Series』残留の方は希望マシンは書く必要はありませんが、ゼッケンナンバー及びワンメイクorラリーの記入をお願いします。
&amp;font(red){※『Amateur Series』以降はゼッケンナンバーの記入は必要ありません。}

下の欄に希望名、PSID、ツイッターIDを記入し、送信してください。

形式：-[PSID] [TwitterID] [ゼッケンナンバー]　-- [名前] 
例：- PSID:crose_albionX TwitterID:Suc6904 [69] -- スク  (2012-08-01 12:17:19)

----
#region(close,シーズン2 継続参加)
- PSID:takusupra ナンバー:4 twitterID:takusupra  -- ぱじゃまさいくりんぐ  (2012-07-21 22:30:31)
- KOSHIRYU | No.88 | KOSHIRYU |  -- こしりゅう  (2012-07-21 22:32:57)
- たっけん　take3iverson  67 take3iverson　1.雨&#039;06 2.ウ&#039;03  -- たっけん  (2012-07-22 00:04:38)
- ALMA1011 440Alma 1,ウ’08 2,雨&#039;06  -- ALMA  (2012-07-22 00:05:27)
- mirann-x ,6 ,mirann111  -- ミラン  (2012-07-22 03:01:43)
- PSID:sato_shio 　Twitter:raikofan　A&#039;08 ク&#039;08  -- ライコファン  (2012-07-22 12:36:44)
- PSID:Annulaire / TwitterID:Annulaire / 1.A&#039;08 2.ウ&#039;08  -- アニュレール  (2012-07-23 10:34:01)
- PSID:mclaren-slr_ 、TwitterID:mclaren1177、雨&#039;06 A&#039;08　  -- たまを  (2012-07-23 14:10:55)
- PSID:ru-bin24 TwitterID:Alexanderubin24 1.雨&#039;04  2.ス&#039;00  -- る～びん  (2012-07-23 17:31:38)
- minosuke77,17,mino_suke3,  -- みのすけ  (2012-07-31 11:26:01)
- Spa_against Spa_ag 雨&#039;06 雨&#039;04  -- すぱ  (2012-08-06 02:32:11)
- junkeda junkeda　1,ウ&#039;08 2,A&#039;08  -- ﾃﾗｹﾀﾞｹﾀﾞ  (2012-08-06 18:32:18)
#endregion

シーズン3 継続参加
- PSID：RARUDO63GT TwitterID:rarudospaku [63]ラリー  -- ラルド  (2012-10-05 22:55:06)
- PSID:ru-bin24 TwitterID:Alexanderubin24 1.日産　2.ホンダ  -- る~びん  (2012-10-05 23:39:36)
- PSID:takusupra Twitter ID:takusupra 1.ス00 2.ウ08  -- ぱじゃまさいくりんぐ  (2012-10-06 09:15:52)
- PSID:F1_butashabu　Twitter ID:F1_butashabu　1.ウ&#039;08　2.A&#039;08  -- 豚しゃぶ  (2012-10-06 09:48:46)
- PSID:esso-supra TwitterID:enndoresupoke 1.C&#039;01 2.ク&#039;03  -- 永遠ぼけ  (2012-10-07 09:49:24)
- PSID:PERAFECT_STAR TwitterID:DRIFTLOVER35R 1.A&#039;08 2.雨&#039;06  -- りょーが＠ホワイトゆきりん  (2012-10-11 22:45:24)
- PSID:ayumu5617 TwitterID;ayumu5617 1：ウ’08 2:ス&#039;00  -- 坊主  (2012-10-11 22:51:05)
- PSID:sato_shio TwitterID:raikofan　1.日産 2.トヨタ　  -- ライコファン  (2012-10-11 23:16:33)
- PSID:a12b56 TwitterID:a12b56 1.C&#039;01 2.ク&#039;08  -- エビ  (2012-10-11 23:31:43)
- PSID:nicorin_full TwitterID:NicorinFull   1.A&#039;03 2.雨&#039;04  -- にこりん  (2012-10-17 16:19:57)
- PSID:mclaren-slr_ 、TwitterID:mclaren1177、1.日産　2.ホンダ  -- たまを  (2012-10-18 13:11:24)
-  PSID:trueno111 TwitterID:DajaLevin1_1_1 [11] -- れびん  -- れびん  (2012-10-18 21:02:27)
- [PSID] rei34rei  [TwitterID] NekoJarashi567 [49] ワンメイク  -- 凪  (2012-10-18 23:11:00)
#comment
&amp;font(u){名前欄に希望名、コメント欄にPSID、ゼッケンナンバー、ツイッターID、希望マシンを記入してください。}
&amp;font(u){※ゼッケンナンバーは既に参加者の中で選ばれていない番号を選んでください。前シーズンと変更する場合は被らないよう気を付けて下さい。}    </description>
    <dc:date>2012-10-18T23:11:00+09:00</dc:date>
    <utime>1350569460</utime>
  </item>
  </rdf:RDF>
