すべての公開記録
VRpedia Worldの取得できる記録をまとめて表示しています。 記録の種類、実行した利用者 (大文字小文字は区別)、影響を受けたページ (大文字小文字は区別) による絞り込みができます。
- 2022年8月24日 (水) 13:33 AdminJP1 トーク 投稿記録 がページ「テンプレート:Parameter names example」を作成しました (ページの作成:「<includeonly>{{#invoke:Parameter names example|main}}</includeonly><noinclude> {{hatnote|Template:Generic template demoとTemplate:Pnexはここでリダイレクトします}} <!--(hatnote more noticeable here than within Documentation)--> {{Documentation}} </noinclude>」)
- 2022年8月24日 (水) 13:31 AdminJP1 トーク 投稿記録 がページ「モジュール:URL」を作成しました (ページの作成:「-- -- This module implements {{URL}} -- -- See unit tests at Module:URL/tests local p = {} local function safeUri(s) local success, uri = pcall(function() return mw.uri.new(s) end) if success then return uri end end function p._url(url, text) url = mw.text.trim(url or '') text = mw.text.trim(text or '') if url == '' then if text == '' then return mw.getCurrentFrame():expandTemplate{ title =…」)
- 2022年8月24日 (水) 13:20 AdminJP1 トーク 投稿記録 がページ「モジュール:EditAtWikidata/doc」を作成しました (ページの作成:「<includeonly>{{使用箇所の多いテンプレート|400,000以上}}</includeonly> {{tl|EditAtWikidata}}を実装するテンプレート。詳しくは当該テンプレートの解説を参照してください。 <includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | | <!-- カテゴリは以下に追加してください --> Category:ウィキペディアのモジュール<!-- 適切なサブカテゴリに張り替えてください --> }}</includeonly>」)
- 2022年8月24日 (水) 13:18 AdminJP1 トーク 投稿記録 がページ「テンプレート:Mbox」を作成しました (ページの作成:「{{#invoke:Message box|mbox}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>」)
- 2022年8月24日 (水) 13:17 AdminJP1 トーク 投稿記録 がページ「テンプレート:コメント依頼」を作成しました (ページの作成:「{{Mbox | type = notice | small = {{#if:{{{section|}}}|left}} | style = {{#if:{{{section|}}}|width:auto;}} | image = 40px | smallimage = 25px | text = '''この{{#if:{{{section|}}}|節|ページ}}に関するコメント依頼が提出されており、コメントを広く求めています。'''<br />{{#if:{{{2|}}}|「[[{{{2}}}]]」|{{#if:{{{t|}}}|「[[{{{t}}}]]…」)
- 2022年8月24日 (水) 13:17 AdminJP1 トーク 投稿記録 がページ「モジュール:Protection banner/config」を作成しました (ページの作成:「-- This module provides configuration data for Module:Protection banner. return { -------------------------------------------------------------------------------- -- -- BANNER DATA -- -------------------------------------------------------------------------------- --[[ -- Banner data consists of six fields: -- * text - the main protection text that appears at the top of protection -- banners. -- * explanation - the text that a…」)
- 2022年8月24日 (水) 13:16 AdminJP1 トーク 投稿記録 がページ「モジュール:Effective protection expiry」を作成しました (ページの作成:「local p = {} -- Returns the expiry of a restriction of an action on a given title, or unknown if it cannot be known. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action ==…」)
- 2022年8月24日 (水) 13:15 AdminJP1 トーク 投稿記録 がページ「モジュール:Effective protection level」を作成しました (ページの作成:「local p = {} -- Returns the permission required to perform a given action on a given title. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'autoreview' then local…」)
- 2022年8月24日 (水) 13:13 AdminJP1 トーク 投稿記録 がページ「モジュール:File link」を作成しました (ページの作成:「-- This module provides a library for formatting file wikilinks. local yesno = require('Module:Yesno') local checkType = require('libraryUtil').checkType local p = {} function p._main(args) checkType('_main', 1, args, 'table') -- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our -- own function to get the right error level. local function checkArg(key, val, level) if type(val) ~= 'string' then error(string.format( "'_main'…」)
- 2022年8月24日 (水) 11:16 AdminJP1 トーク 投稿記録 がページ「モジュール:Navbar」を作成しました (ページの作成:「local p = {} local getArgs function p._navbar(args) local titleArg = 1 if args.collapsible then titleArg = 2 if not args.plain then args.mini = 1 end if args.fontcolor then args.fontstyle = 'color:' .. args.fontcolor .. ';' end args.style = 'float:left; text-align:left; width:6em;' end local titleText = args[titleArg] or (':' .. mw.getCurrentFrame():getParent():getTitle()) local title = mw.title.new(mw.text.trim(titleText), 'Template');…」)
- 2022年8月24日 (水) 11:15 AdminJP1 トーク 投稿記録 がページ「モジュール:Infobox」を作成しました (ページの作成:「-- -- This module implements {{Infobox}} -- local p = {} local navbar = require('Module:Navbar')._navbar local args = {} local origArgs = {} local root local function notempty( s ) return s and s:match( '%S' ) end local function fixChildBoxes(sval, tt) if notempty(sval) then local marker = '<span class=special_infobox_marker>' local s = sval s = mw.ustring.gsub(s, '(<%s*[Tt][Rr])', marker .. '%1') s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>)', '%1' .. mark…」)
- 2022年8月24日 (水) 11:14 AdminJP1 トーク 投稿記録 がページ「テンプレート:Infobox2」を作成しました (ページの作成:「{{#invoke:Infobox|infobox}}<noinclude> {{documentation|Template:Infobox/doc}} <!-- Categories go in the /doc subpage, and interwikis go in Wikidata. --> </noinclude>」)
- 2022年8月24日 (水) 11:14 AdminJP1 トーク 投稿記録 がページ「テンプレート:Infobox record label」を作成しました (ページの作成:「{{Infobox2 | bodyclass = vcard | abovestyle = background-color: {{{bgcolor|LightBlue}}} | aboveclass = fn org | above = {{{name|<includeonly>{{PAGENAMEBASE}}</includeonly>}}} | image = {{#invoke:InfoboxImage|InfoboxImage|image={{{image|{{{image_name|}}}}}}|size={{{image_size|}}}|sizedefault=180px|alt={{{image_alt|}}}}} | caption = {{{caption|{{{image_caption|}}}}}} | label1 = 親会社 | data1 = {{{parent|}}} | label2 = 設立 | data2…」)
- 2022年8月24日 (水) 11:13 AdminJP1 トーク 投稿記録 がページ「テンプレート:混同」を作成しました (ページの作成:「{{Dablink|icon=Confusion grey.svg |1={{ #if: {{{redirect|}}} | 「'''{{{redirect}}}'''」はこの項目へ転送されています。 }}{{ #if: {{{x1|}}} | {{{x1}}} }}{{ #if: {{{link1|}}} | 「{{See/core|{{{link1}}}|{{{1}}}}}」 | 「{{See/core|{{{1}}}}}」 }}{{ #if: {{{2|}}} | {{ #if: {{{3|}}} | 、 | あるいは }}{{ #if: {{{x2|}}} | {{{x2}}} }}{{ #if: {{{link2|}}} | 「{{See/core|{{{link2}}}…」)
- 2022年8月24日 (水) 10:33 AdminJP1 トーク 投稿記録 がページ「テンプレート:使用箇所の多いテンプレート」を作成しました (ページの作成:「{{ombox | type = content | text = '''この{{ #switch:{{NAMESPACE}} |モジュール=Luaモジュール |#default=テンプレート }}は<span class="plainlinks">[https://templatecount.toolforge.org/index.php?lang=ja&namespace={{NAMESPACENUMBER:{{FULLPAGENAME}}}}&name={{PAGENAMEE}} {{#if:{{{1|}}}|{{{1}}}|多く}}のページ]で使われています。</span>'''<br />余計な混乱やサーバーへの負荷を避けるために、どんな変更でも最初は{{…」)
- 2022年8月24日 (水) 10:27 AdminJP1 トーク 投稿記録 がページ「テンプレート:Pp-template」を作成しました (ページの作成:「<includeonly>{{#invoke:Protection banner|main}}</includeonly><noinclude> {{Documentation}} </noinclude>」)
- 2022年8月24日 (水) 10:27 AdminJP1 トーク 投稿記録 がページ「テンプレート:LangWithName」を作成しました (ページの作成:「<includeonly>{{#ifeq:{{{links|}}}|no |{{{2}}} |[[{{{2}}}]] }}: {{Lang|{{{1}}}|{{{3}}}}}</includeonly><noinclude> {{documentation}} </noinclude>」)
- 2022年8月24日 (水) 10:27 AdminJP1 トーク 投稿記録 がページ「テンプレート:Lang-en-short」を作成しました (ページの作成:「{{langWithName|en|{{#ifeq:{{{links|}}}|no|英|英語{{!}}英}}|{{{1|}}}|links={{{links|yes}}}}}<noinclude>{{pp-template}}{{Documentation|Template:Lang-en/doc}}</noinclude>」)
- 2022年8月24日 (水) 10:08 AdminJP1 トーク 投稿記録 がページ「PastelTune Entertainment」を作成しました (ページの作成:「{{基礎情報 非営利団体 |名称 = パステルチューン・エンタテインメント |ロゴ = 220px |画像 = |画像サイズ = |画像説明 = |創立者 = YUBA |団体種類 = 個人事業主 |設立 = 2021年8月29日 |所在地 = 和歌山県和歌山市 |緯度度 = |緯度分 = |緯度秒 = |経度度 = |経度分 = |経度秒 = |地図国コード = |起源 = |主要人物 = |活動…」)
- 2022年8月23日 (火) 22:55 AdminJP1 トーク 投稿記録 がページ「テンプレート:Infobox animanga character」を作成しました (ページの作成:「{{Infobox |name=Infobox animanga character |above={{ifempty|{{{name<includeonly>|</includeonly>}}}|{{PAGENAME}}}} |abovestyle=background: {{ifempty|{{{color|}}}|#DEDEE2}}; color: {{ifempty|{{{color text|}}}|#000}}; |subheader={{ #if: {{{series<includeonly>|</includeonly>}}} | {{{series}}}のキャラクター }} |image={{{image<includeonly>|</includeonly>}}} |caption={{{caption<includeonly>|</includeonly>}}} |headerstyle=background: {{ifempty|{{{color|}}}|#DEDEE2}};…」)
- 2022年8月23日 (火) 22:52 AdminJP1 トーク 投稿記録 が ファイル:Watasaki Sora.png の新しいバージョンをアップロードしました
- 2022年8月23日 (火) 22:41 AdminJP1 トーク 投稿記録 がページ「テンプレート:Main other」を作成しました (ページの作成:「{{#switch: <!--If no or empty "demospace" parameter then detect namespace--> {{#if:{{{demospace|}}} | {{lc: {{{demospace}}} }} <!--Use lower case "demospace"--> | {{#ifeq:{{NAMESPACE}}|{{ns:0}} | main | other }} }} | main = {{{1|}}} | other | #default = {{{2|}}} }}<noinclude> {{Documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>」)
- 2022年8月23日 (火) 22:26 AdminJP1 トーク 投稿記録 がページ「テンプレート:Free media」を作成しました (ページの作成:「{{file other <!-- Only categorize when on file (image) pages. --> | {{PAGENAME}} }}<noinclude> {{Documentation}} </noinclude>」)
- 2022年8月23日 (火) 22:25 AdminJP1 トーク 投稿記録 がページ「テンプレート:Yesno」を作成しました (ページの作成:「{{<includeonly>safesubst:</includeonly>#switch: {{<includeonly>safesubst:</includeonly>lc: {{{1|¬}}} }} |no |n |false |0 = {{{no|}}} | = {{{blank|{{{no|}}}}}} |¬ = {{{¬|}}} |yes |y |true |1 = {{{yes|yes}}} |#default = {{{def|{{{yes|yes}}}}}} }}<noinclude> {{Documentation}} </noinclude>」)
- 2022年8月23日 (火) 22:24 AdminJP1 トーク 投稿記録 がページ「テンプレート:Template other」を作成しました (ページの作成:「{{#switch: <!--If no or empty "demospace" parameter then detect namespace--> {{#if:{{{demospace|}}} | {{lc: {{{demospace}}} }} <!--Use lower case "demospace"--> | {{#ifeq:{{NAMESPACE}}|{{ns:Template}} | template | other }} }} | template = {{{1|}}} | other | #default = {{{2|}}} }}<!--End switch--><noinclude> {{documentation}} </noinclude>」)
- 2022年8月23日 (火) 22:24 AdminJP1 トーク 投稿記録 がページ「テンプレート:File other」を作成しました (ページの作成:「{{#switch: <!--If no or empty "demospace" parameter then detect namespace--> {{#if:{{{demospace|}}} | {{lc: {{{demospace}}} }} <!--Use lower case "demospace"--> | {{#ifeq:{{NAMESPACE}}|{{ns:6}} | file | other }} }} | file | image = {{{1|}}} | other | #default = {{{2|}}} }}<!--End switch--><noinclude> {{Documentation}} </noinclude>」)
- 2022年8月23日 (火) 22:23 AdminJP1 トーク 投稿記録 がページ「テンプレート:License migration」を作成しました (ページの作成:「{{#ifexpr:{{CURRENTTIMESTAMP}} > 20090615000000|<!-- -->{{#switch:{{#if:{{{migration|}}}|{{{migration|}}}|{{{1|}}}}} | complete | relicense = {{cc-by-sa-3.0-migrated|dw={{{dw|no}}}}}<!-- {{License migration complete|disclaimers={{{disclaimers|}}}|dw={{{dw|no}}}}} MGA73: Make more simple during test--> | not eligible | not-eligible = {{PAGENAME}}{{File other|Category:GFDLのみでライセンスされて…」)
- 2022年8月23日 (火) 22:22 AdminJP1 トーク 投稿記録 がページ「テンプレート:Cc-by-sa-layout」を作成しました (ページの作成:「<!--includeonly-->{| {{CC-Layout}} | style="width:90px;text-align:center;" rowspan="3" | 90px|link=|[[{{int:wm-license-cc-wiki-link}}]]<br>24px|link=|{{int:wm-license-cc-conditions-attribution-header}} 24px|link=|{{int:wm-license-cc-conditions-share_alike-header}} | lang="{{int:lang}}" | {{int:wm-license-cc-by-sa-{{{version|}}}{{#if:{{{country|}}}|-{{{country|}}}}}-text}} |…」)
- 2022年8月23日 (火) 22:20 AdminJP1 トーク 投稿記録 がページ「テンプレート:Cc-by-sa-4.0」を作成しました (ページの作成:「{{Cc-by-sa-layout |version=4.0 |country= |attribution={{{attribution|{{{1|}}}}}} }}<includeonly>{{#switch:{{NAMESPACE}}| #default=|{{ns:6}}=Category:クリエイティブ・コモンズ 表示 - 継承 4.0の画像{{yesno|{{{dw|}}}|yes=|no={{free media}}}}}}</includeonly><noinclude> {{Documentation|content= このライセンステンプレートが貼られた画像はCategory:クリエイティブ・コモンズ 表示 - 継承 4.0の画像にカテゴラ…」)
- 2022年8月23日 (火) 22:19 AdminJP1 トーク 投稿記録 がページ「テンプレート:GFDL」を作成しました (ページの作成:「<!-- comment to force linebreak --> <div class=metadata> {| border=0 cellpadding=4 cellspacing=4 style="width:100%; clear:both; border-collapse:collapse;margin:0.5em auto;border:3px solid #88A;background-color:#F7F8FF;font-size:90%" class="layouttemplate licensetpl" |- |rowspan=2|52px|GFDL |{{lang|en|Permission is granted to copy, distribute and/or modify this document under the terms of the '''Wikipedia:Text of GNU Free Documentati…」)
- 2022年8月23日 (火) 22:18 AdminJP1 トーク 投稿記録 がページ「テンプレート:Center」を作成しました (ページの作成:「<div class="center" style="width:auto; margin-left:auto; margin-right:auto">{{{content<includeonly>|{{{1}}}</includeonly>}}}</div><noinclude> {{PAGENAME}}</noinclude>」)
- 2022年8月23日 (火) 22:18 AdminJP1 トーク 投稿記録 がページ「テンプレート:Lang」を作成しました (ページの作成:「<includeonly><onlyinclude><span lang="{{{1}}}" xml:lang="{{{1}}}">{{{2}}}</span>{{#if:{{{3|}}}| <small>{{{3}}}</small>}}</onlyinclude></includeonly><noinclude> <nowiki><span lang="{{{1}}}" xml:lang="{{{1}}}">{{{2}}}</span></nowiki> {{Documentation}} <!-- Add Categories and Interwikis to the /doc subpage, NOT HERE! --> </noinclude>」)
- 2022年8月23日 (火) 22:17 AdminJP1 トーク 投稿記録 が ファイル:Watasaki Sora.png をアップロードしました
- 2022年8月23日 (火) 22:17 AdminJP1 トーク 投稿記録 がページ「ファイル:Watasaki Sora.png」を作成しました
- 2022年8月23日 (火) 22:17 AdminJP1 トーク 投稿記録 がページ「テンプレート:Self」を作成しました (ページの作成:「<includeonly><div class="metadata licensetpl_wrapper"> {| cellspacing="8" cellpadding="0" style="clear:both; margin:0.5em auto; {{#switch: {{lc:{{{1}}}}} |gfdl|gnu fdl|gfdl-ja|cc-zero|cc0=background-color:#f0f0f0; border:2px solid #e0e0e0; |#default= border: 1px solid #CC9; background-color: #F1F1DE; }}" | {{#switch: {{lc:{{{1}}}}} |gfdl|gnu fdl|gfdl-ja|cc-zero|cc0= <div style="text-align:center; font-style:italic">{{lang|en|'''{{#if: {{{author|}}}|{{{author}}}|I}}…」)
- 2022年8月23日 (火) 22:15 AdminJP1 トーク 投稿記録 がページ「MediaWiki:Licenses」を作成しました (ページの作成:「* subst:uwl|どのライセンスになるのか分かりません * subst:uwl|グーグルまたはどこかのウェブサイトから見つけてきたファイル * あなた自身が作った作品の場合: ** self|GFDL|cc-by-sa-4.0|自分の作品で、作者名表示は必要(GFDLおよびクリエイティブ・コモンズ4.0-表示-継承のデュアルライセンス) ** self|GFDL|cc-by-4.0|自分の作品で、作者名表示は必要(GFDLおよ…」)
- 2022年8月23日 (火) 22:12 AdminJP1 トーク 投稿記録 がページ「テンプレート:Accessdate/core」を作成しました (ページの作成:「{{#if:{{{isodate|}}} |{{#if:{{#ifeq:{{padleft:|5|{{{isodate}}}A}}|{{padleft:|4|{{{isodate}}}B}}年<!-- 和暦2桁を含む -->|1|{{#ifeq:{{padleft:|4|{{{isodate}}}A}}|{{padleft:|3|{{{isodate}}}B}}年<!-- 和暦1桁 -->|1|}}}} |{{{isodate}}}<!-- 要チェック 1、{{ISO date}}が認識できず「年」の漢字が付いている日付 --> |{{#iferror:{{#time:Y|{{{isodate}}}}} |{{{isodate}}}<!-- 要チェック 2、{{ISO date}}が認識できず「年」…」)
- 2022年8月23日 (火) 22:07 AdminJP1 トーク 投稿記録 がページ「VRpedia:Tagline」を作成しました (ページの作成:「{{#ifeq: {{NAMESPACENUMBER}} | 0 | 出典: フリー百科事典『VRペディア(VRpedia World)』 | }}」)
- 2022年8月23日 (火) 22:06 AdminJP1 トーク 投稿記録 がページ「MediaWiki:Tagline」を作成しました (ページの作成:「{{#ifeq: {{NAMESPACENUMBER}} | 0 | 出典: フリー百科事典『VRぺディア(VRpedia World)』 | }}」)
- 2022年8月23日 (火) 21:45 AdminJP1 トーク 投稿記録 がページ「テンプレート:URL」を作成しました (ページの作成:「<includeonly>{{#invoke:URL|url|1={{{1|}}}|2={{{2|}}}}}</includeonly><noinclude> {{Documentation}}</noinclude>」)
- 2022年8月23日 (火) 17:55 AdminJP1 トーク 投稿記録 がページ「パステルチューン・エンタテインメント」を作成しました (新規作成) タグ: ビジュアルエディター: 中途切替
- 2022年8月23日 (火) 17:46 AdminJP1 トーク 投稿記録 がページ「テンプレート:U」を作成しました (ページの作成:「<span style="text-decoration: {{ {{{|safesubst:}}}#if:{{{2|}}}|{{{2}}}|underline}};">{{{1}}}</span><noinclude>{{documentation}}</noinclude>」)
- 2022年8月23日 (火) 17:44 AdminJP1 トーク 投稿記録 がページ「テンプレート:Information」を作成しました (ページの作成:「<div class="hproduct"> {| summary="ファイルに関する情報(ファイルの内容、出典、著作権状況など)を記載した表。" class="toccolours vevent mbox-inside" style="width:100%; padding:5px;" cellpadding="2" ! {{#if:{{{Description|{{{description|}}}}}}|id="fileinfotpl_desc"}} class="fileinfo-paramfield" style="background:#ccf; text-align:right; vertical-align:top; padding-right:0.4em; width:20%" | ファイルの概要<span class="summary…」)
- 2022年8月23日 (火) 17:41 AdminJP1 トーク 投稿記録 が ファイル:PastelTune Entertainment logo.png をアップロードしました
- 2022年8月23日 (火) 17:41 AdminJP1 トーク 投稿記録 がページ「ファイル:PastelTune Entertainment logo.png」を作成しました
- 2022年8月23日 (火) 17:38 AdminJP1 トーク 投稿記録 がページ「モジュール:Wd」を作成しました (ページの作成:「-- Original module located at en:Module:Wd and en:Module:Wd/i18n. local p = {} local arg = ... local i18n local function loadI18n(aliasesP, frame) local title if frame then -- current module invoked by page/template, get its title from frame title = frame:getTitle() else -- current module included by other module, get its title from ... title = arg end if not i18n then i18n = require(title .. "/i18n").init(aliasesP) end end p.claimComm…」)
- 2022年8月23日 (火) 17:37 AdminJP1 トーク 投稿記録 がページ「テンプレート:Wikidata」を作成しました (ページの作成:「<includeonly>{{safesubst:#invoke:Wd|main}}</includeonly><noinclude> {{Documentation}}</noinclude>」)
- 2022年8月23日 (火) 17:33 AdminJP1 トーク 投稿記録 がページ「モジュール:EditAtWikidata」を作成しました (ページの作成:「-- Module to display an icon with a tooltip such as "Edit this at Wikidata". -- Icon will be linked to the Wikidata entry for the article where this is placed. -- This message is only displayed if a local_parameter is not supplied -- i.e. when called from a template, it can be coded not to display the message -- when a local parameter is in use, preventing the value form Wikidata being fetched. -- The qid of a Wikidata entry can optionally be supplied for testing ou…」)
- 2022年8月23日 (火) 17:32 AdminJP1 トーク 投稿記録 がページ「テンプレート:EditAtWikidata」を作成しました (ページの作成:「{{#invoke:EditAtWikidata |showMessage |qid={{{qid|}}} |pid={{{pid|}}} |nbsp={{{nbsp|}}} |{{{1|}}} }}<noinclude> {{Documentation}} </noinclude>」)
- 2022年8月23日 (火) 17:31 AdminJP1 トーク 投稿記録 がページ「テンプレート:Infobox/法人番号」を作成しました (ページの作成:「<includeonly>{{#switch: {{#if: {{{1|}}} | {{Ifnumber|1={{{1|}}}}} }} |= {{#if: {{Wikidata|property|raw|{{{from|}}}|P3225}}|[https://www.houjin-bangou.nta.go.jp/henkorireki-johoto.html?selHouzinNo={{Wikidata|property|raw|{{{from|}}}|P3225}} {{Wikidata|property|raw|{{{from|}}}|P3225}}]{{Wikidata|references|{{{from|}}}|P3225}}{{EditAtWikidata|qid={{{from|}}}|pid=P3225|{{{1|}}}}}}} |1= [https://www.houjin-bangou.nta.go.jp/henkorireki-johoto.html?selHouzinNo={{trim|{{{1}…」)