Full text search for "Key"
- omr1/404/01 . . . . 49 matches
// keyword_list.h
namespace Keyword
char *keyword;
int keyword_size;
namespace Keyword
void set_keyword(Keyword::linkedList *, Keyword::linkedList *);
Keyword::linkedList *get_keyword(const char *);
void set_category_keyword(Category::linkedList *, char *, Keyword::linkedList *);
Keyword::linkedList *get_category_keyword(Category::linkedList *, char *);
Keyword::linkedList *file_get_keyword(const char *);
double fitness_check_helper(Keyword::linkedList *, Keyword::linkedList *);
fitCategory *fitness_check(Category::linkedList *, Keyword::linkedList *);
Keyword::linkedList *keyword_list = Keyword::init_list();
keyword_list = get_keyword(date_and_serial);
set_category_keyword(category_list, category, keyword_list);
keyword_list = get_category_keyword(category_list, category);
Keyword::list_print(keyword_list);
keyword_list = file_get_keyword("aa.txt");
//fitc = fitness_check(category_list, keyword_list);
//Keyword::list_free(keyword_list);
- C++/ini Reader Writer . . . . 25 matches
int ReadInteger(char* szSection, char* szKey, int iDefaultValue);
float ReadFloat(char* szSection, char* szKey, float fltDefaultValue);
bool ReadBoolean(char* szSection, char* szKey, bool bolDefaultValue);
char* ReadString(char* szSection, char* szKey, const char* szDefaultValue);
void WriteInteger(char* szSection, char* szKey, int iValue);
void WriteFloat(char* szSection, char* szKey, float fltValue);
void WriteBoolean(char* szSection, char* szKey, bool bolValue);
void WriteString(char* szSection, char* szKey, char* szValue);
int CIniReader::ReadInteger(char* szSection, char* szKey, int iDefaultValue)
int iResult = GetPrivateProfileInt(szSection, szKey, iDefaultValue, m_szFileName);
float CIniReader::ReadFloat(char* szSection, char* szKey, float fltDefaultValue)
GetPrivateProfileString(szSection, szKey, szDefault, szResult, 255, m_szFileName);
bool CIniReader::ReadBoolean(char* szSection, char* szKey, bool bolDefaultValue)
GetPrivateProfileString(szSection, szKey, szDefault, szResult, 255, m_szFileName);
char* CIniReader::ReadString(char* szSection, char* szKey, const char* szDefaultValue)
GetPrivateProfileString(szSection, szKey,
void CIniWriter::WriteInteger(char* szSection, char* szKey, int iValue)
WritePrivateProfileString(szSection, szKey, szValue, m_szFileName);
void CIniWriter::WriteFloat(char* szSection, char* szKey, float fltValue)
WritePrivateProfileString(szSection, szKey, szValue, m_szFileName);
- MoniWikiPo . . . . 23 matches
#: ../plugin/Comment.php:79 ../plugin/Keywords.php:256
msgid "KeyWords search for \"%s\""
#: ../plugin/KeywordView.php:16 ../plugin/Tour.php:16
#: ../plugin/KeywordView.php:66 ../plugin/Tour.php:68
#: ../plugin/KeywordView.php:68 ../plugin/Tour.php:70
#: ../plugin/KeywordView.php:69 ../plugin/Tour.php:71
#: ../plugin/KeywordView.php:74 ../plugin/Tour.php:77
#: ../plugin/Keywords.php:221
#: ../plugin/Keywords.php:225
msgid "add keywords"
#: ../plugin/Keywords.php:228
msgid "Update keywords"
#: ../plugin/Keywords.php:230
msgid "Add keywords"
#: ../plugin/Keywords.php:231
#: ../plugin/Keywords.php:232
#: ../plugin/Keywords.php:255
msgid "You are not able to add keywords."
#: ../plugin/Keywords.php:319
#: ../plugin/Keywords.php:354
- KeywordMacro . . . . 18 matches
#keywords keywords,macro
{{{[[Keywords]]}}}
[[Keywords]]
{{{[[Keywords(pagename)]]}}}
[[Keywords(HelpContents)]]
{{{[[Keywords(technorati)]]}}}
[[Keywords(HelpContents,technorati)]]
* fullsearch with keywords: (default)
{{{[[Keywords(all,freq)]]}}}
[[Keywords(all,freq)]]
{{{[[Keywords(limit=30)]]}}}
[[Keywords(limit=30)]]
* default 30 keywords are shown
{{{[[Keywords]]}}}
[[Keywords]]
{{{[[Keywords(all,delicious,limit=0)]]}}}
[[Keywords(all,delicious,limit=0)]]
{{{[[Keywords(all, limit=0,freq)]]}}}
[[Keywords(all, limit=0,freq)]]
{{{[[Keywords(random=3, limit=30)]]}}}
- TaggingSystem . . . . 13 matches
#keywords folksonomy,keywords,tagging,tagging system
정확하게 말해서 모니위키에서 지원하는 시스템은 KeywordSystem이다. 그러나 일반 KeywordSystem과는 다르게 일반 사용자가 키워드를 추가할 수 있기 때문에 TaggingSystem에 좀 더 가깝다.
1. 키워드 시스템을 활성화시킨다. {{{$use_keywords=1;$use_tagging=1}}}
2. LocalKeywords 페이지를 만든다. LocalKeywords페이지 참조: LocalKeywords는 일종의 작은 분류 지도이다.
TagCloud를 사용하기 위해서 {{{[[Keywords(tour)]]}}} 매크로를 이용합니다. 자세한 내용은 KeywordsMacro를 참조하세요.
[[Keywords(tour,all)]]
$use_tagging='[http://?action=keywords&tour=1&all=1 Tags]: [[Keywords(tour)]]';
== LocalKeywords의 역할 ==
LocalKeywords는 각각의 페이지에 포함된 키워드 정보를 유기적으로 연결시켜주는 역할을 하는 분류지도이며, 일종의 작은 위키위키이다.
LocalKeywords 페이지에 누구나 내용을 첨가할 수 있지만 이것이 곧바로 시스템에 반영되지 않는다. 이것을 시스템에 반영하기 위해서는 위키위키의 관리자 혹은 소유자로 등록된 사용자가 다음과 같이 URL에 덧붙여준다.
?action=Keywords&update=1
- PowerShell . . . . 9 matches
> Set-PSReadlineKeyHandler -Chord Tab -Function PossibleCompletions
Set-PSReadlineKeyHandler는 PowerShell의 PSReadline 모듈에서 사용되는 cmdlet이다. 이 cmdlet은 키보드 입력과 PSReadline 명령을 매핑하는 데 사용된다. Set-PSReadlineKeyHandler cmdlet을 사용하면 키 매핑을 만들어 PowerShell 명령줄 편집을 개선할 수 있다.
PSReadline 모듈은 PowerShell에서 명령줄 편집을 지원하는 모듈이며, 사용자 정의 키 매핑을 만들 수 있는 기능도 제공한다. Set-PSReadlineKeyHandler cmdlet을 사용하여 이러한 사용자 정의 키 매핑을 만들 수 있다.
예를 들어, `Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete`와 같이 입력하면 Tab 키가 MenuComplete 함수와 매핑된다. 이렇게 매핑된 키를 누르면 MenuComplete 함수가 실행되어 자동 완성을 제공한다.
또한, Set-PSReadlineKeyHandler cmdlet은 키 매핑을 변경하거나 삭제할 수도 있다. 예를 들어, `Remove-PSReadlineKeyHandler -Key Tab`와 같이 입력하면 Tab 키와 관련된 모든 매핑을 삭제할 수 있다.
- 3L . . . . 6 matches
<table class="wikitable sortable jquery-tablesorter" border="1" style="font-size: 13px; margin: 1em 0px; background-color: rgb(249, 249, 249); border: 1px solid rgb(170, 170, 170); border-collapse: collapse; color: rgb(0, 0, 0); font-family: sans-serif; line-height: 19.1875px; text-align: center;"><thead><tr><th class="headerSort headerSortDown" title="Sort descending" style="border: 1px solid rgb(170, 170, 170); padding: 0.2em 21px 0.2em 0.2em; background-color: rgb(242, 242, 242); background-image: url(data:image/gif;base64,R0lGODlhFQAEAIABAAAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4wLWMwNjAgNjEuMTM0Nzc3LCAyMDEwLzAyLzEyLTE3OjMyOjAwICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjAyODAxMTc0MDcyMDY4MTE4OEM2REYyN0ExMDhBNDJFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjhFNzNGQjI3MEY4NjExRTBBMzkyQzAyM0E1RDk3RDc3IiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjhFNzNGQjI2MEY4NjExRTBBMzkyQzAyM0E1RDk3RDc3IiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUgTWFjaW50b3NoIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDI4MDExNzQwNzIwNjgxMTg4QzZERjI3QTEwOEE0MkUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDI4MDExNzQwNzIwNjgxMTg4QzZERjI3QTEwOEE0MkUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4B//79/Pv6+fj39vX08/Lx8O/u7ezr6uno5+bl5OPi4eDf3t3c29rZ2NfW1dTT0tHQz87NzMvKycjHxsXEw8LBwL++vby7urm4t7a1tLOysbCvrq2sq6qpqKempaSjoqGgn56dnJuamZiXlpWUk5KRkI+OjYyLiomIh4aFhIOCgYB/fn18e3p5eHd2dXRzcnFwb25tbGtqaWhnZmVkY2JhYF9eXVxbWllYV1ZVVFNSUVBPTk1MS0pJSEdGRURDQkFAPz49PDs6OTg3NjU0MzIxMC8uLSwrKikoJyYlJCMiISAfHh0cGxoZGBcWFRQTEhEQDw4NDAsKCQgHBgUEAwIBAAAh+QQBAAABACwAAAAAFQAEAAACDYyPAcmtsJyDVDKKWQEAOw==); cursor: pointer; width: 191.453125px; background-position: 100% 50%; background-repeat: no-repeat no-repeat;">Date and Convention</th><th class="headerSort" title="Sort ascending" style="border: 1px solid rgb(170, 170, 170); padding: 0.2em 21px 0.2em 0.2em; background-color: rgb(242, 242, 242); background-image: url(data:image/gif;base64,R0lGODlhFQAJAIABAAAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4wLWMwNjAgNjEuMTM0Nzc3LCAyMDEwLzAyLzEyLTE3OjMyOjAwICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjAxODAxMTc0MDcyMDY4MTE4OEM2REYyN0ExMDhBNDJFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjdCNTAyODcwMEY4NjExRTBBMzkyQzAyM0E1RDk3RDc3IiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjdCNTAyODZGMEY4NjExRTBBMzkyQzAyM0E1RDk3RDc3IiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUgTWFjaW50b3NoIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDE4MDExNzQwNzIwNjgxMTg4QzZERjI3QTEwOEE0MkUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDE4MDExNzQwNzIwNjgxMTg4QzZERjI3QTEwOEE0MkUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4B//79/Pv6+fj39vX08/Lx8O/u7ezr6uno5+bl5OPi4eDf3t3c29rZ2NfW1dTT0tHQz87NzMvKycjHxsXEw8LBwL++vby7urm4t7a1tLOysbCvrq2sq6qpqKempaSjoqGgn56dnJuamZiXlpWUk5KRkI+OjYyLiomIh4aFhIOCgYB/fn18e3p5eHd2dXRzcnFwb25tbGtqaWhnZmVkY2JhYF9eXVxbWllYV1ZVVFNSUVBPTk1MS0pJSEdGRURDQkFAPz49PDs6OTg3NjU0MzIxMC8uLSwrKikoJyYlJCMiISAfHh0cGxoZGBcWFRQTEhEQDw4NDAsKCQgHBgUEAwIBAAAh+QQBAAABACwAAAAAFQAJAAACF4yPgMsJ2mJ4VDKKrd4GVz5lYPeMiVUAADs=); cursor: pointer; width: 241.453125px; background-position: 100% 50%; background-repeat: no-repeat no-repeat;">Album Name</th><th class="headerSort" title="Sort ascending" style="border: 1px solid rgb(170, 170, 170); padding: 0.2em 21px 0.2em 0.2em; background-color: rgb(242, 242, 242); background-image: url(data:image/gif;base64,R0lGODlhFQAJAIABAAAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4wLWMwNjAgNjEuMTM0Nzc3LCAyMDEwLzAyLzEyLTE3OjMyOjAwICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjAxODAxMTc0MDcyMDY4MTE4OEM2REYyN0ExMDhBNDJFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjdCNTAyODcwMEY4NjExRTBBMzkyQzAyM0E1RDk3RDc3IiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjdCNTAyODZGMEY4NjExRTBBMzkyQzAyM0E1RDk3RDc3IiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUgTWFjaW50b3NoIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDE4MDExNzQwNzIwNjgxMTg4QzZERjI3QTEwOEE0MkUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDE4MDExNzQwNzIwNjgxMTg4QzZERjI3QTEwOEE0MkUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4B//79/Pv6+fj39vX08/Lx8O/u7ezr6uno5+bl5OPi4eDf3t3c29rZ2NfW1dTT0tHQz87NzMvKycjHxsXEw8LBwL++vby7urm4t7a1tLOysbCvrq2sq6qpqKempaSjoqGgn56dnJuamZiXlpWUk5KRkI+OjYyLiomIh4aFhIOCgYB/fn18e3p5eHd2dXRzcnFwb25tbGtqaWhnZmVkY2JhYF9eXVxbWllYV1ZVVFNSUVBPTk1MS0pJSEdGRURDQkFAPz49PDs6OTg3NjU0MzIxMC8uLSwrKikoJyYlJCMiISAfHh0cGxoZGBcWFRQTEhEQDw4NDAsKCQgHBgUEAwIBAAAh+QQBAAABACwAAAAAFQAJAAACF4yPgMsJ2mJ4VDKKrd4GVz5lYPeMiVUAADs=); cursor: pointer; width: 190.453125px; background-position: 100% 50%; background-repeat: no-repeat no-repeat;">Circle</th><th class="unsortable" title="Sort ascending" style="border: 1px solid rgb(170, 170, 170); padding: 0.2em; background-color: rgb(242, 242, 242); width: 563.90625px;">Contributions<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;"><br></p></th></tr></thead><tbody><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2005-03-21<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_Special_4" title="Category:Comiket Special 4" style="color: rgb(11, 0, 128); background-image: none;">Comiket Special 4</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/VERNAL_FLOWERS" title="VERNAL FLOWERS" style="color: rgb(11, 0, 128); background-image: none;">VERNAL FLOWERS</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/SYNC.ART%27S" title="SYNC.ART'S" style="color: rgb(11, 0, 128); background-image: none;">SYNC.ART'S</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. Wanna Be Free! (vocals as <b>Anporin</b>) (non-Touhou)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2005-06-19<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Sunshine_Creation_28" title="Category:Sunshine Creation 28" style="color: rgb(11, 0, 128); background-image: none;">Sunshine Creation 28</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E7%B5%A2%E7%88%9B%E8%8F%AF%E9%BA%97" title="絢爛華麗" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">絢爛華麗</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">SYNC.ART'S</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E4%BA%A1%E3%81%8D%E7%8E%8B%E5%A5%B3%E3%81%AE%E7%82%BA%E3%81%AE%E3%82%BB%E3%83%97%E3%83%86%E3%83%83%E3%83%88_-Vocal-" title="Lyrics: 亡き王女の為のセプテット -Vocal-" style="color: rgb(11, 0, 128); background-image: none;">亡き王女の為のセプテット -Vocal-</a> (vocals as <b>Sayuri Anpo</b>)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2005-08-14<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_68" title="Category:Comiket 68" style="color: rgb(11, 0, 128); background-image: none;">Comiket 68</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E3%82%86%E3%81%8D%E3%81%86%E3%81%95%E3%81%8E" title="ゆきうさぎ" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">ゆきうさぎ</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">SYNC.ART'S</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. SHINE (lyrics and vocals as <b>Sayuri Anpo</b>) (non-Touhou)</li><li style="margin-bottom: 0.1em;">Track 05. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Sweets_Time" title="Lyrics: Sweets Time" style="color: rgb(11, 0, 128); background-image: none;">Sweets Time</a> (vocals as <b>Sayuri Anpo</b>)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2005-11-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:M3-16" title="Category:M3-16" style="color: rgb(11, 0, 128); background-image: none;">M3-16</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/HAPPY_NIGHT" title="HAPPY NIGHT" style="color: rgb(11, 0, 128); background-image: none;">HAPPY NIGHT</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">SYNC.ART'S</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 02. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E9%81%A5%E3%81%8B%E3%81%AA%E3%82%8B%E6%99%82%E3%81%AE%E5%B9%BB%E6%83%B3%E6%9B%B2&action=edit&redlink=1" class="new" title="Lyrics: 遥かなる時の幻想曲 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">遥かなる時の幻想曲</span></a> (lyrics as <b>Sayuri Anpo</b>)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2006-05-21<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_3" title="Category:Reitaisai 3" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 3</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/REQUIEM%EF%BD%9E%E5%B9%BB%E6%83%B3%E3%81%AB%E6%95%A3%E3%82%8B%E5%B0%91%E5%A5%B3%E3%81%9F%E3%81%A1%EF%BD%9E" title="REQUIEM~幻想に散る少女たち~" style="color: rgb(11, 0, 128); background-image: none;">REQUIEM<span lang="ja">~幻想に散る少女たち~</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">SYNC.ART'S</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E3%83%A9%E3%82%B9%E3%83%88%E3%83%80%E3%83%B3%E3%82%B9" title="Lyrics: ラストダンス" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">ラストダンス</span></a> (lyrics as <b>3L</b>, vocals as <b>Anporin</b>)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2006-05-21<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_3" title="Category:Reitaisai 3" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 3</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Repository_%EF%BD%9E%E5%A4%A2%E8%91%AC%E5%9B%9E%E5%B8%B0" title="Repository ~夢葬回帰" style="color: rgb(11, 0, 128); background-image: none;">Repository <span lang="ja">~夢葬回帰</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=Sound_Revolution&action=edit&redlink=1" class="new" title="Sound Revolution (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Sound Revolution</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E3%80%8E%E5%81%BD%E3%80%8F" title="Lyrics: 『偽』" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">『偽』</span></a> (vocals as <b>Unknown-Poly</b>)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2006-05-21<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_3" title="Category:Reitaisai 3" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 3</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%9D%B1%E6%96%B9%E9%A2%A8%E6%AB%BB%E5%AE%B4_Phantasmagoria_mystical_expectation" title="東方風櫻宴 Phantasmagoria mystical expectation" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">東方風櫻宴</span> Phantasmagoria mystical expectation</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/IOSYS" title="IOSYS" style="color: rgb(11, 0, 128); background-image: none;">IOSYS</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Phantasmagoria_mystical_expectation" title="Lyrics: Phantasmagoria mystical expectation" style="color: rgb(11, 0, 128); background-image: none;">Phantasmagoria mystical expectation</a> (vocals as <b>Anri Yu</b>)</li><li style="margin-bottom: 0.1em;">Track 03. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Reason_to_Fly" title="Lyrics: Reason to Fly" style="color: rgb(11, 0, 128); background-image: none;">Reason to Fly</a> (vocals as <b>Anri Yu</b>)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2006-08-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_70" title="Category:Comiket 70" style="color: rgb(11, 0, 128); background-image: none;">Comiket 70</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Secret_Seven" title="Secret Seven" style="color: rgb(11, 0, 128); background-image: none;">Secret Seven</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">SYNC.ART'S</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. I will -Short- (vocals as <b>Anporin</b>) (non-Touhou)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2006-08-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_70" title="Category:Comiket 70" style="color: rgb(11, 0, 128); background-image: none;">Comiket 70</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%9D%B1%E6%96%B9%E4%B9%99%E5%A5%B3%E5%9B%83%E5%AD%90" title="東方乙女囃子" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">東方乙女囃子</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">IOSYS</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E6%83%91%E3%81%84%E3%81%A6%E6%9D%A5%E3%81%9F%E3%82%8C%E3%80%81%E9%81%8A%E6%83%B0%E3%81%AA%E7%A5%9E%E9%9A%A0%E3%81%97_%EF%BD%9E_Border_of_Death" title="Lyrics: 惑いて来たれ、遊惰な神隠し ~ Border of Death" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">惑いて来たれ、遊惰な神隠し ~</span> Border of Death</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2006-12-31<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_71" title="Category:Comiket 71" style="color: rgb(11, 0, 128); background-image: none;">Comiket 71</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Luna_Megalopolis_%EF%BD%9E%E6%9C%88%E4%B8%8B%E9%9F%BF%E5%AE%B4" title="Luna Megalopolis ~月下響宴" style="color: rgb(11, 0, 128); background-image: none;">Luna Megalopolis <span lang="ja">~月下響宴</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=Scinicade&action=edit&redlink=1" class="new" title="Scinicade (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Scinicade</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 10. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Endless_Night%EF%BC%8C_Eternal_Moon.&action=edit&redlink=1" class="new" title="Lyrics: Endless Night, Eternal Moon. (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Endless Night, Eternal Moon.</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2006-12-31<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_71" title="Category:Comiket 71" style="color: rgb(11, 0, 128); background-image: none;">Comiket 71</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%9D%B1%E6%96%B9%E6%9C%88%E7%87%88%E7%B1%A0" title="東方月燈籠" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">東方月燈籠</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">IOSYS</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Unlocked_girl_%EF%BD%9E_%E5%AF%86%E5%AE%A4%E3%82%92%E5%87%BA%E3%81%9F%E5%B0%91%E5%A5%B3" title="Lyrics: Unlocked girl ~ 密室を出た少女" style="color: rgb(11, 0, 128); background-image: none;">Unlocked girl <span lang="ja">~ 密室を出た少女</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2007-12-31<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_73" title="Category:Comiket 73" style="color: rgb(11, 0, 128); background-image: none;">Comiket 73</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/CHAOS_%E2%80%94%E3%82%AB%E3%82%AA%E3%82%B9%E2%80%94" title="CHAOS —カオス—" class="mw-redirect" style="color: rgb(11, 0, 128); background-image: none;">CHAOS</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">SYNC.ART'S</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 12. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%81%9F%E3%81%BE%E3%81%97%E3%81%84%E3%81%B5%E3%82%8F%E3%81%B5%E3%82%8F&action=edit&redlink=1" class="new" title="Lyrics: たましいふわふわ (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">たましいふわふわ</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2008-05-25<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_5" title="Category:Reitaisai 5" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 5</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Crimson_Glory" title="Crimson Glory" style="color: rgb(11, 0, 128); background-image: none;">Crimson Glory</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/NJK_Record" title="NJK Record" style="color: rgb(11, 0, 128); background-image: none;">NJK Record</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 02. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Concierge_of_Dream&action=edit&redlink=1" class="new" title="Lyrics: Concierge of Dream (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Concierge of Dream</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 03. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Little_Lady&action=edit&redlink=1" class="new" title="Lyrics: Little Lady (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Little Lady</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 05. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E3%80%8E%E5%81%BD%E3%80%8F" title="Lyrics: 『偽』" style="color: rgb(11, 0, 128); background-image: none;">Imitation</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 06. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E3%83%A9%E3%82%B9%E3%83%88%E3%83%80%E3%83%B3%E3%82%B9" title="Lyrics: ラストダンス" style="color: rgb(11, 0, 128); background-image: none;">Last Dance Again</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Crimson_Glory" title="Lyrics: Crimson Glory" style="color: rgb(11, 0, 128); background-image: none;">Crimson Glory</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 09. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Sweets_Time" title="Lyrics: Sweets Time" style="color: rgb(11, 0, 128); background-image: none;">Sweets Time Midnight</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2008-05-25<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_5" title="Category:Reitaisai 5" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 5</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%9D%B1%E6%96%B9%E7%9C%9F%E8%8F%AF%E7%A5%9E%E7%A5%AD" title="東方真華神祭" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">東方真華神祭</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">IOSYS</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Pray" title="Lyrics: Pray" style="color: rgb(11, 0, 128); background-image: none;">Pray</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 09. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E8%A1%8C%E5%88%97%E3%81%AE%E3%81%A7%E3%81%8D%E3%82%8B%E3%81%88%E3%83%BC%E3%82%8A%E3%82%93%E8%A8%BA%E7%99%82%E6%89%80" title="Lyrics: 行列のできるえーりん診療所" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">行列のできるえーりん診療所</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 12. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E6%81%8B%E3%81%AB%E7%84%A6%E3%81%8C%E3%82%8C%E3%81%9F%E5%85%AB%E7%99%BE%E4%B8%87" title="Lyrics: 恋に焦がれた八百万" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">恋に焦がれた八百万</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track EX. <a href="http://en.touhouwiki.net/wiki/Lyrics:_B%E3%83%BBE%E3%83%BBE%E3%83%BBR" title="Lyrics: B・E・E・R" style="color: rgb(11, 0, 128); background-image: none;">B・E・E・R</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2008-06-15<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Sunshine_Creation_40" title="Category:Sunshine Creation 40" style="color: rgb(11, 0, 128); background-image: none;">Sunshine Creation 40</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%9D%B1%E6%96%B9%E6%9B%B4%E7%B4%97%E6%AD%8C%E9%9B%86_Eclectic_Phantasm" title="東方更紗歌集 Eclectic Phantasm" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">東方更紗歌集</span> Eclectic Phantasm</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Seventh_Heaven_MAXION" title="Seventh Heaven MAXION" style="color: rgb(11, 0, 128); background-image: none;">Seventh Heaven MAXION</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 05. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%81%82%E3%82%84%E3%81%A8%E3%82%8A&action=edit&redlink=1" class="new" title="Lyrics: あやとり (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">あやとり</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2008-08-16<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_74" title="Category:Comiket 74" style="color: rgb(11, 0, 128); background-image: none;">Comiket 74</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Rebirth_(Silver_Forest)" title="Rebirth (Silver Forest)" style="color: rgb(11, 0, 128); background-image: none;">Rebirth</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Silver_Forest" title="Silver Forest" style="color: rgb(11, 0, 128); background-image: none;">Silver Forest</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 07. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E5%A6%96%E6%80%AA%E3%81%AE%E5%B1%B1" title="Lyrics: 妖怪の山" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">妖怪の山</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2008-08-16<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_74" title="Category:Comiket 74" style="color: rgb(11, 0, 128); background-image: none;">Comiket 74</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E5%A5%B3%E5%A6%96%E8%BB%A2%E7%94%9F%EF%BD%9E%E5%A6%96%E6%80%AA%E3%82%92%E8%8B%9B%E3%82%81%E3%81%A6%E5%B9%B3%E6%B0%97%E3%81%AA%E3%81%AE%EF%BC%9F" title="女妖転生~妖怪を苛めて平気なの?" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">女妖転生~妖怪を苛めて平気なの?</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">Seventh Heaven MAXION</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E5%A6%96%E6%80%AA%E3%81%A7%E3%82%82%E6%84%9B%E3%81%97%E3%81%A6%E3%81%8F%E3%82%8C%E3%82%8B%EF%BC%9F&action=edit&redlink=1" class="new" title="Lyrics: 妖怪でも愛してくれる? (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">妖怪でも愛してくれる?</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2008-08-16<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_74" title="Category:Comiket 74" style="color: rgb(11, 0, 128); background-image: none;">Comiket 74</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Crimson_Glory_Remixies_%2B" title="Crimson Glory Remixies +" style="color: rgb(11, 0, 128); background-image: none;">Crimson Glory Remixies +</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">NJK Record</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Crimson_Glory" title="Lyrics: Crimson Glory" style="color: rgb(11, 0, 128); background-image: none;">Crimson Glory -Aurtas Mix</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2008-08-17<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_74" title="Category:Comiket 74" style="color: rgb(11, 0, 128); background-image: none;">Comiket 74</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%9D%B1%E6%96%B9%E6%83%B3%E5%B9%BD%E6%A3%AE%E9%9B%9B" title="東方想幽森雛" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">東方想幽森雛</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">IOSYS</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E3%82%BF%E3%82%A4%E3%83%A8%E3%82%A6%E3%83%8E%E3%83%8F%E3%83%8A" title="Lyrics: タイヨウノハナ" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">タイヨウノハナ</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 05. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Miracle%E2%88%9EHinacle" title="Lyrics: Miracle∞Hinacle" style="color: rgb(11, 0, 128); background-image: none;">Miracle∞Hinacle</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2008-12-29<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_75" title="Category:Comiket 75" style="color: rgb(11, 0, 128); background-image: none;">Comiket 75</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%9D%B1%E6%96%B9%E6%B3%A1%E6%B2%AB%E5%A4%A9%E7%8D%84" title="東方泡沫天獄" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">東方泡沫天獄</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">IOSYS</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E3%82%B5%E3%82%BF%E3%83%87%E3%83%BC%E3%83%8A%E3%82%A4%E3%83%88%E3%83%95%E3%82%A3%E3%83%83%E3%82%B7%E3%83%A5%E3%82%AC%E3%83%BC%E3%83%AB" title="Lyrics: サタデーナイトフィッシュガール" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">サタデーナイトフィッシュガール</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E3%83%8F%E3%83%BC%E3%83%88%E3%83%95%E3%83%AB%E3%83%8D%E3%82%B3%E3%83%AD%E3%83%9E%E3%83%B3%E3%82%B5%E3%83%BC" title="Lyrics: ハートフルネコロマンサー" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">ハートフルネコロマンサー</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 14. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E7%AC%AC%EF%BC%94%E5%B9%95%E3%80%8C%E6%9C%88%E3%81%8B%E3%82%89%E9%99%8D%E3%82%8B%E3%82%A2%E3%83%B3%E3%82%BB%E3%83%A0%E3%80%8D" title="Lyrics: 第4幕「月から降るアンセム」" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">第4幕「月から降るアンセム」</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-03-08<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_6" title="Category:Reitaisai 6" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 6</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/HEART_CHAIN" title="HEART CHAIN" style="color: rgb(11, 0, 128); background-image: none;">HEART CHAIN</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">SYNC.ART'S</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 05. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E9%8A%80%E3%81%AE%E3%82%81%E3%81%90%E3%82%8A" title="Lyrics: 銀のめぐり" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">銀のめぐり</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-03-08<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_6" title="Category:Reitaisai 6" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 6</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Crystal_Stone" title="Crystal Stone" style="color: rgb(11, 0, 128); background-image: none;">Crystal Stone</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/ShibayanRecords" title="ShibayanRecords" style="color: rgb(11, 0, 128); background-image: none;">ShibayanRecords</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E5%9C%B0%E7%8D%84%E3%81%AE%E8%8B%A6%E8%BC%AA&action=edit&redlink=1" class="new" title="Lyrics: 地獄の苦輪 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">地獄の苦輪</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-03-08<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_6" title="Category:Reitaisai 6" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 6</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E7%88%9B%E6%BC%AB-ranman-" title="爛漫-ranman-" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">爛漫</span>-ranman-</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">Seventh Heaven MAXION</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 02. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E4%BF%A1%E3%81%98%E3%81%9F%E9%81%93%E3%81%AE%E8%A1%8C%E3%81%8F%E6%9C%AB%E3%81%AF&action=edit&redlink=1" class="new" title="Lyrics: 信じた道の行く末は (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">信じた道の行く末は</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-03-08<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_6" title="Category:Reitaisai 6" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 6</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E3%82%A4%E3%82%B3%E3%83%AB%E3%83%91%E3%83%88%E3%82%B9" title="イコルパトス" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">イコルパトス</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">Seventh Heaven MAXION</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E8%BF%BD%E6%86%B6%E3%81%AE%E3%82%BD%E3%83%BC%E3%83%AB" title="Lyrics: 追憶のソール" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">追憶のソール</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-03-08<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_6" title="Category:Reitaisai 6" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 6</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E3%81%82%E3%82%81%E3%81%82%E3%81%8C%E3%82%8B%E3%80%82" title="あめあがる。" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">あめあがる。</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">NJK Record</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 03. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%81%8B%E3%82%80%E3%81%8B%E3%81%9C%E3%81%86%E3%81%9F%E3%81%B5&action=edit&redlink=1" class="new" title="Lyrics: かむかぜうたふ (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">かむかぜうたふ</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_TU%E3%83%BBRALALA&action=edit&redlink=1" class="new" title="Lyrics: TU・RALALA (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">TU・RALALA</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-04-01<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Touhou_Tsukitourou" title="Category:Touhou Tsukitourou" style="color: rgb(11, 0, 128); background-image: none;">Touhou Tsukitourou</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%9D%B1%E6%96%B9%E6%9C%88%E7%87%88%E7%B1%A0%E3%82%BB%E3%83%BC%E3%83%95%EF%BC%81" title="東方月燈籠セーフ!" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">東方月燈籠セーフ!</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">IOSYS</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Unlocked_girl_%EF%BD%9E_%E5%AF%86%E5%AE%A4%E3%82%92%E5%87%BA%E3%81%9F%E5%B0%91%E5%A5%B3" title="Lyrics: Unlocked girl ~ 密室を出た少女" style="color: rgb(11, 0, 128); background-image: none;">Unlocked girl <span lang="ja">~ 密室を出た少女</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-04-26<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:COMIC1%E2%98%863" title="Category:COMIC1☆3" style="color: rgb(11, 0, 128); background-image: none;">COMIC1☆3</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=%E6%9D%B1%E6%96%B9%E6%B7%B7%E6%B7%86%E5%B9%BB%E6%A5%BD&action=edit&redlink=1" class="new" title="東方混淆幻楽 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">東方混淆幻楽</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=Rythmique&action=edit&redlink=1" class="new" title="Rythmique (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">rythmique</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 03. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Scarlet_Allegiance_-nocturnal_resolution-&action=edit&redlink=1" class="new" title="Lyrics: Scarlet Allegiance -nocturnal resolution- (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Scarlet Allegiance -nocturnal resolution-</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-08-15<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_76" title="Category:Comiket 76" style="color: rgb(11, 0, 128); background-image: none;">Comiket 76</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/REQUIEM_Re:miniscence%EF%BD%9E%E5%B9%BB%E8%91%AC%E3%81%AF%E8%BF%BD%E6%86%B6%E3%81%AE%E5%BD%BC%E6%96%B9%E3%81%B8%EF%BD%9E" title="REQUIEM Re:miniscence~幻葬は追憶の彼方へ~" style="color: rgb(11, 0, 128); background-image: none;">REQUIEM Re:miniscence<span lang="ja">~幻葬は追憶の彼方へ~</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">SYNC.ART'S</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Disc 1 Track 01. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E3%83%A9%E3%82%B9%E3%83%88%E3%83%80%E3%83%B3%E3%82%B9" title="Lyrics: ラストダンス" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">ラストダンス</span></a> (lyrics)</li><li style="margin-bottom: 0.1em;">Disc 2 Track 01. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E3%83%A9%E3%82%B9%E3%83%88%E3%83%80%E3%83%B3%E3%82%B9" title="Lyrics: ラストダンス" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">ラストダンス</span></a> (lyrics)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-08-15<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_76" title="Category:Comiket 76" style="color: rgb(11, 0, 128); background-image: none;">Comiket 76</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E5%9C%B0_-KUNI-" title="地 -KUNI-" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">地</span> -KUNI-</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/SOUND_HOLIC" title="SOUND HOLIC" style="color: rgb(11, 0, 128); background-image: none;">SOUND HOLIC</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 05. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Yb_Allul" title="Lyrics: Yb Allul" style="color: rgb(11, 0, 128); background-image: none;">Yb Allul</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 07. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Marquis_de_3rd" title="Lyrics: Marquis de 3rd" style="color: rgb(11, 0, 128); background-image: none;">Marquis de 3rd</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-08-15<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_76" title="Category:Comiket 76" style="color: rgb(11, 0, 128); background-image: none;">Comiket 76</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%9D%B1%E6%96%B9%E6%81%8B%E6%83%B3%E9%83%B7%EF%BD%9E%E3%82%B0%E3%83%AC%E3%82%A4%E3%82%B8%E3%83%B3%E3%82%B0%E3%83%8F%E3%83%BC%E3%83%88" title="東方恋想郷~グレイジングハート" class="mw-redirect" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">東方恋想郷~グレイジングハート</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">Seventh Heaven MAXION</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 12. <a href="http://en.touhouwiki.net/wiki/Lyrics:_ultimate_blossom" title="Lyrics: ultimate blossom" style="color: rgb(11, 0, 128); background-image: none;">ultimate_blossom</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-08-15<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_76" title="Category:Comiket 76" style="color: rgb(11, 0, 128); background-image: none;">Comiket 76</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=Breezy_Storm&action=edit&redlink=1" class="new" title="Breezy Storm (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Breezy Storm</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">rythmique</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 02. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%81%9F%E3%82%81%E6%81%AF%E3%81%AB%E8%88%9E%E3%81%86%E4%B8%80%E7%89%87%E3%81%AE_%EF%BD%9Ebreath_of_air%EF%BD%9E&action=edit&redlink=1" class="new" title="Lyrics: ため息に舞う一片の ~breath of air~ (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">ため息に舞う一片の ~</span>breath of air<span lang="ja">~</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-08-15<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_76" title="Category:Comiket 76" style="color: rgb(11, 0, 128); background-image: none;">Comiket 76</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/T%E2%98%85GIRLS.02" title="T★GIRLS.02" style="color: rgb(11, 0, 128); background-image: none;">T★GIRLS.02</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Forestpireo" title="Forestpireo" class="mw-redirect" style="color: rgb(11, 0, 128); background-image: none;">Forestpireo</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%81%8B%E3%81%8F%E3%82%8C%E3%82%93%E3%81%BC&action=edit&redlink=1" class="new" title="Lyrics: かくれんぼ (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">かくれんぼ</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-10-11<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Touhou_Kouroumu_5" title="Category:Touhou Kouroumu 5" style="color: rgb(11, 0, 128); background-image: none;">Touhou Kouroumu 5</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E3%82%AD%E3%82%BB%E3%82%AD%E2%98%86%E3%82%A4%E3%83%B3%E3%83%91%E3%83%AB%E3%82%B9%EF%BD%9Eemotional_feedback" title="キセキ☆インパルス~emotional feedback" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">キセキ☆インパルス~</span>emotional feedback</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">ShibayanRecords</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E3%82%A2%E3%83%8A%E3%82%BF%E3%82%AC%E3%83%A2%E3%83%88%E3%83%A1%E3%83%AB%E3%83%A2%E3%83%8E" title="Lyrics: アナタガモトメルモノ" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">アナタガモトメルモノ</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 06. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_MyonMyonMyon!&action=edit&redlink=1" class="new" title="Lyrics: MyonMyonMyon! (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">MyonMyonMyon!</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%81%A1%E3%82%8B%E3%81%AE%E3%82%8A%E3%81%9A%E3%82%80&action=edit&redlink=1" class="new" title="Lyrics: ちるのりずむ (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">ちるのりずむ</span></a> (lyrics)</li><li style="margin-bottom: 0.1em;">Track 11. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%81%A1%E3%82%8B%E3%81%AE%E3%82%8A%E3%81%9A%E3%82%80&action=edit&redlink=1" class="new" title="Lyrics: ちるのりずむ (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">ちるのりずむ</span> Second Master</a> (lyrics)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-10-11<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Touhou_Kouroumu_5" title="Category:Touhou Kouroumu 5" style="color: rgb(11, 0, 128); background-image: none;">Touhou Kouroumu 5</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=LET_IT_SNOW,_LET_IT_FLOW&action=edit&redlink=1" class="new" title="LET IT SNOW, LET IT FLOW (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">LET IT SNOW, LET IT FLOW</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">rythmique</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Let_it_snow,_Let_it_flow.&action=edit&redlink=1" class="new" title="Lyrics: Let it snow, Let it flow. (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Let it snow, Let it flow.</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-10-11<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Touhou_Kouroumu_5" title="Category:Touhou Kouroumu 5" style="color: rgb(11, 0, 128); background-image: none;">Touhou Kouroumu 5</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Girl_Revolution" title="Girl Revolution" style="color: rgb(11, 0, 128); background-image: none;">Girl Revolution</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">Forestpireo</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 13. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%83%9B%E3%83%B3%E3%83%8E%E3%82%BF%E3%83%93%E3%83%93%E3%83%88&action=edit&redlink=1" class="new" title="Lyrics: ホンノタビビト (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">ホンノタビビト</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_77" title="Category:Comiket 77" style="color: rgb(11, 0, 128); background-image: none;">Comiket 77</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%83%B3_-OMOI-" title="想 -OMOI-" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">想</span> -OMOI-</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">SOUND HOLIC</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Rainy,_rainy_days" title="Lyrics: Rainy, rainy days" style="color: rgb(11, 0, 128); background-image: none;">Rainy, rainy days</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 10. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Phugoid_Heaven" title="Lyrics: Phugoid Heaven" style="color: rgb(11, 0, 128); background-image: none;">Phugoid Heaven</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_77" title="Category:Comiket 77" style="color: rgb(11, 0, 128); background-image: none;">Comiket 77</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Quiet_Storm" title="Quiet Storm" style="color: rgb(11, 0, 128); background-image: none;">Quiet Storm</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">rythmique</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 03. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E5%82%98%E3%81%AE%E7%84%A1%E3%81%84%E3%81%82%E3%81%AE%E4%BA%BA&action=edit&redlink=1" class="new" title="Lyrics: 傘の無いあの人 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">傘の無いあの人</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 09. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%81%9D%E3%82%8C%E3%81%98%E3%82%83%E3%80%81%E3%81%95%E3%82%88%E3%81%AA%E3%82%89&action=edit&redlink=1" class="new" title="Lyrics: それじゃ、さよなら (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">それじゃ、さよなら</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2009-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_77" title="Category:Comiket 77" style="color: rgb(11, 0, 128); background-image: none;">Comiket 77</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E5%A4%A2%E3%81%A8%E5%B9%BB%E3%81%A8%E6%B3%A1%E3%81%A8%E5%BD%B1" title="夢と幻と泡と影" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">夢と幻と泡と影</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=Minstrel&action=edit&redlink=1" class="new" title="Minstrel (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Minstrel</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E6%81%8B%E8%89%B2%E3%82%B7%E3%83%B3%E3%83%89%E3%83%AD%E3%83%BC%E3%83%A0&action=edit&redlink=1" class="new" title="Lyrics: 恋色シンドローム (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">恋色シンドローム</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 02. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E7%B4%85%E7%85%A7%E3%82%89%E3%81%97%E6%9C%88%E3%81%8A%E3%81%BC%E3%82%8D&action=edit&redlink=1" class="new" title="Lyrics: 紅照らし月おぼろ (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">紅照らし月おぼろ</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 03. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%82%A2%E3%83%AA%E3%82%B9%E3%83%9E%E3%82%A8%E3%82%B9%E3%83%86%E3%83%A9&action=edit&redlink=1" class="new" title="Lyrics: アリスマエステラ (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">アリスマエステラ</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E5%A4%A2%E3%81%A8%E5%B9%BB%E3%81%A8%E6%B3%A1%E3%81%A8%E5%BD%B1&action=edit&redlink=1" class="new" title="Lyrics: 夢と幻と泡と影 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">夢と幻と泡と影</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 05. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E5%A4%9C%E9%9C%A7%E3%80%81%E6%AE%8B%E5%83%8F&action=edit&redlink=1" class="new" title="Lyrics: 夜霧、残像 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">夜霧、残像</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 06. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E8%A5%BF%E8%A1%8C%E5%AF%BA%E7%84%A1%E4%BD%99%E6%B6%85%E6%A7%83&action=edit&redlink=1" class="new" title="Lyrics: 西行寺無余涅槃 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">西行寺無余涅槃</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 07. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E4%BA%BA%E5%BD%A2%E5%B0%91%E5%A5%B3%E8%A8%80%E8%91%89%E7%84%A1%E3%81%97&action=edit&redlink=1" class="new" title="Lyrics: 人形少女言葉無し (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">人形少女言葉無し</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-03-14<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_7" title="Category:Reitaisai 7" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 7</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=%E5%B9%BB%E6%83%B3%E9%83%B7%E3%81%AE%E6%98%9F%E9%9B%A8%E6%97%A5%E5%92%8C&action=edit&redlink=1" class="new" title="幻想郷の星雨日和 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">幻想郷の星雨日和</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=Sprite_Wing&action=edit&redlink=1" class="new" title="Sprite Wing (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Sprite Wing</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Stardust_Reverie&action=edit&redlink=1" class="new" title="Lyrics: Stardust Reverie (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Stardust Reverie</a> (lyrics, vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-03-14<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_7" title="Category:Reitaisai 7" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 7</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%9D%B1%E6%96%B9%E9%9B%BB%E6%92%83%E6%B3%A2%E5%8B%95%E2%91%A8" title="東方電撃波動⑨" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">東方電撃波動⑨</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">Silver Forest</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E3%82%AA%E3%83%AC%E3%81%AE%E5%A6%B9%E3%81%8C%E3%81%93%E3%82%93%E3%81%AA%E3%81%AB%E5%8F%AF%E6%84%9B%E3%81%84%E3%81%AF%E3%81%9A%E3%81%8C%E3%81%AA%E3%81%84%EF%BC%81" title="Lyrics: オレの妹がこんなに可愛いはずがない!" style="color: rgb(11, 0, 128); background-image: none;">オレの妹がこんなに可愛いはずがない!</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-03-14<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_7" title="Category:Reitaisai 7" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 7</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E3%82%AA%E3%83%88%E3%83%A1%E3%82%AD%E3%83%A5%E3%83%BC%E3%83%88" title="オトメキュート" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">オトメキュート</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">ShibayanRecords</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 03. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_dear_Miss_Daydreamer&action=edit&redlink=1" class="new" title="Lyrics: dear Miss Daydreamer (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">dear Miss Daydreamer</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-03-14<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_7" title="Category:Reitaisai 7" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 7</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/FirstAngriff" title="FirstAngriff" style="color: rgb(11, 0, 128); background-image: none;">FirstAngriff</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">Seventh Heaven MAXION</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_cyclic%3Dencounter&action=edit&redlink=1" class="new" title="Lyrics: cyclic=encounter (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">cyclic=encounter</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-03-14<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_7" title="Category:Reitaisai 7" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 7</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Double_Counterpoint" title="Double Counterpoint" style="color: rgb(11, 0, 128); background-image: none;">Double Counterpoint</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Alstroemeria_Records" title="Alstroemeria Records" style="color: rgb(11, 0, 128); background-image: none;">Alstroemeria Records</a> and <a href="http://en.touhouwiki.net/wiki/Studio_%22Syrup_Comfiture%22" title="Studio "Syrup Comfiture"" style="color: rgb(11, 0, 128); background-image: none;">Studio "Syrup Comfiture"</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Structure_Frame" title="Lyrics: Structure Frame" style="color: rgb(11, 0, 128); background-image: none;">Structure Frame</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-08-14<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_78" title="Category:Comiket 78" style="color: rgb(11, 0, 128); background-image: none;">Comiket 78</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Where_is_Love" title="Where is Love" style="color: rgb(11, 0, 128); background-image: none;">Where is Love</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Studio_%22Syrup_Comfiture%22" title="Studio "Syrup Comfiture"" style="color: rgb(11, 0, 128); background-image: none;">Studio "Syrup Comfiture"</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 06. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E3%82%A2%E3%83%A2%E3%83%AA%E3%82%BF%E3%83%81%E3%83%86%E3%82%AB%E3%83%9F%E3%83%88%E3%83%9F%E3%83%A6" title="Lyrics: アモリタチテカミトミユ" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">アモリタチテカミトミユ</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-08-14<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_78" title="Category:Comiket 78" style="color: rgb(11, 0, 128); background-image: none;">Comiket 78</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Heavenly_Sequence" title="Heavenly Sequence" style="color: rgb(11, 0, 128); background-image: none;">Heavenly Sequence</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/SoundOnline" title="SoundOnline" style="color: rgb(11, 0, 128); background-image: none;">SoundOnline</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E6%83%91%E3%81%84%E3%81%AE%E6%9C%88" title="Lyrics: 惑いの月" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">惑いの月</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-08-14<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_78" title="Category:Comiket 78" style="color: rgb(11, 0, 128); background-image: none;">Comiket 78</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%98%9F_-HOSHI-" title="星 -HOSHI-" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">星</span> -HOSHI-</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">SOUND HOLIC</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/wiki/Lyrics:_vaizravaNaaya" title="Lyrics: vaizravaNaaya" style="color: rgb(11, 0, 128); background-image: none;">vaizravaNaaya</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-08-14<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_78" title="Category:Comiket 78" style="color: rgb(11, 0, 128); background-image: none;">Comiket 78</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Former_Frontier_3rd_Germinate" title="Former Frontier 3rd Germinate" style="color: rgb(11, 0, 128); background-image: none;">Former Frontier 3rd Germinate</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">Seventh Heaven MAXION</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 12. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E6%9C%80%E6%9E%9C%E3%83%86%E5%B9%BB%E6%83%B3%E8%8A%B1&action=edit&redlink=1" class="new" title="Lyrics: 最果テ幻想花 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">最果テ幻想花</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-08-14<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_78" title="Category:Comiket 78" style="color: rgb(11, 0, 128); background-image: none;">Comiket 78</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Shooting_Star" title="Shooting Star" style="color: rgb(11, 0, 128); background-image: none;">Shooting Star</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Pizuya%27s_Cell" title="Pizuya's Cell" style="color: rgb(11, 0, 128); background-image: none;">Pizuya's Cell</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%82%AD%E3%83%A9%E3%83%A1%E3%82%AD%E3%82%B9%E3%82%BF%E3%83%BC&action=edit&redlink=1" class="new" title="Lyrics: キラメキスター (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">キラメキスター</span> feat.3L</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 03. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_The_Voyage_of_a_Shooting_Star&action=edit&redlink=1" class="new" title="Lyrics: The Voyage of a Shooting Star (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">The Voyage of a Shooting Star feat.3L</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 06. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%83%A4%E3%82%B4%E3%82%B3%E3%83%AD&action=edit&redlink=1" class="new" title="Lyrics: ヤゴコロ (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">ヤゴコロ</span> feat.3L</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-08-14<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_78" title="Category:Comiket 78" style="color: rgb(11, 0, 128); background-image: none;">Comiket 78</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/TOHO_EURO_FLASH_Vol.1" title="TOHO EURO FLASH Vol.1" style="color: rgb(11, 0, 128); background-image: none;">TOHO EURO FLASH Vol.1</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">NJK Record</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 02. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Spring_of_Dreams" title="Lyrics: Spring of Dreams" style="color: rgb(11, 0, 128); background-image: none;">Spring of Dreams</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Night%27n%27NIGHT" title="Lyrics: Night'n'NIGHT" style="color: rgb(11, 0, 128); background-image: none;">Night'n'NIGHT</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 07. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Last_Moments" title="Lyrics: Last Moments" style="color: rgb(11, 0, 128); background-image: none;">Last Moments</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Sympathy_take_me_to_darkness" title="Lyrics: Sympathy take me to darkness" style="color: rgb(11, 0, 128); background-image: none;">Sympathy take me to darkness</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 09. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Miracle%E2%88%9EHinacle" title="Lyrics: Miracle∞Hinacle" style="color: rgb(11, 0, 128); background-image: none;">Miracle∞Hinacle</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-08-14<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_78" title="Category:Comiket 78" style="color: rgb(11, 0, 128); background-image: none;">Comiket 78</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%9D%B1%E6%96%B9%E6%81%8B%E8%8B%BA%E5%A8%98%2B" title="東方恋苺娘+" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">東方恋苺娘+</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">IOSYS</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 03. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E4%BF%A1%E6%92%83%E3%83%AA%E3%82%B6%E3%83%AC%E3%82%AF%E3%82%B7%E3%83%A7%E3%83%B3" title="Lyrics: 信撃リザレクション" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">信撃リザレクション</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-08-14<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_78" title="Category:Comiket 78" style="color: rgb(11, 0, 128); background-image: none;">Comiket 78</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%9D%B1%E6%96%B9%E3%82%A4%E3%83%8E%E3%82%BB%E3%83%B3%E3%83%88%E3%82%AD%E3%83%BC%E3%81%AE%E6%9C%AC%E6%B0%97" title="東方イノセントキーの本気" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">東方イノセントキーの本気</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Innocent_Key" title="Innocent Key" style="color: rgb(11, 0, 128); background-image: none;">Innocent Key</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E5%8F%99%E8%81%96%E3%81%AE%E3%82%AF%E3%82%AA%E3%83%AA%E3%82%A2_%EF%BD%9ESubterranean_rose%EF%BD%9E" title="Lyrics: 叙聖のクオリア ~Subterranean rose~" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">叙聖のクオリア ~</span>Subterranean rose<span lang="ja">~</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-08-14<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_78" title="Category:Comiket 78" style="color: rgb(11, 0, 128); background-image: none;">Comiket 78</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/RED" title="RED" style="color: rgb(11, 0, 128); background-image: none;">RED</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/ALiCE%27S_EMOTiON" title="ALiCE'S EMOTiON" style="color: rgb(11, 0, 128); background-image: none;">ALiCE'S EMOTiON</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Disc C Track 12. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_the_glow_of_a_firefly&action=edit&redlink=1" class="new" title="Lyrics: the glow of a firefly (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">the glow of a firefly</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-10-11<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Touhou_Kouroumu_6" title="Category:Touhou Kouroumu 6" style="color: rgb(11, 0, 128); background-image: none;">Touhou Kouroumu 6</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%9D%B1%E6%96%B9%E6%B5%AE%E6%80%9D%E6%88%AF%E9%9D%A9%E5%91%BD" title="東方浮思戯革命" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">東方浮思戯革命</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">IOSYS</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 05. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E6%9C%AA%E7%A2%BA%E8%AA%8D%E5%B9%BB%E6%83%B3%E9%A3%9B%E8%A1%8C%E3%83%80%E3%83%B3%E3%82%B9&action=edit&redlink=1" class="new" title="Lyrics: 未確認幻想飛行ダンス (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">未確認幻想飛行ダンス</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_79" title="Category:Comiket 79" style="color: rgb(11, 0, 128); background-image: none;">Comiket 79</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/SWING_HOLIC_VOL.06" title="SWING HOLIC VOL.06" style="color: rgb(11, 0, 128); background-image: none;">SWING HOLIC VOL.06</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/SWING_HOLIC" title="SWING HOLIC" style="color: rgb(11, 0, 128); background-image: none;">SWING HOLIC</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 03. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_What_Daemon_Loves&action=edit&redlink=1" class="new" title="Lyrics: What Daemon Loves (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">What Daemon Loves</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_79" title="Category:Comiket 79" style="color: rgb(11, 0, 128); background-image: none;">Comiket 79</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Love_Hearts%3F" title="Love Hearts?" style="color: rgb(11, 0, 128); background-image: none;">Love Hearts?</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Studio_%22Syrup_Comfiture%22" title="Studio "Syrup Comfiture"" style="color: rgb(11, 0, 128); background-image: none;">Studio "Syrup Comfiture"</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 05. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Myosotis_alpestris" title="Lyrics: Myosotis alpestris" style="color: rgb(11, 0, 128); background-image: none;">Myosotis alpestris</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 06. <a href="http://en.touhouwiki.net/wiki/Lyrics:_everything" title="Lyrics: everything" style="color: rgb(11, 0, 128); background-image: none;">everything</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/wiki/Lyrics:_BAD" title="Lyrics: BAD" style="color: rgb(11, 0, 128); background-image: none;">BAD</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_79" title="Category:Comiket 79" style="color: rgb(11, 0, 128); background-image: none;">Comiket 79</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/THIRD_ENSEMBLE:_BLEU" title="THIRD ENSEMBLE: BLEU" style="color: rgb(11, 0, 128); background-image: none;">THIRD ENSEMBLE: BLEU</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">SoundOnline</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Underwater_Regret&action=edit&redlink=1" class="new" title="Lyrics: Underwater Regret (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Underwater Regret</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_79" title="Category:Comiket 79" style="color: rgb(11, 0, 128); background-image: none;">Comiket 79</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%96%87_-BUN-" title="文 -BUN-" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">文</span> -BUN-</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">SOUND HOLIC</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 06. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Retrospective_Journey&action=edit&redlink=1" class="new" title="Lyrics: Retrospective Journey (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Retrospective Journey</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_79" title="Category:Comiket 79" style="color: rgb(11, 0, 128); background-image: none;">Comiket 79</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E3%82%B3%E3%82%B3%E3%83%AD%E3%83%90%E3%82%A4%E3%83%96%E3%83%AC%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3" title="ココロバイブレーション" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">ココロバイブレーション</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">ShibayanRecords</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_MyonMyonMyonMyonMyon!&action=edit&redlink=1" class="new" title="Lyrics: MyonMyonMyonMyonMyon! (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">MyonMyonMyonMyonMyon!</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 06. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E6%9C%88%E9%BD%A211.3%E3%81%AE%E3%82%AD%E3%83%A3%E3%83%B3%E3%83%89%E3%83%AB%E3%83%9E%E3%82%B8%E3%83%83%E3%82%AF&action=edit&redlink=1" class="new" title="Lyrics: 月齢11.3のキャンドルマジック (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">月齢</span>11.3<span lang="ja">のキャンドルマジック</span></a></li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_79" title="Category:Comiket 79" style="color: rgb(11, 0, 128); background-image: none;">Comiket 79</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Violet_Lotus_Requiem" title="Violet Lotus Requiem" style="color: rgb(11, 0, 128); background-image: none;">Violet Lotus Requiem</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">Pizuya's Cell</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 03. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Retrospective&action=edit&redlink=1" class="new" title="Lyrics: Retrospective (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Retrospective</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2010-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_79" title="Category:Comiket 79" style="color: rgb(11, 0, 128); background-image: none;">Comiket 79</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/TOHO_EUROBEAT_VOL.2" title="TOHO EUROBEAT VOL.2" style="color: rgb(11, 0, 128); background-image: none;">TOHO EUROBEAT VOL.2</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/A-One" title="A-One" style="color: rgb(11, 0, 128); background-image: none;">A-One</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 07. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Come_Back_To_Me" title="Lyrics: Come Back To Me" style="color: rgb(11, 0, 128); background-image: none;">Come Back To Me</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-03-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_8" title="Category:Reitaisai 8" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 8</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Love%3DALL" title="Love=ALL" style="color: rgb(11, 0, 128); background-image: none;">Love=ALL</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Studio_%22Syrup_Comfiture%22" title="Studio "Syrup Comfiture"" style="color: rgb(11, 0, 128); background-image: none;">Studio "Syrup Comfiture"</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 02. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Listen_up&action=edit&redlink=1" class="new" title="Lyrics: Listen up (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Listen up</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-03-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_8" title="Category:Reitaisai 8" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 8</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Devote_Strikers!!_Zwei" title="Devote Strikers!! Zwei" style="color: rgb(11, 0, 128); background-image: none;">Devote Strikers!! Zwei</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">Seventh Heaven MAXION</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 05. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_get_along_in_life&action=edit&redlink=1" class="new" title="Lyrics: get along in life (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">get along in life</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-03-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_8" title="Category:Reitaisai 8" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 8</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=Rumbling_Storm&action=edit&redlink=1" class="new" title="Rumbling Storm (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Rumbling Storm</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">rythmique</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Between_the_lines&action=edit&redlink=1" class="new" title="Lyrics: Between the lines (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Between the lines</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-03-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_8" title="Category:Reitaisai 8" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 8</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=Help!!&action=edit&redlink=1" class="new" title="Help!! (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Help!!</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=FullMooN.13&action=edit&redlink=1" class="new" title="FullMooN.13 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">FullMooN.13</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E5%BD%BC%E6%96%B9%E3%81%B8%E2%80%A6&action=edit&redlink=1" class="new" title="Lyrics: 彼方へ… (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">彼方へ…</span></a> (chorus)</li><li style="margin-bottom: 0.1em;">Track 02. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Help!!&action=edit&redlink=1" class="new" title="Lyrics: Help!! (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Help!!</a> (chorus)</li><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_good-bye_%E5%B9%BB%E3%81%AE%E6%97%A5%E3%80%85&action=edit&redlink=1" class="new" title="Lyrics: good-bye 幻の日々 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">good-bye <span lang="ja">幻の日々</span></a> (chorus)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-03-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_8" title="Category:Reitaisai 8" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 8</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Overture_KANA" title="Overture KANA" style="color: rgb(11, 0, 128); background-image: none;">Overture | KANA</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">ALiCE'S EMOTiON</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 10. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Night_of_Burning_Star" title="Lyrics: Night of Burning Star" style="color: rgb(11, 0, 128); background-image: none;">Night of Burning Star</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-03-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_8" title="Category:Reitaisai 8" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 8</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Overture_SUWA" title="Overture SUWA" style="color: rgb(11, 0, 128); background-image: none;">Overture | SUWA</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">ALiCE'S EMOTiON</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 10. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E6%A1%9C%E8%8F%AF%E6%9C%88%E6%83%B3&action=edit&redlink=1" class="new" title="Lyrics: 桜華月想 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">桜華月想</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-05-08<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_8" title="Category:Reitaisai 8" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 8</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=%E6%9D%B1%E6%96%B9%E5%BE%A1%E5%A7%89%E6%A7%98%EF%BD%9ELike_your_fascination_sisters&action=edit&redlink=1" class="new" title="東方御姉様~Like your fascination sisters (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">東方御姉様~</span>Like your fascination sisters</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Studio_%22Syrup_Comfiture%22" title="Studio "Syrup Comfiture"" style="color: rgb(11, 0, 128); background-image: none;">Studio "Syrup Comfiture"</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 11. <a href="http://en.touhouwiki.net/wiki/Lyrics:_ultimate_blossom" title="Lyrics: ultimate blossom" style="color: rgb(11, 0, 128); background-image: none;">ultimate_blossom</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-05-08<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_8" title="Category:Reitaisai 8" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 8</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Innocent_Chain" title="Innocent Chain" style="color: rgb(11, 0, 128); background-image: none;">Innocent Chain</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/MyonMyon" title="MyonMyon" style="color: rgb(11, 0, 128); background-image: none;">MyonMyon</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 07. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Innocent_Chain&action=edit&redlink=1" class="new" title="Lyrics: Innocent Chain (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Innocent Chain</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-08-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_80" title="Category:Comiket 80" style="color: rgb(11, 0, 128); background-image: none;">Comiket 80</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Stardust_Motion" title="Stardust Motion" style="color: rgb(11, 0, 128); background-image: none;">Stardust Motion</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">SoundOnline</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Make_my_day&action=edit&redlink=1" class="new" title="Lyrics: Make my day (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Make my day</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-08-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_80" title="Category:Comiket 80" style="color: rgb(11, 0, 128); background-image: none;">Comiket 80</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E6%9C%88_-TSUKI-" title="月 -TSUKI-" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">月</span> -TSUKI-</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">SOUND HOLIC</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Sense_your_E-Motion&action=edit&redlink=1" class="new" title="Lyrics: Sense your E-Motion (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Sense your E-Motion</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-08-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_80" title="Category:Comiket 80" style="color: rgb(11, 0, 128); background-image: none;">Comiket 80</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=Deusas_do_ver%C3%A3o&action=edit&redlink=1" class="new" title="Deusas do verão (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Deusas do verão</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">rythmique</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 02. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E5%A4%8F%E3%81%AE%E9%80%9A%E3%82%8A%E9%9B%A8&action=edit&redlink=1" class="new" title="Lyrics: 夏の通り雨 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">夏の通り雨</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-08-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_80" title="Category:Comiket 80" style="color: rgb(11, 0, 128); background-image: none;">Comiket 80</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Rising_Star" title="Rising Star" style="color: rgb(11, 0, 128); background-image: none;">Rising Star</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">Pizuya's Cell</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 01. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E3%83%9E%E3%82%AF%E3%83%AD%E3%83%95%E3%82%A3%E3%83%A9%E3%83%91%E3%83%A9%E3%82%BD%E3%83%AB" title="Lyrics: マクロフィラパラソル" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">マクロフィラパラソル</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 02. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_Worldly_Flower&action=edit&redlink=1" class="new" title="Lyrics: Worldly Flower (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Worldly Flower</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 06. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E6%98%A8%E6%97%A5%E3%81%8C%E6%8F%8F%E3%81%84%E3%81%9F%E6%98%8E%E6%97%A5%E3%81%AE%E6%99%AF%E8%89%B2&action=edit&redlink=1" class="new" title="Lyrics: 昨日が描いた明日の景色 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">昨日が描いた明日の景色</span></a></li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-08-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_80" title="Category:Comiket 80" style="color: rgb(11, 0, 128); background-image: none;">Comiket 80</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/TOHO_EURO_FLASH_Vol.2" title="TOHO EURO FLASH Vol.2" style="color: rgb(11, 0, 128); background-image: none;">TOHO EURO FLASH Vol.2</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">NJK Record</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 02. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Search_for_the_butterfly" title="Lyrics: Search for the butterfly" style="color: rgb(11, 0, 128); background-image: none;">Search for the butterfly</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/wiki/Lyrics:_WARNING!" title="Lyrics: WARNING!" style="color: rgb(11, 0, 128); background-image: none;">WARNING!</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 05. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Endless_night" title="Lyrics: Endless night" style="color: rgb(11, 0, 128); background-image: none;">Endless night</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 06. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E6%83%91%E3%81%84%E3%81%AE%E6%9C%88" title="Lyrics: 惑いの月" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">惑いの月</span> / RAYTO MIX</a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 07. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E5%A4%A2%E3%81%A8%E5%B9%BB%E3%81%A8%E6%B3%A1%E3%81%A8%E5%BD%B1&action=edit&redlink=1" class="new" title="Lyrics: 夢と幻と泡と影 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">夢と幻と泡と影</span> / valle blanco MIX</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-08-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_80" title="Category:Comiket 80" style="color: rgb(11, 0, 128); background-image: none;">Comiket 80</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/RADIATA" title="RADIATA" style="color: rgb(11, 0, 128); background-image: none;">RADIATA</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">ALiCE'S EMOTiON</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 11. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E7%A0%B4%E6%9C%88&action=edit&redlink=1" class="new" title="Lyrics: 破月 (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">破月</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-08-13<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_80" title="Category:Comiket 80" style="color: rgb(11, 0, 128); background-image: none;">Comiket 80</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/TOHO_EUROBEAT_VOL.4" title="TOHO EUROBEAT VOL.4" style="color: rgb(11, 0, 128); background-image: none;">TOHO EUROBEAT VOL.4</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">A-One</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 09. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Leave_My_Key" title="Lyrics: Leave My Key" style="color: rgb(11, 0, 128); background-image: none;">Leave My Key</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-10-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:M3-28" title="Category:M3-28" style="color: rgb(11, 0, 128); background-image: none;">M3-28</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E3%83%A0%E3%82%BD%E3%82%A6%E3%83%9E%E3%83%86%E3%83%AA%E3%82%A2%E3%83%A9%E3%82%A4%E3%82%BA" title="ムソウマテリアライズ" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">ムソウマテリアライズ</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">ShibayanRecords</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 03. <a href="http://en.touhouwiki.net/wiki/Lyrics:_%E7%B4%85%E6%B6%99%E3%81%AB%E3%81%97%E3%81%A5%E3%82%80%E3%81%AF%E4%BE%9B%E4%BA%BA%E3%81%AE%E6%86%82%E3%81%84" title="Lyrics: 紅涙にしづむは供人の憂い" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">紅涙にしづむは供人の憂い</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 07. <a href="http://en.touhouwiki.net/wiki/Lyrics:_MyonMyonMyonMyonMyonMyon!" title="Lyrics: MyonMyonMyonMyonMyonMyon!" style="color: rgb(11, 0, 128); background-image: none;">MyonMyonMyonMyonMyonMyon!</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_81" title="Category:Comiket 81" style="color: rgb(11, 0, 128); background-image: none;">Comiket 81</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/A_Couple_of_Time" title="A Couple of Time" style="color: rgb(11, 0, 128); background-image: none;">A Couple of Time</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">SoundOnline</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 06. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%81%82%E3%82%8A%E3%81%8C%E3%81%A8%E3%81%86&action=edit&redlink=1" class="new" title="Lyrics: ありがとう (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">ありがとう</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_81" title="Category:Comiket 81" style="color: rgb(11, 0, 128); background-image: none;">Comiket 81</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Merciless_Lazuli_Rose" title="Merciless Lazuli Rose" style="color: rgb(11, 0, 128); background-image: none;">Merciless Lazuli Rose</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">Pizuya's Cell</td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Apparition_lover" title="Lyrics: Apparition lover" style="color: rgb(11, 0, 128); background-image: none;">Apparition lover</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_81" title="Category:Comiket 81" style="color: rgb(11, 0, 128); background-image: none;">Comiket 81</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/%E7%B6%B4" title="綴" style="color: rgb(11, 0, 128); background-image: none;"><span lang="ja">綴</span></a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Diao_ye_zong" title="Diao ye zong" class="mw-redirect" style="color: rgb(11, 0, 128); background-image: none;">Diao ye zong</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%83%9B%E3%83%B3%E3%83%8E%E3%82%BF%E3%83%93%E3%83%93%E3%83%88&action=edit&redlink=1" class="new" title="Lyrics: ホンノタビビト (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">ホンノタビビト</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2011-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_81" title="Category:Comiket 81" style="color: rgb(11, 0, 128); background-image: none;">Comiket 81</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=%E5%B9%BB%E6%83%B3%E9%81%8A%E5%9C%92%E9%83%B7_-Fantastic_Park-&action=edit&redlink=1" class="new" title="幻想遊園郷 -Fantastic Park- (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">幻想遊園郷</span> -Fantastic Park-</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/index.php?title=Arte_Refact&action=edit&redlink=1" class="new" title="Arte Refact (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">Arte Refact</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 02. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%82%B9%E3%83%9A%E3%83%BC%E3%82%B9%E3%82%A2%E3%82%AF%E3%82%BB%E3%83%A9%E3%83%AC%E3%82%A4%E3%82%BF%E3%83%BC&action=edit&redlink=1" class="new" title="Lyrics: スペースアクセラレイター (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">スペースアクセラレイター</span></a> (vocals)</li><li style="margin-bottom: 0.1em;">Track 09. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_%E3%82%A2%E3%82%AB%E3%82%B7%E3%83%83%E3%82%AF%E3%83%91%E3%83%AC%E3%83%BC%E3%83%89&action=edit&redlink=1" class="new" title="Lyrics: アカシックパレード (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;"><span lang="ja">アカシックパレード</span></a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2012-05-27<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Reitaisai_9" title="Category:Reitaisai 9" style="color: rgb(11, 0, 128); background-image: none;">Reitaisai 9</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Angel_Time" title="Angel Time" style="color: rgb(11, 0, 128); background-image: none;">Angel Time</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/DiGiTAL_WiNG" title="DiGiTAL WiNG" style="color: rgb(11, 0, 128); background-image: none;">DiGiTAL WiNG</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Three_Magic" title="Lyrics: Three Magic" style="color: rgb(11, 0, 128); background-image: none;">Three magic</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2012-08-11<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_82" title="Category:Comiket 82" style="color: rgb(11, 0, 128); background-image: none;">Comiket 82</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Eternal_Fantasia" title="Eternal Fantasia" style="color: rgb(11, 0, 128); background-image: none;">Eternal Fantasia</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/DiGiTAL_WiNG" title="DiGiTAL WiNG" style="color: rgb(11, 0, 128); background-image: none;">DiGiTAL WiNG</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 04. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_With_Affection&action=edit&redlink=1" class="new" title="Lyrics: With Affection (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">With Affection</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2012-08-11<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_82" title="Category:Comiket 82" style="color: rgb(11, 0, 128); background-image: none;">Comiket 82</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/JULIANA%27S_TOHO_Vol.1" title="JULIANA'S TOHO Vol.1" class="mw-redirect" style="color: rgb(11, 0, 128); background-image: none;">JULIANA'S TOHO Vol.1</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/DiGiTAL_WiNG" title="DiGiTAL WiNG" style="color: rgb(11, 0, 128); background-image: none;">DiGiTAL WiNG</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 02. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Faraway" title="Lyrics: Faraway" style="color: rgb(11, 0, 128); background-image: none;">Faraway</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2012-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_83" title="Category:Comiket 83" style="color: rgb(11, 0, 128); background-image: none;">Comiket 83</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Snow_Melody" title="Snow Melody" style="color: rgb(11, 0, 128); background-image: none;">Snow Melody</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Halozy" title="Halozy" style="color: rgb(11, 0, 128); background-image: none;">Halozy</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 02. <a href="http://en.touhouwiki.net/wiki/Lyrics:_LiveActors" title="Lyrics: LiveActors" style="color: rgb(11, 0, 128); background-image: none;">LiveActors</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2012-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_83" title="Category:Comiket 83" style="color: rgb(11, 0, 128); background-image: none;">Comiket 83</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Frozen_Traveler" title="Frozen Traveler" style="color: rgb(11, 0, 128); background-image: none;">Frozen Traveler</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/DiGiTAL_WiNG" title="DiGiTAL WiNG" style="color: rgb(11, 0, 128); background-image: none;">DiGiTAL WiNG</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 03. <a href="http://en.touhouwiki.net/index.php?title=Lyrics:_FROZEN_WiNG&action=edit&redlink=1" class="new" title="Lyrics: FROZEN WiNG (page does not exist)" style="color: rgb(165, 88, 88); background-image: none;">FROZEN WiNG</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2012-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_83" title="Category:Comiket 83" style="color: rgb(11, 0, 128); background-image: none;">Comiket 83</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/JULIANA%27S_TOHO_Vol.2" title="JULIANA'S TOHO Vol.2" class="mw-redirect" style="color: rgb(11, 0, 128); background-image: none;">JULIANA'S TOHO Vol.2</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/DiGiTAL_WiNG" title="DiGiTAL WiNG" style="color: rgb(11, 0, 128); background-image: none;">DiGiTAL WiNG</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 08. <a href="http://en.touhouwiki.net/wiki/Lyrics:_Unknown_destination" title="Lyrics: Unknown destination" style="color: rgb(11, 0, 128); background-image: none;">Unknown destination</a> (vocals)</li></ul></td></tr><tr><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;">2012-12-30<p style="margin-top: 0.4em; margin-bottom: 0.5em; line-height: 1.5em;">(<a href="http://en.touhouwiki.net/wiki/Category:Comiket_83" title="Category:Comiket 83" style="color: rgb(11, 0, 128); background-image: none;">Comiket 83</a>)</p></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/DOMINATED_DANCEHALL" title="DOMINATED DANCEHALL" style="color: rgb(11, 0, 128); background-image: none;">DOMINATED DANCEHALL</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><a href="http://en.touhouwiki.net/wiki/Alstroemeria_Records" title="Alstroemeria Records" style="color: rgb(11, 0, 128); background-image: none;">Alstroemeria Records</a></td><td style="border: 1px solid rgb(170, 170, 170); padding: 0.2em;"><ul style="line-height: 1.5em; margin: 0.3em 0px 0.5em 1.6em; padding: 0px; list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=); text-align: left;"><li style="margin-bottom: 0.1em;">Track 07. <a href="http://en.touhouwiki.net/wiki/Lyrics:_CINDERELLA_CAGE_(ALR_MORE_REWIND_MIX)" title="Lyrics: CINDERELLA CAGE (ALR MORE REWIND MIX)" style="color: rgb(11, 0, 128); background-image: none;">CINDERELLA CAGE (ALR MORE REWIND MIX)</a> (vocals)</li></ul></td></tr></tbody></table><p><br></p>
- myd . . . . 6 matches
Keywords : "C++/MFC"
Keywords : "C#", "GDI+"
Keywords : "C#", "자음", "한글 자모 분리와 결합", "유니 코드"
Keywords : "C#", "매칭"
Keywords : "C#", "스크린 룰러", "GDI+"
Keywords : "C#", "게임", "지렁이 게임", "GDI+"
- 학부/4학년 . . . . 5 matches
SIP 규격에 맞추어 프록시 서버에 인증 시도 - 인증 정보 요구 - 인증 정보 전송 등 인증 절차가 완료되면 통화가 가능하며 터치 스크린 혹은 LDS4000 Keypad(option)를 이용하여 번호를 입력 하고 통화를 연결한다.
void DiceWidget::on_key1_clicked()
void DiceWidget::on_key2_clicked()
void DiceWidget::on_key3_clicked()
void DiceWidget::on_key4_clicked()
void DiceWidget::on_key5_clicked()
void DiceWidget::on_key6_clicked()
void DiceWidget::on_key7_clicked()
void DiceWidget::on_key8_clicked()
void DiceWidget::on_key9_clicked()
void DiceWidget::on_key0_clicked()
void DiceWidget::on_keyAsta_clicked()
void DiceWidget::on_keySharp_clicked()
void DiceWidget::on_keyCall_clicked()
void DiceWidget::on_keyQuit_clicked()
private void listView1_KeyDown(object sender, KeyEventArgs e)
if (e.KeyCode == Keys.Delete)
- C_Sharp/INI 읽고 쓰기 . . . . 4 matches
#keywords C Sharp,INI
String key,
String key,
public String GetIniValue(String Section, String Key)
int i = GetPrivateProfileString(Section, Key, "", temp, 255, iniPath);
public void SetIniValue(String Section, String Key, String Value)
WritePrivateProfileString(Section, Key, Value, iniPath);
- K8S . . . . 4 matches
#keywords kubernetes, container
configMapKeyRef:
key: ...
- configMapKeyRef:
컨피그맵 대신 시크릿에 접근하려면 [[Code(configMapKeyRef)]]를 [[Code(secretKeyRef)]]로 바꾸자.
- VS . . . . 4 matches
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
- WikiKeyword . . . . 4 matches
* http://www.kwiki.org/?KwikiKeywords : Kwiki use keywords. Keywords are listed in the left sidebar and each keywords link to another pages related with it.
* http://search.wikicities.com/wiki/Help:Keyword
* http://openclipart.org/cgi-bin/wiki.pl?Keyword_Organization
- omr1/402 . . . . 4 matches
BOOL KeyProcess(Brick &);
void ProcessKey();
if(KeyProcess(B)){ break; }
BOOL KeyProcess(Brick &B)
- omr1/임시19 . . . . 4 matches
treeNode *key;
treeNode *insertKey(treeNode *p, tarray *ps, int n, int loc){
(ps+1)->key=newNode;
printf("Parent : %d\n", (ps+parentLoc)->key->data);
printf("%d's left child %d\n", (ps+parentLoc)->key->data, newNode->data);
(ps+loc)->key=newNode;
printf("Parent : %d\n", (ps+parentLoc)->key->data);
printf("%d's right child %d\n", (ps+parentLoc)->key->data, newNode->data);
(ps+loc)->key=newNode;
p->left=insertKey(p->left, ps, n, loc);
p->right=insertKey(p->right, ps, n, loc);
puts("Duplicated key value\n중복된 데이터가 존재합니다");
*root=insertKey(*root, *ps, n, 1);
if((ps+i)->key != NULL){
if((ps+i)->key->data == n){
if((ps+(i*2))->key != NULL && (ps+(i*2+1))->key != NULL){
printf("(%d<-%d->%d)\n",(ps+(i*2))->key->data, (ps+i)->key->data, (ps+(i*2+1))->key->data);
else if((ps+(i*2))->key != NULL || (ps+(i*2+1))->key != NULL){
if((ps+(i*2))->key != NULL){
printf("%d's left child %d -> change location\n", (ps+i)->key->data, (ps+(i*2))->key->data);
- omr1/임시20 . . . . 4 matches
treeNode *key;
treeNode *insertKey(treeNode *p, tarray *ps, int n, int loc){
(ps+1)->key=newNode;
printf("Parent : %d\n", (ps+parentLoc)->key->data);
printf("%d's left child %d\n", (ps+parentLoc)->key->data, newNode->data);
(ps+loc)->key=newNode;
printf("Parent : %d\n", (ps+parentLoc)->key->data);
printf("%d's right child %d\n", (ps+parentLoc)->key->data, newNode->data);
(ps+loc)->key=newNode;
p->left=insertKey(p->left, ps, n, loc);
p->right=insertKey(p->right, ps, n, loc);
puts("Duplicated key value\n중복된 데이터가 존재합니다");
*root=insertKey(*root, *ps, n, 1);
if((ps+i)->key != NULL){
if((ps+i)->key->data == n){
if((ps+(i*2))->key != NULL && (ps+(i*2+1))->key != NULL){
// printf("(%d<-%d->%d)\n",(ps+(i*2))->key->data, (ps+i)->key->data, (ps+(i*2+1))->key->data);
int leftMax = wLeftMax((ps+i)->key->left);
(ps+i)->key->data = leftMax;
else if((ps+(i*2))->key != NULL || (ps+(i*2+1))->key != NULL){
- 레지스트리 키 내보내기 . . . . 4 matches
RegSaveKey or RegSaveKeyEx는 레지스트리 하이브 포맷으로 저장되기 때문에...
[HKEY_LOCAL_MACHINE\SOFTWARE\iCollector]
[HKEY_LOCAL_MACHINE\SOFTWARE\MyKey\192.168.2.103;2000]
ShellExecute(m_hWnd, "open", "regedit.exe", "/e c:\aaa.reg HKEY_LOCAL_MACHINE\SOFTWARE\MyKey" NULL, SW_HIDE);
- JavaScript/모든 플러그인 출력 . . . . 3 matches
#keywords JavaScript,Plugin
AhnLab Online Security Anti-keylogger | npmkd25sp.dll | AhnLab Online Security | undefined
TouchEn Key for Multi-Browser | npKeyPro.dll | TouchEn Key for Multi-Browser | undefined
- LocalKeywords . . . . 3 matches
## ?action=Keywords&update=1
keywords keywords tagging
folksonomy keywords tagging "tagging system"
CLANNAD Key 사람 "히노우에 이타루"
Air Key "카미오 미스즈"
- omr1/403/01 . . . . 3 matches
BOOL KeyProcess();
if(KeyProcess())
BOOL CPushPush::KeyProcess()
- 2d vs 3d . . . . 2 matches
[[HTML(<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' id='NFPlayer90185' width='500' height='408'><param name='movie' value='http://serviceapi.nmv.naver.com/flash/NFPlayer.swf?vid=D44D33DACFCB741FF10D37D1B3811A32413D&outKey=V127f96d1d0a05f48fcdd0dfa6debdbca80b1076c3a96bcc5087c0dfa6debdbca80b1' /><param name='wmode' value='transparent' /><param name='allowScriptAccess' value='always' /><param name='allowFullScreen' value='true' /><embed src='http://serviceapi.nmv.naver.com/flash/NFPlayer.swf?vid=D44D33DACFCB741FF10D37D1B3811A32413D&outKey=V127f96d1d0a05f48fcdd0dfa6debdbca80b1076c3a96bcc5087c0dfa6debdbca80b1' wmode='transparent' width='500' height='408' allowScriptAccess='always' name='NFPlayer90185' id='NFPlayer90185' allowFullScreen='true' type='application/x-shockwave-flash' /></object>)]]
- Blog/2009-01 . . . . 2 matches
http://devmento.co.kr/devmain/woc/wocproject/perform/project_detail.jsp?dataSeq=7&curPage=1&sortKey=&sortType=&searchKey=&searchWord=&cate_code=
- Blog/2022-06 . . . . 2 matches
* LocalKeywords 관리를 안 하고 있었는데 정리하고 키워드 맵을 제대로 이동하게 했다.
* 키워드 결과를 클릭하면 순정 모니위키는 본문에 highlight가 걸리는데 본문 끝 Keyword만 highlight가 걸리도록 했다. `plugin/highlight.php`
- C++/Windows Object 모든 종류 구분 . . . . 2 matches
#keywords Windows,Kernel
if (0 == _tcsicmp(TEXT("Key"), pstInfo->TypeName.Buffer))
(*pnObject) = TYPE_KERNEL_OBJECT_KEY;
else if (0 == _tcsicmp(TEXT("KeyedEvent"), pstInfo->TypeName.Buffer))
(*pnObject) = TYPE_KERNEL_OBJECT_KEYEDEVENT;
- Internet Explorer에서 RegCreateKeyEx Error 5 (Access Denied)될 때 . . . . 2 matches
#title Internet Explorer에서 RegCreateKeyEx Error 5 (Access Denied)될 때
정확히 말하면 IE Browser Extentions(BHO 등)에서 RegCreateKeyEx를 사용했는데 Error 5 (Access Denied)가 떨어질 때.
See also: http://books.google.co.kr/books?id=PiSwjlEbGNoC&pg=PA250&lpg=PA250&dq=low+integrity+registry+keys&source=bl&ots=x2ZHV4wnlb&sig=DfD4asvayeLuzEhh_PB8ABBrW3U&hl=ko&sa=X&ei=jdW0U7bbB4q68gX3qoGwBg&ved=0CH0Q6AEwCQ#v=onepage&q=low%20integrity%20registry%20keys&f=false
- SSL/TLS 통신 과정 . . . . 2 matches
#keywords Network, SSL/TLS
1. Server Key Exchange(Optional) : 추가적인 키 값을 보낸다.
1. Client Key Exchange : RSA 키 교환방식인 경우 Pre-Master 키가 송신된다.
- TagCloud . . . . 2 matches
[[Keywords(tour,all)]]
[[Keywords(all,freq)]]
- Windows2003Tips . . . . 2 matches
#keywords windows, windows 2003, PC tips
* 시작-실행-regedit-확인-HKEY_CURRENT_USERControlPaneldesktop에서 MenuShowDelay항목의 값이 기본 400으로 셋팅되어있는데 이것을 1~8 사이의 값으로 해준다.
HKEY_CURRENT_USER\Control Panel\desktop에서 MenuShowDelay 항목의 값이 기본 400으로 셋팅되어 있는데 이 값을 1로 바꾼다. (처음 깔았을 때 400인지 확인 못했음)
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Cdrom에서 AutoRun 값을 '0'으로 한다.
HKEY_LOCAL_MACHINE\System\CurrentControlset\Services\Dnscache\Parameters에서 다음 항목의 값을 입력한다.
2)HKEY_USER\.Default\Software\Microsoft\Windows\CurrentVersion\Internet Settings에서 새로 만들기
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings에서도 위와 같이 값을 만든다.
3) HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\RemoteComputer\NameSpace에서
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 오른쪽에 등록→DWORD값에서 NoRecentDocsMenu입력하고 값을 1로 입력
1. HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings
1. [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer] 이 경로에서 [새로만들기]에서 [DWORD값]을 하나 만들고 이름을 [NoSMHelp]으로 한다.
HKEY_CURRENT_USER\Control Panel\desktop\WindowMetrics로 이동
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Update로 이동
1.HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\DelegateFolders
[HKEY_CURRENT_USER\Control Panel\Desktop]
regedit ? HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon항목에서 오른쪽마우스 클릭하여 “문자열 값”으로 다음 값을 등록한다
HKEY_CLASSES_ROOT\lnkfile 선택
HKEY_CURRENT_USER\Control Panel\Keyboard에서 InitialKeyboardIndicators 항목의 키 값을 2로 고침
실행 ? regedit를 입력하여 레지스트리 편집기를 실행한 다음 [HKEY_CURRENT_USER]→[Software]→[Microsoft]→[Internet Explorer]→[Toolbar]로 이동한다. 오른쪽 창에서 마우스 오른쪽 버튼을 눌러 [새로 만들기]→[문자열 값] 메뉴를 고른다. 새로운 문자열의 이름을 `SmBrandBitmap`로 바꾸고 `값 데이터`란에 앞에서 준비한 그림 파일의 경로와 이름을 적어준다.
③ `레지스트리 편집기` 창이 화면에 표시되면 `HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion \Winlogon`으로 이동한다.
- 신내린 토모선생 . . . . 2 matches
[[HTML(<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' id='NFPlayer39919' width='500' height='408'><param name='movie' value='http://serviceapi.nmv.naver.com/flash/NFPlayer.swf?vid=D4FC5CEB8D444CEA2D3C56C6A3282113CD28&outKey=V123ea06dcff20cc0b4929fd31dbc8445a5a255f7aecc472a1afb9fd31dbc8445a5a2' /><param name='wmode' value='transparent' /><param name='allowScriptAccess' value='always' /><param name='allowFullScreen' value='true' /><embed src='http://serviceapi.nmv.naver.com/flash/NFPlayer.swf?vid=D4FC5CEB8D444CEA2D3C56C6A3282113CD28&outKey=V123ea06dcff20cc0b4929fd31dbc8445a5a255f7aecc472a1afb9fd31dbc8445a5a2' wmode='transparent' width='500' height='408' allowScriptAccess='always' name='NFPlayer39919' id='NFPlayer39919' allowFullScreen='true' type='application/x-shockwave-flash' /></object>)]]
- 윈도우 레지스트리 . . . . 2 matches
레지스트리는 키(key)와 값(value) 두 가지 기본 요소로 이루어져 있다.
1. 키 (Key)
* HKEY_CLASSES_ROOT (HKCR)
* HKEY_CURRENT_USER (HKCU)
* HKEY_LOCAL_MACHINE (HKLM)
* HKEY_USERS (HKU)
* HKEY_CURRENT_CONFIG
* HKEY_PERFORMANCE_DATA
* HKEY_DYN_DATA
1. HKEY_CLASSES_ROOT: 파일 형식 연결 및 COM 클래스 등록 정보를 포함.
2. HKEY_CURRENT_USER: 현재 로그인한 사용자의 설정 정보를 포함.
3. HKEY_LOCAL_MACHINE: 컴퓨터의 전체 시스템 설정 정보를 포함.
4. HKEY_USERS: 모든 사용자 계정의 설정 정보를 포함.
5. HKEY_CURRENT_CONFIG: 현재 사용 중인 하드웨어와 관련된 설정 정보를 포함.
[HKEY_LOCAL_MACHINE \SYSTEM] (%windir%/system32/config/system)
[HKEY_LOCAL_MACHINE \SOFTWARE] (%windir%/system32/config/software)
[HKEY_USERS \.Default] (%windir%/system32/config/default)
[HKEY_CURRENT_USER] (%userprofile%/ntuser.dat)
* HKEY_CURRENT_USER (HKCU)는 HKEY_USERS\'''%SID(User's Security identifier)%'''[[FOOTNOTE(사용자를 고유하게 식별하는 값. https://learn.microsoft.com/en-us/windows/win32/secauthz/security-identifiers)]]와 HKEY_LOCAL_MACHINE이 합쳐진 Shortcut이다. *아래 추가 설명. (사용자가 로그인하면 그 사용자의 프로파일에 대한 SID 서브키가 HKEY_USERS 아래 연결된다.)
* HKEY_CLASSES_ROOT (HKCR)는 HKEY_LOCAL_MACHINE\SOFTWARE\Classes와 HKEY_CURRENT_USER\Software\Classes의 합집합이다.
- AnimeReleased/mym . . . . 1 match
#user-keywords 애니메이션, 별점, 평가
키 더 메탈 아이돌.Key The Metal Idol.1994 / *** / A0 /
- Blog/2014-02 . . . . 1 match
$pagename=$this->pageToKeyname($pagename);
##blog-keywords 린진,자이토카인,동프,어레인지,REMEMBRANCE
- C++ . . . . 1 match
["Internet Explorer에서 RegCreateKeyEx Error 5 (Access Denied)될 때"]
- C++/(MFC)Get VS_VERSION_INFO . . . . 1 match
#keywords C++,MFC
Key Value
- C++/이미지 대표색 찾기 . . . . 1 match
waitKey(0);
- Data-DrivenDocuments/Tutorials . . . . 1 match
==== Key Function ====
If needed, data should have a unique key for joining.
function key(d) { return d.name; }
.data(data, key)
- FavoriteMusic . . . . 1 match
'''Emily Bindger - Key of the twilight / ⭐⭐ /'''
- Git . . . . 1 match
* run git clone without checking the repository host's key
`$ git config core.sshCommand 'ssh -o StrictHostKeyChecking=no'`
- HelpMiscellaneous . . . . 1 match
=== KeywordsPlugin ===
- HelpOnConfiguration . . . . 1 match
* $kbd_script='';로 지정하면 HotKeys를 쓰지 않는다.
- HyacinthWiki . . . . 1 match
+ ##blog-keywords
+ #user-keywords
plugin/Keywords.php
- MoniWiki/HotKeys . . . . 1 match
마우스 없이 거의 모든 기본적인 동작을 HotKeys로 쓸 수 있다.
||K||action=keywords || ||
* http://unixpapa.com/js/key.html
* MoinMoin:MoinMoinExtensions/Hotkeys
* AccesskeyStandards
- MoniWikiFaq . . . . 1 match
'''A:''': 네 현재 모니위키는 지원하지 않습니다. 1.1.1부터 Keywords시스템을 도입하여 TaggingSystem과 비슷한 방식으로 작동되며, 기존의 Category를 대체하게 될것입니다.
- OpenCV . . . . 1 match
waitKey(0);
- PatternTemplate . . . . 1 match
== Keywords ==
- RecentChanges . . . . 1 match
[[Keywords(tour,all,limit=20)]]
- WinampControllers . . . . 1 match
#keywords winamp,microsoft keybord,IntelliType,hotkey
Microsoft社 Keyboard를 사용할 때 MS 키보드 관리 프로그램 IntelliType Pro를 설치하면 Winamp의 일부 Global Hotkey가 작동하지 않는다.
이는 프로세스에 상주된 itype.exe 가 Winamp의 Global Hotkey에 의해 키 값이 변경되는 것을 막기 때문이다.
itype.exe 프로세스를 끝내고 Winamp Gloabl Hotkey 를 설정한 다음 IntelliType Pro 를 실행하면 가능하긴 하지만 번거로움이 따른다.
관련링크 : [http://pluu.pe.kr/blog/article/201/winamp_with_mediakey/]
- irc logs/2012 . . . . 1 match
[01:43] <05^^ː토모> 5[ UCQ - 0?05DarkSide(미연시) ]05 0?051. 다음 중 Key의 0?05게임에 등장하지 않는 동물은? 0?051.개 2.고양이 3.멧돼지 4.토끼 05(띄어쓰기 0개)
- omr1/501 . . . . 1 match
SIP 규격에 맞추어 프록시 서버에 인증 시도 - 인증 정보 요구 - 인증 정보 전송 등 인증 절차가 완료되면 통화가 가능하며 터치 스크린 혹은 LDS4000 Keypad(option)를 이용하여 번호를 입력 하고 통화를 연결한다.
- 디자인 패턴에 따른 클래스 접미사 추천 . . . . 1 match
||<align="center">Handler ||이벤트를 처리하는 클래스||ButtonClickHandler, KeyboardEventHandler||
- 메모장 . . . . 1 match
http://www.hoons.kr/board.aspx?Name=QACSHAP&Mode=2&BoardIdx=10171&Key=&Value=
- 바이트 체커 . . . . 1 match
<textarea rows="20" cols="5" name="comment" value="" onKeyUP="javascript:cal_pre();"></textarea>
- 브이 . . . . 1 match
#keywords Air,Key,카미오 미스즈
- 윈도우 커널 패닉 유형 Minidump . . . . 1 match
INCA Internet nProtect KeyCrypt Driver에서 발생
- 윈도우에서 쓰이는 명령어 . . . . 1 match
On-Screen Keyboard [Osk.exe ]
- 자막/블레임-BLAME!(2003) . . . . 1 match
http://bestanime.co.kr/newAniData/aniInfo.php?subPageType=introduction&idx=2914&viewType=&initialKey=&page=#
- 치르노의 퍼펙트 산수교실 . . . . 1 match
[[HTML(<center><table><tr><td><div><br></div><div><span class="Apple-style-span" style="border-collapse: collapse; font-family: 돋움; font: 13px 굴림; line-height: normal; "><div align="center" style="text-align: left;"><embed invokeurls="false" autostart="false" always="always" allowfullscreen="true" id="NFPlayer29542" name="NFPlayer29542" src="http://serviceapi.nmv.naver.com/flash/NFPlayer.swf?vid=64B333E82C6362EC0D7E0E798E7B382BB0E8&outKey=V1210560763db2d11d61f66fb526a2c868b1ec477183bc7abd2c266fb526a2c868b1e" width="500" height="408" type="application/x-shockwave-flash" wmode="transparent"></div><div align="center"><치르노의 퍼펙트 산수교실></div></span></div></td></tr></table></center>)]]
- 히노우에 이타루 . . . . 1 match
#keywords CLANNAD,Key,사람,히노우에 이타루
Found 58 matching pages out of 1201 total pages
You can also click here to search title.