From 85bf603f9077b06111925337d1e86ba532d30e3d Mon Sep 17 00:00:00 2001
From: simon-ritchie Note: the document build script generates and updates this API document section automatically. Maybe this section is duplicated compared with previous sections. [Interface signature]
": " ・SVGTextクラスの座標の0の位置はテキストの下部からスタートします。そのためもしもy=0を指定した場合、テキストはほとんど見えない状態になります。
", # noqa
+ " ・SvgText's y-coordinate zero-position starts at the bottom of a text. So if you set y=0, a text becomes almost invisible.
": " ・SVGTextクラスの座標の0の位置はテキストの下部からスタートします。そのためもしもy=0を指定した場合、テキストはほとんど見えない状態になります。
", # noqa
##################################################
"**[Examples]**": "**[コードサンプル]**",
##################################################
- "```py\n>>> import apysc as ap\n>>> stage: ap.Stage = ap.Stage(\n... background_color=ap.Color(\"#333\"),\n... stage_width=200,\n... stage_height=50,\n... stage_elem_id=\"stage\",\n... )\n>>> svg_text: ap.SvgText = ap.SvgText(\n... text=\"Hello, world!\",\n... font_size=20,\n... fill_color=ap.Color(\"#0af\"),\n... )\n>>> svg_text.text\nString(\"Hello, world!\")\n\n>>> svg_text.font_size\nInt(20)\n\n>>> svg_text.fill_color\nColor(\"#00aaff\")\n```": "```py\n>>> import apysc as ap\n>>> stage: ap.Stage = ap.Stage(\n... background_color=ap.Color(\"#333\"),\n... stage_width=200,\n... stage_height=50,\n... stage_elem_id=\"stage\",\n... )\n>>> svg_text: ap.SvgText = ap.SvgText(\n... text=\"Hello, world!\",\n... font_size=20,\n... fill_color=ap.Color(\"#0af\"),\n... )\n>>> svg_text.text\nString(\"Hello, world!\")\n\n>>> svg_text.font_size\nInt(20)\n\n>>> svg_text.fill_color\nColor(\"#00aaff\")\n```", # noqa
+ '```py\n>>> import apysc as ap\n>>> stage: ap.Stage = ap.Stage(\n... background_color=ap.Color("#333"),\n... stage_width=200,\n... stage_height=50,\n... stage_elem_id="stage",\n... )\n>>> svg_text: ap.SvgText = ap.SvgText(\n... text="Hello, world!",\n... font_size=20,\n... fill_color=ap.Color("#0af"),\n... )\n>>> svg_text.text\nString("Hello, world!")\n\n>>> svg_text.font_size\nInt(20)\n\n>>> svg_text.fill_color\nColor("#00aaff")\n```': '```py\n>>> import apysc as ap\n>>> stage: ap.Stage = ap.Stage(\n... background_color=ap.Color("#333"),\n... stage_width=200,\n... stage_height=50,\n... stage_elem_id="stage",\n... )\n>>> svg_text: ap.SvgText = ap.SvgText(\n... text="Hello, world!",\n... font_size=20,\n... fill_color=ap.Color("#0af"),\n... )\n>>> svg_text.text\nString("Hello, world!")\n\n>>> svg_text.font_size\nInt(20)\n\n>>> svg_text.fill_color\nColor("#00aaff")\n```', # noqa
}
diff --git a/apysc/_translation/jp/svg_text_span.py b/apysc/_translation/jp/svg_text_span.py
index 1d168af5ed..a667873c39 100644
--- a/apysc/_translation/jp/svg_text_span.py
+++ b/apysc/_translation/jp/svg_text_span.py
@@ -23,103 +23,103 @@
##################################################
"The `SvgTextSpan` class constructor requires the `text` argument.": "`SvgTextSpan`クラスのコンストラクタには`text`引数を必要とします。", # noqa
##################################################
- "The constructor also accepts each font\'s and style\'s argument, such as the `font_size`, `font_family`, `fill_color`, and `bold`.": "コンストラクタでは`font_size`や`font_family`、`fill_color`、`bold`などの各スタイル設定の引数を受け付けます。", # noqa
+ "The constructor also accepts each font's and style's argument, such as the `font_size`, `font_family`, `fill_color`, and `bold`.": "コンストラクタでは`font_size`や`font_family`、`fill_color`、`bold`などの各スタイル設定の引数を受け付けます。", # noqa
##################################################
- "If you skip the style settings\' arguments, these settings become the parent SvgText\'s styles.": "もしもそれらのスタイル設定の引数指定を省略した場合、親のSVGTextのインスタンスのスタイルが反映されます。", # noqa
+ "If you skip the style settings' arguments, these settings become the parent SvgText's styles.": "もしもそれらのスタイル設定の引数指定を省略した場合、親のSVGTextのインスタンスのスタイルが反映されます。", # noqa
##################################################
"You can use `SvgTextSpan` instances to create an `SvgText` instance with the `create_with_svg_text_spans` class method.": "また、複数の`SvgTextSpan`のインスタンスを使って`SvgText`のインスタンスの作成するには`create_with_svg_text_spans`のクラスメソッドを使うことで対応ができます。", # noqa
##################################################
- "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[\n ap.SvgTextSpan(text=\"Lorem \"),\n ap.SvgTextSpan(text=\"ipsum \", font_size=20, fill_color=ap.Color(\"#0af\")),\n ap.SvgTextSpan(text=\"dolor \", font_size=12),\n ],\n fill_color=ap.Color(\"#aaa\"),\n font_size=16,\n x=20,\n y=32,\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_basic_usage/\")\n```": "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[\n ap.SvgTextSpan(text=\"Lorem \"),\n ap.SvgTextSpan(text=\"ipsum \", font_size=20, fill_color=ap.Color(\"#0af\")),\n ap.SvgTextSpan(text=\"dolor \", font_size=12),\n ],\n fill_color=ap.Color(\"#aaa\"),\n font_size=16,\n x=20,\n y=32,\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_basic_usage/\")\n```", # noqa
+ '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[\n ap.SvgTextSpan(text="Lorem "),\n ap.SvgTextSpan(text="ipsum ", font_size=20, fill_color=ap.Color("#0af")),\n ap.SvgTextSpan(text="dolor ", font_size=12),\n ],\n fill_color=ap.Color("#aaa"),\n font_size=16,\n x=20,\n y=32,\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_basic_usage/")\n```': '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[\n ap.SvgTextSpan(text="Lorem "),\n ap.SvgTextSpan(text="ipsum ", font_size=20, fill_color=ap.Color("#0af")),\n ap.SvgTextSpan(text="dolor ", font_size=12),\n ],\n fill_color=ap.Color("#aaa"),\n font_size=16,\n x=20,\n y=32,\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_basic_usage/")\n```', # noqa
##################################################
"## Notes of the line breaking": "## 改行に対する特記事項",
##################################################
"The `SvgTextSpan` class ignores line breaks.": "`SvgTextSpan`クラスは改行設定を無視します。",
##################################################
- "For instance, the following example\'s text contains a line break (`\n`), but the text line becomes a single line.": "例えば、以下の例では改行用の文字列(`\n`)を含んでいますがテキストの行は単一行になっています。", # noqa
+ "For instance, the following example's text contains a line break (`\n`), but the text line becomes a single line.": "例えば、以下の例では改行用の文字列(`\n`)を含んでいますがテキストの行は単一行になっています。", # noqa
##################################################
- "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[\n ap.SvgTextSpan(text=\"Lorem \n\"),\n ap.SvgTextSpan(text=\"ipsum \n\"),\n ap.SvgTextSpan(text=\"dolor\"),\n ],\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_notes_of_the_line_break/\")\n```": "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[\n ap.SvgTextSpan(text=\"Lorem \n\"),\n ap.SvgTextSpan(text=\"ipsum \n\"),\n ap.SvgTextSpan(text=\"dolor\"),\n ],\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_notes_of_the_line_break/\")\n```", # noqa
+ '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[\n ap.SvgTextSpan(text="Lorem \n"),\n ap.SvgTextSpan(text="ipsum \n"),\n ap.SvgTextSpan(text="dolor"),\n ],\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_notes_of_the_line_break/")\n```': '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[\n ap.SvgTextSpan(text="Lorem \n"),\n ap.SvgTextSpan(text="ipsum \n"),\n ap.SvgTextSpan(text="dolor"),\n ],\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_notes_of_the_line_break/")\n```', # noqa
##################################################
"If you want to add a line break, please use the `SvgText` class (not the `SvgTextSpan`) or create multiple `SvgText` instances.": "もしも改行を加えたい場合には`SvgTextSpan`クラスではなく`SvgText`クラスを使用するか、もしくは複数のインスタンスを作成して対応をお願いします。", # noqa
##################################################
"## text property interface example": "## text 属性のインターフェイス例",
##################################################
- "The `text` property updates or gets the instance\'s text.": "`text`属性ではインスタンスのテキストの更新もしくは取得を行えます。", # noqa
+ "The `text` property updates or gets the instance's text.": "`text`属性ではインスタンスのテキストの更新もしくは取得を行えます。", # noqa
##################################################
- "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.text = ap.String(\"dolor\")\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_text/\")\n```": "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.text = ap.String(\"dolor\")\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_text/\")\n```", # noqa
+ '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.text = ap.String("dolor")\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_text/")\n```': '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.text = ap.String("dolor")\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_text/")\n```', # noqa
##################################################
"## font_size property interface example": "## font_size 属性のインターフェイス例",
##################################################
- "The `font_size` property updates or gets the instance\'s font size.": "`font_size`属性ではインスタンスのフォントサイズの更新もしくは取得を行えます。", # noqa
+ "The `font_size` property updates or gets the instance's font size.": "`font_size`属性ではインスタンスのフォントサイズの更新もしくは取得を行えます。", # noqa
##################################################
- "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.font_size = ap.Int(25)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_font_size/\")\n```": "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.font_size = ap.Int(25)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_font_size/\")\n```", # noqa
+ '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.font_size = ap.Int(25)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_font_size/")\n```': '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.font_size = ap.Int(25)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_font_size/")\n```', # noqa
##################################################
"## font_family property interface example": "## font_family 属性のインターフェイス例",
##################################################
- "The `font_family` property updates or gets the instance\'s font family.": "`font_family`属性ではインスタンスのフォントファミリー(フォントの指定)の更新もしくは取得を行えます。", # noqa
+ "The `font_family` property updates or gets the instance's font family.": "`font_family`属性ではインスタンスのフォントファミリー(フォントの指定)の更新もしくは取得を行えます。", # noqa
##################################################
"This property requires an `Array` of each font name `String`.": "この属性は各フォント名の`String`型の文字列を格納した`Array`型の配列を必要とします。", # noqa
##################################################
- "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.font_family = ap.Array([ap.String(\"Impact\"), ap.String(\"Arial\")])\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_font_family/\")\n```": "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.font_family = ap.Array([ap.String(\"Impact\"), ap.String(\"Arial\")])\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_font_family/\")\n```", # noqa
+ '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.font_family = ap.Array([ap.String("Impact"), ap.String("Arial")])\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_font_family/")\n```': '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.font_family = ap.Array([ap.String("Impact"), ap.String("Arial")])\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_font_family/")\n```', # noqa
##################################################
"## fill_color property interface example": "## fill_color属性のインターフェイス例",
##################################################
- "The `fill_color` property updates or gets the instance\'s fill color:": "`fill_color`属性は塗りの色の値の更新もしくは取得を行えます:", # noqa
+ "The `fill_color` property updates or gets the instance's fill color:": "`fill_color`属性は塗りの色の値の更新もしくは取得を行えます:", # noqa
##################################################
- "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.fill_color = ap.Color(\"#0af\")\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_fill_color/\")\n```": "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.fill_color = ap.Color(\"#0af\")\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_fill_color/\")\n```", # noqa
+ '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.fill_color = ap.Color("#0af")\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_fill_color/")\n```': '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.fill_color = ap.Color("#0af")\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_fill_color/")\n```', # noqa
##################################################
"## fill_alpha property interface example": "## fill_alpha属性のインターフェイス例",
##################################################
- "The `fill_alpha` property updates or gets the instance\'s fill alpha (opacity):": "`fill_alpha`属性は塗りの透明度の値の更新もしくは取得を行えます:", # noqa
+ "The `fill_alpha` property updates or gets the instance's fill alpha (opacity):": "`fill_alpha`属性は塗りの透明度の値の更新もしくは取得を行えます:", # noqa
##################################################
- "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.fill_alpha = ap.Number(0.3)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_fill_alpha/\")\n```": "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.fill_alpha = ap.Number(0.3)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_fill_alpha/\")\n```", # noqa
+ '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.fill_alpha = ap.Number(0.3)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_fill_alpha/")\n```': '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.fill_alpha = ap.Number(0.3)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_fill_alpha/")\n```', # noqa
##################################################
"## line_color property interface example": "## line_color属性のインターフェイス例",
##################################################
- "The `line_color` property updates or gets the instance\'s line color:": "`line_color`属性では線の色の値の更新もしくは取得を行えます:", # noqa
+ "The `line_color` property updates or gets the instance's line color:": "`line_color`属性では線の色の値の更新もしくは取得を行えます:", # noqa
##################################################
- "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(\n text=\"Lorem \", line_thickness=1, font_size=20, bold=True\n)\ntext_span_1.line_color = ap.Color(\"#aaa\")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(\n text=\"ipsum\", line_thickness=1, font_size=20, bold=True\n)\ntext_span_2.line_color = ap.Color(\"#0af\")\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.COLORLESS,\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_line_color/\")\n```": "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(\n text=\"Lorem \", line_thickness=1, font_size=20, bold=True\n)\ntext_span_1.line_color = ap.Color(\"#aaa\")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(\n text=\"ipsum\", line_thickness=1, font_size=20, bold=True\n)\ntext_span_2.line_color = ap.Color(\"#0af\")\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.COLORLESS,\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_line_color/\")\n```", # noqa
+ '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(\n text="Lorem ", line_thickness=1, font_size=20, bold=True\n)\ntext_span_1.line_color = ap.Color("#aaa")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(\n text="ipsum", line_thickness=1, font_size=20, bold=True\n)\ntext_span_2.line_color = ap.Color("#0af")\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.COLORLESS,\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_line_color/")\n```': '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(\n text="Lorem ", line_thickness=1, font_size=20, bold=True\n)\ntext_span_1.line_color = ap.Color("#aaa")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(\n text="ipsum", line_thickness=1, font_size=20, bold=True\n)\ntext_span_2.line_color = ap.Color("#0af")\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.COLORLESS,\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_line_color/")\n```', # noqa
##################################################
"## line_alpha property interface example": "## line_alpha属性のインターフェイス例",
##################################################
- "The `line_alpha` property updates or gets the instance\'s line alpha (opacity):": "`line_alpha`属性では線の透明度の値の更新もしくは取得を行えます:", # noqa
+ "The `line_alpha` property updates or gets the instance's line alpha (opacity):": "`line_alpha`属性では線の透明度の値の更新もしくは取得を行えます:", # noqa
##################################################
- "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(\n text=\"Lorem \",\n line_color=ap.Color(\"#0af\"),\n line_thickness=1,\n font_size=20,\n bold=True,\n)\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(\n text=\"ipsum\",\n line_color=ap.Color(\"#0af\"),\n line_thickness=1,\n font_size=20,\n bold=True,\n)\ntext_span_2.line_alpha = ap.Number(0.3)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.COLORLESS,\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_line_alpha/\")\n```": "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(\n text=\"Lorem \",\n line_color=ap.Color(\"#0af\"),\n line_thickness=1,\n font_size=20,\n bold=True,\n)\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(\n text=\"ipsum\",\n line_color=ap.Color(\"#0af\"),\n line_thickness=1,\n font_size=20,\n bold=True,\n)\ntext_span_2.line_alpha = ap.Number(0.3)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.COLORLESS,\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_line_alpha/\")\n```", # noqa
+ '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(\n text="Lorem ",\n line_color=ap.Color("#0af"),\n line_thickness=1,\n font_size=20,\n bold=True,\n)\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(\n text="ipsum",\n line_color=ap.Color("#0af"),\n line_thickness=1,\n font_size=20,\n bold=True,\n)\ntext_span_2.line_alpha = ap.Number(0.3)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.COLORLESS,\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_line_alpha/")\n```': '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(\n text="Lorem ",\n line_color=ap.Color("#0af"),\n line_thickness=1,\n font_size=20,\n bold=True,\n)\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(\n text="ipsum",\n line_color=ap.Color("#0af"),\n line_thickness=1,\n font_size=20,\n bold=True,\n)\ntext_span_2.line_alpha = ap.Number(0.3)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.COLORLESS,\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_line_alpha/")\n```', # noqa
##################################################
"## line_thickness property interface example": "## line_thickness属性のインターフェイス例",
##################################################
- "The `line_thickness` property updates or gets the instance\'s line thickness (line width):": "`line_thickness`属性では線の幅の更新もしくは取得を行えます:", # noqa
+ "The `line_thickness` property updates or gets the instance's line thickness (line width):": "`line_thickness`属性では線の幅の更新もしくは取得を行えます:", # noqa
##################################################
- "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(\n text=\"Lorem \",\n line_color=ap.Color(\"#0af\"),\n font_size=20,\n bold=True,\n)\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(\n text=\"ipsum\",\n line_color=ap.Color(\"#0af\"),\n font_size=20,\n bold=True,\n)\ntext_span_1.line_thickness = ap.Int(3)\ntext_span_2.line_thickness = ap.Int(3)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.COLORLESS,\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_line_thickness/\")\n```": "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(\n text=\"Lorem \",\n line_color=ap.Color(\"#0af\"),\n font_size=20,\n bold=True,\n)\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(\n text=\"ipsum\",\n line_color=ap.Color(\"#0af\"),\n font_size=20,\n bold=True,\n)\ntext_span_1.line_thickness = ap.Int(3)\ntext_span_2.line_thickness = ap.Int(3)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.COLORLESS,\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_line_thickness/\")\n```", # noqa
+ '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(\n text="Lorem ",\n line_color=ap.Color("#0af"),\n font_size=20,\n bold=True,\n)\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(\n text="ipsum",\n line_color=ap.Color("#0af"),\n font_size=20,\n bold=True,\n)\ntext_span_1.line_thickness = ap.Int(3)\ntext_span_2.line_thickness = ap.Int(3)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.COLORLESS,\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_line_thickness/")\n```': '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(\n text="Lorem ",\n line_color=ap.Color("#0af"),\n font_size=20,\n bold=True,\n)\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(\n text="ipsum",\n line_color=ap.Color("#0af"),\n font_size=20,\n bold=True,\n)\ntext_span_1.line_thickness = ap.Int(3)\ntext_span_2.line_thickness = ap.Int(3)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.COLORLESS,\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_line_thickness/")\n```', # noqa
##################################################
"## bold property interface example": "## bold 属性のインターフェイス例",
##################################################
- "The `bold` property updates or gets the instance\'s `bold` text setting.": "`bold`属性ではインスタンスの太字設定の更新もしくは取得を行えます。", # noqa
+ "The `bold` property updates or gets the instance's `bold` text setting.": "`bold`属性ではインスタンスの太字設定の更新もしくは取得を行えます。", # noqa
##################################################
- "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.bold = ap.Boolean(True)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_bold/\")\n```": "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.bold = ap.Boolean(True)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_bold/\")\n```", # noqa
+ '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.bold = ap.Boolean(True)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_bold/")\n```': '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.bold = ap.Boolean(True)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_bold/")\n```', # noqa
##################################################
"## italic property interface example": "## italic 属性のインターフェイス例",
##################################################
- "The `italic` property updates or gets the instance\'s `italic` style setting.": "`italic`属性ではインスタンスの斜体の設定の更新もしくは取得を行えます。", # noqa
+ "The `italic` property updates or gets the instance's `italic` style setting.": "`italic`属性ではインスタンスの斜体の設定の更新もしくは取得を行えます。", # noqa
##################################################
- "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.italic = ap.Boolean(True)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_italic/\")\n```": "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.italic = ap.Boolean(True)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_italic/\")\n```", # noqa
+ '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.italic = ap.Boolean(True)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_italic/")\n```': '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.italic = ap.Boolean(True)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_italic/")\n```', # noqa
##################################################
"## delta_x property interface example": "## delta_x 属性のインターフェイス例",
##################################################
- "The `delta_x` property updates or gets the instance\'s delta-x (x-coordinate adjustment).": "`delta_x`属性ではインスタンスのX座標の調整値の更新もしくは取得を行えます。", # noqa
+ "The `delta_x` property updates or gets the instance's delta-x (x-coordinate adjustment).": "`delta_x`属性ではインスタンスのX座標の調整値の更新もしくは取得を行えます。", # noqa
##################################################
- "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.delta_x = ap.Number(-20)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_delta_x/\")\n```": "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=50,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum\")\ntext_span_2.delta_x = ap.Number(-20)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_delta_x/\")\n```", # noqa
+ '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.delta_x = ap.Number(-20)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_delta_x/")\n```': '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=50,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum")\ntext_span_2.delta_x = ap.Number(-20)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_delta_x/")\n```', # noqa
##################################################
"## delta_y property interface example": "## delta_y 属性のインターフェイス例",
##################################################
- "The `delta_y` property updates or gets the instance\'s delta-y (y-coordinate adjustment).": "`delta_y`属性ではインスタンスのY座標の調整値の更新もくしは取得を行えます。", # noqa
+ "The `delta_y` property updates or gets the instance's delta-y (y-coordinate adjustment).": "`delta_y`属性ではインスタンスのY座標の調整値の更新もくしは取得を行えます。", # noqa
##################################################
"Note: This setting inherits a y-coordinate from the previous `SvgTextSpan` instance.": "特記事項: この設定は直前の`SvgTextSpan`インスタンスの設定を引き継ぎます。", # noqa
##################################################
- "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=80,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum \")\ntext_span_3: ap.SvgTextSpan = ap.SvgTextSpan(text=\"dolar\")\n\ntext_span_2.delta_y = ap.Number(10)\ntext_span_3.delta_y = ap.Number(10)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_delta_y/\")\n```": "```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color(\"#333\"),\n stage_width=200,\n stage_height=80,\n stage_elem_id=\"stage\",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text=\"Lorem \")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text=\"ipsum \")\ntext_span_3: ap.SvgTextSpan = ap.SvgTextSpan(text=\"dolar\")\n\ntext_span_2.delta_y = ap.Number(10)\ntext_span_3.delta_y = ap.Number(10)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color(\"#aaa\"),\n)\n\nap.save_overall_html(dest_dir_path=\"svg_txt_span_delta_y/\")\n```", # noqa
+ '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=80,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum ")\ntext_span_3: ap.SvgTextSpan = ap.SvgTextSpan(text="dolar")\n\ntext_span_2.delta_y = ap.Number(10)\ntext_span_3.delta_y = ap.Number(10)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_delta_y/")\n```': '```py\n# runnable\nimport apysc as ap\n\nstage: ap.Stage = ap.Stage(\n background_color=ap.Color("#333"),\n stage_width=200,\n stage_height=80,\n stage_elem_id="stage",\n)\ntext_span_1: ap.SvgTextSpan = ap.SvgTextSpan(text="Lorem ")\ntext_span_2: ap.SvgTextSpan = ap.SvgTextSpan(text="ipsum ")\ntext_span_3: ap.SvgTextSpan = ap.SvgTextSpan(text="dolar")\n\ntext_span_2.delta_y = ap.Number(10)\ntext_span_3.delta_y = ap.Number(10)\n\nsvg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n text_spans=[text_span_1, text_span_2],\n font_size=16,\n x=20,\n y=32,\n fill_color=ap.Color("#aaa"),\n)\n\nap.save_overall_html(dest_dir_path="svg_txt_span_delta_y/")\n```', # noqa
##################################################
"## SvgTextSpan constructor API": "## SvgTextSpan クラスのコンストラクタのAPI",
##################################################
- "Note: the document build script generates and updates this API document section automatically. Maybe this section is duplicated compared with previous sections.": "特記事項: このAPIドキュメントはドキュメントビルド用のスクリプトによって自動で生成・同期されています。そのためもしかしたらこの節の内容は前節までの内容と重複している場合があります。", # noqa
+ 'Note: the document build script generates and updates this API document section automatically. Maybe this section is duplicated compared with previous sections.': '特記事項: このAPIドキュメントはドキュメントビルド用のスクリプトによって自動で生成・同期されています。そのためもしかしたらこの節の内容は前節までの内容と重複している場合があります。', # noqa
##################################################
"**[Interface summary]**": "**[インターフェイス概要]**",
##################################################
@@ -169,11 +169,11 @@
##################################################
"- `delta_x`: Union[float, Number], optional": "- `delta_x`: Union[float, Number], optional", # noqa
##################################################
- " - A coordinate delta-x setting. Notes: This setting also changes a coordinate of subsequent `SvgTextSpan`\'s instance.": " - X座標の調整値の設定。特記事項 : この設定は後に続く`SvgTextSpan`のインスタンスの座標も変更します。", # noqa
+ " - A coordinate delta-x setting. Notes: This setting also changes a coordinate of subsequent `SvgTextSpan`'s instance.": " - X座標の調整値の設定。特記事項 : この設定は後に続く`SvgTextSpan`のインスタンスの座標も変更します。", # noqa
##################################################
"- `delta_y`: Union[float, Number], optional": "- `delta_y`: Union[float, Number], optional", # noqa
##################################################
- " - A coordinate delta-y setting. Notes: This setting also changes a coordinate of subsequent `SvgTextSpan`\'s instance.": " - Y座標の調整値の設定。特記事項 : この設定は後に続く`SvgTextSpan`のインスタンスの座標も更新します。", # noqa
+ " - A coordinate delta-y setting. Notes: This setting also changes a coordinate of subsequent `SvgTextSpan`'s instance.": " - Y座標の調整値の設定。特記事項 : この設定は後に続く`SvgTextSpan`のインスタンスの座標も更新します。", # noqa
##################################################
"- `variable_name_suffix`: str, optional": "- `variable_name_suffix`: str, optional", # noqa
##################################################
@@ -187,7 +187,7 @@
##################################################
"**[Examples]**": "**[コードサンプル]**",
##################################################
- "```py\n>>> import apysc as ap\n>>> stage: ap.Stage = ap.Stage(\n... background_color=ap.Color(\"#333\"), stage_width=200, stage_height=50\n... )\n>>> svg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n... text_spans=[\n... ap.SvgTextSpan(text=\"Hello, \"),\n... ap.SvgTextSpan(text=\"Hello, \", font_size=14),\n... ],\n... font_size=20,\n... fill_color=ap.Color(\"#0af\"),\n... )\n```": "```py\n>>> import apysc as ap\n>>> stage: ap.Stage = ap.Stage(\n... background_color=ap.Color(\"#333\"), stage_width=200, stage_height=50\n... )\n>>> svg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n... text_spans=[\n... ap.SvgTextSpan(text=\"Hello, \"),\n... ap.SvgTextSpan(text=\"Hello, \", font_size=14),\n... ],\n... font_size=20,\n... fill_color=ap.Color(\"#0af\"),\n... )\n```", # noqa
+ '```py\n>>> import apysc as ap\n>>> stage: ap.Stage = ap.Stage(\n... background_color=ap.Color("#333"), stage_width=200, stage_height=50\n... )\n>>> svg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n... text_spans=[\n... ap.SvgTextSpan(text="Hello, "),\n... ap.SvgTextSpan(text="Hello, ", font_size=14),\n... ],\n... font_size=20,\n... fill_color=ap.Color("#0af"),\n... )\n```': '```py\n>>> import apysc as ap\n>>> stage: ap.Stage = ap.Stage(\n... background_color=ap.Color("#333"), stage_width=200, stage_height=50\n... )\n>>> svg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n... text_spans=[\n... ap.SvgTextSpan(text="Hello, "),\n... ap.SvgTextSpan(text="Hello, ", font_size=14),\n... ],\n... font_size=20,\n... fill_color=ap.Color("#0af"),\n... )\n```', # noqa
##################################################
"
": "
",
##################################################
@@ -197,7 +197,7 @@
##################################################
"## SvgText create_with_svg_text_spans class method API": "## SvgText クラスの create_with_svg_text_spans クラスメソッドのAPI", # noqa
##################################################
- "Note: the document build script generates and updates this API document section automatically. Maybe this section is duplicated compared with previous sections.": "特記事項: このAPIドキュメントはドキュメントビルド用のスクリプトによって自動で生成・同期されています。そのためもしかしたらこの節の内容は前節までの内容と重複している場合があります。", # noqa
+ 'Note: the document build script generates and updates this API document section automatically. Maybe this section is duplicated compared with previous sections.': '特記事項: このAPIドキュメントはドキュメントビルド用のスクリプトによって自動で生成・同期されています。そのためもしかしたらこの節の内容は前節までの内容と重複している場合があります。', # noqa
##################################################
"**[Interface summary]**": "**[インターフェイス概要]**",
##################################################
@@ -281,11 +281,11 @@
##################################################
"**[Notes]**": "**[特記事項]**",
##################################################
- " ・SvgText\'s y-coordinate zero-position starts at the bottom of a text. So if you set y=0, a text becomes almost invisible.
": " ・SVGTextクラスの座標の0の位置はテキストの下部からスタートします。そのためもしもy=0を指定した場合、テキストはほとんど見えない状態になります。
", # noqa
+ " ・SvgText's y-coordinate zero-position starts at the bottom of a text. So if you set y=0, a text becomes almost invisible.
": " ・SVGTextクラスの座標の0の位置はテキストの下部からスタートします。そのためもしもy=0を指定した場合、テキストはほとんど見えない状態になります。
", # noqa
##################################################
"**[Examples]**": "**[コードサンプル]**",
##################################################
- "```py\n>>> import apysc as ap\n>>> stage: ap.Stage = ap.Stage(\n... background_color=ap.Color(\"#333\"),\n... stage_width=200,\n... stage_height=50,\n... )\n>>> svg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n... text_spans=[\n... ap.SvgTextSpan(text=\"Hello, \"),\n... ap.SvgTextSpan(text=\"Hello, \", font_size=14),\n... ],\n... font_size=20,\n... fill_color=ap.Color(\"#0af\"),\n... )\n```": "```py\n>>> import apysc as ap\n>>> stage: ap.Stage = ap.Stage(\n... background_color=ap.Color(\"#333\"),\n... stage_width=200,\n... stage_height=50,\n... )\n>>> svg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n... text_spans=[\n... ap.SvgTextSpan(text=\"Hello, \"),\n... ap.SvgTextSpan(text=\"Hello, \", font_size=14),\n... ],\n... font_size=20,\n... fill_color=ap.Color(\"#0af\"),\n... )\n```", # noqa
+ '```py\n>>> import apysc as ap\n>>> stage: ap.Stage = ap.Stage(\n... background_color=ap.Color("#333"),\n... stage_width=200,\n... stage_height=50,\n... )\n>>> svg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n... text_spans=[\n... ap.SvgTextSpan(text="Hello, "),\n... ap.SvgTextSpan(text="Hello, ", font_size=14),\n... ],\n... font_size=20,\n... fill_color=ap.Color("#0af"),\n... )\n```': '```py\n>>> import apysc as ap\n>>> stage: ap.Stage = ap.Stage(\n... background_color=ap.Color("#333"),\n... stage_width=200,\n... stage_height=50,\n... )\n>>> svg_text: ap.SvgText = ap.SvgText.create_with_svg_text_spans(\n... text_spans=[\n... ap.SvgTextSpan(text="Hello, "),\n... ap.SvgTextSpan(text="Hello, ", font_size=14),\n... ],\n... font_size=20,\n... fill_color=ap.Color("#0af"),\n... )\n```', # noqa
##################################################
"
": "
",
##################################################
diff --git a/apysc/_type/any_value.py b/apysc/_type/any_value.py
index d7ff3c3a87..e6a29a3dba 100644
--- a/apysc/_type/any_value.py
+++ b/apysc/_type/any_value.py
@@ -14,8 +14,10 @@
from apysc._type.revert_mixin import RevertMixIn
from apysc._type.to_string_mixin import ToStringMixIn
from apysc._type.variable_name_mixin import VariableNameMixIn
+from apysc._type.variable_name_suffix_attr_or_var_mixin import (
+ VariableNameSuffixAttrOrVarMixIn,
+)
from apysc._type.variable_name_suffix_mixin import VariableNameSuffixMixIn
-from apysc._type.variable_name_suffix_attr_or_var_mixin import VariableNameSuffixAttrOrVarMixIn
from apysc._validation import arg_validation_decos
diff --git a/apysc/_type/array.py b/apysc/_type/array.py
index 2682329035..888977d043 100644
--- a/apysc/_type/array.py
+++ b/apysc/_type/array.py
@@ -27,9 +27,11 @@
from apysc._type.string import String
from apysc._type.to_string_mixin import ToStringMixIn
from apysc._type.variable_name_mixin import VariableNameMixIn
+from apysc._type.variable_name_suffix_attr_or_var_mixin import (
+ VariableNameSuffixAttrOrVarMixIn,
+)
from apysc._type.variable_name_suffix_mixin import VariableNameSuffixMixIn
from apysc._validation import arg_validation_decos
-from apysc._type.variable_name_suffix_attr_or_var_mixin import VariableNameSuffixAttrOrVarMixIn
_ArrValue = TypeVar("_ArrValue")
diff --git a/apysc/_type/boolean.py b/apysc/_type/boolean.py
index 2fc3fe6cf0..99f5966f1f 100644
--- a/apysc/_type/boolean.py
+++ b/apysc/_type/boolean.py
@@ -23,9 +23,11 @@
from apysc._type.to_number_mixin import ToNumberMixIn
from apysc._type.to_string_mixin import ToStringMixIn
from apysc._type.variable_name_mixin import VariableNameMixIn
+from apysc._type.variable_name_suffix_attr_or_var_mixin import (
+ VariableNameSuffixAttrOrVarMixIn,
+)
from apysc._type.variable_name_suffix_mixin import VariableNameSuffixMixIn
from apysc._validation import arg_validation_decos
-from apysc._type.variable_name_suffix_attr_or_var_mixin import VariableNameSuffixAttrOrVarMixIn
class Boolean(
diff --git a/apysc/_type/dictionary.py b/apysc/_type/dictionary.py
index 9354e2a09d..e470f3a2bf 100644
--- a/apysc/_type/dictionary.py
+++ b/apysc/_type/dictionary.py
@@ -27,9 +27,11 @@
from apysc._type.revert_mixin import RevertMixIn
from apysc._type.string import String
from apysc._type.variable_name_mixin import VariableNameMixIn
+from apysc._type.variable_name_suffix_attr_or_var_mixin import (
+ VariableNameSuffixAttrOrVarMixIn,
+)
from apysc._type.variable_name_suffix_mixin import VariableNameSuffixMixIn
from apysc._validation import arg_validation_decos
-from apysc._type.variable_name_suffix_attr_or_var_mixin import VariableNameSuffixAttrOrVarMixIn
DefaultType = TypeVar("DefaultType")
_BuiltinKeys = Union[str, int, float]
diff --git a/apysc/_type/false.py b/apysc/_type/false.py
index a7a6576d87..822bfdf378 100644
--- a/apysc/_type/false.py
+++ b/apysc/_type/false.py
@@ -25,8 +25,6 @@ def __init__(self) -> None:
- True_ and False_ constants
- https://simon-ritchie.github.io/apysc/en/true_and_false.html
"""
- suffix: str = self._get_attr_or_variable_name_suffix(
- value_identifier="false"
- )
+ suffix: str = self._get_attr_or_variable_name_suffix(value_identifier="false")
super(_False, self).__init__(value=False, variable_name_suffix=suffix)
diff --git a/apysc/_type/int.py b/apysc/_type/int.py
index b9945f2ae6..24369b9dad 100644
--- a/apysc/_type/int.py
+++ b/apysc/_type/int.py
@@ -15,9 +15,11 @@
from apysc._type.to_hex_mixin import ToHexMixIn
from apysc._type.to_number_mixin import ToNumberMixIn
from apysc._type.to_string_mixin import ToStringMixIn
-from apysc._validation import arg_validation_decos
+from apysc._type.variable_name_suffix_attr_or_var_mixin import (
+ VariableNameSuffixAttrOrVarMixIn,
+)
from apysc._type.variable_name_suffix_mixin import VariableNameSuffixMixIn
-from apysc._type.variable_name_suffix_attr_or_var_mixin import VariableNameSuffixAttrOrVarMixIn
+from apysc._validation import arg_validation_decos
class Int(
diff --git a/apysc/_type/number.py b/apysc/_type/number.py
index e533f611f9..8161697c00 100644
--- a/apysc/_type/number.py
+++ b/apysc/_type/number.py
@@ -15,9 +15,11 @@
from apysc._type.to_fixed_mixin import ToFixedMixIn
from apysc._type.to_hex_mixin import ToHexMixIn
from apysc._type.to_string_mixin import ToStringMixIn
-from apysc._validation import arg_validation_decos
+from apysc._type.variable_name_suffix_attr_or_var_mixin import (
+ VariableNameSuffixAttrOrVarMixIn,
+)
from apysc._type.variable_name_suffix_mixin import VariableNameSuffixMixIn
-from apysc._type.variable_name_suffix_attr_or_var_mixin import VariableNameSuffixAttrOrVarMixIn
+from apysc._validation import arg_validation_decos
class Number(
diff --git a/apysc/_type/string.py b/apysc/_type/string.py
index f482ac49a0..5ea3179be2 100644
--- a/apysc/_type/string.py
+++ b/apysc/_type/string.py
@@ -31,9 +31,11 @@
from apysc._type.string_zfill_mixin import StringZfillMixIn
from apysc._type.to_number_mixin import ToNumberMixIn
from apysc._type.variable_name_mixin import VariableNameMixIn
+from apysc._type.variable_name_suffix_attr_or_var_mixin import (
+ VariableNameSuffixAttrOrVarMixIn,
+)
from apysc._type.variable_name_suffix_mixin import VariableNameSuffixMixIn
from apysc._validation import arg_validation_decos
-from apysc._type.variable_name_suffix_attr_or_var_mixin import VariableNameSuffixAttrOrVarMixIn
class String(
diff --git a/apysc/_type/true.py b/apysc/_type/true.py
index 5048b3849e..1f239eb207 100644
--- a/apysc/_type/true.py
+++ b/apysc/_type/true.py
@@ -25,8 +25,6 @@ def __init__(self) -> None:
- True_ and False_ constants
- https://simon-ritchie.github.io/apysc/en/true_and_false.html
"""
- suffix: str = self._get_attr_or_variable_name_suffix(
- value_identifier="true"
- )
+ suffix: str = self._get_attr_or_variable_name_suffix(value_identifier="true")
super(_True, self).__init__(value=True, variable_name_suffix=suffix)
diff --git a/docs/en/enter_frame.html b/docs/en/enter_frame.html
index 5c74b9f307..0835a188f5 100644
--- a/docs/en/enter_frame.html
+++ b/docs/en/enter_frame.html
@@ -117,7 +117,7 @@ See also¶
enter_frame(self, handler: Callable[[apysc._event.enter_frame_event.EnterFrameEvent, ~_Options], NoneType], *, fps: apysc._time.fps.FPS = <FPS.FPS_60: <apysc._time.fps.FPSDefinition object at 0x7fc97c13cb80>>, options: Union[~_Options, NoneType] = None) -> None
[Interface signature] enter_frame(self, handler: Callable[[apysc._event.enter_frame_event.EnterFrameEvent, ~_Options], NoneType], *, fps: apysc._time.fps.FPS = <FPS.FPS_60: <apysc._time.fps.FPSDefinition object at 0x7fc88d17f040>>, options: Union[~_Options, NoneType] = None) -> None
[Interface summary]
Add an enter frame event listener setting.
[Parameters]
diff --git a/docs/en/searchindex.js b/docs/en/searchindex.js index c628e54989..4350aab05c 100644 --- a/docs/en/searchindex.js +++ b/docs/en/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["about_handler_options_type", "add_child_and_remove_child", "add_debug_info_setting", "animation_base_start", "animation_base_target", "animation_complete", "animation_delay", "animation_duration", "animation_event", "animation_fill_alpha", "animation_fill_color", "animation_finish", "animation_interfaces_abstract", "animation_line_alpha", "animation_line_color", "animation_line_thickness", "animation_method_chaining", "animation_move", "animation_parallel", "animation_pause_and_play", "animation_radius", "animation_reset", "animation_return_value", "animation_reverse", "animation_rotation_around_center", "animation_rotation_around_point", "animation_scale_x_and_y_from_center", "animation_scale_x_and_y_from_point", "animation_time", "animation_width_and_height", "animation_x", "animation_y", "append_js_expression", "array", "array_append_and_push", "array_clear", "array_comparison", "array_extend_and_concat", "array_index_of", "array_insert_and_insert_at", "array_join", "array_last_value", "array_length", "array_pop", "array_remove_and_remove_at", "array_reverse", "array_slice", "array_sort", "assert_arrays_equal_and_arrays_not_equal", "assert_defined_and_undefined", "assert_dicts_equal_and_dicts_not_equal", "assert_equal_and_not_equal", "assert_greater_and_greater_equal", "assert_less_and_less_equal", "assert_true_and_false", "assertion_basic_behavior", "bind_and_trigger_custom_event", "blue_color", "boolean", "branch_instruction_variables_reverting_setting", "circle", "click", "color", "color_from_rgb", "colorless", "colors", "contains", "continue", "datetime", "datetime_day", "datetime_hour", "datetime_millisecond", "datetime_minute", "datetime_month", "datetime_now", "datetime_second", "datetime_set_month_end", "datetime_weekday_js_and_weekday_py", "datetime_year", "dblclick", "delete", "dictionary", "dictionary_generic", "dictionary_get", "dictionary_length", "display_object", "display_object_and_graphics_base_prop_abstract", "display_object_get_and_set_css", "display_object_mouse_event", "display_object_parent", "display_object_visible", "display_object_x_and_y", "display_on_colaboratory", "display_on_jupyter", "draw_interfaces_abstract", "easing_enum", "elif", "ellipse", "else", "enter_frame", "event_prevent_default_and_stop_propagation", "for_array_indices", "for_array_indices_and_values", "for_array_values", "for_dict_keys", "for_dict_keys_and_values", "for_dict_values", "fps", "fundamental_data_classes_value_interface", "get_bounds", "get_child_at", "graphics", "graphics_base_fill_alpha", "graphics_base_fill_color", "graphics_base_flip_interfaces", "graphics_base_line_alpha", "graphics_base_line_color", "graphics_base_line_dash_dot_setting", "graphics_base_line_dash_setting", "graphics_base_line_dot_setting", "graphics_base_line_round_dot_setting", "graphics_base_line_thickness", "graphics_base_rotation_around_center", "graphics_base_rotation_around_point", "graphics_base_scale_from_center", "graphics_base_scale_from_point", "graphics_base_skew", "graphics_begin_fill", "graphics_clear", "graphics_draw_circle", "graphics_draw_dash_dotted_line", "graphics_draw_dashed_line", "graphics_draw_dotted_line", "graphics_draw_ellipse", "graphics_draw_line", "graphics_draw_path", "graphics_draw_polygon", "graphics_draw_rect", "graphics_draw_round_dotted_line", "graphics_draw_round_rect", "graphics_draw_triangle", "graphics_line_style", "graphics_move_to_and_line_to", "green_color", "if", "import_conventions", "index", "int_and_number", "int_and_number_arithmetic_operations", "int_and_number_comparison_operations", "int_and_number_to_fixed", "int_and_number_to_hex", "line", "material_design_colors", "material_icon", "math_clamp", "math_max", "math_min", "math_trunc", "mouse_event_abstract", "mouse_event_basic", "mousedown_and_mouseup", "mousemove", "mouseover_and_mouseout", "multi_line_text", "num_children", "path", "path_bezier_2d", "path_bezier_2d_continual", "path_bezier_3d", "path_bezier_3d_continual", "path_close", "path_horizontal", "path_line_to", "path_move_to", "path_vertical", "point2d", "polygon", "polyline", "quick_start", "range", "recommended_type_checker_settings", "rectangle", "rectangle_geom", "red_color", "remove_children", "return", "save_overall_html", "sequential_animation", "set_debug_mode", "sprite", "stage", "string", "string_addition_and_multiplication", "string_apply_max_num_of_decimal_places", "string_comparison_operations", "string_length", "string_lower", "string_lstrip", "string_rstrip", "string_slice", "string_split", "string_strip", "string_upper", "string_zfill", "svg_mask", "svg_text", "svg_text_span", "text_align", "text_align_last", "text_bold", "text_fill_alpha", "text_fill_color", "text_font_size", "text_italic", "text_line_height", "text_underline", "timedelta", "timedelta_days", "timedelta_total_seconds", "timer", "timer_complete", "timer_delay", "timer_event", "timer_repeat_count", "timer_reset", "timer_start_and_stop", "to_string", "trace", "triangle", "true_and_false", "unbind_enter_frame_and_unbind_enter_frame_all", "unset_debug_mode", "variable_name_suffix", "what_apysc_can_do", "why_apysc_doesnt_use_python_builtin_data_type"], "filenames": ["about_handler_options_type.md", "add_child_and_remove_child.md", "add_debug_info_setting.md", "animation_base_start.md", "animation_base_target.md", "animation_complete.md", "animation_delay.md", "animation_duration.md", "animation_event.md", "animation_fill_alpha.md", "animation_fill_color.md", "animation_finish.md", "animation_interfaces_abstract.md", "animation_line_alpha.md", "animation_line_color.md", "animation_line_thickness.md", "animation_method_chaining.md", "animation_move.md", "animation_parallel.md", "animation_pause_and_play.md", "animation_radius.md", "animation_reset.md", "animation_return_value.md", "animation_reverse.md", "animation_rotation_around_center.md", "animation_rotation_around_point.md", "animation_scale_x_and_y_from_center.md", "animation_scale_x_and_y_from_point.md", "animation_time.md", "animation_width_and_height.md", "animation_x.md", "animation_y.md", "append_js_expression.md", "array.md", "array_append_and_push.md", "array_clear.md", "array_comparison.md", "array_extend_and_concat.md", "array_index_of.md", "array_insert_and_insert_at.md", "array_join.md", "array_last_value.md", "array_length.md", "array_pop.md", "array_remove_and_remove_at.md", "array_reverse.md", "array_slice.md", "array_sort.md", "assert_arrays_equal_and_arrays_not_equal.md", "assert_defined_and_undefined.md", "assert_dicts_equal_and_dicts_not_equal.md", "assert_equal_and_not_equal.md", "assert_greater_and_greater_equal.md", "assert_less_and_less_equal.md", "assert_true_and_false.md", "assertion_basic_behavior.md", "bind_and_trigger_custom_event.md", "blue_color.md", "boolean.md", "branch_instruction_variables_reverting_setting.md", "circle.md", "click.md", "color.md", "color_from_rgb.md", "colorless.md", "colors.md", "contains.md", "continue.md", "datetime.md", "datetime_day.md", "datetime_hour.md", "datetime_millisecond.md", "datetime_minute.md", "datetime_month.md", "datetime_now.md", "datetime_second.md", "datetime_set_month_end.md", "datetime_weekday_js_and_weekday_py.md", "datetime_year.md", "dblclick.md", "delete.md", "dictionary.md", "dictionary_generic.md", "dictionary_get.md", "dictionary_length.md", "display_object.md", "display_object_and_graphics_base_prop_abstract.md", "display_object_get_and_set_css.md", "display_object_mouse_event.md", "display_object_parent.md", "display_object_visible.md", "display_object_x_and_y.md", "display_on_colaboratory.md", "display_on_jupyter.md", "draw_interfaces_abstract.md", "easing_enum.md", "elif.md", "ellipse.md", "else.md", "enter_frame.md", "event_prevent_default_and_stop_propagation.md", "for_array_indices.md", "for_array_indices_and_values.md", "for_array_values.md", "for_dict_keys.md", "for_dict_keys_and_values.md", "for_dict_values.md", "fps.md", "fundamental_data_classes_value_interface.md", "get_bounds.md", "get_child_at.md", "graphics.md", "graphics_base_fill_alpha.md", "graphics_base_fill_color.md", "graphics_base_flip_interfaces.md", "graphics_base_line_alpha.md", "graphics_base_line_color.md", "graphics_base_line_dash_dot_setting.md", "graphics_base_line_dash_setting.md", "graphics_base_line_dot_setting.md", "graphics_base_line_round_dot_setting.md", "graphics_base_line_thickness.md", "graphics_base_rotation_around_center.md", "graphics_base_rotation_around_point.md", "graphics_base_scale_from_center.md", "graphics_base_scale_from_point.md", "graphics_base_skew.md", "graphics_begin_fill.md", "graphics_clear.md", "graphics_draw_circle.md", "graphics_draw_dash_dotted_line.md", "graphics_draw_dashed_line.md", "graphics_draw_dotted_line.md", "graphics_draw_ellipse.md", "graphics_draw_line.md", "graphics_draw_path.md", "graphics_draw_polygon.md", "graphics_draw_rect.md", "graphics_draw_round_dotted_line.md", "graphics_draw_round_rect.md", "graphics_draw_triangle.md", "graphics_line_style.md", "graphics_move_to_and_line_to.md", "green_color.md", "if.md", "import_conventions.md", "index.md", "int_and_number.md", "int_and_number_arithmetic_operations.md", "int_and_number_comparison_operations.md", "int_and_number_to_fixed.md", "int_and_number_to_hex.md", "line.md", "material_design_colors.md", "material_icon.md", "math_clamp.md", "math_max.md", "math_min.md", "math_trunc.md", "mouse_event_abstract.md", "mouse_event_basic.md", "mousedown_and_mouseup.md", "mousemove.md", "mouseover_and_mouseout.md", "multi_line_text.md", "num_children.md", "path.md", "path_bezier_2d.md", "path_bezier_2d_continual.md", "path_bezier_3d.md", "path_bezier_3d_continual.md", "path_close.md", "path_horizontal.md", "path_line_to.md", "path_move_to.md", "path_vertical.md", "point2d.md", "polygon.md", "polyline.md", "quick_start.md", "range.md", "recommended_type_checker_settings.md", "rectangle.md", "rectangle_geom.md", "red_color.md", "remove_children.md", "return.md", "save_overall_html.md", "sequential_animation.md", "set_debug_mode.md", "sprite.md", "stage.md", "string.md", "string_addition_and_multiplication.md", "string_apply_max_num_of_decimal_places.md", "string_comparison_operations.md", "string_length.md", "string_lower.md", "string_lstrip.md", "string_rstrip.md", "string_slice.md", "string_split.md", "string_strip.md", "string_upper.md", "string_zfill.md", "svg_mask.md", "svg_text.md", "svg_text_span.md", "text_align.md", "text_align_last.md", "text_bold.md", "text_fill_alpha.md", "text_fill_color.md", "text_font_size.md", "text_italic.md", "text_line_height.md", "text_underline.md", "timedelta.md", "timedelta_days.md", "timedelta_total_seconds.md", "timer.md", "timer_complete.md", "timer_delay.md", "timer_event.md", "timer_repeat_count.md", "timer_reset.md", "timer_start_and_stop.md", "to_string.md", "trace.md", "triangle.md", "true_and_false.md", "unbind_enter_frame_and_unbind_enter_frame_all.md", "unset_debug_mode.md", "variable_name_suffix.md", "what_apysc_can_do.md", "why_apysc_doesnt_use_python_builtin_data_type.md"], "titles": ["About the handler options\u2019 type", "add_child and remove_child interfaces", "add_debug_info_setting decorator interface", "AnimationBase class start interface", "AnimationBase class target property interface", "AnimationBase class animation_complete interface", "Animation interfaces delay setting", "Animation interfaces duration setting", "AnimationEvent class", "animation_fill_alpha interface", "animation_fill_color interface", "animation_finish interface", "Animation interfaces abstract", "animation_line_alpha interface", "animation_line_color interface", "animation_line_thickness interface", "AnimationBase class interfaces method chaining", "animation_move interface", "animation_parallel interface", "animation_pause and animation_play interfaces", "animation_radius interface", "animation_reset interface", "Each animation interface return value", "animation_reverse interface", "animation_rotation_around_center interface", "animation_rotation_around_point interface", "animation_scale_x_from_center and animation_scale_y_from_center interfaces", "animation_scale_x_from_point and animation_scale_y_from_point interfaces", "animation_time interface", "animation_width and animation_height interfaces", "animation_x interface", "animation_y interface", "append_js_expression interface", "Array class", "Array class append and push interfaces", "Array class clear interface", "Array class comparison interfaces", "Array class extend and concat interfaces", "Array class index_of interface", "Array class insert and insert_at interfaces", "Array class join interface", "Array class last_value property", "Array class length interface", "Array class pop interface", "Array class remove and remove_at interfaces", "Array class reverse interface", "Array class slice interface", "Array class sort interface", "assert_arrays_equal and assert_arrays_not_equal interfaces", "assert_defined and assert_undefined interfaces", "assert_dicts_equal and assert_dicts_not_equal interfaces", "assert_equal and assert_not_equal interfaces", "assert_greater and assert_greater_equal interfaces", "assert_less and assert_less_equal interfaces", "assert_true and assert_false interfaces", "JavaScript assertion interface basic behaviors", "Bind and trigger the custom event", "Color class blue_color property", "Boolean class", "Each branch instruction class\u2019s scope variable reverting setting", "Circle class", "click interface", "Color class", "Color class from_rgb class method", "COLORLESS constant", "Colors class", "contains interface", "Continue class", "DateTime class", "DateTime class day property", "DateTime class hour property", "DateTime class millisecond property", "DateTime class minute property", "DateTime class month property", "DateTime class now interface", "DateTime class second property", "DateTime class set_month_end interface", "DateTime class weekday_js and weekday_py properties", "DateTime class year property", "dblclick interface", "delete interface", "Dictionary class", "Dictionary class generic type settings", "Dictionary get interface", "Dictionary length interface", "DisplayObject class", "DisplayObject and GraphicsBase classes base properties abstract", "DisplayObject class get_css and set_css interfaces", "DisplayObject class mouse event binding interfaces", "DisplayObject class parent interfaces", "DisplayObject class visible interface", "DisplayObject x and y interfaces", "display_on_colaboratory interface", "display_on_jupyter interface", "Draw interfaces abstract", "Easing enum", "Elif class", "Ellipse class", "Else class", "enter_frame interface", "Event class prevent_default and stop_propagation interfaces", "ForArrayIndices class", "ForArrayIndicesAndValues class", "ForArrayValues class", "ForDictKeys class", "ForDictKeysAndValues class", "ForDictValues class", "FPS enum", "apysc fundamental data classes value interface", "get_bounds interface", "get_child_at interface", "Graphics class", "GraphicsBase fill_alpha interface", "GraphicsBase fill_color property", "GraphicsBase flip_x and flip_y interfaces", "GraphicsBase line_alpha interface", "GraphicsBase line_color interface", "GraphicsBase line_dash_dot_setting interface", "GraphicsBase line_dash_setting interface", "GraphicsBase line_dot_setting interface", "GraphicsBase line_round_dot_setting interface", "GraphicsBase line_thickness interface", "GraphicsBase rotation_around_center interface", "GraphicsBase rotation_around_point interfaces", "GraphicsBase scale_x_from_center and scale_y_from_center interfaces", "GraphicsBase get_scale_from_point and set_scale_from_point interfaces", "GraphicsBase skew_x and skew_y interfaces", "Graphics begin_fill interface", "Graphics clear interface", "Graphics draw_circle interface", "Graphics draw_dash_dotted_line interface", "Graphics draw_dashed_line interface", "Graphics draw_dotted_line interface", "Graphics draw_ellipse interface", "Graphics draw_line interface", "Graphics draw_path interface", "Graphics draw_polygon interface", "Graphics draw_rect interface", "Graphics draw_round_dotted_line interface", "Graphics draw_round_rect interface", "Graphics draw_triangle interface", "Graphics line_style interface", "Graphics move_to and line_to interfaces", "Color class green_color property", "If class", "import conventions", "apysc documentation", "Int and Number classes", "Int and Number basic arithmetic operations", "Int and Number basic comparison operations", "Int and Number classes to_fixed interface", "Int and Number classes to_hex method", "Line class", "MaterialDesignColors class", "Material icon", "Math clamp interface", "Math max interface", "Math min interface", "Math trunc interface", "MouseEvent interfaces abstract", "Basic mouse event interfaces", "mousedown and mouseup interfaces", "mousemove interface", "mouseover and mouseout interfaces", "MultiLineText class", "num_children interface", "Path class", "PathBezier2D class", "PathBezier2DContinual class", "PathBezier3D class", "PathBezier3DContinual class", "PathClose class", "PathHorizontal class", "PathLineTo class", "PathMoveTo class", "PathVertical class", "Point2D class", "Polygon class", "Polyline class", "Quick start guide", "range function", "Recommended type-annotation checker settings", "Rectangle class", "RectangleGeom class", "Color class red_color property", "remove_children interface", "Return class", "save_overall_html interface", "Sequential animation setting", "set_debug_mode interface", "Sprite class", "Stage class", "String class", "String class addition and multiplication operations", "String class apply_max_num_of_decimal_places interface", "String class comparison operations", "String class length property", "String class lower method", "String class lstrip interface", "String class rstrip interface", "String class slice method", "String class split interface", "String class strip interface", "String class upper method", "String class zfill method", "SvgMask class and its related interfaces", "SvgText class", "SvgTextSpan class", "text_align property", "text_align_last property", "Text bold property", "Text fill_alpha property", "Text fill_color property", "Text font_size property", "Text italic property", "Text line_height property", "Text underline property", "TimeDelta class", "TimeDelta class days interface", "TimeDelta class total_seconds interface", "Timer class", "Timer class timer_complete interface", "Timer class delay setting", "TimerEvent class", "Timer class repeat_count setting", "Timer class reset interface", "Timer class start and stop interfaces", "to_string interface", "trace interface", "Triangle class", "True_ and False_ constants", "unbind_enter_frame and unbind_enter_frame_all interfaces", "unset_debug_mode interface", "variable_name_suffix argument setting", "What apysc can do in its current implementation", "Why the apysc library doesn\u2019t use the Python built-in data type"], "terms": {"thi": [0, 1, 12, 16, 19, 22, 26, 27, 29, 33, 34, 36, 37, 39, 44, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 67, 77, 81, 82, 85, 86, 87, 88, 89, 91, 94, 96, 98, 100, 111, 114, 123, 124, 125, 126, 142, 144, 147, 148, 149, 154, 159, 161, 163, 176, 179, 181, 186, 188, 190, 191, 192, 193, 195, 220, 226, 230, 231, 234, 235], "page": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "explain": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "event": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 60, 66, 74, 79, 80, 81, 85, 86, 87, 90, 91, 95, 97, 99, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 134, 137, 140, 142, 152, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 235], "argument": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 59, 60, 61, 62, 63, 64, 66, 68, 74, 76, 79, 80, 83, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 146, 147, 150, 151, 152, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 185, 186, 187, 189, 190, 191, 194, 197, 198, 199, 200, 201, 202, 203, 204, 206, 207, 220, 221, 223, 225, 226, 227, 228, 229, 230, 231, 232, 234], "": [0, 2, 4, 5, 6, 7, 8, 12, 23, 24, 26, 28, 29, 33, 35, 37, 38, 41, 42, 43, 45, 46, 47, 48, 50, 56, 60, 61, 64, 66, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 82, 83, 84, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 124, 125, 126, 139, 140, 144, 146, 148, 152, 153, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 182, 183, 187, 189, 190, 191, 193, 198, 199, 200, 201, 202, 205, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 228, 229, 230, 231, 233, 235], "each": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 20, 24, 25, 26, 29, 30, 31, 55, 60, 61, 64, 65, 68, 79, 85, 86, 87, 88, 91, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 114, 122, 123, 124, 125, 126, 127, 130, 131, 134, 137, 138, 140, 141, 142, 144, 149, 152, 153, 155, 159, 160, 161, 162, 163, 164, 166, 176, 177, 178, 179, 180, 182, 186, 188, 189, 190, 192, 195, 205, 206, 207, 217, 220, 222, 223, 224, 226, 227, 229, 233, 235], "can": [0, 2, 3, 4, 5, 8, 9, 10, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 36, 42, 48, 50, 55, 58, 60, 61, 64, 67, 68, 79, 80, 81, 82, 84, 85, 88, 91, 92, 93, 95, 96, 97, 98, 99, 108, 111, 114, 122, 127, 129, 134, 137, 139, 140, 141, 142, 146, 147, 148, 149, 152, 154, 160, 161, 162, 163, 165, 168, 170, 176, 177, 178, 179, 182, 186, 187, 188, 189, 190, 191, 192, 195, 205, 206, 207, 220, 222, 223, 224, 228, 229, 230, 233], "valu": [0, 2, 9, 10, 11, 13, 14, 15, 17, 18, 20, 24, 25, 26, 28, 29, 30, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 82, 83, 84, 86, 87, 90, 91, 93, 94, 96, 97, 98, 101, 102, 103, 104, 105, 106, 107, 109, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 141, 143, 144, 146, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 160, 164, 165, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 180, 182, 184, 187, 189, 193, 194, 196, 197, 198, 199, 202, 203, 204, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 224, 227, 228, 229, 230, 232, 233, 234, 235], "like": [0, 1, 16, 32, 33, 37, 46, 48, 50, 55, 58, 59, 62, 66, 67, 81, 85, 88, 89, 91, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 110, 111, 127, 131, 132, 133, 134, 138, 141, 144, 145, 148, 149, 160, 165, 189, 191, 195, 222, 228, 230, 234, 235], "follow": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 37, 40, 41, 43, 44, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 64, 66, 67, 68, 74, 77, 79, 80, 81, 82, 85, 86, 87, 88, 90, 91, 94, 95, 96, 98, 100, 101, 102, 103, 104, 105, 106, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 133, 136, 137, 140, 141, 142, 143, 144, 146, 147, 148, 154, 159, 160, 161, 162, 163, 165, 167, 169, 170, 171, 172, 173, 174, 175, 176, 179, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 196, 205, 206, 207, 208, 209, 217, 220, 221, 222, 224, 225, 226, 228, 229, 231, 232, 233, 234], "runnabl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234], "from": [0, 1, 7, 8, 9, 10, 11, 13, 14, 15, 17, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 43, 44, 56, 57, 60, 61, 63, 65, 66, 74, 79, 80, 82, 83, 86, 87, 89, 90, 91, 95, 97, 107, 109, 110, 113, 114, 116, 123, 124, 125, 126, 134, 136, 138, 141, 142, 143, 151, 152, 153, 156, 157, 158, 160, 161, 162, 163, 166, 172, 173, 174, 175, 177, 178, 182, 184, 185, 187, 191, 198, 199, 202, 206, 207, 220, 221, 222, 223, 224, 225, 226, 229, 233, 234], "import": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "dict": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 50, 51, 56, 60, 61, 66, 74, 79, 80, 81, 87, 88, 90, 91, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 144, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "apysc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233], "ap": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "stage": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "def": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 191, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "on_tim": [0, 11, 19, 21, 23, 28, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 152, 166, 177, 178, 182, 186, 206, 220, 221, 222, 223, 224, 225, 226, 229, 234], "e": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 55, 56, 59, 60, 61, 62, 66, 74, 78, 79, 80, 81, 86, 87, 88, 90, 91, 93, 94, 95, 96, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 127, 128, 133, 137, 140, 141, 142, 148, 150, 151, 152, 154, 159, 160, 161, 162, 163, 165, 166, 177, 178, 180, 182, 185, 186, 188, 190, 191, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 232, 233, 234], "timerev": [0, 11, 19, 21, 23, 28, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 186, 206, 220, 221, 222, 224, 225, 226, 229, 234], "str": [0, 32, 33, 40, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 63, 65, 68, 74, 79, 81, 82, 87, 92, 93, 96, 97, 98, 101, 102, 103, 104, 105, 106, 108, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 144, 147, 150, 151, 152, 153, 154, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 187, 190, 191, 192, 193, 194, 195, 198, 199, 200, 202, 205, 206, 207, 221, 229], "none": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 39, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 66, 67, 68, 74, 79, 80, 81, 83, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 127, 128, 133, 137, 140, 141, 142, 144, 147, 152, 154, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 185, 186, 187, 189, 190, 191, 192, 198, 199, 200, 202, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234], "timer": [0, 11, 19, 21, 23, 28, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 152, 166, 177, 178, 182, 186, 206, 223, 229], "call": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 48, 50, 51, 56, 61, 66, 79, 80, 86, 87, 88, 90, 91, 95, 99, 100, 107, 113, 114, 116, 123, 124, 125, 126, 127, 128, 130, 133, 137, 141, 159, 160, 161, 162, 163, 165, 185, 186, 187, 189, 190, 220, 221, 222, 223, 224, 225, 226, 228, 233, 234], "paramet": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 63, 66, 68, 74, 79, 80, 81, 83, 86, 87, 88, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 185, 186, 187, 190, 191, 192, 194, 198, 199, 200, 201, 202, 204, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "instanc": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 42, 54, 56, 60, 61, 63, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 84, 85, 86, 87, 88, 89, 90, 91, 95, 96, 97, 99, 100, 107, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 135, 136, 138, 139, 141, 145, 148, 152, 154, 159, 160, 161, 162, 163, 164, 165, 166, 171, 172, 173, 174, 175, 177, 178, 179, 182, 183, 185, 186, 187, 191, 193, 194, 195, 201, 205, 206, 207, 208, 210, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 233, 234], "trace": [0, 5, 8, 16, 28, 48, 50, 66, 74, 98, 100, 144, 146, 160, 162, 165, 221, 223, 233], "msg": [0, 48, 49, 50, 51, 52, 53, 54], "delai": [0, 3, 9, 10, 11, 12, 13, 14, 15, 17, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 188, 206, 220, 221, 223, 224, 225, 226, 229, 234], "1000": [0, 5, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 60, 86, 87, 95, 97, 114, 152, 166, 177, 178, 182, 188, 206, 222, 225, 229], "hello": [0, 32, 192, 193, 195, 196, 197, 203, 206, 207, 228, 230], "start": [0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 46, 56, 60, 86, 87, 95, 97, 101, 107, 110, 114, 123, 124, 125, 126, 130, 131, 132, 134, 136, 137, 138, 139, 141, 142, 152, 166, 167, 169, 170, 171, 177, 178, 182, 188, 189, 191, 200, 206, 207, 220, 221, 222, 223, 224, 225, 229, 232, 234], "sometim": [0, 4, 16, 33, 58, 60, 62, 63, 68, 74, 81, 82, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 147, 150, 151, 152, 154, 160, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 187, 190, 191, 192, 194, 195, 198, 199, 200, 202, 205, 206, 207, 227, 229, 232, 233], "us": [0, 3, 4, 5, 8, 12, 16, 18, 22, 23, 32, 33, 42, 48, 50, 54, 55, 57, 58, 60, 62, 63, 67, 68, 74, 81, 82, 84, 85, 92, 93, 95, 96, 97, 98, 101, 102, 103, 104, 105, 106, 107, 109, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 160, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 181, 182, 184, 185, 186, 187, 188, 190, 191, 192, 194, 195, 198, 199, 200, 202, 205, 206, 207, 223, 227, 229, 232, 233], "instead": [0, 18, 29, 30, 31, 42, 48, 50, 51, 84, 92, 93, 134, 235], "help": [0, 32, 33, 58, 59, 67, 81, 82, 96, 98, 101, 102, 103, 104, 105, 106, 144, 147, 160, 186, 187, 192, 195, 232], "make": [0, 35, 141, 179], "easi": 0, "read": [0, 33, 58, 67, 81, 96, 98, 101, 102, 103, 104, 105, 106, 144, 147, 186, 192], "code": [0, 1, 2, 3, 4, 12, 16, 22, 55, 65, 82, 86, 93, 95, 96, 98, 110, 127, 133, 136, 141, 148, 153, 160, 165, 179, 186, 187, 190, 193, 196, 220, 233, 234, 235], "check": [0, 8, 49, 54, 66, 82, 160, 191], "actual": [0, 54], "when": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 33, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 61, 66, 79, 81, 82, 88, 90, 91, 93, 95, 96, 98, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 116, 127, 133, 136, 137, 141, 142, 144, 159, 160, 161, 162, 163, 165, 186, 187, 188, 190, 191, 196, 220, 221, 223, 224, 225, 226, 227, 228, 232, 233, 234, 235], "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 46, 47, 50, 55, 56, 58, 59, 60, 61, 64, 67, 74, 79, 80, 82, 85, 86, 88, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 113, 114, 116, 117, 118, 119, 120, 125, 126, 127, 128, 129, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 159, 160, 161, 162, 163, 165, 167, 168, 169, 170, 172, 173, 174, 175, 177, 178, 179, 180, 181, 182, 185, 186, 187, 188, 189, 190, 191, 195, 198, 199, 202, 206, 207, 210, 214, 215, 216, 220, 221, 222, 223, 224, 226, 228, 229, 231, 232, 233, 234, 235], "typing_extens": [0, 1, 11, 12, 19, 21, 23, 26, 27, 28, 56, 58, 66, 86, 87, 90, 95, 107, 114, 123, 124, 125, 126, 160, 220, 221, 222, 223, 224, 225, 226, 234], "class": [0, 1, 2, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 48, 50, 56, 64, 66, 83, 84, 91, 94, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 135, 136, 137, 138, 139, 140, 141, 142, 148, 149, 154, 155, 156, 157, 158, 160, 165, 179, 185, 189, 212, 227, 232, 233, 234], "_msgoption": 0, "note": [0, 1, 3, 4, 8, 9, 10, 11, 13, 14, 15, 17, 19, 20, 21, 24, 25, 26, 28, 32, 33, 34, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 57, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 82, 83, 87, 89, 90, 91, 92, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 150, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 180, 183, 184, 185, 186, 187, 191, 192, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 231], "ar": [0, 16, 18, 33, 36, 41, 55, 58, 59, 64, 82, 93, 95, 96, 122, 129, 133, 137, 139, 140, 141, 145, 148, 149, 155, 159, 160, 162, 167, 168, 169, 170, 171, 172, 173, 174, 175, 181, 193, 195, 206, 207, 208, 209, 229, 235], "python": [0, 33, 34, 36, 42, 46, 48, 50, 52, 53, 58, 59, 67, 77, 81, 82, 84, 96, 98, 101, 102, 103, 104, 105, 106, 108, 144, 146, 147, 148, 149, 176, 179, 186, 189, 192, 193, 195, 196, 228], "3": [0, 6, 7, 18, 23, 33, 34, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 60, 62, 64, 65, 67, 77, 82, 97, 117, 118, 119, 120, 124, 129, 130, 133, 135, 136, 138, 141, 147, 148, 152, 153, 154, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 180, 182, 193, 194, 196, 200, 204, 205, 206, 207, 221, 222, 223, 224, 225, 226, 229, 234], "8": [0, 33, 60, 97, 141, 147, 156, 157, 158, 177, 180], "later": [0, 82, 179], "version": [0, 93, 154, 179, 191], "packag": [0, 22, 55, 93, 145, 154], "avail": [0, 164], "g": [0, 4, 8, 16, 22, 32, 55, 59, 61, 62, 78, 79, 81, 87, 93, 94, 96, 111, 116, 127, 141, 148, 150, 151, 154, 159, 160, 180, 188, 191, 205, 206, 207, 220, 222, 224, 232, 233], "contain": [1, 2, 18, 38, 46, 89, 110, 111, 122, 165, 185, 190, 205, 207], "graphic": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 67, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 100, 107, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 152, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 185, 186, 188, 191, 205, 220, 221, 222, 223, 224, 225, 226, 228, 229], "sprite": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 66, 67, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 185, 186, 188, 189, 191, 205, 206, 220, 221, 222, 223, 224, 225, 226, 228, 232, 234], "method": [1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 37, 38, 39, 40, 43, 44, 45, 46, 47, 56, 61, 62, 66, 68, 76, 79, 83, 86, 87, 89, 95, 99, 100, 110, 111, 123, 125, 127, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 146, 150, 156, 157, 158, 159, 160, 161, 162, 185, 186, 189, 190, 191, 194, 198, 199, 201, 202, 220, 221, 225, 226, 230, 231], "add": [1, 5, 34, 56, 60, 61, 79, 89, 97, 99, 110, 141, 148, 152, 154, 161, 162, 163, 164, 166, 177, 178, 182, 190, 191, 205, 206, 207, 221, 229], "remov": [1, 33, 43, 56, 61, 66, 79, 80, 89, 128, 146, 160, 162, 185, 191, 198, 199, 202, 232], "displayobject": [1, 8, 17, 18, 29, 30, 31, 61, 66, 79, 80, 109, 110, 111, 160, 161, 162, 163, 183, 189, 191], "child": [1, 66, 89, 100, 110, 165, 185, 190, 191, 207], "doe": [1, 18, 23, 38, 46, 83, 89, 93, 100, 124, 125, 136, 174, 187], "displai": [1, 12, 28, 32, 48, 49, 50, 51, 52, 53, 54, 55, 56, 64, 65, 66, 74, 85, 86, 87, 89, 92, 93, 95, 100, 137, 146, 153, 164, 165, 179, 187, 190, 191, 205, 206, 216, 228, 234], "append": [1, 32, 33, 39, 41, 65, 91, 96, 98, 100, 101, 104, 122, 136, 144, 146, 153, 165, 174, 186, 189, 232], "parent": [1, 60, 85, 86, 97, 100, 109, 146, 152, 154, 164, 166, 177, 178, 182, 190, 191, 206, 207, 229], "constructor": [1, 41, 110, 186], "so": [1, 5, 6, 7, 16, 22, 55, 61, 64, 79, 88, 96, 99, 100, 110, 111, 127, 136, 138, 159, 160, 161, 162, 163, 170, 176, 181, 186, 206, 207, 222, 232], "exampl": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 81, 82, 83, 84, 87, 88, 89, 90, 91, 96, 98, 99, 100, 101, 102, 103, 104, 105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 172, 173, 174, 175, 180, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 231, 232, 233, 234], "similarli": [1, 26, 27, 29, 52, 53, 56, 60, 77, 97, 105, 107, 125, 136, 152, 155, 166, 167, 169, 177, 178, 182, 193, 200, 206, 229], "an": [1, 3, 4, 5, 7, 8, 9, 10, 13, 14, 15, 17, 18, 20, 22, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 37, 39, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 56, 58, 67, 68, 70, 74, 80, 81, 82, 83, 84, 86, 88, 89, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 114, 126, 133, 144, 147, 148, 150, 151, 154, 156, 157, 158, 160, 164, 172, 175, 176, 177, 179, 183, 186, 187, 191, 192, 193, 194, 196, 200, 201, 205, 206, 207, 209, 210, 213, 214, 215, 216, 220, 222, 224, 231, 233], "If": [1, 5, 8, 11, 16, 18, 21, 23, 32, 33, 38, 41, 46, 47, 48, 50, 51, 54, 55, 56, 59, 60, 61, 64, 65, 66, 67, 79, 80, 81, 82, 83, 86, 87, 89, 90, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 111, 113, 114, 116, 124, 125, 127, 133, 134, 136, 137, 138, 141, 142, 146, 147, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 164, 166, 171, 177, 178, 180, 182, 183, 186, 187, 188, 189, 191, 194, 198, 199, 200, 202, 205, 206, 207, 210, 214, 215, 216, 219, 220, 221, 222, 223, 224, 225, 226, 229, 231, 232, 234], "need": [1, 2, 3, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 32, 56, 82, 92, 93, 127, 134, 136, 145, 172, 175, 187, 190, 205, 206, 207, 232], "adjust": [1, 48, 50, 141, 187, 207], "i": [1, 12, 16, 19, 22, 26, 29, 34, 37, 39, 44, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 77, 82, 87, 88, 89, 91, 100, 114, 123, 124, 125, 126, 142, 146, 147, 148, 154, 160, 161, 163, 179, 193, 226, 230, 231], "necessari": [1, 2, 136, 137, 141, 159, 187], "manual": [1, 190], "set": [1, 3, 5, 8, 9, 10, 11, 12, 13, 14, 15, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 41, 48, 50, 56, 57, 58, 60, 61, 62, 63, 64, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 81, 86, 87, 90, 91, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 111, 112, 113, 114, 115, 116, 121, 122, 123, 125, 128, 129, 130, 131, 132, 133, 135, 136, 137, 138, 139, 140, 142, 143, 144, 146, 147, 150, 151, 152, 154, 155, 159, 161, 162, 163, 164, 171, 176, 177, 178, 179, 182, 183, 184, 189, 190, 192, 194, 198, 199, 200, 202, 205, 206, 207, 208, 209, 210, 214, 215, 216, 219, 220, 221, 229, 231, 232, 235], "other": [1, 8, 37, 49, 67, 68, 82, 85, 96, 99, 111, 123, 127, 129, 133, 136, 138, 141, 147, 159, 187, 190, 191, 195, 205, 221], "For": [1, 4, 6, 7, 12, 54, 59, 68, 76, 80, 82, 86, 88, 90, 93, 94, 107, 111, 123, 125, 127, 136, 137, 140, 141, 142, 147, 148, 150, 155, 159, 160, 166, 167, 168, 169, 170, 172, 173, 174, 175, 183, 188, 190, 192, 194, 196, 207, 209, 221, 222, 224, 227, 229, 233, 235], "click": [1, 11, 21, 32, 56, 66, 74, 79, 80, 88, 90, 91, 100, 111, 113, 116, 117, 118, 119, 120, 128, 133, 137, 140, 142, 146, 160, 162, 165, 185, 186, 190, 220, 221, 224, 226, 228, 231, 234], "handler": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 66, 74, 79, 80, 81, 86, 87, 88, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 146, 152, 159, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234, 235], "rectangl": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 56, 61, 62, 63, 64, 65, 66, 74, 79, 80, 85, 86, 88, 89, 90, 91, 94, 95, 99, 100, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 136, 139, 140, 141, 146, 153, 159, 160, 161, 162, 163, 165, 179, 183, 185, 186, 188, 190, 191, 205, 220, 221, 222, 223, 224, 225, 226, 228, 231, 233, 234], "typeddict": [1, 11, 12, 19, 21, 23, 26, 27, 28, 56, 66, 86, 87, 90, 95, 107, 114, 123, 124, 125, 126, 160, 220, 221, 222, 223, 224, 225, 226, 234], "_rectopt": [1, 11, 19, 21, 23, 28, 56, 66, 90, 107, 126, 220, 221, 222, 223, 224, 225, 226], "on_sprite_click": [1, 66, 100, 165, 190, 220], "mouseev": [1, 11, 21, 32, 56, 61, 66, 74, 79, 80, 88, 90, 91, 100, 111, 113, 116, 117, 118, 119, 120, 128, 133, 137, 140, 142, 161, 162, 163, 165, 185, 186, 190, 220, 221, 224, 226, 228, 231, 234], "option": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 66, 68, 74, 79, 80, 81, 83, 86, 87, 88, 89, 90, 91, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 141, 142, 146, 147, 150, 152, 154, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 172, 173, 174, 175, 177, 178, 181, 182, 185, 186, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234], "dictionari": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 50, 51, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 104, 105, 106, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 140, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234, 235], "background_color": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234], "color": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 60, 61, 64, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 150, 151, 152, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 185, 186, 187, 188, 189, 190, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "333": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234], "stage_width": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "150": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 152, 153, 159, 160, 161, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 186, 187, 189, 190, 191, 205, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 232, 233, 234], "stage_height": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "stage_elem_id": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 94, 95, 97, 99, 100, 101, 103, 104, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "begin_fil": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 66, 67, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 100, 107, 110, 111, 112, 113, 114, 116, 122, 123, 124, 125, 126, 128, 129, 133, 136, 137, 139, 140, 141, 146, 159, 160, 161, 162, 163, 165, 176, 179, 185, 186, 188, 190, 191, 220, 221, 222, 223, 224, 225, 226, 228, 234], "0af": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 62, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 152, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 188, 190, 191, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 233, 234], "draw_rect": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 66, 67, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 100, 107, 110, 111, 112, 113, 115, 116, 121, 122, 123, 124, 125, 126, 127, 128, 139, 141, 146, 159, 160, 161, 162, 163, 165, 179, 185, 186, 188, 190, 191, 220, 221, 222, 223, 224, 225, 226, 228, 234], "x": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 87, 88, 89, 90, 92, 93, 94, 95, 99, 100, 101, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 153, 154, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 183, 185, 186, 188, 190, 191, 205, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 231, 233, 234], "50": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 56, 60, 61, 62, 63, 64, 65, 66, 67, 68, 72, 74, 75, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 148, 152, 153, 155, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 186, 188, 190, 191, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234], "y": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 87, 88, 89, 90, 92, 93, 94, 95, 99, 100, 101, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 153, 154, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 183, 185, 186, 188, 190, 191, 205, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 231, 233, 234], "width": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 99, 100, 105, 106, 107, 109, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 137, 139, 141, 152, 153, 159, 160, 161, 162, 163, 164, 165, 166, 177, 178, 179, 185, 186, 187, 188, 190, 191, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 233, 234], "height": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 99, 100, 105, 106, 107, 109, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 137, 139, 141, 153, 159, 160, 161, 162, 163, 164, 165, 179, 185, 186, 187, 188, 190, 191, 205, 206, 215, 220, 221, 222, 223, 224, 225, 226, 228, 231, 233, 234], "save_overall_html": [1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 146, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "dest_dir_path": [1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "sprite_basic_usage_of_remove_child": 1, "again": [1, 89, 127, 141], "first": [1, 2, 5, 34, 37, 44, 52, 53, 66, 83, 90, 110, 121, 123, 127, 140, 142, 160, 169, 170, 179, 180, 188, 191, 221, 222, 223, 225, 229, 232], "posit": [1, 2, 32, 37, 38, 55, 56, 96, 109, 125, 137, 138, 142, 160, 162, 166, 200, 206, 207, 232], "left": [1, 26, 27, 48, 49, 50, 51, 52, 53, 54, 55, 90, 123, 124, 125, 126, 136, 138, 141, 148, 160, 164, 171, 183, 198, 202, 204, 206, 207, 221], "second": [1, 5, 6, 7, 11, 19, 21, 23, 28, 52, 53, 56, 68, 83, 87, 90, 99, 107, 110, 112, 114, 115, 121, 123, 127, 140, 142, 146, 160, 169, 170, 180, 188, 217, 219, 221, 222, 225, 229, 232], "right": [1, 25, 26, 27, 48, 49, 50, 51, 52, 53, 54, 55, 90, 96, 98, 123, 124, 125, 126, 136, 141, 171, 172, 183, 193, 199, 202, 206, 224], "_spriteandrectopt": 1, "first_sprit": 1, "second_sprit": 1, "250": [1, 12, 26, 27, 56, 62, 63, 66, 67, 90, 92, 93, 94, 95, 101, 105, 106, 107, 109, 111, 112, 115, 117, 118, 119, 120, 121, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 135, 136, 138, 139, 141, 142, 164, 168, 169, 171, 179, 183, 185, 190, 206, 212, 213, 215, 216, 221, 222, 224, 226, 231], "number": [1, 9, 13, 17, 25, 26, 28, 30, 31, 52, 53, 60, 65, 78, 86, 91, 97, 101, 102, 103, 104, 105, 106, 108, 109, 111, 112, 115, 123, 124, 125, 127, 129, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 145, 152, 153, 154, 155, 156, 157, 158, 160, 164, 165, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 190, 191, 194, 196, 204, 205, 206, 207, 211, 215, 217, 218, 219, 220, 222, 224, 227, 228, 229, 233, 234, 235], "0": [1, 9, 10, 12, 13, 14, 15, 17, 18, 20, 24, 25, 26, 27, 29, 30, 31, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 60, 63, 65, 66, 67, 68, 70, 72, 75, 77, 83, 86, 87, 91, 94, 97, 101, 104, 109, 110, 111, 112, 114, 115, 116, 122, 123, 124, 125, 127, 129, 133, 135, 136, 137, 140, 141, 142, 143, 150, 151, 152, 153, 154, 156, 157, 158, 160, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 184, 185, 187, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 211, 215, 217, 219, 220, 222, 224, 227, 229, 232, 234], "sprite_basic_usage_of_add_child": 1, "document": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "build": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "script": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "gener": [1, 3, 5, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 150, 151, 152, 154, 155, 156, 157, 158, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "updat": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232, 235], "section": [1, 3, 4, 5, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "mayb": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "duplic": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "compar": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 149, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "previou": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "signatur": [1, 3, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 63, 66, 67, 68, 74, 79, 81, 83, 87, 89, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 117, 118, 119, 120, 123, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 185, 186, 187, 189, 190, 191, 192, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 217, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "self": [1, 2, 3, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 33, 34, 37, 38, 39, 40, 43, 44, 45, 46, 47, 56, 58, 60, 61, 62, 66, 67, 68, 79, 81, 83, 87, 89, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 117, 118, 119, 120, 123, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 185, 186, 189, 190, 191, 192, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 217, 219, 220, 221, 222, 223, 224, 225, 226, 227, 229, 231, 232], "_displai": [1, 60, 66, 97, 109, 110, 137, 139, 140, 141, 152, 154, 164, 166, 177, 178, 182, 183, 189, 191, 205, 206, 207, 229], "display_object": [1, 66, 109, 110, 183, 189, 191], "summari": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232, 234], "object": [1, 29, 33, 37, 50, 60, 80, 86, 97, 99, 109, 111, 114, 124, 125, 126, 146, 152, 160, 166, 177, 178, 179, 182, 183, 190, 191, 205, 206, 229], "sprite_1": [1, 89, 190, 191], "sprite_2": [1, 89, 190, 191], "alpha": [1, 9, 13, 18, 60, 66, 87, 94, 97, 110, 111, 112, 115, 116, 122, 123, 124, 140, 152, 154, 164, 165, 166, 177, 178, 182, 191, 206, 207, 211, 229], "5": [1, 12, 13, 14, 18, 26, 33, 36, 37, 38, 44, 45, 47, 48, 60, 62, 65, 66, 68, 69, 70, 71, 72, 75, 76, 77, 86, 87, 94, 96, 97, 107, 108, 110, 111, 112, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 130, 131, 132, 134, 135, 138, 139, 140, 141, 142, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 180, 182, 183, 191, 196, 204, 206, 207, 211, 215, 217, 218, 219, 227, 229, 233], "print": [1, 83, 191], "The": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 135, 136, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 235], "debug": [2, 33, 58, 60, 62, 63, 68, 74, 81, 93, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 147, 150, 151, 152, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 187, 189, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 229, 232, 233], "inform": [2, 48, 50, 55, 68, 93, 166, 189, 228, 232], "target": [2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 22, 24, 25, 26, 27, 29, 30, 31, 44, 49, 54, 56, 61, 79, 83, 95, 109, 110, 135, 146, 155, 160, 161, 162, 163, 166, 183, 191, 205, 223, 231], "function": [2, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 32, 48, 49, 50, 51, 52, 53, 54, 56, 59, 61, 79, 80, 85, 88, 92, 93, 95, 99, 146, 159, 160, 161, 163, 179, 186, 187, 189, 220, 222, 223, 224, 228, 230, 232, 234, 235], "A": [2, 5, 33, 36, 56, 58, 60, 61, 62, 63, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 81, 87, 89, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 114, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 147, 148, 150, 151, 152, 154, 158, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 180, 182, 190, 191, 192, 193, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 215, 216, 217, 220, 221, 222, 224, 227, 229, 230], "export": [2, 32, 187, 189, 232, 233, 235], "enabl": [2, 232], "mode": [2, 189, 232], "It": [2, 4, 5, 33, 58, 67, 74, 81, 96, 98, 127, 129, 133, 141, 144, 147, 156, 157, 160, 172, 175, 190, 192, 204, 205, 228, 232, 235], "set_debug_mod": [2, 146, 232], "after": [2, 3, 5, 6, 11, 19, 21, 23, 37, 67, 96, 98, 168, 170, 189, 225], "ani": [2, 18, 32, 34, 38, 39, 44, 48, 49, 50, 51, 54, 56, 61, 79, 80, 82, 83, 88, 89, 95, 96, 98, 100, 101, 102, 103, 104, 105, 106, 128, 144, 162, 174, 180, 185, 187, 190, 191, 198, 199, 202, 219, 220, 228, 231], "specifi": [2, 6, 7, 27, 33, 38, 39, 40, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 59, 60, 61, 64, 66, 79, 80, 81, 82, 83, 87, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 109, 110, 124, 127, 141, 142, 144, 147, 150, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 166, 176, 177, 178, 180, 182, 183, 187, 190, 191, 198, 199, 200, 202, 204, 206, 207, 210, 214, 215, 216, 220, 222, 224, 229, 231, 233], "module_nam": 2, "becom": [2, 4, 8, 33, 36, 38, 41, 47, 48, 50, 56, 61, 62, 74, 80, 81, 89, 90, 95, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 124, 125, 127, 129, 133, 136, 138, 141, 142, 148, 150, 152, 155, 158, 160, 167, 168, 169, 170, 172, 173, 174, 175, 177, 178, 180, 181, 187, 189, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 222, 223, 224, 227, 232, 233, 235], "__name__": 2, "_main": [2, 191], "entri": [2, 191], "point": [2, 24, 25, 26, 60, 97, 114, 122, 123, 125, 136, 142, 147, 150, 151, 152, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 191, 196, 206, 229, 234], "project": [2, 181, 187, 191], "_draw_rectangl": 2, "add_debug_info_setting_basic_usag": 2, "float": [2, 9, 13, 17, 25, 26, 27, 30, 31, 52, 53, 60, 97, 108, 127, 129, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 148, 149, 150, 151, 152, 154, 156, 157, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 194, 206, 207, 220, 222, 224, 229, 235], "draw": [2, 111, 122, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 167, 168, 169, 170, 172, 173, 174, 175, 176, 179, 182, 190, 191, 206, 207, 228], "given": [2, 25, 66, 123, 125], "coordin": [2, 5, 6, 7, 11, 12, 17, 19, 21, 23, 25, 27, 28, 30, 31, 60, 86, 91, 95, 97, 101, 109, 111, 123, 124, 125, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 152, 154, 160, 164, 165, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 188, 190, 207, 229], "_": [2, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 56, 58, 61, 64, 65, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 100, 101, 102, 103, 105, 113, 116, 127, 140, 141, 143, 147, 150, 153, 155, 156, 157, 158, 160, 161, 162, 163, 191, 192, 194, 196, 198, 199, 201, 202, 204, 205, 217, 218, 219, 220, 221, 222, 224, 225, 226, 228, 229], "mysprit": 2, "__init__": [2, 8, 33, 58, 60, 62, 67, 68, 81, 96, 97, 98, 101, 102, 103, 104, 105, 106, 144, 147, 152, 154, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 186, 189, 190, 191, 192, 205, 206, 207, 220, 222, 223, 224, 229, 232], "int": [2, 5, 6, 7, 9, 10, 12, 13, 14, 15, 17, 18, 20, 22, 24, 25, 26, 27, 29, 30, 31, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 63, 65, 68, 69, 70, 71, 72, 73, 75, 77, 78, 80, 81, 82, 83, 84, 86, 95, 96, 97, 98, 101, 102, 103, 104, 105, 106, 108, 110, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 129, 130, 131, 132, 133, 134, 137, 138, 139, 141, 142, 143, 144, 145, 152, 153, 154, 155, 156, 157, 158, 160, 162, 164, 165, 166, 167, 169, 170, 176, 177, 178, 180, 182, 183, 184, 185, 187, 189, 191, 193, 194, 196, 200, 204, 206, 207, 213, 217, 218, 220, 222, 224, 227, 228, 229, 232, 233, 234, 235], "my": 2, "super": 2, "__main__": 2, "html": [2, 32, 65, 92, 93, 122, 146, 164, 189, 191, 232, 235], "1": [2, 9, 11, 12, 13, 15, 17, 19, 21, 23, 26, 27, 28, 33, 34, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 54, 56, 58, 60, 65, 67, 68, 69, 70, 71, 72, 73, 75, 77, 78, 84, 86, 97, 99, 101, 102, 107, 110, 112, 115, 117, 121, 123, 124, 125, 126, 127, 130, 141, 148, 152, 153, 154, 155, 158, 164, 165, 166, 177, 178, 180, 182, 187, 189, 191, 194, 196, 200, 204, 205, 206, 207, 211, 215, 218, 219, 220, 221, 222, 223, 224, 225, 226, 229, 231, 232, 234], "modul": [2, 145, 189, 232], "name": [2, 33, 49, 51, 54, 56, 58, 60, 61, 62, 63, 65, 68, 74, 79, 81, 87, 92, 93, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 147, 150, 151, 152, 154, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 189, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 221, 228, 229, 232, 233, 235], "keyword": [2, 67, 96, 98, 101, 102, 103, 104, 105, 106, 144], "current": [2, 3, 28, 33, 42, 58, 67, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 81, 87, 93, 96, 98, 101, 102, 103, 104, 105, 106, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 125, 126, 127, 141, 142, 144, 146, 147, 165, 166, 172, 173, 174, 175, 187, 191, 192, 201, 223], "rais": [2, 5, 18, 42, 67, 82, 83, 84, 89, 96, 98, 148, 191, 193, 231], "error": [2, 18, 51, 55, 82, 93, 148, 187, 193], "To": [2, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 159, 179], "avoid": [2, 96, 187], "pleas": [2, 28, 32, 42, 55, 60, 66, 68, 84, 86, 88, 93, 94, 96, 97, 100, 146, 147, 152, 159, 160, 165, 166, 177, 178, 179, 182, 188, 190, 192, 206, 207, 228, 229, 234], "disabl": [2, 181, 189, 231], "misc": [2, 181], "recommend": [2, 145, 146, 187, 206], "type": [2, 5, 18, 22, 28, 36, 41, 42, 50, 51, 56, 58, 61, 63, 65, 67, 79, 81, 83, 85, 96, 98, 101, 102, 103, 104, 105, 106, 108, 123, 126, 134, 136, 144, 146, 147, 148, 151, 153, 155, 156, 157, 158, 161, 162, 163, 176, 186, 192, 194, 197, 203, 204, 208, 209, 210, 213, 214, 215, 216, 218, 220, 221, 222, 224, 228], "annot": [2, 22, 82, 146, 160], "checker": [2, 33, 146], "unset_debug_mod": [2, 146, 189], "anim": [3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 95, 99], "return": [3, 4, 5, 8, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 28, 29, 30, 31, 33, 36, 37, 38, 40, 41, 42, 43, 45, 46, 47, 56, 57, 58, 59, 61, 63, 66, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 86, 87, 89, 90, 91, 101, 102, 103, 104, 105, 106, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 130, 131, 132, 134, 135, 137, 138, 140, 141, 142, 143, 146, 147, 148, 149, 150, 151, 155, 156, 157, 158, 159, 160, 161, 162, 163, 165, 176, 180, 183, 184, 191, 192, 193, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 222, 223, 224, 227, 229], "subclass": [3, 4, 8, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 27, 30, 31, 56, 64, 100, 105, 106, 146, 190], "animation_mov": [3, 5, 6, 7, 11, 12, 19, 21, 22, 23, 95, 146], "animation_x": [3, 4, 5, 6, 7, 8, 11, 12, 16, 18, 19, 21, 22, 23, 28, 95, 146, 188], "ha": [3, 4, 6, 7, 21, 22, 23, 26, 27, 42, 51, 55, 56, 61, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 85, 88, 89, 91, 94, 95, 100, 101, 102, 103, 104, 105, 106, 111, 123, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 146, 153, 154, 160, 161, 162, 163, 165, 168, 169, 170, 183, 187, 190, 191, 217, 220, 221, 222, 224, 225, 226, 233], "200": [3, 4, 5, 8, 12, 16, 17, 20, 22, 29, 30, 31, 60, 85, 86, 89, 94, 95, 104, 105, 109, 111, 117, 118, 119, 120, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 141, 142, 152, 160, 162, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 178, 182, 183, 188, 206, 207, 212, 227], "animationx": [3, 4, 5, 6, 7, 8, 18, 22, 30, 95], "100": [3, 4, 5, 8, 9, 11, 12, 16, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 31, 33, 41, 60, 85, 86, 91, 94, 95, 97, 105, 109, 111, 114, 117, 118, 119, 120, 123, 125, 127, 129, 133, 134, 135, 136, 137, 140, 141, 142, 150, 152, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 188, 205, 206, 212, 219, 221, 222, 223, 224, 225, 226, 227, 229, 230, 234], "durat": [3, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 95, 146, 188, 217, 218, 219], "3000": [3, 6, 7, 9, 10, 13, 14, 15, 17, 18, 20, 21, 23, 24, 25, 26, 29, 30, 31], "animation_base_start_basic_usage_1": 3, "also": [3, 4, 55, 58, 60, 68, 69, 70, 71, 72, 73, 75, 78, 80, 81, 82, 87, 93, 97, 100, 113, 123, 124, 125, 127, 130, 131, 132, 134, 136, 138, 139, 141, 145, 148, 149, 150, 152, 154, 164, 165, 166, 169, 177, 178, 180, 182, 187, 193, 198, 199, 202, 206, 207, 209, 212, 228, 229, 233, 234, 235], "chain": [3, 60, 97, 117, 130, 141, 146, 152, 166, 177, 178, 182, 229], "simplic": [3, 16, 134], "animation_base_start_basic_usage_2": 3, "automat": [3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232, 235], "animatonbas": [3, 5], "animationmov": [4, 5, 8, 17, 22, 95], "getter": [4, 42, 57, 68, 69, 70, 71, 72, 73, 75, 77, 78, 89, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 124, 126, 143, 184, 208, 209, 210, 211, 212, 213, 214, 215, 216], "00aaff": [4, 8, 9, 16, 19, 21, 29, 30, 31, 57, 60, 62, 97, 113, 116, 127, 128, 129, 133, 136, 137, 140, 141, 159, 164, 177, 182, 184, 186, 206, 208, 209, 210, 211, 213, 214, 234], "assert": [4, 8, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 58, 59, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 81, 83, 84, 85, 89, 108, 110, 146, 147, 148, 149, 156, 157, 158, 176, 191, 192, 193, 195, 196, 205, 208, 209, 212, 217, 218, 219], "isinst": [4, 8, 33, 81, 84, 85, 89, 108, 110, 149, 193, 195], "its": [4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 32, 42, 56, 62, 64, 65, 69, 70, 71, 72, 73, 74, 75, 78, 95, 122, 146, 147, 153, 167, 168, 169, 170, 171, 172, 173, 174, 175, 183, 189, 198, 199, 202, 207, 227, 233], "animationev": [4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95, 146], "affect": [4, 41, 125], "on_animation_complet": [4, 5, 8, 16], "end": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 46, 56, 59, 76, 95, 96, 98, 101, 102, 103, 104, 105, 106, 130, 131, 132, 134, 136, 138, 141, 144, 146, 152, 160, 171, 177, 187, 189, 199, 200, 202, 232, 234], "animation_complet": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95, 146], "get": [4, 8, 22, 28, 33, 41, 42, 57, 58, 60, 66, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 81, 84, 86, 87, 89, 90, 91, 95, 97, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 141, 143, 146, 147, 151, 152, 156, 157, 160, 165, 166, 177, 178, 182, 183, 184, 191, 192, 196, 197, 200, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 222, 223, 224, 229], "variablenamemixin": [4, 96, 98, 101, 102, 103, 104, 105, 106, 144, 160], "bind": [5, 22, 61, 79, 85, 100, 111, 133, 134, 137, 140, 142, 159, 161, 162, 163, 221], "requir": [5, 18, 25, 32, 33, 34, 35, 37, 38, 40, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 60, 62, 63, 68, 76, 81, 82, 83, 87, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 112, 113, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 127, 135, 140, 141, 144, 150, 151, 152, 155, 156, 157, 158, 160, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 194, 197, 200, 201, 203, 204, 206, 207, 211, 212, 220, 227, 229, 231, 232], "anoth": [5, 205], "reset": [5, 12, 21, 114, 128, 146, 220, 234], "on_animation_complete_1": [5, 6, 7, 9, 10, 12, 13, 14, 15, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95], "on_animation_complete_2": [5, 6, 7, 9, 10, 12, 13, 14, 15, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95], "animation_complete_basic_usag": 5, "onli": [5, 23, 33, 42, 48, 50, 52, 53, 67, 68, 77, 96, 98, 99, 100, 102, 103, 104, 105, 106, 122, 133, 146, 160, 161, 163, 168, 170, 172, 174, 175, 179, 180, 186, 187, 205, 232], "befor": [5, 6, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 33, 58, 67, 81, 92, 93, 96, 98, 101, 102, 103, 104, 105, 106, 127, 137, 141, 144, 147, 186, 187, 192], "except": [5, 42, 67, 83, 84, 96, 98, 114, 125, 131, 132, 138, 148, 190, 231], "complet": [5, 7, 8, 12, 14, 16, 22, 23, 188, 221, 223, 225], "work": [5, 23, 96, 98, 101, 102, 103, 104, 105, 106, 125, 136, 144, 146], "correctli": [5, 23], "callabl": [5, 56, 61, 79, 88, 99, 160, 161, 162, 163, 220, 221, 222, 224, 231], "forwardref": [5, 33, 37, 58, 81, 150, 192, 194, 198, 199, 200, 202, 204, 220, 221, 222, 224], "animation_ev": 5, "_option": [5, 61, 79, 99, 125, 161, 162, 163, 231, 234], "nonetyp": [5, 33, 46, 56, 60, 61, 79, 83, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 109, 141, 144, 152, 154, 161, 162, 163, 164, 166, 177, 178, 182, 183, 191, 198, 199, 200, 202, 206, 207, 220, 221, 222, 224, 229, 231], "union": [5, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 33, 37, 39, 40, 44, 46, 52, 53, 56, 58, 60, 61, 63, 68, 79, 81, 82, 83, 87, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 109, 110, 127, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 152, 154, 156, 157, 158, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 191, 192, 194, 198, 199, 200, 202, 204, 206, 207, 220, 221, 222, 224, 229], "listen": [5, 8, 56, 61, 79, 99, 160, 161, 162, 163, 221, 223], "_handler": [5, 56, 61, 79, 161, 162, 163, 220, 221, 222, 224], "default": [5, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 33, 46, 47, 54, 56, 58, 60, 61, 62, 63, 68, 74, 79, 81, 83, 87, 90, 92, 93, 96, 97, 98, 99, 100, 109, 124, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 141, 142, 144, 147, 151, 152, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 187, 190, 191, 192, 198, 199, 200, 202, 205, 206, 208, 209, 220, 221, 222, 224, 229], "pass": [5, 8, 11, 19, 21, 48, 49, 50, 54, 56, 61, 79, 96, 99, 144, 159, 160, 161, 162, 163, 187, 220, 221, 222, 223, 224, 226], "refer": [5, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 33, 56, 58, 61, 62, 63, 68, 79, 81, 96, 98, 101, 109, 135, 140, 144, 147, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 183, 191, 192, 207, 212, 217, 218, 219, 220, 221, 222, 224], "determin": [6, 7, 99, 107, 129, 130, 131, 136, 137, 138, 139, 160, 165, 167, 169, 187, 204, 222, 224], "time": [6, 7, 12, 23, 28, 56, 68, 74, 99, 189, 191, 195, 206, 207, 215, 217, 221, 222, 224], "2": [6, 11, 26, 27, 33, 34, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 60, 65, 67, 69, 77, 82, 84, 86, 91, 97, 101, 116, 117, 118, 124, 125, 127, 130, 131, 132, 140, 141, 148, 150, 152, 153, 154, 165, 166, 176, 177, 178, 180, 182, 189, 191, 200, 205, 206, 215, 217, 218, 219, 229, 234], "between": [6, 54, 60, 96, 97, 98, 130, 131, 138, 149, 150, 152, 180, 182, 217, 218, 219, 220, 222, 224], "paus": [6, 12, 19], "2000": [6, 11, 18], "eas": [6, 7, 9, 10, 11, 13, 14, 15, 17, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 146, 188], "ease_out_quint": [6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 95, 188], "300": [6, 11, 18, 71, 105, 135, 141, 142, 164, 179, 183, 191, 205, 208, 209, 210, 211, 212, 213, 214, 215, 216, 227], "400": [6, 7, 11, 12, 18, 23, 28, 129, 168, 170, 205, 213], "animation_delay_basic_usag": 6, "millisecond": [7, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 24, 25, 26, 28, 29, 30, 31, 68, 107, 146, 219, 220, 222, 224], "take": [7, 57, 128, 143, 171, 184, 185, 230], "500": [7, 12, 19, 21, 23, 28, 68, 71, 109, 191, 206, 234], "animation_duration_basic_usag": 7, "relat": [8, 33, 64, 68, 141, 190, 208, 209, 210, 211, 212, 213, 214, 215, 216, 227, 234], "interfac": [8, 33, 41, 57, 58, 62, 63, 67, 68, 85, 95, 96, 98, 101, 102, 103, 104, 105, 106, 143, 144, 145, 151, 154, 164, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 180, 183, 184, 186, 196, 197, 200, 203, 204, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 220, 222, 223, 224], "animationbas": [8, 9, 14, 18, 146], "depend": [8, 60, 97, 152, 182, 206], "chang": [8, 18, 79, 88, 90, 91, 99, 111, 113, 116, 124, 125, 129, 136, 137, 139, 141, 142, 160, 161, 163, 167, 168, 169, 170, 172, 173, 174, 175, 186, 189, 190, 191, 205, 206, 207, 233], "benefit": 8, "librari": [8, 33, 58, 67, 81, 82, 92, 93, 96, 98, 101, 102, 103, 104, 105, 106, 144, 145, 146, 147, 154, 160, 179, 186, 192, 234], "mypi": [8, 82, 160], "pylanc": [8, 82, 160, 181], "animation_bas": [8, 18], "_target": 8, "creat": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 27, 29, 30, 31, 60, 63, 74, 85, 96, 97, 111, 123, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 152, 164, 166, 177, 178, 180, 182, 190, 205, 206, 207, 229, 235], "animationfillalpha": 9, "fill": [9, 10, 18, 60, 88, 97, 111, 112, 113, 122, 128, 133, 136, 137, 141, 154, 163, 166, 177, 178, 182, 186, 204, 206, 207, 211, 212, 229, 233], "opac": [9, 12, 13, 60, 94, 97, 111, 112, 115, 152, 164, 166, 177, 178, 182, 206, 207, 211, 229, 233], "exist": [9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 29, 30, 31, 83, 99, 154, 161, 162, 163, 227], "graphicsbas": [9, 10, 13, 14, 15, 20, 24, 25, 26, 27, 94, 205], "circl": [9, 10, 12, 13, 14, 15, 20, 24, 25, 26, 27, 85, 94, 101, 102, 103, 109, 113, 129, 146, 162, 167, 169, 170, 183, 205, 234], "animation_fill_alpha_basic_usag": 9, "_type": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 28, 29, 30, 31, 38, 39, 40, 44, 46, 52, 53, 58, 60, 63, 66, 68, 83, 87, 96, 97, 101, 102, 103, 104, 105, 106, 110, 123, 125, 127, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 156, 157, 158, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 189, 191, 206, 207, 217, 219, 220, 222, 224, 227, 229, 232], "_anim": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "linear": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 95], "final": [9, 10, 13, 14, 15, 20, 24, 25, 26, 29, 142], "draw_circl": [9, 12, 20, 30, 31, 85, 94, 111, 146, 162, 190, 234], "radiu": [9, 20, 30, 31, 85, 94, 101, 102, 103, 109, 113, 129, 133, 162, 167, 169, 170, 183, 205, 234], "animation_i": [9, 12, 146, 188], "1500": [9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31], "sequenti": [9, 10, 12, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 146], "animation_parallel": [9, 10, 13, 14, 15, 17, 20, 24, 25, 26, 29, 30, 31, 146, 188], "enum": [9, 10, 12, 13, 14, 15, 17, 18, 20, 24, 25, 26, 27, 29, 30, 31, 99, 141, 146, 206, 208, 209, 220, 224, 234], "animationfillcolor": 10, "cyan": [10, 14, 79, 111, 113, 116, 122, 127, 129, 133, 134, 141, 167, 169, 170, 190], "magenta": [10, 14, 61, 79, 111, 113, 116, 122, 127, 134, 141, 163, 167, 169, 170], "f0a": [10, 12, 14, 18, 56, 60, 61, 67, 79, 88, 90, 92, 93, 97, 100, 111, 113, 116, 122, 124, 127, 134, 141, 142, 152, 159, 160, 161, 163, 167, 169, 170, 177, 182, 229, 231, 234], "fill_color": [10, 12, 18, 56, 61, 62, 63, 64, 65, 74, 79, 88, 94, 99, 100, 101, 102, 103, 105, 106, 109, 111, 117, 118, 119, 120, 128, 129, 133, 136, 137, 140, 146, 153, 154, 159, 160, 161, 163, 164, 167, 169, 170, 183, 185, 186, 205, 208, 209, 210, 211, 213, 214, 215, 216, 227, 230, 231, 233, 234], "animation_fill_color_basic_usag": 10, "_color": [10, 14, 60, 97, 127, 141, 152, 154, 164, 166, 177, 178, 182, 191, 206, 207, 229], "finish": [11, 12], "all": [11, 19, 21, 23, 56, 79, 82, 96, 98, 101, 102, 103, 104, 105, 106, 123, 128, 144, 145, 154, 161, 162, 163, 185, 191, 231], "run": [11, 19, 23, 99, 191], "last": [11, 41, 43, 136, 164, 209], "attribut": [11, 89, 111, 129, 133, 139, 152, 154, 177, 178, 191, 233], "have": [11, 19, 21, 23, 39, 59, 68, 77, 81, 89, 100, 111, 123, 125, 126, 142, 146, 147, 196, 205, 219], "on_click": [11, 21, 32, 61, 74, 80, 88, 91, 100, 113, 116, 117, 118, 119, 120, 128, 137, 140, 159, 162, 185, 186, 221, 234], "5000": [11, 23], "options_": [11, 21, 56, 221, 224, 226], "repeat_count": [11, 19, 21, 23, 56, 146, 220, 221, 222, 225, 226, 234], "animation_finish_basic_usag": 11, "rectopt": [11, 19, 21, 23, 28, 86, 220, 221, 222, 223, 224, 225, 226], "750": [11, 19, 21, 23], "mani": [12, 160, 181], "ease_in_cub": [12, 95], "ease_in_out_bounc": [12, 95], "control": [12, 167, 168, 169, 170, 191], "plai": 12, "revers": [12, 23, 33, 47, 146], "parallel": [12, 18], "support": [12, 32, 36, 42, 58, 84, 91, 93, 94, 96, 122, 124, 148, 149, 181, 193, 234], "show": [12, 41, 57, 95, 124, 126, 143, 160, 167, 169, 170, 176, 183, 184], "block": [12, 65, 67, 86, 95, 153, 234], "550": [12, 234], "line_styl": [12, 13, 14, 15, 17, 18, 86, 94, 111, 115, 116, 117, 118, 119, 120, 121, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 146, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 190, 234], "fff": [12, 13, 14, 15, 17, 18, 65, 86, 94, 111, 115, 117, 118, 119, 120, 121, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 141, 142, 153, 167, 168, 169, 170, 171, 172, 173, 174, 175, 178, 179, 229], "on_x_animation_complete_1": 12, "on_x_animation_complete_2": 12, "on_y_animation_complete_1": 12, "on_y_animation_complete_2": 12, "on_cx_animation_complete_1": 12, "275": [12, 101, 102, 103, 141, 234], "on_cx_animation_complete_2": 12, "325": [12, 133], "75": [12, 60, 94, 97, 101, 102, 103, 113, 114, 125, 127, 136, 140, 141, 167, 171, 176, 177, 183, 229, 234], "25": [12, 65, 94, 101, 102, 103, 112, 114, 115, 124, 129, 136, 140, 147, 153, 155, 164, 167, 168, 169, 170, 176, 183, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 234], "on_cy_animation_complete_1": 12, "on_cy_animation_complete_2": 12, "375": [12, 170, 234], "on_move_animation_complete_1": 12, "450": [12, 110, 127, 165, 234], "on_move_animation_complete_2": 12, "on_width_animation_complete_1": 12, "animation_width": [12, 146], "on_width_animation_complete_2": 12, "on_height_animation_complete_1": 12, "animation_height": [12, 146], "on_height_animation_complete_2": 12, "on_ellipse_width_animation_complete_1": 12, "ellips": [12, 94, 133, 139, 146, 182], "on_ellipse_width_animation_complete_2": 12, "draw_ellips": [12, 29, 94, 111, 146, 234], "175": [12, 94, 101, 102, 103, 136, 141, 169, 170, 171], "on_ellipse_height_animation_complete_1": 12, "on_ellipse_height_animation_complete_2": 12, "on_fill_color_animation_complete_1": 12, "animation_fill_color": [12, 18, 146], "on_fill_color_animation_complete_2": 12, "on_fill_alpha_animation_complete_1": 12, "animation_fill_alpha": [12, 18, 146], "on_fill_alpha_animation_complete_2": 12, "on_line_color_animation_complete_1": 12, "animation_line_color": [12, 146], "line_color": [12, 14, 62, 64, 65, 94, 109, 117, 118, 119, 120, 130, 131, 132, 134, 138, 142, 146, 153, 167, 168, 169, 170, 171, 172, 173, 174, 175, 183], "on_line_color_animation_complete_2": 12, "666": [12, 117, 118, 119, 120, 206], "on_line_alpha_animation_complete_1": 12, "animation_line_alpha": [12, 146], "on_line_alpha_animation_complete_2": 12, "on_line_thickness_animation_complete_1": 12, "animation_line_thick": [12, 18, 146], "on_line_thickness_animation_complete_2": 12, "350": [12, 63, 65, 95, 101, 102, 103, 107, 109, 112, 115, 124, 125, 127, 129, 139, 141, 153, 168, 170, 183, 208, 209, 210, 211, 213, 214, 220, 222], "on_radius_animation_complete_1": 12, "animation_radiu": [12, 146], "on_radius_animation_complete_2": 12, "475": [12, 234], "on_rotation_around_center_animation_complete_1": 12, "animation_rotation_around_cent": [12, 146], "rotation_around_cent": [12, 24, 56, 86, 99, 107, 146, 221, 222, 223, 225, 231, 234], "on_rotation_around_center_animation_complete_2": 12, "90": [12, 24, 25, 56, 141, 221, 225], "on_rotation_around_point_animation_complete_1": 12, "animation_rotation_around_point": [12, 146], "rotation_around_point": [12, 25, 86, 146], "on_rotation_around_point_animation_complete_2": 12, "on_scale_x_from_center_animation_complete_1": 12, "animation_scale_x_from_cent": [12, 146], "scale_x_from_cent": [12, 26, 27, 86, 125, 146], "on_scale_x_from_center_animation_complete_2": 12, "on_scale_y_from_center_animation_1": 12, "animation_scale_y_from_cent": [12, 146], "scale_y_from_cent": [12, 26, 27, 86, 125, 146], "on_scale_y_from_center_animation_2": 12, "on_scale_x_from_point_animation_complete_1": 12, "animation_scale_x_from_point": [12, 146], "scale_x_from_point": [12, 27], "on_scale_x_from_point_animation_complete_2": 12, "on_scale_y_from_point_animation_complete_1": 12, "animation_scale_y_from_point": [12, 146], "scale_y_from_point": [12, 27], "on_scale_y_from_point_animation_complete_2": 12, "animation_interfaces_abstract_each_attr": 12, "more": [12, 68, 86, 88, 93, 94, 147, 159, 166, 179, 190, 192, 229], "detail": [12, 86, 88, 94, 147, 159, 179, 188, 190, 192, 229], "easingopt": 12, "ease_in_quint": [12, 95], "ease_in_out_quint": [12, 95], "animation_interfaces_abstract_eas": 12, "animation_interfaces_abstract_x": 12, "animation_interfaces_abstract_i": 12, "animation_interfaces_abstract_mov": 12, "animation_interfaces_abstract_width": 12, "animation_interfaces_abstract_height": 12, "animation_interfaces_abstract_fill_color": 12, "animation_interfaces_abstract_fill_alpha": 12, "animation_interfaces_abstract_line_color": 12, "animation_interfaces_abstract_line_alpha": 12, "stroke": [12, 233], "animation_interfaces_abstract_line_thick": 12, "animation_interfaces_abstract_radiu": 12, "animation_interfaces_abstract_rotation_around_cent": 12, "animation_interfaces_abstract_rotation_around_point": 12, "animation_interfaces_abstract_scale_x_from_cent": 12, "animation_interfaces_abstract_scale_y_from_cent": 12, "animation_interfaces_abstract_scale_x_from_point": 12, "animation_interfaces_abstract_scale_y_from_point": 12, "animationlinealpha": 13, "line": [13, 14, 15, 16, 18, 60, 86, 97, 111, 115, 116, 117, 118, 119, 120, 121, 128, 129, 130, 131, 132, 133, 136, 138, 142, 146, 164, 166, 168, 170, 172, 173, 174, 175, 177, 178, 182, 191, 198, 199, 202, 206, 209, 215, 228, 229, 233, 234], "eee": [13, 15, 234], "thick": [13, 14, 15, 17, 18, 60, 86, 94, 97, 111, 115, 116, 117, 118, 119, 120, 121, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 152, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 182, 206, 207, 229, 234], "animation_line_alpha_basic_usag": 13, "animationlinecolor": 14, "one": [14, 37, 56, 85, 95, 100, 113, 121, 123, 125, 129, 136, 141, 160, 161, 163, 169, 172, 175, 180, 186, 187, 188, 212, 221, 222, 225], "animation_line_color_basic_usag": 14, "animationlinethick": 15, "10": [15, 33, 35, 41, 49, 50, 51, 52, 53, 54, 55, 59, 60, 61, 65, 68, 69, 70, 77, 80, 81, 82, 83, 84, 91, 96, 98, 108, 109, 111, 117, 118, 119, 120, 121, 130, 131, 133, 138, 139, 141, 144, 145, 147, 148, 149, 150, 152, 153, 155, 156, 157, 158, 166, 169, 170, 176, 180, 182, 183, 189, 207, 218, 222, 224, 227, 228, 230, 232, 233], "animation_line_thickness_basic_usag": 15, "6": [15, 33, 36, 37, 48, 60, 77, 97, 130, 138, 141, 152, 158, 166, 178, 180, 182, 196, 217, 219, 220, 223, 229, 234], "describ": [16, 61, 79, 161, 162, 163], "animation_method_chaining_basic_usage_1": 16, "These": [16, 19, 26, 27, 29, 34, 52, 53, 54, 55, 61, 65, 77, 82, 88, 95, 111, 123, 124, 125, 126, 133, 145, 153, 159, 160, 161, 163, 168, 188, 191], "want": [16, 59, 96, 98, 101, 102, 103, 104, 105, 106, 109, 127, 138, 141, 144, 181, 187, 188, 190, 207, 233], "javascript": [16, 32, 33, 34, 41, 48, 49, 50, 51, 52, 53, 54, 58, 59, 60, 62, 63, 67, 68, 74, 77, 81, 97, 100, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 146, 147, 150, 151, 152, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 186, 189, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 227, 228, 229, 232, 233], "d3": 16, "j": [16, 32, 179, 187, 190], "backslash": 16, "animation_method_chaining_basic_usage_2": 16, "animation_move_basic_usag": 17, "destin": [17, 30, 31, 142, 167, 168, 169, 170, 172, 173, 174, 175, 187], "animationparallel": 18, "multipl": [18, 23, 82, 92, 93, 146, 188, 191, 192, 196, 205, 207], "simultan": [18, 188], "same": [18, 23, 34, 37, 39, 51, 56, 58, 65, 67, 96, 98, 99, 101, 102, 103, 104, 105, 106, 108, 114, 125, 134, 136, 139, 141, 144, 147, 148, 152, 153, 177, 178, 186, 187, 193, 196, 205, 221, 228, 230], "list": [18, 33, 36, 37, 46, 48, 51, 62, 65, 108, 127, 135, 136, 141, 153, 166, 176, 177, 178, 206, 207, 228, 235], "7": [18, 33, 140, 158, 166, 179, 182, 217, 218, 219, 229], "animation_parallel_basic_usag": 18, "t": [18, 33, 42, 58, 59, 67, 81, 83, 84, 93, 96, 98, 100, 101, 102, 103, 104, 105, 106, 144, 146, 147, 160, 168, 186, 191, 192, 232], "sinc": [18, 23, 33, 59, 64, 93, 125, 127, 138, 141, 165, 167, 196], "valueerror": [18, 89, 96, 98], "There": [18, 84, 107, 141, 159, 160, 161, 162, 163], "ignor": [18, 23, 99, 100, 130, 131, 132, 138, 141, 151, 189, 207, 217, 218], "restart": [19, 225], "stop": [19, 21, 95, 100, 146, 220, 222, 223, 224, 225, 232, 234], "addition": 19, "on_timer_1": [19, 23], "on_timer_2": [19, 23], "600": [19, 21, 183, 234], "15_000": 19, "animation_pause_basic_usag": 19, "animationradiu": 20, "animation_radius_basic_usag": 20, "animation_reset_basic_usag": 21, "standard": 22, "properti": [22, 56, 62, 64, 68, 89, 117, 125, 146, 164, 165, 179, 181], "therefor": [22, 93, 141, 186, 228], "And": [22, 58, 125, 136, 141, 169, 194, 220, 235], "animation_return_value_basic_usag": 22, "interv": [23, 28, 107, 220, 222, 224], "everi": [23, 87, 222], "animation_reverse_basic_usag": 23, "dure": 23, "noth": [23, 61, 79, 89, 137, 160, 187, 206], "happen": [23, 61, 79, 160], "alreadi": [23, 187, 191], "been": 23, "animation_reverse_not": 23, "suppos": [23, 90, 160, 190], "reach": [23, 220, 221, 222, 224, 226], "begin": [23, 198, 202], "In": [23, 74, 87, 90, 117, 118, 119, 120, 160, 162, 167, 169, 170, 171, 183, 185, 190, 231, 232, 233], "case": [23, 87, 90, 160, 179, 183, 190, 197, 203, 232, 233], "instruct": [23, 96, 98, 101, 102, 103, 104, 105, 106, 144], "behavior": [23, 48, 49, 50, 51, 52, 53, 54, 81, 100, 146, 167, 168, 169, 170, 172, 173, 174, 175, 187, 193, 196], "mean": 23, "tick": [23, 87, 107, 220, 222], "animationrotationaroundcent": 24, "rotat": [24, 25, 56, 60, 97, 122, 123, 152, 166, 177, 178, 182, 206, 221, 225, 229], "around": [24, 25, 122, 123], "center": [24, 26, 30, 31, 60, 97, 101, 122, 124, 125, 129, 133, 152, 166, 177, 178, 182, 183, 206, 229], "degre": [24, 25, 56, 122, 225], "animation_rotation_around_center_basic_usag": 24, "animationrotationaroundpoint": 25, "bottom": [25, 27, 123, 125, 183, 206, 207], "animation_rotation_around_point_basic_usag": 25, "animationscalexfromcent": 26, "direct": [26, 27, 60, 86, 97, 114, 124, 125, 126, 152, 166, 177, 178, 182, 206, 229], "scale": [26, 27, 60, 97, 124, 125, 152, 166, 177, 178, 182, 229], "animationscaleyfromcent": 26, "side": [26, 27, 48, 49, 50, 51, 52, 53, 54, 55, 193, 221], "elif": [26, 27, 59, 98, 124, 144, 146, 234], "left_rectangl": [26, 27, 62, 124, 126, 231], "right_rectangl": [26, 27, 62, 124, 126, 231], "animation_scale_x_and_y_from_center_basic_usag": 26, "animationscalexfrompoint": 27, "animationscaleyfrompoint": 27, "left_rectangle_x": 27, "right_rectangle_i": 27, "scale_1": 27, "scale_2": 27, "animation_scale_x_and_y_from_point_basic_usag": 27, "elaps": 28, "consol": [28, 32, 51, 52, 53, 54, 55, 66, 74, 100, 160, 165, 228, 233], "press": [28, 32, 55, 66, 100, 160, 165, 228], "f12": [28, 32, 55, 66, 100, 160, 165, 228], "kei": [28, 32, 55, 81, 82, 83, 84, 100, 104, 105, 165, 228], "10000": 28, "animation_time_basic_usag": 28, "elapsed_tim": 28, "fp": [28, 56, 60, 86, 97, 99, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 220, 221, 223, 224, 225, 231, 234], "fps_60": [28, 56, 60, 86, 97, 99, 107, 123, 124, 125, 126, 152, 166, 177, 178, 182, 220, 221, 222, 223, 224, 225, 234], "animationwidth": 29, "animationheight": 29, "some": [29, 196], "animation_width_basic_usag": 29, "animation_height_basic_usag": 29, "animationwidthforellips": 29, "animationheightforellips": 29, "reason": [29, 30, 31, 67, 96, 98, 101, 102, 103, 104, 105, 106, 144, 186, 235], "intern": [29, 30, 31, 33, 48, 50, 58, 68, 81, 141, 145, 147, 183, 191, 192], "implement": [29, 30, 31, 32, 62, 96, 98, 101, 102, 103, 104, 105, 106, 144, 146, 154, 164, 172, 175, 231], "animation_x_basic_usag": 30, "animationcx": 30, "animation_cx": 30, "animationi": 31, "animation_y_basic_usag": 31, "animationci": 31, "animation_ci": 31, "mai": [32, 33, 56, 60, 97, 152, 182, 206], "irregular": 32, "django": [32, 187], "templat": 32, "tag": [32, 164, 187, 191], "string": [32, 33, 40, 56, 58, 60, 62, 63, 65, 68, 74, 81, 87, 96, 97, 101, 102, 103, 104, 105, 106, 108, 116, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 147, 150, 151, 152, 153, 154, 158, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 189, 190, 191, 205, 206, 207, 227, 229, 235], "log": [32, 66, 187, 228, 233], "express": [32, 33, 49, 56, 58, 67, 68, 81, 82, 96, 98, 100, 144, 147, 186, 190, 192, 228], "append_js_expression_basic_usag": 32, "messag": [32, 48, 49, 50, 51, 52, 53, 54, 55, 66, 100, 187, 228], "browser": [32, 51, 52, 53, 54, 55, 74, 100, 165, 228], "why": [33, 58, 67, 81, 96, 98, 101, 102, 103, 104, 105, 106, 144, 146, 147, 186, 192], "doesn": [33, 58, 67, 81, 96, 98, 100, 101, 102, 103, 104, 105, 106, 144, 146, 147, 160, 186, 192, 232], "built": [33, 34, 36, 42, 46, 48, 50, 52, 53, 58, 59, 67, 81, 84, 96, 98, 101, 102, 103, 104, 105, 106, 108, 144, 146, 147, 148, 149, 176, 186, 192, 193, 195], "data": [33, 58, 67, 81, 96, 98, 101, 102, 103, 104, 105, 106, 109, 135, 144, 147, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 183, 186, 191, 192, 227], "behav": [33, 34, 39, 46, 58, 65, 67, 81, 96, 98, 101, 102, 103, 104, 105, 106, 114, 144, 147, 153, 186, 196, 209, 228, 230], "iter": [33, 37, 67, 101, 102, 103, 104, 105, 106], "tupl": [33, 37, 65, 153], "rang": [33, 37, 46, 57, 63, 67, 143, 146, 150, 155, 160, 184, 200], "arr_from_list": 33, "arr_from_tupl": 33, "4": [33, 34, 36, 37, 39, 42, 46, 47, 48, 77, 117, 118, 141, 148, 166, 177, 180, 194, 200], "other_arr": [33, 36, 37], "9": [33, 52, 53, 149, 156, 157], "arr_from_arr": 33, "uniqu": [33, 92, 93, 191], "id": 33, "arr": [33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 67, 101, 102, 103, 156, 157, 180], "int_val": [33, 49, 54, 80, 98, 144, 147, 189, 228, 232, 233], "pop": [33, 146], "__getitem__": 33, "subscript": 33, "possibli": 33, "especi": 33, "index": [33, 38, 39, 41, 44, 46, 48, 50, 81, 92, 93, 101, 102, 110, 179, 187, 191, 200], "exce": 33, "length": [33, 138, 141, 146, 204], "runtim": [33, 41], "out": [33, 67, 163], "bound": [33, 109, 183], "int_valu": [33, 151, 227], "funcdament": [33, 147], "common": [33, 147], "push": [33, 146, 232], "extend": [33, 146], "concat": [33, 146], "insert": [33, 96, 98, 146], "insert_at": [33, 146], "remove_at": [33, 146], "sort": [33, 45, 146], "slice": [33, 146], "join": [33, 146], "index_of": [33, 146], "comparison": [33, 48, 50, 54, 96, 146, 147, 169, 192], "_arrvalu": [33, 34, 37, 38, 39, 41, 43, 44], "_loop": 33, "initialize_with_base_value_interfac": 33, "initializewithbasevalueinterfac": [33, 105, 106], "variable_name_suffix": [33, 58, 60, 62, 63, 68, 74, 81, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 146, 147, 150, 151, 152, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 229], "skip_init_substitution_expression_append": [33, 58, 68, 81, 147, 192], "bool": [33, 47, 54, 68, 81, 93, 147, 149, 164, 167, 168, 169, 170, 172, 173, 174, 175, 187, 192, 195, 206, 207, 235], "fals": [33, 47, 48, 50, 54, 56, 58, 59, 66, 68, 81, 90, 93, 96, 98, 104, 114, 147, 158, 164, 167, 168, 169, 170, 172, 173, 174, 175, 187, 190, 191, 192, 206, 207, 227, 230, 232, 233], "initi": [33, 49, 58, 68, 81, 96, 142, 147, 165, 183, 192], "fix": [33, 150, 235], "variabl": [33, 37, 49, 51, 54, 55, 58, 60, 62, 63, 68, 74, 81, 96, 97, 98, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 144, 146, 147, 150, 151, 152, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 189, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 229, 232, 233], "suffix": [33, 58, 60, 62, 63, 65, 68, 74, 81, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 147, 150, 151, 152, 153, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 229, 233], "boolean": [33, 36, 54, 56, 59, 60, 66, 67, 68, 74, 81, 87, 90, 93, 96, 97, 98, 104, 105, 114, 124, 144, 147, 149, 152, 158, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 177, 178, 182, 187, 190, 191, 192, 195, 206, 207, 210, 214, 216, 226, 227, 229, 230, 234, 235], "indic": [33, 58, 68, 81, 101, 102, 147, 167, 168, 169, 170, 172, 173, 174, 175, 187, 192, 200, 230], "whether": [33, 37, 54, 58, 66, 68, 81, 93, 114, 136, 147, 164, 167, 168, 169, 170, 172, 173, 174, 175, 187, 191, 192, 206, 207], "skip": [33, 58, 59, 62, 67, 68, 81, 95, 127, 137, 141, 147, 160, 192, 198, 199, 200, 202, 207], "substitut": [33, 58, 68, 81, 147, 192], "fundament": [33, 58, 81, 146, 147, 192], "similar": [34, 37, 125, 133, 136, 141, 177], "empti": [35, 41, 187], "20": [35, 41, 50, 59, 65, 81, 82, 84, 96, 98, 108, 139, 141, 147, 148, 149, 153, 155, 164, 176, 206, 207, 212, 227, 232], "30": [35, 41, 50, 60, 68, 72, 75, 96, 97, 122, 140, 142, 147, 148, 152, 176, 182, 222, 227, 229, 234], "equal": [36, 48, 50, 51, 52, 53, 55, 58, 98, 141, 144], "result": [36, 46, 47, 54, 58, 66, 90, 95, 122, 134, 141, 142, 149, 150, 155, 158, 179, 189, 191, 195, 198, 199, 200, 202, 204, 227], "oper": [36, 54, 58, 91, 96, 124, 146, 147, 192], "two": [37, 48, 50, 51, 68, 123, 150, 169, 180, 181, 217, 218, 219], "concaten": [37, 193], "origin": [37, 46, 161, 163, 194, 235], "place": [37, 45, 47, 150, 194], "still": [37, 235], "differ": [37, 60, 97, 123, 125, 152, 182, 207], "found": 38, "search": 38, "both": [39, 48, 49, 50, 136, 160, 176, 205], "wai": [39, 95, 96, 98, 101, 102, 103, 104, 105, 106, 125, 144], "alia": [39, 192], "accept": [39, 43, 48, 52, 53, 58, 60, 69, 70, 71, 72, 73, 75, 78, 82, 90, 96, 97, 98, 99, 102, 103, 104, 105, 106, 107, 108, 109, 122, 127, 141, 147, 150, 152, 160, 164, 166, 177, 178, 182, 186, 191, 192, 193, 198, 199, 202, 206, 207, 208, 209, 222, 228, 229, 230], "separ": [40, 96, 201, 205], "sep": [40, 201], "assert_equ": [41, 55, 57, 128, 143, 146, 150, 151, 155, 180, 184, 194, 196, 197, 198, 199, 200, 202, 203, 204, 211, 212, 227], "array_last_value_basic_usage_1": 41, "undefin": [41, 49, 80], "fixed_value_typ": 41, "assert_undefin": [41, 80, 146], "array_last_value_basic_usage_2": 41, "appli": [42, 84, 124, 186, 187, 189, 191, 194, 205, 235], "last_valu": [43, 146], "popped_v": 43, "order": [45, 47, 188], "extract": [46, 83], "new": [46, 63, 85, 142, 165, 166, 172, 173, 174, 175, 194, 206, 207, 221], "modifi": 46, "sliced_arr": 46, "ascend": 47, "descend": 47, "true": [47, 50, 54, 56, 58, 66, 74, 89, 90, 93, 96, 104, 110, 114, 142, 144, 147, 158, 167, 168, 169, 170, 172, 173, 174, 175, 187, 190, 191, 206, 207, 210, 214, 216, 227, 230], "arrai": [48, 51, 65, 67, 101, 102, 103, 104, 136, 153, 156, 157, 177, 178, 180, 189, 201, 206, 207, 227, 235], "convers": [48, 49, 50, 54, 61, 90, 114, 126, 141, 161, 163, 171, 226, 230], "arr_1": 48, "assert_arrays_equal_basic_usage_1": 48, "arr_2": [48, 189, 232], "fail": [48, 49, 50, 51, 52, 53, 54, 55], "assert_arrays_equal_basic_usage_2": 48, "assert_arrays_not_equal_basic_usage_1": 48, "assert_arrays_equal_notes_for_the_assert_equ": 48, "outer_frames_index_adjust": [48, 50], "condit": [48, 49, 50, 51, 52, 53, 54, 58, 59, 66, 67, 87, 96, 98, 144, 186, 226, 234], "outer": [48, 50], "frame": [48, 50, 99, 107, 141, 222, 229, 231], "caller": [48, 50, 228], "logic": [48, 50, 145], "directli": [48, 50, 96], "defin": [49, 74, 95, 96, 159], "delet": [49, 146], "assert_defined_basic_usage_1": 49, "i_11": [49, 51, 54, 55], "than": [49, 52, 53, 98, 141, 144, 147, 155], "append_js_express": [49, 146], "f": 49, "variable_nam": [49, 189, 190], "assert_defined_basic_usage_2": 49, "assert_undefined_basic_usage_1": 49, "dict_val": [50, 83], "b": [50, 81, 82, 83, 84, 106], "assert_dicts_equal_basic_usage_1": 50, "dct_1": 50, "assert_dicts_equal_basic_usage_2": 50, "assert_dicts_not_equal_basic_usage_1": 50, "assert_dicts_equal_notes_for_assert_equ": 50, "dict_1": [50, 81, 84], "dict_2": [50, 81], "int_1": [51, 54, 55, 59, 81, 96, 98, 108, 145, 147, 148, 149, 189, 193, 232], "11": [51, 54, 55, 77, 98, 149, 150, 156, 157], "assert_equal_basic_usag": 51, "assert_not_equal_basic_usag": 51, "assert_arrays_equ": [51, 101, 104, 146, 201], "assert_dicts_equ": [51, 146], "int_2": [51, 81, 96, 98, 147, 148, 149, 232], "assert_arrays_not_equ": [51, 146], "assert_dicts_not_equ": [51, 146], "greater": [52, 53, 98, 141, 144, 155], "numer": [52, 53, 147], "int_val_1": [52, 53], "int_val_2": [52, 53], "int_val_3": [52, 53], "assert_greater_and_greater_equal_basic_usage_1": 52, "assert_greater_and_greater_equal_basic_usage_2": 52, "less": [52, 53, 98, 99, 155], "assert_less_and_less_equal_basic_usage_1": 53, "assert_less_and_less_equal_basic_usage_2": 53, "assert_greater_equ": [53, 146], "type_strict": 54, "strict": 54, "becaus": [54, 160], "bool_1": [54, 58], "assert_true_basic_usage_1": 54, "b_3": [54, 232], "assert_true_basic_usage_2": 54, "assert_true_basic_usage_3": 54, "assert_true_basic_usage_4": 54, "assert_false_basic_usage_1": 54, "strictli": 54, "integ": [54, 57, 58, 63, 69, 70, 72, 73, 75, 143, 147, 150, 158, 165, 180, 184, 191, 232], "test": 54, "On": [54, 99, 147], "contrari": 54, "prefix": [55, 94, 145, 154], "assert_": 55, "assert_tru": [55, 146], "root": [55, 145, 154], "them": [55, 181, 234, 235], "assertion_basic_behavior_result": 55, "see": [55, 60, 68, 93, 97, 136, 147, 152, 166, 177, 178, 182, 192, 206, 207, 229, 234], "assertion_basic_behavior_results_fail": 55, "provid": [55, 83], "assertion_basic_behavior_msg": 55, "regist": [56, 61, 79, 160, 161, 162, 163, 188, 231], "your": [56, 163], "custom_event_typ": [56, 160], "rotate_90_degre": 56, "on_rotate_90_degre": 56, "toggl": 56, "visibl": [56, 85, 111, 146], "on_rectangle_click": [56, 100, 111, 160, 224, 226, 228, 231], "unbind_click": [56, 160, 221, 224, 226], "timer_complet": [56, 146, 220, 223, 225, 234], "on_timer_complet": [56, 221, 223], "rate": [56, 99], "rectangle_1": [56, 66, 90, 95, 107, 110, 112, 115, 121, 123, 124, 165, 185, 191, 221, 222], "rectangle_2": [56, 90, 95, 107, 110, 112, 115, 121, 123, 124, 165, 185, 191, 221, 222], "bind_and_trigger_custom_event_basic_usag": 56, "singl": [56, 62, 79, 127, 141, 160, 187, 207, 231], "_event": [56, 61, 79, 99, 161, 162, 163, 231], "customeventtyp": 56, "in_handler_head_express": 56, "dispatch": [56, 160], "ad": [56, 89, 110, 164, 190, 208, 209, 210, 211, 212, 213, 214, 215, 216], "head": 56, "on_custom_ev": [56, 160], "my_custom_ev": [56, 160], "do": [56, 96, 136, 146, 160, 164, 171, 187, 188, 191, 205, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "someth": [56, 85, 96, 111, 145, 160, 187, 191], "here": [56, 96, 160, 187, 231], "about": [56, 61, 68, 79, 146, 161, 162, 163, 192, 220, 221, 222, 224], "bool_2": 58, "bool_3": 58, "noqa": 58, "liter": 58, "bool_val_1": 58, "bool_val_2": 58, "true_": [58, 146, 210, 214, 216], "false_": [58, 146], "constant": [58, 62, 65, 113, 116, 127, 141, 153], "bool_val": 58, "Not": 58, "els": [59, 65, 85, 87, 96, 111, 113, 116, 144, 146, 153, 160, 234], "regardless": [59, 156, 157], "convert": [59, 150, 158, 227], "satisfi": 59, "locals_": [59, 96, 98, 101, 102, 103, 104, 105, 106, 144], "globals_": [59, 96, 98, 101, 102, 103, 104, 105, 106, 144], "basic": [59, 85, 111, 159, 190, 234], "local": [59, 96, 98, 101, 102, 103, 104, 105, 106, 144, 160], "global": [59, 96, 98, 101, 102, 103, 104, 105, 106, 144], "occasion": [59, 81, 187, 235], "don": [59, 96, 98, 101, 102, 103, 104, 105, 106, 144, 191], "vector": [60, 97, 111, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 146, 152, 166, 174, 176, 177, 178, 182, 190, 229], "style": [60, 97, 129, 130, 131, 133, 136, 138, 141, 142, 152, 153, 154, 164, 166, 177, 178, 182, 206, 207, 210, 214, 216, 229], "circle_basic_usag": 60, "circle_x": 60, "circle_i": 60, "circle_radiu": 60, "circle_fill_color": 60, "circle_fill_alpha": 60, "circle_line_color": 60, "circle_line_alpha": 60, "circle_line_thick": 60, "dot": [60, 97, 117, 119, 120, 129, 130, 132, 133, 134, 138, 142, 152, 166, 177, 178, 182, 229], "linedotset": [60, 97, 119, 129, 131, 132, 133, 134, 138, 141, 142, 152, 166, 177, 178, 182, 229], "dot_siz": [60, 97, 117, 119, 129, 130, 132, 133, 134, 141, 142, 152, 166, 177, 178, 182, 229, 234], "circle_line_dot_set": 60, "dash": [60, 97, 111, 117, 118, 130, 131, 152, 166, 177, 178, 182, 229], "linedashset": [60, 97, 118, 131, 132, 134, 141, 152, 166, 177, 178, 182, 229], "dash_siz": [60, 97, 111, 117, 118, 130, 131, 141, 152, 166, 177, 178, 182, 229], "space_s": [60, 97, 111, 117, 118, 120, 130, 131, 138, 141, 152, 166, 177, 178, 182, 229, 234], "circle_line_dash_set": 60, "round": [60, 97, 120, 138, 139, 150, 152, 166, 177, 178, 182, 229], "linerounddotset": [60, 97, 120, 138, 141, 152, 166, 177, 178, 182, 229], "round_siz": [60, 97, 120, 138, 141, 152, 166, 177, 178, 182, 229, 234], "circle_line_round_dot_set": 60, "linedashdotset": [60, 97, 117, 141, 152, 166, 177, 178, 182, 229], "circle_line_dash_dot_set": 60, "359": [60, 97, 152, 166, 177, 178, 182, 206, 229], "circle_rotation_around_cent": 60, "circle_set_rotation_around_point": 60, "001": [60, 97, 152, 166, 177, 178, 182, 204, 229], "005": [60, 97, 152, 166, 177, 178, 182, 206, 229], "circle_scale_x_from_cent": 60, "circle_scale_y_from_cent": 60, "125": [60, 97, 105, 133], "scale_x": [60, 97, 125, 152, 166, 177, 178, 182, 206, 229], "circle_scale_x_from_point": 60, "scale_i": [60, 97, 125, 152, 166, 177, 178, 182, 229], "circle_scale_y_from_point": 60, "flip": [60, 97, 114, 152, 166, 177, 178, 182, 206, 229], "reflect": [60, 86, 97, 150, 152, 166, 177, 178, 182, 206, 229], "state": [60, 90, 97, 152, 166, 177, 178, 182, 206, 229], "not_": [60, 86, 97, 114, 152, 166, 177, 178, 182, 206, 229], "circle_flip_x": 60, "shape": [60, 97, 136, 142, 152, 182], "difficult": [60, 97, 152, 182], "tell": [60, 97, 152, 182], "ax": [60, 97, 152, 182], "circle_flip_i": 60, "skew": [60, 97, 126, 152, 166, 177, 178, 182, 229], "distort": [60, 97, 152, 166, 177, 178, 182, 206, 229], "circle_skew_x": 60, "circle_skew_i": 60, "line_cap": [60, 97, 152, 166, 177, 178, 182, 229], "linecap": [60, 97, 141, 152, 166, 177, 178, 182, 229], "child_mixin": [60, 97, 152, 154, 164, 166, 177, 178, 182, 206, 207, 229], "childmixin": [60, 89, 97, 152, 154, 164, 166, 177, 178, 182, 206, 207, 229], "colorless": [60, 62, 97, 111, 113, 116, 127, 133, 141, 146, 152, 166, 177, 178, 182, 206, 207, 229, 234], "cap": [60, 97, 138, 152, 166, 177, 178, 182, 229], "ffffff": [60, 62, 130, 131, 132, 134, 138, 142, 152, 166, 178, 183, 191], "mous": [61, 79, 85, 137, 140, 142, 159, 161, 162, 163], "down": [61, 159, 161, 234], "up": [61, 161, 191, 200], "click_basic_usage_of_the_click_interfac": 61, "click_basic_usage_of_the_unbind_click_interfac": 61, "click_unbind_all_the_click_event_handl": 61, "mouse_ev": [61, 79, 161, 162, 163], "would": [61, 79, 94, 127, 159, 161, 162, 163, 220, 222, 224], "handl": [62, 68, 74, 88, 99, 111, 146, 176, 205, 206, 220, 222, 224, 231], "line_thick": [62, 64, 65, 94, 116, 117, 118, 119, 132, 134, 142, 146, 153, 167, 168, 169, 170, 171, 172, 173, 174, 175], "color_basic_usag": 62, "six": [62, 127, 141], "charact": [62, 127, 141, 196, 198, 199, 202, 204], "three": [62, 125, 127, 141, 176, 180], "000005": [62, 127, 141], "symbol": [62, 82, 92, 127, 141, 154, 191], "clear": [62, 64, 127, 141, 146], "_strorstr": 62, "000000": 62, "colorless_basic_usag": 64, "black_000000": 65, "gray_999999": 65, "white_ffffff": [65, 153, 191], "red_ff0000": 65, "hexadecim": [65, 116, 151, 153, 191], "gray_333333": 65, "cyan_00ffff": 65, "colors_basic_usag": 65, "rect_siz": [65, 153], "font_siz": [65, 146, 153, 164, 208, 209, 210, 211, 212, 214], "12": [65, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 153, 207, 217, 218, 219, 232, 234], "outer_margin": [65, 153], "len": [65, 153, 196], "get_colors_memb": [65, 153], "constant_nam": [65, 153], "enumer": [], "line_alpha": [65, 94, 146, 153], "svgtext": [65, 109, 146, 153, 183, 227, 230], "text": [65, 109, 153, 164, 183, 208, 209, 227, 230], "ccc": [65, 141, 153], "colors_definit": 65, "remove_child": [66, 89, 146, 190], "sprite_contains_basic_usag": 66, "add_child": [66, 89, 110, 146, 165, 185, 190, 205], "remove_from_par": [66, 191], "forarrayindic": [65, 67, 146, 153], "loop": [67, 101, 102, 103, 104, 105, 106, 220, 222, 224], "continue_basic_usag": 67, "instanti": [67, 111, 186, 189, 190, 191, 232], "statement": [67, 81, 96, 98, 101, 102, 103, 104, 105, 106, 144], "date": [68, 76, 195], "year": [68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 146], "month": [68, 69, 70, 71, 72, 74, 75, 76, 77, 78, 146], "dai": [68, 70, 71, 72, 73, 74, 75, 76, 77, 78, 146], "dt": [68, 74], "2022": [68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 217, 218, 219], "hour": [68, 146, 218], "minut": [68, 146], "setter": [57, 68, 69, 70, 71, 72, 73, 75, 77, 78, 84, 112, 113, 115, 116, 117, 118, 119, 120, 121, 124, 126, 143, 184, 208, 209, 210, 211, 212, 213, 214, 215, 216], "via": 68, "weekday_pi": [68, 146], "weekday_j": [68, 146], "now": [68, 146], "four": [68, 188], "digit": [68, 78, 150], "31": [68, 69, 76, 183, 230], "23": [68, 70, 200], "59": [68, 72, 75], "999": [68, 127], "datetime_": [68, 69, 70, 71, 72, 73, 75, 76, 77, 78], "Its": [63, 69, 70, 71, 72, 73, 75, 78, 150], "15": [70, 109, 133, 139, 141, 147, 149, 155, 182, 183], "now_datetim": 74, "datetime_now_basic_usag": 74, "py_now": 74, "ap_now": 74, "05": [76, 124, 195], "weekdai": 77, "sundai": 77, "saturdai": 77, "mondai": 77, "base": [77, 85, 109, 114, 122, 123, 124, 125, 126, 146, 183, 191, 200, 227], "tuesdai": 77, "wednesdai": 77, "thursdai": 77, "fridai": 77, "2023": 78, "doubl": 79, "on_double_click": 79, "dblclick_basic_usag": 79, "unbind_dblclick_basic_usag": 79, "unbind": [79, 231], "delete_basic_usag": 80, "retriev": 81, "anyvalu": 81, "dynam": [81, 136, 139], "retrieved_v": 81, "del": 81, "_kei": [81, 83], "_valu": 81, "dict_valu": 82, "a_valu": 82, "enhanc": 82, "safeti": 82, "cannot": 82, "assign": [82, 88], "declar": 82, "incompat": 82, "altern": 82, "b_valu": 82, "got_val_1": 83, "got_val_2": 83, "got_val_3": 83, "expression_str": 83, "expressionstr": 83, "defaulttyp": 83, "hasn": 83, "result_valu": 83, "value_1": 83, "value_2": 83, "value_3": 83, "c": [83, 169], "verifi": [85, 233], "inherit": [85, 207, 209, 233], "do_and_graphics_base_prop_abstract_x_and_i": 86, "do_and_graphics_base_prop_abstract_vis": 86, "get_rotation_around_point": 86, "set_rotation_around_point": 86, "angl": [86, 122], "do_and_graphics_base_prop_abstract_rot": 86, "get_scale_x_from_point": 86, "set_scale_x_from_point": 86, "get_scale_y_from_point": 86, "set_scale_y_from_point": 86, "scale_valu": 86, "01": [86, 166, 195, 200], "do_and_graphics_base_prop_abstract_scal": 86, "scale_from_cent": 86, "scale_from_point": 86, "flip_x": [86, 146], "flip_i": [86, 146], "lineopt": 86, "draw_lin": [86, 94, 111, 117, 118, 119, 120, 121, 138, 141, 146, 234], "x_start": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "y_start": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "x_end": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "y_end": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "do_and_graphics_base_prop_abstract_flip": 86, "skew_x": [86, 146], "skew_i": [86, 146], "do_and_graphics_base_prop_abstract_skew": 86, "css": 87, "addit": [87, 122, 146, 192, 231, 232], "blank": [87, 130, 131, 138, 160, 187], "otherwis": [87, 92, 93], "revert": [87, 96, 98, 101, 102, 103, 104, 105, 106, 144, 146, 161, 163], "_spriteopt": 87, "display_css_v": 87, "display_object_get_and_set_css_basic_usag": 87, "over": [88, 159, 163, 234], "move": [88, 142, 159, 160, 162, 172, 174, 224, 234], "mouseov": [88, 146, 159, 160, 234], "display_object_mouse_event_basic_usag": 88, "mousedown": [88, 146, 159, 160, 234], "mouseup": [88, 146, 159, 160, 234], "mouseout": [88, 146, 159, 160, 234], "mousemov": [88, 146, 159, 160, 234], "until": [89, 127, 141], "display_object_remove_from_parent_basic_usag": 89, "invis": [90, 124, 127, 141, 206, 207], "switch": 90, "on_rectangle_1_click": 90, "on_rectangle_2_click": 90, "display_object_visible_basic_usag": 90, "dimension": [91, 176], "display_object_x_and_y_basic_usag": 91, "pixel": [91, 117, 118, 119, 120, 121, 130, 131, 132, 138, 139, 141, 160, 224], "display_object_x_and_y_augmented_assign": 91, "googl": [92, 234], "colaboratori": [92, 234], "instal": [92, 93], "go": [92, 93], "pip": [92, 93, 179], "command": [92, 179], "output": [92, 93, 187], "html_file_nam": [92, 93], "overwrit": [92, 93], "file": [92, 93, 179, 189, 191, 228, 235], "jupyter_test_1": 92, "minifi": [93, 189, 232, 233], "save": [92, 93, 187, 228], "overal": [92, 93, 146, 187, 191, 207], "jupyt": 93, "haven": 93, "notebook": [93, 234], "softwar": 93, "ipython": 93, "ifram": [93, 187], "encount": 93, "v": [93, 175], "restrict": [93, 168, 170], "jupyterlab": [93, 234], "jupyter_sample_1": 93, "svg": [94, 122, 154, 167, 168, 169, 170, 171, 172, 173, 174, 175, 205, 206, 207], "polygon": [94, 114, 136, 146, 176], "polylin": [94, 111, 136, 141, 146, 177, 179], "path": [94, 135, 136, 146, 167, 168, 169, 170, 171, 172, 173, 174, 175], "draw_interfaces_abstract_begin_fil": 94, "draw_interfaces_abstract_line_styl": 94, "draw_": 94, "draw_interfaces_abstract_each_drawing_interfac": 94, "draw_round_rect": [94, 111, 146, 234], "move_to": [94, 111, 136, 141, 146, 179, 234], "line_to": [94, 111, 141, 146, 179, 234], "draw_dotted_lin": [94, 111, 134, 141, 146, 152, 234], "draw_dashed_lin": [94, 111, 134, 141, 146, 152, 234], "draw_round_dotted_lin": [94, 111, 134, 141, 146, 152, 234], "draw_dash_dotted_lin": [94, 111, 134, 141, 146, 152, 234], "draw_polygon": [94, 111, 114, 146, 234], "fill_alpha": [94, 111, 146, 154, 164, 234], "line_dot_set": [94, 132, 142, 146], "line_dash_set": [94, 131, 146], "line_round_dot_set": [94, 138, 146], "line_dash_dot_set": [94, 130, 146], "easing_enum_basic_usag": 95, "specif": [95, 122, 160, 191, 206], "easing_enum_default_set": 95, "slow": 95, "speed": 95, "fast": 95, "faster": 95, "_easingopt": 95, "easing_1": 95, "easing_2": 95, "easing_3": 95, "rectangle_3": [95, 107, 112, 115, 124, 222], "easing_enum_ease_differ": 95, "ease_in_sin": 95, "ease_in_quad": 95, "easing_enum_ease_in_1": 95, "ease_in_quart": 95, "ease_in_expo": 95, "easing_enum_ease_in_2": 95, "ease_in_circ": 95, "ease_in_back": 95, "easing_enum_ease_in_3": 95, "ease_in_elast": 95, "ease_in_bounc": 95, "easing_enum_ease_in_4": 95, "ease_out_sin": 95, "ease_out_quad": 95, "ease_out_cub": 95, "easing_enum_ease_out_1": 95, "ease_out_quart": 95, "ease_out_expo": 95, "easing_enum_ease_out_2": 95, "ease_out_circ": 95, "ease_out_back": 95, "easing_enum_ease_out_3": 95, "ease_out_elast": 95, "ease_out_bounc": 95, "easing_enum_ease_out_4": 95, "ease_in_out_sin": 95, "ease_in_out_quad": 95, "ease_in_out_cub": 95, "easing_enum_ease_in_out_1": 95, "ease_in_out_quart": 95, "ease_in_out_expo": 95, "easing_enum_ease_in_out_2": 95, "ease_in_out_circ": 95, "ease_in_out_back": 95, "easing_enum_ease_in_out_3": 95, "ease_in_out_elast": 95, "easing_enum_ease_in_out_4": 95, "branch": [96, 98, 101, 102, 103, 104, 105, 106, 144, 186], "condition_1": [96, 124, 234], "condition_2": [96, 124, 234], "goe": 96, "anyth": 96, "any_valu": 96, "scope": [96, 98, 101, 102, 103, 104, 105, 106, 144, 146, 186, 191], "judgment": [96, 144], "immedi": [96, 98], "predefin": 96, "ellipse_basic_usag": 97, "ellipse_x": 97, "ellipse_i": 97, "ellipse_width": [97, 139, 234], "ellipse_height": [97, 139, 234], "ellipse_fill_color": 97, "ellipse_fill_alpha": 97, "ellipse_line_color": 97, "ellipse_line_alpha": 97, "ellipse_line_thick": 97, "ellipse_line_dot_set": 97, "ellipse_line_dash_set": 97, "ellipse_line_round_dot_set": 97, "ellipse_line_dash_dot_set": 97, "ellipse_rotation_around_cent": 97, "ellipse_set_rotation_around_point": 97, "ellipse_scale_x_from_cent": 97, "ellipse_scale_y_from_cent": 97, "ellipse_scale_x_from_point": 97, "ellipse_scale_y_from_point": 97, "ellipse_flip_x": 97, "ellipse_flip_i": 97, "ellipse_skew_x": 97, "ellipse_skew_i": 97, "answer": 99, "shift": 99, "pace": [63, 99], "hand": [99, 147], "off": 99, "cpu": 99, "busi": 99, "on_enter_fram": [99, 206, 229, 231], "enterframeev": [99, 206, 229, 231], "enter": [99, 229, 231], "fps_30": [99, 107, 222, 231], "enter_frame_basic_usag": 99, "enter_frame_ev": [99, 231], "_time": [99, 220, 222, 224], "fpsdefinit": 99, "0x7f80576dc3a0": [], "per": [99, 107, 114, 189, 222], "statu": 99, "preventdefault": 100, "prevent": 100, "propag": 100, "trigger": [100, 146, 160], "event_prevent_default_basic_usag": 100, "event_stop_propagation_basic_usag": 100, "unbind_mouseup_al": 100, "for_array_indices_basic_usage_1": 101, "x_arr": [101, 102, 103], "for_array_indices_basic_usage_2": 101, "arr_value_typ": [102, 103], "225": [102, 138], "for_array_indices_and_values_basic_usage_1": 102, "_arrayvalu": [102, 103], "for_array_values_basic_usag": 103, "dict_key_typ": [104, 105], "dict_": [104, 105, 106], "appl": 104, "120": [104, 206], "orang": 104, "for_dict_keys_basic_usage_1": 104, "_dictkei": [104, 105], "hashabl": [104, 105], "dict_value_typ": [105, 106], "for_dict_keys_and_values_basic_usage_1": 105, "_dictvalu": [105, 106], "for_dict_values_basic_usage_1": 106, "definit": 107, "approxim": 107, "16": [107, 164, 206, 207, 208, 209, 210, 211, 212, 213, 214, 220, 222, 223, 224, 226], "6666667": [107, 220, 222, 224], "33": [107, 221, 222, 223, 224, 225, 226], "3333333": [107, 222], "timer_1": [107, 221, 222, 225], "fps_10": 107, "timer_2": [107, 221, 222, 225], "timer_3": [107, 222], "fps_basic_usag": 107, "number_1": [108, 145, 147, 148, 149], "box": [109, 183], "geometri": [109, 176, 183], "size": [109, 118, 120, 129, 130, 131, 132, 133, 137, 138, 139, 141, 154, 160, 164, 189, 206, 207, 213, 215], "rectanglegeom": [109, 146], "baselin": [], "440": [109, 183], "220": [109, 138, 183], "bounding_box": [109, 183], "box_rectangl": [109, 183], "left_x": 109, "top_i": 109, "aaa": [109, 183, 206, 207, 227, 230], "fd63c3": [109, 183], "left_x_and_top_y_circl": [109, 183], "left_x_and_top_y_text": [109, 183], "get_bounds_basic_usag": [], "_geom": [109, 135, 136, 166, 177, 178, 183], "rectangle_geom": [109, 183], "which": [110, 136, 160, 191], "first_child": 110, "second_child": 110, "child_at_index_1": [110, 191], "180": [111, 141, 179], "white": [111, 141], "border": 111, "130": [111, 130, 131, 132, 138, 141, 234], "graphics_call_interfaces_from_sprite_inst": 111, "drew_rect": 111, "graphics_return_valu": 111, "third": [112, 115, 127, 140, 180, 222, 229], "graphics_base_fill_alpha_basic_usag": 112, "graphics_base_fill_color_basic_usag": 113, "ff00aa": [113, 116, 159, 184, 186], "axi": [114, 125, 126], "triangl": [114, 136, 146, 176], "_polygonopt": 114, "point2d": [114, 136, 146, 152, 177, 178, 206, 234], "graphics_base_flip_x_basic_usag": 114, "graphics_base_line_alpha_basic_usag": 115, "graphics_base_line_color_basic_usag": 116, "graphics_base_line_dash_dot_setting_basic_usag": 117, "graphics_base_line_dash_dot_setting_delete_set": 117, "space": [109, 118, 130, 131, 138, 141, 179, 183, 198, 199, 202], "graphics_base_line_dash_setting_basic_usag": 118, "graphics_base_line_dash_setting_delete_set": 118, "graphics_base_line_dot_setting_basic_usag": 119, "graphics_base_line_dot_setting_delete_set": 119, "lien": 119, "graphics_base_line_round_dot_setting_basic_usag": 120, "graphics_base_line_round_dot_setting_delete_set": 120, "graphics_base_line_thickness_basic_usag": 121, "cyan_rect": 122, "magenta_rect": 122, "increment": [122, 125, 126, 148, 232], "60": [122, 152, 217, 219, 222], "graphics_base_rotation_around_center_basic_usag": 122, "due": 122, "45": [122, 123, 138, 200, 206], "rel": [109, 123], "top": [123, 125, 160, 183], "_rectanglesopt": [123, 124], "graphics_base_rotation_around_point_basic_usag": 123, "horizont": [124, 125, 137, 166, 172, 175, 191, 206], "vertic": [124, 125, 136, 141, 166, 172, 175], "twice": [124, 129, 133], "half": [124, 138, 141], "center_rectangl": 124, "graphics_base_scale_from_center_basic_usage_1": 124, "graphics_base_scale_from_center_basic_usage_2": 124, "current_scal": 124, "03": [124, 125, 234], "graphics_base_scale_from_center_basic_usage_3": 124, "minimum": [124, 125, 141, 152, 155, 157, 164, 177, 178], "almost": [124, 125, 206, 207, 230], "zero": [124, 125, 167, 204, 206, 207], "neg": [124, 125], "coodin": 125, "50px": [125, 126, 172, 173, 174, 175], "100px": 125, "decrement": 125, "middl": 125, "current_scale_x": 125, "top_rect": 125, "middle_rect": 125, "bottom_rect": 125, "top_rect_direct": 125, "top_rect_tim": 125, "middle_rect_direct": 125, "middle_rect_tim": 125, "bottom_rect_direct": 125, "bottom_rect_tim": 125, "graphics_base_scale_from_point_basic_usage_x": 125, "current_scale_i": 125, "graphics_base_scale_from_point_basic_usage_i": 125, "graphics_base_skew_x_basic_usag": 126, "graphics_base_skew_y_incremental_basic_usag": 126, "maintain": [127, 141, 205], "blue": [57, 63, 127], "graphics_begin_fill_basic_usag": 127, "graphics_begin_fill_fill_color": 127, "graphics_begin_fill_color_setting_clear": 127, "black": [127, 141, 179, 191], "graphics_begin_fill_acceptable_color_set": 127, "transpar": [127, 141, 164], "opaqu": [127, 141], "graphics_begin_fill_alpha_set": 127, "graphics_clear_basic_usag": 128, "dot_set": [129, 130, 131, 132, 133, 134, 138, 141], "inner": 129, "graphics_draw_circle_basic_usag": 129, "small": 129, "bigger": 129, "graphics_draw_circle_return_valu": 129, "_circl": 129, "simpl": [130, 131, 132, 134, 138, 191], "straight": [130, 131, 132, 134, 138, 152], "long": [130, 141, 189], "short": [130, 141], "dash_set": [130, 131, 132, 134, 138, 141], "round_dot_set": [130, 131, 132, 134, 138, 141], "dash_dot_set": [130, 131, 132, 134, 138, 141], "That": [130, 131, 132, 138], "80": [130, 131, 132, 138, 141, 152, 207], "graphics_draw_dash_dotted_line_basic_usag": 130, "_line": [130, 131, 132, 134, 138], "graphics_draw_dashed_line_basic_usag": 131, "graphics_draw_dotted_line_basic_usag": 132, "graphics_draw_ellipse_basic_usag": 133, "wider": 133, "on_ellipse_click": 133, "graphics_draw_ellipse_return_valu": 133, "_ellips": 133, "intefac": 134, "graphics_draw_line_basic_usag": 134, "graphics_draw_line_ignored_dot_set": 134, "graphics_draw_line_line_inst": 134, "normal": [134, 138, 141, 206, 207], "path_data_list": [135, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "pathlineto": [135, 146, 171, 174], "pathbezier2d": [135, 146, 168], "pathmoveto": [135, 146, 167, 168, 169, 170, 171, 172, 173, 175], "control_x": [135, 166, 167, 168, 169, 170], "control_i": [135, 166, 167, 168, 169, 170], "dest_x": [135, 166, 167, 168, 169, 170], "dest_i": [135, 166, 167, 168, 169, 170], "graphics_draw_path_basic_usag": 135, "pathhorizont": [135, 146], "pathvert": [135, 146], "pathclos": [135, 146], "pathbezier2dcontinu": [135, 146, 167], "pathbezier3dcontinu": [135, 146, 169], "path_data_bas": [135, 166], "pathdatabas": [135, 166], "_path": 135, "pathdata": [135, 166], "moveto": [135, 166], "pathbezier3d": [135, 146, 170], "slightli": 136, "close": [136, 166, 171], "diamond": 136, "graphics_draw_polygon_basic_usag": 136, "graphics_draw_polygon_line_to_difference_1": 136, "But": [136, 193], "signific": 136, "graphics_draw_polygon_line_to_difference_2": 136, "append_line_point": 136, "graphics_draw_polygon_append_line_point": 136, "_polyg": 136, "unlik": [136, 177], "connect": [136, 171, 177], "vertex": [136, 140, 176, 177, 229], "graphics_draw_rect_basic_usag": 137, "graphics_draw_rect_basic_usage_skipped_begin_fil": 137, "graphics_draw_rect_rectangl": 137, "graphics_draw_round_dotted_line_basic_usag": 138, "longer": [138, 141, 232], "align": [138, 164, 207, 208, 209], "subtract": [138, 141, 217], "270": [138, 169], "graphics_draw_round_dotted_line_not": 138, "corner": 139, "graphics_draw_round_rect_basic_usag": 139, "graphics_draw_round_rect_return_valu": 139, "round_rect": 139, "x1": 140, "y1": 140, "x2": 140, "y2": 140, "x3": 140, "y3": 140, "graphics_draw_triangle_basic_usag": 140, "graphics_draw_triangle_triangle_inst": 140, "162": 141, "3px": 141, "110": 141, "graphics_line_style_bas": 141, "102": 141, "graphics_line_style_line_color": 141, "graphics_line_style_clear_line_color": 141, "graphics_line_style_line_color_color_cod": 141, "165": 141, "graphics_line_style_thick": 141, "upper": [141, 146, 160], "lower": [141, 146], "graphics_line_style_alpha": 141, "edg": [141, 198, 199, 202], "butt": 141, "squar": 141, "increas": [141, 220], "graphics_line_style_cap": 141, "linejoint": [141, 166, 177, 178, 182, 229], "mainli": [141, 167, 168, 169, 170, 171, 172, 173, 174, 175], "miter": 141, "pictur": 141, "bevel": 141, "graphics_line_style_joint": 141, "160": [141, 234], "graphics_line_style_line_dot_set": 141, "038": 141, "graphics_line_style_line_dot_setting_rectangl": 141, "graphics_line_style_line_dash_set": 141, "graphics_line_style_line_round_dot_set": 141, "capsiz": 141, "graphics_line_style_line_dash_dot_set": 141, "overrid": [141, 187], "amount": [141, 205], "graphics_move_to_and_line_to_basic_usag": 142, "z": [62, 142, 171], "graphics_move_to_and_line_to_sequential_cal": 142, "graphics_move_to_and_line_to_multi_move_to_cal": 142, "on_line_click": 142, "graphics_move_to_and_line_to_polylin": 142, "_polylin": 142, "line_1": 142, "line_2": 142, "line_3": 142, "numpi": 145, "np": 145, "panda": 145, "pd": 145, "tkinter": 145, "tk": 145, "underscor": 145, "_file": 145, "welcom": 146, "front": [146, 234], "develop": [146, 147], "partial": 146, "github": [146, 154], "leav": 146, "star": 146, "favor": 146, "high": 146, "hope": [65, 146], "futur": 146, "pypi": 146, "languag": [146, 234], "english": 146, "japanes": 146, "\u65e5\u672c\u8a9e": 146, "what": 146, "convent": 146, "area": [146, 160, 191, 205], "display_on_jupyt": [146, 234], "display_on_colaboratori": [146, 234], "remove_children": 146, "num_children": [146, 185, 190], "get_child_at": [146, 190], "to_str": [146, 183], "arithmet": [146, 147], "to_fix": 146, "split": 146, "lstrip": 146, "strip": [146, 198, 199], "rstrip": 146, "apply_max_num_of_decimal_plac": 146, "abstract": [146, 179, 234], "get_css": 146, "set_css": 146, "get_scale_from_point": 146, "set_scale_from_point": 146, "draw_triangl": 146, "draw_path": [146, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "svgtextspan": 146, "get_bound": 146, "prevent_default": 146, "stop_propag": 146, "custom": [146, 160], "dblclick": [146, 159], "forarrayvalu": 146, "forarrayindicesandvalu": 146, "fordictkei": 146, "fordictvalu": 146, "fordictkeysandvalu": 146, "continu": [146, 166, 168, 170], "enter_fram": [146, 206, 229, 231], "unbind_enter_fram": 146, "unbind_enter_frame_al": 146, "set_month_end": 146, "total_second": 146, "animation_paus": 146, "animation_plai": 146, "animation_reset": 146, "animation_finish": 146, "animation_revers": 146, "animation_tim": 146, "math": 146, "min": 146, "max": [146, 220, 222, 224], "trunc": 146, "add_debug_info_set": 146, "decor": [146, 181, 216], "assert_not_equ": 146, "assert_fals": 146, "assert_great": 146, "assert_less": 146, "assert_less_equ": 146, "assert_defin": 146, "floor": 147, "number_2": [147, 148, 149], "21": 147, "familiar": 147, "rather": 147, "number_value_mixin": [147, 220, 222, 224, 232], "numbervaluemixin": [147, 220, 222, 224, 232], "cast": [147, 232], "calcul": [148, 165, 220, 222, 224], "typeerror": [148, 193], "unsupport": 148, "operand": 148, "multipli": 148, "divid": [148, 189], "notat": 150, "decim": [150, 194], "34": [150, 200, 206], "even": 150, "truncat": [150, 158, 218], "678": 150, "68": 150, "num": 150, "789": 150, "fixed_float_str": 150, "79": 150, "78900": 150, "to_fixed_basics_usag": 150, "result_str": [150, 200], "start_point": [152, 206], "end_point": [152, 206], "line_basic_usag": 152, "line_x": 152, "line_i": 152, "line_line_color": 152, "line_line_alpha": 152, "line_line_thick": 152, "line_line_dot_set": 152, "line_line_dash_set": 152, "line_line_round_dot_set": 152, "line_line_dash_dot_set": 152, "40": 152, "line_rotation_around_cent": 152, "line_set_rotation_around_point": 152, "line_scale_x_from_cent": 152, "line_scale_y_from_cent": 152, "line_scale_x_from_point": 152, "line_scale_y_from_point": 152, "line_flip_x": 152, "line_flip_i": 152, "line_skew_x": 152, "line_skew_i": 152, "points2d": 152, "maximum": [155, 156, 164, 194], "max_valu": 156, "min_valu": 157, "fraction": [158, 217, 218, 219], "result_int": 158, "mouse_event_abstract_click": 159, "lot": [159, 189, 232], "_coloropt": 160, "mouse_event_basic_basic_binding_usag": 160, "unbind_": 160, "event_nam": 160, "unbind_mousedown": 160, "mouse_event_basic_basic_unbinding_usag": 160, "onc": [160, 161, 163], "_all": 160, "unbind_click_al": [160, 220], "change_color_on_rectangle_click": 160, "change_x_on_rectangle_click": 160, "mouse_event_basic_unbind_all_event_handl": 160, "know": 160, "particular": 160, "on_rectangle_mousedown": 160, "absolut": [109, 160, 167, 168, 169, 170, 172, 173, 174, 175], "on_mousemov": [160, 162], "mouse_event_basic_stage_x_and_stage_i": 160, "open": [160, 179], "devtool": 160, "chrome": 160, "cursor": [160, 162, 163], "mouse_event_basic_local_x_and_local_i": 160, "on_mousedown": [160, 161], "bind_custom_ev": 160, "trigger_custom_ev": 160, "user": 161, "on_mouseup": 161, "mousedown_and_mouseup_basic_usag": 161, "mousedown_and_mouseup_unbind_interfac": 161, "stage_x": 162, "stage_i": 162, "mousemove_basic_usag": 162, "mousemove_unbind_interfac": 162, "moreov": 163, "on_mouseov": 163, "on_mouseout": 163, "mouseover_and_mouseout_basic_usag": 163, "mouseover_and_mouseout_unbind_interfac": 163, "children": [165, 185, 190, 191], "rectangle_x": [165, 182], "new_rect": 165, "num_children_basic_usag": 165, "path_basic_usag": 166, "2d": [166, 167, 168, 169, 176], "bezier": [166, 167, 168, 169, 170], "curv": [166, 167, 168, 169, 170], "3d": [166, 169, 170], "path_x": 166, "path_i": 166, "path_fill_color": 166, "path_fill_alpha": 166, "path_line_color": 166, "path_line_alpha": 166, "path_line_thick": 166, "path_line_dot_set": 166, "path_line_dash_set": 166, "path_line_round_dot_set": 166, "path_line_dash_dot_set": 166, "path_rotation_around_cent": 166, "path_rotation_around_point": 166, "path_scale_x_from_cent": 166, "path_scale_y_from_cent": 166, "path_scale_x_from_point": 166, "path_scale_y_from_point": 166, "path_flip_x": 166, "path_flip_i": 166, "path_skew_x": 166, "path_skew_i": 166, "line_joint": [166, 177, 178, 182, 229], "joint": [166, 177, 178, 182, 229], "path_bezier_2d_basic_usage_1": 167, "magenta_circl": [167, 169, 170], "cyan_circl": [167, 169, 170], "path_bezier_2d_basic_usage_2": 167, "criteria": [167, 169, 170], "minu": 167, "path_bezier_2d_rel": 167, "q": 167, "smooth": [168, 170], "symmetr": [168, 170], "path_bezier_2d_continual_basic_usag": 168, "path_bezier_2d_continual_rel": 168, "control_x1": [169, 170], "control_y1": [169, 170], "control_x2": [169, 170], "control_y2": [169, 170], "path_bezier_3d_basic_usage_1": 169, "yellow": 169, "yellow_circl": 169, "ff0": 169, "path_bezier_3d_basic_usage_2": 169, "neither": 169, "nor": 169, "path_bezier_3d_rel": 169, "420": 170, "path_bezier_3d_continual_basic_usage_1": 170, "path_bezier_3d_continual_basic_usage_2": 170, "path_bezier_3d_continual_rel": 170, "left_path": 171, "right_path": 171, "path_close_basic_usag": 171, "00": 171, "simplifi": [172, 175], "path_horizontal_basic_usag": 172, "path_horizontal_rel": 172, "h": 172, "path_line_to_basic_usag": 173, "under": [154, 173, 174, 175, 187], "path_line_to_rel": 173, "l": 173, "path_move_to_basic_usag": 174, "path_move_to_rel": 174, "m": 174, "path_vertical_basic_usag": 175, "path_vertical_rel": 175, "point_1": 176, "point_2": 176, "point2d_basic_usag": 176, "polygon_basic_usag": 177, "polygon_x": 177, "polygon_i": 177, "polygon_fill_color": 177, "polygon_fill_alpha": 177, "polygon_line_color": 177, "polygon_line_alpha": 177, "polygon_line_thick": 177, "polygon_line_dot_set": 177, "polygon_line_dash_set": 177, "polygon_line_round_dot_set": 177, "polygon_line_dash_dot_set": 177, "polygon_rotation_around_cent": 177, "polygon_set_rotation_around_point": 177, "polygon_scale_x_from_cent": 177, "polygon_scale_y_from_cent": 177, "polygon_scale_x_from_point": 177, "polygon_scale_y_from_point": 177, "polygon_flip_x": 177, "polygon_flip_i": 177, "polygon_skew_x": 177, "polygon_skew_i": 177, "polyline_basic_usag": 178, "polyline_x": 178, "polyline_i": 178, "polyline_fill_color": 178, "polyline_fill_alpha": 178, "polyline_line_color": 178, "polyline_line_alpha": 178, "polyline_line_thick": 178, "polyline_line_dot_set": 178, "polyline_line_dash_set": 178, "polyline_line_round_dot_set": 178, "polyline_line_dash_dot_set": 178, "polyline_rotation_around_cent": 178, "polyline_set_rotation_around_point": 178, "polyline_scale_x_from_cent": 178, "polyline_scale_y_from_cent": 178, "polyline_scale_x_from_point": 178, "polyline_scale_y_from_point": 178, "polyline_flip_x": 178, "polyline_flip_i": 178, "polyline_skew_x": 178, "polyline_skew_i": 178, "step": [179, 180, 205], "journei": 179, "background": 179, "Then": [179, 228], "quick_start_stage_cr": 179, "confirm": 179, "quick_start_sprite_graph": 179, "range_arr": 180, "range_basics_usage_1": 180, "range_basics_usage_2": 180, "range_basics_usage_3": 180, "arg": [180, 228], "pyright": 181, "probabl": 181, "comfort": 181, "miscellan": 181, "caus": 181, "most": [181, 183, 196], "harmless": 181, "issu": 181, "1362": 181, "rectangle_basic_usag": 182, "rectangle_i": 182, "rectangle_width": 182, "rectangle_height": 182, "rectangle_ellipse_width": 182, "rectangle_ellipse_height": 182, "rectangle_fill_color": 182, "rectangle_fill_alpha": 182, "rectangle_line_color": 182, "rectangle_line_alpha": 182, "rectangle_line_thick": 182, "rectangle_line_dot_set": 182, "rectangle_line_dash_set": 182, "rectangle_line_round_dot_set": 182, "rectangle_line_dash_dot_set": 182, "rectangle_rotation_around_cent": 182, "rectangle_set_rotation_around_point": 182, "rectangle_scale_x_from_cent": 182, "rectangle_scale_y_from_cent": 182, "rectangle_scale_x_from_point": 182, "rectangle_scale_y_from_point": 182, "rectangle_flip_x": 182, "rectangle_flip_i": 182, "rectangle_skew_x": 182, "rectangle_skew_i": 182, "text_1": 183, "rectangle_geom_basic_usag": 183, "point_radiu": 183, "ae59e3": 183, "right_x_and_top_y_circl": 183, "right_x_and_top_y_text": 183, "726efa": 183, "left_x_and_bottom_y_circl": 183, "left_x_and_bottom_y_text": 183, "6eaee6": 183, "right_x_and_bottom_y_circl": 183, "right_x_and_bottom_y_text": 183, "center_x_and_center_y_circl": 183, "center_x_and_center_y_text": 183, "rectangle_geom_each_attribute_point": 183, "remove_children_basic_usag": 185, "00ffaa": [143, 186], "return_basic_usag": 186, "At": 187, "least": 187, "px": 187, "save_overall_html_interface_basic_usag": 187, "preced": 187, "dest_dir": 187, "js_lib_dir_path": 187, "static": 187, "skip_js_lib_export": 187, "chart": 187, "member": 187, "sourc": 187, "static_collect": 187, "emb": 187, "enorm": 187, "share": 187, "cor": 187, "usual": 187, "tmp": [187, 233], "how": [57, 143, 184, 188], "sequential_animation_example_1": 188, "sequenc": [], "As": 189, "larg": 189, "set_debug_mode_basic_usag": 189, "comment": 189, "_append_constructor_express": 189, "var": [189, 232, 233], "sp_1": [189, 232], "nest": [189, 232], "howev": [190, 196], "sprite_graphics_attribut": 190, "sprite_move_instances_simultan": 190, "subsequ": [190, 207], "unnecessari": [145, 190, 235], "rect": [190, 233], "viewport": 191, "must": [191, 193], "clean": 191, "stage_background_color": 191, "stage_s": 191, "timestamp": 191, "stage_12345": 191, "line_chart_1": 191, "easili": 191, "identifi": [191, 233], "my_stag": 191, "_other_funct": 191, "185": 191, "add_to": 191, "bodi": 191, "selector": 191, "elem": 191, "graph": 191, "random": 191, "sales_chart": 191, "includ": [191, 200, 232], "stagenotcreatederror": 191, "yet": [191, 231], "string_1": [192, 193, 195], "string_2": [192, 193, 195], "world": [192, 193, 195, 206], "string_3": 193, "repeat": 193, "hellohellohello": 193, "123": 194, "45678": 194, "456": 194, "format": 194, "max_num_of_decimal_plac": 194, "abc": 194, "string_apply_max_num_of_decimal_places_basic_usage_1": 194, "limit": 194, "1970": 195, "06": 195, "04": 195, "abcdef": 196, "\u3042\u3044\u3046\u3048\u304a": 196, "string_length_basic_usage_1": 196, "unexpect": 196, "count": [196, 220, 221, 222, 223, 224, 225, 226], "unicod": 196, "expect": 196, "string_length_notes_1": 196, "string_length_notes_2": 196, "characters_length": 196, "whitespac": [198, 199, 202], "break": [198, 199, 202], "n": [198, 199, 202, 206, 207], "aabbaa": [198, 202], "string_lstrip_basic_usage_1": 198, "bbaa": 198, "string_lstrip_basic_usage_2": 198, "aabbcc": [198, 199, 202], "aabbccaa": [198, 199, 202], "bbccaa": 198, "string_rstrip_basic_usage_1": 199, "string_rstrip_basic_usage_2": 199, "str_valu": 201, "lorem": [164, 201, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "ipsum": [164, 201, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "dolor": [164, 201, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "sit": [164, 201, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "splitted_str": 201, "string_split_basic_usag": 201, "string_strip_basic_usage_1": 202, "bbcc": 202, "string_strip_basic_usage_2": 202, "font": [164, 206, 207, 210, 213, 214, 215], "svg_text": [206, 207], "32": [206, 207, 213], "svg_text_basic_usag": 206, "content": 206, "bare": 206, "comma": 206, "svg_text_note_on_the_y_baselin": 206, "svg_text_text": 206, "24": [154, 206, 217, 219], "svg_text_font_s": 206, "famili": [206, 207], "impact": [206, 207], "roman": [206, 207], "svg_text_font_famili": 206, "svg_text_x": 206, "70": 206, "svg_text_i": 206, "svg_text_fill_color": 206, "svg_text_fill_alpha": 206, "svg_text_line_color": 206, "svg_text_line_alpha": 206, "svg_text_line_thick": 206, "amet": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "nconsectetur": 206, "adipisc": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "elit": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "sed": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "eiusmod": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "tempor": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "incididunt": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "svg_text_lead": 206, "svgtextalign": [206, 207], "svg_text_align": 206, "container_sprit": 206, "vertical_x0_lin": 206, "x0_text": 206, "left_align_sample_text": 206, "sampl": 206, "52": 206, "center_align_sample_text": 206, "72": [154, 206], "right_align_sample_text": 206, "92": 206, "svg_text_align_not": 206, "svg_text_bold": 206, "svg_text_ital": 206, "svg_txt_rotation_around_cent": 206, "svg_txt_rotation_around_point": 206, "svg_txt_scale_x_from_cent": 206, "svg_txt_scale_x_from_point": 206, "svg_txt_flip_x": 206, "svg_txt_flip_i": 206, "666666": [154, 164, 206, 207], "svg_text_align_mixin": [206, 207], "span": 207, "text_span": 207, "svg_txt_span_basic_usag": 207, "svg_txt_span_notes_of_the_line_break": 207, "text_span_1": 207, "text_span_2": 207, "svg_txt_span_text": 207, "svg_txt_span_font_s": 207, "arial": 207, "svg_txt_span_font_famili": 207, "svg_txt_span_fill_color": 207, "svg_txt_span_fill_alpha": 207, "svg_txt_span_line_color": 207, "svg_txt_span_line_alpha": 207, "svg_txt_span_line_thick": 207, "svg_txt_span_bold": 207, "svg_txt_span_ital": 207, "delta": [207, 217], "svg_txt_span_delta_x": 207, "text_span_3": 207, "dolar": 207, "svg_txt_span_delta_i": 207, "14": [207, 232], "svg_text_span": 207, "lead": [164, 207, 215], "treat": 217, "datetim": [217, 218, 219], "datetime_1": [217, 218, 219], "datetime_2": [217, 218, 219], "timedelta_": [217, 218, 219], "total": [204, 217, 219], "86400": [217, 219], "datetime_3": 218, "datetime_4": 218, "timer_basic_usag": 220, "_constructoropt": [220, 222, 224], "regular": [220, 222, 224], "forev": [220, 222, 224], "_rectsopt": 221, "on_timer_1_complet": 221, "timer_complete_basic_usag": 221, "_timercompleteopt": 221, "unit": 222, "timer_delay_basic_usag": 222, "timer_delay_fps_enum": 222, "timer_event_basic_usag": 223, "current_count": [223, 226], "timer_event_this_attribut": 223, "timer_repeat_count_basic_usag": 224, "_timeropt": 225, "on_first_tim": 225, "on_first_timer_complet": 225, "on_second_tim": 225, "options_1": 225, "options_2": 225, "timer_reset_basic_usag": 225, "timer_start_and_stop_basic_usag": 226, "represent": 227, "itself": 227, "number_valu": 227, "bool_valu": 227, "array_valu": 227, "to_string_basic_usage_1": 227, "to_string_basic_usage_2": 227, "variou": 228, "trace_basic_usag": 228, "triangle_basic_usag": 229, "triangle_x": 229, "triangle_i": 229, "triangle_x1": 229, "triangle_y1": 229, "triangle_x2": 229, "triangle_y2": 229, "triangle_x3": 229, "triangle_y3": 229, "triangle_fill_color": 229, "triangle_fill_alpha": 229, "triangle_line_color": 229, "triangle_line_alpha": 229, "triangle_line_thick": 229, "triangle_line_dot_set": 229, "triangle_line_dash_set": 229, "triangle_line_round_dot_set": 229, "triangle_line_dash_dot_set": 229, "triangle_rotation_around_cent": 229, "rotation_x": 229, "rotation_i": 229, "triangle_set_rotation_around_point": 229, "triangle_scale_x_from_cent": 229, "triangle_scale_y_from_cent": 229, "scale_coordinate_x": 229, "triangle_set_scale_x_from_point": 229, "scale_coordinate_i": 229, "triangle_set_scale_y_from_point": 229, "triangle_flip_x": 229, "triangle_flip_i": 229, "triangle_skew_x": 229, "triangle_skew_i": 229, "attributeerror": [], "disappear": [], "bold": [146, 164, 230], "ital": [146, 164, 230], "true_and_false_basic_usag": 230, "unbind_enter_frame_basic_usag": 231, "on_enter_frame_1": 231, "on_enter_frame_2": 231, "unbind_enter_frame_all_basic_usag": 231, "_enterframeeventnotregist": 231, "unset": 232, "cumbersom": 232, "unset_debug_mode_basic_usag": 232, "g_1": 232, "i_12": 232, "indexof": 232, "i_13": 232, "type_nam": 232, "i_16": 232, "to_int_from_float": 232, "_convert": 232, "int_or_float": 232, "append_constructor_express": 232, "i_18": 232, "i_19": 232, "cpy": 232, "my_int": 233, "variable_name_suffix_basic_usage_1": 233, "_my_int": 233, "i_9__my_int": 233, "py": 233, "my_rectangl": 233, "variable_name_suffix_basic_usage_2": 233, "i_9__my_rectangle__x": 233, "i_10__my_rectangle__i": 233, "i_12__my_rectangle__width": 233, "rect_1__my_rectangl": 233, "i_16__my_rectangle__width": 233, "i_17__my_rectangle__height": 233, "attr": 233, "s_1__my_rectangle__fill_color": 233, "n_2__my_rectangle__fill_alpha": 233, "i_15__my_rectangle__line_thick": 233, "n_3__my_rectangle__line_alpha": 233, "650": 234, "210": 234, "145": 234, "53": 234, "what_apysc_can_do_draw_vector_graph": 234, "what_apysc_can_do_mouse_event_click": 234, "alpha_direct": 234, "current_alpha": 234, "what_apysc_can_do_timer_anim": 234, "tween": 234, "creation": 235, "essenti": 235, "asynchron": 235, "0x7f7f22e57fa0": [], "made": 235, "700": [65, 153], "colors_memb": [65, 153], "color_nam": [65, 153], "constant_names_arr": [65, 153], "colors_arr": [65, 153], "comput": 65, "0x7f9bec67baf0": [], "materialdesigncolor": [62, 146], "materi": 153, "design": [153, 154], "red_100_ffcdd2": 153, "red_300_e57373": 153, "indigo_800_283593": 153, "indigo_a200_536df": 153, "gray_800_424242": 153, "cyan_200_80deea": 153, "material_design_colors_basic_usag": 153, "material_design_colors_definit": 153, "overview": 153, "zfill": 146, "widgth": 204, "copi": [197, 203, 204], "00001": 204, "string_zfill_basic_usag": 204, "red": [63, 184], "green": [63, 143], "255": [57, 63, 143, 184], "8bit": 63, "unsign": 63, "black_color": 63, "black_rectangl": 63, "white_color": 63, "white_rectangl": 63, "cyan_color": 63, "128": 63, "cyan_rectangl": 63, "color_from_rgb_basic_usag": 63, "rgb": 63, "00ff00": 63, "from_rgb": [62, 146], "to_hex": 146, "1f": 151, "28": 151, "hex_str": 151, "1c": 151, "int_and_number_to_hex_basic_usag": 151, "lowercas": 197, "abc1_": [197, 203], "string_lower_basic_usag": 197, "uppercas": 203, "string_upper_basic_usag": 203, "red_color": [62, 146], "red_color_basic_usag": 184, "aa00ff": 143, "green_color_basic_usag": 143, "green_color": [62, 146], "clor": [], "ffaa00": 57, "blue_color_basic_usag": 57, "aaff00": 57, "blue_color": [62, 146], "being": 200, "012345": 200, "12345": 200, "string_slice_basic_usag": 200, "0x7f45d423a2b0": [], "multi_line_text": [164, 208, 209, 210, 211, 212, 214, 215, 216], "multi": 164, "wrap": 164, "certain": 164, "text_align": [146, 164, 209], "consectetur": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "ut": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "labor": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "et": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "magna": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "aliqua": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "enim": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "minim": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "veniam": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "cyan_00aaff": [154, 164, 205, 212], "multi_line_text_basic_usag": 164, "multilinetext": [146, 208, 209, 210, 211, 212, 213, 214, 215, 216], "css_text_align": 164, "csstextalign": [164, 209], "text_align_last": [146, 164], "css_text_align_last": 164, "csstextalignlast": 164, "underlin": [146, 164], "multilin": 164, "element": 164, "gray_666666": 164, "solid": 164, "text_fill_color_basic_usag": 212, "text_fill_alpha_basic_usag": 211, "170": [208, 209, 210, 211, 214], "text_bold_basic_usag": 210, "weight": 210, "text_italic_basic_usag": 214, "css_text_align_left": 208, "css_text_align_cent": 208, "css_text_align_right": 208, "evenli": [208, 209], "css_text_align_justifi": 208, "auto": 164, "css_text_align_last_auto": 209, "css_text_align_last_left": 209, "css_text_align_last_cent": 209, "css_text_align_last_right": 209, "css_text_align_last_justifi": 209, "font_size_16_text": 213, "font_size_32_text": 213, "text_font_size_basic_usag": 213, "190": 213, "gray_aaaaaa": [215, 216], "text_underline_basic_usag": 216, "195": 216, "line_height": [146, 164], "text_line_height_basic_usag": 215, "0x7f2367f69400": [], "icon": 146, "icon_nam": [], "materialsearchicon": [], "materialaccountcircleicon": [], "margin": [], "icon_s": [], "icon_num": [], "search_icon": [], "info_icon": [], "materialinfoicon": [], "home_icon": 154, "materialhomeicon": 154, "magenta_ff00ff": [], "material_icons_basic_usag": [], "apach": 154, "licens": [], "0x7f750e8a79d0": [], "materialtimelineicon": 154, "144": [], "materialbuildicon": 154, "materialcheckcircleicon": 154, "material_icon_basic_usage_1": 154, "build_icon": 154, "check_circle_icon": 154, "material_icon_basic_usage_2": 154, "168": 154, "clamp": 146, "within": 155, "min_": 155, "max_": 155, "math_clamp_basic_usag": 155, "_valuetyp": 155, "svgmask": 146, "add_svg_masking_object": [], "svg_mask": [], "mask": [], "overlap": 205, "masking_object": 205, "svg_mask_basic_usag": 205, "fill_color_mixin": [], "fillcolormixin": [], "possibl": 205, "graphics_bas": 205, "conveni": 205, "By": 205, "while": 205, "svg_mask_sprite_container_exampl": 205, "0x7fc97c13cb80": 99, "target_coordinate_space_object": [109, 183], "omit": 109, "substanti": 109, "get_bounds_basic_usage_1": 109, "get_bounds_basic_usage_2": 109}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"about": [0, 5], "handler": [0, 61, 160, 188], "option": [0, 55, 187], "type": [0, 4, 8, 33, 82, 160, 181, 195, 234, 235], "The": [0, 1, 181, 234], "dictionari": [0, 81, 82, 83, 84, 146], "i": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 20, 21, 23, 24, 25, 28, 30, 31, 32, 33, 35, 38, 40, 41, 42, 43, 45, 46, 47, 57, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 81, 83, 84, 85, 90, 92, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 150, 151, 152, 153, 155, 156, 157, 158, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 227, 228, 229, 232, 233], "accept": [0, 62, 195], "typeddict": 0, "annot": [0, 4, 8, 33, 181], "add_child": [1, 191], "remove_child": [1, 191], "interfac": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 66, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 99, 100, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 147, 150, 152, 155, 156, 157, 158, 159, 160, 161, 162, 163, 165, 166, 176, 177, 178, 182, 185, 187, 188, 189, 190, 191, 192, 194, 198, 199, 201, 202, 205, 206, 207, 218, 219, 221, 225, 226, 227, 228, 229, 231, 232, 234], "what": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 150, 151, 152, 153, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "ar": [1, 19, 26, 27, 29, 34, 37, 39, 44, 48, 49, 50, 51, 52, 53, 54, 56, 77, 87, 88, 89, 91, 100, 114, 123, 124, 125, 126, 142, 161, 163, 226, 230, 231], "automat": 1, "addit": [1, 148, 190, 193], "children": 1, "basic": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 82, 83, 84, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233], "usag": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 82, 83, 84, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233], "see": [1, 2, 33, 45, 47, 48, 49, 50, 51, 52, 53, 54, 59, 61, 66, 79, 85, 86, 88, 89, 94, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 111, 119, 135, 144, 159, 160, 161, 162, 163, 179, 181, 188, 189, 190, 220, 222, 231, 232], "also": [1, 2, 33, 45, 47, 48, 49, 50, 51, 52, 53, 54, 59, 61, 66, 79, 85, 86, 88, 89, 94, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 111, 119, 135, 144, 159, 160, 161, 162, 163, 179, 181, 188, 189, 190, 220, 222, 231, 232], "api": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "add_debug_info_set": 2, "decor": 2, "thi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 20, 21, 23, 24, 25, 28, 30, 31, 32, 35, 38, 40, 41, 42, 43, 45, 46, 47, 57, 60, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 83, 84, 90, 92, 93, 95, 97, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 150, 151, 152, 153, 155, 156, 157, 158, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 180, 182, 183, 184, 185, 187, 189, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 222, 223, 224, 225, 227, 228, 229, 232, 233], "note": [2, 5, 18, 23, 29, 30, 31, 42, 48, 50, 58, 60, 81, 84, 93, 96, 97, 98, 122, 138, 147, 151, 152, 165, 177, 178, 182, 189, 190, 196, 206, 207, 228, 229, 232], "mypi": [2, 181], "set": [2, 4, 6, 7, 18, 59, 82, 94, 117, 118, 119, 120, 127, 134, 141, 160, 166, 167, 168, 169, 170, 172, 173, 174, 175, 181, 187, 188, 191, 222, 224, 233, 234], "animationbas": [3, 4, 5, 16, 22], "class": [3, 4, 5, 8, 16, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 57, 58, 59, 60, 62, 63, 65, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 81, 82, 85, 86, 87, 88, 89, 90, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 134, 143, 144, 146, 147, 150, 151, 152, 153, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 184, 186, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 229], "start": [3, 146, 179, 226], "target": 4, "properti": [4, 8, 33, 41, 42, 57, 58, 60, 69, 70, 71, 72, 73, 75, 77, 78, 84, 86, 90, 91, 97, 112, 113, 114, 115, 116, 118, 119, 120, 121, 122, 124, 126, 127, 141, 143, 147, 152, 160, 166, 176, 177, 178, 182, 183, 184, 191, 192, 196, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 222, 224, 229, 234], "gener": [4, 8, 33, 82, 160], "animation_complet": [5, 188], "other": [5, 146, 152], "call": [5, 111, 142, 188], "order": 5, "anim": [6, 7, 12, 18, 22, 146, 188, 234], "delai": [6, 18, 222], "durat": [7, 18], "animationev": 8, "constructor": [8, 33, 58, 60, 62, 68, 81, 96, 97, 98, 144, 147, 152, 154, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 190, 191, 192, 205, 206, 207, 220, 222, 223, 224, 229], "animation_fill_alpha": 9, "animation_fill_color": 10, "animation_finish": 11, "abstract": [12, 86, 94, 159], "apysc": [12, 86, 94, 108, 146, 159, 234, 235], "can": [12, 86, 94, 159, 234], "do": [12, 86, 94, 159, 234], "its": [12, 16, 86, 94, 159, 205, 234], "exampl": [12, 60, 95, 97, 152, 159, 166, 176, 177, 178, 182, 206, 207, 208, 209, 229], "each": [12, 16, 18, 22, 59, 94, 146, 154, 183, 187, 234], "attribut": [12, 81, 160, 183, 190, 223], "eas": [12, 18, 95], "x": [12, 60, 86, 91, 97, 152, 166, 176, 177, 178, 182, 206, 229], "y": [12, 60, 86, 91, 97, 152, 166, 176, 177, 178, 182, 206, 229], "move": [12, 190], "width": [12, 97, 182, 183], "height": [12, 97, 182, 183], "fill": [12, 94, 127], "color": [12, 57, 62, 63, 65, 127, 141, 143, 146, 153, 184, 191], "alpha": [12, 127, 141], "line": [12, 94, 134, 141, 152, 207], "thick": [12, 141], "radiu": [12, 60], "rotat": [12, 86], "around": 12, "center": [12, 208, 209], "point": [12, 183], "specifi": 12, "scale": [12, 86, 206], "from": [12, 111], "animation_line_alpha": 13, "animation_line_color": 14, "animation_line_thick": 15, "method": [16, 33, 60, 63, 74, 81, 97, 109, 151, 152, 155, 166, 177, 178, 182, 183, 197, 200, 203, 204, 205, 206, 207, 217, 219, 227, 229], "chain": 16, "relat": [16, 146, 205, 206], "return": [16, 22, 111, 129, 133, 136, 139, 186, 195], "instanc": [16, 22, 29, 111, 134, 137, 140, 142, 188, 190], "animation_mov": 17, "animation_parallel": 18, "": [18, 59, 154, 206], "animation_paus": 19, "animation_plai": 19, "animation_radiu": 20, "animation_reset": 21, "valu": [22, 33, 58, 81, 108, 111, 129, 133, 136, 139, 147, 151, 192, 195, 222], "subclass": 22, "animation_revers": 23, "animation_rotation_around_cent": 24, "animation_rotation_around_point": 25, "animation_scale_x_from_cent": 26, "animation_scale_y_from_cent": 26, "animation_scale_x_from_point": 27, "animation_scale_y_from_point": 27, "animation_tim": 28, "animation_width": 29, "animation_height": 29, "ellips": [29, 30, 31, 97], "animation_x": 30, "circl": [30, 31, 60], "animation_i": 31, "append_js_express": 32, "arrai": [33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 146], "fixed_value_typ": 33, "argument": [33, 55, 160, 222, 224, 233], "append": 34, "push": 34, "clear": [35, 128], "comparison": [36, 58, 149, 195], "extend": 37, "concat": 37, "index_of": 38, "insert": 39, "insert_at": 39, "join": 40, "last_valu": 41, "length": [42, 84, 196], "len": [42, 84], "function": [42, 84, 180, 191], "pop": 43, "remov": 44, "remove_at": 44, "revers": [45, 58], "slice": [46, 200], "sort": 47, "assert_arrays_equ": 48, "assert_arrays_not_equ": 48, "assert_equ": [48, 50, 51], "assert_not_equ": [48, 50, 51], "assert_defin": 49, "assert_undefin": 49, "assert_dicts_equ": 50, "assert_dicts_not_equ": 50, "assert_great": 52, "assert_greater_equ": 52, "assert_less": 53, "assert_less_equ": 53, "assert_tru": 54, "assert_fals": 54, "javascript": [55, 187, 235], "assert": 55, "behavior": [55, 148, 149], "name": [55, 160, 187], "result": 55, "msg": 55, "bind": [56, 88, 146, 160], "trigger": 56, "custom": 56, "event": [56, 61, 88, 100, 146, 159, 160, 234], "unbind": [56, 61, 160, 161, 162, 163], "bind_custom_ev": 56, "trigger_custom_ev": 56, "unbind_custom_ev": 56, "unbind_custom_event_al": 56, "boolean": [58, 146], "bool": 58, "alia": [58, 147, 228], "not_": 58, "branch": [59, 146], "instruct": [59, 146], "scope": 59, "variabl": [59, 235], "revert": 59, "These": 59, "execut": 59, "statement": 59, "code": [59, 62, 181], "draw_circl": [60, 129], "fill_color": [60, 97, 113, 127, 166, 177, 178, 182, 206, 207, 212, 229], "fill_alpha": [60, 97, 112, 127, 166, 177, 178, 182, 206, 207, 211, 229], "line_color": [60, 97, 116, 141, 152, 166, 177, 178, 182, 206, 207, 229], "line_alpha": [60, 97, 115, 141, 152, 166, 177, 178, 182, 206, 207, 229], "line_thick": [60, 97, 121, 141, 152, 166, 177, 178, 182, 206, 207, 229], "line_dot_set": [60, 97, 119, 141, 152, 166, 177, 178, 182, 229], "line_dash_set": [60, 97, 118, 141, 152, 166, 177, 178, 182, 229], "line_round_dot_set": [60, 97, 120, 141, 152, 166, 177, 178, 182, 229], "line_dash_dot_set": [60, 97, 117, 141, 152, 166, 177, 178, 182, 229], "rotation_around_cent": [60, 97, 122, 152, 166, 177, 178, 182, 206, 229], "set_rotation_around_point": [60, 97, 123, 152, 166, 177, 178, 182, 206, 229], "get_rotation_around_point": [60, 97, 123, 152, 166, 177, 178, 182, 206, 229], "scale_x_from_cent": [60, 97, 124, 152, 166, 177, 178, 182, 206, 229], "scale_y_from_cent": [60, 97, 124, 152, 166, 177, 178, 182, 229], "set_scale_x_from_point": [60, 97, 125, 152, 166, 177, 178, 182, 206, 229], "get_scale_x_from_point": [60, 97, 125, 152, 166, 177, 178, 182, 206, 229], "set_scale_y_from_point": [60, 97, 125, 152, 166, 177, 178, 182, 229], "get_scale_y_from_point": [60, 97, 125, 152, 166, 177, 178, 182, 229], "flip_x": [60, 97, 114, 152, 166, 177, 178, 182, 206, 229], "flip_i": [60, 97, 114, 152, 166, 177, 178, 182, 206, 229], "skew_x": [60, 97, 126, 152, 166, 177, 178, 182, 229], "skew_i": [60, 97, 126, 152, 166, 177, 178, 182, 229], "click": [61, 159], "unbind_click": 61, "all": [61, 160], "unbind_click_al": 61, "hexadecim": 62, "colorless": 64, "constant": [64, 146, 230], "defin": [65, 153], "contain": [66, 146, 179, 191], "continu": 67, "datetim": [68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 146], "dai": [69, 217, 218], "hour": 70, "millisecond": 71, "minut": 72, "month": 73, "now": 74, "second": 75, "set_month_end": 76, "weekday_j": 77, "weekday_pi": 77, "year": 78, "dblclick": 79, "unbind_dblclick": 79, "unbind_dblclick_al": 79, "delet": [80, 81, 117, 118, 119, 120], "setter": [81, 108, 176], "getter": [81, 108, 176], "get": 83, "displayobject": [85, 86, 87, 88, 89, 90, 91, 146, 190, 205], "graphicsbas": [86, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 146], "base": 86, "visibl": [86, 90], "flip": 86, "skew": 86, "get_css": 87, "set_css": 87, "mous": [88, 146, 160, 234], "parent": 89, "remove_from_par": 89, "augment": 91, "assign": 91, "display_on_colaboratori": 92, "requir": [92, 93], "display_on_jupyt": 93, "draw": [94, 234], "style": [94, 134], "enum": [95, 107, 222], "differ": [95, 136], "between": [95, 136], "out": 95, "elif": 96, "draw_ellips": [97, 133], "els": 98, "enter_fram": 99, "which": 99, "should": 99, "we": 99, "us": [99, 234, 235], "timer": [99, 146, 220, 221, 222, 224, 225, 226, 234], "prevent_default": 100, "stop_propag": 100, "forarrayindic": 101, "forarrayindicesandvalu": 102, "forarrayvalu": 103, "fordictkei": 104, "fordictkeysandvalu": 105, "fordictvalu": 106, "fp": [107, 222], "fundament": 108, "data": [108, 146, 235], "get_bound": [109, 183], "get_child_at": [110, 191], "graphic": [111, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 179, 190, 234], "sprite": [111, 179, 190], "delete_line_dash_dot_set": 117, "delete_line_dash_set": 118, "delete_line_dot_set": 119, "delete_line_round_dot_set": 120, "rotation_around_point": 123, "get_scale_from_point": 125, "set_scale_from_point": 125, "begin_fil": 127, "opac": [127, 141], "draw_dash_dotted_lin": 130, "draw_dashed_lin": 131, "draw_dotted_lin": 132, "draw_lin": [134, 152], "ignor": [134, 181], "draw_path": 135, "draw_polygon": [136, 176, 177], "line_to": [136, 142, 178], "draw_rect": [137, 182], "rectangl": [137, 182], "draw_round_dotted_lin": 138, "draw_round_rect": 139, "draw_triangl": [140, 229], "triangl": [140, 229], "line_styl": 141, "cap": 141, "joint": 141, "dot": 141, "dash": 141, "round": 141, "line_cap": 141, "line_joint": 141, "move_to": [142, 178], "thei": 142, "sequenti": [142, 188], "after": 142, "polylin": [142, 178], "If": 144, "import": 145, "convent": 145, "document": 146, "project": 146, "link": 146, "quick": [146, 179], "guid": [146, 179], "export": [146, 179, 234], "child": 146, "int": [146, 147, 148, 149, 150, 151], "number": [146, 147, 148, 149, 150, 151], "string": [146, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204], "svg": 146, "text": [146, 206, 207, 210, 211, 212, 213, 214, 215, 216], "geometri": 146, "common": [146, 148, 149], "mouseev": [146, 159, 160], "loop": 146, "enter": 146, "frame": 146, "timedelta": [146, 217, 218, 219], "mathemat": 146, "manipul": 146, "debug": 146, "test": 146, "float": 147, "arithmet": 148, "oper": [148, 149, 193, 195], "subtract": 148, "multipl": [148, 193], "divis": 148, "floor": 148, "modulo": 148, "equal": [149, 195], "Not": [149, 195], "less": [149, 195], "than": [149, 195], "greater": [149, 195], "to_fix": 150, "math": [155, 156, 157, 158], "max": 156, "min": 157, "trunc": 158, "stage_x": 160, "stage_i": 160, "local_x": 160, "local_i": 160, "mousedown": 161, "mouseup": 161, "unbind_mousedown": 161, "unbind_mousedown_al": 161, "unbind_mouseup": 161, "unbind_mouseup_al": 161, "mousemov": 162, "unbind_mousemov": 162, "unbind_mousemove_al": 162, "mouseov": 163, "mouseout": 163, "unbind_mouseov": 163, "unbind_mouseover_al": 163, "unbind_mouseout": 163, "unbind_mouseout_al": 163, "num_children": [165, 191], "path": [166, 187], "pathmoveto": [166, 174], "pathlineto": [166, 173], "pathhorizont": [166, 172], "pathvert": [166, 175], "pathclos": [166, 171], "pathbezier2d": [166, 167], "pathbezier2dcontinu": [166, 168], "pathbezier3d": [166, 169], "pathbezier3dcontinu": [166, 170], "rel": [167, 168, 169, 170, 172, 173, 174, 175], "posit": [167, 168, 169, 170, 172, 173, 174, 175], "point2d": 176, "polygon": 177, "instal": 179, "creat": [179, 191], "stage": [179, 191], "html": [179, 187, 234], "add": 179, "vector": [179, 234], "rang": 180, "recommend": 181, "checker": 181, "librari": [181, 187, 235], "error": 181, "ellipse_width": 182, "ellipse_height": 182, "rectanglegeom": 183, "left_x": 183, "center_x": 183, "right_x": 183, "top_i": 183, "center_i": 183, "bottom_i": 183, "remove_children": 185, "save_overall_html": 187, "minifi": 187, "lib": 187, "directori": 187, "skip": 187, "chang": [187, 235], "file": 187, "html_file_nam": 187, "bundl": 187, "signl": 187, "embed_js_lib": 187, "stdout": 187, "verbos": 187, "same": 188, "set_debug_mod": 189, "autom": 190, "simultan": 190, "background": 191, "size": 191, "element": 191, "id": 191, "get_stag": 191, "stage_elem_id": 191, "apply_max_num_of_decimal_plac": 194, "right": [195, 208, 209], "side": 195, "emoji": 196, "lstrip": 198, "rstrip": 199, "split": 201, "strip": 202, "svgtext": [206, 207], "baselin": 206, "coordin": [205, 206], "font_siz": [206, 207, 213], "font_famili": [206, 207], "lead": 206, "align": 206, "bold": [206, 207, 210], "ital": [206, 207, 214], "svgtextspan": 207, "break": 207, "delta_x": 207, "delta_i": 207, "create_with_svg_text_span": 207, "total_second": [217, 219], "timer_complet": 221, "timerev": 223, "repeat_count": 224, "reset": 225, "stop": 226, "to_str": 227, "trace": 228, "print": 228, "x1": 229, "y1": 229, "x2": 229, "y2": 229, "x3": 229, "y3": 229, "true_": 230, "false_": 230, "initi": [], "time": [], "unbind_enter_fram": 231, "unbind_enter_frame_al": 231, "unset_debug_mod": 232, "variable_name_suffix": 233, "current": 234, "implement": 234, "write": 234, "python": [234, 235], "jupyt": 234, "mani": 234, "why": 235, "doesn": 235, "t": 235, "built": 235, "need": 235, "convert": 235, "track": 235, "refer": [65, 153], "materialdesigncolor": 153, "zfill": 204, "from_rgb": 63, "to_hex": 151, "ap": 151, "lower": 197, "upper": 203, "red_color": 184, "green_color": 143, "blue_color": 57, "multilinetext": 164, "text_align": 208, "csstextalign": 208, "left": [208, 209], "justifi": [208, 209], "text_align_last": 209, "csstextalignlast": 209, "auto": 209, "underlin": 216, "line_height": 215, "materi": [146, 154], "design": 146, "icon": 154, "overview": [], "licens": 154, "clamp": 155, "mask": [146, 205], "svgmask": 205, "add_svg_masking_object": 205, "svg_mask": 205, "case": 205, "when": 205, "you": 205, "want": 205, "synchron": 205}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx": 58}, "alltitles": {"About the handler options\u2019 type": [[0, "about-the-handler-options-type"]], "The dictionary type is acceptable": [[0, "the-dictionary-type-is-acceptable"]], "About the TypedDict annotation": [[0, "about-the-typeddict-annotation"]], "add_child and remove_child interfaces": [[1, "add-child-and-remove-child-interfaces"]], "What interfaces are these?": [[1, "what-interfaces-are-these"], [26, "what-interfaces-are-these"], [27, "what-interfaces-are-these"], [29, "what-interfaces-are-these"], [48, "what-interfaces-are-these"], [49, "what-interfaces-are-these"], [50, "what-interfaces-are-these"], [51, "what-interfaces-are-these"], [52, "what-interfaces-are-these"], [53, "what-interfaces-are-these"], [54, "what-interfaces-are-these"], [56, "what-interfaces-are-these"], [88, "what-interfaces-are-these"], [89, "what-interfaces-are-these"], [91, "what-interfaces-are-these"], [100, "what-interfaces-are-these"], [114, "what-interfaces-are-these"], [123, "what-interfaces-are-these"], [124, "what-interfaces-are-these"], [125, "what-interfaces-are-these"], [126, "what-interfaces-are-these"], [161, "what-interfaces-are-these"], [163, "what-interfaces-are-these"], [231, "what-interfaces-are-these"], [34, "what-interfaces-are-these"], [37, "what-interfaces-are-these"], [39, "what-interfaces-are-these"], [44, "what-interfaces-are-these"], [87, "what-interfaces-are-these"], [226, "what-interfaces-are-these"]], "Automatic addition of the children": [[1, "automatic-addition-of-the-children"]], "Basic usage of the remove_child interface": [[1, "basic-usage-of-the-remove-child-interface"]], "The basic usage of the add_child interface": [[1, "the-basic-usage-of-the-add-child-interface"]], "See also": [[1, "see-also"], [2, "see-also"], [48, "see-also"], [49, "see-also"], [50, "see-also"], [51, "see-also"], [52, "see-also"], [53, "see-also"], [54, "see-also"], [59, "see-also"], [61, "see-also"], [66, "see-also"], [79, "see-also"], [85, "see-also"], [86, "see-also"], [88, "see-also"], [89, "see-also"], [94, "see-also"], [96, "see-also"], [98, "see-also"], [99, "see-also"], [101, "see-also"], [102, "see-also"], [103, "see-also"], [104, "see-also"], [105, "see-also"], [106, "see-also"], [107, "see-also"], [111, "see-also"], [119, "see-also"], [135, "see-also"], [144, "see-also"], [159, "see-also"], [160, "see-also"], [161, "see-also"], [162, "see-also"], [163, "see-also"], [179, "see-also"], [181, "see-also"], [188, "see-also"], [189, "see-also"], [231, "see-also"], [232, "see-also"], [33, "see-also"], [45, "see-also"], [47, "see-also"], [190, "see-also"], [220, "see-also"], [222, "see-also"]], "add_child API": [[1, "add-child-api"], [191, "add-child-api"]], "remove_child API": [[1, "remove-child-api"], [191, "remove-child-api"]], "add_debug_info_setting decorator interface": [[2, "add-debug-info-setting-decorator-interface"]], "What interface is this?": [[2, "what-interface-is-this"], [3, "what-interface-is-this"], [5, "what-interface-is-this"], [9, "what-interface-is-this"], [10, "what-interface-is-this"], [11, "what-interface-is-this"], [13, "what-interface-is-this"], [14, "what-interface-is-this"], [15, "what-interface-is-this"], [17, "what-interface-is-this"], [18, "what-interface-is-this"], [20, "what-interface-is-this"], [21, "what-interface-is-this"], [23, "what-interface-is-this"], [24, "what-interface-is-this"], [25, "what-interface-is-this"], [28, "what-interface-is-this"], [30, "what-interface-is-this"], [31, "what-interface-is-this"], [32, "what-interface-is-this"], [35, "what-interface-is-this"], [61, "what-interface-is-this"], [66, "what-interface-is-this"], [69, "what-interface-is-this"], [70, "what-interface-is-this"], [71, "what-interface-is-this"], [72, "what-interface-is-this"], [73, "what-interface-is-this"], [74, "what-interface-is-this"], [75, "what-interface-is-this"], [76, "what-interface-is-this"], [78, "what-interface-is-this"], [79, "what-interface-is-this"], [80, "what-interface-is-this"], [83, "what-interface-is-this"], [84, "what-interface-is-this"], [90, "what-interface-is-this"], [92, "what-interface-is-this"], [93, "what-interface-is-this"], [99, "what-interface-is-this"], [108, "what-interface-is-this"], [110, "what-interface-is-this"], [112, "what-interface-is-this"], [115, "what-interface-is-this"], [117, "what-interface-is-this"], [118, "what-interface-is-this"], [119, "what-interface-is-this"], [120, "what-interface-is-this"], [121, "what-interface-is-this"], [122, "what-interface-is-this"], [128, "what-interface-is-this"], [129, "what-interface-is-this"], [130, "what-interface-is-this"], [131, "what-interface-is-this"], [132, "what-interface-is-this"], [133, "what-interface-is-this"], [134, "what-interface-is-this"], [135, "what-interface-is-this"], [136, "what-interface-is-this"], [137, "what-interface-is-this"], [138, "what-interface-is-this"], [139, "what-interface-is-this"], [140, "what-interface-is-this"], [150, "what-interface-is-this"], [155, "what-interface-is-this"], [156, "what-interface-is-this"], [157, "what-interface-is-this"], [158, "what-interface-is-this"], [162, "what-interface-is-this"], [165, "what-interface-is-this"], [185, "what-interface-is-this"], [187, "what-interface-is-this"], [189, "what-interface-is-this"], [194, "what-interface-is-this"], [198, "what-interface-is-this"], [199, "what-interface-is-this"], [201, "what-interface-is-this"], [202, "what-interface-is-this"], [218, "what-interface-is-this"], [219, "what-interface-is-this"], [227, "what-interface-is-this"], [228, "what-interface-is-this"], [232, "what-interface-is-this"], [109, "what-interface-is-this"], [38, "what-interface-is-this"], [40, "what-interface-is-this"], [42, "what-interface-is-this"], [43, "what-interface-is-this"], [45, "what-interface-is-this"], [46, "what-interface-is-this"], [47, "what-interface-is-this"], [113, "what-interface-is-this"], [116, "what-interface-is-this"], [127, "what-interface-is-this"], [141, "what-interface-is-this"], [207, "what-interface-is-this"], [221, "what-interface-is-this"], [225, "what-interface-is-this"]], "Basic usage": [[2, "basic-usage"], [3, "basic-usage"], [4, "basic-usage"], [5, "basic-usage"], [6, "basic-usage"], [7, "basic-usage"], [8, "basic-usage"], [9, "basic-usage"], [10, "basic-usage"], [11, "basic-usage"], [13, "basic-usage"], [14, "basic-usage"], [15, "basic-usage"], [17, "basic-usage"], [18, "basic-usage"], [19, "basic-usage"], [20, "basic-usage"], [21, "basic-usage"], [22, "basic-usage"], [23, "basic-usage"], [24, "basic-usage"], [25, "basic-usage"], [26, "basic-usage"], [27, "basic-usage"], [28, "basic-usage"], [29, "basic-usage"], [30, "basic-usage"], [31, "basic-usage"], [32, "basic-usage"], [35, "basic-usage"], [36, "basic-usage"], [48, "basic-usage"], [49, "basic-usage"], [50, "basic-usage"], [51, "basic-usage"], [52, "basic-usage"], [53, "basic-usage"], [54, "basic-usage"], [56, "basic-usage"], [57, "basic-usage"], [62, "basic-usage"], [63, "basic-usage"], [64, "basic-usage"], [65, "basic-usage"], [66, "basic-usage"], [67, "basic-usage"], [68, "basic-usage"], [69, "basic-usage"], [70, "basic-usage"], [71, "basic-usage"], [72, "basic-usage"], [73, "basic-usage"], [74, "basic-usage"], [75, "basic-usage"], [76, "basic-usage"], [77, "basic-usage"], [78, "basic-usage"], [80, "basic-usage"], [82, "basic-usage"], [83, "basic-usage"], [84, "basic-usage"], [88, "basic-usage"], [90, "basic-usage"], [91, "basic-usage"], [92, "basic-usage"], [93, "basic-usage"], [95, "basic-usage"], [96, "basic-usage"], [98, "basic-usage"], [99, "basic-usage"], [101, "basic-usage"], [102, "basic-usage"], [103, "basic-usage"], [104, "basic-usage"], [105, "basic-usage"], [106, "basic-usage"], [107, "basic-usage"], [110, "basic-usage"], [112, "basic-usage"], [114, "basic-usage"], [115, "basic-usage"], [117, "basic-usage"], [118, "basic-usage"], [119, "basic-usage"], [120, "basic-usage"], [121, "basic-usage"], [122, "basic-usage"], [123, "basic-usage"], [124, "basic-usage"], [125, "basic-usage"], [128, "basic-usage"], [129, "basic-usage"], [130, "basic-usage"], [131, "basic-usage"], [132, "basic-usage"], [133, "basic-usage"], [134, "basic-usage"], [135, "basic-usage"], [136, "basic-usage"], [137, "basic-usage"], [138, "basic-usage"], [139, "basic-usage"], [140, "basic-usage"], [142, "basic-usage"], [143, "basic-usage"], [144, "basic-usage"], [150, "basic-usage"], [151, "basic-usage"], [152, "basic-usage"], [153, "basic-usage"], [154, "basic-usage"], [155, "basic-usage"], [156, "basic-usage"], [157, "basic-usage"], [158, "basic-usage"], [162, "basic-usage"], [165, "basic-usage"], [166, "basic-usage"], [167, "basic-usage"], [168, "basic-usage"], [169, "basic-usage"], [170, "basic-usage"], [171, "basic-usage"], [172, "basic-usage"], [173, "basic-usage"], [174, "basic-usage"], [175, "basic-usage"], [176, "basic-usage"], [177, "basic-usage"], [178, "basic-usage"], [180, "basic-usage"], [184, "basic-usage"], [185, "basic-usage"], [186, "basic-usage"], [187, "basic-usage"], [189, "basic-usage"], [194, "basic-usage"], [196, "basic-usage"], [198, "basic-usage"], [199, "basic-usage"], [200, "basic-usage"], [201, "basic-usage"], [202, "basic-usage"], [205, "basic-usage"], [208, "basic-usage"], [209, "basic-usage"], [215, "basic-usage"], [217, "basic-usage"], [218, "basic-usage"], [219, "basic-usage"], [223, "basic-usage"], [227, "basic-usage"], [228, "basic-usage"], [230, "basic-usage"], [231, "basic-usage"], [232, "basic-usage"], [233, "basic-usage"], [109, "basic-usage"], [183, "basic-usage"], [34, "basic-usage"], [37, "basic-usage"], [38, "basic-usage"], [39, "basic-usage"], [40, "basic-usage"], [41, "basic-usage"], [42, "basic-usage"], [43, "basic-usage"], [44, "basic-usage"], [45, "basic-usage"], [46, "basic-usage"], [47, "basic-usage"], [87, "basic-usage"], [113, "basic-usage"], [116, "basic-usage"], [127, "basic-usage"], [141, "basic-usage"], [164, "basic-usage"], [197, "basic-usage"], [203, "basic-usage"], [204, "basic-usage"], [210, "basic-usage"], [212, "basic-usage"], [213, "basic-usage"], [214, "basic-usage"], [216, "basic-usage"], [211, "basic-usage"], [60, "basic-usage"], [97, "basic-usage"], [182, "basic-usage"], [206, "basic-usage"], [207, "basic-usage"], [220, "basic-usage"], [221, "basic-usage"], [222, "basic-usage"], [224, "basic-usage"], [225, "basic-usage"], [226, "basic-usage"], [229, "basic-usage"]], "Notes of the mypy setting": [[2, "notes-of-the-mypy-setting"]], "AnimationBase class start interface": [[3, "animationbase-class-start-interface"]], "start API": [[3, "start-api"], [226, "start-api"]], "AnimationBase class target property interface": [[4, "animationbase-class-target-property-interface"]], "What property is this?": [[4, "what-property-is-this"], [57, "what-property-is-this"], [143, "what-property-is-this"], [184, "what-property-is-this"], [196, "what-property-is-this"], [208, "what-property-is-this"], [209, "what-property-is-this"], [215, "what-property-is-this"], [41, "what-property-is-this"], [210, "what-property-is-this"], [212, "what-property-is-this"], [213, "what-property-is-this"], [214, "what-property-is-this"], [216, "what-property-is-this"], [211, "what-property-is-this"]], "Generic type annotation setting": [[4, "generic-type-annotation-setting"]], "target property API": [[4, "target-property-api"]], "AnimationBase class animation_complete interface": [[5, "animationbase-class-animation-complete-interface"]], "Notes about the other interface calling order": [[5, "notes-about-the-other-interface-calling-order"]], "animation_complete API": [[5, "animation-complete-api"]], "Animation interfaces delay setting": [[6, "animation-interfaces-delay-setting"]], "What setting is this?": [[6, "what-setting-is-this"], [7, "what-setting-is-this"]], "Animation interfaces duration setting": [[7, "animation-interfaces-duration-setting"]], "AnimationEvent class": [[8, "animationevent-class"]], "What class is this?": [[8, "what-class-is-this"], [62, "what-class-is-this"], [65, "what-class-is-this"], [68, "what-class-is-this"], [95, "what-class-is-this"], [101, "what-class-is-this"], [102, "what-class-is-this"], [103, "what-class-is-this"], [104, "what-class-is-this"], [105, "what-class-is-this"], [106, "what-class-is-this"], [107, "what-class-is-this"], [152, "what-class-is-this"], [153, "what-class-is-this"], [166, "what-class-is-this"], [167, "what-class-is-this"], [168, "what-class-is-this"], [169, "what-class-is-this"], [170, "what-class-is-this"], [171, "what-class-is-this"], [172, "what-class-is-this"], [173, "what-class-is-this"], [174, "what-class-is-this"], [175, "what-class-is-this"], [177, "what-class-is-this"], [178, "what-class-is-this"], [205, "what-class-is-this"], [217, "what-class-is-this"], [223, "what-class-is-this"], [183, "what-class-is-this"], [164, "what-class-is-this"], [60, "what-class-is-this"], [97, "what-class-is-this"], [182, "what-class-is-this"], [206, "what-class-is-this"], [229, "what-class-is-this"]], "this property": [[8, "this-property"]], "Generic type annotation": [[8, "generic-type-annotation"], [33, "generic-type-annotation"]], "AnimationEvent constructor API": [[8, "animationevent-constructor-api"]], "this property API": [[8, "this-property-api"], [160, "this-property-api"]], "animation_fill_alpha interface": [[9, "animation-fill-alpha-interface"]], "animation_fill_alpha API": [[9, "animation-fill-alpha-api"]], "animation_fill_color interface": [[10, "animation-fill-color-interface"]], "animation_fill_color API": [[10, "animation-fill-color-api"]], "animation_finish interface": [[11, "animation-finish-interface"]], "animation_finish API": [[11, "animation-finish-api"]], "Animation interfaces abstract": [[12, "animation-interfaces-abstract"]], "What apysc can do in its animation interfaces": [[12, "what-apysc-can-do-in-its-animation-interfaces"]], "Examples of each attribute animation": [[12, "examples-of-each-attribute-animation"]], "Easing": [[12, "easing"]], "X animation": [[12, "x-animation"]], "Y animation": [[12, "y-animation"]], "Move animation": [[12, "move-animation"]], "Width animation": [[12, "width-animation"]], "Height animation": [[12, "height-animation"]], "Fill color animation": [[12, "fill-color-animation"]], "Fill alpha animation": [[12, "fill-alpha-animation"]], "Line-color animation": [[12, "line-color-animation"]], "Line alpha animation": [[12, "line-alpha-animation"]], "Line thickness animation": [[12, "line-thickness-animation"]], "Radius animation": [[12, "radius-animation"]], "Rotation animation around the center point": [[12, "rotation-animation-around-the-center-point"]], "Rotation animation around the specified point": [[12, "rotation-animation-around-the-specified-point"]], "Scale-x animation from the center point": [[12, "scale-x-animation-from-the-center-point"]], "Scale-y animation from the center point": [[12, "scale-y-animation-from-the-center-point"]], "Scale-x animation from the specified point": [[12, "scale-x-animation-from-the-specified-point"]], "Scale-y animation from the specified point": [[12, "scale-y-animation-from-the-specified-point"]], "animation_line_alpha interface": [[13, "animation-line-alpha-interface"]], "animation_line_alpha API": [[13, "animation-line-alpha-api"]], "animation_line_color interface": [[14, "animation-line-color-interface"]], "animation_line_color API": [[14, "animation-line-color-api"]], "animation_line_thickness interface": [[15, "animation-line-thickness-interface"]], "animation_line_thickness API": [[15, "animation-line-thickness-api"]], "AnimationBase class interfaces method chaining": [[16, "animationbase-class-interfaces-method-chaining"]], "Each AnimationBase related interface returns its instance": [[16, "each-animationbase-related-interface-returns-its-instance"]], "animation_move interface": [[17, "animation-move-interface"]], "animation_move API": [[17, "animation-move-api"]], "animation_parallel interface": [[18, "animation-parallel-interface"]], "Note for each animation\u2019s duration, delay, and easing setting": [[18, "note-for-each-animation-s-duration-delay-and-easing-setting"]], "animation_parallel API": [[18, "animation-parallel-api"]], "animation_pause and animation_play interfaces": [[19, "animation-pause-and-animation-play-interfaces"]], "What interface are these?": [[19, "what-interface-are-these"], [77, "what-interface-are-these"]], "animation_pause API": [[19, "animation-pause-api"]], "animation_play API": [[19, "animation-play-api"]], "animation_radius interface": [[20, "animation-radius-interface"]], "animation_radius API": [[20, "animation-radius-api"]], "animation_reset interface": [[21, "animation-reset-interface"]], "animation_reset API": [[21, "animation-reset-api"]], "Each animation interface return value": [[22, "each-animation-interface-return-value"]], "Each interface returns the subclass instance of the AnimationBase": [[22, "each-interface-returns-the-subclass-instance-of-the-animationbase"]], "animation_reverse interface": [[23, "animation-reverse-interface"]], "Interface Notes": [[23, "interface-notes"]], "animation_reverse API": [[23, "animation-reverse-api"]], "animation_rotation_around_center interface": [[24, "animation-rotation-around-center-interface"]], "animation_rotation_around_center API": [[24, "animation-rotation-around-center-api"]], "animation_rotation_around_point interface": [[25, "animation-rotation-around-point-interface"]], "animation_rotation_around_point API": [[25, "animation-rotation-around-point-api"]], "animation_scale_x_from_center and animation_scale_y_from_center interfaces": [[26, "animation-scale-x-from-center-and-animation-scale-y-from-center-interfaces"]], "animation_scale_x_from_center API": [[26, "animation-scale-x-from-center-api"]], "animation_scale_y_from_center API": [[26, "animation-scale-y-from-center-api"]], "animation_scale_x_from_point and animation_scale_y_from_point interfaces": [[27, "animation-scale-x-from-point-and-animation-scale-y-from-point-interfaces"]], "animation_time interface": [[28, "animation-time-interface"]], "animation_time API": [[28, "animation-time-api"]], "animation_width and animation_height interfaces": [[29, "animation-width-and-animation-height-interfaces"]], "Notes for the Ellipse instance": [[29, "notes-for-the-ellipse-instance"]], "animation_width API": [[29, "animation-width-api"]], "animation_height API": [[29, "animation-height-api"]], "animation_x interface": [[30, "animation-x-interface"]], "Notes for the Circle and Ellipse classes": [[30, "notes-for-the-circle-and-ellipse-classes"], [31, "notes-for-the-circle-and-ellipse-classes"]], "animation_x API": [[30, "animation-x-api"]], "animation_y interface": [[31, "animation-y-interface"]], "animation_y API": [[31, "animation-y-api"]], "append_js_expression interface": [[32, "append-js-expression-interface"]], "append_js_expression API": [[32, "append-js-expression-api"]], "Array class clear interface": [[35, "array-class-clear-interface"]], "Array class comparison interfaces": [[36, "array-class-comparison-interfaces"]], "assert_arrays_equal and assert_arrays_not_equal interfaces": [[48, "assert-arrays-equal-and-assert-arrays-not-equal-interfaces"]], "Notes for the assert_equal and assert_not_equal interfaces": [[48, "notes-for-the-assert-equal-and-assert-not-equal-interfaces"], [50, "notes-for-the-assert-equal-and-assert-not-equal-interfaces"]], "assert_arrays_equal API": [[48, "assert-arrays-equal-api"]], "assert_arrays_not_equal API": [[48, "assert-arrays-not-equal-api"]], "assert_defined and assert_undefined interfaces": [[49, "assert-defined-and-assert-undefined-interfaces"]], "assert_defined API": [[49, "assert-defined-api"]], "assert_undefined API": [[49, "assert-undefined-api"]], "assert_dicts_equal and assert_dicts_not_equal interfaces": [[50, "assert-dicts-equal-and-assert-dicts-not-equal-interfaces"]], "assert_dicts_equal API": [[50, "assert-dicts-equal-api"]], "assert_dicts_not_equal API": [[50, "assert-dicts-not-equal-api"]], "assert_equal and assert_not_equal interfaces": [[51, "assert-equal-and-assert-not-equal-interfaces"]], "assert_equal API": [[51, "assert-equal-api"]], "assert_not_equal API": [[51, "assert-not-equal-api"]], "assert_greater and assert_greater_equal interfaces": [[52, "assert-greater-and-assert-greater-equal-interfaces"]], "assert_greater API": [[52, "assert-greater-api"]], "assert_greater_equal API": [[52, "assert-greater-equal-api"]], "assert_less and assert_less_equal interfaces": [[53, "assert-less-and-assert-less-equal-interfaces"]], "assert_less API": [[53, "assert-less-api"]], "assert_less_equal API": [[53, "assert-less-equal-api"]], "assert_true and assert_false interfaces": [[54, "assert-true-and-assert-false-interfaces"]], "assert_true API": [[54, "assert-true-api"]], "assert_false API": [[54, "assert-false-api"]], "JavaScript assertion interface basic behaviors": [[55, "javascript-assertion-interface-basic-behaviors"]], "Interface names": [[55, "interface-names"]], "Assertion results": [[55, "assertion-results"]], "Optional msg argument": [[55, "optional-msg-argument"]], "Bind and trigger the custom event": [[56, "bind-and-trigger-the-custom-event"]], "Unbind custom event": [[56, "unbind-custom-event"]], "bind_custom_event API": [[56, "bind-custom-event-api"]], "trigger_custom_event API": [[56, "trigger-custom-event-api"]], "unbind_custom_event API": [[56, "unbind-custom-event-api"]], "unbind_custom_event_all API": [[56, "unbind-custom-event-all-api"]], "Color class blue_color property": [[57, "color-class-blue-color-property"]], "blue_color property API": [[57, "blue-color-property-api"]], "Each branch instruction class\u2019s scope variable reverting setting": [[59, "each-branch-instruction-class-s-scope-variable-reverting-setting"]], "These interfaces execute with statement code": [[59, "these-interfaces-execute-with-statement-code"]], "Scope variables reverting setting": [[59, "scope-variables-reverting-setting"]], "click interface": [[61, "click-interface"]], "Basic usage of the click interface": [[61, "basic-usage-of-the-click-interface"]], "Basic usage of the unbind_click interface": [[61, "basic-usage-of-the-unbind-click-interface"]], "Unbind all the click event handlers": [[61, "unbind-all-the-click-event-handlers"]], "click API": [[61, "click-api"]], "unbind_click API": [[61, "unbind-click-api"]], "unbind_click_all API": [[61, "unbind-click-all-api"]], "Color class": [[62, "color-class"]], "Acceptable hexadecimal color codes": [[62, "acceptable-hexadecimal-color-codes"]], "Color constructor API": [[62, "color-constructor-api"]], "Color class from_rgb class method": [[63, "color-class-from-rgb-class-method"]], "What class method is this?": [[63, "what-class-method-is-this"]], "from_rgb class method API": [[63, "from-rgb-class-method-api"]], "COLORLESS constant": [[64, "colorless-constant"]], "What constant is this?": [[64, "what-constant-is-this"]], "Colors class": [[65, "colors-class"]], "Defined colors": [[65, "defined-colors"], [153, "defined-colors"]], "References": [[65, "references"], [153, "references"]], "contains interface": [[66, "contains-interface"]], "contains API": [[66, "contains-api"], [191, "contains-api"]], "Continue class": [[67, "continue-class"]], "What is the Continue class?": [[67, "what-is-the-continue-class"]], "Continue API": [[67, "continue-api"]], "DateTime class": [[68, "datetime-class"], [146, "datetime-class"]], "DateTime class constructor API": [[68, "datetime-class-constructor-api"]], "DateTime class day property": [[69, "datetime-class-day-property"]], "day property API": [[69, "day-property-api"]], "DateTime class hour property": [[70, "datetime-class-hour-property"]], "hour property API": [[70, "hour-property-api"]], "DateTime class millisecond property": [[71, "datetime-class-millisecond-property"]], "millisecond property API": [[71, "millisecond-property-api"]], "DateTime class minute property": [[72, "datetime-class-minute-property"]], "minute property API": [[72, "minute-property-api"]], "DateTime class month property": [[73, "datetime-class-month-property"]], "month property API": [[73, "month-property-api"]], "DateTime class now interface": [[74, "datetime-class-now-interface"]], "now class method API": [[74, "now-class-method-api"]], "DateTime class second property": [[75, "datetime-class-second-property"]], "second property API": [[75, "second-property-api"]], "DateTime class set_month_end interface": [[76, "datetime-class-set-month-end-interface"]], "DateTime class weekday_js and weekday_py properties": [[77, "datetime-class-weekday-js-and-weekday-py-properties"]], "weekday_js property API": [[77, "weekday-js-property-api"]], "weekday_py property API": [[77, "weekday-py-property-api"]], "DateTime class year property": [[78, "datetime-class-year-property"]], "year property API": [[78, "year-property-api"]], "dblclick interface": [[79, "dblclick-interface"]], "Basic usage of the dblclick interface": [[79, "basic-usage-of-the-dblclick-interface"]], "Basic usage of the unbind_dblclick interfaces": [[79, "basic-usage-of-the-unbind-dblclick-interfaces"]], "dblclick API": [[79, "dblclick-api"]], "unbind_dblclick API": [[79, "unbind-dblclick-api"]], "unbind_dblclick_all API": [[79, "unbind-dblclick-all-api"]], "delete interface": [[80, "delete-interface"]], "Constructor method": [[81, "constructor-method"], [33, "constructor-method"]], "Dictionary class": [[81, "dictionary-class"], [146, "dictionary-class"]], "What is the Dictionary?": [[81, "what-is-the-dictionary"]], "Value setter interface": [[81, "value-setter-interface"]], "Value getter interface": [[81, "value-getter-interface"]], "Notes of the getter interface": [[81, "notes-of-the-getter-interface"]], "Value deletion interface": [[81, "value-deletion-interface"]], "Dictionary class constructor API": [[81, "dictionary-class-constructor-api"]], "value attribute API": [[81, "value-attribute-api"]], "Dictionary class generic type settings": [[82, "dictionary-class-generic-type-settings"]], "Dictionary get interface": [[83, "dictionary-get-interface"]], "get API": [[83, "get-api"]], "length property API": [[84, "length-property-api"], [196, "length-property-api"], [42, "length-property-api"]], "Dictionary length interface": [[84, "dictionary-length-interface"]], "Note for the len function": [[84, "note-for-the-len-function"]], "DisplayObject class": [[85, "displayobject-class"]], "What is the DisplayObject?": [[85, "what-is-the-displayobject"]], "DisplayObject and GraphicsBase classes base properties abstract": [[86, "displayobject-and-graphicsbase-classes-base-properties-abstract"]], "What apysc can do in its properties": [[86, "what-apysc-can-do-in-its-properties"]], "x and y properties": [[86, "x-and-y-properties"]], "visible property": [[86, "visible-property"]], "rotation interfaces": [[86, "rotation-interfaces"]], "scale interfaces": [[86, "scale-interfaces"]], "flip properties": [[86, "flip-properties"]], "skew properties": [[86, "skew-properties"]], "DisplayObject class mouse event binding interfaces": [[88, "displayobject-class-mouse-event-binding-interfaces"]], "DisplayObject class parent interfaces": [[89, "displayobject-class-parent-interfaces"]], "Basic usage of the remove_from_parent interface": [[89, "basic-usage-of-the-remove-from-parent-interface"]], "parent API": [[89, "parent-api"]], "remove_from_parent API": [[89, "remove-from-parent-api"]], "DisplayObject class visible interface": [[90, "displayobject-class-visible-interface"]], "visible property API": [[90, "visible-property-api"]], "DisplayObject x and y interfaces": [[91, "displayobject-x-and-y-interfaces"]], "Augmented assignment": [[91, "augmented-assignment"]], "x property API": [[91, "x-property-api"], [176, "x-property-api"]], "y property API": [[91, "y-property-api"], [176, "y-property-api"]], "display_on_colaboratory interface": [[92, "display-on-colaboratory-interface"]], "Requirements": [[92, "requirements"], [93, "requirements"]], "display_on_colaboratory API": [[92, "display-on-colaboratory-api"]], "display_on_jupyter interface": [[93, "display-on-jupyter-interface"]], "Notes": [[93, "notes"], [96, "notes"], [98, "notes"], [122, "notes"], [138, "notes"], [165, "notes"], [189, "notes"], [232, "notes"]], "display_on_jupyter API": [[93, "display-on-jupyter-api"]], "Draw interfaces abstract": [[94, "draw-interfaces-abstract"]], "What apysc can do in its drawing interfaces": [[94, "what-apysc-can-do-in-its-drawing-interfaces"]], "Fill settings": [[94, "fill-settings"]], "Line style settings": [[94, "line-style-settings"]], "Each drawing interface": [[94, "each-drawing-interface"]], "Easing enum": [[95, "easing-enum"]], "What difference between the ease-in, ease-out, and ease-in-out": [[95, "what-difference-between-the-ease-in-ease-out-and-ease-in-out"]], "Ease-in examples": [[95, "ease-in-examples"]], "Ease-out examples": [[95, "ease-out-examples"]], "Ease-in-out examples": [[95, "ease-in-out-examples"]], "Elif class": [[96, "elif-class"]], "What is the Elif class?": [[96, "what-is-the-elif-class"]], "Elif constructor API": [[96, "elif-constructor-api"]], "Else class": [[98, "else-class"]], "What is the Else class?": [[98, "what-is-the-else-class"]], "Else constructor API": [[98, "else-constructor-api"]], "enter_frame interface": [[99, "enter-frame-interface"]], "Which should we use, the Timer class or the enter_frame interface?": [[99, "which-should-we-use-the-timer-class-or-the-enter-frame-interface"]], "enter_frame API": [[99, "enter-frame-api"]], "Event class prevent_default and stop_propagation interfaces": [[100, "event-class-prevent-default-and-stop-propagation-interfaces"]], "Basic usage of the prevent_default interface": [[100, "basic-usage-of-the-prevent-default-interface"]], "Basic usage of the stop_propagation interface": [[100, "basic-usage-of-the-stop-propagation-interface"]], "prevent_default API": [[100, "prevent-default-api"]], "stop_propagation API": [[100, "stop-propagation-api"]], "ForArrayIndices class": [[101, "forarrayindices-class"]], "ForArrayIndices API": [[101, "forarrayindices-api"]], "ForArrayIndicesAndValues class": [[102, "forarrayindicesandvalues-class"]], "ForArrayIndicesAndValues API": [[102, "forarrayindicesandvalues-api"]], "ForArrayValues class": [[103, "forarrayvalues-class"]], "ForArrayValues API": [[103, "forarrayvalues-api"]], "ForDictKeys class": [[104, "fordictkeys-class"]], "ForDictKeys API": [[104, "fordictkeys-api"]], "ForDictKeysAndValues class": [[105, "fordictkeysandvalues-class"]], "ForDictKeysAndValues API": [[105, "fordictkeysandvalues-api"]], "ForDictValues class": [[106, "fordictvalues-class"]], "ForDictValues API": [[106, "fordictvalues-api"]], "FPS enum": [[107, "fps-enum"]], "apysc fundamental data classes value interface": [[108, "apysc-fundamental-data-classes-value-interface"]], "Basic usage of the getter interface": [[108, "basic-usage-of-the-getter-interface"]], "Basic usage of the setter interface": [[108, "basic-usage-of-the-setter-interface"]], "get_child_at interface": [[110, "get-child-at-interface"]], "get_child_at API": [[110, "get-child-at-api"], [191, "get-child-at-api"]], "Graphics class": [[111, "graphics-class"], [146, "graphics-class"]], "What is Graphics?": [[111, "what-is-graphics"]], "Call interfaces from sprite instance": [[111, "call-interfaces-from-sprite-instance"]], "Return values": [[111, "return-values"]], "GraphicsBase fill_alpha interface": [[112, "graphicsbase-fill-alpha-interface"]], "fill_alpha property API": [[112, "fill-alpha-property-api"], [127, "fill-alpha-property-api"], [211, "fill-alpha-property-api"]], "GraphicsBase flip_x and flip_y interfaces": [[114, "graphicsbase-flip-x-and-flip-y-interfaces"]], "flip_x property API": [[114, "flip-x-property-api"]], "flip_y property API": [[114, "flip-y-property-api"]], "GraphicsBase line_alpha interface": [[115, "graphicsbase-line-alpha-interface"]], "line_alpha property API": [[115, "line-alpha-property-api"], [141, "line-alpha-property-api"]], "GraphicsBase line_dash_dot_setting interface": [[117, "graphicsbase-line-dash-dot-setting-interface"]], "Delete setting": [[117, "delete-setting"], [118, "delete-setting"], [119, "delete-setting"], [120, "delete-setting"]], "line_dash_dot_setting API": [[117, "line-dash-dot-setting-api"]], "delete_line_dash_dot_setting API": [[117, "delete-line-dash-dot-setting-api"]], "GraphicsBase line_dash_setting interface": [[118, "graphicsbase-line-dash-setting-interface"]], "line_dash_setting property API": [[118, "line-dash-setting-property-api"], [141, "line-dash-setting-property-api"]], "delete_line_dash_setting API": [[118, "delete-line-dash-setting-api"]], "GraphicsBase line_dot_setting interface": [[119, "graphicsbase-line-dot-setting-interface"]], "line_dot_setting property API": [[119, "line-dot-setting-property-api"], [141, "line-dot-setting-property-api"]], "delete_line_dot_setting API": [[119, "delete-line-dot-setting-api"]], "GraphicsBase line_round_dot_setting interface": [[120, "graphicsbase-line-round-dot-setting-interface"]], "line_round_dot_setting property API": [[120, "line-round-dot-setting-property-api"], [141, "line-round-dot-setting-property-api"]], "delete_line_round_dot_setting API": [[120, "delete-line-round-dot-setting-api"]], "GraphicsBase line_thickness interface": [[121, "graphicsbase-line-thickness-interface"]], "line_thickness property API": [[121, "line-thickness-property-api"], [141, "line-thickness-property-api"]], "GraphicsBase rotation_around_center interface": [[122, "graphicsbase-rotation-around-center-interface"]], "rotation_around_center property API": [[122, "rotation-around-center-property-api"]], "GraphicsBase rotation_around_point interfaces": [[123, "graphicsbase-rotation-around-point-interfaces"]], "get_rotation_around_point API": [[123, "get-rotation-around-point-api"]], "set_rotation_around_point API": [[123, "set-rotation-around-point-api"]], "GraphicsBase scale_x_from_center and scale_y_from_center interfaces": [[124, "graphicsbase-scale-x-from-center-and-scale-y-from-center-interfaces"]], "scale_x_from_center property API": [[124, "scale-x-from-center-property-api"]], "scale_y_from_center property API": [[124, "scale-y-from-center-property-api"]], "GraphicsBase get_scale_from_point and set_scale_from_point interfaces": [[125, "graphicsbase-get-scale-from-point-and-set-scale-from-point-interfaces"]], "get_scale_x_from_point API": [[125, "get-scale-x-from-point-api"]], "set_scale_x_from_point API": [[125, "set-scale-x-from-point-api"]], "get_scale_y_from_point API": [[125, "get-scale-y-from-point-api"]], "set_scale_y_from_point API": [[125, "set-scale-y-from-point-api"]], "GraphicsBase skew_x and skew_y interfaces": [[126, "graphicsbase-skew-x-and-skew-y-interfaces"]], "skew_x property API": [[126, "skew-x-property-api"]], "skew_y property API": [[126, "skew-y-property-api"]], "Graphics clear interface": [[128, "graphics-clear-interface"]], "Graphics draw_circle interface": [[129, "graphics-draw-circle-interface"]], "Return value": [[129, "return-value"], [133, "return-value"], [136, "return-value"], [139, "return-value"]], "draw_circle API": [[129, "draw-circle-api"]], "Graphics draw_dash_dotted_line interface": [[130, "graphics-draw-dash-dotted-line-interface"]], "draw_dash_dotted_line API": [[130, "draw-dash-dotted-line-api"]], "Graphics draw_dashed_line interface": [[131, "graphics-draw-dashed-line-interface"]], "draw_dashed_line API": [[131, "draw-dashed-line-api"]], "Graphics draw_dotted_line interface": [[132, "graphics-draw-dotted-line-interface"]], "draw_dotted_line API": [[132, "draw-dotted-line-api"]], "Graphics draw_ellipse interface": [[133, "graphics-draw-ellipse-interface"]], "draw_ellipse API": [[133, "draw-ellipse-api"]], "Graphics draw_line interface": [[134, "graphics-draw-line-interface"]], "Ignored line style settings": [[134, "ignored-line-style-settings"]], "Line class instance": [[134, "line-class-instance"]], "draw_line API": [[134, "draw-line-api"]], "Graphics draw_path interface": [[135, "graphics-draw-path-interface"]], "draw_path API": [[135, "draw-path-api"]], "Graphics draw_polygon interface": [[136, "graphics-draw-polygon-interface"]], "Difference between the line_to and draw_polygon interfaces": [[136, "difference-between-the-line-to-and-draw-polygon-interfaces"]], "draw_polygon API": [[136, "draw-polygon-api"]], "Graphics draw_rect interface": [[137, "graphics-draw-rect-interface"]], "Rectangle instance": [[137, "rectangle-instance"]], "draw_rect API": [[137, "draw-rect-api"]], "Graphics draw_round_dotted_line interface": [[138, "graphics-draw-round-dotted-line-interface"]], "draw_round_dotted_line API": [[138, "draw-round-dotted-line-api"]], "Graphics draw_round_rect interface": [[139, "graphics-draw-round-rect-interface"]], "draw_round_rect API": [[139, "draw-round-rect-api"]], "Graphics draw_triangle interface": [[140, "graphics-draw-triangle-interface"]], "Triangle instance": [[140, "triangle-instance"]], "draw_triangle API": [[140, "draw-triangle-api"]], "Graphics move_to and line_to interfaces": [[142, "graphics-move-to-and-line-to-interfaces"]], "What interfaces are they?": [[142, "what-interfaces-are-they"]], "Sequential calling of the line_to interface": [[142, "sequential-calling-of-the-line-to-interface"]], "move_to interface calling after line_to interface calling": [[142, "move-to-interface-calling-after-line-to-interface-calling"]], "Polyline instance": [[142, "polyline-instance"]], "move_to API": [[142, "move-to-api"]], "line_to API": [[142, "line-to-api"]], "Color class green_color property": [[143, "color-class-green-color-property"]], "green_color property API": [[143, "green-color-property-api"]], "If class": [[144, "if-class"]], "What is the If class?": [[144, "what-is-the-if-class"]], "If constructor API": [[144, "if-constructor-api"]], "import conventions": [[145, "import-conventions"]], "Int and Number basic arithmetic operations": [[148, "int-and-number-basic-arithmetic-operations"]], "Common behaviors": [[148, "common-behaviors"], [149, "common-behaviors"]], "Addition": [[148, "addition"], [193, "addition"]], "Subtraction": [[148, "subtraction"]], "Multiplication": [[148, "multiplication"], [193, "multiplication"]], "Division": [[148, "division"]], "Floor division": [[148, "floor-division"]], "Modulo": [[148, "modulo"]], "Int and Number basic comparison operations": [[149, "int-and-number-basic-comparison-operations"]], "Equal comparison operator": [[149, "equal-comparison-operator"]], "Not equal comparison operator": [[149, "not-equal-comparison-operator"]], "Less than comparison operator": [[149, "less-than-comparison-operator"]], "Less than or equal comparison operator": [[149, "less-than-or-equal-comparison-operator"]], "Greater than comparison operator": [[149, "greater-than-comparison-operator"]], "Greater than or equal comparison operator": [[149, "greater-than-or-equal-comparison-operator"]], "Int and Number classes to_fixed interface": [[150, "int-and-number-classes-to-fixed-interface"]], "to_fixed API": [[150, "to-fixed-api"]], "Int and Number classes to_hex method": [[151, "int-and-number-classes-to-hex-method"]], "What method is this?": [[151, "what-method-is-this"], [200, "what-method-is-this"], [197, "what-method-is-this"], [203, "what-method-is-this"], [204, "what-method-is-this"]], "Note for ap.Number value": [[151, "note-for-ap-number-value"]], "to_hex method API": [[151, "to-hex-method-api"]], "x property interface example": [[152, "x-property-interface-example"], [166, "x-property-interface-example"], [177, "x-property-interface-example"], [178, "x-property-interface-example"], [60, "x-property-interface-example"], [97, "x-property-interface-example"], [182, "x-property-interface-example"], [206, "x-property-interface-example"], [229, "x-property-interface-example"]], "y property interface example": [[152, "y-property-interface-example"], [166, "y-property-interface-example"], [177, "y-property-interface-example"], [178, "y-property-interface-example"], [60, "y-property-interface-example"], [97, "y-property-interface-example"], [182, "y-property-interface-example"], [206, "y-property-interface-example"], [229, "y-property-interface-example"]], "line_color property interface example": [[152, "line-color-property-interface-example"], [166, "line-color-property-interface-example"], [177, "line-color-property-interface-example"], [178, "line-color-property-interface-example"], [60, "line-color-property-interface-example"], [97, "line-color-property-interface-example"], [182, "line-color-property-interface-example"], [206, "line-color-property-interface-example"], [207, "line-color-property-interface-example"], [229, "line-color-property-interface-example"]], "line_alpha property interface example": [[152, "line-alpha-property-interface-example"], [166, "line-alpha-property-interface-example"], [177, "line-alpha-property-interface-example"], [178, "line-alpha-property-interface-example"], [60, "line-alpha-property-interface-example"], [97, "line-alpha-property-interface-example"], [182, "line-alpha-property-interface-example"], [206, "line-alpha-property-interface-example"], [207, "line-alpha-property-interface-example"], [229, "line-alpha-property-interface-example"]], "line_thickness property interface example": [[152, "line-thickness-property-interface-example"], [166, "line-thickness-property-interface-example"], [177, "line-thickness-property-interface-example"], [178, "line-thickness-property-interface-example"], [60, "line-thickness-property-interface-example"], [97, "line-thickness-property-interface-example"], [182, "line-thickness-property-interface-example"], [206, "line-thickness-property-interface-example"], [207, "line-thickness-property-interface-example"], [229, "line-thickness-property-interface-example"]], "line_dot_setting property interface example": [[152, "line-dot-setting-property-interface-example"], [166, "line-dot-setting-property-interface-example"], [177, "line-dot-setting-property-interface-example"], [178, "line-dot-setting-property-interface-example"], [60, "line-dot-setting-property-interface-example"], [97, "line-dot-setting-property-interface-example"], [182, "line-dot-setting-property-interface-example"], [229, "line-dot-setting-property-interface-example"]], "line_dash_setting property interface example": [[152, "line-dash-setting-property-interface-example"], [166, "line-dash-setting-property-interface-example"], [177, "line-dash-setting-property-interface-example"], [178, "line-dash-setting-property-interface-example"], [60, "line-dash-setting-property-interface-example"], [97, "line-dash-setting-property-interface-example"], [182, "line-dash-setting-property-interface-example"], [229, "line-dash-setting-property-interface-example"]], "line_round_dot_setting property interface example": [[152, "line-round-dot-setting-property-interface-example"], [166, "line-round-dot-setting-property-interface-example"], [177, "line-round-dot-setting-property-interface-example"], [178, "line-round-dot-setting-property-interface-example"], [60, "line-round-dot-setting-property-interface-example"], [97, "line-round-dot-setting-property-interface-example"], [182, "line-round-dot-setting-property-interface-example"], [229, "line-round-dot-setting-property-interface-example"]], "line_dash_dot_setting property interface example": [[152, "line-dash-dot-setting-property-interface-example"], [166, "line-dash-dot-setting-property-interface-example"], [177, "line-dash-dot-setting-property-interface-example"], [178, "line-dash-dot-setting-property-interface-example"], [60, "line-dash-dot-setting-property-interface-example"], [97, "line-dash-dot-setting-property-interface-example"], [182, "line-dash-dot-setting-property-interface-example"], [229, "line-dash-dot-setting-property-interface-example"]], "rotation_around_center property interface example": [[152, "rotation-around-center-property-interface-example"], [166, "rotation-around-center-property-interface-example"], [177, "rotation-around-center-property-interface-example"], [178, "rotation-around-center-property-interface-example"], [60, "rotation-around-center-property-interface-example"], [97, "rotation-around-center-property-interface-example"], [182, "rotation-around-center-property-interface-example"], [206, "rotation-around-center-property-interface-example"], [229, "rotation-around-center-property-interface-example"]], "set_rotation_around_point and get_rotation_around_point methods interface example": [[152, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [166, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [177, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [178, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [60, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [97, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [182, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [206, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [229, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"]], "scale_x_from_center property interface example": [[152, "scale-x-from-center-property-interface-example"], [166, "scale-x-from-center-property-interface-example"], [177, "scale-x-from-center-property-interface-example"], [178, "scale-x-from-center-property-interface-example"], [60, "scale-x-from-center-property-interface-example"], [97, "scale-x-from-center-property-interface-example"], [182, "scale-x-from-center-property-interface-example"], [206, "scale-x-from-center-property-interface-example"], [229, "scale-x-from-center-property-interface-example"]], "scale_y_from_center property interface example": [[152, "scale-y-from-center-property-interface-example"], [166, "scale-y-from-center-property-interface-example"], [177, "scale-y-from-center-property-interface-example"], [178, "scale-y-from-center-property-interface-example"], [60, "scale-y-from-center-property-interface-example"], [97, "scale-y-from-center-property-interface-example"], [182, "scale-y-from-center-property-interface-example"], [229, "scale-y-from-center-property-interface-example"]], "set_scale_x_from_point and get_scale_x_from_point methods interface example": [[152, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [166, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [177, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [178, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [60, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [97, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [182, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [206, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [229, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"]], "set_scale_y_from_point and get_scale_y_from_point methods interface example": [[152, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"], [166, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"], [177, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"], [178, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"], [60, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"], [97, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"], [182, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"], [229, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"]], "flip_x property interface example": [[152, "flip-x-property-interface-example"], [166, "flip-x-property-interface-example"], [177, "flip-x-property-interface-example"], [178, "flip-x-property-interface-example"], [60, "flip-x-property-interface-example"], [97, "flip-x-property-interface-example"], [182, "flip-x-property-interface-example"], [206, "flip-x-property-interface-example"], [229, "flip-x-property-interface-example"]], "flip_y property interface example": [[152, "flip-y-property-interface-example"], [166, "flip-y-property-interface-example"], [177, "flip-y-property-interface-example"], [178, "flip-y-property-interface-example"], [60, "flip-y-property-interface-example"], [97, "flip-y-property-interface-example"], [182, "flip-y-property-interface-example"], [206, "flip-y-property-interface-example"], [229, "flip-y-property-interface-example"]], "skew_x property interface example": [[152, "skew-x-property-interface-example"], [166, "skew-x-property-interface-example"], [177, "skew-x-property-interface-example"], [178, "skew-x-property-interface-example"], [60, "skew-x-property-interface-example"], [97, "skew-x-property-interface-example"], [182, "skew-x-property-interface-example"], [229, "skew-x-property-interface-example"]], "skew_y property interface example": [[152, "skew-y-property-interface-example"], [166, "skew-y-property-interface-example"], [177, "skew-y-property-interface-example"], [178, "skew-y-property-interface-example"], [60, "skew-y-property-interface-example"], [97, "skew-y-property-interface-example"], [182, "skew-y-property-interface-example"], [229, "skew-y-property-interface-example"]], "Line class": [[152, "line-class"]], "Note of the draw_line or other interfaces": [[152, "note-of-the-draw-line-or-other-interfaces"]], "Line class constructor API": [[152, "line-class-constructor-api"]], "MaterialDesignColors class": [[153, "materialdesigncolors-class"]], "Material icon": [[154, "material-icon"]], "Material icon\u2019s license": [[154, "material-icon-s-license"]], "Each material icon constructor API": [[154, "each-material-icon-constructor-api"]], "Math clamp interface": [[155, "math-clamp-interface"]], "clamp method API": [[155, "clamp-method-api"]], "Math max interface": [[156, "math-max-interface"]], "Math.max API": [[156, "math-max-api"]], "Math min interface": [[157, "math-min-interface"]], "Math.min API": [[157, "math-min-api"]], "Math trunc interface": [[158, "math-trunc-interface"]], "Math.trunc API": [[158, "math-trunc-api"]], "MouseEvent interfaces abstract": [[159, "mouseevent-interfaces-abstract"]], "What apysc can do in its interfaces": [[159, "what-apysc-can-do-in-its-interfaces"]], "Example of the click event": [[159, "example-of-the-click-event"]], "Basic mouse event interfaces": [[160, "basic-mouse-event-interfaces"]], "Basic binding usage": [[160, "basic-binding-usage"]], "Basic unbinding usage": [[160, "basic-unbinding-usage"]], "Unbind all event handlers": [[160, "unbind-all-event-handlers"]], "Handler argument names and types": [[160, "handler-argument-names-and-types"]], "MouseEvent this attribute": [[160, "mouseevent-this-attribute"]], "MouseEvent generic type settings": [[160, "mouseevent-generic-type-settings"]], "MouseEvent stage_x and stage_y attributes": [[160, "mouseevent-stage-x-and-stage-y-attributes"]], "MouseEvent local_x and local_y attributes": [[160, "mouseevent-local-x-and-local-y-attributes"]], "stage_x property API": [[160, "stage-x-property-api"]], "stage_y property API": [[160, "stage-y-property-api"]], "local_x property API": [[160, "local-x-property-api"]], "local_y property API": [[160, "local-y-property-api"]], "mousedown and mouseup interfaces": [[161, "mousedown-and-mouseup-interfaces"]], "Basic usage of the mousedown and mouseup interfaces": [[161, "basic-usage-of-the-mousedown-and-mouseup-interfaces"]], "Unbind interfaces": [[161, "unbind-interfaces"], [162, "unbind-interfaces"], [163, "unbind-interfaces"]], "mousedown API": [[161, "mousedown-api"]], "unbind_mousedown API": [[161, "unbind-mousedown-api"]], "unbind_mousedown_all API": [[161, "unbind-mousedown-all-api"]], "mouseup API": [[161, "mouseup-api"]], "unbind_mouseup API": [[161, "unbind-mouseup-api"]], "unbind_mouseup_all API": [[161, "unbind-mouseup-all-api"]], "mousemove interface": [[162, "mousemove-interface"]], "mousemove API": [[162, "mousemove-api"]], "unbind_mousemove API": [[162, "unbind-mousemove-api"]], "unbind_mousemove_all API": [[162, "unbind-mousemove-all-api"]], "mouseover and mouseout interfaces": [[163, "mouseover-and-mouseout-interfaces"]], "Basic usage of the mouseover and mouseout interfaces": [[163, "basic-usage-of-the-mouseover-and-mouseout-interfaces"]], "mouseover API": [[163, "mouseover-api"]], "unbind_mouseover API": [[163, "unbind-mouseover-api"]], "unbind_mouseover_all API": [[163, "unbind-mouseover-all-api"]], "mouseout API": [[163, "mouseout-api"]], "unbind_mouseout API": [[163, "unbind-mouseout-api"]], "unbind_mouseout_all API": [[163, "unbind-mouseout-all-api"]], "num_children interface": [[165, "num-children-interface"]], "num_children API": [[165, "num-children-api"]], "fill_color property interface example": [[166, "fill-color-property-interface-example"], [177, "fill-color-property-interface-example"], [178, "fill-color-property-interface-example"], [60, "fill-color-property-interface-example"], [97, "fill-color-property-interface-example"], [182, "fill-color-property-interface-example"], [206, "fill-color-property-interface-example"], [207, "fill-color-property-interface-example"], [229, "fill-color-property-interface-example"]], "fill_alpha property interface example": [[166, "fill-alpha-property-interface-example"], [177, "fill-alpha-property-interface-example"], [178, "fill-alpha-property-interface-example"], [60, "fill-alpha-property-interface-example"], [97, "fill-alpha-property-interface-example"], [182, "fill-alpha-property-interface-example"], [206, "fill-alpha-property-interface-example"], [207, "fill-alpha-property-interface-example"], [229, "fill-alpha-property-interface-example"]], "Path class": [[166, "path-class"]], "PathMoveTo class setting": [[166, "pathmoveto-class-setting"]], "PathLineTo class setting": [[166, "pathlineto-class-setting"]], "PathHorizontal class setting": [[166, "pathhorizontal-class-setting"]], "PathVertical class setting": [[166, "pathvertical-class-setting"]], "PathClose class setting": [[166, "pathclose-class-setting"]], "PathBezier2D class setting": [[166, "pathbezier2d-class-setting"]], "PathBezier2DContinual class setting": [[166, "pathbezier2dcontinual-class-setting"]], "PathBezier3D class setting": [[166, "pathbezier3d-class-setting"]], "PathBezier3DContinual class setting": [[166, "pathbezier3dcontinual-class-setting"]], "Path class constructor API": [[166, "path-class-constructor-api"]], "PathBezier2D class": [[167, "pathbezier2d-class"]], "Relative position setting": [[167, "relative-position-setting"], [168, "relative-position-setting"], [169, "relative-position-setting"], [170, "relative-position-setting"], [172, "relative-position-setting"], [173, "relative-position-setting"], [174, "relative-position-setting"], [175, "relative-position-setting"]], "PathBezier2D class constructor API": [[167, "pathbezier2d-class-constructor-api"]], "PathBezier2DContinual class": [[168, "pathbezier2dcontinual-class"]], "PathBezier2DContinual class constructor API": [[168, "pathbezier2dcontinual-class-constructor-api"]], "PathBezier3D class": [[169, "pathbezier3d-class"]], "PathBezier3D class constructor API": [[169, "pathbezier3d-class-constructor-api"]], "PathBezier3DContinual class": [[170, "pathbezier3dcontinual-class"]], "PathBezier3DContinual class constructor API": [[170, "pathbezier3dcontinual-class-constructor-api"]], "PathClose class": [[171, "pathclose-class"]], "PathClose class constructor API": [[171, "pathclose-class-constructor-api"]], "PathHorizontal class": [[172, "pathhorizontal-class"]], "PathHorizontal class constructor API": [[172, "pathhorizontal-class-constructor-api"]], "PathLineTo class": [[173, "pathlineto-class"]], "PathLineTo class constructor API": [[173, "pathlineto-class-constructor-api"]], "PathMoveTo class": [[174, "pathmoveto-class"]], "PathMoveTo class constructor API": [[174, "pathmoveto-class-constructor-api"]], "PathVertical class": [[175, "pathvertical-class"]], "PathVertical class constructor API": [[175, "pathvertical-class-constructor-api"]], "Point2D class": [[176, "point2d-class"]], "What is the Point2D class?": [[176, "what-is-the-point2d-class"]], "X and y getter interfaces": [[176, "x-and-y-getter-interfaces"]], "X and y setter interfaces": [[176, "x-and-y-setter-interfaces"]], "Usage example of the draw_polygon interface": [[176, "usage-example-of-the-draw-polygon-interface"]], "Point2D class constructor API": [[176, "point2d-class-constructor-api"]], "Polygon class": [[177, "polygon-class"]], "Note of the draw_polygon interface": [[177, "note-of-the-draw-polygon-interface"]], "Polygon class constructor API": [[177, "polygon-class-constructor-api"]], "Polyline class": [[178, "polyline-class"]], "Note of the move_to and line_to interfaces": [[178, "note-of-the-move-to-and-line-to-interfaces"]], "Polyline class constructor API": [[178, "polyline-class-constructor-api"]], "Quick start guide": [[179, "quick-start-guide"], [146, "quick-start-guide"]], "Installing": [[179, "installing"]], "Create stage and export HTML": [[179, "create-stage-and-export-html"]], "Add sprite container and vector graphics": [[179, "add-sprite-container-and-vector-graphics"]], "range function": [[180, "range-function"]], "What function is this?": [[180, "what-function-is-this"]], "range function API": [[180, "range-function-api"]], "Recommended type-annotation checker settings": [[181, "recommended-type-annotation-checker-settings"]], "Recommended type-annotation checker libraries": [[181, "recommended-type-annotation-checker-libraries"]], "The ignoring error code of the mypy": [[181, "the-ignoring-error-code-of-the-mypy"]], "Color class red_color property": [[184, "color-class-red-color-property"]], "red_color property API": [[184, "red-color-property-api"]], "remove_children interface": [[185, "remove-children-interface"]], "remove_children API": [[185, "remove-children-api"]], "Return class": [[186, "return-class"]], "What is the Return class?": [[186, "what-is-the-return-class"]], "Return API": [[186, "return-api"]], "save_overall_html interface": [[187, "save-overall-html-interface"]], "Minify the HTML": [[187, "minify-the-html"]], "JavaScript libs directory path setting and skip option": [[187, "javascript-libs-directory-path-setting-and-skip-option"]], "Change the HTML file name by the html_file_name option": [[187, "change-the-html-file-name-by-the-html-file-name-option"]], "Bundle each JavaScript library to the signle HTML file by the embed_js_libs option": [[187, "bundle-each-javascript-library-to-the-signle-html-file-by-the-embed-js-libs-option"]], "Change the stdout setting by the verbose option": [[187, "change-the-stdout-setting-by-the-verbose-option"]], "save_overall_html API": [[187, "save-overall-html-api"]], "Sequential animation setting": [[188, "sequential-animation-setting"]], "Sequential animation interface calling on the same instance": [[188, "sequential-animation-interface-calling-on-the-same-instance"]], "animation_complete handler setting": [[188, "animation-complete-handler-setting"]], "set_debug_mode interface": [[189, "set-debug-mode-interface"]], "set_debug_mode API": [[189, "set-debug-mode-api"]], "String class addition and multiplication operations": [[193, "string-class-addition-and-multiplication-operations"]], "String class apply_max_num_of_decimal_places interface": [[194, "string-class-apply-max-num-of-decimal-places-interface"]], "apply_max_num_of_decimal_places API": [[194, "apply-max-num-of-decimal-places-api"]], "String class comparison operations": [[195, "string-class-comparison-operations"]], "Comparison return value type": [[195, "comparison-return-value-type"]], "Acceptable comparison right-side value types": [[195, "acceptable-comparison-right-side-value-types"]], "Equal comparison": [[195, "equal-comparison"]], "Not equal comparison": [[195, "not-equal-comparison"]], "Less than or greater than comparison": [[195, "less-than-or-greater-than-comparison"]], "String class length property": [[196, "string-class-length-property"]], "Notes of the emoji": [[196, "notes-of-the-emoji"]], "String class lstrip interface": [[198, "string-class-lstrip-interface"]], "lstrip API": [[198, "lstrip-api"]], "String class rstrip interface": [[199, "string-class-rstrip-interface"]], "rstrip API": [[199, "rstrip-api"]], "String class slice method": [[200, "string-class-slice-method"]], "slice method API": [[200, "slice-method-api"]], "String class split interface": [[201, "string-class-split-interface"]], "split API": [[201, "split-api"]], "String class strip interface": [[202, "string-class-strip-interface"]], "strip API": [[202, "strip-api"]], "SvgMask class and its related interfaces": [[205, "svgmask-class-and-its-related-interfaces"]], "Case when you want to synchronize the coordinates of DisplayObject and mask": [[205, "case-when-you-want-to-synchronize-the-coordinates-of-displayobject-and-mask"]], "SvgMask constructor API": [[205, "svgmask-constructor-api"]], "SvgMask add_svg_masking_object method API": [[205, "svgmask-add-svg-masking-object-method-api"]], "svg_mask property API": [[205, "svg-mask-property-api"]], "text_align property": [[208, "text-align-property"]], "Example of CssTextAlign.LEFT": [[208, "example-of-csstextalign-left"]], "Example of CssTextAlign.CENTER": [[208, "example-of-csstextalign-center"]], "Example of CssTextAlign.RIGHT": [[208, "example-of-csstextalign-right"]], "Example of CSSTextAlign.JUSTIFY": [[208, "example-of-csstextalign-justify"]], "text_align property API": [[208, "text-align-property-api"]], "text_align_last property": [[209, "text-align-last-property"]], "Example of CssTextAlignLast.AUTO": [[209, "example-of-csstextalignlast-auto"]], "Example of CssTextAlignLast.LEFT": [[209, "example-of-csstextalignlast-left"]], "Example of CssTextAlignLast.CENTER": [[209, "example-of-csstextalignlast-center"]], "Example of CssTextAlignLast.RIGHT": [[209, "example-of-csstextalignlast-right"]], "Example of CssTextAlignLast.JUSTIFY": [[209, "example-of-csstextalignlast-justify"]], "text_align_last property API": [[209, "text-align-last-property-api"]], "Text line_height property": [[215, "text-line-height-property"]], "line_height property API": [[215, "line-height-property-api"]], "TimeDelta class": [[217, "timedelta-class"], [146, "timedelta-class"]], "days property API": [[217, "days-property-api"], [218, "days-property-api"]], "total_seconds method API": [[217, "total-seconds-method-api"], [219, "total-seconds-method-api"]], "TimeDelta class days interface": [[218, "timedelta-class-days-interface"]], "TimeDelta class total_seconds interface": [[219, "timedelta-class-total-seconds-interface"]], "TimerEvent class": [[223, "timerevent-class"]], "this attribute": [[223, "this-attribute"]], "TimerEvent constructor API": [[223, "timerevent-constructor-api"]], "this attribute API": [[223, "this-attribute-api"]], "to_string interface": [[227, "to-string-interface"]], "to_string method API": [[227, "to-string-method-api"]], "trace interface": [[228, "trace-interface"]], "Note for the print alias": [[228, "note-for-the-print-alias"]], "trace API": [[228, "trace-api"]], "True_ and False_ constants": [[230, "true-and-false-constants"]], "What constants are these?": [[230, "what-constants-are-these"]], "unbind_enter_frame and unbind_enter_frame_all interfaces": [[231, "unbind-enter-frame-and-unbind-enter-frame-all-interfaces"]], "unbind_enter_frame API": [[231, "unbind-enter-frame-api"]], "unbind_enter_frame_all API": [[231, "unbind-enter-frame-all-api"]], "unset_debug_mode interface": [[232, "unset-debug-mode-interface"]], "unset_debug_mode API": [[232, "unset-debug-mode-api"]], "What argument is this?": [[233, "what-argument-is-this"], [222, "what-argument-is-this"], [224, "what-argument-is-this"]], "variable_name_suffix argument setting": [[233, "variable-name-suffix-argument-setting"]], "What apysc can do in its current implementation": [[234, "what-apysc-can-do-in-its-current-implementation"]], "Write with the Python and export HTML or use it on the Jupyter": [[234, "write-with-the-python-and-export-html-or-use-it-on-the-jupyter"]], "Draw the many types of the vector graphics": [[234, "draw-the-many-types-of-the-vector-graphics"]], "Set each mouse event": [[234, "set-each-mouse-event"]], "The timer interface and animation": [[234, "the-timer-interface-and-animation"]], "Animate properties with each animation interface": [[234, "animate-properties-with-each-animation-interface"]], "Why the apysc library doesn\u2019t use the Python built-in data type": [[235, "why-the-apysc-library-doesn-t-use-the-python-built-in-data-type"]], "apysc needs to convert Python to JavaScript and track variables change": [[235, "apysc-needs-to-convert-python-to-javascript-and-track-variables-change"]], "Stage class": [[191, "stage-class"]], "What is the Stage?": [[191, "what-is-the-stage"]], "Create stage": [[191, "create-stage"]], "Stage background color setting": [[191, "stage-background-color-setting"]], "Stage size setting": [[191, "stage-size-setting"]], "Stage element id setting": [[191, "stage-element-id-setting"]], "get_stage function interface": [[191, "get-stage-function-interface"]], "Stage class constructor API": [[191, "stage-class-constructor-api"]], "stage_elem_id property API": [[191, "stage-elem-id-property-api"]], "num_children property API": [[191, "num-children-property-api"]], "get_stage API": [[191, "get-stage-api"]], "get_bounds interface": [[109, "get-bounds-interface"]], "get_bounds method API": [[109, "get-bounds-method-api"], [183, "get-bounds-method-api"]], "RectangleGeom class": [[183, "rectanglegeom-class"]], "Each attribute point": [[183, "each-attribute-point"]], "RectangleGeom constructor API": [[183, "rectanglegeom-constructor-api"]], "RectangleGeom left_x property API": [[183, "rectanglegeom-left-x-property-api"]], "RectangleGeom center_x property API": [[183, "rectanglegeom-center-x-property-api"]], "RectangleGeom right_x property API": [[183, "rectanglegeom-right-x-property-api"]], "RectangleGeom top_y property API": [[183, "rectanglegeom-top-y-property-api"]], "RectangleGeom center_y property API": [[183, "rectanglegeom-center-y-property-api"]], "RectangleGeom bottom_y property API": [[183, "rectanglegeom-bottom-y-property-api"]], "RectangleGeom width property API": [[183, "rectanglegeom-width-property-api"]], "RectangleGeom height property API": [[183, "rectanglegeom-height-property-api"]], "Array class": [[33, "array-class"], [146, "array-class"]], "What is the Array?": [[33, "what-is-the-array"]], "fixed_value_type argument": [[33, "fixed-value-type-argument"]], "Array class constructor API": [[33, "array-class-constructor-api"]], "value property API": [[33, "value-property-api"], [58, "value-property-api"], [147, "value-property-api"], [192, "value-property-api"]], "Array class append and push interfaces": [[34, "array-class-append-and-push-interfaces"]], "append API": [[34, "append-api"]], "push API": [[34, "push-api"]], "Array class extend and concat interfaces": [[37, "array-class-extend-and-concat-interfaces"]], "extend API": [[37, "extend-api"]], "concat API": [[37, "concat-api"]], "Array class index_of interface": [[38, "array-class-index-of-interface"]], "index_of API": [[38, "index-of-api"]], "Array class insert and insert_at interfaces": [[39, "array-class-insert-and-insert-at-interfaces"]], "insert API": [[39, "insert-api"]], "insert_at API": [[39, "insert-at-api"]], "Array class join interface": [[40, "array-class-join-interface"]], "join API": [[40, "join-api"]], "Array class last_value property": [[41, "array-class-last-value-property"]], "last_value property API": [[41, "last-value-property-api"]], "Array class length interface": [[42, "array-class-length-interface"]], "Notes of the len() function": [[42, "notes-of-the-len-function"]], "Array class pop interface": [[43, "array-class-pop-interface"]], "pop API": [[43, "pop-api"]], "Array class remove and remove_at interfaces": [[44, "array-class-remove-and-remove-at-interfaces"]], "remove API": [[44, "remove-api"]], "remove_at API": [[44, "remove-at-api"]], "Array class reverse interface": [[45, "array-class-reverse-interface"]], "reverse API": [[45, "reverse-api"]], "Array class slice interface": [[46, "array-class-slice-interface"]], "slice API": [[46, "slice-api"]], "Array class sort interface": [[47, "array-class-sort-interface"]], "sort API": [[47, "sort-api"]], "Boolean class": [[58, "boolean-class"]], "What is the Boolean class?": [[58, "what-is-the-boolean-class"]], "Note for the Bool class alias": [[58, "note-for-the-bool-class-alias"]], "Boolean comparison": [[58, "boolean-comparison"]], "Reverse a Boolean value": [[58, "reverse-a-boolean-value"]], "Boolean class constructor API": [[58, "boolean-class-constructor-api"]], "not_ property API": [[58, "not-property-api"]], "DisplayObject class get_css and set_css interfaces": [[87, "displayobject-class-get-css-and-set-css-interfaces"]], "get_css API": [[87, "get-css-api"]], "set_css API": [[87, "set-css-api"]], "GraphicsBase fill_color property": [[113, "graphicsbase-fill-color-property"]], "fill_color property API": [[113, "fill-color-property-api"], [127, "fill-color-property-api"], [212, "fill-color-property-api"]], "GraphicsBase line_color interface": [[116, "graphicsbase-line-color-interface"]], "line_color property API": [[116, "line-color-property-api"], [141, "line-color-property-api"]], "Graphics begin_fill interface": [[127, "graphics-begin-fill-interface"]], "Fill color setting": [[127, "fill-color-setting"]], "Fill color alpha (opacity) setting": [[127, "fill-color-alpha-opacity-setting"]], "begin_fill API": [[127, "begin-fill-api"]], "Graphics line_style interface": [[141, "graphics-line-style-interface"]], "Line-color setting": [[141, "line-color-setting"]], "Line thickness setting": [[141, "line-thickness-setting"]], "Line alpha (opacity) setting": [[141, "line-alpha-opacity-setting"]], "Line cap setting": [[141, "line-cap-setting"]], "Line joints setting": [[141, "line-joints-setting"]], "Line dot setting": [[141, "line-dot-setting"]], "Line dash setting": [[141, "line-dash-setting"]], "Line round dot setting": [[141, "line-round-dot-setting"]], "Line dash-dot setting": [[141, "line-dash-dot-setting"]], "line_style API": [[141, "line-style-api"]], "line_cap property API": [[141, "line-cap-property-api"]], "line_joints property API": [[141, "line-joints-property-api"]], "line_dash_dot_setting property API": [[141, "line-dash-dot-setting-property-api"]], "Int and Number classes": [[147, "int-and-number-classes"], [146, "int-and-number-classes"]], "Int class": [[147, "int-class"]], "Number class": [[147, "number-class"]], "Note for the Float class alias": [[147, "note-for-the-float-class-alias"]], "Int and Number classes basic interfaces": [[147, "int-and-number-classes-basic-interfaces"]], "Int class constructor API": [[147, "int-class-constructor-api"]], "Number class constructor API": [[147, "number-class-constructor-api"]], "MultiLineText class": [[164, "multilinetext-class"]], "MultiLineText constructor API": [[164, "multilinetext-constructor-api"]], "String class": [[192, "string-class"], [146, "string-class"]], "What is the String class?": [[192, "what-is-the-string-class"]], "String class interfaces": [[192, "string-class-interfaces"]], "String class constructor API": [[192, "string-class-constructor-api"]], "String class lower method": [[197, "string-class-lower-method"]], "lower method API": [[197, "lower-method-api"]], "String class upper method": [[203, "string-class-upper-method"]], "upper method API": [[203, "upper-method-api"]], "String class zfill method": [[204, "string-class-zfill-method"]], "zfill method API": [[204, "zfill-method-api"]], "Text bold property": [[210, "text-bold-property"]], "bold property API": [[210, "bold-property-api"]], "Text fill_color property": [[212, "text-fill-color-property"]], "Text font_size property": [[213, "text-font-size-property"]], "font_size property API": [[213, "font-size-property-api"]], "Text italic property": [[214, "text-italic-property"]], "italic property API": [[214, "italic-property-api"]], "Text underline property": [[216, "text-underline-property"]], "underline property API": [[216, "underline-property-api"]], "Text fill_alpha property": [[211, "text-fill-alpha-property"]], "Circle class": [[60, "circle-class"]], "Note of the draw_circle interface": [[60, "note-of-the-draw-circle-interface"]], "radius property interface example": [[60, "radius-property-interface-example"]], "Circle class constructor API": [[60, "circle-class-constructor-api"]], "Ellipse class": [[97, "ellipse-class"]], "Note of the draw_ellipse interface": [[97, "note-of-the-draw-ellipse-interface"]], "width property interface example": [[97, "width-property-interface-example"], [182, "width-property-interface-example"]], "height property interface example": [[97, "height-property-interface-example"], [182, "height-property-interface-example"]], "Ellipse class constructor API": [[97, "ellipse-class-constructor-api"]], "apysc documentation": [[146, "apysc-documentation"]], "Project links": [[146, "project-links"]], "Container classes": [[146, "container-classes"]], "Exporting": [[146, "exporting"]], "Child-related interfaces": [[146, "child-related-interfaces"]], "apysc basic data classes": [[146, "apysc-basic-data-classes"]], "Boolean class and constants": [[146, "boolean-class-and-constants"]], "Color class and constants": [[146, "color-class-and-constants"]], "DisplayObject and GraphicsBase classes": [[146, "displayobject-and-graphicsbase-classes"]], "Each graphic class": [[146, "each-graphic-class"]], "Text": [[146, "text"]], "SVG text": [[146, "svg-text"]], "Geometry-related classes": [[146, "geometry-related-classes"]], "Mask": [[146, "mask"]], "Common event interfaces": [[146, "common-event-interfaces"]], "MouseEvent class and mouse event binding": [[146, "mouseevent-class-and-mouse-event-binding"]], "Branch instruction": [[146, "branch-instruction"]], "Loop": [[146, "loop"]], "Timer and enter-frame": [[146, "timer-and-enter-frame"]], "Animation": [[146, "animation"]], "Mathematics": [[146, "mathematics"]], "Other manipulation interfaces": [[146, "other-manipulation-interfaces"]], "Debugging": [[146, "debugging"]], "Testing": [[146, "testing"]], "Material design": [[146, "material-design"]], "Rectangle class": [[182, "rectangle-class"]], "Note of the draw_rect interface": [[182, "note-of-the-draw-rect-interface"]], "ellipse_width property interface example": [[182, "ellipse-width-property-interface-example"]], "ellipse_height property interface example": [[182, "ellipse-height-property-interface-example"]], "Rectangle class constructor API": [[182, "rectangle-class-constructor-api"]], "Sprite class": [[190, "sprite-class"]], "What is the Sprite?": [[190, "what-is-the-sprite"]], "Note for the automated addition": [[190, "note-for-the-automated-addition"]], "graphics attribute interfaces": [[190, "graphics-attribute-interfaces"]], "Move DisplayObject instances simultaneously": [[190, "move-displayobject-instances-simultaneously"]], "Sprite class constructor API": [[190, "sprite-class-constructor-api"]], "SvgText class": [[206, "svgtext-class"]], "Note on the baseline of a text\u2019s y-coordinate": [[206, "note-on-the-baseline-of-a-text-s-y-coordinate"]], "text property interface example": [[206, "text-property-interface-example"], [207, "text-property-interface-example"]], "font_size property interface example": [[206, "font-size-property-interface-example"], [207, "font-size-property-interface-example"]], "font_family property interface example": [[206, "font-family-property-interface-example"], [207, "font-family-property-interface-example"]], "leading property interface example": [[206, "leading-property-interface-example"]], "align property interface example": [[206, "align-property-interface-example"]], "bold property interface example": [[206, "bold-property-interface-example"], [207, "bold-property-interface-example"]], "italic property interface example": [[206, "italic-property-interface-example"], [207, "italic-property-interface-example"]], "Scale-related interfaces note": [[206, "scale-related-interfaces-note"]], "SvgText constructor API": [[206, "svgtext-constructor-api"]], "SvgTextSpan class": [[207, "svgtextspan-class"]], "Notes of the line breaking": [[207, "notes-of-the-line-breaking"]], "delta_x property interface example": [[207, "delta-x-property-interface-example"]], "delta_y property interface example": [[207, "delta-y-property-interface-example"]], "SvgTextSpan constructor API": [[207, "svgtextspan-constructor-api"]], "SvgText create_with_svg_text_spans class method API": [[207, "svgtext-create-with-svg-text-spans-class-method-api"]], "Timer class": [[220, "timer-class"]], "What is the Timer?": [[220, "what-is-the-timer"]], "Timer constructor API": [[220, "timer-constructor-api"], [222, "timer-constructor-api"], [224, "timer-constructor-api"]], "Timer class timer_complete interface": [[221, "timer-class-timer-complete-interface"]], "timer_complete API": [[221, "timer-complete-api"]], "Timer class delay setting": [[222, "timer-class-delay-setting"]], "Set the FPS enum value to the delay argument": [[222, "set-the-fps-enum-value-to-the-delay-argument"]], "delay property API": [[222, "delay-property-api"]], "Timer class repeat_count setting": [[224, "timer-class-repeat-count-setting"]], "repeat_count property API": [[224, "repeat-count-property-api"]], "Timer class reset interface": [[225, "timer-class-reset-interface"]], "reset API": [[225, "reset-api"]], "Timer class start and stop interfaces": [[226, "timer-class-start-and-stop-interfaces"]], "stop API": [[226, "stop-api"]], "Triangle class": [[229, "triangle-class"]], "Note of the draw_triangle interface": [[229, "note-of-the-draw-triangle-interface"]], "x1 property interface example": [[229, "x1-property-interface-example"]], "y1 property interface example": [[229, "y1-property-interface-example"]], "x2 property interface example": [[229, "x2-property-interface-example"]], "y2 property interface example": [[229, "y2-property-interface-example"]], "x3 property interface example": [[229, "x3-property-interface-example"]], "y3 property interface example": [[229, "y3-property-interface-example"]], "Triangle class constructor API": [[229, "triangle-class-constructor-api"]], "x1 property API": [[229, "x1-property-api"]], "y1 property API": [[229, "y1-property-api"]], "x2 property API": [[229, "x2-property-api"]], "y2 property API": [[229, "y2-property-api"]], "x3 property API": [[229, "x3-property-api"]], "y3 property API": [[229, "y3-property-api"]]}, "indexentries": {}}) \ No newline at end of file +Search.setIndex({"docnames": ["about_handler_options_type", "add_child_and_remove_child", "add_debug_info_setting", "animation_base_start", "animation_base_target", "animation_complete", "animation_delay", "animation_duration", "animation_event", "animation_fill_alpha", "animation_fill_color", "animation_finish", "animation_interfaces_abstract", "animation_line_alpha", "animation_line_color", "animation_line_thickness", "animation_method_chaining", "animation_move", "animation_parallel", "animation_pause_and_play", "animation_radius", "animation_reset", "animation_return_value", "animation_reverse", "animation_rotation_around_center", "animation_rotation_around_point", "animation_scale_x_and_y_from_center", "animation_scale_x_and_y_from_point", "animation_time", "animation_width_and_height", "animation_x", "animation_y", "append_js_expression", "array", "array_append_and_push", "array_clear", "array_comparison", "array_extend_and_concat", "array_index_of", "array_insert_and_insert_at", "array_join", "array_last_value", "array_length", "array_pop", "array_remove_and_remove_at", "array_reverse", "array_slice", "array_sort", "assert_arrays_equal_and_arrays_not_equal", "assert_defined_and_undefined", "assert_dicts_equal_and_dicts_not_equal", "assert_equal_and_not_equal", "assert_greater_and_greater_equal", "assert_less_and_less_equal", "assert_true_and_false", "assertion_basic_behavior", "bind_and_trigger_custom_event", "blue_color", "boolean", "branch_instruction_variables_reverting_setting", "circle", "click", "color", "color_from_rgb", "colorless", "colors", "contains", "continue", "datetime", "datetime_day", "datetime_hour", "datetime_millisecond", "datetime_minute", "datetime_month", "datetime_now", "datetime_second", "datetime_set_month_end", "datetime_weekday_js_and_weekday_py", "datetime_year", "dblclick", "delete", "dictionary", "dictionary_generic", "dictionary_get", "dictionary_length", "display_object", "display_object_and_graphics_base_prop_abstract", "display_object_get_and_set_css", "display_object_mouse_event", "display_object_parent", "display_object_visible", "display_object_x_and_y", "display_on_colaboratory", "display_on_jupyter", "draw_interfaces_abstract", "easing_enum", "elif", "ellipse", "else", "enter_frame", "event_prevent_default_and_stop_propagation", "for_array_indices", "for_array_indices_and_values", "for_array_values", "for_dict_keys", "for_dict_keys_and_values", "for_dict_values", "fps", "fundamental_data_classes_value_interface", "get_bounds", "get_child_at", "graphics", "graphics_base_fill_alpha", "graphics_base_fill_color", "graphics_base_flip_interfaces", "graphics_base_line_alpha", "graphics_base_line_color", "graphics_base_line_dash_dot_setting", "graphics_base_line_dash_setting", "graphics_base_line_dot_setting", "graphics_base_line_round_dot_setting", "graphics_base_line_thickness", "graphics_base_rotation_around_center", "graphics_base_rotation_around_point", "graphics_base_scale_from_center", "graphics_base_scale_from_point", "graphics_base_skew", "graphics_begin_fill", "graphics_clear", "graphics_draw_circle", "graphics_draw_dash_dotted_line", "graphics_draw_dashed_line", "graphics_draw_dotted_line", "graphics_draw_ellipse", "graphics_draw_line", "graphics_draw_path", "graphics_draw_polygon", "graphics_draw_rect", "graphics_draw_round_dotted_line", "graphics_draw_round_rect", "graphics_draw_triangle", "graphics_line_style", "graphics_move_to_and_line_to", "green_color", "if", "import_conventions", "index", "int_and_number", "int_and_number_arithmetic_operations", "int_and_number_comparison_operations", "int_and_number_to_fixed", "int_and_number_to_hex", "line", "material_design_colors", "material_icon", "math_clamp", "math_max", "math_min", "math_trunc", "mouse_event_abstract", "mouse_event_basic", "mousedown_and_mouseup", "mousemove", "mouseover_and_mouseout", "multi_line_text", "num_children", "path", "path_bezier_2d", "path_bezier_2d_continual", "path_bezier_3d", "path_bezier_3d_continual", "path_close", "path_horizontal", "path_line_to", "path_move_to", "path_vertical", "point2d", "polygon", "polyline", "quick_start", "range", "recommended_type_checker_settings", "rectangle", "rectangle_geom", "red_color", "remove_children", "return", "save_overall_html", "sequential_animation", "set_debug_mode", "sprite", "stage", "string", "string_addition_and_multiplication", "string_apply_max_num_of_decimal_places", "string_comparison_operations", "string_length", "string_lower", "string_lstrip", "string_rstrip", "string_slice", "string_split", "string_strip", "string_upper", "string_zfill", "svg_mask", "svg_text", "svg_text_span", "text_align", "text_align_last", "text_bold", "text_fill_alpha", "text_fill_color", "text_font_size", "text_italic", "text_line_height", "text_underline", "timedelta", "timedelta_days", "timedelta_total_seconds", "timer", "timer_complete", "timer_delay", "timer_event", "timer_repeat_count", "timer_reset", "timer_start_and_stop", "to_string", "trace", "triangle", "true_and_false", "unbind_enter_frame_and_unbind_enter_frame_all", "unset_debug_mode", "variable_name_suffix", "what_apysc_can_do", "why_apysc_doesnt_use_python_builtin_data_type"], "filenames": ["about_handler_options_type.md", "add_child_and_remove_child.md", "add_debug_info_setting.md", "animation_base_start.md", "animation_base_target.md", "animation_complete.md", "animation_delay.md", "animation_duration.md", "animation_event.md", "animation_fill_alpha.md", "animation_fill_color.md", "animation_finish.md", "animation_interfaces_abstract.md", "animation_line_alpha.md", "animation_line_color.md", "animation_line_thickness.md", "animation_method_chaining.md", "animation_move.md", "animation_parallel.md", "animation_pause_and_play.md", "animation_radius.md", "animation_reset.md", "animation_return_value.md", "animation_reverse.md", "animation_rotation_around_center.md", "animation_rotation_around_point.md", "animation_scale_x_and_y_from_center.md", "animation_scale_x_and_y_from_point.md", "animation_time.md", "animation_width_and_height.md", "animation_x.md", "animation_y.md", "append_js_expression.md", "array.md", "array_append_and_push.md", "array_clear.md", "array_comparison.md", "array_extend_and_concat.md", "array_index_of.md", "array_insert_and_insert_at.md", "array_join.md", "array_last_value.md", "array_length.md", "array_pop.md", "array_remove_and_remove_at.md", "array_reverse.md", "array_slice.md", "array_sort.md", "assert_arrays_equal_and_arrays_not_equal.md", "assert_defined_and_undefined.md", "assert_dicts_equal_and_dicts_not_equal.md", "assert_equal_and_not_equal.md", "assert_greater_and_greater_equal.md", "assert_less_and_less_equal.md", "assert_true_and_false.md", "assertion_basic_behavior.md", "bind_and_trigger_custom_event.md", "blue_color.md", "boolean.md", "branch_instruction_variables_reverting_setting.md", "circle.md", "click.md", "color.md", "color_from_rgb.md", "colorless.md", "colors.md", "contains.md", "continue.md", "datetime.md", "datetime_day.md", "datetime_hour.md", "datetime_millisecond.md", "datetime_minute.md", "datetime_month.md", "datetime_now.md", "datetime_second.md", "datetime_set_month_end.md", "datetime_weekday_js_and_weekday_py.md", "datetime_year.md", "dblclick.md", "delete.md", "dictionary.md", "dictionary_generic.md", "dictionary_get.md", "dictionary_length.md", "display_object.md", "display_object_and_graphics_base_prop_abstract.md", "display_object_get_and_set_css.md", "display_object_mouse_event.md", "display_object_parent.md", "display_object_visible.md", "display_object_x_and_y.md", "display_on_colaboratory.md", "display_on_jupyter.md", "draw_interfaces_abstract.md", "easing_enum.md", "elif.md", "ellipse.md", "else.md", "enter_frame.md", "event_prevent_default_and_stop_propagation.md", "for_array_indices.md", "for_array_indices_and_values.md", "for_array_values.md", "for_dict_keys.md", "for_dict_keys_and_values.md", "for_dict_values.md", "fps.md", "fundamental_data_classes_value_interface.md", "get_bounds.md", "get_child_at.md", "graphics.md", "graphics_base_fill_alpha.md", "graphics_base_fill_color.md", "graphics_base_flip_interfaces.md", "graphics_base_line_alpha.md", "graphics_base_line_color.md", "graphics_base_line_dash_dot_setting.md", "graphics_base_line_dash_setting.md", "graphics_base_line_dot_setting.md", "graphics_base_line_round_dot_setting.md", "graphics_base_line_thickness.md", "graphics_base_rotation_around_center.md", "graphics_base_rotation_around_point.md", "graphics_base_scale_from_center.md", "graphics_base_scale_from_point.md", "graphics_base_skew.md", "graphics_begin_fill.md", "graphics_clear.md", "graphics_draw_circle.md", "graphics_draw_dash_dotted_line.md", "graphics_draw_dashed_line.md", "graphics_draw_dotted_line.md", "graphics_draw_ellipse.md", "graphics_draw_line.md", "graphics_draw_path.md", "graphics_draw_polygon.md", "graphics_draw_rect.md", "graphics_draw_round_dotted_line.md", "graphics_draw_round_rect.md", "graphics_draw_triangle.md", "graphics_line_style.md", "graphics_move_to_and_line_to.md", "green_color.md", "if.md", "import_conventions.md", "index.md", "int_and_number.md", "int_and_number_arithmetic_operations.md", "int_and_number_comparison_operations.md", "int_and_number_to_fixed.md", "int_and_number_to_hex.md", "line.md", "material_design_colors.md", "material_icon.md", "math_clamp.md", "math_max.md", "math_min.md", "math_trunc.md", "mouse_event_abstract.md", "mouse_event_basic.md", "mousedown_and_mouseup.md", "mousemove.md", "mouseover_and_mouseout.md", "multi_line_text.md", "num_children.md", "path.md", "path_bezier_2d.md", "path_bezier_2d_continual.md", "path_bezier_3d.md", "path_bezier_3d_continual.md", "path_close.md", "path_horizontal.md", "path_line_to.md", "path_move_to.md", "path_vertical.md", "point2d.md", "polygon.md", "polyline.md", "quick_start.md", "range.md", "recommended_type_checker_settings.md", "rectangle.md", "rectangle_geom.md", "red_color.md", "remove_children.md", "return.md", "save_overall_html.md", "sequential_animation.md", "set_debug_mode.md", "sprite.md", "stage.md", "string.md", "string_addition_and_multiplication.md", "string_apply_max_num_of_decimal_places.md", "string_comparison_operations.md", "string_length.md", "string_lower.md", "string_lstrip.md", "string_rstrip.md", "string_slice.md", "string_split.md", "string_strip.md", "string_upper.md", "string_zfill.md", "svg_mask.md", "svg_text.md", "svg_text_span.md", "text_align.md", "text_align_last.md", "text_bold.md", "text_fill_alpha.md", "text_fill_color.md", "text_font_size.md", "text_italic.md", "text_line_height.md", "text_underline.md", "timedelta.md", "timedelta_days.md", "timedelta_total_seconds.md", "timer.md", "timer_complete.md", "timer_delay.md", "timer_event.md", "timer_repeat_count.md", "timer_reset.md", "timer_start_and_stop.md", "to_string.md", "trace.md", "triangle.md", "true_and_false.md", "unbind_enter_frame_and_unbind_enter_frame_all.md", "unset_debug_mode.md", "variable_name_suffix.md", "what_apysc_can_do.md", "why_apysc_doesnt_use_python_builtin_data_type.md"], "titles": ["About the handler options\u2019 type", "add_child and remove_child interfaces", "add_debug_info_setting decorator interface", "AnimationBase class start interface", "AnimationBase class target property interface", "AnimationBase class animation_complete interface", "Animation interfaces delay setting", "Animation interfaces duration setting", "AnimationEvent class", "animation_fill_alpha interface", "animation_fill_color interface", "animation_finish interface", "Animation interfaces abstract", "animation_line_alpha interface", "animation_line_color interface", "animation_line_thickness interface", "AnimationBase class interfaces method chaining", "animation_move interface", "animation_parallel interface", "animation_pause and animation_play interfaces", "animation_radius interface", "animation_reset interface", "Each animation interface return value", "animation_reverse interface", "animation_rotation_around_center interface", "animation_rotation_around_point interface", "animation_scale_x_from_center and animation_scale_y_from_center interfaces", "animation_scale_x_from_point and animation_scale_y_from_point interfaces", "animation_time interface", "animation_width and animation_height interfaces", "animation_x interface", "animation_y interface", "append_js_expression interface", "Array class", "Array class append and push interfaces", "Array class clear interface", "Array class comparison interfaces", "Array class extend and concat interfaces", "Array class index_of interface", "Array class insert and insert_at interfaces", "Array class join interface", "Array class last_value property", "Array class length interface", "Array class pop interface", "Array class remove and remove_at interfaces", "Array class reverse interface", "Array class slice interface", "Array class sort interface", "assert_arrays_equal and assert_arrays_not_equal interfaces", "assert_defined and assert_undefined interfaces", "assert_dicts_equal and assert_dicts_not_equal interfaces", "assert_equal and assert_not_equal interfaces", "assert_greater and assert_greater_equal interfaces", "assert_less and assert_less_equal interfaces", "assert_true and assert_false interfaces", "JavaScript assertion interface basic behaviors", "Bind and trigger the custom event", "Color class blue_color property", "Boolean class", "Each branch instruction class\u2019s scope variable reverting setting", "Circle class", "click interface", "Color class", "Color class from_rgb class method", "COLORLESS constant", "Colors class", "contains interface", "Continue class", "DateTime class", "DateTime class day property", "DateTime class hour property", "DateTime class millisecond property", "DateTime class minute property", "DateTime class month property", "DateTime class now interface", "DateTime class second property", "DateTime class set_month_end interface", "DateTime class weekday_js and weekday_py properties", "DateTime class year property", "dblclick interface", "delete interface", "Dictionary class", "Dictionary class generic type settings", "Dictionary get interface", "Dictionary length interface", "DisplayObject class", "DisplayObject and GraphicsBase classes base properties abstract", "DisplayObject class get_css and set_css interfaces", "DisplayObject class mouse event binding interfaces", "DisplayObject class parent interfaces", "DisplayObject class visible interface", "DisplayObject x and y interfaces", "display_on_colaboratory interface", "display_on_jupyter interface", "Draw interfaces abstract", "Easing enum", "Elif class", "Ellipse class", "Else class", "enter_frame interface", "Event class prevent_default and stop_propagation interfaces", "ForArrayIndices class", "ForArrayIndicesAndValues class", "ForArrayValues class", "ForDictKeys class", "ForDictKeysAndValues class", "ForDictValues class", "FPS enum", "apysc fundamental data classes value interface", "get_bounds interface", "get_child_at interface", "Graphics class", "GraphicsBase fill_alpha interface", "GraphicsBase fill_color property", "GraphicsBase flip_x and flip_y interfaces", "GraphicsBase line_alpha interface", "GraphicsBase line_color interface", "GraphicsBase line_dash_dot_setting interface", "GraphicsBase line_dash_setting interface", "GraphicsBase line_dot_setting interface", "GraphicsBase line_round_dot_setting interface", "GraphicsBase line_thickness interface", "GraphicsBase rotation_around_center interface", "GraphicsBase rotation_around_point interfaces", "GraphicsBase scale_x_from_center and scale_y_from_center interfaces", "GraphicsBase get_scale_from_point and set_scale_from_point interfaces", "GraphicsBase skew_x and skew_y interfaces", "Graphics begin_fill interface", "Graphics clear interface", "Graphics draw_circle interface", "Graphics draw_dash_dotted_line interface", "Graphics draw_dashed_line interface", "Graphics draw_dotted_line interface", "Graphics draw_ellipse interface", "Graphics draw_line interface", "Graphics draw_path interface", "Graphics draw_polygon interface", "Graphics draw_rect interface", "Graphics draw_round_dotted_line interface", "Graphics draw_round_rect interface", "Graphics draw_triangle interface", "Graphics line_style interface", "Graphics move_to and line_to interfaces", "Color class green_color property", "If class", "import conventions", "apysc documentation", "Int and Number classes", "Int and Number basic arithmetic operations", "Int and Number basic comparison operations", "Int and Number classes to_fixed interface", "Int and Number classes to_hex method", "Line class", "MaterialDesignColors class", "Material icon", "Math clamp interface", "Math max interface", "Math min interface", "Math trunc interface", "MouseEvent interfaces abstract", "Basic mouse event interfaces", "mousedown and mouseup interfaces", "mousemove interface", "mouseover and mouseout interfaces", "MultiLineText class", "num_children interface", "Path class", "PathBezier2D class", "PathBezier2DContinual class", "PathBezier3D class", "PathBezier3DContinual class", "PathClose class", "PathHorizontal class", "PathLineTo class", "PathMoveTo class", "PathVertical class", "Point2D class", "Polygon class", "Polyline class", "Quick start guide", "range function", "Recommended type-annotation checker settings", "Rectangle class", "RectangleGeom class", "Color class red_color property", "remove_children interface", "Return class", "save_overall_html interface", "Sequential animation setting", "set_debug_mode interface", "Sprite class", "Stage class", "String class", "String class addition and multiplication operations", "String class apply_max_num_of_decimal_places interface", "String class comparison operations", "String class length property", "String class lower method", "String class lstrip interface", "String class rstrip interface", "String class slice method", "String class split interface", "String class strip interface", "String class upper method", "String class zfill method", "SvgMask class and its related interfaces", "SvgText class", "SvgTextSpan class", "text_align property", "text_align_last property", "Text bold property", "Text fill_alpha property", "Text fill_color property", "Text font_size property", "Text italic property", "Text line_height property", "Text underline property", "TimeDelta class", "TimeDelta class days interface", "TimeDelta class total_seconds interface", "Timer class", "Timer class timer_complete interface", "Timer class delay setting", "TimerEvent class", "Timer class repeat_count setting", "Timer class reset interface", "Timer class start and stop interfaces", "to_string interface", "trace interface", "Triangle class", "True_ and False_ constants", "unbind_enter_frame and unbind_enter_frame_all interfaces", "unset_debug_mode interface", "variable_name_suffix argument setting", "What apysc can do in its current implementation", "Why the apysc library doesn\u2019t use the Python built-in data type"], "terms": {"thi": [0, 1, 12, 16, 19, 22, 26, 27, 29, 33, 34, 36, 37, 39, 44, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 67, 77, 81, 82, 85, 86, 87, 88, 89, 91, 94, 96, 98, 100, 111, 114, 123, 124, 125, 126, 142, 144, 147, 148, 149, 154, 159, 161, 163, 176, 179, 181, 186, 188, 190, 191, 192, 193, 195, 220, 226, 230, 231, 234, 235], "page": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "explain": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "event": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 60, 66, 74, 79, 80, 81, 85, 86, 87, 90, 91, 95, 97, 99, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 134, 137, 140, 142, 152, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 235], "argument": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 59, 60, 61, 62, 63, 64, 66, 68, 74, 76, 79, 80, 83, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 146, 147, 150, 151, 152, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 185, 186, 187, 189, 190, 191, 194, 197, 198, 199, 200, 201, 202, 203, 204, 206, 207, 220, 221, 223, 225, 226, 227, 228, 229, 230, 231, 232, 234], "": [0, 2, 4, 5, 6, 7, 8, 12, 23, 24, 26, 28, 29, 33, 35, 37, 38, 41, 42, 43, 45, 46, 47, 48, 50, 56, 60, 61, 64, 66, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 82, 83, 84, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 124, 125, 126, 139, 140, 144, 146, 148, 152, 153, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 182, 183, 187, 189, 190, 191, 193, 198, 199, 200, 201, 202, 205, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 228, 229, 230, 231, 233, 235], "each": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 20, 24, 25, 26, 29, 30, 31, 55, 60, 61, 64, 65, 68, 79, 85, 86, 87, 88, 91, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 114, 122, 123, 124, 125, 126, 127, 130, 131, 134, 137, 138, 140, 141, 142, 144, 149, 152, 153, 155, 159, 160, 161, 162, 163, 164, 166, 176, 177, 178, 179, 180, 182, 186, 188, 189, 190, 192, 195, 205, 206, 207, 217, 220, 222, 223, 224, 226, 227, 229, 233, 235], "can": [0, 2, 3, 4, 5, 8, 9, 10, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 36, 42, 48, 50, 55, 58, 60, 61, 64, 67, 68, 79, 80, 81, 82, 84, 85, 88, 91, 92, 93, 95, 96, 97, 98, 99, 108, 111, 114, 122, 127, 129, 134, 137, 139, 140, 141, 142, 146, 147, 148, 149, 152, 154, 160, 161, 162, 163, 165, 168, 170, 176, 177, 178, 179, 182, 186, 187, 188, 189, 190, 191, 192, 195, 205, 206, 207, 220, 222, 223, 224, 228, 229, 230, 233], "valu": [0, 2, 9, 10, 11, 13, 14, 15, 17, 18, 20, 24, 25, 26, 28, 29, 30, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 82, 83, 84, 86, 87, 90, 91, 93, 94, 96, 97, 98, 101, 102, 103, 104, 105, 106, 107, 109, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 141, 143, 144, 146, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 160, 164, 165, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 180, 182, 184, 187, 189, 193, 194, 196, 197, 198, 199, 202, 203, 204, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 224, 227, 228, 229, 230, 232, 233, 234, 235], "like": [0, 1, 16, 32, 33, 37, 46, 48, 50, 55, 58, 59, 62, 66, 67, 81, 85, 88, 89, 91, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 110, 111, 127, 131, 132, 133, 134, 138, 141, 144, 145, 148, 149, 160, 165, 189, 191, 195, 222, 228, 230, 234, 235], "follow": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 37, 40, 41, 43, 44, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 64, 66, 67, 68, 74, 77, 79, 80, 81, 82, 85, 86, 87, 88, 90, 91, 94, 95, 96, 98, 100, 101, 102, 103, 104, 105, 106, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 133, 136, 137, 140, 141, 142, 143, 144, 146, 147, 148, 154, 159, 160, 161, 162, 163, 165, 167, 169, 170, 171, 172, 173, 174, 175, 176, 179, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 196, 205, 206, 207, 208, 209, 217, 220, 221, 222, 224, 225, 226, 228, 229, 231, 232, 233, 234], "runnabl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234], "from": [0, 1, 7, 8, 9, 10, 11, 13, 14, 15, 17, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 43, 44, 56, 57, 60, 61, 63, 65, 66, 74, 79, 80, 82, 83, 86, 87, 89, 90, 91, 95, 97, 107, 109, 110, 113, 114, 116, 123, 124, 125, 126, 134, 136, 138, 141, 142, 143, 151, 152, 153, 156, 157, 158, 160, 161, 162, 163, 166, 172, 173, 174, 175, 177, 178, 182, 184, 185, 187, 191, 198, 199, 202, 206, 207, 220, 221, 222, 223, 224, 225, 226, 229, 233, 234], "import": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "dict": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 50, 51, 56, 60, 61, 66, 74, 79, 80, 81, 87, 88, 90, 91, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 144, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "apysc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233], "ap": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "stage": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "def": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 191, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "on_tim": [0, 11, 19, 21, 23, 28, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 152, 166, 177, 178, 182, 186, 206, 220, 221, 222, 223, 224, 225, 226, 229, 234], "e": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 55, 56, 59, 60, 61, 62, 66, 74, 78, 79, 80, 81, 86, 87, 88, 90, 91, 93, 94, 95, 96, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 127, 128, 133, 137, 140, 141, 142, 148, 150, 151, 152, 154, 159, 160, 161, 162, 163, 165, 166, 177, 178, 180, 182, 185, 186, 188, 190, 191, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 232, 233, 234], "timerev": [0, 11, 19, 21, 23, 28, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 186, 206, 220, 221, 222, 224, 225, 226, 229, 234], "str": [0, 32, 33, 40, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 63, 65, 68, 74, 79, 81, 82, 87, 92, 93, 96, 97, 98, 101, 102, 103, 104, 105, 106, 108, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 144, 147, 150, 151, 152, 153, 154, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 187, 190, 191, 192, 193, 194, 195, 198, 199, 200, 202, 205, 206, 207, 221, 229], "none": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 39, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 66, 67, 68, 74, 79, 80, 81, 83, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 127, 128, 133, 137, 140, 141, 142, 144, 147, 152, 154, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 185, 186, 187, 189, 190, 191, 192, 198, 199, 200, 202, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234], "timer": [0, 11, 19, 21, 23, 28, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 152, 166, 177, 178, 182, 186, 206, 223, 229], "call": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 48, 50, 51, 56, 61, 66, 79, 80, 86, 87, 88, 90, 91, 95, 99, 100, 107, 113, 114, 116, 123, 124, 125, 126, 127, 128, 130, 133, 137, 141, 159, 160, 161, 162, 163, 165, 185, 186, 187, 189, 190, 220, 221, 222, 223, 224, 225, 226, 228, 233, 234], "paramet": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 63, 66, 68, 74, 79, 80, 81, 83, 86, 87, 88, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 185, 186, 187, 190, 191, 192, 194, 198, 199, 200, 201, 202, 204, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "instanc": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 42, 54, 56, 60, 61, 63, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 84, 85, 86, 87, 88, 89, 90, 91, 95, 96, 97, 99, 100, 107, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 135, 136, 138, 139, 141, 145, 148, 152, 154, 159, 160, 161, 162, 163, 164, 165, 166, 171, 172, 173, 174, 175, 177, 178, 179, 182, 183, 185, 186, 187, 191, 193, 194, 195, 201, 205, 206, 207, 208, 210, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 233, 234], "trace": [0, 5, 8, 16, 28, 48, 50, 66, 74, 98, 100, 144, 146, 160, 162, 165, 221, 223, 233], "msg": [0, 48, 49, 50, 51, 52, 53, 54], "delai": [0, 3, 9, 10, 11, 12, 13, 14, 15, 17, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 188, 206, 220, 221, 223, 224, 225, 226, 229, 234], "1000": [0, 5, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 60, 86, 87, 95, 97, 114, 152, 166, 177, 178, 182, 188, 206, 222, 225, 229], "hello": [0, 32, 192, 193, 195, 196, 197, 203, 206, 207, 228, 230], "start": [0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 46, 56, 60, 86, 87, 95, 97, 101, 107, 110, 114, 123, 124, 125, 126, 130, 131, 132, 134, 136, 137, 138, 139, 141, 142, 152, 166, 167, 169, 170, 171, 177, 178, 182, 188, 189, 191, 200, 206, 207, 220, 221, 222, 223, 224, 225, 229, 232, 234], "sometim": [0, 4, 16, 33, 58, 60, 62, 63, 68, 74, 81, 82, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 147, 150, 151, 152, 154, 160, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 187, 190, 191, 192, 194, 195, 198, 199, 200, 202, 205, 206, 207, 227, 229, 232, 233], "us": [0, 3, 4, 5, 8, 12, 16, 18, 22, 23, 32, 33, 42, 48, 50, 54, 55, 57, 58, 60, 62, 63, 67, 68, 74, 81, 82, 84, 85, 92, 93, 95, 96, 97, 98, 101, 102, 103, 104, 105, 106, 107, 109, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 160, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 181, 182, 184, 185, 186, 187, 188, 190, 191, 192, 194, 195, 198, 199, 200, 202, 205, 206, 207, 223, 227, 229, 232, 233], "instead": [0, 18, 29, 30, 31, 42, 48, 50, 51, 84, 92, 93, 134, 235], "help": [0, 32, 33, 58, 59, 67, 81, 82, 96, 98, 101, 102, 103, 104, 105, 106, 144, 147, 160, 186, 187, 192, 195, 232], "make": [0, 35, 141, 179], "easi": 0, "read": [0, 33, 58, 67, 81, 96, 98, 101, 102, 103, 104, 105, 106, 144, 147, 186, 192], "code": [0, 1, 2, 3, 4, 12, 16, 22, 55, 65, 82, 86, 93, 95, 96, 98, 110, 127, 133, 136, 141, 148, 153, 160, 165, 179, 186, 187, 190, 193, 196, 220, 233, 234, 235], "check": [0, 8, 49, 54, 66, 82, 160, 191], "actual": [0, 54], "when": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 33, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 61, 66, 79, 81, 82, 88, 90, 91, 93, 95, 96, 98, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 116, 127, 133, 136, 137, 141, 142, 144, 159, 160, 161, 162, 163, 165, 186, 187, 188, 190, 191, 196, 220, 221, 223, 224, 225, 226, 227, 228, 232, 233, 234, 235], "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 46, 47, 50, 55, 56, 58, 59, 60, 61, 64, 67, 74, 79, 80, 82, 85, 86, 88, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 113, 114, 116, 117, 118, 119, 120, 125, 126, 127, 128, 129, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 159, 160, 161, 162, 163, 165, 167, 168, 169, 170, 172, 173, 174, 175, 177, 178, 179, 180, 181, 182, 185, 186, 187, 188, 189, 190, 191, 195, 198, 199, 202, 206, 207, 210, 214, 215, 216, 220, 221, 222, 223, 224, 226, 228, 229, 231, 232, 233, 234, 235], "typing_extens": [0, 1, 11, 12, 19, 21, 23, 26, 27, 28, 56, 58, 66, 86, 87, 90, 95, 107, 114, 123, 124, 125, 126, 160, 220, 221, 222, 223, 224, 225, 226, 234], "class": [0, 1, 2, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 48, 50, 56, 64, 66, 83, 84, 91, 94, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 135, 136, 137, 138, 139, 140, 141, 142, 148, 149, 154, 155, 156, 157, 158, 160, 165, 179, 185, 189, 212, 227, 232, 233, 234], "_msgoption": 0, "note": [0, 1, 3, 4, 8, 9, 10, 11, 13, 14, 15, 17, 19, 20, 21, 24, 25, 26, 28, 32, 33, 34, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 57, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 82, 83, 87, 89, 90, 91, 92, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 150, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 180, 183, 184, 185, 186, 187, 191, 192, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 231], "ar": [0, 16, 18, 33, 36, 41, 55, 58, 59, 64, 82, 93, 95, 96, 122, 129, 133, 137, 139, 140, 141, 145, 148, 149, 155, 159, 160, 162, 167, 168, 169, 170, 171, 172, 173, 174, 175, 181, 193, 195, 206, 207, 208, 209, 229, 235], "python": [0, 33, 34, 36, 42, 46, 48, 50, 52, 53, 58, 59, 67, 77, 81, 82, 84, 96, 98, 101, 102, 103, 104, 105, 106, 108, 144, 146, 147, 148, 149, 176, 179, 186, 189, 192, 193, 195, 196, 228], "3": [0, 6, 7, 18, 23, 33, 34, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 60, 62, 64, 65, 67, 77, 82, 97, 117, 118, 119, 120, 124, 129, 130, 133, 135, 136, 138, 141, 147, 148, 152, 153, 154, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 180, 182, 193, 194, 196, 200, 204, 205, 206, 207, 221, 222, 223, 224, 225, 226, 229, 234], "8": [0, 33, 60, 97, 141, 147, 156, 157, 158, 177, 180], "later": [0, 82, 179], "version": [0, 93, 154, 179, 191], "packag": [0, 22, 55, 93, 145, 154], "avail": [0, 164], "g": [0, 4, 8, 16, 22, 32, 55, 59, 61, 62, 78, 79, 81, 87, 93, 94, 96, 111, 116, 127, 141, 148, 150, 151, 154, 159, 160, 180, 188, 191, 205, 206, 207, 220, 222, 224, 232, 233], "contain": [1, 2, 18, 38, 46, 89, 110, 111, 122, 165, 185, 190, 205, 207], "graphic": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 67, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 100, 107, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 152, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 185, 186, 188, 191, 205, 220, 221, 222, 223, 224, 225, 226, 228, 229], "sprite": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 66, 67, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 185, 186, 188, 189, 191, 205, 206, 220, 221, 222, 223, 224, 225, 226, 228, 232, 234], "method": [1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 37, 38, 39, 40, 43, 44, 45, 46, 47, 56, 61, 62, 66, 68, 76, 79, 83, 86, 87, 89, 95, 99, 100, 110, 111, 123, 125, 127, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 146, 150, 156, 157, 158, 159, 160, 161, 162, 185, 186, 189, 190, 191, 194, 198, 199, 201, 202, 220, 221, 225, 226, 230, 231], "add": [1, 5, 34, 56, 60, 61, 79, 89, 97, 99, 110, 141, 148, 152, 154, 161, 162, 163, 164, 166, 177, 178, 182, 190, 191, 205, 206, 207, 221, 229], "remov": [1, 33, 43, 56, 61, 66, 79, 80, 89, 128, 146, 160, 162, 185, 191, 198, 199, 202, 232], "displayobject": [1, 8, 17, 18, 29, 30, 31, 61, 66, 79, 80, 109, 110, 111, 160, 161, 162, 163, 183, 189, 191], "child": [1, 66, 89, 100, 110, 165, 185, 190, 191, 207], "doe": [1, 18, 23, 38, 46, 83, 89, 93, 100, 124, 125, 136, 174, 187], "displai": [1, 12, 28, 32, 48, 49, 50, 51, 52, 53, 54, 55, 56, 64, 65, 66, 74, 85, 86, 87, 89, 92, 93, 95, 100, 137, 146, 153, 164, 165, 179, 187, 190, 191, 205, 206, 216, 228, 234], "append": [1, 32, 33, 39, 41, 65, 91, 96, 98, 100, 101, 104, 122, 136, 144, 146, 153, 165, 174, 186, 189, 232], "parent": [1, 60, 85, 86, 97, 100, 109, 146, 152, 154, 164, 166, 177, 178, 182, 190, 191, 206, 207, 229], "constructor": [1, 41, 110, 186], "so": [1, 5, 6, 7, 16, 22, 55, 61, 64, 79, 88, 96, 99, 100, 110, 111, 127, 136, 138, 159, 160, 161, 162, 163, 170, 176, 181, 186, 206, 207, 222, 232], "exampl": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 81, 82, 83, 84, 87, 88, 89, 90, 91, 96, 98, 99, 100, 101, 102, 103, 104, 105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 172, 173, 174, 175, 180, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 231, 232, 233, 234], "similarli": [1, 26, 27, 29, 52, 53, 56, 60, 77, 97, 105, 107, 125, 136, 152, 155, 166, 167, 169, 177, 178, 182, 193, 200, 206, 229], "an": [1, 3, 4, 5, 7, 8, 9, 10, 13, 14, 15, 17, 18, 20, 22, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 37, 39, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 56, 58, 67, 68, 70, 74, 80, 81, 82, 83, 84, 86, 88, 89, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 114, 126, 133, 144, 147, 148, 150, 151, 154, 156, 157, 158, 160, 164, 172, 175, 176, 177, 179, 183, 186, 187, 191, 192, 193, 194, 196, 200, 201, 205, 206, 207, 209, 210, 213, 214, 215, 216, 220, 222, 224, 231, 233], "If": [1, 5, 8, 11, 16, 18, 21, 23, 32, 33, 38, 41, 46, 47, 48, 50, 51, 54, 55, 56, 59, 60, 61, 64, 65, 66, 67, 79, 80, 81, 82, 83, 86, 87, 89, 90, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 111, 113, 114, 116, 124, 125, 127, 133, 134, 136, 137, 138, 141, 142, 146, 147, 150, 151, 152, 153, 154, 155, 158, 159, 160, 162, 164, 166, 171, 177, 178, 180, 182, 183, 186, 187, 188, 189, 191, 194, 198, 199, 200, 202, 205, 206, 207, 210, 214, 215, 216, 219, 220, 221, 222, 223, 224, 225, 226, 229, 231, 232, 234], "need": [1, 2, 3, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 32, 56, 82, 92, 93, 127, 134, 136, 145, 172, 175, 187, 190, 205, 206, 207, 232], "adjust": [1, 48, 50, 141, 187, 207], "i": [1, 12, 16, 19, 22, 26, 29, 34, 37, 39, 44, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 77, 82, 87, 88, 89, 91, 100, 114, 123, 124, 125, 126, 142, 146, 147, 148, 154, 160, 161, 163, 179, 193, 226, 230, 231], "necessari": [1, 2, 136, 137, 141, 159, 187], "manual": [1, 190], "set": [1, 3, 5, 8, 9, 10, 11, 12, 13, 14, 15, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 41, 48, 50, 56, 57, 58, 60, 61, 62, 63, 64, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 81, 86, 87, 90, 91, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 111, 112, 113, 114, 115, 116, 121, 122, 123, 125, 128, 129, 130, 131, 132, 133, 135, 136, 137, 138, 139, 140, 142, 143, 144, 146, 147, 150, 151, 152, 154, 155, 159, 161, 162, 163, 164, 171, 176, 177, 178, 179, 182, 183, 184, 189, 190, 192, 194, 198, 199, 200, 202, 205, 206, 207, 208, 209, 210, 214, 215, 216, 219, 220, 221, 229, 231, 232, 235], "other": [1, 8, 37, 49, 67, 68, 82, 85, 96, 99, 111, 123, 127, 129, 133, 136, 138, 141, 147, 159, 187, 190, 191, 195, 205, 221], "For": [1, 4, 6, 7, 12, 54, 59, 68, 76, 80, 82, 86, 88, 90, 93, 94, 107, 111, 123, 125, 127, 136, 137, 140, 141, 142, 147, 148, 150, 155, 159, 160, 166, 167, 168, 169, 170, 172, 173, 174, 175, 183, 188, 190, 192, 194, 196, 207, 209, 221, 222, 224, 227, 229, 233, 235], "click": [1, 11, 21, 32, 56, 66, 74, 79, 80, 88, 90, 91, 100, 111, 113, 116, 117, 118, 119, 120, 128, 133, 137, 140, 142, 146, 160, 162, 165, 185, 186, 190, 220, 221, 224, 226, 228, 231, 234], "handler": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 66, 74, 79, 80, 81, 86, 87, 88, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 146, 152, 159, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234, 235], "rectangl": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 56, 61, 62, 63, 64, 65, 66, 74, 79, 80, 85, 86, 88, 89, 90, 91, 94, 95, 99, 100, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 136, 139, 140, 141, 146, 153, 159, 160, 161, 162, 163, 165, 179, 183, 185, 186, 188, 190, 191, 205, 220, 221, 222, 223, 224, 225, 226, 228, 231, 233, 234], "typeddict": [1, 11, 12, 19, 21, 23, 26, 27, 28, 56, 66, 86, 87, 90, 95, 107, 114, 123, 124, 125, 126, 160, 220, 221, 222, 223, 224, 225, 226, 234], "_rectopt": [1, 11, 19, 21, 23, 28, 56, 66, 90, 107, 126, 220, 221, 222, 223, 224, 225, 226], "on_sprite_click": [1, 66, 100, 165, 190, 220], "mouseev": [1, 11, 21, 32, 56, 61, 66, 74, 79, 80, 88, 90, 91, 100, 111, 113, 116, 117, 118, 119, 120, 128, 133, 137, 140, 142, 161, 162, 163, 165, 185, 186, 190, 220, 221, 224, 226, 228, 231, 234], "option": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 66, 68, 74, 79, 80, 81, 83, 86, 87, 88, 89, 90, 91, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 141, 142, 146, 147, 150, 152, 154, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 172, 173, 174, 175, 177, 178, 181, 182, 185, 186, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234], "dictionari": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 50, 51, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 104, 105, 106, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 140, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234, 235], "background_color": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234], "color": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 60, 61, 64, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 150, 151, 152, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 185, 186, 187, 188, 189, 190, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "333": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234], "stage_width": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "150": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 152, 153, 159, 160, 161, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 186, 187, 189, 190, 191, 205, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 232, 233, 234], "stage_height": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "stage_elem_id": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 94, 95, 97, 99, 100, 101, 103, 104, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "begin_fil": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 66, 67, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 100, 107, 110, 111, 112, 113, 114, 116, 122, 123, 124, 125, 126, 128, 129, 133, 136, 137, 139, 140, 141, 146, 159, 160, 161, 162, 163, 165, 176, 179, 185, 186, 188, 190, 191, 220, 221, 222, 223, 224, 225, 226, 228, 234], "0af": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 62, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 152, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 188, 190, 191, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 233, 234], "draw_rect": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 66, 67, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 100, 107, 110, 111, 112, 113, 115, 116, 121, 122, 123, 124, 125, 126, 127, 128, 139, 141, 146, 159, 160, 161, 162, 163, 165, 179, 185, 186, 188, 190, 191, 220, 221, 222, 223, 224, 225, 226, 228, 234], "x": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 87, 88, 89, 90, 92, 93, 94, 95, 99, 100, 101, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 153, 154, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 183, 185, 186, 188, 190, 191, 205, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 231, 233, 234], "50": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 56, 60, 61, 62, 63, 64, 65, 66, 67, 68, 72, 74, 75, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 148, 152, 153, 155, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 186, 188, 190, 191, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234], "y": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 87, 88, 89, 90, 92, 93, 94, 95, 99, 100, 101, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 153, 154, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 183, 185, 186, 188, 190, 191, 205, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 231, 233, 234], "width": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 99, 100, 105, 106, 107, 109, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 137, 139, 141, 152, 153, 159, 160, 161, 162, 163, 164, 165, 166, 177, 178, 179, 185, 186, 187, 188, 190, 191, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 233, 234], "height": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 99, 100, 105, 106, 107, 109, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 137, 139, 141, 153, 159, 160, 161, 162, 163, 164, 165, 179, 185, 186, 187, 188, 190, 191, 205, 206, 215, 220, 221, 222, 223, 224, 225, 226, 228, 231, 233, 234], "save_overall_html": [1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 146, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "dest_dir_path": [1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "sprite_basic_usage_of_remove_child": 1, "again": [1, 89, 127, 141], "first": [1, 2, 5, 34, 37, 44, 52, 53, 66, 83, 90, 110, 121, 123, 127, 140, 142, 160, 169, 170, 179, 180, 188, 191, 221, 222, 223, 225, 229, 232], "posit": [1, 2, 32, 37, 38, 55, 56, 96, 109, 125, 137, 138, 142, 160, 162, 166, 200, 206, 207, 232], "left": [1, 26, 27, 48, 49, 50, 51, 52, 53, 54, 55, 90, 123, 124, 125, 126, 136, 138, 141, 148, 160, 164, 171, 183, 198, 202, 204, 206, 207, 221], "second": [1, 5, 6, 7, 11, 19, 21, 23, 28, 52, 53, 56, 68, 83, 87, 90, 99, 107, 110, 112, 114, 115, 121, 123, 127, 140, 142, 146, 160, 169, 170, 180, 188, 217, 219, 221, 222, 225, 229, 232], "right": [1, 25, 26, 27, 48, 49, 50, 51, 52, 53, 54, 55, 90, 96, 98, 123, 124, 125, 126, 136, 141, 171, 172, 183, 193, 199, 202, 206, 224], "_spriteandrectopt": 1, "first_sprit": 1, "second_sprit": 1, "250": [1, 12, 26, 27, 56, 62, 63, 66, 67, 90, 92, 93, 94, 95, 101, 105, 106, 107, 109, 111, 112, 115, 117, 118, 119, 120, 121, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 135, 136, 138, 139, 141, 142, 164, 168, 169, 171, 179, 183, 185, 190, 206, 212, 213, 215, 216, 221, 222, 224, 226, 231], "number": [1, 9, 13, 17, 25, 26, 28, 30, 31, 52, 53, 60, 65, 78, 86, 91, 97, 101, 102, 103, 104, 105, 106, 108, 109, 111, 112, 115, 123, 124, 125, 127, 129, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 145, 152, 153, 154, 155, 156, 157, 158, 160, 164, 165, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 190, 191, 194, 196, 204, 205, 206, 207, 211, 215, 217, 218, 219, 220, 222, 224, 227, 228, 229, 233, 234, 235], "0": [1, 9, 10, 12, 13, 14, 15, 17, 18, 20, 24, 25, 26, 27, 29, 30, 31, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 60, 63, 65, 66, 67, 68, 70, 72, 75, 77, 83, 86, 87, 91, 94, 97, 101, 104, 109, 110, 111, 112, 114, 115, 116, 122, 123, 124, 125, 127, 129, 133, 135, 136, 137, 140, 141, 142, 143, 150, 151, 152, 153, 154, 156, 157, 158, 160, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 184, 185, 187, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 211, 215, 217, 219, 220, 222, 224, 227, 229, 232, 234], "sprite_basic_usage_of_add_child": 1, "document": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "build": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "script": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "gener": [1, 3, 5, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 150, 151, 152, 154, 155, 156, 157, 158, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "updat": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232, 235], "section": [1, 3, 4, 5, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "mayb": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "duplic": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "compar": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 149, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "previou": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "signatur": [1, 3, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 63, 66, 67, 68, 74, 79, 81, 83, 87, 89, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 117, 118, 119, 120, 123, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 185, 186, 187, 189, 190, 191, 192, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 217, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "self": [1, 2, 3, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 33, 34, 37, 38, 39, 40, 43, 44, 45, 46, 47, 56, 58, 60, 61, 62, 66, 67, 68, 79, 81, 83, 87, 89, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 117, 118, 119, 120, 123, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 185, 186, 189, 190, 191, 192, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 217, 219, 220, 221, 222, 223, 224, 225, 226, 227, 229, 231, 232], "_displai": [1, 60, 66, 97, 109, 110, 137, 139, 140, 141, 152, 154, 164, 166, 177, 178, 182, 183, 189, 191, 205, 206, 207, 229], "display_object": [1, 66, 109, 110, 183, 189, 191], "summari": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232, 234], "object": [1, 29, 33, 37, 50, 60, 80, 86, 97, 99, 109, 111, 114, 124, 125, 126, 146, 152, 160, 166, 177, 178, 179, 182, 183, 190, 191, 205, 206, 229], "sprite_1": [1, 89, 190, 191], "sprite_2": [1, 89, 190, 191], "alpha": [1, 9, 13, 18, 60, 66, 87, 94, 97, 110, 111, 112, 115, 116, 122, 123, 124, 140, 152, 154, 164, 165, 166, 177, 178, 182, 191, 206, 207, 211, 229], "5": [1, 12, 13, 14, 18, 26, 33, 36, 37, 38, 44, 45, 47, 48, 60, 62, 65, 66, 68, 69, 70, 71, 72, 75, 76, 77, 86, 87, 94, 96, 97, 107, 108, 110, 111, 112, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 130, 131, 132, 134, 135, 138, 139, 140, 141, 142, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 180, 182, 183, 191, 196, 204, 206, 207, 211, 215, 217, 218, 219, 227, 229, 233], "print": [1, 83, 191], "The": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 135, 136, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 235], "debug": [2, 33, 58, 60, 62, 63, 68, 74, 81, 93, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 147, 150, 151, 152, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 187, 189, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 229, 232, 233], "inform": [2, 48, 50, 55, 68, 93, 166, 189, 228, 232], "target": [2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 22, 24, 25, 26, 27, 29, 30, 31, 44, 49, 54, 56, 61, 79, 83, 95, 109, 110, 135, 146, 155, 160, 161, 162, 163, 166, 183, 191, 205, 223, 231], "function": [2, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 32, 48, 49, 50, 51, 52, 53, 54, 56, 59, 61, 79, 80, 85, 88, 92, 93, 95, 99, 146, 159, 160, 161, 163, 179, 186, 187, 189, 220, 222, 223, 224, 228, 230, 232, 234, 235], "A": [2, 5, 33, 36, 56, 58, 60, 61, 62, 63, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 81, 87, 89, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 114, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 147, 148, 150, 151, 152, 154, 158, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 180, 182, 190, 191, 192, 193, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 215, 216, 217, 220, 221, 222, 224, 227, 229, 230], "export": [2, 32, 187, 189, 232, 233, 235], "enabl": [2, 232], "mode": [2, 189, 232], "It": [2, 4, 5, 33, 58, 67, 74, 81, 96, 98, 127, 129, 133, 141, 144, 147, 156, 157, 160, 172, 175, 190, 192, 204, 205, 228, 232, 235], "set_debug_mod": [2, 146, 232], "after": [2, 3, 5, 6, 11, 19, 21, 23, 37, 67, 96, 98, 168, 170, 189, 225], "ani": [2, 18, 32, 34, 38, 39, 44, 48, 49, 50, 51, 54, 56, 61, 79, 80, 82, 83, 88, 89, 95, 96, 98, 100, 101, 102, 103, 104, 105, 106, 128, 144, 162, 174, 180, 185, 187, 190, 191, 198, 199, 202, 219, 220, 228, 231], "specifi": [2, 6, 7, 27, 33, 38, 39, 40, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 59, 60, 61, 64, 66, 79, 80, 81, 82, 83, 87, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 109, 110, 124, 127, 141, 142, 144, 147, 150, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 166, 176, 177, 178, 180, 182, 183, 187, 190, 191, 198, 199, 200, 202, 204, 206, 207, 210, 214, 215, 216, 220, 222, 224, 229, 231, 233], "module_nam": 2, "becom": [2, 4, 8, 33, 36, 38, 41, 47, 48, 50, 56, 61, 62, 74, 80, 81, 89, 90, 95, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 124, 125, 127, 129, 133, 136, 138, 141, 142, 148, 150, 152, 155, 158, 160, 167, 168, 169, 170, 172, 173, 174, 175, 177, 178, 180, 181, 187, 189, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 222, 223, 224, 227, 232, 233, 235], "__name__": 2, "_main": [2, 191], "entri": [2, 191], "point": [2, 24, 25, 26, 60, 97, 114, 122, 123, 125, 136, 142, 147, 150, 151, 152, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 191, 196, 206, 229, 234], "project": [2, 181, 187, 191], "_draw_rectangl": 2, "add_debug_info_setting_basic_usag": 2, "float": [2, 9, 13, 17, 25, 26, 27, 30, 31, 52, 53, 60, 97, 108, 127, 129, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 148, 149, 150, 151, 152, 154, 156, 157, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 194, 206, 207, 220, 222, 224, 229, 235], "draw": [2, 111, 122, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 167, 168, 169, 170, 172, 173, 174, 175, 176, 179, 182, 190, 191, 206, 207, 228], "given": [2, 25, 66, 123, 125], "coordin": [2, 5, 6, 7, 11, 12, 17, 19, 21, 23, 25, 27, 28, 30, 31, 60, 86, 91, 95, 97, 101, 109, 111, 123, 124, 125, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 152, 154, 160, 164, 165, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 188, 190, 207, 229], "_": [2, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 56, 58, 61, 64, 65, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 100, 101, 102, 103, 105, 113, 116, 127, 140, 141, 143, 147, 150, 153, 155, 156, 157, 158, 160, 161, 162, 163, 191, 192, 194, 196, 198, 199, 201, 202, 204, 205, 217, 218, 219, 220, 221, 222, 224, 225, 226, 228, 229], "mysprit": 2, "__init__": [2, 8, 33, 58, 60, 62, 67, 68, 81, 96, 97, 98, 101, 102, 103, 104, 105, 106, 144, 147, 152, 154, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 186, 189, 190, 191, 192, 205, 206, 207, 220, 222, 223, 224, 229, 232], "int": [2, 5, 6, 7, 9, 10, 12, 13, 14, 15, 17, 18, 20, 22, 24, 25, 26, 27, 29, 30, 31, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 63, 65, 68, 69, 70, 71, 72, 73, 75, 77, 78, 80, 81, 82, 83, 84, 86, 95, 96, 97, 98, 101, 102, 103, 104, 105, 106, 108, 110, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 129, 130, 131, 132, 133, 134, 137, 138, 139, 141, 142, 143, 144, 145, 152, 153, 154, 155, 156, 157, 158, 160, 162, 164, 165, 166, 167, 169, 170, 176, 177, 178, 180, 182, 183, 184, 185, 187, 189, 191, 193, 194, 196, 200, 204, 206, 207, 213, 217, 218, 220, 222, 224, 227, 228, 229, 232, 233, 234, 235], "my": 2, "super": 2, "__main__": 2, "html": [2, 32, 65, 92, 93, 122, 146, 164, 189, 191, 232, 235], "1": [2, 9, 11, 12, 13, 15, 17, 19, 21, 23, 26, 27, 28, 33, 34, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 54, 56, 58, 60, 65, 67, 68, 69, 70, 71, 72, 73, 75, 77, 78, 84, 86, 97, 99, 101, 102, 107, 110, 112, 115, 117, 121, 123, 124, 125, 126, 127, 130, 141, 148, 152, 153, 154, 155, 158, 164, 165, 166, 177, 178, 180, 182, 187, 189, 191, 194, 196, 200, 204, 205, 206, 207, 211, 215, 218, 219, 220, 221, 222, 223, 224, 225, 226, 229, 231, 232, 234], "modul": [2, 145, 189, 232], "name": [2, 33, 49, 51, 54, 56, 58, 60, 61, 62, 63, 65, 68, 74, 79, 81, 87, 92, 93, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 147, 150, 151, 152, 154, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 189, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 221, 228, 229, 232, 233, 235], "keyword": [2, 67, 96, 98, 101, 102, 103, 104, 105, 106, 144], "current": [2, 3, 28, 33, 42, 58, 67, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 81, 87, 93, 96, 98, 101, 102, 103, 104, 105, 106, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 125, 126, 127, 141, 142, 144, 146, 147, 165, 166, 172, 173, 174, 175, 187, 191, 192, 201, 223], "rais": [2, 5, 18, 42, 67, 82, 83, 84, 89, 96, 98, 148, 191, 193, 231], "error": [2, 18, 51, 55, 82, 93, 148, 187, 193], "To": [2, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 159, 179], "avoid": [2, 96, 187], "pleas": [2, 28, 32, 42, 55, 60, 66, 68, 84, 86, 88, 93, 94, 96, 97, 100, 146, 147, 152, 159, 160, 165, 166, 177, 178, 179, 182, 188, 190, 192, 206, 207, 228, 229, 234], "disabl": [2, 181, 189, 231], "misc": [2, 181], "recommend": [2, 145, 146, 187, 206], "type": [2, 5, 18, 22, 28, 36, 41, 42, 50, 51, 56, 58, 61, 63, 65, 67, 79, 81, 83, 85, 96, 98, 101, 102, 103, 104, 105, 106, 108, 123, 126, 134, 136, 144, 146, 147, 148, 151, 153, 155, 156, 157, 158, 161, 162, 163, 176, 186, 192, 194, 197, 203, 204, 208, 209, 210, 213, 214, 215, 216, 218, 220, 221, 222, 224, 228], "annot": [2, 22, 82, 146, 160], "checker": [2, 33, 146], "unset_debug_mod": [2, 146, 189], "anim": [3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 95, 99], "return": [3, 4, 5, 8, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 28, 29, 30, 31, 33, 36, 37, 38, 40, 41, 42, 43, 45, 46, 47, 56, 57, 58, 59, 61, 63, 66, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 86, 87, 89, 90, 91, 101, 102, 103, 104, 105, 106, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 130, 131, 132, 134, 135, 137, 138, 140, 141, 142, 143, 146, 147, 148, 149, 150, 151, 155, 156, 157, 158, 159, 160, 161, 162, 163, 165, 176, 180, 183, 184, 191, 192, 193, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 222, 223, 224, 227, 229], "subclass": [3, 4, 8, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 27, 30, 31, 56, 64, 100, 105, 106, 146, 190], "animation_mov": [3, 5, 6, 7, 11, 12, 19, 21, 22, 23, 95, 146], "animation_x": [3, 4, 5, 6, 7, 8, 11, 12, 16, 18, 19, 21, 22, 23, 28, 95, 146, 188], "ha": [3, 4, 6, 7, 21, 22, 23, 26, 27, 42, 51, 55, 56, 61, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 85, 88, 89, 91, 94, 95, 100, 101, 102, 103, 104, 105, 106, 111, 123, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 146, 153, 154, 160, 161, 162, 163, 165, 168, 169, 170, 183, 187, 190, 191, 217, 220, 221, 222, 224, 225, 226, 233], "200": [3, 4, 5, 8, 12, 16, 17, 20, 22, 29, 30, 31, 60, 85, 86, 89, 94, 95, 104, 105, 109, 111, 117, 118, 119, 120, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 141, 142, 152, 160, 162, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 178, 182, 183, 188, 206, 207, 212, 227], "animationx": [3, 4, 5, 6, 7, 8, 18, 22, 30, 95], "100": [3, 4, 5, 8, 9, 11, 12, 16, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 31, 33, 41, 60, 85, 86, 91, 94, 95, 97, 105, 109, 111, 114, 117, 118, 119, 120, 123, 125, 127, 129, 133, 134, 135, 136, 137, 140, 141, 142, 150, 152, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 188, 205, 206, 212, 219, 221, 222, 223, 224, 225, 226, 227, 229, 230, 234], "durat": [3, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 95, 146, 188, 217, 218, 219], "3000": [3, 6, 7, 9, 10, 13, 14, 15, 17, 18, 20, 21, 23, 24, 25, 26, 29, 30, 31], "animation_base_start_basic_usage_1": 3, "also": [3, 4, 55, 58, 60, 68, 69, 70, 71, 72, 73, 75, 78, 80, 81, 82, 87, 93, 97, 100, 113, 123, 124, 125, 127, 130, 131, 132, 134, 136, 138, 139, 141, 145, 148, 149, 150, 152, 154, 164, 165, 166, 169, 177, 178, 180, 182, 187, 193, 198, 199, 202, 206, 207, 209, 212, 228, 229, 233, 234, 235], "chain": [3, 60, 97, 117, 130, 141, 146, 152, 166, 177, 178, 182, 229], "simplic": [3, 16, 134], "animation_base_start_basic_usage_2": 3, "automat": [3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232, 235], "animatonbas": [3, 5], "animationmov": [4, 5, 8, 17, 22, 95], "getter": [4, 42, 57, 68, 69, 70, 71, 72, 73, 75, 77, 78, 89, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 124, 126, 143, 184, 208, 209, 210, 211, 212, 213, 214, 215, 216], "00aaff": [4, 8, 9, 16, 19, 21, 29, 30, 31, 57, 60, 62, 97, 113, 116, 127, 128, 129, 133, 136, 137, 140, 141, 159, 164, 177, 182, 184, 186, 206, 208, 209, 210, 211, 213, 214, 234], "assert": [4, 8, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 58, 59, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 81, 83, 84, 85, 89, 108, 110, 146, 147, 148, 149, 156, 157, 158, 176, 191, 192, 193, 195, 196, 205, 208, 209, 212, 217, 218, 219], "isinst": [4, 8, 33, 81, 84, 85, 89, 108, 110, 149, 193, 195], "its": [4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 32, 42, 56, 62, 64, 65, 69, 70, 71, 72, 73, 74, 75, 78, 95, 122, 146, 147, 153, 167, 168, 169, 170, 171, 172, 173, 174, 175, 183, 189, 198, 199, 202, 207, 227, 233], "animationev": [4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95, 146], "affect": [4, 41, 125], "on_animation_complet": [4, 5, 8, 16], "end": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 46, 56, 59, 76, 95, 96, 98, 101, 102, 103, 104, 105, 106, 130, 131, 132, 134, 136, 138, 141, 144, 146, 152, 160, 171, 177, 187, 189, 199, 200, 202, 232, 234], "animation_complet": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95, 146], "get": [4, 8, 22, 28, 33, 41, 42, 57, 58, 60, 66, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 81, 84, 86, 87, 89, 90, 91, 95, 97, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 141, 143, 146, 147, 151, 152, 156, 157, 160, 165, 166, 177, 178, 182, 183, 184, 191, 192, 196, 197, 200, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 222, 223, 224, 229], "variablenamemixin": [4, 96, 98, 101, 102, 103, 104, 105, 106, 144, 160], "bind": [5, 22, 61, 79, 85, 100, 111, 133, 134, 137, 140, 142, 159, 161, 162, 163, 221], "requir": [5, 18, 25, 32, 33, 34, 35, 37, 38, 40, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 60, 62, 63, 68, 76, 81, 82, 83, 87, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 112, 113, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 127, 135, 140, 141, 144, 150, 151, 152, 155, 156, 157, 158, 160, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 194, 197, 200, 201, 203, 204, 206, 207, 211, 212, 220, 227, 229, 231, 232], "anoth": [5, 205], "reset": [5, 12, 21, 114, 128, 146, 220, 234], "on_animation_complete_1": [5, 6, 7, 9, 10, 12, 13, 14, 15, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95], "on_animation_complete_2": [5, 6, 7, 9, 10, 12, 13, 14, 15, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95], "animation_complete_basic_usag": 5, "onli": [5, 23, 33, 42, 48, 50, 52, 53, 67, 68, 77, 96, 98, 99, 100, 102, 103, 104, 105, 106, 122, 133, 146, 160, 161, 163, 168, 170, 172, 174, 175, 179, 180, 186, 187, 205, 232], "befor": [5, 6, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 33, 58, 67, 81, 92, 93, 96, 98, 101, 102, 103, 104, 105, 106, 127, 137, 141, 144, 147, 186, 187, 192], "except": [5, 42, 67, 83, 84, 96, 98, 114, 125, 131, 132, 138, 148, 190, 231], "complet": [5, 7, 8, 12, 14, 16, 22, 23, 188, 221, 223, 225], "work": [5, 23, 96, 98, 101, 102, 103, 104, 105, 106, 125, 136, 144, 146], "correctli": [5, 23], "callabl": [5, 56, 61, 79, 88, 99, 160, 161, 162, 163, 220, 221, 222, 224, 231], "forwardref": [5, 33, 37, 58, 81, 150, 192, 194, 198, 199, 200, 202, 204, 220, 221, 222, 224], "animation_ev": 5, "_option": [5, 61, 79, 99, 125, 161, 162, 163, 231, 234], "nonetyp": [5, 33, 46, 56, 60, 61, 79, 83, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 109, 141, 144, 152, 154, 161, 162, 163, 164, 166, 177, 178, 182, 183, 191, 198, 199, 200, 202, 206, 207, 220, 221, 222, 224, 229, 231], "union": [5, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 33, 37, 39, 40, 44, 46, 52, 53, 56, 58, 60, 61, 63, 68, 79, 81, 82, 83, 87, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 109, 110, 127, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 152, 154, 156, 157, 158, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 191, 192, 194, 198, 199, 200, 202, 204, 206, 207, 220, 221, 222, 224, 229], "listen": [5, 8, 56, 61, 79, 99, 160, 161, 162, 163, 221, 223], "_handler": [5, 56, 61, 79, 161, 162, 163, 220, 221, 222, 224], "default": [5, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 33, 46, 47, 54, 56, 58, 60, 61, 62, 63, 68, 74, 79, 81, 83, 87, 90, 92, 93, 96, 97, 98, 99, 100, 109, 124, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 141, 142, 144, 147, 151, 152, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 187, 190, 191, 192, 198, 199, 200, 202, 205, 206, 208, 209, 220, 221, 222, 224, 229], "pass": [5, 8, 11, 19, 21, 48, 49, 50, 54, 56, 61, 79, 96, 99, 144, 159, 160, 161, 162, 163, 187, 220, 221, 222, 223, 224, 226], "refer": [5, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 33, 56, 58, 61, 62, 63, 68, 79, 81, 96, 98, 101, 109, 135, 140, 144, 147, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 183, 191, 192, 207, 212, 217, 218, 219, 220, 221, 222, 224], "determin": [6, 7, 99, 107, 129, 130, 131, 136, 137, 138, 139, 160, 165, 167, 169, 187, 204, 222, 224], "time": [6, 7, 12, 23, 28, 56, 68, 74, 99, 189, 191, 195, 206, 207, 215, 217, 221, 222, 224], "2": [6, 11, 26, 27, 33, 34, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 60, 65, 67, 69, 77, 82, 84, 86, 91, 97, 101, 116, 117, 118, 124, 125, 127, 130, 131, 132, 140, 141, 148, 150, 152, 153, 154, 165, 166, 176, 177, 178, 180, 182, 189, 191, 200, 205, 206, 215, 217, 218, 219, 229, 234], "between": [6, 54, 60, 96, 97, 98, 130, 131, 138, 149, 150, 152, 180, 182, 217, 218, 219, 220, 222, 224], "paus": [6, 12, 19], "2000": [6, 11, 18], "eas": [6, 7, 9, 10, 11, 13, 14, 15, 17, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 146, 188], "ease_out_quint": [6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 95, 188], "300": [6, 11, 18, 71, 105, 135, 141, 142, 164, 179, 183, 191, 205, 208, 209, 210, 211, 212, 213, 214, 215, 216, 227], "400": [6, 7, 11, 12, 18, 23, 28, 129, 168, 170, 205, 213], "animation_delay_basic_usag": 6, "millisecond": [7, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 24, 25, 26, 28, 29, 30, 31, 68, 107, 146, 219, 220, 222, 224], "take": [7, 57, 128, 143, 171, 184, 185, 230], "500": [7, 12, 19, 21, 23, 28, 68, 71, 109, 191, 206, 234], "animation_duration_basic_usag": 7, "relat": [8, 33, 64, 68, 141, 190, 208, 209, 210, 211, 212, 213, 214, 215, 216, 227, 234], "interfac": [8, 33, 41, 57, 58, 62, 63, 67, 68, 85, 95, 96, 98, 101, 102, 103, 104, 105, 106, 143, 144, 145, 151, 154, 164, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 180, 183, 184, 186, 196, 197, 200, 203, 204, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 220, 222, 223, 224], "animationbas": [8, 9, 14, 18, 146], "depend": [8, 60, 97, 152, 182, 206], "chang": [8, 18, 79, 88, 90, 91, 99, 111, 113, 116, 124, 125, 129, 136, 137, 139, 141, 142, 160, 161, 163, 167, 168, 169, 170, 172, 173, 174, 175, 186, 189, 190, 191, 205, 206, 207, 233], "benefit": 8, "librari": [8, 33, 58, 67, 81, 82, 92, 93, 96, 98, 101, 102, 103, 104, 105, 106, 144, 145, 146, 147, 154, 160, 179, 186, 192, 234], "mypi": [8, 82, 160], "pylanc": [8, 82, 160, 181], "animation_bas": [8, 18], "_target": 8, "creat": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 27, 29, 30, 31, 60, 63, 74, 85, 96, 97, 111, 123, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 152, 164, 166, 177, 178, 180, 182, 190, 205, 206, 207, 229, 235], "animationfillalpha": 9, "fill": [9, 10, 18, 60, 88, 97, 111, 112, 113, 122, 128, 133, 136, 137, 141, 154, 163, 166, 177, 178, 182, 186, 204, 206, 207, 211, 212, 229, 233], "opac": [9, 12, 13, 60, 94, 97, 111, 112, 115, 152, 164, 166, 177, 178, 182, 206, 207, 211, 229, 233], "exist": [9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 29, 30, 31, 83, 99, 154, 161, 162, 163, 227], "graphicsbas": [9, 10, 13, 14, 15, 20, 24, 25, 26, 27, 94, 205], "circl": [9, 10, 12, 13, 14, 15, 20, 24, 25, 26, 27, 85, 94, 101, 102, 103, 109, 113, 129, 146, 162, 167, 169, 170, 183, 205, 234], "animation_fill_alpha_basic_usag": 9, "_type": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 28, 29, 30, 31, 38, 39, 40, 44, 46, 52, 53, 58, 60, 63, 66, 68, 83, 87, 96, 97, 101, 102, 103, 104, 105, 106, 110, 123, 125, 127, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 156, 157, 158, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 189, 191, 206, 207, 217, 219, 220, 222, 224, 227, 229, 232], "_anim": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "linear": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 95], "final": [9, 10, 13, 14, 15, 20, 24, 25, 26, 29, 142], "draw_circl": [9, 12, 20, 30, 31, 85, 94, 111, 146, 162, 190, 234], "radiu": [9, 20, 30, 31, 85, 94, 101, 102, 103, 109, 113, 129, 133, 162, 167, 169, 170, 183, 205, 234], "animation_i": [9, 12, 146, 188], "1500": [9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31], "sequenti": [9, 10, 12, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 146], "animation_parallel": [9, 10, 13, 14, 15, 17, 20, 24, 25, 26, 29, 30, 31, 146, 188], "enum": [9, 10, 12, 13, 14, 15, 17, 18, 20, 24, 25, 26, 27, 29, 30, 31, 99, 141, 146, 206, 208, 209, 220, 224, 234], "animationfillcolor": 10, "cyan": [10, 14, 79, 111, 113, 116, 122, 127, 129, 133, 134, 141, 167, 169, 170, 190], "magenta": [10, 14, 61, 79, 111, 113, 116, 122, 127, 134, 141, 163, 167, 169, 170], "f0a": [10, 12, 14, 18, 56, 60, 61, 67, 79, 88, 90, 92, 93, 97, 100, 111, 113, 116, 122, 124, 127, 134, 141, 142, 152, 159, 160, 161, 163, 167, 169, 170, 177, 182, 229, 231, 234], "fill_color": [10, 12, 18, 56, 61, 62, 63, 64, 65, 74, 79, 88, 94, 99, 100, 101, 102, 103, 105, 106, 109, 111, 117, 118, 119, 120, 128, 129, 133, 136, 137, 140, 146, 153, 154, 159, 160, 161, 163, 164, 167, 169, 170, 183, 185, 186, 205, 208, 209, 210, 211, 213, 214, 215, 216, 227, 230, 231, 233, 234], "animation_fill_color_basic_usag": 10, "_color": [10, 14, 60, 97, 127, 141, 152, 154, 164, 166, 177, 178, 182, 191, 206, 207, 229], "finish": [11, 12], "all": [11, 19, 21, 23, 56, 79, 82, 96, 98, 101, 102, 103, 104, 105, 106, 123, 128, 144, 145, 154, 161, 162, 163, 185, 191, 231], "run": [11, 19, 23, 99, 191], "last": [11, 41, 43, 136, 164, 209], "attribut": [11, 89, 111, 129, 133, 139, 152, 154, 177, 178, 191, 233], "have": [11, 19, 21, 23, 39, 59, 68, 77, 81, 89, 100, 111, 123, 125, 126, 142, 146, 147, 196, 205, 219], "on_click": [11, 21, 32, 61, 74, 80, 88, 91, 100, 113, 116, 117, 118, 119, 120, 128, 137, 140, 159, 162, 185, 186, 221, 234], "5000": [11, 23], "options_": [11, 21, 56, 221, 224, 226], "repeat_count": [11, 19, 21, 23, 56, 146, 220, 221, 222, 225, 226, 234], "animation_finish_basic_usag": 11, "rectopt": [11, 19, 21, 23, 28, 86, 220, 221, 222, 223, 224, 225, 226], "750": [11, 19, 21, 23], "mani": [12, 160, 181], "ease_in_cub": [12, 95], "ease_in_out_bounc": [12, 95], "control": [12, 167, 168, 169, 170, 191], "plai": 12, "revers": [12, 23, 33, 47, 146], "parallel": [12, 18], "support": [12, 32, 36, 42, 58, 84, 91, 93, 94, 96, 122, 124, 148, 149, 181, 193, 234], "show": [12, 41, 57, 95, 124, 126, 143, 160, 167, 169, 170, 176, 183, 184], "block": [12, 65, 67, 86, 95, 153, 234], "550": [12, 234], "line_styl": [12, 13, 14, 15, 17, 18, 86, 94, 111, 115, 116, 117, 118, 119, 120, 121, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 146, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 190, 234], "fff": [12, 13, 14, 15, 17, 18, 65, 86, 94, 111, 115, 117, 118, 119, 120, 121, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 141, 142, 153, 167, 168, 169, 170, 171, 172, 173, 174, 175, 178, 179, 229], "on_x_animation_complete_1": 12, "on_x_animation_complete_2": 12, "on_y_animation_complete_1": 12, "on_y_animation_complete_2": 12, "on_cx_animation_complete_1": 12, "275": [12, 101, 102, 103, 141, 234], "on_cx_animation_complete_2": 12, "325": [12, 133], "75": [12, 60, 94, 97, 101, 102, 103, 113, 114, 125, 127, 136, 140, 141, 167, 171, 176, 177, 183, 229, 234], "25": [12, 65, 94, 101, 102, 103, 112, 114, 115, 124, 129, 136, 140, 147, 153, 155, 164, 167, 168, 169, 170, 176, 183, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 234], "on_cy_animation_complete_1": 12, "on_cy_animation_complete_2": 12, "375": [12, 170, 234], "on_move_animation_complete_1": 12, "450": [12, 110, 127, 165, 234], "on_move_animation_complete_2": 12, "on_width_animation_complete_1": 12, "animation_width": [12, 146], "on_width_animation_complete_2": 12, "on_height_animation_complete_1": 12, "animation_height": [12, 146], "on_height_animation_complete_2": 12, "on_ellipse_width_animation_complete_1": 12, "ellips": [12, 94, 133, 139, 146, 182], "on_ellipse_width_animation_complete_2": 12, "draw_ellips": [12, 29, 94, 111, 146, 234], "175": [12, 94, 101, 102, 103, 136, 141, 169, 170, 171], "on_ellipse_height_animation_complete_1": 12, "on_ellipse_height_animation_complete_2": 12, "on_fill_color_animation_complete_1": 12, "animation_fill_color": [12, 18, 146], "on_fill_color_animation_complete_2": 12, "on_fill_alpha_animation_complete_1": 12, "animation_fill_alpha": [12, 18, 146], "on_fill_alpha_animation_complete_2": 12, "on_line_color_animation_complete_1": 12, "animation_line_color": [12, 146], "line_color": [12, 14, 62, 64, 65, 94, 109, 117, 118, 119, 120, 130, 131, 132, 134, 138, 142, 146, 153, 167, 168, 169, 170, 171, 172, 173, 174, 175, 183], "on_line_color_animation_complete_2": 12, "666": [12, 117, 118, 119, 120, 206], "on_line_alpha_animation_complete_1": 12, "animation_line_alpha": [12, 146], "on_line_alpha_animation_complete_2": 12, "on_line_thickness_animation_complete_1": 12, "animation_line_thick": [12, 18, 146], "on_line_thickness_animation_complete_2": 12, "350": [12, 63, 65, 95, 101, 102, 103, 107, 109, 112, 115, 124, 125, 127, 129, 139, 141, 153, 168, 170, 183, 208, 209, 210, 211, 213, 214, 220, 222], "on_radius_animation_complete_1": 12, "animation_radiu": [12, 146], "on_radius_animation_complete_2": 12, "475": [12, 234], "on_rotation_around_center_animation_complete_1": 12, "animation_rotation_around_cent": [12, 146], "rotation_around_cent": [12, 24, 56, 86, 99, 107, 146, 221, 222, 223, 225, 231, 234], "on_rotation_around_center_animation_complete_2": 12, "90": [12, 24, 25, 56, 141, 221, 225], "on_rotation_around_point_animation_complete_1": 12, "animation_rotation_around_point": [12, 146], "rotation_around_point": [12, 25, 86, 146], "on_rotation_around_point_animation_complete_2": 12, "on_scale_x_from_center_animation_complete_1": 12, "animation_scale_x_from_cent": [12, 146], "scale_x_from_cent": [12, 26, 27, 86, 125, 146], "on_scale_x_from_center_animation_complete_2": 12, "on_scale_y_from_center_animation_1": 12, "animation_scale_y_from_cent": [12, 146], "scale_y_from_cent": [12, 26, 27, 86, 125, 146], "on_scale_y_from_center_animation_2": 12, "on_scale_x_from_point_animation_complete_1": 12, "animation_scale_x_from_point": [12, 146], "scale_x_from_point": [12, 27], "on_scale_x_from_point_animation_complete_2": 12, "on_scale_y_from_point_animation_complete_1": 12, "animation_scale_y_from_point": [12, 146], "scale_y_from_point": [12, 27], "on_scale_y_from_point_animation_complete_2": 12, "animation_interfaces_abstract_each_attr": 12, "more": [12, 68, 86, 88, 93, 94, 147, 159, 166, 179, 190, 192, 229], "detail": [12, 86, 88, 94, 147, 159, 179, 188, 190, 192, 229], "easingopt": 12, "ease_in_quint": [12, 95], "ease_in_out_quint": [12, 95], "animation_interfaces_abstract_eas": 12, "animation_interfaces_abstract_x": 12, "animation_interfaces_abstract_i": 12, "animation_interfaces_abstract_mov": 12, "animation_interfaces_abstract_width": 12, "animation_interfaces_abstract_height": 12, "animation_interfaces_abstract_fill_color": 12, "animation_interfaces_abstract_fill_alpha": 12, "animation_interfaces_abstract_line_color": 12, "animation_interfaces_abstract_line_alpha": 12, "stroke": [12, 233], "animation_interfaces_abstract_line_thick": 12, "animation_interfaces_abstract_radiu": 12, "animation_interfaces_abstract_rotation_around_cent": 12, "animation_interfaces_abstract_rotation_around_point": 12, "animation_interfaces_abstract_scale_x_from_cent": 12, "animation_interfaces_abstract_scale_y_from_cent": 12, "animation_interfaces_abstract_scale_x_from_point": 12, "animation_interfaces_abstract_scale_y_from_point": 12, "animationlinealpha": 13, "line": [13, 14, 15, 16, 18, 60, 86, 97, 111, 115, 116, 117, 118, 119, 120, 121, 128, 129, 130, 131, 132, 133, 136, 138, 142, 146, 164, 166, 168, 170, 172, 173, 174, 175, 177, 178, 182, 191, 198, 199, 202, 206, 209, 215, 228, 229, 233, 234], "eee": [13, 15, 234], "thick": [13, 14, 15, 17, 18, 60, 86, 94, 97, 111, 115, 116, 117, 118, 119, 120, 121, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 152, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 182, 206, 207, 229, 234], "animation_line_alpha_basic_usag": 13, "animationlinecolor": 14, "one": [14, 37, 56, 85, 95, 100, 113, 121, 123, 125, 129, 136, 141, 160, 161, 163, 169, 172, 175, 180, 186, 187, 188, 212, 221, 222, 225], "animation_line_color_basic_usag": 14, "animationlinethick": 15, "10": [15, 33, 35, 41, 49, 50, 51, 52, 53, 54, 55, 59, 60, 61, 65, 68, 69, 70, 77, 80, 81, 82, 83, 84, 91, 96, 98, 108, 109, 111, 117, 118, 119, 120, 121, 130, 131, 133, 138, 139, 141, 144, 145, 147, 148, 149, 150, 152, 153, 155, 156, 157, 158, 166, 169, 170, 176, 180, 182, 183, 189, 207, 218, 222, 224, 227, 228, 230, 232, 233], "animation_line_thickness_basic_usag": 15, "6": [15, 33, 36, 37, 48, 60, 77, 97, 130, 138, 141, 152, 158, 166, 178, 180, 182, 196, 217, 219, 220, 223, 229, 234], "describ": [16, 61, 79, 161, 162, 163], "animation_method_chaining_basic_usage_1": 16, "These": [16, 19, 26, 27, 29, 34, 52, 53, 54, 55, 61, 65, 77, 82, 88, 95, 111, 123, 124, 125, 126, 133, 145, 153, 159, 160, 161, 163, 168, 188, 191], "want": [16, 59, 96, 98, 101, 102, 103, 104, 105, 106, 109, 127, 138, 141, 144, 181, 187, 188, 190, 207, 233], "javascript": [16, 32, 33, 34, 41, 48, 49, 50, 51, 52, 53, 54, 58, 59, 60, 62, 63, 67, 68, 74, 77, 81, 97, 100, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 146, 147, 150, 151, 152, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 186, 189, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 227, 228, 229, 232, 233], "d3": 16, "j": [16, 32, 179, 187, 190], "backslash": 16, "animation_method_chaining_basic_usage_2": 16, "animation_move_basic_usag": 17, "destin": [17, 30, 31, 142, 167, 168, 169, 170, 172, 173, 174, 175, 187], "animationparallel": 18, "multipl": [18, 23, 82, 92, 93, 146, 188, 191, 192, 196, 205, 207], "simultan": [18, 188], "same": [18, 23, 34, 37, 39, 51, 56, 58, 65, 67, 96, 98, 99, 101, 102, 103, 104, 105, 106, 108, 114, 125, 134, 136, 139, 141, 144, 147, 148, 152, 153, 177, 178, 186, 187, 193, 196, 205, 221, 228, 230], "list": [18, 33, 36, 37, 46, 48, 51, 62, 65, 108, 127, 135, 136, 141, 153, 166, 176, 177, 178, 206, 207, 228, 235], "7": [18, 33, 140, 158, 166, 179, 182, 217, 218, 219, 229], "animation_parallel_basic_usag": 18, "t": [18, 33, 42, 58, 59, 67, 81, 83, 84, 93, 96, 98, 100, 101, 102, 103, 104, 105, 106, 144, 146, 147, 160, 168, 186, 191, 192, 232], "sinc": [18, 23, 33, 59, 64, 93, 125, 127, 138, 141, 165, 167, 196], "valueerror": [18, 89, 96, 98], "There": [18, 84, 107, 141, 159, 160, 161, 162, 163], "ignor": [18, 23, 99, 100, 130, 131, 132, 138, 141, 151, 189, 207, 217, 218], "restart": [19, 225], "stop": [19, 21, 95, 100, 146, 220, 222, 223, 224, 225, 232, 234], "addition": 19, "on_timer_1": [19, 23], "on_timer_2": [19, 23], "600": [19, 21, 183, 234], "15_000": 19, "animation_pause_basic_usag": 19, "animationradiu": 20, "animation_radius_basic_usag": 20, "animation_reset_basic_usag": 21, "standard": 22, "properti": [22, 56, 62, 64, 68, 89, 117, 125, 146, 164, 165, 179, 181], "therefor": [22, 93, 141, 186, 228], "And": [22, 58, 125, 136, 141, 169, 194, 220, 235], "animation_return_value_basic_usag": 22, "interv": [23, 28, 107, 220, 222, 224], "everi": [23, 87, 222], "animation_reverse_basic_usag": 23, "dure": 23, "noth": [23, 61, 79, 89, 137, 160, 187, 206], "happen": [23, 61, 79, 160], "alreadi": [23, 187, 191], "been": 23, "animation_reverse_not": 23, "suppos": [23, 90, 160, 190], "reach": [23, 220, 221, 222, 224, 226], "begin": [23, 198, 202], "In": [23, 74, 87, 90, 117, 118, 119, 120, 160, 162, 167, 169, 170, 171, 183, 185, 190, 231, 232, 233], "case": [23, 87, 90, 160, 179, 183, 190, 197, 203, 232, 233], "instruct": [23, 96, 98, 101, 102, 103, 104, 105, 106, 144], "behavior": [23, 48, 49, 50, 51, 52, 53, 54, 81, 100, 146, 167, 168, 169, 170, 172, 173, 174, 175, 187, 193, 196], "mean": 23, "tick": [23, 87, 107, 220, 222], "animationrotationaroundcent": 24, "rotat": [24, 25, 56, 60, 97, 122, 123, 152, 166, 177, 178, 182, 206, 221, 225, 229], "around": [24, 25, 122, 123], "center": [24, 26, 30, 31, 60, 97, 101, 122, 124, 125, 129, 133, 152, 166, 177, 178, 182, 183, 206, 229], "degre": [24, 25, 56, 122, 225], "animation_rotation_around_center_basic_usag": 24, "animationrotationaroundpoint": 25, "bottom": [25, 27, 123, 125, 183, 206, 207], "animation_rotation_around_point_basic_usag": 25, "animationscalexfromcent": 26, "direct": [26, 27, 60, 86, 97, 114, 124, 125, 126, 152, 166, 177, 178, 182, 206, 229], "scale": [26, 27, 60, 97, 124, 125, 152, 166, 177, 178, 182, 229], "animationscaleyfromcent": 26, "side": [26, 27, 48, 49, 50, 51, 52, 53, 54, 55, 193, 221], "elif": [26, 27, 59, 98, 124, 144, 146, 234], "left_rectangl": [26, 27, 62, 124, 126, 231], "right_rectangl": [26, 27, 62, 124, 126, 231], "animation_scale_x_and_y_from_center_basic_usag": 26, "animationscalexfrompoint": 27, "animationscaleyfrompoint": 27, "left_rectangle_x": 27, "right_rectangle_i": 27, "scale_1": 27, "scale_2": 27, "animation_scale_x_and_y_from_point_basic_usag": 27, "elaps": 28, "consol": [28, 32, 51, 52, 53, 54, 55, 66, 74, 100, 160, 165, 228, 233], "press": [28, 32, 55, 66, 100, 160, 165, 228], "f12": [28, 32, 55, 66, 100, 160, 165, 228], "kei": [28, 32, 55, 81, 82, 83, 84, 100, 104, 105, 165, 228], "10000": 28, "animation_time_basic_usag": 28, "elapsed_tim": 28, "fp": [28, 56, 60, 86, 97, 99, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 220, 221, 223, 224, 225, 231, 234], "fps_60": [28, 56, 60, 86, 97, 99, 107, 123, 124, 125, 126, 152, 166, 177, 178, 182, 220, 221, 222, 223, 224, 225, 234], "animationwidth": 29, "animationheight": 29, "some": [29, 196], "animation_width_basic_usag": 29, "animation_height_basic_usag": 29, "animationwidthforellips": 29, "animationheightforellips": 29, "reason": [29, 30, 31, 67, 96, 98, 101, 102, 103, 104, 105, 106, 144, 186, 235], "intern": [29, 30, 31, 33, 48, 50, 58, 68, 81, 141, 145, 147, 183, 191, 192], "implement": [29, 30, 31, 32, 62, 96, 98, 101, 102, 103, 104, 105, 106, 144, 146, 154, 164, 172, 175, 231], "animation_x_basic_usag": 30, "animationcx": 30, "animation_cx": 30, "animationi": 31, "animation_y_basic_usag": 31, "animationci": 31, "animation_ci": 31, "mai": [32, 33, 56, 60, 97, 152, 182, 206], "irregular": 32, "django": [32, 187], "templat": 32, "tag": [32, 164, 187, 191], "string": [32, 33, 40, 56, 58, 60, 62, 63, 65, 68, 74, 81, 87, 96, 97, 101, 102, 103, 104, 105, 106, 108, 116, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 147, 150, 151, 152, 153, 154, 158, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 189, 190, 191, 205, 206, 207, 227, 229, 235], "log": [32, 66, 187, 228, 233], "express": [32, 33, 49, 56, 58, 67, 68, 81, 82, 96, 98, 100, 144, 147, 186, 190, 192, 228], "append_js_expression_basic_usag": 32, "messag": [32, 48, 49, 50, 51, 52, 53, 54, 55, 66, 100, 187, 228], "browser": [32, 51, 52, 53, 54, 55, 74, 100, 165, 228], "why": [33, 58, 67, 81, 96, 98, 101, 102, 103, 104, 105, 106, 144, 146, 147, 186, 192], "doesn": [33, 58, 67, 81, 96, 98, 100, 101, 102, 103, 104, 105, 106, 144, 146, 147, 160, 186, 192, 232], "built": [33, 34, 36, 42, 46, 48, 50, 52, 53, 58, 59, 67, 81, 84, 96, 98, 101, 102, 103, 104, 105, 106, 108, 144, 146, 147, 148, 149, 176, 186, 192, 193, 195], "data": [33, 58, 67, 81, 96, 98, 101, 102, 103, 104, 105, 106, 109, 135, 144, 147, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 183, 186, 191, 192, 227], "behav": [33, 34, 39, 46, 58, 65, 67, 81, 96, 98, 101, 102, 103, 104, 105, 106, 114, 144, 147, 153, 186, 196, 209, 228, 230], "iter": [33, 37, 67, 101, 102, 103, 104, 105, 106], "tupl": [33, 37, 65, 153], "rang": [33, 37, 46, 57, 63, 67, 143, 146, 150, 155, 160, 184, 200], "arr_from_list": 33, "arr_from_tupl": 33, "4": [33, 34, 36, 37, 39, 42, 46, 47, 48, 77, 117, 118, 141, 148, 166, 177, 180, 194, 200], "other_arr": [33, 36, 37], "9": [33, 52, 53, 149, 156, 157], "arr_from_arr": 33, "uniqu": [33, 92, 93, 191], "id": 33, "arr": [33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 67, 101, 102, 103, 156, 157, 180], "int_val": [33, 49, 54, 80, 98, 144, 147, 189, 228, 232, 233], "pop": [33, 146], "__getitem__": 33, "subscript": 33, "possibli": 33, "especi": 33, "index": [33, 38, 39, 41, 44, 46, 48, 50, 81, 92, 93, 101, 102, 110, 179, 187, 191, 200], "exce": 33, "length": [33, 138, 141, 146, 204], "runtim": [33, 41], "out": [33, 67, 163], "bound": [33, 109, 183], "int_valu": [33, 151, 227], "funcdament": [33, 147], "common": [33, 147], "push": [33, 146, 232], "extend": [33, 146], "concat": [33, 146], "insert": [33, 96, 98, 146], "insert_at": [33, 146], "remove_at": [33, 146], "sort": [33, 45, 146], "slice": [33, 146], "join": [33, 146], "index_of": [33, 146], "comparison": [33, 48, 50, 54, 96, 146, 147, 169, 192], "_arrvalu": [33, 34, 37, 38, 39, 41, 43, 44], "_loop": 33, "initialize_with_base_value_interfac": 33, "initializewithbasevalueinterfac": [33, 105, 106], "variable_name_suffix": [33, 58, 60, 62, 63, 68, 74, 81, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 146, 147, 150, 151, 152, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 229], "skip_init_substitution_expression_append": [33, 58, 68, 81, 147, 192], "bool": [33, 47, 54, 68, 81, 93, 147, 149, 164, 167, 168, 169, 170, 172, 173, 174, 175, 187, 192, 195, 206, 207, 235], "fals": [33, 47, 48, 50, 54, 56, 58, 59, 66, 68, 81, 90, 93, 96, 98, 104, 114, 147, 158, 164, 167, 168, 169, 170, 172, 173, 174, 175, 187, 190, 191, 192, 206, 207, 227, 230, 232, 233], "initi": [33, 49, 58, 68, 81, 96, 142, 147, 165, 183, 192], "fix": [33, 150, 235], "variabl": [33, 37, 49, 51, 54, 55, 58, 60, 62, 63, 68, 74, 81, 96, 97, 98, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 144, 146, 147, 150, 151, 152, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 189, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 229, 232, 233], "suffix": [33, 58, 60, 62, 63, 65, 68, 74, 81, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 147, 150, 151, 152, 153, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 229, 233], "boolean": [33, 36, 54, 56, 59, 60, 66, 67, 68, 74, 81, 87, 90, 93, 96, 97, 98, 104, 105, 114, 124, 144, 147, 149, 152, 158, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 177, 178, 182, 187, 190, 191, 192, 195, 206, 207, 210, 214, 216, 226, 227, 229, 230, 234, 235], "indic": [33, 58, 68, 81, 101, 102, 147, 167, 168, 169, 170, 172, 173, 174, 175, 187, 192, 200, 230], "whether": [33, 37, 54, 58, 66, 68, 81, 93, 114, 136, 147, 164, 167, 168, 169, 170, 172, 173, 174, 175, 187, 191, 192, 206, 207], "skip": [33, 58, 59, 62, 67, 68, 81, 95, 127, 137, 141, 147, 160, 192, 198, 199, 200, 202, 207], "substitut": [33, 58, 68, 81, 147, 192], "fundament": [33, 58, 81, 146, 147, 192], "similar": [34, 37, 125, 133, 136, 141, 177], "empti": [35, 41, 187], "20": [35, 41, 50, 59, 65, 81, 82, 84, 96, 98, 108, 139, 141, 147, 148, 149, 153, 155, 164, 176, 206, 207, 212, 227, 232], "30": [35, 41, 50, 60, 68, 72, 75, 96, 97, 122, 140, 142, 147, 148, 152, 176, 182, 222, 227, 229, 234], "equal": [36, 48, 50, 51, 52, 53, 55, 58, 98, 141, 144], "result": [36, 46, 47, 54, 58, 66, 90, 95, 122, 134, 141, 142, 149, 150, 155, 158, 179, 189, 191, 195, 198, 199, 200, 202, 204, 227], "oper": [36, 54, 58, 91, 96, 124, 146, 147, 192], "two": [37, 48, 50, 51, 68, 123, 150, 169, 180, 181, 217, 218, 219], "concaten": [37, 193], "origin": [37, 46, 161, 163, 194, 235], "place": [37, 45, 47, 150, 194], "still": [37, 235], "differ": [37, 60, 97, 123, 125, 152, 182, 207], "found": 38, "search": 38, "both": [39, 48, 49, 50, 136, 160, 176, 205], "wai": [39, 95, 96, 98, 101, 102, 103, 104, 105, 106, 125, 144], "alia": [39, 192], "accept": [39, 43, 48, 52, 53, 58, 60, 69, 70, 71, 72, 73, 75, 78, 82, 90, 96, 97, 98, 99, 102, 103, 104, 105, 106, 107, 108, 109, 122, 127, 141, 147, 150, 152, 160, 164, 166, 177, 178, 182, 186, 191, 192, 193, 198, 199, 202, 206, 207, 208, 209, 222, 228, 229, 230], "separ": [40, 96, 201, 205], "sep": [40, 201], "assert_equ": [41, 55, 57, 128, 143, 146, 150, 151, 155, 180, 184, 194, 196, 197, 198, 199, 200, 202, 203, 204, 211, 212, 227], "array_last_value_basic_usage_1": 41, "undefin": [41, 49, 80], "fixed_value_typ": 41, "assert_undefin": [41, 80, 146], "array_last_value_basic_usage_2": 41, "appli": [42, 84, 124, 186, 187, 189, 191, 194, 205, 235], "last_valu": [43, 146], "popped_v": 43, "order": [45, 47, 188], "extract": [46, 83], "new": [46, 63, 85, 142, 165, 166, 172, 173, 174, 175, 194, 206, 207, 221], "modifi": 46, "sliced_arr": 46, "ascend": 47, "descend": 47, "true": [47, 50, 54, 56, 58, 66, 74, 89, 90, 93, 96, 104, 110, 114, 142, 144, 147, 158, 167, 168, 169, 170, 172, 173, 174, 175, 187, 190, 191, 206, 207, 210, 214, 216, 227, 230], "arrai": [48, 51, 65, 67, 101, 102, 103, 104, 136, 153, 156, 157, 177, 178, 180, 189, 201, 206, 207, 227, 235], "convers": [48, 49, 50, 54, 61, 90, 114, 126, 141, 161, 163, 171, 226, 230], "arr_1": 48, "assert_arrays_equal_basic_usage_1": 48, "arr_2": [48, 189, 232], "fail": [48, 49, 50, 51, 52, 53, 54, 55], "assert_arrays_equal_basic_usage_2": 48, "assert_arrays_not_equal_basic_usage_1": 48, "assert_arrays_equal_notes_for_the_assert_equ": 48, "outer_frames_index_adjust": [48, 50], "condit": [48, 49, 50, 51, 52, 53, 54, 58, 59, 66, 67, 87, 96, 98, 144, 186, 226, 234], "outer": [48, 50], "frame": [48, 50, 99, 107, 141, 222, 229, 231], "caller": [48, 50, 228], "logic": [48, 50, 145], "directli": [48, 50, 96], "defin": [49, 74, 95, 96, 159], "delet": [49, 146], "assert_defined_basic_usage_1": 49, "i_11": [49, 51, 54, 55], "than": [49, 52, 53, 98, 141, 144, 147, 155], "append_js_express": [49, 146], "f": 49, "variable_nam": [49, 189, 190], "assert_defined_basic_usage_2": 49, "assert_undefined_basic_usage_1": 49, "dict_val": [50, 83], "b": [50, 81, 82, 83, 84, 106], "assert_dicts_equal_basic_usage_1": 50, "dct_1": 50, "assert_dicts_equal_basic_usage_2": 50, "assert_dicts_not_equal_basic_usage_1": 50, "assert_dicts_equal_notes_for_assert_equ": 50, "dict_1": [50, 81, 84], "dict_2": [50, 81], "int_1": [51, 54, 55, 59, 81, 96, 98, 108, 145, 147, 148, 149, 189, 193, 232], "11": [51, 54, 55, 77, 98, 149, 150, 156, 157], "assert_equal_basic_usag": 51, "assert_not_equal_basic_usag": 51, "assert_arrays_equ": [51, 101, 104, 146, 201], "assert_dicts_equ": [51, 146], "int_2": [51, 81, 96, 98, 147, 148, 149, 232], "assert_arrays_not_equ": [51, 146], "assert_dicts_not_equ": [51, 146], "greater": [52, 53, 98, 141, 144, 155], "numer": [52, 53, 147], "int_val_1": [52, 53], "int_val_2": [52, 53], "int_val_3": [52, 53], "assert_greater_and_greater_equal_basic_usage_1": 52, "assert_greater_and_greater_equal_basic_usage_2": 52, "less": [52, 53, 98, 99, 155], "assert_less_and_less_equal_basic_usage_1": 53, "assert_less_and_less_equal_basic_usage_2": 53, "assert_greater_equ": [53, 146], "type_strict": 54, "strict": 54, "becaus": [54, 160], "bool_1": [54, 58], "assert_true_basic_usage_1": 54, "b_3": [54, 232], "assert_true_basic_usage_2": 54, "assert_true_basic_usage_3": 54, "assert_true_basic_usage_4": 54, "assert_false_basic_usage_1": 54, "strictli": 54, "integ": [54, 57, 58, 63, 69, 70, 72, 73, 75, 143, 147, 150, 158, 165, 180, 184, 191, 232], "test": 54, "On": [54, 99, 147], "contrari": 54, "prefix": [55, 94, 145, 154], "assert_": 55, "assert_tru": [55, 146], "root": [55, 145, 154], "them": [55, 181, 234, 235], "assertion_basic_behavior_result": 55, "see": [55, 60, 68, 93, 97, 136, 147, 152, 166, 177, 178, 182, 192, 206, 207, 229, 234], "assertion_basic_behavior_results_fail": 55, "provid": [55, 83], "assertion_basic_behavior_msg": 55, "regist": [56, 61, 79, 160, 161, 162, 163, 188, 231], "your": [56, 163], "custom_event_typ": [56, 160], "rotate_90_degre": 56, "on_rotate_90_degre": 56, "toggl": 56, "visibl": [56, 85, 111, 146], "on_rectangle_click": [56, 100, 111, 160, 224, 226, 228, 231], "unbind_click": [56, 160, 221, 224, 226], "timer_complet": [56, 146, 220, 223, 225, 234], "on_timer_complet": [56, 221, 223], "rate": [56, 99], "rectangle_1": [56, 66, 90, 95, 107, 110, 112, 115, 121, 123, 124, 165, 185, 191, 221, 222], "rectangle_2": [56, 90, 95, 107, 110, 112, 115, 121, 123, 124, 165, 185, 191, 221, 222], "bind_and_trigger_custom_event_basic_usag": 56, "singl": [56, 62, 79, 127, 141, 160, 187, 207, 231], "_event": [56, 61, 79, 99, 161, 162, 163, 231], "customeventtyp": 56, "in_handler_head_express": 56, "dispatch": [56, 160], "ad": [56, 89, 110, 164, 190, 208, 209, 210, 211, 212, 213, 214, 215, 216], "head": 56, "on_custom_ev": [56, 160], "my_custom_ev": [56, 160], "do": [56, 96, 136, 146, 160, 164, 171, 187, 188, 191, 205, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "someth": [56, 85, 96, 111, 145, 160, 187, 191], "here": [56, 96, 160, 187, 231], "about": [56, 61, 68, 79, 146, 161, 162, 163, 192, 220, 221, 222, 224], "bool_2": 58, "bool_3": 58, "noqa": 58, "liter": 58, "bool_val_1": 58, "bool_val_2": 58, "true_": [58, 146, 210, 214, 216], "false_": [58, 146], "constant": [58, 62, 65, 113, 116, 127, 141, 153], "bool_val": 58, "Not": 58, "els": [59, 65, 85, 87, 96, 111, 113, 116, 144, 146, 153, 160, 234], "regardless": [59, 156, 157], "convert": [59, 150, 158, 227], "satisfi": 59, "locals_": [59, 96, 98, 101, 102, 103, 104, 105, 106, 144], "globals_": [59, 96, 98, 101, 102, 103, 104, 105, 106, 144], "basic": [59, 85, 111, 159, 190, 234], "local": [59, 96, 98, 101, 102, 103, 104, 105, 106, 144, 160], "global": [59, 96, 98, 101, 102, 103, 104, 105, 106, 144], "occasion": [59, 81, 187, 235], "don": [59, 96, 98, 101, 102, 103, 104, 105, 106, 144, 191], "vector": [60, 97, 111, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 146, 152, 166, 174, 176, 177, 178, 182, 190, 229], "style": [60, 97, 129, 130, 131, 133, 136, 138, 141, 142, 152, 153, 154, 164, 166, 177, 178, 182, 206, 207, 210, 214, 216, 229], "circle_basic_usag": 60, "circle_x": 60, "circle_i": 60, "circle_radiu": 60, "circle_fill_color": 60, "circle_fill_alpha": 60, "circle_line_color": 60, "circle_line_alpha": 60, "circle_line_thick": 60, "dot": [60, 97, 117, 119, 120, 129, 130, 132, 133, 134, 138, 142, 152, 166, 177, 178, 182, 229], "linedotset": [60, 97, 119, 129, 131, 132, 133, 134, 138, 141, 142, 152, 166, 177, 178, 182, 229], "dot_siz": [60, 97, 117, 119, 129, 130, 132, 133, 134, 141, 142, 152, 166, 177, 178, 182, 229, 234], "circle_line_dot_set": 60, "dash": [60, 97, 111, 117, 118, 130, 131, 152, 166, 177, 178, 182, 229], "linedashset": [60, 97, 118, 131, 132, 134, 141, 152, 166, 177, 178, 182, 229], "dash_siz": [60, 97, 111, 117, 118, 130, 131, 141, 152, 166, 177, 178, 182, 229], "space_s": [60, 97, 111, 117, 118, 120, 130, 131, 138, 141, 152, 166, 177, 178, 182, 229, 234], "circle_line_dash_set": 60, "round": [60, 97, 120, 138, 139, 150, 152, 166, 177, 178, 182, 229], "linerounddotset": [60, 97, 120, 138, 141, 152, 166, 177, 178, 182, 229], "round_siz": [60, 97, 120, 138, 141, 152, 166, 177, 178, 182, 229, 234], "circle_line_round_dot_set": 60, "linedashdotset": [60, 97, 117, 141, 152, 166, 177, 178, 182, 229], "circle_line_dash_dot_set": 60, "359": [60, 97, 152, 166, 177, 178, 182, 206, 229], "circle_rotation_around_cent": 60, "circle_set_rotation_around_point": 60, "001": [60, 97, 152, 166, 177, 178, 182, 204, 229], "005": [60, 97, 152, 166, 177, 178, 182, 206, 229], "circle_scale_x_from_cent": 60, "circle_scale_y_from_cent": 60, "125": [60, 97, 105, 133], "scale_x": [60, 97, 125, 152, 166, 177, 178, 182, 206, 229], "circle_scale_x_from_point": 60, "scale_i": [60, 97, 125, 152, 166, 177, 178, 182, 229], "circle_scale_y_from_point": 60, "flip": [60, 97, 114, 152, 166, 177, 178, 182, 206, 229], "reflect": [60, 86, 97, 150, 152, 166, 177, 178, 182, 206, 229], "state": [60, 90, 97, 152, 166, 177, 178, 182, 206, 229], "not_": [60, 86, 97, 114, 152, 166, 177, 178, 182, 206, 229], "circle_flip_x": 60, "shape": [60, 97, 136, 142, 152, 182], "difficult": [60, 97, 152, 182], "tell": [60, 97, 152, 182], "ax": [60, 97, 152, 182], "circle_flip_i": 60, "skew": [60, 97, 126, 152, 166, 177, 178, 182, 229], "distort": [60, 97, 152, 166, 177, 178, 182, 206, 229], "circle_skew_x": 60, "circle_skew_i": 60, "line_cap": [60, 97, 152, 166, 177, 178, 182, 229], "linecap": [60, 97, 141, 152, 166, 177, 178, 182, 229], "child_mixin": [60, 97, 152, 154, 164, 166, 177, 178, 182, 206, 207, 229], "childmixin": [60, 89, 97, 152, 154, 164, 166, 177, 178, 182, 206, 207, 229], "colorless": [60, 62, 97, 111, 113, 116, 127, 133, 141, 146, 152, 166, 177, 178, 182, 206, 207, 229, 234], "cap": [60, 97, 138, 152, 166, 177, 178, 182, 229], "ffffff": [60, 62, 130, 131, 132, 134, 138, 142, 152, 166, 178, 183, 191], "mous": [61, 79, 85, 137, 140, 142, 159, 161, 162, 163], "down": [61, 159, 161, 234], "up": [61, 161, 191, 200], "click_basic_usage_of_the_click_interfac": 61, "click_basic_usage_of_the_unbind_click_interfac": 61, "click_unbind_all_the_click_event_handl": 61, "mouse_ev": [61, 79, 161, 162, 163], "would": [61, 79, 94, 127, 159, 161, 162, 163, 220, 222, 224], "handl": [62, 68, 74, 88, 99, 111, 146, 176, 205, 206, 220, 222, 224, 231], "line_thick": [62, 64, 65, 94, 116, 117, 118, 119, 132, 134, 142, 146, 153, 167, 168, 169, 170, 171, 172, 173, 174, 175], "color_basic_usag": 62, "six": [62, 127, 141], "charact": [62, 127, 141, 196, 198, 199, 202, 204], "three": [62, 125, 127, 141, 176, 180], "000005": [62, 127, 141], "symbol": [62, 82, 92, 127, 141, 154, 191], "clear": [62, 64, 127, 141, 146], "_strorstr": 62, "000000": 62, "colorless_basic_usag": 64, "black_000000": 65, "gray_999999": 65, "white_ffffff": [65, 153, 191], "red_ff0000": 65, "hexadecim": [65, 116, 151, 153, 191], "gray_333333": 65, "cyan_00ffff": 65, "colors_basic_usag": 65, "rect_siz": [65, 153], "font_siz": [65, 146, 153, 164, 208, 209, 210, 211, 212, 214], "12": [65, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 153, 207, 217, 218, 219, 232, 234], "outer_margin": [65, 153], "len": [65, 153, 196], "get_colors_memb": [65, 153], "constant_nam": [65, 153], "enumer": [], "line_alpha": [65, 94, 146, 153], "svgtext": [65, 109, 146, 153, 183, 227, 230], "text": [65, 109, 153, 164, 183, 208, 209, 227, 230], "ccc": [65, 141, 153], "colors_definit": 65, "remove_child": [66, 89, 146, 190], "sprite_contains_basic_usag": 66, "add_child": [66, 89, 110, 146, 165, 185, 190, 205], "remove_from_par": [66, 191], "forarrayindic": [65, 67, 146, 153], "loop": [67, 101, 102, 103, 104, 105, 106, 220, 222, 224], "continue_basic_usag": 67, "instanti": [67, 111, 186, 189, 190, 191, 232], "statement": [67, 81, 96, 98, 101, 102, 103, 104, 105, 106, 144], "date": [68, 76, 195], "year": [68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 146], "month": [68, 69, 70, 71, 72, 74, 75, 76, 77, 78, 146], "dai": [68, 70, 71, 72, 73, 74, 75, 76, 77, 78, 146], "dt": [68, 74], "2022": [68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 217, 218, 219], "hour": [68, 146, 218], "minut": [68, 146], "setter": [57, 68, 69, 70, 71, 72, 73, 75, 77, 78, 84, 112, 113, 115, 116, 117, 118, 119, 120, 121, 124, 126, 143, 184, 208, 209, 210, 211, 212, 213, 214, 215, 216], "via": 68, "weekday_pi": [68, 146], "weekday_j": [68, 146], "now": [68, 146], "four": [68, 188], "digit": [68, 78, 150], "31": [68, 69, 76, 183, 230], "23": [68, 70, 200], "59": [68, 72, 75], "999": [68, 127], "datetime_": [68, 69, 70, 71, 72, 73, 75, 76, 77, 78], "Its": [63, 69, 70, 71, 72, 73, 75, 78, 150], "15": [70, 109, 133, 139, 141, 147, 149, 155, 182, 183], "now_datetim": 74, "datetime_now_basic_usag": 74, "py_now": 74, "ap_now": 74, "05": [76, 124, 195], "weekdai": 77, "sundai": 77, "saturdai": 77, "mondai": 77, "base": [77, 85, 109, 114, 122, 123, 124, 125, 126, 146, 183, 191, 200, 227], "tuesdai": 77, "wednesdai": 77, "thursdai": 77, "fridai": 77, "2023": 78, "doubl": 79, "on_double_click": 79, "dblclick_basic_usag": 79, "unbind_dblclick_basic_usag": 79, "unbind": [79, 231], "delete_basic_usag": 80, "retriev": 81, "anyvalu": 81, "dynam": [81, 136, 139], "retrieved_v": 81, "del": 81, "_kei": [81, 83], "_valu": 81, "dict_valu": 82, "a_valu": 82, "enhanc": 82, "safeti": 82, "cannot": 82, "assign": [82, 88], "declar": 82, "incompat": 82, "altern": 82, "b_valu": 82, "got_val_1": 83, "got_val_2": 83, "got_val_3": 83, "expression_str": 83, "expressionstr": 83, "defaulttyp": 83, "hasn": 83, "result_valu": 83, "value_1": 83, "value_2": 83, "value_3": 83, "c": [83, 169], "verifi": [85, 233], "inherit": [85, 207, 209, 233], "do_and_graphics_base_prop_abstract_x_and_i": 86, "do_and_graphics_base_prop_abstract_vis": 86, "get_rotation_around_point": 86, "set_rotation_around_point": 86, "angl": [86, 122], "do_and_graphics_base_prop_abstract_rot": 86, "get_scale_x_from_point": 86, "set_scale_x_from_point": 86, "get_scale_y_from_point": 86, "set_scale_y_from_point": 86, "scale_valu": 86, "01": [86, 166, 195, 200], "do_and_graphics_base_prop_abstract_scal": 86, "scale_from_cent": 86, "scale_from_point": 86, "flip_x": [86, 146], "flip_i": [86, 146], "lineopt": 86, "draw_lin": [86, 94, 111, 117, 118, 119, 120, 121, 138, 141, 146, 234], "x_start": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "y_start": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "x_end": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "y_end": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "do_and_graphics_base_prop_abstract_flip": 86, "skew_x": [86, 146], "skew_i": [86, 146], "do_and_graphics_base_prop_abstract_skew": 86, "css": 87, "addit": [87, 122, 146, 192, 231, 232], "blank": [87, 130, 131, 138, 160, 187], "otherwis": [87, 92, 93], "revert": [87, 96, 98, 101, 102, 103, 104, 105, 106, 144, 146, 161, 163], "_spriteopt": 87, "display_css_v": 87, "display_object_get_and_set_css_basic_usag": 87, "over": [88, 159, 163, 234], "move": [88, 142, 159, 160, 162, 172, 174, 224, 234], "mouseov": [88, 146, 159, 160, 234], "display_object_mouse_event_basic_usag": 88, "mousedown": [88, 146, 159, 160, 234], "mouseup": [88, 146, 159, 160, 234], "mouseout": [88, 146, 159, 160, 234], "mousemov": [88, 146, 159, 160, 234], "until": [89, 127, 141], "display_object_remove_from_parent_basic_usag": 89, "invis": [90, 124, 127, 141, 206, 207], "switch": 90, "on_rectangle_1_click": 90, "on_rectangle_2_click": 90, "display_object_visible_basic_usag": 90, "dimension": [91, 176], "display_object_x_and_y_basic_usag": 91, "pixel": [91, 117, 118, 119, 120, 121, 130, 131, 132, 138, 139, 141, 160, 224], "display_object_x_and_y_augmented_assign": 91, "googl": [92, 234], "colaboratori": [92, 234], "instal": [92, 93], "go": [92, 93], "pip": [92, 93, 179], "command": [92, 179], "output": [92, 93, 187], "html_file_nam": [92, 93], "overwrit": [92, 93], "file": [92, 93, 179, 189, 191, 228, 235], "jupyter_test_1": 92, "minifi": [93, 189, 232, 233], "save": [92, 93, 187, 228], "overal": [92, 93, 146, 187, 191, 207], "jupyt": 93, "haven": 93, "notebook": [93, 234], "softwar": 93, "ipython": 93, "ifram": [93, 187], "encount": 93, "v": [93, 175], "restrict": [93, 168, 170], "jupyterlab": [93, 234], "jupyter_sample_1": 93, "svg": [94, 122, 154, 167, 168, 169, 170, 171, 172, 173, 174, 175, 205, 206, 207], "polygon": [94, 114, 136, 146, 176], "polylin": [94, 111, 136, 141, 146, 177, 179], "path": [94, 135, 136, 146, 167, 168, 169, 170, 171, 172, 173, 174, 175], "draw_interfaces_abstract_begin_fil": 94, "draw_interfaces_abstract_line_styl": 94, "draw_": 94, "draw_interfaces_abstract_each_drawing_interfac": 94, "draw_round_rect": [94, 111, 146, 234], "move_to": [94, 111, 136, 141, 146, 179, 234], "line_to": [94, 111, 141, 146, 179, 234], "draw_dotted_lin": [94, 111, 134, 141, 146, 152, 234], "draw_dashed_lin": [94, 111, 134, 141, 146, 152, 234], "draw_round_dotted_lin": [94, 111, 134, 141, 146, 152, 234], "draw_dash_dotted_lin": [94, 111, 134, 141, 146, 152, 234], "draw_polygon": [94, 111, 114, 146, 234], "fill_alpha": [94, 111, 146, 154, 164, 234], "line_dot_set": [94, 132, 142, 146], "line_dash_set": [94, 131, 146], "line_round_dot_set": [94, 138, 146], "line_dash_dot_set": [94, 130, 146], "easing_enum_basic_usag": 95, "specif": [95, 122, 160, 191, 206], "easing_enum_default_set": 95, "slow": 95, "speed": 95, "fast": 95, "faster": 95, "_easingopt": 95, "easing_1": 95, "easing_2": 95, "easing_3": 95, "rectangle_3": [95, 107, 112, 115, 124, 222], "easing_enum_ease_differ": 95, "ease_in_sin": 95, "ease_in_quad": 95, "easing_enum_ease_in_1": 95, "ease_in_quart": 95, "ease_in_expo": 95, "easing_enum_ease_in_2": 95, "ease_in_circ": 95, "ease_in_back": 95, "easing_enum_ease_in_3": 95, "ease_in_elast": 95, "ease_in_bounc": 95, "easing_enum_ease_in_4": 95, "ease_out_sin": 95, "ease_out_quad": 95, "ease_out_cub": 95, "easing_enum_ease_out_1": 95, "ease_out_quart": 95, "ease_out_expo": 95, "easing_enum_ease_out_2": 95, "ease_out_circ": 95, "ease_out_back": 95, "easing_enum_ease_out_3": 95, "ease_out_elast": 95, "ease_out_bounc": 95, "easing_enum_ease_out_4": 95, "ease_in_out_sin": 95, "ease_in_out_quad": 95, "ease_in_out_cub": 95, "easing_enum_ease_in_out_1": 95, "ease_in_out_quart": 95, "ease_in_out_expo": 95, "easing_enum_ease_in_out_2": 95, "ease_in_out_circ": 95, "ease_in_out_back": 95, "easing_enum_ease_in_out_3": 95, "ease_in_out_elast": 95, "easing_enum_ease_in_out_4": 95, "branch": [96, 98, 101, 102, 103, 104, 105, 106, 144, 186], "condition_1": [96, 124, 234], "condition_2": [96, 124, 234], "goe": 96, "anyth": 96, "any_valu": 96, "scope": [96, 98, 101, 102, 103, 104, 105, 106, 144, 146, 186, 191], "judgment": [96, 144], "immedi": [96, 98], "predefin": 96, "ellipse_basic_usag": 97, "ellipse_x": 97, "ellipse_i": 97, "ellipse_width": [97, 139, 234], "ellipse_height": [97, 139, 234], "ellipse_fill_color": 97, "ellipse_fill_alpha": 97, "ellipse_line_color": 97, "ellipse_line_alpha": 97, "ellipse_line_thick": 97, "ellipse_line_dot_set": 97, "ellipse_line_dash_set": 97, "ellipse_line_round_dot_set": 97, "ellipse_line_dash_dot_set": 97, "ellipse_rotation_around_cent": 97, "ellipse_set_rotation_around_point": 97, "ellipse_scale_x_from_cent": 97, "ellipse_scale_y_from_cent": 97, "ellipse_scale_x_from_point": 97, "ellipse_scale_y_from_point": 97, "ellipse_flip_x": 97, "ellipse_flip_i": 97, "ellipse_skew_x": 97, "ellipse_skew_i": 97, "answer": 99, "shift": 99, "pace": [63, 99], "hand": [99, 147], "off": 99, "cpu": 99, "busi": 99, "on_enter_fram": [99, 206, 229, 231], "enterframeev": [99, 206, 229, 231], "enter": [99, 229, 231], "fps_30": [99, 107, 222, 231], "enter_frame_basic_usag": 99, "enter_frame_ev": [99, 231], "_time": [99, 220, 222, 224], "fpsdefinit": 99, "0x7f80576dc3a0": [], "per": [99, 107, 114, 189, 222], "statu": 99, "preventdefault": 100, "prevent": 100, "propag": 100, "trigger": [100, 146, 160], "event_prevent_default_basic_usag": 100, "event_stop_propagation_basic_usag": 100, "unbind_mouseup_al": 100, "for_array_indices_basic_usage_1": 101, "x_arr": [101, 102, 103], "for_array_indices_basic_usage_2": 101, "arr_value_typ": [102, 103], "225": [102, 138], "for_array_indices_and_values_basic_usage_1": 102, "_arrayvalu": [102, 103], "for_array_values_basic_usag": 103, "dict_key_typ": [104, 105], "dict_": [104, 105, 106], "appl": 104, "120": [104, 206], "orang": 104, "for_dict_keys_basic_usage_1": 104, "_dictkei": [104, 105], "hashabl": [104, 105], "dict_value_typ": [105, 106], "for_dict_keys_and_values_basic_usage_1": 105, "_dictvalu": [105, 106], "for_dict_values_basic_usage_1": 106, "definit": 107, "approxim": 107, "16": [107, 164, 206, 207, 208, 209, 210, 211, 212, 213, 214, 220, 222, 223, 224, 226], "6666667": [107, 220, 222, 224], "33": [107, 221, 222, 223, 224, 225, 226], "3333333": [107, 222], "timer_1": [107, 221, 222, 225], "fps_10": 107, "timer_2": [107, 221, 222, 225], "timer_3": [107, 222], "fps_basic_usag": 107, "number_1": [108, 145, 147, 148, 149], "box": [109, 183], "geometri": [109, 176, 183], "size": [109, 118, 120, 129, 130, 131, 132, 133, 137, 138, 139, 141, 154, 160, 164, 189, 206, 207, 213, 215], "rectanglegeom": [109, 146], "baselin": [], "440": [109, 183], "220": [109, 138, 183], "bounding_box": [109, 183], "box_rectangl": [109, 183], "left_x": 109, "top_i": 109, "aaa": [109, 183, 206, 207, 227, 230], "fd63c3": [109, 183], "left_x_and_top_y_circl": [109, 183], "left_x_and_top_y_text": [109, 183], "get_bounds_basic_usag": [], "_geom": [109, 135, 136, 166, 177, 178, 183], "rectangle_geom": [109, 183], "which": [110, 136, 160, 191], "first_child": 110, "second_child": 110, "child_at_index_1": [110, 191], "180": [111, 141, 179], "white": [111, 141], "border": 111, "130": [111, 130, 131, 132, 138, 141, 234], "graphics_call_interfaces_from_sprite_inst": 111, "drew_rect": 111, "graphics_return_valu": 111, "third": [112, 115, 127, 140, 180, 222, 229], "graphics_base_fill_alpha_basic_usag": 112, "graphics_base_fill_color_basic_usag": 113, "ff00aa": [113, 116, 159, 184, 186], "axi": [114, 125, 126], "triangl": [114, 136, 146, 176], "_polygonopt": 114, "point2d": [114, 136, 146, 152, 177, 178, 206, 234], "graphics_base_flip_x_basic_usag": 114, "graphics_base_line_alpha_basic_usag": 115, "graphics_base_line_color_basic_usag": 116, "graphics_base_line_dash_dot_setting_basic_usag": 117, "graphics_base_line_dash_dot_setting_delete_set": 117, "space": [109, 118, 130, 131, 138, 141, 179, 183, 198, 199, 202], "graphics_base_line_dash_setting_basic_usag": 118, "graphics_base_line_dash_setting_delete_set": 118, "graphics_base_line_dot_setting_basic_usag": 119, "graphics_base_line_dot_setting_delete_set": 119, "lien": 119, "graphics_base_line_round_dot_setting_basic_usag": 120, "graphics_base_line_round_dot_setting_delete_set": 120, "graphics_base_line_thickness_basic_usag": 121, "cyan_rect": 122, "magenta_rect": 122, "increment": [122, 125, 126, 148, 232], "60": [122, 152, 217, 219, 222], "graphics_base_rotation_around_center_basic_usag": 122, "due": 122, "45": [122, 123, 138, 200, 206], "rel": [109, 123], "top": [123, 125, 160, 183], "_rectanglesopt": [123, 124], "graphics_base_rotation_around_point_basic_usag": 123, "horizont": [124, 125, 137, 166, 172, 175, 191, 206], "vertic": [124, 125, 136, 141, 166, 172, 175], "twice": [124, 129, 133], "half": [124, 138, 141], "center_rectangl": 124, "graphics_base_scale_from_center_basic_usage_1": 124, "graphics_base_scale_from_center_basic_usage_2": 124, "current_scal": 124, "03": [124, 125, 234], "graphics_base_scale_from_center_basic_usage_3": 124, "minimum": [124, 125, 141, 152, 155, 157, 164, 177, 178], "almost": [124, 125, 206, 207, 230], "zero": [124, 125, 167, 204, 206, 207], "neg": [124, 125], "coodin": 125, "50px": [125, 126, 172, 173, 174, 175], "100px": 125, "decrement": 125, "middl": 125, "current_scale_x": 125, "top_rect": 125, "middle_rect": 125, "bottom_rect": 125, "top_rect_direct": 125, "top_rect_tim": 125, "middle_rect_direct": 125, "middle_rect_tim": 125, "bottom_rect_direct": 125, "bottom_rect_tim": 125, "graphics_base_scale_from_point_basic_usage_x": 125, "current_scale_i": 125, "graphics_base_scale_from_point_basic_usage_i": 125, "graphics_base_skew_x_basic_usag": 126, "graphics_base_skew_y_incremental_basic_usag": 126, "maintain": [127, 141, 205], "blue": [57, 63, 127], "graphics_begin_fill_basic_usag": 127, "graphics_begin_fill_fill_color": 127, "graphics_begin_fill_color_setting_clear": 127, "black": [127, 141, 179, 191], "graphics_begin_fill_acceptable_color_set": 127, "transpar": [127, 141, 164], "opaqu": [127, 141], "graphics_begin_fill_alpha_set": 127, "graphics_clear_basic_usag": 128, "dot_set": [129, 130, 131, 132, 133, 134, 138, 141], "inner": 129, "graphics_draw_circle_basic_usag": 129, "small": 129, "bigger": 129, "graphics_draw_circle_return_valu": 129, "_circl": 129, "simpl": [130, 131, 132, 134, 138, 191], "straight": [130, 131, 132, 134, 138, 152], "long": [130, 141, 189], "short": [130, 141], "dash_set": [130, 131, 132, 134, 138, 141], "round_dot_set": [130, 131, 132, 134, 138, 141], "dash_dot_set": [130, 131, 132, 134, 138, 141], "That": [130, 131, 132, 138], "80": [130, 131, 132, 138, 141, 152, 207], "graphics_draw_dash_dotted_line_basic_usag": 130, "_line": [130, 131, 132, 134, 138], "graphics_draw_dashed_line_basic_usag": 131, "graphics_draw_dotted_line_basic_usag": 132, "graphics_draw_ellipse_basic_usag": 133, "wider": 133, "on_ellipse_click": 133, "graphics_draw_ellipse_return_valu": 133, "_ellips": 133, "intefac": 134, "graphics_draw_line_basic_usag": 134, "graphics_draw_line_ignored_dot_set": 134, "graphics_draw_line_line_inst": 134, "normal": [134, 138, 141, 206, 207], "path_data_list": [135, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "pathlineto": [135, 146, 171, 174], "pathbezier2d": [135, 146, 168], "pathmoveto": [135, 146, 167, 168, 169, 170, 171, 172, 173, 175], "control_x": [135, 166, 167, 168, 169, 170], "control_i": [135, 166, 167, 168, 169, 170], "dest_x": [135, 166, 167, 168, 169, 170], "dest_i": [135, 166, 167, 168, 169, 170], "graphics_draw_path_basic_usag": 135, "pathhorizont": [135, 146], "pathvert": [135, 146], "pathclos": [135, 146], "pathbezier2dcontinu": [135, 146, 167], "pathbezier3dcontinu": [135, 146, 169], "path_data_bas": [135, 166], "pathdatabas": [135, 166], "_path": 135, "pathdata": [135, 166], "moveto": [135, 166], "pathbezier3d": [135, 146, 170], "slightli": 136, "close": [136, 166, 171], "diamond": 136, "graphics_draw_polygon_basic_usag": 136, "graphics_draw_polygon_line_to_difference_1": 136, "But": [136, 193], "signific": 136, "graphics_draw_polygon_line_to_difference_2": 136, "append_line_point": 136, "graphics_draw_polygon_append_line_point": 136, "_polyg": 136, "unlik": [136, 177], "connect": [136, 171, 177], "vertex": [136, 140, 176, 177, 229], "graphics_draw_rect_basic_usag": 137, "graphics_draw_rect_basic_usage_skipped_begin_fil": 137, "graphics_draw_rect_rectangl": 137, "graphics_draw_round_dotted_line_basic_usag": 138, "longer": [138, 141, 232], "align": [138, 164, 207, 208, 209], "subtract": [138, 141, 217], "270": [138, 169], "graphics_draw_round_dotted_line_not": 138, "corner": 139, "graphics_draw_round_rect_basic_usag": 139, "graphics_draw_round_rect_return_valu": 139, "round_rect": 139, "x1": 140, "y1": 140, "x2": 140, "y2": 140, "x3": 140, "y3": 140, "graphics_draw_triangle_basic_usag": 140, "graphics_draw_triangle_triangle_inst": 140, "162": 141, "3px": 141, "110": 141, "graphics_line_style_bas": 141, "102": 141, "graphics_line_style_line_color": 141, "graphics_line_style_clear_line_color": 141, "graphics_line_style_line_color_color_cod": 141, "165": 141, "graphics_line_style_thick": 141, "upper": [141, 146, 160], "lower": [141, 146], "graphics_line_style_alpha": 141, "edg": [141, 198, 199, 202], "butt": 141, "squar": 141, "increas": [141, 220], "graphics_line_style_cap": 141, "linejoint": [141, 166, 177, 178, 182, 229], "mainli": [141, 167, 168, 169, 170, 171, 172, 173, 174, 175], "miter": 141, "pictur": 141, "bevel": 141, "graphics_line_style_joint": 141, "160": [141, 234], "graphics_line_style_line_dot_set": 141, "038": 141, "graphics_line_style_line_dot_setting_rectangl": 141, "graphics_line_style_line_dash_set": 141, "graphics_line_style_line_round_dot_set": 141, "capsiz": 141, "graphics_line_style_line_dash_dot_set": 141, "overrid": [141, 187], "amount": [141, 205], "graphics_move_to_and_line_to_basic_usag": 142, "z": [62, 142, 171], "graphics_move_to_and_line_to_sequential_cal": 142, "graphics_move_to_and_line_to_multi_move_to_cal": 142, "on_line_click": 142, "graphics_move_to_and_line_to_polylin": 142, "_polylin": 142, "line_1": 142, "line_2": 142, "line_3": 142, "numpi": 145, "np": 145, "panda": 145, "pd": 145, "tkinter": 145, "tk": 145, "underscor": 145, "_file": 145, "welcom": 146, "front": [146, 234], "develop": [146, 147], "partial": 146, "github": [146, 154], "leav": 146, "star": 146, "favor": 146, "high": 146, "hope": [65, 146], "futur": 146, "pypi": 146, "languag": [146, 234], "english": 146, "japanes": 146, "\u65e5\u672c\u8a9e": 146, "what": 146, "convent": 146, "area": [146, 160, 191, 205], "display_on_jupyt": [146, 234], "display_on_colaboratori": [146, 234], "remove_children": 146, "num_children": [146, 185, 190], "get_child_at": [146, 190], "to_str": [146, 183], "arithmet": [146, 147], "to_fix": 146, "split": 146, "lstrip": 146, "strip": [146, 198, 199], "rstrip": 146, "apply_max_num_of_decimal_plac": 146, "abstract": [146, 179, 234], "get_css": 146, "set_css": 146, "get_scale_from_point": 146, "set_scale_from_point": 146, "draw_triangl": 146, "draw_path": [146, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "svgtextspan": 146, "get_bound": 146, "prevent_default": 146, "stop_propag": 146, "custom": [146, 160], "dblclick": [146, 159], "forarrayvalu": 146, "forarrayindicesandvalu": 146, "fordictkei": 146, "fordictvalu": 146, "fordictkeysandvalu": 146, "continu": [146, 166, 168, 170], "enter_fram": [146, 206, 229, 231], "unbind_enter_fram": 146, "unbind_enter_frame_al": 146, "set_month_end": 146, "total_second": 146, "animation_paus": 146, "animation_plai": 146, "animation_reset": 146, "animation_finish": 146, "animation_revers": 146, "animation_tim": 146, "math": 146, "min": 146, "max": [146, 220, 222, 224], "trunc": 146, "add_debug_info_set": 146, "decor": [146, 181, 216], "assert_not_equ": 146, "assert_fals": 146, "assert_great": 146, "assert_less": 146, "assert_less_equ": 146, "assert_defin": 146, "floor": 147, "number_2": [147, 148, 149], "21": 147, "familiar": 147, "rather": 147, "number_value_mixin": [147, 220, 222, 224, 232], "numbervaluemixin": [147, 220, 222, 224, 232], "cast": [147, 232], "calcul": [148, 165, 220, 222, 224], "typeerror": [148, 193], "unsupport": 148, "operand": 148, "multipli": 148, "divid": [148, 189], "notat": 150, "decim": [150, 194], "34": [150, 200, 206], "even": 150, "truncat": [150, 158, 218], "678": 150, "68": 150, "num": 150, "789": 150, "fixed_float_str": 150, "79": 150, "78900": 150, "to_fixed_basics_usag": 150, "result_str": [150, 200], "start_point": [152, 206], "end_point": [152, 206], "line_basic_usag": 152, "line_x": 152, "line_i": 152, "line_line_color": 152, "line_line_alpha": 152, "line_line_thick": 152, "line_line_dot_set": 152, "line_line_dash_set": 152, "line_line_round_dot_set": 152, "line_line_dash_dot_set": 152, "40": 152, "line_rotation_around_cent": 152, "line_set_rotation_around_point": 152, "line_scale_x_from_cent": 152, "line_scale_y_from_cent": 152, "line_scale_x_from_point": 152, "line_scale_y_from_point": 152, "line_flip_x": 152, "line_flip_i": 152, "line_skew_x": 152, "line_skew_i": 152, "points2d": 152, "maximum": [155, 156, 164, 194], "max_valu": 156, "min_valu": 157, "fraction": [158, 217, 218, 219], "result_int": 158, "mouse_event_abstract_click": 159, "lot": [159, 189, 232], "_coloropt": 160, "mouse_event_basic_basic_binding_usag": 160, "unbind_": 160, "event_nam": 160, "unbind_mousedown": 160, "mouse_event_basic_basic_unbinding_usag": 160, "onc": [160, 161, 163], "_all": 160, "unbind_click_al": [160, 220], "change_color_on_rectangle_click": 160, "change_x_on_rectangle_click": 160, "mouse_event_basic_unbind_all_event_handl": 160, "know": 160, "particular": 160, "on_rectangle_mousedown": 160, "absolut": [109, 160, 167, 168, 169, 170, 172, 173, 174, 175], "on_mousemov": [160, 162], "mouse_event_basic_stage_x_and_stage_i": 160, "open": [160, 179], "devtool": 160, "chrome": 160, "cursor": [160, 162, 163], "mouse_event_basic_local_x_and_local_i": 160, "on_mousedown": [160, 161], "bind_custom_ev": 160, "trigger_custom_ev": 160, "user": 161, "on_mouseup": 161, "mousedown_and_mouseup_basic_usag": 161, "mousedown_and_mouseup_unbind_interfac": 161, "stage_x": 162, "stage_i": 162, "mousemove_basic_usag": 162, "mousemove_unbind_interfac": 162, "moreov": 163, "on_mouseov": 163, "on_mouseout": 163, "mouseover_and_mouseout_basic_usag": 163, "mouseover_and_mouseout_unbind_interfac": 163, "children": [165, 185, 190, 191], "rectangle_x": [165, 182], "new_rect": 165, "num_children_basic_usag": 165, "path_basic_usag": 166, "2d": [166, 167, 168, 169, 176], "bezier": [166, 167, 168, 169, 170], "curv": [166, 167, 168, 169, 170], "3d": [166, 169, 170], "path_x": 166, "path_i": 166, "path_fill_color": 166, "path_fill_alpha": 166, "path_line_color": 166, "path_line_alpha": 166, "path_line_thick": 166, "path_line_dot_set": 166, "path_line_dash_set": 166, "path_line_round_dot_set": 166, "path_line_dash_dot_set": 166, "path_rotation_around_cent": 166, "path_rotation_around_point": 166, "path_scale_x_from_cent": 166, "path_scale_y_from_cent": 166, "path_scale_x_from_point": 166, "path_scale_y_from_point": 166, "path_flip_x": 166, "path_flip_i": 166, "path_skew_x": 166, "path_skew_i": 166, "line_joint": [166, 177, 178, 182, 229], "joint": [166, 177, 178, 182, 229], "path_bezier_2d_basic_usage_1": 167, "magenta_circl": [167, 169, 170], "cyan_circl": [167, 169, 170], "path_bezier_2d_basic_usage_2": 167, "criteria": [167, 169, 170], "minu": 167, "path_bezier_2d_rel": 167, "q": 167, "smooth": [168, 170], "symmetr": [168, 170], "path_bezier_2d_continual_basic_usag": 168, "path_bezier_2d_continual_rel": 168, "control_x1": [169, 170], "control_y1": [169, 170], "control_x2": [169, 170], "control_y2": [169, 170], "path_bezier_3d_basic_usage_1": 169, "yellow": 169, "yellow_circl": 169, "ff0": 169, "path_bezier_3d_basic_usage_2": 169, "neither": 169, "nor": 169, "path_bezier_3d_rel": 169, "420": 170, "path_bezier_3d_continual_basic_usage_1": 170, "path_bezier_3d_continual_basic_usage_2": 170, "path_bezier_3d_continual_rel": 170, "left_path": 171, "right_path": 171, "path_close_basic_usag": 171, "00": 171, "simplifi": [172, 175], "path_horizontal_basic_usag": 172, "path_horizontal_rel": 172, "h": 172, "path_line_to_basic_usag": 173, "under": [154, 173, 174, 175, 187], "path_line_to_rel": 173, "l": 173, "path_move_to_basic_usag": 174, "path_move_to_rel": 174, "m": 174, "path_vertical_basic_usag": 175, "path_vertical_rel": 175, "point_1": 176, "point_2": 176, "point2d_basic_usag": 176, "polygon_basic_usag": 177, "polygon_x": 177, "polygon_i": 177, "polygon_fill_color": 177, "polygon_fill_alpha": 177, "polygon_line_color": 177, "polygon_line_alpha": 177, "polygon_line_thick": 177, "polygon_line_dot_set": 177, "polygon_line_dash_set": 177, "polygon_line_round_dot_set": 177, "polygon_line_dash_dot_set": 177, "polygon_rotation_around_cent": 177, "polygon_set_rotation_around_point": 177, "polygon_scale_x_from_cent": 177, "polygon_scale_y_from_cent": 177, "polygon_scale_x_from_point": 177, "polygon_scale_y_from_point": 177, "polygon_flip_x": 177, "polygon_flip_i": 177, "polygon_skew_x": 177, "polygon_skew_i": 177, "polyline_basic_usag": 178, "polyline_x": 178, "polyline_i": 178, "polyline_fill_color": 178, "polyline_fill_alpha": 178, "polyline_line_color": 178, "polyline_line_alpha": 178, "polyline_line_thick": 178, "polyline_line_dot_set": 178, "polyline_line_dash_set": 178, "polyline_line_round_dot_set": 178, "polyline_line_dash_dot_set": 178, "polyline_rotation_around_cent": 178, "polyline_set_rotation_around_point": 178, "polyline_scale_x_from_cent": 178, "polyline_scale_y_from_cent": 178, "polyline_scale_x_from_point": 178, "polyline_scale_y_from_point": 178, "polyline_flip_x": 178, "polyline_flip_i": 178, "polyline_skew_x": 178, "polyline_skew_i": 178, "step": [179, 180, 205], "journei": 179, "background": 179, "Then": [179, 228], "quick_start_stage_cr": 179, "confirm": 179, "quick_start_sprite_graph": 179, "range_arr": 180, "range_basics_usage_1": 180, "range_basics_usage_2": 180, "range_basics_usage_3": 180, "arg": [180, 228], "pyright": 181, "probabl": 181, "comfort": 181, "miscellan": 181, "caus": 181, "most": [181, 183, 196], "harmless": 181, "issu": 181, "1362": 181, "rectangle_basic_usag": 182, "rectangle_i": 182, "rectangle_width": 182, "rectangle_height": 182, "rectangle_ellipse_width": 182, "rectangle_ellipse_height": 182, "rectangle_fill_color": 182, "rectangle_fill_alpha": 182, "rectangle_line_color": 182, "rectangle_line_alpha": 182, "rectangle_line_thick": 182, "rectangle_line_dot_set": 182, "rectangle_line_dash_set": 182, "rectangle_line_round_dot_set": 182, "rectangle_line_dash_dot_set": 182, "rectangle_rotation_around_cent": 182, "rectangle_set_rotation_around_point": 182, "rectangle_scale_x_from_cent": 182, "rectangle_scale_y_from_cent": 182, "rectangle_scale_x_from_point": 182, "rectangle_scale_y_from_point": 182, "rectangle_flip_x": 182, "rectangle_flip_i": 182, "rectangle_skew_x": 182, "rectangle_skew_i": 182, "text_1": 183, "rectangle_geom_basic_usag": 183, "point_radiu": 183, "ae59e3": 183, "right_x_and_top_y_circl": 183, "right_x_and_top_y_text": 183, "726efa": 183, "left_x_and_bottom_y_circl": 183, "left_x_and_bottom_y_text": 183, "6eaee6": 183, "right_x_and_bottom_y_circl": 183, "right_x_and_bottom_y_text": 183, "center_x_and_center_y_circl": 183, "center_x_and_center_y_text": 183, "rectangle_geom_each_attribute_point": 183, "remove_children_basic_usag": 185, "00ffaa": [143, 186], "return_basic_usag": 186, "At": 187, "least": 187, "px": 187, "save_overall_html_interface_basic_usag": 187, "preced": 187, "dest_dir": 187, "js_lib_dir_path": 187, "static": 187, "skip_js_lib_export": 187, "chart": 187, "member": 187, "sourc": 187, "static_collect": 187, "emb": 187, "enorm": 187, "share": 187, "cor": 187, "usual": 187, "tmp": [187, 233], "how": [57, 143, 184, 188], "sequential_animation_example_1": 188, "sequenc": [], "As": 189, "larg": 189, "set_debug_mode_basic_usag": 189, "comment": 189, "_append_constructor_express": 189, "var": [189, 232, 233], "sp_1": [189, 232], "nest": [189, 232], "howev": [190, 196], "sprite_graphics_attribut": 190, "sprite_move_instances_simultan": 190, "subsequ": [190, 207], "unnecessari": [145, 190, 235], "rect": [190, 233], "viewport": 191, "must": [191, 193], "clean": 191, "stage_background_color": 191, "stage_s": 191, "timestamp": 191, "stage_12345": 191, "line_chart_1": 191, "easili": 191, "identifi": [191, 233], "my_stag": 191, "_other_funct": 191, "185": 191, "add_to": 191, "bodi": 191, "selector": 191, "elem": 191, "graph": 191, "random": 191, "sales_chart": 191, "includ": [191, 200, 232], "stagenotcreatederror": 191, "yet": [191, 231], "string_1": [192, 193, 195], "string_2": [192, 193, 195], "world": [192, 193, 195, 206], "string_3": 193, "repeat": 193, "hellohellohello": 193, "123": 194, "45678": 194, "456": 194, "format": 194, "max_num_of_decimal_plac": 194, "abc": 194, "string_apply_max_num_of_decimal_places_basic_usage_1": 194, "limit": 194, "1970": 195, "06": 195, "04": 195, "abcdef": 196, "\u3042\u3044\u3046\u3048\u304a": 196, "string_length_basic_usage_1": 196, "unexpect": 196, "count": [196, 220, 221, 222, 223, 224, 225, 226], "unicod": 196, "expect": 196, "string_length_notes_1": 196, "string_length_notes_2": 196, "characters_length": 196, "whitespac": [198, 199, 202], "break": [198, 199, 202], "n": [198, 199, 202, 206, 207], "aabbaa": [198, 202], "string_lstrip_basic_usage_1": 198, "bbaa": 198, "string_lstrip_basic_usage_2": 198, "aabbcc": [198, 199, 202], "aabbccaa": [198, 199, 202], "bbccaa": 198, "string_rstrip_basic_usage_1": 199, "string_rstrip_basic_usage_2": 199, "str_valu": 201, "lorem": [164, 201, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "ipsum": [164, 201, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "dolor": [164, 201, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "sit": [164, 201, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "splitted_str": 201, "string_split_basic_usag": 201, "string_strip_basic_usage_1": 202, "bbcc": 202, "string_strip_basic_usage_2": 202, "font": [164, 206, 207, 210, 213, 214, 215], "svg_text": [206, 207], "32": [206, 207, 213], "svg_text_basic_usag": 206, "content": 206, "bare": 206, "comma": 206, "svg_text_note_on_the_y_baselin": 206, "svg_text_text": 206, "24": [154, 206, 217, 219], "svg_text_font_s": 206, "famili": [206, 207], "impact": [206, 207], "roman": [206, 207], "svg_text_font_famili": 206, "svg_text_x": 206, "70": 206, "svg_text_i": 206, "svg_text_fill_color": 206, "svg_text_fill_alpha": 206, "svg_text_line_color": 206, "svg_text_line_alpha": 206, "svg_text_line_thick": 206, "amet": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "nconsectetur": 206, "adipisc": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "elit": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "sed": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "eiusmod": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "tempor": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "incididunt": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "svg_text_lead": 206, "svgtextalign": [206, 207], "svg_text_align": 206, "container_sprit": 206, "vertical_x0_lin": 206, "x0_text": 206, "left_align_sample_text": 206, "sampl": 206, "52": 206, "center_align_sample_text": 206, "72": [154, 206], "right_align_sample_text": 206, "92": 206, "svg_text_align_not": 206, "svg_text_bold": 206, "svg_text_ital": 206, "svg_txt_rotation_around_cent": 206, "svg_txt_rotation_around_point": 206, "svg_txt_scale_x_from_cent": 206, "svg_txt_scale_x_from_point": 206, "svg_txt_flip_x": 206, "svg_txt_flip_i": 206, "666666": [154, 164, 206, 207], "svg_text_align_mixin": [206, 207], "span": 207, "text_span": 207, "svg_txt_span_basic_usag": 207, "svg_txt_span_notes_of_the_line_break": 207, "text_span_1": 207, "text_span_2": 207, "svg_txt_span_text": 207, "svg_txt_span_font_s": 207, "arial": 207, "svg_txt_span_font_famili": 207, "svg_txt_span_fill_color": 207, "svg_txt_span_fill_alpha": 207, "svg_txt_span_line_color": 207, "svg_txt_span_line_alpha": 207, "svg_txt_span_line_thick": 207, "svg_txt_span_bold": 207, "svg_txt_span_ital": 207, "delta": [207, 217], "svg_txt_span_delta_x": 207, "text_span_3": 207, "dolar": 207, "svg_txt_span_delta_i": 207, "14": [207, 232], "svg_text_span": 207, "lead": [164, 207, 215], "treat": 217, "datetim": [217, 218, 219], "datetime_1": [217, 218, 219], "datetime_2": [217, 218, 219], "timedelta_": [217, 218, 219], "total": [204, 217, 219], "86400": [217, 219], "datetime_3": 218, "datetime_4": 218, "timer_basic_usag": 220, "_constructoropt": [220, 222, 224], "regular": [220, 222, 224], "forev": [220, 222, 224], "_rectsopt": 221, "on_timer_1_complet": 221, "timer_complete_basic_usag": 221, "_timercompleteopt": 221, "unit": 222, "timer_delay_basic_usag": 222, "timer_delay_fps_enum": 222, "timer_event_basic_usag": 223, "current_count": [223, 226], "timer_event_this_attribut": 223, "timer_repeat_count_basic_usag": 224, "_timeropt": 225, "on_first_tim": 225, "on_first_timer_complet": 225, "on_second_tim": 225, "options_1": 225, "options_2": 225, "timer_reset_basic_usag": 225, "timer_start_and_stop_basic_usag": 226, "represent": 227, "itself": 227, "number_valu": 227, "bool_valu": 227, "array_valu": 227, "to_string_basic_usage_1": 227, "to_string_basic_usage_2": 227, "variou": 228, "trace_basic_usag": 228, "triangle_basic_usag": 229, "triangle_x": 229, "triangle_i": 229, "triangle_x1": 229, "triangle_y1": 229, "triangle_x2": 229, "triangle_y2": 229, "triangle_x3": 229, "triangle_y3": 229, "triangle_fill_color": 229, "triangle_fill_alpha": 229, "triangle_line_color": 229, "triangle_line_alpha": 229, "triangle_line_thick": 229, "triangle_line_dot_set": 229, "triangle_line_dash_set": 229, "triangle_line_round_dot_set": 229, "triangle_line_dash_dot_set": 229, "triangle_rotation_around_cent": 229, "rotation_x": 229, "rotation_i": 229, "triangle_set_rotation_around_point": 229, "triangle_scale_x_from_cent": 229, "triangle_scale_y_from_cent": 229, "scale_coordinate_x": 229, "triangle_set_scale_x_from_point": 229, "scale_coordinate_i": 229, "triangle_set_scale_y_from_point": 229, "triangle_flip_x": 229, "triangle_flip_i": 229, "triangle_skew_x": 229, "triangle_skew_i": 229, "attributeerror": [], "disappear": [], "bold": [146, 164, 230], "ital": [146, 164, 230], "true_and_false_basic_usag": 230, "unbind_enter_frame_basic_usag": 231, "on_enter_frame_1": 231, "on_enter_frame_2": 231, "unbind_enter_frame_all_basic_usag": 231, "_enterframeeventnotregist": 231, "unset": 232, "cumbersom": 232, "unset_debug_mode_basic_usag": 232, "g_1": 232, "i_12": 232, "indexof": 232, "i_13": 232, "type_nam": 232, "i_16": 232, "to_int_from_float": 232, "_convert": 232, "int_or_float": 232, "append_constructor_express": 232, "i_18": 232, "i_19": 232, "cpy": 232, "my_int": 233, "variable_name_suffix_basic_usage_1": 233, "_my_int": 233, "i_9__my_int": 233, "py": 233, "my_rectangl": 233, "variable_name_suffix_basic_usage_2": 233, "i_9__my_rectangle__x": 233, "i_10__my_rectangle__i": 233, "i_12__my_rectangle__width": 233, "rect_1__my_rectangl": 233, "i_16__my_rectangle__width": 233, "i_17__my_rectangle__height": 233, "attr": 233, "s_1__my_rectangle__fill_color": 233, "n_2__my_rectangle__fill_alpha": 233, "i_15__my_rectangle__line_thick": 233, "n_3__my_rectangle__line_alpha": 233, "650": 234, "210": 234, "145": 234, "53": 234, "what_apysc_can_do_draw_vector_graph": 234, "what_apysc_can_do_mouse_event_click": 234, "alpha_direct": 234, "current_alpha": 234, "what_apysc_can_do_timer_anim": 234, "tween": 234, "creation": 235, "essenti": 235, "asynchron": 235, "0x7f7f22e57fa0": [], "made": 235, "700": [65, 153], "colors_memb": [65, 153], "color_nam": [65, 153], "constant_names_arr": [65, 153], "colors_arr": [65, 153], "comput": 65, "0x7f9bec67baf0": [], "materialdesigncolor": [62, 146], "materi": 153, "design": [153, 154], "red_100_ffcdd2": 153, "red_300_e57373": 153, "indigo_800_283593": 153, "indigo_a200_536df": 153, "gray_800_424242": 153, "cyan_200_80deea": 153, "material_design_colors_basic_usag": 153, "material_design_colors_definit": 153, "overview": 153, "zfill": 146, "widgth": 204, "copi": [197, 203, 204], "00001": 204, "string_zfill_basic_usag": 204, "red": [63, 184], "green": [63, 143], "255": [57, 63, 143, 184], "8bit": 63, "unsign": 63, "black_color": 63, "black_rectangl": 63, "white_color": 63, "white_rectangl": 63, "cyan_color": 63, "128": 63, "cyan_rectangl": 63, "color_from_rgb_basic_usag": 63, "rgb": 63, "00ff00": 63, "from_rgb": [62, 146], "to_hex": 146, "1f": 151, "28": 151, "hex_str": 151, "1c": 151, "int_and_number_to_hex_basic_usag": 151, "lowercas": 197, "abc1_": [197, 203], "string_lower_basic_usag": 197, "uppercas": 203, "string_upper_basic_usag": 203, "red_color": [62, 146], "red_color_basic_usag": 184, "aa00ff": 143, "green_color_basic_usag": 143, "green_color": [62, 146], "clor": [], "ffaa00": 57, "blue_color_basic_usag": 57, "aaff00": 57, "blue_color": [62, 146], "being": 200, "012345": 200, "12345": 200, "string_slice_basic_usag": 200, "0x7f45d423a2b0": [], "multi_line_text": [164, 208, 209, 210, 211, 212, 214, 215, 216], "multi": 164, "wrap": 164, "certain": 164, "text_align": [146, 164, 209], "consectetur": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "ut": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "labor": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "et": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "magna": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "aliqua": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "enim": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "minim": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "veniam": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "cyan_00aaff": [154, 164, 205, 212], "multi_line_text_basic_usag": 164, "multilinetext": [146, 208, 209, 210, 211, 212, 213, 214, 215, 216], "css_text_align": 164, "csstextalign": [164, 209], "text_align_last": [146, 164], "css_text_align_last": 164, "csstextalignlast": 164, "underlin": [146, 164], "multilin": 164, "element": 164, "gray_666666": 164, "solid": 164, "text_fill_color_basic_usag": 212, "text_fill_alpha_basic_usag": 211, "170": [208, 209, 210, 211, 214], "text_bold_basic_usag": 210, "weight": 210, "text_italic_basic_usag": 214, "css_text_align_left": 208, "css_text_align_cent": 208, "css_text_align_right": 208, "evenli": [208, 209], "css_text_align_justifi": 208, "auto": 164, "css_text_align_last_auto": 209, "css_text_align_last_left": 209, "css_text_align_last_cent": 209, "css_text_align_last_right": 209, "css_text_align_last_justifi": 209, "font_size_16_text": 213, "font_size_32_text": 213, "text_font_size_basic_usag": 213, "190": 213, "gray_aaaaaa": [215, 216], "text_underline_basic_usag": 216, "195": 216, "line_height": [146, 164], "text_line_height_basic_usag": 215, "0x7f2367f69400": [], "icon": 146, "icon_nam": [], "materialsearchicon": [], "materialaccountcircleicon": [], "margin": [], "icon_s": [], "icon_num": [], "search_icon": [], "info_icon": [], "materialinfoicon": [], "home_icon": 154, "materialhomeicon": 154, "magenta_ff00ff": [], "material_icons_basic_usag": [], "apach": 154, "licens": [], "0x7f750e8a79d0": [], "materialtimelineicon": 154, "144": [], "materialbuildicon": 154, "materialcheckcircleicon": 154, "material_icon_basic_usage_1": 154, "build_icon": 154, "check_circle_icon": 154, "material_icon_basic_usage_2": 154, "168": 154, "clamp": 146, "within": 155, "min_": 155, "max_": 155, "math_clamp_basic_usag": 155, "_valuetyp": 155, "svgmask": 146, "add_svg_masking_object": [], "svg_mask": [], "mask": [], "overlap": 205, "masking_object": 205, "svg_mask_basic_usag": 205, "fill_color_mixin": [], "fillcolormixin": [], "possibl": 205, "graphics_bas": 205, "conveni": 205, "By": 205, "while": 205, "svg_mask_sprite_container_exampl": 205, "0x7fc97c13cb80": [], "target_coordinate_space_object": [109, 183], "omit": 109, "substanti": 109, "get_bounds_basic_usage_1": 109, "get_bounds_basic_usage_2": 109, "0x7fc88d17f040": 99}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"about": [0, 5], "handler": [0, 61, 160, 188], "option": [0, 55, 187], "type": [0, 4, 8, 33, 82, 160, 181, 195, 234, 235], "The": [0, 1, 181, 234], "dictionari": [0, 81, 82, 83, 84, 146], "i": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 20, 21, 23, 24, 25, 28, 30, 31, 32, 33, 35, 38, 40, 41, 42, 43, 45, 46, 47, 57, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 81, 83, 84, 85, 90, 92, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 150, 151, 152, 153, 155, 156, 157, 158, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 227, 228, 229, 232, 233], "accept": [0, 62, 195], "typeddict": 0, "annot": [0, 4, 8, 33, 181], "add_child": [1, 191], "remove_child": [1, 191], "interfac": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 66, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 99, 100, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 147, 150, 152, 155, 156, 157, 158, 159, 160, 161, 162, 163, 165, 166, 176, 177, 178, 182, 185, 187, 188, 189, 190, 191, 192, 194, 198, 199, 201, 202, 205, 206, 207, 218, 219, 221, 225, 226, 227, 228, 229, 231, 232, 234], "what": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 150, 151, 152, 153, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "ar": [1, 19, 26, 27, 29, 34, 37, 39, 44, 48, 49, 50, 51, 52, 53, 54, 56, 77, 87, 88, 89, 91, 100, 114, 123, 124, 125, 126, 142, 161, 163, 226, 230, 231], "automat": 1, "addit": [1, 148, 190, 193], "children": 1, "basic": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 82, 83, 84, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233], "usag": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 82, 83, 84, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233], "see": [1, 2, 33, 45, 47, 48, 49, 50, 51, 52, 53, 54, 59, 61, 66, 79, 85, 86, 88, 89, 94, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 111, 119, 135, 144, 159, 160, 161, 162, 163, 179, 181, 188, 189, 190, 220, 222, 231, 232], "also": [1, 2, 33, 45, 47, 48, 49, 50, 51, 52, 53, 54, 59, 61, 66, 79, 85, 86, 88, 89, 94, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 111, 119, 135, 144, 159, 160, 161, 162, 163, 179, 181, 188, 189, 190, 220, 222, 231, 232], "api": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "add_debug_info_set": 2, "decor": 2, "thi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 20, 21, 23, 24, 25, 28, 30, 31, 32, 35, 38, 40, 41, 42, 43, 45, 46, 47, 57, 60, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 83, 84, 90, 92, 93, 95, 97, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 150, 151, 152, 153, 155, 156, 157, 158, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 180, 182, 183, 184, 185, 187, 189, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 222, 223, 224, 225, 227, 228, 229, 232, 233], "note": [2, 5, 18, 23, 29, 30, 31, 42, 48, 50, 58, 60, 81, 84, 93, 96, 97, 98, 122, 138, 147, 151, 152, 165, 177, 178, 182, 189, 190, 196, 206, 207, 228, 229, 232], "mypi": [2, 181], "set": [2, 4, 6, 7, 18, 59, 82, 94, 117, 118, 119, 120, 127, 134, 141, 160, 166, 167, 168, 169, 170, 172, 173, 174, 175, 181, 187, 188, 191, 222, 224, 233, 234], "animationbas": [3, 4, 5, 16, 22], "class": [3, 4, 5, 8, 16, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 57, 58, 59, 60, 62, 63, 65, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 81, 82, 85, 86, 87, 88, 89, 90, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 134, 143, 144, 146, 147, 150, 151, 152, 153, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 184, 186, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 229], "start": [3, 146, 179, 226], "target": 4, "properti": [4, 8, 33, 41, 42, 57, 58, 60, 69, 70, 71, 72, 73, 75, 77, 78, 84, 86, 90, 91, 97, 112, 113, 114, 115, 116, 118, 119, 120, 121, 122, 124, 126, 127, 141, 143, 147, 152, 160, 166, 176, 177, 178, 182, 183, 184, 191, 192, 196, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 222, 224, 229, 234], "gener": [4, 8, 33, 82, 160], "animation_complet": [5, 188], "other": [5, 146, 152], "call": [5, 111, 142, 188], "order": 5, "anim": [6, 7, 12, 18, 22, 146, 188, 234], "delai": [6, 18, 222], "durat": [7, 18], "animationev": 8, "constructor": [8, 33, 58, 60, 62, 68, 81, 96, 97, 98, 144, 147, 152, 154, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 190, 191, 192, 205, 206, 207, 220, 222, 223, 224, 229], "animation_fill_alpha": 9, "animation_fill_color": 10, "animation_finish": 11, "abstract": [12, 86, 94, 159], "apysc": [12, 86, 94, 108, 146, 159, 234, 235], "can": [12, 86, 94, 159, 234], "do": [12, 86, 94, 159, 234], "its": [12, 16, 86, 94, 159, 205, 234], "exampl": [12, 60, 95, 97, 152, 159, 166, 176, 177, 178, 182, 206, 207, 208, 209, 229], "each": [12, 16, 18, 22, 59, 94, 146, 154, 183, 187, 234], "attribut": [12, 81, 160, 183, 190, 223], "eas": [12, 18, 95], "x": [12, 60, 86, 91, 97, 152, 166, 176, 177, 178, 182, 206, 229], "y": [12, 60, 86, 91, 97, 152, 166, 176, 177, 178, 182, 206, 229], "move": [12, 190], "width": [12, 97, 182, 183], "height": [12, 97, 182, 183], "fill": [12, 94, 127], "color": [12, 57, 62, 63, 65, 127, 141, 143, 146, 153, 184, 191], "alpha": [12, 127, 141], "line": [12, 94, 134, 141, 152, 207], "thick": [12, 141], "radiu": [12, 60], "rotat": [12, 86], "around": 12, "center": [12, 208, 209], "point": [12, 183], "specifi": 12, "scale": [12, 86, 206], "from": [12, 111], "animation_line_alpha": 13, "animation_line_color": 14, "animation_line_thick": 15, "method": [16, 33, 60, 63, 74, 81, 97, 109, 151, 152, 155, 166, 177, 178, 182, 183, 197, 200, 203, 204, 205, 206, 207, 217, 219, 227, 229], "chain": 16, "relat": [16, 146, 205, 206], "return": [16, 22, 111, 129, 133, 136, 139, 186, 195], "instanc": [16, 22, 29, 111, 134, 137, 140, 142, 188, 190], "animation_mov": 17, "animation_parallel": 18, "": [18, 59, 154, 206], "animation_paus": 19, "animation_plai": 19, "animation_radiu": 20, "animation_reset": 21, "valu": [22, 33, 58, 81, 108, 111, 129, 133, 136, 139, 147, 151, 192, 195, 222], "subclass": 22, "animation_revers": 23, "animation_rotation_around_cent": 24, "animation_rotation_around_point": 25, "animation_scale_x_from_cent": 26, "animation_scale_y_from_cent": 26, "animation_scale_x_from_point": 27, "animation_scale_y_from_point": 27, "animation_tim": 28, "animation_width": 29, "animation_height": 29, "ellips": [29, 30, 31, 97], "animation_x": 30, "circl": [30, 31, 60], "animation_i": 31, "append_js_express": 32, "arrai": [33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 146], "fixed_value_typ": 33, "argument": [33, 55, 160, 222, 224, 233], "append": 34, "push": 34, "clear": [35, 128], "comparison": [36, 58, 149, 195], "extend": 37, "concat": 37, "index_of": 38, "insert": 39, "insert_at": 39, "join": 40, "last_valu": 41, "length": [42, 84, 196], "len": [42, 84], "function": [42, 84, 180, 191], "pop": 43, "remov": 44, "remove_at": 44, "revers": [45, 58], "slice": [46, 200], "sort": 47, "assert_arrays_equ": 48, "assert_arrays_not_equ": 48, "assert_equ": [48, 50, 51], "assert_not_equ": [48, 50, 51], "assert_defin": 49, "assert_undefin": 49, "assert_dicts_equ": 50, "assert_dicts_not_equ": 50, "assert_great": 52, "assert_greater_equ": 52, "assert_less": 53, "assert_less_equ": 53, "assert_tru": 54, "assert_fals": 54, "javascript": [55, 187, 235], "assert": 55, "behavior": [55, 148, 149], "name": [55, 160, 187], "result": 55, "msg": 55, "bind": [56, 88, 146, 160], "trigger": 56, "custom": 56, "event": [56, 61, 88, 100, 146, 159, 160, 234], "unbind": [56, 61, 160, 161, 162, 163], "bind_custom_ev": 56, "trigger_custom_ev": 56, "unbind_custom_ev": 56, "unbind_custom_event_al": 56, "boolean": [58, 146], "bool": 58, "alia": [58, 147, 228], "not_": 58, "branch": [59, 146], "instruct": [59, 146], "scope": 59, "variabl": [59, 235], "revert": 59, "These": 59, "execut": 59, "statement": 59, "code": [59, 62, 181], "draw_circl": [60, 129], "fill_color": [60, 97, 113, 127, 166, 177, 178, 182, 206, 207, 212, 229], "fill_alpha": [60, 97, 112, 127, 166, 177, 178, 182, 206, 207, 211, 229], "line_color": [60, 97, 116, 141, 152, 166, 177, 178, 182, 206, 207, 229], "line_alpha": [60, 97, 115, 141, 152, 166, 177, 178, 182, 206, 207, 229], "line_thick": [60, 97, 121, 141, 152, 166, 177, 178, 182, 206, 207, 229], "line_dot_set": [60, 97, 119, 141, 152, 166, 177, 178, 182, 229], "line_dash_set": [60, 97, 118, 141, 152, 166, 177, 178, 182, 229], "line_round_dot_set": [60, 97, 120, 141, 152, 166, 177, 178, 182, 229], "line_dash_dot_set": [60, 97, 117, 141, 152, 166, 177, 178, 182, 229], "rotation_around_cent": [60, 97, 122, 152, 166, 177, 178, 182, 206, 229], "set_rotation_around_point": [60, 97, 123, 152, 166, 177, 178, 182, 206, 229], "get_rotation_around_point": [60, 97, 123, 152, 166, 177, 178, 182, 206, 229], "scale_x_from_cent": [60, 97, 124, 152, 166, 177, 178, 182, 206, 229], "scale_y_from_cent": [60, 97, 124, 152, 166, 177, 178, 182, 229], "set_scale_x_from_point": [60, 97, 125, 152, 166, 177, 178, 182, 206, 229], "get_scale_x_from_point": [60, 97, 125, 152, 166, 177, 178, 182, 206, 229], "set_scale_y_from_point": [60, 97, 125, 152, 166, 177, 178, 182, 229], "get_scale_y_from_point": [60, 97, 125, 152, 166, 177, 178, 182, 229], "flip_x": [60, 97, 114, 152, 166, 177, 178, 182, 206, 229], "flip_i": [60, 97, 114, 152, 166, 177, 178, 182, 206, 229], "skew_x": [60, 97, 126, 152, 166, 177, 178, 182, 229], "skew_i": [60, 97, 126, 152, 166, 177, 178, 182, 229], "click": [61, 159], "unbind_click": 61, "all": [61, 160], "unbind_click_al": 61, "hexadecim": 62, "colorless": 64, "constant": [64, 146, 230], "defin": [65, 153], "contain": [66, 146, 179, 191], "continu": 67, "datetim": [68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 146], "dai": [69, 217, 218], "hour": 70, "millisecond": 71, "minut": 72, "month": 73, "now": 74, "second": 75, "set_month_end": 76, "weekday_j": 77, "weekday_pi": 77, "year": 78, "dblclick": 79, "unbind_dblclick": 79, "unbind_dblclick_al": 79, "delet": [80, 81, 117, 118, 119, 120], "setter": [81, 108, 176], "getter": [81, 108, 176], "get": 83, "displayobject": [85, 86, 87, 88, 89, 90, 91, 146, 190, 205], "graphicsbas": [86, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 146], "base": 86, "visibl": [86, 90], "flip": 86, "skew": 86, "get_css": 87, "set_css": 87, "mous": [88, 146, 160, 234], "parent": 89, "remove_from_par": 89, "augment": 91, "assign": 91, "display_on_colaboratori": 92, "requir": [92, 93], "display_on_jupyt": 93, "draw": [94, 234], "style": [94, 134], "enum": [95, 107, 222], "differ": [95, 136], "between": [95, 136], "out": 95, "elif": 96, "draw_ellips": [97, 133], "els": 98, "enter_fram": 99, "which": 99, "should": 99, "we": 99, "us": [99, 234, 235], "timer": [99, 146, 220, 221, 222, 224, 225, 226, 234], "prevent_default": 100, "stop_propag": 100, "forarrayindic": 101, "forarrayindicesandvalu": 102, "forarrayvalu": 103, "fordictkei": 104, "fordictkeysandvalu": 105, "fordictvalu": 106, "fp": [107, 222], "fundament": 108, "data": [108, 146, 235], "get_bound": [109, 183], "get_child_at": [110, 191], "graphic": [111, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 179, 190, 234], "sprite": [111, 179, 190], "delete_line_dash_dot_set": 117, "delete_line_dash_set": 118, "delete_line_dot_set": 119, "delete_line_round_dot_set": 120, "rotation_around_point": 123, "get_scale_from_point": 125, "set_scale_from_point": 125, "begin_fil": 127, "opac": [127, 141], "draw_dash_dotted_lin": 130, "draw_dashed_lin": 131, "draw_dotted_lin": 132, "draw_lin": [134, 152], "ignor": [134, 181], "draw_path": 135, "draw_polygon": [136, 176, 177], "line_to": [136, 142, 178], "draw_rect": [137, 182], "rectangl": [137, 182], "draw_round_dotted_lin": 138, "draw_round_rect": 139, "draw_triangl": [140, 229], "triangl": [140, 229], "line_styl": 141, "cap": 141, "joint": 141, "dot": 141, "dash": 141, "round": 141, "line_cap": 141, "line_joint": 141, "move_to": [142, 178], "thei": 142, "sequenti": [142, 188], "after": 142, "polylin": [142, 178], "If": 144, "import": 145, "convent": 145, "document": 146, "project": 146, "link": 146, "quick": [146, 179], "guid": [146, 179], "export": [146, 179, 234], "child": 146, "int": [146, 147, 148, 149, 150, 151], "number": [146, 147, 148, 149, 150, 151], "string": [146, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204], "svg": 146, "text": [146, 206, 207, 210, 211, 212, 213, 214, 215, 216], "geometri": 146, "common": [146, 148, 149], "mouseev": [146, 159, 160], "loop": 146, "enter": 146, "frame": 146, "timedelta": [146, 217, 218, 219], "mathemat": 146, "manipul": 146, "debug": 146, "test": 146, "float": 147, "arithmet": 148, "oper": [148, 149, 193, 195], "subtract": 148, "multipl": [148, 193], "divis": 148, "floor": 148, "modulo": 148, "equal": [149, 195], "Not": [149, 195], "less": [149, 195], "than": [149, 195], "greater": [149, 195], "to_fix": 150, "math": [155, 156, 157, 158], "max": 156, "min": 157, "trunc": 158, "stage_x": 160, "stage_i": 160, "local_x": 160, "local_i": 160, "mousedown": 161, "mouseup": 161, "unbind_mousedown": 161, "unbind_mousedown_al": 161, "unbind_mouseup": 161, "unbind_mouseup_al": 161, "mousemov": 162, "unbind_mousemov": 162, "unbind_mousemove_al": 162, "mouseov": 163, "mouseout": 163, "unbind_mouseov": 163, "unbind_mouseover_al": 163, "unbind_mouseout": 163, "unbind_mouseout_al": 163, "num_children": [165, 191], "path": [166, 187], "pathmoveto": [166, 174], "pathlineto": [166, 173], "pathhorizont": [166, 172], "pathvert": [166, 175], "pathclos": [166, 171], "pathbezier2d": [166, 167], "pathbezier2dcontinu": [166, 168], "pathbezier3d": [166, 169], "pathbezier3dcontinu": [166, 170], "rel": [167, 168, 169, 170, 172, 173, 174, 175], "posit": [167, 168, 169, 170, 172, 173, 174, 175], "point2d": 176, "polygon": 177, "instal": 179, "creat": [179, 191], "stage": [179, 191], "html": [179, 187, 234], "add": 179, "vector": [179, 234], "rang": 180, "recommend": 181, "checker": 181, "librari": [181, 187, 235], "error": 181, "ellipse_width": 182, "ellipse_height": 182, "rectanglegeom": 183, "left_x": 183, "center_x": 183, "right_x": 183, "top_i": 183, "center_i": 183, "bottom_i": 183, "remove_children": 185, "save_overall_html": 187, "minifi": 187, "lib": 187, "directori": 187, "skip": 187, "chang": [187, 235], "file": 187, "html_file_nam": 187, "bundl": 187, "signl": 187, "embed_js_lib": 187, "stdout": 187, "verbos": 187, "same": 188, "set_debug_mod": 189, "autom": 190, "simultan": 190, "background": 191, "size": 191, "element": 191, "id": 191, "get_stag": 191, "stage_elem_id": 191, "apply_max_num_of_decimal_plac": 194, "right": [195, 208, 209], "side": 195, "emoji": 196, "lstrip": 198, "rstrip": 199, "split": 201, "strip": 202, "svgtext": [206, 207], "baselin": 206, "coordin": [205, 206], "font_siz": [206, 207, 213], "font_famili": [206, 207], "lead": 206, "align": 206, "bold": [206, 207, 210], "ital": [206, 207, 214], "svgtextspan": 207, "break": 207, "delta_x": 207, "delta_i": 207, "create_with_svg_text_span": 207, "total_second": [217, 219], "timer_complet": 221, "timerev": 223, "repeat_count": 224, "reset": 225, "stop": 226, "to_str": 227, "trace": 228, "print": 228, "x1": 229, "y1": 229, "x2": 229, "y2": 229, "x3": 229, "y3": 229, "true_": 230, "false_": 230, "initi": [], "time": [], "unbind_enter_fram": 231, "unbind_enter_frame_al": 231, "unset_debug_mod": 232, "variable_name_suffix": 233, "current": 234, "implement": 234, "write": 234, "python": [234, 235], "jupyt": 234, "mani": 234, "why": 235, "doesn": 235, "t": 235, "built": 235, "need": 235, "convert": 235, "track": 235, "refer": [65, 153], "materialdesigncolor": 153, "zfill": 204, "from_rgb": 63, "to_hex": 151, "ap": 151, "lower": 197, "upper": 203, "red_color": 184, "green_color": 143, "blue_color": 57, "multilinetext": 164, "text_align": 208, "csstextalign": 208, "left": [208, 209], "justifi": [208, 209], "text_align_last": 209, "csstextalignlast": 209, "auto": 209, "underlin": 216, "line_height": 215, "materi": [146, 154], "design": 146, "icon": 154, "overview": [], "licens": 154, "clamp": 155, "mask": [146, 205], "svgmask": 205, "add_svg_masking_object": 205, "svg_mask": 205, "case": 205, "when": 205, "you": 205, "want": 205, "synchron": 205}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx": 58}, "alltitles": {"About the handler options\u2019 type": [[0, "about-the-handler-options-type"]], "The dictionary type is acceptable": [[0, "the-dictionary-type-is-acceptable"]], "About the TypedDict annotation": [[0, "about-the-typeddict-annotation"]], "See also": [[2, "see-also"], [48, "see-also"], [49, "see-also"], [50, "see-also"], [51, "see-also"], [52, "see-also"], [53, "see-also"], [54, "see-also"], [59, "see-also"], [61, "see-also"], [79, "see-also"], [85, "see-also"], [86, "see-also"], [88, "see-also"], [89, "see-also"], [94, "see-also"], [96, "see-also"], [98, "see-also"], [101, "see-also"], [102, "see-also"], [103, "see-also"], [104, "see-also"], [105, "see-also"], [106, "see-also"], [107, "see-also"], [111, "see-also"], [119, "see-also"], [144, "see-also"], [159, "see-also"], [160, "see-also"], [161, "see-also"], [162, "see-also"], [163, "see-also"], [179, "see-also"], [181, "see-also"], [188, "see-also"], [189, "see-also"], [232, "see-also"], [220, "see-also"], [222, "see-also"], [1, "see-also"], [33, "see-also"], [45, "see-also"], [47, "see-also"], [66, "see-also"], [99, "see-also"], [135, "see-also"], [190, "see-also"], [231, "see-also"]], "add_debug_info_setting decorator interface": [[2, "add-debug-info-setting-decorator-interface"]], "What interface is this?": [[2, "what-interface-is-this"], [3, "what-interface-is-this"], [5, "what-interface-is-this"], [9, "what-interface-is-this"], [10, "what-interface-is-this"], [11, "what-interface-is-this"], [13, "what-interface-is-this"], [14, "what-interface-is-this"], [15, "what-interface-is-this"], [17, "what-interface-is-this"], [18, "what-interface-is-this"], [20, "what-interface-is-this"], [21, "what-interface-is-this"], [23, "what-interface-is-this"], [24, "what-interface-is-this"], [25, "what-interface-is-this"], [28, "what-interface-is-this"], [30, "what-interface-is-this"], [31, "what-interface-is-this"], [32, "what-interface-is-this"], [35, "what-interface-is-this"], [61, "what-interface-is-this"], [76, "what-interface-is-this"], [79, "what-interface-is-this"], [80, "what-interface-is-this"], [92, "what-interface-is-this"], [93, "what-interface-is-this"], [108, "what-interface-is-this"], [117, "what-interface-is-this"], [118, "what-interface-is-this"], [119, "what-interface-is-this"], [120, "what-interface-is-this"], [128, "what-interface-is-this"], [150, "what-interface-is-this"], [155, "what-interface-is-this"], [156, "what-interface-is-this"], [157, "what-interface-is-this"], [158, "what-interface-is-this"], [162, "what-interface-is-this"], [187, "what-interface-is-this"], [189, "what-interface-is-this"], [194, "what-interface-is-this"], [198, "what-interface-is-this"], [199, "what-interface-is-this"], [201, "what-interface-is-this"], [202, "what-interface-is-this"], [227, "what-interface-is-this"], [228, "what-interface-is-this"], [232, "what-interface-is-this"], [109, "what-interface-is-this"], [221, "what-interface-is-this"], [225, "what-interface-is-this"], [38, "what-interface-is-this"], [40, "what-interface-is-this"], [42, "what-interface-is-this"], [43, "what-interface-is-this"], [45, "what-interface-is-this"], [46, "what-interface-is-this"], [47, "what-interface-is-this"], [66, "what-interface-is-this"], [69, "what-interface-is-this"], [70, "what-interface-is-this"], [71, "what-interface-is-this"], [72, "what-interface-is-this"], [73, "what-interface-is-this"], [74, "what-interface-is-this"], [75, "what-interface-is-this"], [78, "what-interface-is-this"], [83, "what-interface-is-this"], [84, "what-interface-is-this"], [90, "what-interface-is-this"], [99, "what-interface-is-this"], [110, "what-interface-is-this"], [112, "what-interface-is-this"], [113, "what-interface-is-this"], [115, "what-interface-is-this"], [116, "what-interface-is-this"], [121, "what-interface-is-this"], [122, "what-interface-is-this"], [127, "what-interface-is-this"], [129, "what-interface-is-this"], [130, "what-interface-is-this"], [131, "what-interface-is-this"], [132, "what-interface-is-this"], [133, "what-interface-is-this"], [134, "what-interface-is-this"], [135, "what-interface-is-this"], [136, "what-interface-is-this"], [137, "what-interface-is-this"], [138, "what-interface-is-this"], [139, "what-interface-is-this"], [140, "what-interface-is-this"], [141, "what-interface-is-this"], [165, "what-interface-is-this"], [185, "what-interface-is-this"], [207, "what-interface-is-this"], [218, "what-interface-is-this"], [219, "what-interface-is-this"]], "Basic usage": [[2, "basic-usage"], [3, "basic-usage"], [4, "basic-usage"], [5, "basic-usage"], [6, "basic-usage"], [7, "basic-usage"], [8, "basic-usage"], [9, "basic-usage"], [10, "basic-usage"], [11, "basic-usage"], [13, "basic-usage"], [14, "basic-usage"], [15, "basic-usage"], [17, "basic-usage"], [18, "basic-usage"], [19, "basic-usage"], [20, "basic-usage"], [21, "basic-usage"], [22, "basic-usage"], [23, "basic-usage"], [24, "basic-usage"], [25, "basic-usage"], [26, "basic-usage"], [27, "basic-usage"], [28, "basic-usage"], [29, "basic-usage"], [30, "basic-usage"], [31, "basic-usage"], [32, "basic-usage"], [35, "basic-usage"], [36, "basic-usage"], [48, "basic-usage"], [49, "basic-usage"], [50, "basic-usage"], [51, "basic-usage"], [52, "basic-usage"], [53, "basic-usage"], [54, "basic-usage"], [56, "basic-usage"], [57, "basic-usage"], [62, "basic-usage"], [63, "basic-usage"], [64, "basic-usage"], [65, "basic-usage"], [67, "basic-usage"], [76, "basic-usage"], [80, "basic-usage"], [82, "basic-usage"], [88, "basic-usage"], [92, "basic-usage"], [93, "basic-usage"], [95, "basic-usage"], [96, "basic-usage"], [98, "basic-usage"], [101, "basic-usage"], [102, "basic-usage"], [103, "basic-usage"], [104, "basic-usage"], [105, "basic-usage"], [106, "basic-usage"], [107, "basic-usage"], [117, "basic-usage"], [118, "basic-usage"], [119, "basic-usage"], [120, "basic-usage"], [128, "basic-usage"], [143, "basic-usage"], [144, "basic-usage"], [150, "basic-usage"], [151, "basic-usage"], [153, "basic-usage"], [154, "basic-usage"], [155, "basic-usage"], [156, "basic-usage"], [157, "basic-usage"], [158, "basic-usage"], [162, "basic-usage"], [167, "basic-usage"], [168, "basic-usage"], [169, "basic-usage"], [170, "basic-usage"], [171, "basic-usage"], [172, "basic-usage"], [173, "basic-usage"], [174, "basic-usage"], [175, "basic-usage"], [180, "basic-usage"], [184, "basic-usage"], [186, "basic-usage"], [187, "basic-usage"], [189, "basic-usage"], [194, "basic-usage"], [196, "basic-usage"], [198, "basic-usage"], [199, "basic-usage"], [200, "basic-usage"], [201, "basic-usage"], [202, "basic-usage"], [205, "basic-usage"], [208, "basic-usage"], [209, "basic-usage"], [215, "basic-usage"], [223, "basic-usage"], [227, "basic-usage"], [228, "basic-usage"], [230, "basic-usage"], [232, "basic-usage"], [233, "basic-usage"], [109, "basic-usage"], [87, "basic-usage"], [197, "basic-usage"], [203, "basic-usage"], [204, "basic-usage"], [210, "basic-usage"], [212, "basic-usage"], [213, "basic-usage"], [214, "basic-usage"], [216, "basic-usage"], [211, "basic-usage"], [220, "basic-usage"], [221, "basic-usage"], [222, "basic-usage"], [224, "basic-usage"], [225, "basic-usage"], [226, "basic-usage"], [34, "basic-usage"], [37, "basic-usage"], [38, "basic-usage"], [39, "basic-usage"], [40, "basic-usage"], [41, "basic-usage"], [42, "basic-usage"], [43, "basic-usage"], [44, "basic-usage"], [45, "basic-usage"], [46, "basic-usage"], [47, "basic-usage"], [60, "basic-usage"], [66, "basic-usage"], [68, "basic-usage"], [69, "basic-usage"], [70, "basic-usage"], [71, "basic-usage"], [72, "basic-usage"], [73, "basic-usage"], [74, "basic-usage"], [75, "basic-usage"], [77, "basic-usage"], [78, "basic-usage"], [83, "basic-usage"], [84, "basic-usage"], [90, "basic-usage"], [91, "basic-usage"], [97, "basic-usage"], [99, "basic-usage"], [110, "basic-usage"], [112, "basic-usage"], [113, "basic-usage"], [114, "basic-usage"], [115, "basic-usage"], [116, "basic-usage"], [121, "basic-usage"], [122, "basic-usage"], [123, "basic-usage"], [124, "basic-usage"], [125, "basic-usage"], [127, "basic-usage"], [129, "basic-usage"], [130, "basic-usage"], [131, "basic-usage"], [132, "basic-usage"], [133, "basic-usage"], [134, "basic-usage"], [135, "basic-usage"], [136, "basic-usage"], [137, "basic-usage"], [138, "basic-usage"], [139, "basic-usage"], [140, "basic-usage"], [141, "basic-usage"], [142, "basic-usage"], [152, "basic-usage"], [164, "basic-usage"], [165, "basic-usage"], [166, "basic-usage"], [176, "basic-usage"], [177, "basic-usage"], [178, "basic-usage"], [182, "basic-usage"], [183, "basic-usage"], [185, "basic-usage"], [206, "basic-usage"], [207, "basic-usage"], [217, "basic-usage"], [218, "basic-usage"], [219, "basic-usage"], [229, "basic-usage"], [231, "basic-usage"]], "Notes of the mypy setting": [[2, "notes-of-the-mypy-setting"]], "AnimationBase class start interface": [[3, "animationbase-class-start-interface"]], "start API": [[3, "start-api"], [226, "start-api"]], "AnimationBase class target property interface": [[4, "animationbase-class-target-property-interface"]], "What property is this?": [[4, "what-property-is-this"], [57, "what-property-is-this"], [143, "what-property-is-this"], [184, "what-property-is-this"], [196, "what-property-is-this"], [208, "what-property-is-this"], [209, "what-property-is-this"], [215, "what-property-is-this"], [210, "what-property-is-this"], [212, "what-property-is-this"], [213, "what-property-is-this"], [214, "what-property-is-this"], [216, "what-property-is-this"], [211, "what-property-is-this"], [41, "what-property-is-this"]], "Generic type annotation setting": [[4, "generic-type-annotation-setting"]], "target property API": [[4, "target-property-api"]], "AnimationBase class animation_complete interface": [[5, "animationbase-class-animation-complete-interface"]], "Notes about the other interface calling order": [[5, "notes-about-the-other-interface-calling-order"]], "animation_complete API": [[5, "animation-complete-api"]], "Animation interfaces delay setting": [[6, "animation-interfaces-delay-setting"]], "What setting is this?": [[6, "what-setting-is-this"], [7, "what-setting-is-this"]], "Animation interfaces duration setting": [[7, "animation-interfaces-duration-setting"]], "AnimationEvent class": [[8, "animationevent-class"]], "What class is this?": [[8, "what-class-is-this"], [62, "what-class-is-this"], [65, "what-class-is-this"], [95, "what-class-is-this"], [101, "what-class-is-this"], [102, "what-class-is-this"], [103, "what-class-is-this"], [104, "what-class-is-this"], [105, "what-class-is-this"], [106, "what-class-is-this"], [107, "what-class-is-this"], [153, "what-class-is-this"], [167, "what-class-is-this"], [168, "what-class-is-this"], [169, "what-class-is-this"], [170, "what-class-is-this"], [171, "what-class-is-this"], [172, "what-class-is-this"], [173, "what-class-is-this"], [174, "what-class-is-this"], [175, "what-class-is-this"], [205, "what-class-is-this"], [223, "what-class-is-this"], [60, "what-class-is-this"], [68, "what-class-is-this"], [97, "what-class-is-this"], [152, "what-class-is-this"], [164, "what-class-is-this"], [166, "what-class-is-this"], [177, "what-class-is-this"], [178, "what-class-is-this"], [182, "what-class-is-this"], [183, "what-class-is-this"], [206, "what-class-is-this"], [217, "what-class-is-this"], [229, "what-class-is-this"]], "this property": [[8, "this-property"]], "Generic type annotation": [[8, "generic-type-annotation"], [33, "generic-type-annotation"]], "AnimationEvent constructor API": [[8, "animationevent-constructor-api"]], "this property API": [[8, "this-property-api"], [160, "this-property-api"]], "animation_fill_alpha interface": [[9, "animation-fill-alpha-interface"]], "animation_fill_alpha API": [[9, "animation-fill-alpha-api"]], "animation_fill_color interface": [[10, "animation-fill-color-interface"]], "animation_fill_color API": [[10, "animation-fill-color-api"]], "animation_finish interface": [[11, "animation-finish-interface"]], "animation_finish API": [[11, "animation-finish-api"]], "Animation interfaces abstract": [[12, "animation-interfaces-abstract"]], "What apysc can do in its animation interfaces": [[12, "what-apysc-can-do-in-its-animation-interfaces"]], "Examples of each attribute animation": [[12, "examples-of-each-attribute-animation"]], "Easing": [[12, "easing"]], "X animation": [[12, "x-animation"]], "Y animation": [[12, "y-animation"]], "Move animation": [[12, "move-animation"]], "Width animation": [[12, "width-animation"]], "Height animation": [[12, "height-animation"]], "Fill color animation": [[12, "fill-color-animation"]], "Fill alpha animation": [[12, "fill-alpha-animation"]], "Line-color animation": [[12, "line-color-animation"]], "Line alpha animation": [[12, "line-alpha-animation"]], "Line thickness animation": [[12, "line-thickness-animation"]], "Radius animation": [[12, "radius-animation"]], "Rotation animation around the center point": [[12, "rotation-animation-around-the-center-point"]], "Rotation animation around the specified point": [[12, "rotation-animation-around-the-specified-point"]], "Scale-x animation from the center point": [[12, "scale-x-animation-from-the-center-point"]], "Scale-y animation from the center point": [[12, "scale-y-animation-from-the-center-point"]], "Scale-x animation from the specified point": [[12, "scale-x-animation-from-the-specified-point"]], "Scale-y animation from the specified point": [[12, "scale-y-animation-from-the-specified-point"]], "animation_line_alpha interface": [[13, "animation-line-alpha-interface"]], "animation_line_alpha API": [[13, "animation-line-alpha-api"]], "animation_line_color interface": [[14, "animation-line-color-interface"]], "animation_line_color API": [[14, "animation-line-color-api"]], "animation_line_thickness interface": [[15, "animation-line-thickness-interface"]], "animation_line_thickness API": [[15, "animation-line-thickness-api"]], "AnimationBase class interfaces method chaining": [[16, "animationbase-class-interfaces-method-chaining"]], "Each AnimationBase related interface returns its instance": [[16, "each-animationbase-related-interface-returns-its-instance"]], "animation_move interface": [[17, "animation-move-interface"]], "animation_move API": [[17, "animation-move-api"]], "animation_parallel interface": [[18, "animation-parallel-interface"]], "Note for each animation\u2019s duration, delay, and easing setting": [[18, "note-for-each-animation-s-duration-delay-and-easing-setting"]], "animation_parallel API": [[18, "animation-parallel-api"]], "animation_pause and animation_play interfaces": [[19, "animation-pause-and-animation-play-interfaces"]], "What interface are these?": [[19, "what-interface-are-these"], [77, "what-interface-are-these"]], "animation_pause API": [[19, "animation-pause-api"]], "animation_play API": [[19, "animation-play-api"]], "animation_radius interface": [[20, "animation-radius-interface"]], "animation_radius API": [[20, "animation-radius-api"]], "animation_reset interface": [[21, "animation-reset-interface"]], "animation_reset API": [[21, "animation-reset-api"]], "Each animation interface return value": [[22, "each-animation-interface-return-value"]], "Each interface returns the subclass instance of the AnimationBase": [[22, "each-interface-returns-the-subclass-instance-of-the-animationbase"]], "animation_reverse interface": [[23, "animation-reverse-interface"]], "Interface Notes": [[23, "interface-notes"]], "animation_reverse API": [[23, "animation-reverse-api"]], "animation_rotation_around_center interface": [[24, "animation-rotation-around-center-interface"]], "animation_rotation_around_center API": [[24, "animation-rotation-around-center-api"]], "animation_rotation_around_point interface": [[25, "animation-rotation-around-point-interface"]], "animation_rotation_around_point API": [[25, "animation-rotation-around-point-api"]], "What interfaces are these?": [[26, "what-interfaces-are-these"], [27, "what-interfaces-are-these"], [29, "what-interfaces-are-these"], [48, "what-interfaces-are-these"], [49, "what-interfaces-are-these"], [50, "what-interfaces-are-these"], [51, "what-interfaces-are-these"], [52, "what-interfaces-are-these"], [53, "what-interfaces-are-these"], [54, "what-interfaces-are-these"], [56, "what-interfaces-are-these"], [88, "what-interfaces-are-these"], [89, "what-interfaces-are-these"], [100, "what-interfaces-are-these"], [161, "what-interfaces-are-these"], [163, "what-interfaces-are-these"], [87, "what-interfaces-are-these"], [226, "what-interfaces-are-these"], [1, "what-interfaces-are-these"], [34, "what-interfaces-are-these"], [37, "what-interfaces-are-these"], [39, "what-interfaces-are-these"], [44, "what-interfaces-are-these"], [91, "what-interfaces-are-these"], [114, "what-interfaces-are-these"], [123, "what-interfaces-are-these"], [124, "what-interfaces-are-these"], [125, "what-interfaces-are-these"], [126, "what-interfaces-are-these"], [231, "what-interfaces-are-these"]], "animation_scale_x_from_center and animation_scale_y_from_center interfaces": [[26, "animation-scale-x-from-center-and-animation-scale-y-from-center-interfaces"]], "animation_scale_x_from_center API": [[26, "animation-scale-x-from-center-api"]], "animation_scale_y_from_center API": [[26, "animation-scale-y-from-center-api"]], "animation_scale_x_from_point and animation_scale_y_from_point interfaces": [[27, "animation-scale-x-from-point-and-animation-scale-y-from-point-interfaces"]], "animation_time interface": [[28, "animation-time-interface"]], "animation_time API": [[28, "animation-time-api"]], "animation_width and animation_height interfaces": [[29, "animation-width-and-animation-height-interfaces"]], "Notes for the Ellipse instance": [[29, "notes-for-the-ellipse-instance"]], "animation_width API": [[29, "animation-width-api"]], "animation_height API": [[29, "animation-height-api"]], "animation_x interface": [[30, "animation-x-interface"]], "Notes for the Circle and Ellipse classes": [[30, "notes-for-the-circle-and-ellipse-classes"], [31, "notes-for-the-circle-and-ellipse-classes"]], "animation_x API": [[30, "animation-x-api"]], "animation_y interface": [[31, "animation-y-interface"]], "animation_y API": [[31, "animation-y-api"]], "append_js_expression interface": [[32, "append-js-expression-interface"]], "append_js_expression API": [[32, "append-js-expression-api"]], "Array class clear interface": [[35, "array-class-clear-interface"]], "Array class comparison interfaces": [[36, "array-class-comparison-interfaces"]], "assert_arrays_equal and assert_arrays_not_equal interfaces": [[48, "assert-arrays-equal-and-assert-arrays-not-equal-interfaces"]], "Notes for the assert_equal and assert_not_equal interfaces": [[48, "notes-for-the-assert-equal-and-assert-not-equal-interfaces"], [50, "notes-for-the-assert-equal-and-assert-not-equal-interfaces"]], "assert_arrays_equal API": [[48, "assert-arrays-equal-api"]], "assert_arrays_not_equal API": [[48, "assert-arrays-not-equal-api"]], "assert_defined and assert_undefined interfaces": [[49, "assert-defined-and-assert-undefined-interfaces"]], "assert_defined API": [[49, "assert-defined-api"]], "assert_undefined API": [[49, "assert-undefined-api"]], "assert_dicts_equal and assert_dicts_not_equal interfaces": [[50, "assert-dicts-equal-and-assert-dicts-not-equal-interfaces"]], "assert_dicts_equal API": [[50, "assert-dicts-equal-api"]], "assert_dicts_not_equal API": [[50, "assert-dicts-not-equal-api"]], "assert_equal and assert_not_equal interfaces": [[51, "assert-equal-and-assert-not-equal-interfaces"]], "assert_equal API": [[51, "assert-equal-api"]], "assert_not_equal API": [[51, "assert-not-equal-api"]], "assert_greater and assert_greater_equal interfaces": [[52, "assert-greater-and-assert-greater-equal-interfaces"]], "assert_greater API": [[52, "assert-greater-api"]], "assert_greater_equal API": [[52, "assert-greater-equal-api"]], "assert_less and assert_less_equal interfaces": [[53, "assert-less-and-assert-less-equal-interfaces"]], "assert_less API": [[53, "assert-less-api"]], "assert_less_equal API": [[53, "assert-less-equal-api"]], "assert_true and assert_false interfaces": [[54, "assert-true-and-assert-false-interfaces"]], "assert_true API": [[54, "assert-true-api"]], "assert_false API": [[54, "assert-false-api"]], "JavaScript assertion interface basic behaviors": [[55, "javascript-assertion-interface-basic-behaviors"]], "Interface names": [[55, "interface-names"]], "Assertion results": [[55, "assertion-results"]], "Optional msg argument": [[55, "optional-msg-argument"]], "Bind and trigger the custom event": [[56, "bind-and-trigger-the-custom-event"]], "Unbind custom event": [[56, "unbind-custom-event"]], "bind_custom_event API": [[56, "bind-custom-event-api"]], "trigger_custom_event API": [[56, "trigger-custom-event-api"]], "unbind_custom_event API": [[56, "unbind-custom-event-api"]], "unbind_custom_event_all API": [[56, "unbind-custom-event-all-api"]], "Color class blue_color property": [[57, "color-class-blue-color-property"]], "blue_color property API": [[57, "blue-color-property-api"]], "Each branch instruction class\u2019s scope variable reverting setting": [[59, "each-branch-instruction-class-s-scope-variable-reverting-setting"]], "These interfaces execute with statement code": [[59, "these-interfaces-execute-with-statement-code"]], "Scope variables reverting setting": [[59, "scope-variables-reverting-setting"]], "click interface": [[61, "click-interface"]], "Basic usage of the click interface": [[61, "basic-usage-of-the-click-interface"]], "Basic usage of the unbind_click interface": [[61, "basic-usage-of-the-unbind-click-interface"]], "Unbind all the click event handlers": [[61, "unbind-all-the-click-event-handlers"]], "click API": [[61, "click-api"]], "unbind_click API": [[61, "unbind-click-api"]], "unbind_click_all API": [[61, "unbind-click-all-api"]], "Color class": [[62, "color-class"]], "Acceptable hexadecimal color codes": [[62, "acceptable-hexadecimal-color-codes"]], "Color constructor API": [[62, "color-constructor-api"]], "Color class from_rgb class method": [[63, "color-class-from-rgb-class-method"]], "What class method is this?": [[63, "what-class-method-is-this"]], "from_rgb class method API": [[63, "from-rgb-class-method-api"]], "COLORLESS constant": [[64, "colorless-constant"]], "What constant is this?": [[64, "what-constant-is-this"]], "Colors class": [[65, "colors-class"]], "Defined colors": [[65, "defined-colors"], [153, "defined-colors"]], "References": [[65, "references"], [153, "references"]], "Continue class": [[67, "continue-class"]], "What is the Continue class?": [[67, "what-is-the-continue-class"]], "Continue API": [[67, "continue-api"]], "DateTime class set_month_end interface": [[76, "datetime-class-set-month-end-interface"]], "dblclick interface": [[79, "dblclick-interface"]], "Basic usage of the dblclick interface": [[79, "basic-usage-of-the-dblclick-interface"]], "Basic usage of the unbind_dblclick interfaces": [[79, "basic-usage-of-the-unbind-dblclick-interfaces"]], "dblclick API": [[79, "dblclick-api"]], "unbind_dblclick API": [[79, "unbind-dblclick-api"]], "unbind_dblclick_all API": [[79, "unbind-dblclick-all-api"]], "delete interface": [[80, "delete-interface"]], "Dictionary class generic type settings": [[82, "dictionary-class-generic-type-settings"]], "DisplayObject class": [[85, "displayobject-class"]], "What is the DisplayObject?": [[85, "what-is-the-displayobject"]], "DisplayObject and GraphicsBase classes base properties abstract": [[86, "displayobject-and-graphicsbase-classes-base-properties-abstract"]], "What apysc can do in its properties": [[86, "what-apysc-can-do-in-its-properties"]], "x and y properties": [[86, "x-and-y-properties"]], "visible property": [[86, "visible-property"]], "rotation interfaces": [[86, "rotation-interfaces"]], "scale interfaces": [[86, "scale-interfaces"]], "flip properties": [[86, "flip-properties"]], "skew properties": [[86, "skew-properties"]], "DisplayObject class mouse event binding interfaces": [[88, "displayobject-class-mouse-event-binding-interfaces"]], "DisplayObject class parent interfaces": [[89, "displayobject-class-parent-interfaces"]], "Basic usage of the remove_from_parent interface": [[89, "basic-usage-of-the-remove-from-parent-interface"]], "parent API": [[89, "parent-api"]], "remove_from_parent API": [[89, "remove-from-parent-api"]], "display_on_colaboratory interface": [[92, "display-on-colaboratory-interface"]], "Requirements": [[92, "requirements"], [93, "requirements"]], "display_on_colaboratory API": [[92, "display-on-colaboratory-api"]], "display_on_jupyter interface": [[93, "display-on-jupyter-interface"]], "Notes": [[93, "notes"], [96, "notes"], [98, "notes"], [189, "notes"], [232, "notes"], [122, "notes"], [138, "notes"], [165, "notes"]], "display_on_jupyter API": [[93, "display-on-jupyter-api"]], "Draw interfaces abstract": [[94, "draw-interfaces-abstract"]], "What apysc can do in its drawing interfaces": [[94, "what-apysc-can-do-in-its-drawing-interfaces"]], "Fill settings": [[94, "fill-settings"]], "Line style settings": [[94, "line-style-settings"]], "Each drawing interface": [[94, "each-drawing-interface"]], "Easing enum": [[95, "easing-enum"]], "What difference between the ease-in, ease-out, and ease-in-out": [[95, "what-difference-between-the-ease-in-ease-out-and-ease-in-out"]], "Ease-in examples": [[95, "ease-in-examples"]], "Ease-out examples": [[95, "ease-out-examples"]], "Ease-in-out examples": [[95, "ease-in-out-examples"]], "Elif class": [[96, "elif-class"]], "What is the Elif class?": [[96, "what-is-the-elif-class"]], "Elif constructor API": [[96, "elif-constructor-api"]], "Else class": [[98, "else-class"]], "What is the Else class?": [[98, "what-is-the-else-class"]], "Else constructor API": [[98, "else-constructor-api"]], "Event class prevent_default and stop_propagation interfaces": [[100, "event-class-prevent-default-and-stop-propagation-interfaces"]], "Basic usage of the prevent_default interface": [[100, "basic-usage-of-the-prevent-default-interface"]], "Basic usage of the stop_propagation interface": [[100, "basic-usage-of-the-stop-propagation-interface"]], "prevent_default API": [[100, "prevent-default-api"]], "stop_propagation API": [[100, "stop-propagation-api"]], "ForArrayIndices class": [[101, "forarrayindices-class"]], "ForArrayIndices API": [[101, "forarrayindices-api"]], "ForArrayIndicesAndValues class": [[102, "forarrayindicesandvalues-class"]], "ForArrayIndicesAndValues API": [[102, "forarrayindicesandvalues-api"]], "ForArrayValues class": [[103, "forarrayvalues-class"]], "ForArrayValues API": [[103, "forarrayvalues-api"]], "ForDictKeys class": [[104, "fordictkeys-class"]], "ForDictKeys API": [[104, "fordictkeys-api"]], "ForDictKeysAndValues class": [[105, "fordictkeysandvalues-class"]], "ForDictKeysAndValues API": [[105, "fordictkeysandvalues-api"]], "ForDictValues class": [[106, "fordictvalues-class"]], "ForDictValues API": [[106, "fordictvalues-api"]], "FPS enum": [[107, "fps-enum"]], "apysc fundamental data classes value interface": [[108, "apysc-fundamental-data-classes-value-interface"]], "Basic usage of the getter interface": [[108, "basic-usage-of-the-getter-interface"]], "Basic usage of the setter interface": [[108, "basic-usage-of-the-setter-interface"]], "Graphics class": [[111, "graphics-class"], [146, "graphics-class"]], "What is Graphics?": [[111, "what-is-graphics"]], "Call interfaces from sprite instance": [[111, "call-interfaces-from-sprite-instance"]], "Return values": [[111, "return-values"]], "GraphicsBase line_dash_dot_setting interface": [[117, "graphicsbase-line-dash-dot-setting-interface"]], "Delete setting": [[117, "delete-setting"], [118, "delete-setting"], [119, "delete-setting"], [120, "delete-setting"]], "line_dash_dot_setting API": [[117, "line-dash-dot-setting-api"]], "delete_line_dash_dot_setting API": [[117, "delete-line-dash-dot-setting-api"]], "GraphicsBase line_dash_setting interface": [[118, "graphicsbase-line-dash-setting-interface"]], "line_dash_setting property API": [[118, "line-dash-setting-property-api"], [141, "line-dash-setting-property-api"]], "delete_line_dash_setting API": [[118, "delete-line-dash-setting-api"]], "GraphicsBase line_dot_setting interface": [[119, "graphicsbase-line-dot-setting-interface"]], "line_dot_setting property API": [[119, "line-dot-setting-property-api"], [141, "line-dot-setting-property-api"]], "delete_line_dot_setting API": [[119, "delete-line-dot-setting-api"]], "GraphicsBase line_round_dot_setting interface": [[120, "graphicsbase-line-round-dot-setting-interface"]], "line_round_dot_setting property API": [[120, "line-round-dot-setting-property-api"], [141, "line-round-dot-setting-property-api"]], "delete_line_round_dot_setting API": [[120, "delete-line-round-dot-setting-api"]], "Graphics clear interface": [[128, "graphics-clear-interface"]], "Color class green_color property": [[143, "color-class-green-color-property"]], "green_color property API": [[143, "green-color-property-api"]], "If class": [[144, "if-class"]], "What is the If class?": [[144, "what-is-the-if-class"]], "If constructor API": [[144, "if-constructor-api"]], "import conventions": [[145, "import-conventions"]], "Int and Number basic arithmetic operations": [[148, "int-and-number-basic-arithmetic-operations"]], "Common behaviors": [[148, "common-behaviors"], [149, "common-behaviors"]], "Addition": [[148, "addition"], [193, "addition"]], "Subtraction": [[148, "subtraction"]], "Multiplication": [[148, "multiplication"], [193, "multiplication"]], "Division": [[148, "division"]], "Floor division": [[148, "floor-division"]], "Modulo": [[148, "modulo"]], "Int and Number basic comparison operations": [[149, "int-and-number-basic-comparison-operations"]], "Equal comparison operator": [[149, "equal-comparison-operator"]], "Not equal comparison operator": [[149, "not-equal-comparison-operator"]], "Less than comparison operator": [[149, "less-than-comparison-operator"]], "Less than or equal comparison operator": [[149, "less-than-or-equal-comparison-operator"]], "Greater than comparison operator": [[149, "greater-than-comparison-operator"]], "Greater than or equal comparison operator": [[149, "greater-than-or-equal-comparison-operator"]], "Int and Number classes to_fixed interface": [[150, "int-and-number-classes-to-fixed-interface"]], "to_fixed API": [[150, "to-fixed-api"]], "Int and Number classes to_hex method": [[151, "int-and-number-classes-to-hex-method"]], "What method is this?": [[151, "what-method-is-this"], [200, "what-method-is-this"], [197, "what-method-is-this"], [203, "what-method-is-this"], [204, "what-method-is-this"]], "Note for ap.Number value": [[151, "note-for-ap-number-value"]], "to_hex method API": [[151, "to-hex-method-api"]], "MaterialDesignColors class": [[153, "materialdesigncolors-class"]], "Material icon": [[154, "material-icon"]], "Material icon\u2019s license": [[154, "material-icon-s-license"]], "Each material icon constructor API": [[154, "each-material-icon-constructor-api"]], "Math clamp interface": [[155, "math-clamp-interface"]], "clamp method API": [[155, "clamp-method-api"]], "Math max interface": [[156, "math-max-interface"]], "Math.max API": [[156, "math-max-api"]], "Math min interface": [[157, "math-min-interface"]], "Math.min API": [[157, "math-min-api"]], "Math trunc interface": [[158, "math-trunc-interface"]], "Math.trunc API": [[158, "math-trunc-api"]], "MouseEvent interfaces abstract": [[159, "mouseevent-interfaces-abstract"]], "What apysc can do in its interfaces": [[159, "what-apysc-can-do-in-its-interfaces"]], "Example of the click event": [[159, "example-of-the-click-event"]], "Basic mouse event interfaces": [[160, "basic-mouse-event-interfaces"]], "Basic binding usage": [[160, "basic-binding-usage"]], "Basic unbinding usage": [[160, "basic-unbinding-usage"]], "Unbind all event handlers": [[160, "unbind-all-event-handlers"]], "Handler argument names and types": [[160, "handler-argument-names-and-types"]], "MouseEvent this attribute": [[160, "mouseevent-this-attribute"]], "MouseEvent generic type settings": [[160, "mouseevent-generic-type-settings"]], "MouseEvent stage_x and stage_y attributes": [[160, "mouseevent-stage-x-and-stage-y-attributes"]], "MouseEvent local_x and local_y attributes": [[160, "mouseevent-local-x-and-local-y-attributes"]], "stage_x property API": [[160, "stage-x-property-api"]], "stage_y property API": [[160, "stage-y-property-api"]], "local_x property API": [[160, "local-x-property-api"]], "local_y property API": [[160, "local-y-property-api"]], "mousedown and mouseup interfaces": [[161, "mousedown-and-mouseup-interfaces"]], "Basic usage of the mousedown and mouseup interfaces": [[161, "basic-usage-of-the-mousedown-and-mouseup-interfaces"]], "Unbind interfaces": [[161, "unbind-interfaces"], [162, "unbind-interfaces"], [163, "unbind-interfaces"]], "mousedown API": [[161, "mousedown-api"]], "unbind_mousedown API": [[161, "unbind-mousedown-api"]], "unbind_mousedown_all API": [[161, "unbind-mousedown-all-api"]], "mouseup API": [[161, "mouseup-api"]], "unbind_mouseup API": [[161, "unbind-mouseup-api"]], "unbind_mouseup_all API": [[161, "unbind-mouseup-all-api"]], "mousemove interface": [[162, "mousemove-interface"]], "mousemove API": [[162, "mousemove-api"]], "unbind_mousemove API": [[162, "unbind-mousemove-api"]], "unbind_mousemove_all API": [[162, "unbind-mousemove-all-api"]], "mouseover and mouseout interfaces": [[163, "mouseover-and-mouseout-interfaces"]], "Basic usage of the mouseover and mouseout interfaces": [[163, "basic-usage-of-the-mouseover-and-mouseout-interfaces"]], "mouseover API": [[163, "mouseover-api"]], "unbind_mouseover API": [[163, "unbind-mouseover-api"]], "unbind_mouseover_all API": [[163, "unbind-mouseover-all-api"]], "mouseout API": [[163, "mouseout-api"]], "unbind_mouseout API": [[163, "unbind-mouseout-api"]], "unbind_mouseout_all API": [[163, "unbind-mouseout-all-api"]], "PathBezier2D class": [[167, "pathbezier2d-class"]], "Relative position setting": [[167, "relative-position-setting"], [168, "relative-position-setting"], [169, "relative-position-setting"], [170, "relative-position-setting"], [172, "relative-position-setting"], [173, "relative-position-setting"], [174, "relative-position-setting"], [175, "relative-position-setting"]], "PathBezier2D class constructor API": [[167, "pathbezier2d-class-constructor-api"]], "PathBezier2DContinual class": [[168, "pathbezier2dcontinual-class"]], "PathBezier2DContinual class constructor API": [[168, "pathbezier2dcontinual-class-constructor-api"]], "PathBezier3D class": [[169, "pathbezier3d-class"]], "PathBezier3D class constructor API": [[169, "pathbezier3d-class-constructor-api"]], "PathBezier3DContinual class": [[170, "pathbezier3dcontinual-class"]], "PathBezier3DContinual class constructor API": [[170, "pathbezier3dcontinual-class-constructor-api"]], "PathClose class": [[171, "pathclose-class"]], "PathClose class constructor API": [[171, "pathclose-class-constructor-api"]], "PathHorizontal class": [[172, "pathhorizontal-class"]], "PathHorizontal class constructor API": [[172, "pathhorizontal-class-constructor-api"]], "PathLineTo class": [[173, "pathlineto-class"]], "PathLineTo class constructor API": [[173, "pathlineto-class-constructor-api"]], "PathMoveTo class": [[174, "pathmoveto-class"]], "PathMoveTo class constructor API": [[174, "pathmoveto-class-constructor-api"]], "PathVertical class": [[175, "pathvertical-class"]], "PathVertical class constructor API": [[175, "pathvertical-class-constructor-api"]], "Quick start guide": [[179, "quick-start-guide"], [146, "quick-start-guide"]], "Installing": [[179, "installing"]], "Create stage and export HTML": [[179, "create-stage-and-export-html"]], "Add sprite container and vector graphics": [[179, "add-sprite-container-and-vector-graphics"]], "range function": [[180, "range-function"]], "What function is this?": [[180, "what-function-is-this"]], "range function API": [[180, "range-function-api"]], "Recommended type-annotation checker settings": [[181, "recommended-type-annotation-checker-settings"]], "Recommended type-annotation checker libraries": [[181, "recommended-type-annotation-checker-libraries"]], "The ignoring error code of the mypy": [[181, "the-ignoring-error-code-of-the-mypy"]], "Color class red_color property": [[184, "color-class-red-color-property"]], "red_color property API": [[184, "red-color-property-api"]], "Return class": [[186, "return-class"]], "What is the Return class?": [[186, "what-is-the-return-class"]], "Return API": [[186, "return-api"]], "save_overall_html interface": [[187, "save-overall-html-interface"]], "Minify the HTML": [[187, "minify-the-html"]], "JavaScript libs directory path setting and skip option": [[187, "javascript-libs-directory-path-setting-and-skip-option"]], "Change the HTML file name by the html_file_name option": [[187, "change-the-html-file-name-by-the-html-file-name-option"]], "Bundle each JavaScript library to the signle HTML file by the embed_js_libs option": [[187, "bundle-each-javascript-library-to-the-signle-html-file-by-the-embed-js-libs-option"]], "Change the stdout setting by the verbose option": [[187, "change-the-stdout-setting-by-the-verbose-option"]], "save_overall_html API": [[187, "save-overall-html-api"]], "Sequential animation setting": [[188, "sequential-animation-setting"]], "Sequential animation interface calling on the same instance": [[188, "sequential-animation-interface-calling-on-the-same-instance"]], "animation_complete handler setting": [[188, "animation-complete-handler-setting"]], "set_debug_mode interface": [[189, "set-debug-mode-interface"]], "set_debug_mode API": [[189, "set-debug-mode-api"]], "String class addition and multiplication operations": [[193, "string-class-addition-and-multiplication-operations"]], "String class apply_max_num_of_decimal_places interface": [[194, "string-class-apply-max-num-of-decimal-places-interface"]], "apply_max_num_of_decimal_places API": [[194, "apply-max-num-of-decimal-places-api"]], "String class comparison operations": [[195, "string-class-comparison-operations"]], "Comparison return value type": [[195, "comparison-return-value-type"]], "Acceptable comparison right-side value types": [[195, "acceptable-comparison-right-side-value-types"]], "Equal comparison": [[195, "equal-comparison"]], "Not equal comparison": [[195, "not-equal-comparison"]], "Less than or greater than comparison": [[195, "less-than-or-greater-than-comparison"]], "length property API": [[196, "length-property-api"], [42, "length-property-api"], [84, "length-property-api"]], "String class length property": [[196, "string-class-length-property"]], "Notes of the emoji": [[196, "notes-of-the-emoji"]], "String class lstrip interface": [[198, "string-class-lstrip-interface"]], "lstrip API": [[198, "lstrip-api"]], "String class rstrip interface": [[199, "string-class-rstrip-interface"]], "rstrip API": [[199, "rstrip-api"]], "String class slice method": [[200, "string-class-slice-method"]], "slice method API": [[200, "slice-method-api"]], "String class split interface": [[201, "string-class-split-interface"]], "split API": [[201, "split-api"]], "String class strip interface": [[202, "string-class-strip-interface"]], "strip API": [[202, "strip-api"]], "SvgMask class and its related interfaces": [[205, "svgmask-class-and-its-related-interfaces"]], "Case when you want to synchronize the coordinates of DisplayObject and mask": [[205, "case-when-you-want-to-synchronize-the-coordinates-of-displayobject-and-mask"]], "SvgMask constructor API": [[205, "svgmask-constructor-api"]], "SvgMask add_svg_masking_object method API": [[205, "svgmask-add-svg-masking-object-method-api"]], "svg_mask property API": [[205, "svg-mask-property-api"]], "text_align property": [[208, "text-align-property"]], "Example of CssTextAlign.LEFT": [[208, "example-of-csstextalign-left"]], "Example of CssTextAlign.CENTER": [[208, "example-of-csstextalign-center"]], "Example of CssTextAlign.RIGHT": [[208, "example-of-csstextalign-right"]], "Example of CSSTextAlign.JUSTIFY": [[208, "example-of-csstextalign-justify"]], "text_align property API": [[208, "text-align-property-api"]], "text_align_last property": [[209, "text-align-last-property"]], "Example of CssTextAlignLast.AUTO": [[209, "example-of-csstextalignlast-auto"]], "Example of CssTextAlignLast.LEFT": [[209, "example-of-csstextalignlast-left"]], "Example of CssTextAlignLast.CENTER": [[209, "example-of-csstextalignlast-center"]], "Example of CssTextAlignLast.RIGHT": [[209, "example-of-csstextalignlast-right"]], "Example of CssTextAlignLast.JUSTIFY": [[209, "example-of-csstextalignlast-justify"]], "text_align_last property API": [[209, "text-align-last-property-api"]], "Text line_height property": [[215, "text-line-height-property"]], "line_height property API": [[215, "line-height-property-api"]], "TimerEvent class": [[223, "timerevent-class"]], "this attribute": [[223, "this-attribute"]], "TimerEvent constructor API": [[223, "timerevent-constructor-api"]], "this attribute API": [[223, "this-attribute-api"]], "to_string interface": [[227, "to-string-interface"]], "to_string method API": [[227, "to-string-method-api"]], "trace interface": [[228, "trace-interface"]], "Note for the print alias": [[228, "note-for-the-print-alias"]], "trace API": [[228, "trace-api"]], "True_ and False_ constants": [[230, "true-and-false-constants"]], "What constants are these?": [[230, "what-constants-are-these"]], "unset_debug_mode interface": [[232, "unset-debug-mode-interface"]], "unset_debug_mode API": [[232, "unset-debug-mode-api"]], "What argument is this?": [[233, "what-argument-is-this"], [222, "what-argument-is-this"], [224, "what-argument-is-this"]], "variable_name_suffix argument setting": [[233, "variable-name-suffix-argument-setting"]], "What apysc can do in its current implementation": [[234, "what-apysc-can-do-in-its-current-implementation"]], "Write with the Python and export HTML or use it on the Jupyter": [[234, "write-with-the-python-and-export-html-or-use-it-on-the-jupyter"]], "Draw the many types of the vector graphics": [[234, "draw-the-many-types-of-the-vector-graphics"]], "Set each mouse event": [[234, "set-each-mouse-event"]], "The timer interface and animation": [[234, "the-timer-interface-and-animation"]], "Animate properties with each animation interface": [[234, "animate-properties-with-each-animation-interface"]], "Why the apysc library doesn\u2019t use the Python built-in data type": [[235, "why-the-apysc-library-doesn-t-use-the-python-built-in-data-type"]], "apysc needs to convert Python to JavaScript and track variables change": [[235, "apysc-needs-to-convert-python-to-javascript-and-track-variables-change"]], "get_bounds interface": [[109, "get-bounds-interface"]], "get_bounds method API": [[109, "get-bounds-method-api"], [183, "get-bounds-method-api"]], "DisplayObject class get_css and set_css interfaces": [[87, "displayobject-class-get-css-and-set-css-interfaces"]], "get_css API": [[87, "get-css-api"]], "set_css API": [[87, "set-css-api"]], "String class lower method": [[197, "string-class-lower-method"]], "lower method API": [[197, "lower-method-api"]], "String class upper method": [[203, "string-class-upper-method"]], "upper method API": [[203, "upper-method-api"]], "String class zfill method": [[204, "string-class-zfill-method"]], "zfill method API": [[204, "zfill-method-api"]], "Text bold property": [[210, "text-bold-property"]], "bold property API": [[210, "bold-property-api"]], "fill_color property API": [[212, "fill-color-property-api"], [113, "fill-color-property-api"], [127, "fill-color-property-api"]], "Text fill_color property": [[212, "text-fill-color-property"]], "Text font_size property": [[213, "text-font-size-property"]], "font_size property API": [[213, "font-size-property-api"]], "Text italic property": [[214, "text-italic-property"]], "italic property API": [[214, "italic-property-api"]], "Text underline property": [[216, "text-underline-property"]], "underline property API": [[216, "underline-property-api"]], "fill_alpha property API": [[211, "fill-alpha-property-api"], [112, "fill-alpha-property-api"], [127, "fill-alpha-property-api"]], "Text fill_alpha property": [[211, "text-fill-alpha-property"]], "Timer class": [[220, "timer-class"]], "What is the Timer?": [[220, "what-is-the-timer"]], "Timer constructor API": [[220, "timer-constructor-api"], [222, "timer-constructor-api"], [224, "timer-constructor-api"]], "Timer class timer_complete interface": [[221, "timer-class-timer-complete-interface"]], "timer_complete API": [[221, "timer-complete-api"]], "Timer class delay setting": [[222, "timer-class-delay-setting"]], "Set the FPS enum value to the delay argument": [[222, "set-the-fps-enum-value-to-the-delay-argument"]], "delay property API": [[222, "delay-property-api"]], "Timer class repeat_count setting": [[224, "timer-class-repeat-count-setting"]], "repeat_count property API": [[224, "repeat-count-property-api"]], "Timer class reset interface": [[225, "timer-class-reset-interface"]], "reset API": [[225, "reset-api"]], "Timer class start and stop interfaces": [[226, "timer-class-start-and-stop-interfaces"]], "stop API": [[226, "stop-api"]], "add_child and remove_child interfaces": [[1, "add-child-and-remove-child-interfaces"]], "Automatic addition of the children": [[1, "automatic-addition-of-the-children"]], "Basic usage of the remove_child interface": [[1, "basic-usage-of-the-remove-child-interface"]], "The basic usage of the add_child interface": [[1, "the-basic-usage-of-the-add-child-interface"]], "add_child API": [[1, "add-child-api"], [191, "add-child-api"]], "remove_child API": [[1, "remove-child-api"], [191, "remove-child-api"]], "Array class": [[33, "array-class"], [146, "array-class"]], "What is the Array?": [[33, "what-is-the-array"]], "Constructor method": [[33, "constructor-method"], [81, "constructor-method"]], "fixed_value_type argument": [[33, "fixed-value-type-argument"]], "Array class constructor API": [[33, "array-class-constructor-api"]], "value property API": [[33, "value-property-api"], [58, "value-property-api"], [147, "value-property-api"], [192, "value-property-api"]], "Array class append and push interfaces": [[34, "array-class-append-and-push-interfaces"]], "append API": [[34, "append-api"]], "push API": [[34, "push-api"]], "Array class extend and concat interfaces": [[37, "array-class-extend-and-concat-interfaces"]], "extend API": [[37, "extend-api"]], "concat API": [[37, "concat-api"]], "Array class index_of interface": [[38, "array-class-index-of-interface"]], "index_of API": [[38, "index-of-api"]], "Array class insert and insert_at interfaces": [[39, "array-class-insert-and-insert-at-interfaces"]], "insert API": [[39, "insert-api"]], "insert_at API": [[39, "insert-at-api"]], "Array class join interface": [[40, "array-class-join-interface"]], "join API": [[40, "join-api"]], "Array class last_value property": [[41, "array-class-last-value-property"]], "last_value property API": [[41, "last-value-property-api"]], "Array class length interface": [[42, "array-class-length-interface"]], "Notes of the len() function": [[42, "notes-of-the-len-function"]], "Array class pop interface": [[43, "array-class-pop-interface"]], "pop API": [[43, "pop-api"]], "Array class remove and remove_at interfaces": [[44, "array-class-remove-and-remove-at-interfaces"]], "remove API": [[44, "remove-api"]], "remove_at API": [[44, "remove-at-api"]], "Array class reverse interface": [[45, "array-class-reverse-interface"]], "reverse API": [[45, "reverse-api"]], "Array class slice interface": [[46, "array-class-slice-interface"]], "slice API": [[46, "slice-api"]], "Array class sort interface": [[47, "array-class-sort-interface"]], "sort API": [[47, "sort-api"]], "Boolean class": [[58, "boolean-class"]], "What is the Boolean class?": [[58, "what-is-the-boolean-class"]], "Note for the Bool class alias": [[58, "note-for-the-bool-class-alias"]], "Boolean comparison": [[58, "boolean-comparison"]], "Reverse a Boolean value": [[58, "reverse-a-boolean-value"]], "Boolean class constructor API": [[58, "boolean-class-constructor-api"]], "not_ property API": [[58, "not-property-api"]], "Circle class": [[60, "circle-class"]], "Note of the draw_circle interface": [[60, "note-of-the-draw-circle-interface"]], "x property interface example": [[60, "x-property-interface-example"], [97, "x-property-interface-example"], [152, "x-property-interface-example"], [166, "x-property-interface-example"], [177, "x-property-interface-example"], [178, "x-property-interface-example"], [182, "x-property-interface-example"], [206, "x-property-interface-example"], [229, "x-property-interface-example"]], "y property interface example": [[60, "y-property-interface-example"], [97, "y-property-interface-example"], [152, "y-property-interface-example"], [166, "y-property-interface-example"], [177, "y-property-interface-example"], [178, "y-property-interface-example"], [182, "y-property-interface-example"], [206, "y-property-interface-example"], [229, "y-property-interface-example"]], "radius property interface example": [[60, "radius-property-interface-example"]], "fill_color property interface example": [[60, "fill-color-property-interface-example"], [97, "fill-color-property-interface-example"], [166, "fill-color-property-interface-example"], [177, "fill-color-property-interface-example"], [178, "fill-color-property-interface-example"], [182, "fill-color-property-interface-example"], [206, "fill-color-property-interface-example"], [207, "fill-color-property-interface-example"], [229, "fill-color-property-interface-example"]], "fill_alpha property interface example": [[60, "fill-alpha-property-interface-example"], [97, "fill-alpha-property-interface-example"], [166, "fill-alpha-property-interface-example"], [177, "fill-alpha-property-interface-example"], [178, "fill-alpha-property-interface-example"], [182, "fill-alpha-property-interface-example"], [206, "fill-alpha-property-interface-example"], [207, "fill-alpha-property-interface-example"], [229, "fill-alpha-property-interface-example"]], "line_color property interface example": [[60, "line-color-property-interface-example"], [97, "line-color-property-interface-example"], [152, "line-color-property-interface-example"], [166, "line-color-property-interface-example"], [177, "line-color-property-interface-example"], [178, "line-color-property-interface-example"], [182, "line-color-property-interface-example"], [206, "line-color-property-interface-example"], [207, "line-color-property-interface-example"], [229, "line-color-property-interface-example"]], "line_alpha property interface example": [[60, "line-alpha-property-interface-example"], [97, "line-alpha-property-interface-example"], [152, "line-alpha-property-interface-example"], [166, "line-alpha-property-interface-example"], [177, "line-alpha-property-interface-example"], [178, "line-alpha-property-interface-example"], [182, "line-alpha-property-interface-example"], [206, "line-alpha-property-interface-example"], [207, "line-alpha-property-interface-example"], [229, "line-alpha-property-interface-example"]], "line_thickness property interface example": [[60, "line-thickness-property-interface-example"], [97, "line-thickness-property-interface-example"], [152, "line-thickness-property-interface-example"], [166, "line-thickness-property-interface-example"], [177, "line-thickness-property-interface-example"], [178, "line-thickness-property-interface-example"], [182, "line-thickness-property-interface-example"], [206, "line-thickness-property-interface-example"], [207, "line-thickness-property-interface-example"], [229, "line-thickness-property-interface-example"]], "line_dot_setting property interface example": [[60, "line-dot-setting-property-interface-example"], [97, "line-dot-setting-property-interface-example"], [152, "line-dot-setting-property-interface-example"], [166, "line-dot-setting-property-interface-example"], [177, "line-dot-setting-property-interface-example"], [178, "line-dot-setting-property-interface-example"], [182, "line-dot-setting-property-interface-example"], [229, "line-dot-setting-property-interface-example"]], "line_dash_setting property interface example": [[60, "line-dash-setting-property-interface-example"], [97, "line-dash-setting-property-interface-example"], [152, "line-dash-setting-property-interface-example"], [166, "line-dash-setting-property-interface-example"], [177, "line-dash-setting-property-interface-example"], [178, "line-dash-setting-property-interface-example"], [182, "line-dash-setting-property-interface-example"], [229, "line-dash-setting-property-interface-example"]], "line_round_dot_setting property interface example": [[60, "line-round-dot-setting-property-interface-example"], [97, "line-round-dot-setting-property-interface-example"], [152, "line-round-dot-setting-property-interface-example"], [166, "line-round-dot-setting-property-interface-example"], [177, "line-round-dot-setting-property-interface-example"], [178, "line-round-dot-setting-property-interface-example"], [182, "line-round-dot-setting-property-interface-example"], [229, "line-round-dot-setting-property-interface-example"]], "line_dash_dot_setting property interface example": [[60, "line-dash-dot-setting-property-interface-example"], [97, "line-dash-dot-setting-property-interface-example"], [152, "line-dash-dot-setting-property-interface-example"], [166, "line-dash-dot-setting-property-interface-example"], [177, "line-dash-dot-setting-property-interface-example"], [178, "line-dash-dot-setting-property-interface-example"], [182, "line-dash-dot-setting-property-interface-example"], [229, "line-dash-dot-setting-property-interface-example"]], "rotation_around_center property interface example": [[60, "rotation-around-center-property-interface-example"], [97, "rotation-around-center-property-interface-example"], [152, "rotation-around-center-property-interface-example"], [166, "rotation-around-center-property-interface-example"], [177, "rotation-around-center-property-interface-example"], [178, "rotation-around-center-property-interface-example"], [182, "rotation-around-center-property-interface-example"], [206, "rotation-around-center-property-interface-example"], [229, "rotation-around-center-property-interface-example"]], "set_rotation_around_point and get_rotation_around_point methods interface example": [[60, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [97, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [152, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [166, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [177, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [178, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [182, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [206, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"], [229, "set-rotation-around-point-and-get-rotation-around-point-methods-interface-example"]], "scale_x_from_center property interface example": [[60, "scale-x-from-center-property-interface-example"], [97, "scale-x-from-center-property-interface-example"], [152, "scale-x-from-center-property-interface-example"], [166, "scale-x-from-center-property-interface-example"], [177, "scale-x-from-center-property-interface-example"], [178, "scale-x-from-center-property-interface-example"], [182, "scale-x-from-center-property-interface-example"], [206, "scale-x-from-center-property-interface-example"], [229, "scale-x-from-center-property-interface-example"]], "scale_y_from_center property interface example": [[60, "scale-y-from-center-property-interface-example"], [97, "scale-y-from-center-property-interface-example"], [152, "scale-y-from-center-property-interface-example"], [166, "scale-y-from-center-property-interface-example"], [177, "scale-y-from-center-property-interface-example"], [178, "scale-y-from-center-property-interface-example"], [182, "scale-y-from-center-property-interface-example"], [229, "scale-y-from-center-property-interface-example"]], "set_scale_x_from_point and get_scale_x_from_point methods interface example": [[60, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [97, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [152, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [166, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [177, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [178, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [182, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [206, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"], [229, "set-scale-x-from-point-and-get-scale-x-from-point-methods-interface-example"]], "set_scale_y_from_point and get_scale_y_from_point methods interface example": [[60, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"], [97, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"], [152, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"], [166, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"], [177, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"], [178, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"], [182, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"], [229, "set-scale-y-from-point-and-get-scale-y-from-point-methods-interface-example"]], "flip_x property interface example": [[60, "flip-x-property-interface-example"], [97, "flip-x-property-interface-example"], [152, "flip-x-property-interface-example"], [166, "flip-x-property-interface-example"], [177, "flip-x-property-interface-example"], [178, "flip-x-property-interface-example"], [182, "flip-x-property-interface-example"], [206, "flip-x-property-interface-example"], [229, "flip-x-property-interface-example"]], "flip_y property interface example": [[60, "flip-y-property-interface-example"], [97, "flip-y-property-interface-example"], [152, "flip-y-property-interface-example"], [166, "flip-y-property-interface-example"], [177, "flip-y-property-interface-example"], [178, "flip-y-property-interface-example"], [182, "flip-y-property-interface-example"], [206, "flip-y-property-interface-example"], [229, "flip-y-property-interface-example"]], "skew_x property interface example": [[60, "skew-x-property-interface-example"], [97, "skew-x-property-interface-example"], [152, "skew-x-property-interface-example"], [166, "skew-x-property-interface-example"], [177, "skew-x-property-interface-example"], [178, "skew-x-property-interface-example"], [182, "skew-x-property-interface-example"], [229, "skew-x-property-interface-example"]], "skew_y property interface example": [[60, "skew-y-property-interface-example"], [97, "skew-y-property-interface-example"], [152, "skew-y-property-interface-example"], [166, "skew-y-property-interface-example"], [177, "skew-y-property-interface-example"], [178, "skew-y-property-interface-example"], [182, "skew-y-property-interface-example"], [229, "skew-y-property-interface-example"]], "Circle class constructor API": [[60, "circle-class-constructor-api"]], "contains interface": [[66, "contains-interface"]], "contains API": [[66, "contains-api"], [191, "contains-api"]], "DateTime class": [[68, "datetime-class"], [146, "datetime-class"]], "DateTime class constructor API": [[68, "datetime-class-constructor-api"]], "DateTime class day property": [[69, "datetime-class-day-property"]], "day property API": [[69, "day-property-api"]], "DateTime class hour property": [[70, "datetime-class-hour-property"]], "hour property API": [[70, "hour-property-api"]], "DateTime class millisecond property": [[71, "datetime-class-millisecond-property"]], "millisecond property API": [[71, "millisecond-property-api"]], "DateTime class minute property": [[72, "datetime-class-minute-property"]], "minute property API": [[72, "minute-property-api"]], "DateTime class month property": [[73, "datetime-class-month-property"]], "month property API": [[73, "month-property-api"]], "DateTime class now interface": [[74, "datetime-class-now-interface"]], "now class method API": [[74, "now-class-method-api"]], "DateTime class second property": [[75, "datetime-class-second-property"]], "second property API": [[75, "second-property-api"]], "DateTime class weekday_js and weekday_py properties": [[77, "datetime-class-weekday-js-and-weekday-py-properties"]], "weekday_js property API": [[77, "weekday-js-property-api"]], "weekday_py property API": [[77, "weekday-py-property-api"]], "DateTime class year property": [[78, "datetime-class-year-property"]], "year property API": [[78, "year-property-api"]], "Dictionary class": [[81, "dictionary-class"], [146, "dictionary-class"]], "What is the Dictionary?": [[81, "what-is-the-dictionary"]], "Value setter interface": [[81, "value-setter-interface"]], "Value getter interface": [[81, "value-getter-interface"]], "Notes of the getter interface": [[81, "notes-of-the-getter-interface"]], "Value deletion interface": [[81, "value-deletion-interface"]], "Dictionary class constructor API": [[81, "dictionary-class-constructor-api"]], "value attribute API": [[81, "value-attribute-api"]], "Dictionary get interface": [[83, "dictionary-get-interface"]], "get API": [[83, "get-api"]], "Dictionary length interface": [[84, "dictionary-length-interface"]], "Note for the len function": [[84, "note-for-the-len-function"]], "DisplayObject class visible interface": [[90, "displayobject-class-visible-interface"]], "visible property API": [[90, "visible-property-api"]], "DisplayObject x and y interfaces": [[91, "displayobject-x-and-y-interfaces"]], "Augmented assignment": [[91, "augmented-assignment"]], "x property API": [[91, "x-property-api"], [176, "x-property-api"]], "y property API": [[91, "y-property-api"], [176, "y-property-api"]], "Ellipse class": [[97, "ellipse-class"]], "Note of the draw_ellipse interface": [[97, "note-of-the-draw-ellipse-interface"]], "width property interface example": [[97, "width-property-interface-example"], [182, "width-property-interface-example"]], "height property interface example": [[97, "height-property-interface-example"], [182, "height-property-interface-example"]], "Ellipse class constructor API": [[97, "ellipse-class-constructor-api"]], "enter_frame interface": [[99, "enter-frame-interface"]], "Which should we use, the Timer class or the enter_frame interface?": [[99, "which-should-we-use-the-timer-class-or-the-enter-frame-interface"]], "enter_frame API": [[99, "enter-frame-api"]], "get_child_at interface": [[110, "get-child-at-interface"]], "get_child_at API": [[110, "get-child-at-api"], [191, "get-child-at-api"]], "GraphicsBase fill_alpha interface": [[112, "graphicsbase-fill-alpha-interface"]], "GraphicsBase fill_color property": [[113, "graphicsbase-fill-color-property"]], "GraphicsBase flip_x and flip_y interfaces": [[114, "graphicsbase-flip-x-and-flip-y-interfaces"]], "flip_x property API": [[114, "flip-x-property-api"]], "flip_y property API": [[114, "flip-y-property-api"]], "GraphicsBase line_alpha interface": [[115, "graphicsbase-line-alpha-interface"]], "line_alpha property API": [[115, "line-alpha-property-api"], [141, "line-alpha-property-api"]], "GraphicsBase line_color interface": [[116, "graphicsbase-line-color-interface"]], "line_color property API": [[116, "line-color-property-api"], [141, "line-color-property-api"]], "GraphicsBase line_thickness interface": [[121, "graphicsbase-line-thickness-interface"]], "line_thickness property API": [[121, "line-thickness-property-api"], [141, "line-thickness-property-api"]], "GraphicsBase rotation_around_center interface": [[122, "graphicsbase-rotation-around-center-interface"]], "rotation_around_center property API": [[122, "rotation-around-center-property-api"]], "GraphicsBase rotation_around_point interfaces": [[123, "graphicsbase-rotation-around-point-interfaces"]], "get_rotation_around_point API": [[123, "get-rotation-around-point-api"]], "set_rotation_around_point API": [[123, "set-rotation-around-point-api"]], "GraphicsBase scale_x_from_center and scale_y_from_center interfaces": [[124, "graphicsbase-scale-x-from-center-and-scale-y-from-center-interfaces"]], "scale_x_from_center property API": [[124, "scale-x-from-center-property-api"]], "scale_y_from_center property API": [[124, "scale-y-from-center-property-api"]], "GraphicsBase get_scale_from_point and set_scale_from_point interfaces": [[125, "graphicsbase-get-scale-from-point-and-set-scale-from-point-interfaces"]], "get_scale_x_from_point API": [[125, "get-scale-x-from-point-api"]], "set_scale_x_from_point API": [[125, "set-scale-x-from-point-api"]], "get_scale_y_from_point API": [[125, "get-scale-y-from-point-api"]], "set_scale_y_from_point API": [[125, "set-scale-y-from-point-api"]], "GraphicsBase skew_x and skew_y interfaces": [[126, "graphicsbase-skew-x-and-skew-y-interfaces"]], "skew_x property API": [[126, "skew-x-property-api"]], "skew_y property API": [[126, "skew-y-property-api"]], "Graphics begin_fill interface": [[127, "graphics-begin-fill-interface"]], "Fill color setting": [[127, "fill-color-setting"]], "Fill color alpha (opacity) setting": [[127, "fill-color-alpha-opacity-setting"]], "begin_fill API": [[127, "begin-fill-api"]], "Graphics draw_circle interface": [[129, "graphics-draw-circle-interface"]], "Return value": [[129, "return-value"], [133, "return-value"], [136, "return-value"], [139, "return-value"]], "draw_circle API": [[129, "draw-circle-api"]], "Graphics draw_dash_dotted_line interface": [[130, "graphics-draw-dash-dotted-line-interface"]], "draw_dash_dotted_line API": [[130, "draw-dash-dotted-line-api"]], "Graphics draw_dashed_line interface": [[131, "graphics-draw-dashed-line-interface"]], "draw_dashed_line API": [[131, "draw-dashed-line-api"]], "Graphics draw_dotted_line interface": [[132, "graphics-draw-dotted-line-interface"]], "draw_dotted_line API": [[132, "draw-dotted-line-api"]], "Graphics draw_ellipse interface": [[133, "graphics-draw-ellipse-interface"]], "draw_ellipse API": [[133, "draw-ellipse-api"]], "Graphics draw_line interface": [[134, "graphics-draw-line-interface"]], "Ignored line style settings": [[134, "ignored-line-style-settings"]], "Line class instance": [[134, "line-class-instance"]], "draw_line API": [[134, "draw-line-api"]], "Graphics draw_path interface": [[135, "graphics-draw-path-interface"]], "draw_path API": [[135, "draw-path-api"]], "Graphics draw_polygon interface": [[136, "graphics-draw-polygon-interface"]], "Difference between the line_to and draw_polygon interfaces": [[136, "difference-between-the-line-to-and-draw-polygon-interfaces"]], "draw_polygon API": [[136, "draw-polygon-api"]], "Graphics draw_rect interface": [[137, "graphics-draw-rect-interface"]], "Rectangle instance": [[137, "rectangle-instance"]], "draw_rect API": [[137, "draw-rect-api"]], "Graphics draw_round_dotted_line interface": [[138, "graphics-draw-round-dotted-line-interface"]], "draw_round_dotted_line API": [[138, "draw-round-dotted-line-api"]], "Graphics draw_round_rect interface": [[139, "graphics-draw-round-rect-interface"]], "draw_round_rect API": [[139, "draw-round-rect-api"]], "Graphics draw_triangle interface": [[140, "graphics-draw-triangle-interface"]], "Triangle instance": [[140, "triangle-instance"]], "draw_triangle API": [[140, "draw-triangle-api"]], "Graphics line_style interface": [[141, "graphics-line-style-interface"]], "Line-color setting": [[141, "line-color-setting"]], "Line thickness setting": [[141, "line-thickness-setting"]], "Line alpha (opacity) setting": [[141, "line-alpha-opacity-setting"]], "Line cap setting": [[141, "line-cap-setting"]], "Line joints setting": [[141, "line-joints-setting"]], "Line dot setting": [[141, "line-dot-setting"]], "Line dash setting": [[141, "line-dash-setting"]], "Line round dot setting": [[141, "line-round-dot-setting"]], "Line dash-dot setting": [[141, "line-dash-dot-setting"]], "line_style API": [[141, "line-style-api"]], "line_cap property API": [[141, "line-cap-property-api"]], "line_joints property API": [[141, "line-joints-property-api"]], "line_dash_dot_setting property API": [[141, "line-dash-dot-setting-property-api"]], "Graphics move_to and line_to interfaces": [[142, "graphics-move-to-and-line-to-interfaces"]], "What interfaces are they?": [[142, "what-interfaces-are-they"]], "Sequential calling of the line_to interface": [[142, "sequential-calling-of-the-line-to-interface"]], "move_to interface calling after line_to interface calling": [[142, "move-to-interface-calling-after-line-to-interface-calling"]], "Polyline instance": [[142, "polyline-instance"]], "move_to API": [[142, "move-to-api"]], "line_to API": [[142, "line-to-api"]], "Int and Number classes": [[147, "int-and-number-classes"], [146, "int-and-number-classes"]], "Int class": [[147, "int-class"]], "Number class": [[147, "number-class"]], "Note for the Float class alias": [[147, "note-for-the-float-class-alias"]], "Int and Number classes basic interfaces": [[147, "int-and-number-classes-basic-interfaces"]], "Int class constructor API": [[147, "int-class-constructor-api"]], "Number class constructor API": [[147, "number-class-constructor-api"]], "Line class": [[152, "line-class"]], "Note of the draw_line or other interfaces": [[152, "note-of-the-draw-line-or-other-interfaces"]], "Line class constructor API": [[152, "line-class-constructor-api"]], "MultiLineText class": [[164, "multilinetext-class"]], "MultiLineText constructor API": [[164, "multilinetext-constructor-api"]], "num_children interface": [[165, "num-children-interface"]], "num_children API": [[165, "num-children-api"]], "Path class": [[166, "path-class"]], "PathMoveTo class setting": [[166, "pathmoveto-class-setting"]], "PathLineTo class setting": [[166, "pathlineto-class-setting"]], "PathHorizontal class setting": [[166, "pathhorizontal-class-setting"]], "PathVertical class setting": [[166, "pathvertical-class-setting"]], "PathClose class setting": [[166, "pathclose-class-setting"]], "PathBezier2D class setting": [[166, "pathbezier2d-class-setting"]], "PathBezier2DContinual class setting": [[166, "pathbezier2dcontinual-class-setting"]], "PathBezier3D class setting": [[166, "pathbezier3d-class-setting"]], "PathBezier3DContinual class setting": [[166, "pathbezier3dcontinual-class-setting"]], "Path class constructor API": [[166, "path-class-constructor-api"]], "Point2D class": [[176, "point2d-class"]], "What is the Point2D class?": [[176, "what-is-the-point2d-class"]], "X and y getter interfaces": [[176, "x-and-y-getter-interfaces"]], "X and y setter interfaces": [[176, "x-and-y-setter-interfaces"]], "Usage example of the draw_polygon interface": [[176, "usage-example-of-the-draw-polygon-interface"]], "Point2D class constructor API": [[176, "point2d-class-constructor-api"]], "Polygon class": [[177, "polygon-class"]], "Note of the draw_polygon interface": [[177, "note-of-the-draw-polygon-interface"]], "Polygon class constructor API": [[177, "polygon-class-constructor-api"]], "Polyline class": [[178, "polyline-class"]], "Note of the move_to and line_to interfaces": [[178, "note-of-the-move-to-and-line-to-interfaces"]], "Polyline class constructor API": [[178, "polyline-class-constructor-api"]], "Rectangle class": [[182, "rectangle-class"]], "Note of the draw_rect interface": [[182, "note-of-the-draw-rect-interface"]], "ellipse_width property interface example": [[182, "ellipse-width-property-interface-example"]], "ellipse_height property interface example": [[182, "ellipse-height-property-interface-example"]], "Rectangle class constructor API": [[182, "rectangle-class-constructor-api"]], "RectangleGeom class": [[183, "rectanglegeom-class"]], "Each attribute point": [[183, "each-attribute-point"]], "RectangleGeom constructor API": [[183, "rectanglegeom-constructor-api"]], "RectangleGeom left_x property API": [[183, "rectanglegeom-left-x-property-api"]], "RectangleGeom center_x property API": [[183, "rectanglegeom-center-x-property-api"]], "RectangleGeom right_x property API": [[183, "rectanglegeom-right-x-property-api"]], "RectangleGeom top_y property API": [[183, "rectanglegeom-top-y-property-api"]], "RectangleGeom center_y property API": [[183, "rectanglegeom-center-y-property-api"]], "RectangleGeom bottom_y property API": [[183, "rectanglegeom-bottom-y-property-api"]], "RectangleGeom width property API": [[183, "rectanglegeom-width-property-api"]], "RectangleGeom height property API": [[183, "rectanglegeom-height-property-api"]], "remove_children interface": [[185, "remove-children-interface"]], "remove_children API": [[185, "remove-children-api"]], "Sprite class": [[190, "sprite-class"]], "What is the Sprite?": [[190, "what-is-the-sprite"]], "Note for the automated addition": [[190, "note-for-the-automated-addition"]], "graphics attribute interfaces": [[190, "graphics-attribute-interfaces"]], "Move DisplayObject instances simultaneously": [[190, "move-displayobject-instances-simultaneously"]], "Sprite class constructor API": [[190, "sprite-class-constructor-api"]], "Stage class": [[191, "stage-class"]], "What is the Stage?": [[191, "what-is-the-stage"]], "Create stage": [[191, "create-stage"]], "Stage background color setting": [[191, "stage-background-color-setting"]], "Stage size setting": [[191, "stage-size-setting"]], "Stage element id setting": [[191, "stage-element-id-setting"]], "get_stage function interface": [[191, "get-stage-function-interface"]], "Stage class constructor API": [[191, "stage-class-constructor-api"]], "stage_elem_id property API": [[191, "stage-elem-id-property-api"]], "num_children property API": [[191, "num-children-property-api"]], "get_stage API": [[191, "get-stage-api"]], "String class": [[192, "string-class"], [146, "string-class"]], "What is the String class?": [[192, "what-is-the-string-class"]], "String class interfaces": [[192, "string-class-interfaces"]], "String class constructor API": [[192, "string-class-constructor-api"]], "SvgText class": [[206, "svgtext-class"]], "Note on the baseline of a text\u2019s y-coordinate": [[206, "note-on-the-baseline-of-a-text-s-y-coordinate"]], "text property interface example": [[206, "text-property-interface-example"], [207, "text-property-interface-example"]], "font_size property interface example": [[206, "font-size-property-interface-example"], [207, "font-size-property-interface-example"]], "font_family property interface example": [[206, "font-family-property-interface-example"], [207, "font-family-property-interface-example"]], "leading property interface example": [[206, "leading-property-interface-example"]], "align property interface example": [[206, "align-property-interface-example"]], "bold property interface example": [[206, "bold-property-interface-example"], [207, "bold-property-interface-example"]], "italic property interface example": [[206, "italic-property-interface-example"], [207, "italic-property-interface-example"]], "Scale-related interfaces note": [[206, "scale-related-interfaces-note"]], "SvgText constructor API": [[206, "svgtext-constructor-api"]], "SvgTextSpan class": [[207, "svgtextspan-class"]], "Notes of the line breaking": [[207, "notes-of-the-line-breaking"]], "delta_x property interface example": [[207, "delta-x-property-interface-example"]], "delta_y property interface example": [[207, "delta-y-property-interface-example"]], "SvgTextSpan constructor API": [[207, "svgtextspan-constructor-api"]], "SvgText create_with_svg_text_spans class method API": [[207, "svgtext-create-with-svg-text-spans-class-method-api"]], "TimeDelta class": [[217, "timedelta-class"], [146, "timedelta-class"]], "days property API": [[217, "days-property-api"], [218, "days-property-api"]], "total_seconds method API": [[217, "total-seconds-method-api"], [219, "total-seconds-method-api"]], "TimeDelta class days interface": [[218, "timedelta-class-days-interface"]], "TimeDelta class total_seconds interface": [[219, "timedelta-class-total-seconds-interface"]], "Triangle class": [[229, "triangle-class"]], "Note of the draw_triangle interface": [[229, "note-of-the-draw-triangle-interface"]], "x1 property interface example": [[229, "x1-property-interface-example"]], "y1 property interface example": [[229, "y1-property-interface-example"]], "x2 property interface example": [[229, "x2-property-interface-example"]], "y2 property interface example": [[229, "y2-property-interface-example"]], "x3 property interface example": [[229, "x3-property-interface-example"]], "y3 property interface example": [[229, "y3-property-interface-example"]], "Triangle class constructor API": [[229, "triangle-class-constructor-api"]], "x1 property API": [[229, "x1-property-api"]], "y1 property API": [[229, "y1-property-api"]], "x2 property API": [[229, "x2-property-api"]], "y2 property API": [[229, "y2-property-api"]], "x3 property API": [[229, "x3-property-api"]], "y3 property API": [[229, "y3-property-api"]], "unbind_enter_frame and unbind_enter_frame_all interfaces": [[231, "unbind-enter-frame-and-unbind-enter-frame-all-interfaces"]], "unbind_enter_frame API": [[231, "unbind-enter-frame-api"]], "unbind_enter_frame_all API": [[231, "unbind-enter-frame-all-api"]], "apysc documentation": [[146, "apysc-documentation"]], "Project links": [[146, "project-links"]], "Container classes": [[146, "container-classes"]], "Exporting": [[146, "exporting"]], "Child-related interfaces": [[146, "child-related-interfaces"]], "apysc basic data classes": [[146, "apysc-basic-data-classes"]], "Boolean class and constants": [[146, "boolean-class-and-constants"]], "Color class and constants": [[146, "color-class-and-constants"]], "DisplayObject and GraphicsBase classes": [[146, "displayobject-and-graphicsbase-classes"]], "Each graphic class": [[146, "each-graphic-class"]], "Text": [[146, "text"]], "SVG text": [[146, "svg-text"]], "Geometry-related classes": [[146, "geometry-related-classes"]], "Mask": [[146, "mask"]], "Common event interfaces": [[146, "common-event-interfaces"]], "MouseEvent class and mouse event binding": [[146, "mouseevent-class-and-mouse-event-binding"]], "Branch instruction": [[146, "branch-instruction"]], "Loop": [[146, "loop"]], "Timer and enter-frame": [[146, "timer-and-enter-frame"]], "Animation": [[146, "animation"]], "Mathematics": [[146, "mathematics"]], "Other manipulation interfaces": [[146, "other-manipulation-interfaces"]], "Debugging": [[146, "debugging"]], "Testing": [[146, "testing"]], "Material design": [[146, "material-design"]]}, "indexentries": {}}) \ No newline at end of file diff --git a/docs/en/static/array_last_value_basic_usage_1/index.html b/docs/en/static/array_last_value_basic_usage_1/index.html index 1b0823b182..1d9055ae09 100644 --- a/docs/en/static/array_last_value_basic_usage_1/index.html +++ b/docs/en/static/array_last_value_basic_usage_1/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/array_last_value_basic_usage_2/index.html b/docs/en/static/array_last_value_basic_usage_2/index.html index fc7e9c77fb..b758219499 100644 --- a/docs/en/static/array_last_value_basic_usage_2/index.html +++ b/docs/en/static/array_last_value_basic_usage_2/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_basic_usage/index.html b/docs/en/static/circle_basic_usage/index.html index 09ea4fa203..8ede519982 100644 --- a/docs/en/static/circle_basic_usage/index.html +++ b/docs/en/static/circle_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_fill_alpha/index.html b/docs/en/static/circle_fill_alpha/index.html index 1122f316b8..bc15640608 100644 --- a/docs/en/static/circle_fill_alpha/index.html +++ b/docs/en/static/circle_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_fill_color/index.html b/docs/en/static/circle_fill_color/index.html index 6cd58e2df0..a0f1b37473 100644 --- a/docs/en/static/circle_fill_color/index.html +++ b/docs/en/static/circle_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_flip_x/index.html b/docs/en/static/circle_flip_x/index.html index 0885e0773f..fdc4a6978a 100644 --- a/docs/en/static/circle_flip_x/index.html +++ b/docs/en/static/circle_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_flip_y/index.html b/docs/en/static/circle_flip_y/index.html index dfaa8a4d23..183b7cbfb1 100644 --- a/docs/en/static/circle_flip_y/index.html +++ b/docs/en/static/circle_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_line_alpha/index.html b/docs/en/static/circle_line_alpha/index.html index d2fe60df16..b215b66bda 100644 --- a/docs/en/static/circle_line_alpha/index.html +++ b/docs/en/static/circle_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_line_color/index.html b/docs/en/static/circle_line_color/index.html index 2690a7dcef..63164e74bb 100644 --- a/docs/en/static/circle_line_color/index.html +++ b/docs/en/static/circle_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_line_dash_dot_setting/index.html b/docs/en/static/circle_line_dash_dot_setting/index.html index fc56c0326e..d7a977bee3 100644 --- a/docs/en/static/circle_line_dash_dot_setting/index.html +++ b/docs/en/static/circle_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_line_dash_setting/index.html b/docs/en/static/circle_line_dash_setting/index.html index 9e02e349b8..bfa5f50aa6 100644 --- a/docs/en/static/circle_line_dash_setting/index.html +++ b/docs/en/static/circle_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_line_dot_setting/index.html b/docs/en/static/circle_line_dot_setting/index.html index f8901afb5e..8a15257fb2 100644 --- a/docs/en/static/circle_line_dot_setting/index.html +++ b/docs/en/static/circle_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_line_round_dot_setting/index.html b/docs/en/static/circle_line_round_dot_setting/index.html index 949ed4f8f5..344500a3e7 100644 --- a/docs/en/static/circle_line_round_dot_setting/index.html +++ b/docs/en/static/circle_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_line_thickness/index.html b/docs/en/static/circle_line_thickness/index.html index d75db642bf..b6f841477f 100644 --- a/docs/en/static/circle_line_thickness/index.html +++ b/docs/en/static/circle_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_radius/index.html b/docs/en/static/circle_radius/index.html index 34944943a9..cc3a92e530 100644 --- a/docs/en/static/circle_radius/index.html +++ b/docs/en/static/circle_radius/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_rotation_around_center/index.html b/docs/en/static/circle_rotation_around_center/index.html index 1bb6449637..709c99e945 100644 --- a/docs/en/static/circle_rotation_around_center/index.html +++ b/docs/en/static/circle_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_scale_x_from_center/index.html b/docs/en/static/circle_scale_x_from_center/index.html index 861983d2a3..970a32afba 100644 --- a/docs/en/static/circle_scale_x_from_center/index.html +++ b/docs/en/static/circle_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_scale_x_from_point/index.html b/docs/en/static/circle_scale_x_from_point/index.html index e379fbf85e..5bf980f794 100644 --- a/docs/en/static/circle_scale_x_from_point/index.html +++ b/docs/en/static/circle_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_scale_y_from_center/index.html b/docs/en/static/circle_scale_y_from_center/index.html index 0367fad457..e33d4fa53e 100644 --- a/docs/en/static/circle_scale_y_from_center/index.html +++ b/docs/en/static/circle_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_scale_y_from_point/index.html b/docs/en/static/circle_scale_y_from_point/index.html index 9c6a926cc0..734fc4cf09 100644 --- a/docs/en/static/circle_scale_y_from_point/index.html +++ b/docs/en/static/circle_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_set_rotation_around_point/index.html b/docs/en/static/circle_set_rotation_around_point/index.html index 15cd74b0c0..d5cee024be 100644 --- a/docs/en/static/circle_set_rotation_around_point/index.html +++ b/docs/en/static/circle_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_skew_x/index.html b/docs/en/static/circle_skew_x/index.html index 69aaecb99c..6a3de8338c 100644 --- a/docs/en/static/circle_skew_x/index.html +++ b/docs/en/static/circle_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_skew_y/index.html b/docs/en/static/circle_skew_y/index.html index 31c5aeec79..913d75c098 100644 --- a/docs/en/static/circle_skew_y/index.html +++ b/docs/en/static/circle_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_x/index.html b/docs/en/static/circle_x/index.html index 39771f0cc1..582ad94e40 100644 --- a/docs/en/static/circle_x/index.html +++ b/docs/en/static/circle_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/circle_y/index.html b/docs/en/static/circle_y/index.html index 721c68a451..8f4ef45837 100644 --- a/docs/en/static/circle_y/index.html +++ b/docs/en/static/circle_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/datetime_now_basic_usage/index.html b/docs/en/static/datetime_now_basic_usage/index.html index 80f01cdf2c..0f6de3b7d9 100644 --- a/docs/en/static/datetime_now_basic_usage/index.html +++ b/docs/en/static/datetime_now_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/display_object_visible_basic_usage/index.html b/docs/en/static/display_object_visible_basic_usage/index.html index e5add41d6f..e212c80f6b 100644 --- a/docs/en/static/display_object_visible_basic_usage/index.html +++ b/docs/en/static/display_object_visible_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/display_object_x_and_y_augmented_assignment/index.html b/docs/en/static/display_object_x_and_y_augmented_assignment/index.html index 8a30f54de2..66c53df203 100644 --- a/docs/en/static/display_object_x_and_y_augmented_assignment/index.html +++ b/docs/en/static/display_object_x_and_y_augmented_assignment/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/display_object_x_and_y_basic_usage/index.html b/docs/en/static/display_object_x_and_y_basic_usage/index.html index 27434d2ad8..808c17de07 100644 --- a/docs/en/static/display_object_x_and_y_basic_usage/index.html +++ b/docs/en/static/display_object_x_and_y_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_basic_usage/index.html b/docs/en/static/ellipse_basic_usage/index.html index c26d6399ed..da8f6e7005 100644 --- a/docs/en/static/ellipse_basic_usage/index.html +++ b/docs/en/static/ellipse_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_fill_alpha/index.html b/docs/en/static/ellipse_fill_alpha/index.html index 8f87fbd51d..7545d91f8f 100644 --- a/docs/en/static/ellipse_fill_alpha/index.html +++ b/docs/en/static/ellipse_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_fill_color/index.html b/docs/en/static/ellipse_fill_color/index.html index 6da05acdcb..b81f10bc8e 100644 --- a/docs/en/static/ellipse_fill_color/index.html +++ b/docs/en/static/ellipse_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_flip_x/index.html b/docs/en/static/ellipse_flip_x/index.html index 5eeffd6e98..e2ddd37ae1 100644 --- a/docs/en/static/ellipse_flip_x/index.html +++ b/docs/en/static/ellipse_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_flip_y/index.html b/docs/en/static/ellipse_flip_y/index.html index 07cba794ab..c6bb569b04 100644 --- a/docs/en/static/ellipse_flip_y/index.html +++ b/docs/en/static/ellipse_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_height/index.html b/docs/en/static/ellipse_height/index.html index f9a5eda640..084ef4d0ee 100644 --- a/docs/en/static/ellipse_height/index.html +++ b/docs/en/static/ellipse_height/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_line_alpha/index.html b/docs/en/static/ellipse_line_alpha/index.html index 90a98366ab..2e0f38a024 100644 --- a/docs/en/static/ellipse_line_alpha/index.html +++ b/docs/en/static/ellipse_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_line_color/index.html b/docs/en/static/ellipse_line_color/index.html index d70d99cdbd..119c45ca01 100644 --- a/docs/en/static/ellipse_line_color/index.html +++ b/docs/en/static/ellipse_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_line_dash_dot_setting/index.html b/docs/en/static/ellipse_line_dash_dot_setting/index.html index 6194ec1c36..6a8ef17ed9 100644 --- a/docs/en/static/ellipse_line_dash_dot_setting/index.html +++ b/docs/en/static/ellipse_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_line_dash_setting/index.html b/docs/en/static/ellipse_line_dash_setting/index.html index 1890d22a99..fbab9156e7 100644 --- a/docs/en/static/ellipse_line_dash_setting/index.html +++ b/docs/en/static/ellipse_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_line_dot_setting/index.html b/docs/en/static/ellipse_line_dot_setting/index.html index 98ab705dc0..542cc5d020 100644 --- a/docs/en/static/ellipse_line_dot_setting/index.html +++ b/docs/en/static/ellipse_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_line_round_dot_setting/index.html b/docs/en/static/ellipse_line_round_dot_setting/index.html index 16ee29b1ea..0891904bbf 100644 --- a/docs/en/static/ellipse_line_round_dot_setting/index.html +++ b/docs/en/static/ellipse_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_line_thickness/index.html b/docs/en/static/ellipse_line_thickness/index.html index 5af0e91bd0..817ba802e9 100644 --- a/docs/en/static/ellipse_line_thickness/index.html +++ b/docs/en/static/ellipse_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_rotation_around_center/index.html b/docs/en/static/ellipse_rotation_around_center/index.html index b4e76803da..2191bb6e13 100644 --- a/docs/en/static/ellipse_rotation_around_center/index.html +++ b/docs/en/static/ellipse_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_scale_x_from_center/index.html b/docs/en/static/ellipse_scale_x_from_center/index.html index 5511d1b06f..7db865cf7b 100644 --- a/docs/en/static/ellipse_scale_x_from_center/index.html +++ b/docs/en/static/ellipse_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_scale_x_from_point/index.html b/docs/en/static/ellipse_scale_x_from_point/index.html index f061cf8552..24b9c93ac0 100644 --- a/docs/en/static/ellipse_scale_x_from_point/index.html +++ b/docs/en/static/ellipse_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_scale_y_from_center/index.html b/docs/en/static/ellipse_scale_y_from_center/index.html index 585b176607..6d4ccada0b 100644 --- a/docs/en/static/ellipse_scale_y_from_center/index.html +++ b/docs/en/static/ellipse_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_scale_y_from_point/index.html b/docs/en/static/ellipse_scale_y_from_point/index.html index 2c357e8b3f..07e0409987 100644 --- a/docs/en/static/ellipse_scale_y_from_point/index.html +++ b/docs/en/static/ellipse_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_set_rotation_around_point/index.html b/docs/en/static/ellipse_set_rotation_around_point/index.html index b90645feda..0499c301f1 100644 --- a/docs/en/static/ellipse_set_rotation_around_point/index.html +++ b/docs/en/static/ellipse_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_skew_x/index.html b/docs/en/static/ellipse_skew_x/index.html index e23228acc6..0f2f6fea89 100644 --- a/docs/en/static/ellipse_skew_x/index.html +++ b/docs/en/static/ellipse_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_skew_y/index.html b/docs/en/static/ellipse_skew_y/index.html index d0c2461fe7..5801b2a34c 100644 --- a/docs/en/static/ellipse_skew_y/index.html +++ b/docs/en/static/ellipse_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_width/index.html b/docs/en/static/ellipse_width/index.html index abe26c991d..92176d92df 100644 --- a/docs/en/static/ellipse_width/index.html +++ b/docs/en/static/ellipse_width/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_x/index.html b/docs/en/static/ellipse_x/index.html index a2de27f5cc..e6f1d0311f 100644 --- a/docs/en/static/ellipse_x/index.html +++ b/docs/en/static/ellipse_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/ellipse_y/index.html b/docs/en/static/ellipse_y/index.html index 915eb04ec1..dc2f28ab97 100644 --- a/docs/en/static/ellipse_y/index.html +++ b/docs/en/static/ellipse_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/enter_frame_basic_usage/index.html b/docs/en/static/enter_frame_basic_usage/index.html index 8e660b6ffe..e2e41b2cee 100644 --- a/docs/en/static/enter_frame_basic_usage/index.html +++ b/docs/en/static/enter_frame_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_base_fill_alpha_basic_usage/index.html b/docs/en/static/graphics_base_fill_alpha_basic_usage/index.html index fa6852fa10..f717016f2e 100644 --- a/docs/en/static/graphics_base_fill_alpha_basic_usage/index.html +++ b/docs/en/static/graphics_base_fill_alpha_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_base_fill_color_basic_usage/index.html b/docs/en/static/graphics_base_fill_color_basic_usage/index.html index 5a5851fb99..59baa580f8 100644 --- a/docs/en/static/graphics_base_fill_color_basic_usage/index.html +++ b/docs/en/static/graphics_base_fill_color_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_base_flip_x_basic_usage/index.html b/docs/en/static/graphics_base_flip_x_basic_usage/index.html index 26a79c73d2..00844246c2 100644 --- a/docs/en/static/graphics_base_flip_x_basic_usage/index.html +++ b/docs/en/static/graphics_base_flip_x_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_base_line_alpha_basic_usage/index.html b/docs/en/static/graphics_base_line_alpha_basic_usage/index.html index 96a2f31003..18f958ec88 100644 --- a/docs/en/static/graphics_base_line_alpha_basic_usage/index.html +++ b/docs/en/static/graphics_base_line_alpha_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_base_line_color_basic_usage/index.html b/docs/en/static/graphics_base_line_color_basic_usage/index.html index a7c46bf1b5..5a44497b31 100644 --- a/docs/en/static/graphics_base_line_color_basic_usage/index.html +++ b/docs/en/static/graphics_base_line_color_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_base_line_thickness_basic_usage/index.html b/docs/en/static/graphics_base_line_thickness_basic_usage/index.html index 956d235ee3..11047f7e3b 100644 --- a/docs/en/static/graphics_base_line_thickness_basic_usage/index.html +++ b/docs/en/static/graphics_base_line_thickness_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_base_rotation_around_center_basic_usage/index.html b/docs/en/static/graphics_base_rotation_around_center_basic_usage/index.html index 8370c4050c..651863c5e4 100644 --- a/docs/en/static/graphics_base_rotation_around_center_basic_usage/index.html +++ b/docs/en/static/graphics_base_rotation_around_center_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_base_rotation_around_point_basic_usage/index.html b/docs/en/static/graphics_base_rotation_around_point_basic_usage/index.html index 29b3ee06ae..2aceb95624 100644 --- a/docs/en/static/graphics_base_rotation_around_point_basic_usage/index.html +++ b/docs/en/static/graphics_base_rotation_around_point_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_base_scale_from_center_basic_usage_1/index.html b/docs/en/static/graphics_base_scale_from_center_basic_usage_1/index.html index 0c5ab14039..0f8c257479 100644 --- a/docs/en/static/graphics_base_scale_from_center_basic_usage_1/index.html +++ b/docs/en/static/graphics_base_scale_from_center_basic_usage_1/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_base_scale_from_center_basic_usage_2/index.html b/docs/en/static/graphics_base_scale_from_center_basic_usage_2/index.html index 290727cc78..d800dff1cf 100644 --- a/docs/en/static/graphics_base_scale_from_center_basic_usage_2/index.html +++ b/docs/en/static/graphics_base_scale_from_center_basic_usage_2/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_base_scale_from_center_basic_usage_3/index.html b/docs/en/static/graphics_base_scale_from_center_basic_usage_3/index.html index a608fd2672..7d795b494e 100644 --- a/docs/en/static/graphics_base_scale_from_center_basic_usage_3/index.html +++ b/docs/en/static/graphics_base_scale_from_center_basic_usage_3/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_base_scale_from_point_basic_usage_x/index.html b/docs/en/static/graphics_base_scale_from_point_basic_usage_x/index.html index 89e55e31cf..c0518c2a36 100644 --- a/docs/en/static/graphics_base_scale_from_point_basic_usage_x/index.html +++ b/docs/en/static/graphics_base_scale_from_point_basic_usage_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_base_scale_from_point_basic_usage_y/index.html b/docs/en/static/graphics_base_scale_from_point_basic_usage_y/index.html index 82d33236eb..2d93ffce60 100644 --- a/docs/en/static/graphics_base_scale_from_point_basic_usage_y/index.html +++ b/docs/en/static/graphics_base_scale_from_point_basic_usage_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_base_skew_x_basic_usage/index.html b/docs/en/static/graphics_base_skew_x_basic_usage/index.html index 4219f7ab94..8bcf54bc33 100644 --- a/docs/en/static/graphics_base_skew_x_basic_usage/index.html +++ b/docs/en/static/graphics_base_skew_x_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_base_skew_y_incremental_basic_usage/index.html b/docs/en/static/graphics_base_skew_y_incremental_basic_usage/index.html index 35b6438962..aab747779a 100644 --- a/docs/en/static/graphics_base_skew_y_incremental_basic_usage/index.html +++ b/docs/en/static/graphics_base_skew_y_incremental_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_begin_fill_acceptable_color_settings/index.html b/docs/en/static/graphics_begin_fill_acceptable_color_settings/index.html index f33dff454d..4386e56dda 100644 --- a/docs/en/static/graphics_begin_fill_acceptable_color_settings/index.html +++ b/docs/en/static/graphics_begin_fill_acceptable_color_settings/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_begin_fill_alpha_setting/index.html b/docs/en/static/graphics_begin_fill_alpha_setting/index.html index 7fe4c0bb1e..890df7b477 100644 --- a/docs/en/static/graphics_begin_fill_alpha_setting/index.html +++ b/docs/en/static/graphics_begin_fill_alpha_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_begin_fill_basic_usage/index.html b/docs/en/static/graphics_begin_fill_basic_usage/index.html index 3d820c4327..e0b7c60334 100644 --- a/docs/en/static/graphics_begin_fill_basic_usage/index.html +++ b/docs/en/static/graphics_begin_fill_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_begin_fill_color_setting_clear/index.html b/docs/en/static/graphics_begin_fill_color_setting_clear/index.html index 71c065a131..f552cd2113 100644 --- a/docs/en/static/graphics_begin_fill_color_setting_clear/index.html +++ b/docs/en/static/graphics_begin_fill_color_setting_clear/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_begin_fill_fill_color/index.html b/docs/en/static/graphics_begin_fill_fill_color/index.html index 77b9ea9c6b..67227c9f4f 100644 --- a/docs/en/static/graphics_begin_fill_fill_color/index.html +++ b/docs/en/static/graphics_begin_fill_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_circle_basic_usage/index.html b/docs/en/static/graphics_draw_circle_basic_usage/index.html index dd13422d03..713db9b8f4 100644 --- a/docs/en/static/graphics_draw_circle_basic_usage/index.html +++ b/docs/en/static/graphics_draw_circle_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_circle_return_value/index.html b/docs/en/static/graphics_draw_circle_return_value/index.html index 764a7232fa..b6a05a27a6 100644 --- a/docs/en/static/graphics_draw_circle_return_value/index.html +++ b/docs/en/static/graphics_draw_circle_return_value/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_dash_dotted_line_basic_usage/index.html b/docs/en/static/graphics_draw_dash_dotted_line_basic_usage/index.html index a7d96bc21d..3a11314895 100644 --- a/docs/en/static/graphics_draw_dash_dotted_line_basic_usage/index.html +++ b/docs/en/static/graphics_draw_dash_dotted_line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_dashed_line_basic_usage/index.html b/docs/en/static/graphics_draw_dashed_line_basic_usage/index.html index 1cb063dc70..0e0079c881 100644 --- a/docs/en/static/graphics_draw_dashed_line_basic_usage/index.html +++ b/docs/en/static/graphics_draw_dashed_line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_dotted_line_basic_usage/index.html b/docs/en/static/graphics_draw_dotted_line_basic_usage/index.html index 158781cee4..1b7d8ad52a 100644 --- a/docs/en/static/graphics_draw_dotted_line_basic_usage/index.html +++ b/docs/en/static/graphics_draw_dotted_line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_ellipse_basic_usage/index.html b/docs/en/static/graphics_draw_ellipse_basic_usage/index.html index c0beb976f3..93bfd99cc5 100644 --- a/docs/en/static/graphics_draw_ellipse_basic_usage/index.html +++ b/docs/en/static/graphics_draw_ellipse_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_ellipse_return_value/index.html b/docs/en/static/graphics_draw_ellipse_return_value/index.html index d8430211e4..5c87778bb5 100644 --- a/docs/en/static/graphics_draw_ellipse_return_value/index.html +++ b/docs/en/static/graphics_draw_ellipse_return_value/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_line_basic_usage/index.html b/docs/en/static/graphics_draw_line_basic_usage/index.html index e04f93de08..dcf262636c 100644 --- a/docs/en/static/graphics_draw_line_basic_usage/index.html +++ b/docs/en/static/graphics_draw_line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_line_ignored_dot_setting/index.html b/docs/en/static/graphics_draw_line_ignored_dot_setting/index.html index a0a5decd49..0a47cbf852 100644 --- a/docs/en/static/graphics_draw_line_ignored_dot_setting/index.html +++ b/docs/en/static/graphics_draw_line_ignored_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_line_line_instance/index.html b/docs/en/static/graphics_draw_line_line_instance/index.html index 5034fdbf5f..6e6bddd1e4 100644 --- a/docs/en/static/graphics_draw_line_line_instance/index.html +++ b/docs/en/static/graphics_draw_line_line_instance/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_path_basic_usage/index.html b/docs/en/static/graphics_draw_path_basic_usage/index.html index 572cd037c8..9660d6c078 100644 --- a/docs/en/static/graphics_draw_path_basic_usage/index.html +++ b/docs/en/static/graphics_draw_path_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_polygon_append_line_point/index.html b/docs/en/static/graphics_draw_polygon_append_line_point/index.html index 866feb09b1..024deb8315 100644 --- a/docs/en/static/graphics_draw_polygon_append_line_point/index.html +++ b/docs/en/static/graphics_draw_polygon_append_line_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_polygon_basic_usage/index.html b/docs/en/static/graphics_draw_polygon_basic_usage/index.html index ce64438fb1..775c432909 100644 --- a/docs/en/static/graphics_draw_polygon_basic_usage/index.html +++ b/docs/en/static/graphics_draw_polygon_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_polygon_line_to_difference_1/index.html b/docs/en/static/graphics_draw_polygon_line_to_difference_1/index.html index 211e96ab13..5673bd9f49 100644 --- a/docs/en/static/graphics_draw_polygon_line_to_difference_1/index.html +++ b/docs/en/static/graphics_draw_polygon_line_to_difference_1/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_polygon_line_to_difference_2/index.html b/docs/en/static/graphics_draw_polygon_line_to_difference_2/index.html index 55cc078abf..bd58b8736a 100644 --- a/docs/en/static/graphics_draw_polygon_line_to_difference_2/index.html +++ b/docs/en/static/graphics_draw_polygon_line_to_difference_2/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_rect_basic_usage/index.html b/docs/en/static/graphics_draw_rect_basic_usage/index.html index bd2a66e75e..813f22af38 100644 --- a/docs/en/static/graphics_draw_rect_basic_usage/index.html +++ b/docs/en/static/graphics_draw_rect_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_rect_basic_usage_skipped_begin_fill/index.html b/docs/en/static/graphics_draw_rect_basic_usage_skipped_begin_fill/index.html index efb8b22706..b5b93c3134 100644 --- a/docs/en/static/graphics_draw_rect_basic_usage_skipped_begin_fill/index.html +++ b/docs/en/static/graphics_draw_rect_basic_usage_skipped_begin_fill/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_rect_rectangle/index.html b/docs/en/static/graphics_draw_rect_rectangle/index.html index a54c887729..9f2f957389 100644 --- a/docs/en/static/graphics_draw_rect_rectangle/index.html +++ b/docs/en/static/graphics_draw_rect_rectangle/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_round_dotted_line_basic_usage/index.html b/docs/en/static/graphics_draw_round_dotted_line_basic_usage/index.html index 8ccf3797e2..e0c12ebc4a 100644 --- a/docs/en/static/graphics_draw_round_dotted_line_basic_usage/index.html +++ b/docs/en/static/graphics_draw_round_dotted_line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_round_dotted_line_notes/index.html b/docs/en/static/graphics_draw_round_dotted_line_notes/index.html index fcbbe60fcf..93bb57174b 100644 --- a/docs/en/static/graphics_draw_round_dotted_line_notes/index.html +++ b/docs/en/static/graphics_draw_round_dotted_line_notes/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_round_rect_basic_usage/index.html b/docs/en/static/graphics_draw_round_rect_basic_usage/index.html index cab5d807b8..8050e5a9d8 100644 --- a/docs/en/static/graphics_draw_round_rect_basic_usage/index.html +++ b/docs/en/static/graphics_draw_round_rect_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_round_rect_return_value/index.html b/docs/en/static/graphics_draw_round_rect_return_value/index.html index 4394c94367..3559561da2 100644 --- a/docs/en/static/graphics_draw_round_rect_return_value/index.html +++ b/docs/en/static/graphics_draw_round_rect_return_value/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_triangle_basic_usage/index.html b/docs/en/static/graphics_draw_triangle_basic_usage/index.html index 49266aa8d4..b779e7c7ab 100644 --- a/docs/en/static/graphics_draw_triangle_basic_usage/index.html +++ b/docs/en/static/graphics_draw_triangle_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_draw_triangle_triangle_instance/index.html b/docs/en/static/graphics_draw_triangle_triangle_instance/index.html index 25ac63d6dc..b93ff94c9c 100644 --- a/docs/en/static/graphics_draw_triangle_triangle_instance/index.html +++ b/docs/en/static/graphics_draw_triangle_triangle_instance/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_line_style_alpha/index.html b/docs/en/static/graphics_line_style_alpha/index.html index bf965b4eed..c156420f6a 100644 --- a/docs/en/static/graphics_line_style_alpha/index.html +++ b/docs/en/static/graphics_line_style_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_line_style_basics/index.html b/docs/en/static/graphics_line_style_basics/index.html index 4c838ded06..af484833ed 100644 --- a/docs/en/static/graphics_line_style_basics/index.html +++ b/docs/en/static/graphics_line_style_basics/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_line_style_caps/index.html b/docs/en/static/graphics_line_style_caps/index.html index fe7555ee0f..ee00235363 100644 --- a/docs/en/static/graphics_line_style_caps/index.html +++ b/docs/en/static/graphics_line_style_caps/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_line_style_clear_line_color/index.html b/docs/en/static/graphics_line_style_clear_line_color/index.html index 6bbb1cafeb..754d2271eb 100644 --- a/docs/en/static/graphics_line_style_clear_line_color/index.html +++ b/docs/en/static/graphics_line_style_clear_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_line_style_joints/index.html b/docs/en/static/graphics_line_style_joints/index.html index 723c099ac4..f391d36dcc 100644 --- a/docs/en/static/graphics_line_style_joints/index.html +++ b/docs/en/static/graphics_line_style_joints/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_line_style_line_color/index.html b/docs/en/static/graphics_line_style_line_color/index.html index 7b65e5a22a..78d18623a2 100644 --- a/docs/en/static/graphics_line_style_line_color/index.html +++ b/docs/en/static/graphics_line_style_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_line_style_line_color_color_code/index.html b/docs/en/static/graphics_line_style_line_color_color_code/index.html index 870a75e99a..c2a9ca1c92 100644 --- a/docs/en/static/graphics_line_style_line_color_color_code/index.html +++ b/docs/en/static/graphics_line_style_line_color_color_code/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_line_style_line_dash_dot_setting/index.html b/docs/en/static/graphics_line_style_line_dash_dot_setting/index.html index 5e358f502b..82f21454ca 100644 --- a/docs/en/static/graphics_line_style_line_dash_dot_setting/index.html +++ b/docs/en/static/graphics_line_style_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_line_style_line_dash_setting/index.html b/docs/en/static/graphics_line_style_line_dash_setting/index.html index 814f4b2a92..70c23b0bf4 100644 --- a/docs/en/static/graphics_line_style_line_dash_setting/index.html +++ b/docs/en/static/graphics_line_style_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_line_style_line_dot_setting/index.html b/docs/en/static/graphics_line_style_line_dot_setting/index.html index 727e96938a..ccd9910b7e 100644 --- a/docs/en/static/graphics_line_style_line_dot_setting/index.html +++ b/docs/en/static/graphics_line_style_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_line_style_line_dot_setting_rectangle/index.html b/docs/en/static/graphics_line_style_line_dot_setting_rectangle/index.html index c2cc332cee..8ade6c272e 100644 --- a/docs/en/static/graphics_line_style_line_dot_setting_rectangle/index.html +++ b/docs/en/static/graphics_line_style_line_dot_setting_rectangle/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_line_style_line_round_dot_setting/index.html b/docs/en/static/graphics_line_style_line_round_dot_setting/index.html index 74969888ec..f08204ddb4 100644 --- a/docs/en/static/graphics_line_style_line_round_dot_setting/index.html +++ b/docs/en/static/graphics_line_style_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_line_style_thickness/index.html b/docs/en/static/graphics_line_style_thickness/index.html index 08b2b3a4f8..a47b479e18 100644 --- a/docs/en/static/graphics_line_style_thickness/index.html +++ b/docs/en/static/graphics_line_style_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_move_to_and_line_to_basic_usage/index.html b/docs/en/static/graphics_move_to_and_line_to_basic_usage/index.html index a70583a4e3..99dc77b094 100644 --- a/docs/en/static/graphics_move_to_and_line_to_basic_usage/index.html +++ b/docs/en/static/graphics_move_to_and_line_to_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_move_to_and_line_to_multi_move_to_calling/index.html b/docs/en/static/graphics_move_to_and_line_to_multi_move_to_calling/index.html index ad464e0c1d..9dfa34fbc5 100644 --- a/docs/en/static/graphics_move_to_and_line_to_multi_move_to_calling/index.html +++ b/docs/en/static/graphics_move_to_and_line_to_multi_move_to_calling/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_move_to_and_line_to_polyline/index.html b/docs/en/static/graphics_move_to_and_line_to_polyline/index.html index e718b1562a..81604b36d8 100644 --- a/docs/en/static/graphics_move_to_and_line_to_polyline/index.html +++ b/docs/en/static/graphics_move_to_and_line_to_polyline/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/graphics_move_to_and_line_to_sequential_calling/index.html b/docs/en/static/graphics_move_to_and_line_to_sequential_calling/index.html index 660b8cd751..64c4ba687d 100644 --- a/docs/en/static/graphics_move_to_and_line_to_sequential_calling/index.html +++ b/docs/en/static/graphics_move_to_and_line_to_sequential_calling/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_basic_usage/index.html b/docs/en/static/line_basic_usage/index.html index fe01cde35a..e7e36e15a6 100644 --- a/docs/en/static/line_basic_usage/index.html +++ b/docs/en/static/line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_flip_x/index.html b/docs/en/static/line_flip_x/index.html index 771f923bc3..ce8ad298ba 100644 --- a/docs/en/static/line_flip_x/index.html +++ b/docs/en/static/line_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_flip_y/index.html b/docs/en/static/line_flip_y/index.html index e4b14c222f..cc2e8fdf23 100644 --- a/docs/en/static/line_flip_y/index.html +++ b/docs/en/static/line_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_line_alpha/index.html b/docs/en/static/line_line_alpha/index.html index 76ca0b13c4..210df728f9 100644 --- a/docs/en/static/line_line_alpha/index.html +++ b/docs/en/static/line_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_line_color/index.html b/docs/en/static/line_line_color/index.html index 28c6937f86..6f524c1dd9 100644 --- a/docs/en/static/line_line_color/index.html +++ b/docs/en/static/line_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_line_dash_dot_setting/index.html b/docs/en/static/line_line_dash_dot_setting/index.html index 37b82eaf16..da0f036de5 100644 --- a/docs/en/static/line_line_dash_dot_setting/index.html +++ b/docs/en/static/line_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_line_dash_setting/index.html b/docs/en/static/line_line_dash_setting/index.html index 90135cfd8c..9338dafd0e 100644 --- a/docs/en/static/line_line_dash_setting/index.html +++ b/docs/en/static/line_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_line_dot_setting/index.html b/docs/en/static/line_line_dot_setting/index.html index 1b7855296d..e9a0558c8d 100644 --- a/docs/en/static/line_line_dot_setting/index.html +++ b/docs/en/static/line_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_line_round_dot_setting/index.html b/docs/en/static/line_line_round_dot_setting/index.html index 4fc88585a7..598604a2f5 100644 --- a/docs/en/static/line_line_round_dot_setting/index.html +++ b/docs/en/static/line_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_line_thickness/index.html b/docs/en/static/line_line_thickness/index.html index 4901fe9c13..e4d33a617a 100644 --- a/docs/en/static/line_line_thickness/index.html +++ b/docs/en/static/line_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_rotation_around_center/index.html b/docs/en/static/line_rotation_around_center/index.html index 65376b8a52..0999042482 100644 --- a/docs/en/static/line_rotation_around_center/index.html +++ b/docs/en/static/line_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_scale_x_from_center/index.html b/docs/en/static/line_scale_x_from_center/index.html index 602f30d803..0eca56f4c6 100644 --- a/docs/en/static/line_scale_x_from_center/index.html +++ b/docs/en/static/line_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_scale_x_from_point/index.html b/docs/en/static/line_scale_x_from_point/index.html index 6b14da43b0..390d48c957 100644 --- a/docs/en/static/line_scale_x_from_point/index.html +++ b/docs/en/static/line_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_scale_y_from_center/index.html b/docs/en/static/line_scale_y_from_center/index.html index 05bb16d373..9d8dd79c22 100644 --- a/docs/en/static/line_scale_y_from_center/index.html +++ b/docs/en/static/line_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_scale_y_from_point/index.html b/docs/en/static/line_scale_y_from_point/index.html index c38821fdea..e85e20869f 100644 --- a/docs/en/static/line_scale_y_from_point/index.html +++ b/docs/en/static/line_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_set_rotation_around_point/index.html b/docs/en/static/line_set_rotation_around_point/index.html index b4c4275c39..1a6ddbf340 100644 --- a/docs/en/static/line_set_rotation_around_point/index.html +++ b/docs/en/static/line_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_skew_x/index.html b/docs/en/static/line_skew_x/index.html index 5948aa5489..c407cee259 100644 --- a/docs/en/static/line_skew_x/index.html +++ b/docs/en/static/line_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_skew_y/index.html b/docs/en/static/line_skew_y/index.html index 667f783187..e4d71502dc 100644 --- a/docs/en/static/line_skew_y/index.html +++ b/docs/en/static/line_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_x/index.html b/docs/en/static/line_x/index.html index 022fa3a8c8..e98da37af2 100644 --- a/docs/en/static/line_x/index.html +++ b/docs/en/static/line_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/line_y/index.html b/docs/en/static/line_y/index.html index 7eb244d185..fa8550f8e2 100644 --- a/docs/en/static/line_y/index.html +++ b/docs/en/static/line_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/num_children_basic_usage/index.html b/docs/en/static/num_children_basic_usage/index.html index 389bcf13b1..244f44b47d 100644 --- a/docs/en/static/num_children_basic_usage/index.html +++ b/docs/en/static/num_children_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_basic_usage/index.html b/docs/en/static/path_basic_usage/index.html index bf3793f3c6..c5811566c5 100644 --- a/docs/en/static/path_basic_usage/index.html +++ b/docs/en/static/path_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_fill_alpha/index.html b/docs/en/static/path_fill_alpha/index.html index e098243d40..5e871418e4 100644 --- a/docs/en/static/path_fill_alpha/index.html +++ b/docs/en/static/path_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_fill_color/index.html b/docs/en/static/path_fill_color/index.html index aaadf1bdc6..2cb722327d 100644 --- a/docs/en/static/path_fill_color/index.html +++ b/docs/en/static/path_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_flip_x/index.html b/docs/en/static/path_flip_x/index.html index b57789c67b..2d8e7b64d6 100644 --- a/docs/en/static/path_flip_x/index.html +++ b/docs/en/static/path_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_flip_y/index.html b/docs/en/static/path_flip_y/index.html index f49086bdbd..fef327557a 100644 --- a/docs/en/static/path_flip_y/index.html +++ b/docs/en/static/path_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_line_alpha/index.html b/docs/en/static/path_line_alpha/index.html index 2566fca29c..96485e22da 100644 --- a/docs/en/static/path_line_alpha/index.html +++ b/docs/en/static/path_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_line_color/index.html b/docs/en/static/path_line_color/index.html index 9ea7b56169..82e3656c34 100644 --- a/docs/en/static/path_line_color/index.html +++ b/docs/en/static/path_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_line_dash_dot_setting/index.html b/docs/en/static/path_line_dash_dot_setting/index.html index 4fb93edd77..66ec0985a2 100644 --- a/docs/en/static/path_line_dash_dot_setting/index.html +++ b/docs/en/static/path_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_line_dash_setting/index.html b/docs/en/static/path_line_dash_setting/index.html index 4161fea151..0d0018586d 100644 --- a/docs/en/static/path_line_dash_setting/index.html +++ b/docs/en/static/path_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_line_dot_setting/index.html b/docs/en/static/path_line_dot_setting/index.html index a25491b3e6..774fbfc26e 100644 --- a/docs/en/static/path_line_dot_setting/index.html +++ b/docs/en/static/path_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_line_round_dot_setting/index.html b/docs/en/static/path_line_round_dot_setting/index.html index 47a1f91c75..3fdce6fe8a 100644 --- a/docs/en/static/path_line_round_dot_setting/index.html +++ b/docs/en/static/path_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_line_thickness/index.html b/docs/en/static/path_line_thickness/index.html index 85c094e0d5..96950d70c6 100644 --- a/docs/en/static/path_line_thickness/index.html +++ b/docs/en/static/path_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_rotation_around_center/index.html b/docs/en/static/path_rotation_around_center/index.html index e3dba760e3..fe34f64082 100644 --- a/docs/en/static/path_rotation_around_center/index.html +++ b/docs/en/static/path_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_rotation_around_point/index.html b/docs/en/static/path_rotation_around_point/index.html index 9235173949..5dc91b4953 100644 --- a/docs/en/static/path_rotation_around_point/index.html +++ b/docs/en/static/path_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_scale_x_from_center/index.html b/docs/en/static/path_scale_x_from_center/index.html index 0958f5c13f..c4780f877b 100644 --- a/docs/en/static/path_scale_x_from_center/index.html +++ b/docs/en/static/path_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_scale_x_from_point/index.html b/docs/en/static/path_scale_x_from_point/index.html index 64dfde7987..4b50cde3a5 100644 --- a/docs/en/static/path_scale_x_from_point/index.html +++ b/docs/en/static/path_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_scale_y_from_center/index.html b/docs/en/static/path_scale_y_from_center/index.html index e9ee5d5326..e1ff5a1e1e 100644 --- a/docs/en/static/path_scale_y_from_center/index.html +++ b/docs/en/static/path_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_scale_y_from_point/index.html b/docs/en/static/path_scale_y_from_point/index.html index c38cb0f570..a266f9d86e 100644 --- a/docs/en/static/path_scale_y_from_point/index.html +++ b/docs/en/static/path_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_skew_x/index.html b/docs/en/static/path_skew_x/index.html index 768ac1e56d..930729ad75 100644 --- a/docs/en/static/path_skew_x/index.html +++ b/docs/en/static/path_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_skew_y/index.html b/docs/en/static/path_skew_y/index.html index f8b501d1b5..935bd7c47e 100644 --- a/docs/en/static/path_skew_y/index.html +++ b/docs/en/static/path_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_x/index.html b/docs/en/static/path_x/index.html index 5ff1c13069..96253b93e1 100644 --- a/docs/en/static/path_x/index.html +++ b/docs/en/static/path_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/path_y/index.html b/docs/en/static/path_y/index.html index 2d86a40f9e..1ae686bda1 100644 --- a/docs/en/static/path_y/index.html +++ b/docs/en/static/path_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/point2d_basic_usage/index.html b/docs/en/static/point2d_basic_usage/index.html index 491865217e..56fe547f24 100644 --- a/docs/en/static/point2d_basic_usage/index.html +++ b/docs/en/static/point2d_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_basic_usage/index.html b/docs/en/static/polygon_basic_usage/index.html index b7fba95b95..cd522b9d6f 100644 --- a/docs/en/static/polygon_basic_usage/index.html +++ b/docs/en/static/polygon_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_fill_alpha/index.html b/docs/en/static/polygon_fill_alpha/index.html index da9d2a32c5..107cb82e71 100644 --- a/docs/en/static/polygon_fill_alpha/index.html +++ b/docs/en/static/polygon_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_fill_color/index.html b/docs/en/static/polygon_fill_color/index.html index 77cd77cc8b..616c9069f7 100644 --- a/docs/en/static/polygon_fill_color/index.html +++ b/docs/en/static/polygon_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_flip_x/index.html b/docs/en/static/polygon_flip_x/index.html index ea0326cfe0..82ea2478d7 100644 --- a/docs/en/static/polygon_flip_x/index.html +++ b/docs/en/static/polygon_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_flip_y/index.html b/docs/en/static/polygon_flip_y/index.html index f65279adc1..a864a7a7cb 100644 --- a/docs/en/static/polygon_flip_y/index.html +++ b/docs/en/static/polygon_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_line_alpha/index.html b/docs/en/static/polygon_line_alpha/index.html index f6355400bd..4741ef994e 100644 --- a/docs/en/static/polygon_line_alpha/index.html +++ b/docs/en/static/polygon_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_line_color/index.html b/docs/en/static/polygon_line_color/index.html index 93dcf365d1..68519a6818 100644 --- a/docs/en/static/polygon_line_color/index.html +++ b/docs/en/static/polygon_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_line_dash_dot_setting/index.html b/docs/en/static/polygon_line_dash_dot_setting/index.html index 6303059d60..2db3f2387f 100644 --- a/docs/en/static/polygon_line_dash_dot_setting/index.html +++ b/docs/en/static/polygon_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_line_dash_setting/index.html b/docs/en/static/polygon_line_dash_setting/index.html index 810c9d508e..130fe423bf 100644 --- a/docs/en/static/polygon_line_dash_setting/index.html +++ b/docs/en/static/polygon_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_line_dot_setting/index.html b/docs/en/static/polygon_line_dot_setting/index.html index 356116918c..ced6f2112d 100644 --- a/docs/en/static/polygon_line_dot_setting/index.html +++ b/docs/en/static/polygon_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_line_round_dot_setting/index.html b/docs/en/static/polygon_line_round_dot_setting/index.html index 747e7744c3..c0aa676dea 100644 --- a/docs/en/static/polygon_line_round_dot_setting/index.html +++ b/docs/en/static/polygon_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_line_thickness/index.html b/docs/en/static/polygon_line_thickness/index.html index bfa6ca2d18..b5c5901d3c 100644 --- a/docs/en/static/polygon_line_thickness/index.html +++ b/docs/en/static/polygon_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_rotation_around_center/index.html b/docs/en/static/polygon_rotation_around_center/index.html index 199d3c9129..9aedafe64c 100644 --- a/docs/en/static/polygon_rotation_around_center/index.html +++ b/docs/en/static/polygon_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_scale_x_from_center/index.html b/docs/en/static/polygon_scale_x_from_center/index.html index 6f384c7214..2dfb6a5e1c 100644 --- a/docs/en/static/polygon_scale_x_from_center/index.html +++ b/docs/en/static/polygon_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_scale_x_from_point/index.html b/docs/en/static/polygon_scale_x_from_point/index.html index 2bad8d6d72..c34cf4a3db 100644 --- a/docs/en/static/polygon_scale_x_from_point/index.html +++ b/docs/en/static/polygon_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_scale_y_from_center/index.html b/docs/en/static/polygon_scale_y_from_center/index.html index eb0d0019b6..d56eb76df4 100644 --- a/docs/en/static/polygon_scale_y_from_center/index.html +++ b/docs/en/static/polygon_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_scale_y_from_point/index.html b/docs/en/static/polygon_scale_y_from_point/index.html index c6ce223392..5e4dfe6bc7 100644 --- a/docs/en/static/polygon_scale_y_from_point/index.html +++ b/docs/en/static/polygon_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_set_rotation_around_point/index.html b/docs/en/static/polygon_set_rotation_around_point/index.html index df408e9c72..bc660ff15f 100644 --- a/docs/en/static/polygon_set_rotation_around_point/index.html +++ b/docs/en/static/polygon_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_skew_x/index.html b/docs/en/static/polygon_skew_x/index.html index 49c2a15273..711c355446 100644 --- a/docs/en/static/polygon_skew_x/index.html +++ b/docs/en/static/polygon_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_skew_y/index.html b/docs/en/static/polygon_skew_y/index.html index d92cddb3a0..acc923f09a 100644 --- a/docs/en/static/polygon_skew_y/index.html +++ b/docs/en/static/polygon_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_x/index.html b/docs/en/static/polygon_x/index.html index fa6b4c6c01..104b39a04c 100644 --- a/docs/en/static/polygon_x/index.html +++ b/docs/en/static/polygon_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polygon_y/index.html b/docs/en/static/polygon_y/index.html index f4f79114f0..aa4dbeee42 100644 --- a/docs/en/static/polygon_y/index.html +++ b/docs/en/static/polygon_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_basic_usage/index.html b/docs/en/static/polyline_basic_usage/index.html index a9eef97776..fa92c8affa 100644 --- a/docs/en/static/polyline_basic_usage/index.html +++ b/docs/en/static/polyline_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_fill_alpha/index.html b/docs/en/static/polyline_fill_alpha/index.html index 1d7ae178ba..6a74695b4e 100644 --- a/docs/en/static/polyline_fill_alpha/index.html +++ b/docs/en/static/polyline_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_fill_color/index.html b/docs/en/static/polyline_fill_color/index.html index 54e98ba802..fe4ce65e51 100644 --- a/docs/en/static/polyline_fill_color/index.html +++ b/docs/en/static/polyline_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_flip_x/index.html b/docs/en/static/polyline_flip_x/index.html index 103ea8bb67..5cc3ec9ef8 100644 --- a/docs/en/static/polyline_flip_x/index.html +++ b/docs/en/static/polyline_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_flip_y/index.html b/docs/en/static/polyline_flip_y/index.html index 262b587d6c..b29a283c8e 100644 --- a/docs/en/static/polyline_flip_y/index.html +++ b/docs/en/static/polyline_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_line_alpha/index.html b/docs/en/static/polyline_line_alpha/index.html index 586108db3e..45bf5b2e2b 100644 --- a/docs/en/static/polyline_line_alpha/index.html +++ b/docs/en/static/polyline_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_line_color/index.html b/docs/en/static/polyline_line_color/index.html index 3153b1ce77..ad4b1aff58 100644 --- a/docs/en/static/polyline_line_color/index.html +++ b/docs/en/static/polyline_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_line_dash_dot_setting/index.html b/docs/en/static/polyline_line_dash_dot_setting/index.html index cdc3e1622a..3dd77f9cde 100644 --- a/docs/en/static/polyline_line_dash_dot_setting/index.html +++ b/docs/en/static/polyline_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_line_dash_setting/index.html b/docs/en/static/polyline_line_dash_setting/index.html index 43897b5061..5c1d0a7f91 100644 --- a/docs/en/static/polyline_line_dash_setting/index.html +++ b/docs/en/static/polyline_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_line_dot_setting/index.html b/docs/en/static/polyline_line_dot_setting/index.html index 3021f89419..bcae153c95 100644 --- a/docs/en/static/polyline_line_dot_setting/index.html +++ b/docs/en/static/polyline_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_line_round_dot_setting/index.html b/docs/en/static/polyline_line_round_dot_setting/index.html index f6f9ef2523..da993dec04 100644 --- a/docs/en/static/polyline_line_round_dot_setting/index.html +++ b/docs/en/static/polyline_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_line_thickness/index.html b/docs/en/static/polyline_line_thickness/index.html index de0376abdc..c1730ba379 100644 --- a/docs/en/static/polyline_line_thickness/index.html +++ b/docs/en/static/polyline_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_rotation_around_center/index.html b/docs/en/static/polyline_rotation_around_center/index.html index 4200c1ce43..daf6a6f16d 100644 --- a/docs/en/static/polyline_rotation_around_center/index.html +++ b/docs/en/static/polyline_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_scale_x_from_center/index.html b/docs/en/static/polyline_scale_x_from_center/index.html index 89e314323b..4ecf00d440 100644 --- a/docs/en/static/polyline_scale_x_from_center/index.html +++ b/docs/en/static/polyline_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_scale_x_from_point/index.html b/docs/en/static/polyline_scale_x_from_point/index.html index f078ca73c2..8ca295f297 100644 --- a/docs/en/static/polyline_scale_x_from_point/index.html +++ b/docs/en/static/polyline_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_scale_y_from_center/index.html b/docs/en/static/polyline_scale_y_from_center/index.html index fbdf537e5e..d6bc76350c 100644 --- a/docs/en/static/polyline_scale_y_from_center/index.html +++ b/docs/en/static/polyline_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_scale_y_from_point/index.html b/docs/en/static/polyline_scale_y_from_point/index.html index f2c68689e3..5e4ebb626b 100644 --- a/docs/en/static/polyline_scale_y_from_point/index.html +++ b/docs/en/static/polyline_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_set_rotation_around_point/index.html b/docs/en/static/polyline_set_rotation_around_point/index.html index 1aa374edd1..8d0fae14cb 100644 --- a/docs/en/static/polyline_set_rotation_around_point/index.html +++ b/docs/en/static/polyline_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_skew_x/index.html b/docs/en/static/polyline_skew_x/index.html index b891885c9b..b80ca87692 100644 --- a/docs/en/static/polyline_skew_x/index.html +++ b/docs/en/static/polyline_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_skew_y/index.html b/docs/en/static/polyline_skew_y/index.html index 014ae8980e..c19c702976 100644 --- a/docs/en/static/polyline_skew_y/index.html +++ b/docs/en/static/polyline_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_x/index.html b/docs/en/static/polyline_x/index.html index c6ee306272..32b7353901 100644 --- a/docs/en/static/polyline_x/index.html +++ b/docs/en/static/polyline_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/polyline_y/index.html b/docs/en/static/polyline_y/index.html index fd6e3230de..704079d7c5 100644 --- a/docs/en/static/polyline_y/index.html +++ b/docs/en/static/polyline_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_basic_usage/index.html b/docs/en/static/rectangle_basic_usage/index.html index ea7ed06613..2e48180057 100644 --- a/docs/en/static/rectangle_basic_usage/index.html +++ b/docs/en/static/rectangle_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_ellipse_height/index.html b/docs/en/static/rectangle_ellipse_height/index.html index 6e7ddc824b..044a581be3 100644 --- a/docs/en/static/rectangle_ellipse_height/index.html +++ b/docs/en/static/rectangle_ellipse_height/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_ellipse_width/index.html b/docs/en/static/rectangle_ellipse_width/index.html index 646d081fa3..d2897f299a 100644 --- a/docs/en/static/rectangle_ellipse_width/index.html +++ b/docs/en/static/rectangle_ellipse_width/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_fill_alpha/index.html b/docs/en/static/rectangle_fill_alpha/index.html index c05f82c100..6442791989 100644 --- a/docs/en/static/rectangle_fill_alpha/index.html +++ b/docs/en/static/rectangle_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_fill_color/index.html b/docs/en/static/rectangle_fill_color/index.html index b9208d89dd..0ebe89143e 100644 --- a/docs/en/static/rectangle_fill_color/index.html +++ b/docs/en/static/rectangle_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_flip_x/index.html b/docs/en/static/rectangle_flip_x/index.html index af2a028fbc..5053bc8a82 100644 --- a/docs/en/static/rectangle_flip_x/index.html +++ b/docs/en/static/rectangle_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_flip_y/index.html b/docs/en/static/rectangle_flip_y/index.html index fb4d6276f4..d688df3356 100644 --- a/docs/en/static/rectangle_flip_y/index.html +++ b/docs/en/static/rectangle_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_geom_basic_usage/index.html b/docs/en/static/rectangle_geom_basic_usage/index.html index 83cd2ee6b5..e1abf526d9 100644 --- a/docs/en/static/rectangle_geom_basic_usage/index.html +++ b/docs/en/static/rectangle_geom_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_geom_each_attribute_point/index.html b/docs/en/static/rectangle_geom_each_attribute_point/index.html index f7711e6c74..4b312e6db2 100644 --- a/docs/en/static/rectangle_geom_each_attribute_point/index.html +++ b/docs/en/static/rectangle_geom_each_attribute_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_height/index.html b/docs/en/static/rectangle_height/index.html index 5dd7f4a5ac..c893c16a1c 100644 --- a/docs/en/static/rectangle_height/index.html +++ b/docs/en/static/rectangle_height/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_line_alpha/index.html b/docs/en/static/rectangle_line_alpha/index.html index d592c5130c..66a450404d 100644 --- a/docs/en/static/rectangle_line_alpha/index.html +++ b/docs/en/static/rectangle_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_line_color/index.html b/docs/en/static/rectangle_line_color/index.html index 105959a885..829f5a1a1d 100644 --- a/docs/en/static/rectangle_line_color/index.html +++ b/docs/en/static/rectangle_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_line_dash_dot_setting/index.html b/docs/en/static/rectangle_line_dash_dot_setting/index.html index cbffce846e..1634b53d20 100644 --- a/docs/en/static/rectangle_line_dash_dot_setting/index.html +++ b/docs/en/static/rectangle_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_line_dash_setting/index.html b/docs/en/static/rectangle_line_dash_setting/index.html index 8d3820a455..d164900a30 100644 --- a/docs/en/static/rectangle_line_dash_setting/index.html +++ b/docs/en/static/rectangle_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_line_dot_setting/index.html b/docs/en/static/rectangle_line_dot_setting/index.html index dc756f565e..295cea1817 100644 --- a/docs/en/static/rectangle_line_dot_setting/index.html +++ b/docs/en/static/rectangle_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_line_round_dot_setting/index.html b/docs/en/static/rectangle_line_round_dot_setting/index.html index 645fdde30e..86dfd6ad8e 100644 --- a/docs/en/static/rectangle_line_round_dot_setting/index.html +++ b/docs/en/static/rectangle_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_line_thickness/index.html b/docs/en/static/rectangle_line_thickness/index.html index 9afd1b6c20..49124a4382 100644 --- a/docs/en/static/rectangle_line_thickness/index.html +++ b/docs/en/static/rectangle_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_rotation_around_center/index.html b/docs/en/static/rectangle_rotation_around_center/index.html index bce79c3a6f..ebfd9b1762 100644 --- a/docs/en/static/rectangle_rotation_around_center/index.html +++ b/docs/en/static/rectangle_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_scale_x_from_center/index.html b/docs/en/static/rectangle_scale_x_from_center/index.html index 47aaa222d4..d0190d02df 100644 --- a/docs/en/static/rectangle_scale_x_from_center/index.html +++ b/docs/en/static/rectangle_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_scale_x_from_point/index.html b/docs/en/static/rectangle_scale_x_from_point/index.html index f86286b5b7..12c384d084 100644 --- a/docs/en/static/rectangle_scale_x_from_point/index.html +++ b/docs/en/static/rectangle_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_scale_y_from_center/index.html b/docs/en/static/rectangle_scale_y_from_center/index.html index c621695e8d..e2b4e33d83 100644 --- a/docs/en/static/rectangle_scale_y_from_center/index.html +++ b/docs/en/static/rectangle_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_scale_y_from_point/index.html b/docs/en/static/rectangle_scale_y_from_point/index.html index 7ee6ceedd4..6d0716016e 100644 --- a/docs/en/static/rectangle_scale_y_from_point/index.html +++ b/docs/en/static/rectangle_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_set_rotation_around_point/index.html b/docs/en/static/rectangle_set_rotation_around_point/index.html index ddd4ba2d20..2a2e03823e 100644 --- a/docs/en/static/rectangle_set_rotation_around_point/index.html +++ b/docs/en/static/rectangle_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_skew_x/index.html b/docs/en/static/rectangle_skew_x/index.html index 23527276bd..ea8c66d541 100644 --- a/docs/en/static/rectangle_skew_x/index.html +++ b/docs/en/static/rectangle_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_skew_y/index.html b/docs/en/static/rectangle_skew_y/index.html index dbedea52cc..40d6e7f8fb 100644 --- a/docs/en/static/rectangle_skew_y/index.html +++ b/docs/en/static/rectangle_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_width/index.html b/docs/en/static/rectangle_width/index.html index e2fc8d2ede..c352b2370d 100644 --- a/docs/en/static/rectangle_width/index.html +++ b/docs/en/static/rectangle_width/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_x/index.html b/docs/en/static/rectangle_x/index.html index 9581971723..3e27d576cb 100644 --- a/docs/en/static/rectangle_x/index.html +++ b/docs/en/static/rectangle_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/rectangle_y/index.html b/docs/en/static/rectangle_y/index.html index 5dcec59de5..5bcba45120 100644 --- a/docs/en/static/rectangle_y/index.html +++ b/docs/en/static/rectangle_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/remove_children_basic_usage/index.html b/docs/en/static/remove_children_basic_usage/index.html index 22fd86a228..050dc87989 100644 --- a/docs/en/static/remove_children_basic_usage/index.html +++ b/docs/en/static/remove_children_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/sprite_basic_usage_of_add_child/index.html b/docs/en/static/sprite_basic_usage_of_add_child/index.html index 2add17040c..bd0d300efc 100644 --- a/docs/en/static/sprite_basic_usage_of_add_child/index.html +++ b/docs/en/static/sprite_basic_usage_of_add_child/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/sprite_basic_usage_of_remove_child/index.html b/docs/en/static/sprite_basic_usage_of_remove_child/index.html index 8970e38ca2..3c44c6d489 100644 --- a/docs/en/static/sprite_basic_usage_of_remove_child/index.html +++ b/docs/en/static/sprite_basic_usage_of_remove_child/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/sprite_contains_basic_usage/index.html b/docs/en/static/sprite_contains_basic_usage/index.html index b61ee26a57..d7e3e1a3f0 100644 --- a/docs/en/static/sprite_contains_basic_usage/index.html +++ b/docs/en/static/sprite_contains_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/sprite_graphics_attribute/index.html b/docs/en/static/sprite_graphics_attribute/index.html index 77b9ea9c6b..67227c9f4f 100644 --- a/docs/en/static/sprite_graphics_attribute/index.html +++ b/docs/en/static/sprite_graphics_attribute/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/sprite_move_instances_simultaneously/index.html b/docs/en/static/sprite_move_instances_simultaneously/index.html index a91dd552be..ba120a3a1f 100644 --- a/docs/en/static/sprite_move_instances_simultaneously/index.html +++ b/docs/en/static/sprite_move_instances_simultaneously/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_align/index.html b/docs/en/static/svg_text_align/index.html index b5d3741ed1..131ae1625c 100644 --- a/docs/en/static/svg_text_align/index.html +++ b/docs/en/static/svg_text_align/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_align_note/index.html b/docs/en/static/svg_text_align_note/index.html index 177e8deb36..a5d9892b10 100644 --- a/docs/en/static/svg_text_align_note/index.html +++ b/docs/en/static/svg_text_align_note/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_basic_usage/index.html b/docs/en/static/svg_text_basic_usage/index.html index 0203c4aea0..8bf81c0bcc 100644 --- a/docs/en/static/svg_text_basic_usage/index.html +++ b/docs/en/static/svg_text_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_bold/index.html b/docs/en/static/svg_text_bold/index.html index 3ef28ec719..e4ef67a738 100644 --- a/docs/en/static/svg_text_bold/index.html +++ b/docs/en/static/svg_text_bold/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_fill_alpha/index.html b/docs/en/static/svg_text_fill_alpha/index.html index 1c45787afa..461a4e51dd 100644 --- a/docs/en/static/svg_text_fill_alpha/index.html +++ b/docs/en/static/svg_text_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_fill_color/index.html b/docs/en/static/svg_text_fill_color/index.html index f5017a9187..0cf183260d 100644 --- a/docs/en/static/svg_text_fill_color/index.html +++ b/docs/en/static/svg_text_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_font_family/index.html b/docs/en/static/svg_text_font_family/index.html index 97c63e7c64..9cd45039ad 100644 --- a/docs/en/static/svg_text_font_family/index.html +++ b/docs/en/static/svg_text_font_family/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_font_size/index.html b/docs/en/static/svg_text_font_size/index.html index bb9307ccf0..bb23cc9c56 100644 --- a/docs/en/static/svg_text_font_size/index.html +++ b/docs/en/static/svg_text_font_size/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_italic/index.html b/docs/en/static/svg_text_italic/index.html index cd70b12ea0..3fcb3d507b 100644 --- a/docs/en/static/svg_text_italic/index.html +++ b/docs/en/static/svg_text_italic/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_leading/index.html b/docs/en/static/svg_text_leading/index.html index bf56b89cd7..5f711a3bf6 100644 --- a/docs/en/static/svg_text_leading/index.html +++ b/docs/en/static/svg_text_leading/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_line_alpha/index.html b/docs/en/static/svg_text_line_alpha/index.html index a442243530..10e690107e 100644 --- a/docs/en/static/svg_text_line_alpha/index.html +++ b/docs/en/static/svg_text_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_line_color/index.html b/docs/en/static/svg_text_line_color/index.html index b992f565eb..ee42979b34 100644 --- a/docs/en/static/svg_text_line_color/index.html +++ b/docs/en/static/svg_text_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_line_thickness/index.html b/docs/en/static/svg_text_line_thickness/index.html index 9441b459c5..39605104a6 100644 --- a/docs/en/static/svg_text_line_thickness/index.html +++ b/docs/en/static/svg_text_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_note_on_the_y_baseline/index.html b/docs/en/static/svg_text_note_on_the_y_baseline/index.html index b1a889b8b8..807c88470f 100644 --- a/docs/en/static/svg_text_note_on_the_y_baseline/index.html +++ b/docs/en/static/svg_text_note_on_the_y_baseline/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_text/index.html b/docs/en/static/svg_text_text/index.html index 6a4096b844..9800d88618 100644 --- a/docs/en/static/svg_text_text/index.html +++ b/docs/en/static/svg_text_text/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_x/index.html b/docs/en/static/svg_text_x/index.html index 65373c3c07..4d4ac4b66a 100644 --- a/docs/en/static/svg_text_x/index.html +++ b/docs/en/static/svg_text_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_text_y/index.html b/docs/en/static/svg_text_y/index.html index c99c97be1d..640343bb1e 100644 --- a/docs/en/static/svg_text_y/index.html +++ b/docs/en/static/svg_text_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_flip_x/index.html b/docs/en/static/svg_txt_flip_x/index.html index 7716a384cd..f212e154a9 100644 --- a/docs/en/static/svg_txt_flip_x/index.html +++ b/docs/en/static/svg_txt_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_flip_y/index.html b/docs/en/static/svg_txt_flip_y/index.html index 4febb7f007..535cc3c71e 100644 --- a/docs/en/static/svg_txt_flip_y/index.html +++ b/docs/en/static/svg_txt_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_rotation_around_center/index.html b/docs/en/static/svg_txt_rotation_around_center/index.html index 9a06b1b580..c9026644de 100644 --- a/docs/en/static/svg_txt_rotation_around_center/index.html +++ b/docs/en/static/svg_txt_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_rotation_around_point/index.html b/docs/en/static/svg_txt_rotation_around_point/index.html index d08d01b1c0..0c9b13a5ff 100644 --- a/docs/en/static/svg_txt_rotation_around_point/index.html +++ b/docs/en/static/svg_txt_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_scale_x_from_center/index.html b/docs/en/static/svg_txt_scale_x_from_center/index.html index 73cf83ad95..49c7cff55b 100644 --- a/docs/en/static/svg_txt_scale_x_from_center/index.html +++ b/docs/en/static/svg_txt_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_scale_x_from_point/index.html b/docs/en/static/svg_txt_scale_x_from_point/index.html index 439cea1c12..e6fe3f3cce 100644 --- a/docs/en/static/svg_txt_scale_x_from_point/index.html +++ b/docs/en/static/svg_txt_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_span_basic_usage/index.html b/docs/en/static/svg_txt_span_basic_usage/index.html index 7e4dfd410e..396c18ca8d 100644 --- a/docs/en/static/svg_txt_span_basic_usage/index.html +++ b/docs/en/static/svg_txt_span_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_span_bold/index.html b/docs/en/static/svg_txt_span_bold/index.html index feda290004..0e821821d6 100644 --- a/docs/en/static/svg_txt_span_bold/index.html +++ b/docs/en/static/svg_txt_span_bold/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_span_delta_x/index.html b/docs/en/static/svg_txt_span_delta_x/index.html index f202600939..3f2d499704 100644 --- a/docs/en/static/svg_txt_span_delta_x/index.html +++ b/docs/en/static/svg_txt_span_delta_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_span_delta_y/index.html b/docs/en/static/svg_txt_span_delta_y/index.html index 0530b1f7d0..b9609ed2f6 100644 --- a/docs/en/static/svg_txt_span_delta_y/index.html +++ b/docs/en/static/svg_txt_span_delta_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_span_fill_alpha/index.html b/docs/en/static/svg_txt_span_fill_alpha/index.html index 4783895aa8..e94325a877 100644 --- a/docs/en/static/svg_txt_span_fill_alpha/index.html +++ b/docs/en/static/svg_txt_span_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_span_fill_color/index.html b/docs/en/static/svg_txt_span_fill_color/index.html index b3ba8b7d0c..486e36c5ab 100644 --- a/docs/en/static/svg_txt_span_fill_color/index.html +++ b/docs/en/static/svg_txt_span_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_span_font_family/index.html b/docs/en/static/svg_txt_span_font_family/index.html index eb47c76a00..5dfd7ed3d6 100644 --- a/docs/en/static/svg_txt_span_font_family/index.html +++ b/docs/en/static/svg_txt_span_font_family/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_span_font_size/index.html b/docs/en/static/svg_txt_span_font_size/index.html index 14313a27e2..5d23c0dbbc 100644 --- a/docs/en/static/svg_txt_span_font_size/index.html +++ b/docs/en/static/svg_txt_span_font_size/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_span_italic/index.html b/docs/en/static/svg_txt_span_italic/index.html index caad68f7ea..fe2d4b52ef 100644 --- a/docs/en/static/svg_txt_span_italic/index.html +++ b/docs/en/static/svg_txt_span_italic/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_span_line_alpha/index.html b/docs/en/static/svg_txt_span_line_alpha/index.html index 5e036e76b2..46ae0ccf86 100644 --- a/docs/en/static/svg_txt_span_line_alpha/index.html +++ b/docs/en/static/svg_txt_span_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_span_line_color/index.html b/docs/en/static/svg_txt_span_line_color/index.html index 9fa436693d..eae13c4211 100644 --- a/docs/en/static/svg_txt_span_line_color/index.html +++ b/docs/en/static/svg_txt_span_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_span_line_thickness/index.html b/docs/en/static/svg_txt_span_line_thickness/index.html index 8fba761cbb..4080fad07a 100644 --- a/docs/en/static/svg_txt_span_line_thickness/index.html +++ b/docs/en/static/svg_txt_span_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_span_notes_of_the_line_break/index.html b/docs/en/static/svg_txt_span_notes_of_the_line_break/index.html index cd69243192..c90bea3ca5 100644 --- a/docs/en/static/svg_txt_span_notes_of_the_line_break/index.html +++ b/docs/en/static/svg_txt_span_notes_of_the_line_break/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/svg_txt_span_text/index.html b/docs/en/static/svg_txt_span_text/index.html index 2964789b36..33487c9631 100644 --- a/docs/en/static/svg_txt_span_text/index.html +++ b/docs/en/static/svg_txt_span_text/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_basic_usage/index.html b/docs/en/static/triangle_basic_usage/index.html index 76edc730d8..1144fb3e2f 100644 --- a/docs/en/static/triangle_basic_usage/index.html +++ b/docs/en/static/triangle_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_fill_alpha/index.html b/docs/en/static/triangle_fill_alpha/index.html index 936d5ef671..9c6fb74146 100644 --- a/docs/en/static/triangle_fill_alpha/index.html +++ b/docs/en/static/triangle_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_fill_color/index.html b/docs/en/static/triangle_fill_color/index.html index a9c36447b2..b3784a4b21 100644 --- a/docs/en/static/triangle_fill_color/index.html +++ b/docs/en/static/triangle_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_flip_x/index.html b/docs/en/static/triangle_flip_x/index.html index 6a97e70c98..ab0d5a602c 100644 --- a/docs/en/static/triangle_flip_x/index.html +++ b/docs/en/static/triangle_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_flip_y/index.html b/docs/en/static/triangle_flip_y/index.html index 2234e6ab1a..2920ed84ba 100644 --- a/docs/en/static/triangle_flip_y/index.html +++ b/docs/en/static/triangle_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_line_alpha/index.html b/docs/en/static/triangle_line_alpha/index.html index 2ef1bc9179..4555ecbee6 100644 --- a/docs/en/static/triangle_line_alpha/index.html +++ b/docs/en/static/triangle_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_line_color/index.html b/docs/en/static/triangle_line_color/index.html index e1cd03c4d3..ae94f9de9e 100644 --- a/docs/en/static/triangle_line_color/index.html +++ b/docs/en/static/triangle_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_line_dash_dot_setting/index.html b/docs/en/static/triangle_line_dash_dot_setting/index.html index 94d965ab8c..7d8bc07f84 100644 --- a/docs/en/static/triangle_line_dash_dot_setting/index.html +++ b/docs/en/static/triangle_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_line_dash_setting/index.html b/docs/en/static/triangle_line_dash_setting/index.html index b536fb2862..440c0a5860 100644 --- a/docs/en/static/triangle_line_dash_setting/index.html +++ b/docs/en/static/triangle_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_line_dot_setting/index.html b/docs/en/static/triangle_line_dot_setting/index.html index a8ec900d15..efc6ec184e 100644 --- a/docs/en/static/triangle_line_dot_setting/index.html +++ b/docs/en/static/triangle_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_line_round_dot_setting/index.html b/docs/en/static/triangle_line_round_dot_setting/index.html index 3c6f1e31ae..2c10e4f4f9 100644 --- a/docs/en/static/triangle_line_round_dot_setting/index.html +++ b/docs/en/static/triangle_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_line_thickness/index.html b/docs/en/static/triangle_line_thickness/index.html index 129a2bed05..5222d38826 100644 --- a/docs/en/static/triangle_line_thickness/index.html +++ b/docs/en/static/triangle_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_rotation_around_center/index.html b/docs/en/static/triangle_rotation_around_center/index.html index 92b27d517c..c2c32b86cd 100644 --- a/docs/en/static/triangle_rotation_around_center/index.html +++ b/docs/en/static/triangle_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_scale_x_from_center/index.html b/docs/en/static/triangle_scale_x_from_center/index.html index 790f13d735..33e5844ee6 100644 --- a/docs/en/static/triangle_scale_x_from_center/index.html +++ b/docs/en/static/triangle_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_scale_y_from_center/index.html b/docs/en/static/triangle_scale_y_from_center/index.html index 90e49b7355..68f6bdfa08 100644 --- a/docs/en/static/triangle_scale_y_from_center/index.html +++ b/docs/en/static/triangle_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_set_rotation_around_point/index.html b/docs/en/static/triangle_set_rotation_around_point/index.html index 1a8b55a80d..40a14f82fb 100644 --- a/docs/en/static/triangle_set_rotation_around_point/index.html +++ b/docs/en/static/triangle_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_set_scale_x_from_point/index.html b/docs/en/static/triangle_set_scale_x_from_point/index.html index 32dcee67f8..02550c07b6 100644 --- a/docs/en/static/triangle_set_scale_x_from_point/index.html +++ b/docs/en/static/triangle_set_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_set_scale_y_from_point/index.html b/docs/en/static/triangle_set_scale_y_from_point/index.html index bd64b16fb4..c5405c25b6 100644 --- a/docs/en/static/triangle_set_scale_y_from_point/index.html +++ b/docs/en/static/triangle_set_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_skew_x/index.html b/docs/en/static/triangle_skew_x/index.html index b243ddfd9c..2ca0fe9c29 100644 --- a/docs/en/static/triangle_skew_x/index.html +++ b/docs/en/static/triangle_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_skew_y/index.html b/docs/en/static/triangle_skew_y/index.html index 2e7690b5c8..7e1cf1f5bc 100644 --- a/docs/en/static/triangle_skew_y/index.html +++ b/docs/en/static/triangle_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_x/index.html b/docs/en/static/triangle_x/index.html index 897955b4ad..4f9368a27e 100644 --- a/docs/en/static/triangle_x/index.html +++ b/docs/en/static/triangle_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_x1/index.html b/docs/en/static/triangle_x1/index.html index 308e108e00..14785cb664 100644 --- a/docs/en/static/triangle_x1/index.html +++ b/docs/en/static/triangle_x1/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_x2/index.html b/docs/en/static/triangle_x2/index.html index e8b15d7576..af334cc386 100644 --- a/docs/en/static/triangle_x2/index.html +++ b/docs/en/static/triangle_x2/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_x3/index.html b/docs/en/static/triangle_x3/index.html index e7565f44ff..ad003d9341 100644 --- a/docs/en/static/triangle_x3/index.html +++ b/docs/en/static/triangle_x3/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_y/index.html b/docs/en/static/triangle_y/index.html index e0bbf06be5..b5ad83505f 100644 --- a/docs/en/static/triangle_y/index.html +++ b/docs/en/static/triangle_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_y1/index.html b/docs/en/static/triangle_y1/index.html index b0869a1d1d..c16b106ec2 100644 --- a/docs/en/static/triangle_y1/index.html +++ b/docs/en/static/triangle_y1/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_y2/index.html b/docs/en/static/triangle_y2/index.html index 3f4f3dc560..4d61f525f4 100644 --- a/docs/en/static/triangle_y2/index.html +++ b/docs/en/static/triangle_y2/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/triangle_y3/index.html b/docs/en/static/triangle_y3/index.html index cfb4c23c8a..564e723de5 100644 --- a/docs/en/static/triangle_y3/index.html +++ b/docs/en/static/triangle_y3/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/unbind_enter_frame_all_basic_usage/index.html b/docs/en/static/unbind_enter_frame_all_basic_usage/index.html index 1c78690108..17d42e66b3 100644 --- a/docs/en/static/unbind_enter_frame_all_basic_usage/index.html +++ b/docs/en/static/unbind_enter_frame_all_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/en/static/unbind_enter_frame_basic_usage/index.html b/docs/en/static/unbind_enter_frame_basic_usage/index.html index cfb53efd13..ed36ffdb7d 100644 --- a/docs/en/static/unbind_enter_frame_basic_usage/index.html +++ b/docs/en/static/unbind_enter_frame_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/jp_enter_frame.html b/docs/jp/jp_enter_frame.html index 8e2f2c1cd5..aec67b88bc 100644 --- a/docs/jp/jp_enter_frame.html +++ b/docs/jp/jp_enter_frame.html @@ -116,7 +116,7 @@特記事項: このAPIドキュメントはドキュメントビルド用のスクリプトによって自動で生成・同期されています。そのためもしかしたらこの節の内容は前節までの内容と重複している場合があります。
-[インターフェイスの構造] enter_frame(self, handler: Callable[[apysc._event.enter_frame_event.EnterFrameEvent, ~_Options], NoneType], *, fps: apysc._time.fps.FPS = <FPS.FPS_60: <apysc._time.fps.FPSDefinition object at 0x7fc97c13cb80>>, options: Union[~_Options, NoneType] = None) -> None
[インターフェイスの構造] enter_frame(self, handler: Callable[[apysc._event.enter_frame_event.EnterFrameEvent, ~_Options], NoneType], *, fps: apysc._time.fps.FPS = <FPS.FPS_60: <apysc._time.fps.FPSDefinition object at 0x7fc88d17f040>>, options: Union[~_Options, NoneType] = None) -> None
[インターフェイス概要]
enter frameのイベントのリスナー設定を追加します。
[引数]
diff --git a/docs/jp/searchindex.js b/docs/jp/searchindex.js index 51dbeb7451..e6104fcf67 100644 --- a/docs/jp/searchindex.js +++ b/docs/jp/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["jp_about_handler_options_type", "jp_add_child_and_remove_child", "jp_add_debug_info_setting", "jp_animation_base_start", "jp_animation_base_target", "jp_animation_complete", "jp_animation_delay", "jp_animation_duration", "jp_animation_event", "jp_animation_fill_alpha", "jp_animation_fill_color", "jp_animation_finish", "jp_animation_interfaces_abstract", "jp_animation_line_alpha", "jp_animation_line_color", "jp_animation_line_thickness", "jp_animation_method_chaining", "jp_animation_move", "jp_animation_parallel", "jp_animation_pause_and_play", "jp_animation_radius", "jp_animation_reset", "jp_animation_return_value", "jp_animation_reverse", "jp_animation_rotation_around_center", "jp_animation_rotation_around_point", "jp_animation_scale_x_and_y_from_center", "jp_animation_scale_x_and_y_from_point", "jp_animation_time", "jp_animation_width_and_height", "jp_animation_x", "jp_animation_y", "jp_append_js_expression", "jp_array", "jp_array_append_and_push", "jp_array_clear", "jp_array_comparison", "jp_array_extend_and_concat", "jp_array_index_of", "jp_array_insert_and_insert_at", "jp_array_join", "jp_array_last_value", "jp_array_length", "jp_array_pop", "jp_array_remove_and_remove_at", "jp_array_reverse", "jp_array_slice", "jp_array_sort", "jp_assert_arrays_equal_and_arrays_not_equal", "jp_assert_defined_and_undefined", "jp_assert_dicts_equal_and_dicts_not_equal", "jp_assert_equal_and_not_equal", "jp_assert_greater_and_greater_equal", "jp_assert_less_and_less_equal", "jp_assert_true_and_false", "jp_assertion_basic_behavior", "jp_bind_and_trigger_custom_event", "jp_blue_color", "jp_boolean", "jp_branch_instruction_variables_reverting_setting", "jp_circle", "jp_click", "jp_color", "jp_color_from_rgb", "jp_colorless", "jp_colors", "jp_contains", "jp_continue", "jp_datetime", "jp_datetime_day", "jp_datetime_hour", "jp_datetime_millisecond", "jp_datetime_minute", "jp_datetime_month", "jp_datetime_now", "jp_datetime_second", "jp_datetime_set_month_end", "jp_datetime_weekday_js_and_weekday_py", "jp_datetime_year", "jp_dblclick", "jp_delete", "jp_dictionary", "jp_dictionary_generic", "jp_dictionary_get", "jp_dictionary_length", "jp_display_object", "jp_display_object_and_graphics_base_prop_abstract", "jp_display_object_get_and_set_css", "jp_display_object_mouse_event", "jp_display_object_parent", "jp_display_object_visible", "jp_display_object_x_and_y", "jp_display_on_colaboratory", "jp_display_on_jupyter", "jp_draw_interfaces_abstract", "jp_easing_enum", "jp_elif", "jp_ellipse", "jp_else", "jp_enter_frame", "jp_event_prevent_default_and_stop_propagation", "jp_for_array_indices", "jp_for_array_indices_and_values", "jp_for_array_values", "jp_for_dict_keys", "jp_for_dict_keys_and_values", "jp_for_dict_values", "jp_fps", "jp_fundamental_data_classes_value_interface", "jp_get_bounds", "jp_get_child_at", "jp_graphics", "jp_graphics_base_fill_alpha", "jp_graphics_base_fill_color", "jp_graphics_base_flip_interfaces", "jp_graphics_base_line_alpha", "jp_graphics_base_line_color", "jp_graphics_base_line_dash_dot_setting", "jp_graphics_base_line_dash_setting", "jp_graphics_base_line_dot_setting", "jp_graphics_base_line_round_dot_setting", "jp_graphics_base_line_thickness", "jp_graphics_base_rotation_around_center", "jp_graphics_base_rotation_around_point", "jp_graphics_base_scale_from_center", "jp_graphics_base_scale_from_point", "jp_graphics_base_skew", "jp_graphics_begin_fill", "jp_graphics_clear", "jp_graphics_draw_circle", "jp_graphics_draw_dash_dotted_line", "jp_graphics_draw_dashed_line", "jp_graphics_draw_dotted_line", "jp_graphics_draw_ellipse", "jp_graphics_draw_line", "jp_graphics_draw_path", "jp_graphics_draw_polygon", "jp_graphics_draw_rect", "jp_graphics_draw_round_dotted_line", "jp_graphics_draw_round_rect", "jp_graphics_draw_triangle", "jp_graphics_line_style", "jp_graphics_move_to_and_line_to", "jp_green_color", "jp_if", "jp_import_conventions", "jp_index", "jp_int_and_number", "jp_int_and_number_arithmetic_operations", "jp_int_and_number_comparison_operations", "jp_int_and_number_to_fixed", "jp_int_and_number_to_hex", "jp_line", "jp_material_design_colors", "jp_material_icon", "jp_math_clamp", "jp_math_max", "jp_math_min", "jp_math_trunc", "jp_mouse_event_abstract", "jp_mouse_event_basic", "jp_mousedown_and_mouseup", "jp_mousemove", "jp_mouseover_and_mouseout", "jp_multi_line_text", "jp_num_children", "jp_path", "jp_path_bezier_2d", "jp_path_bezier_2d_continual", "jp_path_bezier_3d", "jp_path_bezier_3d_continual", "jp_path_close", "jp_path_horizontal", "jp_path_line_to", "jp_path_move_to", "jp_path_vertical", "jp_point2d", "jp_polygon", "jp_polyline", "jp_quick_start", "jp_range", "jp_recommended_type_checker_settings", "jp_rectangle", "jp_rectangle_geom", "jp_red_color", "jp_remove_children", "jp_return", "jp_save_overall_html", "jp_sequential_animation", "jp_set_debug_mode", "jp_sprite", "jp_stage", "jp_string", "jp_string_addition_and_multiplication", "jp_string_apply_max_num_of_decimal_places", "jp_string_comparison_operations", "jp_string_length", "jp_string_lower", "jp_string_lstrip", "jp_string_rstrip", "jp_string_slice", "jp_string_split", "jp_string_strip", "jp_string_upper", "jp_string_zfill", "jp_svg_mask", "jp_svg_text", "jp_svg_text_span", "jp_text_align", "jp_text_align_last", "jp_text_bold", "jp_text_fill_alpha", "jp_text_fill_color", "jp_text_font_size", "jp_text_italic", "jp_text_line_height", "jp_text_underline", "jp_timedelta", "jp_timedelta_days", "jp_timedelta_total_seconds", "jp_timer", "jp_timer_complete", "jp_timer_delay", "jp_timer_event", "jp_timer_repeat_count", "jp_timer_reset", "jp_timer_start_and_stop", "jp_to_string", "jp_trace", "jp_triangle", "jp_true_and_false", "jp_unbind_enter_frame_and_unbind_enter_frame_all", "jp_unset_debug_mode", "jp_variable_name_suffix", "jp_what_apysc_can_do", "jp_why_apysc_doesnt_use_python_builtin_data_type"], "filenames": ["jp_about_handler_options_type.md", "jp_add_child_and_remove_child.md", "jp_add_debug_info_setting.md", "jp_animation_base_start.md", "jp_animation_base_target.md", "jp_animation_complete.md", "jp_animation_delay.md", "jp_animation_duration.md", "jp_animation_event.md", "jp_animation_fill_alpha.md", "jp_animation_fill_color.md", "jp_animation_finish.md", "jp_animation_interfaces_abstract.md", "jp_animation_line_alpha.md", "jp_animation_line_color.md", "jp_animation_line_thickness.md", "jp_animation_method_chaining.md", "jp_animation_move.md", "jp_animation_parallel.md", "jp_animation_pause_and_play.md", "jp_animation_radius.md", "jp_animation_reset.md", "jp_animation_return_value.md", "jp_animation_reverse.md", "jp_animation_rotation_around_center.md", "jp_animation_rotation_around_point.md", "jp_animation_scale_x_and_y_from_center.md", "jp_animation_scale_x_and_y_from_point.md", "jp_animation_time.md", "jp_animation_width_and_height.md", "jp_animation_x.md", "jp_animation_y.md", "jp_append_js_expression.md", "jp_array.md", "jp_array_append_and_push.md", "jp_array_clear.md", "jp_array_comparison.md", "jp_array_extend_and_concat.md", "jp_array_index_of.md", "jp_array_insert_and_insert_at.md", "jp_array_join.md", "jp_array_last_value.md", "jp_array_length.md", "jp_array_pop.md", "jp_array_remove_and_remove_at.md", "jp_array_reverse.md", "jp_array_slice.md", "jp_array_sort.md", "jp_assert_arrays_equal_and_arrays_not_equal.md", "jp_assert_defined_and_undefined.md", "jp_assert_dicts_equal_and_dicts_not_equal.md", "jp_assert_equal_and_not_equal.md", "jp_assert_greater_and_greater_equal.md", "jp_assert_less_and_less_equal.md", "jp_assert_true_and_false.md", "jp_assertion_basic_behavior.md", "jp_bind_and_trigger_custom_event.md", "jp_blue_color.md", "jp_boolean.md", "jp_branch_instruction_variables_reverting_setting.md", "jp_circle.md", "jp_click.md", "jp_color.md", "jp_color_from_rgb.md", "jp_colorless.md", "jp_colors.md", "jp_contains.md", "jp_continue.md", "jp_datetime.md", "jp_datetime_day.md", "jp_datetime_hour.md", "jp_datetime_millisecond.md", "jp_datetime_minute.md", "jp_datetime_month.md", "jp_datetime_now.md", "jp_datetime_second.md", "jp_datetime_set_month_end.md", "jp_datetime_weekday_js_and_weekday_py.md", "jp_datetime_year.md", "jp_dblclick.md", "jp_delete.md", "jp_dictionary.md", "jp_dictionary_generic.md", "jp_dictionary_get.md", "jp_dictionary_length.md", "jp_display_object.md", "jp_display_object_and_graphics_base_prop_abstract.md", "jp_display_object_get_and_set_css.md", "jp_display_object_mouse_event.md", "jp_display_object_parent.md", "jp_display_object_visible.md", "jp_display_object_x_and_y.md", "jp_display_on_colaboratory.md", "jp_display_on_jupyter.md", "jp_draw_interfaces_abstract.md", "jp_easing_enum.md", "jp_elif.md", "jp_ellipse.md", "jp_else.md", "jp_enter_frame.md", "jp_event_prevent_default_and_stop_propagation.md", "jp_for_array_indices.md", "jp_for_array_indices_and_values.md", "jp_for_array_values.md", "jp_for_dict_keys.md", "jp_for_dict_keys_and_values.md", "jp_for_dict_values.md", "jp_fps.md", "jp_fundamental_data_classes_value_interface.md", "jp_get_bounds.md", "jp_get_child_at.md", "jp_graphics.md", "jp_graphics_base_fill_alpha.md", "jp_graphics_base_fill_color.md", "jp_graphics_base_flip_interfaces.md", "jp_graphics_base_line_alpha.md", "jp_graphics_base_line_color.md", "jp_graphics_base_line_dash_dot_setting.md", "jp_graphics_base_line_dash_setting.md", "jp_graphics_base_line_dot_setting.md", "jp_graphics_base_line_round_dot_setting.md", "jp_graphics_base_line_thickness.md", "jp_graphics_base_rotation_around_center.md", "jp_graphics_base_rotation_around_point.md", "jp_graphics_base_scale_from_center.md", "jp_graphics_base_scale_from_point.md", "jp_graphics_base_skew.md", "jp_graphics_begin_fill.md", "jp_graphics_clear.md", "jp_graphics_draw_circle.md", "jp_graphics_draw_dash_dotted_line.md", "jp_graphics_draw_dashed_line.md", "jp_graphics_draw_dotted_line.md", "jp_graphics_draw_ellipse.md", "jp_graphics_draw_line.md", "jp_graphics_draw_path.md", "jp_graphics_draw_polygon.md", "jp_graphics_draw_rect.md", "jp_graphics_draw_round_dotted_line.md", "jp_graphics_draw_round_rect.md", "jp_graphics_draw_triangle.md", "jp_graphics_line_style.md", "jp_graphics_move_to_and_line_to.md", "jp_green_color.md", "jp_if.md", "jp_import_conventions.md", "jp_index.md", "jp_int_and_number.md", "jp_int_and_number_arithmetic_operations.md", "jp_int_and_number_comparison_operations.md", "jp_int_and_number_to_fixed.md", "jp_int_and_number_to_hex.md", "jp_line.md", "jp_material_design_colors.md", "jp_material_icon.md", "jp_math_clamp.md", "jp_math_max.md", "jp_math_min.md", "jp_math_trunc.md", "jp_mouse_event_abstract.md", "jp_mouse_event_basic.md", "jp_mousedown_and_mouseup.md", "jp_mousemove.md", "jp_mouseover_and_mouseout.md", "jp_multi_line_text.md", "jp_num_children.md", "jp_path.md", "jp_path_bezier_2d.md", "jp_path_bezier_2d_continual.md", "jp_path_bezier_3d.md", "jp_path_bezier_3d_continual.md", "jp_path_close.md", "jp_path_horizontal.md", "jp_path_line_to.md", "jp_path_move_to.md", "jp_path_vertical.md", "jp_point2d.md", "jp_polygon.md", "jp_polyline.md", "jp_quick_start.md", "jp_range.md", "jp_recommended_type_checker_settings.md", "jp_rectangle.md", "jp_rectangle_geom.md", "jp_red_color.md", "jp_remove_children.md", "jp_return.md", "jp_save_overall_html.md", "jp_sequential_animation.md", "jp_set_debug_mode.md", "jp_sprite.md", "jp_stage.md", "jp_string.md", "jp_string_addition_and_multiplication.md", "jp_string_apply_max_num_of_decimal_places.md", "jp_string_comparison_operations.md", "jp_string_length.md", "jp_string_lower.md", "jp_string_lstrip.md", "jp_string_rstrip.md", "jp_string_slice.md", "jp_string_split.md", "jp_string_strip.md", "jp_string_upper.md", "jp_string_zfill.md", "jp_svg_mask.md", "jp_svg_text.md", "jp_svg_text_span.md", "jp_text_align.md", "jp_text_align_last.md", "jp_text_bold.md", "jp_text_fill_alpha.md", "jp_text_fill_color.md", "jp_text_font_size.md", "jp_text_italic.md", "jp_text_line_height.md", "jp_text_underline.md", "jp_timedelta.md", "jp_timedelta_days.md", "jp_timedelta_total_seconds.md", "jp_timer.md", "jp_timer_complete.md", "jp_timer_delay.md", "jp_timer_event.md", "jp_timer_repeat_count.md", "jp_timer_reset.md", "jp_timer_start_and_stop.md", "jp_to_string.md", "jp_trace.md", "jp_triangle.md", "jp_true_and_false.md", "jp_unbind_enter_frame_and_unbind_enter_frame_all.md", "jp_unset_debug_mode.md", "jp_variable_name_suffix.md", "jp_what_apysc_can_do.md", "jp_why_apysc_doesnt_use_python_builtin_data_type.md"], "titles": ["\u30cf\u30f3\u30c9\u30e9\u306eoptions\u5f15\u6570\u306e\u578b\u306b\u3064\u3044\u3066", "add_child \u3068 remove_child \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "add_debug_info_setting \u306e\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "AnimationBase\u30af\u30e9\u30b9 start \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "AnimationBase \u30af\u30e9\u30b9 target \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "AnimationBase \u30af\u30e9\u30b9 animation_complete \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306edelay\u306e\u8a2d\u5b9a", "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306eduration\u8a2d\u5b9a", "AnimationEvent \u30af\u30e9\u30b9", "animation_fill_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_fill_color \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_finish \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981", "animation_line_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_line_color \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_line_thickness \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "AnimationBase \u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3", "animation_move \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_parallel \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_pause \u3068 animation_play \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_radius \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_reset \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8fd4\u5374\u5024", "animation_reverse \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_rotation_around_center \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_rotation_around_point \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_scale_x_from_center \u3068 animation_scale_y_from_center \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_scale_x_from_point \u3068 animation_scale_y_from_point \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_time \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_width \u3068 animation_height \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_x \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_y \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "append_js_expression \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9", "Array \u30af\u30e9\u30b9\u306e append \u3068 push \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e clear \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e extend \u3068 concat \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e index_of \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e insert \u3068 insert_at \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e join \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e last_value \u30d7\u30ed\u30d1\u30c6\u30a3", "Array \u30af\u30e9\u30b9\u306e length \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e pop \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e remove \u3068 remove_at \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e reverse \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e slice \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e sort \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "assert_arrays_equal \u3068 assert_arrays_not_equal \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "assert_defined \u3068 assert_undefined \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "assert_dicts_equal \u3068 assert_dicts_not_equal \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "assert_equal \u3068 assert_not_equal \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "assert_greater \u3068 assert_greater_equal \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "assert_less \u3068 assert_less_equal \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "assert_true \u3068 assert_false \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "JavaScript \u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u6319\u52d5", "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u767b\u9332\u3068\u30a4\u30d9\u30f3\u30c8\u306e\u767a\u751f\uff08\u767a\u706b\uff09\u5236\u5fa1", "Color \u30af\u30e9\u30b9\u306e blue_color \u30d7\u30ed\u30d1\u30c6\u30a3", "Boolean \u30af\u30e9\u30b9", "\u5404\u5206\u5c90\u5236\u5fa1\u306e\u30af\u30e9\u30b9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5909\u6570\u5024\u306e\u5fa9\u5143\u8a2d\u5b9a", "Circle \u30af\u30e9\u30b9", "click \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Color \u30af\u30e9\u30b9", "Color \u30af\u30e9\u30b9\u306e from_rgb \u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9", "COLORLESS \u5b9a\u6570", "Colors \u30af\u30e9\u30b9", "contains \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Continue \u30af\u30e9\u30b9", "DateTime \u30af\u30e9\u30b9", "DateTime \u30af\u30e9\u30b9\u306e day \u5c5e\u6027", "DateTime \u30af\u30e9\u30b9\u306e hour \u5c5e\u6027", "DateTime \u30af\u30e9\u30b9\u306e millisecond \u5c5e\u6027", "DateTime \u30af\u30e9\u30b9\u306e minute \u5c5e\u6027", "DateTime \u30af\u30e9\u30b9\u306e month \u5c5e\u6027", "DateTime \u30af\u30e9\u30b9\u306e now \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "DateTime \u30af\u30e9\u30b9\u306e second \u5c5e\u6027", "DateTime \u30af\u30e9\u30b9\u306e set_month_end \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "DateTime \u30af\u30e9\u30b9\u306e weekday_js \u3068 weekday_py \u5c5e\u6027", "DateTime \u30af\u30e9\u30b9\u306e year \u5c5e\u6027", "dblclick \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "delete \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Dictionary \u30af\u30e9\u30b9", "Dictionary \u30af\u30e9\u30b9\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a", "Dictionary \u30af\u30e9\u30b9\u306e get \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Dictionary \u30af\u30e9\u30b9\u306e length \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "DisplayObject \u30af\u30e9\u30b9", "DisplayObject \u3068 GraphicsBase \u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u5c5e\u6027\u306e\u6982\u8981", "DisplayObject \u30af\u30e9\u30b9\u306e get_css \u3068 set_css \u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "DisplayObject \u30af\u30e9\u30b9\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "DisplayObject \u30af\u30e9\u30b9\u306e parent \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "DisplayObject \u30af\u30e9\u30b9\u306e visible \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "DisplayObject \u30af\u30e9\u30b9\u306e x \u3068 y \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "display_on_colaboratory \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "display_on_jupyter \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981", "\u30a4\u30fc\u30b8\u30f3\u30b0\u306eenum", "Elif \u30af\u30e9\u30b9", "Ellipse \u30af\u30e9\u30b9", "Else \u30af\u30e9\u30b9", "enter_frame \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Event \u30af\u30e9\u30b9\u306e prevent_default \u3068 stop_propagation \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "ForArrayIndices \u30af\u30e9\u30b9", "ForArrayIndicesAndValues \u30af\u30e9\u30b9", "ForArrayValues \u30af\u30e9\u30b9", "ForDictKeys \u30af\u30e9\u30b9", "ForDictKeysAndValues \u30af\u30e9\u30b9", "ForDictValues \u30af\u30e9\u30b9", "FPS \u306e enum", "apysc \u306e\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u578b\u306e value \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "get_bounds \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "get_child_at \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e fill_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e fill_color \u5c5e\u6027", "GraphicsBase \u30af\u30e9\u30b9\u306e flip_x \u3068 flip_y \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e line_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e line_color \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e line_dash_dot_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e line_dash_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e line_dot_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e line_round_dot_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e line_thickness \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e rotation_around_center \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e rotation_around_point \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e scale_x_from_center \u3068 scale_y_from_center \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e get_scale_from_point \u3068 set_scale_from_point \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e skew_x \u3068 skew_y \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e begin_fill \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e clear \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_circle \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_dash_dotted_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_dashed_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_dotted_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_ellipse \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_path \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_polygon \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_rect \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_round_dotted_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_round_rect \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_triangle \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e line_style \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e move_to \u3068 line_to \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Color \u30af\u30e9\u30b9\u306e green_color \u30d7\u30ed\u30d1\u30c6\u30a3", "If \u30af\u30e9\u30b9", "import \u306e\u6163\u7fd2", "apysc \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8", "Int \u3068 Number \u30af\u30e9\u30b9", "Int \u3068 Number \u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u8a08\u7b97\u5236\u5fa1", "Int \u3068 Number \u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u6bd4\u8f03\u5236\u5fa1", "Int \u3068 Number \u30af\u30e9\u30b9\u306e to_fixed \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Int \u3068 Number \u30af\u30e9\u30b9\u306e to_hex \u30e1\u30bd\u30c3\u30c9", "Line \u30af\u30e9\u30b9", "MaterialDesignColors \u30af\u30e9\u30b9", "\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3", "Math \u30af\u30e9\u30b9\u306e clamp \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Math \u30af\u30e9\u30b9\u306e max \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Math \u30af\u30e9\u30b9\u306e min \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Math \u30af\u30e9\u30b9\u306e trunc \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "MouseEvent \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981", "\u57fa\u672c\u7684\u306a\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "mousedown \u3068 mouseup \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "mousemove \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "mouseover \u3068 mouseout \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "MultiLineText \u30af\u30e9\u30b9", "num_children \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Path \u30af\u30e9\u30b9", "PathBezier2D \u30af\u30e9\u30b9", "PathBezier2DContinual \u30af\u30e9\u30b9", "PathBezier3D \u30af\u30e9\u30b9", "PathBezier3DContinual \u30af\u30e9\u30b9", "PathClose \u30af\u30e9\u30b9", "PathHorizontal \u30af\u30e9\u30b9", "PathLineTo \u30af\u30e9\u30b9", "PathMoveTo \u30af\u30e9\u30b9", "PathVertical \u30af\u30e9\u30b9", "Point2D \u30af\u30e9\u30b9", "Polygon \u30af\u30e9\u30b9", "Polyline \u30af\u30e9\u30b9", "\u30af\u30a4\u30c3\u30af\u30b9\u30bf\u30fc\u30c8\u30ac\u30a4\u30c9", "range \u95a2\u6570", "\u63a8\u5968\u3055\u308c\u308b\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306e\u30c1\u30a7\u30c3\u30af\u8a2d\u5b9a", "Rectangle \u30af\u30e9\u30b9", "RectangleGeom \u30af\u30e9\u30b9", "Color \u30af\u30e9\u30b9\u306e red_color \u30d7\u30ed\u30d1\u30c6\u30a3", "remove_children \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Return \u30af\u30e9\u30b9", "save_overall_html \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "\u9023\u7d9a\u3057\u305f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a", "set_debug_mode \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Sprite\u30af\u30e9\u30b9", "Stage \u30af\u30e9\u30b9", "String \u30af\u30e9\u30b9", "String \u30af\u30e9\u30b9\u306e\u52a0\u7b97\u3068\u4e57\u7b97\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3", "String \u30af\u30e9\u30b9\u306e apply_max_num_of_decimal_places \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "String \u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3", "String \u30af\u30e9\u30b9\u306e length \u5c5e\u6027", "String \u30af\u30e9\u30b9\u306e lower \u30e1\u30bd\u30c3\u30c9", "String \u30af\u30e9\u30b9\u306e lstrip \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "String \u30af\u30e9\u30b9\u306e rstrip \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "String \u30af\u30e9\u30b9\u306e slice \u30e1\u30bd\u30c3\u30c9", "String \u30af\u30e9\u30b9\u306e split \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "String \u30af\u30e9\u30b9\u306e strip \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "String \u30af\u30e9\u30b9\u306e upper \u30e1\u30bd\u30c3\u30c9", "String \u30af\u30e9\u30b9\u306e zfill \u30e1\u30bd\u30c3\u30c9", "SvgMask \u30af\u30e9\u30b9\u3068\u95a2\u9023\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9", "SvgText \u30af\u30e9\u30b9", "SvgTextSpan \u30af\u30e9\u30b9", "text_align \u5c5e\u6027", "text_align_last \u5c5e\u6027", "\u30c6\u30ad\u30b9\u30c8\u306e bold \u5c5e\u6027", "\u30c6\u30ad\u30b9\u30c8\u306e fill_alpha \u5c5e\u6027", "\u30c6\u30ad\u30b9\u30c8\u306e fill_color \u5c5e\u6027", "\u30c6\u30ad\u30b9\u30c8\u306e font_size \u5c5e\u6027", "\u30c6\u30ad\u30b9\u30c8\u306e italic \u5c5e\u6027", "\u30c6\u30ad\u30b9\u30c8\u306e line_height \u5c5e\u6027", "\u30c6\u30ad\u30b9\u30c8\u306e underline \u5c5e\u6027", "TimeDelta \u30af\u30e9\u30b9", "TimeDelta \u30af\u30e9\u30b9\u306e days \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "TimeDelta \u30af\u30e9\u30b9\u306e total_seconds \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Timer \u30af\u30e9\u30b9", "Timer \u30af\u30e9\u30b9\u306e timer_complete \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Timer \u30af\u30e9\u30b9\u306e delay \u8a2d\u5b9a", "TimerEvent \u30af\u30e9\u30b9", "Timer \u30af\u30e9\u30b9\u306e repeat_count \u8a2d\u5b9a", "Timer \u30af\u30e9\u30b9\u306e reset \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Timer \u30af\u30e9\u30b9\u306e start \u3068 stop \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "to_string \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "trace \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Triangle \u30af\u30e9\u30b9", "True_ \u3068 False_ \u306e\u5404\u5b9a\u6570", "unbind_enter_frame \u3068 unbind_enter_frame_all \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "unset_debug_mode \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "variable_name_suffix \u306e\u5f15\u6570\u8a2d\u5b9a", "apysc \u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u73fe\u5728\u306e\u5b9f\u88c5\u3067\u3067\u304d\u308b\u3053\u3068", "\u4f55\u6545 apysc \u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306fPython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30c7\u30fc\u30bf\u578b\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u306e\u304b"], "terms": {"\u3053\u306e\u7ffb\u8a33\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306f\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u3088\u3063\u3066\u51fa\u529b": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "\u540c\u671f\u3055\u308c\u3066\u3044\u307e\u3059": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "\u5185\u5bb9\u304c\u602a\u3057\u305d\u3046\u306a\u5834\u5408\u306f": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "github\u306bissu": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "\u3092\u8ffd\u52a0\u3057\u305f\u308a": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "\u82f1\u8a9e\u306e\u539f\u6587": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "\u306e\u78ba\u8a8d\u3092\u304a\u9858\u3044\u3057\u307e\u3059": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e": 0, "option": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 48, 49, 50, 51, 52, 53, 54, 56, 60, 61, 66, 68, 74, 79, 80, 83, 86, 87, 88, 90, 91, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 150, 152, 154, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 191, 194, 198, 199, 200, 202, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "\u5f15\u6570\u306e\u578b\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 0, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb\u306e\u3088\u3046\u306b": 0, "\u5f15\u6570\u306f\u8f9e\u66f8\u306e\u578b\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 0, "runnabl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234], "from": [0, 1, 11, 12, 19, 21, 23, 26, 27, 28, 56, 65, 66, 74, 82, 83, 86, 87, 89, 90, 91, 95, 107, 114, 123, 124, 125, 126, 134, 141, 142, 153, 160, 220, 221, 222, 223, 224, 225, 226, 233, 234], "type": [0, 18, 33, 56, 65, 82, 83, 85, 102, 103, 104, 105, 106, 148, 153], "import": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "dict": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 50, 56, 60, 61, 66, 74, 79, 80, 81, 87, 88, 90, 91, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 144, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "apysc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233], "ap": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "stage": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "def": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 191, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "on_tim": [0, 11, 19, 21, 23, 28, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 152, 166, 177, 178, 182, 186, 206, 220, 221, 222, 223, 224, 225, 226, 229, 234], "e": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 96, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "timerev": [0, 11, 19, 21, 23, 28, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 186, 206, 220, 221, 222, 224, 225, 226, 229, 234], "str": [0, 32, 33, 40, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 63, 65, 68, 74, 79, 81, 82, 87, 92, 93, 96, 97, 98, 101, 102, 103, 104, 105, 106, 108, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 144, 147, 150, 151, 152, 153, 154, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 187, 190, 191, 192, 193, 194, 195, 198, 199, 200, 202, 205, 206, 207, 221, 229], "none": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 39, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 66, 67, 68, 74, 79, 80, 81, 83, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 127, 128, 133, 137, 140, 141, 142, 144, 147, 152, 154, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 185, 186, 187, 189, 190, 191, 192, 198, 199, 200, 202, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234], "The": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 67, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 141, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 191, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "handler": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "timer": [0, 11, 19, 21, 23, 28, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 186, 206, 223, 229, 234], "call": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 66, 79, 80, 86, 87, 88, 90, 91, 95, 100, 107, 111, 113, 114, 116, 123, 124, 125, 126, 133, 137, 142, 159, 160, 161, 162, 163, 165, 186, 190, 220, 221, 222, 223, 224, 225, 226, 228, 233, 234], "paramet": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "event": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 146, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "instanc": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 42, 56, 60, 61, 66, 74, 79, 80, 84, 85, 86, 87, 88, 89, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 205, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "argument": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 138, 140, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 189, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234], "dictionari": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 50, 56, 60, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 104, 105, 106, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 140, 152, 159, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234, 235], "trace": [0, 5, 8, 16, 28, 66, 74, 98, 100, 144, 146, 160, 162, 165, 221, 223, 233], "msg": [0, 48, 49, 50, 51, 52, 53, 54, 55], "delai": [0, 3, 6, 9, 10, 11, 12, 13, 14, 15, 17, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 188, 206, 220, 221, 223, 224, 225, 226, 229, 234], "1000": [0, 5, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 60, 86, 87, 95, 97, 114, 152, 166, 177, 178, 182, 188, 206, 225, 229], "hello": [0, 32, 192, 193, 195, 196, 197, 203, 206, 207, 228, 230], "start": [0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 46, 56, 60, 86, 87, 95, 97, 107, 114, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 188, 189, 200, 206, 207, 220, 221, 222, 223, 224, 225, 229, 232, 234], "\u901a\u5e38\u306e\u8f9e\u66f8\u306e\u4ee3\u308f\u308a\u306b": 0, "typeddict": [0, 1, 11, 12, 19, 21, 23, 26, 27, 28, 56, 66, 86, 87, 90, 95, 107, 114, 123, 124, 125, 126, 160, 220, 221, 222, 223, 224, 225, 226, 234], "\u3092\u4f7f\u3063\u305f\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306f\u53ef\u8aad\u6027\u306e\u5411\u4e0a\u306b\u5f79\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 0, "apysc\u3067\u306foptions\u5f15\u6570\u306btypeddict\u306b\u3088\u308b\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u304a\u308a": 0, "\u5b9f\u969b\u306b\u6e21\u3057\u305foptions\u306e\u8f9e\u66f8\u306e\u578b\u3068\u30cf\u30f3\u30c9\u30e9\u306etypeddict\u306b\u3088\u308b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u9593\u3067\u578b\u30c1\u30a7\u30c3\u30af\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 0, "typing_extens": [0, 1, 11, 12, 19, 21, 23, 26, 27, 28, 56, 58, 66, 86, 87, 90, 95, 107, 114, 123, 124, 125, 126, 160, 220, 221, 222, 223, 224, 225, 226, 234], "class": [0, 1, 2, 11, 12, 18, 19, 21, 23, 26, 27, 28, 56, 66, 67, 86, 87, 90, 95, 107, 114, 123, 124, 125, 126, 160, 189, 220, 221, 222, 223, 224, 225, 226, 232, 234], "_msgoption": 0, "\u7279\u8a18\u4e8b\u9805": [0, 1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 82, 83, 84, 87, 89, 90, 91, 92, 97, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231], "\u3082\u3057python3": [0, 82], "8\u3082\u3057\u304f\u306f\u305d\u308c\u4ee5\u964d\u306epython\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u304a\u4f7f\u3044\u306e\u5834\u5408\u306b\u306f": 0, "\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4ee3\u308f\u308a\u306b": 0, "\u30d1\u30c3\u30b1\u30fc\u30b8\u304b\u3089": 0, "\u3092import\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 0, "\u4f8b": [0, 4, 22, 55, 62, 78, 87, 93, 94, 96, 98, 101, 102, 103, 104, 105, 106, 127, 141, 145, 148, 150, 151, 154, 159, 160, 180, 191, 205, 206, 207, 232, 233], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306fgraphics\u30af\u30e9\u30b9\u3084sprit": 1, "stage\u30af\u30e9\u30b9\u306a\u3069\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u3068\u3057\u3066\u6271\u3048\u308b\u30af\u30e9\u30b9\u304c\u6301\u3064": 1, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [1, 18, 79, 162], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u5b50\u3068\u306a\u308b\u5404": 1, "displayobject": [1, 8, 17, 18, 29, 30, 31, 61, 66, 79, 80, 109, 110, 111, 160, 161, 162, 163, 183, 189, 190, 191, 205], "\u3092\u7d99\u627f\u3057\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8ffd\u52a0\u3057": 1, "\u9006\u306b": [1, 48, 49, 50, 51, 54, 61, 126, 161, 163, 226], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30b3\u30f3\u30c6\u30ca\u30fc\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 1, "apysc\u3067\u306f\u53d6\u308a\u9664\u304b\u308c\u305f\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u8868\u793a\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3059": 1, "apysc\u3067\u306f\u5404": 1, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e\u6642\u70b9\u3067\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u81ea\u52d5\u3067\u8ffd\u52a0\u3055\u308c\u307e\u3059": 1, "\u4f8b\u3048\u3070": [1, 3, 7, 8, 22, 62, 67, 68, 76, 80, 82, 100, 107, 140, 155, 160, 183, 188, 194, 196, 207, 209, 220, 221, 222, 224, 233], "sprite": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 66, 67, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 99, 100, 107, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 145, 146, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 179, 185, 186, 188, 189, 190, 191, 205, 206, 220, 221, 222, 223, 224, 225, 226, 228, 232, 234], "\u30af\u30e9\u30b9\u3067\u3042\u308c\u3070": 1, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u89aa\u3068\u3057\u3066\u8ffd\u52a0\u3055\u308c": 1, "\u30af\u30e9\u30b9\u3092\u89aa\u3068\u3057\u3066\u5185\u90e8\u3067\u4f5c\u6210\u3055\u308c\u308b": 1, "graphic": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 67, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 100, 107, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 152, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 185, 186, 188, 190, 191, 220, 221, 222, 223, 224, 225, 226, 228, 229, 234], "\u30d7\u30ed\u30d1\u30c6\u30a3\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 1, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u81ea\u52d5\u3067\u8ffd\u52a0\u3055\u308c\u307e\u3059": 1, "\u3082\u3057\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8abf\u6574\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u624b\u52d5\u3067": 1, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3076\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 1, "\u4f8b\u3048\u3070\u89aa\u3068\u3057\u3066\u306e\u3068\u3042\u308b": 1, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u5225\u306e": 1, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u5b50\u3092\u79fb\u3057\u305f\u3044\u5834\u5408\u306a\u3069\u304c\u8a72\u5f53\u3057\u307e\u3059": 1, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u5b50\u3092\u89aa\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u8981\u7d20\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 1, "apysc\u306f\u53d6\u308a\u9664\u304b\u308c\u305f": 1, "\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8868\u793a\u3057\u307e\u305b\u3093": 1, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306e\u30cf\u30f3\u30c9\u30e9\u5185\u3067": 1, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u3066\u304a\u308a": 1, "\u30af\u30ea\u30c3\u30af\u6642\u306b\u56db\u89d2\u304c\u753b\u9762\u304b\u3089\u53d6\u308a\u9664\u304b\u308c\u307e\u3059": 1, "_rectopt": [1, 11, 19, 21, 23, 28, 56, 66, 90, 107, 126, 220, 221, 222, 223, 224, 225, 226], "rectangl": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 56, 61, 62, 63, 64, 65, 66, 74, 79, 80, 85, 86, 88, 89, 90, 91, 95, 99, 100, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 136, 139, 140, 141, 146, 153, 159, 160, 161, 162, 163, 165, 179, 183, 185, 186, 188, 190, 191, 205, 220, 221, 222, 223, 224, 225, 226, 228, 231, 233, 234], "on_sprite_click": [1, 66, 100, 165, 190, 220], "mouseev": [1, 11, 21, 32, 56, 61, 66, 74, 79, 80, 88, 90, 91, 100, 111, 113, 116, 117, 118, 119, 120, 128, 133, 137, 140, 142, 161, 162, 163, 165, 185, 186, 190, 220, 221, 224, 226, 228, 231, 234], "when": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 56, 61, 66, 79, 88, 90, 91, 95, 100, 111, 113, 116, 133, 137, 142, 159, 160, 161, 162, 163, 165, 186, 190, 220, 221, 223, 224, 225, 226, 228, 234], "click": [1, 11, 21, 32, 56, 66, 74, 79, 80, 88, 90, 91, 100, 111, 113, 116, 117, 118, 119, 120, 128, 133, 137, 140, 142, 146, 159, 160, 162, 165, 185, 186, 190, 220, 221, 224, 226, 228, 231, 234], "thi": [1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 20, 21, 22, 24, 25, 26, 27, 29, 30, 31, 33, 56, 61, 66, 79, 80, 88, 90, 91, 95, 100, 111, 113, 116, 117, 118, 119, 120, 128, 133, 137, 140, 141, 142, 148, 159, 161, 162, 163, 165, 185, 186, 190, 191, 194, 220, 221, 224, 225, 226, 228, 234], "child": [1, 66, 110, 185, 190, 191], "background_color": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234], "color": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 60, 61, 64, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "333": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234], "stage_width": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "150": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 152, 153, 159, 160, 161, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 186, 187, 189, 190, 191, 205, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 232, 233, 234], "stage_height": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "stage_elem_id": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 94, 95, 97, 99, 100, 101, 103, 104, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "begin_fil": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 66, 67, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 100, 107, 110, 111, 112, 113, 114, 116, 122, 123, 124, 125, 126, 128, 129, 133, 136, 137, 139, 140, 141, 146, 159, 160, 161, 162, 163, 165, 176, 179, 185, 186, 188, 190, 191, 220, 221, 222, 223, 224, 225, 226, 228, 234], "0af": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 62, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 152, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 188, 190, 191, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 233, 234], "draw_rect": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 66, 67, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 100, 107, 110, 111, 112, 113, 115, 116, 121, 122, 123, 124, 125, 126, 127, 128, 139, 141, 146, 159, 160, 161, 162, 163, 165, 179, 185, 186, 188, 190, 191, 220, 221, 222, 223, 224, 225, 226, 228, 234], "x": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 135, 136, 137, 139, 140, 141, 142, 146, 152, 153, 154, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 186, 188, 190, 191, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234], "50": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 56, 60, 61, 62, 63, 64, 65, 66, 67, 68, 72, 74, 75, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 148, 152, 153, 155, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 186, 188, 190, 191, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234], "y": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 135, 136, 137, 139, 141, 142, 146, 152, 153, 154, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 186, 188, 190, 191, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234], "width": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 105, 106, 107, 109, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 133, 137, 139, 141, 153, 159, 160, 161, 162, 163, 164, 165, 179, 182, 185, 186, 188, 190, 191, 204, 205, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 231, 233, 234], "height": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 105, 106, 107, 109, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 133, 137, 139, 141, 153, 159, 160, 161, 162, 163, 165, 179, 182, 185, 186, 188, 190, 191, 205, 220, 221, 222, 223, 224, 225, 226, 228, 231, 233, 234], "save_overall_html": [1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 146, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "dest_dir_path": [1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "sprite_basic_usage_of_remove_child": 1, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u53d6\u308a\u9664\u304b\u308c\u305f\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u3082\u3046\u4e00\u5ea6\u4ed6\u306e\u89aa\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u8ffd\u52a0\u3057\u307e\u3059": 1, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b1\u3064\u76ee\u306e\u5de6\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b": 1, "\u306e\u89aa\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u304b\u3089\u305d\u306e\u56db\u89d2\u3092\u53d6\u308a\u9664\u304d": 1, "\u305d\u3057\u30662\u3064\u76ee\u306e\u53f3\u5074\u306b\u914d\u7f6e\u3057\u3066\u3042\u308b": 1, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u5b50\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059": 1, "_spriteandrectopt": 1, "first_sprit": 1, "second_sprit": 1, "250": [1, 12, 26, 27, 56, 62, 63, 66, 67, 90, 92, 93, 94, 95, 101, 105, 106, 107, 109, 111, 112, 115, 117, 118, 119, 120, 121, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 135, 136, 138, 139, 141, 142, 164, 168, 169, 171, 179, 183, 185, 190, 206, 212, 213, 215, 216, 221, 222, 224, 226, 231], "number": [1, 9, 13, 17, 25, 26, 28, 30, 31, 52, 53, 60, 65, 86, 91, 97, 101, 102, 103, 104, 105, 106, 108, 109, 111, 112, 115, 123, 124, 125, 127, 129, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 145, 152, 153, 154, 155, 156, 157, 158, 160, 164, 165, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 190, 205, 206, 207, 211, 215, 217, 219, 220, 222, 224, 227, 229, 233, 234, 235], "0": [1, 9, 10, 12, 13, 14, 15, 17, 18, 20, 24, 25, 26, 27, 29, 30, 31, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 60, 63, 65, 66, 67, 68, 70, 72, 75, 77, 83, 86, 87, 91, 94, 97, 101, 104, 109, 110, 111, 112, 114, 115, 116, 122, 123, 124, 125, 127, 129, 133, 135, 136, 137, 140, 141, 142, 143, 150, 151, 152, 153, 154, 156, 157, 158, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 184, 185, 187, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 211, 215, 217, 219, 220, 222, 224, 227, 229, 232, 234], "sprite_basic_usage_of_add_child": 1, "displayobject\u30af\u30e9\u30b9": [1, 85, 86], "parent": [1, 60, 85, 86, 97, 109, 146, 152, 154, 164, 166, 177, 178, 182, 191, 206, 207, 229], "\u89aa\u8981\u7d20\u5c5e\u6027": [1, 85, 86], "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [1, 12, 33, 60, 66, 85, 86, 88, 89, 94, 97, 111, 119, 146, 152, 159, 160, 177, 178, 182, 190, 191, 234], "contain": [1, 2, 146, 190], "\u3053\u306eapi\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30d3\u30eb\u30c9\u7528\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u3088\u3063\u3066\u81ea\u52d5\u3067\u751f\u6210": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "\u305d\u306e\u305f\u3081\u3082\u3057\u304b\u3057\u305f\u3089\u3053\u306e\u7bc0\u306e\u5185\u5bb9\u306f\u524d\u7bc0\u307e\u3067\u306e\u5185\u5bb9\u3068\u91cd\u8907\u3057\u3066\u3044\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u69cb\u9020": [1, 3, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 63, 66, 67, 68, 74, 79, 81, 83, 87, 89, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 117, 118, 119, 120, 123, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 185, 186, 187, 189, 190, 191, 192, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 217, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "self": [1, 2, 3, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 33, 34, 37, 38, 39, 40, 43, 44, 45, 46, 47, 56, 58, 60, 61, 62, 66, 67, 68, 79, 81, 83, 87, 89, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 117, 118, 119, 120, 123, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 185, 186, 189, 190, 191, 192, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 217, 219, 220, 221, 222, 223, 224, 225, 226, 227, 229, 231, 232], "_displai": [1, 60, 66, 97, 109, 110, 137, 139, 140, 141, 152, 154, 164, 166, 177, 178, 182, 183, 189, 191, 205, 206, 207, 229], "display_object": [1, 66, 109, 110, 183, 189, 191], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": [1, 4, 8, 19, 26, 29, 33, 34, 37, 39, 41, 44, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 62, 63, 67, 68, 77, 81, 87, 89, 91, 96, 97, 98, 100, 101, 102, 103, 104, 105, 106, 114, 123, 124, 125, 126, 142, 143, 144, 147, 151, 152, 154, 160, 161, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 186, 190, 191, 192, 196, 197, 200, 203, 204, 205, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 220, 222, 223, 224, 226, 229, 231], "\u8868\u793a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u5b50\u3092\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u8ffd\u52a0\u3057\u307e\u3059": [1, 191], "\u5f15\u6570": [1, 5, 8, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 63, 66, 68, 74, 79, 81, 83, 87, 92, 93, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 109, 110, 123, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 187, 190, 191, 192, 194, 198, 199, 200, 201, 202, 204, 205, 206, 207, 220, 221, 222, 223, 224, 228, 229, 231], "\u8ffd\u52a0\u3059\u308b\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [1, 191], "\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "sprite_1": [1, 89, 190, 191], "sprite_2": [1, 89, 190, 191], "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u8868\u793a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u5b50\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": [1, 191], "\u53d6\u308a\u9664\u304f\u5bfe\u8c61\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [1, 191], "alpha": [1, 9, 12, 13, 18, 66, 87, 94, 110, 111, 115, 116, 122, 123, 124, 127, 140, 141, 165, 191, 211], "5": [1, 12, 13, 14, 18, 26, 33, 36, 37, 38, 44, 45, 47, 48, 60, 62, 65, 66, 68, 69, 70, 71, 72, 75, 76, 77, 86, 87, 94, 96, 97, 108, 110, 111, 112, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 130, 131, 132, 134, 135, 138, 139, 140, 141, 142, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 180, 182, 183, 191, 196, 204, 206, 207, 211, 217, 218, 219, 227, 229, 233], "print": [1, 83, 191, 228], "\u306e\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5bfe\u8c61\u306e\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9\u3078\u3068\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\u306e\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 2, "\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u304c\u8a2d\u5b9a\u3055\u308c\u305f\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9\u3067\u306f": 2, "\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u3092\u6709\u52b9\u306b\u3057\u305f\u5f8c\u306e\u51e6\u7406\u3067\u306f\u5404\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 2, "\u51e6\u7406\u306e\u6709\u52b9\u306b\u3059\u308b\u305f\u3081\u306b\u6700\u521d\u306b": 2, "set_debug_mod": [2, 146, 232], "\u95a2\u6570\u3067\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u304a\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 2, "\u305d\u306e\u5f8c": 2, "\u4efb\u610f\u306e\u5404\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306b": 2, "\u306e\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u306e\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 2, "\u306e\u95a2\u6570\u306f": 2, "module_nam": 2, "\u5f15\u6570\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": [2, 102, 103, 104, 138, 187], "\u3053\u306e\u5f15\u6570\u306f\u57fa\u672c\u7684\u306b": 2, "__name__": 2, "\u306e\u5024\u3068\u306a\u308a\u307e\u3059": [2, 106], "_main": [2, 191], "entri": [2, 191], "point": [2, 12, 114, 136, 142, 176, 177, 178, 191, 234], "project": [2, 191], "_draw_rectangl": 2, "add_debug_info_setting_basic_usag": 2, "float": [2, 9, 13, 17, 25, 26, 27, 30, 31, 52, 53, 60, 97, 108, 127, 129, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 147, 148, 149, 152, 154, 156, 157, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 194, 206, 207, 220, 222, 224, 229, 235], "draw": [2, 111, 122, 127, 129, 130, 131, 132, 133, 136, 138, 139, 141, 142, 179], "given": 2, "coordin": [2, 91, 111, 160, 229], "_": [2, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 56, 58, 61, 64, 65, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 100, 101, 102, 103, 105, 113, 116, 127, 140, 141, 143, 147, 150, 153, 155, 156, 157, 158, 160, 161, 162, 163, 191, 192, 194, 196, 198, 199, 201, 202, 204, 205, 217, 218, 219, 220, 221, 222, 224, 225, 226, 228, 229], "mysprit": 2, "__init__": [2, 8, 33, 58, 60, 62, 67, 68, 81, 96, 97, 98, 101, 102, 103, 104, 105, 106, 144, 147, 152, 154, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 186, 189, 190, 191, 192, 205, 206, 207, 220, 222, 223, 224, 229, 232], "int": [2, 5, 6, 7, 9, 10, 12, 13, 14, 15, 17, 18, 20, 22, 24, 25, 26, 27, 29, 30, 31, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 63, 65, 68, 69, 70, 71, 72, 73, 75, 77, 78, 80, 81, 82, 83, 84, 86, 95, 96, 97, 98, 101, 102, 103, 104, 105, 106, 108, 110, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 129, 130, 131, 132, 133, 134, 137, 138, 139, 141, 142, 143, 144, 145, 152, 153, 154, 155, 156, 157, 158, 160, 162, 164, 165, 166, 167, 169, 170, 176, 177, 178, 180, 182, 183, 184, 185, 187, 189, 191, 193, 194, 196, 200, 204, 206, 207, 213, 217, 218, 220, 222, 224, 227, 228, 229, 232, 233, 234, 235], "my": 2, "": [2, 74, 148, 170, 205, 206], "super": 2, "__main__": 2, "\u51fa\u529b\u3055\u308c\u305fhtml\u306b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306e\u547c\u3073\u51fa\u3057\u306a\u3069\u306e\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\u304c\u542b\u307e\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 2, "1": [2, 9, 11, 12, 13, 15, 17, 19, 21, 23, 26, 27, 33, 34, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 54, 56, 58, 60, 65, 67, 68, 69, 70, 71, 72, 73, 75, 77, 78, 84, 86, 97, 99, 101, 102, 107, 110, 112, 115, 121, 123, 124, 125, 126, 127, 141, 148, 152, 153, 154, 155, 158, 164, 165, 166, 177, 178, 180, 182, 187, 189, 191, 194, 196, 200, 204, 205, 206, 207, 211, 218, 219, 220, 221, 222, 223, 224, 225, 226, 229, 231, 232, 234], "modul": [2, 189, 232], "name": [2, 49, 51, 54, 55, 56, 61, 65, 79, 87, 161, 162, 163, 189, 221, 232], "keyword": 2, "posit": [2, 206], "\u3053\u306e\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u8a2d\u5b9a\u306f\u73fe\u5728mypy\u4e0a\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3059": 2, "\u3054\u306e\u30a8\u30e9\u30fc\u3092\u907f\u3051\u308b\u305f\u3081\u306b\u306f": 2, "disabl": [2, 181], "error": [2, 148, 181], "code": [2, 65, 96, 98, 181], "misc": [2, 181], "\u30aa\u30d6\u30b7\u30e7\u30f3\u306e\u6307\u5b9a\u306e\u8ffd\u52a0\u3092\u691c\u8a0e\u3057\u3066\u304f\u3060\u3055\u3044": 2, "\u53c2\u8003\u8cc7\u6599": [2, 234], "\u63a8\u5968\u3055\u308c\u308b\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306e\u30c1\u30a7\u30c3\u30af\u8a2d\u5b9a": [2, 146], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [2, 26, 29, 33, 58, 68, 81, 85, 86, 88, 146, 147, 159, 160, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 183, 188, 190, 191, 192, 217, 220, 229, 231, 234], "unset_debug_mod": [2, 146, 189], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306e": 3, "animationbas": [3, 8, 9, 14, 18, 22, 146], "\u30af\u30e9\u30b9\u306e": [3, 4, 5, 33, 60, 62, 68, 85, 86, 94, 97, 107, 111, 146, 149, 152, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 195, 217, 220, 229, 234], "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [3, 5, 9, 10, 11, 13, 14, 15, 17, 20, 21, 23, 24, 25, 28, 30, 31, 35, 38, 40, 43, 45, 46, 47, 66, 74, 76, 83, 99, 109, 110, 127, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 150, 185, 194, 198, 201, 202, 219, 221, 225, 227], "\u30e1\u30bd\u30c3\u30c9\u306f\u5bfe\u8c61\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u958b\u59cb\u3057\u307e\u3059": 3, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 3, "\u30af\u30e9\u30b9\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 3, "animation_mov": [3, 5, 6, 7, 11, 12, 19, 21, 22, 23, 95, 146], "animation_x": [3, 4, 5, 6, 7, 8, 11, 12, 16, 18, 19, 21, 22, 23, 28, 95, 146, 188], "\u306a\u3069\u304c\u8a72\u5f53\u3057": 3, "\u305d\u308c\u3089\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u3053\u306e": 3, "\u30e1\u30bd\u30c3\u30c9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": [3, 74, 100, 136], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u306e\u3088\u3046\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u958b\u59cb\u3059\u308b\u306b\u306f": 3, "\u306a\u3069\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u305f\u5f8c\u306b": 3, "\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3076\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 3, "200": [3, 4, 5, 8, 12, 16, 17, 20, 22, 29, 30, 31, 60, 85, 86, 89, 94, 95, 104, 105, 109, 111, 117, 118, 119, 120, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 141, 142, 152, 160, 162, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 178, 182, 183, 188, 206, 207, 212, 227], "animationx": [3, 4, 5, 6, 7, 8, 18, 22, 30, 95], "100": [3, 4, 5, 8, 9, 11, 12, 16, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 31, 33, 41, 60, 85, 86, 91, 94, 95, 97, 105, 109, 111, 114, 117, 118, 119, 120, 123, 125, 127, 129, 133, 134, 135, 136, 137, 140, 141, 142, 152, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 188, 205, 206, 212, 219, 222, 223, 224, 225, 226, 227, 229, 230, 234], "durat": [3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 95, 188], "3000": [3, 6, 7, 9, 10, 13, 14, 15, 17, 18, 20, 21, 23, 24, 25, 26, 29, 30, 31], "animation_base_start_basic_usage_1": 3, "\u30b7\u30f3\u30d7\u30eb\u306b\u66f8\u304f\u305f\u3081\u306b\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3\u3092\u4f7f\u3046\u5f62\u3067\u3082\u66f8\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 3, "animation_base_start_basic_usage_2": 3, "\u73fe\u5728\u306e\u8a2d\u5b9a\u3092\u4f7f\u3063\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u958b\u59cb\u3057\u307e\u3059": 3, "\u8fd4\u5374\u5024": [3, 4, 5, 8, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 28, 29, 30, 31, 33, 37, 38, 40, 41, 42, 43, 46, 56, 57, 58, 61, 63, 66, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 130, 131, 132, 134, 135, 137, 138, 140, 141, 142, 143, 147, 150, 151, 155, 156, 157, 158, 160, 161, 162, 163, 165, 176, 180, 183, 184, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 222, 223, 224, 227, 229], "animatonbas": [3, 5], "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [3, 5], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f": [4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 186, 187, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 217, 218, 219, 220, 221, 222, 223, 224, 225, 227, 228, 229, 230, 231, 232, 233, 234, 235], "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [4, 42, 69, 70, 71, 72, 73, 75, 84, 90, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 126, 165, 218], "\u5c5e\u6027\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 4, "\u306a\u3069\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 4, "\u3092\u8fd4\u5374\u3057\u307e\u3059": [4, 42, 66, 84, 101, 109, 110, 151], "\u30af\u30e9\u30b9\u306e\u5404\u30b5\u30d6\u30af\u30e9\u30b9": 4, "animationmov": [4, 5, 8, 17, 22, 95], "\u30af\u30e9\u30b9\u306a\u3069": [4, 96], "\u306fgetter\u306e": 4, "\u5c5e\u6027\u3092\u6301\u3063\u3066\u3044\u307e\u3059": [4, 139, 160], "00aaff": [4, 8, 9, 16, 19, 21, 29, 30, 31, 57, 60, 62, 97, 113, 116, 127, 128, 129, 133, 136, 137, 140, 141, 159, 164, 177, 182, 184, 186, 206, 208, 209, 210, 211, 213, 214, 234], "assert": [4, 8, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 59, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 81, 83, 84, 85, 89, 108, 110, 147, 148, 149, 156, 157, 158, 176, 191, 192, 193, 195, 196, 205, 208, 209, 212, 217, 218, 219], "isinst": [4, 8, 33, 81, 84, 85, 89, 108, 110, 149, 193, 195], "\u30af\u30e9\u30b9\u3068\u305d\u306e\u5404\u30b5\u30d6\u30af\u30e9\u30b9\u306b\u306f\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 4, "\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u3057\u305f\u5834\u5408": 4, "\u5c5e\u6027\u306e\u578b\u306f\u305d\u306e\u578b\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u306a\u308a\u307e\u3059": 4, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u306f": [4, 8, 143], "\u3068\u3044\u3046\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 4, "\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e": 4, "animationev": [4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95, 146], "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3046\u3053\u3068\u3082\u6709\u76ca\u306a\u30b1\u30fc\u30b9\u304c\u3042\u308a\u307e\u3059": 4, "\u3053\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3082": 4, "\u5c5e\u6027": [4, 62, 68, 85, 146, 164], "\u306e\u578b\u306b\u5f71\u97ff\u3057\u307e\u3059": 4, "on_animation_complet": [4, 5, 8, 16], "anim": [4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 95], "its": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 32, 56, 95], "end": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 32, 46, 56, 95, 189, 200, 232], "animation_complet": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95, 146], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u307e\u3059": 4, "variablenamemixin": [4, 160], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 4, "\u30e1\u30bd\u30c3\u30c9\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u7d42\u4e86\u3057\u305f\u3068\u304d\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 5, "\u30cf\u30f3\u30c9\u30e9\u306e\u5f15\u6570\u306b\u306f\u7b2c\u4e00\u5f15\u6570\u306b\u30a4\u30d9\u30f3\u30c8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 5, "\u7b2c\u4e8c\u5f15\u6570\u306b\u306f\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3068\u306a\u308b\u8f9e\u66f8\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 5, "\u30e1\u30bd\u30c3\u30c9\u306f\u7b2c\u4e00\u5f15\u6570\u306b\u30cf\u30f3\u30c9\u30e9\u304c\u5fc5\u8981\u3068\u306a\u308a": 5, "\u7b2c\u4e8c\u5f15\u6570\u306b\u306f\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306e\u8f9e\u66f8\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 5, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u7528\u306b": 5, "\u30e1\u30bd\u30c3\u30c9\u3092\u8aad\u3093\u3067\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 5, "\u305d\u306e\u30cf\u30f3\u30c9\u30e9\u5185\u3067\u306fx\u5ea7\u6a19\u3092\u30ea\u30bb\u30c3\u30c8\u3059\u308b\u305f\u3081\u306e\u5225\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u958b\u59cb\u3057\u3066\u3044\u307e\u3059": 5, "on_animation_complete_1": [5, 6, 7, 9, 10, 12, 13, 14, 15, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95], "target": [5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95, 146, 205], "on_animation_complete_2": [5, 6, 7, 9, 10, 12, 13, 14, 15, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95], "animation_complete_basic_usag": 5, "\u30e1\u30bd\u30c3\u30c9\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u958b\u59cb\u524d\u306b\u306e\u307f\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 5, "\u30e1\u30bd\u30c3\u30c9\u547c\u3073\u51fa\u3057\u5f8c\u306b": 5, "\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3073\u51fa\u3059\u3068\u30a8\u30e9\u30fc\u306b\u306a\u308a\u307e\u3059": 5, "complet": [5, 8, 14, 16, 23, 221, 223, 225], "except": [5, 42, 67, 84, 96, 98], "interfac": [5, 33, 96, 98, 111, 120, 136, 142, 194], "can": [5, 18, 42, 67, 84, 96, 98, 139], "after": [5, 23, 67, 96, 98], "i": [5, 8, 14, 16, 18, 32, 33, 49, 54, 65, 67, 77, 82, 83, 96, 98, 100, 101, 102, 127, 141, 144, 153, 194, 227, 228, 232], "\u30e1\u30bd\u30c3\u30c9\u547c\u3073\u51fa\u3057\u524d\u306b": 5, "\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3073\u51fa\u3059\u3053\u3068\u3067\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u3059": 5, "callabl": [5, 56, 61, 79, 99, 161, 162, 163, 220, 221, 222, 224, 231], "forwardref": [5, 33, 37, 58, 81, 150, 192, 194, 198, 199, 200, 202, 204, 220, 221, 222, 224], "animation_ev": 5, "_option": [5, 61, 79, 99, 125, 161, 162, 163, 231, 234], "nonetyp": [5, 33, 46, 56, 60, 61, 79, 83, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 109, 141, 144, 152, 154, 161, 162, 163, 164, 166, 177, 178, 182, 183, 191, 198, 199, 200, 202, 206, 207, 220, 221, 222, 224, 229, 231], "union": [5, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 33, 37, 39, 40, 44, 46, 52, 53, 56, 58, 60, 61, 63, 68, 79, 81, 82, 83, 87, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 109, 110, 127, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 152, 154, 156, 157, 158, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 191, 192, 194, 198, 199, 200, 202, 204, 206, 207, 220, 221, 222, 224, 229], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u30ea\u30b9\u30ca\u30fc\u306e\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 5, "_handler": [5, 56, 61, 79, 161, 162, 163, 220, 221, 222, 224], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u306b\u5b9f\u884c\u3055\u308c\u308b\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9": 5, "default": [5, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 33, 46, 47, 54, 56, 58, 60, 61, 62, 63, 68, 74, 79, 81, 83, 92, 93, 96, 97, 98, 99, 109, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 141, 142, 144, 147, 151, 152, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 187, 190, 191, 192, 200, 205, 206, 220, 221, 222, 224, 229], "\u30cf\u30f3\u30c9\u30e9\u306b\u6e21\u3055\u308c\u308b\u7701\u7565\u304c\u53ef\u80fd\u306a\u8ffd\u52a0\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3068\u3057\u3066\u306e\u8f9e\u66f8": [5, 56, 61, 79, 161, 162, 163, 221], "\u30a8\u30e9\u30fc\u767a\u751f\u6761\u4ef6": [5, 18, 89, 191, 231], "\u3082\u3057\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u958b\u59cb\u5f8c\u306b\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u3066\u3044\u308b\u5834\u5408": 5, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u958b\u59cb\u524d\u306b\u306e\u307f\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 5, "\u95a2\u9023\u8cc7\u6599": [5, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 56, 58, 60, 62, 63, 68, 81, 97, 109, 140, 147, 152, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 182, 183, 191, 192, 207, 212, 217, 218, 219, 221, 224], "\u30cf\u30f3\u30c9\u30e9\u306eoptions\u5f15\u6570\u306e\u578b\u306b\u3064\u3044\u3066": [5, 56, 61, 79, 146, 161, 162, 163, 220, 221, 222, 224], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e": [6, 7], "\u306e\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 6, "\u306e\u8a2d\u5b9a\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u958b\u59cb\u524d\u306e\u9045\u5ef6\u6642\u9593\u3092\u5024\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 6, "\u305f\u3068\u3048\u3070": [6, 55, 227], "\u306e\u5f15\u6570\u306b3000\u3092\u6307\u5b9a\u3059\u308c\u3070\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306f3\u79d2\u5f8c\u306b\u958b\u59cb\u3057\u307e\u3059": 6, "\u306a\u3069\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u3053\u306e": [6, 7], "\u5f15\u6570\u3092\u6301\u3063\u3066\u3044\u307e\u3059": [6, 7, 56, 129, 191], "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u5404x\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u9593\u30672\u79d2\u306e\u9045\u5ef6\u8a2d\u5b9a": 6, "\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 6, "2\u79d2\u9593\u505c\u6b62\u3057\u3066\u304b\u3089\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u958b\u59cb\u3057\u307e\u3059": 6, "2000": [6, 11, 18], "eas": [6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 188], "ease_out_quint": [6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 95, 188], "300": [6, 11, 18, 71, 105, 135, 141, 142, 164, 179, 183, 191, 205, 208, 209, 210, 211, 212, 213, 214, 215, 216, 227], "400": [6, 7, 11, 12, 18, 23, 28, 129, 168, 170, 205, 213], "animation_delay_basic_usag": 6, "\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 7, "\u8a2d\u5b9a\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u958b\u59cb\u304b\u3089\u7d42\u4e86\u307e\u3067\u306b\u304b\u3051\u308b\u6642\u9593\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 7, "\u5358\u4f4d\u306f\u30df\u30ea\u79d2\u3067\u3059": 7, "\u5f15\u6570\u306b3000\u3092\u6307\u5b9a\u3057\u305f\u3089\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u5b8c\u4e86\u3059\u308b\u307e\u30673\u79d2\u5fc5\u8981\u3068\u3059\u308b\u8a2d\u5b9a\u306b\u306a\u308a\u307e\u3059": 7, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3067": 7, "\u306e\u8a2d\u5b9a\u306b3\u79d2\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 7, "500": [7, 12, 19, 21, 23, 28, 68, 71, 109, 191, 206, 234], "animation_duration_basic_usag": 7, "\u30af\u30e9\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [8, 33, 58, 60, 62, 65, 67, 68, 81, 85, 96, 97, 98, 101, 102, 103, 104, 105, 106, 111, 144, 152, 153, 164, 166, 167, 168, 169, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 186, 190, 191, 192, 206, 207, 217, 220, 223, 229], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306a\u3069\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u95a2\u9023\u306e\u30a4\u30d9\u30f3\u30c8\u3067": 8, "\u30af\u30e9\u30b9\u306f\u4f7f\u7528\u3055\u308c\u307e\u3059": 8, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3078\u3053\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u6e21\u3057\u307e\u3059": 8, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5b8c\u4e86\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3078": 8, "\u3068\u3044\u3046\u6307\u5b9a\u3067": 8, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5f15\u6570\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 8, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e": [8, 223], "\u5c5e\u6027\u306f": [8, 84, 90, 165], "\u7b49\u306e": 8, "\u30af\u30e9\u30b9\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306b\u306a\u308a\u307e\u3059": 8, "\u3053\u306e\u5c5e\u6027\u306e\u578b\u306f\u547c\u3093\u3060\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3088\u3063\u3066\u5909\u52d5\u3057\u307e\u3059": 8, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3042\u308c\u3070": 8, "\u5c5e\u6027\u306e\u578b\u306f": 8, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u306a\u308a\u307e\u3059": [8, 129, 133, 223], "\u30af\u30e9\u30b9\u306f\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 8, "\u3082\u3057\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u3057\u305f\u5834\u5408\u306b\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5bfe\u8c61\u306e\u5024\u3068\u306a\u308b": 8, "\u306a\u3069\u306e": [8, 17, 18, 26, 27, 30, 31, 62, 65, 105, 106, 127, 141, 160], "\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3063\u305f\u578b\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u306a\u308a\u307e\u3059": 8, "\u306e\u5024\u306b": 8, "\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3063\u3066\u304a\u308a": 8, "mypy\u3084pylance\u306a\u3069\u3067\u306e\u578b\u30c1\u30a7\u30c3\u30af\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3084\u30a8\u30c7\u30a3\u30bf\u306a\u3069\u3067\u306e\u6069\u6075\u3092\u53d7\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 8, "animation_bas": [8, 18], "_target": 8, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u30a4\u30d9\u30f3\u30c8\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 8, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u8a2d\u5b9a\u3092\u6271\u3046\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 8, "\u3053\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30ea\u30b9\u30ca\u30fc\u3068\u3057\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u307e\u3059": 8, "\u3053\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [8, 223], "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f": [9, 26, 27], "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u3067\u3042\u308a\u4e14\u3064\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u3092\u6271\u3046": 9, "animationfillalpha": 9, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 27, 29, 31], "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 9, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [9, 10, 11, 13, 14, 15, 17, 18, 20, 21, 23, 24, 25, 30, 31, 39, 48, 50, 93, 99, 102, 103, 104, 105, 130, 131, 132, 134, 136, 138, 144, 156, 157, 162, 194, 227], "circl": [9, 10, 12, 13, 14, 15, 20, 24, 25, 26, 27, 85, 101, 102, 103, 109, 113, 129, 146, 162, 167, 169, 170, 183, 205], "\u30af\u30e9\u30b9\u306a\u3069\u306e": [9, 10, 13, 14, 15, 20, 24, 25, 29, 56], "graphicsbas": [9, 10, 13, 14, 15, 20, 24, 25, 26, 27, 94, 205], "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u3067\u5b58\u5728\u3057\u307e\u3059": [9, 10, 13, 14, 15, 24, 25], "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f1": 9, "0\u306e\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092": 9, "\u30e1\u30bd\u30c3\u30c9\u3067\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": [9, 13], "animation_fill_alpha_basic_usag": 9, "_type": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 28, 29, 30, 31, 38, 39, 40, 44, 46, 52, 53, 58, 60, 63, 66, 68, 83, 87, 96, 97, 101, 102, 103, 104, 105, 106, 110, 123, 125, 127, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 156, 157, 158, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 189, 191, 206, 207, 217, 219, 220, 222, 224, 227, 229, 232], "_anim": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "linear": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "function": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 42, 84, 191], "return": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 33, 86, 111, 146, 159, 194], "\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 9, "\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 9, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5b8c\u4e86\u307e\u3067\u306e\u30df\u30ea\u79d2": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u958b\u59cb\u307e\u3067\u306e\u9045\u5ef6\u6642\u9593\u306e\u30df\u30ea\u79d2": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u30a4\u30fc\u30b8\u30f3\u30b0\u8a2d\u5b9a": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u751f\u6210\u3055\u308c\u305f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u958b\u59cb\u3059\u308b\u306b\u306f\u8fd4\u5374\u3055\u308c\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3073\u51fa\u3059\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 190], "draw_circl": [9, 12, 20, 30, 31, 85, 94, 111, 146, 162, 190, 234], "radiu": [9, 12, 20, 30, 31, 60, 85, 94, 101, 102, 103, 109, 113, 129, 162, 167, 169, 170, 183, 205, 234], "animation_i": [9, 12, 146, 188], "1500": [9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u6642\u9593": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u8a2d\u5b9a": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 94, 107, 146, 209, 220, 234], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8fd4\u5374\u5024": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u9023\u7d9a\u3057\u305f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 146], "animation_parallel": [9, 10, 13, 14, 15, 17, 20, 24, 25, 26, 29, 30, 31, 146, 188], "\u30a4\u30fc\u30b8\u30f3\u30b0\u306eenum": [9, 10, 12, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 146], "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [10, 13, 14, 15, 17, 18, 24, 25, 26, 27, 29, 30, 31], "animationfillcolor": 10, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u5857\u308a\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 10, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f": [10, 14, 17, 22, 29, 31, 48, 61, 74, 79, 95, 160, 161, 163, 169, 171, 174, 179, 222, 232, 233], "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u5857\u308a\u306e\u8272\u3092\u30b7\u30a2\u30f3": 10, "\u304b\u3089\u30de\u30bc\u30f3\u30bf": [10, 14], "f0a": [10, 12, 14, 18, 56, 60, 61, 67, 79, 88, 90, 92, 93, 97, 100, 111, 113, 116, 122, 124, 127, 134, 141, 142, 152, 159, 160, 161, 163, 167, 169, 170, 177, 182, 229, 231, 234], "\u3078\u3068\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3055\u305b\u3066\u3044\u307e\u3059": 10, "fill_color": [10, 12, 18, 56, 60, 61, 62, 63, 64, 65, 74, 79, 88, 94, 97, 99, 100, 101, 102, 103, 105, 106, 109, 111, 117, 118, 119, 120, 128, 129, 133, 136, 137, 140, 146, 153, 154, 159, 160, 161, 163, 164, 166, 167, 169, 170, 177, 178, 182, 183, 185, 186, 205, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 227, 229, 230, 231, 233, 234], "animation_fill_color_basic_usag": 10, "_color": [10, 14, 60, 97, 127, 141, 152, 154, 164, 166, 177, 178, 182, 191, 206, 207, 229], "\u5857\u308a\u306e\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 10, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u7684\u306a\u5857\u308a\u306e\u8272": 10, "\u9045\u5ef6\u6642\u9593": [10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u5b9f\u884c\u3055\u308c\u3066\u3044\u308b\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u5404\u5c5e\u6027\u306e\u6700\u7d42\u5024\u3092\u8a2d\u5b9a\u3057\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3055\u305b\u307e\u3059": 11, "\u306a\u3069\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3064\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u306b\u5b58\u5728\u3057\u307e\u3059": [11, 19, 21, 23], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u306b\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 11, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068x\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u958b\u59cb\u3059\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 11, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u958b\u59cb\u5f8c\u306b2\u79d2\u7d4c\u904e\u3057\u305f\u3089\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306f\u7d42\u4e86\u3057": 11, "\u6700\u7d42\u5024\u306e\u5ea7\u6a19\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 11, "on_click": [11, 21, 32, 61, 74, 80, 88, 91, 100, 113, 116, 117, 118, 119, 120, 128, 137, 140, 159, 162, 185, 186, 221, 234], "5000": [11, 23], "options_": [11, 21, 56, 221, 224, 226], "repeat_count": [11, 19, 21, 23, 56, 146, 220, 221, 222, 225, 226, 234], "animation_finish_basic_usag": 11, "\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059": 11, "\u5404\u5c5e\u6027\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u306e\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 11, "rectopt": [11, 19, 21, 23, 28, 86, 220, 221, 222, 223, 224, 225, 226], "750": [11, 19, 21, 23], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6982\u8981\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 12, "\u5ea7\u6a19\u5024\u3084\u56de\u8ee2\u91cf": 12, "\u8272\u3084\u900f\u660e\u5ea6": 12, "\u62e1\u7e2e\u5024\u306a\u3069\u306e\u5404\u5c5e\u6027\u306b\u5bfe\u3057\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 12, "\u4f55\u30df\u30ea\u79d2\u304b\u3051\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u304b\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 12, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u958b\u59cb\u524d\u306e\u9045\u5ef6\u6642\u9593\u3092\u30df\u30ea\u79d2\u5358\u4f4d\u3067\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 12, "ease_in_cub": [12, 95], "ease_in_out_bounc": [12, 95], "\u306a\u3069\u306e\u30a4\u30fc\u30b8\u30f3\u30b0\u306e\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 12, "\u4e00\u6642\u505c\u6b62": 12, "\u518d\u751f": 12, "\u30ea\u30bb\u30c3\u30c8": 12, "\u7d42\u4e86": 12, "\u9006\u518d\u751f": [12, 23], "\u7d4c\u904e\u6642\u9593\u53d6\u5f97\u306a\u3069\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u95a2\u4fc2\u306e\u5236\u5fa1\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 12, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u4e26\u5217\u5b9f\u884c\u3084\u76f4\u5217\u5b9f\u884c\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 12, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 12, "\u3053\u306e\u7bc0\u3067\u306f\u5404\u5c5e\u6027\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u4f8b\u3092\u8868\u793a\u3057\u307e\u3059": 12, "\u30b3\u30fc\u30c9\u30d6\u30ed\u30c3\u30af\u3092\u8868\u793a": [12, 65, 86, 95, 153, 234], "550": [12, 234], "line_styl": [12, 13, 14, 15, 17, 18, 86, 94, 111, 115, 116, 117, 118, 119, 120, 121, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 146, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 190, 234], "fff": [12, 13, 14, 15, 17, 18, 65, 86, 94, 111, 115, 117, 118, 119, 120, 121, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 141, 142, 153, 167, 168, 169, 170, 171, 172, 173, 174, 175, 178, 179, 229], "thick": [12, 13, 14, 15, 17, 18, 86, 94, 111, 115, 116, 117, 118, 119, 120, 121, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 141, 142, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 234], "on_x_animation_complete_1": 12, "on_x_animation_complete_2": 12, "on_y_animation_complete_1": 12, "on_y_animation_complete_2": 12, "on_cx_animation_complete_1": 12, "center": [12, 30, 206, 208, 209], "275": [12, 101, 102, 103, 141, 234], "on_cx_animation_complete_2": 12, "325": [12, 133], "75": [12, 60, 94, 97, 101, 102, 103, 113, 114, 125, 127, 136, 140, 141, 167, 171, 176, 177, 183, 229, 234], "25": [12, 65, 94, 101, 102, 103, 107, 112, 114, 115, 124, 129, 136, 140, 147, 153, 155, 164, 167, 168, 169, 170, 176, 183, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 234], "on_cy_animation_complete_1": 12, "on_cy_animation_complete_2": 12, "375": [12, 170, 234], "on_move_animation_complete_1": 12, "move": [12, 142, 190], "450": [12, 110, 127, 165, 234], "on_move_animation_complete_2": 12, "on_width_animation_complete_1": 12, "animation_width": [12, 146], "on_width_animation_complete_2": 12, "on_height_animation_complete_1": 12, "animation_height": [12, 146], "on_height_animation_complete_2": 12, "on_ellipse_width_animation_complete_1": 12, "ellips": [12, 133, 139, 146], "on_ellipse_width_animation_complete_2": 12, "draw_ellips": [12, 29, 94, 111, 146, 234], "175": [12, 94, 101, 102, 103, 136, 141, 169, 170, 171], "on_ellipse_height_animation_complete_1": 12, "on_ellipse_height_animation_complete_2": 12, "on_fill_color_animation_complete_1": 12, "fill": [12, 111, 122, 127, 133, 141, 163, 233], "animation_fill_color": [12, 18, 146], "on_fill_color_animation_complete_2": 12, "on_fill_alpha_animation_complete_1": 12, "animation_fill_alpha": [12, 18, 146], "on_fill_alpha_animation_complete_2": 12, "on_line_color_animation_complete_1": 12, "line": [12, 86, 111, 117, 118, 119, 120, 121, 129, 130, 131, 132, 133, 136, 138, 141, 142, 146, 191, 206, 233], "animation_line_color": [12, 146], "line_color": [12, 14, 60, 62, 64, 65, 94, 97, 109, 117, 118, 119, 120, 130, 131, 132, 134, 138, 142, 146, 152, 153, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 182, 183, 206, 207, 229], "on_line_color_animation_complete_2": 12, "666": [12, 117, 118, 119, 120, 206], "on_line_alpha_animation_complete_1": 12, "animation_line_alpha": [12, 146], "on_line_alpha_animation_complete_2": 12, "on_line_thickness_animation_complete_1": 12, "animation_line_thick": [12, 18, 146], "on_line_thickness_animation_complete_2": 12, "350": [12, 63, 65, 95, 101, 102, 103, 107, 109, 112, 115, 124, 125, 127, 129, 139, 141, 153, 168, 170, 183, 208, 209, 210, 211, 213, 214, 220, 222], "on_radius_animation_complete_1": 12, "animation_radiu": [12, 146], "on_radius_animation_complete_2": 12, "475": [12, 234], "on_rotation_around_center_animation_complete_1": 12, "rotat": [12, 60, 97, 122, 123, 152, 166, 177, 178, 182, 206, 229], "around": 12, "animation_rotation_around_cent": [12, 146], "rotation_around_cent": [12, 24, 56, 60, 86, 97, 99, 107, 146, 152, 166, 177, 178, 182, 206, 221, 222, 223, 225, 229, 231, 234], "on_rotation_around_center_animation_complete_2": 12, "90": [12, 24, 25, 56, 141, 221, 225], "on_rotation_around_point_animation_complete_1": 12, "specifi": [12, 82, 96, 127, 141], "animation_rotation_around_point": [12, 146], "rotation_around_point": [12, 25, 86, 146], "on_rotation_around_point_animation_complete_2": 12, "on_scale_x_from_center_animation_complete_1": 12, "scale": [12, 26, 60, 97, 152, 166, 177, 178, 182, 206, 229], "animation_scale_x_from_cent": [12, 146], "scale_x_from_cent": [12, 26, 27, 60, 86, 97, 125, 146, 152, 166, 177, 178, 182, 206, 229], "on_scale_x_from_center_animation_complete_2": 12, "on_scale_y_from_center_animation_1": 12, "animation_scale_y_from_cent": [12, 146], "scale_y_from_cent": [12, 26, 27, 60, 86, 97, 125, 146, 152, 166, 177, 178, 182, 229], "on_scale_y_from_center_animation_2": 12, "on_scale_x_from_point_animation_complete_1": 12, "animation_scale_x_from_point": [12, 146], "scale_x_from_point": [12, 27], "on_scale_x_from_point_animation_complete_2": 12, "on_scale_y_from_point_animation_complete_1": 12, "animation_scale_y_from_point": [12, 146], "scale_y_from_point": [12, 27], "on_scale_y_from_point_animation_complete_2": 12, "animation_interfaces_abstract_each_attr": 12, "\u30a4\u30fc\u30b8\u30f3\u30b0\u8a2d\u5b9a\u306f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e": 12, "\u5f15\u6570\u3067\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [12, 141, 191], "\u8a73\u7d30\u306f\u4ee5\u4e0b\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044": 12, "easingopt": 12, "ease_in_quint": [12, 95], "ease_in_out_quint": [12, 95], "animation_interfaces_abstract_eas": 12, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_x": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306fy\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_i": 12, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fx\u5ea7\u6a19\u3068y\u5ea7\u6a19\u4e21\u65b9\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "x\u3068y\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "animation_interfaces_abstract_mov": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_width": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u9ad8\u3055\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_height": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5857\u308a\u306e\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_fill_color": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_fill_alpha": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u7dda\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_line_color": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u7dda\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_line_alpha": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u7dda\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_line_thick": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5186\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306a\u3069\u306e\u534a\u5f84\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_radiu": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "\u4e2d\u592e\u5ea7\u6a19\u3067\u306e\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "animation_interfaces_abstract_rotation_around_cent": 12, "animation_interfaces_abstract_rotation_around_point": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "animation_interfaces_abstract_scale_x_from_cent": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_scale_y_from_cent": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "animation_interfaces_abstract_scale_x_from_point": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_scale_y_from_point": 12, "animationlinealpha": 13, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u7dda\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 13, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f1": [13, 15], "0\u306e\u7dda\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092": 13, "eee": [13, 15, 234], "animation_line_alpha_basic_usag": 13, "\u7dda\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 13, "\u7dda\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 13, "\u30af\u30e9\u30b9\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u3067\u3042\u308a\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u5236\u5fa1\u3059\u308b\u305f\u3081\u306e": 14, "animationlinecolor": 14, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u7dda\u8272\u306b\u5bfe\u3059\u308b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 14, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u7dda\u306e\u8272\u3092\u30b7\u30a2\u30f3": 14, "\u306b\u5909\u5316\u3059\u308b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 14, "animation_line_color_basic_usag": 14, "\u7dda\u306e\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 14, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u7684\u306a\u7dda\u306e\u8272": 14, "animationlinethick": 15, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u7528\u3057\u3066\u7dda\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 15, "10\u306e\u7dda\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092": 15, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": [15, 20, 24], "10": [15, 33, 35, 41, 49, 50, 51, 52, 53, 54, 55, 59, 60, 61, 65, 68, 69, 70, 77, 80, 81, 82, 83, 84, 91, 96, 98, 108, 109, 111, 117, 118, 119, 120, 121, 130, 131, 133, 138, 139, 141, 144, 145, 147, 148, 149, 150, 152, 153, 155, 156, 157, 158, 166, 169, 170, 176, 180, 182, 183, 189, 207, 218, 227, 228, 230, 232, 233], "animation_line_thickness_basic_usag": 15, "\u7dda\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 15, "\u7dda\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 15, "6": [15, 33, 36, 37, 48, 60, 77, 97, 130, 138, 141, 152, 158, 166, 178, 180, 182, 196, 217, 219, 220, 223, 229, 234], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 16, "\u30e1\u30bd\u30c3\u30c9\u306a\u3069\u306e": 16, "\u30af\u30e9\u30b9\u306b\u7d61\u3093\u3060\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u81ea\u8eab\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 16, "\u305d\u308c\u3092\u5229\u7528\u3057\u3066\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 16, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u5229\u7528\u3057\u3066\u3044\u307e\u3059": 16, "animation_method_chaining_basic_usage_1": 16, "\u3053\u308c\u3089\u306e\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3\u306e\u8a18\u8ff0\u306f\u30b3\u30fc\u30c9\u306e\u8a18\u8ff0\u3092\u30b7\u30f3\u30d7\u30eb\u306b\u3057\u305f\u3044\u969b\u306b\u5f79\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 16, "\u3082\u3057d3": 16, "js\u306a\u3069\u3067\u306ejavascript\u3067\u306e\u8a18\u8ff0\u306b\u8fd1\u3044\u5f62\u3067\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3\u3092\u4f7f\u3044\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u884c\u672b\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u3067\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 16, "animation_method_chaining_basic_usage_2": 16, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066x\u3068y\u5ea7\u6a19\u306b\u5bfe\u3057\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 17, "\u306e\u5404\u30b5\u30d6\u30af\u30e9\u30b9\u306b\u5b58\u5728\u3057\u307e\u3059": [17, 18, 30, 31], "\u306e\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066x": 17, "50\u306e\u5ea7\u6a19\u304b\u3089x": 17, "100\u306e\u5ea7\u6a19\u3078\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 17, "animation_move_basic_usag": 17, "x\u3068y\u5ea7\u6a19\u306b\u5bfe\u3059\u308b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 17, "\u6700\u7d42\u7684\u306ax\u5ea7\u6a19": [17, 30], "\u6700\u7d42\u7684\u306ay\u5ea7\u6a19": [17, 31], "animationparallel": 18, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3046\u3053\u3068\u3067\u8907\u6570\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u540c\u6642\u5b9f\u884c\u306e\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 18, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 18, "\u5f15\u6570\u306e\u5024\u306f\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u8a2d\u5b9a\u5024\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 18, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fx\u5ea7\u6a19": 18, "\u5857\u308a\u306e\u900f\u660e\u5ea6": [18, 94, 127], "\u5857\u308a\u306e\u8272": 18, "\u305d\u3057\u3066\u7dda\u306e\u5e45\u306b\u5bfe\u3059\u308b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u3066\u3044\u307e\u3059": 18, "3": [18, 23, 33, 34, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 60, 62, 64, 65, 67, 77, 97, 117, 118, 119, 120, 124, 129, 130, 133, 135, 136, 138, 141, 147, 148, 152, 153, 154, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 180, 182, 193, 194, 196, 200, 204, 205, 206, 207, 221, 222, 223, 224, 225, 226, 229, 234], "7": [18, 33, 140, 158, 166, 182, 217, 218, 219, 229], "animation_parallel_basic_usag": 18, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3054\u3068\u306e": 18, "\u306e\u5f15\u6570\u8a2d\u5b9a\u306f": 18, "\u30e1\u30bd\u30c3\u30c9\u5074\u306e\u5024\u304c\u4f7f\u7528\u3055\u308c\u308b\u305f\u3081\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093": 18, "\u3082\u3057\u4f55\u3089\u304b\u306e\u5024\u3092\u8a2d\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 18, "valueerror": [18, 89, 96, 98], "There": 18, "an": [18, 33, 74, 96, 99, 205, 231], "chang": [18, 136, 141, 142, 160, 163], "set": [18, 122, 127, 129, 130, 131, 132, 133, 136, 138, 139, 141, 205], "list": [18, 33, 37, 48, 65, 135, 136, 153, 166, 177, 178, 206, 207, 228, 235], "\u4e26\u5217\u5b9f\u884c\u3055\u308c\u308b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 18, "\u5bfe\u8c61\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u8a2d\u5b9a": 18, "\u3082\u3057\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u306f\u7121\u3044\u5834\u5408": 18, "\u5f15\u6570\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306ederation\u3084delai": 18, "easing\u306e\u8a2d\u5b9a\u304c\u5909\u66f4\u53bb\u308c\u3066\u3044\u308b\u5834\u5408": 18, "\u5f15\u6570\u306e\u5024\u306b\u306f": 18, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u542b\u3081\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093": 18, "\u5f15\u6570\u5185\u306e\u5024\u306edurat": 18, "easing\u306e\u5404\u5f15\u6570\u306e\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": 18, "\u4ee3\u308f\u308a\u306b\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u81ea\u8eab\u306e\u305d\u308c\u3089\u306e\u5f15\u6570\u306e\u8a2d\u5b9a\u3092\u5229\u7528\u3057\u3066\u304f\u3060\u3055\u3044": 18, "\u306e\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 19, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u52d5\u3044\u3066\u3044\u308b\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u505c\u6b62\u3057\u307e\u3059": 19, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u505c\u6b62\u3057\u3066\u3044\u308b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u518d\u958b\u3057\u307e\u3059": 19, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [19, 26, 27, 88, 161], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u30b9\u30bf\u30fc\u30c8\u3057": 19, "\u305d\u306e1\u79d2\u5f8c\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u505c\u6b62\u3057\u3066\u3044\u307e\u3059": 19, "\u52a0\u3048\u3066": [19, 22, 87, 130, 131, 136, 231], "\u505c\u6b62\u3057\u3066\u304b\u3089\u3055\u3089\u306b500\u30df\u30ea\u79d2\u7d4c\u904e\u3057\u305f\u6642\u70b9\u3067\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u518d\u958b\u3057\u3066\u3044\u307e\u3059": 19, "on_timer_1": [19, 23], "on_timer_2": [19, 23], "600": [19, 21, 183, 234], "15_000": 19, "animation_pause_basic_usag": 19, "\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u505c\u6b62\u3057\u307e\u3059": 19, "\u505c\u6b62\u3057\u3066\u3044\u308b\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u518d\u958b\u3057\u307e\u3059": 19, "\u30e1\u30bd\u30c3\u30c9\u306f": [20, 38, 39, 46, 83, 87, 100, 123, 125, 150, 151, 155, 183, 200, 204], "animationradiu": 20, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u534a\u5f84\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 20, "\u306e\u5404\u30b5\u30d6\u30af\u30e9\u30b9\u4e0a\u306b\u5b58\u5728\u3057\u307e\u3059": [20, 27, 29], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f50\u304b\u3089100\u306e\u534a\u5f84\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092": 20, "animation_radius_basic_usag": 20, "\u534a\u5f84\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 20, "\u534a\u5f84\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 20, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30ea\u30bb\u30c3\u30c8\u3068\u505c\u6b62\u3092\u884c\u3044\u307e\u3059": 21, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u306b\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057": 21, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306bx\u5ea7\u6a19\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u30b9\u30bf\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u3057\u3066\u3042\u308a\u307e\u3059": 21, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u30b9\u30bf\u30fc\u30c8\u3057\u3066\u304b\u30891\u79d2\u7d4c\u904e\u3057\u305f\u6642\u70b9\u3067": 21, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3088\u3063\u3066x\u5ea7\u6a19\u306e\u30ea\u30bb\u30c3\u30c8\u304c\u5b9f\u884c\u3055\u308c\u3066\u3044\u307e\u3059": 21, "animation_reset_basic_usag": 21, "\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u505c\u6b62\u3057\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5185\u5bb9\u3092\u30ea\u30bb\u30c3\u30c8\u3057\u307e\u3059": 21, "\u306a\u3069\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8fd4\u5374\u5024\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 22, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 22, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 22, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3042\u308c\u3070": 22, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057": 22, "\u3067\u3042\u308c\u3070": [22, 54, 155], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": [22, 29, 31, 74, 109, 134, 136, 139, 140, 142], "\u30af\u30e9\u30b9\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u958b\u59cb\u7528\u306e": 22, "\u30e1\u30bd\u30c3\u30c9\u3084\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u767b\u9332\u7528\u306e": 22, "\u30e1\u30bd\u30c3\u30c9\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u5171\u901a\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 22, "\u8fd4\u5374\u3055\u308c\u305f\u5404\u5024\u306e\u30af\u30e9\u30b9\u306fapysc\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u542b\u307e\u308c\u3066\u3044\u307e\u3059": 22, "\u305d\u306e\u305f\u3081\u305d\u308c\u3089\u3092\u4f7f\u7528\u3057\u3066\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 22, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u7528\u3057\u3066\u304a\u308a": 22, "\u8fd4\u5374\u5024\u3068\u3057\u3066": 22, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d7\u3051\u53d6\u3063\u3066\u3044\u307e\u3059": 22, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53c2\u7167\u3057\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5b8c\u4e86\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057\u305f\u308a\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u958b\u59cb\u3057\u305f\u308a\u7b49\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 22, "animation_return_value_basic_usag": 22, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u52d5\u3044\u3066\u3044\u308b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u518d\u751f\u3092\u53cd\u8ee2": 23, "\u3057\u307e\u3059": [23, 187, 200], "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057": 23, "1\u79d2\u3054\u3068\u306e\u9593\u9694\u3067": 23, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u53cd\u8ee2": 23, "\u9006\u4f5c\u6210": 23, "\u3057\u3066\u3044\u307e\u3059": 23, "second": [23, 68, 90, 99, 107, 127, 142, 146, 222, 225, 229], "everi": [23, 222], "animation_reverse_basic_usag": 23, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u52d5\u3044\u3066\u3044\u308b\u9593\u306e\u307f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 23, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u7d42\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067\u547c\u3073\u51fa\u3057\u3066\u3082\u4f55\u3082\u767a\u751f\u305b\u305a\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u7d42\u4e86\u3057\u305f\u72b6\u614b\u306e\u307e\u307e\u3068\u306a\u308a\u307e\u3059": 23, "noth": [23, 89], "happen": 23, "sinc": [23, 33, 127], "ha": 23, "alreadi": 23, "been": 23, "animation_reverse_not": 23, "\u52d5\u3044\u3066\u3044\u308b\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u53cd\u8ee2": 23, "\u8907\u6570\u56de\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u305f\u969b\u306a\u3069\u306b": 23, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u521d\u3082\u3057\u304f\u306f\u6700\u5f8c\u306b\u5230\u9054\u3057\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u505c\u6b62\u3057\u305f\u5834\u5408": 23, "\u305d\u306e\u5f8c\u306b\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u3066\u3082\u53cd\u8ee2": 23, "\u306f\u3055\u308c\u305a\u306b\u505c\u6b62\u3057\u305f\u307e\u307e\u3068\u306a\u308a\u307e\u3059": 23, "\u305d\u306e\u305f\u3081\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u6642\u9593\u3068\u540c\u3058\u6642\u9593\u306e\u30bf\u30a4\u30de\u30fc\u306a\u3069\u3067\u53cd\u8ee2\u306e\u6307\u5b9a\u3057\u305f\u5834\u5408\u306a\u3069\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093": 23, "animationrotationaroundcent": 24, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u7528\u3057\u3066\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3067\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 24, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f0\u5ea6\u304b\u308990\u5ea6\u306e\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092": 24, "animation_rotation_around_center_basic_usag": 24, "\u4e2d\u592e\u5ea7\u6a19\u3092\u4f7f\u7528\u3057\u305f\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 24, "\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u56de\u8ee2\u91cf\u306e\u6700\u7d42\u5024": [24, 25], "animationrotationaroundpoint": 25, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u4efb\u610f\u306e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 25, "\u30e1\u30bd\u30c3\u30c9\u306f\u56de\u8ee2\u89d2\u5ea6\u306erotat": 25, "\u56de\u8ee2\u306e\u57fa\u6e96\u5ea7\u6a19\u3068\u306a\u308bx\u3068y\u306e\u5404\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 25, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fx": [25, 172, 173], "100\u306e\u5ea7\u6a19": 25, "\u56db\u89d2\u306e\u53f3\u4e0b\u306e\u4f4d\u7f6e": 25, "\u3092\u57fa\u6e96\u306b0\u5ea6\u304b\u308990\u5ea6\u306e\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 25, "animation_rotation_around_point_basic_usag": 25, "\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 25, "x\u5ea7\u6a19": [25, 91, 123, 125, 160, 164, 176], "y\u5ea7\u6a19": [25, 91, 123, 125, 160, 164, 176], "\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [26, 29, 34, 37, 39, 44, 100, 125, 142, 226, 231], "animationscalexfromcent": 26, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305fx\u8ef8\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 26, "\u540c\u69d8\u306b": [26, 29, 56, 60, 97, 105, 125, 149, 152, 155, 166, 167, 169, 177, 178, 182, 200, 206, 222, 229], "animationscaleyfromcent": 26, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066y\u8ef8\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 26, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3064": [26, 27], "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u4e0a\u306b\u5b58\u5728\u3057\u307e\u3059": 26, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fx\u8ef8\u65b9\u5411\u306e\u62e1\u7e2e": 26, "0\u304b\u30892": [26, 27], "\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092": 26, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u5de6\u5074\u306e\u56db\u89d2\u306b\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 26, "\u540c\u69d8\u306by\u8ef8\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u53f3\u5074\u306e\u56db\u89d2\u306b\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 26, "enum": [26, 27, 99, 146, 220, 222, 224, 234], "direct": [26, 27, 60, 86, 97, 124, 125, 152, 166, 177, 178, 182, 206, 229], "2": [26, 27, 33, 34, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 60, 65, 67, 69, 77, 82, 84, 86, 97, 101, 116, 117, 118, 124, 125, 127, 130, 131, 132, 140, 141, 148, 150, 152, 153, 154, 165, 166, 177, 178, 180, 182, 189, 191, 200, 205, 206, 215, 217, 218, 219, 229, 234], "elif": [26, 27, 59, 98, 124, 144, 146, 234], "left_rectangl": [26, 27, 62, 124, 126, 231], "right_rectangl": [26, 27, 62, 124, 126, 231], "animation_scale_x_and_y_from_center_basic_usag": 26, "\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305fx\u8ef8\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 26, "x\u8ef8\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 26, "\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305fy\u8ef8\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 26, "y\u8ef8\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 26, "\u306e\u5404\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [27, 123], "animationscalexfrompoint": 27, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305fx\u8ef8\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 27, "\u540c\u3058\u3088\u3046\u306b": [27, 82, 107], "animationscaleyfrompoint": 27, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066y\u8ef8\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 27, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fx\u8ef8\u306e\u62e1\u7e2e": 27, "\u3092\u5de6\u5074\u306e\u56db\u89d2\u3078": 27, "\u305d\u3057\u3066y\u8ef8\u306e\u62e1\u7e2e\u3092\u53f3\u5074\u306e\u56db\u89d2\u3078\u3068\u305d\u308c\u305e\u308c": 27, "\u306e\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 27, "\u3053\u308c\u3089\u306e\u8a2d\u5b9a\u306f\u5de6\u5074\u306e\u56db\u89d2\u3067\u306f\u5de6\u7aef": 27, "\u306e\u5ea7\u6a19\u3067": 27, "\u53f3\u5074\u306e\u56db\u89d2\u3067\u306f\u4e0b\u7aef": 27, "\u306e\u4f4d\u7f6e\u3092\u57fa\u6e96\u306b\u62e1\u7e2e\u306e\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 27, "left_rectangle_x": 27, "right_rectangle_i": 27, "scale_1": 27, "scale_2": 27, "animation_scale_x_and_y_from_point_basic_usag": 27, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u73fe\u5728\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u7d4c\u904e\u6642\u9593\u3092\u30df\u30ea\u79d2\u3067\u8fd4\u5374\u3057\u307e\u3059": 28, "\u578b\u306e\u5024\u3067\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 28, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u306b\u5bfe\u3057\u3066x\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057": 28, "1\u79d2\u3054\u3068\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u7d4c\u904e\u6642\u9593\u3092\u30b3\u30f3\u30bd\u30fc\u30eb\u306b\u51fa\u529b\u3057\u3066\u3044\u307e\u3059": 28, "\u51fa\u529b\u5185\u5bb9\u306ff12\u30ad\u30fc\u3092\u62bc\u3057\u3066\u30d6\u30e9\u30a6\u30b6\u3067\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044": 28, "elaps": 28, "time": [28, 206, 207, 221], "10000": 28, "animation_time_basic_usag": 28, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u7d4c\u904e\u6642\u9593\u306e\u30df\u30ea\u79d2\u3092\u53d6\u5f97\u3057\u307e\u3059": 28, "elapsed_tim": 28, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u7d4c\u904e\u6642\u9593\u306e\u30df\u30ea\u79d2": 28, "fp": [28, 56, 60, 86, 97, 99, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 220, 221, 222, 223, 224, 225, 231, 234], "fps_60": [28, 56, 60, 86, 97, 99, 107, 123, 124, 125, 126, 152, 166, 177, 178, 182, 220, 221, 222, 223, 224, 225, 234], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [29, 30, 51, 52, 56, 61, 79, 99, 122, 129, 133, 134, 135, 136, 137, 139, 140, 142, 157, 158, 161, 176, 231], "animationwidth": 29, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 29, "animationheight": 29, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u9ad8\u3055\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 29, "\u3053\u308c\u3089\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 29, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u5e45": 29, "50\u304b\u3089100": [29, 30, 31], "\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": [29, 30, 31], "animation_width_basic_usag": 29, "\u540c\u69d8\u306b\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f": 29, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u9ad8\u3055\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 29, "animation_height_basic_usag": 29, "\u6955\u5186\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 29, "\u30af\u30e9\u30b9": [29, 30, 59, 63, 86, 94, 99, 109, 114, 122, 123, 124, 125, 126, 135, 140, 179, 190, 212, 218, 219, 222, 224, 234], "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5185\u90e8\u5b9f\u884c\u304c\u7570\u306a\u308b\u90fd\u5408\u3067": 29, "\u30af\u30e9\u30b9\u306a\u3069\u306e\u4ee3\u308f\u308a\u306b": 29, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306banimationwidthforellips": 29, "\u30af\u30e9\u30b9\u3068": [29, 96, 98], "animationheightforellips": 29, "animationwidthforellips": 29, "\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 29, "\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 29, "\u9ad8\u3055\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 29, "\u9ad8\u3055\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 29, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": [30, 191, 207], "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066x\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 30, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f": [30, 41, 50, 57, 64, 95, 140, 185, 231], "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066x\u5ea7\u6a19": 30, "animation_x_basic_usag": 30, "\u5185\u90e8\u5b9f\u88c5\u304c\u7570\u306a\u308b\u305f\u3081": 30, "\u306e\u5404\u30af\u30e9\u30b9\u306e": [30, 31], "\u306e\u4ee3\u308f\u308a\u306b": 30, "animationcx": 30, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": [30, 74], "animation_cx": 30, "x\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 30, "animationi": 31, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066y\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 31, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066y\u5ea7\u6a19": 31, "animation_y_basic_usag": 31, "\u5185\u90e8\u306e\u5b9f\u88c5\u304c\u7570\u306a\u308b\u90fd\u5408\u3067": 31, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [31, 53], "\u30af\u30e9\u30b9\u306e\u4ee3\u308f\u308a\u306b": 31, "animationci": 31, "animation_ci": 31, "y\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 31, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [32, 80, 92, 93, 187, 189, 228, 232], "\u95a2\u6570\u306f\u51fa\u529b\u5148\u306ehtml\u306e\u4efb\u610f\u306e\u5834\u6240\u306bjavascript\u306e\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u307e\u3059": 32, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fapysc\u304c\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u306a\u3044\u7279\u6b8a\u306a\u51e6\u7406\u306a\u3069\u3092\u8ffd\u52a0\u3059\u308b\u969b\u306a\u3069\u306b\u5f79\u306b\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 32, "django\u306a\u3069\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30bf\u30b0\u306a\u3069\u3092\u72ec\u81ea\u306e\u51fa\u529b\u3057\u305f\u3044\u5834\u5408\u306a\u3069": 32, "\u95a2\u6570\u306f\u5f15\u6570\u306bjavascript\u306e\u30b3\u30fc\u30c9\u306e\u6587\u5b57\u5217\u304c\u5fc5\u8981\u3068\u3057\u307e\u3059": 32, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306e\u30cf\u30f3\u30c9\u30e9\u5185\u3067": 32, "consol": [32, 228, 233], "log": [32, 228, 233], "\u306ejavascript\u306e\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059": 32, "express": [32, 49, 82, 96], "append_js_expression_basic_usag": 32, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068": 32, "\u3068\u3044\u3046\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u306b\u8868\u793a\u3055\u308c\u307e\u3059": 32, "f12\u30ad\u30fc\u3092\u62bc\u3057\u3066\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044": 32, "javascript\u306e\u30b3\u30fc\u30c9\u306e\u8ffd\u52a0\u3092\u884c\u3044\u307e\u3059": 32, "\u8ffd\u52a0\u5bfe\u8c61\u306ejavascript\u306e\u30b3\u30fc\u30c9\u306e\u6587\u5b57\u5217": 32, "\u4e8b\u524d\u306b\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u3092\u78ba\u8a8d\u3057\u3066\u304a\u304f\u3068\u8aad\u307f\u9032\u3081\u308b\u4e0a\u3067\u5f79\u306b\u7acb\u3064\u304b\u3082\u3057\u308c\u307e\u305b\u3093": [33, 58, 81, 147, 192], "\u306a\u305capysc\u3067\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30c7\u30fc\u30bf\u306e\u578b\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u306e\u304b": [33, 58, 67, 81, 96, 98, 101, 102, 103, 104, 105, 106, 144, 147, 186, 192], "\u30af\u30e9\u30b9\u306fapysc\u306e\u914d\u5217\u306e\u30af\u30e9\u30b9\u3067\u3059": 33, "\u3053\u306e\u30af\u30e9\u30b9\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": [33, 98, 144], "\u306e\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 33, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u306f": [33, 60, 97, 152, 167, 169, 170, 173, 175, 176, 177, 182, 229], "tupl": [33, 37, 65, 153], "rang": [33, 37, 67, 146], "\u306a\u3069\u306e\u30a4\u30c6\u30e9\u30d6\u30eb\u306a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5f15\u6570\u306b\u5fc5\u8981\u3068\u306a\u308a\u307e\u3059": 33, "arr_from_list": 33, "arr_from_tupl": 33, "4": [33, 34, 36, 37, 39, 42, 46, 47, 48, 77, 117, 118, 141, 148, 166, 177, 180, 194, 200], "other_arr": [33, 36, 37], "8": [33, 60, 97, 141, 147, 156, 157, 158, 177, 180], "9": [33, 52, 53, 149, 156, 157], "arr_from_arr": 33, "\u30af\u30e9\u30b9\u306e\u5024\u306e\u578b\u304c\u4e00\u610f\u306a\u5834\u5408\u306f\u914d\u5217\u306b\u5bfe\u3057\u3066\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u306e\u6307\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 33, "\u3053\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306fide\u4e0a\u306a\u3069\u3067\u4fbf\u5229\u306a\u30b1\u30fc\u30b9\u304c\u3042\u308a\u307e\u3059": 33, "\u578b\u30c1\u30a7\u30c3\u30af\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306a\u3069\u3092\u4f7f\u3046\u5834\u5408\u306b": 33, "arr": [33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 67, 101, 102, 103, 156, 157, 180], "int_val": [33, 49, 54, 80, 98, 144, 147, 189, 228, 232, 233], "pop": [33, 146], "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e": [33, 41, 167, 168, 169, 170, 172, 173, 174, 175], "\u5f15\u6570\u306f\u7701\u7565\u53ef\u80fd\u306a\u5f15\u6570\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 33, "\u3082\u3057\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": [33, 144], "__getitem__": 33, "\u30e1\u30bd\u30c3\u30c9": [33, 86, 89, 137, 146], "\u306a\u3069\u306e\u914d\u5217\u306e\u6dfb\u3048\u5b57\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u8a72\u5f53\u3057\u307e\u3059": 33, "\u306a\u3069\u306e\u914d\u5217\u306e\u5024\u306b\u95a2\u4fc2\u3057\u305f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u6307\u5b9a\u3055\u308c\u305f\u578b\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3059\u308b\u30b1\u30fc\u30b9\u304c\u767a\u751f\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 33, "\u3053\u306e\u8fd4\u5374\u51e6\u7406\u306fpython\u30e9\u30f3\u30bf\u30a4\u30e0\u4e0a\u3067\u914d\u5217\u306e\u6dfb\u3048\u5b57\u304c\u914d\u5217\u306e\u9577\u3055\u3092\u8d8a\u3048\u308b\u5834\u5408\u306a\u3069\u306b\u767a\u751f\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 33, "index": [33, 38, 39, 44, 92, 93, 110, 179, 187, 191], "out": [33, 163], "bound": 33, "python": 33, "runtim": 33, "int_valu": [33, 151, 227], "\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u306e\u5171\u901a\u306e": [33, 147], "append": [33, 41, 65, 101, 104, 122, 136, 146, 153], "push": [33, 146, 232], "extend": [33, 146], "concat": [33, 146], "insert": [33, 96, 146], "insert_at": [33, 146], "remov": [33, 66, 89, 146], "remove_at": [33, 146], "sort": [33, 45, 146], "revers": [33, 47, 146], "slice": [33, 146], "length": [33, 141, 146], "\u914d\u5217\u306e\u9577\u3055\u53d6\u5f97": 33, "join": [33, 146], "\u5024\u306e\u9023\u7d50\u6587\u5b57\u5217\u751f\u6210": 33, "index_of": [33, 146], "\u5024\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u53d6\u5f97": 33, "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [33, 146], "_arrvalu": [33, 34, 37, 38, 39, 41, 43, 44], "_loop": 33, "initialize_with_base_value_interfac": 33, "initializewithbasevalueinterfac": [33, 105, 106], "variable_name_suffix": [33, 58, 60, 62, 63, 68, 74, 81, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 146, 147, 150, 151, 152, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 229], "skip_init_substitution_expression_append": [33, 58, 68, 81, 147, 192], "bool": [33, 47, 54, 58, 68, 81, 93, 147, 149, 164, 167, 168, 169, 170, 172, 173, 174, 175, 187, 192, 195, 206, 207, 235], "fals": [33, 47, 54, 56, 58, 59, 66, 68, 81, 90, 96, 98, 104, 114, 147, 158, 164, 167, 168, 169, 170, 172, 173, 174, 175, 187, 190, 191, 192, 206, 207, 227, 230, 232, 233], "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u914d\u5217\u3092\u6271\u3046\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 33, "\u914d\u5217\u306e\u521d\u671f\u5024": 33, "\u914d\u5217\u306e\u5024\u306e\u56fa\u5b9a\u306e\u578b": 33, "\u3053\u306e\u5f15\u6570\u306f": [33, 141, 222], "string": [33, 40, 60, 62, 65, 87, 96, 97, 102, 103, 104, 105, 106, 108, 141, 150, 151, 152, 153, 158, 164, 166, 177, 178, 182, 183, 206, 207, 227, 229, 235], "\u306a\u3069\u306eapysc\u306e\u578b\u306e\u307f\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 33, "\u306a\u3069\u306e\u30e1\u30bd\u30c3\u30c9": 33, "\u304c\u6307\u5b9a\u3055\u308c\u305f\u578b\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3059\u308b\u30b1\u30fc\u30b9\u304c\u767a\u751f\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 33, "javascript\u4e0a\u306e\u5909\u6570\u306e\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u8a2d\u5b9a\u3067\u3059": [33, 58, 60, 62, 63, 68, 74, 81, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 147, 150, 151, 152, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 229], "\u3053\u306e\u8a2d\u5b9a\u306fjavascript\u306e\u30c7\u30d0\u30c3\u30b0\u6642\u306b\u5f79\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": [33, 58, 60, 62, 63, 68, 74, 81, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 147, 150, 151, 152, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 229], "\u521d\u671f\u5024\u306e\u4ee3\u5165\u306e\u30b3\u30fc\u30c9\u8868\u73fe\u3092\u30b9\u30ad\u30c3\u30d7\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024\u3067\u3059": [33, 58, 81, 147, 192], "\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u30af\u30e9\u30b9\u5185\u90e8\u306e\u5b9f\u88c5\u3067\u4f7f\u7528\u3055\u308c\u307e\u3059": [33, 58, 81, 147, 192], "\u73fe\u5728\u306e\u914d\u5217\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 33, "\u73fe\u5728\u306e\u914d\u5217\u306e\u5024": 33, "apysc\u306e\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u306e": [33, 58, 81, 147, 192], "\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u914d\u5217\u306e\u672b\u7aef\u306b\u4efb\u610f\u306e\u5024\u3092\u8ffd\u52a0\u3057\u307e\u3059": 34, "\u3053\u308c\u3089\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u304a\u4e92\u3044\u306b\u540c\u3058\u6319\u52d5\u3092\u3057\u307e\u3059": 34, "\u306fpython\u5bc4\u308a\u306a\u540d\u524d\u3067\u3042\u308a": 34, "\u306fjavascript\u5bc4\u308a\u306a\u540d\u524d\u3067\u30a8\u30a4\u30ea\u30a2\u30b9\u3068\u3057\u3066\u8a2d\u3051\u3066\u3042\u308a\u307e\u3059": 34, "\u306e\u5404\u30e1\u30bd\u30c3\u30c9\u306f\u7b2c\u4e00\u5f15\u6570\u306b": 34, "valu": [34, 38, 39, 43, 44, 48, 49, 50, 51, 54, 55, 60, 62, 65, 86, 87, 96, 97, 98, 103, 105, 106, 124, 144, 146, 152, 153, 155, 156, 157, 158, 166, 177, 178, 182, 189, 194, 204, 206, 227, 228, 229, 232, 234], "\u3068\u3044\u3046\u5f15\u6570\u540d\u3067\u8ffd\u52a0\u3059\u308b\u5024\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 34, "\u4efb\u610f\u306e\u5024\u3092\u3053\u306e\u914d\u5217\u306e\u672b\u5c3e\u306b\u52a0\u3048\u307e\u3059": 34, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f": 34, "\u30e1\u30bd\u30c3\u30c9\u3068\u540c\u69d8\u306b\u52d5\u4f5c\u3057\u307e\u3059": 34, "\u8ffd\u52a0\u5bfe\u8c61\u306e\u4efb\u610f\u306e\u5024": [34, 39], "\u30e1\u30bd\u30c3\u30c9\u306f\u914d\u5217\u306e\u5024\u3092\u7a7a\u306b\u3057\u307e\u3059": 35, "\u30e1\u30bd\u30c3\u30c9\u306f\u547c\u3073\u51fa\u3057\u306b\u7279\u306b\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 35, "20": [35, 41, 50, 59, 65, 81, 82, 84, 96, 98, 107, 108, 139, 141, 147, 148, 149, 153, 155, 164, 176, 206, 207, 212, 227, 232], "30": [35, 41, 50, 60, 68, 72, 75, 96, 97, 122, 140, 142, 147, 148, 152, 176, 182, 227, 229, 234], "\u30af\u30e9\u30b9\u306b\u304a\u3051\u308b\u7b49\u5024\u3068\u975e\u7b49\u5024\u306e\u6bd4\u8f03\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 36, "\u30af\u30e9\u30b9\u306e\u5024\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30ea\u30b9\u30c8\u53ca\u3073\u5225\u306e": 36, "\u30af\u30e9\u30b9\u306e\u5024\u3068\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 36, "\u7d50\u679c\u306f": 36, "boolean": [36, 54, 56, 59, 66, 67, 74, 87, 90, 96, 98, 104, 105, 114, 124, 144, 147, 149, 158, 164, 167, 168, 169, 170, 172, 173, 174, 175, 190, 191, 195, 206, 207, 210, 214, 216, 226, 227, 230, 234, 235], "\u578b\u3068\u306a\u308a\u307e\u3059": [36, 155, 204], "result": [36, 58, 66, 90, 122, 134, 149, 155, 158, 191, 195, 198, 199, 200, 202, 204], "\u7b49\u5024\u306e\u6bd4\u8f03\u8a18\u53f7": 36, "\u3068\u975e\u7b49\u5024\u306e\u6bd4\u8f03\u8a18\u53f7": 36, "\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 36, "\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f2\u3064\u306e\u914d\u5217\u306e\u9023\u7d50\u51e6\u7406\u3092\u6271\u3044\u307e\u3059": 37, "\u30e1\u30bd\u30c3\u30c9\u306f\u5143\u3005\u306e\u914d\u5217\u81ea\u4f53\u3092\u66f4\u65b0\u3057\u8fd4\u5374\u5024\u306f\u8a2d\u5b9a\u3055\u308c\u305anone\u3068\u306a\u308a\u307e\u3059": 37, "\u30e1\u30bd\u30c3\u30c9\u3067\u306f\u9023\u7d50\u7d50\u679c\u306e\u914d\u5217\u3092\u8fd4\u5374\u3057\u307e\u3059": 37, "\u5143\u306e\u914d\u5217\u306f\u5909\u5316\u3057\u307e\u305b\u3093": 37, "\u30e1\u30bd\u30c3\u30c9\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u305d\u308c\u305e\u308c\u7b2c\u4e00\u5f15\u6570\u306b\u9023\u7d50\u5bfe\u8c61\u306e\u4ed6\u306e\u914d\u5217\u306a\u3069": 37, "\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30ea\u30b9\u30c8\u3084\u30bf\u30d7\u30eb": 37, "apysc\u306e": [37, 52, 53], "\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 37, "\u5f15\u6570\u306b\u6307\u5b9a\u3055\u308c\u305f\u914d\u5217\u3092\u3053\u306e\u914d\u5217\u3078\u9023\u7d50\u3057\u307e\u3059": 37, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5f15\u6570\u306e\u914d\u5217\u306e\u5024\u3092\u3053\u306e\u914d\u5217\u306e\u5f8c\u306b\u914d\u7f6e\u3057\u307e\u3059": 37, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306fconcat\u30e1\u30bd\u30c3\u30c9\u3068\u4f3c\u305f\u6319\u52d5\u3092\u3057\u307e\u3059\u304c": 37, "\u914d\u5217\u306e\u5024\u3092\u76f4\u63a5\u66f4\u65b0\u3059\u308b\u304b": 37, "\u3082\u3057\u304f\u306f\u5225\u306e\u5024\u3068\u3057\u3066\u8fd4\u5374\u3059\u308b\u304b": 37, "\u306e\u9055\u3044\u304c\u3042\u308a\u307e\u3059": 37, "\u9023\u7d50\u5bfe\u8c61\u3068\u306a\u308b\u4ed6\u306e\u914d\u5217\u306e": 37, "\u3082\u3057\u304f\u306f\u305d\u308c\u306b\u8fd1\u3057\u3044": 37, "\u5024": 37, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306fextend\u30e1\u30bd\u30c3\u30c9\u3068\u4f3c\u305f\u6319\u52d5\u3092\u3057\u307e\u3059\u304c": 37, "concaten": 37, "\u9023\u7d50\u7d50\u679c\u306e\u914d\u5217\u306e\u5024": 37, "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5024\u306e\u914d\u5217\u5185\u3067\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 38, "\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057": [38, 125], "\u5024\u304c\u914d\u5217\u5185\u3067\u898b\u3064\u304b\u3063\u305f\u5834\u5408\u306b\u306f\u305d\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 38, "\u3082\u3057\u3082\u914d\u5217\u5185\u3067\u5024\u304c\u898b\u3064\u304b\u3089\u306a\u304b\u3063\u305f\u5834\u5408\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306f": 38, "\u3068\u306a\u308a\u307e\u3059": [38, 41, 54, 222], "\u6307\u5b9a\u3055\u308c\u305f\u5024\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u4f4d\u7f6e\u3092\u691c\u7d22\u3057\u305d\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 38, "\u691c\u7d22\u5bfe\u8c61\u306e\u4efb\u610f\u306e\u5024": 38, "\u5024\u304c\u898b\u3064\u304b\u3063\u305f\u4f4d\u7f6e\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 38, "\u3082\u3057\u914d\u5217\u304c\u5bfe\u8c61\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u306a\u3044\u5834\u5408\u306f": 38, "1\u3068\u306a\u308a\u307e\u3059": 38, "\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4efb\u610f\u306e\u5024\u3092\u914d\u5217\u306e\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3078\u3068\u8ffd\u52a0\u3057\u307e\u3059": 39, "\u305d\u308c\u305e\u308c\u306e\u54e1\u30b9\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u540c\u3058\u6319\u52d5\u3092\u3057\u307e\u3059": 39, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u3068\u306a\u3063\u3066\u3044\u307e\u3059": 39, "\u306e\u540c\u3058\u5f15\u6570\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 39, "\u5f15\u6570\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 39, "\u3068apysc\u306e": 39, "\u30af\u30e9\u30b9\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": [39, 141], "\u3053\u306e\u914d\u5217\u306e\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4f4d\u7f6e\u3078\u5024\u3092\u633f\u5165\u3057\u307e\u3059": 39, "\u30e1\u30bd\u30c3\u30c9\u3068\u540c\u3058\u6319\u52d5\u3092\u3057\u307e\u3059": 39, "\u5024\u3092\u8ffd\u52a0\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 39, "\u30e1\u30bd\u30c3\u30c9\u306f\u5f15\u6570\u306b\u6307\u5b9a\u3055\u308c\u305f\u533a\u5207\u308a\u6587\u5b57\u3067\u9023\u7d50\u3055\u308c\u305f\u914d\u5217\u306e\u5024\u306e": 40, "\u30af\u30e9\u30b9\u306e\u6587\u5b57\u5217\u3092\u8fd4\u5374\u3057\u307e\u3059": 40, "\u30e1\u30bd\u30c3\u30c9\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u533a\u5207\u308a\u6587\u5b57\u3068\u3057\u3066\u306e": 40, "sep": [40, 201], "\u5f15\u6570\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": [40, 49, 87], "\u6307\u5b9a\u3055\u308c\u305f\u533a\u5207\u308a\u7528\u306e\u6587\u5b57\u5217\u3092\u4f7f\u3063\u3066\u914d\u5217\u306e\u5024\u3092\u9023\u7d50\u3057\u307e\u3059": 40, "\u533a\u5207\u308a\u6587\u5b57": [40, 201], "\u9023\u7d50\u3055\u308c\u305f\u6587\u5b57\u5217": 40, "\u5c5e\u6027\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [41, 57, 78, 184, 196, 208, 209, 210, 211, 212, 213, 214, 215, 216], "\u5c5e\u6027\u306f\u914d\u5217\u306e\u6700\u5f8c\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 41, "\u5c5e\u6027\u304c30\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u8a66\u3057\u3066\u3044\u307e\u3059": 41, "\u914d\u5217\u306e\u5024\u306f": 41, "\u3068\u306a\u3063\u3066\u3044\u307e\u3059": 41, "assert_equ": [41, 55, 57, 128, 143, 146, 150, 151, 155, 180, 184, 194, 196, 197, 198, 199, 200, 202, 203, 204, 211, 212, 227], "array_last_value_basic_usage_1": 41, "\u3082\u3057\u3082\u914d\u5217\u306e\u5024\u304c\u7a7a\u306e\u5834\u5408": 41, "\u3053\u306e\u5c5e\u6027\u306e\u5024\u306fjavascript\u306e\u30e9\u30f3\u30bf\u30a4\u30e0\u4e0a\u3067\u306f": 41, "undefin": [41, 49, 80], "\u306b\u306a\u308a\u307e\u3059": [41, 155, 160, 164, 213], "fixed_value_typ": 41, "assert_undefin": [41, 80, 146], "array_last_value_basic_usage_2": 41, "\u914d\u5217\u306e\u6700\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 41, "\u914d\u5217\u306e\u6700\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024": 41, "\u8a2d\u5b9a\u306f\u3053\u306e\u5c5e\u6027\u306e\u5024\u306e\u578b\u306b\u5f71\u97ff\u3057\u307e\u3059": 41, "\u3082\u3057\u914d\u5217\u304c\u7a7a\u306e\u5834\u5408": 41, "\u3053\u306e\u5024\u306fjavascript\u306e\u30e9\u30f3\u30bf\u30a4\u30e0\u4e0a\u3067\u306f": 41, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u914d\u5217\u306e\u5024\u306e\u9577\u3055": 42, "\u4ef6\u6570": [42, 84], "\u5c5e\u6027\u306fgetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u307f\u3092\u6301\u3061\u307e\u3059": 42, "\u8fd4\u5374\u5024\u306fapysc\u306e": 42, "\u30af\u30e9\u30b9\u306e\u6574\u6570\u5024\u3068\u306a\u308a\u307e\u3059": 42, "\u30af\u30e9\u30b9\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 42, "\u95a2\u6570\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u304a\u3089\u305a": 42, "\u3082\u3057\u4f7f\u7528\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 42, "\u4ee3\u308f\u308a\u306b": 42, "\u5c5e\u6027\u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044": 42, "t": [42, 84], "appli": [42, 84], "pleas": [42, 84, 96], "us": [42, 84, 96, 98], "properti": [42, 84, 181, 205], "instead": [42, 84], "\u3053\u306e\u914d\u5217\u306e\u9577\u3055": 42, "\u5024\u306e\u6570": 42, "\u3092\u53d6\u5f97\u3057\u307e\u3059": [42, 57, 60, 77, 84, 97, 143, 151, 152, 166, 177, 178, 182, 184, 196, 206, 229], "\u5024\u306e\u4ef6\u6570": 42, "\u30e1\u30bd\u30c3\u30c9\u306f\u914d\u5217\u5185\u306e\u6700\u5f8c\u306e\u5024\u3092\u914d\u5217\u304b\u3089\u53d6\u308a\u9664\u304d": 43, "\u305d\u3057\u3066\u305d\u306e\u53d6\u308a\u9664\u3044\u305f\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 43, "\u30e1\u30bd\u30c3\u30c9\u306b\u306f\u5fc5\u8981\u306a\u5f15\u6570\u306f\u7121\u304f": 43, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u914d\u5217\u306e\u6700\u5f8c\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 43, "last_valu": [43, 146], "\u3053\u306e\u914d\u5217\u306e\u672b\u5c3e\u306e\u5024\u3092\u53d6\u308a\u9664\u304d": 43, "\u305d\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 43, "\u53d6\u308a\u9664\u304b\u308c\u305f\u5024": 43, "popped_v": 43, "\u30e1\u30bd\u30c3\u30c9\u306f\u914d\u5217\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u5024\u3092\u53d6\u308a\u9664\u304d": 44, "\u30e1\u30bd\u30c3\u30c9\u306f\u914d\u5217\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 44, "\u30e1\u30bd\u30c3\u30c9\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u53d6\u308a\u9664\u304f\u5bfe\u8c61\u306e\u5024\u3092\u7b2c\u4e00\u5f15\u6570\u306b\u5fc5\u8981\u3068\u3057\u307e\u3059": 44, "\u30e1\u30bd\u30c3\u30c9\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u914d\u5217\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u6574\u6570": 44, "python\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": [44, 46, 84], "\u3082\u3057\u304f\u306fapysc\u306e": [44, 46, 81], "\u3092\u7b2c\u4e00\u5f15\u6570\u306b\u5fc5\u8981\u3068\u3057\u307e\u3059": 44, "\u6307\u5b9a\u3055\u308c\u305f\u5024\u3092\u3053\u306e\u914d\u5217\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 44, "ani": [44, 48, 49, 50, 51, 54, 56, 82, 83, 89, 96, 98, 101, 102, 103, 104, 105, 106, 144, 180, 191, 228, 231], "\u53d6\u308a\u9664\u304f\u5bfe\u8c61\u306e\u5024": 44, "\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u3053\u306e\u914d\u5217\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 44, "\u53d6\u308a\u9664\u304f\u5024\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 44, "\u30e1\u30bd\u30c3\u30c9\u306f\u914d\u5217\u306e\u5024\u3092\u76f4\u63a5\u66f4\u65b0\u3059\u308b\u5f62\u3067\u5024\u306e\u9806\u756a\u3092\u9006\u9806\u306b\u3057\u307e\u3059": 45, "\u30e1\u30bd\u30c3\u30c9\u306f\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": [45, 128, 151, 185, 227], "\u3053\u306e\u914d\u5217\u306e\u5024\u3092\u76f4\u63a5\u9006\u9806\u306b\u3057\u307e\u3059": 45, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u7bc4\u56f2\u306e\u914d\u5217\u306e\u5024\u3092\u62bd\u51fa\u3057\u65b0\u3057\u3044\u914d\u5217\u3092\u8fd4\u5374\u3057\u307e\u3059": 46, "\u306e\u5404\u5f15\u6570": 46, "\u306e\u6574\u6570": 46, "\u3092\u5fc5\u8981\u3068\u3057": 46, "\u8fd4\u5374\u5024\u3068\u3057\u3066\u65b0\u3057\u3044\u914d\u5217\u3092\u8fd4\u3057\u307e\u3059": 46, "\u4f8b\u3068\u3057\u3066": [46, 167, 168, 169, 170, 172, 173, 174, 175], "\u5f15\u6570\u306b1\u3092\u6307\u5b9a\u3057": 46, "\u5f15\u6570\u306b3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": 46, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 46, "\u3068\u3044\u3046\u6307\u5b9a\u306b\u3088\u308b\u30b9\u30e9\u30a4\u30b9\u3068\u540c\u3058\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 46, "\u5143\u3005\u306e\u914d\u5217\u306e\u5024\u306f\u5909\u66f4\u3055\u308c\u307e\u305b\u3093": 46, "sliced_arr": 46, "\u6307\u5b9a\u3055\u308c\u305f\u958b\u59cb\u3068\u7d42\u4e86\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7bc4\u56f2\u3067\u3053\u306e\u914d\u5217\u3092\u30b9\u30e9\u30a4\u30b9\u3057\u307e\u3059": 46, "\u30b9\u30e9\u30a4\u30b9\u7bc4\u56f2\u306e\u958b\u59cb\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [46, 200], "\u30b9\u30e9\u30a4\u30b9\u7bc4\u56f2\u306e\u7d42\u4e86\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [46, 200], "\u7d50\u679c\u306e\u914d\u5217\u306e\u3053\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u542b\u307f\u307e\u305b\u3093": 46, "\u30b9\u30e9\u30a4\u30b9\u3055\u308c\u305f\u914d\u5217": 46, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u914d\u5217\u306e\u5024\u3092\u30bd\u30fc\u30c8\u3057\u307e\u3059": 47, "\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u6607\u9806\u3068\u306a\u308a\u307e\u3059": 47, "\u306f\u6607\u9806\u3067\u30bd\u30fc\u30c8\u3059\u308b\u5834\u5408\u5f15\u6570\u3092\u5fc5\u8981\u3068\u305b\u305a": 47, "\u914d\u5217\u306e\u5024\u306f\u76f4\u63a5\u66f4\u65b0\u3055\u308c\u307e\u3059": 47, "\u8fd4\u5374\u5024\u306f\u8a2d\u5b9a\u3055\u308c\u307e\u305b\u3093": 47, "ascend": 47, "\u5f15\u6570\u306b": [47, 54, 233], "\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": [47, 199, 206], "\u7d50\u679c\u306f\u964d\u9806\u3068\u306a\u308a\u307e\u3059": 47, "true": [47, 54, 56, 58, 66, 74, 89, 90, 93, 96, 104, 110, 114, 142, 144, 147, 158, 167, 168, 169, 170, 172, 173, 174, 175, 187, 190, 191, 206, 207, 210, 214, 216, 227, 230], "\u3053\u306e\u914d\u5217\u306e\u5024\u3092\u76f4\u63a5\u30bd\u30fc\u30c8\u3057\u307e\u3059": 47, "\u6607\u9806\u3067\u30bd\u30fc\u30c8\u3092\u884c\u3046\u304b\u3069\u3046\u304b\u306e\u6307\u5b9a\u3067\u3059": 47, "\u3082\u3057false\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": 47, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u964d\u9806\u3067\u5024\u3092\u30bd\u30fc\u30c8\u3057\u307e\u3059": 47, "\u95a2\u6570\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [48, 51, 52, 53, 54], "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f2\u3064\u306e\u914d\u5217\u306e\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 48, "\u95a2\u6570\u306f2\u3064\u306e\u914d\u5217\u306e\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u306a\u3044\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 48, "javascript\u306e\u5404\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u6319\u52d5": [48, 49, 50, 51, 52, 53, 54], "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5171\u306b": 48, "left": [48, 49, 50, 51, 52, 53, 54, 55, 141, 164, 183, 206, 207, 208, 209], "right": [48, 49, 50, 51, 52, 53, 54, 55, 96, 98, 141, 206, 208, 209], "\u3068\u3044\u30462\u3064\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 48, "\u5f15\u6570\u306f\u7701\u7565\u53ef\u3067\u3059": [48, 49, 50, 51, 52, 53, 54, 56], "\u5f15\u6570\u306b\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 48, "\u306e\u5024\u3082\u3057\u304f\u306fapysc\u306e": 48, "arrai": [48, 65, 67, 101, 102, 103, 104, 136, 153, 156, 157, 177, 178, 180, 189, 201, 206, 207, 227, 235], "\u306e\u5024\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 48, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u4f8b\u3067\u306f": 48, "\u95a2\u6570\u3092\u4f7f\u3063\u3066\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u3044\u307e\u3059": 48, "arr_1": 48, "ar": [48, 50, 51, 55, 96], "equal": [48, 50, 51, 55, 98, 144], "assert_arrays_equal_basic_usage_1": 48, "arr_2": [48, 189, 232], "\u95a2\u6570\u3092\u4f7f\u3063\u3066\u5024\u304c\u4e00\u81f4\u3057\u3066\u304a\u3089\u305a\u30c1\u30a7\u30c3\u30af\u304c\u5931\u6557\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u3044\u307e\u3059": 48, "assert_arrays_equal_basic_usage_2": 48, "fail": [48, 49, 50, 51, 52, 53, 54, 55], "\u95a2\u6570\u3092\u4f7f\u3063\u3066\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u306a\u3044\u305f\u3081\u30c1\u30a7\u30c3\u30af\u3092\u901a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u3044\u307e\u3059": 48, "assert_arrays_not_equal_basic_usage_1": 48, "\u3082\u3057\u3082": [48, 51, 54, 81, 95, 98, 142, 147], "\u3082\u3057\u304f\u306f": [48, 50, 63, 82, 96, 98, 122, 127, 155, 158, 168, 192, 193, 194, 195, 204, 210, 214, 216, 222], "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b": 48, "\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": [48, 50, 220, 222, 224], "\u81ea\u52d5\u7684\u306b\u305d\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4ee3\u308f\u308a\u306b": 48, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u4f7f\u7528\u3055\u308c\u307e\u3059": 48, "assert_arrays_equal_notes_for_the_assert_equ": 48, "outer_frames_index_adjust": [48, 50], "\u914d\u5217\u306e\u5024\u306e\u7b49\u5024\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 48, "\u6bd4\u8f03\u7528\u306e\u5de6\u8fba\u306e\u5024": [48, 50, 51, 52], "\u6bd4\u8f03\u7528\u306e\u53f3\u8fba\u306e\u5024": [48, 50, 51, 52], "\u30c1\u30a7\u30c3\u30af\u306b\u5931\u6557\u3057\u305f\u969b\u306b\u8868\u793a\u3059\u308b\u30e1\u30c3\u30bb\u30fc\u30b8": [48, 49, 50, 51, 52, 53, 54], "trace\u95a2\u6570\u306e\u95a2\u6570\u5916\u306e\u53c2\u7167\u3059\u308b\u30d5\u30ec\u30fc\u30e0\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u8abf\u6574\u5024\u3067\u3059": [48, 50], "\u3053\u306e\u5f15\u6570\u306f\u547c\u3073\u51fa\u3057\u5143\u306e\u60c5\u5831\u306e\u4f4d\u7f6e\u3092\u8abf\u6574\u3059\u308b\u306e\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059": [48, 50], "\u3053\u306e\u5f15\u6570\u306f\u5185\u90e8\u306e\u30ed\u30b8\u30c3\u30af\u3067\u306e\u307f\u4f7f\u7528\u3055\u308c\u308b\u305f\u3081\u901a\u5e38\u306f\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093": [48, 50], "\u30af\u30e9\u30b9\u306e\u5024\u306e\u6bd4\u8f03\u6642\u306b\u306f": 48, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4ee3\u308f\u308a\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059": 48, "javascript\u4e0a\u3067\u306fpython\u306e\u30ea\u30b9\u30c8\u306e\u3088\u3046\u306b\u76f4\u63a5\u914d\u5217\u306e\u6bd4\u8f03\u304c\u884c\u3048\u306a\u3044\u305f\u3081\u4ee3\u308f\u308a\u306b\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u4f7f\u7528\u3055\u308c\u307e\u3059": 48, "\u914d\u5217\u306e\u5024\u306e\u975e\u7b49\u5024\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 48, "\u306e\u95a2\u6570\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 49, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c\u5b9a\u7fa9\u6e08\u307f\u304b\u3069\u3046\u304b": 49, "\u521d\u671f\u5316\u3055\u308c\u3066\u3044\u308b\u304b": 49, "\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 49, "\u95a2\u6570\u306f\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044": 49, "\u72b6\u614b\u3084\u524a\u9664\u6e08\u307f\u304b\u3069\u3046\u304b\u306a\u3069\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 49, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5171\u306b": 49, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u521d\u671f\u5316\u3055\u308c\u3066\u3044\u308b\u5024\u306b\u5bfe\u3057\u3066": 49, "\u95a2\u6570\u3067\u30c1\u30a7\u30c3\u30af\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 49, "\u30c1\u30a7\u30c3\u30af\u3092\u901a\u308a\u307e\u3059": 49, "defin": [49, 96], "assert_defined_basic_usage_1": 49, "side": [49, 51, 54, 55], "variabl": [49, 51, 54, 55, 189, 232], "i_11": [49, 51, 54, 55], "other": [49, 127, 190, 191], "than": [49, 98, 144], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u524a\u9664\u306e\u6e08\u307f\u306e\u5024\u306b\u5bfe\u3057\u3066": 49, "\u95a2\u6570\u3067\u30c1\u30a7\u30c3\u30af\u3092\u3057\u3066\u3044\u307e\u3059": 49, "\u30c1\u30a7\u30c3\u30af\u306f\u5931\u6557\u3057\u307e\u3059": [49, 50], "append_js_express": [49, 146], "f": 49, "variable_nam": [49, 189, 190], "assert_defined_basic_usage_2": 49, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u524a\u9664\u6e08\u307f\u306e\u5024\u306b\u5bfe\u3057\u3066": 49, "\u30c1\u30a7\u30c3\u30af\u306f\u901a\u308a\u307e\u3059": [49, 50], "assert_undefined_basic_usage_1": 49, "\u5b9a\u7fa9\u6e08\u307f\u306e\u5024\u304b\u3069\u3046\u304b\u306e\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 49, "\u30c1\u30a7\u30c3\u30af\u5bfe\u8c61\u306e\u5024": [49, 54], "\u672a\u5b9a\u7fa9\u306e\u5024\u304b\u3069\u3046\u304b\u306e\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 49, "\u306e\u5404\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 50, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f2\u3064\u306e\u8f9e\u66f8": 50, "\u578b\u306a\u3069": 50, "\u306e\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u308b\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 50, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f2\u3064\u306e\u8f9e\u66f8\u306e\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u306a\u3044\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 50, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [50, 54, 163], "\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": [50, 54, 136, 164, 166, 204, 207], "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 50, "\u3084apysc\u306e": 50, "\u306e\u5024\u3092\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 50, "\u95a2\u6570\u3092\u4f7f\u3063\u3066\u5024\u304c\u540c\u3058\u8f9e\u66f8\u306b\u5bfe\u3057\u3066\u30c1\u30a7\u30c3\u30af\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 50, "dict_val": [50, 83], "b": [50, 81, 82, 83, 84, 106], "assert_dicts_equal_basic_usage_1": 50, "dct_1": 50, "\u95a2\u6570\u3092\u4f7f\u3063\u3066\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u306a\u3044\u8f9e\u66f8\u306b\u5bfe\u3057\u3066\u30c1\u30a7\u30c3\u30af\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 50, "assert_dicts_equal_basic_usage_2": 50, "assert_dicts_not_equal_basic_usage_1": 50, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5f15\u6570\u3078": 50, "\u81ea\u52d5\u7684\u306b": 50, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u305d\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4ee3\u308f\u308a\u306b\u547c\u3070\u308c\u307e\u3059": 50, "assert_dicts_equal_notes_for_assert_equ": 50, "\u8f9e\u66f8\u306e\u5024\u306e\u7b49\u5024\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 50, "\u95a2\u6570\u3067\u306e": 50, "\u306e\u30af\u30e9\u30b9\u306e\u5024\u306e\u6bd4\u8f03\u6642\u306b\u306f\u4ee3\u308f\u308a\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059": 50, "javascript\u3067\u306fpython\u3068\u7570\u306a\u308a\u8f9e\u66f8\u306e\u5024\u3092\u76f4\u63a5\u6bd4\u8f03\u3067\u304d\u306a\u3044\u305f\u3081": 50, "dict_1": [50, 81, 84], "dict_2": [50, 81], "\u8f9e\u66f8\u306e\u5024\u306e\u975e\u7b49\u5024\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 50, "\u30af\u30e9\u30b9\u306e\u5024\u306e\u6bd4\u8f03\u6642\u306b\u306f\u4ee3\u308f\u308a\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059": 50, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f2\u3064\u306ejavascript\u4e0a\u306e\u5024\u304c\u7b49\u5024\u304b\u3069\u3046\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 51, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f2\u3064\u306e\u5024\u304c\u7b49\u5024\u3067\u306f\u306a\u3044\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 51, "\u306e\u5404\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": [51, 68, 140, 229], "\u5f15\u6570\u306e\u5024\u3068": 51, "\u5f15\u6570\u306e\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u306a\u3044\u5834\u5408": 51, "\u95a2\u6570\u306b\u3088\u308b\u30c1\u30a7\u30c3\u30af\u306f\u5931\u6557\u3057\u30d6\u30e9\u30a6\u30b6\u4e0a\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u8868\u793a\u3055\u308c\u307e\u3059": 51, "int_1": [51, 54, 55, 59, 81, 96, 98, 108, 145, 147, 148, 149, 189, 193, 232], "11": [51, 54, 55, 77, 98, 149, 150, 156, 157], "assert_equal_basic_usag": 51, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082\u540c\u69d8\u306e\u5f15\u6570\u3092\u6301\u3063\u3066\u304a\u308a": 51, "\u5f15\u6570\u306e\u5024\u304c": [51, 54], "\u5f15\u6570\u306e\u5024\u3068\u7b49\u5024\u306e\u5834\u5408\u30c1\u30a7\u30c3\u30af\u51e6\u7406\u306f\u5931\u6557\u3057\u307e\u3059": 51, "assert_not_equal_basic_usag": 51, "\u7b49\u5024\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 51, "\u3082\u3057\u3082\u5f15\u6570\u306barray\u3084list\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": 51, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u51e6\u7406\u306e\u4ee3\u308f\u308a\u306bassert_arrays_equal\u95a2\u6570\u304c\u547c\u3070\u308c\u307e\u3059": 51, "\u3082\u3057\u3082\u5f15\u6570\u306bdictionary\u3084dict\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": 51, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u51e6\u7406\u306e\u4ee3\u308f\u308a\u306bassert_dicts_equal\u95a2\u6570\u304c\u547c\u3070\u308c\u307e\u3059": 51, "int_2": [51, 81, 96, 98, 147, 148, 149, 232], "\u975e\u7b49\u5024\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 51, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u51e6\u7406\u306e\u4ee3\u308f\u308a\u306bassert_arrays_not_equal\u95a2\u6570\u304c\u547c\u3070\u308c\u307e\u3059": 51, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4ee3\u308f\u308a\u306bassert_dicts_not_equal\u95a2\u6570\u304c\u547c\u3070\u308c\u307e\u3059": 51, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f1\u3064\u76ee\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c2\u3064\u76ee\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 52, "\u4f3c\u305f\u3088\u3046\u306a\u5f62\u3067": [52, 53, 77, 125], "\u95a2\u6570\u3067\u306f\u6700\u521d\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c2\u3064\u76ee\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u304b\u3082\u3057\u304f\u306f\u540c\u5024\u306a\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 52, "\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": [52, 125, 155, 168], "\u3053\u308c\u3089\u306e\u5f15\u6570\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": [52, 53], "\u306a\u3069\u306e\u6570\u5024\u306e\u5024\u306e\u307f\u53d7\u3051\u4ed8\u3051\u307e\u3059": [52, 53], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u304c\u5931\u6557\u3057\u305f\u969b\u306b": [52, 53], "messag": [52, 53], "\u5f15\u6570\u306e\u5024\u3092\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u8868\u793a\u3057\u307e\u3059": [52, 53], "int_val_1": [52, 53], "int_val_2": [52, 53], "int_val_3": [52, 53], "assert_greater_and_greater_equal_basic_usage_1": 52, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u304c\u5931\u6557\u3057": [52, 53], "\u3068\u3044\u3046\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30d6\u30e9\u30a6\u30b6\u4e0a\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u306b\u8868\u793a\u3055\u308c\u307e\u3059": [52, 53], "assert_greater_and_greater_equal_basic_usage_2": 52, "javascript\u306e\u8d85\u904e\u6761\u4ef6\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 52, "\u5927\u304d\u3044\u5074\u306e\u5024": [52, 53], "\u5c0f\u3055\u3044\u5074\u306e\u5024": [52, 53], "javascript\u306e\u4ee5\u4e0a\u306e\u6761\u4ef6\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 52, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f1\u3064\u76ee\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c2\u3064\u76ee\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 53, "\u95a2\u6570\u3067\u306f\u6700\u521d\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c2\u3064\u76ee\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u304b\u3082\u3057\u304f\u306f\u540c\u5024\u306a\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 53, "\u5f15\u6570\u3068": 53, "\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": [53, 87, 105, 106, 135, 150, 194, 206, 220, 231], "assert_less_and_less_equal_basic_usage_1": 53, "assert_less_and_less_equal_basic_usage_2": 53, "javascript\u306e\u672a\u6e80\u6761\u4ef6\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 53, "\u6bd4\u8f03\u7528\u306e\u5de6\u8fba\u5074\u306e\u5024": 53, "\u6bd4\u8f03\u7528\u306e\u53f3\u8fba\u5074\u306e\u5024": 53, "assert_greater_equ": [53, 146], "javascript\u306e\u4ee5\u4e0b\u6761\u4ef6\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 53, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f": 54, "\u306e\u5024\u304c\u771f": 54, "\u3067\u3042\u308b\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 54, "\u306e\u5024\u304c\u507d": 54, "type_strict": 54, "\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f": 54, "\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u30c1\u30a7\u30c3\u30af\u51e6\u7406\u306fjavascript\u306e\u53b3\u5bc6\u306a\u578b\u306e\u6bd4\u8f03": 54, "\u306b\u3088\u308b\u6bd4\u8f03": 54, "\u306b\u3088\u3063\u3066\u884c\u308f\u308c\u307e\u3059": 54, "\u305f\u3068\u3048\u3070\u3082\u3057": 54, "\u3067\u4e14\u3064": 54, "\u5f15\u6570\u304c": 54, "\u306e\u5834\u5408\u30c1\u30a7\u30c3\u30af\u51e6\u7406\u306f\u771f\u507d\u5024\u3068\u6574\u6570": 54, "\u9593\u306e\u6bd4\u8f03\u3068\u306a\u308b\u305f\u3081\u5931\u6557\u3057\u307e\u3059": 54, "\u3067\u4e14\u3064\u5024\u304c": 54, "\u95a2\u6570\u306b\u3088\u308b\u30c1\u30a7\u30c3\u30af\u51e6\u7406\u306f\u901a\u308a\u307e\u3059": 54, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3088\u308b\u30c1\u30a7\u30c3\u30af\u7d50\u679c\u306f\u30d6\u30e9\u30a6\u30b6\u4e0a\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u306b\u8868\u793a\u3055\u308c\u307e\u3059": 54, "\u4ee5\u4e0b\u306e": 54, "\u95a2\u6570\u3068": [54, 59], "\u306e\u5024\u3092\u4f7f\u7528\u3057\u305f\u51e6\u7406\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30c1\u30a7\u30c3\u30af\u3092\u901a\u308a\u307e\u3059": 54, "bool_1": [54, 58], "assert_true_basic_usage_1": 54, "b_3": [54, 232], "\u306e\u5024\u3092\u4f7f\u3063\u305f\u51e6\u7406\u3067\u306f\u30c1\u30a7\u30c3\u30af\u304c\u5931\u6557\u3057\u307e\u3059": 54, "assert_true_basic_usage_2": 54, "\u306e\u5024\u3092\u4f7f\u3044": 54, "\u3092\u6307\u5b9a\u3057\u305f\u4f8b\u3067\u306f\u30c1\u30a7\u30c3\u30af\u304c\u5931\u6557\u3057\u307e\u3059": 54, "assert_true_basic_usage_3": 54, "\u3092\u8a2d\u5b9a\u3057\u305f\u51e6\u7406\u3067\u306f\u30c1\u30a7\u30c3\u30af\u304c\u901a\u308a\u307e\u3059": 54, "assert_true_basic_usage_4": 54, "\u306e\u5024\u3092\u4f7f\u3063\u305f\u51e6\u7406\u3067\u306f\u30c1\u30a7\u30c3\u30af\u3092\u901a\u308a\u307e\u3059": 54, "assert_false_basic_usage_1": 54, "\u771f\u507d\u5024\u306e\u771f\u306e\u5024\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 54, "\u53b3\u5bc6\u306a\u578b\u3067\u306e\u30c1\u30a7\u30c3\u30af\u3092\u884c\u3046\u304b\u3069\u3046\u304b\u306e\u8a2d\u5b9a\u3067\u3059": 54, "\u305f\u3068\u3048\u3070type_strict\u306btrue\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u6574\u6570\u306e1\u3067\u306f\u30c6\u30b9\u30c8\u306f\u5931\u6557\u3057\u307e\u3059": 54, "\u9006\u306btype_strict\u304cfalse\u306e\u5834\u5408\u6574\u6570\u306e1\u306f\u30c6\u30b9\u30c8\u3092\u901a\u904e\u3057\u307e\u3059": 54, "\u771f\u507d\u5024\u306e\u507d\u306e\u5024\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 54, "\u305f\u3068\u3048\u3070type_strict\u306btrue\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u6574\u6570\u306e0\u3067\u306f\u30c6\u30b9\u30c8\u306f\u5931\u6557\u3057\u307e\u3059": 54, "\u9006\u306btype_strict\u304cfalse\u306e\u5834\u5408\u6574\u6570\u306e0\u306f\u30c6\u30b9\u30c8\u3092\u901a\u904e\u3057\u307e\u3059": 54, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306fjavascript\u4e0a\u3067\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3": 55, "\u30c6\u30b9\u30c8\u306a\u3069\u306e\u30c1\u30a7\u30c3\u30af\u51e6\u7406": 55, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u6319\u52d5\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 55, "javascript\u4e0a\u306e\u5404\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 55, "assert_": 55, "\u306e\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 55, "assert_tru": [55, 146], "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fapysc\u306e\u30eb\u30fc\u30c8\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b\u305f\u3081": 55, "\u3068\u3044\u3063\u305f\u8a18\u8ff0\u3067\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 55, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30c1\u30a7\u30c3\u30af\u7d50\u679c\u306f\u4ee5\u4e0b\u306e\u4f8b\u306e\u3088\u3046\u306b\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u8868\u793a\u3055\u308c\u307e\u3059": 55, "assertion_basic_behavior_result": 55, "\u4e0a\u8a18\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u7d50\u679c\u306e\u60c5\u5831\u304c\u8868\u793a\u3055\u308c\u307e\u3059": 55, "\u30d6\u30e9\u30a6\u30b6\u4e0a\u3067f12\u30ad\u30fc\u3092\u62bc\u3057\u3066\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044": 55, "\u3082\u3057\u30c1\u30a7\u30c3\u30af\u51e6\u7406\u306b\u5931\u6557\u3057\u305f\u5834\u5408\u3082\u540c\u69d8\u306b\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u8868\u793a\u3055\u308c\u307e\u3059": 55, "assertion_basic_behavior_results_fail": 55, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5171\u901a\u3057\u3066": 55, "\u3068\u3044\u3046\u7701\u7565\u53ef\u80fd\u306a\u5f15\u6570\u306e\u3068\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 55, "\u3082\u3057\u3053\u306e\u5f15\u6570\u306b\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": 55, "\u30c1\u30a7\u30c3\u30af\u51e6\u7406\u306b\u5931\u6557\u3057\u305f\u5834\u5408\u306b\u30a8\u30e9\u30fc\u306e\u8a73\u7d30\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u3057\u3066\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u8868\u793a\u3055\u308c\u307e\u3059": 55, "assertion_basic_behavior_msg": 55, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [56, 87, 161, 163], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u72ec\u81ea\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u767b\u9332\u3057": 56, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4efb\u610f\u306e\u7b87\u6240\u3067\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u767a\u751f": 56, "\u306e\u5236\u5fa1\u3092\u884c\u3044\u307e\u3059": 56, "custom_event_typ": [56, 160], "\u305d\u3057\u3066": [56, 86, 123, 129, 220], "\u5f15\u6570\u306f\u72ec\u81ea\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u7a2e\u985e\u306e\u6587\u5b57\u5217\u3067\u3059": 56, "\u3053\u306e\u5f15\u6570\u306e\u6587\u5b57\u5217\u306f": 56, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306e\u6307\u5b9a\u6642\u3067\u3082\u540c\u3058\u5024\u3092\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 56, "\u5f15\u6570\u306f\u30a4\u30d9\u30f3\u30c8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u3059": 56, "\u5834\u5408\u306b\u3088\u3063\u3066\u306f": 56, "\u30af\u30e9\u30b9\u3084": 56, "\u30af\u30e9\u30b9\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 56, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u56de\u8ee2\u3055\u305b\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059": 56, "\u3082\u3057\u56de\u8ee2\u91cf\u304c90\u5ea6\u306b\u9054\u3057\u305f\u5834\u5408": 56, "rotate_90_degre": 56, "\u306e\u72ec\u81ea\u306e\u30a4\u30d9\u30f3\u30c8\u304c\u767a\u751f\u3057": 56, "on_rotate_90_degre": 56, "\u95a2\u6570\u306e\u30cf\u30f3\u30c9\u30e9\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059": 56, "\u5bfe\u8c61\u306e\u30cf\u30f3\u30c9\u30e9\u5185\u3067\u306f2\u3064\u76ee\u306e\u56db\u89d2\u3092": 56, "visibl": [56, 85, 146], "\u5c5e\u6027\u3092\u6709\u52b9\u5316\u3059\u308b\u5f62\u3067\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 56, "custom": [56, 160], "on_rectangle_click": [56, 100, 111, 160, 224, 226, 228, 231], "unbind_click": [56, 160, 221, 224, 226], "timer_complet": [56, 146, 220, 223, 225, 234], "on_timer_complet": [56, 221, 223], "rate": 56, "degre": [56, 122], "rectangle_1": [56, 66, 90, 95, 107, 110, 112, 115, 121, 123, 124, 165, 185, 191, 221, 222], "rectangle_2": [56, 90, 95, 107, 110, 112, 115, 121, 123, 124, 165, 185, 191, 221, 222], "bind_and_trigger_custom_event_basic_usag": 56, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5358\u4f53\u306e\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u89e3\u9664\u3092\u884c\u3044\u307e\u3059": 56, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5168\u3066\u306e\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u89e3\u9664\u3092\u884c\u3044\u307e\u3059": 56, "_event": [56, 61, 79, 99, 161, 162, 163, 231], "customeventtyp": 56, "in_handler_head_express": 56, "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u30ea\u30b9\u30ca\u30fc\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 56, "\u5bfe\u8c61\u306e\u72ec\u81ea\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u7a2e\u5225\u5024\u3068\u3057\u3066\u306e\u6587\u5b57\u5217": 56, "\u5bfe\u8c61\u306e\u30a4\u30d9\u30f3\u30c8\u304c\u767a\u751f": 56, "\u3055\u308c\u308b\u6642\u306b\u5b9f\u884c\u3055\u308c\u308b\u30cf\u30f3\u30c9\u30e9": 56, "\u30a4\u30d9\u30f3\u30c8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 56, "\u7701\u7565\u53ef\u80fd\u306a\u30cf\u30f3\u30c9\u30e9\u5185\u306e\u5148\u982d\u306b\u52a0\u3048\u308b": 56, "javascript\u306e": 56, "\u8868\u73fe\u306e\u6587\u5b57\u5217": 56, "\u30cf\u30f3\u30c9\u30e9\u540d": [56, 61, 79, 161, 162, 163, 221], "on_custom_ev": [56, 160], "my_custom_ev": [56, 160], "do": [56, 96, 160, 164, 187, 191, 205, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "someth": [56, 96, 160, 187, 191], "here": [56, 96, 160, 187, 231], "trigger": [56, 160], "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u30c8\u30ea\u30ac\u30fc\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 56, "\u5358\u4f53\u306e\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u30ea\u30b9\u30ca\u30fc\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 56, "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u304c\u767a\u706b\u3055\u308c\u305f\u969b\u306b\u547c\u3070\u308c\u308b\u30cf\u30f3\u30c9\u30e9": 56, "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u30ea\u30b9\u30ca\u30fc\u8a2d\u5b9a\u3092\u4e00\u901a\u308a\u89e3\u9664\u3057\u307e\u3059": 56, "\u30af\u30e9\u30b9\u306fapysc\u306e\u771f\u507d\u5024\u306e\u30af\u30e9\u30b9\u3067\u3059": 58, "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e\u5f15\u6570\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b": 58, "\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": [58, 90, 122, 176], "bool_2": 58, "bool_3": 58, "\u30af\u30e9\u30b9\u306f": [58, 65, 68, 85, 96, 98, 146, 147, 153, 164, 168, 183, 190, 191, 192, 223], "\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u3068\u306a\u308a\u307e\u3059": [58, 192], "\u30af\u30e9\u30b9\u3068\u540c\u3058\u6319\u52d5\u3092\u3057\u307e\u3059": 58, "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 58, "\u30af\u30e9\u30b9\u306e\u5024\u306e\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 58, "\u7b49\u5024\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 58, "\u3092\u4f7f\u3063\u3066": 58, "\u306e\u5024\u3068\u6bd4\u8f03\u3059\u308b\u3053\u3068\u304c\u3067\u304d": 58, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b": [58, 82, 195], "\u306a\u3069\u306e\u578b\u3068\u306e\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 58, "noqa": 58, "\u540c\u69d8\u306b\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u975e\u7b49\u5024\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 58, "\u3082\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u3059": 58, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u306e\u3088\u3046\u306b\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u7701\u7565\u3057\u3066\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 58, "\u5c5e\u6027\u306f\u5024\u304c\u53cd\u8ee2\u3057\u305f": 58, "\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": [58, 106, 149, 155, 196], "liter": 58, "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u305f\u3081\u306e\u771f\u507d\u5024\u306e\u30af\u30e9\u30b9\u3067\u3059": 58, "\u771f\u507d\u5024\u306e\u521d\u671f\u5024": 58, "\u6574\u6570\u306e\u5834\u5408\u306f0\u304b1\u304c\u53d7\u3051\u4ed8\u3051\u3089\u308c\u307e\u3059": 58, "bool\u30af\u30e9\u30b9\u306fboolean\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u3067\u3042\u308a": 58, "boolean\u30af\u30e9\u30b9\u3068\u540c\u3058\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 58, "bool_val_1": 58, "bool_val_2": 58, "true_": [58, 146, 210, 214, 216], "false_": [58, 146], "\u306e\u5404\u5b9a\u6570": [58, 146], "\u73fe\u5728\u306e\u771f\u507d\u5024\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 58, "\u73fe\u5728\u306e\u771f\u507d\u5024\u306e\u5024": 58, "bool_val": 58, "\u5426\u5b9a\u6761\u4ef6\u3092\u52a0\u3048\u305f\u771f\u507d\u5024\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 58, "\u53cd\u8ee2": 58, "\u5426\u5b9a": 58, "\u3055\u305b\u305fboolean\u578b\u306e\u5024": 58, "If": [59, 60, 65, 66, 67, 86, 87, 96, 97, 98, 113, 116, 124, 125, 146, 152, 153, 159, 166, 177, 178, 182, 186, 194, 206, 223, 225, 226, 229, 234], "els": [59, 65, 87, 96, 113, 116, 144, 146, 153, 234], "\u306a\u3069\u306e\u5206\u5c90\u5236\u5fa1\u306e\u5404\u30af\u30e9\u30b9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5909\u6570\u306e\u5fa9\u5143\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 59, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u6761\u4ef6\u306b\u7f79\u3089\u308f\u305a\u5404\u5206\u5c90\u7b87\u6240\u306e": 59, "javascript\u306e\u30b3\u30fc\u30c9\u51fa\u529b\u306e\u305f\u3081\u306b": 59, "\u30b3\u30fc\u30c9\u304c\u5b9f\u884c\u3055\u308c": 59, "python\u4e0a\u3067\u306e\u5909\u6570\u306e\u5024\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059": 59, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u6761\u4ef6\u306f": 59, "\u3068\u306a\u3063\u3066\u3044\u307e\u3059\u304cpython\u4e0a\u306e\u5024\u306f20\u306b\u66f4\u65b0\u3055\u308c\u307e\u3059": 59, "condit": [59, 66, 67, 87, 96, 98, 144, 226, 234], "\u3053\u306e\u90e8\u5206\u306fjavascript\u3078\u5909\u63db\u3055\u308c\u305f\u30b3\u30fc\u30c9\u4e0a\u3067\u306f\u6761\u4ef6\u3092\u6e80\u305f\u3055\u306a\u3044\u305f\u3081\u5b9f\u884c\u3055\u308c\u307e\u305b\u3093": 59, "\u306a\u3069\u306e\u30af\u30e9\u30b9\u306f": 59, "locals_": [59, 96, 98, 101, 102, 103, 104, 105, 106, 144], "globals_": [59, 96, 98, 101, 102, 103, 104, 105, 106, 144], "\u306e\u5f15\u6570\u306e\u7701\u7565\u53ef\u80fd\u306a\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 59, "\u57fa\u672c\u7684\u306b\u8a2d\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 59, "local": [59, 96], "global": 59, "\u95a2\u6570\u306e\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 59, "\u3053\u308c\u3089\u306e\u5f15\u6570\u3078\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u305f\u5834\u5408\u306b\u306f\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5404\u5909\u6570\u304c": 59, "\u30af\u30e9\u30b9\u306a\u3069\u306e\u305d\u308c\u305e\u308c\u306e\u30b9\u30b3\u30fc\u30d7\u304c\u7d42\u4e86\u3057\u305f\u6642\u70b9\u3067\u30b9\u30b3\u30fc\u30d7\u524d\u306e\u6bb5\u968e\u306b\u5fa9\u5143\u3055\u308c\u307e\u3059": 59, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u5404\u5206\u5c90\u306e\u7b87\u6240\u3067python\u306e\u5909\u6570\u3092\u66f4\u65b0\u3057\u305f\u304f\u7121\u3044\u5834\u5408\u306a\u3069\u306b\u5f79\u306b\u7acb\u3064\u30b1\u30fc\u30b9\u304c\u3042\u308a\u307e\u3059": 59, "\u30af\u30e9\u30b9\u306f\u5186\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 60, "\u5186\u306e\u4e2d\u592e\u306ex\u5ea7\u6a19": 60, "\u5186\u306e\u4e2d\u592e\u306ey\u5ea7\u6a19": 60, "\u305d\u3057\u3066\u534a\u5f84\u3068\u3057\u3066\u306e": 60, "\u5f15\u6570\u304c\u5fc5\u8981\u3068\u306a\u308a\u307e\u3059": 60, "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u306f\u4ed6\u306e": [60, 97, 177, 182, 229], "\u306a\u3069\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u5404\u5f15\u6570\u3082\u53d7\u3051\u4ed8\u3051\u307e\u3059": [60, 97, 177, 182, 229], "circle_basic_usag": 60, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u5186\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 60, "\u5186\u306e\u63cf\u753b": [60, 94, 111, 234], "\u5c5e\u6027\u3067\u306fx\u5ea7\u6a19\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 229], "circle_x": 60, "\u5c5e\u6027\u3067\u306fy\u5ea7\u6a19\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 229], "circle_i": 60, "\u5c5e\u6027\u3067\u306f\u5186\u306e\u534a\u5f84\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 60, "circle_radiu": 60, "\u5c5e\u6027\u306f\u5857\u308a\u306e\u8272\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 166, 177, 178, 182, 206, 207, 229], "circle_fill_color": 60, "fill_alpha": [60, 94, 97, 111, 146, 154, 164, 166, 177, 178, 182, 206, 207, 229, 234], "\u5c5e\u6027\u306f\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 166, 177, 178, 182, 206, 207, 229], "circle_fill_alpha": 60, "\u5c5e\u6027\u3067\u306f\u7dda\u306e\u8272\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 207, 229], "line_thick": [60, 62, 64, 65, 97, 116, 117, 118, 119, 132, 134, 142, 146, 152, 153, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 182, 206, 207, 229], "circle_line_color": 60, "line_alpha": [60, 65, 97, 146, 152, 153, 166, 177, 178, 182, 206, 207, 229], "\u5c5e\u6027\u3067\u306f\u7dda\u306e\u900f\u660e\u5ea6\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 207, 229], "circle_line_alpha": 60, "\u5c5e\u6027\u3067\u306f\u7dda\u306e\u5e45\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 207, 229], "circle_line_thick": 60, "line_dot_set": [60, 94, 97, 132, 142, 146, 152, 166, 177, 178, 182, 229], "\u5c5e\u6027\u3067\u306f\u70b9\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "linedotset": [60, 97, 119, 129, 131, 132, 133, 134, 138, 141, 142, 152, 166, 177, 178, 182, 229], "dot_siz": [60, 97, 117, 119, 129, 130, 132, 133, 134, 141, 142, 152, 166, 177, 178, 182, 229, 234], "circle_line_dot_set": 60, "line_dash_set": [60, 94, 97, 131, 146, 152, 166, 177, 178, 182, 229], "\u5c5e\u6027\u3067\u306f\u7834\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "linedashset": [60, 97, 118, 131, 132, 134, 141, 152, 166, 177, 178, 182, 229], "dash_siz": [60, 97, 111, 117, 118, 130, 131, 141, 152, 166, 177, 178, 182, 229], "space_s": [60, 97, 111, 117, 118, 120, 130, 131, 138, 141, 152, 166, 177, 178, 182, 229, 234], "circle_line_dash_set": 60, "line_round_dot_set": [60, 94, 97, 138, 146, 152, 166, 177, 178, 182, 229], "\u5c5e\u6027\u3067\u306f\u4e38\u30c9\u30c3\u30c8\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "linerounddotset": [60, 97, 120, 138, 141, 152, 166, 177, 178, 182, 229], "round_siz": [60, 97, 120, 138, 141, 152, 166, 177, 178, 182, 229, 234], "circle_line_round_dot_set": 60, "line_dash_dot_set": [60, 94, 97, 130, 146, 152, 166, 177, 178, 182, 229], "\u5c5e\u6027\u3067\u306f\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "linedashdotset": [60, 97, 117, 141, 152, 166, 177, 178, 182, 229], "circle_line_dash_dot_set": 60, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3067\u306e\u56de\u8ee2\u91cf": [60, 97, 152, 166, 177, 178, 182, 206, 229], "359": [60, 97, 152, 166, 177, 178, 182, 206, 229], "\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 207, 229], "circle_rotation_around_cent": 60, "set_rotation_around_point": [60, 86, 97, 152, 166, 177, 178, 182, 206, 229], "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u304b\u3089\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u56de\u8ee2\u91cf": [60, 97, 152, 166, 177, 178, 182, 206, 229], "\u3092\u66f4\u65b0\u3057\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 229], "get_rotation_around_point": [60, 86, 97, 152, 166, 177, 178, 182, 206, 229], "\u30e1\u30bd\u30c3\u30c9\u3067\u306f\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u56de\u8ee2\u91cf": [60, 97, 152, 166, 177, 178, 182, 206, 229], "circle_set_rotation_around_point": 60, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3067\u306ex\u8ef8\u306e\u62e1\u7e2e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 229], "001": [60, 97, 152, 166, 177, 178, 182, 204, 229], "005": [60, 97, 152, 166, 177, 178, 182, 206, 229], "circle_scale_x_from_cent": 60, "circle_scale_y_from_cent": 60, "set_scale_x_from_point": [60, 86, 97, 152, 166, 177, 178, 182, 206, 229], "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305fx\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u3066x\u8ef8\u306e\u62e1\u7e2e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206], "get_scale_x_from_point": [60, 86, 97, 152, 166, 177, 178, 182, 206, 229], "\u30e1\u30bd\u30c3\u30c9\u3067\u306f\u6307\u5b9a\u3055\u308c\u305fx\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305fx\u8ef8\u306e\u62e1\u7e2e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206], "125": [60, 97, 105, 133], "scale_x": [60, 97, 125, 152, 166, 177, 178, 182, 206, 229], "circle_scale_x_from_point": 60, "set_scale_y_from_point": [60, 86, 97, 152, 166, 177, 178, 182, 229], "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305fy\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u3066y\u8ef8\u306e\u62e1\u7e2e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "get_scale_y_from_point": [60, 86, 97, 152, 166, 177, 178, 182, 229], "\u30e1\u30bd\u30c3\u30c9\u3067\u306f\u6307\u5b9a\u3055\u308c\u305fy\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305fy\u8ef8\u306e\u62e1\u7e2e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "scale_i": [60, 97, 125, 152, 166, 177, 178, 182, 229], "circle_scale_y_from_point": 60, "flip_x": [60, 86, 97, 146, 152, 166, 177, 178, 182, 206, 229], "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306ex\u8ef8\u306e\u53cd\u8ee2\u72b6\u6cc1\u306e\u771f\u507d\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 229], "not_": [60, 86, 97, 114, 152, 166, 177, 178, 182, 206, 229], "circle_flip_x": 60, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5f62\u72b6\u306b\u3088\u3063\u3066\u306f\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fx\u8ef8\u3068y\u8ef8\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u9055\u3044\u304c\u5206\u304b\u308a\u3065\u3089\u3044\u30b1\u30fc\u30b9\u304c\u767a\u751f\u3057\u307e\u3059": [60, 97, 152, 182], "flip_i": [60, 86, 97, 146, 152, 166, 177, 178, 182, 206, 229], "circle_flip_i": 60, "skew_x": [60, 86, 97, 146, 152, 166, 177, 178, 182, 229], "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306ex\u8ef8\u306e\u6b6a\u307f\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "circle_skew_x": 60, "skew_i": [60, 86, 97, 146, 152, 166, 177, 178, 182, 229], "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306ey\u8ef8\u306e\u6b6a\u307f\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "circle_skew_i": 60, "line_cap": [60, 97, 152, 166, 177, 178, 182, 229], "linecap": [60, 97, 141, 152, 166, 177, 178, 182, 229], "child_mixin": [60, 97, 152, 154, 164, 166, 177, 178, 182, 206, 207, 229], "childmixin": [60, 89, 97, 152, 154, 164, 166, 177, 178, 182, 206, 207, 229], "\u5186\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 60, "\u5186\u306e\u4e2d\u5fc3\u306ex\u5ea7\u6a19": [60, 129], "\u5186\u306e\u4e2d\u5fc3\u306ey\u5ea7\u6a19": [60, 129], "\u5186\u306e\u534a\u5f84": [60, 129], "colorless": [60, 62, 97, 111, 113, 116, 127, 133, 141, 146, 152, 166, 177, 178, 182, 206, 207, 229, 234], "\u8a2d\u5b9a\u3059\u308b\u5857\u308a\u306e\u8272": [60, 97, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u3059\u308b\u5857\u308a\u306e\u900f\u660e\u5ea6": [60, 97, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u3059\u308b\u7dda\u306e\u8272": [60, 97, 152, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u3059\u308b\u7dda\u306e\u900f\u660e\u5ea6": [60, 97, 152, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u306e\u7dda\u5e45": [60, 97, 152, 166, 177, 178, 182, 207, 229], "\u8a2d\u5b9a\u3059\u308b\u7dda\u306e\u7aef\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [60, 97, 152, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u3059\u308b\u70b9\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [60, 97, 152, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u3059\u308b\u7834\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [60, 97, 152, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u3059\u308b\u4e38\u30c9\u30c3\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [60, 97, 152, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u3059\u308b\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [60, 97, 152, 166, 177, 178, 182, 229], "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8ffd\u52a0\u3059\u308b\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [60, 97, 152, 154, 164, 166, 177, 178, 182, 206, 207, 229], "\u3082\u3057\u3082none\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": [60, 97, 152, 154, 164, 166, 177, 178, 182, 206, 207, 229], "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u30b9\u30c6\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u8ffd\u52a0\u3055\u308c\u307e\u3059": [60, 97, 152, 154, 164, 166, 177, 178, 182, 206, 207, 229], "ffffff": [60, 62, 130, 131, 132, 134, 138, 142, 152, 166, 178, 183, 191], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [61, 108, 135], "\u30af\u30e9\u30b9\u306a\u3069\u306e\u4efb\u610f\u306e": 61, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 61, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u767b\u9332\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u306f\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u547c\u3070\u308c\u307e\u3059": 61, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5bfe\u8c61\u306e": 61, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u767b\u9332\u3092\u89e3\u9664\u3057\u307e\u3059": 61, "\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u3067\u306f\u57fa\u672c\u7684\u306a\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u3066\u3044\u307e\u3059": [61, 161], "\u57fa\u672c\u7684\u306a\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [61, 79, 88, 146, 159, 161, 162, 163, 234], "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u5404\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": [61, 79], "\u30e1\u30bd\u30c3\u30c9\u3092\u6301\u3063\u3066\u304a\u308a": [61, 79, 162], "\u305d\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u767b\u9332\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 61, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u306b\u5bfe\u3057\u3066\u30af\u30ea\u30c3\u30af\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 61, "click_basic_usage_of_the_click_interfac": 61, "\u3082\u3057\u3082\u4ee5\u4e0b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u56db\u89d2\u306e\u8272\u306f\u30de\u30bc\u30f3\u30bf\u306b\u5207\u308a\u66ff\u308f\u308a\u307e\u3059": 61, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u767b\u9332\u6e08\u307f\u306e\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 61, "\u30e1\u30bd\u30c3\u30c9\u3067\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u3092\u53d6\u308a\u9664\u3044\u3066\u3044\u308b\u305f\u3081\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u3082\u4f55\u3082\u767a\u751f\u3057\u307e\u305b\u3093": 61, "click_basic_usage_of_the_unbind_click_interfac": 61, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u5168\u3066\u306e\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u89e3\u9664\u3057\u307e\u3059": 61, "\u30e1\u30bd\u30c3\u30c9\u3067\u5168\u3066\u306e\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u3044\u3066\u304a\u308a": 61, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u3082\u4f55\u3082\u8d77\u304d\u307e\u305b\u3093": 61, "click_unbind_all_the_click_event_handl": 61, "mouse_ev": [61, 79, 161, 162, 163], "\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u30ea\u30b9\u30ca\u30fc\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 61, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u547c\u3070\u308c\u308b\u30cf\u30f3\u30c9\u30e9": 61, "\u6307\u5b9a\u3055\u308c\u305f\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u30fc\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 61, "\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304f\u5bfe\u8c61\u306e\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306a\u3069": [61, 79, 161, 162, 163], "\u5168\u3066\u306e\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 61, "\u30af\u30e9\u30b9\u306e\u8272\u306e\u8a2d\u5b9a\u3092\u6271\u3044\u307e\u3059": 62, "\u8272\u306e\u8a2d\u5b9a": [62, 127, 141], "\u306a\u3069\u306e\u5f15\u6570\u3084\u5c5e\u6027\u306f\u3053\u306e\u5024\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 62, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u306f\u4f8b\u3048\u3070": 62, "\u306a\u3069\u306e16\u9032\u6570\u306e\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 62, "color_basic_usag": 62, "\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9\u304c\u53d7\u3051\u4ed8\u3051\u3089\u308c\u307e\u3059": [62, 127], "\u306a\u3069\u306e6\u6587\u5b57\u306b\u3088\u308b\u6307\u5b9a": [62, 127, 141], "\u306a\u3069\u306e3\u6587\u5b57\u306b\u3088\u308b\u6307\u5b9a": [62, 127, 141], "\u3053\u308c\u306f": [62, 127, 141, 230], "\u3068\u540c\u3058\u5024\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059": [62, 127, 141], "\u306a\u3069\u306e1\u6587\u5b57\u306b\u3088\u308b\u6307\u5b9a": [62, 127, 141], "000005": [62, 127, 141], "\u8a18\u53f7\u3092\u7701\u7565\u3057\u305f\u6307\u5b9a": [62, 127, 141], "\u5b9a\u6570": [62, 127, 146], "\u3053\u306e\u8a2d\u5b9a\u306f\u8272\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": 62, "_strorstr": 62, "\u8272\u306e\u30af\u30e9\u30b9\u306e\u5b9f\u88c5\u3067\u3059": 62, "16\u9032\u6570\u306e\u8272\u306e\u6587\u5b57\u5217": 62, "000000": 62, "\u5b9a\u6570\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 64, "\u5b9a\u6570\u306f\u7121\u8272\u306e\u6307\u5b9a\u7528\u306e\u8a2d\u5b9a\u3067\u3059": 64, "\u3082\u3057\u5404\u8272\u95a2\u4fc2\u306e\u5f15\u6570\u3084\u5c5e\u6027\u306b\u3053\u306e\u5b9a\u6570\u3092\u8a2d\u5b9a\u3057\u305f\u5834\u5408": 64, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u305d\u306e\u8272\u306e\u6307\u5b9a\u7b87\u6240\u3067\u8272\u3092\u524a\u9664\u3057\u307e\u3059": 64, "\u5b9a\u6570\u306f": 64, "\u30af\u30e9\u30b9\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u3067\u3059": 64, "\u305d\u306e\u305f\u3081": [64, 99, 170, 228, 232], "\u8272\u95a2\u4fc2\u306e\u5f15\u6570\u3084\u5c5e\u6027\u306b\u3053\u306e\u5b9a\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 64, "\u5f15\u6570\u306e\u5404\u5024\u306b": 64, "\u5b9a\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u305f\u3081": 64, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u8272\u3092\u8868\u793a\u3057\u307e\u305b\u3093": 64, "colorless_basic_usag": 64, "black_000000": 65, "gray_999999": 65, "white_ffffff": [65, 153, 191], "red_ff0000": 65, "\u30af\u30e9\u30b9\u306e\u5404\u5b9a\u6570\u5b9a\u7fa9\u3092\u6301\u3061\u307e\u3059": 65, "\u5404\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u306f\u305d\u306e\u8272\u306e16\u9032\u6570\u306e\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9\u306b\u306a\u3063\u3066\u3044\u307e\u3059": [65, 153], "\u3053\u308c\u3089\u306e\u30af\u30e9\u30b9\u5b9a\u6570\u306f": [65, 153], "\u30af\u30e9\u30b9\u306e\u5024\u3068\u540c\u69d8\u306b\u52d5\u4f5c\u3057\u307e\u3059": [65, 153], "gray_333333": 65, "cyan_00ffff": 65, "colors_basic_usag": 65, "rect_siz": [65, 153], "font_siz": [65, 146, 153, 164, 208, 209, 210, 211, 212, 214], "12": [65, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 153, 207, 217, 218, 219, 232, 234], "outer_margin": [65, 153], "len": [65, 84, 153, 196], "get_colors_memb": [65, 153], "constant_nam": [65, 153], "enumer": [], "svgtext": [65, 109, 146, 153, 183, 227, 230], "text": [65, 109, 153, 164, 183, 208, 209, 210, 211, 212, 213, 214, 215, 216, 227, 230], "ccc": [65, 141, 153], "colors_definit": 65, "\u306a\u3069\u306e\u30b3\u30f3\u30c6\u30ca\u3068\u3057\u3066\u306e\u5404\u30af\u30e9\u30b9\u304c\u6301\u3064": 66, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5f15\u6570\u306b\u6307\u5b9a\u3055\u308c\u305f\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u5bfe\u8c61\u306e\u30b3\u30f3\u30c6\u30ca\u304c\u6301\u3064\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024": 66, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u6700\u521d\u306e\u56db\u89d2\u304c": 66, "\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u5b50\u304b\u3069\u3046\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3057\u3066\u3044\u307e\u3059": 66, "\u3082\u3057\u305d\u306e\u5b50\u3092\u542b\u3093\u3067\u3044\u308c\u3070\u305d\u306e\u5b50\u3092\u53d6\u308a\u9664\u304d": 66, "\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u30ed\u30b0\u3092\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 66, "\u30ed\u30b0\u306e\u8868\u793a\u306b\u306ff12\u30ad\u30fc\u3092\u62bc\u3057\u3066\u304f\u3060\u3055\u3044": 66, "remove_child": [66, 89, 146, 190], "sprite_contains_basic_usag": 66, "add_child": [66, 89, 110, 146, 165, 185, 190, 205], "\u5b50\u306e\u8ffd\u52a0": [66, 89, 190, 191], "\u5b50\u306e\u524a\u9664": [66, 89, 190, 191], "\u6307\u5b9a\u3055\u308c\u305f\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u6301\u3063\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": [66, 191], "\u30c1\u30a7\u30c3\u30af\u5bfe\u8c61\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [66, 191], "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u6307\u5b9a\u3055\u308c\u305f\u5b50\u3092\u6301\u3064\u5834\u5408true\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059": [66, 191], "remove_from_par": [66, 191], "\u3053\u306e\u30da\u30fc\u30b8\u3092\u8aad\u307f\u9032\u3081\u308b\u524d\u306b\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u3092\u78ba\u8a8d\u3057\u3066\u304a\u304f\u3068\u5f79\u306b\u7acb\u3064\u304b\u3082\u3057\u308c\u307e\u305b\u3093": [67, 98, 144, 186], "apysc\u3067\u306f": [67, 98], "\u30af\u30e9\u30b9\u3092\u540c\u69d8\u306e\u5229\u7528\u3067\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 67, "For": 67, "\u306e\u30d6\u30ed\u30c3\u30af\u3067\u306fjavascript\u4e0a\u3067\u306e\u7279\u5b9a\u306e\u30eb\u30fc\u30d7\u3092\u30b9\u30ad\u30c3\u30d7\u3059\u308b\u305f\u3081\u306b": 67, "\u30af\u30e9\u30b9\u304c\u4f7f\u7528\u3055\u308c\u307e\u3059": 67, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 67, "\u30ad\u30fc\u30ef\u30fc\u30c9\u306e\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 67, "\u30af\u30e9\u30b9\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b": [67, 144], "\u3082\u3057\u304f\u306f\u4ed6\u306e\u30eb\u30fc\u30d7\u30af\u30e9\u30b9": 67, "\u306e\u30d6\u30ed\u30c3\u30af\u3067\u306e\u307f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 67, "forarrayindic": [65, 67, 146, 153], "continue_basic_usag": 67, "\u30af\u30e9\u30b9\u3092": 67, "\u30d6\u30ed\u30c3\u30af\u5916\u3067\u4f7f\u7528\u3057\u305f\u5834\u5408\u306f\u30a8\u30e9\u30fc\u306b\u306a\u308a\u307e\u3059": 67, "instanti": 67, "loop": 67, "statement": 67, "exampl": [67, 213], "\u30eb\u30fc\u30d7\u306econtinue\u306e\u8868\u73fe\u3092\u6271\u3046\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 67, "\u3053\u306e\u30af\u30e9\u30b9\u306fwith\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u306e\u30eb\u30fc\u30d7\u5185\u3067\u306e\u307f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 67, "\u30b9\u30c6\u30fc\u30c8\u5185\u304c\u8a72\u5f53\u3057\u307e\u3059": 67, "\u30af\u30e9\u30b9\u306f\u65e5\u4ed8\u3068\u6642\u9593\u304b\u3093\u3051\u307d\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6271\u3046\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 68, "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e\u5f15\u6570\u3067\u306f": 68, "year": [68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 146], "month": [68, 69, 70, 71, 72, 74, 75, 76, 77, 78, 146], "dai": [68, 70, 71, 72, 73, 74, 75, 76, 77, 78, 146], "dt": [68, 74], "2022": [68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 217, 218, 219], "\u7701\u7565\u53ef\u80fd\u306a\u5f15\u6570\u3068\u3057\u3066": 68, "hour": [68, 146, 218], "minut": [68, 146], "\u306e\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 68, "millisecond": [68, 146, 219], "\u5404\u5024\u306fgetter\u3068setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 68, "\u5c5e\u6027\u3067\u3042\u308c\u3070\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5c5e\u6027\u7d4c\u7531\u3067\u5024\u306e\u53d6\u5f97\u3084\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 68, "weekday_pi": [68, 146], "weekday_j": [68, 146], "\u5c5e\u6027\u306fgetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u307f\u5b58\u5728\u3057\u307e\u3059": 68, "\u4ed6\u306e\u5c5e\u6027\u306e\u8a73\u7d30\u306b\u95a2\u3057\u3066\u306f\u4ee5\u4e0b\u306e\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044": 68, "now": [68, 146], "\u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306e\u3088\u3046\u306a\u5404\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 68, "\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8a73\u7d30\u306f\u4ee5\u4e0b\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044": 68, "\u65e5\u6642\u306b\u7d61\u3093\u3060\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 68, "4\u6841\u306e\u6570\u5b57\u306e\u5e74": 68, "2\u6841\u306e\u6708": 68, "2\u6841\u306e\u65e5": 68, "31": [68, 76, 183, 230], "2\u6841\u306e\u6642": 68, "23": [68, 200], "2\u6841\u306e\u5206": 68, "59": 68, "2\u6841\u306e\u79d2": 68, "\u30df\u30ea\u79d2": 68, "999": [68, 127], "\u521d\u671f\u5024\u306e\u4ee3\u5165\u8868\u73fe\u306e\u8ffd\u52a0\u3092\u30b9\u30ad\u30c3\u30d7\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024": 68, "\u30af\u30e9\u30b9\u3067\u306f\u5185\u90e8\u3067\u306e\u307f\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059": 68, "datetime_": [68, 69, 70, 71, 72, 73, 75, 76, 77, 78], "\u5c5e\u6027\u3067\u306f\u65e5\u306e\u5024\u306e\u53d6\u5f97\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 69, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u305d\u306e\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": [69, 70, 71, 72, 73, 75, 78], "\u305d\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306egetter\u3067\u306f": [69, 70, 72, 75], "\u578b\u306e\u65e5\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 69, "setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u540c\u69d8\u306b": [69, 70, 75], "\u578b\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": [69, 70, 71, 192], "31\u306e\u6574\u6570\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 69, "\u73fe\u5728\u306e\u65e5\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 69, "\u73fe\u5728\u306e\u65e5\u306e\u5024": 69, "\u5c5e\u6027\u3067\u306f\u6642\u9593\u306e\u5024\u306e\u53d6\u5f97\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 70, "\u578b\u306e\u6642\u9593\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 70, "23\u306e\u6574\u6570\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 70, "15": [70, 107, 109, 133, 139, 141, 147, 149, 155, 182, 183], "\u73fe\u5728\u306e\u6642\u9593\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 70, "\u73fe\u5728\u306e\u6642\u9593\u306e\u5024": 70, "\u5c5e\u6027\u3067\u306f\u30df\u30ea\u79d2\u306e\u5024\u306e\u53d6\u5f97\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 71, "\u305d\u306e\u30a4\u30f3\u30bf\u8cbb\u30d5\u30a7\u30a4\u30b9\u306egetter\u3067\u306f": 71, "\u578b\u306e\u30df\u30ea\u79d2\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 71, "setter\u5074\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u540c\u69d8\u306b": [71, 72, 73], "\u73fe\u5728\u306e\u30df\u30ea\u79d2\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 71, "\u73fe\u5728\u306e\u30df\u30ea\u79d2\u306e\u5024": 71, "\u5c5e\u6027\u3067\u306f\u5206\u306e\u5024\u306e\u53d6\u5f97\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 72, "\u578b\u306e\u5206\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 72, "\u578b\u306e\u5206\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 72, "59\u306e\u6574\u6570\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [72, 75], "\u73fe\u5728\u306e\u5206\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 72, "\u73fe\u5728\u306e\u5206\u306e\u5024": 72, "\u5c5e\u6027\u3067\u306f\u6708\u306e\u5024\u306e\u53d6\u5f97\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 73, "\u305d\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 73, "\u578b\u306e\u6708\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 73, "\u578b\u306e\u6708\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 73, "12\u306e\u7bc4\u56f2\u306e\u6574\u6570\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 73, "\u73fe\u5728\u306e\u6708\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 73, "\u73fe\u5728\u306e\u6708\u306e\u5024": 73, "\u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306f\u73fe\u5728\u306e\u6642\u9593\u3067\u306e": 74, "\u30af\u30e9\u30b9\u306f\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u3068\u3057\u3066\u5b9a\u7fa9\u3055\u308c\u305f": 74, "\u305d\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u5404\u5024\u306b\u73fe\u5728\u6642\u523b\u304c\u8a2d\u5b9a\u3055\u308c\u305f": 74, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u73fe\u5728\u306e\u5e74\u6708\u65e5\u3092\u8868\u793a\u3057\u307e\u3059": 74, "handl": [74, 99, 206, 231], "now_datetim": 74, "current": [74, 96, 142, 165, 223], "datetime_now_basic_usag": 74, "\u73fe\u5728\u6642\u523b\u304c\u8a2d\u5b9a\u3055\u308c\u305f": 74, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u307e\u3059": 74, "\u751f\u6210\u3055\u308c\u305f": [74, 207], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [74, 110], "py_now": 74, "ap_now": 74, "\u5c5e\u6027\u3067\u306f\u79d2\u306e\u5024\u306e\u53d6\u5f97\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 75, "\u578b\u306e\u79d2\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 75, "\u578b\u306e\u79d2\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 75, "\u73fe\u5728\u306e\u79d2\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 75, "\u73fe\u5728\u306e\u79d2\u306e\u5024": 75, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u73fe\u5728\u306e\u6708\u306e\u6708\u672b\u306e\u65e5\u4ed8\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 76, "\u3082\u3057\u73fe\u5728\u306e\u65e5\u4ed8\u304c2022": 76, "05\u3067\u3042\u308c\u3070\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306b\u3088\u3063\u30662022": 76, "31\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 76, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u3067\u306f\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 76, "\u5c5e\u6027\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 77, "\u5c5e\u6027\u306fjavascript\u306e\u66dc\u65e5\u306e\u5024": 77, "\u65e5\u66dc\u304c0\u3068\u306a\u308a": 77, "\u571f\u66dc\u304c6\u3068\u306a\u308a\u307e\u3059": 77, "\u5c5e\u6027\u306fpython\u306e\u66dc\u65e5\u306e\u5024": 77, "\u6708\u66dc\u304c0\u3068\u306a\u308a": 77, "\u65e5\u66dc\u304c6\u3068\u306a\u308a\u307e\u3059": 77, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fgetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u307f\u5b58\u5728\u3057\u307e\u3059": 77, "setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5b58\u5728\u3057\u307e\u305b\u3093": [77, 84], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u3053\u308c\u3089\u306e\u5404\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 77, "\u3053\u308c\u3089\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 77, "\u578b\u306e\u66dc\u65e5\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 77, "sundai": 77, "\u73fe\u5728\u306e\u66dc\u65e5\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 77, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306bjavascript\u306e\u66dc\u65e5\u306e\u5024\u3092\u30d9\u30fc\u30b9\u3068\u3057\u305f\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 77, "\u65e5\u66dc": 77, "\u6708\u66dc": 77, "\u706b\u66dc": 77, "\u6c34\u66dc": 77, "\u6728\u66dc": 77, "\u91d1\u66dc": 77, "\u571f\u66dc": 77, "weekdai": 77, "\u73fe\u5728\u306e\u66dc\u65e5\u306e\u5024": 77, "saturdai": 77, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306bpython\u306e\u66dc\u65e5\u306e\u5024\u3092\u30d9\u30fc\u30b9\u3068\u3057\u305f\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 77, "mondai": 77, "\u5c5e\u6027\u306f\u5e74\u306e\u5024\u306e\u53d6\u5f97\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 78, "\u305d\u306egetter\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 78, "\u578b\u306e\u5e74\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 78, "\u5c5e\u6027\u306esetter\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082\u540c\u69d8\u306b": 78, "\u578b\u306e\u5e74\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 78, "4\u6841\u306e\u6570\u5b57\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 78, "2023": 78, "\u73fe\u5728\u306e\u5e74\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 78, "\u73fe\u5728\u306e\u5e74\u306e\u5024": 78, "doubl": 79, "\u306a\u3069\u306e\u4efb\u610f\u306e": 79, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 79, "\u3082\u3057\u767b\u9332\u3057\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u3057\u305f\u5834\u5408": 79, "\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570\u306a\u3069\u304c\u547c\u3073\u51fa\u3055\u308c\u307e\u3059": 79, "\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u3067\u306f\u57fa\u672c\u7684\u306a\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u3066\u3044\u307e\u3059": [79, 162, 163], "\u305d\u308c\u3092\u4f7f\u3063\u3066\u30cf\u30f3\u30c9\u30e9\u3092\u767b\u9332\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 79, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u306b\u5bfe\u3057\u3066\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u6642\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u767b\u9332\u3057\u3066\u3044\u307e\u3059": 79, "\u5bfe\u8c61\u306e\u56db\u89d2\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u56db\u89d2\u306e\u8272\u306f\u30b7\u30a2\u30f3\u304b\u3089\u30de\u30bc\u30f3\u30bf\u306b\u5909\u5316\u3057\u307e\u3059": 79, "on_double_click": 79, "dblclick_basic_usag": 79, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u4efb\u610f\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 79, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u5168\u3066\u53d6\u308a\u9664\u304d\u307e\u3059": 79, "\u30e1\u30bd\u30c3\u30c9\u3067\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u306e\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u3044\u3066\u3044\u308b\u305f\u3081": 79, "\u56db\u89d2\u3092\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u3057\u3066\u3082\u4f55\u3082\u8d77\u304d\u307e\u305b\u3093": 79, "unbind_dblclick_basic_usag": 79, "\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u30ea\u30b9\u30ca\u30fc\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 79, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306e\u30cf\u30f3\u30c9\u30e9": 79, "\u6307\u5b9a\u3055\u308c\u305f\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u30fc\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 79, "\u5168\u3066\u306e\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 79, "\u95a2\u6570\u306f\u4efb\u610f\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u524a\u9664\u3092\u884c\u3044\u307e\u3059": 80, "\u524a\u9664\u3055\u308c\u305f\u5bfe\u8c61\u306f": 80, "\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u306a\u308a\u307e\u3059": 80, "\u3082\u3057\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c": 80, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u3042\u308c\u3070": 80, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30b9\u30c6\u30fc\u30b8\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 80, "\u306a\u3069\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u3042\u308c\u3070\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u305d\u308c\u3089\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 80, "\u95a2\u6570\u306e\u5f15\u6570\u3078\u306f\u4efb\u610f\u306eapysc\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 80, "\u3082\u3057\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c": 80, "\u95a2\u6570\u306f\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30b9\u30c6\u30fc\u30b8\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 80, "\u524a\u9664\u3055\u308c\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306fundefined\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u306a\u308a\u307e\u3059": 80, "delete_basic_usag": 80, "\u3082\u3057\u4ee5\u4e0b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068": 80, "\u95a2\u6570\u306f\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30b9\u30c6\u30fc\u30b8\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 80, "\u30af\u30e9\u30b9\u306fapysc\u306e\u8f9e\u66f8\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 81, "\u3054\u306e\u30af\u30e9\u30b9\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 81, "\u306e\u5024\u306e\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 81, "\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 81, "\u306e\u5024\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 81, "\u306e\u5024\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 81, "\u306e\u5024\u3068\u540c\u3058\u3088\u3046\u306b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f7f\u3063\u3066\u66f4\u65b0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 81, "\u306e\u5024\u306e\u53d6\u5f97\u3082\u540c\u69d8\u306b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f7f\u3063\u3066\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 81, "\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u30ad\u30fc\u3092\u6301\u305f\u306a\u3044\u5834\u5408": 81, "\u53d6\u308a\u51fa\u3055\u308c\u308b\u5024\u306f": 81, "anyvalu": 81, "\u578b\u306e\u5024\u3068\u306a\u308a\u307e\u3059": [81, 116, 126, 158, 195, 204], "\u3053\u306e\u6319\u52d5\u306fjavascript\u4e0a\u3067\u306e\u30cf\u30f3\u30c9\u30e9\u3067\u306e\u52d5\u7684\u306a\u66f4\u65b0\u51e6\u7406\u306a\u3069\u3092\u4f7f\u3046\u969b\u306b\u4fbf\u5229\u306a\u6642\u304c\u3042\u308a\u307e\u3059": 81, "retrieved_v": 81, "\u306e\u5024\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b": 81, "del": 81, "\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u3067\u524a\u9664\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 81, "_kei": [81, 83], "_valu": 81, "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u305f\u3081\u306e\u8f9e\u66f8\u306e\u30af\u30e9\u30b9\u3067\u3059": 81, "\u8f9e\u66f8\u306e\u521d\u671f\u5024": 81, "\u30af\u30e9\u30b9\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u8a2d\u5b9a": 81, "\u73fe\u5728\u306e\u8f9e\u66f8\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 81, "\u73fe\u5728\u306e\u8f9e\u66f8\u306e\u5024": 81, "\u30af\u30e9\u30b9\u306e\u30ad\u30fc\u3068\u5024\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 82, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u306e\u3088\u3046\u306b": 82, "\u30af\u30e9\u30b9\u3067\u306f\u30ad\u30fc\u3068\u5024\u306b\u5bfe\u3057\u3066\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 82, "dict_valu": 82, "a_valu": 82, "\u3053\u308c\u3089\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306fmypy\u3084pylance\u306a\u3069\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u3088\u308b\u30c1\u30a7\u30c3\u30af\u3084\u5b89\u5168\u9762\u3067\u5f79\u306b\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 82, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u8f9e\u66f8\u306e\u5024\u306e\u578b\u306b\u5bfe\u3059\u308bpylance\u304c\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3059": 82, "cannot": 82, "assign": 82, "declar": 82, "incompat": 82, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u8f9e\u66f8\u306e\u30ad\u30fc\u306e\u578b\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3059": 82, "\u304c\u5fc5\u8981\u306b\u306a\u3063\u3066\u3044\u308b\u4e00\u65b9\u3067": 82, "\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059": 82, "\u3082\u3057\u8907\u6570\u306e\u578b\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306a\u5834\u5408": 82, "\u3092\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 82, "10\u4ee5\u964d\u3092\u304a\u4f7f\u3044\u306e\u5834\u5408\u306b\u306f": 82, "\u306e\u8a18\u53f7\u306a\u3069\u3092\u4ee3\u308f\u308a\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 82, "\u306e\u578b\u3092\u6307\u5b9a\u3059\u308b\u306a\u3069": 82, "accept": [82, 127], "kei": [82, 83, 104, 105], "b_valu": 82, "all": 82, "\u30e1\u30bd\u30c3\u30c9\u306f\u5f15\u6570\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ad\u30fc\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 83, "\u3082\u3057\u6307\u5b9a\u3055\u308c\u305f\u30ad\u30fc\u304c\u8f9e\u66f8\u5185\u306b\u5b58\u5728\u3057\u306a\u3051\u308c\u3070\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 83, "\u30ad\u30fc\u304c\u7121\u304f\u3068\u3082\u30a8\u30e9\u30fc\u306b\u306f\u306a\u308a\u307e\u305b\u3093": 83, "\u8f9e\u66f8\u306e\u30ad\u30fc": 83, "\u306e\u7b2c\u4e00\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 83, "\u7b2c\u4e8c\u5f15\u6570\u306e": 83, "\u5f15\u6570\u306f\u7701\u7565\u53ef\u3067": [83, 99], "\u3082\u3057\u6307\u5b9a\u3055\u308c\u306a\u3051\u308c\u3070": 83, "\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u308a\u307e\u3059": 83, "got_val_1": 83, "got_val_2": 83, "got_val_3": 83, "expression_str": 83, "expressionstr": 83, "defaulttyp": 83, "\u6307\u5b9a\u3055\u308c\u305f\u30ad\u30fc\u306e\u8f9e\u66f8\u5185\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 83, "\u3082\u3057\u6307\u5b9a\u3055\u308c\u305f\u30ad\u30fc\u304c\u8f9e\u66f8\u306b\u5b58\u5728\u3057\u306a\u3044\u5834\u5408": 83, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 83, "\u5bfe\u8c61\u306e\u30ad\u30fc": 83, "\u4efb\u610f\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306e\u5024": 83, "result_valu": 83, "\u62bd\u51fa\u3055\u308c\u305f\u5024\u3082\u3057\u304f\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u5024": 83, "value_1": 83, "value_2": 83, "value_3": 83, "c": [83, 169], "\u5c5e\u6027\u306f\u8f9e\u66f8\u306e\u30ad\u30fc\u306e\u9577\u3055": 84, "\u578b\u306e\u6574\u6570\u3092\u8fd4\u5374\u3057\u307e\u3059": 84, "\u95a2\u6570\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u304a\u3089\u305a\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 84, "\u8f9e\u66f8\u306e\u5024\u306e\u9577\u3055": 84, "\u3053\u306e\u8f9e\u66f8\u306e\u5024\u306e\u9577\u3055": 84, "\u306a\u3069\u306eapysc\u306e\u8868\u793a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u57fa\u5e95\u30af\u30e9\u30b9\u3068\u306a\u308a\u307e\u3059": 85, "\u5404\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c": 85, "\u3092\u7d99\u627f\u3057\u3066\u3044\u308b\u3053\u3068\u3092": 85, "\u95a2\u6570\u3092\u4f7f\u3063\u3066\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 85, "verifi": 85, "each": [85, 161], "apysc\u306f\u3053\u306e\u30af\u30e9\u30b9\u3092\u57fa\u672c\u7684\u306a\u5171\u901a\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u4f7f\u7528\u3057\u305f\u308a": 85, "\u3082\u3057\u304f\u306f\u5225\u306e": 85, "\u3092\u7d99\u627f\u3057\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4f5c\u6210\u51e6\u7406\u306a\u3069\u3067\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 85, "\u5404\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 85, "\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u3067\u306f\u305d\u308c\u305e\u308c\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u30661\u30641\u3064\u8a73\u3057\u304f\u89e6\u308c\u3066\u3044\u307e\u3059": 85, "\u8868\u793a": [85, 86], "\u975e\u8868\u793a": [85, 86], "\u30af\u30e9\u30b9\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [85, 146], "\u306e\u5404\u30b5\u30d6\u30af\u30e9\u30b9\u306ex\u3084visible\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u5c5e\u6027\u306e\u6982\u8981\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 86, "x\u3084y": 86, "visible\u306a\u3069\u306e\u5c5e\u6027\u306e\u53d6\u5f97\u3084\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 86, "x\u3068y\u5c5e\u6027\u3067\u306fx\u3068y\u5ea7\u6a19\u3092\u66f4\u65b0": 86, "\u53d6\u5f97\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 86, "do_and_graphics_base_prop_abstract_x_and_i": 86, "\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f\u4ee5\u4e0b\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": [86, 94, 229], "\u5c5e\u6027\u3067\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u8868\u793a": 86, "\u975e\u8868\u793a\u306e\u5c5e\u6027\u5024\u3092\u53d6\u5f97": 86, "\u66f4\u65b0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 86, "do_and_graphics_base_prop_abstract_vis": 86, "\u30e1\u30bd\u30c3\u30c9\u3067\u306f\u56de\u8ee2\u306e\u89d2\u5ea6\u306e\u5024\u306e\u53d6\u5f97\u3068\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 86, "do_and_graphics_base_prop_abstract_rot": 86, "\u4e2d\u592e\u5ea7\u6a19\u57fa\u6e96\u306e\u56de\u8ee2": 86, "\u6307\u5b9a\u5ea7\u6a19\u57fa\u6e96\u306e\u56de\u8ee2": 86, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [86, 146, 220, 234], "\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u62e1\u7e2e\u306e\u5024\u306e\u53d6\u5f97\u3068\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 86, "scale_valu": 86, "01": [86, 166, 195, 200], "do_and_graphics_base_prop_abstract_scal": 86, "scale_from_cent": 86, "\u4e2d\u592e\u5ea7\u6a19\u57fa\u6e96\u306e\u62e1\u7e2e": 86, "scale_from_point": 86, "\u6307\u5b9a\u5ea7\u6a19\u57fa\u6e96\u306e\u62e1\u7e2e": 86, "\u306e\u5c5e\u6027\u3067\u306f\u53cd\u8ee2\u306e\u5c5e\u6027\u5024\u306e\u53d6\u5f97\u3068\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 86, "lineopt": 86, "draw_lin": [86, 94, 111, 117, 118, 119, 120, 121, 138, 141, 146, 234], "x_start": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "y_start": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "x_end": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "y_end": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "do_and_graphics_base_prop_abstract_flip": 86, "\u6a2a\u8ef8\u306e\u53cd\u8ee2": 86, "\u7e26\u8ef8\u306e\u53cd\u8ee2": 86, "\u306e\u5404\u5c5e\u6027\u3067\u306f\u6b6a\u307f\u306e\u5024\u3092\u53d6\u5f97": 86, "do_and_graphics_base_prop_abstract_skew": 86, "x\u8ef8\u306e\u6b6a\u307f": 86, "y\u8ef8\u306e\u6b6a\u307f": 86, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u7279\u5b9a\u306ecss\u306e\u6587\u5b57\u5217\u3092\u8fd4\u5374\u3057": 87, "\u30e1\u30bd\u30c3\u30c9\u306f\u7279\u5b9a\u306ecss\u306e\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 87, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fcss\u540d\u3068\u3057\u3066\u306e": 87, "\u30e1\u30bd\u30c3\u30c9\u3067\u306fcss\u306e\u5024\u306e\u6587\u5b57\u5217\u3068\u3057\u3066\u306e": 87, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f1\u79d2\u3054\u3068\u306e\u30bf\u30a4\u30de\u30fc\u3067css\u306e": 87, "displai": [87, 89, 93], "\u306e\u5024\u304c\u3082\u3057\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u7a7a\u6587\u5b57\u306b\u306a\u3063\u3066\u3044\u308c\u3070": 87, "\u306e\u5024\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 87, "\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u4ee5\u5916\u306e\u5024\u306b\u306a\u3063\u3066\u3044\u308c\u3070\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u5024\u3078\u3068\u623b\u3057\u3066\u3044\u307e\u3059": 87, "_spriteopt": 87, "display_css_v": 87, "display_object_get_and_set_css_basic_usag": 87, "css\u306e\u8a2d\u5b9a\u5024\u306e\u6587\u5b57\u5217\u3092\u53d6\u5f97\u3057\u307e\u3059": 87, "css\u540d": 87, "css": 87, "css\u306e\u5024": 87, "css\u306b\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u5217\u306e\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 87, "css\u306e\u5024\u306e\u6587\u5b57\u5217": 87, "\u30af\u30e9\u30b9\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u767b\u9332\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 88, "\u5404": [88, 186, 190], "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u30af\u30ea\u30c3\u30af\u3084\u30de\u30a6\u30b9\u30aa\u30fc\u30d0\u30fc\u306a\u3069\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u767b\u9332\u7528\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 88, "\u306b\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3067\u304d": 88, "\u4f8b\u3048\u3070\u30af\u30ea\u30c3\u30af\u6642\u306b\u5b9f\u884c\u3057\u305f\u3044\u95a2\u6570\u306a\u3069\u3092\u767b\u9332\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 88, "mouseov": [88, 146, 159, 160, 234], "\u306a\u3069\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u4efb\u610f\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9": 88, "callable\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 88, "\u3092\u767b\u9332\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 88, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30af\u30ea\u30c3\u30af\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u3066\u304a\u308a": [88, 133], "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u8272\u304c\u5909\u308f\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059": 88, "display_object_mouse_event_basic_usag": 88, "\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f\u4ee5\u4e0b\u306e\u5404\u30da\u30fc\u30b8\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": 88, "mousedown": [88, 146, 159, 160, 234], "mouseup": [88, 146, 159, 160, 234], "mouseout": [88, 146, 159, 160, 234], "mousemov": [88, 146, 159, 160, 234], "\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 89, "\u5c5e\u6027\u3068": 89, "\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 89, "\u5c5e\u6027\u306fgetter\u306e\u307f\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u306a\u308a\u307e\u3059": 89, "\u3053\u306e\u5c5e\u6027\u5024\u306f": 89, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3082\u3057\u304f\u306f": 89, "\u306a\u3069\u306e\u30b3\u30f3\u30c6\u30ca\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u306a\u308a\u307e\u3059": 89, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u81ea\u8eab\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u53d6\u308a\u9664\u304d": 89, "\u753b\u9762\u4e0a\u306b\u8868\u793a\u3055\u308c\u306a\u3044\u72b6\u614b\u306b\u3057\u307e\u3059": 89, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [89, 146], "\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 89, "\u306f\u81ea\u8eab\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 89, "\u53d6\u308a\u9664\u304b\u308c\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u4ed6\u306e\u89aa": 89, "\u30b3\u30f3\u30c6\u30ca": 89, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u8ffd\u52a0\u3055\u308c\u308b\u307e\u3067\u753b\u9762\u306b\u8868\u793a\u3055\u308c\u307e\u305b\u3093": 89, "display_object_remove_from_parent_basic_usag": 89, "add_child\u3084remove_child\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u305f\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u307e\u3059": 89, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u308b\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 89, "\u3082\u3057\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u89aa\u3092\u6301\u3063\u3066\u3044\u306a\u3044": 89, "\u753b\u9762\u306b\u8ffd\u52a0\u3055\u308c\u3066\u3044\u306a\u3044": 89, "\u5834\u5408": 89, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fnone\u3092\u8fd4\u5374\u3057\u307e\u3059": 89, "\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 89, "\u3082\u3057\u3082\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304cnone\u306e\u5834\u5408": 89, "\u89aa\u306e\u7121\u3044\u72b6\u614b\u306e\u5834\u5408": 89, "\u306e\u8868\u793a": 90, "\u975e\u8868\u793a\u306e\u72b6\u614b\u3092\u5207\u308a\u66ff\u3048\u307e\u3059": 90, "true\u3092\u8a2d\u5b9a\u3057\u305f\u5834\u5408\u305d\u306e": 90, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u8868\u793a\u72b6\u614b\u306b\u306a\u308a\u307e\u3059": 90, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u72b6\u614b\u306b\u306a\u308a\u307e\u3059": 90, "false\u3092\u8a2d\u5b9a\u3059\u308b\u3068\u305d\u306e": 90, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u975e\u8868\u793a\u306b\u306a\u308a\u307e\u3059": 90, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u6642\u306bvisible\u306e\u8a2d\u5b9a\u3092\u5207\u308a\u66ff\u3048\u3066\u3044\u307e\u3059": 90, "\u5de6\u5074\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u306f\u5de6\u5074\u306e\u56db\u89d2\u306f\u975e\u8868\u793a\u3068\u306a\u308a": 90, "\u53f3\u5074\u306b\u5225\u306e\u56db\u89d2\u304c\u8868\u793a\u3055\u308c\u307e\u3059": 90, "on_rectangle_1_click": 90, "first": [90, 127, 142, 221, 225], "on_rectangle_2_click": 90, "display_object_visible_basic_usag": 90, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u53ef\u8996\u72b6\u614b\u304b\u3069\u3046\u304b\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 90, "\u3082\u3057\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u8868\u793a\u72b6\u614b\u3067\u3042\u308c\u3070true\u3068\u306a\u308a\u307e\u3059": 90, "\u30af\u30e9\u30b9\u306ex\u3068y\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 91, "x\u3068y\u5c5e\u6027\u306f": 91, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e2\u6b21\u5143\u306e\u5ea7\u6a19\u4f4d\u7f6e\u3092\u5909\u66f4\u3057\u307e\u3059": 91, "\u306e\u5404\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306fx\u3068y\u5c5e\u6027\u3092\u6301\u3063\u3066\u304a\u308a": 91, "\u305d\u308c\u3092\u53c2\u7167\u3057\u3066\u5ea7\u6a19\u5024\u306e\u53d6\u5f97\u3068\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 91, "updat": [91, 111, 129, 134, 139], "display_object_x_and_y_basic_usag": 91, "\u306e\u7d2f\u7b97\u4ee3\u5165\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 91, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u5ea6\u306b10px\u305a\u3064y\u5ea7\u6a19\u3092\u52a0\u7b97\u3057\u3066\u3044\u307e\u3059": 91, "display_object_x_and_y_augmented_assign": 91, "x\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 91, "y\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 91, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fapysc\u306ehtml\u3092googl": 92, "colaboratory\u4e0a\u3067\u8868\u793a\u3057\u307e\u3059": 92, "\u5229\u7528\u3059\u308b\u306b\u306f\u4e8b\u524d\u306bgoogl": 92, "colaboratory\u4e0a\u3067apysc\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 92, "\u306e\u8a18\u53f7\u3068pip\u4e94\u4e07\u5ea6\u3067googl": 92, "colaboratory\u4e0a\u306b\u3053\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 92, "pip": [92, 93, 179], "instal": [92, 93, 179], "\u95a2\u6570\u306e\u4ee3\u308f\u308a\u306b": [92, 93], "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3046\u3053\u3068\u3067\u51fa\u529b\u7d50\u679c\u306ehtml\u3092\u8868\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 92, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u8907\u6570\u306e\u51fa\u529b\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u3092\u30e6\u30cb\u30fc\u30af\u306b\u3059\u308b\u305f\u3081\u306e": 92, "html_file_nam": [92, 93], "\u5f15\u6570\u306b\u3088\u308b\u30d5\u30a1\u30a4\u30eb\u540d\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 92, "\u30e6\u30cb\u30fc\u30af\u306b\u8a2d\u5b9a\u3057\u306a\u3044\u3068html\u30d5\u30a1\u30a4\u30eb\u304c\u4e0a\u66f8\u304d\u3055\u308c\u3066\u3057\u307e\u3044\u307e\u3059": 92, "jupyter_test_1": 92, "html": [65, 92, 93, 179, 187], "minifi": [93, 187, 189, 232, 233], "html\u5168\u4f53\u3092\u4fdd\u5b58\u3057\u7d50\u679c\u3092googl": 92, "\u51fa\u529b\u3055\u308c\u308bhtml\u306e\u30d5\u30a1\u30a4\u30eb\u540d": [92, 93, 187], "html\u3092\u6700\u5c0f\u5316": 93, "\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024": [93, 187], "false\u306e\u8a2d\u5b9a\u306f\u30c7\u30d0\u30c3\u30b0\u6642\u306a\u3069\u306b\u5f79\u306b\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 93, "\u95a2\u6570\u306fapysc\u306b\u3088\u3063\u3066\u751f\u6210\u3055\u308c\u305fhtml\u3092jupyter\u4e0a\u3067\u8868\u793a\u3057\u307e\u3059": 93, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fjupyter\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u4e8b\u524d\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u5fc5\u8981\u3067\u3059": 93, "\u3082\u3057\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u3070": 93, "notebook": 93, "\u306a\u3069\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304a\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 93, "\u8a73\u7d30\u306f\u4ee5\u4e0b\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": [93, 94, 159, 166, 188], "jupyt": 93, "softwar": 93, "ipython": 93, "ifram": 93, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 93, "\u3082\u3057\u3082\u8a72\u5f53\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u95a2\u4fc2\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408jupyter\u306e\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u3092\u304a\u8a66\u3057\u304f\u3060\u3055\u3044": 93, "v": [93, 175], "code\u4e0a\u306ejupyter\u306f\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093": 93, "code\u4e0a\u306e\u5236\u9650\u306b\u8d77\u56e0\u3059\u308b\u305f\u3081\u5c06\u6765\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u304b\u3069\u3046\u304b\u306f\u672a\u5b9a\u3067\u3059": 93, "\u53ca\u3073": [93, 136], "jupyterlab\u306f\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 93, "\u51fa\u529b\u7d50\u679c\u306ehtml\u3092jupyter\u4e0a\u3067\u8868\u793a\u3059\u308b\u305f\u3081\u306b": 93, "\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 93, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u8907\u6570\u306ehtml\u30d5\u30a1\u30a4\u30eb\u3092\u4fdd\u5b58\u3059\u308b\u969b\u306b\u30d5\u30a1\u30a4\u30eb\u540d\u304c\u88ab\u3089\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b": 93, "\u5f15\u6570\u306b\u30e6\u30cb\u30fc\u30af\u306a\u30d5\u30a1\u30a4\u30eb\u540d\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u3067\u3059": 93, "\u3053\u306e\u5024\u306b\u30e6\u30cb\u30fc\u30af\u306a\u5024\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408html\u304c\u4e0a\u66f8\u304d\u3055\u308c\u3066\u3057\u307e\u3044\u307e\u3059": 93, "jupyter_sample_1": 93, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fjupyterlab\u3082\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 93, "html\u5168\u4f53\u3092\u4fdd\u5b58\u3057\u7d50\u679c\u3092jupyter\u4e0a\u3067\u8868\u793a\u3057\u307e\u3059": 93, "\u73fe\u5728\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fv": 93, "code\u4e0a\u306ejupyter\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093": 93, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4e8b\u524d\u306ejupyter\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u5fc5\u8981\u3067\u3059": 93, "\u30d1\u30c3\u30b1\u30fc\u30b8\u306a\u3069": 93, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 94, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u5857\u308a\u306e\u8272": 94, "\u7dda\u306e\u8272": 94, "\u7dda\u306e\u900f\u660e\u5ea6": 94, "\u7dda\u5e45\u306a\u3069\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 94, "\u56db\u89d2\u3084\u4e38": 94, "\u6955\u5186": 94, "\u591a\u89d2\u5f62": 94, "\u7dda": 94, "\u6298\u308c\u7dda": 94, "\u30d1\u30b9\u306a\u3069\u306e\u63cf\u753b\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 94, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5857\u308a\u306e\u8272\u3068\u5857\u308a\u306e\u900f\u660e\u5ea6\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 94, "draw_interfaces_abstract_begin_fil": 94, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u7dda\u306e\u8272\u3068\u7dda\u306e\u900f\u660e\u5ea6": 94, "draw_interfaces_abstract_line_styl": 94, "\u5404\u63cf\u753b\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 94, "draw_": 94, "\u306e\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u6301\u3063\u3066\u304a\u308a": 94, "svg\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u3092\u63cf\u753b\u3057\u307e\u3059": 94, "draw_interfaces_abstract_each_drawing_interfac": 94, "\u56db\u89d2\u306e\u63cf\u753b": [94, 111, 182, 234], "draw_round_rect": [94, 111, 146, 234], "\u89d2\u4e38\u306e\u56db\u89d2\u306e\u63cf\u753b": [94, 111, 234], "\u6955\u5186\u63cf\u753b": [94, 97, 111, 234], "move_to": [94, 111, 136, 141, 146, 179, 234], "\u7dda\u306e\u63cf\u753b\u4f4d\u7f6e\u306e\u5909\u66f4": [94, 111, 178, 234], "line_to": [94, 111, 141, 146, 179, 234], "\u6307\u5b9a\u5ea7\u6a19\u3078\u306e\u7dda\u306e\u63cf\u753b": [94, 111, 178, 234], "\u7dda\u306e\u63cf\u753b": [94, 111, 152, 234], "draw_dotted_lin": [94, 111, 134, 141, 146, 152, 234], "\u70b9\u7dda\u306e\u63cf\u753b": [94, 111, 152, 234], "draw_dashed_lin": [94, 111, 134, 141, 146, 152, 234], "\u7834\u7dda\u306e\u63cf\u753b": [94, 111, 152, 234], "draw_round_dotted_lin": [94, 111, 134, 141, 146, 152, 234], "\u70b9\u7dda": [94, 111, 130, 152, 234], "\u4e38": [94, 111, 152, 234], "\u306e\u63cf\u753b": [94, 111, 152, 234], "draw_dash_dotted_lin": [94, 111, 134, 141, 146, 152, 234], "\u4e00\u70b9\u9396\u7dda\u306e\u63cf\u753b": [94, 111, 152, 234], "draw_polygon": [94, 111, 114, 146, 234], "\u591a\u89d2\u5f62\u63cf\u753b": [94, 111, 177, 234], "\u5857\u308a\u8a2d\u5b9a": [94, 190], "\u5857\u308a\u306e\u900f\u660e\u5ea6\u8a2d\u5b9a": 94, "\u7dda\u306e\u8272\u8a2d\u5b9a": 94, "\u7dda\u306e\u900f\u660e\u5ea6\u8a2d\u5b9a": 94, "\u7dda\u5e45\u8a2d\u5b9a": 94, "\u70b9\u7dda\u8a2d\u5b9a": 94, "\u7834\u7dda\u8a2d\u5b9a": 94, "\u4e00\u70b9\u9396\u7dda\u8a2d\u5b9a": 94, "\u306eenum\u306e\u30af\u30e9\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [95, 107], "\u306eenum\u306e\u30af\u30e9\u30b9\u306f\u5404\u30a4\u30fc\u30b8\u30f3\u30b0\u95a2\u6570\u306b\u3064\u3044\u3066\u5b9a\u7fa9\u3057\u3066\u3044\u307e\u3059": 95, "\u3053\u308c\u3089\u306f": 95, "\u306a\u3069\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u4f7f\u7528\u3057\u307e\u3059": 95, "\u306a\u3069\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f": 95, "\u5f15\u6570\u3092\u6301\u3063\u3066\u304a\u308a": [95, 233], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u305d\u306e\u5f15\u6570\u306b": 95, "\u306eenum\u306e\u5024\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 95, "easing_enum_basic_usag": 95, "\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3057\u305f\u5834\u5408": 95, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306f\u7dda\u5f62": 95, "\u30b9\u30bf\u30fc\u30c8\u304b\u3089\u7d42\u4e86\u307e\u3067\u4e00\u5b9a\u306e\u5909\u52d5": 95, "\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3068\u306a\u308a\u307e\u3059": 95, "easing_enum_default_set": 95, "\u306f\u6700\u521d\u306f\u9045\u304f\u30b9\u30bf\u30fc\u30c8\u3057": 95, "\u6700\u5f8c\u306e\u65b9\u3067\u901f\u3044\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306b\u306a\u308a\u307e\u3059": 95, "\u306f\u6700\u521d\u306f\u901f\u3044\u30b9\u30d4\u30fc\u30c9\u3067\u30b9\u30bf\u30fc\u30c8\u3057": 95, "\u6700\u5f8c\u306e\u65b9\u3067\u9045\u3044\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306b\u306a\u308a\u307e\u3059": 95, "\u306f\u6700\u521d\u3068\u6700\u5f8c\u306e\u4e21\u65b9\u304c\u9045\u3044\u30b9\u30d4\u30fc\u30c9\u3068\u306a\u308a": 95, "\u4e2d\u9593\u3067\u4e00\u756a\u901f\u3044\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3068\u306a\u308a\u307e\u3059": 95, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5dee\u304c\u5206\u304b\u308b\u3088\u3046\u306b": 95, "\u306e\u305d\u308c\u305e\u308c\u3092\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 95, "_easingopt": 95, "easing_1": 95, "easing_2": 95, "easing_3": 95, "rectangle_3": [95, 107, 112, 115, 124, 222], "easing_enum_ease_differ": 95, "\u3053\u306e\u7bc0\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306b\u304a\u3051\u308b\u5404\u30a4\u30fc\u30ba\u30a4\u30f3\u306e\u8a2d\u5b9a\u306b\u3088\u308b\u4f8b\u3092\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 95, "ease_in_sin": 95, "ease_in_quad": 95, "\u306e\u5404\u5024\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": [95, 222], "easing_enum_ease_in_1": 95, "ease_in_quart": 95, "ease_in_expo": 95, "easing_enum_ease_in_2": 95, "ease_in_circ": 95, "ease_in_back": 95, "easing_enum_ease_in_3": 95, "ease_in_elast": 95, "ease_in_bounc": 95, "easing_enum_ease_in_4": 95, "\u3053\u306e\u7bc0\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306b\u304a\u3051\u308b\u5404\u30a4\u30fc\u30ba\u30a2\u30a6\u30c8\u306e\u8a2d\u5b9a\u306b\u3088\u308b\u4f8b\u3092\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 95, "ease_out_sin": 95, "ease_out_quad": 95, "ease_out_cub": 95, "easing_enum_ease_out_1": 95, "ease_out_quart": 95, "ease_out_expo": 95, "easing_enum_ease_out_2": 95, "ease_out_circ": 95, "ease_out_back": 95, "easing_enum_ease_out_3": 95, "ease_out_elast": 95, "ease_out_bounc": 95, "easing_enum_ease_out_4": 95, "\u3053\u306e\u7bc0\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306b\u304a\u3051\u308b\u5404\u30a4\u30fc\u30ba\u30a4\u30f3\u30a2\u30a6\u30c8\u306e\u8a2d\u5b9a\u306b\u3088\u308b\u4f8b\u3092\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 95, "ease_in_out_sin": 95, "ease_in_out_quad": 95, "ease_in_out_cub": 95, "easing_enum_ease_in_out_1": 95, "ease_in_out_quart": 95, "ease_in_out_expo": 95, "easing_enum_ease_in_out_2": 95, "ease_in_out_circ": 95, "ease_in_out_back": 95, "easing_enum_ease_in_out_3": 95, "ease_in_out_elast": 95, "easing_enum_ease_in_out_4": 95, "\u3053\u306e\u30da\u30fc\u30b8\u3092\u8aad\u307f\u9032\u3081\u308b\u524d\u306b\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u3092\u3054\u78ba\u8a8d\u3044\u305f\u3060\u304f\u3068\u5f79\u306b\u7acb\u3064\u304b\u3082\u3057\u308c\u307e\u305b\u3093": 96, "\u30af\u30e9\u30b9\u3082\u4ed6\u306e\u30c7\u30fc\u30bf\u306e\u30af\u30e9\u30b9\u3068\u540c\u3058\u7406\u7531\u3067\u4f7f\u308f\u308c\u3066\u3044\u307e\u3059": 96, "\u30af\u30e9\u30b9\u306fapysc\u306e\u5206\u5c90\u6761\u4ef6\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 96, "\u3053\u306e\u30af\u30e9\u30b9\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 96, "\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3068\u540c\u3058\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 96, "\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u3068\u5171\u306b\u4f7f\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": [96, 101, 102, 103, 104, 105, 106], "\u30af\u30e9\u30b9\u306e\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u306e\u76f4\u5f8c\u306b\u306e\u307f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [96, 98], "condition_1": [96, 124, 234], "condition_2": [96, 124, 234], "\u30af\u30e9\u30b9\u306e\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u9593\u306b\u30b3\u30fc\u30c9\u3092\u631f\u3093\u3060\u5834\u5408\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 96, "between": [96, 98], "rais": [96, 98, 148], "onli": [96, 98, 133], "\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b\u3066\u76f4\u63a5": 96, "\u306e\u5024\u306e\u6761\u4ef6\u5024\u3092\u4f5c\u6210\u3057\u305f\u308a\u6bd4\u8f03\u8868\u73fe\u3092\u884c\u3046\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093": 96, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u3082\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 96, "mayb": 96, "you": [96, 139, 205], "anyth": 96, "comparison": 96, "constructor": 96, "g": 96, "any_valu": 96, "directli": 96, "support": [96, 181], "so": 96, "separ": 96, "follow": 96, "\u5206\u5c90\u6761\u4ef6\u306e\u5404\u30af\u30e9\u30b9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u5909\u6570\u306e\u5fa9\u5143\u8a2d\u5b9a": [96, 98, 101, 102, 103, 104, 105, 106, 144], "\u306e\u5206\u5c90\u6761\u4ef6\u306e\u8868\u73fe\u3092\u8ffd\u52a0\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 96, "\u5224\u5b9a\u306b\u4f7f\u308f\u308c\u308bboolean\u306e\u771f\u507d\u5024": [96, 144], "\u73fe\u5728\u306e\u30b9\u30b3\u30fc\u30d7\u306e\u5404\u30ed\u30fc\u30ab\u30eb\u5909\u6570": [96, 101, 102, 103, 104, 105, 106, 144], "\u95a2\u6570\u306e\u5024\u3092\u5f15\u6570\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": 96, "\u3082\u3057\u3082\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306b\u306f": 96, "\u306e\u30b9\u30b3\u30fc\u30d7\u306e\u7d42\u4e86\u6642\u306b\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fvariablenamemixin\u30af\u30e9\u30b9\u3092\u7d99\u627f\u3057\u305f\u5404\u5909\u6570": 96, "\u306e\u5024\u3092\u30b9\u30b3\u30fc\u30d7\u524d\u306e\u72b6\u614b\u306b\u5fa9\u5143\u3057\u307e\u3059": 96, "\u3053\u306e\u8a2d\u5b9a\u306f": [96, 98, 141, 144, 160, 189], "\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u30b3\u30fc\u30c9\u3067\u5404\u5909\u6570\u3092\u66f4\u65b0\u3057\u305f\u304f\u306a\u3044\u5834\u5408\u306b\u5f79\u7acb\u3061\u307e\u3059": 96, "\u73fe\u5728\u306e\u30b9\u30b3\u30fc\u30d7\u306e\u5404\u30b0\u30ed\u30fc\u30d0\u30eb\u5909\u6570": [96, 98, 101, 102, 103, 104, 105, 106, 144], "\u8a2d\u5b9a\u3059\u308b\u5834\u5408\u306b\u306fglobal": [96, 98, 101, 102, 103, 104, 105, 106, 144], "\u95a2\u6570\u306e\u5024\u3092\u3053\u306e\u5f15\u6570\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": [96, 98, 101, 102, 103, 104, 105, 106, 144], "\u3053\u306e\u8a2d\u5b9a\u306flocals_\u5f15\u6570\u3068\u540c\u3058\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": [96, 98, 101, 102, 103, 104, 105, 106, 144], "\u73fe\u5728apysc\u3067\u306f\u6761\u4ef6\u5024\u3092\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u5185\u3067\u76f4\u63a5\u4f5c\u6210\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093": 96, "\u3053\u306e\u30af\u30e9\u30b9\u306f": [96, 98, 101, 102, 103, 104, 105, 106, 147, 176, 186], "\u30af\u30e9\u30b9\u306b\u3088\u308b\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u306e\u76f4\u5f8c\u3067\u306e\u307f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 96, "avoid": 96, "note": [96, 205], "predefin": 96, "pass": [96, 160, 222, 224, 226], "\u30af\u30e9\u30b9\u306f\u6955\u5186\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u751f\u6210\u3057\u307e\u3059": 97, "\u6955\u5186\u306e\u4e2d\u592e\u306ex\u5ea7\u6a19": [97, 133], "\u6955\u5186\u306e\u4e2d\u592e\u306ey\u5ea7\u6a19": [97, 133], "\u306e\u5404\u5f15\u6570\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u3067\u3059": [97, 169], "ellipse_basic_usag": 97, "\u3092\u4f7f\u3046\u5f62\u3067\u3082\u6955\u5186\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 97, "ellipse_x": 97, "ellipse_i": 97, "\u5c5e\u6027\u3067\u306f\u5e45\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [97, 182], "ellipse_width": [97, 139, 182, 234], "\u5c5e\u6027\u3067\u306f\u9ad8\u3055\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [97, 182], "ellipse_height": [97, 139, 182, 234], "ellipse_fill_color": 97, "ellipse_fill_alpha": 97, "ellipse_line_color": 97, "ellipse_line_alpha": 97, "ellipse_line_thick": 97, "ellipse_line_dot_set": 97, "ellipse_line_dash_set": 97, "ellipse_line_round_dot_set": 97, "ellipse_line_dash_dot_set": 97, "ellipse_rotation_around_cent": 97, "ellipse_set_rotation_around_point": 97, "ellipse_scale_x_from_cent": 97, "ellipse_scale_y_from_cent": 97, "ellipse_scale_x_from_point": 97, "ellipse_scale_y_from_point": 97, "ellipse_flip_x": 97, "ellipse_flip_i": 97, "ellipse_skew_x": 97, "ellipse_skew_i": 97, "\u6955\u5186\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 97, "\u6955\u5186\u306e\u5e45": [97, 133, 182], "\u6955\u5186\u306e\u9ad8\u3055": [97, 133, 182], "\u30af\u30e9\u30b9\u3092\u4ee5\u4e0b\u306e\u30c7\u30fc\u30bf\u578b\u306e\u30b1\u30fc\u30b9\u3068\u540c\u3058\u7406\u7531\u3067\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 98, "\u30af\u30e9\u30b9\u306fapysc\u306e\u6761\u4ef6\u5206\u5c90\u306e\u6307\u5b9a\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 98, "\u30ad\u30fc\u30ef\u30fc\u30c9\u3068\u540c\u3058\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 98, "\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u3068\u30bb\u30c3\u30c8\u3067\u4f7f\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 98, "\u30af\u30e9\u30b9\u306e\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u306f": 98, "\u30af\u30e9\u30b9\u306e\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u306e\u76f4\u5f8c\u3067\u306e\u307f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 98, "\u30af\u30e9\u30b9\u306e\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u306e\u9593\u306b\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3059\u308b\u3068\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 98, "implement": [98, 231], "else\u306e\u5206\u5c90\u6761\u4ef6\u306e\u8868\u73fe\u3092\u8ffd\u52a0\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 98, "\u73fe\u5728\u306e\u30b9\u30b3\u30fc\u30d7\u306e\u5404\u30ed\u30fc\u30ab\u30eb\u5909\u6570\u306e\u5024": 98, "\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306flocal": 98, "\u95a2\u6570\u3092\u3053\u306e\u5f15\u6570\u3078\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": 98, "\u3082\u3057\u8a2d\u5b9a\u3055\u308c\u305f\u5834\u5408\u306b\u306f": 98, "\u306e\u30b9\u30b3\u30fc\u30d7\u306e\u6700\u5f8c\u306bvariablenamemixin\u30af\u30e9\u30b9\u3092\u7d99\u627f\u3057\u305f\u30af\u30e9\u30b9\u306e\u5404\u5909\u6570": 98, "sprite\u306a\u3069": 98, "\u306e\u8a2d\u5b9a\u306f\u5fa9\u5143\u3055\u308c\u307e\u3059": 98, "\u30af\u30e9\u30b9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u3067\u5909\u6570\u3092\u66f4\u65b0\u3057\u305f\u304f\u306a\u3044\u5834\u5408\u306a\u3069\u306b\u4fbf\u5229\u306a\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 98, "greater": [98, 144], "less": 98, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u305f\u3081\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 99, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u3092\u5404\u30d5\u30ec\u30fc\u30e0\u3054\u3068\u306b\u547c\u3073\u51fa\u3057\u307e\u3059": 99, "\u30af\u30e9\u30b9\u3067\u3082\u540c\u69d8\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u6271\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 99, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7528\u9014\u306e\u5834\u5408": 99, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u3069\u3061\u3089\u3092\u4f7f\u3046\u3079\u304d\u306a\u306e\u3067\u3057\u3087\u3046\u304b": 99, "\u56de\u7b54\u3068\u3057\u3066\u306f\u57fa\u672c\u7684\u306b\u306f": 99, "\u5074\u3068\u306a\u308a\u307e\u3059": 99, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30cf\u30f3\u30c9\u30e9\u306e\u547c\u3073\u51fa\u3057\u306e\u9593\u9694\u304c": 99, "\u30af\u30e9\u30b9\u3088\u308a\u3082\u305a\u308c\u306b\u304f\u304f\u306a\u3063\u3066\u3044\u307e\u3059": 99, "\u4e00\u65b9\u3067": [99, 136, 190, 193], "\u30af\u30e9\u30b9\u5074\u306fcpu\u8ca0\u8377\u304c\u9ad8\u3044\u5834\u5408\u306a\u3069\u306b\u547c\u3073\u51fa\u3057\u30bf\u30a4\u30df\u30f3\u30b0\u304c\u305a\u308c\u308b\u30b1\u30fc\u30b9\u304c\u767a\u751f\u3057\u307e\u3059": 99, "\u306a\u3069\u306e\u30af\u30e9\u30b9\u306b\u5b58\u5728\u3057\u307e\u3059": 99, "\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306a\u3069\u306ecallable\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 99, "\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 99, "\u3053\u306e\u5f15\u6570\u306f\u30d5\u30ec\u30fc\u30e0\u30ec\u30fc\u30c8\u3092\u6c7a\u5b9a\u3057\u307e\u3059": 99, "\u306eenum\u306e\u6307\u5b9a\u304c\u53ef\u80fd\u3067\u3059": 99, "\u5f15\u6570\u3082\u7701\u7565\u53ef\u3067\u3042\u308a": 99, "\u3053\u306e\u6307\u5b9a\u306f\u30cf\u30f3\u30c9\u30e9\u3078\u3068\u8ffd\u52a0\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 99, "on_enter_fram": [99, 206, 229, 231], "enterframeev": [99, 206, 229, 231], "enter": [99, 229, 231], "frame": [99, 107, 222, 229, 231], "fps_30": [99, 107, 222, 231], "enter_frame_basic_usag": 99, "enter_frame_ev": [99, 231], "_time": [99, 220, 222, 224], "fpsdefinit": 99, "object": 99, "0x7f80576dc3a0": [], "frame\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30ea\u30b9\u30ca\u30fc\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 99, "frame\u30a4\u30d9\u30f3\u30c8\u3092\u6271\u3046\u305f\u3081\u306e\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570": 99, "\u8a2d\u5b9a\u3059\u308b1\u79d2\u8fba\u308a\u306e\u30d5\u30ec\u30fc\u30e0\u6570": 99, "per": [99, 107, 222], "\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570\u3078\u3068\u6e21\u3055\u308c\u308b\u8ffd\u52a0\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306e\u5f15\u6570\u5024": 99, "\u3082\u3057\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u547c\u3073\u51fa\u3057\u304c2\u56de\u76ee\u4e14\u3064\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u306e\u5f15\u6570\u306e\u5024\u304c\u540c\u4e00\u306e\u5834\u5408": 99, "\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": 99, "\u5b9f\u884c\u4e2d\u304b\u3069\u3046\u304b\u306e\u30b9\u30c6\u30fc\u30bf\u30b9\u3068": 99, "\u306e\u8a2d\u5b9a\u306e\u307f\u66f4\u65b0\u3057\u307e\u3059": 99, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fjavascript\u306e": 100, "preventdefault": 100, "\u30e1\u30bd\u30c3\u30c9\u306b\u8a72\u5f53\u3059\u308b\u30b3\u30fc\u30c9\u8868\u73fe\u3092\u52a0\u3048\u307e\u3059": 100, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a4\u30d9\u30f3\u30c8\u306b\u304a\u3051\u308b\u30d6\u30e9\u30a6\u30b6\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u6319\u52d5\u3092\u7121\u52b9\u5316\u3057\u307e\u3059": 100, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a4\u30d9\u30f3\u30c8\u306e\u4f1d\u642c\u3092\u505c\u6b62\u3057\u307e\u3059": 100, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u5b9f\u884c": 100, "\u767a\u706b": [100, 146], "\u3055\u308c\u305f\u30a4\u30d9\u30f3\u30c8\u306f\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u306f\u4f1d\u642c\u3057\u306a\u304f\u306a\u308a\u307e\u3059": 100, "\u89aa\u306e\u30a4\u30d9\u30f3\u30c8\u306f\u7121\u8996\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 100, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 100, "\u6ce8": 100, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u30b5\u30d6\u30af\u30e9\u30b9\u3082\u5b58\u5728\u3057\u307e\u3059": 100, "\u30e1\u30bd\u30c3\u30c9\u306f\u7279\u306b\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 100, "event_prevent_default_basic_usag": 100, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u30b5\u30d6\u30af\u30e9\u30b9\u3082\u5b58\u5728\u3057\u307e\u3059": 100, "\u30e1\u30bd\u30c3\u30c9\u3068\u540c\u69d8\u306b\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 100, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u3092sprite\u306e\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u56db\u89d2\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u305d\u308c\u305e\u308c\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 100, "\u56db\u89d2\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30af\u30ea\u30c3\u30af\u306e\u30cf\u30f3\u30c9\u30e9\u3067\u306f": 100, "\u30e1\u30bd\u30c3\u30c9\u3092\u8aad\u3093\u3067\u3044\u308b\u305f\u3081": 100, "\u89aa\u306esprite\u306e\u30cf\u30f3\u30c9\u30e9\u306f\u547c\u3070\u308c\u307e\u305b\u3093": 100, "\u30a4\u30d9\u30f3\u30c8\u304c\u4f1d\u642c\u3057\u307e\u305b\u3093": 100, "event_stop_propagation_basic_usag": 100, "\u3082\u3057\u4ee5\u4e0b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u5834\u5408": 100, "\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u306b\u306f": 100, "\u3068\u3044\u3046\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u307f\u304c\u8868\u793a\u3055\u308c": 100, "sprite\u95a2\u4fc2\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u306f\u8868\u793a\u3055\u308c\u307e\u305b\u3093": 100, "\u30a4\u30d9\u30f3\u30c8\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u6319\u52d5\u3092\u7121\u52b9\u5316\u3057\u307e\u3059": 100, "unbind_mouseup_al": 100, "\u30a4\u30d9\u30f3\u30c8\u306e\u4f1d\u642c\u3092\u505c\u6b62\u3055\u305b\u307e\u3059": 100, "\u4e8b\u524d\u306b\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u3092\u8aad\u3093\u3067\u304a\u304f\u3068\u5f79\u7acb\u3064\u304b\u3082\u3057\u308c\u307e\u305b\u3093": [101, 102, 103, 104, 105, 106], "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u3053\u306e\u30af\u30e9\u30b9\u3092\u5404\u30c7\u30fc\u30bf\u578b\u3068\u540c\u3058\u3088\u3046\u306b\u6271\u3063\u3066\u3044\u307e\u3059": [101, 102, 103, 104, 105, 106], "\u30af\u30e9\u30b9\u306f\u30eb\u30fc\u30d7\u5236\u5fa1\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [101, 102], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30eb\u30fc\u30d7\u4e2d\u306e": 101, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 101, "0\u304b\u3089\u30b9\u30bf\u30fc\u30c8\u3057\u307e\u3059": [101, 110, 191], "\u30ad\u30fc\u30ef\u30fc\u30c9\u306e\u5024\u306f": [101, 102, 104, 106], "\u578b\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059": 101, "indic": 101, "assert_arrays_equ": [101, 104, 146, 201], "for_array_indices_basic_usage_1": 101, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f7f\u3063\u3066\u5186\u306e\u4e2d\u5fc3\u306ex\u5ea7\u6a19\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 101, "x_arr": [101, 102, 103], "for_array_indices_basic_usage_2": 101, "\u3053\u306e\u30af\u30e9\u30b9\u306f\u540c\u3058\u5f15\u6570\u3092\u6301\u3061\u540c\u69d8\u306e\u632f\u308b\u821e\u3044\u3092\u3057\u307e\u3059": [101, 102, 103, 104, 105, 106], "\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5236\u5fa1\u306e\u305f\u3081\u306e\u30eb\u30fc\u30d7\u5236\u5fa1\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 101, "\u30a4\u30c6\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u305f\u3081\u306e\u914d\u5217": [101, 102, 103], "\u3053\u306e\u5f15\u6570\u306b\u306flocal": [101, 102, 103, 104, 105, 106], "\u95a2\u6570\u306e\u8fd4\u5374\u5024\u3092\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": [101, 102, 103, 104, 105, 106], "\u3082\u3057\u3053\u306e\u5f15\u6570\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": [101, 102, 103, 104, 105, 106, 109, 141], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30ed\u30fc\u30ab\u30eb\u30b9\u30b3\u30fc\u30d7\u306evariablenamemixin\u306e\u5404\u5909\u6570": [101, 102, 103, 104, 105, 106], "int\u3084sprite\u306a\u3069": [101, 102, 103, 104, 105, 106], "\u306e\u5024\u3092with\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u306e\u6700\u5f8c\u3067\u5fa9\u5143\u3057\u307e\u3059": [101, 102, 103, 104, 105, 106], "\u3053\u306e\u8a2d\u5b9a\u306f\u5404\u5909\u6570\u3092\u66f4\u65b0\u3057\u305f\u304f\u306a\u3044\u5834\u5408\u7b49\u306b\u5f79\u7acb\u3061\u307e\u3059": [101, 102, 103, 104, 105, 106], "\u306a\u305capysc\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30c7\u30fc\u30bf\u578b\u3092\u4f7f\u3063\u3066\u3044\u306a\u3044\u306e\u304b": 101, "\u5404\u5206\u5c90\u5236\u5fa1\u306e\u30af\u30e9\u30b9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5909\u6570\u5024\u306e\u5fa9\u5143\u8a2d\u5b9a": [101, 146], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30eb\u30fc\u30d7\u5185\u3067": [102, 103, 104], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 102, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u5024\u306b\u306a\u308a\u307e\u3059": 102, "\u306e\u914d\u5217\u5185\u306e\u5024\u306e\u578b\u306e\u6307\u5b9a\u7528\u306b": [102, 103], "arr_value_typ": [102, 103], "\u3053\u306e\u578b\u306e\u6307\u5b9a\u306f": [102, 103, 104], "\u306a\u3069\u306eapysc\u306e\u578b": [102, 103], "\u306e\u307f\u53d7\u3051\u4ed8\u3051\u307e\u3059": [102, 103], "225": [102, 138], "for_array_indices_and_values_basic_usage_1": 102, "_arrayvalu": [102, 103], "\u306e\u5404\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u5024\u306b\u5bfe\u3059\u308b\u30eb\u30fc\u30d7\u5236\u5fa1\u306e\u5b9f\u88c5\u3068\u306a\u308b\u30af\u30e9\u30b9\u3067\u3059": 102, "\u914d\u5217\u306e\u5024\u306e\u578b": [102, 103], "\u306a\u3069\u306eapysc\u306e\u578b\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": [102, 103, 105], "\u30af\u30e9\u30b9\u306f\u30eb\u30fc\u30d7\u51e6\u7406\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 103, "\u306e\u914d\u5217\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 103, "\u30ad\u30fc\u30ef\u30fc\u30c9\u306b\u3088\u308b\u5024\u306f": 103, "\u306e\u914d\u5217\u306e\u5024\u3068\u306a\u308a\u307e\u3059": 103, "for_array_values_basic_usag": 103, "\u306e\u914d\u5217\u306e\u5024\u306e\u305f\u3081\u306e\u30eb\u30fc\u30d7\u51e6\u7406\u306e\u30af\u30e9\u30b9\u3067\u3059": 103, "\u30af\u30e9\u30b9\u306ffor\u6587\u3067\u306e\u30eb\u30fc\u30d7\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 104, "\u306e\u30ad\u30fc\u3092\u8fd4\u5374\u3057\u307e\u3059": 104, "\u306e\u30ad\u30fc\u3068\u306a\u308a\u307e\u3059": 104, "\u306e\u30ad\u30fc\u306e\u578b\u3092\u6307\u5b9a\u3059\u308b\u305f\u3081\u306e": 104, "dict_key_typ": [104, 105], "\u3068\u3044\u3063\u305fapysc\u306e\u578b\u306e\u307f\u53d7\u3051\u4ed8\u3051\u307e\u3059": 104, "dict_": [104, 105, 106], "appl": 104, "120": [104, 206], "orang": 104, "for_dict_keys_basic_usage_1": 104, "_dictkei": [104, 105], "\u306e\u5404\u30ad\u30fc\u306e\u305f\u3081\u306e\u30eb\u30fc\u30d7\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 104, "\u30a4\u30c6\u30ec\u30fc\u30b7\u30e7\u30f3\u3067\u6271\u3046\u305f\u3081\u306e\u8f9e\u66f8": [104, 105, 106], "\u8f9e\u66f8\u306e\u30ad\u30fc\u306e\u578b": [104, 105], "\u3068\u3044\u3063\u305f\u30cf\u30c3\u30b7\u30e5\u5316\u53ef\u80fd\u306a\u578b\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": [104, 105], "\u30af\u30e9\u30b9\u306ffor\u6587\u306e\u30eb\u30fc\u30d7\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 105, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30eb\u30fc\u30d7\u306e\u4e2d\u3067": 105, "\u306e\u30ad\u30fc\u3068\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 105, "\u30ad\u30fc\u30ef\u30fc\u30c9\u90e8\u5206\u306e\u5024\u306f": 105, "\u306e\u30ad\u30fc\u3068\u5024\u306b\u306a\u308a\u307e\u3059": 105, "\u306e\u30ad\u30fc\u3068\u5024\u306e\u578b\u3092\u6307\u5b9a\u3059\u308b\u305f\u3081\u306e": 105, "dict_value_typ": [105, 106], "\u306a\u3069\u306e\u30cf\u30c3\u30b7\u30e5\u5316\u53ef\u80fd\u306aapysc\u306e\u578b\u306e\u307f\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 105, "\u5f15\u6570\u306f": [105, 107, 135, 166], "for_dict_keys_and_values_basic_usage_1": 105, "_dictvalu": [105, 106], "\u306e\u30ad\u30fc\u3068\u5024\u306e\u305f\u3081\u306e\u30eb\u30fc\u30d7\u306e\u30af\u30e9\u30b9\u306e\u5b9f\u88c5\u3067\u3059": 105, "\u8f9e\u66f8\u306e\u5024\u306e\u578b": [105, 106], "\u3054\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [105, 106], "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u578b\u306e\u307f\u53d7\u3051\u4ed8\u3051\u307e\u3059": [105, 106], "\u30af\u30e9\u30b9\u306ffor\u6587\u306b\u3088\u308b\u30eb\u30fc\u30d7\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 106, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30eb\u30fc\u30d7\u5185\u3067": 106, "\u3053\u306e\u30af\u30e9\u30b9\u3067\u306f": 106, "\u306e\u5024\u306e\u578b\u3092\u6307\u5b9a\u3059\u308b\u305f\u3081\u306b": 106, "\u3053\u306e\u578b\u306f": 106, "\u306a\u3069\u306eapysc\u306e\u578b\u306e\u307f\u53d7\u3051\u4ed8\u3051\u307e\u3059": 106, "for_dict_values_basic_usage_1": 106, "\u306e\u5024\u306e\u305f\u3081\u306e\u30eb\u30fc\u30d7\u5236\u5fa1\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 106, "\u306eenum\u306e\u30af\u30e9\u30b9\u306f\u5404fp": 107, "\u306e\u5b9a\u7fa9\u3067\u3059": 107, "\u30bf\u30a4\u30de\u30fc\u304c\u5b9f\u884c\u9593\u9694\u3092\u6c7a\u3081\u308b\u305f\u3081\u306b\u4e3b\u306b\u3053\u306eenum\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 107, "fps\u306eenum\u306e\u5b9a\u7fa9\u306f5\u9593\u9694": 107, "30\u7b49": 107, "\u3067\u5b58\u5728\u3057\u307e\u3059": 107, "\u306eenum\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 107, "\u306e\u5024\u3092": 107, "\u5f15\u6570\u306b\u6307\u5b9a\u3057\u305f\u5834\u5408": [107, 198], "\u30bf\u30a4\u30de\u30fc\u306e\u9593\u9694\u306f\u7d04": 107, "16": [107, 164, 206, 207, 208, 209, 210, 211, 212, 213, 214, 220, 222, 223, 224, 226], "6666667": [107, 222], "\u30df\u30ea\u79d2\u3054\u3068\u3068\u306a\u308a\u307e\u3059": 107, "\u3092\u6307\u5b9a\u3059\u308b\u3068": 107, "33": [107, 221, 222, 223, 224, 225, 226], "3333333": [107, 222], "\u30df\u30ea\u79d2\u3054\u3068\u306e\u9593\u9694\u3068\u306a\u308a\u307e\u3059": 107, "timer_1": [107, 221, 222, 225], "fps_10": 107, "timer_2": [107, 221, 222, 225], "timer_3": [107, 222], "fps_basic_usag": 107, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306fapysc\u306e": 108, "\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u306e": 108, "\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5404\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 108, "setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u305d\u308c\u3089\u306e\u5024\u306e\u66f4\u65b0\u3092\u884c\u3044\u307e\u3059": 108, "\u8fd4\u5374\u5024\u306f\u57fa\u672c\u7684\u306b": 108, "\u306a\u3069\u306epython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u5024\u306b\u306a\u308a\u307e\u3059": 108, "\u306egetter\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 108, "number_1": [108, 145, 147, 148, 149], "apysc\u306e\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u306b\u304a\u3051\u308b": 108, "\u306esetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u305d\u308c\u3089\u306e\u5024\u3092\u66f4\u65b0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 108, "python\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u5024\u3084apysc\u306e\u540c\u3058\u578b\u306e\u5024\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 108, "\u30e1\u30bd\u30c3\u30c9\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30d0\u30a6\u30f3\u30c7\u30a3\u30f3\u30b0\u30dc\u30c3\u30af\u30b9\u306e\u30c7\u30fc\u30bf": 109, "\u5ea7\u6a19\u3084\u30b5\u30a4\u30ba\u306a\u3069\u306e\u5e7e\u4f55\u30c7\u30fc\u30bf": 109, "\u30e1\u30bd\u30c3\u30c9\u3067\u306f": 109, "rectanglegeom": [109, 146], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": [], "\u5ea7\u6a19\u306e\u57fa\u6e96\u5ea7\u6a19\u306f\u30b9\u30c6\u30fc\u30b8\u306ex": [], "0\u3068y": [], "0\u306e\u4f4d\u7f6e\u3068\u306a\u308a\u307e\u3059": [], "440": [109, 183], "220": [109, 138, 183], "bounding_box": [109, 183], "box_rectangl": [109, 183], "left_x": 109, "top_i": 109, "aaa": [109, 183, 206, 207, 227, 230], "fd63c3": [109, 183], "left_x_and_top_y_circl": [109, 183], "left_x_and_top_y_text": [109, 183], "get_bounds_basic_usag": [], "_geom": [109, 135, 136, 166, 177, 178, 183], "rectangle_geom": [109, 183], "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30d0\u30a6\u30f3\u30c7\u30a3\u30f3\u30b0\u30dc\u30c3\u30af\u30b9\u306e\u5e7e\u4f55\u30c7\u30fc\u30bf\u3092\u53d6\u5f97\u3057\u307e\u3059": [109, 183], "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30d0\u30a6\u30f3\u30c7\u30a3\u30f3\u30b0\u30dc\u30c3\u30af\u30b9\u306e\u5e7e\u4f55\u30c7\u30fc\u30bf": [109, 183], "graphisc": 110, "\u306a\u3069\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u30af\u30e9\u30b9\u306e": 110, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4f4d\u7f6e\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 110, "displkayobject": 110, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fsprite\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u3078\u3068\u56db\u89d2\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059": 110, "\u306e\u30af\u30e9\u30b9\u306f": 110, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u5b50\u3068\u3057\u3066\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u8ffd\u52a0\u3059\u308b\u305f\u3081": 110, "\u6700\u521d\u306e\u5b50\u306f": 110, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u306a\u308a": 110, "2\u756a\u76ee\u306e\u5b50\u306f": 110, "\u30e1\u30bd\u30c3\u30c9\u3067\u8ffd\u52a0\u3055\u308c\u305f": 110, "\u306e\u56db\u89d2\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u306a\u308a\u307e\u3059": 110, "first_child": 110, "second_child": 110, "\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5b50\u3092\u53d6\u5f97\u3057\u307e\u3059": [110, 191], "\u5bfe\u8c61\u306e\u5b50\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [110, 191], "\u5bfe\u8c61\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [110, 191], "child_at_index_1": [110, 191], "\u30af\u30e9\u30b9\u306f\u5404\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u63cf\u753b\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6271\u3046\u30af\u30e9\u30b9\u3067\u3059": 111, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u306f\u56db\u89d2\u306e\u63cf\u753b\u3084\u7dda\u306e\u63cf\u753b\u306a\u3069\u69d8\u3005\u306a\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u5b58\u5728\u3057\u307e\u3059": 111, "\u30af\u30e9\u30b9\u306a\u3069\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u3053\u306e": 111, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u5185\u90e8\u3067\u751f\u6210\u3057\u307e\u3059": 111, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 111, "\u5c5e\u6027\u3092\u6301\u3063\u3066\u304a\u308a": [111, 190], "\u305d\u306e\u5c5e\u6027\u3092\u4f7f\u7528\u3057\u3066\u5404\u63cf\u753b\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 111, "180": [111, 141, 179], "white": [111, 141], "border": 111, "cyan": [111, 122, 127, 129, 133, 134, 141], "magenta": [111, 122, 127, 134, 141, 163], "polylin": [111, 141, 146, 179], "dash": [111, 130, 131, 141], "130": [111, 130, 131, 132, 138, 141, 234], "graphics_call_interfaces_from_sprite_inst": 111, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 111, "\u30af\u30e9\u30b9\u306a\u3069\u306e\u751f\u6210\u3055\u308c\u305f\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 111, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306fx\u3084y": 111, "visible\u306a\u3069\u306e\u57fa\u672c\u7684\u306a": 111, "\u30af\u30e9\u30b9\u306e\u5404\u5c5e\u6027\u3084\u30e1\u30bd\u30c3\u30c9\u306a\u3069\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 111, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u3053\u308c\u3089\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u5bfe\u3057\u3066\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057\u3066\u5ea7\u6a19\u306e\u66f4\u65b0\u51e6\u7406\u306a\u3069\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 111, "drew_rect": 111, "bind": [111, 161, 163], "graphics_return_valu": 111, "\u3082\u3057\u4ee5\u4e0b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u5ea7\u6a19\u5024\u3084\u5857\u308a\u306e\u8272": 111, "\u900f\u660e\u5ea6\u306a\u3069\u306e\u5024\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059": 111, "\u5857\u308a\u306e\u8a2d\u5b9a": [111, 234], "\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [111, 119, 234], "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5857\u308a\u306e\u900f\u660e\u5ea6\u66f4\u65b0\u3084\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [112, 211], "\u5c5e\u6027\u306egetter\u3068setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306f": [], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f2\u3064\u76ee\u306e\u56db\u89d2\u306b0": 112, "5\u306e\u900f\u660e\u5ea6\u3092": 112, "\u305d\u3057\u30663\u3064\u76ee\u306e\u56db\u89d2\u306b0": 112, "25\u306e\u900f\u660e\u5ea6\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 112, "graphics_base_fill_alpha_basic_usag": 112, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5857\u308a\u306e\u900f\u660e\u5ea6\u3092\u53d6\u5f97\u3057\u307e\u3059": 112, "\u73fe\u5728\u306e\u5857\u308a\u306e\u900f\u660e\u5ea6": [112, 127], "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u5857\u308a\u306e\u8272\u306e\u5024\u3092\u66f4\u65b0\u3057\u305f\u308a\u53d6\u5f97\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [113, 212], "getter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [113, 212], "\u578b\u306e\u5024\u306b\u306a\u308a\u307e\u3059": [113, 121, 212], "setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082": [113, 212], "\u578b\u306e\u5024\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": [113, 124, 212], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u5857\u308a\u306e\u8272\u3092\u30b7\u30a2\u30f3\u304b\u3089\u30de\u30bc\u30f3\u30bf\u306b\u5909\u66f4\u3059\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059": 113, "graphics_base_fill_color_basic_usag": 113, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5857\u308a\u306e\u8272\u3092\u53d6\u5f97\u3057\u307e\u3059": 113, "\u73fe\u5728\u306e\u5857\u308a\u306e\u8272": [113, 127], "\u306a\u3069\u306e16\u9032\u6570\u306e\u6587\u5b57\u5217\u306e\u8272": 113, "\u3082\u3057\u3082\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408": [113, 127], "\u5b9a\u6570\u306e\u5024\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059": [113, 127, 141], "ff00aa": [113, 116, 159, 184, 186], "\u306a\u3069\u306e\u5404\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30af\u30e9\u30b9\u306e\u57fa\u5e95\u30af\u30e9\u30b9": [114, 124], "\u5c5e\u6027\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u6a2a\u65b9\u5411\u306b\u53cd\u8ee2\u3057": 114, "\u5c5e\u6027\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u7e26\u65b9\u5411\u306b\u53cd\u8ee2\u3057\u307e\u3059": 114, "\u578b\u306e\u5024\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u3059": [], "\u3092\u6307\u5b9a\u3059\u308c\u3070\u53cd\u8ee2\u3057\u305f\u72b6\u614b\u306b\u306a\u308a": 114, "\u3092\u8a2d\u5b9a\u3059\u308c\u53cd\u8ee2\u304c\u30ea\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059": 114, "getter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u73fe\u5728\u306e\u53cd\u8ee2\u8a2d\u5b9a\u306e": 114, "\u578b\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": [114, 124, 156, 157, 158, 176, 193, 197, 203, 219], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f1\u79d2\u3054\u3068\u306b\u4e09\u89d2\u5f62\u306e\u53cd\u8ee2\u3068\u30ea\u30bb\u30c3\u30c8\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 114, "_polygonopt": 114, "polygon": [114, 136, 146, 176], "point2d": [114, 136, 146, 152, 177, 178, 206, 234], "graphics_base_flip_x_basic_usag": 114, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u8ef8\u306e\u65b9\u5411\u306e\u9055\u3044\u3092\u9664\u3044\u3066": 114, "\u306e\u54e1\u30b9\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u540c\u69d8\u306b\u52d5\u4f5c\u3057\u307e\u3059": 114, "\u6a2a\u8ef8\u306b\u5bfe\u3057\u3066\u53cd\u8ee2\u3057\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 114, "\u6a2a\u65b9\u5411\u306b\u53cd\u8ee2\u3057\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u306eboolean\u306e\u771f\u507d\u5024": 114, "\u7e26\u8ef8\u306b\u5bfe\u3057\u3066\u53cd\u8ee2\u3057\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 114, "\u7e26\u65b9\u5411\u306b\u53cd\u8ee2\u3057\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u306eboolean\u306e\u771f\u507d\u5024": 114, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u306e\u900f\u660e\u5ea6\u306e\u66f4\u65b0\u3084\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 115, "getter\u3068setter\u306e\u4e21\u65b9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306f": [112, 115, 211], "\u578b\u306e0": [112, 115, 211], "0\u306e\u7bc4\u56f2\u306e\u5024\u3068\u306a\u308a\u307e\u3059": [112, 115, 211], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f0": 115, "5\u306e\u7dda\u306e\u900f\u660e\u5ea6\u30922\u756a\u76ee\u306e\u56db\u89d2\u306b\u8a2d\u5b9a\u3057": 115, "25\u306e\u7dda\u306e\u900f\u660e\u5ea6\u30923\u756a\u76ee\u306e\u56db\u89d2\u306b\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 115, "graphics_base_line_alpha_basic_usag": 115, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u306e\u900f\u660e\u5ea6\u3092\u53d6\u5f97\u3057\u307e\u3059": 115, "\u73fe\u5728\u306e\u7dda\u306e\u900f\u660e\u5ea6": [115, 141], "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u306e\u8272\u306e\u66f4\u65b0\u3084\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 116, "getter\u3068setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u6271\u3046\u5024\u306f": 116, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u7dda\u306e\u8272\u3092\u30b7\u30a2\u30f3\u304b\u3089\u30de\u30bc\u30f3\u30bf\u306b\u5909\u66f4\u3057\u3066\u3044\u307e\u3059": 116, "graphics_base_line_color_basic_usag": 116, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u306e\u8272\u3092\u53d6\u5f97\u3057\u307e\u3059": 116, "\u306a\u3069\u306e16\u9032\u6570\u306e\u7dda\u306e\u8272": 116, "\u3082\u3057\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f": [116, 141], "\u306e\u5b9a\u6570\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059": 116, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u73fe\u5728\u306e\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [], "getter\u3084setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306f": [117, 119, 120], "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5024\u3068\u306a\u308a\u307e\u3059": [117, 118], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f10px\u306e\u7834\u7dda\u30683px\u306e\u70b9\u7dda\u306e\u4e00\u70b9\u9396\u7dda\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 117, "graphics_base_line_dash_dot_setting_basic_usag": 117, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u3053\u306e\u7dda\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": 117, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u30cf\u30f3\u30c9\u30e9\u5185\u306e\u51e6\u7406\u3067\u7dda\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059": [117, 118, 119, 120], "graphics_base_line_dash_dot_setting_delete_set": 117, "\u73fe\u5728\u306e\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 117, "\u4e00\u70b9\u9396\u7dda\u306e\u8a2d\u5b9a": 117, "\u73fe\u5728\u306e\u7dda\u306e\u4e00\u70b9\u9396\u7dda\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": 117, "getter\u3068setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306f": 118, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u7dda\u306b\u5bfe\u3057\u306610px\u306e\u7834\u7dda\u30683px\u306e\u7834\u7dda\u9593\u306e\u7a7a\u767d\u306e\u30b9\u30da\u30fc\u30b9\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 118, "graphics_base_line_dash_setting_basic_usag": 118, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u3053\u306e\u7dda\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": [118, 119, 120], "graphics_base_line_dash_setting_delete_set": 118, "\u73fe\u5728\u306e\u7dda\u306e\u7834\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": [118, 141], "\u7dda\u306e\u7834\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 118, "\u73fe\u5728\u306e\u7834\u7dda\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": 118, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u306e\u30c9\u30c3\u30c8\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3044\u307e\u3059": 119, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5024\u3068\u306a\u308a\u307e\u3059": 119, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f5px\u306e\u70b9\u7dda\u306e\u8a2d\u5b9a\u3092\u7dda\u306b\u884c\u3063\u3066\u3044\u307e\u3059": 119, "graphics_base_line_dot_setting_basic_usag": 119, "graphics_base_line_dot_setting_delete_set": 119, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u306e\u70b9\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 119, "\u7dda\u306e\u70b9\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 119, "\u73fe\u5728\u306e\u70b9\u7dda\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": 119, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u73fe\u5728\u7dda\u306e\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3084\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5024\u306b\u306a\u308a\u307e\u3059": 120, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f10px\u306e\u30b5\u30a4\u30ba\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 120, "graphics_base_line_round_dot_setting_basic_usag": 120, "graphics_base_line_round_dot_setting_delete_set": 120, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 120, "\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 120, "\u73fe\u5728\u306e\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": 120, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u5e45\u306e\u5024\u306e\u66f4\u65b0\u3084\u53d6\u5f97\u304c\u884c\u3048\u307e\u3059": [], "getter\u3082\u3057\u304f\u306fsetter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306f": [121, 210, 214, 216], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f1\u3064\u76ee\u306e\u56db\u89d2\u306b5px\u306e\u7dda\u5e45\u3092\u8a2d\u5b9a\u3057\u3066\u304a\u308a": 121, "2\u3064\u76ee\u306e\u56db\u89d2\u306b\u306f10px\u306e\u7dda\u5e45\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 121, "graphics_base_line_thickness_basic_usag": 121, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u5e45\u3092\u53d6\u5f97\u3057\u307e\u3059": 121, "\u73fe\u5728\u306e\u7dda\u5e45": [121, 141], "\u306a\u3069\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u306e\u30af\u30e9\u30b9\u306e\u57fa\u5e95\u30af\u30e9\u30b9": 122, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u56de\u8ee2\u89d2\u5ea6\u306e\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 122, "cyan_rect": 122, "magenta_rect": 122, "angl": 122, "increment": 122, "addit": 122, "60": [122, 152, 217, 219], "graphics_base_rotation_around_center_basic_usag": 122, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u73fe\u5728\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u7cfb\u306e\u30af\u30e9\u30b9\u3067\u306e\u307f\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u304a\u308a": 122, "\u306a\u3069\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u306f\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093": 122, "html\u306esvg\u306e\u4ed5\u69d8\u306b\u4f9d\u5b58\u3057\u3066\u3044\u307e\u3059": 122, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u56de\u8ee2\u91cf\u3092\u53d6\u5f97\u3057\u307e\u3059": 122, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u56de\u8ee2\u91cf": 122, "45": [122, 123, 138, 200, 206], "\u306a\u3069\u306e\u5404\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u30af\u30e9\u30b9\u306e\u57fa\u5e95\u30af\u30e9\u30b9": 123, "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u57fa\u6e96\u306e\u56de\u8ee2\u91cf\u3092\u53d6\u5f97\u3057": 123, "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u56de\u8ee2\u91cf\u3092\u66f4\u65b0\u3057\u307e\u3059": 123, "\u3053\u308c\u3089\u306e\u56de\u8ee2\u91cf\u306f\u76f8\u5bfe\u5024\u3067\u3042\u308a": 123, "\u5404\u56de\u8ee2\u91cf\u306f\u5ea7\u6a19\u3054\u3068\u306b\u7570\u306a\u308b\u5024\u304c\u4fdd\u6301\u3055\u308c\u307e\u3059": 123, "\u4f8b\u3048\u3070x": 123, "50\u306e\u5ea7\u6a19\u3068x": 123, "100\u306e\u5ea7\u6a19\u306e\u56de\u8ee2\u91cf\u306e\u5024\u306f\u305d\u308c\u305e\u308c\u5225\u306e\u5024\u306b\u306a\u308a\u307e\u3059": 123, "\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057": 123, "\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u3067\u306e\u56de\u8ee2\u91cf\u3092\u8fd4\u5374\u3057\u307e\u3059": 123, "\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 123, "\u5168\u3066\u306e\u5f15\u6570\u3068\u8fd4\u5374\u5024\u306f": 123, "\u578b\u306b\u306a\u308a\u307e\u3059": 123, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u4e8c\u3064\u306e\u56db\u89d2\u3092\u4f5c\u6210\u3057": 123, "\u5404\u56db\u89d2\u3092\u30bf\u30a4\u30de\u30fc\u306e\u30cf\u30f3\u30c9\u30e9\u5185\u3067\u56de\u8ee2\u3055\u305b\u3066\u3044\u307e\u3059": 123, "1\u3064\u76ee\u306e\u56db\u89d2\u306f\u5de6\u4e0a\u306e\u5ea7\u6a19": 123, "\u3067\u56de\u8ee2\u3055\u305b\u3066\u3044\u3066": 123, "2\u3064\u76ee\u306e\u56db\u89d2\u306f\u53f3\u4e0b\u306e\u5ea7\u6a19": 123, "\u3067\u56de\u8ee2\u3055\u305b\u3066\u3044\u307e\u3059": 123, "_rectanglesopt": [123, 124], "graphics_base_rotation_around_point_basic_usag": 123, "\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u56de\u8ee2\u91cf\u3092\u53d6\u5f97\u3057\u307e\u3059": 123, "\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u57fa\u6e96\u306b\u3088\u308b\u56de\u8ee2\u91cf": 123, "\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u57fa\u6e96\u306e\u56de\u8ee2\u91cf\u3092\u66f4\u65b0\u3057\u307e\u3059": 123, "\u8a2d\u5b9a\u3059\u308b\u56de\u8ee2\u91cf": 123, "\u5c5e\u6027\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u3092\u5909\u66f4\u3057": 124, "\u5c5e\u6027\u306f\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u3092\u5909\u66f4\u3057\u307e\u3059": 124, "\u3053\u308c\u3089\u306e\u62e1\u7e2e\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059": 124, "\u5404\u5c5e\u6027\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 124, "setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u62e1\u7e2e\u306e\u66f4\u65b0\u5024\u3068\u3057\u3066": 124, "\u3082\u3057\u30820": 124, "0\u304c\u6307\u5b9a\u3055\u308c\u308c\u3070\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306f\u898b\u3048\u306a\u304f\u306a\u308a": 124, "0\u3067\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u62e1\u7e2e": 124, "0\u30672\u500d\u306e\u30b5\u30a4\u30ba\u306b\u306a\u308a\u307e\u3059": 124, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5de6\u306e\u56db\u89d2\u3067\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u62e1\u7e2e\u5024": 124, "\u771f\u3093\u4e2d\u306e\u56db\u89d2\u3067\u306f\u6c34\u5e73\u65b9\u5411\u306b\u534a\u5206\u306e\u30b5\u30a4\u30ba": 124, "\u306e\u56db\u89d2\u3067\u306f\u5782\u76f4\u65b9\u5411\u306b\u534a\u5206\u306e\u30b5\u30a4\u30ba\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 124, "center_rectangl": 124, "graphics_base_scale_from_center_basic_usage_1": 124, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u4ee5\u4e0b\u306e\u4f8b\u306e\u3088\u3046\u306b\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u306b\u62e1\u7e2e\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059": 124, "graphics_base_scale_from_center_basic_usage_2": 124, "\u8a18\u53f7\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u306b\u3088\u308b\u64cd\u4f5c\u3082\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 124, "current_scal": 124, "05": [124, 195], "03": [124, 125, 234], "graphics_base_scale_from_center_basic_usage_3": 124, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 124, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u5024": 124, "\u62e1\u7e2e\u306e\u6700\u5c0f\u5024\u306f\u307b\u307c0\u3068\u306a\u308a": [124, 125], "\u305d\u306e\u5024\u306f\u8ca0\u306e\u5024\u306b\u306f\u306a\u308a\u307e\u305b\u3093": [124, 125], "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 124, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u5024": 124, "\u306a\u3069\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30af\u30e9\u30b9\u306e\u57fa\u5e95\u30af\u30e9\u30b9": [125, 126], "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u3092\u57fa\u6e96\u306b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u3092\u5909\u66f4\u3057\u307e\u3059": 125, "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u3092\u57fa\u6e96\u306b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u3092\u5909\u66f4\u3057\u307e\u3059": 125, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5c5e\u6027\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u304c": 125, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5ea7\u6a19\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306a\u305f\u3081\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 125, "\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u306b\u304a\u3051\u308b\u62e1\u7e2e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 125, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082\u5f15\u6570\u306b\u5ea7\u6a19\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 125, "\u8fd4\u5374\u5024\u306f\u5404\u5ea7\u6a19\u3054\u3068\u306b\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 125, "\u4f8b\u3048\u3070\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u309250px\u306ex\u5ea7\u6a19\u306e\u4f4d\u7f6e\u3067\u8a2d\u5b9a\u3057\u305f\u5834\u5408": 125, "100px\u306ex\u5ea7\u6a19\u306e\u4f4d\u7f6e\u306b\u304a\u3051\u308b\u62e1\u7e2e\u5024\u306b\u306f\u5f71\u97ff\u3057\u307e\u305b\u3093": 125, "\u578b\u306e": 125, "\u306e\u5404\u5f15\u304f\u6570\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 125, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f3\u3064\u306e\u56db\u89d2\u3092\u751f\u6210\u3057\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u3092\u5897\u6e1b\u3055\u305b\u3066\u3044\u307e\u3059": 125, "\u4e0a\u306e\u56db\u89d2\u306f\u5de6\u7aef\u3092\u57fa\u6e96\u306b\u62e1\u7e2e\u3092": 125, "\u771f\u3093\u4e2d\u306e\u56db\u89d2\u306f\u4e2d\u592e\u3092\u57fa\u6e96\u306b\u62e1\u7e2e\u3092": 125, "\u305d\u3057\u3066\u4e0b\u306e\u56db\u89d2\u3067\u306f\u53f3\u53f3\u7aef\u3092\u57fa\u6e96\u306b\u62e1\u7e2e\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 125, "current_scale_x": 125, "top_rect": 125, "middle_rect": 125, "bottom_rect": 125, "top_rect_direct": 125, "top_rect_tim": 125, "middle_rect_direct": 125, "middle_rect_tim": 125, "bottom_rect_direct": 125, "bottom_rect_tim": 125, "graphics_base_scale_from_point_basic_usage_x": 125, "\u306e\u30e1\u30bd\u30c3\u30c9\u306f": 125, "\u3053\u308c\u3089\u306f\u62e1\u7e2e\u306e\u65b9\u5411\u304c\u5782\u76f4\u65b9\u5411\u306b\u306a\u3063\u3066\u3044\u308b\u4ee5\u5916\u306f\u6c34\u5e73\u65b9\u5411\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u540c\u3058\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 125, "current_scale_i": 125, "graphics_base_scale_from_point_basic_usage_i": 125, "\u6307\u5b9a\u3055\u308c\u305fx\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u3066\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 125, "\u6307\u5b9a\u3055\u308c\u305fx\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u5024": 125, "\u6307\u5b9a\u3055\u308c\u305fx\u5ea7\u75c5\u3092\u57fa\u6e96\u3068\u3057\u305f\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059": 125, "\u8a2d\u5b9a\u3059\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u5024": 125, "\u6307\u5b9a\u3055\u308c\u305fy\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 125, "\u6307\u5b9a\u3055\u308c\u305fy\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u5024": 125, "\u6307\u5b9a\u3055\u308c\u305fy\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059": 125, "\u8a2d\u5b9a\u3059\u306e\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u5024": 125, "\u5c5e\u6027\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092x\u8ef8\u65b9\u5411\u306b\u6b6a\u307e\u305b\u307e\u3059": 126, "\u5c5e\u6027\u3067\u306fy\u8ef8\u65b9\u5411\u306b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u6b6a\u307e\u305b\u307e\u3059": 126, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fgetter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 126, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306e\u578b\u306f": 126, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5de6\u5074\u306e\u56db\u89d2\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u72b6\u614b": 126, "\u53f3\u5074\u306e\u56db\u89d2\u306fx\u8ef8\u65b9\u5411\u306b50px\u306e\u6b6a\u307f\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 126, "graphics_base_skew_x_basic_usag": 126, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306fy\u8ef8\u65b9\u5411\u306b\u56db\u89d2\u306e\u6b6a\u307f\u3092\u52a0\u7b97\u3057\u3066\u3044\u304f\u5f62\u3067\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 126, "graphics_base_skew_y_incremental_basic_usag": 126, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u73fe\u5728\u306ex\u8ef8\u306e\u6b6a\u307f\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 126, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u73fe\u5728\u306ex\u8ef8\u306e\u6b6a\u307f\u306e\u5024": 126, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u73fe\u5728\u306ey\u8ef8\u306e\u6b6a\u307f\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 126, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u73fe\u5728\u306ey\u8ef8\u306e\u6b6a\u307f\u306e\u5024": 126, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5857\u308a\u306e\u8272\u3068\u5857\u308a\u306e\u900f\u660e\u5ea6\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 127, "\u3053\u306e\u8a2d\u5b9a\u306f\u518d\u5ea6": 127, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3059\u304b": 127, "clear": [127, 141, 146], "\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3076\u307e\u3067\u4fdd\u6301\u3055\u308c\u307e\u3059": 127, "\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u63cf\u753b\u7cfb\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 127, "\u306f\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u751f\u6210\u6642\u306b\u3053\u306e\u5857\u308a\u306e\u8a2d\u5b9a\u3092\u53c2\u7167\u3057\u307e\u3059": 127, "\u305d\u306e\u305f\u3081\u63cf\u753b\u7cfb\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u5b9f\u884c\u3059\u308b\u524d\u306b\u3053\u306e": 127, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u3066\u304a\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 127, "blue": [63, 127], "maintain": [127, 141], "third": 127, "graphics_begin_fill_basic_usag": 127, "\u5f15\u6570\u306f\u5857\u308a\u306e\u8272\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 127, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u3053\u306e\u5f15\u6570\u306f\u5fc5\u9808\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 127, "graphics_begin_fill_fill_color": 127, "\u3082\u3057\u3082\u5857\u308a\u306e\u8272\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u305f\u3044\u5834\u5408": 127, "\u5b9a\u6570\u3092\u3053\u306e\u5f15\u6570\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": 127, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5857\u308a\u306e\u8272\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u3066\u3044\u308b\u305f\u3081": 127, "\u56db\u89d2\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u306f\u898b\u3048\u306a\u304f\u306a\u308a\u307e\u3059": 127, "constant": [127, 141], "invis": 127, "graphics_begin_fill_color_setting_clear": 127, "\u3053\u306e\u6307\u5b9a\u306f\u5857\u308a\u306e\u8272\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": 127, "six": [127, 141], "charact": [127, 141], "three": [127, 141], "singl": 127, "black": [127, 141], "skip": [127, 141], "symbol": [127, 154], "also": 127, "graphics_begin_fill_acceptable_color_set": 127, "\u5857\u308a\u306e\u900f\u660e\u5ea6\u306f": 127, "\u5f15\u6570\u3067\u8a2d\u5b9a\u3067\u304d\u307e\u3059": [127, 141], "\u900f\u660e": [127, 141, 164], "\u4e0d\u900f\u660e": [127, 141, 164], "\u306e\u7bc4\u56f2\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 127, "graphics_begin_fill_alpha_set": 127, "\u5857\u308a\u306e\u305f\u3081\u306e\u5358\u4e00\u306e\u8272\u306e\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 127, "\u73fe\u5728\u306e\u5857\u308a\u306e\u8272\u3092\u53d6\u5f97\u3057\u307e\u3059": 127, "\u73fe\u5728\u306e\u5857\u308a\u306e\u900f\u660e\u5ea6\u3092\u53d6\u5f97\u3057\u307e\u3059": 127, "\u3082\u3057\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u54081": 127, "0\u306e\u5024\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059": 127, "\u30e1\u30bd\u30c3\u30c9\u306f\u5168\u3066\u306e\u63cf\u753b\u6e08\u307f\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u53d6\u308a\u9664\u304d": 128, "\u5857\u308a\u3068\u7dda\u306e\u8a2d\u5b9a\u3092\u30ea\u30bb\u30c3\u30c8\u3057\u307e\u3059": 128, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u30cf\u30f3\u30c9\u30e9\u5185\u3067": 128, "\u30e1\u30bd\u30c3\u30c9\u304c\u547c\u3070\u308c\u307e\u3059": 128, "graphics_clear_basic_usag": 128, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u5186\u3092\u63cf\u753b\u3057\u307e\u3059": 129, "\u5f15\u6570\u306f\u5186\u306e\u4e2d\u592e\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 129, "\u5f15\u6570\u306f\u5186\u306e\u534a\u5f84\u3068\u306a\u308a\u307e\u3059": 129, "\u5e45\u3068\u9ad8\u3055\u306f": 129, "\u5f15\u6570\u306e2\u500d\u306e\u5024\u306b\u306a\u308a\u307e\u3059": 129, "dot": [129, 130, 132, 133, 134, 141], "style": [129, 133, 136, 141, 153, 206, 214], "dot_set": [129, 130, 131, 132, 133, 134, 138, 141], "inner": 129, "graphics_draw_circle_basic_usag": 129, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8fd4\u5374\u5024\u306f": [129, 133], "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 129, "\u5c5e\u6027\u3084\u4ed6\u306e\u57fa\u672c\u7684\u306a\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u304a\u308a\u751f\u6210\u5f8c\u306b\u5024\u3092\u66f4\u65b0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 129, "small": 129, "becom": [129, 142], "bigger": 129, "one": [129, 141], "graphics_draw_circle_return_valu": 129, "_circl": 129, "\u5186\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 129, "\u751f\u6210\u3055\u308c\u305f\u5186\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 129, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30b7\u30f3\u30d7\u30eb\u306a\u4e00\u70b9\u9396\u7dda\u306e\u76f4\u7dda\u3092\u63cf\u753b\u3057\u307e\u3059": 130, "dash_set": [130, 131, 132, 134, 138, 141], "round_dot_set": [130, 131, 132, 134, 138, 141], "dash_dot_set": [130, 131, 132, 134, 138, 141], "\u306e\u5f15\u6570\u3084\u5c5e\u6027\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": 130, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u57fa\u672c\u7684\u306a\u5ea7\u6a19\u6307\u5b9a\u306e\u5f15\u6570\u3068\u3057\u3066": [130, 138], "\u306e\u5f15\u6570\u3092\u6301\u3063\u3066\u3044\u307e\u3059": [130, 138, 139], "\u77ed\u3044\u70b9\u7dda\u90e8\u5206\u306e\u30b5\u30a4\u30ba\u3068\u3057\u3066\u306e": 130, "\u9577\u3044\u7834\u7dda\u90e8\u5206\u306e\u30b5\u30a4\u30ba\u3068\u3057\u3066\u306e": 130, "\u305d\u3057\u3066\u305d\u308c\u305e\u308c\u306e\u70b9\u7dda\u3068\u7834\u7dda\u306e\u9593\u306e\u30b9\u30da\u30fc\u30b9\u3068\u3057\u3066": 130, "\u306e\u5f15\u6570\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 130, "pixel": [130, 131, 132, 138, 139, 141], "size": [130, 132, 138, 139, 141, 154, 213], "80": [130, 131, 132, 138, 141, 152, 207], "graphics_draw_dash_dotted_line_basic_usag": 130, "_line": [130, 131, 132, 134, 138], "\u4e00\u70b9\u9396\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u7dda\u3092\u63cf\u753b\u3057\u307e\u3059": 130, "\u7dda\u306e\u958b\u59cb\u4f4d\u7f6e\u306ex\u5ea7\u6a19": [130, 131, 132, 134, 138], "\u7dda\u306e\u958b\u59cb\u4f4d\u7f6e\u306ey\u5ea7\u6a19": [130, 131, 132, 134, 138], "\u7dda\u306e\u7d42\u4e86\u4f4d\u7f6e\u306ex\u5ea7\u6a19": [130, 131, 132, 134, 138], "\u7dda\u306e\u7d42\u4e86\u4f4d\u7f6e\u306ey\u5ea7\u6a19": [130, 131, 132, 134, 138], "\u30c9\u30c3\u30c8\u306e\u30b5\u30a4\u30ba": [130, 132], "\u7834\u7dda\u90e8\u5206\u306e\u30b5\u30a4\u30ba": [130, 131], "\u30c9\u30c3\u30c8": 130, "\u3084\u7834\u7dda\u9593\u306e\u7a7a\u767d\u30b9\u30da\u30fc\u30b9\u306e\u30b5\u30a4\u30ba": 130, "\u751f\u6210\u3055\u308c\u305f\u7dda\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [130, 131, 132, 134, 138], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30b7\u30f3\u30d7\u30eb\u306a\u7834\u7dda\u306e\u76f4\u7dda\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 131, "\u306e\u5f15\u6570\u3084\u5c5e\u6027\u306e\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": [131, 132], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u57fa\u672c\u7684\u306a\u7dda\u306e\u5ea7\u6a19\u306e\u6307\u5b9a\u3068\u3057\u3066": [131, 132], "\u306e\u5404\u5f15\u6570\u3092\u6301\u3061\u307e\u3059": [131, 132], "\u7834\u7dda\u306e\u30b5\u30a4\u30ba\u3068\u3057\u3066\u306e": 131, "\u5f15\u6570\u3068\u7834\u7dda\u9593\u306e\u30b9\u30da\u30fc\u30b9\u306e\u30b5\u30a4\u30ba\u3068\u3057\u3066\u306e": 131, "\u5f15\u6570\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u3067\u3059": [131, 132], "graphics_draw_dashed_line_basic_usag": 131, "\u7834\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 131, "\u7834\u7dda\u9593\u306e\u7a7a\u767d\u30b9\u30da\u30fc\u30b9\u306e\u30b5\u30a4\u30ba": 131, "\u3092\u9664\u3044\u305f": [131, 132], "\u306a\u3069\u306e\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": [131, 132], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30b7\u30f3\u30d7\u30eb\u306a\u70b9\u7dda\u306e\u76f4\u7dda\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 132, "\u70b9\u7dda\u306e\u30b5\u30a4\u30ba\u3068\u3057\u3066": 132, "graphics_draw_dotted_line_basic_usag": 132, "\u70b9\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 132, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6955\u5186\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 133, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 133, "\u306e\u5f15\u6570\u306f\u6955\u5186\u306e\u4e2d\u592e\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 133, "\u306f\u6955\u5186\u306e\u5e45\u3068\u9ad8\u3055\u3092\u6c7a\u5b9a\u3057\u307e\u3059": 133, "\u3053\u308c\u3089\u306e\u30b5\u30a4\u30ba\u306f\u534a\u5f84\u306e\u500d\u306e\u5024": 133, "\u76f4\u5f84": 133, "\u3067\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 133, "graphics_draw_ellipse_basic_usag": 133, "\u3053\u306e\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u4ed6\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u7cfb\u306e\u30af\u30e9\u30b9\u3068\u540c\u69d8\u306b": 133, "\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 133, "\u6955\u5186\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u305f\u3073\u306b\u5e45\u3068\u9ad8\u3055\u304c\u5927\u304d\u304f\u306a\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059": 133, "on_ellipse_click": 133, "graphics_draw_ellipse_return_valu": 133, "_ellips": 133, "\u6955\u5186\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 133, "\u4f5c\u6210\u3055\u308c\u305f\u6955\u5186\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 133, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30b7\u30f3\u30d7\u30eb\u306a\u76f4\u7dda\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 134, "\u306a\u3069\u306e\u5f15\u6570\u3084\u5c5e\u6027\u306e\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": 134, "\u306e\u5404\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": [63, 134], "graphics_draw_line_basic_usag": 134, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30b7\u30f3\u30d7\u30eb\u3055\u306e\u305f\u3081\u306b": 134, "\u306e\u5404\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": [134, 138], "\u3082\u3057\u3082\u3053\u308c\u3089\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u304c\u5fc5\u8981\u306a\u5834\u5408\u306b\u306f": 134, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4ee3\u308f\u308a\u306b": 134, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4ed5\u69d8\u3057\u3066\u304f\u3060\u3055\u3044": 134, "ignor": 134, "graphics_draw_line_ignored_dot_set": 134, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5404\u7a2e\u8a2d\u5b9a\u3092\u5909\u66f4\u3057\u305f\u308a\u30a4\u30d9\u30f3\u30c8\u3092\u767b\u9332\u3057\u305f\u308a\u7b49\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 134, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082\u540c\u3058\u304f": 134, "graphics_draw_line_line_inst": 134, "\u901a\u5e38\u306e\u76f4\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 134, "\u306a\u3069\u306e\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": [134, 138], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30d1\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 135, "path_data_list": [135, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "pathlineto": [135, 146, 171, 174], "pathbezier2d": [135, 146, 168], "\u306a\u3069\u306e\u30d1\u30b9\u30c7\u30fc\u30bf\u306e\u914d\u5217\u3068\u306a\u308a\u307e\u3059": 135, "path": [135, 146, 167, 168, 169, 170, 171, 172, 173, 174, 175], "pathmoveto": [135, 146, 167, 168, 169, 170, 171, 172, 173, 175], "control_x": [135, 166, 167, 168, 169, 170], "control_i": [135, 166, 167, 168, 169, 170], "dest_x": [135, 166, 167, 168, 169, 170], "dest_i": [135, 166, 167, 168, 169, 170], "graphics_draw_path_basic_usag": 135, "pathhorizont": [135, 146], "pathvert": [135, 146, 171], "pathclos": [135, 146], "pathbezier2dcontinu": [135, 146, 167], "pathbezier3dcontinu": [135, 146, 169], "path_data_bas": [135, 166], "pathdatabas": [135, 166], "_path": 135, "\u30d1\u30b9\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 135, "pathdata": [135, 166], "moveto\u306a\u3069\u306e\u5bfe\u8c61\u306e\u30d1\u30b9\u30c7\u30fc\u30bf\u306e\u8a2d\u5b9a\u306e\u30ea\u30b9\u30c8": [135, 166], "\u4f5c\u6210\u3055\u308c\u305f\u30d1\u30b9\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 135, "pathbezier3d": [135, 146, 170], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u591a\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 136, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u6319\u52d5\u304c\u5c11\u3057\u4f3c\u3066\u3044\u307e\u3059\u304c": 136, "\u30d1\u30b9\u3092\u9589\u3058\u306a\u304f\u3066\u3082\u826f\u3044\u3068\u3044\u3046\u9055\u3044\u304c\u3042\u308a\u307e\u3059": 136, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5404\u9802\u70b9\u306e\u5ea7\u6a19\u3092\u6c7a\u3081\u308b\u305f\u3081\u306e": 136, "triangl": [136, 146], "diamond": 136, "shape": [136, 142], "graphics_draw_polygon_basic_usag": 136, "\u5857\u308a\u306e\u8272\u306e\u8a2d\u5b9a\u3092\u3057\u305f\u5834\u5408": 136, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6319\u52d5\u306f\u5c11\u3057\u8fd1\u304f\u306a\u308a\u307e\u3059": 136, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3069\u3061\u3089\u3082\u4e09\u89d2\u5f62\u304c\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 136, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u5de6\u5074\u306e\u4e09\u89d2\u5f62\u3092\u63cf\u753b\u3057": 136, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u53f3\u5074\u306e\u4e09\u89d2\u5f62\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 136, "graphics_draw_polygon_line_to_difference_1": 136, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u306f\u30d1\u30b9\u3092\u9589\u3058\u308b\u5fc5\u8981\u304c\u3042\u308b\u304b\u3069\u3046\u304b\u306e\u9055\u3044\u304c\u3042\u308a\u307e\u3059": 136, "\u3053\u306e\u9055\u3044\u306f\u7dda\u306e\u8a2d\u5b9a\u3092\u884c\u3063\u305f\u5834\u5408\u306b\u306f\u9855\u8457\u306b\u306a\u308a\u307e\u3059": 136, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u7d42\u70b9\u306e\u5ea7\u6a19\u304b\u3089\u59cb\u70b9\u306e\u5ea7\u6a19\u3078\u306f\u30d1\u30b9\u304c\u81ea\u52d5\u3067\u306f\u7e4b\u304c\u308a\u307e\u305b\u3093": 136, "see": 136, "differ": 136, "graphics_draw_polygon_line_to_difference_2": 136, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u4ed6\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u7cfb\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u540c\u69d8\u306e\u57fa\u672c\u7684\u306a\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 136, "\u30af\u30e9\u30b9\u306f\u9802\u70b9\u3092\u52a0\u3048\u308b\u305f\u3081\u306e": 136, "append_line_point": 136, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5ea7\u6a19\u306e\u8ffd\u52a0\u3092\u884c\u3044\u4e09\u89d2\u304b\u3089\u56db\u89d2\u306b\u5909\u63db\u3057\u3066\u3044\u307e\u3059": 136, "dynam": [136, 139], "graphics_draw_polygon_append_line_point": 136, "_polyg": 136, "\u591a\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 136, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fpolyline\u30af\u30e9\u30b9": 136, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u4f5c\u6210\u3055\u308c\u307e\u3059": 136, "\u306b\u4f3c\u3066\u3044\u307e\u3059\u304c": 136, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u59cb\u70b9\u3068\u7d42\u70b9\u304c\u9023\u7d50\u3055\u308c\u308b\u3068\u3044\u3046\u9055\u3044\u304c\u3042\u308a\u307e\u3059": 136, "\u591a\u89d2\u5f62\u306e\u9802\u70b9\u306e\u5404\u5ea7\u6a19": 136, "\u4f5c\u6210\u3055\u308c\u305f\u591a\u89d2\u5f62\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 136, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u56db\u89d2\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 137, "\u306e\u5404\u5f15\u6570\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 137, "\u306f\u56db\u89d2\u306e\u5ea7\u6a19\u3092\u8a2d\u5b9a\u3057": 137, "\u306f\u56db\u89d2\u306e\u30b5\u30a4\u30ba\u3092\u6c7a\u5b9a\u3057\u307e\u3059": [137, 139], "graphics_draw_rect_basic_usag": 137, "\u524d\u8ff0\u306e\u30b3\u30fc\u30c9\u3067\u306f\u6a2a\u9577\u306e\u56db\u89d2\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 137, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3076\u524d\u306b": 137, "\u5857\u308a\u306e\u8a2d\u5b9a\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 137, "\u3092\u547c\u3093\u3067\u304a\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 137, "\u306e\u547c\u3073\u51fa\u3057\u304c\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u753b\u9762\u4e0a\u306b\u56db\u89d2\u304c\u8868\u793a\u3055\u308c\u307e\u305b\u3093": 137, "graphics_draw_rect_basic_usage_skipped_begin_fil": 137, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u5909\u9006\u3057\u307e\u3059": 137, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u5bfe\u3057\u3066\u5404\u5c5e\u6027\u306e\u66f4\u65b0\u3084\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u767b\u9332\u306a\u3069\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 137, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u306f": 137, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u5bfe\u3057\u3066\u30af\u30ea\u30c3\u30af\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u3092\u767b\u9332\u3057": 137, "\u306e\u30cf\u30f3\u30c9\u30e9\u5185\u3067x\u5ea7\u6a19\u3092\u66f4\u65b0\u3057\u3066\u3044\u307e\u3059": 137, "creat": [137, 142, 190, 205], "graphics_draw_rect_rectangl": 137, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u307f\u308b\u3068": 137, "\u30cf\u30f3\u30c9\u30e9\u306fx\u5ea7\u6a19\u3092100px\u306e\u4f4d\u7f6e\u306b\u5909\u66f4\u3057\u307e\u3059": 137, "\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u56db\u89d2\u3092\u63cf\u753b\u3057\u307e\u3059": 137, "\u63cf\u753b\u3092\u958b\u59cb\u3059\u308b\u4f4d\u7f6e\u306ex\u5ea7\u6a19": 137, "\u63cf\u753b\u3092\u958b\u59cb\u3059\u308b\u4f4d\u7f6e\u306ey\u5ea7\u6a19": 137, "\u56db\u89d2\u306e\u5e45": [137, 139, 182, 183], "\u56db\u89d2\u306e\u9ad8\u3055": [137, 139, 182, 183], "\u751f\u6210\u3055\u308c\u305f\u56db\u89d2": [137, 139], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30b7\u30f3\u30d7\u30eb\u306a\u4e38\u30c9\u30c3\u30c8\u306e\u76f4\u7dda\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 138, "cap": [138, 141], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u4e38\u306e": 138, "\u8a2d\u5b9a\u3092\u5185\u90e8\u3067\u4f7f\u3063\u3066\u3044\u308b\u305f\u3081": 138, "\u8a2d\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059": 138, "\u305d\u308c\u3089\u306b\u52a0\u3048\u3066\u4e38\u306e\u30b5\u30a4\u30ba\u306e": 138, "\u3068\u4e38\u306e\u9593\u306e\u30b9\u30da\u30fc\u30b9\u3092\u6c7a\u5b9a\u3059\u308b": 138, "round": [138, 141], "graphics_draw_round_dotted_line_basic_usag": 138, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4e38\u306ecap": 138, "\u7dda\u306e\u7aef\u306e\u30b9\u30bf\u30a4\u30eb": 138, "\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u305f\u3081": 138, "\u7dda\u306e\u9577\u3055\u306fcap\u306e\u30b5\u30a4\u30ba\u306b\u5fdc\u3058\u3066\u5927\u304d\u304f\u306a\u308a\u307e\u3059": 138, "\u3082\u3057\u3082\u7dda\u306e\u5de6\u7aef\u3092\u4ed6\u306e\u7dda\u3068\u5408\u308f\u305b\u305f\u3044\u5834\u5408\u306b\u306f\u4e38\u306e\u30b5\u30a4\u30ba\u306e\u534a\u5206\u3092": 138, "\u306e\u5f15\u6570\u304b\u3089\u6e1b\u7b97\u3057\u3066\u304f\u3060\u3055\u3044": 138, "270": [138, 169], "half": 138, "normal": 138, "graphics_draw_round_dotted_line_not": 138, "\u4e38\u30c9\u30c3\u30c8\u306e\u76f4\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 138, "\u4e38\u30c9\u30c3\u30c8\u306e\u30b5\u30a4\u30ba": 138, "\u30c9\u30c3\u30c8\u9593\u306e\u7a7a\u767d\u306e\u30b9\u30da\u30fc\u30b9\u306e\u30b5\u30a4\u30ba": 138, "\u3092\u9664\u3044\u3066": 138, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u89d2\u4e38\u306e\u56db\u89d2\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 139, "\u306a\u3069\u306e\u5404\u5f15\u6570\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 139, "\u5f15\u6570\u306f\u56db\u89d2\u306e\u5ea7\u6a19\u3092\u8a2d\u5b9a\u3057": 139, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u3055\u3089\u306b\u89d2\u4e38\u306e\u30b5\u30a4\u30ba\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e": 139, "graphics_draw_round_rect_basic_usag": 139, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u540c\u69d8\u306b": 139, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u56db\u89d2\u306e\u89d2\u4e38\u306e\u30b5\u30a4\u30ba\u3092\u5909\u66f4\u3059\u308b\u305f\u3081\u306e": 139, "attribut": 139, "graphics_draw_round_rect_return_valu": 139, "\u89d2\u4e38\u56db\u89d2\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 139, "\u63cf\u753b\u3092\u958b\u59cb\u3059\u308bx\u5ea7\u6a19": [139, 182, 206, 207], "\u63cf\u753b\u3092\u958b\u59cb\u3059\u308by\u5ea7\u6a19": [139, 182, 206, 207], "\u56db\u89d2\u306e\u89d2\u4e38\u306e\u5e45": 139, "\u56db\u89d2\u306e\u89d2\u4e38\u306e\u9ad8\u3055": 139, "round_rect": 139, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4e09\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 140, "x1": 140, "y1": 140, "x2": 140, "y2": 140, "x3": 140, "y3": 140, "\u306e\u5f15\u6570\u306f\u4e09\u89d2\u5f62\u306e1\u3064\u76ee\u306e\u9802\u70b9\u306e\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 140, "\u306f2\u3064\u76ee\u306e\u9802\u70b9\u306e\u5ea7\u6a19\u3068\u306a\u308a": 140, "\u306f3\u3064\u76ee\u306e\u9802\u70b9\u306e\u5ea7\u6a19\u3068\u306a\u308a\u307e": 140, "graphics_draw_triangle_basic_usag": 140, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u5404\u7a2e\u8a2d\u5b9a\u3092\u66f4\u65b0\u3057\u305f\u308a\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u306a\u3069\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 140, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057": [140, 142], "\u306e\u30cf\u30f3\u30c9\u30e9\u5185\u3067x\u5ea7\u6a19\u306e\u66f4\u65b0\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 140, "graphics_draw_triangle_triangle_inst": 140, "\u4e09\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 140, "1\u3064\u76ee\u306e\u9802\u70b9\u306ex\u5ea7\u6a19": [140, 229], "1\u3064\u76ee\u306e\u9802\u70b9\u306ey\u5ea7\u6a19": [140, 229], "2\u3064\u76ee\u306e\u9802\u70b9\u306ex\u5ea7\u6a19": [140, 229], "2\u3064\u76ee\u306e\u9802\u70b9\u306ey\u5ea7\u6a19": [140, 229], "3\u3064\u76ee\u306e\u9802\u70b9\u306ex\u5ea7\u6a19": [140, 229], "3\u3064\u76ee\u306e\u9802\u70b9\u306ey\u5ea7\u6a19": [140, 229], "\u751f\u6210\u3055\u308c\u305f\u4e09\u89d2\u5f62\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 140, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u7dda\u306e\u8272\u3084\u7dda\u306e\u900f\u660e\u5ea6": 141, "\u7dda\u5e45": 141, "\u70b9\u7dda\u306a\u3069\u306e\u7dda\u306e\u5404\u30b9\u30bf\u30a4\u30eb\u306e\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 141, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u518d\u5ea6\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u5b9f\u884c\u3057\u305f\u308a": 141, "\u30e1\u30bd\u30c3\u30c9\u306a\u3069\u3092\u547c\u3076\u307e\u3067\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u4fdd\u6301\u3057\u7d9a\u3051\u307e\u3059": 141, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u540c\u3058\u3088\u3046\u306a\u6319\u52d5\u3092\u3057\u307e\u3059": 141, "\u306a\u3069\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u63cf\u753b\u7cfb\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u5404\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4f5c\u6210\u6642\u306b\u53c2\u7167\u3057\u307e\u3059": 141, "\u5f93\u3063\u3066\u7dda\u306e\u8a2d\u5b9a\u304c\u5fc5\u8981\u306a\u5834\u5408\u306b\u306f\u5404\u63cf\u753b\u7cfb\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3076\u524d\u306b\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u304a\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 141, "162": 141, "3px": 141, "110": 141, "graphics_line_style_bas": 141, "\u6307\u5b9a\u304c\u5fc5\u9808\u306a": 141, "\u5f15\u6570\u306f\u7dda\u306e\u8272\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 141, "102": 141, "graphics_line_style_line_color": 141, "\u3082\u3057\u3082\u7dda\u306e\u8272\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u3053\u306e\u5f15\u6570\u306b": 141, "\u5b9a\u6570\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": 141, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u7dda\u306e\u8272\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u3066\u3044\u308b\u306e\u3067\u7dda\u306f\u898b\u3048\u306a\u304f\u306a\u3063\u3066\u3044\u307e\u3059": 141, "graphics_line_style_clear_line_color": 141, "\u4ee5\u4e0b\u306e\u30ea\u30b9\u30c8\u3088\u3046\u306a\u306e\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 141, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e": 141, "\u5f15\u6570\u3068\u540c\u3058\u6319\u52d5\u306b\u306a\u308a\u307e\u3059": 141, "\u5b9a\u6570\u306e\u6307\u5b9a": 141, "\u3053\u308c\u306f\u7dda\u306e\u8272\u306e\u524a\u9664\u6307\u5b9a\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059": 141, "graphics_line_style_line_color_color_cod": 141, "\u5f15\u6570\u306f\u7dda\u306e\u5e45\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 141, "1\u4ee5\u4e0a\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 141, "165": 141, "graphics_line_style_thick": 141, "\u5f15\u6570\u3067\u7dda\u306e\u900f\u660e\u5ea6\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 141, "\u306e\u7bc4\u56f2\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 141, "upper": [141, 146], "lower": [141, 146], "graphics_line_style_alpha": 141, "\u7dda\u306e\u7aef\u306e\u30b9\u30bf\u30a4\u30eb\u306f": 141, "\u30af\u30e9\u30b9\u306eenum\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 141, "\u4ee5\u4e0b\u306e\u3088\u3046\u306b": 141, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f3\u7a2e\u985e\u5b58\u5728\u3057\u307e\u3059": 141, "butt": 141, "\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3042\u308a": 141, "\u7aef\u306b\u306f\u306a\u306b\u3082\u8a2d\u5b9a\u3055\u308c\u307e\u305b\u3093": 141, "\u7dda\u306e\u7aef\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u4e38\u304f\u3057\u307e\u3059": 141, "squar": 141, "\u7dda\u306e\u7aef\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u56db\u89d2\u304f\u3057\u307e\u3059": 141, "\u3053\u308c\u306fbutt\u3068\u4f3c\u305f\u8868\u793a\u306b\u306a\u308a\u307e\u3059\u304c": 141, "\u8a2d\u5b9a\u3055\u308c\u308b\u56db\u89d2\u306e\u5206\u3060\u3051\u7dda\u304c\u9577\u304f\u306a\u308a\u307e\u3059": 141, "same": 141, "longer": 141, "graphics_line_style_cap": 141, "joint": 141, "\u5f15\u6570\u3067\u306f\u7dda\u306e\u7e4b\u304e\u76ee": 141, "\u9802\u70b9\u90e8\u5206": 141, "\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u5909\u66f4\u3057\u307e\u3059": 141, "\u3053\u306e\u5f15\u6570\u306b\u306f": 141, "linejoint": [141, 166, 177, 178, 182, 229], "\u306eenum\u306e\u5404\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 141, "\u4e3b\u306b": 141, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u751f\u6210\u3055\u308c\u308b": 141, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u3053\u306e\u5f15\u6570\u306f\u4f7f\u7528\u3055\u308c\u307e\u3059": 141, "\u4ee5\u4e0b\u306e\u3088\u3046\u306blinejoints\u306eenum\u306b\u306f3\u3064\u306e\u5024\u304c\u5b58\u5728\u3057\u307e\u3059": 141, "miter": 141, "\u3053\u306e\u8a2d\u5b9a\u306f\u9802\u70b9\u304c": 141, "\u5c16\u3063\u305f\u5f62\u3067\u306e": 141, "\u984d\u7e01\u306e\u3088\u3046\u306a\u5f62\u306e\u30b9\u30bf\u30a4\u30eb\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 141, "\u3053\u306e\u8a2d\u5b9a\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u3068\u306a\u308a\u307e\u3059": 141, "\u3053\u306e\u8a2d\u5b9a\u306f\u4e38\u3044\u9802\u70b9\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 141, "bevel": 141, "\u3053\u306e\u8a2d\u5b9a\u306f\u5c04\u89d2": 141, "\u30d9\u30d9\u30eb": 141, "\u306e\u9802\u70b9\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 141, "graphics_line_style_joint": 141, "\u5f15\u6570\u306f\u7dda\u3092\u70b9\u7dda\u3078\u3068\u5909\u66f4\u3059\u308b\u8a2d\u5b9a\u3067\u3059": 141, "\u30af\u30e9\u30b9\u306e\u8a2d\u5b9a\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 141, "\u70b9\u7dda\u306e\u30b5\u30a4\u30ba\u306f": 141, "\u5f15\u6570\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 141, "1\u4ee5\u4e0a\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 141, "160": [141, 234], "graphics_line_style_line_dot_set": 141, "\u3053\u306e\u8a2d\u5b9a\u3084\u985e\u4f3c\u306e\u8a2d\u5b9a\u306f\u7dda\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3060\u3051\u3067\u306a\u304f": 141, "\u306a\u3069\u4ed6\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u30af\u30e9\u30b9\u306e\u8868\u793a\u3082\u5909\u66f4\u3057\u307e\u3059": 141, "038": 141, "graphics_line_style_line_dot_setting_rectangl": 141, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u7121\u8996\u3055\u308c\u307e\u3059": 141, "\u5f15\u6570\u306f\u7dda\u306e\u7834\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u5909\u66f4\u3057\u307e\u3059": 141, "\u3054\u306e\u5f15\u6570\u306f": 141, "\u3053\u306e\u8a2d\u5b9a\u3067\u306f\u7834\u7dda\u306e\u30b5\u30a4\u30ba\u3092": 141, "\u5f15\u6570\u3067": 141, "\u7a7a\u767d\u306e\u30b9\u30da\u30fc\u30b9\u306e\u30b5\u30a4\u30ba\u3092": 141, "space": 141, "graphics_line_style_line_dash_set": 141, "\u5f15\u6570\u306f\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 141, "\u3053\u306e\u8a2d\u5b9a\u3067\u306f\u5186\u306e\u30b5\u30a4\u30ba\u3092": 141, "\u5186\u306e\u9593\u306e\u30b9\u30da\u30fc\u30b9\u306e\u30b5\u30a4\u30ba\u3092": 141, "graphics_line_style_line_round_dot_set": 141, "\u3053\u306e\u8a2d\u5b9a\u306f\u5185\u90e8\u3067": 141, "\u8a2d\u5b9a\u306e\u5024\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u305f\u3081": 141, "\u3053\u306e\u8a2d\u5b9a\u3067\u306f": 141, "\u5f15\u6570\u306e\u8a2d\u5b9a\u304c\u7121\u8996\u3055\u308c\u307e\u3059": 141, "\u4e38\u306e\u30b5\u30a4\u30ba\u306b\u5fdc\u3058\u305f\u5206\u3060\u3051\u7dda\u306e\u9577\u3055\u304c\u9577\u304f\u306a\u308a\u307e\u3059": 141, "\u5f15\u6570\u306f\u7dda\u306b\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 141, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 141, "\u3053\u306e\u8a2d\u5b9a\u306f\u77ed\u3044\u70b9\u7dda\u306e\u30b5\u30a4\u30ba\u3092": 141, "\u9577\u3044\u7834\u7dda\u306e\u30b5\u30a4\u30ba\u3092": 141, "\u305d\u3057\u3066\u7a7a\u767d\u306e\u30b9\u30da\u30fc\u30b9\u306e\u30b5\u30a4\u30ba\u3092": 141, "graphics_line_style_line_dash_dot_set": 141, "\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 141, "\u7dda\u306e\u5e45": 141, "\u7dda\u8272\u306e\u900f\u660e\u5ea6": 141, "\u7dda\u306e\u7aef\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 141, "\u7dda\u306b\u95a2\u4fc2\u3057\u306a\u3044rectangle\u30af\u30e9\u30b9\u306a\u3069\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u3053\u306e\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": 141, "\u9006\u306bpolyline\u30af\u30e9\u30b9\u306a\u3069\u306e\u7dda\u306b\u95a2\u4fc2\u3057\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u306f\u3053\u306e\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u307e\u3059": 141, "\u7dda\u306e\u9802\u70b9": 141, "\u63a5\u5408\u90e8": 141, "\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 141, "\u6298\u308c\u7dda\u7dda\u306b\u95a2\u4fc2\u3057\u306a\u3044rectangle\u306a\u3069\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u3053\u306e\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": 141, "\u9006\u306bpolyline\u30af\u30e9\u30b9\u306a\u3069\u306e\u6298\u308c\u7dda\u95a2\u4fc2\u306e\u30af\u30e9\u30b9\u3067\u306f\u3053\u306e\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u307e\u3059": 141, "\u70b9\u7dda\u306e\u8a2d\u5b9a": 141, "\u3082\u3057\u3082\u3053\u306e\u5f15\u6570\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": 141, "\u7dda\u306f\u70b9\u7dda\u306b\u306a\u308a\u307e\u3059": 141, "\u7834\u7dda\u306e\u8a2d\u5b9a": 141, "\u7dda\u306f\u7834\u7dda\u306b\u306a\u308a\u307e\u3059": 141, "\u4e38\u30c9\u30c3\u30c8\u306e\u8a2d\u5b9a": 141, "\u7dda\u306f\u4e38\u30c9\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059": 141, "\u3054\u306e\u8a2d\u5b9a\u306f\u5185\u90e8\u3067cap\u306e\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u305f\u3081": 141, "\u3068\u7dda\u5e45\u306e\u8a2d\u5b9a\u3092\u4e0a\u66f8\u304d\u3057\u307e\u3059": 141, "cap\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u90fd\u5408": 141, "\u7dda\u306e\u9577\u3055\u3082\u9577\u304f\u306a\u308a\u307e\u3059": 141, "move_to\u3084line_to\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u305f\u901a\u5e38\u306e\u7dda\u306e\u9577\u3055\u3068\u5408\u308f\u305b\u305f\u3044\u5834\u5408\u306b\u306f\u4e38\u306e\u534a\u5206\u306e\u30b5\u30a4\u30ba\u3092\u7dda\u306e\u958b\u59cb\u4f4d\u7f6e\u306ex\u5ea7\u6a19\u3078\u52a0\u7b97\u3057": 141, "\u3055\u3089\u306b\u4e38\u306e\u534a\u5206\u306e\u30b5\u30a4\u30ba\u3092\u7dda\u306e\u7d42\u4e86\u4f4d\u7f6e\u306ex\u5ea7\u6a19\u304b\u3089\u6e1b\u7b97\u3057\u3066\u304f\u3060\u3055\u3044": 141, "y\u5ea7\u6a19\u3082\u540c\u69d8\u3067\u3059": 141, "\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 141, "\u7dda\u306e\u4e00\u70b9\u9396\u7dda\u306b\u306a\u308a\u307e\u3059": 141, "\u73fe\u5728\u306e\u7dda\u306e\u8272\u3092\u53d6\u5f97\u3057\u307e\u3059": 141, "\u73fe\u5728\u306e\u7dda\u306e\u8272": 141, "\u73fe\u5728\u306e\u7dda\u306e\u7dda\u5e45\u3092\u53d6\u5f97\u3057\u307e\u3059": 141, "\u73fe\u5728\u306e\u7dda\u306e\u900f\u660e\u5ea6\u3092\u53d6\u5f97\u3057\u307e\u3059": 141, "\u73fe\u5728\u306e\u7dda\u306e\u7aef\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 141, "\u73fe\u5728\u306e\u7dda\u306e\u63a5\u5408\u90e8": 141, "\u9802\u70b9": 141, "\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 141, "\u73fe\u5728\u306e\u7dda\u306e\u70b9\u7dda\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 141, "\u73fe\u5728\u306e\u70b9\u7dda\u8a2d\u5b9a": 141, "\u73fe\u5728\u306e\u7834\u7dda\u8a2d\u5b9a": 141, "\u73fe\u5728\u306e\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 141, "\u73fe\u5728\u306e\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 141, "\u73fe\u5728\u306e\u7dda\u306e\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 141, "\u73fe\u5728\u306e\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 141, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u7dda\u306e\u63cf\u753b\u306e\u958b\u59cb\u4f4d\u7f6e\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u73fe\u5728\u306e\u4f4d\u7f6e\u304b\u3089\u7d42\u70b9\u4f4d\u7f6e\u306b\u5411\u3051\u3066\u7dda\u3092\u63cf\u753b\u3057\u307e\u3059": 142, "\u9023\u7d9a\u3057\u3066": 142, "\u3092\u547c\u3073\u51fa\u3059\u3068\u5bfe\u8c61\u306e\u7dda\u306f\u6298\u308c\u7dda\u306b\u306a\u308a\u307e\u3059": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3093\u3060\u5f8c\u306b": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3093\u3060\u5834\u5408\u306b\u306f\u65b0\u3057\u3044\u7dda\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u751f\u6210\u3055\u308c\u307e\u3059": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5171\u306bx\u3068y\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 142, "destin": 142, "graphics_move_to_and_line_to_basic_usag": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u9023\u7d9a\u3057\u3066\u547c\u3073\u51fa\u3057\u305f\u5834\u5408": 142, "\u7d50\u679c\u306e\u7dda\u306f\u6298\u308c\u7dda\u306b\u306a\u308a\u307e\u3059": 142, "final": 142, "z": [142, 171], "graphics_move_to_and_line_to_sequential_cal": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u305f\u5f8c\u306b": 142, "\u3092\u547c\u3073\u51fa\u3057\u305f\u5834\u5408\u65b0\u3057\u3044\u7dda\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u751f\u6210\u3055\u308c\u307e\u3059": 142, "new": [142, 206, 207], "graphics_move_to_and_line_to_multi_move_to_cal": 142, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u5404\u8a2d\u5b9a\u3092\u66f4\u65b0\u3057\u305f\u308a\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 142, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f": 142, "on_line_click": 142, "\u30cf\u30f3\u30c9\u30e9\u5185\u3067\u7dda\u306e\u8272\u306e\u66f4\u65b0\u3068\u70b9\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 142, "graphics_move_to_and_line_to_polylin": 142, "\u3082\u3057\u4ee5\u4e0b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u30570\u305f\u5834\u5408": 142, "\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u306f\u66f4\u65b0\u3055\u308c\u307e\u3059": 142, "_polylin": 142, "\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u306b\u7dda\u306e\u63cf\u753b\u4f4d\u7f6e\u3092\u79fb\u52d5\u3055\u305b\u307e\u3059": 142, "\u79fb\u52d5\u5148\u3068\u306a\u308bx\u5ea7\u6a19": 142, "\u79fb\u52d5\u5148\u3068\u306a\u308by\u5ea7\u6a19": 142, "\u7dda\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 142, "line_1": 142, "line_2": 142, "\u76f4\u524d\u306e\u4f4d\u7f6e\u306e\u5ea7\u6a19\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u306b\u5411\u3051\u3066\u7dda\u3092\u63cf\u753b\u3057\u307e\u3059": 142, "\u521d\u671f\u4f4d\u7f6e\u306fx": 142, "0\u306b\u306a\u308a\u307e\u3059": 142, "\u7dda\u306e\u63cf\u753b\u5148\u3068\u306a\u308b\u7d42\u70b9\u306ex\u5ea7\u6a19": 142, "\u7dda\u306e\u63cf\u753b\u5148\u3068\u306a\u308b\u7d42\u70b9\u306ey\u5ea7\u6a19": 142, "line_3": 142, "apysc\u3067\u306f\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u3068\u540c\u69d8\u306e\u7406\u7531\u3067": 144, "\u30af\u30e9\u30b9\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 144, "\u30af\u30e9\u30b9\u306fapysc\u306e\u5206\u5c90\u5236\u5fa1\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 144, "\u30ad\u30fc\u30ef\u30fc\u30c9\u3068\u4f3c\u305f\u3088\u3046\u306a\u5f62\u3067\u52d5\u4f5c\u3057\u307e\u3059": 144, "\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u3068\u5171\u306b\u4f7f\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 144, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e\u5f15\u6570\u306b\u306f\u6761\u4ef6\u3068\u3057\u3066\u306e": 144, "\u306e\u5024\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 144, "if\u6587\u306e\u5206\u5c90\u5236\u5fa1\u306e\u8868\u73fe\u3092\u8ffd\u52a0\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9": 144, "\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306flocal": 144, "\u95a2\u6570\u306e\u5024\u3092\u3054\u306e\u5f15\u6570\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": 144, "\u306e\u30b9\u30b3\u30fc\u30d7\u306e\u7d42\u4e86\u6642\u306b\u5bfe\u8c61\u306evariablenamemixin\u30af\u30e9\u30b9\u306e\u5404\u30ed\u30fc\u30ab\u30eb\u5909\u6570\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5024\u3092\u30b9\u30b3\u30fc\u30d7\u306e\u958b\u59cb\u524d\u306e\u6642\u70b9\u306b\u5fa9\u5143\u3057\u307e\u3059": 144, "\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u51e6\u7406\u3067python\u4e0a\u306e\u5404\u30ed\u30fc\u30ab\u30eb\u5909\u6570\u306e\u5024\u3092\u66f4\u65b0\u3057\u305f\u304f\u306a\u3044\u5834\u5408\u306a\u3069\u306b\u4fbf\u5229\u306a\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 144, "apysc\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u4ed6\u306epython\u30d1\u30c3\u30b1\u30fc\u30b8\u306e": 145, "numpi": 145, "np": 145, "panda": 145, "pd": 145, "tkinter": 145, "tk": 145, "\u306a\u3069\u3068\u540c\u3058\u3088\u3046\u306b": 145, "\u3068\u3044\u3046import\u306e\u6307\u5b9a\u3092\u63a8\u5968\u3057\u3066\u3044\u307e\u3059": 145, "\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u30eb\u30fc\u30c8\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u30d1\u30b9\u306bapysc\u3067\u5229\u7528\u304c\u5fc5\u8981\u306a\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059": 145, "\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u5185\u90e8\u3067\u4f7f\u7528\u3059\u308b\u30ed\u30b8\u30c3\u30af\u306e\u5404\u30e2\u30b8\u30e5\u30fc\u30eb\u306f": 145, "_file": 145, "\u306e\u3088\u3046\u306b\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2\u306e\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059": 145, "\u57fa\u672c\u7684\u306b\u3053\u308c\u3089\u306e\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u4ed8\u3044\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u5229\u7528\u306f\u4e0d\u8981\u3067\u3059": 145, "apysc\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30da\u30fc\u30b8\u3078\u3088\u3046\u3053\u305d": 146, "apysc\u306fpython\u306e\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u7528\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u3059": 146, "\u73fe\u5728\u958b\u767a\u4e2d\u3067\u3042\u308a\u90e8\u5206\u7684\u306b\u306e\u307f\u52d5\u4f5c\u3057\u307e\u3059": 146, "github": [146, 154], "\u3082\u3057\u3082apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u6c17\u306b\u3044\u3063\u305f\u308a": 146, "\u3082\u3057\u304f\u306f\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5c06\u6765\u306b\u671f\u5f85\u304c\u51fa\u6765\u305d\u3046\u3068\u611f\u3058\u3089\u308c\u305f\u3089\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30b9\u30bf\u30fc\u3092\u4ed8\u3051\u3066\u3044\u305f\u3060\u3051\u307e\u3059\u3068\u5e78\u3044\u3067\u3059": 146, "pypi": 146, "\u4ed6\u306e\u8a00\u8a9e\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8": 146, "\u82f1\u8a9e": 146, "english": 146, "\u65e5\u672c\u8a9e": 146, "\u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u73fe\u5728\u306e\u5b9f\u88c5\u3067\u3067\u304d\u308b\u3053\u3068": 146, "\u306e\u6163\u7fd2": 146, "\u306fapysc\u306e\u63cf\u753b\u9818\u57df\u5168\u4f53\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u3068\u306a\u308a": 146, "\u306f\u901a\u5e38\u306e\u5404\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u30af\u30e9\u30b9\u3068\u306a\u308a\u307e\u3059": 146, "sprite\u30af\u30e9\u30b9": 146, "\u4ee5\u4e0b\u306fhtml\u3068javascript\u306e\u51fa\u529b\u51e6\u7406\u95a2\u4fc2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 146, "display_on_jupyt": [146, 234], "display_on_colaboratori": [146, 234], "\u306a\u3069\u306e\u89aa\u3068\u306a\u308c\u308b\u5404\u30af\u30e9\u30b9\u306f\u4ee5\u4e0b\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 146, "remove_children": 146, "num_children": [146, 185, 190], "get_child_at": [146, 190], "\u4f55\u6545": 146, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30c7\u30fc\u30bf\u578b\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u306e\u304b": 146, "\u306e\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u578b\u306e": 146, "to_str": [146, 183], "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u8a08\u7b97\u5236\u5fa1": 146, "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u6bd4\u8f03\u5236\u5fa1": 146, "to_fix": 146, "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": 146, "\u30af\u30e9\u30b9\u306e\u52a0\u7b97\u3068\u4e57\u7b97\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": 146, "split": 146, "lstrip": 146, "strip": 146, "rstrip": 146, "apply_max_num_of_decimal_plac": 146, "\u30d7\u30ed\u30d1\u30c6\u30a3": 146, "\u30af\u30e9\u30b9\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a": 146, "get": [146, 229], "\u30af\u30e9\u30b9\u306f\u5404\u8868\u793a\u7528\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u57fa\u5e95\u30af\u30e9\u30b9\u3067\u3059": 146, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u3067\u3042\u308a": 146, "\u4e14\u3064": [146, 197, 203], "\u306a\u3069\u306e\u5404\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u57fa\u5e95\u30af\u30e9\u30b9\u3068\u306a\u308a\u307e\u3059": 146, "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u5c5e\u6027\u306e\u6982\u8981": 146, "get_css": 146, "set_css": 146, "get_scale_from_point": 146, "set_scale_from_point": 146, "\u30af\u30e9\u30b9\u306f\u5404\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u63cf\u753b\u51e6\u7406\u3092\u6271\u3044\u307e\u3059": 146, "\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": [146, 179], "draw_triangl": 146, "draw_path": [146, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "svgtextspan": 146, "get_bound": 146, "prevent_default": 146, "stop_propag": 146, "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u767b\u9332\u3068\u30a4\u30d9\u30f3\u30c8\u306e\u767a\u751f": 146, "\u5236\u5fa1": 146, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": 146, "dblclick": [146, 159], "forarrayvalu": 146, "forarrayindicesandvalu": 146, "fordictkei": 146, "fordictvalu": 146, "fordictkeysandvalu": 146, "continu": 146, "\u95a2\u6570": 146, "stop": [146, 220, 223, 234], "reset": [146, 220, 234], "enter_fram": [146, 206, 229, 231], "unbind_enter_fram": 146, "unbind_enter_frame_al": 146, "set_month_end": 146, "total_second": 146, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": 146, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306eduration\u8a2d\u5b9a": 146, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306edelay\u306e\u8a2d\u5b9a": 146, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8fd4\u5374\u5024": 146, "animationbase\u30af\u30e9\u30b9": 146, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3": 146, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 146, "animation_paus": 146, "animation_plai": 146, "animation_reset": 146, "animation_finish": 146, "animation_revers": 146, "animation_tim": 146, "math": 146, "min": 146, "max": 146, "trunc": 146, "delet": 146, "add_debug_info_set": 146, "\u306e\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 146, "\u306e\u5f15\u6570\u8a2d\u5b9a": 146, "javascript": 146, "\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u6319\u52d5": 146, "assert_not_equ": 146, "assert_fals": 146, "assert_great": 146, "assert_less": 146, "assert_less_equ": 146, "assert_arrays_not_equ": 146, "assert_dicts_equ": 146, "assert_dicts_not_equ": 146, "assert_defin": 146, "\u306e\u5404\u30af\u30e9\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 147, "\u30af\u30e9\u30b9\u306fapysc\u306e\u6574\u6570\u306e\u578b\u3068\u306a\u308a\u307e\u3059": 147, "\u3053\u306e\u30af\u30e9\u30b9\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b\u6570\u5024\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 147, "\u3082\u3057\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e\u5f15\u6570\u306b\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f": 147, "\u30af\u30e9\u30b9\u306f\u305d\u306e\u5024\u306e\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3092\u5207\u308a\u6368\u3066\u307e\u3059": 147, "\u30af\u30e9\u30b9\u306fapysc\u306e\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u578b\u3067\u3059": 147, "\u30af\u30e9\u30b9\u3068\u540c\u69d8\u306b\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e\u5f15\u6570\u306b\u6570\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 147, "number_2": [147, 148, 149], "21": 147, "\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9": 147, "\u3053\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306f": 147, "\u30af\u30e9\u30b9\u3068\u540c\u69d8\u306b\u52d5\u4f5c\u3057\u307e\u3059": 147, "python\u958b\u767a\u8005\u306e\u65b9\u306f\u3082\u3057\u304b\u3057\u305f\u3089": 147, "\u30af\u30e9\u30b9\u3088\u308a\u3082\u3053\u3061\u3089\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306e\u65b9\u304c\u6163\u308c\u89aa\u3057\u3093\u3067\u3044\u3066\u81ea\u7136\u306b\u611f\u3058\u3089\u308c\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093": 147, "\u4e00\u65b9\u3067javascript\u306a\u3069\u306e\u958b\u767a\u8005\u306e\u65b9\u306f": 147, "\u3088\u308a\u3082": 147, "\u306e\u65b9\u304c\u81ea\u7136\u306b\u601d\u3048\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093": 147, "\u306e\u5404\u30af\u30e9\u30b9\u306f\u540c\u3058\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 147, "\u8a73\u7d30\u306b\u95a2\u3057\u3066\u306f\u4ee5\u4e0b\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": 147, "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u5404\u8a08\u7b97\u306e\u5236\u5fa1": 147, "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u5404\u6bd4\u8f03\u306e\u5236\u5fa1": 147, "number_value_mixin": [147, 220, 222, 224, 232], "numbervaluemixin": [147, 220, 222, 224, 232], "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u4e0a\u306e\u6574\u6570\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 147, "\u6574\u6570\u306e\u521d\u671f\u5024": 147, "\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u3053\u306e\u30af\u30e9\u30b9\u306f\u5024\u3092\u6574\u6570\u3078\u3068\u5909\u63db\u3057\u307e\u3059": 147, "\u30af\u30e9\u30b9\u306e\u5171\u901a\u306e\u5404\u8a08\u7b97\u5236\u5fa1": 147, "\u30af\u30e9\u30b9\u306e\u5171\u901a\u306e\u5404\u6bd4\u8f03\u5236\u5fa1": 147, "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u7528\u306e\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u30af\u30e9\u30b9\u3067\u3059": 147, "\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u521d\u671f\u5024": 147, "\u3082\u3057\u3082int\u3084int\u306a\u3069\u306e\u578b\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u3053\u306e\u30af\u30e9\u30b9\u306f\u5024\u3092\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3078\u5909\u63db\u3057\u307e\u3059": 147, "\u30af\u30e9\u30b9\u306fnumber\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u3067\u3042\u308a": 147, "\u3053\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306fnumber\u30af\u30e9\u30b9\u3068\u540c\u69d8\u306b\u52d5\u4f5c\u3057\u307e\u3059": 147, "\u73fe\u5728\u306e\u6570\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 147, "\u73fe\u5728\u306e\u6570\u5024": 147, "\u306e\u5404\u30af\u30e9\u30b9\u306e\u52a0\u7b97\u3084\u4e57\u7b97\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u8a08\u7b97\u5236\u5fa1\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 148, "\u306e\u5404\u5024\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b": 148, "\u306a\u3069\u306epython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u5024\u3068\u8a08\u7b97\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u540c\u3058\u578b\u540c\u58eb": 148, "\u540c\u58eb\u306a\u3069": 148, "\u3067\u306e\u8a08\u7b97\u3082\u540c\u69d8\u306b\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 148, "\u8a08\u7b97\u3067\u5de6\u5074\u306e\u5024\u304cpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u5024\u306e\u5834\u5408\u306f\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093": 148, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 148, "typeerror": [148, 193], "unsupport": 148, "operand": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u5404\u5024\u306e\u52a0\u7b97\u51e6\u7406\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3082\u540c\u3058\u3088\u3046\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u5404\u5024\u306e\u6e1b\u7b97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3082\u540c\u69d8\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u5404\u5024\u3092\u4e57\u7b97\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u5404\u5024\u306e\u9664\u7b97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u8fd4\u5374\u5024\u306f": 148, "\u306e\u6574\u6570\u3067\u306f\u306a\u304f": 148, "\u306e\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306b\u306a\u308a\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3067\u9664\u7b97\u3068\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u5207\u308a\u6368\u3066\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u578b\u306e\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3067\u306f\u306a\u304f": 148, "\u306e\u6574\u6570\u3068\u306a\u308a\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u5270\u4f59\u306e\u8a08\u7b97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u6bd4\u8f03\u5236\u5fa1\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 149, "\u5404\u6bd4\u8f03\u5236\u5fa1\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 149, "\u306e\u5024\u3067\u306f\u306a\u304f": [149, 195], "\u306e\u5024\u3092python\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 149, "\u306a\u3069\u306e\u5024\u3068\u6bd4\u8f03\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 149, "\u9593": 149, "\u9593\u306e\u6bd4\u8f03\u306a\u3069\u3082\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 149, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [149, 195], "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u975e\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [149, 195], "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u672a\u6e80\u6761\u4ef6\u306e\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 149, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u4ee5\u4e0b\u6761\u4ef6\u306e\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 149, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u8d85\u904e\u6761\u4ef6\u306e\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 149, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u4ee5\u4e0a\u6761\u4ef6\u306e\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 149, "\u30e1\u30bd\u30c3\u30c9\u306f\u6570\u5024\u3092\u56fa\u5b9a\u306e\u6841\u6570\u306e\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3092\u6301\u3063\u305f\u6587\u5b57\u5217\u3078\u3068\u5909\u63db\u3057\u307e\u3059": 150, "digit": 150, "\u305d\u306e\u5f15\u6570\u306f0": 150, "100\u306e\u7bc4\u56f2\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 150, "\u5f15\u6570\u306b0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": 150, "\u7d50\u679c\u306e\u6587\u5b57\u5217\u306f\u6574\u6570\u306e\u5f62\u5f0f\u306e\u6587\u5b57\u5217\u306b\u306a\u308a\u307e\u3059": 150, "\u5f15\u6570\u306b2\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u7d50\u679c\u306e\u6587\u5b57\u5217\u306f\u5c0f\u6570\u70b9\u4ee5\u4e0b\u304c2\u6841\u306e\u6570\u5024\u306e\u6587\u5b57\u5217\u306b\u306a\u308a\u307e\u3059": 150, "34": [150, 200, 206], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5207\u308a\u6368\u3066\u3089\u308c\u305f\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306b\u5076\u6570\u4e38\u3081\u306e\u51e6\u7406\u3092\u53cd\u6620\u3057\u307e\u3059": 150, "\u4f8b\u3048\u3070\u3082\u3057\u6570\u5024\u304c10": 150, "678\u3067\u3042\u308a": 150, "\u5f15\u6570\u304c\u306b2\u304c\u6307\u5b9a\u3055\u308c\u305f\u3070\u3042\u307d": 150, "\u7d50\u679c\u306e\u6587\u5b57\u5217\u306f10": 150, "68\u306b\u306a\u308a\u307e\u3059": 150, "num": 150, "789": 150, "fixed_float_str": 150, "79": 150, "78900": 150, "to_fixed_basics_usag": 150, "\u5024\u3092\u56fa\u5b9a\u306e\u5c0f\u6570\u70b9\u4ee5\u4e0b\u306e\u6841\u6570\u306e\u6587\u5b57\u5217\u3078\u3068\u5909\u63db\u3057\u307e\u3059": 150, "\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u6841\u6570": 150, "100\u306e\u7bc4\u56f2\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 150, "result_str": [150, 200], "\u5909\u63db\u3055\u308c\u305f\u6587\u5b57\u5217": [150, 227], "\u30af\u30e9\u30b9\u306f\u76f4\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 152, "start_point": [152, 206], "end_point": [152, 206], "\u306e\u5f15\u6570\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": [152, 174], "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306f": [152, 166, 178], "\u306a\u3069\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u5f15\u6570\u3082\u53d7\u3051\u4ed8\u3051\u307e\u3059": [152, 178], "line_basic_usag": 152, "\u306a\u3069\u306e\u4ed6\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3046\u5f62\u3067\u3082\u76f4\u7dda\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 152, "line_x": 152, "\u3053\u306e\u5c5e\u6027\u306e\u5024\u306f\u5f15\u6570\u306e\u5ea7\u6a19\u306e\u6700\u5c0f\u5024\u3068\u540c\u5024\u306b\u306a\u308a\u307e\u3059": [152, 177, 178], "line_i": 152, "line_line_color": 152, "line_line_alpha": 152, "line_line_thick": 152, "line_line_dot_set": 152, "line_line_dash_set": 152, "line_line_round_dot_set": 152, "line_line_dash_dot_set": 152, "40": 152, "line_rotation_around_cent": 152, "line_set_rotation_around_point": 152, "line_scale_x_from_cent": 152, "line_scale_y_from_cent": 152, "line_scale_x_from_point": 152, "line_scale_y_from_point": 152, "line_flip_x": 152, "line_flip_i": 152, "line_skew_x": 152, "line_skew_i": 152, "\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 152, "points2d": 152, "\u7dda\u306e\u958b\u59cb\u5ea7\u6a19": 152, "\u7dda\u306e\u7d42\u4e86\u5ea7\u6a19": 152, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [156, 158], "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f\u6570\u5024\u3092\u683c\u7d0d\u3057\u305f\u914d\u5217\u306e\u4e2d\u3067\u306e\u6700\u5927\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 156, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f": [156, 162], "\u578b\u306e\u5024\u306e\u5f15\u6570": 156, "\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 156, "\u5185\u306e\u5404\u5024\u306e\u578b\u306b\u95a2\u308f\u3089\u305a": [156, 157], "max_valu": 156, "\u6307\u5b9a\u3055\u308c\u305f\u914d\u5217\u306e\u5024\u306e\u4e2d\u304b\u3089\u6700\u5927\u5024\u306e\u6570\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 156, "\u6570\u5024\u3092\u683c\u7d0d\u3057\u305f\u914d\u5217": [156, 157], "\u914d\u5217\u306e\u4e2d\u306e\u6570\u5024\u306e\u6700\u5927\u5024": 156, "\u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 157, "\u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u6307\u5b9a\u3055\u308c\u305f\u6570\u5024\u306e\u914d\u5217\u306e\u4e2d\u306e\u6700\u5c0f\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 157, "\u30af\u30e9\u30b9\u306e\u5024\u306e\u5f15\u6570": 157, "\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 157, "min_valu": 157, "\u6307\u5b9a\u3055\u308c\u305f\u914d\u5217\u306e\u5404\u5024\u306e\u4e2d\u304b\u3089\u6700\u5c0f\u5024\u306e\u6570\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 157, "\u914d\u5217\u306e\u4e2d\u3067\u6700\u5c0f\u306e\u6570\u5024": 157, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5024\u306e\u5c0f\u6570\u70b9\u4ee5\u4e0b\u306e\u5024\u3092\u5207\u308a\u6368\u3066\u3066\u6574\u6570\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 158, "\u306e\u3044\u305a\u308c\u304b\u306e\u578b\u306e\u5024\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 158, "\u3082\u3057\u3082\u5f15\u6570\u306e\u5024\u304c": 158, "\u578b\u306e\u5024\u3067\u3042\u308c\u3070\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5c0f\u6570\u70b9\u4ee5\u4e0b\u306e\u5024\u3092\u5207\u308a\u6368\u3066\u3066": 158, "\u578b\u306b\u5909\u63db\u3057\u305f\u72b6\u614b\u3067\u8fd4\u5374\u3057\u307e\u3059": 158, "\u306e\u578b\u306e\u5024\u3067\u3042\u308c\u3070": 158, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f0\u3082\u3057\u304f\u306f1\u306e": 158, "result_int": 158, "\u6307\u5b9a\u3055\u308c\u305f\u5024\u304b\u3089\u5c0f\u6570\u70b9\u4ee5\u4e0b\u306e\u5024\u3092\u5207\u308a\u843d\u3068\u3057\u307e\u3059": 158, "\u5c0f\u6570\u70b9\u4ee5\u4e0b\u3092\u5207\u308a\u6368\u3066\u308b\u5bfe\u8c61\u306e\u5024": 158, "\u3082\u3057\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c": 158, "\u578b\u306e\u5024\u306e\u5834\u5408": 158, "\u5909\u9006\u5024\u306f": 158, "\u5207\u308a\u6368\u3066\u51e6\u7406\u3068": 158, "\u578b\u3078\u306e\u5909\u63db\u304c\u53cd\u6620\u3055\u308c\u305f\u5024": 158, "\u30af\u30e9\u30b9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 159, "\u30af\u30ea\u30c3\u30af\u3084\u30de\u30a6\u30b9\u30c0\u30a6\u30f3": 159, "\u30de\u30a6\u30b9\u30aa\u30fc\u30d0\u30fc\u306a\u3069\u306e": 159, "\u306e\u5404\u30cf\u30f3\u30c9\u30e9\u3092\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 159, "\u30cf\u30f3\u30c9\u30e9\u306e\u5f15\u6570\u3078\u4efb\u610f\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 159, "\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3059\u308b\u306b\u306f\u307e\u305a\u306f\u30cf\u30f3\u30c9\u30e9\u7528\u306e\u95a2\u6570": 159, "\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9": [159, 160], "\u306e\u5b9a\u7fa9\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 159, "\u3053\u308c\u3089\u306e\u30cf\u30f3\u30c9\u30e9\u306f": 159, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u767b\u9332\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 159, "mouse_event_abstract_click": 159, "\u4ed6\u306b\u3082\u30de\u30a6\u30b9\u30c0\u30a6\u30f3\u3084\u30de\u30a6\u30b9\u30aa\u30fc\u30d0\u30fc": 159, "\u30de\u30a6\u30b9\u30e0\u30fc\u30d6\u306a\u3069\u69d8\u3005\u306a\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u7528\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u5b58\u5728\u3057\u307e\u3059": 159, "\u5c5e\u6027\u306a\u3069\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u57fa\u672c\u7684\u306a\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 160, "\u5404\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 160, "\u5f15\u6570\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": [109, 160, 198, 199, 202], "\u5f15\u6570\u306f\u30a4\u30d9\u30f3\u30c8\u304c\u767a\u884c\u3055\u308c\u305f\u969b\u306b\u4f7f\u7528\u3055\u308c\u308b\u95a2\u6570\u306a\u3069\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3059": 160, "\u5f15\u6570\u306f\u30cf\u30f3\u30c9\u30e9\u3078\u6e21\u3055\u308c\u308b\u8ffd\u52a0\u306e\u4efb\u610f\u306e\u8f9e\u66f8\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3067\u3059": 160, "\u3053\u306e\u5f15\u6570\u306f\u7701\u7565\u3067\u304d\u307e\u3059": 160, "\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u306e\u3088\u3046\u306b\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 160, "_coloropt": 160, "mouse_event_basic_basic_binding_usag": 160, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u5834\u5408": 160, "\u30cf\u30f3\u30c9\u30e9\u306f\u56db\u89d2\u306e\u8272\u3092\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306b\u6e21\u3055\u308c\u305f\u8272\u306b\u5909\u66f4\u3057\u307e\u3059": 160, "\u306e\u5404\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u306f": 160, "\u306a\u3069\u306e\u69d8\u3005\u306a\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u7528\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u305d\u3063\u6b73\u3057\u307e\u3059": 160, "\u306e\u5404\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": [160, 161, 162, 163], "unbind_mousedown": 160, "unbind_": 160, "event_nam": 160, "\u3068\u3044\u3046\u540d\u524d\u306e\u5f62\u5f0f\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 160, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u5358\u4f53\u3092\u89e3\u9664\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 160, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u3092\u89e3\u9664\u3057\u3066\u3044\u308b\u305f\u3081": 160, "\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570\u306f\u547c\u3070\u308c\u306a\u304f\u306a\u308a\u307e\u3059": 160, "mouse_event_basic_basic_unbinding_usag": 160, "\u4ee5\u4e0b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u307f\u3066\u3082\u4f55\u3082\u8d77\u3053\u3089\u306a\u3044\u3053\u3068\u304c\u78ba\u8a8d\u3067\u304d\u307e\u3059": 160, "\u7279\u5b9a\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u3092\u4e00\u62ec\u3067\u89e3\u9664\u3059\u308b\u306e\u304c\u5f79\u7acb\u3064\u6642\u304c\u3042\u308a\u307e\u3059": 160, "\u30a4\u30d9\u30f3\u30c8\u304c\u8a2d\u5b9a\u3067\u304d\u308b\u5404\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 160, "unbind_click_al": [160, 220], "_all": 160, "\u3068\u3044\u3046\u540d\u524d\u306e\u5f62\u5f0f\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u304a\u308a": 160, "\u305d\u308c\u3092\u4f7f\u3063\u3066\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u4e00\u901a\u308a\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 160, "\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3093\u3067\u5168\u3066\u306e\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u3066\u3044\u307e\u3059": 160, "change_color_on_rectangle_click": 160, "change_x_on_rectangle_click": 160, "mouse_event_basic_unbind_all_event_handl": 160, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u307f\u3066\u3082\u8272\u306e\u5909\u5316\u3084x\u5ea7\u6a19\u306e\u66f4\u65b0\u306a\u3069\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059": 160, "\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570": 160, "\u306e\u7b2c\u4e00\u5f15\u6570\u306f": 160, "\u578b\u306e\u5f15\u6570\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 160, "\u7b2c\u4e8c\u5f15\u6570\u306b\u306f": 160, "\u3068\u3044\u3046\u540d\u524d\u306e\u8f9e\u66f8\u306e\u5f15\u6570\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 160, "\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u6642\u306b\u3053\u306eoptions\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306e\u6307\u5b9a\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306b\u306f\u3053\u306e\u5f15\u6570\u306e\u5024\u306f\u7a7a\u306e\u8f9e\u66f8": 160, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u30a4\u30d9\u30f3\u30c8\u767b\u9332\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u306a\u308b": 160, "\u4f8b\u3048\u3070\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u3092\u56db\u89d2\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u8a2d\u5b9a\u3057\u305f\u5834\u5408": 160, "\u5c5e\u6027\u306f\u305d\u306e\u56db\u89d2\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u306a\u308a\u307e\u3059": 160, "\u3082\u3057\u3082\u30cf\u30f3\u30c9\u30e9\u3092\u7279\u5b9a\u306e\u578b\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u307f\u3067\u4f7f\u3046\u3053\u3068\u304c\u5206\u304b\u3063\u3066\u3044\u308b\u5834\u5408": 160, "\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3067\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u306e\u6307\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 160, "\u5c5e\u6027\u306e\u578b\u306e\u6c7a\u5b9a\u306b\u4f7f\u308f\u308c": 160, "mypi": [160, 181], "pylanc": 160, "\u306a\u3069\u306e\u578b\u30c1\u30a7\u30c3\u30af\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u3063\u3066\u3044\u308b\u5834\u5408\u5f79\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 160, "on_rectangle_mousedown": 160, "mouseevent\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 160, "\u306e\u5404\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 160, "\u3053\u308c\u3089\u306e\u5c5e\u6027\u306f\u30b9\u30c6\u30fc\u30b8\u306e\u5de6\u4e0a\u306e\u4f4d\u7f6e\u3092\u57fa\u6e96\u3068\u3057\u305f\u7d76\u5bfe\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 160, "on_mousemov": [160, 162], "mouse_event_basic_stage_x_and_stage_i": 160, "f12\u3092\u62bc\u3057\u3066chrome\u306a\u3069\u306edevtools\u3092\u958b\u304d": 160, "\u4ee5\u4e0b\u306e\u56db\u89d2\u306e\u4e0a\u3067\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u3092\u52d5\u304b\u3059\u3068": 160, "\u306e\u5ea7\u6a19\u5024\u3092\u5bb6\u8a13\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 160, "\u524d\u8ff0\u306e\u30b3\u30fc\u30c9\u3067\u306f\u56db\u89d2\u3092": 160, "\u306e\u4f4d\u7f6e\u306b\u8a2d\u5b9a\u3057\u3066\u3044\u308b\u305f\u3081": 160, "\u306e\u5024\u306f50": 160, "100\u306e\u7bc4\u56f2\u306e\u5024\u3068\u306a\u308a": 160, "\u306e\u5024\u306f100": [160, 222], "150\u306e\u7bc4\u56f2\u306e\u5024\u3068\u306a\u308a\u307e\u3059": 160, "mouseevent\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 160, "\u3068\u3044\u3046\u5c5e\u6027\u3082\u6301\u3063\u3066\u3044\u307e\u3059": 160, "\u3053\u308c\u3089\u306e\u5c5e\u6027\u306f\u30a4\u30d9\u30f3\u30c8\u304c\u767b\u9332\u3055\u308c\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u57fa\u6e96\u3068\u3057\u305f\u76f8\u5bfe\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 160, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306flocal_x\u3068local_y\u306e\u5ea7\u6a19\u304c\u56db\u89d2\u306e\u7bc4\u56f2\u306e\u5ea7\u6a19\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059": 160, "\u56db\u89d2\u306e\u30b5\u30a4\u30ba\u304c50px\u306a\u305f\u3081": 160, "\u306e\u5024\u306f\u4e21\u65b9\u3068\u30820": 160, "50\u306e\u7bc4\u56f2\u306b\u306a\u308a\u307e\u3059": 160, "mouse_event_basic_local_x_and_local_i": 160, "\u4ee5\u4e0b\u306e\u56db\u89d2\u306e\u4e0a\u3067\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u3092\u52d5\u304b\u3057\u3066\u307f\u3066\u51fa\u529b\u7d50\u679c\u3092\u78ba\u8a8d\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044": 160, "\u30b9\u30c6\u30fc\u30b8\u57fa\u6e96\u306ex\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 160, "on_mousedown": [160, 161], "\u30b9\u30c6\u30fc\u30b8\u57fa\u6e96\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 160, "\u30a4\u30d9\u30f3\u30c8\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5185\u306e\u76f8\u5bfe\u5ea7\u6a19\u306ex\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 160, "\u4f8b\u3048\u3070sprite\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u5834\u5408\u306b\u306fsprite\u306e\u5de6\u4e0a\u306e\u4f4d\u7f6e\u3092\u57fa\u6e96\u3068\u3057\u305f\u5ea7\u6a19\u306b\u306a\u308a\u307e\u3059": 160, "\u30a4\u30d9\u30f3\u30c8\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306a\u3044\u306e\u76f8\u5bfe\u5ea7\u6a19\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 160, "\u3053\u306e\u30a4\u30d9\u30f3\u30c8\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u307e\u3059": 160, "\u3053\u306e\u30a4\u30d9\u30f3\u30c8\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 160, "bind_custom_ev": 160, "trigger_custom_ev": 160, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30de\u30a6\u30b9\u3092\u62bc\u3057\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 161, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30de\u30a6\u30b9\u304b\u3089\u6307\u3092\u96e2\u3057\u305f": 161, "\u62bc\u3057\u3066\u3044\u308b\u72b6\u614b\u3092\u89e3\u9664\u3057\u305f": 161, "\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 161, "\u306e\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u304a\u308a": 161, "\u305d\u308c\u3089\u3092\u4f7f\u3063\u3066\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [161, 163], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u306b\u5bfe\u3057\u3066\u30de\u30a6\u30b9\u3092\u62bc\u3057\u305f\u6642\u3068\u96e2\u3057\u305f\u6642\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u305d\u308c\u305e\u308c\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 161, "\u30cf\u30f3\u30c9\u30e9\u3067\u306f\u30de\u30a6\u30b9\u3092\u62bc\u3057\u305f\u6642\u306b\u56db\u89d2\u306e\u8272\u3092\u5909\u66f4\u3057": 161, "\u30de\u30a6\u30b9\u3092\u96e2\u3057\u305f\u6642\u306b\u5143\u306e\u8272\u306b\u623b\u3057\u3066\u3044\u307e\u3059": 161, "on_mouseup": 161, "mousedown_and_mouseup_basic_usag": 161, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 161, "\u306e\u5404\u30cf\u30f3\u30c9\u30e9\u5185\u3067\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u3066\u3044\u308b\u305f\u3081\u30cf\u30f3\u30c9\u30e9\u306e\u51e6\u7406\u306f1\u56de\u306e\u307f\u5b9f\u884c\u3055\u308c\u307e\u3059": 161, "mousedown_and_mouseup_unbind_interfac": 161, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082\u5b58\u5728\u3057\u307e\u3059": 161, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u8a72\u5f53\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u5168\u3066\u53d6\u308a\u9664\u304d\u307e\u3059": 161, "\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u62bc\u3057\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 161, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u62bc\u3057\u305f\u6642\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9": 161, "\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u62bc\u3057\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 161, "\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u62bc\u3057\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u5168\u3066\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 161, "\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u96e2\u3057\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 161, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u96e2\u3057\u305f\u6642\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9": 161, "\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u96e2\u3057\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 161, "\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u96e2\u3057\u305f\u3068\u304e\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u5168\u3066\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 161, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4efb\u610f\u306e": 162, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u30de\u30a6\u30b9\u3092\u52d5\u304b\u3057\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 162, "\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u3092\u52d5\u304b\u3059\u5ea6\u306b\u8a2d\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u304c\u547c\u3070\u308c\u307e\u3059": 162, "\u305d\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 162, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5186\u306b\u5bfe\u3057\u3066\u30de\u30a6\u30b9\u3092\u52d5\u304b\u3057\u305f\u3068\u304d\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 162, "\u5bfe\u8c61\u306e\u5186\u306e\u4e0a\u3067\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u3092\u52d5\u304b\u3059\u3068": 162, "\u5186\u306e\u4f4d\u7f6e\u306f\u30ab\u30fc\u30bd\u30eb\u306e\u4f4d\u7f6e\u306b\u66f4\u65b0\u3055\u308c\u307e\u3059": 162, "stage_x": 162, "stage_i": 162, "mousemove_basic_usag": 162, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30de\u30a6\u30b9\u3092\u52d5\u304b\u3057\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 162, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5186\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u30de\u30a6\u30b9\u3092\u52d5\u304b\u3057\u305f\u3068\u304d\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3059\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059": 162, "mousemove_unbind_interfac": 162, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082\u5b58\u5728\u3057": 162, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u30de\u30a6\u30b9\u3092\u52d5\u304b\u3057\u305f\u3068\u304d\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u5168\u3066\u89e3\u9664\u3057\u307e\u3059": 162, "\u30de\u30a6\u30b9\u3092\u52d5\u304b\u3057\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 162, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30de\u30a6\u30b9\u3092\u52d5\u304b\u3057\u305f\u969b\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9": 162, "\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u3092\u52d5\u304b\u3057\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u3067\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 162, "\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u3092\u52d5\u304b\u3057\u305f\u3068\u304d\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u5168\u3066\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 162, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u5bfe\u8c61\u306e": 163, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u306b\u4e57\u3063\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 163, "\u4e0a\u304b\u3089\u96e2\u308c\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 163, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u304a\u308a": 163, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30de\u30a6\u30b9\u304c\u4e57\u3063\u305f\u6642\u3068\u96e2\u308c\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u56db\u89d2\u306b\u5bfe\u3057\u3066\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 163, "\u56db\u89d2\u306b\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u4e57\u3063\u305f\u6642\u306b\u56db\u89d2\u306e\u8272\u304c\u5909\u66f4\u3055\u308c": 163, "\u30ab\u30fc\u30bd\u30eb\u304c\u96e2\u308c\u305f\u6642\u306b\u8272\u304c\u623b\u3055\u308c\u308b\u3088\u3046\u306b\u8a2d\u5b9a\u3057\u3066\u3042\u308a\u307e\u3059": 163, "on_mouseov": 163, "on_mouseout": 163, "revert": 163, "mous": 163, "over": 163, "mouseover_and_mouseout_basic_usag": 163, "\u304b\u3089\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 163, "\u306e\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570\u5185\u3067\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u3066\u3044\u308b\u305f\u3081\u3053\u308c\u3089\u306e\u30cf\u30f3\u30c9\u30e9\u306f\u6700\u521d\u306e1\u56de\u306e\u307f\u547c\u3070\u308c\u307e\u3059": 163, "unbind": 163, "mouseover_and_mouseout_unbind_interfac": 163, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082\u5b58\u5728\u3057\u307e\u3059": 163, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5bfe\u8c61\u306e": 163, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u5bfe\u8c61\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u5168\u3066\u89e3\u9664\u3057\u307e\u3059": 163, "\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u4e57\u3063\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 163, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u306b\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u4e57\u3063\u305f\u969b\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9": 163, "\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u4e57\u3063\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 163, "\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u4e57\u3063\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u5168\u3066\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 163, "\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u304b\u3089\u96e2\u308c\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 163, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u304b\u3089\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u96e2\u308c\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u5bfe\u8c61\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 163, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u304b\u3089\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u96e2\u308c\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u5168\u3066\u89e3\u9664\u3057\u307e\u3059": 163, "\u306a\u3069\u306e\u30b3\u30f3\u30c6\u30ca\u306e\u30af\u30e9\u30b9\u306e": 165, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5b50\u306e\u6570\u306e": 165, "\u578b\u306e\u6574\u6570\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 165, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u521d\u671f\u5024\u306f": 165, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5b50\u3092\u6301\u3064\u305f\u30810\u3067\u306f\u306a\u304f1\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 165, "\u578b\u306e\u6574\u6570\u306e\u5b50\u306e\u6570\u3092\u8fd4\u5374\u3057\u307e\u3059": 165, "\u305d\u306e\u5024\u3092\u4f7f\u3063\u3066\u5ea7\u6a19\u306e\u8a08\u7b97\u306a\u3069\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 165, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u65b0\u3057\u3044\u56db\u89d2\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059": 165, "\u5c5e\u6027\u306e\u5024\u306f\u65b0\u3057\u3044\u56db\u89d2\u306ex\u5ea7\u6a19\u3092\u6c7a\u3081\u308b\u306e\u306b\u4f7f\u308f\u308c\u3066\u3044\u307e\u3059": 165, "\u3053\u306e\u30b3\u30fc\u30c9\u3067\u306f\u30af\u30ea\u30c3\u30af\u3055\u308c\u305f\u969b\u306b\u73fe\u5728\u306e": 165, "\u5c5e\u6027\u306e\u5024\u3092\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u306b\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 165, "f12\u30ad\u30fc\u3092\u62bc\u3057\u3066\u30b3\u30f3\u30bd\u30fc\u30eb\u3092\u958b\u3044\u3066\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044": 165, "rectangle_x": [165, 182], "new_rect": 165, "children": 165, "num_children_basic_usag": 165, "\u73fe\u5728\u306e\u5b50\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059": [165, 191], "\u73fe\u5728\u306e\u5b50\u306e\u6570": [165, 191], "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u751f\u6210\u3057\u307e\u3059": 166, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306f": [166, 168, 172, 174, 206], "\u306a\u3069\u306e\u5404\u30d1\u30b9\u8a2d\u5b9a\u3092\u683c\u7d0d\u3057\u305f\u30ea\u30b9\u30c8\u3067\u3059": 166, "\u306a\u3069\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u7528\u306e\u5f15\u6570\u3082\u53d7\u3051\u4ed8\u3051\u307e\u3059": 166, "path_basic_usag": 166, "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u306b\u65b0\u3057\u3044\u5ea7\u6a19\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [166, 174], "\u30af\u30e9\u30b9\u306f\u73fe\u5728\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u5ea7\u6a19\u4f4d\u7f6e\u304b\u3089\u65b0\u305f\u306a\u7dda\u306e\u30d1\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": [166, 173], "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u4e0a\u306b\u6c34\u5e73\u65b9\u5411\u306e\u76f4\u7dda\u306e\u63cf\u753b\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [166, 172], "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u4e0a\u306b\u65b0\u3057\u3044\u5782\u76f4\u306e\u76f4\u7dda\u306e\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [166, 171, 175], "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u30782\u6b21\u306e\u30d9\u30b8\u30a7\u66f2\u7dda\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [166, 167], "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u306b\u9023\u7d9a\u3057\u305f2\u6b21\u5143\u306e\u30d9\u30b8\u30a7\u66f2\u7dda\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [166, 168], "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u4e0a\u306b3\u6b21\u306e\u30d9\u30b8\u30a7\u66f2\u7dda\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [166, 169], "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u4e0a\u306b\u9023\u7d9a\u3057\u305f3\u6b21\u30d9\u30b8\u30a7\u66f2\u7dda\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [166, 170], "path_x": 166, "path_i": 166, "path_fill_color": 166, "path_fill_alpha": 166, "path_line_color": 166, "path_line_alpha": 166, "path_line_thick": 166, "path_line_dot_set": 166, "path_line_dash_set": 166, "path_line_round_dot_set": 166, "path_line_dash_dot_set": 166, "path_rotation_around_cent": 166, "path_rotation_around_point": 166, "path_scale_x_from_cent": 166, "path_scale_y_from_cent": 166, "path_scale_x_from_point": 166, "path_scale_y_from_point": 166, "path_flip_x": 166, "path_flip_i": 166, "path_skew_x": 166, "path_skew_i": 166, "line_joint": [166, 177, 178, 182, 229], "\u30d1\u30b9\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 166, "\u8a2d\u5b9a\u3059\u308b\u7dda\u306e\u9023\u7d50\u90e8\u5206\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [166, 177, 178, 182, 229], "\u4e3b\u306b\u3053\u306e\u8a2d\u5b9a\u306f": [167, 168, 169, 170, 171, 172, 173, 174, 175], "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3068": [167, 168, 169, 170, 171, 172, 173, 174, 175], "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u4f7f\u7528\u3055\u308c\u307e\u3059": [167, 168, 169, 170, 171, 172, 173, 174, 175], "\u306e\u5404\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 167, "\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u5236\u5fa1\u70b9\u306e\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 167, "\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u7d42\u70b9\u5ea7\u6a19\u306e\u6307\u5b9a\u3068\u306a\u308a\u307e\u3059": [167, 169], "path_bezier_2d_basic_usage_1": 167, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30de\u30bc\u30f3\u30bf\u8272\u306e\u5186\u3067\u5236\u5fa1\u70b9\u306e\u5ea7\u6a19\u3092\u793a\u3057\u3066\u3044\u307e\u3059": 167, "\u30b7\u30a2\u30f3\u306e\u8272\u3067\u306f\u7d42\u70b9\u5ea7\u6a19\u3092\u793a\u3057\u3066\u3044\u307e\u3059": 167, "magenta_circl": [167, 169, 170], "cyan_circl": [167, 169, 170], "path_bezier_2d_basic_usage_2": 167, "rel": [167, 168, 169, 170, 172, 173, 174, 175], "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u5f15\u6570\u306f\u305d\u306e\u6319\u52d5\u3092\u5909\u66f4\u3057\u307e\u3059": [167, 168, 169, 170, 172, 173, 174, 175], "\u3082\u3057\u305d\u306e\u5f15\u6570\u306btrue\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u5ea7\u6a19\u306f\u76f8\u5bfe\u5ea7\u6a19\u3068\u3057\u3066\u8a2d\u5b9a\u3055\u308c\u307e\u3059": [167, 168, 169, 170, 172, 173, 174, 175], "\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306ffalse\u3068\u306a\u3063\u3066\u304a\u308a": [167, 168, 169, 170, 172, 173, 174, 175], "\u3053\u306e\u8a2d\u5b9a\u3067\u306f\u7d76\u5bfe\u5ea7\u6a19\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059": [167, 168, 169, 170, 172, 173, 174, 175], "\u57fa\u6e96\u3068\u306a\u308b\u5ea7\u6a19\u306f\u5236\u5fa1\u70b9\u306a\u3069\u3067\u306f\u306a\u304f\u958b\u59cb\u70b9\u3068\u306a\u308a\u307e\u3059": 167, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306frelative\u306e\u8a2d\u5b9a\u3092\u884c\u3044\u3064\u3064\u30d9\u30b8\u30a7\u66f2\u7dda\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 167, "\u306e\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u305f\u3081": 167, "\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306f\u8ca0\u306e\u5024\u3068\u306a\u308a": 167, "\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306f0\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 167, "path_bezier_2d_rel": 167, "svg\u306e2\u6b21\u306e\u30d9\u30b8\u30a7\u66f2\u7dda": 167, "q": 167, "\u306e\u30c7\u30fc\u30bf\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 167, "\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u5236\u5fa1\u70b9\u306ex\u5ea7\u6a19": [167, 170], "\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u5236\u5fa1\u70b9\u306ey\u5ea7\u6a19": [167, 170], "\u7d42\u70b9\u306ex\u5ea7\u6a19": [167, 168, 169, 170, 172, 173, 174], "\u7d42\u70b9\u306ey\u5ea7\u6a19": [167, 168, 169, 170, 173, 174, 175], "\u30d1\u30b9\u306e\u5ea7\u6a19\u304c\u76f8\u5bfe\u5ea7\u6a19\u3068\u3057\u3066\u6271\u3046\u304b\u3082\u3057\u304f\u306f\u7d76\u5bfe\u5ea7\u6a19\u3068\u3057\u3066\u6271\u3046\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024": [167, 168, 169, 170, 172, 173, 174, 175], "\u3053\u306e\u8a2d\u5b9a\u306f\u7dda\u5bfe\u79f0\u306a\u4f4d\u7f6e\u306e\u5236\u5fa1\u70b9\u3092\u4f7f\u3046\u3053\u3068\u3067\u6ed1\u3089\u304b\u306a\u66f2\u7dda\u3092\u63cf\u753b\u3057\u307e\u3059": 168, "\u3053\u308c\u3089\u306e\u5ea7\u6a19\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u7d42\u70b9\u5ea7\u6a19\u306e\u6307\u5b9a\u3068\u306a\u308a\u307e\u3059": 168, "\u30af\u30e9\u30b9\u306e\u76f4\u5f8c\u3067\u306e\u307f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3068\u3044\u3046\u5236\u9650\u304c\u3042\u308a\u307e\u3059": 168, "path_bezier_2d_continual_basic_usag": 168, "path_bezier_2d_continual_rel": 168, "svg\u306e\u9023\u7d9a\u3057\u305f2\u6b21\u5143\u306e\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u30c7\u30fc\u30bf\u8a2d\u5b9a\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 168, "\u3053\u306e\u30af\u30e9\u30b9\u306f2\u3064\u306e\u5236\u5fa1\u70b9\u3092\u6301\u3061\u307e\u3059": 169, "\u6bd4\u8f03\u5bfe\u8c61\u3068\u3057\u3066": 169, "2\u6b21\u306e\u30d9\u30b8\u30a7\u66f2\u7dda\u3067\u306f1\u3064\u306e\u5236\u5fa1\u70b9\u306e\u307f\u3092\u6301\u3061\u307e\u3059": 169, "control_x1": [169, 170], "control_y1": [169, 170], "control_x2": [169, 170], "control_y2": [169, 170], "\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u6700\u521d\u306e\u5236\u5fa1\u70b9\u306e\u4f4d\u7f6e\u3092\u6c7a\u5b9a\u3059\u308b\u305f\u3081\u306e\u5ea7\u6a19\u6307\u5b9a\u3067\u3059": 169, "\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e2\u756a\u76ee\u306e\u5236\u5fa1\u70b9\u306e\u4f4d\u7f6e\u3092\u6c7a\u5b9a\u3059\u308b\u305f\u3081\u306e\u5ea7\u6a19\u6307\u5b9a\u3067\u3059": 169, "path_bezier_3d_basic_usage_1": 169, "\u30b7\u30a2\u30f3\u8272\u306e\u5186\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u6700\u521d\u306e\u5236\u5fa1\u70b9\u3092\u793a\u3057\u3066\u3044\u307e\u3059": 169, "\u30de\u30bc\u30f3\u30bf\u306e\u5186\u3067\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e2\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u3092\u793a\u3057\u3066\u3044\u307e\u3059": 169, "\u9ec4\u8272\u306e\u5186\u3067\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u7d42\u70b9\u5ea7\u6a19\u3092\u793a\u3057\u3066\u3044\u307e\u3059": 169, "yellow_circl": 169, "ff0": 169, "path_bezier_3d_basic_usage_2": 169, "\u57fa\u6e96\u70b9\u306f\u958b\u59cb\u4f4d\u7f6e\u306e\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 169, "\u6700\u521d\u306e\u5236\u5fa1\u70b9\u30842\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093": 169, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306frelative\u306e\u8a2d\u5b9a\u3092\u3057\u3066\u30d9\u30b8\u30a7\u66f2\u7dda\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 169, "path_bezier_3d_rel": 169, "svg\u306e3\u6b21\u306e\u30d9\u30b8\u30a7\u66f2\u7dda": 169, "\u306e\u30d1\u30b9\u30c7\u30fc\u30bf\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 169, "\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u6700\u521d\u306e\u5236\u5fa1\u70b9\u306ex\u5ea7\u6a19": 169, "\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u6700\u521d\u306e\u5236\u5fa1\u70b9\u306ey\u5ea7\u6a19": 169, "\u30d9\u30b8\u30a7\u66f2\u7dda\u306e2\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u306ex\u5ea7\u6a19": 169, "\u30d9\u30b8\u30a7\u66f2\u7dda\u306e2\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u306ey\u5ea7\u6a19": 169, "\u30af\u30e9\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u308b\u307e\u3059": 170, "\u3053\u306e\u8a2d\u5b9a\u306f\u5236\u5fa1\u70b9\u306b\u7dda\u5bfe\u79f0\u4f4d\u7f6e\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u3067\u6ed1\u3089\u304b\u306a\u66f2\u7dda\u3092\u63cf\u753b\u3057\u307e\u3059": 170, "\u306e\u5404\u5f15\u6570\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 170, "\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e2\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u306e\u4f4d\u7f6e\u3068\u306a\u308a\u307e\u3059": 170, "\u30d9\u30b8\u30a7\u66f2\u7dda\u306e2\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u306e\u7dda\u5bfe\u79f0\u306e\u4f4d\u7f6e\u306f": 170, "\u30af\u30e9\u30b9\u306e1\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u306e\u4f4d\u7f6e\u3068\u3057\u3066\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 170, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b\u306f1\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u306e\u4f4d\u7f6e\u306e\u6307\u5b9a\u306e\u5f15\u6570\u306f\u5b58\u5728\u3057\u307e\u305b\u3093": 170, "\u5f15\u6570\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u7d42\u70b9\u4f4d\u7f6e\u306e\u6307\u5b9a\u3068\u306a\u308a\u307e\u3059": 170, "\u30af\u30e9\u30b9\u306b\u306f": 170, "\u30af\u30e9\u30b9\u306e\u76f4\u5f8c\u3067\u306e\u307f\u4f7f\u7528\u3067\u304d\u308b\u3068\u3044\u3046\u5236\u9650\u304c\u5b58\u5728\u3057\u307e\u3059": 170, "420": 170, "path_bezier_3d_continual_basic_usage_1": 170, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30b7\u30a2\u30f3\u306e\u5186\u306f\u5236\u5fa1\u70b9": 170, "\u306e\u4f4d\u7f6e\u3092\u793a\u3057": 170, "\u30de\u30bc\u30f3\u30bf\u306e\u5186\u3067\u306f\u7d42\u70b9\u306e\u4f4d\u7f6e": 170, "\u3092\u793a\u3057\u307e\u3059": 170, "path_bezier_3d_continual_basic_usage_2": 170, "\u57fa\u6e96\u3068\u306a\u308b\u4f4d\u7f6e\u306f\u5236\u5fa1\u70b9\u306a\u3069\u3067\u306f\u306a\u304f\u59cb\u70b9\u306e\u4f4d\u7f6e\u3068\u306a\u308a\u307e\u3059": 170, "path_bezier_3d_continual_rel": 170, "svg\u306e\u9023\u7d9a\u3057\u305f3\u6b21\u30d9\u30b8\u30a7\u66f2\u7dda": 170, "\u306e\u305f\u3081\u306e\u30d1\u30b9\u30c7\u30fc\u30bf\u306e\u30af\u30e9\u30b9\u3067\u3059": [170, 171, 174], "\u3082\u3057\u3082\u30d1\u30b9\u306e\u59cb\u70b9\u3068\u7d42\u70b9\u304c\u7e4b\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408": 171, "\u3053\u306e\u8a2d\u5b9a\u306f\u3053\u308c\u3089\u306e\u5ea7\u6a19\u3092\u63a5\u7d9a\u3057\u307e\u3059": 171, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306f\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": [171, 186], "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3082\u3057\u304f\u306f": [171, 172, 173, 174, 175], "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e": [171, 172, 173, 174, 175], "\u5f15\u6570\u3067\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u5fc5\u8981\u3068\u3055\u308c\u307e\u3059": [171, 172, 173, 174, 175], "\u5de6\u5074\u306e\u30d1\u30b9\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306f": 171, "close": 171, "\u30af\u30e9\u30b9\u306e\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u305b\u3093": 171, "\u9006\u306b\u53f3\u5074\u306e\u30d1\u30b9\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3067\u306f": 171, "\u30af\u30e9\u30b9\u306e\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u3066\u304a\u308a": 171, "\u59cb\u70b9\u3068\u7d42\u70b9\u306e\u5ea7\u6a19\u304c\u63a5\u7d9a\u3055\u308c\u3066\u3044\u307e\u3059": 171, "left_path": 171, "right_path": 171, "path_close_basic_usag": 171, "svg\u306e\u30d1\u30b9\u3092\u9589\u3058\u308b\u6307\u5b9a": 171, "00": 171, "\u5782\u76f4\u65b9\u5411\u306e\u5ea7\u6a19\u8a2d\u5b9a\u304c\u4e0d\u8981\u306a\u5782\u76f4\u65b9\u5411\u306e\u76f4\u63a5\u306e\u63cf\u753b\u304c\u5fc5\u8981\u306a\u969b\u306b\u3053\u306e\u30af\u30e9\u30b9\u3092\u4f7f\u3046\u3053\u3068\u3067\u30b3\u30fc\u30c9\u306e\u8a18\u8ff0\u3092\u30b7\u30f3\u30d7\u30eb\u306b\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 172, "\u306e\u5f15\u6570\u306e\u307f\u5fc5\u8981\u3068\u3057\u307e\u3059": 172, "50\u306e\u4f4d\u7f6e\u304b\u3089x": [172, 173], "150\u306e\u4f4d\u7f6e\u3078\u6c34\u5e73\u65b9\u5411\u306e\u76f4\u7dda\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 172, "path_horizontal_basic_usag": 172, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306frelative\u306e\u8a2d\u5b9a\u3092\u884c\u3044": [172, 173], "\u305d\u3057\u3066\u6c34\u5e73\u65b9\u5411\u306b50px\u305a\u3089\u3057\u305f\u4f4d\u7f6e\u306b\u76f4\u7dda\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 172, "path_horizontal_rel": 172, "svg\u306e\u6c34\u5e73\u65b9\u5411\u3078\u306e\u7dda": 172, "h": 172, "\u306e\u63cf\u753b\u306e\u305f\u3081\u306e\u30d1\u30b9\u30c7\u30fc\u30bf\u306e\u30af\u30e9\u30b9\u3067\u3059": [172, 173, 175], "\u306e\u5f15\u6570\u6307\u5b9a\u304c\u5fc5\u8981\u3068\u306a\u308a\u307e\u3059": 173, "50\u306e\u4f4d\u7f6e\u306b\u5411\u3051\u3066": 173, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8a2d\u5b9a\u3057\u3066\u7dda\u306e\u63cf\u753b\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 173, "path_line_to_basic_usag": 173, "\u73fe\u5728\u306e\u4f4d\u7f6e\u304b\u308950px\u4e0b\u306e\u4f4d\u7f6e\u306b\u5411\u3051\u3066\u7dda\u306e\u63cf\u753b\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 173, "path_line_to_rel": 173, "svg\u306e\u7279\u5b9a\u5ea7\u6a19\u306b\u5bfe\u3059\u308b\u7dda": 173, "l": 173, "\u3053\u306e\u8a2d\u5b9a\u306f\u5ea7\u6a19\u8a2d\u5b9a\u306e\u307f\u3092\u884c\u3044": 174, "\u65b0\u3057\u3044\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u8ffd\u52a0\u306a\u3069\u306f\u884c\u3044\u307e\u305b\u3093": 174, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066x": 174, "50\u306e\u5ea7\u6a19\u4f4d\u7f6e\u3092\u8a2d\u5b9a\u3057\u305f\u5f8c\u306bx": 174, "50\u306e\u4f4d\u7f6e\u3078\u7dda\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 174, "path_move_to_basic_usag": 174, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306frelative\u306e\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u304a\u308a": 174, "\u76f8\u5bfe\u7684\u306b50px\u4e0b\u306e\u4f4d\u7f6e\u306b\u79fb\u52d5\u3055\u305b\u3066\u3044\u307e\u3059": 174, "path_move_to_rel": 174, "svg\u306e\u7279\u5b9a\u5ea7\u6a19\u3078\u306e\u79fb\u52d5": 174, "m": 174, "\u3053\u306e\u8a2d\u5b9a\u306f\u3082\u3057\u5782\u76f4\u65b9\u5411\u306e\u7dda\u306e\u63cf\u753b\u306e\u307f\u304c\u5fc5\u8981\u3067\u6c34\u5e73\u65b9\u5411\u306e\u5ea7\u6a19\u8a2d\u5b9a\u304c\u4e0d\u8981\u306a\u5834\u5408\u306b\u30b3\u30fc\u30c9\u306e\u8a18\u8ff0\u3092\u30b7\u30f3\u30d7\u30eb\u306b\u3057\u307e\u3059": 175, "\u306e\u5f15\u6570\u6307\u5b9a\u306e\u307f\u5fc5\u8981\u3068\u3057\u307e\u3059": 175, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fy": 175, "50\u306e\u5ea7\u6a19\u304b\u3089y": 175, "150\u306e\u5ea7\u6a19\u306b\u5411\u3051\u3066\u5782\u76f4\u306e\u76f4\u7dda\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 175, "path_vertical_basic_usag": 175, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306frelative\u306e\u8a2d\u5b9a\u3092\u3057\u3066\u73fe\u5728\u306e\u5ea7\u6a19\u304b\u3089\u5782\u76f4\u65b9\u5411\u306b50px\u4e0b\u306e\u4f4d\u7f6e\u306b\u76f4\u7dda\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 175, "path_vertical_rel": 175, "svg\u306e\u5782\u76f4\u65b9\u5411\u3078\u306e\u7dda": 175, "\u30af\u30e9\u30b9\u306f2\u6b21\u5143\u306e\u5ea7\u6a19\u5024\u3092\u6271\u3046\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30af\u30e9\u30b9\u3067": 176, "x\u5ea7\u6a19\u3068y\u5ea7\u6a19\u3092\u6271\u3044\u307e\u3059": 176, "\u30af\u30e9\u30b9\u306a\u3069\u306e\u4e00\u90e8\u306e\u30af\u30e9\u30b9\u3067\u4f7f\u7528\u3055\u308c": 176, "\u5404\u9802\u70b9\u5ea7\u6a19\u306e\u8a2d\u5b9a\u7528\u306b\u53c2\u7167\u3055\u308c\u307e\u3059": 176, "\u306e\u5404\u5f15\u6570\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 176, "\u5404\u5f15\u6570\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 176, "\u306e\u5024\u304b\u3082\u3057\u304f\u306fapysc\u306e": 176, "point_1": 176, "point_2": 176, "\u306e\u5c5e\u6027\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b": 176, "\u5c5e\u6027\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b": 176, "\u578b\u306e\u5024\u3092\u4f7f\u3063\u3066\u5024\u3092\u66f4\u65b0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 176, "\u306e\u5024\u306e\u30ea\u30b9\u30c8\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 176, "\u305d\u306e\u305f\u3081\u3053\u306e\u7bc0\u3067\u306f\u305d\u306e\u63cf\u753b\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3088\u308b": 176, "\u30af\u30e9\u30b9\u3092\u4f7f\u3063\u305f\u30b3\u30fc\u30c9\u4f8b\u3092\u8f09\u305b\u3066\u3044\u307e\u3059": 176, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f3\u70b9\u306e\u5ea7\u6a19\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u4e09\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 176, "point2d_basic_usag": 176, "2\u6b21\u5143\u306e\u5ea7\u6a19\u5024\u3092\u6271\u3046\u30af\u30e9\u30b9\u3067\u3059": 176, "x\u5ea7\u6a19\u306e\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 176, "y\u5ea7\u6a19\u306e\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 176, "\u30af\u30e9\u30b9\u306f\u591a\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 177, "\u306e\u30ea\u30b9\u30c8\u306e\u5f15\u6570\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u3068\u306a\u308a\u307e\u3059": 177, "polygon_basic_usag": 177, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3046\u5f62\u3067\u3082\u591a\u89d2\u5f62\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 177, "polygon_x": 177, "polygon_i": 177, "polygon_fill_color": 177, "polygon_fill_alpha": 177, "polygon_line_color": 177, "polygon_line_alpha": 177, "polygon_line_thick": 177, "polygon_line_dot_set": 177, "polygon_line_dash_set": 177, "polygon_line_round_dot_set": 177, "polygon_line_dash_dot_set": 177, "polygon_rotation_around_cent": 177, "polygon_set_rotation_around_point": 177, "polygon_scale_x_from_cent": 177, "polygon_scale_y_from_cent": 177, "polygon_scale_x_from_point": 177, "polygon_scale_y_from_point": 177, "polygon_flip_x": 177, "polygon_flip_i": 177, "polygon_skew_x": 177, "polygon_skew_i": 177, "\u591a\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 177, "\u3053\u306e\u30af\u30e9\u30b9\u306fpolyline\u30af\u30e9\u30b9\u3068\u4f3c\u3066\u3044\u307e\u3059\u304c": 177, "polyline\u30af\u30e9\u30b9\u3068\u306f\u7570\u306a\u308a\u3053\u306e\u30af\u30e9\u30b9\u3067\u306f\u5ea7\u6a19\u306e\u7d42\u70b9\u3068\u59cb\u70b9\u304c\u63a5\u7d9a\u3055\u308c\u308b\u70b9\u304c\u7570\u306a\u308a\u307e\u3059": 177, "\u591a\u89d2\u5f62\u306e\u5404\u9802\u70b9\u306e\u5ea7\u6a19\u306e\u30ea\u30b9\u30c8": 177, "\u30af\u30e9\u30b9\u306f\u6298\u308c\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 178, "\u30af\u30e9\u30b9\u306f\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b": 178, "\u306e\u30ea\u30b9\u30c8\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 178, "polyline_basic_usag": 178, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3046\u5f62\u3067\u3082\u6298\u308c\u7dda\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 178, "polyline_x": 178, "polyline_i": 178, "polyline_fill_color": 178, "polyline_fill_alpha": 178, "polyline_line_color": 178, "polyline_line_alpha": 178, "polyline_line_thick": 178, "polyline_line_dot_set": 178, "polyline_line_dash_set": 178, "polyline_line_round_dot_set": 178, "polyline_line_dash_dot_set": 178, "polyline_rotation_around_cent": 178, "polyline_set_rotation_around_point": 178, "polyline_scale_x_from_cent": 178, "polyline_scale_y_from_cent": 178, "polyline_scale_x_from_point": 178, "polyline_scale_y_from_point": 178, "polyline_flip_x": 178, "polyline_flip_i": 178, "polyline_skew_x": 178, "polyline_skew_i": 178, "\u6298\u308c\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 178, "\u7dda\u306e\u5ea7\u6a19\u306e\u30ea\u30b9\u30c8": 178, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306fapysc\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u6700\u521d\u306e\u4e00\u6b69\u3068\u3057\u3066\u306e\u8af8\u3005\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 179, "apysc\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u3046\u306b\u306fpython3": 179, "7\u3082\u3057\u304f\u306f\u305d\u308c\u4ee5\u964d\u306epython\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u5fc5\u8981\u3067\u3059": 179, "apysc\u306fpip\u306e\u30b3\u30de\u30f3\u30c9\u3092\u4f7f\u3063\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 179, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306fapysc\u306e\u5404\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8868\u793a\u3059\u308b\u9818\u57df\u3068\u306a\u308b\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u3059": 179, "\u5e45\u306e\u8a2d\u5b9a\u3068\u3057\u3066\u306e": 179, "\u9ad8\u3055\u306e\u8a2d\u5b9a\u3068\u3057\u3066\u306e": 179, "\u305d\u3057\u3066\u80cc\u666f\u8272\u3068\u3057\u3066\u306e": 179, "\u5f15\u6570\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 179, "\u3055\u3089\u306b": 179, "\u7d50\u679c\u306ehtml\u3068javascript\u306e\u30d5\u30a1\u30a4\u30eb\u3092": 179, "\u95a2\u6570\u306b\u3088\u3063\u3066\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 179, "\u3053\u306e\u30b1\u30fc\u30b9\u3067\u306f\u307e\u3060\u9ed2\u3044\u80cc\u666f\u306e\u30b9\u30c6\u30fc\u30b8\u304c\u8868\u793a\u3055\u308c\u308b\u3060\u3051\u3067\u3059": 179, "quick_start_stage_cr": 179, "\u3053\u306e\u30b3\u30fc\u30c9\u3067\u306f": 179, "\u5f15\u6570\u306b\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u7d50\u679c\u306ehtml\u3068javascript\u306e\u5404\u30d5\u30a1\u30a4\u30eb\u3092\u751f\u6210\u3057\u307e\u3059": 179, "\u306e\u30d5\u30a1\u30a4\u30eb": 179, "\u3092\u958b\u304f\u3053\u3068\u3067\u51fa\u529b\u7d50\u679c\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 179, "\u30af\u30e9\u30b9\u306f\u5404\u8868\u793a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30b3\u30f3\u30c6\u30ca\u3068\u306a\u308b\u30af\u30e9\u30b9\u3067\u3042\u308a": 179, "\u5c5e\u6027\u3092\u4f7f\u3063\u3066\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 179, "vector": 179, "quick_start_sprite_graph": 179, "\u30af\u30e9\u30b9\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": 179, "\u95a2\u6570\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u3066\u3044\u304d\u307e\u3059": 180, "\u95a2\u6570\u306f": [180, 228], "\u578b\u306e\u6307\u5b9a\u306e\u7bc4\u56f2\u306e\u914d\u5217\u3092\u4f5c\u6210\u3057\u307e\u3059": 180, "\u3082\u3057\u3082\u5f15\u6570\u30921\u3064\u3060\u3051\u6307\u5b9a\u3057\u305f\u5834\u5408": 180, "\u7bc4\u56f2\u306e\u914d\u5217\u306f0\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u5f15\u6570\u306e\u5024\u3092": 180, "1\u3057\u305f\u7bc4\u56f2\u306b\u306a\u308a\u307e\u3059": 180, "range_arr": 180, "range_basics_usage_1": 180, "\u3082\u30572\u3064\u306e\u5f15\u6570\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u7bc4\u56f2\u306e\u914d\u5217\u306f\u6700\u521d\u306e\u5f15\u6570\u306e\u5024": 180, "2\u3064\u76ee\u306e\u5f15\u6570\u306e\u5024\u3092": 180, "range_basics_usage_2": 180, "\u3082\u30573\u3064\u5f15\u6570\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u7bc4\u56f2\u306e\u914d\u5217\u306f\u6700\u521d\u306e\u5f15\u6570\u306e\u5024": 180, "1\u3057\u305f\u7bc4\u56f2\u3068\u306a\u308a": 180, "\u5404\u5024\u306f3\u3064\u76ee\u306b\u6307\u5b9a\u3055\u308c\u305f\u5f15\u6570\u306e\u5024\u306e\u30b9\u30c6\u30c3\u30d7\u3067\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 180, "range_basics_usage_3": 180, "arg": [180, 228], "\u6574\u6570\u306e\u6307\u5b9a\u7bc4\u56f2\u306e\u914d\u5217\u3092\u751f\u6210\u3057\u307e\u3059": 180, "\u751f\u6210\u3055\u308c\u305f\u914d\u5217": 180, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306fmypy\u3084pyl": 181, "pyright": 181, "\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306e\u30c1\u30a7\u30c3\u30af\u7528\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 181, "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306fmypy\u3068pyl": 181, "\u306e\u578b\u30c1\u30a7\u30c3\u30af\u306e\u5404\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 181, "\u305d\u306e\u305f\u3081apysc\u3092\u4f7f\u3063\u305f\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u306f\u3053\u308c\u3089\u306e2\u3064\u306e": 181, "\u3044\u305a\u308c\u304b\u3082\u3057\u304f\u306f\u4e21\u65b9\u306e": 181, "\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u4f7f\u7528\u304c\u76f8\u6027\u304c\u826f\u304f\u5411\u3044\u3066\u3044\u307e\u3059": 181, "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f": [181, 186], "\u306e\u5f15\u6570\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u3066mypy\u306emisc": 181, "miscellan": 181, "\u306e\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9\u306e\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3057\u3066\u3044\u307e\u3059": 181, "\u3053\u306e\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9\u306f\u591a\u304f\u306e\u30a8\u30e9\u30fc\u3092apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u4e0a\u3067\u767a\u751f\u3055\u305b\u307e\u3059\u304c": 181, "\u5927\u534a\u306f\u7121\u5bb3\u306a\u30a8\u30e9\u30fc\u3068\u306a\u308b\u305f\u3081apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u3053\u308c\u3089\u3092\u7121\u8996\u3059\u308b\u5f62\u3067\u958b\u767a\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 181, "issu": 181, "decor": [181, 216], "1362": 181, "\u30af\u30e9\u30b9\u306f\u56db\u89d2\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 182, "\u306e\u5f15\u6570\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 182, "rectangle_basic_usag": 182, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u3082\u56db\u89d2\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 182, "rectangle_i": 182, "rectangle_width": 182, "rectangle_height": 182, "\u5c5e\u6027\u3067\u306f\u56db\u89d2\u306e\u89d2\u4e38\u306e\u5e45\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 182, "rectangle_ellipse_width": 182, "\u5c5e\u6027\u3067\u306f\u56db\u89d2\u306e\u89d2\u4e38\u306e\u9ad8\u3055\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 182, "rectangle_ellipse_height": 182, "rectangle_fill_color": 182, "rectangle_fill_alpha": 182, "rectangle_line_color": 182, "rectangle_line_alpha": 182, "rectangle_line_thick": 182, "rectangle_line_dot_set": 182, "rectangle_line_dash_set": 182, "rectangle_line_round_dot_set": 182, "rectangle_line_dash_dot_set": 182, "rectangle_rotation_around_cent": 182, "rectangle_set_rotation_around_point": 182, "rectangle_scale_x_from_cent": 182, "rectangle_scale_y_from_cent": 182, "rectangle_scale_x_from_point": 182, "rectangle_scale_y_from_point": 182, "rectangle_flip_x": 182, "rectangle_flip_i": 182, "rectangle_skew_x": 182, "rectangle_skew_i": 182, "\u56db\u89d2\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059": 182, "lext_x": 183, "\u3068\u3044\u3063\u305f\u56db\u89d2\u306e\u5e7e\u4f55\u5b66": 183, "\u5ea7\u6a19\u3084\u30b5\u30a4\u30ba\u306a\u3069": 183, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3061\u307e\u3059": 183, "\u591a\u304f\u306e\u30b1\u30fc\u30b9\u3067\u306f": 183, "apysc\u304c\u5185\u90e8\u3067": 183, "\u30af\u30e9\u30b9\u3092\u521d\u671f\u5316\u3057\u307e\u3059": 183, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057": 183, "\u4e14\u3064\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u56db\u89d2\u306e\u5e7e\u4f55\u5b66\u306e\u30c7\u30fc\u30bf": 183, "\u30d0\u30a6\u30f3\u30c7\u30a3\u30f3\u30b0\u30dc\u30c3\u30af\u30b9": 183, "\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 183, "text_1": 183, "rectangle_geom_basic_usag": 183, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u5404\u5c5e\u6027\u306e\u5ea7\u6a19\u3092\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 183, "point_radiu": 183, "ae59e3": 183, "right_x_and_top_y_circl": 183, "right_x_and_top_y_text": 183, "726efa": 183, "left_x_and_bottom_y_circl": 183, "left_x_and_bottom_y_text": 183, "6eaee6": 183, "right_x_and_bottom_y_circl": 183, "right_x_and_bottom_y_text": 183, "center_x_and_center_y_circl": 183, "center_x_and_center_y_text": 183, "rectangle_geom_each_attribute_point": 183, "\u56db\u89d2\u306e\u5e7e\u4f55\u5b66\u60c5\u5831\u3092\u6271\u3046\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 183, "\u56db\u89d2\u306e\u5de6\u7aef\u306ex\u5ea7\u6a19": 183, "\u56db\u89d2\u306e\u4e2d\u592e\u306ex\u5ea7\u6a19": 183, "\u56db\u89d2\u306e\u53f3\u7aef\u306ex\u5ea7\u6a19": 183, "\u56db\u89d2\u306e\u4e0a\u7aef\u306ey\u5ea7\u6a19": 183, "\u56db\u89d2\u306e\u4e2d\u592e\u306ey\u5ea7\u6a19": 183, "\u56db\u89d2\u306e\u4e0b\u7aef\u306ey\u5ea7\u6a19": 183, "\u56db\u89d2\u306e\u5de6\u7aef\u306ex\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u4e2d\u592e\u306ex\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u53f3\u7aef\u306ex\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u4e0a\u7aef\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u4e2d\u592e\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u4e0b\u7aef\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u5e45\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u5e45\u306e\u5024": 183, "\u56db\u89d2\u306e\u9ad8\u3055\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u9ad8\u3055\u306e\u5024": 183, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u30b3\u30f3\u30c6\u30ca\u306e\u5404\u30af\u30e9\u30b9\u306e": 185, "\u30e1\u30bd\u30c3\u30c9\u306f\u30b3\u30f3\u30c6\u30ca\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u5168\u3066\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 185, "\u3044\u305a\u308c\u304b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u5834\u5408": 185, "\u30e1\u30bd\u30c3\u30c9\u304c\u547c\u3070\u308c\u5168\u3066\u306e\u5b50\u304c\u53d6\u308a\u9664\u304b\u308c\u307e\u3059": 185, "remove_children_basic_usag": 185, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u5168\u3066\u306e\u5b50\u8981\u7d20\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 185, "\u30af\u30e9\u30b9\u3092\u5404\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u3068\u540c\u3058\u3088\u3046\u306a\u7406\u7531\u3067\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 186, "\u30af\u30e9\u30b9\u306fjavascript\u306e": 186, "\u306e\u30b3\u30fc\u30c9\u306e\u3088\u3046\u306b\u632f\u308b\u821e\u3044\u307e\u3059": 186, "\u5f93\u3063\u3066": 186, "\u3053\u306e\u30af\u30e9\u30b9\u306f\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9\u5185\u306e\u30b9\u30b3\u30fc\u30d7\u3067\u306e\u307f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 186, "\u306a\u3069\u306e\u6761\u4ef6\u5206\u5c90\u306e\u8a18\u8ff0\u5185\u306a\u3069\u3067\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 186, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u305f\u3073\u306b\u5857\u308a\u306e\u8272\u3092\u5909\u66f4\u3057\u3066\u3044\u307e\u3059": 186, "\u3067\u306e\u5206\u5c90\u5185\u3067\u306f": 186, "\u30af\u30e9\u30b9\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u305f\u3081": 186, "1\u56de\u306e\u30af\u30ea\u30c3\u30af\u3067\u306f1\u56de\u306e\u8272\u5909\u66f4\u306e\u307f\u884c\u308f\u308c\u307e\u3059": 186, "00ffaa": [143, 186], "return_basic_usag": 186, "\u306e\u30b3\u30fc\u30c9\u8868\u73fe\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 186, "\u3053\u306e\u30af\u30e9\u30b9\u306f\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u3067\u306e\u307f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 186, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fhtml\u3068javascript\u5168\u4f53\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u51fa\u529b\u3057\u307e\u3059": 187, "apysc\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u6700\u5f8c\u3067html\u306a\u3069\u3092\u51fa\u529b\u3059\u308b\u305f\u3081\u306b\u3053\u306e\u95a2\u6570\u306e\u547c\u3073\u51fa\u3057\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 187, "\u95a2\u6570\u3067\u306f\u6700\u4f4e\u9650": 187, "\u3053\u306e\u5f15\u6570\u306fhtml\u3068javascript\u306e\u5404\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u529b\u5148\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3068\u306a\u308a\u307e\u3059": 187, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fhtml\u3068javascript\u306e\u5404\u30d5\u30a1\u30a4\u30eb\u51fa\u529b\u3057\u3066\u3044\u307e\u3059": 187, "\u51fa\u529b\u3057\u305fhtml\u3067\u306f\u7e26\u6a2a150px\u306e\u7a7a\u306e\u30b9\u30c6\u30fc\u30b8\u306e\u307f\u8868\u793a\u3055\u308c\u308b\u3088\u3046\u306b\u3057\u3066\u3042\u308a\u307e\u3059": 187, "save_overall_html_interface_basic_usag": 187, "\u4e0a\u8a18\u306e\u30b3\u30fc\u30c9\u3067\u306f": 187, "\u306e\u30d1\u30b9\u306bhtml\u30d5\u30a1\u30a4\u30eb\u3084\u4ed6\u306ejavascript\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u30d5\u30a1\u30a4\u30eb\u304c\u51fa\u529b\u3055\u308c\u307e\u3059": 187, "\u95a2\u6570\u306b\u306f": 187, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5f15\u6570\u304c\u5b58\u5728\u3057\u307e\u3059": 187, "\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306ftrue\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 187, "\u3053\u306e\u8a2d\u5b9a\u306f\u3082\u3057true\u306b\u306a\u3063\u3066\u3044\u304d\u308c\u3070\u51fa\u529b\u7d50\u679c\u306ehtml\u3092\u6700\u5c0f\u5316": 187, "false\u306e\u8a2d\u5b9a\u306f\u30c7\u30d0\u30c3\u30b0\u6642\u306a\u3069\u306b\u4fbf\u5229\u306a\u6642\u304c\u3042\u308a\u307e\u3059": 187, "dest_dir": 187, "\u3082\u3057\u3082javascript\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u30d1\u30b9\u3092\u8abf\u6574\u3057\u305f\u3044\u5834\u5408": 187, "js_lib_dir_path": 187, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u306a\u308b\u5f15\u6570\u3067\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 187, "\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u51fa\u529b\u3055\u308c\u305fhtml": 187, "\u5185\u306ejavascript\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30d1\u30b9\u6307\u5b9a\u3092\u4e0a\u66f8\u304d\u3057\u307e\u3059": 187, "\u3053\u306e\u8a2d\u5b9a\u306f\u4f8b\u3048\u3070django\u306e\u3088\u3046\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u9759\u7684\u30d5\u30a1\u30a4\u30eb\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b\u5f62\u3067javascript\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u3066html\u3092\u51fa\u529b\u3057\u305f\u3044\u5834\u5408\u306a\u3069\u306b\u5f79\u7acb\u3064\u6642\u304c\u3042\u308a\u307e\u3059": 187, "skip_js_lib_export": 187, "\u306e\u5f15\u6570\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3082\u65e2\u306b\u51fa\u529b\u6e08\u307f\u306ejavascript\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u51fa\u529b\u3092\u7701\u7565\u3057\u305f\u3044\u5834\u5408\u306b\u5f79\u7acb\u3061\u307e\u3059": 187, "\u3053\u306e\u8a2d\u5b9a\u3092\u6709\u52b9\u306b\u3059\u308b\u3068javascript\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u51fa\u529b\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3059": 187, "static": 187, "j": 187, "\u73fe\u5728\u306e\u5b9f\u88c5\u3067\u306f": 187, "\u306e\u8a2d\u5b9a\u3067\u306fjavascript\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u529b\u5148\u306f\u5909\u66f4\u3055\u308c\u307e\u305b\u3093": 187, "\u51fa\u529b\u3055\u308c\u308bhtml\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3092\u5909\u66f4\u3057\u305f\u3044\u5834\u5408\u306b\u306f": 187, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 187, "\u3053\u306e\u5f15\u6570\u306fhtml\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3092": 187, "\u304b\u3089\u4efb\u610f\u306e\u4ed6\u306e\u540d\u524d\u306b\u5909\u66f4\u3057\u307e\u3059": 187, "chart": 187, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5f15\u6570\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u3067": 187, "\u51fa\u529b\u7d50\u679c\u306ehtml\u5185\u306b\u5404javascript\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u5bb9\u3092\u542b\u3081\u3066\u307e\u3068\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 187, "\u3053\u306e\u8a2d\u5b9a\u306f\u4ed6\u306e\u30e1\u30f3\u30d0\u30fc\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u5171\u6709\u3059\u308b\u5834\u5408\u306a\u3069\u306b1\u3064\u306e\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u3067\u6271\u3046\u3053\u3068\u304c\u3067\u304d\u4fbf\u5229\u306a\u6642\u304c\u3042\u308a\u307e\u3059": 187, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5f15\u6570\u306f\u30d5\u30a1\u30a4\u30eb\u51fa\u529b\u6642\u306e\u6a19\u6e96\u51fa\u529b\u306e\u6319\u52d5\u3092\u5909\u66f4\u3057\u307e\u3059": 187, "\u3082\u3057\u30820\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u6a19\u6e96\u51fa\u529b\u306b\u4f55\u3082\u8868\u793a\u3057\u306a\u304f\u306a\u308a\u307e\u3059": 187, "1\u3082\u3057\u304f\u306f\u4ed6\u306e\u5024\u3092\u6307\u5b9a\u3059\u308c\u3070apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u306f\u6a19\u6e96\u51fa\u529b\u3092\u8868\u793a\u3057\u307e\u3059": 187, "\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9\u4ee5\u4e0b\u306bhtml\u3068javascript\u306e\u30d5\u30a1\u30a4\u30eb\u5168\u4f53\u3092\u51fa\u529b\u3057\u307e\u3059": 187, "\u5404html\u3068javascript\u30d5\u30a1\u30a4\u30eb\u306e\u4fdd\u5b58\u5148\u3068\u306a\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9": 187, "html\u3068javascript\u306e\u5185\u5bb9\u3092\u6700\u5c0f\u5316": 187, "javascript\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30d1\u30b9\u306e\u8a2d\u5b9a": 187, "\u3053\u306e\u8a2d\u5b9a\u306fhtml\u5185\u306ejavascript\u306e\u30b3\u30fc\u30c9\u306e\u30d1\u30b9\u306e\u6307\u5b9a\u90e8\u5206\u306b\u5f71\u97ff\u3057\u307e\u3059": 187, "\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306b\u306fhtml\u3068\u540c\u3058\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 187, "\u3053\u306e\u8a2d\u5b9a\u306fdjango\u306e\u3088\u3046\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u9759\u7684\u30d5\u30a1\u30a4\u30eb\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306a\u3069\u306b\u4fbf\u5229\u306a\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 187, "\u3082\u3057\u3053\u306e\u5f15\u6570\u304c\u8a2d\u5b9a\u3055\u308c\u305f\u5834\u5408\u306b\u306f": 187, "\u306e\u8a2d\u5b9a\u3082\u6709\u52b9\u306b\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059": 187, "true\u304c\u8a2d\u5b9a\u3055\u308c\u305f\u5834\u5408": 187, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fjavascript\u306e\u5404\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u51fa\u529b\u3057\u306a\u304f\u306a\u308a\u307e\u3059": 187, "\u5404javascript\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u51fa\u529b\u3055\u308c\u308bhtml\u5185\u306b\u57cb\u3081\u8fbc\u3080\u304b\u3069\u3046\u304b\u306e\u8a2d\u5b9a\u3067\u3059": 187, "\u3082\u3057true\u304c\u8a2d\u5b9a\u3055\u308c\u305f\u5834\u5408": 187, "\u51fa\u529b\u3055\u308c\u308bhtml\u306f\u5927\u304d\u304f\u306a\u308a": 187, "\u305d\u3057\u30661\u3064\u306ehtml\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u51fa\u529b\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 187, "\u3053\u306e\u8a2d\u5b9a\u306f\u51fa\u529b\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092iframe\u30bf\u30b0\u3067\u4f7f\u3046\u969b\u306bcors\u306e\u30a8\u30e9\u30fc\u3092\u56de\u907f\u3057\u305f\u3044\u6642\u306a\u3069\u306b\u5f79\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 187, "\u30ed\u30ae\u30f3\u30b0": 187, "\u30ed\u30b0\u8868\u793a": 187, "\u306e\u8a2d\u5b9a\u3067\u3059": 187, "0\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": 187, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30ed\u30b0\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u8868\u793a\u3057\u306a\u304f\u306a\u308a\u307e\u3059": 187, "1\u3082\u3057\u304f\u306f\u4ed6\u306e\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": 187, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30ed\u30b0\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u901a\u5e38\u901a\u308a\u8868\u793a\u3057\u307e\u3059": 187, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f\u51fa\u529b\u5148\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u51fa\u529b\u524d\u306b\u7a7a\u306b\u3057\u307e\u3059": 187, "tmp": [187, 233], "output": 187, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u9023\u7d9a\u3055\u305b\u3066\u518d\u751f\u3059\u308b\u65b9\u6cd5\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 188, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u9023\u7d9a\u3057\u3066\u547c\u3073\u51fa\u3057\u305f\u5834\u5408": 188, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306f\u9806\u756a\u306b\u30b9\u30bf\u30fc\u30c8\u3057\u307e\u3059": 188, "\u6700\u521d\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u7d42\u308f\u3063\u305f\u3089\u6b21\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u518d\u751f\u304c\u30b9\u30bf\u30fc\u30c8\u3058\u307e\u3059": 188, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f4\u3064\u306e\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 188, "\u3053\u308c\u3089\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306f\u540c\u6642\u306b\u306f\u30b9\u30bf\u30fc\u30c8\u3057\u307e\u305b\u3093": 188, "sequential_animation_example_1": 188, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u3066\u9023\u7d9a\u3057\u305f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 188, "\u3082\u3057\u3082\u8907\u6570\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u540c\u6642\u306b\u518d\u751f\u3057\u305f\u3044\u5834\u5408": 188, "\u4ee5\u4e0b\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u304a\u4f7f\u3044\u304f\u3060\u3055\u3044": 188, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u8a2d\u5b9a\u3092\u6709\u52b9\u5316\u3057\u307e\u3059": 189, "\u3053\u306e\u8a2d\u5b9a\u306f\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u60c5\u5831": 189, "python\u4e0a\u306e\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306e\u547c\u3073\u51fa\u3057\u3068\u5f15\u6570\u60c5\u5831\u306a\u3069": 189, "\u3092\u51fa\u529b\u3055\u308c\u308bhtml\u4e0a\u306b\u8ffd\u52a0\u3057\u307e\u3059": 189, "\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u8a2d\u5b9a\u306f\u591a\u304f\u306e\u60c5\u5831\u3092html\u4e0a\u306b\u8ffd\u52a0\u3057\u307e\u3059": 189, "\u7d50\u679c\u3068\u3057\u3066\u51fa\u529b\u6642\u9593\u306f\u9577\u304f\u306a\u308a": 189, "\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba\u3082\u5927\u304d\u304f\u306a\u308a\u307e\u3059": 189, "html\u6700\u5c0f\u5316": 189, "\u306e\u8a2d\u5b9a\u3082\u7121\u8996\u3057\u307e\u3059": 189, "\u30b9\u30c6\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5f8c\u3067\u3042\u308c\u3070": 189, "\u95a2\u6570\u3092\u4f7f\u3063\u3066\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u3092\u8a2d\u5b9a\u305a\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 189, "set_debug_mode_basic_usag": 189, "\u3053\u306e\u8a2d\u5b9a\u306f\u4ee5\u4e0b\u306e\u4f8b\u306e\u7528\u306b\u51fa\u529b\u3055\u308c\u305fhtml\u5185\u306bpython\u306e\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306e\u547c\u3073\u51fa\u3057\u3084\u305d\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u3084\u30af\u30e9\u30b9\u540d": 189, "\u5f15\u6570\u60c5\u5831\u306a\u3069\u306ejavascript\u306e\u30b3\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0\u3057\u307e\u3059": 189, "_append_constructor_express": 189, "var": [189, 232, 233], "sp_1": [189, 232], "nest": [189, 232], "html\u3068javascript\u306e\u30c7\u30d0\u30c3\u30b0\u7528\u306b\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 189, "\u3082\u3057\u3053\u306e\u95a2\u6570\u3092\u547c\u3073\u51fa\u3057\u305f\u5834\u5408": 189, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4ee5\u4e0b\u306e\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 189, "html\u306e\u6700\u5c0f\u5316": 189, "\u8a2d\u5b9a\u3092\u7121\u52b9\u5316\u3057\u307e\u3059": 189, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3054\u3068\u306ejavascript\u4e0a\u3067\u306e\u533a\u5207\u308a\u306e\u305f\u3081\u306e\u6587\u5b57\u5217\u3092\u8ffd\u52a0\u3057\u307e\u3059": 189, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30b3\u30f3\u30c6\u30ca\u3067\u3059": 190, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u6301\u3061": 190, "\u5404\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u3092\u63cf\u753b\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 190, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u81ea\u52d5\u7684\u306b\u30b9\u30c6\u30fc\u30b8\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3059": 190, "\u306a\u3069\u306e\u95a2\u9023\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u547c\u3073\u51fa\u3059\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093": 190, "\u3082\u3057\u4ed6\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b": 190, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8ffd\u52a0\u3057\u305f\u3044\u3068\u5834\u5408": 190, "\u624b\u52d5\u3067": 190, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 190, "\u305d\u308c\u3092\u4f7f\u3063\u3066\u5404\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u3092\u63cf\u753b\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 190, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u306f\u6c34\u8272\u306e\u56db\u89d2\u3092\u63cf\u753b\u3057\u307e\u3059": 190, "sprite_graphics_attribut": 190, "\u8a73\u7d30\u306f\u4ee5\u4e0b\u306e": 190, "\u30af\u30e9\u30b9\u306e\u95a2\u9023\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u3054\u89a7\u304f\u3060\u3055\u3044": 190, "\u7dda\u8a2d\u5b9a": 190, "\u56db\u89d2\u63cf\u753b": 190, "\u5186\u63cf\u753b": 190, "\u30af\u30e9\u30b9\u306f\u30b3\u30f3\u30c6\u30ca\u3067\u3042\u308a": 190, "\u305d\u306e\u5ea7\u6a19\u3092\u79fb\u52d5\u3055\u305b\u308b\u3068\u540c\u6642\u306b\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5ea7\u6a19\u3082\u5909\u66f4\u3055\u308c\u307e\u3059": 190, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068sprite\u306ey\u5ea7\u6a19\u304c\u5909\u5316\u3057\u307e\u3059": 190, "\u5b50\u306e\u5404\u56db\u89d2\u5f62\u304c\u4e00\u901a\u308a\u79fb\u52d5\u3057\u307e\u3059": 190, "sprite_move_instances_simultan": 190, "\u4ee5\u964d\u306e\u30da\u30fc\u30b8\u3067\u306f": 190, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306a\u3069": 190, "sprite\u30af\u30e9\u30b9\u306e\u4ed6\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u3066\u3044\u304d\u307e\u3059": 190, "\u5b50\u306e\u4ef6\u6570\u5c5e\u6027": [190, 191], "\u7279\u5b9a\u4f4d\u7f6e\u306e\u5b50\u306e\u53d6\u5f97\u51e6\u7406": [190, 191], "\u89aa\u306b\u306a\u308b\u3053\u3068\u306e\u51fa\u6765\u308b\u57fa\u672c\u7684\u306a\u8868\u793a\u7528\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f5c\u6210\u3057\u307e\u3059": 190, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e": 190, "javascript\u4e0a\u306a\u3069\u3067\u4f7f\u308f\u308c\u308b": 190, "\u5909\u6570\u540d\u306e\u8a2d\u5b9a\u5024": 190, "apysc\u306e\u5185\u90e8\u5b9f\u88c5\u3067": 190, "\u30af\u30e9\u30b9\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u3092\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316\u3059\u308b\u6642\u4ee5\u5916\u306f\u8a2d\u5b9a\u306f\u4e0d\u8981\u3067\u3059": 190, "rect": [190, 233], "\u30af\u30e9\u30b9\u306fapysc\u306b\u304a\u3051\u308b\u63cf\u753b\u30a8\u30ea\u30a2\u5168\u4f53\u3092\u6271\u3046\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057": 191, "\u5404\u8981\u7d20\u3092\u683c\u7d0d\u3057\u307e\u3059": 191, "apysc\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u6700\u521d\u3067": 191, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 191, "\u3053\u306e\u6642\u70b9\u3067\u5185\u90e8\u3067\u30c7\u30fc\u30bf\u3084\u30d5\u30a1\u30a4\u30eb\u306e\u53e4\u3044\u3082\u306e\u306e\u524a\u9664\u306a\u3069\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u4f5c\u6210\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u30b7\u30f3\u30d7\u30eb\u3067\u3059": 191, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5f15\u6570\u3092\u6301\u3063\u3066\u304a\u308a": 191, "\u3053\u306e\u5f15\u6570\u3067\u30b9\u30c6\u30fc\u30b8\u306e\u80cc\u666f\u8272\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 191, "stage_background_color": 191, "\u3053\u306e\u30b3\u30fc\u30c9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u9ed2\u80cc\u666f\u306e\u30b9\u30c6\u30fc\u30b8\u306ehtml\u3092\u751f\u6210\u3057\u307e\u3059": 191, "\u30af\u30e9\u30b9\u306f\u30b9\u30c6\u30fc\u30b8\u306e\u5e45\u3092\u8a2d\u5b9a\u3059\u308b": 191, "\u5f15\u6570\u3068\u30b9\u30c6\u30fc\u30b8\u306e\u9ad8\u3055\u3092\u8a2d\u5b9a\u3059\u308b": 191, "\u3053\u308c\u3089\u306e\u8a2d\u5b9a\u306f\u30b9\u30c6\u30fc\u30b8\u306e\u30b5\u30a4\u30ba\u3092\u5909\u66f4\u3057\u307e\u3059": 191, "stage_s": 191, "\u4e0a\u8a18\u306e\u30b3\u30fc\u30c9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6a2a\u9577\u306e\u30b9\u30c6\u30fc\u30b8\u3092\u4f5c\u6210\u3057\u307e\u3059": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u8981\u7d20\u306eid": 191, "html\u306eid": 191, "\u3082\u3057\u3082\u3053\u306e\u8a2d\u5b9a\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408": 191, "apysc\u306f\u30b9\u30c6\u30fc\u30b8\u751f\u6210\u6642\u306e\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7\u3084\u4e71\u6570\u306a\u3069\u3092\u30d9\u30fc\u30b9\u3068\u3057\u305f\u4e00\u610f\u306aid\u3092\u751f\u6210\u3057\u307e\u3059": 191, "stage_12345": 191, "line_chart_1": 191, "\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306fapysc\u306e\u5404\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u8907\u6570\u56de\u51fa\u529b\u306a\u3069\u3092\u884c\u3046\u969b\u306eid\u306e\u8b58\u5225\u3084\u30d0\u30fc\u30b8\u30e7\u30f3\u7ba1\u7406\u306a\u3069\u306e\u9762\u3067\u4fbf\u5229\u3067\u3059": 191, "\u95a2\u6570\u306f\u73fe\u5728\u751f\u6210\u6e08\u307f\u306e\u30b9\u30c6\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 191, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4ed6\u306e\u95a2\u6570\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u306a\u3069\u3067\u30b9\u30c6\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53c2\u7167\u3057\u305f\u3044\u5834\u5408\u306a\u3069\u306b\u4fbf\u5229\u306a\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 191, "my_stag": 191, "_other_funct": 191, "185": 191, "add_to": 191, "bodi": 191, "\u30b9\u30c6\u30fc\u30b8": 191, "\u63cf\u753b\u9818\u57df\u5168\u4f53": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u5e45": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u9ad8\u3055": 191, "16\u9032\u6570\u306e\u80cc\u666f\u8272\u306e\u6587\u5b57\u5217": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u8981\u7d20\u3092\u8ffd\u52a0\u5148\u3068\u306a\u308b\u8981\u7d20\u306e\u6307\u5b9a": 191, "\u4e00\u610f\u306e\u30bf\u30b0": 191, "\u3084id\u306e\u30bb\u30ec\u30af\u30bf": 191, "uniqu": 191, "elem": 191, "\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [191, 195], "\u30b9\u30c6\u30fc\u30b8\u306ehtml\u8981\u7d20\u306b\u8a2d\u5b9a\u3055\u308c\u308bid\u306e\u5c5e\u6027": 191, "graph": 191, "\u3082\u3057none\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408": 191, "\u4e71\u6570\u306a\u3069\u3092\u4f7f\u3063\u305f\u6570\u5024\u3092\u4f7f\u3063\u305f\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 191, "sales_chart": 191, "\u30b9\u30c6\u30fc\u30b8\u306ehtml\u8981\u7d20\u306eid\u3092\u53d6\u5f97\u3057\u307e\u3059": 191, "\u30b9\u30c6\u30fc\u30b8\u306ehtml\u8981\u7d20\u306eid": 191, "id\u7528\u306e": 191, "\u306e\u8a18\u53f7\u306a\u3069\u306f\u542b\u307e\u308c\u307e\u305b\u3093": 191, "\u65e2\u306b\u751f\u6210\u6e08\u307f\u306e\u30b9\u30c6\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u307e\u3059": 191, "\u5bfe\u8c61\u306e\u30b9\u30c6\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 191, "stagenotcreatederror": 191, "\u3082\u3057\u3082\u307e\u3060\u751f\u6210\u6e08\u307f\u306e\u30b9\u30c6\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408": 191, "\u30af\u30e9\u30b9\u306fapysc\u306e\u6587\u5b57\u5217\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 192, "\u3053\u306e\u30af\u30e9\u30b9\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e\u5f15\u6570\u306b": 192, "string_1": [192, 193, 195], "string_2": [192, 193, 195], "\u30af\u30e9\u30b9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f\u4ee5\u4e0b\u306e\u8cc7\u6599\u306a\u3069\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": 192, "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u5236\u5fa1": 192, "\u30af\u30e9\u30b9\u306e\u52a0\u7b97\u3068\u4e57\u7b97\u306e\u5236\u5fa1": 192, "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u304a\u3051\u308b\u6587\u5b57\u5217\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 192, "\u6587\u5b57\u5217\u306e\u5024\u306e\u521d\u671f\u5024": 192, "world": [192, 193, 195, 206], "\u73fe\u5728\u306e\u6587\u5b57\u5217\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 192, "\u73fe\u5728\u306e\u6587\u5b57\u5217\u306e\u5024": 192, "\u30af\u30e9\u30b9\u306e\u52a0\u7b97\u3068\u4e57\u7b97\u306e\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 193, "\u30af\u30e9\u30b9\u306e\u52a0\u7b97\u306e\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": 193, "\u306f\u9023\u7d50\u3055\u308c\u305f": 193, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3082\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 193, "\u306e\u5024\u3068python\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 193, "\u306e\u5024\u306b\u3088\u308b\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u3082\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 193, "\u306e\u5024\u540c\u58eb\u306e\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u3082\u540c\u69d8\u3067\u3059": 193, "string_3": 193, "\u306e\u5024\u3068": 193, "\u306e\u5024\u306e\u5834\u5408": 193, "\u5de6\u5074\u3092": 193, "\u306e\u5024\u306b\u3059\u308b\u5834\u5408": 193, "\u306f\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093": 193, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 193, "must": 193, "\u30af\u30e9\u30b9\u306e\u4e57\u7b97\u306e\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": 193, "\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u6587\u5b57\u5217\u306e\u3088\u3046\u306b\u5024\u3092\u7e70\u308a\u8fd4\u3057\u305f\u6587\u5b57\u5217\u3092\u8fd4\u5374\u3057\u307e\u3059": 193, "hellohellohello": 193, "\u578b\u306e\u5024\u3092\u53f3\u5074\u306e\u5024\u3068\u3057\u3066\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 193, "\u30e1\u30bd\u30c3\u30c9\u306f\u6587\u5b57\u5217\u306b\u5bfe\u3057\u3066\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u6700\u5927\u6841\u6570\u306e\u6761\u4ef6\u3092\u53cd\u6620\u3057\u307e\u3059": 194, "\u3082\u3057\u6587\u5b57\u5217\u304c": 194, "123": 194, "45678": 194, "\u3067\u5c0f\u6570\u70b9\u6570\u306e\u6700\u5927\u6841\u6570\u304c": 194, "\u3060\u3063\u305f\u5834\u5408": [194, 198], "456": 194, "\u306e\u6587\u5b57\u5217\u3092\u8fd4\u5374\u3057\u307e\u3059": 194, "\u3082\u3057\u3082\u6587\u5b57\u5217\u304c\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u306f\u306a\u3044\u5834\u5408": 194, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5143\u306e\u6587\u5b57\u5217\u3092\u305d\u306e\u307e\u307e\u8fd4\u5374\u3057\u307e\u3059": 194, "max_num_of_decimal_plac": 194, "\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u6700\u5927\u6841\u6570": 194, "\u578b": 194, "\u578b\u306e\u65b0\u3057\u3044\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 194, "origin": 194, "abc": 194, "string_apply_max_num_of_decimal_places_basic_usage_1": 194, "\u3053\u306e\u6587\u5b57\u5217\u306b\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u6700\u5927\u6841\u6570\u306e\u8a2d\u5b9a\u3092\u53cd\u6620\u3057\u307e\u3059": 194, "\u53cd\u6620\u5f8c\u306e\u6587\u5b57\u5217": 194, "\u306a\u3069\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 195, "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u306fpyhton\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 195, "\u578b\u306e\u6bd4\u8f03\u5bfe\u8c61\u306e\u5024": 195, "\u6bd4\u8f03\u306e\u53f3\u5074\u306e\u5024": 195, "\u672a\u6e80": 195, "\u4ee5\u4e0b": 195, "\u8d85\u904e": 195, "\u4ee5\u4e0a\u306e\u6bd4\u8f03\u306e\u51e6\u7406\u3092python\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 195, "\u306e\u5024\u306e\u3088\u3046\u306b": 195, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u304a\u3053\u306a\u3092\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 195, "\u3054\u306e\u51e6\u7406\u306f\u65e5\u4ed8\u3084\u65e5\u6642\u306a\u3069\u306e\u6587\u5b57\u5217\u6bd4\u8f03\u306a\u3069\u3067\u5f79\u306b\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 195, "1970": 195, "06": 195, "04": 195, "\u5c5e\u6027\u306f\u6587\u5b57\u6570\u3092\u8fd4\u5374\u3057\u307e\u3059": 196, "abcdef": 196, "\u3068\u3044\u3046\u6587\u5b57\u5217\u3067\u306f6\u304c\u8fd4\u5374\u3055\u308c": 196, "\u3042\u3044\u3046\u3048\u304a": 196, "\u3068\u3044\u3046\u6587\u5b57\u5217\u3067\u306f5\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059": 196, "\u5c5e\u6027\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b": 196, "string_length_basic_usage_1": 196, "\u3053\u306e\u5c5e\u6027\u306funicode\u306e\u30b3\u30fc\u30c9\u30dd\u30a4\u30f3\u30c8\u6570\u3092\u30ab\u30a6\u30f3\u30c8\u3057\u3066\u3044\u308b\u305f\u3081": 196, "\u7d75\u6587\u5b57\u3092\u5bfe\u8c61\u3068\u3057\u305f\u5834\u5408\u306b\u60f3\u5b9a\u5916\u306e\u6587\u5b57\u5217\u3092\u8fd4\u5374\u3059\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 196, "\u5927\u534a\u306e\u7d75\u6587\u5b57\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u60f3\u5b9a\u901a\u308a\u306e\u6587\u5b57\u6570\u3068\u3057\u3066\u632f\u308b\u821e\u3044\u307e\u3059": 196, "string_length_notes_1": 196, "\u3057\u304b\u3057\u306a\u304c\u3089\u8907\u6570\u306e\u30b3\u30fc\u30c9\u30dd\u30a4\u30f3\u30c8\u3092\u6301\u3064\u7d75\u6587\u5b57\u306b\u95a2\u3057\u3066\u306f\u3053\u306e\u5c5e\u6027\u306f\u60f3\u5b9a\u5916\u306e\u6587\u5b57\u6570\u3092\u8fd4\u5374\u3057\u307e\u3059": 196, "\u3053\u308c\u306fpython\u3068\u540c\u3058\u3088\u3046\u306a\u6319\u52d5\u3092\u3057\u307e\u3059": 196, "string_length_notes_2": 196, "\u6587\u5b57\u306e\u9577\u3055": 196, "\u6587\u5b57\u6570": 196, "characters_length": 196, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u306e\u5de6\u7aef\u304b\u3089\u7a7a\u767d\u6587\u5b57\u3082\u3057\u304f\u306f\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57": 198, "\u3082\u3057\u304f\u306f\u6587\u5b57\u5217": [198, 202], "\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": [198, 199, 202], "\u30e1\u30bd\u30c3\u30c9\u306f\u7701\u7565\u53ef\u80fd\u306a": [198, 199, 202], "\u3082\u3057\u3082\u3053\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3057\u305f\u5834\u5408": [198, 202], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u7a7a\u767d\u6587\u5b57": 198, "\u30b9\u30da\u30fc\u30b9\u3084\u6539\u884c\u306a\u3069": 198, "\u3092\u6587\u5b57\u5217\u306e\u5de6\u7aef\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 198, "aabbaa": [198, 202], "string_lstrip_basic_usage_1": 198, "\u3082\u3057\u3082\u4f55\u3089\u304b\u306e\u6587\u5b57\u5217\u306e\u5024\u3092": 198, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u306e\u5de6\u7aef\u304b\u3089\u305d\u306e\u6587\u5b57": 198, "bbaa": 198, "string_lstrip_basic_usage_2": 198, "\u3053\u306e\u5024\u306e\u5de6\u7aef\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u3082\u3057\u304f\u6587\u5b57\u5217\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 198, "\u3053\u306e\u5024\u306e\u5de6\u7aef\u304b\u3089\u53d6\u308a\u9664\u304f\u6587\u5b57\u3082\u3057\u304f\u306f\u6587\u5b57\u5217": 198, "\u3082\u3057\u3082\u3053\u306e\u5f15\u6570\u304c\u306e\u5024\u304cnone": 198, "\u30c7\u30d5\u30a9\u30eb\u30c8": [198, 208, 209], "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u30b9\u30da\u30fc\u30b9\u3084\u6539\u884c\u306a\u3069\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": [198, 199, 202], "\u9664\u5916\u51e6\u7406\u5b9f\u884c\u5f8c\u306e\u6587\u5b57\u5217": [198, 199, 202], "aabbcc": [198, 199, 202], "aabbccaa": [198, 199, 202], "bbccaa": 198, "\u30e1\u30bd\u30c3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 199, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u306e\u53f3\u7aef\u304b\u3089\u7a7a\u767d\u6587\u5b57\u3082\u3057\u304f\u306f\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57": 199, "\u307e\u305f\u306f\u6587\u5b57\u5217": 199, "\u3082\u3057\u3053\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3057\u305f\u5834\u5408": [109, 199], "\u6587\u5b57\u5217\u306e\u53f3\u7aef\u304b\u3089\u7a7a\u767d\u6587\u5b57\u3084\u6539\u884c\u306a\u3069\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 199, "string_rstrip_basic_usage_1": 199, "\u5f15\u6570\u306b\u4f55\u3089\u304b\u306e\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": [199, 202], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u306e\u53f3\u7aef\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u3082\u3057\u304f\u306f\u6587\u5b57\u5217\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 199, "string_rstrip_basic_usage_2": 199, "\u3053\u306e\u5024\u306e\u53f3\u7aef\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u3082\u3057\u304f\u306f\u6587\u5b57\u5217\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 199, "\u3053\u306e\u5024\u306e\u53f3\u7aef\u304b\u3089\u53d6\u308a\u9664\u304f\u6587\u5b57\u3082\u3057\u304f\u306f\u6587\u5b57\u5217": 199, "\u3082\u3057\u3053\u306e\u5f15\u6570\u306b": 199, "\u30c7\u30d5\u30a9\u30eb\u30c8\u5024": [199, 202], "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u3092\u5206\u5272\u3057\u3066": 201, "\u306e\u5024\u3092\u683c\u7d0d\u3057\u305f": 201, "\u306e\u914d\u5217\u3092\u4f5c\u6210\u3057\u307e\u3059": 201, "\u30e1\u30bd\u30c3\u30c9\u306f\u533a\u5207\u308a\u6587\u5b57\u3068\u3057\u3066\u306e": 201, "\u578b\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 201, "str_valu": 201, "lorem": [164, 201, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "ipsum": [164, 201, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "dolor": [164, 201, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "sit": [164, 201, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "splitted_str": 201, "string_split_basic_usag": 201, "\u73fe\u5728\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3055\u308c\u305f\u533a\u5207\u308a\u6587\u5b57": 201, "\u5217": 201, "\u3092\u4f7f\u3063\u3066\u5206\u5272\u3057\u307e\u3059": 201, "\u5206\u5272\u3055\u308c\u305f\u6587\u5b57\u5217\u3092\u683c\u7d0d\u3057\u305f\u914d\u5217": 201, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u306e\u5de6\u7aef\u3068\u53f3\u7aef\u304b\u3089\u7a7a\u767d\u6587\u5b57\u3082\u3057\u304f\u306f\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57": 202, "\u6587\u5b57\u5217": 202, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u306e\u5de6\u7aef\u3068\u53f3\u7aef\u304b\u3089\u30b9\u30da\u30fc\u30b9\u3084\u6539\u884c\u306a\u3069\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 202, "string_strip_basic_usage_1": 202, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u306e\u5de6\u7aef\u3068\u53f3\u7aef\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57": 202, "bbcc": 202, "string_strip_basic_usage_2": 202, "\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u3082\u3057\u304f\u306f\u6587\u5b57\u5217\u3092\u5de6\u7aef\u3068\u53f3\u7aef\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 202, "\u3053\u306e\u5024\u306e\u5de6\u7aef\u3068\u53f3\u7aef\u304b\u3089\u53d6\u308a\u9664\u304f\u6587\u5b57\u3082\u3057\u304f\u306f\u6587\u5b57\u5217": 202, "\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": [202, 207], "\u30af\u30e9\u30b9\u306fsvg\u30c6\u30ad\u30b9\u30c8\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u751f\u6210\u3057\u307e\u3059": 206, "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u306f": [164, 206, 207], "\u306a\u3069\u306e\u30d5\u30a9\u30f3\u30c8\u3084\u30b9\u30bf\u30a4\u30eb\u306a\u3069\u306e\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 206, "svg_text": [206, 207], "32": [206, 207, 213], "svg_text_basic_usag": 206, "\u30c6\u30ad\u30b9\u30c8\u306ey\u5ea7\u6a19\u306e\u57fa\u6e96\u70b9\u306f\u30c6\u30ad\u30b9\u30c8\u306e\u4e0b\u90e8\u4ed8\u8fd1\u306e\u4f4d\u7f6e\u3068\u306a\u308a\u307e\u3059": 206, "\u3053\u308c\u306fsvg\u30c6\u30ad\u30b9\u30c8\u306e\u4ed5\u69d8\u3068\u306a\u308a\u307e\u3059": 206, "\u305d\u306e\u305f\u3081\u3082\u3057\u3082y\u5ea7\u6a19\u306b": 206, "\u30c6\u30ad\u30b9\u30c8\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u307b\u3068\u3093\u3069\u898b\u3048\u306a\u304f\u306a\u308a\u307e\u3059": 206, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u8f9b\u3046\u3058\u3066\u30b3\u30f3\u30de\u306e\u4e00\u90e8\u304c\u78ba\u8a8d\u3067\u304d\u307e\u3059": 206, "svg_text_note_on_the_y_baselin": 206, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [206, 207], "svg_text_text": 206, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [206, 207], "24": [154, 206, 217, 219], "svg_text_font_s": 206, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30d5\u30a9\u30f3\u30c8\u30d5\u30a1\u30df\u30ea\u30fc": [206, 207], "\u30d5\u30a9\u30f3\u30c8\u306e\u6307\u5b9a": [206, 207], "\u3053\u306e\u5c5e\u6027\u306f\u5404\u30d5\u30a9\u30f3\u30c8\u540d\u306e": [206, 207], "\u578b\u306e\u6587\u5b57\u5217\u3092\u683c\u7d0d\u3057\u305f": [206, 207], "\u578b\u306e\u914d\u5217\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": [206, 207], "impact": [206, 207], "roman": [206, 207], "svg_text_font_famili": 206, "svg_text_x": 206, "70": 206, "svg_text_i": 206, "svg_text_fill_color": 206, "svg_text_fill_alpha": 206, "svg_text_line_color": 206, "svg_text_line_alpha": 206, "svg_text_line_thick": 206, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u884c\u9593\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 206, "amet": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "consectetur": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "adipisc": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "elit": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "sed": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "eiusmod": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "tempor": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "incididunt": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "svg_text_lead": 206, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u6c34\u5e73\u65b9\u5411\u306e\u884c\u63c3\u3048\u306e\u8a2d\u5b9a": 206, "\u5de6\u7aef": 206, "\u4e2d\u592e": 206, "\u53f3\u7aef": 206, "\u3053\u306e\u5c5e\u6027\u306f": 206, "svgtextalign": [206, 207], "\u306eenum\u306e\u5024\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 206, "svg_text_align": 206, "\u3053\u306e\u5c5e\u6027\u306fx\u5ea7\u6a19\u306e\u57fa\u6e96\u4f4d\u7f6e": 206, "\u306e\u4f4d\u7f6e": 206, "\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5909\u66f4\u3057\u307e\u3059": 206, "x\u5ea7\u6a19\u306e\u57fa\u6e96\u4f4d\u7f6e\u306f\u30c6\u30ad\u30b9\u30c8\u306e\u4e2d\u592e\u4f4d\u7f6e\u306b\u306a\u308a\u307e\u3059": 206, "x\u5ea7\u6a19\u306e\u57fa\u6e96\u4f4d\u7f6e\u306f\u30c6\u30ad\u30b9\u30c8\u306e\u53f3\u7aef\u306e\u4f4d\u7f6e\u306b\u306a\u308a\u307e\u3059": 206, "container_sprit": 206, "vertical_x0_lin": 206, "x0_text": 206, "left_align_sample_text": 206, "sampl": 206, "52": 206, "center_align_sample_text": 206, "72": [154, 206], "right_align_sample_text": 206, "92": 206, "svg_text_align_not": 206, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u592a\u5b57\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [206, 207], "svg_text_bold": 206, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u659c\u4f53\u306e\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [206, 207], "svg_text_ital": 206, "svg_txt_rotation_around_cent": 206, "svg_txt_rotation_around_point": 206, "\u62e1\u7e2e\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u8a2d\u5b9a\u6b21\u7b2c\u3067\u306f\u8868\u793a\u304c\u5d29\u308c\u305f\u308a\u3059\u308b\u305f\u3081\u5229\u7528\u306f\u975e\u63a8\u5968\u3067\u3059": 206, "svg_txt_scale_x_from_cent": 206, "svg_txt_scale_x_from_point": 206, "svg_txt_flip_x": 206, "svg_txt_flip_i": 206, "666666": [154, 164, 206, 207], "svg_text_align_mixin": [206, 207], "svg\u30c6\u30ad\u30b9\u30c8\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 206, "\u3053\u306e\u30af\u30e9\u30b9\u3067\u4f7f\u7528\u3059\u308b\u30c6\u30ad\u30b9\u30c8": [206, 207], "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\u8a2d\u5b9a": [206, 207], "\u30d5\u30a9\u30f3\u30c8\u30d5\u30a1\u30df\u30ea\u30fc\u8a2d\u5b9a": [206, 207], "\u914d\u5217\u5185\u306e\u5404\u6587\u5b57\u5217\u306b\u306f\u500b\u5225\u306e\u30d5\u30a9\u30f3\u30c8\u540d\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": [206, 207], "\u306e\u7bc0\u3082\u78ba\u8a8d\u3092\u304a\u9858\u3044\u3057\u307e\u3059": [206, 207], "\u5857\u308a\u306e\u8272\u306e\u8a2d\u5b9a": [206, 207], "\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u8a2d\u5b9a": [206, 207], "\u7dda\u306e\u8272\u306e\u8a2d\u5b9a": [206, 207], "\u7dda\u306e\u900f\u660e\u5ea6\u306e\u8a2d\u5b9a": [206, 207], "\u7dda\u5e45\u306e\u8a2d\u5b9a": 206, "\u30c6\u30ad\u30b9\u30c8\u306e\u884c\u9593\u306e\u30b5\u30a4\u30ba": 206, "\u30c6\u30ad\u30b9\u30c8\u306e\u884c\u63c3\u3048\u306e\u8a2d\u5b9a": [164, 206], "\u30c6\u30ad\u30b9\u30c8\u306b\u592a\u5b57\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u884c\u3046\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024": [206, 207], "\u30c6\u30ad\u30b9\u30c8\u3092\u659c\u4f53\u8868\u793a\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u884c\u3046\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024": [206, 207], "svgtext\u30af\u30e9\u30b9\u306e\u5ea7\u6a19\u306e0\u306e\u4f4d\u7f6e\u306f\u30c6\u30ad\u30b9\u30c8\u306e\u4e0b\u90e8\u304b\u3089\u30b9\u30bf\u30fc\u30c8\u3057\u307e\u3059": [206, 207], "\u305d\u306e\u305f\u3081\u3082\u3057\u3082y": [206, 207], "0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": [206, 207], "\u30c6\u30ad\u30b9\u30c8\u306f\u307b\u3068\u3093\u3069\u898b\u3048\u306a\u3044\u72b6\u614b\u306b\u306a\u308a\u307e\u3059": [206, 207], "\u306e\u5b50\u3068\u306a\u308b\u30c6\u30ad\u30b9\u30c8\u8981\u7d20\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 207, "\u8907\u6570\u306e": 207, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u305d\u308c\u305e\u308c\u306b\u7570\u306a\u308b\u30c6\u30ad\u30b9\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3057\u305f\u72b6\u614b\u306e": 207, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 207, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b\u306f": 207, "\u306a\u3069\u306e\u5404\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u5f15\u6570\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 207, "\u3082\u3057\u3082\u305d\u308c\u3089\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u5f15\u6570\u6307\u5b9a\u3092\u7701\u7565\u3057\u305f\u5834\u5408": 207, "\u89aa\u306esvgtext\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30b9\u30bf\u30a4\u30eb\u304c\u53cd\u6620\u3055\u308c\u307e\u3059": 207, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066": 207, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4f5c\u6210\u3059\u308b\u306b\u306f": 207, "\u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3046\u3053\u3068\u3067\u5bfe\u5fdc\u304c\u3067\u304d\u307e\u3059": 207, "text_span": 207, "svg_txt_span_basic_usag": 207, "\u30af\u30e9\u30b9\u306f\u6539\u884c\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": 207, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u6539\u884c\u7528\u306e\u6587\u5b57\u5217": 207, "\u3092\u542b\u3093\u3067\u3044\u307e\u3059\u304c\u30c6\u30ad\u30b9\u30c8\u306e\u884c\u306f\u5358\u4e00\u884c\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 207, "svg_txt_span_notes_of_the_line_break": 207, "\u3082\u3057\u3082\u6539\u884c\u3092\u52a0\u3048\u305f\u3044\u5834\u5408\u306b\u306f": 207, "\u30af\u30e9\u30b9\u3067\u306f\u306a\u304f": 207, "\u30af\u30e9\u30b9\u3092\u4f7f\u7528\u3059\u308b\u304b": 207, "\u3082\u3057\u304f\u306f\u8907\u6570\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u3066\u5bfe\u5fdc\u3092\u304a\u9858\u3044\u3057\u307e\u3059": 207, "text_span_1": 207, "text_span_2": 207, "svg_txt_span_text": 207, "svg_txt_span_font_s": 207, "arial": 207, "svg_txt_span_font_famili": 207, "svg_txt_span_fill_color": 207, "svg_txt_span_fill_alpha": 207, "svg_txt_span_line_color": 207, "svg_txt_span_line_alpha": 207, "svg_txt_span_line_thick": 207, "svg_txt_span_bold": 207, "svg_txt_span_ital": 207, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306ex\u5ea7\u6a19\u306e\u8abf\u6574\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 207, "svg_txt_span_delta_x": 207, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306ey\u5ea7\u6a19\u306e\u8abf\u6574\u5024\u306e\u66f4\u65b0\u3082\u304f\u3057\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 207, "\u3053\u306e\u8a2d\u5b9a\u306f\u76f4\u524d\u306e": 207, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u8a2d\u5b9a\u3092\u5f15\u304d\u7d99\u304e\u307e\u3059": 207, "text_span_3": 207, "dolar": 207, "svg_txt_span_delta_i": 207, "\u306e\u5b50\u3068\u306a\u308bsvg\u306etext": 207, "span\u8981\u7d20\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 207, "x\u5ea7\u6a19\u306e\u8abf\u6574\u5024\u306e\u8a2d\u5b9a": 207, "\u3053\u306e\u8a2d\u5b9a\u306f\u5f8c\u306b\u7d9a\u304f": 207, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5ea7\u6a19\u3082\u5909\u66f4\u3057\u307e\u3059": 207, "y\u5ea7\u6a19\u306e\u8abf\u6574\u5024\u306e\u8a2d\u5b9a": 207, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5ea7\u6a19\u3082\u66f4\u65b0\u3057\u307e\u3059": 207, "\u3082\u3057\u3082\u5404\u7a2e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306b": 207, "\u305d\u306e\u30b9\u30bf\u30a4\u30eb\u306f\u89aa\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u5f15\u304d\u7d99\u304e\u307e\u3059": 207, "14": [207, 232], "svg_text_span": 207, "lead": 207, "align": [207, 209], "\u6307\u5b9a\u3055\u308c\u305f\u5404text": 207, "span\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u7528\u3057\u3066": 207, "\u5404text": 207, "span": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\u306e\u8a2d\u5b9a": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u30d5\u30a9\u30f3\u30c8\u8a2d\u5b9a": 207, "\u914d\u5217\u5185\u306e\u5404\u6587\u5b57\u5217\u306f\u30d5\u30a9\u30f3\u30c8\u540d\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u5857\u308a\u306e\u8272": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u5857\u308a\u306e\u900f\u660e\u5ea6": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u7dda\u306e\u8272": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u7dda\u306e\u900f\u660e\u5ea6": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u7dda\u5e45": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u884c\u9593\u8a2d\u5b9a": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u884c\u63c3\u3048\u8a2d\u5b9a": 207, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 207, "\u30af\u30e9\u30b9\u306f2\u3064\u306e": 217, "datetim": [217, 218, 219], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u9593\u306e\u6642\u9593\u5dee\u3092\u6271\u3044\u307e\u3059": 217, "2\u3064\u306e": 217, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u9593\u306e\u6e1b\u7b97\u306f\u3053\u306e\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 217, "datetime_1": [217, 218, 219], "datetime_2": [217, 218, 219], "timedelta_": [217, 218, 219], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b": 217, "\u5c5e\u6027\u3084": 217, "\u30e1\u30bd\u30c3\u30c9\u306a\u3069\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 217, "\u6642\u9593\u306e\u9593\u9694\u5024\u306e\u65e5\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059": [217, 218], "\u65e5\u6570\u5024": [217, 218], "\u5c0f\u6570\u70b9\u6570\u306e\u5206\u306f\u7121\u8996\u3055\u308c\u307e\u3059": [217, 218], "\u6642\u9593\u306e\u9593\u9694\u5024\u306e\u5408\u8a08\u79d2\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059": [217, 219], "\u6642\u9593\u306e\u9593\u9694\u5024\u306e\u5408\u8a08\u79d2\u6570": [217, 219], "86400": [217, 219], "\u5c5e\u6027\u306f2\u3064\u306e": 218, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u9593\u306e\u65e5\u6570\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 218, "\u5c5e\u6027\u306e\u5024\u306e\u578b\u306fapysc\u306e": 218, "\u578b\u3068\u306a\u308a": 218, "\u4e14\u3064\u305d\u306e\u5024\u306e\u5c0f\u6570\u70b9\u6570\u306f\u5207\u308a\u6368\u3066\u3089\u308c\u307e\u3059": 218, "datetime_3": 218, "datetime_4": 218, "\u30e1\u30bd\u30c3\u30c9\u306f2\u3064\u306e": 219, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u9593\u306e\u5408\u8a08\u79d2\u6570\u3092\u8fd4\u5374\u3057\u307e\u3059": 219, "\u30e1\u30bd\u30c3\u30c9\u306fapysc\u306e": 219, "\u3082\u3057\u3082\u3044\u305a\u308c\u304b\u306e": 219, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c": 219, "\u5c5e\u6027\u306e\u5024\u3092\u6301\u3063\u3066\u3044\u305f\u5834\u5408\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5c0f\u6570\u70b9\u6570\u3082\u542b\u3093\u3060\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 219, "\u30af\u30e9\u30b9\u306f\u4e00\u5b9a\u9593\u9694\u3067\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306e\u30bf\u30a4\u30de\u30fc\u306e\u51e6\u7406\u3092\u6271\u3044\u307e\u3059": 220, "\u4efb\u610f\u306e\u9593\u9694\u3092\u8a2d\u5b9a\u3057\u3066\u30cf\u30f3\u30c9\u30e9\u306e\u547c\u3073\u51fa\u3057\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 220, "\u30af\u30e9\u30b9\u306f\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u30cf\u30f3\u30c9\u30e9\u3068\u3057\u3066\u306e": 220, "\u5f15\u6570\u3068\u30bf\u30a4\u30de\u30fc\u5b9f\u884c\u9593\u9694\u306e\u30df\u30ea\u79d2\u3068\u3057\u3066\u306e": 220, "\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3073\u51fa\u3059\u3068\u30bf\u30a4\u30de\u30fc\u304c\u30b9\u30bf\u30fc\u30c8\u3057\u307e\u3059": 220, "\u30bf\u30a4\u30de\u30fc\u306f": 220, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u3057\u3066\u6307\u5b9a\u3067\u304d\u308b\u8ffd\u52a0\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306e\u5f15\u6570\u3092\u30cf\u30f3\u30c9\u30e9\u3078\u6e21\u3057\u307e\u3059": 220, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2": 220, "\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b": 220, "\u30af\u30e9\u30b9\u3092\u4f7f\u7528\u3057\u305f\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 220, "timer_basic_usag": 220, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u30bf\u30a4\u30de\u30fc\u304c\u30b9\u30bf\u30fc\u30c8\u3057": 220, "\u30bf\u30a4\u30de\u30fc\u306e\u30cf\u30f3\u30c9\u30e9\u306f\u56db\u89d2\u306ex\u5ea7\u6a19\u3092\u52a0\u7b97\u3057\u3066\u3044\u304d\u307e\u3059": 220, "_constructoropt": [220, 222, 224], "\u4e00\u5b9a\u9593\u9694\u3054\u3068\u306b\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306e\u30bf\u30a4\u30de\u30fc\u306e\u30af\u30e9\u30b9\u3067\u3059": [220, 222, 224], "\u4e00\u5b9a\u9593\u9694\u3054\u3068\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9\u306e\u30cf\u30f3\u30c9\u30e9": [220, 222, 224], "\u30cf\u30f3\u30c9\u30e9\u306e\u5b9f\u884c\u9593\u9694\u3068\u306a\u308b\u30df\u30ea\u79d2\u3082\u3057\u304f\u306ffps\u306eenum\u306e\u5024": [220, 222, 224], "fps\u306b\u5fdc\u3058\u3066\u8a08\u7b97\u3055\u308c\u305f\u30df\u30ea\u79d2\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059": [220, 222, 224], "\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308c\u3070": [220, 222, 224], "\u306e\u5024\u306f16": [220, 222, 224], "6666667\u30df\u30ea\u79d2\u76f8\u5f53\u306b\u306a\u308a\u307e\u3059": [220, 222, 224], "\u30cf\u30f3\u30c9\u30e9\u306e\u5b9f\u884c\u56de\u6570\u306e\u4e0a\u9650\u5024": [220, 222, 224], "\u30cf\u30f3\u30c9\u30e9\u306e\u5b9f\u884c\u56de\u6570\u304c\u3053\u306e\u5024\u306b\u5230\u9054\u3057\u305f\u5834\u5408\u30bf\u30a4\u30de\u30fc\u306f\u505c\u6b62\u3057\u307e\u3059": [220, 222, 224], "\u3082\u30570\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306b\u306f\u30bf\u30a4\u30de\u30fc\u306f\u505c\u6b62\u3057\u306a\u304f\u306a\u308a\u307e\u3059": [220, 222, 224], "\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9\u3078\u6e21\u3059\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u3057\u3066\u306e\u5404\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u683c\u7d0d\u3057\u305f\u8f9e\u66f8": [220, 222, 224], "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30bf\u30a4\u30de\u30fc\u304c\u7d42\u4e86": 221, "\u5b8c\u4e86": 221, "\u3057\u305f\u969b\u306b\u547c\u3070\u308c\u308b\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 221, "\u306e\u5f15\u6570\u306b100\u3092\u8a2d\u5b9a\u3057\u305f\u5834\u5408\u305d\u306e\u30cf\u30f3\u30c9\u30e9\u306f\u30bf\u30a4\u30de\u30fc\u306e\u30ab\u30a6\u30f3\u30c8\u304c100\u56de\u306b\u5230\u9054\u3057\u305f\u30bf\u30a4\u30df\u30f3\u30b0\u3067\u547c\u3070\u308c\u307e\u3059": 221, "\u30e1\u30bd\u30c3\u30c9\u306f\u4ed6\u306e\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u540c\u69d8\u306b\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306e\u30cf\u30f3\u30c9\u30e9\u3068\u3057\u3066\u306e": 221, "\u306e\u5f15\u6570\u3068\u30cf\u30f3\u30c9\u30e9\u306b\u6e21\u3059\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3068\u3057\u3066\u306e": 221, "\u5f15\u6570\u306e\u8f9e\u66f8\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 221, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b1\u3064\u76ee\u306e\u5de6\u5074\u306e\u56db\u89d2\u306b\u5bfe\u3059\u308b\u56de\u8ee2\u8a2d\u5b9a\u7528\u306e\u30bf\u30a4\u30de\u30fc\u3092\u958b\u59cb\u3057\u3066\u3044\u307e\u3059": 221, "1\u3064\u76ee\u306e\u30bf\u30a4\u30de\u30fc\u304c\u7d42\u4e86\u3057\u305f\u30bf\u30a4\u30df\u30f3\u30b0\u30672\u3064\u76ee\u306e\u30bf\u30a4\u30de\u30fc\u3092\u958b\u59cb\u3057\u3066\u3044\u307e\u3059": 221, "_rectsopt": 221, "on_timer_1_complet": 221, "timer_complete_basic_usag": 221, "_timercompleteopt": 221, "\u30bf\u30a4\u30de\u30fc\u7d42\u4e86\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 221, "\u30bf\u30a4\u30de\u30fc\u7d42\u4e86\u6642\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9": 221, "\u5f15\u6570\u306e\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [222, 224], "\u5f15\u6570\u306e\u8a2d\u5b9a\u3067\u306f\u30bf\u30a4\u30de\u30fc\u306e\u9593\u9694\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u3059": 222, "\u3053\u306e\u8a2d\u5b9a\u306f\u30df\u30ea\u79d2\u5358\u4f4d\u3068\u306a\u308a": 222, "1000\u306e\u5024\u3092\u6307\u5b9a\u3059\u308c\u30701\u79d2\u3054\u3068\u306e\u9593\u9694\u306b\u306a\u308a\u307e\u3059": 222, "\u578b\u306e\u5024": [63, 151, 155, 222], "\u306eenum\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 222, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067": 222, "deplai": 222, "\u5f15\u6570\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [222, 224], "\u306e3\u3064\u306e\u30bf\u30a4\u30de\u30fc\u3092\u751f\u6210\u3057": 222, "\u305d\u308c\u305e\u308cdelay\u306e\u5024\u306b": 222, "1\u756a\u76ee\u306e\u30bf\u30a4\u30de\u30fc": 222, "\u3067\u306f1\u79d2\u9593\u306b10\u56de\u30cf\u30f3\u30c9\u30e9\u306e\u547c\u3073\u51fa\u3057\u3092\u884c\u3044": 222, "2\u756a\u76ee\u306e\u30bf\u30a4\u30de\u30fc": 222, "\u306e\u5024\u306f33": 222, "\u3067\u306f1\u79d2\u9593\u306b30\u56de\u306e\u547c\u3073\u51fa\u3057\u3092\u884c\u3044": 222, "3\u756a\u76ee\u306e\u30bf\u30a4\u30de\u30fc": 222, "\u3067\u306f60\u56de\u306e\u547c\u3073\u51fa\u3057\u3092\u884c\u3044\u307e\u3059": 222, "would": 222, "tick": 222, "timer_delay_basic_usag": 222, "\u306e\u5f15\u6570\u306b\u306f": 222, "1\u79d2\u5f53\u305f\u308a\u306e\u30d5\u30ec\u30fc\u30e0\u6570": 222, "\u306eenum\u306e\u5024\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 222, "\u3092\u6307\u5b9a\u3059\u308c\u307060fps\u76f8\u5f53\u306e\u5b9f\u884c\u56de\u6570": 222, "6666667\u30df\u30ea\u79d2\u3054\u3068\u306e\u5b9f\u884c": 222, "\u3092\u6307\u5b9a\u3059\u308c\u307030fps\u76f8\u5f53": 222, "3333333\u30df\u30ea\u79d2\u3054\u3068\u306e\u5b9f\u884c": 222, "timer_delay_fps_enum": 222, "\u9045\u5ef6": 222, "\u9593\u9694": 222, "\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 222, "\u30cf\u30f3\u30c9\u30e9\u306e\u5b9f\u884c\u3054\u3068\u306e\u30df\u30ea\u79d2\u306e\u9593\u9694\u5024": 222, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3084": 223, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u767b\u9332\u3055\u308c\u308b\u30bf\u30a4\u30de\u30fc\u95a2\u4fc2\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u306b\u6e21\u3055\u308c\u308b\u30a4\u30d9\u30f3\u30c8\u306e\u30af\u30e9\u30b9\u3067\u3059": 223, "\u30bf\u30a4\u30de\u30fc\u95a2\u4fc2\u306e\u5404\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u7b2c\u4e00\u5f15\u6570\u306f": 223, "timer_event_basic_usag": 223, "\u5c5e\u6027\u306f\u5bfe\u8c61\u306e": 223, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u306a\u308a": 223, "\u305e\u308c\u3092\u53c2\u7167\u3057\u3066\u30bf\u30a4\u30de\u30fc\u95a2\u4fc2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 223, "count": 223, "current_count": [223, 226], "timer_event_this_attribut": 223, "\u30bf\u30a4\u30de\u30fc\u95a2\u4fc2\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30af\u30e9\u30b9\u3067\u3059": 223, "\u5bfe\u8c61\u306e\u30bf\u30a4\u30de\u30fc\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 223, "\u3053\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u5bfe\u8c61\u306e\u30bf\u30a4\u30de\u30fc\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 223, "\u5f15\u6570\u306e\u8a2d\u5b9a\u3067\u306f\u30cf\u30f3\u30c9\u30e9\u304c\u547c\u3070\u308c\u308b\u6700\u5927\u6570\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u3059": 224, "\u3082\u305710\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u30bf\u30a4\u30de\u30fc\u306f10\u56de\u30cf\u30f3\u30c9\u30e9\u3092\u547c\u3073\u51fa\u3057\u305f\u5f8c\u306b\u505c\u6b62\u3057\u307e\u3059": 224, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b\u3066": 224, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b": 224, "\u306e\u5024\u304c100\u306e\u30bf\u30a4\u30de\u30fc\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 224, "\u3082\u3057\u30bf\u30a4\u30de\u30fc\u304c\u30cf\u30f3\u30c9\u30e9\u5185\u3067\u56db\u89d2\u3092100\u56de\u5206\u52d5\u304b\u3057\u305f\u5834\u5408": 224, "100px\u5206\u53f3\u306b\u52d5\u3044\u305f\u5834\u5408": 224, "\u30bf\u30a4\u30de\u30fc\u306f\u505c\u6b62\u3057\u307e\u3059": 224, "timer_repeat_count_basic_usag": 224, "\u30cf\u30f3\u30c9\u30e9\u304c\u547c\u3070\u308c\u308b\u6700\u5927\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059": 224, "\u30cf\u30f3\u30c9\u30e9\u306e\u547c\u3073\u51fa\u3057\u306e\u4e0a\u9650\u56de\u6570": 224, "\u3082\u30570\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": 224, "\u30bf\u30a4\u30de\u30fc\u306f\u305a\u3063\u3068\u5b9f\u884c\u3055\u308c\u7d9a\u3051\u307e\u3059": 224, "\u30cf\u30f3\u30c9\u30e9\u3092\u547c\u3073\u7d9a\u3051\u307e\u3059": 224, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30bf\u30a4\u30de\u30fc\u306e\u30ab\u30a6\u30f3\u30c8\u3092\u30ea\u30bb\u30c3\u30c8\u3057\u305d\u3057\u3066\u30bf\u30a4\u30de\u30fc\u3092\u505c\u6b62\u3057\u307e\u3059": 225, "\u30e1\u30bd\u30c3\u30c9\u306f\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 225, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f1\u3064\u76ee\u306e\u30bf\u30a4\u30de\u30fc\u3067\u56db\u89d2\u309290\u5ea6\u56de\u8ee2\u3055\u305b\u3066\u3044\u307e\u3059": 225, "\u56de\u8ee2\u51e6\u7406\u304c\u7d42\u308f\u3063\u305f\u30892\u3064\u76ee\u306e\u30bf\u30a4\u30de\u30fc\u3092\u30ea\u30bb\u30c3\u30c8\u3055\u305b\u3066\u304b\u3089\u30b9\u30bf\u30fc\u30c8\u3055\u305b\u3066\u3044\u307e\u3059": 225, "\u30b9\u30bf\u30fc\u30c8\u5f8c\u306b1\u79d2\u7d4c\u904e\u3057\u305f\u30891\u3064\u76ee\u306e\u30bf\u30a4\u30de\u30fc\u3092\u30ea\u30bb\u30c3\u30c8\u3057\u3066\u304b\u3089\u518d\u5ea6\u30b9\u30bf\u30fc\u30c8\u3055\u305b\u3066\u3044\u307e\u3059": 225, "_timeropt": 225, "on_first_tim": 225, "on_first_timer_complet": 225, "on_second_tim": 225, "options_1": 225, "options_2": 225, "timer_reset_basic_usag": 225, "\u30bf\u30a4\u30de\u30fc\u306e\u30ab\u30a6\u30f3\u30c8\u3092\u30ea\u30bb\u30c3\u30c8\u3057": 225, "\u305d\u3057\u3066\u30bf\u30a4\u30de\u30fc\u306e\u505c\u6b62\u3092\u884c\u3044\u307e\u3059": 225, "\u3053\u306e\u30da\u30fc\u30b8\u3067timer\u30af\u30e9\u30b9\u306e": 226, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30bf\u30a4\u30de\u30fc\u3092\u30b9\u30bf\u30fc\u30c8\u3055\u305b\u307e\u3059": 226, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30bf\u30a4\u30de\u30fc\u3092\u505c\u6b62\u3055\u305b\u307e\u3059": 226, "\u306e\u5404\u30e1\u30bd\u30c3\u30c9\u306f\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 226, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u30bf\u30a4\u30de\u30fc\u3092\u30b9\u30bf\u30fc\u30c8\u3055\u305b": 226, "\u30bf\u30a4\u30de\u30fc\u306e\u30ab\u30a6\u30f3\u30c8\u304c100\u306b\u9054\u3057\u305f\u6642\u70b9\u3067\u30bf\u30a4\u30de\u30fc\u3092\u505c\u6b62\u3055\u305b\u3066\u3044\u307e\u3059": 226, "what": 226, "timer_start_and_stop_basic_usag": 226, "\u30bf\u30a4\u30de\u30fc\u3092\u958b\u59cb\u3057\u307e\u3059": 226, "\u30bf\u30a4\u30de\u30fc\u3092\u505c\u6b62\u3057\u307e\u3059": 226, "\u30e1\u30bd\u30c3\u30c9\u306f\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u81ea\u4f53\u306e": 227, "\u578b\u3067\u306e\u8868\u73fe\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 227, "\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u5404\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u306b\u5b58\u5728\u3057\u307e\u3059": 227, "\u8fd4\u5374\u5024\u306fjavascript\u306b\u6e96\u3058\u305f\u5024\u3068\u306a\u308a\u307e\u3059": 227, "\u306e\u5024\u3067\u3042\u308c\u3070": 227, "\u306a\u3069\u306e\u5024\u3067\u306f\u306a\u304f": 227, "\u3068\u3044\u3063\u305f\u6587\u5b57\u5217\u306e\u5024\u306b\u306a\u308a\u307e\u3059": 227, "number_valu": 227, "bool_valu": 227, "array_valu": 227, "to_string_basic_usage_1": 227, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u305d\u306e\u6587\u5b57\u5217\u3092\u4f7f\u3063\u3066\u30c6\u30ad\u30b9\u30c8\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3046\u969b\u306b\u4fbf\u5229\u306a\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 227, "to_string_basic_usage_2": 227, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u6587\u5b57\u5217\u3078\u3068\u5909\u63db\u3057\u307e\u3059": 227, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4efb\u610f\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u8868\u793a\u3057\u307e\u3059": 228, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fjavascript\u306e": 228, "\u306e\u95a2\u6570\u3068\u540c\u3058\u3088\u3046\u306a\u6319\u52d5\u3092\u3057\u307e\u3059": 228, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fpython\u306e\u30d5\u30a1\u30a4\u30eb\u540d": 228, "\u547c\u3073\u51fa\u3057\u5143\u306e\u60c5\u5831": 228, "\u884c\u756a\u53f7\u306a\u3069\u306e\u60c5\u5831\u3082\u8868\u793a\u3057\u307e\u3059": 228, "\u95a2\u6570\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u3068\u306a\u308a\u307e\u3059": 228, "\u305d\u306e\u95a2\u6570\u306f": 228, "\u95a2\u6570\u3068\u540c\u3058\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 228, "\u95a2\u6570\u306f\u4efb\u610f\u306e\u6570\u306e\u5f15\u6570\u3092\u53d7\u3051\u4ed8\u3051": 228, "\u305d\u3057\u3066\u69d8\u3005\u306a\u578b\u306e\u5024\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 228, "\u4f0a\u8cc0\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u63cf\u753b\u3057": 228, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059": 228, "f12\u30ad\u30fc\u3092\u62bc\u3057\u3066\u30b3\u30f3\u30bd\u30fc\u30eb\u3092\u958b\u3044\u3066\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": 228, "trace_basic_usag": 228, "\u5f15\u6570\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u306e\u60c5\u5831\u3092\u30b3\u30f3\u30bd\u30fc\u30eb\u3078\u8868\u793a\u3057\u307e\u3059": 228, "\u3053\u306e\u95a2\u6570\u306fjavascript\u306e": 228, "\u306b\u8a72\u5f53\u3059\u308b\u30b3\u30fc\u30c9\u3092\u4fdd\u5b58\u3057\u307e\u3059": 228, "\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u8868\u793a\u3059\u308b\u4efb\u610f\u306e\u5f15\u6570\u306e\u5024": 228, "\u30af\u30e9\u30b9\u306f\u4e09\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u751f\u6210\u3057\u307e\u3059": 229, "\u5f15\u6570\u306f1\u3064\u76ee\u306e\u9802\u70b9\u306e\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 229, "\u5f15\u6570\u306f2\u3064\u76ee\u306e\u9802\u70b9\u306e\u5ea7\u6a19\u3068\u306a\u308a": 229, "\u306f3\u3064\u76ee\u306e\u9802\u70b9\u306e\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 229, "triangle_basic_usag": 229, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3046\u3053\u3068\u3067\u3082\u4e09\u89d2\u5f62\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 229, "triangle_x": 229, "triangle_i": 229, "\u5c5e\u6027\u3067\u306f1\u3064\u76ee\u306e\u9802\u70b9\u306ex\u5ea7\u6a19\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 229, "triangle_x1": 229, "\u5c5e\u6027\u3067\u306f1\u3064\u76ee\u306e\u9802\u70b9\u306ey\u5ea7\u6a19\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 229, "triangle_y1": 229, "\u5c5e\u6027\u3067\u306f2\u3064\u76ee\u306e\u9802\u70b9\u306ex\u5ea7\u6a19\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 229, "triangle_x2": 229, "\u5c5e\u6027\u3067\u306f2\u3064\u76ee\u306e\u9802\u70b9\u306ey\u5ea7\u6a19\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 229, "triangle_y2": 229, "\u5c5e\u6027\u3067\u306f3\u3064\u76ee\u306ex\u5ea7\u6a19\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 229, "triangle_x3": 229, "\u5c5e\u6027\u3067\u306f3\u3064\u76ee\u306ey\u5ea7\u6a19\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 229, "triangle_y3": 229, "triangle_fill_color": 229, "triangle_fill_alpha": 229, "triangle_line_color": 229, "triangle_line_alpha": 229, "triangle_line_thick": 229, "triangle_line_dot_set": 229, "triangle_line_dash_set": 229, "triangle_line_round_dot_set": 229, "triangle_line_dash_dot_set": 229, "triangle_rotation_around_cent": 229, "rotation_x": 229, "rotation_i": 229, "triangle_set_rotation_around_point": 229, "triangle_scale_x_from_cent": 229, "triangle_scale_y_from_cent": 229, "scale_coordinate_x": 229, "triangle_set_scale_x_from_point": 229, "scale_coordinate_i": 229, "triangle_set_scale_y_from_point": 229, "triangle_flip_x": 229, "triangle_flip_i": 229, "triangle_skew_x": 229, "triangle_skew_i": 229, "\u4e09\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 229, "1\u3064\u76ee\u306ex\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 229, "1\u3064\u76ee\u306ex\u5ea7\u6a19": 229, "1\u3064\u76ee\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 229, "1\u3064\u76ee\u306ey\u5ea7\u6a19": 229, "2\u3064\u76ee\u306ex\u5ea7\u6a19": 229, "2\u3064\u76ee\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 229, "2\u3064\u76ee\u306ey\u5ea7\u6a19": 229, "3\u3064\u76ee\u306ex\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 229, "3\u3064\u76ee\u306ex\u5ea7\u6a19": 229, "3\u3064\u76ee\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 229, "3\u3064\u76ee\u306ey\u5ea7\u6a19": 229, "\u306e\u5404\u5b9a\u6570\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 230, "\u306e\u5024\u3092\u793a\u3059\u305f\u306e\u5b9a\u6570\u5024\u3067\u3059": 230, "\u3068\u307b\u307c\u540c\u3058\u5024\u3068\u306a\u308a\u307e\u3059": 230, "\u53cd\u5bfe\u306b": 230, "\u306e\u5024\u3092\u793a\u3059\u305f\u3081\u306e\u5b9a\u6570\u3068\u306a\u308a\u307e\u3059": 230, "\u3053\u308c\u3089\u306e\u5b9a\u6570\u306f": [], "\u306e\u521d\u671f\u5316": [], "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316": [], "\u5f8c\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059": [], "\u306e\u521d\u671f\u5316\u524d\u306b\u3053\u308c\u3089\u306e\u5b9a\u6570\u3092\u53c2\u7167\u3057\u305f\u5834\u5408\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": [], "attributeerror": [], "\u306e\u521d\u671f\u5316\u3092\u884c\u3046\u3053\u3068\u3067\u30a8\u30e9\u30fc\u306f\u767a\u751f\u3057\u306a\u304f\u306a\u308a\u307e\u3059": [], "\u306e\u5404\u5b9a\u6570\u306f": 230, "\u306a\u3069\u3068\u540c\u3058\u3088\u3046\u306b\u632f\u308b\u821e\u3044\u307e\u3059": 230, "\u306e\u5f15\u6570\u3092\u53d6\u308b\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306a\u3069\u3067\u306f\u3053\u308c\u3089\u306e\u5b9a\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 230, "bold": [146, 164, 230], "ital": [146, 164, 230], "true_and_false_basic_usag": 230, "\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fenter": 231, "frame\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 231, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f\u4e00\u3064\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u7121\u52b9\u5316\u3057": 231, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u3059\u3079\u3066\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u7121\u52b9\u5316\u3057\u307e\u3059": 231, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u3082\u3057\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u304c\u307e\u3060\u672a\u8a2d\u5b9a\u3060\u3063\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 231, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306benter": 231, "frame\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u7121\u52b9\u5316\u3057\u3066\u3044\u307e\u3059": 231, "unbind_enter_frame_basic_usag": 231, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": [231, 232], "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u3059\u3079\u3066\u306eenter": 231, "on_enter_frame_1": 231, "on_enter_frame_2": 231, "unbind_enter_frame_all_basic_usag": 231, "\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u306eenter": 231, "frame\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 231, "\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304f\u5bfe\u8c61\u306ecallable\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 231, "_enterframeeventnotregist": 231, "\u3082\u3057\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u524a\u9664\u5bfe\u8c61\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408": 231, "\u3059\u3079\u3066\u306eenter": 231, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 232, "\u3053\u306e\u95a2\u6570\u306f\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\u306e\u8ffd\u52a0\u3092\u505c\u6b62\u3057\u307e\u3059": 232, "\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u8a2d\u5b9a\u306f\u5927\u91cf\u306e\u60c5\u5831\u3092\u51fa\u529b\u3057\u307e\u3059": 232, "\u6642\u6298\u3053\u308c\u306f\u7169\u96d1\u306a": 232, "\u60c5\u5831\u304c\u591a\u3059\u304e\u308b": 232, "\u72b6\u614b\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 232, "\u305d\u306e\u3088\u3046\u306a\u5834\u5408\u306b\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u304c\u4e0d\u8981\u306b\u306a\u3063\u305f\u30bf\u30a4\u30df\u30f3\u30b0\u3067\u8a2d\u5b9a\u3092\u89e3\u9664\u3059\u308b\u3068\u5f79\u306b\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 232, "\u3082\u3057\u3082\u51fa\u529b\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 232, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u6709\u52b9\u306b\u306a\u3063\u3066\u3044\u308b\u3068": 232, "\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u60c5\u5831\u306a\u3069\u3082\u524a\u9664\u3055\u308c\u3066\u3057\u307e\u3044\u307e\u3059": 232, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u3092\u89e3\u9664\u3057\u305f\u5834\u5408\u306b\u306f": 232, "\u306e\u5f15\u6570\u8a2d\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 232, "\u306e\u5909\u6570\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316\u306810\u306e\u52a0\u7b97\u51e6\u7406\u306e\u7b87\u6240\u306e\u307f\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\u306e\u8ffd\u52a0\u3092\u6709\u52b9\u5316\u3057\u3066\u3044\u307e\u3059": 232, "unset_debug_mode_basic_usag": 232, "\u51fa\u529b\u3055\u308c\u305fhtml\u3067\u306f\u6700\u521d\u306e\u6574\u6570\u90e8\u5206\u306e\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u542b\u3093\u3067\u3044\u307e\u3059": 232, "\u305d\u306e\u5f8c\u306e\u30b9\u30d7\u30e9\u30a4\u30c8\u30842\u3064\u76ee\u306e\u6574\u6570\u95a2\u4fc2\u306e\u4f4d\u7f6e\u306e\u3082\u306e\u306f\u542b\u307e\u308c\u306a\u3044\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 232, "g_1": 232, "i_12": 232, "indexof": 232, "i_13": 232, "type_nam": 232, "i_16": 232, "to_int_from_float": 232, "_convert": 232, "cast": 232, "int_or_float": 232, "append_constructor_express": 232, "i_18": 232, "i_19": 232, "cpy": 232, "html\u3068javascript\u306e\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 232, "\u306e\u5f15\u6570\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 233, "\u5f15\u6570\u306f\u51fa\u529b\u3055\u308c\u308bjavascript\u306e\u5909\u6570\u540d\u306e\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u5909\u66f4\u3057\u307e\u3059": 233, "\u3053\u306e\u8a2d\u5b9a\u306f\u51fa\u529b\u3055\u308c\u305fjavascript\u306b\u5bfe\u3057\u3066\u30c7\u30d0\u30c3\u30b0\u3092\u884c\u3046\u969b\u306a\u3069\u306b\u4fbf\u5229\u306a\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 233, "apysc\u306e\u5404\u30af\u30e9\u30b9\u306f": 233, "\u305d\u306e\u5f15\u6570\u3092\u4f7f\u3063\u3066\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 233, "my_int": 233, "\u3068\u3044\u3046\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3092": 233, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 233, "variable_name_suffix_basic_usage_1": 233, "\u51fa\u529b\u3055\u308c\u305fjavascript\u30b3\u30fc\u30c9\u5185\u3067": 233, "\u30af\u30e9\u30b9\u304c\u5909\u63db\u3055\u308c\u3066\u4f5c\u6210\u3055\u308c\u305f\u5909\u6570\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3055\u308c\u305f": 233, "_my_int": 233, "\u3068\u3044\u3046\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u6301\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059": 233, "i_9__my_int": 233, "py": 233, "\u30af\u30e9\u30b9\u306e\u5c5e\u6027\u306e\u5024\u306f\u305d\u306e\u30af\u30e9\u30b9\u3078\u6307\u5b9a\u3055\u308c\u305f\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u5024\u3092\u5f15\u304d\u7d99\u304e\u307e\u3059": 233, "my_rectangl": 233, "\u3068\u3044\u3046\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": 233, "\u305d\u306e\u30af\u30e9\u30b9\u306e\u5c5e\u6027": 233, "\u306f\u540c\u69d8\u306b": 233, "\u3068\u3044\u3046\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u6301\u3064\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 233, "variable_name_suffix_basic_usage_2": 233, "\u3053\u306e\u3088\u3046\u306a\u30b1\u30fc\u30b9\u3067\u306f": 233, "\u306a\u3069\u306e\u5c5e\u6027\u306e\u8b58\u5225\u7528\u306e\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3082\u540c\u69d8\u306b\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 233, "i_9__my_rectangle__x": 233, "i_10__my_rectangle__i": 233, "i_12__my_rectangle__width": 233, "rect_1__my_rectangl": 233, "i_16__my_rectangle__width": 233, "i_17__my_rectangle__height": 233, "attr": 233, "s_1__my_rectangle__fill_color": 233, "opac": 233, "n_2__my_rectangle__fill_alpha": 233, "stroke": 233, "i_15__my_rectangle__line_thick": 233, "n_3__my_rectangle__line_alpha": 233, "\u30e9\u30a4\u30d6\u30d1\u30ea\u306e\u73fe\u5728\u306e\u5b9f\u88c5\u3068\u6a5f\u80fd\u306e\u6982\u8981\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 234, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3092python\u3092\u4f7f\u3063\u3066\u66f8\u304f\u3053\u3068\u304c\u3067\u304d": 234, "\u7d50\u679c\u3092html\u306b\u51fa\u529b\u3057\u305f\u308a\u3082\u3057\u304f\u306fjupyt": 234, "notebook\u3084jupyterlab": 234, "googl": 234, "colaboratory\u4e0a\u306a\u3069\u3067\u8868\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 234, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u56db\u89d2\u3084\u5186": 234, "\u7dda\u306a\u3069\u306e\u69d8\u3005\u306a\u7a2e\u985e\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u63cf\u753b\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 234, "650": 234, "210": 234, "145": 234, "53": 234, "what_apysc_can_do_draw_vector_graph": 234, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u30af\u30ea\u30c3\u30af\u3084\u30de\u30a6\u30b9\u30c0\u30a6\u30f3": 234, "\u30de\u30a6\u30b9\u30aa\u30fc\u30d0\u30fc": 234, "\u30de\u30a6\u30b9\u30e0\u30fc\u30d6\u306a\u3069\u306e\u5404\u7a2e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 234, "\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u4f8b": 234, "\u4ee5\u4e0b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": 234, "what_apysc_can_do_mouse_event_click": 234, "\u30bf\u30a4\u30de\u30fc\u306b\u95a2\u4fc2\u3057\u305f\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d": 234, "\u305d\u308c\u3092\u4f7f\u3063\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 234, "alpha_direct": 234, "current_alpha": 234, "what_apysc_can_do_timer_anim": 234, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 234, "tween": 234, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 234, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": 234, "\u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u4f55\u6545": 235, "\u306a\u3069\u306epython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30c7\u30fc\u30bf\u578b\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u306e\u304b\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 235, "\u4f55\u6545\u305d\u308c\u3089\u306e\u4ee3\u308f\u308a\u306b": 235, "\u306a\u3069\u306e\u30c7\u30fc\u30bf\u306e\u578b\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u306e\u304b\u306b\u3064\u3044\u3066\u3082\u8aac\u660e\u3057\u307e\u3059": 235, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306fpython\u306e\u30b3\u30fc\u30c9\u3092javascript\u3078\u3068\u5909\u63db\u3059\u308b\u305f\u3081\u306b\u5909\u6570\u306e\u751f\u6210\u3084\u66f4\u65b0\u306a\u3069\u306e\u51e6\u7406\u3092\u5185\u90e8\u3067\u8ffd\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 235, "\u3053\u306e\u7406\u7531\u304b\u3089": 235, "\u306a\u3069\u306e\u72ec\u81ea\u306e\u578b\u3092\u8a2d\u3051\u3066\u305d\u3061\u3089\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 235, "\u5834\u5408\u306b\u3088\u3063\u3066\u306fhtml\u306e\u751f\u6210\u51e6\u7406\u3067\u3053\u308c\u3089\u306e\u578b\u306e\u5229\u7528\u304c\u4e0d\u8981\u306a\u5834\u5408\u3082\u3042\u308a\u307e\u3059\u304c": 235, "\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306a\u3069\u306e\u975e\u540c\u671f\u306a\u51e6\u7406\u3092\u4f7f\u3046\u5834\u5408\u306a\u3069\u306b\u306f\u5229\u7528\u304c\u5fc5\u8981\u306b\u306a\u3063\u3066\u304d\u307e\u3059": 235, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u305d\u308c\u3089\u306e\u578b\u306e\u5185\u90e8\u3067\u81ea\u52d5\u7684\u306b\u5909\u6570\u540d\u3092\u5272\u308a\u632f\u308a": 235, "html\u3084javascript\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u51fa\u529b\u3059\u308b\u969b\u306b\u305d\u308c\u3089\u306e\u5909\u6570\u540d\u3092\u4f7f\u7528\u3057\u307e\u3059": 235, "\u5909\u6570\u306e\u751f\u6210\u3084\u66f4\u65b0\u306a\u3069\u306e\u5185\u5bb9\u3082\u51fa\u529b\u3055\u308c\u308bjavascript\u306e\u30b3\u30fc\u30c9\u306b\u53cd\u6620\u3055\u308c\u307e\u3059": 235, "\u3082\u3057python\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u578b\u3092\u4f7f\u3063\u305f\u5834\u5408": 235, "\u3053\u308c\u3089\u306e\u5024javascript\u4e0a\u3067\u306f\u56fa\u5b9a\u5024\u3067\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 235, "apysc\u4e0a\u3067\u306f\u975e\u540c\u671f\u306e\u95a2\u6570\u306a\u3069\u3067\u306e\u5909\u6570\u306e\u5909\u66f4\u304c\u53cd\u6620\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3059": 235, "0x7f7f22e57fa0": [], "\u5c5e\u6027\u306b\u306f": 114, "\u306e\u5024\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 114, "700": [65, 153], "colors_memb": [65, 153], "color_nam": [65, 153], "constant_names_arr": [65, 153], "colors_arr": [65, 153], "comput": 65, "hope": 65, "0x7f9bec67baf0": [], "materialdesigncolor": [62, 146], "red_100_ffcdd2": 153, "red_300_e57373": 153, "indigo_800_283593": 153, "indigo_a200_536df": 153, "\u306a\u3069\u306e\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u306e\u8272\u306e\u5b9a\u6570\u3092\u6301\u3061\u307e\u3059": 153, "gray_800_424242": 153, "cyan_200_80deea": 153, "material_design_colors_basic_usag": 153, "material_design_colors_definit": 153, "overview": 153, "materi": [153, 154], "design": [153, 154], "zfill": 146, "\u30e1\u30bd\u30c3\u30c9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [151, 155, 197, 200, 203, 204], "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u6570\u3067\u30bc\u30ed\u57cb\u3081\u3055\u308c\u305f\u6587\u5b57\u5217\u3092\u8fd4\u5374\u3057\u307e\u3059": 204, "\u305d\u306e\u8a2d\u5b9a\u306b\u3088\u3063\u3066\u5408\u8a08\u306e\u6587\u5b57\u6570\u304c\u6c7a\u5b9a\u3057\u307e\u3059": 204, "\u8fd4\u5374\u5024\u306f\u30b3\u30d4\u30fc\u3055\u308c\u305f": 204, "00001": 204, "string_zfill_basic_usag": 204, "\u6587\u5b57\u5217\u306e\u5de6\u5074\u30920\u3067\u57cb\u3081\u305f\u6587\u5b57\u5217\u3092\u8fd4\u5374\u3057\u307e\u3059": 204, "\u6587\u5b57\u5217\u306e\u5e45": 204, "\u9577\u3055": 204, "\u7d50\u679c\u306e\u6587\u5b57\u5217": 204, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 63, "from_rg": 63, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306f\u8d64\u7dd1\u9752\u306e3\u8272\u306e\u6307\u5b9a\u304b\u3089\u65b0\u305f\u306a\u8272\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059": 63, "255\u306e8bit\u306e\u6b63\u306e\u6574\u6570\u306e\u7bc4\u56f2\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 63, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306f": 63, "red": 63, "green": 63, "\u3053\u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306f\u65b0\u305f\u306a\u8272\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u3057\u307e\u3059": 63, "black_color": 63, "black_rectangl": 63, "white_color": 63, "255": [57, 63, 143, 184], "white_rectangl": 63, "cyan_color": 63, "128": 63, "cyan_rectangl": 63, "color_from_rgb_basic_usag": 63, "rgb": 63, "\u8d64": 63, "\u7dd1": 63, "\u9752": 63, "\u306e\u5024\u304b\u3089\u8272\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 63, "\u8d64\u8272\u306e\u5024": 63, "\u7dd1\u8272\u306e\u5024": 63, "\u9752\u8272\u306e\u5024": 63, "\u4f5c\u6210\u3055\u308c\u305f\u8272\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 63, "00ff00": 63, "from_rgb": [62, 146], "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9": [62, 146], "to_hex": 146, "\u578b\u306e\u5024\u304b\u308916\u9032\u6570\u306e\u6587\u5b57\u5217": 151, "1f": 151, "\u578b\u306e\u5024\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": 151, "\u306e\u5024\u3067\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u305f\u5834\u5408": [], "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f16\u9032\u6570\u306e\u6587\u5b57\u5217": 151, "28": 151, "hex_str": 151, "1c": 151, "int_and_number_to_hex_basic_usag": 151, "16\u9032\u6570\u306e\u6587\u5b57\u5217": 151, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3092\u7121\u8996\u3057\u307e\u3059": 151, "\u306e\u5024\u3067\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u305f\u5834\u5408\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u5024\u306f\u7121\u8996\u3055\u308c\u307e\u3059": 151, "\u30e1\u30bd\u30c3\u30c9\u306f\u5c0f\u6587\u5b57\u306b\u5909\u63db\u3055\u308c\u305f\u6587\u5b57\u5217\u306e\u30b3\u30d4\u30fc\u3092\u8fd4\u5374\u3057\u307e\u3059": 197, "\u30e1\u30bd\u30c3\u30c9\u306f\u5f15\u6570\u3092\u5fc5\u8981\u3068\u305b\u305a": 197, "abc1_": [197, 203], "string_lower_basic_usag": 197, "\u5c0f\u6587\u5b57\u306b\u5909\u63db\u3055\u308c\u305f\u6587\u5b57\u5217\u306e\u30b3\u30d4\u30fc\u3092\u53d6\u5f97\u3057\u307e\u3059": 197, "\u5c0f\u6587\u5b57\u306b\u5909\u63db\u3055\u308c\u305f\u6587\u5b57\u5217\u306e\u30b3\u30d4\u30fc": 197, "\u30e1\u30bd\u30c3\u30c9\u306f\u5927\u6587\u5b57\u306b\u5909\u63db\u3055\u308c\u305f\u6587\u5b57\u5217\u306e\u30b3\u30d4\u30fc\u3092\u8fd4\u5374\u3057\u307e\u3059": 203, "\u30e1\u30bd\u30c3\u30c9\u306f\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u305b\u305a": 203, "string_upper_basic_usag": 203, "\u5927\u6587\u5b57\u306b\u5909\u63db\u3055\u308c\u305f\u6587\u5b57\u5217\u306e\u30b3\u30d4\u30fc\u3092\u8fd4\u5374\u3057\u307e\u3059": 203, "\u5927\u6587\u5b57\u5909\u63db\u3055\u308c\u305f\u6587\u5b57\u5217\u306e\u30b3\u30d4\u30fc": 203, "red_color": [62, 146], "\u5c5e\u6027\u306f\u8d64\u8272\u306e": 184, "\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059": [], "\u3053\u306e\u5024\u306f0": [57, 143, 184], "255\u306e\u7bc4\u56f2\u3092\u53d6\u308a\u307e\u3059": [57, 143, 184], "red_color_basic_usag": 184, "\u8d64\u8272\u306e\u6574\u6570\u5024": 184, "\u30d7\u30ed\u30d1\u30c6\u30a3\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 143, "\u30d7\u30ed\u30d1\u30c6\u30a3\u306f\u7dd1\u8272\u306e\u8272\u306e": 143, "aa00ff": 143, "green_color_basic_usag": 143, "\u7dd1\u8272\u306e\u6574\u6570\u5024": 143, "green_color": [62, 146], "\u5c5e\u6027\u306f\u9752\u8272\u306e": 57, "ffaa00": 57, "blue_color_basic_usag": 57, "\u9752\u8272\u306e\u6574\u6570\u306e\u5024": 57, "\u9752\u8272\u306e\u6574\u6570\u5024": 57, "aaff00": 57, "blue_color": [62, 146], "\u30e1\u30bd\u30c3\u30c9\u306f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u958b\u59cb\u3068\u7d42\u4e86\u306e\u6307\u5b9a\u5024\u3092\u4f7f\u3063\u3066\u6587\u5b57\u5217\u3092\u30b9\u30e9\u30a4\u30b9": 200, "\u6587\u5b57\u5217\u306e\u4e00\u90e8\u306e\u62bd\u51fa\u3092": 200, "\u306e2\u3064\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 200, "\u5f15\u6570\u306f\u30b9\u30e9\u30a4\u30b9\u306e\u958b\u59cb\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3067\u3059": 200, "\u5f15\u6570\u306f\u30b9\u30e9\u30a4\u30b9\u306e\u7d42\u70b9\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u6307\u5b9a\u3068\u306a\u308a\u307e\u3059": 200, "\u30b9\u30e9\u30a4\u30b9\u7bc4\u56f2\u306e\u6700\u5f8c\u306f\u3053\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 200, "\u305f\u3060\u3057\u3053\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u81ea\u4f53\u306f\u542b\u307f\u307e\u305b\u3093": 200, "\u304c\u4f7f\u308f\u308c\u307e\u3059": 200, "012345": 200, "12345": 200, "string_slice_basic_usag": 200, "\u6307\u5b9a\u3055\u308c\u305f\u5f15\u6570\u306e\u7bc4\u56f2\u306b\u57fa\u3065\u3044\u3066\u30b9\u30e9\u30a4\u30b9\u3055\u308c\u305f\u6587\u5b57\u5217\u3092\u53d6\u5f97\u3057\u307e\u3059": 200, "\u3082\u3057\u3082\u3053\u306e\u5f15\u6570\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408": 200, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u7d42\u4e86\u4f4d\u7f6e\u306e\u30b9\u30e9\u30a4\u30b9\u3092\u30b9\u30ad\u30c3\u30d7\u3057\u307e\u3059": 200, "\u30b9\u30e9\u30a4\u30b9\u7d50\u679c\u306e\u6587\u5b57\u5217": 200, "\u578b\u306e\u5024\u306e\u8fd4\u5374\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": [57, 143, 184], "\u4ee5\u4e0b\u306e\u4f8b\u306f": 184, "\u5c5e\u6027\u306egetter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4f7f\u7528\u4f8b\u3068\u306a\u308a\u307e\u3059": 184, "\u306egetter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4f8b\u3092\u793a\u3057\u307e\u3059": 143, "\u306egetter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4f7f\u3044\u65b9\u3092\u793a\u3057\u307e\u3059": 57, "0x7f45d423a2b0": [], "multilinetext": [146, 208, 209, 210, 211, 212, 213, 214, 215, 216], "\u30af\u30e9\u30b9\u306f\u8907\u6570\u884c\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 164, "\u3053\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u4e00\u5b9a\u306e\u5e45\u3067\u6298\u308a\u8fd4\u3057\u307e\u3059": 164, "text_align": [146, 164, 209], "\u306a\u3069\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3082\u540c\u69d8\u306b\u53d7\u3051\u4ed8\u3051\u307e\u3059": 164, "multi_line_text": [164, 208, 209, 210, 211, 212, 214, 215, 216], "ut": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "labor": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "et": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "magna": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "aliqua": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "enim": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "ad": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "minim": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "veniam": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "cyan_00aaff": [154, 164, 205, 212], "multi_line_text_basic_usag": 164, "css_text_align": 164, "csstextalign": [164, 209], "text_align_last": [146, 164], "css_text_align_last": 164, "csstextalignlast": 164, "underlin": [146, 164], "\u8907\u6570\u884c\u306e\u30c6\u30ad\u30b9\u30c8\u8981\u7d20\u306e\u30af\u30e9\u30b9\u306e\u5b9f\u88c5": 164, "\u8868\u793a\u5bfe\u8c61\u306e\u30c6\u30ad\u30b9\u30c8": 164, "html\u30bf\u30b0\u304c\u5229\u7528\u53ef\u80fd\u3067\u3059": 164, "\u6298\u308a\u8fd4\u3057\u4f4d\u7f6e\u3068\u306a\u308b\u30c6\u30ad\u30b9\u30c8\u306e\u5e45": 164, "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba": 164, "gray_666666": 164, "\u30c6\u30ad\u30b9\u30c8\u306e\u8272": [164, 212], "\u30c6\u30ad\u30b9\u30c8\u306e\u900f\u660e\u5ea6": 164, "\u6700\u5c0f\u5024\u306f0": 164, "\u6700\u5927\u5024\u306f1": 164, "\u30c6\u30ad\u30b9\u30c8\u3092\u592a\u5b57\u3067\u8868\u793a\u3059\u308b\u304b\u5426\u304b": 164, "\u30c6\u30ad\u30b9\u30c8\u3092\u659c\u4f53\u3067\u8868\u793a\u3059\u308b\u304b\u5426\u304b": 164, "\u6700\u7d42\u884c\u306e\u884c\u63c3\u3048\u306e\u8a2d\u5b9a": 164, "\u30c6\u30ad\u30b9\u30c8\u306e\u4e0b\u7dda\u3092\u8868\u793a\u3059\u308b\u304b\u5426\u304b": 164, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u30c6\u30ad\u30b9\u30c8\u95a2\u4fc2\u306e": [208, 209, 210, 211, 212, 213, 214, 215, 216], "text_fill_color_basic_usag": 212, "\u30c6\u30ad\u30b9\u30c8\u306e\u5857\u308a\u306e\u8272\u3092\u53d6\u5f97\u3057\u307e\u3059": 212, "\u30c6\u30ad\u30b9\u30c8\u306e": [146, 164], "text_fill_alpha_basic_usag": 211, "\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 211, "\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u5024": 211, "170": [208, 209, 210, 211, 214], "\u5c5e\u6027\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u592a\u5b57\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3044\u307e\u3059": 210, "getter\u3082\u3057\u304f\u306fsetter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f": [], "\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059": [], "\u306e\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": [210, 214, 216], "\u30c6\u30ad\u30b9\u30c8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u592a\u5b57\u306e\u30b9\u30bf\u30a4\u30eb\u306b\u306a\u308a\u307e\u3059": 210, "text_bold_basic_usag": 210, "\u592a\u5b57\u8a2d\u5b9a": 210, "font": [210, 213, 214], "weight": 210, "\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 210, "\u592a\u5b57": 210, "\u8a2d\u5b9a\u306e\u5024": 210, "\u5c5e\u6027\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u659c\u4f53\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 214, "\u30c6\u30ad\u30b9\u30c8\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u659c\u4f53\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306b\u306a\u308a\u307e\u3059": 214, "text_italic_basic_usag": 214, "\u659c\u4f53\u306e\u30b9\u30bf\u30a4\u30eb": 214, "\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": [214, 216], "\u306e\u8a2d\u5b9a\u5024": 214, "auto": [164, 209], "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u884c\u63c3\u3048\u306e\u8a2d\u5b9a\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 208, "getter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [], "\u8a2d\u5b9a\u3067\u304d\u308benum\u306e\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059": 208, "justifi": [208, 209], "\u3053\u306e\u8a2d\u5b9a\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u3067\u3059": [208, 209], "css_text_align_left": 208, "css_text_align_cent": 208, "css_text_align_right": 208, "\u7279\u8a18\u3058\u3053\u3092": 208, "\u3053\u306eenum\u306e\u8a2d\u5b9a\u306f\u30c6\u30ad\u30b9\u30c8\u3092\u5747\u7b49\u914d\u7f6e\u3057\u307e\u3059": 208, "css_text_align_justifi": 208, "\u30c6\u30ad\u30b9\u30c8\u306e\u884c\u63c3\u3048\u8a2d\u5b9a\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 208, "\u884c\u63c3\u3048\u8a2d\u5b9a": 208, "getter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306f": 208, "\u306e\u578b\u306eenum\u306e\u5024\u3068\u306a\u308a\u307e\u3059": 208, "\u5c5e\u6027\u3067\u306f\u6700\u7d42\u884c\u306e\u884c\u63c3\u3048\u306e\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 209, "getter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u578b\u306f": [209, 215], "\u306eenum\u306e\u5024\u3068\u306a\u308a\u307e\u3059": 209, "\u6307\u5b9a\u3067\u304d\u308benum\u306e\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059": 209, "\u6319\u52d5": 209, "\u306e\u8a2d\u5b9a\u3092\u7d99\u627f\u3057\u307e\u3059": 209, "\u8a2d\u5b9a\u304c": 209, "\u306e\u5834\u5408\u306b\u306f": 209, "\u5c5e\u6027\u3082\u4e2d\u592e\u5bc4\u305b\u3068\u3057\u3066\u632f\u308b\u821e\u3044\u307e\u3059": 209, "css_text_align_last_auto": 209, "css_text_align_last_left": 209, "css_text_align_last_cent": 209, "css_text_align_last_right": 209, "\u3053\u306eenum\u306e\u8a2d\u5b9a\u306f\u6700\u7d42\u884c\u306e\u30c6\u30ad\u30b9\u30c8\u3092\u5747\u7b49\u306b\u884c\u63c3\u3048\u3057\u307e\u3059": 209, "css_text_align_last_justifi": 209, "last\u5c5e\u6027\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 209, "last\u5c5e\u6027\u306e\u5024": 209, "\u306e\u578b\u3068\u306a\u308a\u307e\u3059": [210, 214, 216], "\u5c5e\u6027\u3067\u306f\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba": 213, "\u30c6\u30ad\u30b9\u30c8\u30b5\u30a4\u30ba": 213, "\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 213, "getter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306e\u578b\u306f": 213, "font_size_16_text": 213, "font_size_32_text": 213, "190": 213, "text_font_size_basic_usag": 213, "\u30c6\u30ad\u30b9\u30c8\u306e\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\u3092\u53d6\u5f97\u3057\u307e\u3059": 213, "\u30c6\u30ad\u30b9\u30c8\u306e\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba": 213, "\u5c5e\u6027\u306f\u30c6\u30ad\u30b9\u30c8\u306e\u4e0b\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3044\u307e\u3059": 216, "\u30c6\u30ad\u30b9\u30c8\u306f\u4e0b\u7dda\u3092\u8868\u793a\u3057\u307e\u3059": 216, "195": 216, "gray_aaaaaa": [215, 216], "text_underline_basic_usag": 216, "\u30c6\u30ad\u30b9\u30c8\u306e\u4e0b\u7dda": 216, "\u30c6\u30ad\u30b9\u30c8\u306e\u4e0b\u7dda\u306e\u8a2d\u5b9a": 216, "line_height": [146, 164], "\u884c\u306e\u9ad8\u3055": 164, "\u30c6\u30ad\u30b9\u30c8\u306e\u884c\u9593": 164, "\u306e\u8a2d\u5b9a": 164, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u884c\u9593\u306e\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 215, "\u306e\u5024\u306b\u306a\u308a\u307e\u3059": 215, "\u3082\u3057\u3053\u306e\u5c5e\u6027\u306b1": 215, "5\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": 215, "\u884c\u9593\u306f\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\u306e1": 215, "5\u500d\u306e\u5927\u304d\u3055\u306b\u306a\u308a\u307e\u3059": 215, "text_line_height_basic_usag": 215, "\u884c\u9593\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 215, "\u884c\u9593\u306e\u5024": 215, "0x7f2367f69400": [], "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u73fe\u5728\u306e\u4e00\u70b9\u9396\u7dda\u306e\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 117, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u7dda\u306e\u8a2d\u5b9a\u306e\u66f4\u65b0\u3068\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 120, "\u5c5e\u6027\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u5e45\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 121, "\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u30a2\u30a4\u30b3\u30f3": [], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306fapysc\u3067\u306e\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u306e\u30a2\u30a4\u30b3\u30f3\u306b\u95a2\u4fc2\u3057\u305f\u5b9f\u88c5\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [], "\u5404\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u306e\u30a2\u30a4\u30b3\u30f3\u306e\u30af\u30e9\u30b9\u540d\u306f\u4f8b\u3048\u3070": [], "materialsearchicon": [], "materialaccountcircleicon": [], "\u3068\u3044\u3063\u305f\u3088\u3046\u306b": [], "\u30a2\u30a4\u30b3\u30f3\u540d": [], "icon": 154, "\u3068\u3044\u3046\u5f62\u5f0f\u306b\u306a\u308a\u307e\u3059": [], "\u3053\u308c\u3089\u306e\u30a2\u30a4\u30b3\u30f3\u306e\u30af\u30e9\u30b9\u306f": [], "\u306a\u3069\u306e\u4ed6\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u7528\u306e\u5404\u30af\u30e9\u30b9\u3068\u540c\u69d8\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [], "margin": [], "icon_s": [], "icon_num": [], "search_icon": [], "info_icon": [], "materialinfoicon": [], "home_icon": 154, "materialhomeicon": 154, "magenta_ff00ff": [], "material_icons_basic_usag": [], "\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u306e\u30a2\u30a4\u30b3\u30f3\u3092\u4f5c\u6210\u3057\u307e\u3059": [], "\u30a2\u30a4\u30b3\u30f3\u306e\u5857\u308a\u306e\u8272": 154, "\u30a2\u30a4\u30b3\u30f3\u306e\u5857\u308a\u306e\u900f\u660e\u5ea6": 154, "\u30a2\u30a4\u30b3\u30f3\u306ex\u5ea7\u6a19": 154, "\u30a2\u30a4\u30b3\u30f3\u306ey\u5ea7\u6a19": 154, "\u30a2\u30a4\u30b3\u30f3\u306e\u5e45": [], "\u30a2\u30a4\u30b3\u30f3\u306e\u9ad8\u3055": [], "apach": 154, "licens": 154, "version": 154, "0x7f750e8a79d0": [], "\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3": 146, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306fapysc\u306b\u304a\u3051\u308b\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306e\u5b9f\u88c5\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 154, "\u5404\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306f\u4e00\u756a\u4e0a\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u30d1\u30b9\u306b\u5b58\u5728\u3057\u307e\u3059": 154, "materialtimelineicon": 154, "\u5404\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306e\u540d\u524d\u306f": 154, "\u3068\u3044\u3046\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3068": 154, "\u3068\u3044\u3046\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u5171\u901a\u3067\u6301\u3061\u307e\u3059": 154, "\u5168\u3066\u306e\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306f": 154, "\u306a\u3069\u306e\u5ea7\u6a19\u3084\u30b9\u30bf\u30a4\u30eb\u306e\u8a2d\u5b9a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059": 154, "168": 154, "materialbuildicon": 154, "materialcheckcircleicon": 154, "material_icon_basic_usage_1": 154, "\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5c5e\u6027\u3092\u7528\u3044\u3066\u5ea7\u6a19\u3084\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 154, "build_icon": 154, "check_circle_icon": 154, "material_icon_basic_usage_2": 154, "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u306fapach": 154, "0\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 154, "svg\u30a2\u30a4\u30b3\u30f3\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u306e\u5b9f\u88c5": 154, "clamp": 146, "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u6700\u5c0f\u5024\u3068\u6700\u5927\u5024\u306e\u7bc4\u56f2\u5185\u3067\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 155, "\u3082\u3057\u5024\u304c": 155, "\u3067\u6700\u5c0f\u5024\u304c": 155, "\u306e\u5834\u5408": 155, "\u7d50\u679c\u306e\u5024\u306f": 155, "\u3067\u6700\u5927\u5024\u304c": 155, "\u3067\u6700\u5c0f\u5024\u3068\u6700\u5927\u5024\u304c": 155, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u305d\u306e\u307e\u307e": 155, "min_": 155, "max_": 155, "\u5404\u5f15\u6570\u3068\u8fd4\u5374\u5024\u306f": 155, "math_clamp_basic_usag": 155, "_valuetyp": 155, "\u6307\u5b9a\u3055\u308c\u305f\u6700\u5c0f\u5024\u3068\u6700\u5927\u5024\u306e\u7bc4\u56f2\u5185\u3067\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 155, "\u3082\u3057\u5024\u304c\u6700\u5c0f\u5024\u672a\u6e80\u3067\u3042\u308c\u3070\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u6700\u5c0f\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 155, "\u3082\u3057\u5024\u304c\u6700\u5927\u5024\u3088\u308a\u3082\u5927\u304d\u3051\u308c\u3070\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u6700\u5927\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 155, "\u5bfe\u8c61\u306e": 155, "\u6700\u5c0f\u5024": 155, "\u6700\u5927\u5024": 155, "\u6700\u5c0f\u5024\u3068\u6700\u5927\u5024\u7bc4\u56f2\u306e\u53cd\u6620\u5f8c\u306e\u5024": 155, "svgmask": 146, "\u30af\u30e9\u30b9\u3068\u95a2\u9023\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9": 146, "\u30af\u30e9\u30b9\u3068\u305d\u308c\u306b\u95a2\u9023\u3057\u305f": 205, "add_svg_masking_object": [], "\u30e1\u30bd\u30c3\u30c9\u3084": 205, "svg_mask": [], "\u5c5e\u6027\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 205, "\u30af\u30e9\u30b9\u306fsvg\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u306e\u30de\u30b9\u30af\u8a2d\u5b9a\u3092\u6271\u3044\u307e\u3059": 205, "\u91cd\u306a\u308a\u3042\u3063\u305f\u9818\u57df\u306e\u307f\u3092\u8868\u793a\u3059\u308b\u5f62\u3067svg\u306e": 205, "\u306b\u5225\u306esvg\u306e": 205, "\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 205, "\u4ee5\u4e0b\u306e\u30b9\u30c6\u30c3\u30d7\u3067\u30de\u30b9\u30af\u8a2d\u5b9a\u3092\u9069\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 205, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059": 205, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u4f5c\u6210\u3057\u305f": 205, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b": 205, "\u3092\u8ffd\u52a0\u3057\u307e\u3059": 205, "\u30de\u30b9\u30af\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u5bfe\u8c61\u306e": 205, "\u5c5e\u6027\u306b\u8a2d\u5b9a\u3057\u307e\u3059": 205, "mask": 205, "add": 205, "masking_object": 205, "svg_mask_basic_usag": 205, "svg\u306e\u30de\u30b9\u30af\u51e6\u7406\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 205, "graphics_bas": 205, "\u3053\u306e\u30de\u30b9\u30af\u306b\u30de\u30b9\u30af\u51e6\u7406\u7528\u306esvg\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8ffd\u52a0\u3057\u307e\u3059": 205, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u4ed6\u306esvg\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u30de\u30b9\u30af\u3059\u308b\u305f\u3081\u306b\u305d\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f7f\u7528\u3057\u307e\u3059": 205, "\u30de\u30b9\u30af\u3078\u8907\u6570\u306e\u30de\u30b9\u30af\u51e6\u7406\u7528\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 205, "\u8ffd\u52a0\u3059\u308b\u30de\u30b9\u30af\u51e6\u7406\u7528\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 205, "svg\u306e\u30de\u30b9\u30af\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 205, "\u3082\u3057\u30de\u30b9\u30af\u8a2d\u5b9a\u304c\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u3070": 205, "\u3053\u306e\u5c5e\u6027\u306e\u5024\u306fnone\u3068\u306a\u308a\u307e\u3059": 205, "\u30de\u30b9\u30af\u8a2d\u5b9a": 205, "\u30de\u30b9\u30af\u3092\u8a2d\u5b9a\u3059\u308b\u5bfe\u8c61\u306e": 205, "\u3068\u30de\u30b9\u30af\u7528\u306e": 205, "\u306f\u305d\u308c\u305e\u308c\u5206\u96e2\u3055\u308c\u305f\u5ea7\u6a19\u5024\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 205, "\u3082\u3057\u4e21\u65b9\u306e": 205, "\u306e\u5ea7\u6a19\u3092\u540c\u3058\u91cf\u3060\u3051\u5909\u66f4\u3057\u305f\u3044\u5834\u5408\u306b\u306f": 205, "\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u3092\u4f7f\u7528\u3059\u308b\u3068\u4fbf\u5229\u3067\u3059": 205, "\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u5ea7\u6a19\u306e\u307f\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u3067": 205, "\u30de\u30b9\u30af\u306e\u5ea7\u6a19\u3092\u7dad\u6301\u3057\u305f\u307e\u307e": 205, "\u306e\u5ea7\u6a19\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 205, "\u30de\u30b9\u30af\u51e6\u7406\u7528\u306e": 205, "\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u3078\u3068\u8ffd\u52a0\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093": 205, "need": 205, "svg_mask_sprite_container_exampl": 205, "0x7fc97c13cb80": 99, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u7701\u7565\u53ef\u80fd\u306a": 109, "target_coordinate_space_object": [109, 183], "\u8fd4\u5374\u5024\u306e\u57fa\u6e96\u3068\u306a\u308b\u5ea7\u6a19\u306f\u6307\u5b9a\u3055\u308c\u305f\u5f15\u6570\u306e": 109, "\u304b\u3089\u306e\u76f8\u5bfe\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 109, "\u3053\u306e\u8a2d\u5b9a\u306f\u89aa\u306e": 109, "\u306e\u5ea7\u6a19\u306a\u3069\u306e\u76f8\u5bfe\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u305f\u3044\u5834\u5408\u306a\u3069\u306b\u5f79\u306b\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 109, "\u5ea7\u6a19\u306f": 109, "\u3092\u57fa\u6e96\u3068\u3057\u305f\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 109, "\u5b9f\u8cea\u7684\u306b\u7d76\u5bfe\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 109, "\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306e\u4f8b": 109, "get_bounds_basic_usage_1": 109, "\u5f15\u6570\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306e\u4f8b": 109, "get_bounds_basic_usage_2": 109, "\u5ea7\u6a19\u306e\u57fa\u6e96\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [109, 183], "\u3082\u3057none\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": [109, 183], "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u30b9\u30c6\u30fc\u30b8\u3092\u57fa\u6e96\u3068\u3057\u305f\u30d0\u30a6\u30f3\u30c7\u30a3\u30f3\u30b0\u30dc\u30c3\u30af\u30b9\u306e\u30c7\u30fc\u30bf\u3092\u8fd4\u5374\u3057\u307e\u3059": [109, 183], "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": [109, 183], "\u3054\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u30d0\u30a6\u30f3\u30c7\u30a3\u30f3\u30b0\u30dc\u30c3\u30af\u30b9\u306e\u30c7\u30fc\u30bf\u3092\u8fd4\u5374\u3057\u307e\u3059": [109, 183]}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"\u30cf\u30f3\u30c9\u30e9\u306eoptions\u5f15\u6570\u306e\u578b\u306b\u3064\u3044\u3066": 0, "options\u5f15\u6570\u306b\u306f\u8f9e\u66f8\u306e\u578b\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 0, "typeddict\u3092\u4f7f\u3063\u305f\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306b\u3064\u3044\u3066": 0, "add_child": [1, 191], "remove_child": [1, 191], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [1, 3, 5, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 28, 30, 31, 32, 35, 38, 40, 42, 43, 45, 46, 47, 48, 50, 51, 54, 61, 66, 74, 76, 79, 80, 83, 84, 89, 90, 92, 93, 99, 108, 109, 110, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 150, 155, 156, 157, 158, 162, 165, 185, 187, 189, 194, 198, 199, 201, 202, 218, 219, 221, 225, 227, 228, 232], "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": [1, 26, 27, 29, 34, 37, 39, 44, 48, 49, 50, 51, 52, 53, 54, 56, 87, 88, 89, 91, 100, 114, 123, 124, 125, 126, 142, 161, 163, 226, 231], "\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u81ea\u52d5\u8ffd\u52a0\u306b\u3064\u3044\u3066": 1, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [1, 61, 79, 89, 100], "\u95a2\u9023\u8cc7\u6599": [1, 2, 33, 45, 47, 48, 49, 50, 51, 52, 53, 54, 59, 61, 66, 79, 85, 86, 88, 89, 94, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 111, 119, 135, 144, 159, 160, 161, 162, 163, 179, 181, 188, 189, 190, 220, 222, 231, 232], "api": [1, 3, 5, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 54, 56, 61, 66, 67, 79, 83, 87, 89, 92, 93, 100, 101, 102, 103, 104, 105, 106, 110, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 141, 142, 150, 161, 162, 163, 165, 186, 187, 189, 191, 194, 198, 199, 201, 202, 221, 225, 226, 228, 232], "add_debug_info_set": 2, "\u306e\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 2, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": [2, 3, 5, 9, 10, 11, 13, 14, 15, 17, 18, 20, 21, 23, 24, 25, 28, 30, 31, 32, 35, 38, 40, 42, 43, 45, 46, 47, 61, 66, 69, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 83, 84, 90, 92, 93, 99, 108, 109, 110, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 150, 155, 156, 157, 158, 162, 165, 185, 187, 189, 194, 198, 199, 201, 202, 207, 218, 219, 221, 225, 227, 228, 232], "\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 80, 82, 83, 84, 87, 88, 90, 91, 92, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 150, 151, 152, 153, 154, 155, 156, 157, 158, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233], "mypy\u8a2d\u5b9a\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": 2, "animationbase\u30af\u30e9\u30b9": 3, "start": [3, 226], "animationbas": [4, 5, 16], "\u30af\u30e9\u30b9": [4, 5, 8, 33, 58, 60, 62, 65, 67, 68, 81, 85, 96, 97, 98, 101, 102, 103, 104, 105, 106, 111, 144, 146, 147, 152, 153, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 186, 191, 192, 206, 207, 217, 220, 223, 229], "target": 4, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 4, "\u5c5e\u6027\u306e\u6982\u8981": [4, 41, 57, 143, 184, 196, 208, 209, 210, 211, 212, 213, 214, 215, 216], "\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306b\u3064\u3044\u3066": 4, "\u5c5e\u6027\u306eapi": [4, 8, 33, 41, 42, 57, 58, 69, 70, 71, 72, 73, 75, 77, 78, 81, 84, 90, 112, 113, 114, 115, 116, 118, 119, 120, 121, 122, 124, 127, 141, 143, 147, 160, 183, 184, 191, 192, 196, 205, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 222, 223, 224, 229], "animation_complet": [5, 188], "\u4ed6\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3059\u969b\u306e\u7279\u8a18\u4e8b\u9805": 5, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306edelay\u306e\u8a2d\u5b9a": 6, "\u8a2d\u5b9a\u6982\u8981": [6, 7], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306eduration\u8a2d\u5b9a": 7, "animationev": 8, "\u30af\u30e9\u30b9\u6982\u8981": [8, 60, 62, 65, 68, 95, 97, 101, 102, 103, 104, 105, 106, 107, 152, 153, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 182, 183, 205, 206, 217, 223, 229], "this\u5c5e\u6027": 8, "\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3": [8, 33], "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eapi": [8, 33, 58, 60, 62, 68, 81, 96, 97, 98, 144, 147, 152, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 191, 192, 205, 206, 207, 220, 222, 223, 224, 229], "thi": [8, 160, 223], "animation_fill_alpha": 9, "animation_fill_color": 10, "animation_finish": 11, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": 12, "apysc\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u51fa\u6765\u308b\u3053\u3068": 12, "\u5404\u5c5e\u6027\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u4f8b": 12, "\u30a4\u30fc\u30b8\u30f3\u30b0": 12, "x\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "y\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "x\u5ea7\u6a19\u3068y\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u9ad8\u3055\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u5857\u308a\u306e\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u7dda\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u7dda\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u7dda\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u534a\u5f84\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "animation_line_alpha": 13, "animation_line_color": 14, "animation_line_thick": 15, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3": 16, "animationbase\u30af\u30e9\u30b9\u306b\u95a2\u4fc2\u3057\u305f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u81ea\u8eab\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 16, "animation_mov": 17, "animation_parallel": 18, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306edurat": 18, "delai": [18, 222], "easing\u306e\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u306e\u7279\u8a18\u4e8b\u9805": 18, "animation_paus": 19, "animation_plai": 19, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": [19, 77], "animation_radiu": 20, "animation_reset": 21, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8fd4\u5374\u5024": 22, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fanimationbase\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 22, "animation_revers": 23, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [23, 178, 229], "animation_rotation_around_cent": 24, "animation_rotation_around_point": 25, "animation_scale_x_from_cent": 26, "animation_scale_y_from_cent": 26, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [26, 27, 29, 34, 37, 39, 44, 49, 91, 100, 125, 161, 163, 226], "animation_scale_x_from_point": 27, "animation_scale_y_from_point": 27, "animation_tim": 28, "animation_width": 29, "animation_height": 29, "ellips": [29, 30, 31, 97], "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": 29, "animation_x": 30, "circl": [30, 31, 60], "\u306e\u5404\u30af\u30e9\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [30, 31], "animation_i": 31, "append_js_express": 32, "arrai": [33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 146], "\u30af\u30e9\u30b9\u3068\u306f": 33, "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u30e1\u30bd\u30c3\u30c9": [33, 81], "fixed_value_typ": 33, "\u5f15\u6570\u306b\u3064\u3044\u3066": 33, "valu": [33, 58, 81, 108, 147, 192], "\u30af\u30e9\u30b9\u306e": [34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 57, 63, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 83, 84, 87, 89, 90, 91, 100, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 155, 156, 157, 158, 160, 183, 184, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 207, 218, 219, 221, 222, 224, 225, 226], "append": 34, "push": 34, "clear": [35, 128], "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 36, "extend": 37, "concat": 37, "index_of": 38, "insert": 39, "insert_at": 39, "join": 40, "last_valu": 41, "\u30d7\u30ed\u30d1\u30c6\u30a3": [41, 57, 143, 184], "length": [42, 84, 196], "len": 42, "\u95a2\u6570\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": 42, "pop": 43, "remov": 44, "remove_at": 44, "revers": 45, "slice": [46, 200], "sort": 47, "assert_arrays_equ": 48, "assert_arrays_not_equ": 48, "assert_equ": [48, 50, 51], "assert_not_equ": [48, 50, 51], "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [48, 50], "assert_defin": 49, "assert_undefin": 49, "assert_dicts_equ": 50, "assert_dicts_not_equ": 50, "assert_great": 52, "assert_greater_equ": 52, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [52, 53, 231], "\u306eapi": [52, 53, 56, 99, 117, 118, 119, 120, 140, 156, 157, 158, 185, 191, 231], "assert_less": 53, "assert_less_equ": 53, "assert_tru": 54, "assert_fals": 54, "javascript": 55, "\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u6319\u52d5": 55, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u540d\u306b\u3064\u3044\u3066": 55, "\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u7d50\u679c\u306b\u3064\u3044\u3066": 55, "\u7701\u7565\u53ef\u80fd\u306amsg\u5f15\u6570\u306b\u3064\u3044\u3066": 55, "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u767b\u9332\u3068\u30a4\u30d9\u30f3\u30c8\u306e\u767a\u751f": 56, "\u767a\u706b": 56, "\u5236\u5fa1": 56, "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u306e\u89e3\u9664": 56, "bind_custom_ev": 56, "trigger_custom_ev": 56, "unbind_custom_ev": 56, "unbind_custom_event_al": 56, "boolean": [58, 146], "\u30af\u30e9\u30b9\u306e\u6982\u8981": [58, 67, 85, 96, 98, 111, 144, 176, 186, 191, 192, 220], "bool\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306e\u7279\u8a18\u4e8b\u9805": 58, "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u5236\u5fa1": 58, "\u306e\u5024\u3092\u53cd\u8ee2\u3055\u305b\u308b": 58, "not_": 58, "\u5404\u5206\u5c90\u5236\u5fa1\u306e\u30af\u30e9\u30b9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5909\u6570\u5024\u306e\u5fa9\u5143\u8a2d\u5b9a": 59, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306ewith\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u5185\u306e\u30b3\u30fc\u30c9\u306e\u5b9f\u884c\u306b\u3064\u3044\u3066": 59, "\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5909\u6570\u306e\u5fa9\u5143\u8a2d\u5b9a": 59, "draw_circl": [60, 129], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [60, 182], "x\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "y\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "radius\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 60, "fill_color\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 166, 177, 178, 182, 206, 207, 229], "fill_alpha\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 166, 177, 178, 182, 206, 207, 229], "line_color\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 207, 229], "line_alpha\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 207, 229], "line_thickness\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 207, 229], "line_dot_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "line_dash_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "line_round_dot_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "line_dash_dot_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "rotation_around_center\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "set_rotation_around_point\u3068get_rotation_around_point\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "scale_x_from_center\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "scale_y_from_center\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "set_scale_x_from_point\u3068get_scale_x_from_point\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "set_scale_y_from_point\u3068get_scale_y_from_point\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "flip_x\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "flip_y\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "skew_x\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "skew_y\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "click": 61, "unbind_click": 61, "\u5168\u3066\u306e\u30af\u30ea\u30c3\u30af\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u3092\u89e3\u9664\u3059\u308b": 61, "unbind_click_al": 61, "color": [57, 62, 63, 65, 143, 146, 184], "\u53d7\u3051\u4ed8\u3051\u3089\u308c\u308b16\u9032\u6570\u306e\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9": 62, "colorless": 64, "\u5b9a\u6570": 64, "\u5b9a\u6570\u306e\u6982\u8981": 64, "\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5404\u8272": [65, 153], "contain": [66, 191], "continu": 67, "datetim": [68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 146], "dai": [69, 217, 218], "\u5c5e\u6027": [69, 70, 71, 72, 73, 75, 77, 78, 86, 113, 160, 196, 208, 209, 210, 211, 212, 213, 214, 215, 216, 223], "hour": 70, "millisecond": 71, "minut": 72, "month": 73, "now": 74, "\u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306eapi": 74, "second": 75, "set_month_end": 76, "weekday_j": 77, "weekday_pi": 77, "year": 78, "dblclick": 79, "unbind_dblclick": 79, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [79, 163], "unbind_dblclick_al": 79, "delet": 80, "dictionari": [81, 82, 83, 84, 146], "dictionary\u30af\u30e9\u30b9\u306e\u6982\u8981": 81, "\u5024\u306esetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 81, "\u5024\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 81, "getter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": 81, "\u5024\u306e\u524a\u9664\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 81, "\u30af\u30e9\u30b9\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a": 82, "get": 83, "len\u95a2\u6570\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": 84, "displayobject": [85, 86, 87, 88, 89, 90, 91, 146], "graphicsbas": [86, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 146], "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u5c5e\u6027\u306e\u6982\u8981": 86, "\u305d\u308c\u3089\u306e\u5c5e\u6027\u3067apysc\u304c\u3067\u304d\u308b\u3053\u3068": 86, "x": [86, 91], "y": [86, 91], "visibl": [86, 90], "\u56de\u8ee2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 86, "\u62e1\u7e2e\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 86, "\u53cd\u8ee2\u306e\u5404\u5c5e\u6027": 86, "\u6b6a\u307f\u306e\u5404\u5c5e\u6027": 86, "get_css": 87, "set_css": 87, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 87, "\u30af\u30e9\u30b9\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 88, "parent": 89, "remove_from_par": 89, "\u7d2f\u7b97\u4ee3\u5165\u6f14\u7b97": 91, "x\u5c5e\u6027\u306eapi": [91, 176], "y\u5c5e\u6027\u306eapi": [91, 176], "display_on_colaboratori": 92, "\u5fc5\u8981\u3068\u3055\u308c\u308b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306a\u3069\u306e\u5bfe\u5fdc": [92, 93], "display_on_jupyt": 93, "\u7279\u8a18\u4e8b\u9805": [93, 96, 98, 122, 138, 165, 189, 232], "\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": 94, "apysc\u306e\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3067\u304d\u308b\u3053\u3068": 94, "\u5857\u308a\u306e\u8a2d\u5b9a": 94, "\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 94, "\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 94, "\u30a4\u30fc\u30b8\u30f3\u30b0\u306eenum": 95, "\u30a4\u30fc\u30ba\u30a4\u30f3": 95, "eas": 95, "\u30a4\u30fc\u30ba\u30a2\u30a6\u30c8": 95, "out": 95, "\u30a4\u30fc\u30ba\u30a4\u30f3\u30a2\u30a6\u30c8": 95, "\u306e\u9055\u3044": 95, "\u30a4\u30fc\u30ba\u30a4\u30f3\u306e\u4f8b": 95, "\u30a4\u30fc\u30ba\u30a2\u30a6\u30c8\u306e\u4f8b": 95, "\u30a4\u30fc\u30ba\u30a4\u30f3\u30a2\u30a6\u30c8\u306e\u4f8b": 95, "elif": 96, "draw_ellips": [97, 133], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u306e\u7279\u8a18\u4e8b\u9805": 97, "width\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [97, 182], "height\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [97, 182], "els": 98, "enter_fram": 99, "timer": [99, 220, 221, 222, 224, 225, 226], "\u30af\u30e9\u30b9\u3068": 99, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u3069\u3061\u3089\u3092\u4f7f\u3046\u3079\u304d\u304b": 99, "event": 100, "prevent_default": 100, "stop_propag": 100, "forarrayindic": 101, "forarrayindicesandvalu": 102, "forarrayvalu": 103, "fordictkei": 104, "fordictkeysandvalu": 105, "fordictvalu": 106, "fp": 107, "enum": 107, "apysc": [108, 146, 234, 235], "\u306e\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u578b\u306e": 108, "getter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": 108, "setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": 108, "get_bound": [109, 183], "\u30e1\u30bd\u30c3\u30c9\u306eapi": [109, 151, 155, 183, 197, 200, 203, 204, 205, 217, 219, 227], "get_child_at": [110, 191], "graphic": [111, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146], "sprite": 111, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u7d4c\u7531\u3057\u305f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u547c\u3073\u51fa\u3057": 111, "\u5404\u8fd4\u5374\u5024\u306b\u3064\u3044\u3066": 111, "fill_alpha": [112, 127, 211], "fill_color": [113, 127, 212], "flip_x": 114, "flip_i": 114, "line_alpha": [115, 141], "line_color": [116, 141], "line_dash_dot_set": [117, 141], "\u8a2d\u5b9a\u306e\u524a\u9664": [117, 118, 119, 120], "delete_line_dash_dot_set": 117, "line_dash_set": [118, 141], "delete_line_dash_set": 118, "line_dot_set": [119, 141], "delete_line_dot_set": 119, "line_round_dot_set": [120, 141], "delete_line_round_dot_set": 120, "line_thick": [121, 141], "rotation_around_cent": 122, "rotation_around_point": 123, "get_rotation_around_point": 123, "set_rotation_around_point": 123, "scale_x_from_cent": 124, "scale_y_from_cent": 124, "get_scale_from_point": 125, "set_scale_from_point": 125, "get_scale_x_from_point": 125, "set_scale_x_from_point": 125, "get_scale_y_from_point": 125, "set_scale_y_from_point": 125, "skew_x": 126, "skew_i": 126, "properti": [126, 191], "begin_fil": 127, "\u5857\u308a\u306e\u8272\u306e\u8a2d\u5b9a": 127, "\u5857\u308a\u306e\u8272\u306e\u900f\u660e\u5ea6\u306e\u8a2d\u5b9a": 127, "\u8fd4\u5374\u5024": [129, 133, 136, 139], "draw_dash_dotted_lin": 130, "draw_dashed_lin": 131, "draw_dotted_lin": 132, "draw_lin": [134, 152], "\u7121\u8996\u3055\u308c\u308b\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 134, "line": [134, 152], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 134, "draw_path": 135, "draw_polygon": [136, 176, 177], "line_to": [136, 142, 178], "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u9055\u3044\u306b\u3064\u3044\u3066": 136, "draw_rect": [137, 182], "rectangl": [137, 182], "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [137, 140, 142], "draw_round_dotted_lin": 138, "draw_round_rect": 139, "draw_triangl": [140, 229], "triangl": [140, 229], "line_styl": 141, "\u7dda\u306e\u8272\u306e\u8a2d\u5b9a": 141, "\u7dda\u5e45\u306e\u8a2d\u5b9a": 141, "\u7dda\u306e\u900f\u660e\u5ea6\u306e\u8a2d\u5b9a": 141, "\u7dda\u7aef\u306e\u8a2d\u5b9a": 141, "\u7dda\u306e\u7e4b\u304e\u76ee\u306e\u8a2d\u5b9a": 141, "\u7dda\u306e\u70b9\u7dda\u8a2d\u5b9a": 141, "\u7dda\u306e\u7834\u7dda\u8a2d\u5b9a": 141, "\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u8a2d\u5b9a": 141, "\u7dda\u306e\u4e00\u70b9\u9396\u7dda\u306e\u8a2d\u5b9a": 141, "line_cap": 141, "line_joint": 141, "move_to": [142, 178], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u9023\u7d9a\u3057\u305f\u547c\u3073\u51fa\u3057": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u305f\u5f8c\u306e": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u547c\u3073\u51fa\u3057": 142, "polylin": [142, 178], "If": 144, "import": 145, "\u306e\u6163\u7fd2": 145, "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8": 146, "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u95a2\u9023\u30ea\u30f3\u30af": 146, "\u30af\u30a4\u30c3\u30af\u30b9\u30bf\u30fc\u30c8\u30ac\u30a4\u30c9": [146, 179], "\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u5404\u30af\u30e9\u30b9": 146, "\u51fa\u529b\u51e6\u7406": 146, "\u5b50\u8981\u7d20\u95a2\u4fc2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 146, "apysc\u306e\u57fa\u672c\u7684\u306a\u5404\u30c7\u30fc\u30bf\u30af\u30e9\u30b9": 146, "int": [146, 147, 148, 149, 150, 151], "number": [146, 147, 148, 149, 150, 151], "string": [146, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204], "\u30af\u30e9\u30b9\u3068\u5404\u5b9a\u6570\u5024": 146, "\u30af\u30e9\u30b9\u3068\u5404\u5b9a\u6570": 146, "\u306e\u5404\u30af\u30e9\u30b9": 146, "\u5404\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u306e\u30af\u30e9\u30b9": 146, "svg": 146, "\u30c6\u30ad\u30b9\u30c8": 146, "\u5ea7\u6a19": 146, "\u30b5\u30a4\u30ba\u7b49\u306e\u30c7\u30fc\u30bf\u306e\u5404\u30af\u30e9\u30b9": 146, "\u30a4\u30d9\u30f3\u30c8\u306e\u5171\u901a\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 146, "mouseev": [146, 159, 160], "\u30af\u30e9\u30b9\u3068\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a": 146, "\u6761\u4ef6\u5206\u5c90\u306e\u5236\u5fa1": 146, "\u30eb\u30fc\u30d7": 146, "\u30bf\u30a4\u30de\u30fc\u3068enter": 146, "frame": 146, "timedelta": [146, 217, 218, 219], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 146, "\u6570\u5b66": 146, "\u305d\u306e\u4ed6\u306e\u64cd\u4f5c\u95a2\u4fc2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 146, "\u30c7\u30d0\u30c3\u30b0": 146, "\u30c6\u30b9\u30c8": 146, "float\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306e\u7279\u8a18\u4e8b\u9805": 147, "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 147, "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u8a08\u7b97\u5236\u5fa1": 148, "\u5171\u901a\u306e\u6319\u52d5": [148, 149], "\u52a0\u7b97": [148, 193], "\u6e1b\u7b97": 148, "\u4e57\u7b97": [148, 193], "\u9664\u7b97": 148, "\u5207\u308a\u6368\u3066\u9664\u7b97": 148, "\u5270\u4f59": 148, "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u6bd4\u8f03\u5236\u5fa1": 149, "\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 149, "\u975e\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 149, "\u672a\u6e80\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 149, "\u4ee5\u4e0b\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 149, "\u8d85\u904e\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 149, "\u4ee5\u4e0a\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 149, "to_fix": 150, "\u3084\u4ed6\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": 152, "math": [155, 156, 157, 158], "max": 156, "min": 157, "trunc": 158, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": 159, "\u3053\u308c\u3089\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067apysc\u304c\u51fa\u6765\u308b\u3053\u3068": 159, "\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u4f8b": 159, "\u57fa\u672c\u7684\u306a\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 160, "\u57fa\u672c\u7684\u306a\u30a4\u30d9\u30f3\u30c8\u767b\u9332\u51e6\u7406\u306e\u4f7f\u3044\u65b9": 160, "\u57fa\u672c\u7684\u306a\u30a4\u30d9\u30f3\u30c8\u89e3\u9664\u51e6\u7406\u306e\u4f7f\u3044\u65b9": 160, "\u5168\u3066\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3059\u308b": 160, "\u30cf\u30f3\u30c9\u30e9\u306e\u5f15\u6570\u306e\u540d\u524d\u3068\u578b": 160, "\u30af\u30e9\u30b9\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u578b\u306e\u8a2d\u5b9a": 160, "stage_x": 160, "stage_i": 160, "local_x": 160, "local_i": 160, "mousedown": 161, "mouseup": 161, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": 161, "\u89e3\u9664\u7528\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [161, 162, 163], "unbind_mousedown": 161, "unbind_mousedown_al": 161, "unbind_mouseup": 161, "unbind_mouseup_al": 161, "mousemov": 162, "unbind_mousemov": 162, "unbind_mousemove_al": 162, "mouseov": 163, "mouseout": 163, "unbind_mouseov": 163, "unbind_mouseover_al": 163, "unbind_mouseout": 163, "unbind_mouseout_al": 163, "num_children": [165, 191], "path": 166, "pathmoveto": [166, 174], "\u30af\u30e9\u30b9\u8a2d\u5b9a": 166, "pathlineto": [166, 173], "pathhorizont": [166, 172], "pathvert": [166, 175], "pathclos": [166, 171], "pathbezier2d": [166, 167], "pathbezier2dcontinu": [166, 168], "pathbezier3d": [166, 169], "pathbezier3dcontinu": [166, 170], "\u76f8\u5bfe\u5ea7\u6a19\u8a2d\u5b9a": [167, 168, 169, 170, 172, 173, 174, 175], "point2d": 176, "x\u3068y\u5ea7\u6a19\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 176, "x\u3068y\u5ea7\u6a19\u306esetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 176, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u304a\u3051\u308b\u4f7f\u7528\u4f8b": 176, "polygon": 177, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": 177, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 179, "stage\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057": 179, "html\u3092\u51fa\u529b\u3059\u308b": 179, "sprite\u306e\u30b3\u30f3\u30c6\u30ca\u3068\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3059\u308b": 179, "rang": 180, "\u95a2\u6570": 180, "\u95a2\u6570\u6982\u8981": 180, "\u95a2\u6570\u306eapi": 180, "\u63a8\u5968\u3055\u308c\u308b\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306e\u30c1\u30a7\u30c3\u30af\u8a2d\u5b9a": 181, "\u63a8\u5968\u3055\u308c\u308b\u578b\u30c1\u30a7\u30c3\u30af\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u3064\u3044\u3066": 181, "mypy\u3067\u7121\u8996\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u3044\u308b\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9": 181, "ellipse_width\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 182, "ellipse_height\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 182, "rectanglegeom": 183, "\u5404\u5c5e\u6027\u306e\u5ea7\u6a19": 183, "left_x": 183, "center_x": 183, "right_x": 183, "top_i": 183, "center_i": 183, "bottom_i": 183, "width": 183, "height": 183, "remove_children": 185, "return": 186, "save_overall_html": 187, "html\u3092\u6700\u5c0f\u5316\u3059\u308b": 187, "javascript\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9\u306e\u8a2d\u5b9a\u3068\u51fa\u529b\u30b9\u30ad\u30c3\u30d7\u306e\u8a2d\u5b9a": 187, "html_file_nam": 187, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u3066html\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3092\u5909\u66f4\u3059\u308b": 187, "embed_js_lib": 187, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3067javascript\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u30921\u3064\u306ehtml\u30d5\u30a1\u30a4\u30eb\u306b\u307e\u3068\u3081\u308b": 187, "verbos": 187, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6a19\u6e96\u51fa\u529b\u306e\u8a2d\u5b9a\u3092\u5909\u66f4\u3059\u308b": 187, "\u9023\u7d9a\u3057\u305f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a": 188, "\u540c\u3058\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u9023\u7d9a\u3057\u3066\u547c\u3073\u51fa\u3059": 188, "\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a": 188, "set_debug_mod": 189, "sprite\u30af\u30e9\u30b9": 190, "sprite\u3068\u306f": 190, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u81ea\u52d5\u8ffd\u52a0\u306b\u95a2\u3059\u308b\u6ce8\u610f\u70b9": 190, "graphics\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": 190, "displayobject\u306e\u8907\u6570\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u79fb\u52d5\u306b\u3064\u3044\u3066": 190, "sprite\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bfapi": 190, "stage": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u4f5c\u6210": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u80cc\u666f\u8272\u8a2d\u5b9a": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u30b5\u30a4\u30ba\u8a2d\u5b9a": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u8981\u7d20\u306eid\u8a2d\u5b9a": 191, "get_stag": 191, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 191, "stage_elem_id": 191, "\u30af\u30e9\u30b9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 192, "\u30af\u30e9\u30b9\u306e\u52a0\u7b97\u3068\u4e57\u7b97\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": 193, "apply_max_num_of_decimal_plac": 194, "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": 195, "\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8fd4\u5374\u5024\u306e\u578b": 195, "\u53d7\u3051\u4ed8\u3051\u3089\u308c\u308b\u53f3\u5074\u306e\u5024\u306e\u578b": 195, "\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03": 195, "\u975e\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03": 195, "\u672a\u6e80\u3082\u3057\u304f\u306f\u8d85\u904e\u6761\u4ef6\u306e\u6bd4\u8f03": 195, "\u7d75\u6587\u5b57\u306b\u95a2\u3059\u308b\u7279\u8a18\u4e8b\u9805": 196, "lstrip": 198, "rstrip": 199, "split": 201, "strip": 202, "svgtext": [206, 207], "\u30c6\u30ad\u30b9\u30c8\u306ey\u5ea7\u6a19\u306e\u57fa\u6e96\u70b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": 206, "text": [206, 207], "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [206, 207], "font_siz": [206, 207, 213], "font_famili": [206, 207], "lead": 206, "align": 206, "bold": [206, 207, 210], "ital": [206, 207, 214], "\u62e1\u7e2e\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": 206, "svgtextspan": 207, "\u6539\u884c\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": 207, "delta_x": 207, "delta_i": 207, "create_with_svg_text_span": 207, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306eapi": [63, 207], "total_second": [217, 219], "timer_complet": 221, "\u8a2d\u5b9a": [222, 224], "\u5f15\u6570\u306e\u6982\u8981": [222, 224, 233], "\u5f15\u6570\u306bfps\u306eenum\u306e\u5024\u3092\u8a2d\u5b9a\u3059\u308b": 222, "timerev": 223, "repeat_count": 224, "reset": 225, "stop": 226, "to_str": 227, "trace": 228, "print\u95a2\u6570\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": 228, "x1\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 229, "y1\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 229, "x2\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 229, "y2\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 229, "x3\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 229, "y3\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 229, "x1": 229, "y1": 229, "x2": 229, "y2": 229, "x3": 229, "y3": 229, "true_": 230, "false_": 230, "\u306e\u5404\u5b9a\u6570": 230, "\u5404\u5b9a\u6570\u306e\u6982\u8981": 230, "\u521d\u671f\u5316\u30bf\u30a4\u30df\u30f3\u30b0\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [], "unbind_enter_fram": 231, "unbind_enter_frame_al": 231, "unset_debug_mod": 232, "variable_name_suffix": 233, "\u306e\u5f15\u6570\u8a2d\u5b9a": 233, "\u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u73fe\u5728\u306e\u5b9f\u88c5\u3067\u3067\u304d\u308b\u3053\u3068": 234, "python\u3092\u4f7f\u3063\u3066\u66f8\u304d": 234, "\u305d\u308c\u3092html\u3078\u51fa\u529b": 234, "\u3082\u3057\u304f\u306fjupyter\u4e0a\u3067\u5229\u7528\u3059\u308b": 234, "\u69d8\u3005\u306a\u7a2e\u985e\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u63cf\u753b": 234, "\u5404\u7a2e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a": 234, "\u30bf\u30a4\u30de\u30fc\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 234, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3088\u308b\u5404\u5c5e\u6027\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 234, "\u4f55\u6545": 235, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30c7\u30fc\u30bf\u578b\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u306e\u304b": 235, "\u3067\u306fpython\u3092javascript\u3078\u3068\u5909\u63db\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a": 235, "\u5909\u6570\u306e\u5909\u5316\u3092\u8ffd\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 235, "\u53c2\u8003\u6587\u732e": [65, 153], "\u53c2\u8003\u8cc7\u6599": [65, 153], "materialdesigncolor": 153, "zfill": 204, "\u30e1\u30bd\u30c3\u30c9": [151, 197, 200, 203, 204], "\u30e1\u30bd\u30c3\u30c9\u6982\u8981": [151, 197, 200, 203, 204], "from_rgb": 63, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9": 63, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u6982\u8981": 63, "to_hex": 151, "ap": 151, "number\u578b\u306e\u5024\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": 151, "lower": 197, "upper": 203, "red_color": 184, "green_color": 143, "blue_color": 57, "multilinetext": 164, "\u30c6\u30ad\u30b9\u30c8\u306e": [210, 211, 212, 213, 214, 215, 216], "text_align": 208, "csstextalign": 208, "left\u306e\u4f8b": [208, 209], "center\u306e\u4f8b": [208, 209], "right\u306e\u4f8b": [208, 209], "justify\u306e\u4f8b": [208, 209], "text_align_last": 209, "csstextalignlast": 209, "auto\u306e\u4f8b": 209, "underlin": 216, "line_height": 215, "\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3": 146, "\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u30a2\u30a4\u30b3\u30f3": [], "\u5b9f\u88c5\u306e\u6982\u8981": [], "\u5404\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eapi": 154, "\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3": 154, "\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306e\u30e9\u30a4\u30bb\u30f3\u30b9": 154, "clamp": 155, "\u30de\u30b9\u30af": 146, "svgmask": 205, "\u30af\u30e9\u30b9\u3068\u95a2\u9023\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9": 205, "add_svg_masking_object": 205, "svg_mask": 205, "displayobject\u3068\u30de\u30b9\u30af\u306e\u5ea7\u6a19\u3092\u540c\u671f\u3055\u305b\u305f\u3044\u5834\u5408\u306e\u30b1\u30fc\u30b9": 205}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx": 58}, "alltitles": {"\u30cf\u30f3\u30c9\u30e9\u306eoptions\u5f15\u6570\u306e\u578b\u306b\u3064\u3044\u3066": [[0, "options"]], "options\u5f15\u6570\u306b\u306f\u8f9e\u66f8\u306e\u578b\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [[0, "id1"]], "TypedDict\u3092\u4f7f\u3063\u305f\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306b\u3064\u3044\u3066": [[0, "typeddict"]], "add_child \u3068 remove_child \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[1, "add-child-remove-child"]], "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": [[1, "id1"], [26, "id1"], [27, "id1"], [29, "id1"], [34, "id1"], [37, "id1"], [39, "id1"], [44, "id1"], [48, "id1"], [49, "id1"], [50, "id1"], [51, "id1"], [52, "id1"], [53, "id1"], [54, "id1"], [56, "id2"], [87, "id1"], [88, "id1"], [89, "id1"], [91, "id1"], [100, "id1"], [114, "id1"], [123, "id1"], [124, "id1"], [125, "id1"], [126, "id1"], [142, "id1"], [161, "id1"], [163, "id1"], [226, "id1"], [231, "id1"]], "\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u81ea\u52d5\u8ffd\u52a0\u306b\u3064\u3044\u3066": [[1, "id2"]], "remove_child \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[1, "remove-child"]], "add_child \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[1, "add-child"]], "\u95a2\u9023\u8cc7\u6599": [[1, "id3"], [2, "id3"], [33, "id4"], [45, "id3"], [47, "id3"], [48, "id2"], [49, "id2"], [50, "id2"], [51, "id2"], [52, "id2"], [53, "id2"], [54, "id2"], [59, "id3"], [61, "id2"], [66, "id3"], [79, "id2"], [85, "id2"], [86, "id5"], [88, "id3"], [89, "id2"], [94, "id5"], [96, "id4"], [98, "id4"], [99, "id3"], [101, "id3"], [102, "id3"], [103, "id3"], [104, "id3"], [105, "id3"], [106, "id3"], [107, "id3"], [111, "id3"], [119, "id4"], [135, "id3"], [144, "id3"], [159, "id2"], [160, "id6"], [161, "id2"], [162, "id2"], [163, "id2"], [179, "id3"], [181, "id3"], [188, "id3"], [189, "id4"], [190, "id3"], [220, "id3"], [222, "id3"], [231, "id3"], [232, "id4"]], "add_child API": [[1, "add-child-api"], [191, "add-child-api"]], "remove_child API": [[1, "remove-child-api"], [191, "remove-child-api"]], "add_debug_info_setting \u306e\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[2, "add-debug-info-setting"]], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": [[2, "id1"], [3, "id1"], [5, "id1"], [9, "id1"], [10, "id1"], [11, "id1"], [13, "id1"], [14, "id1"], [15, "id1"], [17, "id1"], [18, "id1"], [20, "id1"], [21, "id1"], [23, "id1"], [24, "id1"], [25, "id1"], [28, "id1"], [30, "id1"], [31, "id1"], [32, "id1"], [35, "id1"], [38, "id1"], [40, "id1"], [42, "id1"], [43, "id1"], [45, "id1"], [46, "id1"], [47, "id1"], [61, "id1"], [66, "id1"], [69, "id1"], [70, "id1"], [71, "id1"], [72, "id1"], [73, "id1"], [74, "id1"], [75, "id1"], [76, "id1"], [78, "id1"], [79, "id1"], [80, "id1"], [83, "id1"], [84, "id1"], [90, "id1"], [92, "id1"], [93, "id1"], [99, "id1"], [108, "id1"], [110, "id1"], [112, "id1"], [113, "id1"], [115, "id1"], [116, "id1"], [117, "id1"], [118, "id1"], [119, "id1"], [120, "id1"], [121, "id1"], [122, "id1"], [127, "id1"], [128, "id1"], [129, "id1"], [130, "id1"], [131, "id1"], [132, "id1"], [133, "id1"], [134, "id1"], [135, "id1"], [136, "id1"], [137, "id1"], [138, "id1"], [139, "id1"], [140, "id1"], [141, "id1"], [150, "id1"], [155, "id1"], [156, "id1"], [157, "id1"], [158, "id1"], [162, "id1"], [165, "id1"], [185, "id1"], [187, "id1"], [189, "id1"], [194, "id1"], [198, "id1"], [199, "id1"], [201, "id1"], [202, "id1"], [218, "id1"], [219, "id1"], [221, "id1"], [225, "id1"], [227, "id1"], [228, "id1"], [232, "id1"], [109, "id1"], [207, "id1"]], "\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[2, "id2"], [3, "id2"], [4, "id2"], [5, "id2"], [6, "id2"], [7, "id2"], [8, "id2"], [9, "id2"], [10, "id2"], [11, "id2"], [13, "id2"], [14, "id2"], [15, "id2"], [17, "id2"], [18, "id2"], [19, "id2"], [20, "id2"], [21, "id2"], [22, "id2"], [23, "id2"], [24, "id2"], [25, "id2"], [26, "id2"], [27, "id2"], [28, "id2"], [29, "id2"], [30, "id2"], [31, "id2"], [32, "id2"], [34, "id2"], [35, "id2"], [36, "id1"], [37, "id2"], [38, "id2"], [39, "id2"], [40, "id2"], [41, "id2"], [42, "id2"], [43, "id2"], [44, "id2"], [45, "id2"], [46, "id2"], [47, "id2"], [48, "id3"], [49, "id3"], [50, "id3"], [51, "id3"], [52, "id3"], [53, "id3"], [54, "id3"], [56, "id3"], [57, "id2"], [60, "id2"], [62, "id2"], [63, "id2"], [64, "id2"], [65, "id2"], [66, "id2"], [67, "id2"], [68, "id2"], [69, "id2"], [70, "id2"], [71, "id2"], [72, "id2"], [73, "id2"], [74, "id2"], [75, "id2"], [76, "id2"], [77, "id2"], [78, "id2"], [80, "id2"], [82, "id1"], [83, "id2"], [84, "id2"], [87, "id2"], [88, "id2"], [90, "id2"], [91, "id2"], [92, "id3"], [93, "id4"], [95, "id2"], [96, "id2"], [97, "id2"], [98, "id2"], [99, "id2"], [101, "id2"], [102, "id2"], [103, "id2"], [104, "id2"], [105, "id2"], [106, "id2"], [107, "id2"], [110, "id2"], [112, "id2"], [113, "id2"], [114, "id2"], [115, "id2"], [116, "id2"], [117, "id2"], [118, "id2"], [119, "id2"], [120, "id2"], [121, "id2"], [122, "id2"], [123, "id2"], [124, "id2"], [125, "id2"], [127, "id2"], [128, "id2"], [129, "id2"], [130, "id2"], [131, "id2"], [132, "id2"], [133, "id2"], [134, "id2"], [135, "id2"], [136, "id2"], [137, "id2"], [138, "id2"], [139, "id2"], [140, "id2"], [141, "id2"], [142, "id2"], [143, "id2"], [144, "id2"], [150, "id2"], [151, "id2"], [152, "id2"], [153, "id2"], [154, "id2"], [155, "id2"], [156, "id2"], [157, "id2"], [158, "id2"], [162, "id3"], [164, "id2"], [165, "id3"], [166, "id2"], [167, "id2"], [168, "id2"], [169, "id2"], [170, "id2"], [171, "id2"], [172, "id2"], [173, "id2"], [174, "id2"], [175, "id2"], [176, "id2"], [177, "id2"], [178, "id2"], [180, "id2"], [182, "id2"], [184, "id2"], [185, "id2"], [186, "id2"], [187, "id2"], [189, "id3"], [194, "id2"], [196, "id2"], [197, "id2"], [198, "id2"], [199, "id2"], [200, "id2"], [201, "id2"], [202, "id2"], [203, "id2"], [204, "id2"], [205, "id2"], [208, "id2"], [209, "id2"], [210, "id2"], [211, "id2"], [212, "id2"], [213, "id2"], [214, "id2"], [215, "id2"], [216, "id2"], [217, "id2"], [218, "id2"], [219, "id2"], [220, "id2"], [221, "id2"], [222, "id2"], [223, "id2"], [224, "id2"], [225, "id2"], [226, "id2"], [227, "id2"], [228, "id2"], [229, "id2"], [230, "id2"], [231, "id2"], [232, "id3"], [233, "id2"], [109, "id2"], [183, "id2"], [206, "id2"], [207, "id2"]], "mypy\u8a2d\u5b9a\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[2, "mypy"]], "AnimationBase\u30af\u30e9\u30b9 start \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[3, "animationbase-start"]], "start API": [[3, "start-api"], [226, "start-api"]], "AnimationBase \u30af\u30e9\u30b9 target \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[4, "animationbase-target"]], "\u5c5e\u6027\u306e\u6982\u8981": [[4, "id1"], [41, "id1"], [57, "id1"], [143, "id1"], [184, "id1"], [196, "id1"], [208, "id1"], [209, "id1"], [210, "id1"], [211, "id1"], [212, "id1"], [213, "id1"], [214, "id1"], [215, "id1"], [216, "id1"]], "\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306b\u3064\u3044\u3066": [[4, "id3"]], "target \u5c5e\u6027\u306eAPI": [[4, "target-api"]], "AnimationBase \u30af\u30e9\u30b9 animation_complete \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[5, "animationbase-animation-complete"]], "\u4ed6\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3059\u969b\u306e\u7279\u8a18\u4e8b\u9805": [[5, "id3"]], "animation_complete API": [[5, "animation-complete-api"]], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306edelay\u306e\u8a2d\u5b9a": [[6, "delay"]], "\u8a2d\u5b9a\u6982\u8981": [[6, "id1"], [7, "id1"]], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306eduration\u8a2d\u5b9a": [[7, "duration"]], "AnimationEvent \u30af\u30e9\u30b9": [[8, "animationevent"]], "\u30af\u30e9\u30b9\u6982\u8981": [[8, "id1"], [60, "id1"], [62, "id1"], [65, "id1"], [68, "id1"], [95, "id1"], [97, "id1"], [101, "id1"], [102, "id1"], [103, "id1"], [104, "id1"], [105, "id1"], [106, "id1"], [107, "id1"], [152, "id1"], [153, "id1"], [164, "id1"], [166, "id1"], [167, "id1"], [168, "id1"], [169, "id1"], [170, "id1"], [171, "id1"], [172, "id1"], [173, "id1"], [174, "id1"], [175, "id1"], [177, "id1"], [178, "id1"], [182, "id1"], [205, "id1"], [217, "id1"], [223, "id1"], [229, "id1"], [183, "id1"], [206, "id1"]], "this\u5c5e\u6027": [[8, "this"]], "\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3": [[8, "id3"], [33, "id3"]], "AnimationEvent \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[8, "animationevent-api"]], "this \u5c5e\u6027\u306eAPI": [[8, "this-api"], [160, "this-api"], [223, "this-api"]], "animation_fill_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[9, "animation-fill-alpha"]], "animation_fill_alpha API": [[9, "animation-fill-alpha-api"]], "animation_fill_color \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[10, "animation-fill-color"]], "animation_fill_color API": [[10, "animation-fill-color-api"]], "animation_finish \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[11, "animation-finish"]], "animation_finish API": [[11, "animation-finish-api"]], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": [[12, "id1"]], "apysc\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u51fa\u6765\u308b\u3053\u3068": [[12, "apysc"]], "\u5404\u5c5e\u6027\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u4f8b": [[12, "id2"]], "\u30a4\u30fc\u30b8\u30f3\u30b0": [[12, "id3"]], "X\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "x"]], "Y\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "y"]], "X\u5ea7\u6a19\u3068Y\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "xy"]], "\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id4"]], "\u9ad8\u3055\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id5"]], "\u5857\u308a\u306e\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id6"]], "\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id7"]], "\u7dda\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id8"]], "\u7dda\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id9"]], "\u7dda\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id10"]], "\u534a\u5f84\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id11"]], "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id12"]], "\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id13"]], "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id14"]], "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id15"]], "\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id16"]], "\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id17"]], "animation_line_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[13, "animation-line-alpha"]], "animation_line_alpha API": [[13, "animation-line-alpha-api"]], "animation_line_color \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[14, "animation-line-color"]], "animation_line_color API": [[14, "animation-line-color-api"]], "animation_line_thickness \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[15, "animation-line-thickness"]], "animation_line_thickness API": [[15, "animation-line-thickness-api"]], "AnimationBase \u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3": [[16, "animationbase"]], "AnimationBase\u30af\u30e9\u30b9\u306b\u95a2\u4fc2\u3057\u305f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u81ea\u8eab\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": [[16, "id1"]], "animation_move \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[17, "animation-move"]], "animation_move API": [[17, "animation-move-api"]], "animation_parallel \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[18, "animation-parallel"]], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306eduration\u3001delay\u3001easing\u306e\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u306e\u7279\u8a18\u4e8b\u9805": [[18, "durationdelayeasing"]], "animation_parallel API": [[18, "animation-parallel-api"]], "animation_pause \u3068 animation_play \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[19, "animation-pause-animation-play"]], "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": [[19, "id1"], [77, "id1"]], "animation_pause API": [[19, "animation-pause-api"]], "animation_play API": [[19, "animation-play-api"]], "animation_radius \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[20, "animation-radius"]], "animation_radius API": [[20, "animation-radius-api"]], "animation_reset \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[21, "animation-reset"]], "animation_reset API": [[21, "animation-reset-api"]], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8fd4\u5374\u5024": [[22, "id1"]], "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fAnimationBase\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": [[22, "animationbase"]], "animation_reverse \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[23, "animation-reverse"]], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[23, "id3"]], "animation_reverse API": [[23, "animation-reverse-api"]], "animation_rotation_around_center \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[24, "animation-rotation-around-center"]], "animation_rotation_around_center API": [[24, "animation-rotation-around-center-api"]], "animation_rotation_around_point \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[25, "animation-rotation-around-point"]], "animation_rotation_around_point API": [[25, "animation-rotation-around-point-api"]], "animation_scale_x_from_center \u3068 animation_scale_y_from_center \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[26, "animation-scale-x-from-center-animation-scale-y-from-center"]], "animation_scale_x_from_center API": [[26, "animation-scale-x-from-center-api"]], "animation_scale_y_from_center API": [[26, "animation-scale-y-from-center-api"]], "animation_scale_x_from_point \u3068 animation_scale_y_from_point \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[27, "animation-scale-x-from-point-animation-scale-y-from-point"]], "animation_time \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[28, "animation-time"]], "animation_time API": [[28, "animation-time-api"]], "animation_width \u3068 animation_height \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[29, "animation-width-animation-height"]], "Ellipse \u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [[29, "ellipse"]], "animation_width API": [[29, "animation-width-api"]], "animation_height API": [[29, "animation-height-api"]], "animation_x \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[30, "animation-x"]], "Circle \u3068 Ellipse \u306e\u5404\u30af\u30e9\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[30, "circle-ellipse"], [31, "circle-ellipse"]], "animation_x API": [[30, "animation-x-api"]], "animation_y \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[31, "animation-y"]], "animation_y API": [[31, "animation-y-api"]], "append_js_expression \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[32, "append-js-expression"]], "append_js_expression API": [[32, "append-js-expression-api"]], "Array \u30af\u30e9\u30b9": [[33, "array"], [146, "array"]], "Array \u30af\u30e9\u30b9\u3068\u306f": [[33, "id1"]], "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u30e1\u30bd\u30c3\u30c9": [[33, "id2"], [81, "id2"]], "fixed_value_type \u5f15\u6570\u306b\u3064\u3044\u3066": [[33, "fixed-value-type"]], "Array \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[33, "array-api"]], "value \u5c5e\u6027\u306eAPI": [[33, "value-api"], [58, "value-api"], [81, "value-api"], [147, "value-api"], [192, "value-api"]], "Array \u30af\u30e9\u30b9\u306e append \u3068 push \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[34, "array-append-push"]], "append API": [[34, "append-api"]], "push API": [[34, "push-api"]], "Array \u30af\u30e9\u30b9\u306e clear \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[35, "array-clear"]], "Array \u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[36, "array"]], "Array \u30af\u30e9\u30b9\u306e extend \u3068 concat \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[37, "array-extend-concat"]], "extend API": [[37, "extend-api"]], "concat API": [[37, "concat-api"]], "Array \u30af\u30e9\u30b9\u306e index_of \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[38, "array-index-of"]], "index_of API": [[38, "index-of-api"]], "Array \u30af\u30e9\u30b9\u306e insert \u3068 insert_at \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[39, "array-insert-insert-at"]], "insert API": [[39, "insert-api"]], "insert_at API": [[39, "insert-at-api"]], "Array \u30af\u30e9\u30b9\u306e join \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[40, "array-join"]], "join API": [[40, "join-api"]], "Array \u30af\u30e9\u30b9\u306e last_value \u30d7\u30ed\u30d1\u30c6\u30a3": [[41, "array-last-value"]], "last_value \u5c5e\u6027\u306eAPI": [[41, "last-value-api"]], "Array \u30af\u30e9\u30b9\u306e length \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[42, "array-length"]], "len()\u95a2\u6570\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [[42, "len"]], "length \u5c5e\u6027\u306eAPI": [[42, "length-api"], [84, "length-api"], [196, "length-api"]], "Array \u30af\u30e9\u30b9\u306e pop \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[43, "array-pop"]], "pop API": [[43, "pop-api"]], "Array \u30af\u30e9\u30b9\u306e remove \u3068 remove_at \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[44, "array-remove-remove-at"]], "remove API": [[44, "remove-api"]], "remove_at API": [[44, "remove-at-api"]], "Array \u30af\u30e9\u30b9\u306e reverse \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[45, "array-reverse"]], "reverse API": [[45, "reverse-api"]], "Array \u30af\u30e9\u30b9\u306e slice \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[46, "array-slice"]], "slice API": [[46, "slice-api"]], "Array \u30af\u30e9\u30b9\u306e sort \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[47, "array-sort"]], "sort API": [[47, "sort-api"]], "assert_arrays_equal \u3068 assert_arrays_not_equal \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[48, "assert-arrays-equal-assert-arrays-not-equal"]], "assert_equal \u3068 assert_not_equal \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [[48, "assert-equal-assert-not-equal"], [50, "assert-equal-assert-not-equal"]], "assert_arrays_equal API": [[48, "assert-arrays-equal-api"]], "assert_arrays_not_equal API": [[48, "assert-arrays-not-equal-api"]], "assert_defined \u3068 assert_undefined \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[49, "assert-defined-assert-undefined"]], "assert_defined API": [[49, "assert-defined-api"]], "assert_undefined API": [[49, "assert-undefined-api"]], "assert_dicts_equal \u3068 assert_dicts_not_equal \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[50, "assert-dicts-equal-assert-dicts-not-equal"]], "assert_dicts_equal API": [[50, "assert-dicts-equal-api"]], "assert_dicts_not_equal API": [[50, "assert-dicts-not-equal-api"]], "assert_equal \u3068 assert_not_equal \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[51, "assert-equal-assert-not-equal"]], "assert_equal API": [[51, "assert-equal-api"]], "assert_not_equal API": [[51, "assert-not-equal-api"]], "assert_greater \u3068 assert_greater_equal \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[52, "assert-greater-assert-greater-equal"]], "assert_greater \u306eAPI": [[52, "assert-greater-api"]], "assert_greater_equal \u306eAPI": [[52, "assert-greater-equal-api"]], "assert_less \u3068 assert_less_equal \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[53, "assert-less-assert-less-equal"]], "assert_less \u306eAPI": [[53, "assert-less-api"]], "assert_less_equal \u306eAPI": [[53, "assert-less-equal-api"]], "assert_true \u3068 assert_false \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[54, "assert-true-assert-false"]], "assert_true API": [[54, "assert-true-api"]], "assert_false API": [[54, "assert-false-api"]], "JavaScript \u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u6319\u52d5": [[55, "javascript"]], "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u540d\u306b\u3064\u3044\u3066": [[55, "id1"]], "\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u7d50\u679c\u306b\u3064\u3044\u3066": [[55, "id2"]], "\u7701\u7565\u53ef\u80fd\u306amsg\u5f15\u6570\u306b\u3064\u3044\u3066": [[55, "msg"]], "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u767b\u9332\u3068\u30a4\u30d9\u30f3\u30c8\u306e\u767a\u751f\uff08\u767a\u706b\uff09\u5236\u5fa1": [[56, "id1"]], "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u306e\u89e3\u9664": [[56, "id4"]], "bind_custom_event API": [[56, "bind-custom-event-api"]], "trigger_custom_event API": [[56, "trigger-custom-event-api"]], "unbind_custom_event \u306eAPI": [[56, "unbind-custom-event-api"]], "unbind_custom_event_all \u306eAPI": [[56, "unbind-custom-event-all-api"]], "Color \u30af\u30e9\u30b9\u306e blue_color \u30d7\u30ed\u30d1\u30c6\u30a3": [[57, "color-blue-color"]], "blue_color \u5c5e\u6027\u306eAPI": [[57, "blue-color-api"]], "Boolean \u30af\u30e9\u30b9": [[58, "boolean"]], "Boolean \u30af\u30e9\u30b9\u306e\u6982\u8981": [[58, "id1"]], "Bool\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[58, "bool"]], "Boolean \u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u5236\u5fa1": [[58, "id2"]], "Boolean \u306e\u5024\u3092\u53cd\u8ee2\u3055\u305b\u308b": [[58, "id3"]], "Boolean \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[58, "boolean-api"]], "not_ \u5c5e\u6027\u306eAPI": [[58, "not-api"]], "\u5404\u5206\u5c90\u5236\u5fa1\u306e\u30af\u30e9\u30b9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5909\u6570\u5024\u306e\u5fa9\u5143\u8a2d\u5b9a": [[59, "id1"]], "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306ewith\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u5185\u306e\u30b3\u30fc\u30c9\u306e\u5b9f\u884c\u306b\u3064\u3044\u3066": [[59, "with"]], "\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5909\u6570\u306e\u5fa9\u5143\u8a2d\u5b9a": [[59, "id2"]], "Circle \u30af\u30e9\u30b9": [[60, "circle"]], "draw_circle \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[60, "draw-circle"]], "x\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "x"], [97, "x"], [152, "x"], [166, "x"], [177, "x"], [178, "x"], [182, "x"], [229, "x"], [206, "x"]], "y\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "y"], [97, "y"], [152, "y"], [166, "y"], [177, "y"], [178, "y"], [182, "y"], [229, "y"], [206, "id3"]], "radius\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "radius"]], "fill_color\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "fill-color"], [97, "fill-color"], [166, "fill-color"], [177, "fill-color"], [178, "fill-color"], [182, "fill-color"], [229, "fill-color"], [206, "fill-color"], [207, "fill-color"]], "fill_alpha\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "fill-alpha"], [97, "fill-alpha"], [166, "fill-alpha"], [177, "fill-alpha"], [178, "fill-alpha"], [182, "fill-alpha"], [229, "fill-alpha"], [206, "fill-alpha"], [207, "fill-alpha"]], "line_color\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "line-color"], [97, "line-color"], [152, "line-color"], [166, "line-color"], [177, "line-color"], [178, "line-color"], [182, "line-color"], [229, "line-color"], [206, "line-color"], [207, "line-color"]], "line_alpha\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "line-alpha"], [97, "line-alpha"], [152, "line-alpha"], [166, "line-alpha"], [177, "line-alpha"], [178, "line-alpha"], [182, "line-alpha"], [229, "line-alpha"], [206, "line-alpha"], [207, "line-alpha"]], "line_thickness\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "line-thickness"], [97, "line-thickness"], [152, "line-thickness"], [166, "line-thickness"], [177, "line-thickness"], [178, "line-thickness"], [182, "line-thickness"], [229, "line-thickness"], [206, "line-thickness"], [207, "line-thickness"]], "line_dot_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "line-dot-setting"], [97, "line-dot-setting"], [152, "line-dot-setting"], [166, "line-dot-setting"], [177, "line-dot-setting"], [178, "line-dot-setting"], [182, "line-dot-setting"], [229, "line-dot-setting"]], "line_dash_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "line-dash-setting"], [97, "line-dash-setting"], [152, "line-dash-setting"], [166, "line-dash-setting"], [177, "line-dash-setting"], [178, "line-dash-setting"], [182, "line-dash-setting"], [229, "line-dash-setting"]], "line_round_dot_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "line-round-dot-setting"], [97, "line-round-dot-setting"], [152, "line-round-dot-setting"], [166, "line-round-dot-setting"], [177, "line-round-dot-setting"], [178, "line-round-dot-setting"], [182, "line-round-dot-setting"], [229, "line-round-dot-setting"]], "line_dash_dot_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "line-dash-dot-setting"], [97, "line-dash-dot-setting"], [152, "line-dash-dot-setting"], [166, "line-dash-dot-setting"], [177, "line-dash-dot-setting"], [178, "line-dash-dot-setting"], [182, "line-dash-dot-setting"], [229, "line-dash-dot-setting"]], "rotation_around_center\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "rotation-around-center"], [97, "rotation-around-center"], [152, "rotation-around-center"], [166, "rotation-around-center"], [177, "rotation-around-center"], [178, "rotation-around-center"], [182, "rotation-around-center"], [229, "rotation-around-center"], [206, "rotation-around-center"]], "set_rotation_around_point\u3068get_rotation_around_point\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "set-rotation-around-pointget-rotation-around-point"], [97, "set-rotation-around-pointget-rotation-around-point"], [152, "set-rotation-around-pointget-rotation-around-point"], [166, "set-rotation-around-pointget-rotation-around-point"], [177, "set-rotation-around-pointget-rotation-around-point"], [178, "set-rotation-around-pointget-rotation-around-point"], [182, "set-rotation-around-pointget-rotation-around-point"], [229, "set-rotation-around-pointget-rotation-around-point"], [206, "set-rotation-around-pointget-rotation-around-point"]], "scale_x_from_center\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "scale-x-from-center"], [97, "scale-x-from-center"], [152, "scale-x-from-center"], [166, "scale-x-from-center"], [177, "scale-x-from-center"], [178, "scale-x-from-center"], [182, "scale-x-from-center"], [229, "scale-x-from-center"], [206, "scale-x-from-center"]], "scale_y_from_center\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "scale-y-from-center"], [97, "scale-y-from-center"], [152, "scale-y-from-center"], [166, "scale-y-from-center"], [177, "scale-y-from-center"], [178, "scale-y-from-center"], [182, "scale-y-from-center"], [229, "scale-y-from-center"]], "set_scale_x_from_point\u3068get_scale_x_from_point\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "set-scale-x-from-pointget-scale-x-from-point"], [97, "set-scale-x-from-pointget-scale-x-from-point"], [152, "set-scale-x-from-pointget-scale-x-from-point"], [166, "set-scale-x-from-pointget-scale-x-from-point"], [177, "set-scale-x-from-pointget-scale-x-from-point"], [178, "set-scale-x-from-pointget-scale-x-from-point"], [182, "set-scale-x-from-pointget-scale-x-from-point"], [229, "set-scale-x-from-pointget-scale-x-from-point"], [206, "set-scale-x-from-pointget-scale-x-from-point"]], "set_scale_y_from_point\u3068get_scale_y_from_point\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "set-scale-y-from-pointget-scale-y-from-point"], [97, "set-scale-y-from-pointget-scale-y-from-point"], [152, "set-scale-y-from-pointget-scale-y-from-point"], [166, "set-scale-y-from-pointget-scale-y-from-point"], [177, "set-scale-y-from-pointget-scale-y-from-point"], [178, "set-scale-y-from-pointget-scale-y-from-point"], [182, "set-scale-y-from-pointget-scale-y-from-point"], [229, "set-scale-y-from-pointget-scale-y-from-point"]], "flip_x\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "flip-x"], [97, "flip-x"], [152, "flip-x"], [166, "flip-x"], [177, "flip-x"], [178, "flip-x"], [182, "flip-x"], [229, "flip-x"], [206, "flip-x"]], "flip_y\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "flip-y"], [97, "flip-y"], [152, "flip-y"], [166, "flip-y"], [177, "flip-y"], [178, "flip-y"], [182, "flip-y"], [229, "flip-y"], [206, "flip-y"]], "skew_x\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "skew-x"], [97, "skew-x"], [152, "skew-x"], [166, "skew-x"], [177, "skew-x"], [178, "skew-x"], [182, "skew-x"], [229, "skew-x"]], "skew_y\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "skew-y"], [97, "skew-y"], [152, "skew-y"], [166, "skew-y"], [177, "skew-y"], [178, "skew-y"], [182, "skew-y"], [229, "skew-y"]], "Circle \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[60, "circle-api"]], "click \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[61, "click"]], "click \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[61, "id3"]], "unbind_click \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[61, "unbind-click"]], "\u5168\u3066\u306e\u30af\u30ea\u30c3\u30af\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u3092\u89e3\u9664\u3059\u308b": [[61, "id4"]], "click API": [[61, "click-api"]], "unbind_click API": [[61, "unbind-click-api"]], "unbind_click_all API": [[61, "unbind-click-all-api"]], "Color \u30af\u30e9\u30b9": [[62, "color"]], "\u53d7\u3051\u4ed8\u3051\u3089\u308c\u308b16\u9032\u6570\u306e\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9": [[62, "id3"]], "Color \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[62, "color-api"]], "Color \u30af\u30e9\u30b9\u306e from_rgb \u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9": [[63, "color-from-rgb"]], "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u6982\u8981": [[63, "id1"]], "from_rgb \u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306eAPI": [[63, "from-rgb-api"]], "COLORLESS \u5b9a\u6570": [[64, "colorless"]], "\u5b9a\u6570\u306e\u6982\u8981": [[64, "id1"]], "Colors \u30af\u30e9\u30b9": [[65, "colors"]], "\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5404\u8272": [[65, "id3"], [153, "id3"]], "\u53c2\u8003\u6587\u732e\u30fb\u53c2\u8003\u8cc7\u6599": [[65, "id4"], [153, "id4"]], "contains \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[66, "contains"]], "contains API": [[66, "contains-api"], [191, "contains-api"]], "Continue \u30af\u30e9\u30b9": [[67, "continue"]], "Continue \u30af\u30e9\u30b9\u306e\u6982\u8981": [[67, "id1"]], "Continue API": [[67, "continue-api"]], "DateTime \u30af\u30e9\u30b9": [[68, "datetime"], [146, "datetime"]], "DateTime \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[68, "datetime-api"]], "DateTime \u30af\u30e9\u30b9\u306e day \u5c5e\u6027": [[69, "datetime-day"]], "day \u5c5e\u6027\u306eAPI": [[69, "day-api"]], "DateTime \u30af\u30e9\u30b9\u306e hour \u5c5e\u6027": [[70, "datetime-hour"]], "hour \u5c5e\u6027\u306eAPI": [[70, "hour-api"]], "DateTime \u30af\u30e9\u30b9\u306e millisecond \u5c5e\u6027": [[71, "datetime-millisecond"]], "millisecond \u5c5e\u6027\u306eAPI": [[71, "millisecond-api"]], "DateTime \u30af\u30e9\u30b9\u306e minute \u5c5e\u6027": [[72, "datetime-minute"]], "minute \u5c5e\u6027\u306eAPI": [[72, "minute-api"]], "DateTime \u30af\u30e9\u30b9\u306e month \u5c5e\u6027": [[73, "datetime-month"]], "month \u5c5e\u6027\u306eAPI": [[73, "month-api"]], "DateTime \u30af\u30e9\u30b9\u306e now \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[74, "datetime-now"]], "now \u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306eAPI": [[74, "now-api"]], "DateTime \u30af\u30e9\u30b9\u306e second \u5c5e\u6027": [[75, "datetime-second"]], "second \u5c5e\u6027\u306eAPI": [[75, "second-api"]], "DateTime \u30af\u30e9\u30b9\u306e set_month_end \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[76, "datetime-set-month-end"]], "DateTime \u30af\u30e9\u30b9\u306e weekday_js \u3068 weekday_py \u5c5e\u6027": [[77, "datetime-weekday-js-weekday-py"]], "weekday_js \u5c5e\u6027\u306eAPI": [[77, "weekday-js-api"]], "weekday_py \u5c5e\u6027\u306eAPI": [[77, "weekday-py-api"]], "DateTime \u30af\u30e9\u30b9\u306e year \u5c5e\u6027": [[78, "datetime-year"]], "year \u5c5e\u6027\u306eAPI": [[78, "year-api"]], "dblclick \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[79, "dblclick"]], "dblclick \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[79, "id3"]], "unbind_dblclick \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[79, "unbind-dblclick"]], "dblclick API": [[79, "dblclick-api"]], "unbind_dblclick API": [[79, "unbind-dblclick-api"]], "unbind_dblclick_all API": [[79, "unbind-dblclick-all-api"]], "delete \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[80, "delete"]], "Dictionary \u30af\u30e9\u30b9": [[81, "dictionary"], [146, "dictionary"]], "Dictionary\u30af\u30e9\u30b9\u306e\u6982\u8981": [[81, "id1"]], "\u5024\u306esetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[81, "setter"]], "\u5024\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[81, "getter"]], "getter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[81, "id3"]], "\u5024\u306e\u524a\u9664\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[81, "id4"]], "Dictionary \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[81, "dictionary-api"]], "Dictionary \u30af\u30e9\u30b9\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a": [[82, "dictionary"]], "Dictionary \u30af\u30e9\u30b9\u306e get \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[83, "dictionary-get"]], "get API": [[83, "get-api"]], "Dictionary \u30af\u30e9\u30b9\u306e length \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[84, "dictionary-length"]], "len\u95a2\u6570\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [[84, "len"]], "DisplayObject \u30af\u30e9\u30b9": [[85, "displayobject"]], "DisplayObject \u30af\u30e9\u30b9\u306e\u6982\u8981": [[85, "id1"]], "DisplayObject \u3068 GraphicsBase \u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u5c5e\u6027\u306e\u6982\u8981": [[86, "displayobject-graphicsbase"]], "\u305d\u308c\u3089\u306e\u5c5e\u6027\u3067apysc\u304c\u3067\u304d\u308b\u3053\u3068": [[86, "apysc"]], "x \u3068 y \u5c5e\u6027": [[86, "x-y"]], "visible \u5c5e\u6027": [[86, "visible"]], "\u56de\u8ee2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[86, "id1"]], "\u62e1\u7e2e\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[86, "id2"]], "\u53cd\u8ee2\u306e\u5404\u5c5e\u6027": [[86, "id3"]], "\u6b6a\u307f\u306e\u5404\u5c5e\u6027": [[86, "id4"]], "DisplayObject \u30af\u30e9\u30b9\u306e get_css \u3068 set_css \u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[87, "displayobject-get-css-set-css"]], "get_css API": [[87, "get-css-api"]], "set_css API": [[87, "set-css-api"]], "DisplayObject \u30af\u30e9\u30b9\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[88, "displayobject"]], "DisplayObject \u30af\u30e9\u30b9\u306e parent \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[89, "displayobject-parent"]], "remove_from_parent \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[89, "remove-from-parent"]], "parent API": [[89, "parent-api"]], "remove_from_parent API": [[89, "remove-from-parent-api"]], "DisplayObject \u30af\u30e9\u30b9\u306e visible \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[90, "displayobject-visible"]], "visible \u5c5e\u6027\u306eAPI": [[90, "visible-api"]], "DisplayObject \u30af\u30e9\u30b9\u306e x \u3068 y \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[91, "displayobject-x-y"]], "\u7d2f\u7b97\u4ee3\u5165\u6f14\u7b97": [[91, "id3"]], "x\u5c5e\u6027\u306eAPI": [[91, "xapi"], [176, "xapi"]], "y\u5c5e\u6027\u306eAPI": [[91, "yapi"], [176, "yapi"]], "display_on_colaboratory \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[92, "display-on-colaboratory"]], "\u5fc5\u8981\u3068\u3055\u308c\u308b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306a\u3069\u306e\u5bfe\u5fdc": [[92, "id2"], [93, "id2"]], "display_on_colaboratory API": [[92, "display-on-colaboratory-api"]], "display_on_jupyter \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[93, "display-on-jupyter"]], "\u7279\u8a18\u4e8b\u9805": [[93, "id3"], [96, "id3"], [98, "id3"], [122, "id3"], [138, "id3"], [165, "id2"], [189, "id2"], [232, "id2"]], "display_on_jupyter API": [[93, "display-on-jupyter-api"]], "\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": [[94, "id1"]], "apysc\u306e\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3067\u304d\u308b\u3053\u3068": [[94, "apysc"]], "\u5857\u308a\u306e\u8a2d\u5b9a": [[94, "id2"]], "\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [[94, "id3"]], "\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[94, "id4"]], "\u30a4\u30fc\u30b8\u30f3\u30b0\u306eenum": [[95, "enum"]], "\u30a4\u30fc\u30ba\u30a4\u30f3\uff08ease-in\uff09\u3001\u30a4\u30fc\u30ba\u30a2\u30a6\u30c8\uff08ease-out\uff09\u3001\u30a4\u30fc\u30ba\u30a4\u30f3\u30a2\u30a6\u30c8\uff08ease-in-out\uff09\u306e\u9055\u3044": [[95, "ease-in-ease-out-ease-in-out"]], "\u30a4\u30fc\u30ba\u30a4\u30f3\u306e\u4f8b": [[95, "id3"]], "\u30a4\u30fc\u30ba\u30a2\u30a6\u30c8\u306e\u4f8b": [[95, "id4"]], "\u30a4\u30fc\u30ba\u30a4\u30f3\u30a2\u30a6\u30c8\u306e\u4f8b": [[95, "id5"]], "Elif \u30af\u30e9\u30b9": [[96, "elif"]], "Elif \u30af\u30e9\u30b9\u306e\u6982\u8981": [[96, "id1"]], "Elif \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[96, "elif-api"]], "Ellipse \u30af\u30e9\u30b9": [[97, "ellipse"]], "draw_ellipse \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u306e\u7279\u8a18\u4e8b\u9805": [[97, "draw-ellipse"]], "width\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[97, "width"], [182, "width"]], "height\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[97, "height"], [182, "height"]], "Ellipse \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[97, "ellipse-api"]], "Else \u30af\u30e9\u30b9": [[98, "else"]], "Else \u30af\u30e9\u30b9\u306e\u6982\u8981": [[98, "id1"]], "Else \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[98, "else-api"]], "enter_frame \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[99, "enter-frame"]], "Timer \u30af\u30e9\u30b9\u3068 enter_frame \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u3069\u3061\u3089\u3092\u4f7f\u3046\u3079\u304d\u304b": [[99, "timer-enter-frame"]], "enter_frame \u306eAPI": [[99, "enter-frame-api"]], "Event \u30af\u30e9\u30b9\u306e prevent_default \u3068 stop_propagation \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[100, "event-prevent-default-stop-propagation"]], "prevent_default \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[100, "prevent-default"]], "stop_propagation \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[100, "stop-propagation"]], "prevent_default API": [[100, "prevent-default-api"]], "stop_propagation API": [[100, "stop-propagation-api"]], "ForArrayIndices \u30af\u30e9\u30b9": [[101, "forarrayindices"]], "ForArrayIndices API": [[101, "forarrayindices-api"]], "ForArrayIndicesAndValues \u30af\u30e9\u30b9": [[102, "forarrayindicesandvalues"]], "ForArrayIndicesAndValues API": [[102, "forarrayindicesandvalues-api"]], "ForArrayValues \u30af\u30e9\u30b9": [[103, "forarrayvalues"]], "ForArrayValues API": [[103, "forarrayvalues-api"]], "ForDictKeys \u30af\u30e9\u30b9": [[104, "fordictkeys"]], "ForDictKeys API": [[104, "fordictkeys-api"]], "ForDictKeysAndValues \u30af\u30e9\u30b9": [[105, "fordictkeysandvalues"]], "ForDictKeysAndValues API": [[105, "fordictkeysandvalues-api"]], "ForDictValues \u30af\u30e9\u30b9": [[106, "fordictvalues"]], "ForDictValues API": [[106, "fordictvalues-api"]], "FPS \u306e enum": [[107, "fps-enum"]], "apysc \u306e\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u578b\u306e value \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[108, "apysc-value"]], "getter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[108, "getter"]], "setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[108, "setter"]], "get_child_at \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[110, "get-child-at"]], "get_child_at API": [[110, "get-child-at-api"], [191, "get-child-at-api"]], "Graphics \u30af\u30e9\u30b9": [[111, "graphics"], [146, "graphics"]], "Graphics \u30af\u30e9\u30b9\u306e\u6982\u8981": [[111, "id1"]], "Sprite \u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u7d4c\u7531\u3057\u305f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u547c\u3073\u51fa\u3057": [[111, "sprite"]], "\u5404\u8fd4\u5374\u5024\u306b\u3064\u3044\u3066": [[111, "id2"]], "GraphicsBase \u30af\u30e9\u30b9\u306e fill_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[112, "graphicsbase-fill-alpha"]], "fill_alpha \u5c5e\u6027\u306eAPI": [[112, "fill-alpha-api"], [127, "fill-alpha-api"], [211, "fill-alpha-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e fill_color \u5c5e\u6027": [[113, "graphicsbase-fill-color"]], "fill_color \u5c5e\u6027\u306eAPI": [[113, "fill-color-api"], [127, "fill-color-api"], [212, "fill-color-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e flip_x \u3068 flip_y \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[114, "graphicsbase-flip-x-flip-y"]], "flip_x \u5c5e\u6027\u306eAPI": [[114, "flip-x-api"]], "flip_y \u5c5e\u6027\u306eAPI": [[114, "flip-y-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e line_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[115, "graphicsbase-line-alpha"]], "line_alpha \u5c5e\u6027\u306eAPI": [[115, "line-alpha-api"], [141, "line-alpha-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e line_color \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[116, "graphicsbase-line-color"]], "line_color \u5c5e\u6027\u306eAPI": [[116, "line-color-api"], [141, "line-color-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e line_dash_dot_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[117, "graphicsbase-line-dash-dot-setting"]], "\u8a2d\u5b9a\u306e\u524a\u9664": [[117, "id3"], [118, "id3"], [119, "id3"], [120, "id3"]], "line_dash_dot_setting \u306eAPI": [[117, "line-dash-dot-setting-api"]], "delete_line_dash_dot_setting \u306eAPI": [[117, "delete-line-dash-dot-setting-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e line_dash_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[118, "graphicsbase-line-dash-setting"]], "line_dash_setting \u5c5e\u6027\u306eAPI": [[118, "line-dash-setting-api"], [141, "line-dash-setting-api"]], "delete_line_dash_setting \u306eAPI": [[118, "delete-line-dash-setting-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e line_dot_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[119, "graphicsbase-line-dot-setting"]], "line_dot_setting \u5c5e\u6027\u306eAPI": [[119, "line-dot-setting-api"], [141, "line-dot-setting-api"]], "delete_line_dot_setting \u306eAPI": [[119, "delete-line-dot-setting-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e line_round_dot_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[120, "graphicsbase-line-round-dot-setting"]], "line_round_dot_setting \u5c5e\u6027\u306eAPI": [[120, "line-round-dot-setting-api"], [141, "line-round-dot-setting-api"]], "delete_line_round_dot_setting \u306eAPI": [[120, "delete-line-round-dot-setting-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e line_thickness \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[121, "graphicsbase-line-thickness"]], "line_thickness \u5c5e\u6027\u306eAPI": [[121, "line-thickness-api"], [141, "line-thickness-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e rotation_around_center \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[122, "graphicsbase-rotation-around-center"]], "rotation_around_center \u5c5e\u6027\u306eAPI": [[122, "rotation-around-center-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e rotation_around_point \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[123, "graphicsbase-rotation-around-point"]], "get_rotation_around_point API": [[123, "get-rotation-around-point-api"]], "set_rotation_around_point API": [[123, "set-rotation-around-point-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e scale_x_from_center \u3068 scale_y_from_center \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[124, "graphicsbase-scale-x-from-center-scale-y-from-center"]], "scale_x_from_center \u5c5e\u6027\u306eAPI": [[124, "scale-x-from-center-api"]], "scale_y_from_center \u5c5e\u6027\u306eAPI": [[124, "scale-y-from-center-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e get_scale_from_point \u3068 set_scale_from_point \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[125, "graphicsbase-get-scale-from-point-set-scale-from-point"]], "get_scale_x_from_point API": [[125, "get-scale-x-from-point-api"]], "set_scale_x_from_point API": [[125, "set-scale-x-from-point-api"]], "get_scale_y_from_point API": [[125, "get-scale-y-from-point-api"]], "set_scale_y_from_point API": [[125, "set-scale-y-from-point-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e skew_x \u3068 skew_y \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[126, "graphicsbase-skew-x-skew-y"]], "skew_x property API": [[126, "skew-x-property-api"]], "skew_y property API": [[126, "skew-y-property-api"]], "Graphics \u30af\u30e9\u30b9\u306e begin_fill \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[127, "graphics-begin-fill"]], "\u5857\u308a\u306e\u8272\u306e\u8a2d\u5b9a": [[127, "id3"]], "\u5857\u308a\u306e\u8272\u306e\u900f\u660e\u5ea6\u306e\u8a2d\u5b9a": [[127, "id4"]], "begin_fill API": [[127, "begin-fill-api"]], "Graphics \u30af\u30e9\u30b9\u306e clear \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[128, "graphics-clear"]], "Graphics \u30af\u30e9\u30b9\u306e draw_circle \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[129, "graphics-draw-circle"]], "\u8fd4\u5374\u5024": [[129, "id3"], [133, "id3"], [136, "id3"], [139, "id3"]], "draw_circle API": [[129, "draw-circle-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_dash_dotted_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[130, "graphics-draw-dash-dotted-line"]], "draw_dash_dotted_line API": [[130, "draw-dash-dotted-line-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_dashed_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[131, "graphics-draw-dashed-line"]], "draw_dashed_line API": [[131, "draw-dashed-line-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_dotted_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[132, "graphics-draw-dotted-line"]], "draw_dotted_line API": [[132, "draw-dotted-line-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_ellipse \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[133, "graphics-draw-ellipse"]], "draw_ellipse API": [[133, "draw-ellipse-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[134, "graphics-draw-line"]], "\u7121\u8996\u3055\u308c\u308b\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [[134, "id3"]], "Line \u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [[134, "line"]], "draw_line API": [[134, "draw-line-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_path \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[135, "graphics-draw-path"]], "draw_path API": [[135, "draw-path-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_polygon \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[136, "graphics-draw-polygon"]], "line_to \u3068 draw_polygon \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u9055\u3044\u306b\u3064\u3044\u3066": [[136, "line-to-draw-polygon"]], "draw_polygon API": [[136, "draw-polygon-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_rect \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[137, "graphics-draw-rect"]], "Rectangle \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [[137, "rectangle"]], "draw_rect API": [[137, "draw-rect-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_round_dotted_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[138, "graphics-draw-round-dotted-line"]], "draw_round_dotted_line API": [[138, "draw-round-dotted-line-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_round_rect \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[139, "graphics-draw-round-rect"]], "draw_round_rect API": [[139, "draw-round-rect-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_triangle \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[140, "graphics-draw-triangle"]], "Triangle \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [[140, "triangle"]], "draw_triangle \u306eAPI": [[140, "draw-triangle-api"]], "Graphics \u30af\u30e9\u30b9\u306e line_style \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[141, "graphics-line-style"]], "\u7dda\u306e\u8272\u306e\u8a2d\u5b9a": [[141, "id3"]], "\u7dda\u5e45\u306e\u8a2d\u5b9a": [[141, "id4"]], "\u7dda\u306e\u900f\u660e\u5ea6\u306e\u8a2d\u5b9a": [[141, "id5"]], "\u7dda\u7aef\u306e\u8a2d\u5b9a": [[141, "id6"]], "\u7dda\u306e\u7e4b\u304e\u76ee\u306e\u8a2d\u5b9a": [[141, "id7"]], "\u7dda\u306e\u70b9\u7dda\u8a2d\u5b9a": [[141, "id8"]], "\u7dda\u306e\u7834\u7dda\u8a2d\u5b9a": [[141, "id9"]], "\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u8a2d\u5b9a": [[141, "id10"]], "\u7dda\u306e\u4e00\u70b9\u9396\u7dda\u306e\u8a2d\u5b9a": [[141, "id11"]], "line_style API": [[141, "line-style-api"]], "line_cap \u5c5e\u6027\u306eAPI": [[141, "line-cap-api"]], "line_joints \u5c5e\u6027\u306eAPI": [[141, "line-joints-api"]], "line_dash_dot_setting \u5c5e\u6027\u306eAPI": [[141, "line-dash-dot-setting-api"]], "Graphics \u30af\u30e9\u30b9\u306e move_to \u3068 line_to \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[142, "graphics-move-to-line-to"]], "line_to \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u9023\u7d9a\u3057\u305f\u547c\u3073\u51fa\u3057": [[142, "line-to"]], "line_to \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u305f\u5f8c\u306e move_to \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u547c\u3073\u51fa\u3057": [[142, "line-to-move-to"]], "Polyline \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [[142, "polyline"]], "move_to API": [[142, "move-to-api"]], "line_to API": [[142, "line-to-api"]], "Color \u30af\u30e9\u30b9\u306e green_color \u30d7\u30ed\u30d1\u30c6\u30a3": [[143, "color-green-color"]], "green_color \u5c5e\u6027\u306eAPI": [[143, "green-color-api"]], "If \u30af\u30e9\u30b9": [[144, "if"]], "If \u30af\u30e9\u30b9\u306e\u6982\u8981": [[144, "id1"]], "If \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[144, "if-api"]], "import \u306e\u6163\u7fd2": [[145, "import"]], "Int \u3068 Number \u30af\u30e9\u30b9": [[147, "int-number"], [146, "int-number"]], "Int \u30af\u30e9\u30b9": [[147, "int"]], "Number \u30af\u30e9\u30b9": [[147, "number"]], "Float\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[147, "float"]], "Int \u3068 Number \u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[147, "id1"]], "Int \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[147, "int-api"]], "Number \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[147, "number-api"]], "Int \u3068 Number \u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u8a08\u7b97\u5236\u5fa1": [[148, "int-number"]], "\u5171\u901a\u306e\u6319\u52d5": [[148, "id1"], [149, "id1"]], "\u52a0\u7b97": [[148, "id2"], [193, "id1"]], "\u6e1b\u7b97": [[148, "id3"]], "\u4e57\u7b97": [[148, "id4"], [193, "id2"]], "\u9664\u7b97": [[148, "id5"]], "\u5207\u308a\u6368\u3066\u9664\u7b97": [[148, "id6"]], "\u5270\u4f59": [[148, "id7"]], "Int \u3068 Number \u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u6bd4\u8f03\u5236\u5fa1": [[149, "int-number"]], "\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": [[149, "id2"]], "\u975e\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": [[149, "id3"]], "\u672a\u6e80\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": [[149, "id4"]], "\u4ee5\u4e0b\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": [[149, "id5"]], "\u8d85\u904e\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": [[149, "id6"]], "\u4ee5\u4e0a\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": [[149, "id7"]], "Int \u3068 Number \u30af\u30e9\u30b9\u306e to_fixed \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[150, "int-number-to-fixed"]], "to_fixed API": [[150, "to-fixed-api"]], "Int \u3068 Number \u30af\u30e9\u30b9\u306e to_hex \u30e1\u30bd\u30c3\u30c9": [[151, "int-number-to-hex"]], "\u30e1\u30bd\u30c3\u30c9\u6982\u8981": [[151, "id1"], [197, "id1"], [200, "id1"], [203, "id1"], [204, "id1"]], "ap.Number\u578b\u306e\u5024\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [[151, "ap-number"]], "to_hex \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[151, "to-hex-api"]], "Line \u30af\u30e9\u30b9": [[152, "line"]], "draw_line \u3084\u4ed6\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[152, "draw-line"]], "Line \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[152, "line-api"]], "MaterialDesignColors \u30af\u30e9\u30b9": [[153, "materialdesigncolors"]], "\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3": [[154, "id1"]], "\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306e\u30e9\u30a4\u30bb\u30f3\u30b9": [[154, "id3"]], "\u5404\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[154, "api"]], "Math \u30af\u30e9\u30b9\u306e clamp \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[155, "math-clamp"]], "clamp \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[155, "clamp-api"]], "Math \u30af\u30e9\u30b9\u306e max \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[156, "math-max"]], "Math.max \u306eAPI": [[156, "math-max-api"]], "Math \u30af\u30e9\u30b9\u306e min \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[157, "math-min"]], "Math.min \u306eAPI": [[157, "math-min-api"]], "Math \u30af\u30e9\u30b9\u306e trunc \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[158, "math-trunc"]], "Math.trunc \u306eAPI": [[158, "math-trunc-api"]], "MouseEvent \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": [[159, "mouseevent"]], "\u3053\u308c\u3089\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067apysc\u304c\u51fa\u6765\u308b\u3053\u3068": [[159, "apysc"]], "\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u4f8b": [[159, "id1"]], "\u57fa\u672c\u7684\u306a\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[160, "id1"]], "\u57fa\u672c\u7684\u306a\u30a4\u30d9\u30f3\u30c8\u767b\u9332\u51e6\u7406\u306e\u4f7f\u3044\u65b9": [[160, "id2"]], "\u57fa\u672c\u7684\u306a\u30a4\u30d9\u30f3\u30c8\u89e3\u9664\u51e6\u7406\u306e\u4f7f\u3044\u65b9": [[160, "id3"]], "\u5168\u3066\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3059\u308b": [[160, "id4"]], "\u30cf\u30f3\u30c9\u30e9\u306e\u5f15\u6570\u306e\u540d\u524d\u3068\u578b": [[160, "id5"]], "MouseEvent \u30af\u30e9\u30b9\u306e this \u5c5e\u6027": [[160, "mouseevent-this"]], "MouseEvent \u30af\u30e9\u30b9\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u578b\u306e\u8a2d\u5b9a": [[160, "mouseevent"]], "MouseEvent \u30af\u30e9\u30b9\u306e stage_x \u3068 stage_y \u5c5e\u6027": [[160, "mouseevent-stage-x-stage-y"]], "MouseEvent \u30af\u30e9\u30b9\u306e local_x \u3068 local_y \u5c5e\u6027": [[160, "mouseevent-local-x-local-y"]], "stage_x \u5c5e\u6027\u306eAPI": [[160, "stage-x-api"]], "stage_y \u5c5e\u6027\u306eAPI": [[160, "stage-y-api"]], "local_x \u5c5e\u6027\u306eAPI": [[160, "local-x-api"]], "local_y \u5c5e\u6027\u306eAPI": [[160, "local-y-api"]], "mousedown \u3068 mouseup \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[161, "mousedown-mouseup"]], "mousedown \u3068 mouseup \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[161, "id3"]], "\u89e3\u9664\u7528\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[161, "id4"], [162, "id4"], [163, "id4"]], "mousedown API": [[161, "mousedown-api"]], "unbind_mousedown API": [[161, "unbind-mousedown-api"]], "unbind_mousedown_all API": [[161, "unbind-mousedown-all-api"]], "mouseup API": [[161, "mouseup-api"]], "unbind_mouseup API": [[161, "unbind-mouseup-api"]], "unbind_mouseup_all API": [[161, "unbind-mouseup-all-api"]], "mousemove \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[162, "mousemove"]], "mousemove API": [[162, "mousemove-api"]], "unbind_mousemove API": [[162, "unbind-mousemove-api"]], "unbind_mousemove_all API": [[162, "unbind-mousemove-all-api"]], "mouseover \u3068 mouseout \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[163, "mouseover-mouseout"]], "mouseover \u3068 mouseout \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[163, "id3"]], "mouseover API": [[163, "mouseover-api"]], "unbind_mouseover API": [[163, "unbind-mouseover-api"]], "unbind_mouseover_all API": [[163, "unbind-mouseover-all-api"]], "mouseout API": [[163, "mouseout-api"]], "unbind_mouseout API": [[163, "unbind-mouseout-api"]], "unbind_mouseout_all API": [[163, "unbind-mouseout-all-api"]], "MultiLineText \u30af\u30e9\u30b9": [[164, "multilinetext"]], "MultiLineText \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[164, "multilinetext-api"]], "num_children \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[165, "num-children"]], "num_children API": [[165, "num-children-api"]], "Path \u30af\u30e9\u30b9": [[166, "path"]], "PathMoveTo \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathmoveto"]], "PathLineTo \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathlineto"]], "PathHorizontal \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathhorizontal"]], "PathVertical \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathvertical"]], "PathClose \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathclose"]], "PathBezier2D \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathbezier2d"]], "PathBezier2DContinual \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathbezier2dcontinual"]], "PathBezier3D \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathbezier3d"]], "PathBezier3DContinual \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathbezier3dcontinual"]], "Path \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[166, "path-api"]], "PathBezier2D \u30af\u30e9\u30b9": [[167, "pathbezier2d"]], "\u76f8\u5bfe\u5ea7\u6a19\u8a2d\u5b9a": [[167, "id3"], [168, "id3"], [169, "id3"], [170, "id3"], [172, "id3"], [173, "id3"], [174, "id3"], [175, "id3"]], "PathBezier2D \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[167, "pathbezier2d-api"]], "PathBezier2DContinual \u30af\u30e9\u30b9": [[168, "pathbezier2dcontinual"]], "PathBezier2DContinual \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[168, "pathbezier2dcontinual-api"]], "PathBezier3D \u30af\u30e9\u30b9": [[169, "pathbezier3d"]], "PathBezier3D \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[169, "pathbezier3d-api"]], "PathBezier3DContinual \u30af\u30e9\u30b9": [[170, "pathbezier3dcontinual"]], "PathBezier3DContinual \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[170, "pathbezier3dcontinual-api"]], "PathClose \u30af\u30e9\u30b9": [[171, "pathclose"]], "PathClose \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[171, "pathclose-api"]], "PathHorizontal \u30af\u30e9\u30b9": [[172, "pathhorizontal"]], "PathHorizontal \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[172, "pathhorizontal-api"]], "PathLineTo \u30af\u30e9\u30b9": [[173, "pathlineto"]], "PathLineTo \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[173, "pathlineto-api"]], "PathMoveTo \u30af\u30e9\u30b9": [[174, "pathmoveto"]], "PathMoveTo \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[174, "pathmoveto-api"]], "PathVertical \u30af\u30e9\u30b9": [[175, "pathvertical"]], "PathVertical \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[175, "pathvertical-api"]], "Point2D \u30af\u30e9\u30b9": [[176, "point2d"]], "Point2D \u30af\u30e9\u30b9\u306e\u6982\u8981": [[176, "id1"]], "X\u3068Y\u5ea7\u6a19\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[176, "xygetter"]], "X\u3068Y\u5ea7\u6a19\u306esetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[176, "xysetter"]], "draw_polygon \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u304a\u3051\u308b\u4f7f\u7528\u4f8b": [[176, "draw-polygon"]], "Point2D \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[176, "point2d-api"]], "Polygon \u30af\u30e9\u30b9": [[177, "polygon"]], "draw_polygon \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [[177, "draw-polygon"]], "Polygon \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[177, "polygon-api"]], "Polyline \u30af\u30e9\u30b9": [[178, "polyline"]], "move_to \u3068 line_to \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[178, "move-to-line-to"]], "Polyline \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[178, "polyline-api"]], "\u30af\u30a4\u30c3\u30af\u30b9\u30bf\u30fc\u30c8\u30ac\u30a4\u30c9": [[179, "id1"], [146, "id2"]], "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[179, "id2"]], "Stage\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u3001HTML\u3092\u51fa\u529b\u3059\u308b": [[179, "stagehtml"]], "Sprite\u306e\u30b3\u30f3\u30c6\u30ca\u3068\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3059\u308b": [[179, "sprite"]], "range \u95a2\u6570": [[180, "range"]], "\u95a2\u6570\u6982\u8981": [[180, "id1"]], "range \u95a2\u6570\u306eAPI": [[180, "range-api"]], "\u63a8\u5968\u3055\u308c\u308b\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306e\u30c1\u30a7\u30c3\u30af\u8a2d\u5b9a": [[181, "id1"]], "\u63a8\u5968\u3055\u308c\u308b\u578b\u30c1\u30a7\u30c3\u30af\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u3064\u3044\u3066": [[181, "id2"]], "mypy\u3067\u7121\u8996\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u3044\u308b\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9": [[181, "mypy"]], "Rectangle \u30af\u30e9\u30b9": [[182, "rectangle"]], "draw_rect \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[182, "draw-rect"]], "ellipse_width\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[182, "ellipse-width"]], "ellipse_height\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[182, "ellipse-height"]], "Rectangle \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[182, "rectangle-api"]], "Color \u30af\u30e9\u30b9\u306e red_color \u30d7\u30ed\u30d1\u30c6\u30a3": [[184, "color-red-color"]], "red_color \u5c5e\u6027\u306eAPI": [[184, "red-color-api"]], "remove_children \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[185, "remove-children"]], "remove_children \u306eAPI": [[185, "remove-children-api"]], "Return \u30af\u30e9\u30b9": [[186, "return"]], "Return \u30af\u30e9\u30b9\u306e\u6982\u8981": [[186, "id1"]], "Return API": [[186, "return-api"]], "save_overall_html \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[187, "save-overall-html"]], "HTML\u3092\u6700\u5c0f\u5316\u3059\u308b": [[187, "html"]], "JavaScript\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9\u306e\u8a2d\u5b9a\u3068\u51fa\u529b\u30b9\u30ad\u30c3\u30d7\u306e\u8a2d\u5b9a": [[187, "javascript"]], "html_file_name \u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u3066HTML\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3092\u5909\u66f4\u3059\u308b": [[187, "html-file-name-html"]], "embed_js_libs \u30aa\u30d7\u30b7\u30e7\u30f3\u3067JavaScript\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u30921\u3064\u306eHTML\u30d5\u30a1\u30a4\u30eb\u306b\u307e\u3068\u3081\u308b": [[187, "embed-js-libs-javascript1html"]], "verbose \u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6a19\u6e96\u51fa\u529b\u306e\u8a2d\u5b9a\u3092\u5909\u66f4\u3059\u308b": [[187, "verbose"]], "save_overall_html API": [[187, "save-overall-html-api"]], "\u9023\u7d9a\u3057\u305f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a": [[188, "id1"]], "\u540c\u3058\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u9023\u7d9a\u3057\u3066\u547c\u3073\u51fa\u3059": [[188, "id2"]], "animation_complete \u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a": [[188, "animation-complete"]], "set_debug_mode \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[189, "set-debug-mode"]], "set_debug_mode API": [[189, "set-debug-mode-api"]], "Sprite\u30af\u30e9\u30b9": [[190, "sprite"]], "Sprite\u3068\u306f\uff1f": [[190, "id1"]], "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u81ea\u52d5\u8ffd\u52a0\u306b\u95a2\u3059\u308b\u6ce8\u610f\u70b9": [[190, "id2"]], "graphics\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": [[190, "graphics"]], "DisplayObject\u306e\u8907\u6570\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u79fb\u52d5\u306b\u3064\u3044\u3066": [[190, "displayobject"]], "Sprite\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bfAPI": [[190, "spriteapi"]], "Stage \u30af\u30e9\u30b9": [[191, "stage"]], "Stage \u30af\u30e9\u30b9\u306e\u6982\u8981": [[191, "id1"]], "\u30b9\u30c6\u30fc\u30b8\u306e\u4f5c\u6210": [[191, "id2"]], "\u30b9\u30c6\u30fc\u30b8\u306e\u80cc\u666f\u8272\u8a2d\u5b9a": [[191, "id3"]], "\u30b9\u30c6\u30fc\u30b8\u306e\u30b5\u30a4\u30ba\u8a2d\u5b9a": [[191, "id4"]], "\u30b9\u30c6\u30fc\u30b8\u306e\u8981\u7d20\u306eID\u8a2d\u5b9a": [[191, "id"]], "get_stage \u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[191, "get-stage"]], "Stage \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[191, "stage-api"]], "stage_elem_id \u5c5e\u6027\u306eAPI": [[191, "stage-elem-id-api"]], "num_children property API": [[191, "num-children-property-api"]], "get_stage \u306eAPI": [[191, "get-stage-api"]], "String \u30af\u30e9\u30b9": [[192, "string"], [146, "string"]], "String \u30af\u30e9\u30b9\u306e\u6982\u8981": [[192, "id1"]], "String \u30af\u30e9\u30b9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[192, "id2"]], "String \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[192, "string-api"]], "String \u30af\u30e9\u30b9\u306e\u52a0\u7b97\u3068\u4e57\u7b97\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": [[193, "string"]], "String \u30af\u30e9\u30b9\u306e apply_max_num_of_decimal_places \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[194, "string-apply-max-num-of-decimal-places"]], "apply_max_num_of_decimal_places API": [[194, "apply-max-num-of-decimal-places-api"]], "String \u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": [[195, "string"]], "\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8fd4\u5374\u5024\u306e\u578b": [[195, "id1"]], "\u53d7\u3051\u4ed8\u3051\u3089\u308c\u308b\u53f3\u5074\u306e\u5024\u306e\u578b": [[195, "id2"]], "\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03": [[195, "id3"]], "\u975e\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03": [[195, "id4"]], "\u672a\u6e80\u3082\u3057\u304f\u306f\u8d85\u904e\u6761\u4ef6\u306e\u6bd4\u8f03": [[195, "id5"]], "String \u30af\u30e9\u30b9\u306e length \u5c5e\u6027": [[196, "string-length"]], "\u7d75\u6587\u5b57\u306b\u95a2\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[196, "id3"]], "String \u30af\u30e9\u30b9\u306e lower \u30e1\u30bd\u30c3\u30c9": [[197, "string-lower"]], "lower \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[197, "lower-api"]], "String \u30af\u30e9\u30b9\u306e lstrip \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[198, "string-lstrip"]], "lstrip API": [[198, "lstrip-api"]], "String \u30af\u30e9\u30b9\u306e rstrip \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[199, "string-rstrip"]], "rstrip API": [[199, "rstrip-api"]], "String \u30af\u30e9\u30b9\u306e slice \u30e1\u30bd\u30c3\u30c9": [[200, "string-slice"]], "slice \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[200, "slice-api"]], "String \u30af\u30e9\u30b9\u306e split \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[201, "string-split"]], "split API": [[201, "split-api"]], "String \u30af\u30e9\u30b9\u306e strip \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[202, "string-strip"]], "strip API": [[202, "strip-api"]], "String \u30af\u30e9\u30b9\u306e upper \u30e1\u30bd\u30c3\u30c9": [[203, "string-upper"]], "upper \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[203, "upper-api"]], "String \u30af\u30e9\u30b9\u306e zfill \u30e1\u30bd\u30c3\u30c9": [[204, "string-zfill"]], "zfill \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[204, "zfill-api"]], "SvgMask \u30af\u30e9\u30b9\u3068\u95a2\u9023\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9": [[205, "svgmask"]], "DisplayObject\u3068\u30de\u30b9\u30af\u306e\u5ea7\u6a19\u3092\u540c\u671f\u3055\u305b\u305f\u3044\u5834\u5408\u306e\u30b1\u30fc\u30b9": [[205, "displayobject"]], "SvgMask \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[205, "svgmask-api"]], "SvgMask \u30af\u30e9\u30b9\u306e add_svg_masking_object \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[205, "svgmask-add-svg-masking-object-api"]], "svg_mask \u5c5e\u6027\u306eAPI": [[205, "svg-mask-api"]], "text_align \u5c5e\u6027": [[208, "text-align"]], "CssTextAlign.LEFT\u306e\u4f8b": [[208, "csstextalign-left"]], "CssTextAlign.CENTER\u306e\u4f8b": [[208, "csstextalign-center"]], "CssTextAlign.RIGHT\u306e\u4f8b": [[208, "csstextalign-right"]], "CssTextAlign.JUSTIFY\u306e\u4f8b": [[208, "csstextalign-justify"]], "text_align \u5c5e\u6027\u306eAPI": [[208, "text-align-api"]], "text_align_last \u5c5e\u6027": [[209, "text-align-last"]], "CssTextAlignLast.AUTO\u306e\u4f8b": [[209, "csstextalignlast-auto"]], "CssTextAlignLast.LEFT\u306e\u4f8b": [[209, "csstextalignlast-left"]], "CssTextAlignLast.CENTER\u306e\u4f8b": [[209, "csstextalignlast-center"]], "CssTextAlignLast.RIGHT\u306e\u4f8b": [[209, "csstextalignlast-right"]], "CssTextAlignLast.JUSTIFY\u306e\u4f8b": [[209, "csstextalignlast-justify"]], "text_align_last \u5c5e\u6027\u306eAPI": [[209, "text-align-last-api"]], "\u30c6\u30ad\u30b9\u30c8\u306e bold \u5c5e\u6027": [[210, "bold"]], "bold \u5c5e\u6027\u306eAPI": [[210, "bold-api"]], "\u30c6\u30ad\u30b9\u30c8\u306e fill_alpha \u5c5e\u6027": [[211, "fill-alpha"]], "\u30c6\u30ad\u30b9\u30c8\u306e fill_color \u5c5e\u6027": [[212, "fill-color"]], "\u30c6\u30ad\u30b9\u30c8\u306e font_size \u5c5e\u6027": [[213, "font-size"]], "font_size \u5c5e\u6027\u306eAPI": [[213, "font-size-api"]], "\u30c6\u30ad\u30b9\u30c8\u306e italic \u5c5e\u6027": [[214, "italic"]], "italic \u5c5e\u6027\u306eAPI": [[214, "italic-api"]], "\u30c6\u30ad\u30b9\u30c8\u306e line_height \u5c5e\u6027": [[215, "line-height"]], "line_height \u5c5e\u6027\u306eAPI": [[215, "line-height-api"]], "\u30c6\u30ad\u30b9\u30c8\u306e underline \u5c5e\u6027": [[216, "underline"]], "underline \u5c5e\u6027\u306eAPI": [[216, "underline-api"]], "TimeDelta \u30af\u30e9\u30b9": [[217, "timedelta"], [146, "timedelta"]], "days \u5c5e\u6027\u306eAPI": [[217, "days-api"], [218, "days-api"]], "total_seconds \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[217, "total-seconds-api"], [219, "total-seconds-api"]], "TimeDelta \u30af\u30e9\u30b9\u306e days \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[218, "timedelta-days"]], "TimeDelta \u30af\u30e9\u30b9\u306e total_seconds \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[219, "timedelta-total-seconds"]], "Timer \u30af\u30e9\u30b9": [[220, "timer"]], "Timer \u30af\u30e9\u30b9\u306e\u6982\u8981": [[220, "id1"]], "Timer \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[220, "timer-api"], [222, "timer-api"], [224, "timer-api"]], "Timer \u30af\u30e9\u30b9\u306e timer_complete \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[221, "timer-timer-complete"]], "timer_complete API": [[221, "timer-complete-api"]], "Timer \u30af\u30e9\u30b9\u306e delay \u8a2d\u5b9a": [[222, "timer-delay"]], "\u5f15\u6570\u306e\u6982\u8981": [[222, "id1"], [224, "id1"], [233, "id1"]], "delay \u5f15\u6570\u306bFPS\u306eenum\u306e\u5024\u3092\u8a2d\u5b9a\u3059\u308b": [[222, "delay-fpsenum"]], "delay \u5c5e\u6027\u306eAPI": [[222, "delay-api"]], "TimerEvent \u30af\u30e9\u30b9": [[223, "timerevent"]], "this \u5c5e\u6027": [[223, "this"]], "TimerEvent \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[223, "timerevent-api"]], "Timer \u30af\u30e9\u30b9\u306e repeat_count \u8a2d\u5b9a": [[224, "timer-repeat-count"]], "repeat_count \u5c5e\u6027\u306eAPI": [[224, "repeat-count-api"]], "Timer \u30af\u30e9\u30b9\u306e reset \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[225, "timer-reset"]], "reset API": [[225, "reset-api"]], "Timer \u30af\u30e9\u30b9\u306e start \u3068 stop \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[226, "timer-start-stop"]], "stop API": [[226, "stop-api"]], "to_string \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[227, "to-string"]], "to_string \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[227, "to-string-api"]], "trace \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[228, "trace"]], "print\u95a2\u6570\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[228, "print"]], "trace API": [[228, "trace-api"]], "Triangle \u30af\u30e9\u30b9": [[229, "triangle"]], "draw_triangle \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[229, "draw-triangle"]], "x1\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[229, "x1"]], "y1\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[229, "y1"]], "x2\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[229, "x2"]], "y2\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[229, "y2"]], "x3\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[229, "x3"]], "y3\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[229, "y3"]], "Triangle \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[229, "triangle-api"]], "x1 \u5c5e\u6027\u306eAPI": [[229, "x1-api"]], "y1 \u5c5e\u6027\u306eAPI": [[229, "y1-api"]], "x2 \u5c5e\u6027\u306eAPI": [[229, "x2-api"]], "y2 \u5c5e\u6027\u306eAPI": [[229, "y2-api"]], "x3 \u5c5e\u6027\u306eAPI": [[229, "x3-api"]], "y3 \u5c5e\u6027\u306eAPI": [[229, "y3-api"]], "True_ \u3068 False_ \u306e\u5404\u5b9a\u6570": [[230, "true-false"]], "\u5404\u5b9a\u6570\u306e\u6982\u8981": [[230, "id1"]], "unbind_enter_frame \u3068 unbind_enter_frame_all \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[231, "unbind-enter-frame-unbind-enter-frame-all"]], "unbind_enter_frame \u306eAPI": [[231, "unbind-enter-frame-api"]], "unbind_enter_frame_all \u306eAPI": [[231, "unbind-enter-frame-all-api"]], "unset_debug_mode \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[232, "unset-debug-mode"]], "unset_debug_mode API": [[232, "unset-debug-mode-api"]], "variable_name_suffix \u306e\u5f15\u6570\u8a2d\u5b9a": [[233, "variable-name-suffix"]], "apysc \u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u73fe\u5728\u306e\u5b9f\u88c5\u3067\u3067\u304d\u308b\u3053\u3068": [[234, "apysc"]], "Python\u3092\u4f7f\u3063\u3066\u66f8\u304d\u3001\u305d\u308c\u3092HTML\u3078\u51fa\u529b\u30fb\u3082\u3057\u304f\u306fJupyter\u4e0a\u3067\u5229\u7528\u3059\u308b": [[234, "pythonhtmljupyter"]], "\u69d8\u3005\u306a\u7a2e\u985e\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u63cf\u753b": [[234, "id1"]], "\u5404\u7a2e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a": [[234, "id2"]], "\u30bf\u30a4\u30de\u30fc\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[234, "id3"]], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3088\u308b\u5404\u5c5e\u6027\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[234, "id4"]], "\u4f55\u6545 apysc \u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306fPython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30c7\u30fc\u30bf\u578b\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u306e\u304b": [[235, "apysc-python"]], "apysc \u3067\u306fPython\u3092JavaScript\u3078\u3068\u5909\u63db\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u3001\u5909\u6570\u306e\u5909\u5316\u3092\u8ffd\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": [[235, "apysc-pythonjavascript"]], "get_bounds \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[109, "get-bounds"]], "get_bounds \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[109, "get-bounds-api"], [183, "get-bounds-api"]], "RectangleGeom \u30af\u30e9\u30b9": [[183, "rectanglegeom"]], "\u5404\u5c5e\u6027\u306e\u5ea7\u6a19": [[183, "id3"]], "RectangleGeom \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[183, "rectanglegeom-api"]], "RectangleGeom \u30af\u30e9\u30b9\u306e left_x \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-left-x-api"]], "RectangleGeom \u30af\u30e9\u30b9\u306e center_x \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-center-x-api"]], "RectangleGeom \u30af\u30e9\u30b9\u306e right_x \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-right-x-api"]], "RectangleGeom \u30af\u30e9\u30b9\u306e top_y \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-top-y-api"]], "RectangleGeom \u30af\u30e9\u30b9\u306e center_y \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-center-y-api"]], "RectangleGeom \u30af\u30e9\u30b9\u306e bottom_y \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-bottom-y-api"]], "RectangleGeom \u30af\u30e9\u30b9\u306e width \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-width-api"]], "RectangleGeom \u306e height \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-height-api"]], "apysc \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8": [[146, "apysc"]], "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u95a2\u9023\u30ea\u30f3\u30af": [[146, "id1"]], "\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u5404\u30af\u30e9\u30b9": [[146, "id3"]], "\u51fa\u529b\u51e6\u7406": [[146, "id4"]], "\u5b50\u8981\u7d20\u95a2\u4fc2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[146, "id5"]], "apysc\u306e\u57fa\u672c\u7684\u306a\u5404\u30c7\u30fc\u30bf\u30af\u30e9\u30b9": [[146, "id6"]], "Boolean \u30af\u30e9\u30b9\u3068\u5404\u5b9a\u6570\u5024": [[146, "boolean"]], "Color \u30af\u30e9\u30b9\u3068\u5404\u5b9a\u6570": [[146, "color"]], "DisplayObject \u3068 GraphicsBase \u306e\u5404\u30af\u30e9\u30b9": [[146, "displayobject-graphicsbase"]], "\u5404\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u306e\u30af\u30e9\u30b9": [[146, "id7"]], "\u30c6\u30ad\u30b9\u30c8": [[146, "id8"]], "SVG \u30c6\u30ad\u30b9\u30c8": [[146, "svg"]], "\u5ea7\u6a19\u30fb\u30b5\u30a4\u30ba\u7b49\u306e\u30c7\u30fc\u30bf\u306e\u5404\u30af\u30e9\u30b9": [[146, "id9"]], "\u30de\u30b9\u30af": [[146, "id10"]], "\u30a4\u30d9\u30f3\u30c8\u306e\u5171\u901a\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[146, "id11"]], "MouseEvent \u30af\u30e9\u30b9\u3068\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a": [[146, "mouseevent"]], "\u6761\u4ef6\u5206\u5c90\u306e\u5236\u5fa1": [[146, "id12"]], "\u30eb\u30fc\u30d7": [[146, "id13"]], "\u30bf\u30a4\u30de\u30fc\u3068enter-frame": [[146, "enter-frame"]], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[146, "id14"]], "\u6570\u5b66": [[146, "id15"]], "\u305d\u306e\u4ed6\u306e\u64cd\u4f5c\u95a2\u4fc2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[146, "id16"]], "\u30c7\u30d0\u30c3\u30b0": [[146, "id17"]], "\u30c6\u30b9\u30c8": [[146, "id18"]], "\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3": [[146, "id19"]], "SvgText \u30af\u30e9\u30b9": [[206, "svgtext"]], "\u30c6\u30ad\u30b9\u30c8\u306eY\u5ea7\u6a19\u306e\u57fa\u6e96\u70b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[206, "y"]], "text \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[206, "text"], [207, "text"]], "font_size \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[206, "font-size"], [207, "font-size"]], "font_family \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[206, "font-family"], [207, "font-family"]], "leading \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[206, "leading"]], "align \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[206, "align"]], "bold \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[206, "bold"], [207, "bold"]], "italic \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[206, "italic"], [207, "italic"]], "\u62e1\u7e2e\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[206, "id4"]], "SvgText \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[206, "svgtext-api"]], "SvgTextSpan \u30af\u30e9\u30b9": [[207, "svgtextspan"]], "\u6539\u884c\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[207, "id3"]], "delta_x \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[207, "delta-x"]], "delta_y \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[207, "delta-y"]], "SvgTextSpan \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[207, "svgtextspan-api"]], "SvgText \u30af\u30e9\u30b9\u306e create_with_svg_text_spans \u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306eAPI": [[207, "svgtext-create-with-svg-text-spans-api"]]}, "indexentries": {}}) \ No newline at end of file +Search.setIndex({"docnames": ["jp_about_handler_options_type", "jp_add_child_and_remove_child", "jp_add_debug_info_setting", "jp_animation_base_start", "jp_animation_base_target", "jp_animation_complete", "jp_animation_delay", "jp_animation_duration", "jp_animation_event", "jp_animation_fill_alpha", "jp_animation_fill_color", "jp_animation_finish", "jp_animation_interfaces_abstract", "jp_animation_line_alpha", "jp_animation_line_color", "jp_animation_line_thickness", "jp_animation_method_chaining", "jp_animation_move", "jp_animation_parallel", "jp_animation_pause_and_play", "jp_animation_radius", "jp_animation_reset", "jp_animation_return_value", "jp_animation_reverse", "jp_animation_rotation_around_center", "jp_animation_rotation_around_point", "jp_animation_scale_x_and_y_from_center", "jp_animation_scale_x_and_y_from_point", "jp_animation_time", "jp_animation_width_and_height", "jp_animation_x", "jp_animation_y", "jp_append_js_expression", "jp_array", "jp_array_append_and_push", "jp_array_clear", "jp_array_comparison", "jp_array_extend_and_concat", "jp_array_index_of", "jp_array_insert_and_insert_at", "jp_array_join", "jp_array_last_value", "jp_array_length", "jp_array_pop", "jp_array_remove_and_remove_at", "jp_array_reverse", "jp_array_slice", "jp_array_sort", "jp_assert_arrays_equal_and_arrays_not_equal", "jp_assert_defined_and_undefined", "jp_assert_dicts_equal_and_dicts_not_equal", "jp_assert_equal_and_not_equal", "jp_assert_greater_and_greater_equal", "jp_assert_less_and_less_equal", "jp_assert_true_and_false", "jp_assertion_basic_behavior", "jp_bind_and_trigger_custom_event", "jp_blue_color", "jp_boolean", "jp_branch_instruction_variables_reverting_setting", "jp_circle", "jp_click", "jp_color", "jp_color_from_rgb", "jp_colorless", "jp_colors", "jp_contains", "jp_continue", "jp_datetime", "jp_datetime_day", "jp_datetime_hour", "jp_datetime_millisecond", "jp_datetime_minute", "jp_datetime_month", "jp_datetime_now", "jp_datetime_second", "jp_datetime_set_month_end", "jp_datetime_weekday_js_and_weekday_py", "jp_datetime_year", "jp_dblclick", "jp_delete", "jp_dictionary", "jp_dictionary_generic", "jp_dictionary_get", "jp_dictionary_length", "jp_display_object", "jp_display_object_and_graphics_base_prop_abstract", "jp_display_object_get_and_set_css", "jp_display_object_mouse_event", "jp_display_object_parent", "jp_display_object_visible", "jp_display_object_x_and_y", "jp_display_on_colaboratory", "jp_display_on_jupyter", "jp_draw_interfaces_abstract", "jp_easing_enum", "jp_elif", "jp_ellipse", "jp_else", "jp_enter_frame", "jp_event_prevent_default_and_stop_propagation", "jp_for_array_indices", "jp_for_array_indices_and_values", "jp_for_array_values", "jp_for_dict_keys", "jp_for_dict_keys_and_values", "jp_for_dict_values", "jp_fps", "jp_fundamental_data_classes_value_interface", "jp_get_bounds", "jp_get_child_at", "jp_graphics", "jp_graphics_base_fill_alpha", "jp_graphics_base_fill_color", "jp_graphics_base_flip_interfaces", "jp_graphics_base_line_alpha", "jp_graphics_base_line_color", "jp_graphics_base_line_dash_dot_setting", "jp_graphics_base_line_dash_setting", "jp_graphics_base_line_dot_setting", "jp_graphics_base_line_round_dot_setting", "jp_graphics_base_line_thickness", "jp_graphics_base_rotation_around_center", "jp_graphics_base_rotation_around_point", "jp_graphics_base_scale_from_center", "jp_graphics_base_scale_from_point", "jp_graphics_base_skew", "jp_graphics_begin_fill", "jp_graphics_clear", "jp_graphics_draw_circle", "jp_graphics_draw_dash_dotted_line", "jp_graphics_draw_dashed_line", "jp_graphics_draw_dotted_line", "jp_graphics_draw_ellipse", "jp_graphics_draw_line", "jp_graphics_draw_path", "jp_graphics_draw_polygon", "jp_graphics_draw_rect", "jp_graphics_draw_round_dotted_line", "jp_graphics_draw_round_rect", "jp_graphics_draw_triangle", "jp_graphics_line_style", "jp_graphics_move_to_and_line_to", "jp_green_color", "jp_if", "jp_import_conventions", "jp_index", "jp_int_and_number", "jp_int_and_number_arithmetic_operations", "jp_int_and_number_comparison_operations", "jp_int_and_number_to_fixed", "jp_int_and_number_to_hex", "jp_line", "jp_material_design_colors", "jp_material_icon", "jp_math_clamp", "jp_math_max", "jp_math_min", "jp_math_trunc", "jp_mouse_event_abstract", "jp_mouse_event_basic", "jp_mousedown_and_mouseup", "jp_mousemove", "jp_mouseover_and_mouseout", "jp_multi_line_text", "jp_num_children", "jp_path", "jp_path_bezier_2d", "jp_path_bezier_2d_continual", "jp_path_bezier_3d", "jp_path_bezier_3d_continual", "jp_path_close", "jp_path_horizontal", "jp_path_line_to", "jp_path_move_to", "jp_path_vertical", "jp_point2d", "jp_polygon", "jp_polyline", "jp_quick_start", "jp_range", "jp_recommended_type_checker_settings", "jp_rectangle", "jp_rectangle_geom", "jp_red_color", "jp_remove_children", "jp_return", "jp_save_overall_html", "jp_sequential_animation", "jp_set_debug_mode", "jp_sprite", "jp_stage", "jp_string", "jp_string_addition_and_multiplication", "jp_string_apply_max_num_of_decimal_places", "jp_string_comparison_operations", "jp_string_length", "jp_string_lower", "jp_string_lstrip", "jp_string_rstrip", "jp_string_slice", "jp_string_split", "jp_string_strip", "jp_string_upper", "jp_string_zfill", "jp_svg_mask", "jp_svg_text", "jp_svg_text_span", "jp_text_align", "jp_text_align_last", "jp_text_bold", "jp_text_fill_alpha", "jp_text_fill_color", "jp_text_font_size", "jp_text_italic", "jp_text_line_height", "jp_text_underline", "jp_timedelta", "jp_timedelta_days", "jp_timedelta_total_seconds", "jp_timer", "jp_timer_complete", "jp_timer_delay", "jp_timer_event", "jp_timer_repeat_count", "jp_timer_reset", "jp_timer_start_and_stop", "jp_to_string", "jp_trace", "jp_triangle", "jp_true_and_false", "jp_unbind_enter_frame_and_unbind_enter_frame_all", "jp_unset_debug_mode", "jp_variable_name_suffix", "jp_what_apysc_can_do", "jp_why_apysc_doesnt_use_python_builtin_data_type"], "filenames": ["jp_about_handler_options_type.md", "jp_add_child_and_remove_child.md", "jp_add_debug_info_setting.md", "jp_animation_base_start.md", "jp_animation_base_target.md", "jp_animation_complete.md", "jp_animation_delay.md", "jp_animation_duration.md", "jp_animation_event.md", "jp_animation_fill_alpha.md", "jp_animation_fill_color.md", "jp_animation_finish.md", "jp_animation_interfaces_abstract.md", "jp_animation_line_alpha.md", "jp_animation_line_color.md", "jp_animation_line_thickness.md", "jp_animation_method_chaining.md", "jp_animation_move.md", "jp_animation_parallel.md", "jp_animation_pause_and_play.md", "jp_animation_radius.md", "jp_animation_reset.md", "jp_animation_return_value.md", "jp_animation_reverse.md", "jp_animation_rotation_around_center.md", "jp_animation_rotation_around_point.md", "jp_animation_scale_x_and_y_from_center.md", "jp_animation_scale_x_and_y_from_point.md", "jp_animation_time.md", "jp_animation_width_and_height.md", "jp_animation_x.md", "jp_animation_y.md", "jp_append_js_expression.md", "jp_array.md", "jp_array_append_and_push.md", "jp_array_clear.md", "jp_array_comparison.md", "jp_array_extend_and_concat.md", "jp_array_index_of.md", "jp_array_insert_and_insert_at.md", "jp_array_join.md", "jp_array_last_value.md", "jp_array_length.md", "jp_array_pop.md", "jp_array_remove_and_remove_at.md", "jp_array_reverse.md", "jp_array_slice.md", "jp_array_sort.md", "jp_assert_arrays_equal_and_arrays_not_equal.md", "jp_assert_defined_and_undefined.md", "jp_assert_dicts_equal_and_dicts_not_equal.md", "jp_assert_equal_and_not_equal.md", "jp_assert_greater_and_greater_equal.md", "jp_assert_less_and_less_equal.md", "jp_assert_true_and_false.md", "jp_assertion_basic_behavior.md", "jp_bind_and_trigger_custom_event.md", "jp_blue_color.md", "jp_boolean.md", "jp_branch_instruction_variables_reverting_setting.md", "jp_circle.md", "jp_click.md", "jp_color.md", "jp_color_from_rgb.md", "jp_colorless.md", "jp_colors.md", "jp_contains.md", "jp_continue.md", "jp_datetime.md", "jp_datetime_day.md", "jp_datetime_hour.md", "jp_datetime_millisecond.md", "jp_datetime_minute.md", "jp_datetime_month.md", "jp_datetime_now.md", "jp_datetime_second.md", "jp_datetime_set_month_end.md", "jp_datetime_weekday_js_and_weekday_py.md", "jp_datetime_year.md", "jp_dblclick.md", "jp_delete.md", "jp_dictionary.md", "jp_dictionary_generic.md", "jp_dictionary_get.md", "jp_dictionary_length.md", "jp_display_object.md", "jp_display_object_and_graphics_base_prop_abstract.md", "jp_display_object_get_and_set_css.md", "jp_display_object_mouse_event.md", "jp_display_object_parent.md", "jp_display_object_visible.md", "jp_display_object_x_and_y.md", "jp_display_on_colaboratory.md", "jp_display_on_jupyter.md", "jp_draw_interfaces_abstract.md", "jp_easing_enum.md", "jp_elif.md", "jp_ellipse.md", "jp_else.md", "jp_enter_frame.md", "jp_event_prevent_default_and_stop_propagation.md", "jp_for_array_indices.md", "jp_for_array_indices_and_values.md", "jp_for_array_values.md", "jp_for_dict_keys.md", "jp_for_dict_keys_and_values.md", "jp_for_dict_values.md", "jp_fps.md", "jp_fundamental_data_classes_value_interface.md", "jp_get_bounds.md", "jp_get_child_at.md", "jp_graphics.md", "jp_graphics_base_fill_alpha.md", "jp_graphics_base_fill_color.md", "jp_graphics_base_flip_interfaces.md", "jp_graphics_base_line_alpha.md", "jp_graphics_base_line_color.md", "jp_graphics_base_line_dash_dot_setting.md", "jp_graphics_base_line_dash_setting.md", "jp_graphics_base_line_dot_setting.md", "jp_graphics_base_line_round_dot_setting.md", "jp_graphics_base_line_thickness.md", "jp_graphics_base_rotation_around_center.md", "jp_graphics_base_rotation_around_point.md", "jp_graphics_base_scale_from_center.md", "jp_graphics_base_scale_from_point.md", "jp_graphics_base_skew.md", "jp_graphics_begin_fill.md", "jp_graphics_clear.md", "jp_graphics_draw_circle.md", "jp_graphics_draw_dash_dotted_line.md", "jp_graphics_draw_dashed_line.md", "jp_graphics_draw_dotted_line.md", "jp_graphics_draw_ellipse.md", "jp_graphics_draw_line.md", "jp_graphics_draw_path.md", "jp_graphics_draw_polygon.md", "jp_graphics_draw_rect.md", "jp_graphics_draw_round_dotted_line.md", "jp_graphics_draw_round_rect.md", "jp_graphics_draw_triangle.md", "jp_graphics_line_style.md", "jp_graphics_move_to_and_line_to.md", "jp_green_color.md", "jp_if.md", "jp_import_conventions.md", "jp_index.md", "jp_int_and_number.md", "jp_int_and_number_arithmetic_operations.md", "jp_int_and_number_comparison_operations.md", "jp_int_and_number_to_fixed.md", "jp_int_and_number_to_hex.md", "jp_line.md", "jp_material_design_colors.md", "jp_material_icon.md", "jp_math_clamp.md", "jp_math_max.md", "jp_math_min.md", "jp_math_trunc.md", "jp_mouse_event_abstract.md", "jp_mouse_event_basic.md", "jp_mousedown_and_mouseup.md", "jp_mousemove.md", "jp_mouseover_and_mouseout.md", "jp_multi_line_text.md", "jp_num_children.md", "jp_path.md", "jp_path_bezier_2d.md", "jp_path_bezier_2d_continual.md", "jp_path_bezier_3d.md", "jp_path_bezier_3d_continual.md", "jp_path_close.md", "jp_path_horizontal.md", "jp_path_line_to.md", "jp_path_move_to.md", "jp_path_vertical.md", "jp_point2d.md", "jp_polygon.md", "jp_polyline.md", "jp_quick_start.md", "jp_range.md", "jp_recommended_type_checker_settings.md", "jp_rectangle.md", "jp_rectangle_geom.md", "jp_red_color.md", "jp_remove_children.md", "jp_return.md", "jp_save_overall_html.md", "jp_sequential_animation.md", "jp_set_debug_mode.md", "jp_sprite.md", "jp_stage.md", "jp_string.md", "jp_string_addition_and_multiplication.md", "jp_string_apply_max_num_of_decimal_places.md", "jp_string_comparison_operations.md", "jp_string_length.md", "jp_string_lower.md", "jp_string_lstrip.md", "jp_string_rstrip.md", "jp_string_slice.md", "jp_string_split.md", "jp_string_strip.md", "jp_string_upper.md", "jp_string_zfill.md", "jp_svg_mask.md", "jp_svg_text.md", "jp_svg_text_span.md", "jp_text_align.md", "jp_text_align_last.md", "jp_text_bold.md", "jp_text_fill_alpha.md", "jp_text_fill_color.md", "jp_text_font_size.md", "jp_text_italic.md", "jp_text_line_height.md", "jp_text_underline.md", "jp_timedelta.md", "jp_timedelta_days.md", "jp_timedelta_total_seconds.md", "jp_timer.md", "jp_timer_complete.md", "jp_timer_delay.md", "jp_timer_event.md", "jp_timer_repeat_count.md", "jp_timer_reset.md", "jp_timer_start_and_stop.md", "jp_to_string.md", "jp_trace.md", "jp_triangle.md", "jp_true_and_false.md", "jp_unbind_enter_frame_and_unbind_enter_frame_all.md", "jp_unset_debug_mode.md", "jp_variable_name_suffix.md", "jp_what_apysc_can_do.md", "jp_why_apysc_doesnt_use_python_builtin_data_type.md"], "titles": ["\u30cf\u30f3\u30c9\u30e9\u306eoptions\u5f15\u6570\u306e\u578b\u306b\u3064\u3044\u3066", "add_child \u3068 remove_child \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "add_debug_info_setting \u306e\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "AnimationBase\u30af\u30e9\u30b9 start \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "AnimationBase \u30af\u30e9\u30b9 target \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "AnimationBase \u30af\u30e9\u30b9 animation_complete \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306edelay\u306e\u8a2d\u5b9a", "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306eduration\u8a2d\u5b9a", "AnimationEvent \u30af\u30e9\u30b9", "animation_fill_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_fill_color \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_finish \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981", "animation_line_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_line_color \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_line_thickness \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "AnimationBase \u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3", "animation_move \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_parallel \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_pause \u3068 animation_play \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_radius \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_reset \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8fd4\u5374\u5024", "animation_reverse \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_rotation_around_center \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_rotation_around_point \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_scale_x_from_center \u3068 animation_scale_y_from_center \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_scale_x_from_point \u3068 animation_scale_y_from_point \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_time \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_width \u3068 animation_height \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_x \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "animation_y \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "append_js_expression \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9", "Array \u30af\u30e9\u30b9\u306e append \u3068 push \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e clear \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e extend \u3068 concat \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e index_of \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e insert \u3068 insert_at \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e join \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e last_value \u30d7\u30ed\u30d1\u30c6\u30a3", "Array \u30af\u30e9\u30b9\u306e length \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e pop \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e remove \u3068 remove_at \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e reverse \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e slice \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Array \u30af\u30e9\u30b9\u306e sort \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "assert_arrays_equal \u3068 assert_arrays_not_equal \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "assert_defined \u3068 assert_undefined \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "assert_dicts_equal \u3068 assert_dicts_not_equal \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "assert_equal \u3068 assert_not_equal \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "assert_greater \u3068 assert_greater_equal \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "assert_less \u3068 assert_less_equal \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "assert_true \u3068 assert_false \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "JavaScript \u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u6319\u52d5", "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u767b\u9332\u3068\u30a4\u30d9\u30f3\u30c8\u306e\u767a\u751f\uff08\u767a\u706b\uff09\u5236\u5fa1", "Color \u30af\u30e9\u30b9\u306e blue_color \u30d7\u30ed\u30d1\u30c6\u30a3", "Boolean \u30af\u30e9\u30b9", "\u5404\u5206\u5c90\u5236\u5fa1\u306e\u30af\u30e9\u30b9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5909\u6570\u5024\u306e\u5fa9\u5143\u8a2d\u5b9a", "Circle \u30af\u30e9\u30b9", "click \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Color \u30af\u30e9\u30b9", "Color \u30af\u30e9\u30b9\u306e from_rgb \u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9", "COLORLESS \u5b9a\u6570", "Colors \u30af\u30e9\u30b9", "contains \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Continue \u30af\u30e9\u30b9", "DateTime \u30af\u30e9\u30b9", "DateTime \u30af\u30e9\u30b9\u306e day \u5c5e\u6027", "DateTime \u30af\u30e9\u30b9\u306e hour \u5c5e\u6027", "DateTime \u30af\u30e9\u30b9\u306e millisecond \u5c5e\u6027", "DateTime \u30af\u30e9\u30b9\u306e minute \u5c5e\u6027", "DateTime \u30af\u30e9\u30b9\u306e month \u5c5e\u6027", "DateTime \u30af\u30e9\u30b9\u306e now \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "DateTime \u30af\u30e9\u30b9\u306e second \u5c5e\u6027", "DateTime \u30af\u30e9\u30b9\u306e set_month_end \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "DateTime \u30af\u30e9\u30b9\u306e weekday_js \u3068 weekday_py \u5c5e\u6027", "DateTime \u30af\u30e9\u30b9\u306e year \u5c5e\u6027", "dblclick \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "delete \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Dictionary \u30af\u30e9\u30b9", "Dictionary \u30af\u30e9\u30b9\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a", "Dictionary \u30af\u30e9\u30b9\u306e get \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Dictionary \u30af\u30e9\u30b9\u306e length \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "DisplayObject \u30af\u30e9\u30b9", "DisplayObject \u3068 GraphicsBase \u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u5c5e\u6027\u306e\u6982\u8981", "DisplayObject \u30af\u30e9\u30b9\u306e get_css \u3068 set_css \u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "DisplayObject \u30af\u30e9\u30b9\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "DisplayObject \u30af\u30e9\u30b9\u306e parent \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "DisplayObject \u30af\u30e9\u30b9\u306e visible \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "DisplayObject \u30af\u30e9\u30b9\u306e x \u3068 y \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "display_on_colaboratory \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "display_on_jupyter \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981", "\u30a4\u30fc\u30b8\u30f3\u30b0\u306eenum", "Elif \u30af\u30e9\u30b9", "Ellipse \u30af\u30e9\u30b9", "Else \u30af\u30e9\u30b9", "enter_frame \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Event \u30af\u30e9\u30b9\u306e prevent_default \u3068 stop_propagation \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "ForArrayIndices \u30af\u30e9\u30b9", "ForArrayIndicesAndValues \u30af\u30e9\u30b9", "ForArrayValues \u30af\u30e9\u30b9", "ForDictKeys \u30af\u30e9\u30b9", "ForDictKeysAndValues \u30af\u30e9\u30b9", "ForDictValues \u30af\u30e9\u30b9", "FPS \u306e enum", "apysc \u306e\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u578b\u306e value \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "get_bounds \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "get_child_at \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e fill_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e fill_color \u5c5e\u6027", "GraphicsBase \u30af\u30e9\u30b9\u306e flip_x \u3068 flip_y \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e line_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e line_color \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e line_dash_dot_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e line_dash_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e line_dot_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e line_round_dot_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e line_thickness \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e rotation_around_center \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e rotation_around_point \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e scale_x_from_center \u3068 scale_y_from_center \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e get_scale_from_point \u3068 set_scale_from_point \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "GraphicsBase \u30af\u30e9\u30b9\u306e skew_x \u3068 skew_y \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e begin_fill \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e clear \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_circle \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_dash_dotted_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_dashed_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_dotted_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_ellipse \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_path \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_polygon \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_rect \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_round_dotted_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_round_rect \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e draw_triangle \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e line_style \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Graphics \u30af\u30e9\u30b9\u306e move_to \u3068 line_to \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Color \u30af\u30e9\u30b9\u306e green_color \u30d7\u30ed\u30d1\u30c6\u30a3", "If \u30af\u30e9\u30b9", "import \u306e\u6163\u7fd2", "apysc \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8", "Int \u3068 Number \u30af\u30e9\u30b9", "Int \u3068 Number \u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u8a08\u7b97\u5236\u5fa1", "Int \u3068 Number \u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u6bd4\u8f03\u5236\u5fa1", "Int \u3068 Number \u30af\u30e9\u30b9\u306e to_fixed \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Int \u3068 Number \u30af\u30e9\u30b9\u306e to_hex \u30e1\u30bd\u30c3\u30c9", "Line \u30af\u30e9\u30b9", "MaterialDesignColors \u30af\u30e9\u30b9", "\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3", "Math \u30af\u30e9\u30b9\u306e clamp \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Math \u30af\u30e9\u30b9\u306e max \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Math \u30af\u30e9\u30b9\u306e min \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Math \u30af\u30e9\u30b9\u306e trunc \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "MouseEvent \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981", "\u57fa\u672c\u7684\u306a\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "mousedown \u3068 mouseup \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "mousemove \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "mouseover \u3068 mouseout \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "MultiLineText \u30af\u30e9\u30b9", "num_children \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Path \u30af\u30e9\u30b9", "PathBezier2D \u30af\u30e9\u30b9", "PathBezier2DContinual \u30af\u30e9\u30b9", "PathBezier3D \u30af\u30e9\u30b9", "PathBezier3DContinual \u30af\u30e9\u30b9", "PathClose \u30af\u30e9\u30b9", "PathHorizontal \u30af\u30e9\u30b9", "PathLineTo \u30af\u30e9\u30b9", "PathMoveTo \u30af\u30e9\u30b9", "PathVertical \u30af\u30e9\u30b9", "Point2D \u30af\u30e9\u30b9", "Polygon \u30af\u30e9\u30b9", "Polyline \u30af\u30e9\u30b9", "\u30af\u30a4\u30c3\u30af\u30b9\u30bf\u30fc\u30c8\u30ac\u30a4\u30c9", "range \u95a2\u6570", "\u63a8\u5968\u3055\u308c\u308b\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306e\u30c1\u30a7\u30c3\u30af\u8a2d\u5b9a", "Rectangle \u30af\u30e9\u30b9", "RectangleGeom \u30af\u30e9\u30b9", "Color \u30af\u30e9\u30b9\u306e red_color \u30d7\u30ed\u30d1\u30c6\u30a3", "remove_children \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Return \u30af\u30e9\u30b9", "save_overall_html \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "\u9023\u7d9a\u3057\u305f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a", "set_debug_mode \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Sprite\u30af\u30e9\u30b9", "Stage \u30af\u30e9\u30b9", "String \u30af\u30e9\u30b9", "String \u30af\u30e9\u30b9\u306e\u52a0\u7b97\u3068\u4e57\u7b97\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3", "String \u30af\u30e9\u30b9\u306e apply_max_num_of_decimal_places \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "String \u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3", "String \u30af\u30e9\u30b9\u306e length \u5c5e\u6027", "String \u30af\u30e9\u30b9\u306e lower \u30e1\u30bd\u30c3\u30c9", "String \u30af\u30e9\u30b9\u306e lstrip \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "String \u30af\u30e9\u30b9\u306e rstrip \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "String \u30af\u30e9\u30b9\u306e slice \u30e1\u30bd\u30c3\u30c9", "String \u30af\u30e9\u30b9\u306e split \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "String \u30af\u30e9\u30b9\u306e strip \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "String \u30af\u30e9\u30b9\u306e upper \u30e1\u30bd\u30c3\u30c9", "String \u30af\u30e9\u30b9\u306e zfill \u30e1\u30bd\u30c3\u30c9", "SvgMask \u30af\u30e9\u30b9\u3068\u95a2\u9023\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9", "SvgText \u30af\u30e9\u30b9", "SvgTextSpan \u30af\u30e9\u30b9", "text_align \u5c5e\u6027", "text_align_last \u5c5e\u6027", "\u30c6\u30ad\u30b9\u30c8\u306e bold \u5c5e\u6027", "\u30c6\u30ad\u30b9\u30c8\u306e fill_alpha \u5c5e\u6027", "\u30c6\u30ad\u30b9\u30c8\u306e fill_color \u5c5e\u6027", "\u30c6\u30ad\u30b9\u30c8\u306e font_size \u5c5e\u6027", "\u30c6\u30ad\u30b9\u30c8\u306e italic \u5c5e\u6027", "\u30c6\u30ad\u30b9\u30c8\u306e line_height \u5c5e\u6027", "\u30c6\u30ad\u30b9\u30c8\u306e underline \u5c5e\u6027", "TimeDelta \u30af\u30e9\u30b9", "TimeDelta \u30af\u30e9\u30b9\u306e days \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "TimeDelta \u30af\u30e9\u30b9\u306e total_seconds \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Timer \u30af\u30e9\u30b9", "Timer \u30af\u30e9\u30b9\u306e timer_complete \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Timer \u30af\u30e9\u30b9\u306e delay \u8a2d\u5b9a", "TimerEvent \u30af\u30e9\u30b9", "Timer \u30af\u30e9\u30b9\u306e repeat_count \u8a2d\u5b9a", "Timer \u30af\u30e9\u30b9\u306e reset \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Timer \u30af\u30e9\u30b9\u306e start \u3068 stop \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "to_string \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "trace \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "Triangle \u30af\u30e9\u30b9", "True_ \u3068 False_ \u306e\u5404\u5b9a\u6570", "unbind_enter_frame \u3068 unbind_enter_frame_all \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "unset_debug_mode \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9", "variable_name_suffix \u306e\u5f15\u6570\u8a2d\u5b9a", "apysc \u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u73fe\u5728\u306e\u5b9f\u88c5\u3067\u3067\u304d\u308b\u3053\u3068", "\u4f55\u6545 apysc \u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306fPython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30c7\u30fc\u30bf\u578b\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u306e\u304b"], "terms": {"\u3053\u306e\u7ffb\u8a33\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306f\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u3088\u3063\u3066\u51fa\u529b": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "\u540c\u671f\u3055\u308c\u3066\u3044\u307e\u3059": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "\u5185\u5bb9\u304c\u602a\u3057\u305d\u3046\u306a\u5834\u5408\u306f": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "github\u306bissu": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "\u3092\u8ffd\u52a0\u3057\u305f\u308a": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "\u82f1\u8a9e\u306e\u539f\u6587": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "\u306e\u78ba\u8a8d\u3092\u304a\u9858\u3044\u3057\u307e\u3059": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e": 0, "option": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 48, 49, 50, 51, 52, 53, 54, 56, 60, 61, 66, 68, 74, 79, 80, 83, 86, 87, 88, 90, 91, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 150, 152, 154, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 191, 194, 198, 199, 200, 202, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "\u5f15\u6570\u306e\u578b\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 0, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb\u306e\u3088\u3046\u306b": 0, "\u5f15\u6570\u306f\u8f9e\u66f8\u306e\u578b\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 0, "runnabl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234], "from": [0, 1, 11, 12, 19, 21, 23, 26, 27, 28, 56, 65, 66, 74, 82, 83, 86, 87, 89, 90, 91, 95, 107, 114, 123, 124, 125, 126, 134, 141, 142, 153, 160, 220, 221, 222, 223, 224, 225, 226, 233, 234], "type": [0, 18, 33, 56, 65, 82, 83, 85, 102, 103, 104, 105, 106, 148, 153], "import": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "dict": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 50, 56, 60, 61, 66, 74, 79, 80, 81, 87, 88, 90, 91, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 144, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "apysc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233], "ap": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "stage": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "def": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 191, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "on_tim": [0, 11, 19, 21, 23, 28, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 152, 166, 177, 178, 182, 186, 206, 220, 221, 222, 223, 224, 225, 226, 229, 234], "e": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 96, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "timerev": [0, 11, 19, 21, 23, 28, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 186, 206, 220, 221, 222, 224, 225, 226, 229, 234], "str": [0, 32, 33, 40, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 63, 65, 68, 74, 79, 81, 82, 87, 92, 93, 96, 97, 98, 101, 102, 103, 104, 105, 106, 108, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 144, 147, 150, 151, 152, 153, 154, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 187, 190, 191, 192, 193, 194, 195, 198, 199, 200, 202, 205, 206, 207, 221, 229], "none": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 39, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 66, 67, 68, 74, 79, 80, 81, 83, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 127, 128, 133, 137, 140, 141, 142, 144, 147, 152, 154, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 185, 186, 187, 189, 190, 191, 192, 198, 199, 200, 202, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234], "The": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 67, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 141, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 191, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "handler": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "timer": [0, 11, 19, 21, 23, 28, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 186, 206, 223, 229, 234], "call": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 66, 79, 80, 86, 87, 88, 90, 91, 95, 100, 107, 111, 113, 114, 116, 123, 124, 125, 126, 133, 137, 142, 159, 160, 161, 162, 163, 165, 186, 190, 220, 221, 222, 223, 224, 225, 226, 228, 233, 234], "paramet": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "event": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 146, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "instanc": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 42, 56, 60, 61, 66, 74, 79, 80, 84, 85, 86, 87, 88, 89, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 140, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 205, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234], "argument": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 137, 138, 140, 142, 152, 159, 160, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 189, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234], "dictionari": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 50, 56, 60, 66, 74, 79, 80, 86, 87, 88, 90, 91, 95, 97, 99, 100, 104, 105, 106, 107, 111, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 133, 140, 152, 159, 161, 162, 163, 165, 166, 177, 178, 182, 185, 186, 190, 206, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 234, 235], "trace": [0, 5, 8, 16, 28, 66, 74, 98, 100, 144, 146, 160, 162, 165, 221, 223, 233], "msg": [0, 48, 49, 50, 51, 52, 53, 54, 55], "delai": [0, 3, 6, 9, 10, 11, 12, 13, 14, 15, 17, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 56, 60, 86, 87, 97, 107, 114, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 188, 206, 220, 221, 223, 224, 225, 226, 229, 234], "1000": [0, 5, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 60, 86, 87, 95, 97, 114, 152, 166, 177, 178, 182, 188, 206, 225, 229], "hello": [0, 32, 192, 193, 195, 196, 197, 203, 206, 207, 228, 230], "start": [0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 46, 56, 60, 86, 87, 95, 97, 107, 114, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 188, 189, 200, 206, 207, 220, 221, 222, 223, 224, 225, 229, 232, 234], "\u901a\u5e38\u306e\u8f9e\u66f8\u306e\u4ee3\u308f\u308a\u306b": 0, "typeddict": [0, 1, 11, 12, 19, 21, 23, 26, 27, 28, 56, 66, 86, 87, 90, 95, 107, 114, 123, 124, 125, 126, 160, 220, 221, 222, 223, 224, 225, 226, 234], "\u3092\u4f7f\u3063\u305f\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306f\u53ef\u8aad\u6027\u306e\u5411\u4e0a\u306b\u5f79\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 0, "apysc\u3067\u306foptions\u5f15\u6570\u306btypeddict\u306b\u3088\u308b\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u304a\u308a": 0, "\u5b9f\u969b\u306b\u6e21\u3057\u305foptions\u306e\u8f9e\u66f8\u306e\u578b\u3068\u30cf\u30f3\u30c9\u30e9\u306etypeddict\u306b\u3088\u308b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u9593\u3067\u578b\u30c1\u30a7\u30c3\u30af\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 0, "typing_extens": [0, 1, 11, 12, 19, 21, 23, 26, 27, 28, 56, 58, 66, 86, 87, 90, 95, 107, 114, 123, 124, 125, 126, 160, 220, 221, 222, 223, 224, 225, 226, 234], "class": [0, 1, 2, 11, 12, 18, 19, 21, 23, 26, 27, 28, 56, 66, 67, 86, 87, 90, 95, 107, 114, 123, 124, 125, 126, 160, 189, 220, 221, 222, 223, 224, 225, 226, 232, 234], "_msgoption": 0, "\u7279\u8a18\u4e8b\u9805": [0, 1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 82, 83, 84, 87, 89, 90, 91, 92, 97, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231], "\u3082\u3057python3": [0, 82], "8\u3082\u3057\u304f\u306f\u305d\u308c\u4ee5\u964d\u306epython\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u304a\u4f7f\u3044\u306e\u5834\u5408\u306b\u306f": 0, "\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4ee3\u308f\u308a\u306b": 0, "\u30d1\u30c3\u30b1\u30fc\u30b8\u304b\u3089": 0, "\u3092import\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 0, "\u4f8b": [0, 4, 22, 55, 62, 78, 87, 93, 94, 96, 98, 101, 102, 103, 104, 105, 106, 127, 141, 145, 148, 150, 151, 154, 159, 160, 180, 191, 205, 206, 207, 232, 233], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306fgraphics\u30af\u30e9\u30b9\u3084sprit": 1, "stage\u30af\u30e9\u30b9\u306a\u3069\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u3068\u3057\u3066\u6271\u3048\u308b\u30af\u30e9\u30b9\u304c\u6301\u3064": 1, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [1, 18, 79, 162], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u5b50\u3068\u306a\u308b\u5404": 1, "displayobject": [1, 8, 17, 18, 29, 30, 31, 61, 66, 79, 80, 109, 110, 111, 160, 161, 162, 163, 183, 189, 190, 191, 205], "\u3092\u7d99\u627f\u3057\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8ffd\u52a0\u3057": 1, "\u9006\u306b": [1, 48, 49, 50, 51, 54, 61, 126, 161, 163, 226], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30b3\u30f3\u30c6\u30ca\u30fc\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 1, "apysc\u3067\u306f\u53d6\u308a\u9664\u304b\u308c\u305f\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u8868\u793a\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3059": 1, "apysc\u3067\u306f\u5404": 1, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e\u6642\u70b9\u3067\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u81ea\u52d5\u3067\u8ffd\u52a0\u3055\u308c\u307e\u3059": 1, "\u4f8b\u3048\u3070": [1, 3, 7, 8, 22, 62, 67, 68, 76, 80, 82, 100, 107, 140, 155, 160, 183, 188, 194, 196, 207, 209, 220, 221, 222, 224, 233], "sprite": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 66, 67, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 99, 100, 107, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 145, 146, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 179, 185, 186, 188, 189, 190, 191, 205, 206, 220, 221, 222, 223, 224, 225, 226, 228, 232, 234], "\u30af\u30e9\u30b9\u3067\u3042\u308c\u3070": 1, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u89aa\u3068\u3057\u3066\u8ffd\u52a0\u3055\u308c": 1, "\u30af\u30e9\u30b9\u3092\u89aa\u3068\u3057\u3066\u5185\u90e8\u3067\u4f5c\u6210\u3055\u308c\u308b": 1, "graphic": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 66, 67, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 100, 107, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 152, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 185, 186, 188, 190, 191, 220, 221, 222, 223, 224, 225, 226, 228, 229, 234], "\u30d7\u30ed\u30d1\u30c6\u30a3\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 1, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u81ea\u52d5\u3067\u8ffd\u52a0\u3055\u308c\u307e\u3059": 1, "\u3082\u3057\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8abf\u6574\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u624b\u52d5\u3067": 1, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3076\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 1, "\u4f8b\u3048\u3070\u89aa\u3068\u3057\u3066\u306e\u3068\u3042\u308b": 1, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u5225\u306e": 1, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u5b50\u3092\u79fb\u3057\u305f\u3044\u5834\u5408\u306a\u3069\u304c\u8a72\u5f53\u3057\u307e\u3059": 1, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u5b50\u3092\u89aa\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u8981\u7d20\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 1, "apysc\u306f\u53d6\u308a\u9664\u304b\u308c\u305f": 1, "\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8868\u793a\u3057\u307e\u305b\u3093": 1, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306e\u30cf\u30f3\u30c9\u30e9\u5185\u3067": 1, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u3066\u304a\u308a": 1, "\u30af\u30ea\u30c3\u30af\u6642\u306b\u56db\u89d2\u304c\u753b\u9762\u304b\u3089\u53d6\u308a\u9664\u304b\u308c\u307e\u3059": 1, "_rectopt": [1, 11, 19, 21, 23, 28, 56, 66, 90, 107, 126, 220, 221, 222, 223, 224, 225, 226], "rectangl": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 56, 61, 62, 63, 64, 65, 66, 74, 79, 80, 85, 86, 88, 89, 90, 91, 95, 99, 100, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 136, 139, 140, 141, 146, 153, 159, 160, 161, 162, 163, 165, 179, 183, 185, 186, 188, 190, 191, 205, 220, 221, 222, 223, 224, 225, 226, 228, 231, 233, 234], "on_sprite_click": [1, 66, 100, 165, 190, 220], "mouseev": [1, 11, 21, 32, 56, 61, 66, 74, 79, 80, 88, 90, 91, 100, 111, 113, 116, 117, 118, 119, 120, 128, 133, 137, 140, 142, 161, 162, 163, 165, 185, 186, 190, 220, 221, 224, 226, 228, 231, 234], "when": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 56, 61, 66, 79, 88, 90, 91, 95, 100, 111, 113, 116, 133, 137, 142, 159, 160, 161, 162, 163, 165, 186, 190, 220, 221, 223, 224, 225, 226, 228, 234], "click": [1, 11, 21, 32, 56, 66, 74, 79, 80, 88, 90, 91, 100, 111, 113, 116, 117, 118, 119, 120, 128, 133, 137, 140, 142, 146, 159, 160, 162, 165, 185, 186, 190, 220, 221, 224, 226, 228, 231, 234], "thi": [1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 20, 21, 22, 24, 25, 26, 27, 29, 30, 31, 33, 56, 61, 66, 79, 80, 88, 90, 91, 95, 100, 111, 113, 116, 117, 118, 119, 120, 128, 133, 137, 140, 141, 142, 148, 159, 161, 162, 163, 165, 185, 186, 190, 191, 194, 220, 221, 224, 225, 226, 228, 234], "child": [1, 66, 110, 185, 190, 191], "background_color": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234], "color": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 60, 61, 64, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "333": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234], "stage_width": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "150": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 152, 153, 159, 160, 161, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 186, 187, 189, 190, 191, 205, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 232, 233, 234], "stage_height": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "stage_elem_id": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 94, 95, 97, 99, 100, 101, 103, 104, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "begin_fil": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 66, 67, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 100, 107, 110, 111, 112, 113, 114, 116, 122, 123, 124, 125, 126, 128, 129, 133, 136, 137, 139, 140, 141, 146, 159, 160, 161, 162, 163, 165, 176, 179, 185, 186, 188, 190, 191, 220, 221, 222, 223, 224, 225, 226, 228, 234], "0af": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 62, 66, 67, 74, 79, 80, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 152, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 188, 190, 191, 206, 207, 220, 221, 222, 223, 224, 225, 226, 228, 229, 231, 233, 234], "draw_rect": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 66, 67, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 100, 107, 110, 111, 112, 113, 115, 116, 121, 122, 123, 124, 125, 126, 127, 128, 139, 141, 146, 159, 160, 161, 162, 163, 165, 179, 185, 186, 188, 190, 191, 220, 221, 222, 223, 224, 225, 226, 228, 234], "x": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 135, 136, 137, 139, 140, 141, 142, 146, 152, 153, 154, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 186, 188, 190, 191, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234], "50": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 41, 56, 60, 61, 62, 63, 64, 65, 66, 67, 68, 72, 74, 75, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 148, 152, 153, 155, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 186, 188, 190, 191, 205, 206, 207, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234], "y": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 135, 136, 137, 139, 141, 142, 146, 152, 153, 154, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 185, 186, 188, 190, 191, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234], "width": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 105, 106, 107, 109, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 133, 137, 139, 141, 153, 159, 160, 161, 162, 163, 164, 165, 179, 182, 185, 186, 188, 190, 191, 204, 205, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 231, 233, 234], "height": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 56, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 105, 106, 107, 109, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 133, 137, 139, 141, 153, 159, 160, 161, 162, 163, 165, 179, 182, 185, 186, 188, 190, 191, 205, 220, 221, 222, 223, 224, 225, 226, 228, 231, 233, 234], "save_overall_html": [1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 146, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "dest_dir_path": [1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 41, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 74, 79, 80, 86, 87, 88, 89, 90, 91, 94, 95, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "sprite_basic_usage_of_remove_child": 1, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u53d6\u308a\u9664\u304b\u308c\u305f\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u3082\u3046\u4e00\u5ea6\u4ed6\u306e\u89aa\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u8ffd\u52a0\u3057\u307e\u3059": 1, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b1\u3064\u76ee\u306e\u5de6\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b": 1, "\u306e\u89aa\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u304b\u3089\u305d\u306e\u56db\u89d2\u3092\u53d6\u308a\u9664\u304d": 1, "\u305d\u3057\u30662\u3064\u76ee\u306e\u53f3\u5074\u306b\u914d\u7f6e\u3057\u3066\u3042\u308b": 1, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u5b50\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059": 1, "_spriteandrectopt": 1, "first_sprit": 1, "second_sprit": 1, "250": [1, 12, 26, 27, 56, 62, 63, 66, 67, 90, 92, 93, 94, 95, 101, 105, 106, 107, 109, 111, 112, 115, 117, 118, 119, 120, 121, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 135, 136, 138, 139, 141, 142, 164, 168, 169, 171, 179, 183, 185, 190, 206, 212, 213, 215, 216, 221, 222, 224, 226, 231], "number": [1, 9, 13, 17, 25, 26, 28, 30, 31, 52, 53, 60, 65, 86, 91, 97, 101, 102, 103, 104, 105, 106, 108, 109, 111, 112, 115, 123, 124, 125, 127, 129, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 145, 152, 153, 154, 155, 156, 157, 158, 160, 164, 165, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 190, 205, 206, 207, 211, 215, 217, 219, 220, 222, 224, 227, 229, 233, 234, 235], "0": [1, 9, 10, 12, 13, 14, 15, 17, 18, 20, 24, 25, 26, 27, 29, 30, 31, 33, 41, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 60, 63, 65, 66, 67, 68, 70, 72, 75, 77, 83, 86, 87, 91, 94, 97, 101, 104, 109, 110, 111, 112, 114, 115, 116, 122, 123, 124, 125, 127, 129, 133, 135, 136, 137, 140, 141, 142, 143, 150, 151, 152, 153, 154, 156, 157, 158, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 184, 185, 187, 190, 191, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 211, 215, 217, 219, 220, 222, 224, 227, 229, 232, 234], "sprite_basic_usage_of_add_child": 1, "displayobject\u30af\u30e9\u30b9": [1, 85, 86], "parent": [1, 60, 85, 86, 97, 109, 146, 152, 154, 164, 166, 177, 178, 182, 191, 206, 207, 229], "\u89aa\u8981\u7d20\u5c5e\u6027": [1, 85, 86], "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [1, 12, 33, 60, 66, 85, 86, 88, 89, 94, 97, 111, 119, 146, 152, 159, 160, 177, 178, 182, 190, 191, 234], "contain": [1, 2, 146, 190], "\u3053\u306eapi\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30d3\u30eb\u30c9\u7528\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u3088\u3063\u3066\u81ea\u52d5\u3067\u751f\u6210": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "\u305d\u306e\u305f\u3081\u3082\u3057\u304b\u3057\u305f\u3089\u3053\u306e\u7bc0\u306e\u5185\u5bb9\u306f\u524d\u7bc0\u307e\u3067\u306e\u5185\u5bb9\u3068\u91cd\u8907\u3057\u3066\u3044\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u69cb\u9020": [1, 3, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 63, 66, 67, 68, 74, 79, 81, 83, 87, 89, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 117, 118, 119, 120, 123, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 185, 186, 187, 189, 190, 191, 192, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 217, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "self": [1, 2, 3, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 33, 34, 37, 38, 39, 40, 43, 44, 45, 46, 47, 56, 58, 60, 61, 62, 66, 67, 68, 79, 81, 83, 87, 89, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 110, 117, 118, 119, 120, 123, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 185, 186, 189, 190, 191, 192, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 217, 219, 220, 221, 222, 223, 224, 225, 226, 227, 229, 231, 232], "_displai": [1, 60, 66, 97, 109, 110, 137, 139, 140, 141, 152, 154, 164, 166, 177, 178, 182, 183, 189, 191, 205, 206, 207, 229], "display_object": [1, 66, 109, 110, 183, 189, 191], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": [1, 4, 8, 19, 26, 29, 33, 34, 37, 39, 41, 44, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 62, 63, 67, 68, 77, 81, 87, 89, 91, 96, 97, 98, 100, 101, 102, 103, 104, 105, 106, 114, 123, 124, 125, 126, 142, 143, 144, 147, 151, 152, 154, 160, 161, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 186, 190, 191, 192, 196, 197, 200, 203, 204, 205, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 220, 222, 223, 224, 226, 229, 231], "\u8868\u793a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u5b50\u3092\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u8ffd\u52a0\u3057\u307e\u3059": [1, 191], "\u5f15\u6570": [1, 5, 8, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 63, 66, 68, 74, 79, 81, 83, 87, 92, 93, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 109, 110, 123, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 155, 156, 157, 158, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 187, 190, 191, 192, 194, 198, 199, 200, 201, 202, 204, 205, 206, 207, 220, 221, 222, 223, 224, 228, 229, 231], "\u8ffd\u52a0\u3059\u308b\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [1, 191], "\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 150, 151, 152, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232], "sprite_1": [1, 89, 190, 191], "sprite_2": [1, 89, 190, 191], "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u8868\u793a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u5b50\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": [1, 191], "\u53d6\u308a\u9664\u304f\u5bfe\u8c61\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [1, 191], "alpha": [1, 9, 12, 13, 18, 66, 87, 94, 110, 111, 115, 116, 122, 123, 124, 127, 140, 141, 165, 191, 211], "5": [1, 12, 13, 14, 18, 26, 33, 36, 37, 38, 44, 45, 47, 48, 60, 62, 65, 66, 68, 69, 70, 71, 72, 75, 76, 77, 86, 87, 94, 96, 97, 108, 110, 111, 112, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 130, 131, 132, 134, 135, 138, 139, 140, 141, 142, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 180, 182, 183, 191, 196, 204, 206, 207, 211, 217, 218, 219, 227, 229, 233], "print": [1, 83, 191, 228], "\u306e\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5bfe\u8c61\u306e\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9\u3078\u3068\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\u306e\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 2, "\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u304c\u8a2d\u5b9a\u3055\u308c\u305f\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9\u3067\u306f": 2, "\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u3092\u6709\u52b9\u306b\u3057\u305f\u5f8c\u306e\u51e6\u7406\u3067\u306f\u5404\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 2, "\u51e6\u7406\u306e\u6709\u52b9\u306b\u3059\u308b\u305f\u3081\u306b\u6700\u521d\u306b": 2, "set_debug_mod": [2, 146, 232], "\u95a2\u6570\u3067\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u304a\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 2, "\u305d\u306e\u5f8c": 2, "\u4efb\u610f\u306e\u5404\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306b": 2, "\u306e\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u306e\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 2, "\u306e\u95a2\u6570\u306f": 2, "module_nam": 2, "\u5f15\u6570\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": [2, 102, 103, 104, 138, 187], "\u3053\u306e\u5f15\u6570\u306f\u57fa\u672c\u7684\u306b": 2, "__name__": 2, "\u306e\u5024\u3068\u306a\u308a\u307e\u3059": [2, 106], "_main": [2, 191], "entri": [2, 191], "point": [2, 12, 114, 136, 142, 176, 177, 178, 191, 234], "project": [2, 191], "_draw_rectangl": 2, "add_debug_info_setting_basic_usag": 2, "float": [2, 9, 13, 17, 25, 26, 27, 30, 31, 52, 53, 60, 97, 108, 127, 129, 130, 131, 132, 133, 134, 137, 138, 139, 140, 141, 142, 147, 148, 149, 152, 154, 156, 157, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 194, 206, 207, 220, 222, 224, 229, 235], "draw": [2, 111, 122, 127, 129, 130, 131, 132, 133, 136, 138, 139, 141, 142, 179], "given": 2, "coordin": [2, 91, 111, 160, 229], "_": [2, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 56, 58, 61, 64, 65, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 100, 101, 102, 103, 105, 113, 116, 127, 140, 141, 143, 147, 150, 153, 155, 156, 157, 158, 160, 161, 162, 163, 191, 192, 194, 196, 198, 199, 201, 202, 204, 205, 217, 218, 219, 220, 221, 222, 224, 225, 226, 228, 229], "mysprit": 2, "__init__": [2, 8, 33, 58, 60, 62, 67, 68, 81, 96, 97, 98, 101, 102, 103, 104, 105, 106, 144, 147, 152, 154, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 186, 189, 190, 191, 192, 205, 206, 207, 220, 222, 223, 224, 229, 232], "int": [2, 5, 6, 7, 9, 10, 12, 13, 14, 15, 17, 18, 20, 22, 24, 25, 26, 27, 29, 30, 31, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 63, 65, 68, 69, 70, 71, 72, 73, 75, 77, 78, 80, 81, 82, 83, 84, 86, 95, 96, 97, 98, 101, 102, 103, 104, 105, 106, 108, 110, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 129, 130, 131, 132, 133, 134, 137, 138, 139, 141, 142, 143, 144, 145, 152, 153, 154, 155, 156, 157, 158, 160, 162, 164, 165, 166, 167, 169, 170, 176, 177, 178, 180, 182, 183, 184, 185, 187, 189, 191, 193, 194, 196, 200, 204, 206, 207, 213, 217, 218, 220, 222, 224, 227, 228, 229, 232, 233, 234, 235], "my": 2, "": [2, 74, 148, 170, 205, 206], "super": 2, "__main__": 2, "\u51fa\u529b\u3055\u308c\u305fhtml\u306b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306e\u547c\u3073\u51fa\u3057\u306a\u3069\u306e\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\u304c\u542b\u307e\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 2, "1": [2, 9, 11, 12, 13, 15, 17, 19, 21, 23, 26, 27, 33, 34, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 54, 56, 58, 60, 65, 67, 68, 69, 70, 71, 72, 73, 75, 77, 78, 84, 86, 97, 99, 101, 102, 107, 110, 112, 115, 121, 123, 124, 125, 126, 127, 141, 148, 152, 153, 154, 155, 158, 164, 165, 166, 177, 178, 180, 182, 187, 189, 191, 194, 196, 200, 204, 205, 206, 207, 211, 218, 219, 220, 221, 222, 223, 224, 225, 226, 229, 231, 232, 234], "modul": [2, 189, 232], "name": [2, 49, 51, 54, 55, 56, 61, 65, 79, 87, 161, 162, 163, 189, 221, 232], "keyword": 2, "posit": [2, 206], "\u3053\u306e\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u8a2d\u5b9a\u306f\u73fe\u5728mypy\u4e0a\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3059": 2, "\u3054\u306e\u30a8\u30e9\u30fc\u3092\u907f\u3051\u308b\u305f\u3081\u306b\u306f": 2, "disabl": [2, 181], "error": [2, 148, 181], "code": [2, 65, 96, 98, 181], "misc": [2, 181], "\u30aa\u30d6\u30b7\u30e7\u30f3\u306e\u6307\u5b9a\u306e\u8ffd\u52a0\u3092\u691c\u8a0e\u3057\u3066\u304f\u3060\u3055\u3044": 2, "\u53c2\u8003\u8cc7\u6599": [2, 234], "\u63a8\u5968\u3055\u308c\u308b\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306e\u30c1\u30a7\u30c3\u30af\u8a2d\u5b9a": [2, 146], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [2, 26, 29, 33, 58, 68, 81, 85, 86, 88, 146, 147, 159, 160, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 183, 188, 190, 191, 192, 217, 220, 229, 231, 234], "unset_debug_mod": [2, 146, 189], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306e": 3, "animationbas": [3, 8, 9, 14, 18, 22, 146], "\u30af\u30e9\u30b9\u306e": [3, 4, 5, 33, 60, 62, 68, 85, 86, 94, 97, 107, 111, 146, 149, 152, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 195, 217, 220, 229, 234], "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [3, 5, 9, 10, 11, 13, 14, 15, 17, 20, 21, 23, 24, 25, 28, 30, 31, 35, 38, 40, 43, 45, 46, 47, 66, 74, 76, 83, 99, 109, 110, 127, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 150, 185, 194, 198, 201, 202, 219, 221, 225, 227], "\u30e1\u30bd\u30c3\u30c9\u306f\u5bfe\u8c61\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u958b\u59cb\u3057\u307e\u3059": 3, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 3, "\u30af\u30e9\u30b9\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 3, "animation_mov": [3, 5, 6, 7, 11, 12, 19, 21, 22, 23, 95, 146], "animation_x": [3, 4, 5, 6, 7, 8, 11, 12, 16, 18, 19, 21, 22, 23, 28, 95, 146, 188], "\u306a\u3069\u304c\u8a72\u5f53\u3057": 3, "\u305d\u308c\u3089\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u3053\u306e": 3, "\u30e1\u30bd\u30c3\u30c9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": [3, 74, 100, 136], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u306e\u3088\u3046\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u958b\u59cb\u3059\u308b\u306b\u306f": 3, "\u306a\u3069\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u305f\u5f8c\u306b": 3, "\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3076\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 3, "200": [3, 4, 5, 8, 12, 16, 17, 20, 22, 29, 30, 31, 60, 85, 86, 89, 94, 95, 104, 105, 109, 111, 117, 118, 119, 120, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 141, 142, 152, 160, 162, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 178, 182, 183, 188, 206, 207, 212, 227], "animationx": [3, 4, 5, 6, 7, 8, 18, 22, 30, 95], "100": [3, 4, 5, 8, 9, 11, 12, 16, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 31, 33, 41, 60, 85, 86, 91, 94, 95, 97, 105, 109, 111, 114, 117, 118, 119, 120, 123, 125, 127, 129, 133, 134, 135, 136, 137, 140, 141, 142, 152, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 183, 188, 205, 206, 212, 219, 222, 223, 224, 225, 226, 227, 229, 230, 234], "durat": [3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 95, 188], "3000": [3, 6, 7, 9, 10, 13, 14, 15, 17, 18, 20, 21, 23, 24, 25, 26, 29, 30, 31], "animation_base_start_basic_usage_1": 3, "\u30b7\u30f3\u30d7\u30eb\u306b\u66f8\u304f\u305f\u3081\u306b\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3\u3092\u4f7f\u3046\u5f62\u3067\u3082\u66f8\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 3, "animation_base_start_basic_usage_2": 3, "\u73fe\u5728\u306e\u8a2d\u5b9a\u3092\u4f7f\u3063\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u958b\u59cb\u3057\u307e\u3059": 3, "\u8fd4\u5374\u5024": [3, 4, 5, 8, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 28, 29, 30, 31, 33, 37, 38, 40, 41, 42, 43, 46, 56, 57, 58, 61, 63, 66, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 81, 83, 84, 87, 89, 90, 91, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 130, 131, 132, 134, 135, 137, 138, 140, 141, 142, 143, 147, 150, 151, 155, 156, 157, 158, 160, 161, 162, 163, 165, 176, 180, 183, 184, 191, 192, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 222, 223, 224, 227, 229], "animatonbas": [3, 5], "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [3, 5], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f": [4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 186, 187, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 217, 218, 219, 220, 221, 222, 223, 224, 225, 227, 228, 229, 230, 231, 232, 233, 234, 235], "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [4, 42, 69, 70, 71, 72, 73, 75, 84, 90, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 126, 165, 218], "\u5c5e\u6027\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 4, "\u306a\u3069\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 4, "\u3092\u8fd4\u5374\u3057\u307e\u3059": [4, 42, 66, 84, 101, 109, 110, 151], "\u30af\u30e9\u30b9\u306e\u5404\u30b5\u30d6\u30af\u30e9\u30b9": 4, "animationmov": [4, 5, 8, 17, 22, 95], "\u30af\u30e9\u30b9\u306a\u3069": [4, 96], "\u306fgetter\u306e": 4, "\u5c5e\u6027\u3092\u6301\u3063\u3066\u3044\u307e\u3059": [4, 139, 160], "00aaff": [4, 8, 9, 16, 19, 21, 29, 30, 31, 57, 60, 62, 97, 113, 116, 127, 128, 129, 133, 136, 137, 140, 141, 159, 164, 177, 182, 184, 186, 206, 208, 209, 210, 211, 213, 214, 234], "assert": [4, 8, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 59, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 81, 83, 84, 85, 89, 108, 110, 147, 148, 149, 156, 157, 158, 176, 191, 192, 193, 195, 196, 205, 208, 209, 212, 217, 218, 219], "isinst": [4, 8, 33, 81, 84, 85, 89, 108, 110, 149, 193, 195], "\u30af\u30e9\u30b9\u3068\u305d\u306e\u5404\u30b5\u30d6\u30af\u30e9\u30b9\u306b\u306f\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 4, "\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u3057\u305f\u5834\u5408": 4, "\u5c5e\u6027\u306e\u578b\u306f\u305d\u306e\u578b\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u306a\u308a\u307e\u3059": 4, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u306f": [4, 8, 143], "\u3068\u3044\u3046\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 4, "\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e": 4, "animationev": [4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95, 146], "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3046\u3053\u3068\u3082\u6709\u76ca\u306a\u30b1\u30fc\u30b9\u304c\u3042\u308a\u307e\u3059": 4, "\u3053\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3082": 4, "\u5c5e\u6027": [4, 62, 68, 85, 146, 164], "\u306e\u578b\u306b\u5f71\u97ff\u3057\u307e\u3059": 4, "on_animation_complet": [4, 5, 8, 16], "anim": [4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 95], "its": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 32, 56, 95], "end": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 32, 46, 56, 95, 189, 200, 232], "animation_complet": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95, 146], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u307e\u3059": 4, "variablenamemixin": [4, 160], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 4, "\u30e1\u30bd\u30c3\u30c9\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u7d42\u4e86\u3057\u305f\u3068\u304d\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 5, "\u30cf\u30f3\u30c9\u30e9\u306e\u5f15\u6570\u306b\u306f\u7b2c\u4e00\u5f15\u6570\u306b\u30a4\u30d9\u30f3\u30c8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 5, "\u7b2c\u4e8c\u5f15\u6570\u306b\u306f\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3068\u306a\u308b\u8f9e\u66f8\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 5, "\u30e1\u30bd\u30c3\u30c9\u306f\u7b2c\u4e00\u5f15\u6570\u306b\u30cf\u30f3\u30c9\u30e9\u304c\u5fc5\u8981\u3068\u306a\u308a": 5, "\u7b2c\u4e8c\u5f15\u6570\u306b\u306f\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306e\u8f9e\u66f8\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 5, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u7528\u306b": 5, "\u30e1\u30bd\u30c3\u30c9\u3092\u8aad\u3093\u3067\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 5, "\u305d\u306e\u30cf\u30f3\u30c9\u30e9\u5185\u3067\u306fx\u5ea7\u6a19\u3092\u30ea\u30bb\u30c3\u30c8\u3059\u308b\u305f\u3081\u306e\u5225\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u958b\u59cb\u3057\u3066\u3044\u307e\u3059": 5, "on_animation_complete_1": [5, 6, 7, 9, 10, 12, 13, 14, 15, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95], "target": [5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95, 146, 205], "on_animation_complete_2": [5, 6, 7, 9, 10, 12, 13, 14, 15, 17, 20, 22, 24, 25, 26, 27, 29, 30, 31, 95], "animation_complete_basic_usag": 5, "\u30e1\u30bd\u30c3\u30c9\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u958b\u59cb\u524d\u306b\u306e\u307f\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 5, "\u30e1\u30bd\u30c3\u30c9\u547c\u3073\u51fa\u3057\u5f8c\u306b": 5, "\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3073\u51fa\u3059\u3068\u30a8\u30e9\u30fc\u306b\u306a\u308a\u307e\u3059": 5, "complet": [5, 8, 14, 16, 23, 221, 223, 225], "except": [5, 42, 67, 84, 96, 98], "interfac": [5, 33, 96, 98, 111, 120, 136, 142, 194], "can": [5, 18, 42, 67, 84, 96, 98, 139], "after": [5, 23, 67, 96, 98], "i": [5, 8, 14, 16, 18, 32, 33, 49, 54, 65, 67, 77, 82, 83, 96, 98, 100, 101, 102, 127, 141, 144, 153, 194, 227, 228, 232], "\u30e1\u30bd\u30c3\u30c9\u547c\u3073\u51fa\u3057\u524d\u306b": 5, "\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3073\u51fa\u3059\u3053\u3068\u3067\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u3059": 5, "callabl": [5, 56, 61, 79, 99, 161, 162, 163, 220, 221, 222, 224, 231], "forwardref": [5, 33, 37, 58, 81, 150, 192, 194, 198, 199, 200, 202, 204, 220, 221, 222, 224], "animation_ev": 5, "_option": [5, 61, 79, 99, 125, 161, 162, 163, 231, 234], "nonetyp": [5, 33, 46, 56, 60, 61, 79, 83, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 109, 141, 144, 152, 154, 161, 162, 163, 164, 166, 177, 178, 182, 183, 191, 198, 199, 200, 202, 206, 207, 220, 221, 222, 224, 229, 231], "union": [5, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 33, 37, 39, 40, 44, 46, 52, 53, 56, 58, 60, 61, 63, 68, 79, 81, 82, 83, 87, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 109, 110, 127, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 152, 154, 156, 157, 158, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 191, 192, 194, 198, 199, 200, 202, 204, 206, 207, 220, 221, 222, 224, 229], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u30ea\u30b9\u30ca\u30fc\u306e\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 5, "_handler": [5, 56, 61, 79, 161, 162, 163, 220, 221, 222, 224], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u306b\u5b9f\u884c\u3055\u308c\u308b\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9": 5, "default": [5, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 33, 46, 47, 54, 56, 58, 60, 61, 62, 63, 68, 74, 79, 81, 83, 92, 93, 96, 97, 98, 99, 109, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 141, 142, 144, 147, 151, 152, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 183, 187, 190, 191, 192, 200, 205, 206, 220, 221, 222, 224, 229], "\u30cf\u30f3\u30c9\u30e9\u306b\u6e21\u3055\u308c\u308b\u7701\u7565\u304c\u53ef\u80fd\u306a\u8ffd\u52a0\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3068\u3057\u3066\u306e\u8f9e\u66f8": [5, 56, 61, 79, 161, 162, 163, 221], "\u30a8\u30e9\u30fc\u767a\u751f\u6761\u4ef6": [5, 18, 89, 191, 231], "\u3082\u3057\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u958b\u59cb\u5f8c\u306b\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u3066\u3044\u308b\u5834\u5408": 5, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u958b\u59cb\u524d\u306b\u306e\u307f\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 5, "\u95a2\u9023\u8cc7\u6599": [5, 9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 56, 58, 60, 62, 63, 68, 81, 97, 109, 140, 147, 152, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 182, 183, 191, 192, 207, 212, 217, 218, 219, 221, 224], "\u30cf\u30f3\u30c9\u30e9\u306eoptions\u5f15\u6570\u306e\u578b\u306b\u3064\u3044\u3066": [5, 56, 61, 79, 146, 161, 162, 163, 220, 221, 222, 224], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e": [6, 7], "\u306e\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 6, "\u306e\u8a2d\u5b9a\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u958b\u59cb\u524d\u306e\u9045\u5ef6\u6642\u9593\u3092\u5024\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 6, "\u305f\u3068\u3048\u3070": [6, 55, 227], "\u306e\u5f15\u6570\u306b3000\u3092\u6307\u5b9a\u3059\u308c\u3070\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306f3\u79d2\u5f8c\u306b\u958b\u59cb\u3057\u307e\u3059": 6, "\u306a\u3069\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u3053\u306e": [6, 7], "\u5f15\u6570\u3092\u6301\u3063\u3066\u3044\u307e\u3059": [6, 7, 56, 129, 191], "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u5404x\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u9593\u30672\u79d2\u306e\u9045\u5ef6\u8a2d\u5b9a": 6, "\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 6, "2\u79d2\u9593\u505c\u6b62\u3057\u3066\u304b\u3089\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u958b\u59cb\u3057\u307e\u3059": 6, "2000": [6, 11, 18], "eas": [6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 188], "ease_out_quint": [6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 95, 188], "300": [6, 11, 18, 71, 105, 135, 141, 142, 164, 179, 183, 191, 205, 208, 209, 210, 211, 212, 213, 214, 215, 216, 227], "400": [6, 7, 11, 12, 18, 23, 28, 129, 168, 170, 205, 213], "animation_delay_basic_usag": 6, "\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 7, "\u8a2d\u5b9a\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u958b\u59cb\u304b\u3089\u7d42\u4e86\u307e\u3067\u306b\u304b\u3051\u308b\u6642\u9593\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 7, "\u5358\u4f4d\u306f\u30df\u30ea\u79d2\u3067\u3059": 7, "\u5f15\u6570\u306b3000\u3092\u6307\u5b9a\u3057\u305f\u3089\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u5b8c\u4e86\u3059\u308b\u307e\u30673\u79d2\u5fc5\u8981\u3068\u3059\u308b\u8a2d\u5b9a\u306b\u306a\u308a\u307e\u3059": 7, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3067": 7, "\u306e\u8a2d\u5b9a\u306b3\u79d2\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 7, "500": [7, 12, 19, 21, 23, 28, 68, 71, 109, 191, 206, 234], "animation_duration_basic_usag": 7, "\u30af\u30e9\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [8, 33, 58, 60, 62, 65, 67, 68, 81, 85, 96, 97, 98, 101, 102, 103, 104, 105, 106, 111, 144, 152, 153, 164, 166, 167, 168, 169, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 186, 190, 191, 192, 206, 207, 217, 220, 223, 229], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306a\u3069\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u95a2\u9023\u306e\u30a4\u30d9\u30f3\u30c8\u3067": 8, "\u30af\u30e9\u30b9\u306f\u4f7f\u7528\u3055\u308c\u307e\u3059": 8, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3078\u3053\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u6e21\u3057\u307e\u3059": 8, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5b8c\u4e86\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3078": 8, "\u3068\u3044\u3046\u6307\u5b9a\u3067": 8, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5f15\u6570\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 8, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e": [8, 223], "\u5c5e\u6027\u306f": [8, 84, 90, 165], "\u7b49\u306e": 8, "\u30af\u30e9\u30b9\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306b\u306a\u308a\u307e\u3059": 8, "\u3053\u306e\u5c5e\u6027\u306e\u578b\u306f\u547c\u3093\u3060\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3088\u3063\u3066\u5909\u52d5\u3057\u307e\u3059": 8, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3042\u308c\u3070": 8, "\u5c5e\u6027\u306e\u578b\u306f": 8, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u306a\u308a\u307e\u3059": [8, 129, 133, 223], "\u30af\u30e9\u30b9\u306f\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 8, "\u3082\u3057\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u3057\u305f\u5834\u5408\u306b\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5bfe\u8c61\u306e\u5024\u3068\u306a\u308b": 8, "\u306a\u3069\u306e": [8, 17, 18, 26, 27, 30, 31, 62, 65, 105, 106, 127, 141, 160], "\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3063\u305f\u578b\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u306a\u308a\u307e\u3059": 8, "\u306e\u5024\u306b": 8, "\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3063\u3066\u304a\u308a": 8, "mypy\u3084pylance\u306a\u3069\u3067\u306e\u578b\u30c1\u30a7\u30c3\u30af\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3084\u30a8\u30c7\u30a3\u30bf\u306a\u3069\u3067\u306e\u6069\u6075\u3092\u53d7\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 8, "animation_bas": [8, 18], "_target": 8, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u30a4\u30d9\u30f3\u30c8\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 8, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u8a2d\u5b9a\u3092\u6271\u3046\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 8, "\u3053\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30ea\u30b9\u30ca\u30fc\u3068\u3057\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u307e\u3059": 8, "\u3053\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [8, 223], "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f": [9, 26, 27], "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u3067\u3042\u308a\u4e14\u3064\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u3092\u6271\u3046": 9, "animationfillalpha": 9, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 27, 29, 31], "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 9, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [9, 10, 11, 13, 14, 15, 17, 18, 20, 21, 23, 24, 25, 30, 31, 39, 48, 50, 93, 99, 102, 103, 104, 105, 130, 131, 132, 134, 136, 138, 144, 156, 157, 162, 194, 227], "circl": [9, 10, 12, 13, 14, 15, 20, 24, 25, 26, 27, 85, 101, 102, 103, 109, 113, 129, 146, 162, 167, 169, 170, 183, 205], "\u30af\u30e9\u30b9\u306a\u3069\u306e": [9, 10, 13, 14, 15, 20, 24, 25, 29, 56], "graphicsbas": [9, 10, 13, 14, 15, 20, 24, 25, 26, 27, 94, 205], "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u3067\u5b58\u5728\u3057\u307e\u3059": [9, 10, 13, 14, 15, 24, 25], "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f1": 9, "0\u306e\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092": 9, "\u30e1\u30bd\u30c3\u30c9\u3067\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": [9, 13], "animation_fill_alpha_basic_usag": 9, "_type": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 28, 29, 30, 31, 38, 39, 40, 44, 46, 52, 53, 58, 60, 63, 66, 68, 83, 87, 96, 97, 101, 102, 103, 104, 105, 106, 110, 123, 125, 127, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144, 147, 150, 151, 152, 154, 156, 157, 158, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 189, 191, 206, 207, 217, 219, 220, 222, 224, 227, 229, 232], "_anim": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "linear": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "function": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 42, 84, 191], "return": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 33, 86, 111, 146, 159, 194], "\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 9, "\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 9, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5b8c\u4e86\u307e\u3067\u306e\u30df\u30ea\u79d2": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u958b\u59cb\u307e\u3067\u306e\u9045\u5ef6\u6642\u9593\u306e\u30df\u30ea\u79d2": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u30a4\u30fc\u30b8\u30f3\u30b0\u8a2d\u5b9a": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u751f\u6210\u3055\u308c\u305f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u958b\u59cb\u3059\u308b\u306b\u306f\u8fd4\u5374\u3055\u308c\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3073\u51fa\u3059\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 190], "draw_circl": [9, 12, 20, 30, 31, 85, 94, 111, 146, 162, 190, 234], "radiu": [9, 12, 20, 30, 31, 60, 85, 94, 101, 102, 103, 109, 113, 129, 162, 167, 169, 170, 183, 205, 234], "animation_i": [9, 12, 146, 188], "1500": [9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u6642\u9593": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u8a2d\u5b9a": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 94, 107, 146, 209, 220, 234], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8fd4\u5374\u5024": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u9023\u7d9a\u3057\u305f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a": [9, 10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 146], "animation_parallel": [9, 10, 13, 14, 15, 17, 20, 24, 25, 26, 29, 30, 31, 146, 188], "\u30a4\u30fc\u30b8\u30f3\u30b0\u306eenum": [9, 10, 12, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31, 146], "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [10, 13, 14, 15, 17, 18, 24, 25, 26, 27, 29, 30, 31], "animationfillcolor": 10, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u5857\u308a\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 10, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f": [10, 14, 17, 22, 29, 31, 48, 61, 74, 79, 95, 160, 161, 163, 169, 171, 174, 179, 222, 232, 233], "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u5857\u308a\u306e\u8272\u3092\u30b7\u30a2\u30f3": 10, "\u304b\u3089\u30de\u30bc\u30f3\u30bf": [10, 14], "f0a": [10, 12, 14, 18, 56, 60, 61, 67, 79, 88, 90, 92, 93, 97, 100, 111, 113, 116, 122, 124, 127, 134, 141, 142, 152, 159, 160, 161, 163, 167, 169, 170, 177, 182, 229, 231, 234], "\u3078\u3068\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3055\u305b\u3066\u3044\u307e\u3059": 10, "fill_color": [10, 12, 18, 56, 60, 61, 62, 63, 64, 65, 74, 79, 88, 94, 97, 99, 100, 101, 102, 103, 105, 106, 109, 111, 117, 118, 119, 120, 128, 129, 133, 136, 137, 140, 146, 153, 154, 159, 160, 161, 163, 164, 166, 167, 169, 170, 177, 178, 182, 183, 185, 186, 205, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 227, 229, 230, 231, 233, 234], "animation_fill_color_basic_usag": 10, "_color": [10, 14, 60, 97, 127, 141, 152, 154, 164, 166, 177, 178, 182, 191, 206, 207, 229], "\u5857\u308a\u306e\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 10, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u7684\u306a\u5857\u308a\u306e\u8272": 10, "\u9045\u5ef6\u6642\u9593": [10, 13, 14, 15, 17, 18, 20, 24, 25, 26, 29, 30, 31], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u5b9f\u884c\u3055\u308c\u3066\u3044\u308b\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u5404\u5c5e\u6027\u306e\u6700\u7d42\u5024\u3092\u8a2d\u5b9a\u3057\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3055\u305b\u307e\u3059": 11, "\u306a\u3069\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3064\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u306b\u5b58\u5728\u3057\u307e\u3059": [11, 19, 21, 23], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u306b\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 11, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068x\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u958b\u59cb\u3059\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 11, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u958b\u59cb\u5f8c\u306b2\u79d2\u7d4c\u904e\u3057\u305f\u3089\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306f\u7d42\u4e86\u3057": 11, "\u6700\u7d42\u5024\u306e\u5ea7\u6a19\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 11, "on_click": [11, 21, 32, 61, 74, 80, 88, 91, 100, 113, 116, 117, 118, 119, 120, 128, 137, 140, 159, 162, 185, 186, 221, 234], "5000": [11, 23], "options_": [11, 21, 56, 221, 224, 226], "repeat_count": [11, 19, 21, 23, 56, 146, 220, 221, 222, 225, 226, 234], "animation_finish_basic_usag": 11, "\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059": 11, "\u5404\u5c5e\u6027\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u306e\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 11, "rectopt": [11, 19, 21, 23, 28, 86, 220, 221, 222, 223, 224, 225, 226], "750": [11, 19, 21, 23], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6982\u8981\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 12, "\u5ea7\u6a19\u5024\u3084\u56de\u8ee2\u91cf": 12, "\u8272\u3084\u900f\u660e\u5ea6": 12, "\u62e1\u7e2e\u5024\u306a\u3069\u306e\u5404\u5c5e\u6027\u306b\u5bfe\u3057\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 12, "\u4f55\u30df\u30ea\u79d2\u304b\u3051\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u304b\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 12, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u958b\u59cb\u524d\u306e\u9045\u5ef6\u6642\u9593\u3092\u30df\u30ea\u79d2\u5358\u4f4d\u3067\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 12, "ease_in_cub": [12, 95], "ease_in_out_bounc": [12, 95], "\u306a\u3069\u306e\u30a4\u30fc\u30b8\u30f3\u30b0\u306e\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 12, "\u4e00\u6642\u505c\u6b62": 12, "\u518d\u751f": 12, "\u30ea\u30bb\u30c3\u30c8": 12, "\u7d42\u4e86": 12, "\u9006\u518d\u751f": [12, 23], "\u7d4c\u904e\u6642\u9593\u53d6\u5f97\u306a\u3069\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u95a2\u4fc2\u306e\u5236\u5fa1\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 12, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u4e26\u5217\u5b9f\u884c\u3084\u76f4\u5217\u5b9f\u884c\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 12, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 12, "\u3053\u306e\u7bc0\u3067\u306f\u5404\u5c5e\u6027\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u4f8b\u3092\u8868\u793a\u3057\u307e\u3059": 12, "\u30b3\u30fc\u30c9\u30d6\u30ed\u30c3\u30af\u3092\u8868\u793a": [12, 65, 86, 95, 153, 234], "550": [12, 234], "line_styl": [12, 13, 14, 15, 17, 18, 86, 94, 111, 115, 116, 117, 118, 119, 120, 121, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 146, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 190, 234], "fff": [12, 13, 14, 15, 17, 18, 65, 86, 94, 111, 115, 117, 118, 119, 120, 121, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 141, 142, 153, 167, 168, 169, 170, 171, 172, 173, 174, 175, 178, 179, 229], "thick": [12, 13, 14, 15, 17, 18, 86, 94, 111, 115, 116, 117, 118, 119, 120, 121, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 141, 142, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 234], "on_x_animation_complete_1": 12, "on_x_animation_complete_2": 12, "on_y_animation_complete_1": 12, "on_y_animation_complete_2": 12, "on_cx_animation_complete_1": 12, "center": [12, 30, 206, 208, 209], "275": [12, 101, 102, 103, 141, 234], "on_cx_animation_complete_2": 12, "325": [12, 133], "75": [12, 60, 94, 97, 101, 102, 103, 113, 114, 125, 127, 136, 140, 141, 167, 171, 176, 177, 183, 229, 234], "25": [12, 65, 94, 101, 102, 103, 107, 112, 114, 115, 124, 129, 136, 140, 147, 153, 155, 164, 167, 168, 169, 170, 176, 183, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 234], "on_cy_animation_complete_1": 12, "on_cy_animation_complete_2": 12, "375": [12, 170, 234], "on_move_animation_complete_1": 12, "move": [12, 142, 190], "450": [12, 110, 127, 165, 234], "on_move_animation_complete_2": 12, "on_width_animation_complete_1": 12, "animation_width": [12, 146], "on_width_animation_complete_2": 12, "on_height_animation_complete_1": 12, "animation_height": [12, 146], "on_height_animation_complete_2": 12, "on_ellipse_width_animation_complete_1": 12, "ellips": [12, 133, 139, 146], "on_ellipse_width_animation_complete_2": 12, "draw_ellips": [12, 29, 94, 111, 146, 234], "175": [12, 94, 101, 102, 103, 136, 141, 169, 170, 171], "on_ellipse_height_animation_complete_1": 12, "on_ellipse_height_animation_complete_2": 12, "on_fill_color_animation_complete_1": 12, "fill": [12, 111, 122, 127, 133, 141, 163, 233], "animation_fill_color": [12, 18, 146], "on_fill_color_animation_complete_2": 12, "on_fill_alpha_animation_complete_1": 12, "animation_fill_alpha": [12, 18, 146], "on_fill_alpha_animation_complete_2": 12, "on_line_color_animation_complete_1": 12, "line": [12, 86, 111, 117, 118, 119, 120, 121, 129, 130, 131, 132, 133, 136, 138, 141, 142, 146, 191, 206, 233], "animation_line_color": [12, 146], "line_color": [12, 14, 60, 62, 64, 65, 94, 97, 109, 117, 118, 119, 120, 130, 131, 132, 134, 138, 142, 146, 152, 153, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 182, 183, 206, 207, 229], "on_line_color_animation_complete_2": 12, "666": [12, 117, 118, 119, 120, 206], "on_line_alpha_animation_complete_1": 12, "animation_line_alpha": [12, 146], "on_line_alpha_animation_complete_2": 12, "on_line_thickness_animation_complete_1": 12, "animation_line_thick": [12, 18, 146], "on_line_thickness_animation_complete_2": 12, "350": [12, 63, 65, 95, 101, 102, 103, 107, 109, 112, 115, 124, 125, 127, 129, 139, 141, 153, 168, 170, 183, 208, 209, 210, 211, 213, 214, 220, 222], "on_radius_animation_complete_1": 12, "animation_radiu": [12, 146], "on_radius_animation_complete_2": 12, "475": [12, 234], "on_rotation_around_center_animation_complete_1": 12, "rotat": [12, 60, 97, 122, 123, 152, 166, 177, 178, 182, 206, 229], "around": 12, "animation_rotation_around_cent": [12, 146], "rotation_around_cent": [12, 24, 56, 60, 86, 97, 99, 107, 146, 152, 166, 177, 178, 182, 206, 221, 222, 223, 225, 229, 231, 234], "on_rotation_around_center_animation_complete_2": 12, "90": [12, 24, 25, 56, 141, 221, 225], "on_rotation_around_point_animation_complete_1": 12, "specifi": [12, 82, 96, 127, 141], "animation_rotation_around_point": [12, 146], "rotation_around_point": [12, 25, 86, 146], "on_rotation_around_point_animation_complete_2": 12, "on_scale_x_from_center_animation_complete_1": 12, "scale": [12, 26, 60, 97, 152, 166, 177, 178, 182, 206, 229], "animation_scale_x_from_cent": [12, 146], "scale_x_from_cent": [12, 26, 27, 60, 86, 97, 125, 146, 152, 166, 177, 178, 182, 206, 229], "on_scale_x_from_center_animation_complete_2": 12, "on_scale_y_from_center_animation_1": 12, "animation_scale_y_from_cent": [12, 146], "scale_y_from_cent": [12, 26, 27, 60, 86, 97, 125, 146, 152, 166, 177, 178, 182, 229], "on_scale_y_from_center_animation_2": 12, "on_scale_x_from_point_animation_complete_1": 12, "animation_scale_x_from_point": [12, 146], "scale_x_from_point": [12, 27], "on_scale_x_from_point_animation_complete_2": 12, "on_scale_y_from_point_animation_complete_1": 12, "animation_scale_y_from_point": [12, 146], "scale_y_from_point": [12, 27], "on_scale_y_from_point_animation_complete_2": 12, "animation_interfaces_abstract_each_attr": 12, "\u30a4\u30fc\u30b8\u30f3\u30b0\u8a2d\u5b9a\u306f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e": 12, "\u5f15\u6570\u3067\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [12, 141, 191], "\u8a73\u7d30\u306f\u4ee5\u4e0b\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044": 12, "easingopt": 12, "ease_in_quint": [12, 95], "ease_in_out_quint": [12, 95], "animation_interfaces_abstract_eas": 12, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_x": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306fy\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_i": 12, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fx\u5ea7\u6a19\u3068y\u5ea7\u6a19\u4e21\u65b9\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "x\u3068y\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "animation_interfaces_abstract_mov": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_width": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u9ad8\u3055\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_height": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5857\u308a\u306e\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_fill_color": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_fill_alpha": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u7dda\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_line_color": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u7dda\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_line_alpha": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u7dda\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_line_thick": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5186\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306a\u3069\u306e\u534a\u5f84\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_radiu": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "\u4e2d\u592e\u5ea7\u6a19\u3067\u306e\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "animation_interfaces_abstract_rotation_around_cent": 12, "animation_interfaces_abstract_rotation_around_point": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "animation_interfaces_abstract_scale_x_from_cent": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_scale_y_from_cent": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "animation_interfaces_abstract_scale_x_from_point": 12, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 12, "animation_interfaces_abstract_scale_y_from_point": 12, "animationlinealpha": 13, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u7dda\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 13, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f1": [13, 15], "0\u306e\u7dda\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092": 13, "eee": [13, 15, 234], "animation_line_alpha_basic_usag": 13, "\u7dda\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 13, "\u7dda\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 13, "\u30af\u30e9\u30b9\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u3067\u3042\u308a\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u5236\u5fa1\u3059\u308b\u305f\u3081\u306e": 14, "animationlinecolor": 14, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u7dda\u8272\u306b\u5bfe\u3059\u308b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 14, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u7dda\u306e\u8272\u3092\u30b7\u30a2\u30f3": 14, "\u306b\u5909\u5316\u3059\u308b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 14, "animation_line_color_basic_usag": 14, "\u7dda\u306e\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 14, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u7684\u306a\u7dda\u306e\u8272": 14, "animationlinethick": 15, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u7528\u3057\u3066\u7dda\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 15, "10\u306e\u7dda\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092": 15, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": [15, 20, 24], "10": [15, 33, 35, 41, 49, 50, 51, 52, 53, 54, 55, 59, 60, 61, 65, 68, 69, 70, 77, 80, 81, 82, 83, 84, 91, 96, 98, 108, 109, 111, 117, 118, 119, 120, 121, 130, 131, 133, 138, 139, 141, 144, 145, 147, 148, 149, 150, 152, 153, 155, 156, 157, 158, 166, 169, 170, 176, 180, 182, 183, 189, 207, 218, 227, 228, 230, 232, 233], "animation_line_thickness_basic_usag": 15, "\u7dda\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 15, "\u7dda\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 15, "6": [15, 33, 36, 37, 48, 60, 77, 97, 130, 138, 141, 152, 158, 166, 178, 180, 182, 196, 217, 219, 220, 223, 229, 234], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 16, "\u30e1\u30bd\u30c3\u30c9\u306a\u3069\u306e": 16, "\u30af\u30e9\u30b9\u306b\u7d61\u3093\u3060\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u81ea\u8eab\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 16, "\u305d\u308c\u3092\u5229\u7528\u3057\u3066\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 16, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u5229\u7528\u3057\u3066\u3044\u307e\u3059": 16, "animation_method_chaining_basic_usage_1": 16, "\u3053\u308c\u3089\u306e\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3\u306e\u8a18\u8ff0\u306f\u30b3\u30fc\u30c9\u306e\u8a18\u8ff0\u3092\u30b7\u30f3\u30d7\u30eb\u306b\u3057\u305f\u3044\u969b\u306b\u5f79\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 16, "\u3082\u3057d3": 16, "js\u306a\u3069\u3067\u306ejavascript\u3067\u306e\u8a18\u8ff0\u306b\u8fd1\u3044\u5f62\u3067\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3\u3092\u4f7f\u3044\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u884c\u672b\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u3067\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 16, "animation_method_chaining_basic_usage_2": 16, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066x\u3068y\u5ea7\u6a19\u306b\u5bfe\u3057\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 17, "\u306e\u5404\u30b5\u30d6\u30af\u30e9\u30b9\u306b\u5b58\u5728\u3057\u307e\u3059": [17, 18, 30, 31], "\u306e\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066x": 17, "50\u306e\u5ea7\u6a19\u304b\u3089x": 17, "100\u306e\u5ea7\u6a19\u3078\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 17, "animation_move_basic_usag": 17, "x\u3068y\u5ea7\u6a19\u306b\u5bfe\u3059\u308b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 17, "\u6700\u7d42\u7684\u306ax\u5ea7\u6a19": [17, 30], "\u6700\u7d42\u7684\u306ay\u5ea7\u6a19": [17, 31], "animationparallel": 18, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3046\u3053\u3068\u3067\u8907\u6570\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u540c\u6642\u5b9f\u884c\u306e\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 18, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 18, "\u5f15\u6570\u306e\u5024\u306f\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u8a2d\u5b9a\u5024\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 18, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fx\u5ea7\u6a19": 18, "\u5857\u308a\u306e\u900f\u660e\u5ea6": [18, 94, 127], "\u5857\u308a\u306e\u8272": 18, "\u305d\u3057\u3066\u7dda\u306e\u5e45\u306b\u5bfe\u3059\u308b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u3066\u3044\u307e\u3059": 18, "3": [18, 23, 33, 34, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 60, 62, 64, 65, 67, 77, 97, 117, 118, 119, 120, 124, 129, 130, 133, 135, 136, 138, 141, 147, 148, 152, 153, 154, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 180, 182, 193, 194, 196, 200, 204, 205, 206, 207, 221, 222, 223, 224, 225, 226, 229, 234], "7": [18, 33, 140, 158, 166, 182, 217, 218, 219, 229], "animation_parallel_basic_usag": 18, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3054\u3068\u306e": 18, "\u306e\u5f15\u6570\u8a2d\u5b9a\u306f": 18, "\u30e1\u30bd\u30c3\u30c9\u5074\u306e\u5024\u304c\u4f7f\u7528\u3055\u308c\u308b\u305f\u3081\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093": 18, "\u3082\u3057\u4f55\u3089\u304b\u306e\u5024\u3092\u8a2d\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 18, "valueerror": [18, 89, 96, 98], "There": 18, "an": [18, 33, 74, 96, 99, 205, 231], "chang": [18, 136, 141, 142, 160, 163], "set": [18, 122, 127, 129, 130, 131, 132, 133, 136, 138, 139, 141, 205], "list": [18, 33, 37, 48, 65, 135, 136, 153, 166, 177, 178, 206, 207, 228, 235], "\u4e26\u5217\u5b9f\u884c\u3055\u308c\u308b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 18, "\u5bfe\u8c61\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u8a2d\u5b9a": 18, "\u3082\u3057\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u306f\u7121\u3044\u5834\u5408": 18, "\u5f15\u6570\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306ederation\u3084delai": 18, "easing\u306e\u8a2d\u5b9a\u304c\u5909\u66f4\u53bb\u308c\u3066\u3044\u308b\u5834\u5408": 18, "\u5f15\u6570\u306e\u5024\u306b\u306f": 18, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u542b\u3081\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093": 18, "\u5f15\u6570\u5185\u306e\u5024\u306edurat": 18, "easing\u306e\u5404\u5f15\u6570\u306e\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": 18, "\u4ee3\u308f\u308a\u306b\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u81ea\u8eab\u306e\u305d\u308c\u3089\u306e\u5f15\u6570\u306e\u8a2d\u5b9a\u3092\u5229\u7528\u3057\u3066\u304f\u3060\u3055\u3044": 18, "\u306e\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 19, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u52d5\u3044\u3066\u3044\u308b\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u505c\u6b62\u3057\u307e\u3059": 19, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u505c\u6b62\u3057\u3066\u3044\u308b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u518d\u958b\u3057\u307e\u3059": 19, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [19, 26, 27, 88, 161], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u30b9\u30bf\u30fc\u30c8\u3057": 19, "\u305d\u306e1\u79d2\u5f8c\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u505c\u6b62\u3057\u3066\u3044\u307e\u3059": 19, "\u52a0\u3048\u3066": [19, 22, 87, 130, 131, 136, 231], "\u505c\u6b62\u3057\u3066\u304b\u3089\u3055\u3089\u306b500\u30df\u30ea\u79d2\u7d4c\u904e\u3057\u305f\u6642\u70b9\u3067\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u518d\u958b\u3057\u3066\u3044\u307e\u3059": 19, "on_timer_1": [19, 23], "on_timer_2": [19, 23], "600": [19, 21, 183, 234], "15_000": 19, "animation_pause_basic_usag": 19, "\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u505c\u6b62\u3057\u307e\u3059": 19, "\u505c\u6b62\u3057\u3066\u3044\u308b\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u518d\u958b\u3057\u307e\u3059": 19, "\u30e1\u30bd\u30c3\u30c9\u306f": [20, 38, 39, 46, 83, 87, 100, 123, 125, 150, 151, 155, 183, 200, 204], "animationradiu": 20, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u534a\u5f84\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 20, "\u306e\u5404\u30b5\u30d6\u30af\u30e9\u30b9\u4e0a\u306b\u5b58\u5728\u3057\u307e\u3059": [20, 27, 29], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f50\u304b\u3089100\u306e\u534a\u5f84\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092": 20, "animation_radius_basic_usag": 20, "\u534a\u5f84\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 20, "\u534a\u5f84\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 20, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30ea\u30bb\u30c3\u30c8\u3068\u505c\u6b62\u3092\u884c\u3044\u307e\u3059": 21, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u306b\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057": 21, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306bx\u5ea7\u6a19\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u30b9\u30bf\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u3057\u3066\u3042\u308a\u307e\u3059": 21, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u30b9\u30bf\u30fc\u30c8\u3057\u3066\u304b\u30891\u79d2\u7d4c\u904e\u3057\u305f\u6642\u70b9\u3067": 21, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3088\u3063\u3066x\u5ea7\u6a19\u306e\u30ea\u30bb\u30c3\u30c8\u304c\u5b9f\u884c\u3055\u308c\u3066\u3044\u307e\u3059": 21, "animation_reset_basic_usag": 21, "\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u505c\u6b62\u3057\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5185\u5bb9\u3092\u30ea\u30bb\u30c3\u30c8\u3057\u307e\u3059": 21, "\u306a\u3069\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8fd4\u5374\u5024\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 22, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 22, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 22, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3042\u308c\u3070": 22, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057": 22, "\u3067\u3042\u308c\u3070": [22, 54, 155], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": [22, 29, 31, 74, 109, 134, 136, 139, 140, 142], "\u30af\u30e9\u30b9\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u958b\u59cb\u7528\u306e": 22, "\u30e1\u30bd\u30c3\u30c9\u3084\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u767b\u9332\u7528\u306e": 22, "\u30e1\u30bd\u30c3\u30c9\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u5171\u901a\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 22, "\u8fd4\u5374\u3055\u308c\u305f\u5404\u5024\u306e\u30af\u30e9\u30b9\u306fapysc\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u542b\u307e\u308c\u3066\u3044\u307e\u3059": 22, "\u305d\u306e\u305f\u3081\u305d\u308c\u3089\u3092\u4f7f\u7528\u3057\u3066\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 22, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u7528\u3057\u3066\u304a\u308a": 22, "\u8fd4\u5374\u5024\u3068\u3057\u3066": 22, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d7\u3051\u53d6\u3063\u3066\u3044\u307e\u3059": 22, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53c2\u7167\u3057\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5b8c\u4e86\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057\u305f\u308a\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u958b\u59cb\u3057\u305f\u308a\u7b49\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 22, "animation_return_value_basic_usag": 22, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u52d5\u3044\u3066\u3044\u308b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u518d\u751f\u3092\u53cd\u8ee2": 23, "\u3057\u307e\u3059": [23, 187, 200], "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057": 23, "1\u79d2\u3054\u3068\u306e\u9593\u9694\u3067": 23, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u53cd\u8ee2": 23, "\u9006\u4f5c\u6210": 23, "\u3057\u3066\u3044\u307e\u3059": 23, "second": [23, 68, 90, 99, 107, 127, 142, 146, 222, 225, 229], "everi": [23, 222], "animation_reverse_basic_usag": 23, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u52d5\u3044\u3066\u3044\u308b\u9593\u306e\u307f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 23, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u7d42\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067\u547c\u3073\u51fa\u3057\u3066\u3082\u4f55\u3082\u767a\u751f\u305b\u305a\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u7d42\u4e86\u3057\u305f\u72b6\u614b\u306e\u307e\u307e\u3068\u306a\u308a\u307e\u3059": 23, "noth": [23, 89], "happen": 23, "sinc": [23, 33, 127], "ha": 23, "alreadi": 23, "been": 23, "animation_reverse_not": 23, "\u52d5\u3044\u3066\u3044\u308b\u5168\u3066\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u53cd\u8ee2": 23, "\u8907\u6570\u56de\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u305f\u969b\u306a\u3069\u306b": 23, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u521d\u3082\u3057\u304f\u306f\u6700\u5f8c\u306b\u5230\u9054\u3057\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u505c\u6b62\u3057\u305f\u5834\u5408": 23, "\u305d\u306e\u5f8c\u306b\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u3066\u3082\u53cd\u8ee2": 23, "\u306f\u3055\u308c\u305a\u306b\u505c\u6b62\u3057\u305f\u307e\u307e\u3068\u306a\u308a\u307e\u3059": 23, "\u305d\u306e\u305f\u3081\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u6642\u9593\u3068\u540c\u3058\u6642\u9593\u306e\u30bf\u30a4\u30de\u30fc\u306a\u3069\u3067\u53cd\u8ee2\u306e\u6307\u5b9a\u3057\u305f\u5834\u5408\u306a\u3069\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093": 23, "animationrotationaroundcent": 24, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u7528\u3057\u3066\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3067\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 24, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f0\u5ea6\u304b\u308990\u5ea6\u306e\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092": 24, "animation_rotation_around_center_basic_usag": 24, "\u4e2d\u592e\u5ea7\u6a19\u3092\u4f7f\u7528\u3057\u305f\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 24, "\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u56de\u8ee2\u91cf\u306e\u6700\u7d42\u5024": [24, 25], "animationrotationaroundpoint": 25, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u4efb\u610f\u306e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 25, "\u30e1\u30bd\u30c3\u30c9\u306f\u56de\u8ee2\u89d2\u5ea6\u306erotat": 25, "\u56de\u8ee2\u306e\u57fa\u6e96\u5ea7\u6a19\u3068\u306a\u308bx\u3068y\u306e\u5404\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 25, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fx": [25, 172, 173], "100\u306e\u5ea7\u6a19": 25, "\u56db\u89d2\u306e\u53f3\u4e0b\u306e\u4f4d\u7f6e": 25, "\u3092\u57fa\u6e96\u306b0\u5ea6\u304b\u308990\u5ea6\u306e\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 25, "animation_rotation_around_point_basic_usag": 25, "\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 25, "x\u5ea7\u6a19": [25, 91, 123, 125, 160, 164, 176], "y\u5ea7\u6a19": [25, 91, 123, 125, 160, 164, 176], "\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [26, 29, 34, 37, 39, 44, 100, 125, 142, 226, 231], "animationscalexfromcent": 26, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305fx\u8ef8\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 26, "\u540c\u69d8\u306b": [26, 29, 56, 60, 97, 105, 125, 149, 152, 155, 166, 167, 169, 177, 178, 182, 200, 206, 222, 229], "animationscaleyfromcent": 26, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066y\u8ef8\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 26, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3064": [26, 27], "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u4e0a\u306b\u5b58\u5728\u3057\u307e\u3059": 26, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fx\u8ef8\u65b9\u5411\u306e\u62e1\u7e2e": 26, "0\u304b\u30892": [26, 27], "\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092": 26, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u5de6\u5074\u306e\u56db\u89d2\u306b\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 26, "\u540c\u69d8\u306by\u8ef8\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u53f3\u5074\u306e\u56db\u89d2\u306b\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 26, "enum": [26, 27, 99, 146, 220, 222, 224, 234], "direct": [26, 27, 60, 86, 97, 124, 125, 152, 166, 177, 178, 182, 206, 229], "2": [26, 27, 33, 34, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 60, 65, 67, 69, 77, 82, 84, 86, 97, 101, 116, 117, 118, 124, 125, 127, 130, 131, 132, 140, 141, 148, 150, 152, 153, 154, 165, 166, 177, 178, 180, 182, 189, 191, 200, 205, 206, 215, 217, 218, 219, 229, 234], "elif": [26, 27, 59, 98, 124, 144, 146, 234], "left_rectangl": [26, 27, 62, 124, 126, 231], "right_rectangl": [26, 27, 62, 124, 126, 231], "animation_scale_x_and_y_from_center_basic_usag": 26, "\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305fx\u8ef8\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 26, "x\u8ef8\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 26, "\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305fy\u8ef8\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 26, "y\u8ef8\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 26, "\u306e\u5404\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [27, 123], "animationscalexfrompoint": 27, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305fx\u8ef8\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 27, "\u540c\u3058\u3088\u3046\u306b": [27, 82, 107], "animationscaleyfrompoint": 27, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066y\u8ef8\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 27, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fx\u8ef8\u306e\u62e1\u7e2e": 27, "\u3092\u5de6\u5074\u306e\u56db\u89d2\u3078": 27, "\u305d\u3057\u3066y\u8ef8\u306e\u62e1\u7e2e\u3092\u53f3\u5074\u306e\u56db\u89d2\u3078\u3068\u305d\u308c\u305e\u308c": 27, "\u306e\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 27, "\u3053\u308c\u3089\u306e\u8a2d\u5b9a\u306f\u5de6\u5074\u306e\u56db\u89d2\u3067\u306f\u5de6\u7aef": 27, "\u306e\u5ea7\u6a19\u3067": 27, "\u53f3\u5074\u306e\u56db\u89d2\u3067\u306f\u4e0b\u7aef": 27, "\u306e\u4f4d\u7f6e\u3092\u57fa\u6e96\u306b\u62e1\u7e2e\u306e\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 27, "left_rectangle_x": 27, "right_rectangle_i": 27, "scale_1": 27, "scale_2": 27, "animation_scale_x_and_y_from_point_basic_usag": 27, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u73fe\u5728\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u7d4c\u904e\u6642\u9593\u3092\u30df\u30ea\u79d2\u3067\u8fd4\u5374\u3057\u307e\u3059": 28, "\u578b\u306e\u5024\u3067\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 28, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u306b\u5bfe\u3057\u3066x\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057": 28, "1\u79d2\u3054\u3068\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u7d4c\u904e\u6642\u9593\u3092\u30b3\u30f3\u30bd\u30fc\u30eb\u306b\u51fa\u529b\u3057\u3066\u3044\u307e\u3059": 28, "\u51fa\u529b\u5185\u5bb9\u306ff12\u30ad\u30fc\u3092\u62bc\u3057\u3066\u30d6\u30e9\u30a6\u30b6\u3067\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044": 28, "elaps": 28, "time": [28, 206, 207, 221], "10000": 28, "animation_time_basic_usag": 28, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u7d4c\u904e\u6642\u9593\u306e\u30df\u30ea\u79d2\u3092\u53d6\u5f97\u3057\u307e\u3059": 28, "elapsed_tim": 28, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u7d4c\u904e\u6642\u9593\u306e\u30df\u30ea\u79d2": 28, "fp": [28, 56, 60, 86, 97, 99, 123, 124, 125, 126, 146, 152, 166, 177, 178, 182, 220, 221, 222, 223, 224, 225, 231, 234], "fps_60": [28, 56, 60, 86, 97, 99, 107, 123, 124, 125, 126, 152, 166, 177, 178, 182, 220, 221, 222, 223, 224, 225, 234], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [29, 30, 51, 52, 56, 61, 79, 99, 122, 129, 133, 134, 135, 136, 137, 139, 140, 142, 157, 158, 161, 176, 231], "animationwidth": 29, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 29, "animationheight": 29, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u9ad8\u3055\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 29, "\u3053\u308c\u3089\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 29, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u5e45": 29, "50\u304b\u3089100": [29, 30, 31], "\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": [29, 30, 31], "animation_width_basic_usag": 29, "\u540c\u69d8\u306b\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f": 29, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u9ad8\u3055\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 29, "animation_height_basic_usag": 29, "\u6955\u5186\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 29, "\u30af\u30e9\u30b9": [29, 30, 59, 63, 86, 94, 99, 109, 114, 122, 123, 124, 125, 126, 135, 140, 179, 190, 212, 218, 219, 222, 224, 234], "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5185\u90e8\u5b9f\u884c\u304c\u7570\u306a\u308b\u90fd\u5408\u3067": 29, "\u30af\u30e9\u30b9\u306a\u3069\u306e\u4ee3\u308f\u308a\u306b": 29, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306banimationwidthforellips": 29, "\u30af\u30e9\u30b9\u3068": [29, 96, 98], "animationheightforellips": 29, "animationwidthforellips": 29, "\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 29, "\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 29, "\u9ad8\u3055\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 29, "\u9ad8\u3055\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u6700\u7d42\u5024": 29, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": [30, 191, 207], "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066x\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 30, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f": [30, 41, 50, 57, 64, 95, 140, 185, 231], "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066x\u5ea7\u6a19": 30, "animation_x_basic_usag": 30, "\u5185\u90e8\u5b9f\u88c5\u304c\u7570\u306a\u308b\u305f\u3081": 30, "\u306e\u5404\u30af\u30e9\u30b9\u306e": [30, 31], "\u306e\u4ee3\u308f\u308a\u306b": 30, "animationcx": 30, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": [30, 74], "animation_cx": 30, "x\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 30, "animationi": 31, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066y\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 31, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066y\u5ea7\u6a19": 31, "animation_y_basic_usag": 31, "\u5185\u90e8\u306e\u5b9f\u88c5\u304c\u7570\u306a\u308b\u90fd\u5408\u3067": 31, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [31, 53], "\u30af\u30e9\u30b9\u306e\u4ee3\u308f\u308a\u306b": 31, "animationci": 31, "animation_ci": 31, "y\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 31, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [32, 80, 92, 93, 187, 189, 228, 232], "\u95a2\u6570\u306f\u51fa\u529b\u5148\u306ehtml\u306e\u4efb\u610f\u306e\u5834\u6240\u306bjavascript\u306e\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u307e\u3059": 32, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fapysc\u304c\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u306a\u3044\u7279\u6b8a\u306a\u51e6\u7406\u306a\u3069\u3092\u8ffd\u52a0\u3059\u308b\u969b\u306a\u3069\u306b\u5f79\u306b\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 32, "django\u306a\u3069\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30bf\u30b0\u306a\u3069\u3092\u72ec\u81ea\u306e\u51fa\u529b\u3057\u305f\u3044\u5834\u5408\u306a\u3069": 32, "\u95a2\u6570\u306f\u5f15\u6570\u306bjavascript\u306e\u30b3\u30fc\u30c9\u306e\u6587\u5b57\u5217\u304c\u5fc5\u8981\u3068\u3057\u307e\u3059": 32, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306e\u30cf\u30f3\u30c9\u30e9\u5185\u3067": 32, "consol": [32, 228, 233], "log": [32, 228, 233], "\u306ejavascript\u306e\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059": 32, "express": [32, 49, 82, 96], "append_js_expression_basic_usag": 32, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068": 32, "\u3068\u3044\u3046\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u306b\u8868\u793a\u3055\u308c\u307e\u3059": 32, "f12\u30ad\u30fc\u3092\u62bc\u3057\u3066\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044": 32, "javascript\u306e\u30b3\u30fc\u30c9\u306e\u8ffd\u52a0\u3092\u884c\u3044\u307e\u3059": 32, "\u8ffd\u52a0\u5bfe\u8c61\u306ejavascript\u306e\u30b3\u30fc\u30c9\u306e\u6587\u5b57\u5217": 32, "\u4e8b\u524d\u306b\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u3092\u78ba\u8a8d\u3057\u3066\u304a\u304f\u3068\u8aad\u307f\u9032\u3081\u308b\u4e0a\u3067\u5f79\u306b\u7acb\u3064\u304b\u3082\u3057\u308c\u307e\u305b\u3093": [33, 58, 81, 147, 192], "\u306a\u305capysc\u3067\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30c7\u30fc\u30bf\u306e\u578b\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u306e\u304b": [33, 58, 67, 81, 96, 98, 101, 102, 103, 104, 105, 106, 144, 147, 186, 192], "\u30af\u30e9\u30b9\u306fapysc\u306e\u914d\u5217\u306e\u30af\u30e9\u30b9\u3067\u3059": 33, "\u3053\u306e\u30af\u30e9\u30b9\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": [33, 98, 144], "\u306e\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 33, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u306f": [33, 60, 97, 152, 167, 169, 170, 173, 175, 176, 177, 182, 229], "tupl": [33, 37, 65, 153], "rang": [33, 37, 67, 146], "\u306a\u3069\u306e\u30a4\u30c6\u30e9\u30d6\u30eb\u306a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5f15\u6570\u306b\u5fc5\u8981\u3068\u306a\u308a\u307e\u3059": 33, "arr_from_list": 33, "arr_from_tupl": 33, "4": [33, 34, 36, 37, 39, 42, 46, 47, 48, 77, 117, 118, 141, 148, 166, 177, 180, 194, 200], "other_arr": [33, 36, 37], "8": [33, 60, 97, 141, 147, 156, 157, 158, 177, 180], "9": [33, 52, 53, 149, 156, 157], "arr_from_arr": 33, "\u30af\u30e9\u30b9\u306e\u5024\u306e\u578b\u304c\u4e00\u610f\u306a\u5834\u5408\u306f\u914d\u5217\u306b\u5bfe\u3057\u3066\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u306e\u6307\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 33, "\u3053\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306fide\u4e0a\u306a\u3069\u3067\u4fbf\u5229\u306a\u30b1\u30fc\u30b9\u304c\u3042\u308a\u307e\u3059": 33, "\u578b\u30c1\u30a7\u30c3\u30af\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306a\u3069\u3092\u4f7f\u3046\u5834\u5408\u306b": 33, "arr": [33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 67, 101, 102, 103, 156, 157, 180], "int_val": [33, 49, 54, 80, 98, 144, 147, 189, 228, 232, 233], "pop": [33, 146], "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e": [33, 41, 167, 168, 169, 170, 172, 173, 174, 175], "\u5f15\u6570\u306f\u7701\u7565\u53ef\u80fd\u306a\u5f15\u6570\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 33, "\u3082\u3057\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": [33, 144], "__getitem__": 33, "\u30e1\u30bd\u30c3\u30c9": [33, 86, 89, 137, 146], "\u306a\u3069\u306e\u914d\u5217\u306e\u6dfb\u3048\u5b57\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u8a72\u5f53\u3057\u307e\u3059": 33, "\u306a\u3069\u306e\u914d\u5217\u306e\u5024\u306b\u95a2\u4fc2\u3057\u305f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u6307\u5b9a\u3055\u308c\u305f\u578b\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3059\u308b\u30b1\u30fc\u30b9\u304c\u767a\u751f\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 33, "\u3053\u306e\u8fd4\u5374\u51e6\u7406\u306fpython\u30e9\u30f3\u30bf\u30a4\u30e0\u4e0a\u3067\u914d\u5217\u306e\u6dfb\u3048\u5b57\u304c\u914d\u5217\u306e\u9577\u3055\u3092\u8d8a\u3048\u308b\u5834\u5408\u306a\u3069\u306b\u767a\u751f\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 33, "index": [33, 38, 39, 44, 92, 93, 110, 179, 187, 191], "out": [33, 163], "bound": 33, "python": 33, "runtim": 33, "int_valu": [33, 151, 227], "\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u306e\u5171\u901a\u306e": [33, 147], "append": [33, 41, 65, 101, 104, 122, 136, 146, 153], "push": [33, 146, 232], "extend": [33, 146], "concat": [33, 146], "insert": [33, 96, 146], "insert_at": [33, 146], "remov": [33, 66, 89, 146], "remove_at": [33, 146], "sort": [33, 45, 146], "revers": [33, 47, 146], "slice": [33, 146], "length": [33, 141, 146], "\u914d\u5217\u306e\u9577\u3055\u53d6\u5f97": 33, "join": [33, 146], "\u5024\u306e\u9023\u7d50\u6587\u5b57\u5217\u751f\u6210": 33, "index_of": [33, 146], "\u5024\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u53d6\u5f97": 33, "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [33, 146], "_arrvalu": [33, 34, 37, 38, 39, 41, 43, 44], "_loop": 33, "initialize_with_base_value_interfac": 33, "initializewithbasevalueinterfac": [33, 105, 106], "variable_name_suffix": [33, 58, 60, 62, 63, 68, 74, 81, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 146, 147, 150, 151, 152, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 229], "skip_init_substitution_expression_append": [33, 58, 68, 81, 147, 192], "bool": [33, 47, 54, 58, 68, 81, 93, 147, 149, 164, 167, 168, 169, 170, 172, 173, 174, 175, 187, 192, 195, 206, 207, 235], "fals": [33, 47, 54, 56, 58, 59, 66, 68, 81, 90, 96, 98, 104, 114, 147, 158, 164, 167, 168, 169, 170, 172, 173, 174, 175, 187, 190, 191, 192, 206, 207, 227, 230, 232, 233], "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u914d\u5217\u3092\u6271\u3046\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 33, "\u914d\u5217\u306e\u521d\u671f\u5024": 33, "\u914d\u5217\u306e\u5024\u306e\u56fa\u5b9a\u306e\u578b": 33, "\u3053\u306e\u5f15\u6570\u306f": [33, 141, 222], "string": [33, 40, 60, 62, 65, 87, 96, 97, 102, 103, 104, 105, 106, 108, 141, 150, 151, 152, 153, 158, 164, 166, 177, 178, 182, 183, 206, 207, 227, 229, 235], "\u306a\u3069\u306eapysc\u306e\u578b\u306e\u307f\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 33, "\u306a\u3069\u306e\u30e1\u30bd\u30c3\u30c9": 33, "\u304c\u6307\u5b9a\u3055\u308c\u305f\u578b\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3059\u308b\u30b1\u30fc\u30b9\u304c\u767a\u751f\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 33, "javascript\u4e0a\u306e\u5909\u6570\u306e\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u8a2d\u5b9a\u3067\u3059": [33, 58, 60, 62, 63, 68, 74, 81, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 147, 150, 151, 152, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 229], "\u3053\u306e\u8a2d\u5b9a\u306fjavascript\u306e\u30c7\u30d0\u30c3\u30b0\u6642\u306b\u5f79\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": [33, 58, 60, 62, 63, 68, 74, 81, 97, 101, 102, 103, 104, 105, 106, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 147, 150, 151, 152, 154, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178, 182, 190, 191, 192, 194, 198, 199, 200, 202, 205, 206, 207, 229], "\u521d\u671f\u5024\u306e\u4ee3\u5165\u306e\u30b3\u30fc\u30c9\u8868\u73fe\u3092\u30b9\u30ad\u30c3\u30d7\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024\u3067\u3059": [33, 58, 81, 147, 192], "\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u30af\u30e9\u30b9\u5185\u90e8\u306e\u5b9f\u88c5\u3067\u4f7f\u7528\u3055\u308c\u307e\u3059": [33, 58, 81, 147, 192], "\u73fe\u5728\u306e\u914d\u5217\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 33, "\u73fe\u5728\u306e\u914d\u5217\u306e\u5024": 33, "apysc\u306e\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u306e": [33, 58, 81, 147, 192], "\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u914d\u5217\u306e\u672b\u7aef\u306b\u4efb\u610f\u306e\u5024\u3092\u8ffd\u52a0\u3057\u307e\u3059": 34, "\u3053\u308c\u3089\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u304a\u4e92\u3044\u306b\u540c\u3058\u6319\u52d5\u3092\u3057\u307e\u3059": 34, "\u306fpython\u5bc4\u308a\u306a\u540d\u524d\u3067\u3042\u308a": 34, "\u306fjavascript\u5bc4\u308a\u306a\u540d\u524d\u3067\u30a8\u30a4\u30ea\u30a2\u30b9\u3068\u3057\u3066\u8a2d\u3051\u3066\u3042\u308a\u307e\u3059": 34, "\u306e\u5404\u30e1\u30bd\u30c3\u30c9\u306f\u7b2c\u4e00\u5f15\u6570\u306b": 34, "valu": [34, 38, 39, 43, 44, 48, 49, 50, 51, 54, 55, 60, 62, 65, 86, 87, 96, 97, 98, 103, 105, 106, 124, 144, 146, 152, 153, 155, 156, 157, 158, 166, 177, 178, 182, 189, 194, 204, 206, 227, 228, 229, 232, 234], "\u3068\u3044\u3046\u5f15\u6570\u540d\u3067\u8ffd\u52a0\u3059\u308b\u5024\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 34, "\u4efb\u610f\u306e\u5024\u3092\u3053\u306e\u914d\u5217\u306e\u672b\u5c3e\u306b\u52a0\u3048\u307e\u3059": 34, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f": 34, "\u30e1\u30bd\u30c3\u30c9\u3068\u540c\u69d8\u306b\u52d5\u4f5c\u3057\u307e\u3059": 34, "\u8ffd\u52a0\u5bfe\u8c61\u306e\u4efb\u610f\u306e\u5024": [34, 39], "\u30e1\u30bd\u30c3\u30c9\u306f\u914d\u5217\u306e\u5024\u3092\u7a7a\u306b\u3057\u307e\u3059": 35, "\u30e1\u30bd\u30c3\u30c9\u306f\u547c\u3073\u51fa\u3057\u306b\u7279\u306b\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 35, "20": [35, 41, 50, 59, 65, 81, 82, 84, 96, 98, 107, 108, 139, 141, 147, 148, 149, 153, 155, 164, 176, 206, 207, 212, 227, 232], "30": [35, 41, 50, 60, 68, 72, 75, 96, 97, 122, 140, 142, 147, 148, 152, 176, 182, 227, 229, 234], "\u30af\u30e9\u30b9\u306b\u304a\u3051\u308b\u7b49\u5024\u3068\u975e\u7b49\u5024\u306e\u6bd4\u8f03\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 36, "\u30af\u30e9\u30b9\u306e\u5024\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30ea\u30b9\u30c8\u53ca\u3073\u5225\u306e": 36, "\u30af\u30e9\u30b9\u306e\u5024\u3068\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 36, "\u7d50\u679c\u306f": 36, "boolean": [36, 54, 56, 59, 66, 67, 74, 87, 90, 96, 98, 104, 105, 114, 124, 144, 147, 149, 158, 164, 167, 168, 169, 170, 172, 173, 174, 175, 190, 191, 195, 206, 207, 210, 214, 216, 226, 227, 230, 234, 235], "\u578b\u3068\u306a\u308a\u307e\u3059": [36, 155, 204], "result": [36, 58, 66, 90, 122, 134, 149, 155, 158, 191, 195, 198, 199, 200, 202, 204], "\u7b49\u5024\u306e\u6bd4\u8f03\u8a18\u53f7": 36, "\u3068\u975e\u7b49\u5024\u306e\u6bd4\u8f03\u8a18\u53f7": 36, "\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 36, "\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f2\u3064\u306e\u914d\u5217\u306e\u9023\u7d50\u51e6\u7406\u3092\u6271\u3044\u307e\u3059": 37, "\u30e1\u30bd\u30c3\u30c9\u306f\u5143\u3005\u306e\u914d\u5217\u81ea\u4f53\u3092\u66f4\u65b0\u3057\u8fd4\u5374\u5024\u306f\u8a2d\u5b9a\u3055\u308c\u305anone\u3068\u306a\u308a\u307e\u3059": 37, "\u30e1\u30bd\u30c3\u30c9\u3067\u306f\u9023\u7d50\u7d50\u679c\u306e\u914d\u5217\u3092\u8fd4\u5374\u3057\u307e\u3059": 37, "\u5143\u306e\u914d\u5217\u306f\u5909\u5316\u3057\u307e\u305b\u3093": 37, "\u30e1\u30bd\u30c3\u30c9\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u305d\u308c\u305e\u308c\u7b2c\u4e00\u5f15\u6570\u306b\u9023\u7d50\u5bfe\u8c61\u306e\u4ed6\u306e\u914d\u5217\u306a\u3069": 37, "\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30ea\u30b9\u30c8\u3084\u30bf\u30d7\u30eb": 37, "apysc\u306e": [37, 52, 53], "\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 37, "\u5f15\u6570\u306b\u6307\u5b9a\u3055\u308c\u305f\u914d\u5217\u3092\u3053\u306e\u914d\u5217\u3078\u9023\u7d50\u3057\u307e\u3059": 37, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5f15\u6570\u306e\u914d\u5217\u306e\u5024\u3092\u3053\u306e\u914d\u5217\u306e\u5f8c\u306b\u914d\u7f6e\u3057\u307e\u3059": 37, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306fconcat\u30e1\u30bd\u30c3\u30c9\u3068\u4f3c\u305f\u6319\u52d5\u3092\u3057\u307e\u3059\u304c": 37, "\u914d\u5217\u306e\u5024\u3092\u76f4\u63a5\u66f4\u65b0\u3059\u308b\u304b": 37, "\u3082\u3057\u304f\u306f\u5225\u306e\u5024\u3068\u3057\u3066\u8fd4\u5374\u3059\u308b\u304b": 37, "\u306e\u9055\u3044\u304c\u3042\u308a\u307e\u3059": 37, "\u9023\u7d50\u5bfe\u8c61\u3068\u306a\u308b\u4ed6\u306e\u914d\u5217\u306e": 37, "\u3082\u3057\u304f\u306f\u305d\u308c\u306b\u8fd1\u3057\u3044": 37, "\u5024": 37, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306fextend\u30e1\u30bd\u30c3\u30c9\u3068\u4f3c\u305f\u6319\u52d5\u3092\u3057\u307e\u3059\u304c": 37, "concaten": 37, "\u9023\u7d50\u7d50\u679c\u306e\u914d\u5217\u306e\u5024": 37, "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5024\u306e\u914d\u5217\u5185\u3067\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 38, "\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057": [38, 125], "\u5024\u304c\u914d\u5217\u5185\u3067\u898b\u3064\u304b\u3063\u305f\u5834\u5408\u306b\u306f\u305d\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 38, "\u3082\u3057\u3082\u914d\u5217\u5185\u3067\u5024\u304c\u898b\u3064\u304b\u3089\u306a\u304b\u3063\u305f\u5834\u5408\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306f": 38, "\u3068\u306a\u308a\u307e\u3059": [38, 41, 54, 222], "\u6307\u5b9a\u3055\u308c\u305f\u5024\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u4f4d\u7f6e\u3092\u691c\u7d22\u3057\u305d\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 38, "\u691c\u7d22\u5bfe\u8c61\u306e\u4efb\u610f\u306e\u5024": 38, "\u5024\u304c\u898b\u3064\u304b\u3063\u305f\u4f4d\u7f6e\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 38, "\u3082\u3057\u914d\u5217\u304c\u5bfe\u8c61\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u306a\u3044\u5834\u5408\u306f": 38, "1\u3068\u306a\u308a\u307e\u3059": 38, "\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4efb\u610f\u306e\u5024\u3092\u914d\u5217\u306e\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3078\u3068\u8ffd\u52a0\u3057\u307e\u3059": 39, "\u305d\u308c\u305e\u308c\u306e\u54e1\u30b9\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u540c\u3058\u6319\u52d5\u3092\u3057\u307e\u3059": 39, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u3068\u306a\u3063\u3066\u3044\u307e\u3059": 39, "\u306e\u540c\u3058\u5f15\u6570\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 39, "\u5f15\u6570\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 39, "\u3068apysc\u306e": 39, "\u30af\u30e9\u30b9\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": [39, 141], "\u3053\u306e\u914d\u5217\u306e\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4f4d\u7f6e\u3078\u5024\u3092\u633f\u5165\u3057\u307e\u3059": 39, "\u30e1\u30bd\u30c3\u30c9\u3068\u540c\u3058\u6319\u52d5\u3092\u3057\u307e\u3059": 39, "\u5024\u3092\u8ffd\u52a0\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 39, "\u30e1\u30bd\u30c3\u30c9\u306f\u5f15\u6570\u306b\u6307\u5b9a\u3055\u308c\u305f\u533a\u5207\u308a\u6587\u5b57\u3067\u9023\u7d50\u3055\u308c\u305f\u914d\u5217\u306e\u5024\u306e": 40, "\u30af\u30e9\u30b9\u306e\u6587\u5b57\u5217\u3092\u8fd4\u5374\u3057\u307e\u3059": 40, "\u30e1\u30bd\u30c3\u30c9\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u533a\u5207\u308a\u6587\u5b57\u3068\u3057\u3066\u306e": 40, "sep": [40, 201], "\u5f15\u6570\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": [40, 49, 87], "\u6307\u5b9a\u3055\u308c\u305f\u533a\u5207\u308a\u7528\u306e\u6587\u5b57\u5217\u3092\u4f7f\u3063\u3066\u914d\u5217\u306e\u5024\u3092\u9023\u7d50\u3057\u307e\u3059": 40, "\u533a\u5207\u308a\u6587\u5b57": [40, 201], "\u9023\u7d50\u3055\u308c\u305f\u6587\u5b57\u5217": 40, "\u5c5e\u6027\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [41, 57, 78, 184, 196, 208, 209, 210, 211, 212, 213, 214, 215, 216], "\u5c5e\u6027\u306f\u914d\u5217\u306e\u6700\u5f8c\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 41, "\u5c5e\u6027\u304c30\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u8a66\u3057\u3066\u3044\u307e\u3059": 41, "\u914d\u5217\u306e\u5024\u306f": 41, "\u3068\u306a\u3063\u3066\u3044\u307e\u3059": 41, "assert_equ": [41, 55, 57, 128, 143, 146, 150, 151, 155, 180, 184, 194, 196, 197, 198, 199, 200, 202, 203, 204, 211, 212, 227], "array_last_value_basic_usage_1": 41, "\u3082\u3057\u3082\u914d\u5217\u306e\u5024\u304c\u7a7a\u306e\u5834\u5408": 41, "\u3053\u306e\u5c5e\u6027\u306e\u5024\u306fjavascript\u306e\u30e9\u30f3\u30bf\u30a4\u30e0\u4e0a\u3067\u306f": 41, "undefin": [41, 49, 80], "\u306b\u306a\u308a\u307e\u3059": [41, 155, 160, 164, 213], "fixed_value_typ": 41, "assert_undefin": [41, 80, 146], "array_last_value_basic_usage_2": 41, "\u914d\u5217\u306e\u6700\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 41, "\u914d\u5217\u306e\u6700\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024": 41, "\u8a2d\u5b9a\u306f\u3053\u306e\u5c5e\u6027\u306e\u5024\u306e\u578b\u306b\u5f71\u97ff\u3057\u307e\u3059": 41, "\u3082\u3057\u914d\u5217\u304c\u7a7a\u306e\u5834\u5408": 41, "\u3053\u306e\u5024\u306fjavascript\u306e\u30e9\u30f3\u30bf\u30a4\u30e0\u4e0a\u3067\u306f": 41, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u914d\u5217\u306e\u5024\u306e\u9577\u3055": 42, "\u4ef6\u6570": [42, 84], "\u5c5e\u6027\u306fgetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u307f\u3092\u6301\u3061\u307e\u3059": 42, "\u8fd4\u5374\u5024\u306fapysc\u306e": 42, "\u30af\u30e9\u30b9\u306e\u6574\u6570\u5024\u3068\u306a\u308a\u307e\u3059": 42, "\u30af\u30e9\u30b9\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 42, "\u95a2\u6570\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u304a\u3089\u305a": 42, "\u3082\u3057\u4f7f\u7528\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 42, "\u4ee3\u308f\u308a\u306b": 42, "\u5c5e\u6027\u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044": 42, "t": [42, 84], "appli": [42, 84], "pleas": [42, 84, 96], "us": [42, 84, 96, 98], "properti": [42, 84, 181, 205], "instead": [42, 84], "\u3053\u306e\u914d\u5217\u306e\u9577\u3055": 42, "\u5024\u306e\u6570": 42, "\u3092\u53d6\u5f97\u3057\u307e\u3059": [42, 57, 60, 77, 84, 97, 143, 151, 152, 166, 177, 178, 182, 184, 196, 206, 229], "\u5024\u306e\u4ef6\u6570": 42, "\u30e1\u30bd\u30c3\u30c9\u306f\u914d\u5217\u5185\u306e\u6700\u5f8c\u306e\u5024\u3092\u914d\u5217\u304b\u3089\u53d6\u308a\u9664\u304d": 43, "\u305d\u3057\u3066\u305d\u306e\u53d6\u308a\u9664\u3044\u305f\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 43, "\u30e1\u30bd\u30c3\u30c9\u306b\u306f\u5fc5\u8981\u306a\u5f15\u6570\u306f\u7121\u304f": 43, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u914d\u5217\u306e\u6700\u5f8c\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 43, "last_valu": [43, 146], "\u3053\u306e\u914d\u5217\u306e\u672b\u5c3e\u306e\u5024\u3092\u53d6\u308a\u9664\u304d": 43, "\u305d\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 43, "\u53d6\u308a\u9664\u304b\u308c\u305f\u5024": 43, "popped_v": 43, "\u30e1\u30bd\u30c3\u30c9\u306f\u914d\u5217\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u5024\u3092\u53d6\u308a\u9664\u304d": 44, "\u30e1\u30bd\u30c3\u30c9\u306f\u914d\u5217\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 44, "\u30e1\u30bd\u30c3\u30c9\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u53d6\u308a\u9664\u304f\u5bfe\u8c61\u306e\u5024\u3092\u7b2c\u4e00\u5f15\u6570\u306b\u5fc5\u8981\u3068\u3057\u307e\u3059": 44, "\u30e1\u30bd\u30c3\u30c9\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u914d\u5217\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u6574\u6570": 44, "python\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": [44, 46, 84], "\u3082\u3057\u304f\u306fapysc\u306e": [44, 46, 81], "\u3092\u7b2c\u4e00\u5f15\u6570\u306b\u5fc5\u8981\u3068\u3057\u307e\u3059": 44, "\u6307\u5b9a\u3055\u308c\u305f\u5024\u3092\u3053\u306e\u914d\u5217\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 44, "ani": [44, 48, 49, 50, 51, 54, 56, 82, 83, 89, 96, 98, 101, 102, 103, 104, 105, 106, 144, 180, 191, 228, 231], "\u53d6\u308a\u9664\u304f\u5bfe\u8c61\u306e\u5024": 44, "\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u3053\u306e\u914d\u5217\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 44, "\u53d6\u308a\u9664\u304f\u5024\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 44, "\u30e1\u30bd\u30c3\u30c9\u306f\u914d\u5217\u306e\u5024\u3092\u76f4\u63a5\u66f4\u65b0\u3059\u308b\u5f62\u3067\u5024\u306e\u9806\u756a\u3092\u9006\u9806\u306b\u3057\u307e\u3059": 45, "\u30e1\u30bd\u30c3\u30c9\u306f\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": [45, 128, 151, 185, 227], "\u3053\u306e\u914d\u5217\u306e\u5024\u3092\u76f4\u63a5\u9006\u9806\u306b\u3057\u307e\u3059": 45, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u7bc4\u56f2\u306e\u914d\u5217\u306e\u5024\u3092\u62bd\u51fa\u3057\u65b0\u3057\u3044\u914d\u5217\u3092\u8fd4\u5374\u3057\u307e\u3059": 46, "\u306e\u5404\u5f15\u6570": 46, "\u306e\u6574\u6570": 46, "\u3092\u5fc5\u8981\u3068\u3057": 46, "\u8fd4\u5374\u5024\u3068\u3057\u3066\u65b0\u3057\u3044\u914d\u5217\u3092\u8fd4\u3057\u307e\u3059": 46, "\u4f8b\u3068\u3057\u3066": [46, 167, 168, 169, 170, 172, 173, 174, 175], "\u5f15\u6570\u306b1\u3092\u6307\u5b9a\u3057": 46, "\u5f15\u6570\u306b3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": 46, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 46, "\u3068\u3044\u3046\u6307\u5b9a\u306b\u3088\u308b\u30b9\u30e9\u30a4\u30b9\u3068\u540c\u3058\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 46, "\u5143\u3005\u306e\u914d\u5217\u306e\u5024\u306f\u5909\u66f4\u3055\u308c\u307e\u305b\u3093": 46, "sliced_arr": 46, "\u6307\u5b9a\u3055\u308c\u305f\u958b\u59cb\u3068\u7d42\u4e86\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7bc4\u56f2\u3067\u3053\u306e\u914d\u5217\u3092\u30b9\u30e9\u30a4\u30b9\u3057\u307e\u3059": 46, "\u30b9\u30e9\u30a4\u30b9\u7bc4\u56f2\u306e\u958b\u59cb\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [46, 200], "\u30b9\u30e9\u30a4\u30b9\u7bc4\u56f2\u306e\u7d42\u4e86\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [46, 200], "\u7d50\u679c\u306e\u914d\u5217\u306e\u3053\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u542b\u307f\u307e\u305b\u3093": 46, "\u30b9\u30e9\u30a4\u30b9\u3055\u308c\u305f\u914d\u5217": 46, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u914d\u5217\u306e\u5024\u3092\u30bd\u30fc\u30c8\u3057\u307e\u3059": 47, "\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u6607\u9806\u3068\u306a\u308a\u307e\u3059": 47, "\u306f\u6607\u9806\u3067\u30bd\u30fc\u30c8\u3059\u308b\u5834\u5408\u5f15\u6570\u3092\u5fc5\u8981\u3068\u305b\u305a": 47, "\u914d\u5217\u306e\u5024\u306f\u76f4\u63a5\u66f4\u65b0\u3055\u308c\u307e\u3059": 47, "\u8fd4\u5374\u5024\u306f\u8a2d\u5b9a\u3055\u308c\u307e\u305b\u3093": 47, "ascend": 47, "\u5f15\u6570\u306b": [47, 54, 233], "\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": [47, 199, 206], "\u7d50\u679c\u306f\u964d\u9806\u3068\u306a\u308a\u307e\u3059": 47, "true": [47, 54, 56, 58, 66, 74, 89, 90, 93, 96, 104, 110, 114, 142, 144, 147, 158, 167, 168, 169, 170, 172, 173, 174, 175, 187, 190, 191, 206, 207, 210, 214, 216, 227, 230], "\u3053\u306e\u914d\u5217\u306e\u5024\u3092\u76f4\u63a5\u30bd\u30fc\u30c8\u3057\u307e\u3059": 47, "\u6607\u9806\u3067\u30bd\u30fc\u30c8\u3092\u884c\u3046\u304b\u3069\u3046\u304b\u306e\u6307\u5b9a\u3067\u3059": 47, "\u3082\u3057false\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": 47, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u964d\u9806\u3067\u5024\u3092\u30bd\u30fc\u30c8\u3057\u307e\u3059": 47, "\u95a2\u6570\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [48, 51, 52, 53, 54], "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f2\u3064\u306e\u914d\u5217\u306e\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 48, "\u95a2\u6570\u306f2\u3064\u306e\u914d\u5217\u306e\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u306a\u3044\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 48, "javascript\u306e\u5404\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u6319\u52d5": [48, 49, 50, 51, 52, 53, 54], "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5171\u306b": 48, "left": [48, 49, 50, 51, 52, 53, 54, 55, 141, 164, 183, 206, 207, 208, 209], "right": [48, 49, 50, 51, 52, 53, 54, 55, 96, 98, 141, 206, 208, 209], "\u3068\u3044\u30462\u3064\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 48, "\u5f15\u6570\u306f\u7701\u7565\u53ef\u3067\u3059": [48, 49, 50, 51, 52, 53, 54, 56], "\u5f15\u6570\u306b\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 48, "\u306e\u5024\u3082\u3057\u304f\u306fapysc\u306e": 48, "arrai": [48, 65, 67, 101, 102, 103, 104, 136, 153, 156, 157, 177, 178, 180, 189, 201, 206, 207, 227, 235], "\u306e\u5024\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 48, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u4f8b\u3067\u306f": 48, "\u95a2\u6570\u3092\u4f7f\u3063\u3066\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u3044\u307e\u3059": 48, "arr_1": 48, "ar": [48, 50, 51, 55, 96], "equal": [48, 50, 51, 55, 98, 144], "assert_arrays_equal_basic_usage_1": 48, "arr_2": [48, 189, 232], "\u95a2\u6570\u3092\u4f7f\u3063\u3066\u5024\u304c\u4e00\u81f4\u3057\u3066\u304a\u3089\u305a\u30c1\u30a7\u30c3\u30af\u304c\u5931\u6557\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u3044\u307e\u3059": 48, "assert_arrays_equal_basic_usage_2": 48, "fail": [48, 49, 50, 51, 52, 53, 54, 55], "\u95a2\u6570\u3092\u4f7f\u3063\u3066\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u306a\u3044\u305f\u3081\u30c1\u30a7\u30c3\u30af\u3092\u901a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u3044\u307e\u3059": 48, "assert_arrays_not_equal_basic_usage_1": 48, "\u3082\u3057\u3082": [48, 51, 54, 81, 95, 98, 142, 147], "\u3082\u3057\u304f\u306f": [48, 50, 63, 82, 96, 98, 122, 127, 155, 158, 168, 192, 193, 194, 195, 204, 210, 214, 216, 222], "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b": 48, "\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": [48, 50, 220, 222, 224], "\u81ea\u52d5\u7684\u306b\u305d\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4ee3\u308f\u308a\u306b": 48, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u4f7f\u7528\u3055\u308c\u307e\u3059": 48, "assert_arrays_equal_notes_for_the_assert_equ": 48, "outer_frames_index_adjust": [48, 50], "\u914d\u5217\u306e\u5024\u306e\u7b49\u5024\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 48, "\u6bd4\u8f03\u7528\u306e\u5de6\u8fba\u306e\u5024": [48, 50, 51, 52], "\u6bd4\u8f03\u7528\u306e\u53f3\u8fba\u306e\u5024": [48, 50, 51, 52], "\u30c1\u30a7\u30c3\u30af\u306b\u5931\u6557\u3057\u305f\u969b\u306b\u8868\u793a\u3059\u308b\u30e1\u30c3\u30bb\u30fc\u30b8": [48, 49, 50, 51, 52, 53, 54], "trace\u95a2\u6570\u306e\u95a2\u6570\u5916\u306e\u53c2\u7167\u3059\u308b\u30d5\u30ec\u30fc\u30e0\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u8abf\u6574\u5024\u3067\u3059": [48, 50], "\u3053\u306e\u5f15\u6570\u306f\u547c\u3073\u51fa\u3057\u5143\u306e\u60c5\u5831\u306e\u4f4d\u7f6e\u3092\u8abf\u6574\u3059\u308b\u306e\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059": [48, 50], "\u3053\u306e\u5f15\u6570\u306f\u5185\u90e8\u306e\u30ed\u30b8\u30c3\u30af\u3067\u306e\u307f\u4f7f\u7528\u3055\u308c\u308b\u305f\u3081\u901a\u5e38\u306f\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093": [48, 50], "\u30af\u30e9\u30b9\u306e\u5024\u306e\u6bd4\u8f03\u6642\u306b\u306f": 48, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4ee3\u308f\u308a\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059": 48, "javascript\u4e0a\u3067\u306fpython\u306e\u30ea\u30b9\u30c8\u306e\u3088\u3046\u306b\u76f4\u63a5\u914d\u5217\u306e\u6bd4\u8f03\u304c\u884c\u3048\u306a\u3044\u305f\u3081\u4ee3\u308f\u308a\u306b\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u4f7f\u7528\u3055\u308c\u307e\u3059": 48, "\u914d\u5217\u306e\u5024\u306e\u975e\u7b49\u5024\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 48, "\u306e\u95a2\u6570\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 49, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c\u5b9a\u7fa9\u6e08\u307f\u304b\u3069\u3046\u304b": 49, "\u521d\u671f\u5316\u3055\u308c\u3066\u3044\u308b\u304b": 49, "\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 49, "\u95a2\u6570\u306f\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044": 49, "\u72b6\u614b\u3084\u524a\u9664\u6e08\u307f\u304b\u3069\u3046\u304b\u306a\u3069\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 49, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5171\u306b": 49, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u521d\u671f\u5316\u3055\u308c\u3066\u3044\u308b\u5024\u306b\u5bfe\u3057\u3066": 49, "\u95a2\u6570\u3067\u30c1\u30a7\u30c3\u30af\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 49, "\u30c1\u30a7\u30c3\u30af\u3092\u901a\u308a\u307e\u3059": 49, "defin": [49, 96], "assert_defined_basic_usage_1": 49, "side": [49, 51, 54, 55], "variabl": [49, 51, 54, 55, 189, 232], "i_11": [49, 51, 54, 55], "other": [49, 127, 190, 191], "than": [49, 98, 144], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u524a\u9664\u306e\u6e08\u307f\u306e\u5024\u306b\u5bfe\u3057\u3066": 49, "\u95a2\u6570\u3067\u30c1\u30a7\u30c3\u30af\u3092\u3057\u3066\u3044\u307e\u3059": 49, "\u30c1\u30a7\u30c3\u30af\u306f\u5931\u6557\u3057\u307e\u3059": [49, 50], "append_js_express": [49, 146], "f": 49, "variable_nam": [49, 189, 190], "assert_defined_basic_usage_2": 49, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u524a\u9664\u6e08\u307f\u306e\u5024\u306b\u5bfe\u3057\u3066": 49, "\u30c1\u30a7\u30c3\u30af\u306f\u901a\u308a\u307e\u3059": [49, 50], "assert_undefined_basic_usage_1": 49, "\u5b9a\u7fa9\u6e08\u307f\u306e\u5024\u304b\u3069\u3046\u304b\u306e\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 49, "\u30c1\u30a7\u30c3\u30af\u5bfe\u8c61\u306e\u5024": [49, 54], "\u672a\u5b9a\u7fa9\u306e\u5024\u304b\u3069\u3046\u304b\u306e\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 49, "\u306e\u5404\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 50, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f2\u3064\u306e\u8f9e\u66f8": 50, "\u578b\u306a\u3069": 50, "\u306e\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u308b\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 50, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f2\u3064\u306e\u8f9e\u66f8\u306e\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u306a\u3044\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 50, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [50, 54, 163], "\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": [50, 54, 136, 164, 166, 204, 207], "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 50, "\u3084apysc\u306e": 50, "\u306e\u5024\u3092\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 50, "\u95a2\u6570\u3092\u4f7f\u3063\u3066\u5024\u304c\u540c\u3058\u8f9e\u66f8\u306b\u5bfe\u3057\u3066\u30c1\u30a7\u30c3\u30af\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 50, "dict_val": [50, 83], "b": [50, 81, 82, 83, 84, 106], "assert_dicts_equal_basic_usage_1": 50, "dct_1": 50, "\u95a2\u6570\u3092\u4f7f\u3063\u3066\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u306a\u3044\u8f9e\u66f8\u306b\u5bfe\u3057\u3066\u30c1\u30a7\u30c3\u30af\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 50, "assert_dicts_equal_basic_usage_2": 50, "assert_dicts_not_equal_basic_usage_1": 50, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5f15\u6570\u3078": 50, "\u81ea\u52d5\u7684\u306b": 50, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u305d\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4ee3\u308f\u308a\u306b\u547c\u3070\u308c\u307e\u3059": 50, "assert_dicts_equal_notes_for_assert_equ": 50, "\u8f9e\u66f8\u306e\u5024\u306e\u7b49\u5024\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 50, "\u95a2\u6570\u3067\u306e": 50, "\u306e\u30af\u30e9\u30b9\u306e\u5024\u306e\u6bd4\u8f03\u6642\u306b\u306f\u4ee3\u308f\u308a\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059": 50, "javascript\u3067\u306fpython\u3068\u7570\u306a\u308a\u8f9e\u66f8\u306e\u5024\u3092\u76f4\u63a5\u6bd4\u8f03\u3067\u304d\u306a\u3044\u305f\u3081": 50, "dict_1": [50, 81, 84], "dict_2": [50, 81], "\u8f9e\u66f8\u306e\u5024\u306e\u975e\u7b49\u5024\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 50, "\u30af\u30e9\u30b9\u306e\u5024\u306e\u6bd4\u8f03\u6642\u306b\u306f\u4ee3\u308f\u308a\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059": 50, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f2\u3064\u306ejavascript\u4e0a\u306e\u5024\u304c\u7b49\u5024\u304b\u3069\u3046\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 51, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f2\u3064\u306e\u5024\u304c\u7b49\u5024\u3067\u306f\u306a\u3044\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 51, "\u306e\u5404\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": [51, 68, 140, 229], "\u5f15\u6570\u306e\u5024\u3068": 51, "\u5f15\u6570\u306e\u5024\u304c\u4e00\u81f4\u3057\u3066\u3044\u306a\u3044\u5834\u5408": 51, "\u95a2\u6570\u306b\u3088\u308b\u30c1\u30a7\u30c3\u30af\u306f\u5931\u6557\u3057\u30d6\u30e9\u30a6\u30b6\u4e0a\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u8868\u793a\u3055\u308c\u307e\u3059": 51, "int_1": [51, 54, 55, 59, 81, 96, 98, 108, 145, 147, 148, 149, 189, 193, 232], "11": [51, 54, 55, 77, 98, 149, 150, 156, 157], "assert_equal_basic_usag": 51, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082\u540c\u69d8\u306e\u5f15\u6570\u3092\u6301\u3063\u3066\u304a\u308a": 51, "\u5f15\u6570\u306e\u5024\u304c": [51, 54], "\u5f15\u6570\u306e\u5024\u3068\u7b49\u5024\u306e\u5834\u5408\u30c1\u30a7\u30c3\u30af\u51e6\u7406\u306f\u5931\u6557\u3057\u307e\u3059": 51, "assert_not_equal_basic_usag": 51, "\u7b49\u5024\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 51, "\u3082\u3057\u3082\u5f15\u6570\u306barray\u3084list\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": 51, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u51e6\u7406\u306e\u4ee3\u308f\u308a\u306bassert_arrays_equal\u95a2\u6570\u304c\u547c\u3070\u308c\u307e\u3059": 51, "\u3082\u3057\u3082\u5f15\u6570\u306bdictionary\u3084dict\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": 51, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u51e6\u7406\u306e\u4ee3\u308f\u308a\u306bassert_dicts_equal\u95a2\u6570\u304c\u547c\u3070\u308c\u307e\u3059": 51, "int_2": [51, 81, 96, 98, 147, 148, 149, 232], "\u975e\u7b49\u5024\u6761\u4ef6\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 51, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u51e6\u7406\u306e\u4ee3\u308f\u308a\u306bassert_arrays_not_equal\u95a2\u6570\u304c\u547c\u3070\u308c\u307e\u3059": 51, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4ee3\u308f\u308a\u306bassert_dicts_not_equal\u95a2\u6570\u304c\u547c\u3070\u308c\u307e\u3059": 51, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f1\u3064\u76ee\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c2\u3064\u76ee\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 52, "\u4f3c\u305f\u3088\u3046\u306a\u5f62\u3067": [52, 53, 77, 125], "\u95a2\u6570\u3067\u306f\u6700\u521d\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c2\u3064\u76ee\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u304b\u3082\u3057\u304f\u306f\u540c\u5024\u306a\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 52, "\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": [52, 125, 155, 168], "\u3053\u308c\u3089\u306e\u5f15\u6570\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": [52, 53], "\u306a\u3069\u306e\u6570\u5024\u306e\u5024\u306e\u307f\u53d7\u3051\u4ed8\u3051\u307e\u3059": [52, 53], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u304c\u5931\u6557\u3057\u305f\u969b\u306b": [52, 53], "messag": [52, 53], "\u5f15\u6570\u306e\u5024\u3092\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u8868\u793a\u3057\u307e\u3059": [52, 53], "int_val_1": [52, 53], "int_val_2": [52, 53], "int_val_3": [52, 53], "assert_greater_and_greater_equal_basic_usage_1": 52, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u304c\u5931\u6557\u3057": [52, 53], "\u3068\u3044\u3046\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30d6\u30e9\u30a6\u30b6\u4e0a\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u306b\u8868\u793a\u3055\u308c\u307e\u3059": [52, 53], "assert_greater_and_greater_equal_basic_usage_2": 52, "javascript\u306e\u8d85\u904e\u6761\u4ef6\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 52, "\u5927\u304d\u3044\u5074\u306e\u5024": [52, 53], "\u5c0f\u3055\u3044\u5074\u306e\u5024": [52, 53], "javascript\u306e\u4ee5\u4e0a\u306e\u6761\u4ef6\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 52, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f1\u3064\u76ee\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c2\u3064\u76ee\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 53, "\u95a2\u6570\u3067\u306f\u6700\u521d\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c2\u3064\u76ee\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u304b\u3082\u3057\u304f\u306f\u540c\u5024\u306a\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 53, "\u5f15\u6570\u3068": 53, "\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": [53, 87, 105, 106, 135, 150, 194, 206, 220, 231], "assert_less_and_less_equal_basic_usage_1": 53, "assert_less_and_less_equal_basic_usage_2": 53, "javascript\u306e\u672a\u6e80\u6761\u4ef6\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 53, "\u6bd4\u8f03\u7528\u306e\u5de6\u8fba\u5074\u306e\u5024": 53, "\u6bd4\u8f03\u7528\u306e\u53f3\u8fba\u5074\u306e\u5024": 53, "assert_greater_equ": [53, 146], "javascript\u306e\u4ee5\u4e0b\u6761\u4ef6\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 53, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f": 54, "\u306e\u5024\u304c\u771f": 54, "\u3067\u3042\u308b\u3053\u3068\u3092\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059": 54, "\u306e\u5024\u304c\u507d": 54, "type_strict": 54, "\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f": 54, "\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u30c1\u30a7\u30c3\u30af\u51e6\u7406\u306fjavascript\u306e\u53b3\u5bc6\u306a\u578b\u306e\u6bd4\u8f03": 54, "\u306b\u3088\u308b\u6bd4\u8f03": 54, "\u306b\u3088\u3063\u3066\u884c\u308f\u308c\u307e\u3059": 54, "\u305f\u3068\u3048\u3070\u3082\u3057": 54, "\u3067\u4e14\u3064": 54, "\u5f15\u6570\u304c": 54, "\u306e\u5834\u5408\u30c1\u30a7\u30c3\u30af\u51e6\u7406\u306f\u771f\u507d\u5024\u3068\u6574\u6570": 54, "\u9593\u306e\u6bd4\u8f03\u3068\u306a\u308b\u305f\u3081\u5931\u6557\u3057\u307e\u3059": 54, "\u3067\u4e14\u3064\u5024\u304c": 54, "\u95a2\u6570\u306b\u3088\u308b\u30c1\u30a7\u30c3\u30af\u51e6\u7406\u306f\u901a\u308a\u307e\u3059": 54, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3088\u308b\u30c1\u30a7\u30c3\u30af\u7d50\u679c\u306f\u30d6\u30e9\u30a6\u30b6\u4e0a\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u306b\u8868\u793a\u3055\u308c\u307e\u3059": 54, "\u4ee5\u4e0b\u306e": 54, "\u95a2\u6570\u3068": [54, 59], "\u306e\u5024\u3092\u4f7f\u7528\u3057\u305f\u51e6\u7406\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30c1\u30a7\u30c3\u30af\u3092\u901a\u308a\u307e\u3059": 54, "bool_1": [54, 58], "assert_true_basic_usage_1": 54, "b_3": [54, 232], "\u306e\u5024\u3092\u4f7f\u3063\u305f\u51e6\u7406\u3067\u306f\u30c1\u30a7\u30c3\u30af\u304c\u5931\u6557\u3057\u307e\u3059": 54, "assert_true_basic_usage_2": 54, "\u306e\u5024\u3092\u4f7f\u3044": 54, "\u3092\u6307\u5b9a\u3057\u305f\u4f8b\u3067\u306f\u30c1\u30a7\u30c3\u30af\u304c\u5931\u6557\u3057\u307e\u3059": 54, "assert_true_basic_usage_3": 54, "\u3092\u8a2d\u5b9a\u3057\u305f\u51e6\u7406\u3067\u306f\u30c1\u30a7\u30c3\u30af\u304c\u901a\u308a\u307e\u3059": 54, "assert_true_basic_usage_4": 54, "\u306e\u5024\u3092\u4f7f\u3063\u305f\u51e6\u7406\u3067\u306f\u30c1\u30a7\u30c3\u30af\u3092\u901a\u308a\u307e\u3059": 54, "assert_false_basic_usage_1": 54, "\u771f\u507d\u5024\u306e\u771f\u306e\u5024\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 54, "\u53b3\u5bc6\u306a\u578b\u3067\u306e\u30c1\u30a7\u30c3\u30af\u3092\u884c\u3046\u304b\u3069\u3046\u304b\u306e\u8a2d\u5b9a\u3067\u3059": 54, "\u305f\u3068\u3048\u3070type_strict\u306btrue\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u6574\u6570\u306e1\u3067\u306f\u30c6\u30b9\u30c8\u306f\u5931\u6557\u3057\u307e\u3059": 54, "\u9006\u306btype_strict\u304cfalse\u306e\u5834\u5408\u6574\u6570\u306e1\u306f\u30c6\u30b9\u30c8\u3092\u901a\u904e\u3057\u307e\u3059": 54, "\u771f\u507d\u5024\u306e\u507d\u306e\u5024\u306e\u305f\u3081\u306ejavascript\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 54, "\u305f\u3068\u3048\u3070type_strict\u306btrue\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u6574\u6570\u306e0\u3067\u306f\u30c6\u30b9\u30c8\u306f\u5931\u6557\u3057\u307e\u3059": 54, "\u9006\u306btype_strict\u304cfalse\u306e\u5834\u5408\u6574\u6570\u306e0\u306f\u30c6\u30b9\u30c8\u3092\u901a\u904e\u3057\u307e\u3059": 54, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306fjavascript\u4e0a\u3067\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3": 55, "\u30c6\u30b9\u30c8\u306a\u3069\u306e\u30c1\u30a7\u30c3\u30af\u51e6\u7406": 55, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u6319\u52d5\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 55, "javascript\u4e0a\u306e\u5404\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 55, "assert_": 55, "\u306e\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 55, "assert_tru": [55, 146], "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fapysc\u306e\u30eb\u30fc\u30c8\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b\u305f\u3081": 55, "\u3068\u3044\u3063\u305f\u8a18\u8ff0\u3067\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 55, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30c1\u30a7\u30c3\u30af\u7d50\u679c\u306f\u4ee5\u4e0b\u306e\u4f8b\u306e\u3088\u3046\u306b\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u8868\u793a\u3055\u308c\u307e\u3059": 55, "assertion_basic_behavior_result": 55, "\u4e0a\u8a18\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u7d50\u679c\u306e\u60c5\u5831\u304c\u8868\u793a\u3055\u308c\u307e\u3059": 55, "\u30d6\u30e9\u30a6\u30b6\u4e0a\u3067f12\u30ad\u30fc\u3092\u62bc\u3057\u3066\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044": 55, "\u3082\u3057\u30c1\u30a7\u30c3\u30af\u51e6\u7406\u306b\u5931\u6557\u3057\u305f\u5834\u5408\u3082\u540c\u69d8\u306b\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u8868\u793a\u3055\u308c\u307e\u3059": 55, "assertion_basic_behavior_results_fail": 55, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5171\u901a\u3057\u3066": 55, "\u3068\u3044\u3046\u7701\u7565\u53ef\u80fd\u306a\u5f15\u6570\u306e\u3068\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 55, "\u3082\u3057\u3053\u306e\u5f15\u6570\u306b\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": 55, "\u30c1\u30a7\u30c3\u30af\u51e6\u7406\u306b\u5931\u6557\u3057\u305f\u5834\u5408\u306b\u30a8\u30e9\u30fc\u306e\u8a73\u7d30\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u3057\u3066\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u8868\u793a\u3055\u308c\u307e\u3059": 55, "assertion_basic_behavior_msg": 55, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [56, 87, 161, 163], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u72ec\u81ea\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u767b\u9332\u3057": 56, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4efb\u610f\u306e\u7b87\u6240\u3067\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u767a\u751f": 56, "\u306e\u5236\u5fa1\u3092\u884c\u3044\u307e\u3059": 56, "custom_event_typ": [56, 160], "\u305d\u3057\u3066": [56, 86, 123, 129, 220], "\u5f15\u6570\u306f\u72ec\u81ea\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u7a2e\u985e\u306e\u6587\u5b57\u5217\u3067\u3059": 56, "\u3053\u306e\u5f15\u6570\u306e\u6587\u5b57\u5217\u306f": 56, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306e\u6307\u5b9a\u6642\u3067\u3082\u540c\u3058\u5024\u3092\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 56, "\u5f15\u6570\u306f\u30a4\u30d9\u30f3\u30c8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u3059": 56, "\u5834\u5408\u306b\u3088\u3063\u3066\u306f": 56, "\u30af\u30e9\u30b9\u3084": 56, "\u30af\u30e9\u30b9\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 56, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u56de\u8ee2\u3055\u305b\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059": 56, "\u3082\u3057\u56de\u8ee2\u91cf\u304c90\u5ea6\u306b\u9054\u3057\u305f\u5834\u5408": 56, "rotate_90_degre": 56, "\u306e\u72ec\u81ea\u306e\u30a4\u30d9\u30f3\u30c8\u304c\u767a\u751f\u3057": 56, "on_rotate_90_degre": 56, "\u95a2\u6570\u306e\u30cf\u30f3\u30c9\u30e9\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059": 56, "\u5bfe\u8c61\u306e\u30cf\u30f3\u30c9\u30e9\u5185\u3067\u306f2\u3064\u76ee\u306e\u56db\u89d2\u3092": 56, "visibl": [56, 85, 146], "\u5c5e\u6027\u3092\u6709\u52b9\u5316\u3059\u308b\u5f62\u3067\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 56, "custom": [56, 160], "on_rectangle_click": [56, 100, 111, 160, 224, 226, 228, 231], "unbind_click": [56, 160, 221, 224, 226], "timer_complet": [56, 146, 220, 223, 225, 234], "on_timer_complet": [56, 221, 223], "rate": 56, "degre": [56, 122], "rectangle_1": [56, 66, 90, 95, 107, 110, 112, 115, 121, 123, 124, 165, 185, 191, 221, 222], "rectangle_2": [56, 90, 95, 107, 110, 112, 115, 121, 123, 124, 165, 185, 191, 221, 222], "bind_and_trigger_custom_event_basic_usag": 56, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5358\u4f53\u306e\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u89e3\u9664\u3092\u884c\u3044\u307e\u3059": 56, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5168\u3066\u306e\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u89e3\u9664\u3092\u884c\u3044\u307e\u3059": 56, "_event": [56, 61, 79, 99, 161, 162, 163, 231], "customeventtyp": 56, "in_handler_head_express": 56, "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u30ea\u30b9\u30ca\u30fc\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 56, "\u5bfe\u8c61\u306e\u72ec\u81ea\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u7a2e\u5225\u5024\u3068\u3057\u3066\u306e\u6587\u5b57\u5217": 56, "\u5bfe\u8c61\u306e\u30a4\u30d9\u30f3\u30c8\u304c\u767a\u751f": 56, "\u3055\u308c\u308b\u6642\u306b\u5b9f\u884c\u3055\u308c\u308b\u30cf\u30f3\u30c9\u30e9": 56, "\u30a4\u30d9\u30f3\u30c8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 56, "\u7701\u7565\u53ef\u80fd\u306a\u30cf\u30f3\u30c9\u30e9\u5185\u306e\u5148\u982d\u306b\u52a0\u3048\u308b": 56, "javascript\u306e": 56, "\u8868\u73fe\u306e\u6587\u5b57\u5217": 56, "\u30cf\u30f3\u30c9\u30e9\u540d": [56, 61, 79, 161, 162, 163, 221], "on_custom_ev": [56, 160], "my_custom_ev": [56, 160], "do": [56, 96, 160, 164, 187, 191, 205, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "someth": [56, 96, 160, 187, 191], "here": [56, 96, 160, 187, 231], "trigger": [56, 160], "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u30c8\u30ea\u30ac\u30fc\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 56, "\u5358\u4f53\u306e\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u30ea\u30b9\u30ca\u30fc\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 56, "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u304c\u767a\u706b\u3055\u308c\u305f\u969b\u306b\u547c\u3070\u308c\u308b\u30cf\u30f3\u30c9\u30e9": 56, "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u30ea\u30b9\u30ca\u30fc\u8a2d\u5b9a\u3092\u4e00\u901a\u308a\u89e3\u9664\u3057\u307e\u3059": 56, "\u30af\u30e9\u30b9\u306fapysc\u306e\u771f\u507d\u5024\u306e\u30af\u30e9\u30b9\u3067\u3059": 58, "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e\u5f15\u6570\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b": 58, "\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": [58, 90, 122, 176], "bool_2": 58, "bool_3": 58, "\u30af\u30e9\u30b9\u306f": [58, 65, 68, 85, 96, 98, 146, 147, 153, 164, 168, 183, 190, 191, 192, 223], "\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u3068\u306a\u308a\u307e\u3059": [58, 192], "\u30af\u30e9\u30b9\u3068\u540c\u3058\u6319\u52d5\u3092\u3057\u307e\u3059": 58, "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 58, "\u30af\u30e9\u30b9\u306e\u5024\u306e\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 58, "\u7b49\u5024\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 58, "\u3092\u4f7f\u3063\u3066": 58, "\u306e\u5024\u3068\u6bd4\u8f03\u3059\u308b\u3053\u3068\u304c\u3067\u304d": 58, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b": [58, 82, 195], "\u306a\u3069\u306e\u578b\u3068\u306e\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 58, "noqa": 58, "\u540c\u69d8\u306b\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u975e\u7b49\u5024\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 58, "\u3082\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u3059": 58, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u306e\u3088\u3046\u306b\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u7701\u7565\u3057\u3066\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 58, "\u5c5e\u6027\u306f\u5024\u304c\u53cd\u8ee2\u3057\u305f": 58, "\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": [58, 106, 149, 155, 196], "liter": 58, "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u305f\u3081\u306e\u771f\u507d\u5024\u306e\u30af\u30e9\u30b9\u3067\u3059": 58, "\u771f\u507d\u5024\u306e\u521d\u671f\u5024": 58, "\u6574\u6570\u306e\u5834\u5408\u306f0\u304b1\u304c\u53d7\u3051\u4ed8\u3051\u3089\u308c\u307e\u3059": 58, "bool\u30af\u30e9\u30b9\u306fboolean\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u3067\u3042\u308a": 58, "boolean\u30af\u30e9\u30b9\u3068\u540c\u3058\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 58, "bool_val_1": 58, "bool_val_2": 58, "true_": [58, 146, 210, 214, 216], "false_": [58, 146], "\u306e\u5404\u5b9a\u6570": [58, 146], "\u73fe\u5728\u306e\u771f\u507d\u5024\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 58, "\u73fe\u5728\u306e\u771f\u507d\u5024\u306e\u5024": 58, "bool_val": 58, "\u5426\u5b9a\u6761\u4ef6\u3092\u52a0\u3048\u305f\u771f\u507d\u5024\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 58, "\u53cd\u8ee2": 58, "\u5426\u5b9a": 58, "\u3055\u305b\u305fboolean\u578b\u306e\u5024": 58, "If": [59, 60, 65, 66, 67, 86, 87, 96, 97, 98, 113, 116, 124, 125, 146, 152, 153, 159, 166, 177, 178, 182, 186, 194, 206, 223, 225, 226, 229, 234], "els": [59, 65, 87, 96, 113, 116, 144, 146, 153, 234], "\u306a\u3069\u306e\u5206\u5c90\u5236\u5fa1\u306e\u5404\u30af\u30e9\u30b9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5909\u6570\u306e\u5fa9\u5143\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 59, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u6761\u4ef6\u306b\u7f79\u3089\u308f\u305a\u5404\u5206\u5c90\u7b87\u6240\u306e": 59, "javascript\u306e\u30b3\u30fc\u30c9\u51fa\u529b\u306e\u305f\u3081\u306b": 59, "\u30b3\u30fc\u30c9\u304c\u5b9f\u884c\u3055\u308c": 59, "python\u4e0a\u3067\u306e\u5909\u6570\u306e\u5024\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059": 59, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u6761\u4ef6\u306f": 59, "\u3068\u306a\u3063\u3066\u3044\u307e\u3059\u304cpython\u4e0a\u306e\u5024\u306f20\u306b\u66f4\u65b0\u3055\u308c\u307e\u3059": 59, "condit": [59, 66, 67, 87, 96, 98, 144, 226, 234], "\u3053\u306e\u90e8\u5206\u306fjavascript\u3078\u5909\u63db\u3055\u308c\u305f\u30b3\u30fc\u30c9\u4e0a\u3067\u306f\u6761\u4ef6\u3092\u6e80\u305f\u3055\u306a\u3044\u305f\u3081\u5b9f\u884c\u3055\u308c\u307e\u305b\u3093": 59, "\u306a\u3069\u306e\u30af\u30e9\u30b9\u306f": 59, "locals_": [59, 96, 98, 101, 102, 103, 104, 105, 106, 144], "globals_": [59, 96, 98, 101, 102, 103, 104, 105, 106, 144], "\u306e\u5f15\u6570\u306e\u7701\u7565\u53ef\u80fd\u306a\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 59, "\u57fa\u672c\u7684\u306b\u8a2d\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 59, "local": [59, 96], "global": 59, "\u95a2\u6570\u306e\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 59, "\u3053\u308c\u3089\u306e\u5f15\u6570\u3078\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u305f\u5834\u5408\u306b\u306f\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5404\u5909\u6570\u304c": 59, "\u30af\u30e9\u30b9\u306a\u3069\u306e\u305d\u308c\u305e\u308c\u306e\u30b9\u30b3\u30fc\u30d7\u304c\u7d42\u4e86\u3057\u305f\u6642\u70b9\u3067\u30b9\u30b3\u30fc\u30d7\u524d\u306e\u6bb5\u968e\u306b\u5fa9\u5143\u3055\u308c\u307e\u3059": 59, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u5404\u5206\u5c90\u306e\u7b87\u6240\u3067python\u306e\u5909\u6570\u3092\u66f4\u65b0\u3057\u305f\u304f\u7121\u3044\u5834\u5408\u306a\u3069\u306b\u5f79\u306b\u7acb\u3064\u30b1\u30fc\u30b9\u304c\u3042\u308a\u307e\u3059": 59, "\u30af\u30e9\u30b9\u306f\u5186\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 60, "\u5186\u306e\u4e2d\u592e\u306ex\u5ea7\u6a19": 60, "\u5186\u306e\u4e2d\u592e\u306ey\u5ea7\u6a19": 60, "\u305d\u3057\u3066\u534a\u5f84\u3068\u3057\u3066\u306e": 60, "\u5f15\u6570\u304c\u5fc5\u8981\u3068\u306a\u308a\u307e\u3059": 60, "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u306f\u4ed6\u306e": [60, 97, 177, 182, 229], "\u306a\u3069\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u5404\u5f15\u6570\u3082\u53d7\u3051\u4ed8\u3051\u307e\u3059": [60, 97, 177, 182, 229], "circle_basic_usag": 60, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u5186\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 60, "\u5186\u306e\u63cf\u753b": [60, 94, 111, 234], "\u5c5e\u6027\u3067\u306fx\u5ea7\u6a19\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 229], "circle_x": 60, "\u5c5e\u6027\u3067\u306fy\u5ea7\u6a19\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 229], "circle_i": 60, "\u5c5e\u6027\u3067\u306f\u5186\u306e\u534a\u5f84\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 60, "circle_radiu": 60, "\u5c5e\u6027\u306f\u5857\u308a\u306e\u8272\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 166, 177, 178, 182, 206, 207, 229], "circle_fill_color": 60, "fill_alpha": [60, 94, 97, 111, 146, 154, 164, 166, 177, 178, 182, 206, 207, 229, 234], "\u5c5e\u6027\u306f\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 166, 177, 178, 182, 206, 207, 229], "circle_fill_alpha": 60, "\u5c5e\u6027\u3067\u306f\u7dda\u306e\u8272\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 207, 229], "line_thick": [60, 62, 64, 65, 97, 116, 117, 118, 119, 132, 134, 142, 146, 152, 153, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 182, 206, 207, 229], "circle_line_color": 60, "line_alpha": [60, 65, 97, 146, 152, 153, 166, 177, 178, 182, 206, 207, 229], "\u5c5e\u6027\u3067\u306f\u7dda\u306e\u900f\u660e\u5ea6\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 207, 229], "circle_line_alpha": 60, "\u5c5e\u6027\u3067\u306f\u7dda\u306e\u5e45\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 207, 229], "circle_line_thick": 60, "line_dot_set": [60, 94, 97, 132, 142, 146, 152, 166, 177, 178, 182, 229], "\u5c5e\u6027\u3067\u306f\u70b9\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "linedotset": [60, 97, 119, 129, 131, 132, 133, 134, 138, 141, 142, 152, 166, 177, 178, 182, 229], "dot_siz": [60, 97, 117, 119, 129, 130, 132, 133, 134, 141, 142, 152, 166, 177, 178, 182, 229, 234], "circle_line_dot_set": 60, "line_dash_set": [60, 94, 97, 131, 146, 152, 166, 177, 178, 182, 229], "\u5c5e\u6027\u3067\u306f\u7834\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "linedashset": [60, 97, 118, 131, 132, 134, 141, 152, 166, 177, 178, 182, 229], "dash_siz": [60, 97, 111, 117, 118, 130, 131, 141, 152, 166, 177, 178, 182, 229], "space_s": [60, 97, 111, 117, 118, 120, 130, 131, 138, 141, 152, 166, 177, 178, 182, 229, 234], "circle_line_dash_set": 60, "line_round_dot_set": [60, 94, 97, 138, 146, 152, 166, 177, 178, 182, 229], "\u5c5e\u6027\u3067\u306f\u4e38\u30c9\u30c3\u30c8\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "linerounddotset": [60, 97, 120, 138, 141, 152, 166, 177, 178, 182, 229], "round_siz": [60, 97, 120, 138, 141, 152, 166, 177, 178, 182, 229, 234], "circle_line_round_dot_set": 60, "line_dash_dot_set": [60, 94, 97, 130, 146, 152, 166, 177, 178, 182, 229], "\u5c5e\u6027\u3067\u306f\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "linedashdotset": [60, 97, 117, 141, 152, 166, 177, 178, 182, 229], "circle_line_dash_dot_set": 60, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3067\u306e\u56de\u8ee2\u91cf": [60, 97, 152, 166, 177, 178, 182, 206, 229], "359": [60, 97, 152, 166, 177, 178, 182, 206, 229], "\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 207, 229], "circle_rotation_around_cent": 60, "set_rotation_around_point": [60, 86, 97, 152, 166, 177, 178, 182, 206, 229], "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u304b\u3089\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u56de\u8ee2\u91cf": [60, 97, 152, 166, 177, 178, 182, 206, 229], "\u3092\u66f4\u65b0\u3057\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 229], "get_rotation_around_point": [60, 86, 97, 152, 166, 177, 178, 182, 206, 229], "\u30e1\u30bd\u30c3\u30c9\u3067\u306f\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u56de\u8ee2\u91cf": [60, 97, 152, 166, 177, 178, 182, 206, 229], "circle_set_rotation_around_point": 60, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3067\u306ex\u8ef8\u306e\u62e1\u7e2e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 229], "001": [60, 97, 152, 166, 177, 178, 182, 204, 229], "005": [60, 97, 152, 166, 177, 178, 182, 206, 229], "circle_scale_x_from_cent": 60, "circle_scale_y_from_cent": 60, "set_scale_x_from_point": [60, 86, 97, 152, 166, 177, 178, 182, 206, 229], "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305fx\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u3066x\u8ef8\u306e\u62e1\u7e2e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206], "get_scale_x_from_point": [60, 86, 97, 152, 166, 177, 178, 182, 206, 229], "\u30e1\u30bd\u30c3\u30c9\u3067\u306f\u6307\u5b9a\u3055\u308c\u305fx\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305fx\u8ef8\u306e\u62e1\u7e2e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206], "125": [60, 97, 105, 133], "scale_x": [60, 97, 125, 152, 166, 177, 178, 182, 206, 229], "circle_scale_x_from_point": 60, "set_scale_y_from_point": [60, 86, 97, 152, 166, 177, 178, 182, 229], "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305fy\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u3066y\u8ef8\u306e\u62e1\u7e2e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "get_scale_y_from_point": [60, 86, 97, 152, 166, 177, 178, 182, 229], "\u30e1\u30bd\u30c3\u30c9\u3067\u306f\u6307\u5b9a\u3055\u308c\u305fy\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305fy\u8ef8\u306e\u62e1\u7e2e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "scale_i": [60, 97, 125, 152, 166, 177, 178, 182, 229], "circle_scale_y_from_point": 60, "flip_x": [60, 86, 97, 146, 152, 166, 177, 178, 182, 206, 229], "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306ex\u8ef8\u306e\u53cd\u8ee2\u72b6\u6cc1\u306e\u771f\u507d\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 206, 229], "not_": [60, 86, 97, 114, 152, 166, 177, 178, 182, 206, 229], "circle_flip_x": 60, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5f62\u72b6\u306b\u3088\u3063\u3066\u306f\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fx\u8ef8\u3068y\u8ef8\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u9055\u3044\u304c\u5206\u304b\u308a\u3065\u3089\u3044\u30b1\u30fc\u30b9\u304c\u767a\u751f\u3057\u307e\u3059": [60, 97, 152, 182], "flip_i": [60, 86, 97, 146, 152, 166, 177, 178, 182, 206, 229], "circle_flip_i": 60, "skew_x": [60, 86, 97, 146, 152, 166, 177, 178, 182, 229], "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306ex\u8ef8\u306e\u6b6a\u307f\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "circle_skew_x": 60, "skew_i": [60, 86, 97, 146, 152, 166, 177, 178, 182, 229], "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306ey\u8ef8\u306e\u6b6a\u307f\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [60, 97, 152, 166, 177, 178, 182, 229], "circle_skew_i": 60, "line_cap": [60, 97, 152, 166, 177, 178, 182, 229], "linecap": [60, 97, 141, 152, 166, 177, 178, 182, 229], "child_mixin": [60, 97, 152, 154, 164, 166, 177, 178, 182, 206, 207, 229], "childmixin": [60, 89, 97, 152, 154, 164, 166, 177, 178, 182, 206, 207, 229], "\u5186\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 60, "\u5186\u306e\u4e2d\u5fc3\u306ex\u5ea7\u6a19": [60, 129], "\u5186\u306e\u4e2d\u5fc3\u306ey\u5ea7\u6a19": [60, 129], "\u5186\u306e\u534a\u5f84": [60, 129], "colorless": [60, 62, 97, 111, 113, 116, 127, 133, 141, 146, 152, 166, 177, 178, 182, 206, 207, 229, 234], "\u8a2d\u5b9a\u3059\u308b\u5857\u308a\u306e\u8272": [60, 97, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u3059\u308b\u5857\u308a\u306e\u900f\u660e\u5ea6": [60, 97, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u3059\u308b\u7dda\u306e\u8272": [60, 97, 152, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u3059\u308b\u7dda\u306e\u900f\u660e\u5ea6": [60, 97, 152, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u306e\u7dda\u5e45": [60, 97, 152, 166, 177, 178, 182, 207, 229], "\u8a2d\u5b9a\u3059\u308b\u7dda\u306e\u7aef\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [60, 97, 152, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u3059\u308b\u70b9\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [60, 97, 152, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u3059\u308b\u7834\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [60, 97, 152, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u3059\u308b\u4e38\u30c9\u30c3\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [60, 97, 152, 166, 177, 178, 182, 229], "\u8a2d\u5b9a\u3059\u308b\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [60, 97, 152, 166, 177, 178, 182, 229], "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8ffd\u52a0\u3059\u308b\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [60, 97, 152, 154, 164, 166, 177, 178, 182, 206, 207, 229], "\u3082\u3057\u3082none\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": [60, 97, 152, 154, 164, 166, 177, 178, 182, 206, 207, 229], "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u30b9\u30c6\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u8ffd\u52a0\u3055\u308c\u307e\u3059": [60, 97, 152, 154, 164, 166, 177, 178, 182, 206, 207, 229], "ffffff": [60, 62, 130, 131, 132, 134, 138, 142, 152, 166, 178, 183, 191], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [61, 108, 135], "\u30af\u30e9\u30b9\u306a\u3069\u306e\u4efb\u610f\u306e": 61, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 61, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u767b\u9332\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u306f\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u547c\u3070\u308c\u307e\u3059": 61, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5bfe\u8c61\u306e": 61, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u767b\u9332\u3092\u89e3\u9664\u3057\u307e\u3059": 61, "\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u3067\u306f\u57fa\u672c\u7684\u306a\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u3066\u3044\u307e\u3059": [61, 161], "\u57fa\u672c\u7684\u306a\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [61, 79, 88, 146, 159, 161, 162, 163, 234], "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u5404\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": [61, 79], "\u30e1\u30bd\u30c3\u30c9\u3092\u6301\u3063\u3066\u304a\u308a": [61, 79, 162], "\u305d\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u767b\u9332\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 61, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u306b\u5bfe\u3057\u3066\u30af\u30ea\u30c3\u30af\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 61, "click_basic_usage_of_the_click_interfac": 61, "\u3082\u3057\u3082\u4ee5\u4e0b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u56db\u89d2\u306e\u8272\u306f\u30de\u30bc\u30f3\u30bf\u306b\u5207\u308a\u66ff\u308f\u308a\u307e\u3059": 61, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u767b\u9332\u6e08\u307f\u306e\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 61, "\u30e1\u30bd\u30c3\u30c9\u3067\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u3092\u53d6\u308a\u9664\u3044\u3066\u3044\u308b\u305f\u3081\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u3082\u4f55\u3082\u767a\u751f\u3057\u307e\u305b\u3093": 61, "click_basic_usage_of_the_unbind_click_interfac": 61, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u5168\u3066\u306e\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u89e3\u9664\u3057\u307e\u3059": 61, "\u30e1\u30bd\u30c3\u30c9\u3067\u5168\u3066\u306e\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u3044\u3066\u304a\u308a": 61, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u3082\u4f55\u3082\u8d77\u304d\u307e\u305b\u3093": 61, "click_unbind_all_the_click_event_handl": 61, "mouse_ev": [61, 79, 161, 162, 163], "\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u30ea\u30b9\u30ca\u30fc\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 61, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u547c\u3070\u308c\u308b\u30cf\u30f3\u30c9\u30e9": 61, "\u6307\u5b9a\u3055\u308c\u305f\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u30fc\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 61, "\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304f\u5bfe\u8c61\u306e\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306a\u3069": [61, 79, 161, 162, 163], "\u5168\u3066\u306e\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 61, "\u30af\u30e9\u30b9\u306e\u8272\u306e\u8a2d\u5b9a\u3092\u6271\u3044\u307e\u3059": 62, "\u8272\u306e\u8a2d\u5b9a": [62, 127, 141], "\u306a\u3069\u306e\u5f15\u6570\u3084\u5c5e\u6027\u306f\u3053\u306e\u5024\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 62, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u306f\u4f8b\u3048\u3070": 62, "\u306a\u3069\u306e16\u9032\u6570\u306e\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 62, "color_basic_usag": 62, "\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9\u304c\u53d7\u3051\u4ed8\u3051\u3089\u308c\u307e\u3059": [62, 127], "\u306a\u3069\u306e6\u6587\u5b57\u306b\u3088\u308b\u6307\u5b9a": [62, 127, 141], "\u306a\u3069\u306e3\u6587\u5b57\u306b\u3088\u308b\u6307\u5b9a": [62, 127, 141], "\u3053\u308c\u306f": [62, 127, 141, 230], "\u3068\u540c\u3058\u5024\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059": [62, 127, 141], "\u306a\u3069\u306e1\u6587\u5b57\u306b\u3088\u308b\u6307\u5b9a": [62, 127, 141], "000005": [62, 127, 141], "\u8a18\u53f7\u3092\u7701\u7565\u3057\u305f\u6307\u5b9a": [62, 127, 141], "\u5b9a\u6570": [62, 127, 146], "\u3053\u306e\u8a2d\u5b9a\u306f\u8272\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": 62, "_strorstr": 62, "\u8272\u306e\u30af\u30e9\u30b9\u306e\u5b9f\u88c5\u3067\u3059": 62, "16\u9032\u6570\u306e\u8272\u306e\u6587\u5b57\u5217": 62, "000000": 62, "\u5b9a\u6570\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 64, "\u5b9a\u6570\u306f\u7121\u8272\u306e\u6307\u5b9a\u7528\u306e\u8a2d\u5b9a\u3067\u3059": 64, "\u3082\u3057\u5404\u8272\u95a2\u4fc2\u306e\u5f15\u6570\u3084\u5c5e\u6027\u306b\u3053\u306e\u5b9a\u6570\u3092\u8a2d\u5b9a\u3057\u305f\u5834\u5408": 64, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u305d\u306e\u8272\u306e\u6307\u5b9a\u7b87\u6240\u3067\u8272\u3092\u524a\u9664\u3057\u307e\u3059": 64, "\u5b9a\u6570\u306f": 64, "\u30af\u30e9\u30b9\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u3067\u3059": 64, "\u305d\u306e\u305f\u3081": [64, 99, 170, 228, 232], "\u8272\u95a2\u4fc2\u306e\u5f15\u6570\u3084\u5c5e\u6027\u306b\u3053\u306e\u5b9a\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 64, "\u5f15\u6570\u306e\u5404\u5024\u306b": 64, "\u5b9a\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u305f\u3081": 64, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u8272\u3092\u8868\u793a\u3057\u307e\u305b\u3093": 64, "colorless_basic_usag": 64, "black_000000": 65, "gray_999999": 65, "white_ffffff": [65, 153, 191], "red_ff0000": 65, "\u30af\u30e9\u30b9\u306e\u5404\u5b9a\u6570\u5b9a\u7fa9\u3092\u6301\u3061\u307e\u3059": 65, "\u5404\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u306f\u305d\u306e\u8272\u306e16\u9032\u6570\u306e\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9\u306b\u306a\u3063\u3066\u3044\u307e\u3059": [65, 153], "\u3053\u308c\u3089\u306e\u30af\u30e9\u30b9\u5b9a\u6570\u306f": [65, 153], "\u30af\u30e9\u30b9\u306e\u5024\u3068\u540c\u69d8\u306b\u52d5\u4f5c\u3057\u307e\u3059": [65, 153], "gray_333333": 65, "cyan_00ffff": 65, "colors_basic_usag": 65, "rect_siz": [65, 153], "font_siz": [65, 146, 153, 164, 208, 209, 210, 211, 212, 214], "12": [65, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 153, 207, 217, 218, 219, 232, 234], "outer_margin": [65, 153], "len": [65, 84, 153, 196], "get_colors_memb": [65, 153], "constant_nam": [65, 153], "enumer": [], "svgtext": [65, 109, 146, 153, 183, 227, 230], "text": [65, 109, 153, 164, 183, 208, 209, 210, 211, 212, 213, 214, 215, 216, 227, 230], "ccc": [65, 141, 153], "colors_definit": 65, "\u306a\u3069\u306e\u30b3\u30f3\u30c6\u30ca\u3068\u3057\u3066\u306e\u5404\u30af\u30e9\u30b9\u304c\u6301\u3064": 66, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5f15\u6570\u306b\u6307\u5b9a\u3055\u308c\u305f\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u5bfe\u8c61\u306e\u30b3\u30f3\u30c6\u30ca\u304c\u6301\u3064\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024": 66, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u6700\u521d\u306e\u56db\u89d2\u304c": 66, "\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u5b50\u304b\u3069\u3046\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3057\u3066\u3044\u307e\u3059": 66, "\u3082\u3057\u305d\u306e\u5b50\u3092\u542b\u3093\u3067\u3044\u308c\u3070\u305d\u306e\u5b50\u3092\u53d6\u308a\u9664\u304d": 66, "\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u30ed\u30b0\u3092\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 66, "\u30ed\u30b0\u306e\u8868\u793a\u306b\u306ff12\u30ad\u30fc\u3092\u62bc\u3057\u3066\u304f\u3060\u3055\u3044": 66, "remove_child": [66, 89, 146, 190], "sprite_contains_basic_usag": 66, "add_child": [66, 89, 110, 146, 165, 185, 190, 205], "\u5b50\u306e\u8ffd\u52a0": [66, 89, 190, 191], "\u5b50\u306e\u524a\u9664": [66, 89, 190, 191], "\u6307\u5b9a\u3055\u308c\u305f\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u6301\u3063\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": [66, 191], "\u30c1\u30a7\u30c3\u30af\u5bfe\u8c61\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [66, 191], "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u6307\u5b9a\u3055\u308c\u305f\u5b50\u3092\u6301\u3064\u5834\u5408true\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059": [66, 191], "remove_from_par": [66, 191], "\u3053\u306e\u30da\u30fc\u30b8\u3092\u8aad\u307f\u9032\u3081\u308b\u524d\u306b\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u3092\u78ba\u8a8d\u3057\u3066\u304a\u304f\u3068\u5f79\u306b\u7acb\u3064\u304b\u3082\u3057\u308c\u307e\u305b\u3093": [67, 98, 144, 186], "apysc\u3067\u306f": [67, 98], "\u30af\u30e9\u30b9\u3092\u540c\u69d8\u306e\u5229\u7528\u3067\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 67, "For": 67, "\u306e\u30d6\u30ed\u30c3\u30af\u3067\u306fjavascript\u4e0a\u3067\u306e\u7279\u5b9a\u306e\u30eb\u30fc\u30d7\u3092\u30b9\u30ad\u30c3\u30d7\u3059\u308b\u305f\u3081\u306b": 67, "\u30af\u30e9\u30b9\u304c\u4f7f\u7528\u3055\u308c\u307e\u3059": 67, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 67, "\u30ad\u30fc\u30ef\u30fc\u30c9\u306e\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 67, "\u30af\u30e9\u30b9\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b": [67, 144], "\u3082\u3057\u304f\u306f\u4ed6\u306e\u30eb\u30fc\u30d7\u30af\u30e9\u30b9": 67, "\u306e\u30d6\u30ed\u30c3\u30af\u3067\u306e\u307f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 67, "forarrayindic": [65, 67, 146, 153], "continue_basic_usag": 67, "\u30af\u30e9\u30b9\u3092": 67, "\u30d6\u30ed\u30c3\u30af\u5916\u3067\u4f7f\u7528\u3057\u305f\u5834\u5408\u306f\u30a8\u30e9\u30fc\u306b\u306a\u308a\u307e\u3059": 67, "instanti": 67, "loop": 67, "statement": 67, "exampl": [67, 213], "\u30eb\u30fc\u30d7\u306econtinue\u306e\u8868\u73fe\u3092\u6271\u3046\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 67, "\u3053\u306e\u30af\u30e9\u30b9\u306fwith\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u306e\u30eb\u30fc\u30d7\u5185\u3067\u306e\u307f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 67, "\u30b9\u30c6\u30fc\u30c8\u5185\u304c\u8a72\u5f53\u3057\u307e\u3059": 67, "\u30af\u30e9\u30b9\u306f\u65e5\u4ed8\u3068\u6642\u9593\u304b\u3093\u3051\u307d\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6271\u3046\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 68, "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e\u5f15\u6570\u3067\u306f": 68, "year": [68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 146], "month": [68, 69, 70, 71, 72, 74, 75, 76, 77, 78, 146], "dai": [68, 70, 71, 72, 73, 74, 75, 76, 77, 78, 146], "dt": [68, 74], "2022": [68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 217, 218, 219], "\u7701\u7565\u53ef\u80fd\u306a\u5f15\u6570\u3068\u3057\u3066": 68, "hour": [68, 146, 218], "minut": [68, 146], "\u306e\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 68, "millisecond": [68, 146, 219], "\u5404\u5024\u306fgetter\u3068setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 68, "\u5c5e\u6027\u3067\u3042\u308c\u3070\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5c5e\u6027\u7d4c\u7531\u3067\u5024\u306e\u53d6\u5f97\u3084\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 68, "weekday_pi": [68, 146], "weekday_j": [68, 146], "\u5c5e\u6027\u306fgetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u307f\u5b58\u5728\u3057\u307e\u3059": 68, "\u4ed6\u306e\u5c5e\u6027\u306e\u8a73\u7d30\u306b\u95a2\u3057\u3066\u306f\u4ee5\u4e0b\u306e\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044": 68, "now": [68, 146], "\u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306e\u3088\u3046\u306a\u5404\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 68, "\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8a73\u7d30\u306f\u4ee5\u4e0b\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044": 68, "\u65e5\u6642\u306b\u7d61\u3093\u3060\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 68, "4\u6841\u306e\u6570\u5b57\u306e\u5e74": 68, "2\u6841\u306e\u6708": 68, "2\u6841\u306e\u65e5": 68, "31": [68, 76, 183, 230], "2\u6841\u306e\u6642": 68, "23": [68, 200], "2\u6841\u306e\u5206": 68, "59": 68, "2\u6841\u306e\u79d2": 68, "\u30df\u30ea\u79d2": 68, "999": [68, 127], "\u521d\u671f\u5024\u306e\u4ee3\u5165\u8868\u73fe\u306e\u8ffd\u52a0\u3092\u30b9\u30ad\u30c3\u30d7\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024": 68, "\u30af\u30e9\u30b9\u3067\u306f\u5185\u90e8\u3067\u306e\u307f\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059": 68, "datetime_": [68, 69, 70, 71, 72, 73, 75, 76, 77, 78], "\u5c5e\u6027\u3067\u306f\u65e5\u306e\u5024\u306e\u53d6\u5f97\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 69, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u305d\u306e\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": [69, 70, 71, 72, 73, 75, 78], "\u305d\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306egetter\u3067\u306f": [69, 70, 72, 75], "\u578b\u306e\u65e5\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 69, "setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u540c\u69d8\u306b": [69, 70, 75], "\u578b\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": [69, 70, 71, 192], "31\u306e\u6574\u6570\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 69, "\u73fe\u5728\u306e\u65e5\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 69, "\u73fe\u5728\u306e\u65e5\u306e\u5024": 69, "\u5c5e\u6027\u3067\u306f\u6642\u9593\u306e\u5024\u306e\u53d6\u5f97\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 70, "\u578b\u306e\u6642\u9593\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 70, "23\u306e\u6574\u6570\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 70, "15": [70, 107, 109, 133, 139, 141, 147, 149, 155, 182, 183], "\u73fe\u5728\u306e\u6642\u9593\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 70, "\u73fe\u5728\u306e\u6642\u9593\u306e\u5024": 70, "\u5c5e\u6027\u3067\u306f\u30df\u30ea\u79d2\u306e\u5024\u306e\u53d6\u5f97\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 71, "\u305d\u306e\u30a4\u30f3\u30bf\u8cbb\u30d5\u30a7\u30a4\u30b9\u306egetter\u3067\u306f": 71, "\u578b\u306e\u30df\u30ea\u79d2\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 71, "setter\u5074\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u540c\u69d8\u306b": [71, 72, 73], "\u73fe\u5728\u306e\u30df\u30ea\u79d2\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 71, "\u73fe\u5728\u306e\u30df\u30ea\u79d2\u306e\u5024": 71, "\u5c5e\u6027\u3067\u306f\u5206\u306e\u5024\u306e\u53d6\u5f97\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 72, "\u578b\u306e\u5206\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 72, "\u578b\u306e\u5206\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 72, "59\u306e\u6574\u6570\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [72, 75], "\u73fe\u5728\u306e\u5206\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 72, "\u73fe\u5728\u306e\u5206\u306e\u5024": 72, "\u5c5e\u6027\u3067\u306f\u6708\u306e\u5024\u306e\u53d6\u5f97\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 73, "\u305d\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 73, "\u578b\u306e\u6708\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 73, "\u578b\u306e\u6708\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 73, "12\u306e\u7bc4\u56f2\u306e\u6574\u6570\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 73, "\u73fe\u5728\u306e\u6708\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 73, "\u73fe\u5728\u306e\u6708\u306e\u5024": 73, "\u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306f\u73fe\u5728\u306e\u6642\u9593\u3067\u306e": 74, "\u30af\u30e9\u30b9\u306f\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u3068\u3057\u3066\u5b9a\u7fa9\u3055\u308c\u305f": 74, "\u305d\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u5404\u5024\u306b\u73fe\u5728\u6642\u523b\u304c\u8a2d\u5b9a\u3055\u308c\u305f": 74, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u73fe\u5728\u306e\u5e74\u6708\u65e5\u3092\u8868\u793a\u3057\u307e\u3059": 74, "handl": [74, 99, 206, 231], "now_datetim": 74, "current": [74, 96, 142, 165, 223], "datetime_now_basic_usag": 74, "\u73fe\u5728\u6642\u523b\u304c\u8a2d\u5b9a\u3055\u308c\u305f": 74, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u307e\u3059": 74, "\u751f\u6210\u3055\u308c\u305f": [74, 207], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [74, 110], "py_now": 74, "ap_now": 74, "\u5c5e\u6027\u3067\u306f\u79d2\u306e\u5024\u306e\u53d6\u5f97\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 75, "\u578b\u306e\u79d2\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 75, "\u578b\u306e\u79d2\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 75, "\u73fe\u5728\u306e\u79d2\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 75, "\u73fe\u5728\u306e\u79d2\u306e\u5024": 75, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u73fe\u5728\u306e\u6708\u306e\u6708\u672b\u306e\u65e5\u4ed8\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 76, "\u3082\u3057\u73fe\u5728\u306e\u65e5\u4ed8\u304c2022": 76, "05\u3067\u3042\u308c\u3070\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306b\u3088\u3063\u30662022": 76, "31\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 76, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u3067\u306f\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 76, "\u5c5e\u6027\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 77, "\u5c5e\u6027\u306fjavascript\u306e\u66dc\u65e5\u306e\u5024": 77, "\u65e5\u66dc\u304c0\u3068\u306a\u308a": 77, "\u571f\u66dc\u304c6\u3068\u306a\u308a\u307e\u3059": 77, "\u5c5e\u6027\u306fpython\u306e\u66dc\u65e5\u306e\u5024": 77, "\u6708\u66dc\u304c0\u3068\u306a\u308a": 77, "\u65e5\u66dc\u304c6\u3068\u306a\u308a\u307e\u3059": 77, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fgetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u307f\u5b58\u5728\u3057\u307e\u3059": 77, "setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5b58\u5728\u3057\u307e\u305b\u3093": [77, 84], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u3053\u308c\u3089\u306e\u5404\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 77, "\u3053\u308c\u3089\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 77, "\u578b\u306e\u66dc\u65e5\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 77, "sundai": 77, "\u73fe\u5728\u306e\u66dc\u65e5\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 77, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306bjavascript\u306e\u66dc\u65e5\u306e\u5024\u3092\u30d9\u30fc\u30b9\u3068\u3057\u305f\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 77, "\u65e5\u66dc": 77, "\u6708\u66dc": 77, "\u706b\u66dc": 77, "\u6c34\u66dc": 77, "\u6728\u66dc": 77, "\u91d1\u66dc": 77, "\u571f\u66dc": 77, "weekdai": 77, "\u73fe\u5728\u306e\u66dc\u65e5\u306e\u5024": 77, "saturdai": 77, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306bpython\u306e\u66dc\u65e5\u306e\u5024\u3092\u30d9\u30fc\u30b9\u3068\u3057\u305f\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 77, "mondai": 77, "\u5c5e\u6027\u306f\u5e74\u306e\u5024\u306e\u53d6\u5f97\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 78, "\u305d\u306egetter\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 78, "\u578b\u306e\u5e74\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 78, "\u5c5e\u6027\u306esetter\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082\u540c\u69d8\u306b": 78, "\u578b\u306e\u5e74\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 78, "4\u6841\u306e\u6570\u5b57\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 78, "2023": 78, "\u73fe\u5728\u306e\u5e74\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 78, "\u73fe\u5728\u306e\u5e74\u306e\u5024": 78, "doubl": 79, "\u306a\u3069\u306e\u4efb\u610f\u306e": 79, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 79, "\u3082\u3057\u767b\u9332\u3057\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u3057\u305f\u5834\u5408": 79, "\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570\u306a\u3069\u304c\u547c\u3073\u51fa\u3055\u308c\u307e\u3059": 79, "\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u3067\u306f\u57fa\u672c\u7684\u306a\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u3066\u3044\u307e\u3059": [79, 162, 163], "\u305d\u308c\u3092\u4f7f\u3063\u3066\u30cf\u30f3\u30c9\u30e9\u3092\u767b\u9332\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 79, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u306b\u5bfe\u3057\u3066\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u6642\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u767b\u9332\u3057\u3066\u3044\u307e\u3059": 79, "\u5bfe\u8c61\u306e\u56db\u89d2\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u56db\u89d2\u306e\u8272\u306f\u30b7\u30a2\u30f3\u304b\u3089\u30de\u30bc\u30f3\u30bf\u306b\u5909\u5316\u3057\u307e\u3059": 79, "on_double_click": 79, "dblclick_basic_usag": 79, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u4efb\u610f\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 79, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u5168\u3066\u53d6\u308a\u9664\u304d\u307e\u3059": 79, "\u30e1\u30bd\u30c3\u30c9\u3067\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u306e\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u3044\u3066\u3044\u308b\u305f\u3081": 79, "\u56db\u89d2\u3092\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u3057\u3066\u3082\u4f55\u3082\u8d77\u304d\u307e\u305b\u3093": 79, "unbind_dblclick_basic_usag": 79, "\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u30ea\u30b9\u30ca\u30fc\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 79, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306e\u30cf\u30f3\u30c9\u30e9": 79, "\u6307\u5b9a\u3055\u308c\u305f\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u30fc\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 79, "\u5168\u3066\u306e\u30c0\u30d6\u30eb\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 79, "\u95a2\u6570\u306f\u4efb\u610f\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u524a\u9664\u3092\u884c\u3044\u307e\u3059": 80, "\u524a\u9664\u3055\u308c\u305f\u5bfe\u8c61\u306f": 80, "\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u306a\u308a\u307e\u3059": 80, "\u3082\u3057\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c": 80, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u3042\u308c\u3070": 80, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30b9\u30c6\u30fc\u30b8\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 80, "\u306a\u3069\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u3042\u308c\u3070\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u305d\u308c\u3089\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 80, "\u95a2\u6570\u306e\u5f15\u6570\u3078\u306f\u4efb\u610f\u306eapysc\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 80, "\u3082\u3057\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c": 80, "\u95a2\u6570\u306f\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30b9\u30c6\u30fc\u30b8\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 80, "\u524a\u9664\u3055\u308c\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306fundefined\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u306a\u308a\u307e\u3059": 80, "delete_basic_usag": 80, "\u3082\u3057\u4ee5\u4e0b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068": 80, "\u95a2\u6570\u306f\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30b9\u30c6\u30fc\u30b8\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 80, "\u30af\u30e9\u30b9\u306fapysc\u306e\u8f9e\u66f8\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 81, "\u3054\u306e\u30af\u30e9\u30b9\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 81, "\u306e\u5024\u306e\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 81, "\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 81, "\u306e\u5024\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 81, "\u306e\u5024\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 81, "\u306e\u5024\u3068\u540c\u3058\u3088\u3046\u306b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f7f\u3063\u3066\u66f4\u65b0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 81, "\u306e\u5024\u306e\u53d6\u5f97\u3082\u540c\u69d8\u306b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f7f\u3063\u3066\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 81, "\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u30ad\u30fc\u3092\u6301\u305f\u306a\u3044\u5834\u5408": 81, "\u53d6\u308a\u51fa\u3055\u308c\u308b\u5024\u306f": 81, "anyvalu": 81, "\u578b\u306e\u5024\u3068\u306a\u308a\u307e\u3059": [81, 116, 126, 158, 195, 204], "\u3053\u306e\u6319\u52d5\u306fjavascript\u4e0a\u3067\u306e\u30cf\u30f3\u30c9\u30e9\u3067\u306e\u52d5\u7684\u306a\u66f4\u65b0\u51e6\u7406\u306a\u3069\u3092\u4f7f\u3046\u969b\u306b\u4fbf\u5229\u306a\u6642\u304c\u3042\u308a\u307e\u3059": 81, "retrieved_v": 81, "\u306e\u5024\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b": 81, "del": 81, "\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u3067\u524a\u9664\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 81, "_kei": [81, 83], "_valu": 81, "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u305f\u3081\u306e\u8f9e\u66f8\u306e\u30af\u30e9\u30b9\u3067\u3059": 81, "\u8f9e\u66f8\u306e\u521d\u671f\u5024": 81, "\u30af\u30e9\u30b9\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u8a2d\u5b9a": 81, "\u73fe\u5728\u306e\u8f9e\u66f8\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 81, "\u73fe\u5728\u306e\u8f9e\u66f8\u306e\u5024": 81, "\u30af\u30e9\u30b9\u306e\u30ad\u30fc\u3068\u5024\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 82, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u306e\u3088\u3046\u306b": 82, "\u30af\u30e9\u30b9\u3067\u306f\u30ad\u30fc\u3068\u5024\u306b\u5bfe\u3057\u3066\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 82, "dict_valu": 82, "a_valu": 82, "\u3053\u308c\u3089\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306fmypy\u3084pylance\u306a\u3069\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u3088\u308b\u30c1\u30a7\u30c3\u30af\u3084\u5b89\u5168\u9762\u3067\u5f79\u306b\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 82, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u8f9e\u66f8\u306e\u5024\u306e\u578b\u306b\u5bfe\u3059\u308bpylance\u304c\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3059": 82, "cannot": 82, "assign": 82, "declar": 82, "incompat": 82, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u8f9e\u66f8\u306e\u30ad\u30fc\u306e\u578b\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3059": 82, "\u304c\u5fc5\u8981\u306b\u306a\u3063\u3066\u3044\u308b\u4e00\u65b9\u3067": 82, "\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059": 82, "\u3082\u3057\u8907\u6570\u306e\u578b\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306a\u5834\u5408": 82, "\u3092\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 82, "10\u4ee5\u964d\u3092\u304a\u4f7f\u3044\u306e\u5834\u5408\u306b\u306f": 82, "\u306e\u8a18\u53f7\u306a\u3069\u3092\u4ee3\u308f\u308a\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 82, "\u306e\u578b\u3092\u6307\u5b9a\u3059\u308b\u306a\u3069": 82, "accept": [82, 127], "kei": [82, 83, 104, 105], "b_valu": 82, "all": 82, "\u30e1\u30bd\u30c3\u30c9\u306f\u5f15\u6570\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ad\u30fc\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 83, "\u3082\u3057\u6307\u5b9a\u3055\u308c\u305f\u30ad\u30fc\u304c\u8f9e\u66f8\u5185\u306b\u5b58\u5728\u3057\u306a\u3051\u308c\u3070\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 83, "\u30ad\u30fc\u304c\u7121\u304f\u3068\u3082\u30a8\u30e9\u30fc\u306b\u306f\u306a\u308a\u307e\u305b\u3093": 83, "\u8f9e\u66f8\u306e\u30ad\u30fc": 83, "\u306e\u7b2c\u4e00\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 83, "\u7b2c\u4e8c\u5f15\u6570\u306e": 83, "\u5f15\u6570\u306f\u7701\u7565\u53ef\u3067": [83, 99], "\u3082\u3057\u6307\u5b9a\u3055\u308c\u306a\u3051\u308c\u3070": 83, "\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u308a\u307e\u3059": 83, "got_val_1": 83, "got_val_2": 83, "got_val_3": 83, "expression_str": 83, "expressionstr": 83, "defaulttyp": 83, "\u6307\u5b9a\u3055\u308c\u305f\u30ad\u30fc\u306e\u8f9e\u66f8\u5185\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 83, "\u3082\u3057\u6307\u5b9a\u3055\u308c\u305f\u30ad\u30fc\u304c\u8f9e\u66f8\u306b\u5b58\u5728\u3057\u306a\u3044\u5834\u5408": 83, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 83, "\u5bfe\u8c61\u306e\u30ad\u30fc": 83, "\u4efb\u610f\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306e\u5024": 83, "result_valu": 83, "\u62bd\u51fa\u3055\u308c\u305f\u5024\u3082\u3057\u304f\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u5024": 83, "value_1": 83, "value_2": 83, "value_3": 83, "c": [83, 169], "\u5c5e\u6027\u306f\u8f9e\u66f8\u306e\u30ad\u30fc\u306e\u9577\u3055": 84, "\u578b\u306e\u6574\u6570\u3092\u8fd4\u5374\u3057\u307e\u3059": 84, "\u95a2\u6570\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u304a\u3089\u305a\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 84, "\u8f9e\u66f8\u306e\u5024\u306e\u9577\u3055": 84, "\u3053\u306e\u8f9e\u66f8\u306e\u5024\u306e\u9577\u3055": 84, "\u306a\u3069\u306eapysc\u306e\u8868\u793a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u57fa\u5e95\u30af\u30e9\u30b9\u3068\u306a\u308a\u307e\u3059": 85, "\u5404\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c": 85, "\u3092\u7d99\u627f\u3057\u3066\u3044\u308b\u3053\u3068\u3092": 85, "\u95a2\u6570\u3092\u4f7f\u3063\u3066\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 85, "verifi": 85, "each": [85, 161], "apysc\u306f\u3053\u306e\u30af\u30e9\u30b9\u3092\u57fa\u672c\u7684\u306a\u5171\u901a\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u4f7f\u7528\u3057\u305f\u308a": 85, "\u3082\u3057\u304f\u306f\u5225\u306e": 85, "\u3092\u7d99\u627f\u3057\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4f5c\u6210\u51e6\u7406\u306a\u3069\u3067\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 85, "\u5404\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 85, "\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u3067\u306f\u305d\u308c\u305e\u308c\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u30661\u30641\u3064\u8a73\u3057\u304f\u89e6\u308c\u3066\u3044\u307e\u3059": 85, "\u8868\u793a": [85, 86], "\u975e\u8868\u793a": [85, 86], "\u30af\u30e9\u30b9\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [85, 146], "\u306e\u5404\u30b5\u30d6\u30af\u30e9\u30b9\u306ex\u3084visible\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u5c5e\u6027\u306e\u6982\u8981\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 86, "x\u3084y": 86, "visible\u306a\u3069\u306e\u5c5e\u6027\u306e\u53d6\u5f97\u3084\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 86, "x\u3068y\u5c5e\u6027\u3067\u306fx\u3068y\u5ea7\u6a19\u3092\u66f4\u65b0": 86, "\u53d6\u5f97\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 86, "do_and_graphics_base_prop_abstract_x_and_i": 86, "\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f\u4ee5\u4e0b\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": [86, 94, 229], "\u5c5e\u6027\u3067\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u8868\u793a": 86, "\u975e\u8868\u793a\u306e\u5c5e\u6027\u5024\u3092\u53d6\u5f97": 86, "\u66f4\u65b0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 86, "do_and_graphics_base_prop_abstract_vis": 86, "\u30e1\u30bd\u30c3\u30c9\u3067\u306f\u56de\u8ee2\u306e\u89d2\u5ea6\u306e\u5024\u306e\u53d6\u5f97\u3068\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 86, "do_and_graphics_base_prop_abstract_rot": 86, "\u4e2d\u592e\u5ea7\u6a19\u57fa\u6e96\u306e\u56de\u8ee2": 86, "\u6307\u5b9a\u5ea7\u6a19\u57fa\u6e96\u306e\u56de\u8ee2": 86, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [86, 146, 220, 234], "\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u62e1\u7e2e\u306e\u5024\u306e\u53d6\u5f97\u3068\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 86, "scale_valu": 86, "01": [86, 166, 195, 200], "do_and_graphics_base_prop_abstract_scal": 86, "scale_from_cent": 86, "\u4e2d\u592e\u5ea7\u6a19\u57fa\u6e96\u306e\u62e1\u7e2e": 86, "scale_from_point": 86, "\u6307\u5b9a\u5ea7\u6a19\u57fa\u6e96\u306e\u62e1\u7e2e": 86, "\u306e\u5c5e\u6027\u3067\u306f\u53cd\u8ee2\u306e\u5c5e\u6027\u5024\u306e\u53d6\u5f97\u3068\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 86, "lineopt": 86, "draw_lin": [86, 94, 111, 117, 118, 119, 120, 121, 138, 141, 146, 234], "x_start": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "y_start": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "x_end": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "y_end": [86, 94, 111, 117, 118, 119, 120, 121, 130, 131, 132, 134, 138, 141, 234], "do_and_graphics_base_prop_abstract_flip": 86, "\u6a2a\u8ef8\u306e\u53cd\u8ee2": 86, "\u7e26\u8ef8\u306e\u53cd\u8ee2": 86, "\u306e\u5404\u5c5e\u6027\u3067\u306f\u6b6a\u307f\u306e\u5024\u3092\u53d6\u5f97": 86, "do_and_graphics_base_prop_abstract_skew": 86, "x\u8ef8\u306e\u6b6a\u307f": 86, "y\u8ef8\u306e\u6b6a\u307f": 86, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u7279\u5b9a\u306ecss\u306e\u6587\u5b57\u5217\u3092\u8fd4\u5374\u3057": 87, "\u30e1\u30bd\u30c3\u30c9\u306f\u7279\u5b9a\u306ecss\u306e\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 87, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fcss\u540d\u3068\u3057\u3066\u306e": 87, "\u30e1\u30bd\u30c3\u30c9\u3067\u306fcss\u306e\u5024\u306e\u6587\u5b57\u5217\u3068\u3057\u3066\u306e": 87, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f1\u79d2\u3054\u3068\u306e\u30bf\u30a4\u30de\u30fc\u3067css\u306e": 87, "displai": [87, 89, 93], "\u306e\u5024\u304c\u3082\u3057\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u7a7a\u6587\u5b57\u306b\u306a\u3063\u3066\u3044\u308c\u3070": 87, "\u306e\u5024\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 87, "\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u4ee5\u5916\u306e\u5024\u306b\u306a\u3063\u3066\u3044\u308c\u3070\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u5024\u3078\u3068\u623b\u3057\u3066\u3044\u307e\u3059": 87, "_spriteopt": 87, "display_css_v": 87, "display_object_get_and_set_css_basic_usag": 87, "css\u306e\u8a2d\u5b9a\u5024\u306e\u6587\u5b57\u5217\u3092\u53d6\u5f97\u3057\u307e\u3059": 87, "css\u540d": 87, "css": 87, "css\u306e\u5024": 87, "css\u306b\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u5217\u306e\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 87, "css\u306e\u5024\u306e\u6587\u5b57\u5217": 87, "\u30af\u30e9\u30b9\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u767b\u9332\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 88, "\u5404": [88, 186, 190], "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u30af\u30ea\u30c3\u30af\u3084\u30de\u30a6\u30b9\u30aa\u30fc\u30d0\u30fc\u306a\u3069\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u767b\u9332\u7528\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 88, "\u306b\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3067\u304d": 88, "\u4f8b\u3048\u3070\u30af\u30ea\u30c3\u30af\u6642\u306b\u5b9f\u884c\u3057\u305f\u3044\u95a2\u6570\u306a\u3069\u3092\u767b\u9332\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 88, "mouseov": [88, 146, 159, 160, 234], "\u306a\u3069\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u4efb\u610f\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9": 88, "callable\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 88, "\u3092\u767b\u9332\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 88, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30af\u30ea\u30c3\u30af\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u3066\u304a\u308a": [88, 133], "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u8272\u304c\u5909\u308f\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059": 88, "display_object_mouse_event_basic_usag": 88, "\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f\u4ee5\u4e0b\u306e\u5404\u30da\u30fc\u30b8\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": 88, "mousedown": [88, 146, 159, 160, 234], "mouseup": [88, 146, 159, 160, 234], "mouseout": [88, 146, 159, 160, 234], "mousemov": [88, 146, 159, 160, 234], "\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 89, "\u5c5e\u6027\u3068": 89, "\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 89, "\u5c5e\u6027\u306fgetter\u306e\u307f\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u306a\u308a\u307e\u3059": 89, "\u3053\u306e\u5c5e\u6027\u5024\u306f": 89, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3082\u3057\u304f\u306f": 89, "\u306a\u3069\u306e\u30b3\u30f3\u30c6\u30ca\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u306a\u308a\u307e\u3059": 89, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u81ea\u8eab\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u53d6\u308a\u9664\u304d": 89, "\u753b\u9762\u4e0a\u306b\u8868\u793a\u3055\u308c\u306a\u3044\u72b6\u614b\u306b\u3057\u307e\u3059": 89, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [89, 146], "\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 89, "\u306f\u81ea\u8eab\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 89, "\u53d6\u308a\u9664\u304b\u308c\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u4ed6\u306e\u89aa": 89, "\u30b3\u30f3\u30c6\u30ca": 89, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u8ffd\u52a0\u3055\u308c\u308b\u307e\u3067\u753b\u9762\u306b\u8868\u793a\u3055\u308c\u307e\u305b\u3093": 89, "display_object_remove_from_parent_basic_usag": 89, "add_child\u3084remove_child\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u305f\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u307e\u3059": 89, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u308b\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 89, "\u3082\u3057\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u89aa\u3092\u6301\u3063\u3066\u3044\u306a\u3044": 89, "\u753b\u9762\u306b\u8ffd\u52a0\u3055\u308c\u3066\u3044\u306a\u3044": 89, "\u5834\u5408": 89, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fnone\u3092\u8fd4\u5374\u3057\u307e\u3059": 89, "\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 89, "\u3082\u3057\u3082\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304cnone\u306e\u5834\u5408": 89, "\u89aa\u306e\u7121\u3044\u72b6\u614b\u306e\u5834\u5408": 89, "\u306e\u8868\u793a": 90, "\u975e\u8868\u793a\u306e\u72b6\u614b\u3092\u5207\u308a\u66ff\u3048\u307e\u3059": 90, "true\u3092\u8a2d\u5b9a\u3057\u305f\u5834\u5408\u305d\u306e": 90, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u8868\u793a\u72b6\u614b\u306b\u306a\u308a\u307e\u3059": 90, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u72b6\u614b\u306b\u306a\u308a\u307e\u3059": 90, "false\u3092\u8a2d\u5b9a\u3059\u308b\u3068\u305d\u306e": 90, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u975e\u8868\u793a\u306b\u306a\u308a\u307e\u3059": 90, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u6642\u306bvisible\u306e\u8a2d\u5b9a\u3092\u5207\u308a\u66ff\u3048\u3066\u3044\u307e\u3059": 90, "\u5de6\u5074\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u306f\u5de6\u5074\u306e\u56db\u89d2\u306f\u975e\u8868\u793a\u3068\u306a\u308a": 90, "\u53f3\u5074\u306b\u5225\u306e\u56db\u89d2\u304c\u8868\u793a\u3055\u308c\u307e\u3059": 90, "on_rectangle_1_click": 90, "first": [90, 127, 142, 221, 225], "on_rectangle_2_click": 90, "display_object_visible_basic_usag": 90, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u53ef\u8996\u72b6\u614b\u304b\u3069\u3046\u304b\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 90, "\u3082\u3057\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u8868\u793a\u72b6\u614b\u3067\u3042\u308c\u3070true\u3068\u306a\u308a\u307e\u3059": 90, "\u30af\u30e9\u30b9\u306ex\u3068y\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 91, "x\u3068y\u5c5e\u6027\u306f": 91, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e2\u6b21\u5143\u306e\u5ea7\u6a19\u4f4d\u7f6e\u3092\u5909\u66f4\u3057\u307e\u3059": 91, "\u306e\u5404\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306fx\u3068y\u5c5e\u6027\u3092\u6301\u3063\u3066\u304a\u308a": 91, "\u305d\u308c\u3092\u53c2\u7167\u3057\u3066\u5ea7\u6a19\u5024\u306e\u53d6\u5f97\u3068\u66f4\u65b0\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 91, "updat": [91, 111, 129, 134, 139], "display_object_x_and_y_basic_usag": 91, "\u306e\u7d2f\u7b97\u4ee3\u5165\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 91, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u5ea6\u306b10px\u305a\u3064y\u5ea7\u6a19\u3092\u52a0\u7b97\u3057\u3066\u3044\u307e\u3059": 91, "display_object_x_and_y_augmented_assign": 91, "x\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 91, "y\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 91, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fapysc\u306ehtml\u3092googl": 92, "colaboratory\u4e0a\u3067\u8868\u793a\u3057\u307e\u3059": 92, "\u5229\u7528\u3059\u308b\u306b\u306f\u4e8b\u524d\u306bgoogl": 92, "colaboratory\u4e0a\u3067apysc\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 92, "\u306e\u8a18\u53f7\u3068pip\u4e94\u4e07\u5ea6\u3067googl": 92, "colaboratory\u4e0a\u306b\u3053\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 92, "pip": [92, 93, 179], "instal": [92, 93, 179], "\u95a2\u6570\u306e\u4ee3\u308f\u308a\u306b": [92, 93], "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3046\u3053\u3068\u3067\u51fa\u529b\u7d50\u679c\u306ehtml\u3092\u8868\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 92, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u8907\u6570\u306e\u51fa\u529b\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u3092\u30e6\u30cb\u30fc\u30af\u306b\u3059\u308b\u305f\u3081\u306e": 92, "html_file_nam": [92, 93], "\u5f15\u6570\u306b\u3088\u308b\u30d5\u30a1\u30a4\u30eb\u540d\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 92, "\u30e6\u30cb\u30fc\u30af\u306b\u8a2d\u5b9a\u3057\u306a\u3044\u3068html\u30d5\u30a1\u30a4\u30eb\u304c\u4e0a\u66f8\u304d\u3055\u308c\u3066\u3057\u307e\u3044\u307e\u3059": 92, "jupyter_test_1": 92, "html": [65, 92, 93, 179, 187], "minifi": [93, 187, 189, 232, 233], "html\u5168\u4f53\u3092\u4fdd\u5b58\u3057\u7d50\u679c\u3092googl": 92, "\u51fa\u529b\u3055\u308c\u308bhtml\u306e\u30d5\u30a1\u30a4\u30eb\u540d": [92, 93, 187], "html\u3092\u6700\u5c0f\u5316": 93, "\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024": [93, 187], "false\u306e\u8a2d\u5b9a\u306f\u30c7\u30d0\u30c3\u30b0\u6642\u306a\u3069\u306b\u5f79\u306b\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 93, "\u95a2\u6570\u306fapysc\u306b\u3088\u3063\u3066\u751f\u6210\u3055\u308c\u305fhtml\u3092jupyter\u4e0a\u3067\u8868\u793a\u3057\u307e\u3059": 93, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fjupyter\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u4e8b\u524d\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u5fc5\u8981\u3067\u3059": 93, "\u3082\u3057\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u3070": 93, "notebook": 93, "\u306a\u3069\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304a\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 93, "\u8a73\u7d30\u306f\u4ee5\u4e0b\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": [93, 94, 159, 166, 188], "jupyt": 93, "softwar": 93, "ipython": 93, "ifram": 93, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 93, "\u3082\u3057\u3082\u8a72\u5f53\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u95a2\u4fc2\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408jupyter\u306e\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u3092\u304a\u8a66\u3057\u304f\u3060\u3055\u3044": 93, "v": [93, 175], "code\u4e0a\u306ejupyter\u306f\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093": 93, "code\u4e0a\u306e\u5236\u9650\u306b\u8d77\u56e0\u3059\u308b\u305f\u3081\u5c06\u6765\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u304b\u3069\u3046\u304b\u306f\u672a\u5b9a\u3067\u3059": 93, "\u53ca\u3073": [93, 136], "jupyterlab\u306f\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 93, "\u51fa\u529b\u7d50\u679c\u306ehtml\u3092jupyter\u4e0a\u3067\u8868\u793a\u3059\u308b\u305f\u3081\u306b": 93, "\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 93, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u8907\u6570\u306ehtml\u30d5\u30a1\u30a4\u30eb\u3092\u4fdd\u5b58\u3059\u308b\u969b\u306b\u30d5\u30a1\u30a4\u30eb\u540d\u304c\u88ab\u3089\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b": 93, "\u5f15\u6570\u306b\u30e6\u30cb\u30fc\u30af\u306a\u30d5\u30a1\u30a4\u30eb\u540d\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u3067\u3059": 93, "\u3053\u306e\u5024\u306b\u30e6\u30cb\u30fc\u30af\u306a\u5024\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408html\u304c\u4e0a\u66f8\u304d\u3055\u308c\u3066\u3057\u307e\u3044\u307e\u3059": 93, "jupyter_sample_1": 93, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fjupyterlab\u3082\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 93, "html\u5168\u4f53\u3092\u4fdd\u5b58\u3057\u7d50\u679c\u3092jupyter\u4e0a\u3067\u8868\u793a\u3057\u307e\u3059": 93, "\u73fe\u5728\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fv": 93, "code\u4e0a\u306ejupyter\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093": 93, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4e8b\u524d\u306ejupyter\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u5fc5\u8981\u3067\u3059": 93, "\u30d1\u30c3\u30b1\u30fc\u30b8\u306a\u3069": 93, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 94, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u5857\u308a\u306e\u8272": 94, "\u7dda\u306e\u8272": 94, "\u7dda\u306e\u900f\u660e\u5ea6": 94, "\u7dda\u5e45\u306a\u3069\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 94, "\u56db\u89d2\u3084\u4e38": 94, "\u6955\u5186": 94, "\u591a\u89d2\u5f62": 94, "\u7dda": 94, "\u6298\u308c\u7dda": 94, "\u30d1\u30b9\u306a\u3069\u306e\u63cf\u753b\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 94, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5857\u308a\u306e\u8272\u3068\u5857\u308a\u306e\u900f\u660e\u5ea6\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 94, "draw_interfaces_abstract_begin_fil": 94, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u7dda\u306e\u8272\u3068\u7dda\u306e\u900f\u660e\u5ea6": 94, "draw_interfaces_abstract_line_styl": 94, "\u5404\u63cf\u753b\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 94, "draw_": 94, "\u306e\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u6301\u3063\u3066\u304a\u308a": 94, "svg\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u3092\u63cf\u753b\u3057\u307e\u3059": 94, "draw_interfaces_abstract_each_drawing_interfac": 94, "\u56db\u89d2\u306e\u63cf\u753b": [94, 111, 182, 234], "draw_round_rect": [94, 111, 146, 234], "\u89d2\u4e38\u306e\u56db\u89d2\u306e\u63cf\u753b": [94, 111, 234], "\u6955\u5186\u63cf\u753b": [94, 97, 111, 234], "move_to": [94, 111, 136, 141, 146, 179, 234], "\u7dda\u306e\u63cf\u753b\u4f4d\u7f6e\u306e\u5909\u66f4": [94, 111, 178, 234], "line_to": [94, 111, 141, 146, 179, 234], "\u6307\u5b9a\u5ea7\u6a19\u3078\u306e\u7dda\u306e\u63cf\u753b": [94, 111, 178, 234], "\u7dda\u306e\u63cf\u753b": [94, 111, 152, 234], "draw_dotted_lin": [94, 111, 134, 141, 146, 152, 234], "\u70b9\u7dda\u306e\u63cf\u753b": [94, 111, 152, 234], "draw_dashed_lin": [94, 111, 134, 141, 146, 152, 234], "\u7834\u7dda\u306e\u63cf\u753b": [94, 111, 152, 234], "draw_round_dotted_lin": [94, 111, 134, 141, 146, 152, 234], "\u70b9\u7dda": [94, 111, 130, 152, 234], "\u4e38": [94, 111, 152, 234], "\u306e\u63cf\u753b": [94, 111, 152, 234], "draw_dash_dotted_lin": [94, 111, 134, 141, 146, 152, 234], "\u4e00\u70b9\u9396\u7dda\u306e\u63cf\u753b": [94, 111, 152, 234], "draw_polygon": [94, 111, 114, 146, 234], "\u591a\u89d2\u5f62\u63cf\u753b": [94, 111, 177, 234], "\u5857\u308a\u8a2d\u5b9a": [94, 190], "\u5857\u308a\u306e\u900f\u660e\u5ea6\u8a2d\u5b9a": 94, "\u7dda\u306e\u8272\u8a2d\u5b9a": 94, "\u7dda\u306e\u900f\u660e\u5ea6\u8a2d\u5b9a": 94, "\u7dda\u5e45\u8a2d\u5b9a": 94, "\u70b9\u7dda\u8a2d\u5b9a": 94, "\u7834\u7dda\u8a2d\u5b9a": 94, "\u4e00\u70b9\u9396\u7dda\u8a2d\u5b9a": 94, "\u306eenum\u306e\u30af\u30e9\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [95, 107], "\u306eenum\u306e\u30af\u30e9\u30b9\u306f\u5404\u30a4\u30fc\u30b8\u30f3\u30b0\u95a2\u6570\u306b\u3064\u3044\u3066\u5b9a\u7fa9\u3057\u3066\u3044\u307e\u3059": 95, "\u3053\u308c\u3089\u306f": 95, "\u306a\u3069\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u4f7f\u7528\u3057\u307e\u3059": 95, "\u306a\u3069\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f": 95, "\u5f15\u6570\u3092\u6301\u3063\u3066\u304a\u308a": [95, 233], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u305d\u306e\u5f15\u6570\u306b": 95, "\u306eenum\u306e\u5024\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 95, "easing_enum_basic_usag": 95, "\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3057\u305f\u5834\u5408": 95, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306f\u7dda\u5f62": 95, "\u30b9\u30bf\u30fc\u30c8\u304b\u3089\u7d42\u4e86\u307e\u3067\u4e00\u5b9a\u306e\u5909\u52d5": 95, "\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3068\u306a\u308a\u307e\u3059": 95, "easing_enum_default_set": 95, "\u306f\u6700\u521d\u306f\u9045\u304f\u30b9\u30bf\u30fc\u30c8\u3057": 95, "\u6700\u5f8c\u306e\u65b9\u3067\u901f\u3044\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306b\u306a\u308a\u307e\u3059": 95, "\u306f\u6700\u521d\u306f\u901f\u3044\u30b9\u30d4\u30fc\u30c9\u3067\u30b9\u30bf\u30fc\u30c8\u3057": 95, "\u6700\u5f8c\u306e\u65b9\u3067\u9045\u3044\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306b\u306a\u308a\u307e\u3059": 95, "\u306f\u6700\u521d\u3068\u6700\u5f8c\u306e\u4e21\u65b9\u304c\u9045\u3044\u30b9\u30d4\u30fc\u30c9\u3068\u306a\u308a": 95, "\u4e2d\u9593\u3067\u4e00\u756a\u901f\u3044\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3068\u306a\u308a\u307e\u3059": 95, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5dee\u304c\u5206\u304b\u308b\u3088\u3046\u306b": 95, "\u306e\u305d\u308c\u305e\u308c\u3092\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 95, "_easingopt": 95, "easing_1": 95, "easing_2": 95, "easing_3": 95, "rectangle_3": [95, 107, 112, 115, 124, 222], "easing_enum_ease_differ": 95, "\u3053\u306e\u7bc0\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306b\u304a\u3051\u308b\u5404\u30a4\u30fc\u30ba\u30a4\u30f3\u306e\u8a2d\u5b9a\u306b\u3088\u308b\u4f8b\u3092\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 95, "ease_in_sin": 95, "ease_in_quad": 95, "\u306e\u5404\u5024\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": [95, 222], "easing_enum_ease_in_1": 95, "ease_in_quart": 95, "ease_in_expo": 95, "easing_enum_ease_in_2": 95, "ease_in_circ": 95, "ease_in_back": 95, "easing_enum_ease_in_3": 95, "ease_in_elast": 95, "ease_in_bounc": 95, "easing_enum_ease_in_4": 95, "\u3053\u306e\u7bc0\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306b\u304a\u3051\u308b\u5404\u30a4\u30fc\u30ba\u30a2\u30a6\u30c8\u306e\u8a2d\u5b9a\u306b\u3088\u308b\u4f8b\u3092\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 95, "ease_out_sin": 95, "ease_out_quad": 95, "ease_out_cub": 95, "easing_enum_ease_out_1": 95, "ease_out_quart": 95, "ease_out_expo": 95, "easing_enum_ease_out_2": 95, "ease_out_circ": 95, "ease_out_back": 95, "easing_enum_ease_out_3": 95, "ease_out_elast": 95, "ease_out_bounc": 95, "easing_enum_ease_out_4": 95, "\u3053\u306e\u7bc0\u3067\u306fx\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306b\u304a\u3051\u308b\u5404\u30a4\u30fc\u30ba\u30a4\u30f3\u30a2\u30a6\u30c8\u306e\u8a2d\u5b9a\u306b\u3088\u308b\u4f8b\u3092\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 95, "ease_in_out_sin": 95, "ease_in_out_quad": 95, "ease_in_out_cub": 95, "easing_enum_ease_in_out_1": 95, "ease_in_out_quart": 95, "ease_in_out_expo": 95, "easing_enum_ease_in_out_2": 95, "ease_in_out_circ": 95, "ease_in_out_back": 95, "easing_enum_ease_in_out_3": 95, "ease_in_out_elast": 95, "easing_enum_ease_in_out_4": 95, "\u3053\u306e\u30da\u30fc\u30b8\u3092\u8aad\u307f\u9032\u3081\u308b\u524d\u306b\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u3092\u3054\u78ba\u8a8d\u3044\u305f\u3060\u304f\u3068\u5f79\u306b\u7acb\u3064\u304b\u3082\u3057\u308c\u307e\u305b\u3093": 96, "\u30af\u30e9\u30b9\u3082\u4ed6\u306e\u30c7\u30fc\u30bf\u306e\u30af\u30e9\u30b9\u3068\u540c\u3058\u7406\u7531\u3067\u4f7f\u308f\u308c\u3066\u3044\u307e\u3059": 96, "\u30af\u30e9\u30b9\u306fapysc\u306e\u5206\u5c90\u6761\u4ef6\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 96, "\u3053\u306e\u30af\u30e9\u30b9\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 96, "\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3068\u540c\u3058\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 96, "\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u3068\u5171\u306b\u4f7f\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": [96, 101, 102, 103, 104, 105, 106], "\u30af\u30e9\u30b9\u306e\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u306e\u76f4\u5f8c\u306b\u306e\u307f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [96, 98], "condition_1": [96, 124, 234], "condition_2": [96, 124, 234], "\u30af\u30e9\u30b9\u306e\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u9593\u306b\u30b3\u30fc\u30c9\u3092\u631f\u3093\u3060\u5834\u5408\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 96, "between": [96, 98], "rais": [96, 98, 148], "onli": [96, 98, 133], "\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b\u3066\u76f4\u63a5": 96, "\u306e\u5024\u306e\u6761\u4ef6\u5024\u3092\u4f5c\u6210\u3057\u305f\u308a\u6bd4\u8f03\u8868\u73fe\u3092\u884c\u3046\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093": 96, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u3082\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 96, "mayb": 96, "you": [96, 139, 205], "anyth": 96, "comparison": 96, "constructor": 96, "g": 96, "any_valu": 96, "directli": 96, "support": [96, 181], "so": 96, "separ": 96, "follow": 96, "\u5206\u5c90\u6761\u4ef6\u306e\u5404\u30af\u30e9\u30b9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u5909\u6570\u306e\u5fa9\u5143\u8a2d\u5b9a": [96, 98, 101, 102, 103, 104, 105, 106, 144], "\u306e\u5206\u5c90\u6761\u4ef6\u306e\u8868\u73fe\u3092\u8ffd\u52a0\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 96, "\u5224\u5b9a\u306b\u4f7f\u308f\u308c\u308bboolean\u306e\u771f\u507d\u5024": [96, 144], "\u73fe\u5728\u306e\u30b9\u30b3\u30fc\u30d7\u306e\u5404\u30ed\u30fc\u30ab\u30eb\u5909\u6570": [96, 101, 102, 103, 104, 105, 106, 144], "\u95a2\u6570\u306e\u5024\u3092\u5f15\u6570\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": 96, "\u3082\u3057\u3082\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306b\u306f": 96, "\u306e\u30b9\u30b3\u30fc\u30d7\u306e\u7d42\u4e86\u6642\u306b\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fvariablenamemixin\u30af\u30e9\u30b9\u3092\u7d99\u627f\u3057\u305f\u5404\u5909\u6570": 96, "\u306e\u5024\u3092\u30b9\u30b3\u30fc\u30d7\u524d\u306e\u72b6\u614b\u306b\u5fa9\u5143\u3057\u307e\u3059": 96, "\u3053\u306e\u8a2d\u5b9a\u306f": [96, 98, 141, 144, 160, 189], "\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u30b3\u30fc\u30c9\u3067\u5404\u5909\u6570\u3092\u66f4\u65b0\u3057\u305f\u304f\u306a\u3044\u5834\u5408\u306b\u5f79\u7acb\u3061\u307e\u3059": 96, "\u73fe\u5728\u306e\u30b9\u30b3\u30fc\u30d7\u306e\u5404\u30b0\u30ed\u30fc\u30d0\u30eb\u5909\u6570": [96, 98, 101, 102, 103, 104, 105, 106, 144], "\u8a2d\u5b9a\u3059\u308b\u5834\u5408\u306b\u306fglobal": [96, 98, 101, 102, 103, 104, 105, 106, 144], "\u95a2\u6570\u306e\u5024\u3092\u3053\u306e\u5f15\u6570\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": [96, 98, 101, 102, 103, 104, 105, 106, 144], "\u3053\u306e\u8a2d\u5b9a\u306flocals_\u5f15\u6570\u3068\u540c\u3058\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": [96, 98, 101, 102, 103, 104, 105, 106, 144], "\u73fe\u5728apysc\u3067\u306f\u6761\u4ef6\u5024\u3092\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u5185\u3067\u76f4\u63a5\u4f5c\u6210\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093": 96, "\u3053\u306e\u30af\u30e9\u30b9\u306f": [96, 98, 101, 102, 103, 104, 105, 106, 147, 176, 186], "\u30af\u30e9\u30b9\u306b\u3088\u308b\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u306e\u76f4\u5f8c\u3067\u306e\u307f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 96, "avoid": 96, "note": [96, 205], "predefin": 96, "pass": [96, 160, 222, 224, 226], "\u30af\u30e9\u30b9\u306f\u6955\u5186\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u751f\u6210\u3057\u307e\u3059": 97, "\u6955\u5186\u306e\u4e2d\u592e\u306ex\u5ea7\u6a19": [97, 133], "\u6955\u5186\u306e\u4e2d\u592e\u306ey\u5ea7\u6a19": [97, 133], "\u306e\u5404\u5f15\u6570\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u3067\u3059": [97, 169], "ellipse_basic_usag": 97, "\u3092\u4f7f\u3046\u5f62\u3067\u3082\u6955\u5186\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 97, "ellipse_x": 97, "ellipse_i": 97, "\u5c5e\u6027\u3067\u306f\u5e45\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [97, 182], "ellipse_width": [97, 139, 182, 234], "\u5c5e\u6027\u3067\u306f\u9ad8\u3055\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [97, 182], "ellipse_height": [97, 139, 182, 234], "ellipse_fill_color": 97, "ellipse_fill_alpha": 97, "ellipse_line_color": 97, "ellipse_line_alpha": 97, "ellipse_line_thick": 97, "ellipse_line_dot_set": 97, "ellipse_line_dash_set": 97, "ellipse_line_round_dot_set": 97, "ellipse_line_dash_dot_set": 97, "ellipse_rotation_around_cent": 97, "ellipse_set_rotation_around_point": 97, "ellipse_scale_x_from_cent": 97, "ellipse_scale_y_from_cent": 97, "ellipse_scale_x_from_point": 97, "ellipse_scale_y_from_point": 97, "ellipse_flip_x": 97, "ellipse_flip_i": 97, "ellipse_skew_x": 97, "ellipse_skew_i": 97, "\u6955\u5186\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 97, "\u6955\u5186\u306e\u5e45": [97, 133, 182], "\u6955\u5186\u306e\u9ad8\u3055": [97, 133, 182], "\u30af\u30e9\u30b9\u3092\u4ee5\u4e0b\u306e\u30c7\u30fc\u30bf\u578b\u306e\u30b1\u30fc\u30b9\u3068\u540c\u3058\u7406\u7531\u3067\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 98, "\u30af\u30e9\u30b9\u306fapysc\u306e\u6761\u4ef6\u5206\u5c90\u306e\u6307\u5b9a\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 98, "\u30ad\u30fc\u30ef\u30fc\u30c9\u3068\u540c\u3058\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 98, "\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u3068\u30bb\u30c3\u30c8\u3067\u4f7f\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 98, "\u30af\u30e9\u30b9\u306e\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u306f": 98, "\u30af\u30e9\u30b9\u306e\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u306e\u76f4\u5f8c\u3067\u306e\u307f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 98, "\u30af\u30e9\u30b9\u306e\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u306e\u9593\u306b\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3059\u308b\u3068\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 98, "implement": [98, 231], "else\u306e\u5206\u5c90\u6761\u4ef6\u306e\u8868\u73fe\u3092\u8ffd\u52a0\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 98, "\u73fe\u5728\u306e\u30b9\u30b3\u30fc\u30d7\u306e\u5404\u30ed\u30fc\u30ab\u30eb\u5909\u6570\u306e\u5024": 98, "\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306flocal": 98, "\u95a2\u6570\u3092\u3053\u306e\u5f15\u6570\u3078\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": 98, "\u3082\u3057\u8a2d\u5b9a\u3055\u308c\u305f\u5834\u5408\u306b\u306f": 98, "\u306e\u30b9\u30b3\u30fc\u30d7\u306e\u6700\u5f8c\u306bvariablenamemixin\u30af\u30e9\u30b9\u3092\u7d99\u627f\u3057\u305f\u30af\u30e9\u30b9\u306e\u5404\u5909\u6570": 98, "sprite\u306a\u3069": 98, "\u306e\u8a2d\u5b9a\u306f\u5fa9\u5143\u3055\u308c\u307e\u3059": 98, "\u30af\u30e9\u30b9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u3067\u5909\u6570\u3092\u66f4\u65b0\u3057\u305f\u304f\u306a\u3044\u5834\u5408\u306a\u3069\u306b\u4fbf\u5229\u306a\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 98, "greater": [98, 144], "less": 98, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u305f\u3081\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 99, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u3092\u5404\u30d5\u30ec\u30fc\u30e0\u3054\u3068\u306b\u547c\u3073\u51fa\u3057\u307e\u3059": 99, "\u30af\u30e9\u30b9\u3067\u3082\u540c\u69d8\u306b\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u6271\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 99, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7528\u9014\u306e\u5834\u5408": 99, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u3069\u3061\u3089\u3092\u4f7f\u3046\u3079\u304d\u306a\u306e\u3067\u3057\u3087\u3046\u304b": 99, "\u56de\u7b54\u3068\u3057\u3066\u306f\u57fa\u672c\u7684\u306b\u306f": 99, "\u5074\u3068\u306a\u308a\u307e\u3059": 99, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30cf\u30f3\u30c9\u30e9\u306e\u547c\u3073\u51fa\u3057\u306e\u9593\u9694\u304c": 99, "\u30af\u30e9\u30b9\u3088\u308a\u3082\u305a\u308c\u306b\u304f\u304f\u306a\u3063\u3066\u3044\u307e\u3059": 99, "\u4e00\u65b9\u3067": [99, 136, 190, 193], "\u30af\u30e9\u30b9\u5074\u306fcpu\u8ca0\u8377\u304c\u9ad8\u3044\u5834\u5408\u306a\u3069\u306b\u547c\u3073\u51fa\u3057\u30bf\u30a4\u30df\u30f3\u30b0\u304c\u305a\u308c\u308b\u30b1\u30fc\u30b9\u304c\u767a\u751f\u3057\u307e\u3059": 99, "\u306a\u3069\u306e\u30af\u30e9\u30b9\u306b\u5b58\u5728\u3057\u307e\u3059": 99, "\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306a\u3069\u306ecallable\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 99, "\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 99, "\u3053\u306e\u5f15\u6570\u306f\u30d5\u30ec\u30fc\u30e0\u30ec\u30fc\u30c8\u3092\u6c7a\u5b9a\u3057\u307e\u3059": 99, "\u306eenum\u306e\u6307\u5b9a\u304c\u53ef\u80fd\u3067\u3059": 99, "\u5f15\u6570\u3082\u7701\u7565\u53ef\u3067\u3042\u308a": 99, "\u3053\u306e\u6307\u5b9a\u306f\u30cf\u30f3\u30c9\u30e9\u3078\u3068\u8ffd\u52a0\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 99, "on_enter_fram": [99, 206, 229, 231], "enterframeev": [99, 206, 229, 231], "enter": [99, 229, 231], "frame": [99, 107, 222, 229, 231], "fps_30": [99, 107, 222, 231], "enter_frame_basic_usag": 99, "enter_frame_ev": [99, 231], "_time": [99, 220, 222, 224], "fpsdefinit": 99, "object": 99, "0x7f80576dc3a0": [], "frame\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30ea\u30b9\u30ca\u30fc\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 99, "frame\u30a4\u30d9\u30f3\u30c8\u3092\u6271\u3046\u305f\u3081\u306e\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570": 99, "\u8a2d\u5b9a\u3059\u308b1\u79d2\u8fba\u308a\u306e\u30d5\u30ec\u30fc\u30e0\u6570": 99, "per": [99, 107, 222], "\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570\u3078\u3068\u6e21\u3055\u308c\u308b\u8ffd\u52a0\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306e\u5f15\u6570\u5024": 99, "\u3082\u3057\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u547c\u3073\u51fa\u3057\u304c2\u56de\u76ee\u4e14\u3064\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u306e\u5f15\u6570\u306e\u5024\u304c\u540c\u4e00\u306e\u5834\u5408": 99, "\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": 99, "\u5b9f\u884c\u4e2d\u304b\u3069\u3046\u304b\u306e\u30b9\u30c6\u30fc\u30bf\u30b9\u3068": 99, "\u306e\u8a2d\u5b9a\u306e\u307f\u66f4\u65b0\u3057\u307e\u3059": 99, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fjavascript\u306e": 100, "preventdefault": 100, "\u30e1\u30bd\u30c3\u30c9\u306b\u8a72\u5f53\u3059\u308b\u30b3\u30fc\u30c9\u8868\u73fe\u3092\u52a0\u3048\u307e\u3059": 100, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a4\u30d9\u30f3\u30c8\u306b\u304a\u3051\u308b\u30d6\u30e9\u30a6\u30b6\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u6319\u52d5\u3092\u7121\u52b9\u5316\u3057\u307e\u3059": 100, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a4\u30d9\u30f3\u30c8\u306e\u4f1d\u642c\u3092\u505c\u6b62\u3057\u307e\u3059": 100, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u5b9f\u884c": 100, "\u767a\u706b": [100, 146], "\u3055\u308c\u305f\u30a4\u30d9\u30f3\u30c8\u306f\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u306f\u4f1d\u642c\u3057\u306a\u304f\u306a\u308a\u307e\u3059": 100, "\u89aa\u306e\u30a4\u30d9\u30f3\u30c8\u306f\u7121\u8996\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 100, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 100, "\u6ce8": 100, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u30b5\u30d6\u30af\u30e9\u30b9\u3082\u5b58\u5728\u3057\u307e\u3059": 100, "\u30e1\u30bd\u30c3\u30c9\u306f\u7279\u306b\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 100, "event_prevent_default_basic_usag": 100, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u30b5\u30d6\u30af\u30e9\u30b9\u3082\u5b58\u5728\u3057\u307e\u3059": 100, "\u30e1\u30bd\u30c3\u30c9\u3068\u540c\u69d8\u306b\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 100, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u3092sprite\u306e\u89aa\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u56db\u89d2\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u305d\u308c\u305e\u308c\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 100, "\u56db\u89d2\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30af\u30ea\u30c3\u30af\u306e\u30cf\u30f3\u30c9\u30e9\u3067\u306f": 100, "\u30e1\u30bd\u30c3\u30c9\u3092\u8aad\u3093\u3067\u3044\u308b\u305f\u3081": 100, "\u89aa\u306esprite\u306e\u30cf\u30f3\u30c9\u30e9\u306f\u547c\u3070\u308c\u307e\u305b\u3093": 100, "\u30a4\u30d9\u30f3\u30c8\u304c\u4f1d\u642c\u3057\u307e\u305b\u3093": 100, "event_stop_propagation_basic_usag": 100, "\u3082\u3057\u4ee5\u4e0b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u5834\u5408": 100, "\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u306b\u306f": 100, "\u3068\u3044\u3046\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u307f\u304c\u8868\u793a\u3055\u308c": 100, "sprite\u95a2\u4fc2\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u306f\u8868\u793a\u3055\u308c\u307e\u305b\u3093": 100, "\u30a4\u30d9\u30f3\u30c8\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u6319\u52d5\u3092\u7121\u52b9\u5316\u3057\u307e\u3059": 100, "unbind_mouseup_al": 100, "\u30a4\u30d9\u30f3\u30c8\u306e\u4f1d\u642c\u3092\u505c\u6b62\u3055\u305b\u307e\u3059": 100, "\u4e8b\u524d\u306b\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u3092\u8aad\u3093\u3067\u304a\u304f\u3068\u5f79\u7acb\u3064\u304b\u3082\u3057\u308c\u307e\u305b\u3093": [101, 102, 103, 104, 105, 106], "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u3053\u306e\u30af\u30e9\u30b9\u3092\u5404\u30c7\u30fc\u30bf\u578b\u3068\u540c\u3058\u3088\u3046\u306b\u6271\u3063\u3066\u3044\u307e\u3059": [101, 102, 103, 104, 105, 106], "\u30af\u30e9\u30b9\u306f\u30eb\u30fc\u30d7\u5236\u5fa1\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [101, 102], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30eb\u30fc\u30d7\u4e2d\u306e": 101, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 101, "0\u304b\u3089\u30b9\u30bf\u30fc\u30c8\u3057\u307e\u3059": [101, 110, 191], "\u30ad\u30fc\u30ef\u30fc\u30c9\u306e\u5024\u306f": [101, 102, 104, 106], "\u578b\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059": 101, "indic": 101, "assert_arrays_equ": [101, 104, 146, 201], "for_array_indices_basic_usage_1": 101, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f7f\u3063\u3066\u5186\u306e\u4e2d\u5fc3\u306ex\u5ea7\u6a19\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 101, "x_arr": [101, 102, 103], "for_array_indices_basic_usage_2": 101, "\u3053\u306e\u30af\u30e9\u30b9\u306f\u540c\u3058\u5f15\u6570\u3092\u6301\u3061\u540c\u69d8\u306e\u632f\u308b\u821e\u3044\u3092\u3057\u307e\u3059": [101, 102, 103, 104, 105, 106], "\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5236\u5fa1\u306e\u305f\u3081\u306e\u30eb\u30fc\u30d7\u5236\u5fa1\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 101, "\u30a4\u30c6\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u305f\u3081\u306e\u914d\u5217": [101, 102, 103], "\u3053\u306e\u5f15\u6570\u306b\u306flocal": [101, 102, 103, 104, 105, 106], "\u95a2\u6570\u306e\u8fd4\u5374\u5024\u3092\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": [101, 102, 103, 104, 105, 106], "\u3082\u3057\u3053\u306e\u5f15\u6570\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": [101, 102, 103, 104, 105, 106, 109, 141], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30ed\u30fc\u30ab\u30eb\u30b9\u30b3\u30fc\u30d7\u306evariablenamemixin\u306e\u5404\u5909\u6570": [101, 102, 103, 104, 105, 106], "int\u3084sprite\u306a\u3069": [101, 102, 103, 104, 105, 106], "\u306e\u5024\u3092with\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u306e\u6700\u5f8c\u3067\u5fa9\u5143\u3057\u307e\u3059": [101, 102, 103, 104, 105, 106], "\u3053\u306e\u8a2d\u5b9a\u306f\u5404\u5909\u6570\u3092\u66f4\u65b0\u3057\u305f\u304f\u306a\u3044\u5834\u5408\u7b49\u306b\u5f79\u7acb\u3061\u307e\u3059": [101, 102, 103, 104, 105, 106], "\u306a\u305capysc\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30c7\u30fc\u30bf\u578b\u3092\u4f7f\u3063\u3066\u3044\u306a\u3044\u306e\u304b": 101, "\u5404\u5206\u5c90\u5236\u5fa1\u306e\u30af\u30e9\u30b9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5909\u6570\u5024\u306e\u5fa9\u5143\u8a2d\u5b9a": [101, 146], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30eb\u30fc\u30d7\u5185\u3067": [102, 103, 104], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 102, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u5024\u306b\u306a\u308a\u307e\u3059": 102, "\u306e\u914d\u5217\u5185\u306e\u5024\u306e\u578b\u306e\u6307\u5b9a\u7528\u306b": [102, 103], "arr_value_typ": [102, 103], "\u3053\u306e\u578b\u306e\u6307\u5b9a\u306f": [102, 103, 104], "\u306a\u3069\u306eapysc\u306e\u578b": [102, 103], "\u306e\u307f\u53d7\u3051\u4ed8\u3051\u307e\u3059": [102, 103], "225": [102, 138], "for_array_indices_and_values_basic_usage_1": 102, "_arrayvalu": [102, 103], "\u306e\u5404\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u5024\u306b\u5bfe\u3059\u308b\u30eb\u30fc\u30d7\u5236\u5fa1\u306e\u5b9f\u88c5\u3068\u306a\u308b\u30af\u30e9\u30b9\u3067\u3059": 102, "\u914d\u5217\u306e\u5024\u306e\u578b": [102, 103], "\u306a\u3069\u306eapysc\u306e\u578b\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": [102, 103, 105], "\u30af\u30e9\u30b9\u306f\u30eb\u30fc\u30d7\u51e6\u7406\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 103, "\u306e\u914d\u5217\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 103, "\u30ad\u30fc\u30ef\u30fc\u30c9\u306b\u3088\u308b\u5024\u306f": 103, "\u306e\u914d\u5217\u306e\u5024\u3068\u306a\u308a\u307e\u3059": 103, "for_array_values_basic_usag": 103, "\u306e\u914d\u5217\u306e\u5024\u306e\u305f\u3081\u306e\u30eb\u30fc\u30d7\u51e6\u7406\u306e\u30af\u30e9\u30b9\u3067\u3059": 103, "\u30af\u30e9\u30b9\u306ffor\u6587\u3067\u306e\u30eb\u30fc\u30d7\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 104, "\u306e\u30ad\u30fc\u3092\u8fd4\u5374\u3057\u307e\u3059": 104, "\u306e\u30ad\u30fc\u3068\u306a\u308a\u307e\u3059": 104, "\u306e\u30ad\u30fc\u306e\u578b\u3092\u6307\u5b9a\u3059\u308b\u305f\u3081\u306e": 104, "dict_key_typ": [104, 105], "\u3068\u3044\u3063\u305fapysc\u306e\u578b\u306e\u307f\u53d7\u3051\u4ed8\u3051\u307e\u3059": 104, "dict_": [104, 105, 106], "appl": 104, "120": [104, 206], "orang": 104, "for_dict_keys_basic_usage_1": 104, "_dictkei": [104, 105], "\u306e\u5404\u30ad\u30fc\u306e\u305f\u3081\u306e\u30eb\u30fc\u30d7\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 104, "\u30a4\u30c6\u30ec\u30fc\u30b7\u30e7\u30f3\u3067\u6271\u3046\u305f\u3081\u306e\u8f9e\u66f8": [104, 105, 106], "\u8f9e\u66f8\u306e\u30ad\u30fc\u306e\u578b": [104, 105], "\u3068\u3044\u3063\u305f\u30cf\u30c3\u30b7\u30e5\u5316\u53ef\u80fd\u306a\u578b\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": [104, 105], "\u30af\u30e9\u30b9\u306ffor\u6587\u306e\u30eb\u30fc\u30d7\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 105, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30eb\u30fc\u30d7\u306e\u4e2d\u3067": 105, "\u306e\u30ad\u30fc\u3068\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 105, "\u30ad\u30fc\u30ef\u30fc\u30c9\u90e8\u5206\u306e\u5024\u306f": 105, "\u306e\u30ad\u30fc\u3068\u5024\u306b\u306a\u308a\u307e\u3059": 105, "\u306e\u30ad\u30fc\u3068\u5024\u306e\u578b\u3092\u6307\u5b9a\u3059\u308b\u305f\u3081\u306e": 105, "dict_value_typ": [105, 106], "\u306a\u3069\u306e\u30cf\u30c3\u30b7\u30e5\u5316\u53ef\u80fd\u306aapysc\u306e\u578b\u306e\u307f\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 105, "\u5f15\u6570\u306f": [105, 107, 135, 166], "for_dict_keys_and_values_basic_usage_1": 105, "_dictvalu": [105, 106], "\u306e\u30ad\u30fc\u3068\u5024\u306e\u305f\u3081\u306e\u30eb\u30fc\u30d7\u306e\u30af\u30e9\u30b9\u306e\u5b9f\u88c5\u3067\u3059": 105, "\u8f9e\u66f8\u306e\u5024\u306e\u578b": [105, 106], "\u3054\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [105, 106], "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u578b\u306e\u307f\u53d7\u3051\u4ed8\u3051\u307e\u3059": [105, 106], "\u30af\u30e9\u30b9\u306ffor\u6587\u306b\u3088\u308b\u30eb\u30fc\u30d7\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 106, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30eb\u30fc\u30d7\u5185\u3067": 106, "\u3053\u306e\u30af\u30e9\u30b9\u3067\u306f": 106, "\u306e\u5024\u306e\u578b\u3092\u6307\u5b9a\u3059\u308b\u305f\u3081\u306b": 106, "\u3053\u306e\u578b\u306f": 106, "\u306a\u3069\u306eapysc\u306e\u578b\u306e\u307f\u53d7\u3051\u4ed8\u3051\u307e\u3059": 106, "for_dict_values_basic_usage_1": 106, "\u306e\u5024\u306e\u305f\u3081\u306e\u30eb\u30fc\u30d7\u5236\u5fa1\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 106, "\u306eenum\u306e\u30af\u30e9\u30b9\u306f\u5404fp": 107, "\u306e\u5b9a\u7fa9\u3067\u3059": 107, "\u30bf\u30a4\u30de\u30fc\u304c\u5b9f\u884c\u9593\u9694\u3092\u6c7a\u3081\u308b\u305f\u3081\u306b\u4e3b\u306b\u3053\u306eenum\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 107, "fps\u306eenum\u306e\u5b9a\u7fa9\u306f5\u9593\u9694": 107, "30\u7b49": 107, "\u3067\u5b58\u5728\u3057\u307e\u3059": 107, "\u306eenum\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 107, "\u306e\u5024\u3092": 107, "\u5f15\u6570\u306b\u6307\u5b9a\u3057\u305f\u5834\u5408": [107, 198], "\u30bf\u30a4\u30de\u30fc\u306e\u9593\u9694\u306f\u7d04": 107, "16": [107, 164, 206, 207, 208, 209, 210, 211, 212, 213, 214, 220, 222, 223, 224, 226], "6666667": [107, 222], "\u30df\u30ea\u79d2\u3054\u3068\u3068\u306a\u308a\u307e\u3059": 107, "\u3092\u6307\u5b9a\u3059\u308b\u3068": 107, "33": [107, 221, 222, 223, 224, 225, 226], "3333333": [107, 222], "\u30df\u30ea\u79d2\u3054\u3068\u306e\u9593\u9694\u3068\u306a\u308a\u307e\u3059": 107, "timer_1": [107, 221, 222, 225], "fps_10": 107, "timer_2": [107, 221, 222, 225], "timer_3": [107, 222], "fps_basic_usag": 107, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306fapysc\u306e": 108, "\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u306e": 108, "\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5404\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 108, "setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u305d\u308c\u3089\u306e\u5024\u306e\u66f4\u65b0\u3092\u884c\u3044\u307e\u3059": 108, "\u8fd4\u5374\u5024\u306f\u57fa\u672c\u7684\u306b": 108, "\u306a\u3069\u306epython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u5024\u306b\u306a\u308a\u307e\u3059": 108, "\u306egetter\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 108, "number_1": [108, 145, 147, 148, 149], "apysc\u306e\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u306b\u304a\u3051\u308b": 108, "\u306esetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u305d\u308c\u3089\u306e\u5024\u3092\u66f4\u65b0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 108, "python\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u5024\u3084apysc\u306e\u540c\u3058\u578b\u306e\u5024\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 108, "\u30e1\u30bd\u30c3\u30c9\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30d0\u30a6\u30f3\u30c7\u30a3\u30f3\u30b0\u30dc\u30c3\u30af\u30b9\u306e\u30c7\u30fc\u30bf": 109, "\u5ea7\u6a19\u3084\u30b5\u30a4\u30ba\u306a\u3069\u306e\u5e7e\u4f55\u30c7\u30fc\u30bf": 109, "\u30e1\u30bd\u30c3\u30c9\u3067\u306f": 109, "rectanglegeom": [109, 146], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": [], "\u5ea7\u6a19\u306e\u57fa\u6e96\u5ea7\u6a19\u306f\u30b9\u30c6\u30fc\u30b8\u306ex": [], "0\u3068y": [], "0\u306e\u4f4d\u7f6e\u3068\u306a\u308a\u307e\u3059": [], "440": [109, 183], "220": [109, 138, 183], "bounding_box": [109, 183], "box_rectangl": [109, 183], "left_x": 109, "top_i": 109, "aaa": [109, 183, 206, 207, 227, 230], "fd63c3": [109, 183], "left_x_and_top_y_circl": [109, 183], "left_x_and_top_y_text": [109, 183], "get_bounds_basic_usag": [], "_geom": [109, 135, 136, 166, 177, 178, 183], "rectangle_geom": [109, 183], "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30d0\u30a6\u30f3\u30c7\u30a3\u30f3\u30b0\u30dc\u30c3\u30af\u30b9\u306e\u5e7e\u4f55\u30c7\u30fc\u30bf\u3092\u53d6\u5f97\u3057\u307e\u3059": [109, 183], "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30d0\u30a6\u30f3\u30c7\u30a3\u30f3\u30b0\u30dc\u30c3\u30af\u30b9\u306e\u5e7e\u4f55\u30c7\u30fc\u30bf": [109, 183], "graphisc": 110, "\u306a\u3069\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u30af\u30e9\u30b9\u306e": 110, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4f4d\u7f6e\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 110, "displkayobject": 110, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fsprite\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u3078\u3068\u56db\u89d2\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059": 110, "\u306e\u30af\u30e9\u30b9\u306f": 110, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u5b50\u3068\u3057\u3066\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u8ffd\u52a0\u3059\u308b\u305f\u3081": 110, "\u6700\u521d\u306e\u5b50\u306f": 110, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u306a\u308a": 110, "2\u756a\u76ee\u306e\u5b50\u306f": 110, "\u30e1\u30bd\u30c3\u30c9\u3067\u8ffd\u52a0\u3055\u308c\u305f": 110, "\u306e\u56db\u89d2\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u306a\u308a\u307e\u3059": 110, "first_child": 110, "second_child": 110, "\u6307\u5b9a\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5b50\u3092\u53d6\u5f97\u3057\u307e\u3059": [110, 191], "\u5bfe\u8c61\u306e\u5b50\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [110, 191], "\u5bfe\u8c61\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [110, 191], "child_at_index_1": [110, 191], "\u30af\u30e9\u30b9\u306f\u5404\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u63cf\u753b\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6271\u3046\u30af\u30e9\u30b9\u3067\u3059": 111, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u306f\u56db\u89d2\u306e\u63cf\u753b\u3084\u7dda\u306e\u63cf\u753b\u306a\u3069\u69d8\u3005\u306a\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u5b58\u5728\u3057\u307e\u3059": 111, "\u30af\u30e9\u30b9\u306a\u3069\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u3053\u306e": 111, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u5185\u90e8\u3067\u751f\u6210\u3057\u307e\u3059": 111, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 111, "\u5c5e\u6027\u3092\u6301\u3063\u3066\u304a\u308a": [111, 190], "\u305d\u306e\u5c5e\u6027\u3092\u4f7f\u7528\u3057\u3066\u5404\u63cf\u753b\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 111, "180": [111, 141, 179], "white": [111, 141], "border": 111, "cyan": [111, 122, 127, 129, 133, 134, 141], "magenta": [111, 122, 127, 134, 141, 163], "polylin": [111, 141, 146, 179], "dash": [111, 130, 131, 141], "130": [111, 130, 131, 132, 138, 141, 234], "graphics_call_interfaces_from_sprite_inst": 111, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 111, "\u30af\u30e9\u30b9\u306a\u3069\u306e\u751f\u6210\u3055\u308c\u305f\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 111, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306fx\u3084y": 111, "visible\u306a\u3069\u306e\u57fa\u672c\u7684\u306a": 111, "\u30af\u30e9\u30b9\u306e\u5404\u5c5e\u6027\u3084\u30e1\u30bd\u30c3\u30c9\u306a\u3069\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 111, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u3053\u308c\u3089\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u5bfe\u3057\u3066\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057\u3066\u5ea7\u6a19\u306e\u66f4\u65b0\u51e6\u7406\u306a\u3069\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 111, "drew_rect": 111, "bind": [111, 161, 163], "graphics_return_valu": 111, "\u3082\u3057\u4ee5\u4e0b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u5ea7\u6a19\u5024\u3084\u5857\u308a\u306e\u8272": 111, "\u900f\u660e\u5ea6\u306a\u3069\u306e\u5024\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059": 111, "\u5857\u308a\u306e\u8a2d\u5b9a": [111, 234], "\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [111, 119, 234], "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5857\u308a\u306e\u900f\u660e\u5ea6\u66f4\u65b0\u3084\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [112, 211], "\u5c5e\u6027\u306egetter\u3068setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306f": [], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f2\u3064\u76ee\u306e\u56db\u89d2\u306b0": 112, "5\u306e\u900f\u660e\u5ea6\u3092": 112, "\u305d\u3057\u30663\u3064\u76ee\u306e\u56db\u89d2\u306b0": 112, "25\u306e\u900f\u660e\u5ea6\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 112, "graphics_base_fill_alpha_basic_usag": 112, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5857\u308a\u306e\u900f\u660e\u5ea6\u3092\u53d6\u5f97\u3057\u307e\u3059": 112, "\u73fe\u5728\u306e\u5857\u308a\u306e\u900f\u660e\u5ea6": [112, 127], "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u5857\u308a\u306e\u8272\u306e\u5024\u3092\u66f4\u65b0\u3057\u305f\u308a\u53d6\u5f97\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [113, 212], "getter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [113, 212], "\u578b\u306e\u5024\u306b\u306a\u308a\u307e\u3059": [113, 121, 212], "setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082": [113, 212], "\u578b\u306e\u5024\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": [113, 124, 212], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u5857\u308a\u306e\u8272\u3092\u30b7\u30a2\u30f3\u304b\u3089\u30de\u30bc\u30f3\u30bf\u306b\u5909\u66f4\u3059\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059": 113, "graphics_base_fill_color_basic_usag": 113, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5857\u308a\u306e\u8272\u3092\u53d6\u5f97\u3057\u307e\u3059": 113, "\u73fe\u5728\u306e\u5857\u308a\u306e\u8272": [113, 127], "\u306a\u3069\u306e16\u9032\u6570\u306e\u6587\u5b57\u5217\u306e\u8272": 113, "\u3082\u3057\u3082\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408": [113, 127], "\u5b9a\u6570\u306e\u5024\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059": [113, 127, 141], "ff00aa": [113, 116, 159, 184, 186], "\u306a\u3069\u306e\u5404\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30af\u30e9\u30b9\u306e\u57fa\u5e95\u30af\u30e9\u30b9": [114, 124], "\u5c5e\u6027\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u6a2a\u65b9\u5411\u306b\u53cd\u8ee2\u3057": 114, "\u5c5e\u6027\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u7e26\u65b9\u5411\u306b\u53cd\u8ee2\u3057\u307e\u3059": 114, "\u578b\u306e\u5024\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u3059": [], "\u3092\u6307\u5b9a\u3059\u308c\u3070\u53cd\u8ee2\u3057\u305f\u72b6\u614b\u306b\u306a\u308a": 114, "\u3092\u8a2d\u5b9a\u3059\u308c\u53cd\u8ee2\u304c\u30ea\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059": 114, "getter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u73fe\u5728\u306e\u53cd\u8ee2\u8a2d\u5b9a\u306e": 114, "\u578b\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": [114, 124, 156, 157, 158, 176, 193, 197, 203, 219], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f1\u79d2\u3054\u3068\u306b\u4e09\u89d2\u5f62\u306e\u53cd\u8ee2\u3068\u30ea\u30bb\u30c3\u30c8\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 114, "_polygonopt": 114, "polygon": [114, 136, 146, 176], "point2d": [114, 136, 146, 152, 177, 178, 206, 234], "graphics_base_flip_x_basic_usag": 114, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u8ef8\u306e\u65b9\u5411\u306e\u9055\u3044\u3092\u9664\u3044\u3066": 114, "\u306e\u54e1\u30b9\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u540c\u69d8\u306b\u52d5\u4f5c\u3057\u307e\u3059": 114, "\u6a2a\u8ef8\u306b\u5bfe\u3057\u3066\u53cd\u8ee2\u3057\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 114, "\u6a2a\u65b9\u5411\u306b\u53cd\u8ee2\u3057\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u306eboolean\u306e\u771f\u507d\u5024": 114, "\u7e26\u8ef8\u306b\u5bfe\u3057\u3066\u53cd\u8ee2\u3057\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 114, "\u7e26\u65b9\u5411\u306b\u53cd\u8ee2\u3057\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u306eboolean\u306e\u771f\u507d\u5024": 114, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u306e\u900f\u660e\u5ea6\u306e\u66f4\u65b0\u3084\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 115, "getter\u3068setter\u306e\u4e21\u65b9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306f": [112, 115, 211], "\u578b\u306e0": [112, 115, 211], "0\u306e\u7bc4\u56f2\u306e\u5024\u3068\u306a\u308a\u307e\u3059": [112, 115, 211], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f0": 115, "5\u306e\u7dda\u306e\u900f\u660e\u5ea6\u30922\u756a\u76ee\u306e\u56db\u89d2\u306b\u8a2d\u5b9a\u3057": 115, "25\u306e\u7dda\u306e\u900f\u660e\u5ea6\u30923\u756a\u76ee\u306e\u56db\u89d2\u306b\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 115, "graphics_base_line_alpha_basic_usag": 115, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u306e\u900f\u660e\u5ea6\u3092\u53d6\u5f97\u3057\u307e\u3059": 115, "\u73fe\u5728\u306e\u7dda\u306e\u900f\u660e\u5ea6": [115, 141], "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u306e\u8272\u306e\u66f4\u65b0\u3084\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 116, "getter\u3068setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u6271\u3046\u5024\u306f": 116, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u7dda\u306e\u8272\u3092\u30b7\u30a2\u30f3\u304b\u3089\u30de\u30bc\u30f3\u30bf\u306b\u5909\u66f4\u3057\u3066\u3044\u307e\u3059": 116, "graphics_base_line_color_basic_usag": 116, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u306e\u8272\u3092\u53d6\u5f97\u3057\u307e\u3059": 116, "\u306a\u3069\u306e16\u9032\u6570\u306e\u7dda\u306e\u8272": 116, "\u3082\u3057\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f": [116, 141], "\u306e\u5b9a\u6570\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059": 116, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u73fe\u5728\u306e\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [], "getter\u3084setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306f": [117, 119, 120], "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5024\u3068\u306a\u308a\u307e\u3059": [117, 118], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f10px\u306e\u7834\u7dda\u30683px\u306e\u70b9\u7dda\u306e\u4e00\u70b9\u9396\u7dda\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 117, "graphics_base_line_dash_dot_setting_basic_usag": 117, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u3053\u306e\u7dda\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": 117, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u30cf\u30f3\u30c9\u30e9\u5185\u306e\u51e6\u7406\u3067\u7dda\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059": [117, 118, 119, 120], "graphics_base_line_dash_dot_setting_delete_set": 117, "\u73fe\u5728\u306e\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 117, "\u4e00\u70b9\u9396\u7dda\u306e\u8a2d\u5b9a": 117, "\u73fe\u5728\u306e\u7dda\u306e\u4e00\u70b9\u9396\u7dda\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": 117, "getter\u3068setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306f": 118, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u7dda\u306b\u5bfe\u3057\u306610px\u306e\u7834\u7dda\u30683px\u306e\u7834\u7dda\u9593\u306e\u7a7a\u767d\u306e\u30b9\u30da\u30fc\u30b9\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 118, "graphics_base_line_dash_setting_basic_usag": 118, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u3053\u306e\u7dda\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": [118, 119, 120], "graphics_base_line_dash_setting_delete_set": 118, "\u73fe\u5728\u306e\u7dda\u306e\u7834\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": [118, 141], "\u7dda\u306e\u7834\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 118, "\u73fe\u5728\u306e\u7834\u7dda\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": 118, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u306e\u30c9\u30c3\u30c8\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3044\u307e\u3059": 119, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5024\u3068\u306a\u308a\u307e\u3059": 119, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f5px\u306e\u70b9\u7dda\u306e\u8a2d\u5b9a\u3092\u7dda\u306b\u884c\u3063\u3066\u3044\u307e\u3059": 119, "graphics_base_line_dot_setting_basic_usag": 119, "graphics_base_line_dot_setting_delete_set": 119, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u306e\u70b9\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 119, "\u7dda\u306e\u70b9\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 119, "\u73fe\u5728\u306e\u70b9\u7dda\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": 119, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u73fe\u5728\u7dda\u306e\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3084\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5024\u306b\u306a\u308a\u307e\u3059": 120, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f10px\u306e\u30b5\u30a4\u30ba\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 120, "graphics_base_line_round_dot_setting_basic_usag": 120, "graphics_base_line_round_dot_setting_delete_set": 120, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 120, "\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 120, "\u73fe\u5728\u306e\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": 120, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u5e45\u306e\u5024\u306e\u66f4\u65b0\u3084\u53d6\u5f97\u304c\u884c\u3048\u307e\u3059": [], "getter\u3082\u3057\u304f\u306fsetter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306f": [121, 210, 214, 216], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f1\u3064\u76ee\u306e\u56db\u89d2\u306b5px\u306e\u7dda\u5e45\u3092\u8a2d\u5b9a\u3057\u3066\u304a\u308a": 121, "2\u3064\u76ee\u306e\u56db\u89d2\u306b\u306f10px\u306e\u7dda\u5e45\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 121, "graphics_base_line_thickness_basic_usag": 121, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u5e45\u3092\u53d6\u5f97\u3057\u307e\u3059": 121, "\u73fe\u5728\u306e\u7dda\u5e45": [121, 141], "\u306a\u3069\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u306e\u30af\u30e9\u30b9\u306e\u57fa\u5e95\u30af\u30e9\u30b9": 122, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u56de\u8ee2\u89d2\u5ea6\u306e\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 122, "cyan_rect": 122, "magenta_rect": 122, "angl": 122, "increment": 122, "addit": 122, "60": [122, 152, 217, 219], "graphics_base_rotation_around_center_basic_usag": 122, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u73fe\u5728\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u7cfb\u306e\u30af\u30e9\u30b9\u3067\u306e\u307f\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u304a\u308a": 122, "\u306a\u3069\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u306f\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093": 122, "html\u306esvg\u306e\u4ed5\u69d8\u306b\u4f9d\u5b58\u3057\u3066\u3044\u307e\u3059": 122, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u56de\u8ee2\u91cf\u3092\u53d6\u5f97\u3057\u307e\u3059": 122, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u56de\u8ee2\u91cf": 122, "45": [122, 123, 138, 200, 206], "\u306a\u3069\u306e\u5404\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u30af\u30e9\u30b9\u306e\u57fa\u5e95\u30af\u30e9\u30b9": 123, "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u57fa\u6e96\u306e\u56de\u8ee2\u91cf\u3092\u53d6\u5f97\u3057": 123, "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u56de\u8ee2\u91cf\u3092\u66f4\u65b0\u3057\u307e\u3059": 123, "\u3053\u308c\u3089\u306e\u56de\u8ee2\u91cf\u306f\u76f8\u5bfe\u5024\u3067\u3042\u308a": 123, "\u5404\u56de\u8ee2\u91cf\u306f\u5ea7\u6a19\u3054\u3068\u306b\u7570\u306a\u308b\u5024\u304c\u4fdd\u6301\u3055\u308c\u307e\u3059": 123, "\u4f8b\u3048\u3070x": 123, "50\u306e\u5ea7\u6a19\u3068x": 123, "100\u306e\u5ea7\u6a19\u306e\u56de\u8ee2\u91cf\u306e\u5024\u306f\u305d\u308c\u305e\u308c\u5225\u306e\u5024\u306b\u306a\u308a\u307e\u3059": 123, "\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057": 123, "\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u3067\u306e\u56de\u8ee2\u91cf\u3092\u8fd4\u5374\u3057\u307e\u3059": 123, "\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 123, "\u5168\u3066\u306e\u5f15\u6570\u3068\u8fd4\u5374\u5024\u306f": 123, "\u578b\u306b\u306a\u308a\u307e\u3059": 123, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u4e8c\u3064\u306e\u56db\u89d2\u3092\u4f5c\u6210\u3057": 123, "\u5404\u56db\u89d2\u3092\u30bf\u30a4\u30de\u30fc\u306e\u30cf\u30f3\u30c9\u30e9\u5185\u3067\u56de\u8ee2\u3055\u305b\u3066\u3044\u307e\u3059": 123, "1\u3064\u76ee\u306e\u56db\u89d2\u306f\u5de6\u4e0a\u306e\u5ea7\u6a19": 123, "\u3067\u56de\u8ee2\u3055\u305b\u3066\u3044\u3066": 123, "2\u3064\u76ee\u306e\u56db\u89d2\u306f\u53f3\u4e0b\u306e\u5ea7\u6a19": 123, "\u3067\u56de\u8ee2\u3055\u305b\u3066\u3044\u307e\u3059": 123, "_rectanglesopt": [123, 124], "graphics_base_rotation_around_point_basic_usag": 123, "\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u56de\u8ee2\u91cf\u3092\u53d6\u5f97\u3057\u307e\u3059": 123, "\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u57fa\u6e96\u306b\u3088\u308b\u56de\u8ee2\u91cf": 123, "\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u57fa\u6e96\u306e\u56de\u8ee2\u91cf\u3092\u66f4\u65b0\u3057\u307e\u3059": 123, "\u8a2d\u5b9a\u3059\u308b\u56de\u8ee2\u91cf": 123, "\u5c5e\u6027\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u3092\u5909\u66f4\u3057": 124, "\u5c5e\u6027\u306f\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u3092\u5909\u66f4\u3057\u307e\u3059": 124, "\u3053\u308c\u3089\u306e\u62e1\u7e2e\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059": 124, "\u5404\u5c5e\u6027\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 124, "setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u62e1\u7e2e\u306e\u66f4\u65b0\u5024\u3068\u3057\u3066": 124, "\u3082\u3057\u30820": 124, "0\u304c\u6307\u5b9a\u3055\u308c\u308c\u3070\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306f\u898b\u3048\u306a\u304f\u306a\u308a": 124, "0\u3067\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u62e1\u7e2e": 124, "0\u30672\u500d\u306e\u30b5\u30a4\u30ba\u306b\u306a\u308a\u307e\u3059": 124, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5de6\u306e\u56db\u89d2\u3067\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u62e1\u7e2e\u5024": 124, "\u771f\u3093\u4e2d\u306e\u56db\u89d2\u3067\u306f\u6c34\u5e73\u65b9\u5411\u306b\u534a\u5206\u306e\u30b5\u30a4\u30ba": 124, "\u306e\u56db\u89d2\u3067\u306f\u5782\u76f4\u65b9\u5411\u306b\u534a\u5206\u306e\u30b5\u30a4\u30ba\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 124, "center_rectangl": 124, "graphics_base_scale_from_center_basic_usage_1": 124, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u4ee5\u4e0b\u306e\u4f8b\u306e\u3088\u3046\u306b\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u306b\u62e1\u7e2e\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059": 124, "graphics_base_scale_from_center_basic_usage_2": 124, "\u8a18\u53f7\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u306b\u3088\u308b\u64cd\u4f5c\u3082\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 124, "current_scal": 124, "05": [124, 195], "03": [124, 125, 234], "graphics_base_scale_from_center_basic_usage_3": 124, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 124, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u5024": 124, "\u62e1\u7e2e\u306e\u6700\u5c0f\u5024\u306f\u307b\u307c0\u3068\u306a\u308a": [124, 125], "\u305d\u306e\u5024\u306f\u8ca0\u306e\u5024\u306b\u306f\u306a\u308a\u307e\u305b\u3093": [124, 125], "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 124, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e2d\u592e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u5024": 124, "\u306a\u3069\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30af\u30e9\u30b9\u306e\u57fa\u5e95\u30af\u30e9\u30b9": [125, 126], "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u3092\u57fa\u6e96\u306b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u3092\u5909\u66f4\u3057\u307e\u3059": 125, "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u3092\u57fa\u6e96\u306b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u3092\u5909\u66f4\u3057\u307e\u3059": 125, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5c5e\u6027\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u304c": 125, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5ea7\u6a19\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306a\u305f\u3081\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 125, "\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u306b\u304a\u3051\u308b\u62e1\u7e2e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 125, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082\u5f15\u6570\u306b\u5ea7\u6a19\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 125, "\u8fd4\u5374\u5024\u306f\u5404\u5ea7\u6a19\u3054\u3068\u306b\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 125, "\u4f8b\u3048\u3070\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u309250px\u306ex\u5ea7\u6a19\u306e\u4f4d\u7f6e\u3067\u8a2d\u5b9a\u3057\u305f\u5834\u5408": 125, "100px\u306ex\u5ea7\u6a19\u306e\u4f4d\u7f6e\u306b\u304a\u3051\u308b\u62e1\u7e2e\u5024\u306b\u306f\u5f71\u97ff\u3057\u307e\u305b\u3093": 125, "\u578b\u306e": 125, "\u306e\u5404\u5f15\u304f\u6570\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 125, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f3\u3064\u306e\u56db\u89d2\u3092\u751f\u6210\u3057\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u3092\u5897\u6e1b\u3055\u305b\u3066\u3044\u307e\u3059": 125, "\u4e0a\u306e\u56db\u89d2\u306f\u5de6\u7aef\u3092\u57fa\u6e96\u306b\u62e1\u7e2e\u3092": 125, "\u771f\u3093\u4e2d\u306e\u56db\u89d2\u306f\u4e2d\u592e\u3092\u57fa\u6e96\u306b\u62e1\u7e2e\u3092": 125, "\u305d\u3057\u3066\u4e0b\u306e\u56db\u89d2\u3067\u306f\u53f3\u53f3\u7aef\u3092\u57fa\u6e96\u306b\u62e1\u7e2e\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 125, "current_scale_x": 125, "top_rect": 125, "middle_rect": 125, "bottom_rect": 125, "top_rect_direct": 125, "top_rect_tim": 125, "middle_rect_direct": 125, "middle_rect_tim": 125, "bottom_rect_direct": 125, "bottom_rect_tim": 125, "graphics_base_scale_from_point_basic_usage_x": 125, "\u306e\u30e1\u30bd\u30c3\u30c9\u306f": 125, "\u3053\u308c\u3089\u306f\u62e1\u7e2e\u306e\u65b9\u5411\u304c\u5782\u76f4\u65b9\u5411\u306b\u306a\u3063\u3066\u3044\u308b\u4ee5\u5916\u306f\u6c34\u5e73\u65b9\u5411\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u540c\u3058\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 125, "current_scale_i": 125, "graphics_base_scale_from_point_basic_usage_i": 125, "\u6307\u5b9a\u3055\u308c\u305fx\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u3066\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 125, "\u6307\u5b9a\u3055\u308c\u305fx\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u5024": 125, "\u6307\u5b9a\u3055\u308c\u305fx\u5ea7\u75c5\u3092\u57fa\u6e96\u3068\u3057\u305f\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059": 125, "\u8a2d\u5b9a\u3059\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u5024": 125, "\u6307\u5b9a\u3055\u308c\u305fy\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 125, "\u6307\u5b9a\u3055\u308c\u305fy\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u5024": 125, "\u6307\u5b9a\u3055\u308c\u305fy\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059": 125, "\u8a2d\u5b9a\u3059\u306e\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u5024": 125, "\u5c5e\u6027\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092x\u8ef8\u65b9\u5411\u306b\u6b6a\u307e\u305b\u307e\u3059": 126, "\u5c5e\u6027\u3067\u306fy\u8ef8\u65b9\u5411\u306b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u6b6a\u307e\u305b\u307e\u3059": 126, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fgetter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 126, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306e\u578b\u306f": 126, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5de6\u5074\u306e\u56db\u89d2\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u72b6\u614b": 126, "\u53f3\u5074\u306e\u56db\u89d2\u306fx\u8ef8\u65b9\u5411\u306b50px\u306e\u6b6a\u307f\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 126, "graphics_base_skew_x_basic_usag": 126, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306fy\u8ef8\u65b9\u5411\u306b\u56db\u89d2\u306e\u6b6a\u307f\u3092\u52a0\u7b97\u3057\u3066\u3044\u304f\u5f62\u3067\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 126, "graphics_base_skew_y_incremental_basic_usag": 126, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u73fe\u5728\u306ex\u8ef8\u306e\u6b6a\u307f\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 126, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u73fe\u5728\u306ex\u8ef8\u306e\u6b6a\u307f\u306e\u5024": 126, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u73fe\u5728\u306ey\u8ef8\u306e\u6b6a\u307f\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 126, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u73fe\u5728\u306ey\u8ef8\u306e\u6b6a\u307f\u306e\u5024": 126, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5857\u308a\u306e\u8272\u3068\u5857\u308a\u306e\u900f\u660e\u5ea6\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 127, "\u3053\u306e\u8a2d\u5b9a\u306f\u518d\u5ea6": 127, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3059\u304b": 127, "clear": [127, 141, 146], "\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3076\u307e\u3067\u4fdd\u6301\u3055\u308c\u307e\u3059": 127, "\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u63cf\u753b\u7cfb\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 127, "\u306f\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u751f\u6210\u6642\u306b\u3053\u306e\u5857\u308a\u306e\u8a2d\u5b9a\u3092\u53c2\u7167\u3057\u307e\u3059": 127, "\u305d\u306e\u305f\u3081\u63cf\u753b\u7cfb\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u5b9f\u884c\u3059\u308b\u524d\u306b\u3053\u306e": 127, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u3066\u304a\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 127, "blue": [63, 127], "maintain": [127, 141], "third": 127, "graphics_begin_fill_basic_usag": 127, "\u5f15\u6570\u306f\u5857\u308a\u306e\u8272\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 127, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u3053\u306e\u5f15\u6570\u306f\u5fc5\u9808\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 127, "graphics_begin_fill_fill_color": 127, "\u3082\u3057\u3082\u5857\u308a\u306e\u8272\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u305f\u3044\u5834\u5408": 127, "\u5b9a\u6570\u3092\u3053\u306e\u5f15\u6570\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": 127, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5857\u308a\u306e\u8272\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u3066\u3044\u308b\u305f\u3081": 127, "\u56db\u89d2\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u306f\u898b\u3048\u306a\u304f\u306a\u308a\u307e\u3059": 127, "constant": [127, 141], "invis": 127, "graphics_begin_fill_color_setting_clear": 127, "\u3053\u306e\u6307\u5b9a\u306f\u5857\u308a\u306e\u8272\u306e\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u307e\u3059": 127, "six": [127, 141], "charact": [127, 141], "three": [127, 141], "singl": 127, "black": [127, 141], "skip": [127, 141], "symbol": [127, 154], "also": 127, "graphics_begin_fill_acceptable_color_set": 127, "\u5857\u308a\u306e\u900f\u660e\u5ea6\u306f": 127, "\u5f15\u6570\u3067\u8a2d\u5b9a\u3067\u304d\u307e\u3059": [127, 141], "\u900f\u660e": [127, 141, 164], "\u4e0d\u900f\u660e": [127, 141, 164], "\u306e\u7bc4\u56f2\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 127, "graphics_begin_fill_alpha_set": 127, "\u5857\u308a\u306e\u305f\u3081\u306e\u5358\u4e00\u306e\u8272\u306e\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 127, "\u73fe\u5728\u306e\u5857\u308a\u306e\u8272\u3092\u53d6\u5f97\u3057\u307e\u3059": 127, "\u73fe\u5728\u306e\u5857\u308a\u306e\u900f\u660e\u5ea6\u3092\u53d6\u5f97\u3057\u307e\u3059": 127, "\u3082\u3057\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u54081": 127, "0\u306e\u5024\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059": 127, "\u30e1\u30bd\u30c3\u30c9\u306f\u5168\u3066\u306e\u63cf\u753b\u6e08\u307f\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u53d6\u308a\u9664\u304d": 128, "\u5857\u308a\u3068\u7dda\u306e\u8a2d\u5b9a\u3092\u30ea\u30bb\u30c3\u30c8\u3057\u307e\u3059": 128, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u30cf\u30f3\u30c9\u30e9\u5185\u3067": 128, "\u30e1\u30bd\u30c3\u30c9\u304c\u547c\u3070\u308c\u307e\u3059": 128, "graphics_clear_basic_usag": 128, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u5186\u3092\u63cf\u753b\u3057\u307e\u3059": 129, "\u5f15\u6570\u306f\u5186\u306e\u4e2d\u592e\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 129, "\u5f15\u6570\u306f\u5186\u306e\u534a\u5f84\u3068\u306a\u308a\u307e\u3059": 129, "\u5e45\u3068\u9ad8\u3055\u306f": 129, "\u5f15\u6570\u306e2\u500d\u306e\u5024\u306b\u306a\u308a\u307e\u3059": 129, "dot": [129, 130, 132, 133, 134, 141], "style": [129, 133, 136, 141, 153, 206, 214], "dot_set": [129, 130, 131, 132, 133, 134, 138, 141], "inner": 129, "graphics_draw_circle_basic_usag": 129, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8fd4\u5374\u5024\u306f": [129, 133], "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 129, "\u5c5e\u6027\u3084\u4ed6\u306e\u57fa\u672c\u7684\u306a\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u304a\u308a\u751f\u6210\u5f8c\u306b\u5024\u3092\u66f4\u65b0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 129, "small": 129, "becom": [129, 142], "bigger": 129, "one": [129, 141], "graphics_draw_circle_return_valu": 129, "_circl": 129, "\u5186\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 129, "\u751f\u6210\u3055\u308c\u305f\u5186\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 129, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30b7\u30f3\u30d7\u30eb\u306a\u4e00\u70b9\u9396\u7dda\u306e\u76f4\u7dda\u3092\u63cf\u753b\u3057\u307e\u3059": 130, "dash_set": [130, 131, 132, 134, 138, 141], "round_dot_set": [130, 131, 132, 134, 138, 141], "dash_dot_set": [130, 131, 132, 134, 138, 141], "\u306e\u5f15\u6570\u3084\u5c5e\u6027\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": 130, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u57fa\u672c\u7684\u306a\u5ea7\u6a19\u6307\u5b9a\u306e\u5f15\u6570\u3068\u3057\u3066": [130, 138], "\u306e\u5f15\u6570\u3092\u6301\u3063\u3066\u3044\u307e\u3059": [130, 138, 139], "\u77ed\u3044\u70b9\u7dda\u90e8\u5206\u306e\u30b5\u30a4\u30ba\u3068\u3057\u3066\u306e": 130, "\u9577\u3044\u7834\u7dda\u90e8\u5206\u306e\u30b5\u30a4\u30ba\u3068\u3057\u3066\u306e": 130, "\u305d\u3057\u3066\u305d\u308c\u305e\u308c\u306e\u70b9\u7dda\u3068\u7834\u7dda\u306e\u9593\u306e\u30b9\u30da\u30fc\u30b9\u3068\u3057\u3066": 130, "\u306e\u5f15\u6570\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 130, "pixel": [130, 131, 132, 138, 139, 141], "size": [130, 132, 138, 139, 141, 154, 213], "80": [130, 131, 132, 138, 141, 152, 207], "graphics_draw_dash_dotted_line_basic_usag": 130, "_line": [130, 131, 132, 134, 138], "\u4e00\u70b9\u9396\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u7dda\u3092\u63cf\u753b\u3057\u307e\u3059": 130, "\u7dda\u306e\u958b\u59cb\u4f4d\u7f6e\u306ex\u5ea7\u6a19": [130, 131, 132, 134, 138], "\u7dda\u306e\u958b\u59cb\u4f4d\u7f6e\u306ey\u5ea7\u6a19": [130, 131, 132, 134, 138], "\u7dda\u306e\u7d42\u4e86\u4f4d\u7f6e\u306ex\u5ea7\u6a19": [130, 131, 132, 134, 138], "\u7dda\u306e\u7d42\u4e86\u4f4d\u7f6e\u306ey\u5ea7\u6a19": [130, 131, 132, 134, 138], "\u30c9\u30c3\u30c8\u306e\u30b5\u30a4\u30ba": [130, 132], "\u7834\u7dda\u90e8\u5206\u306e\u30b5\u30a4\u30ba": [130, 131], "\u30c9\u30c3\u30c8": 130, "\u3084\u7834\u7dda\u9593\u306e\u7a7a\u767d\u30b9\u30da\u30fc\u30b9\u306e\u30b5\u30a4\u30ba": 130, "\u751f\u6210\u3055\u308c\u305f\u7dda\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [130, 131, 132, 134, 138], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30b7\u30f3\u30d7\u30eb\u306a\u7834\u7dda\u306e\u76f4\u7dda\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 131, "\u306e\u5f15\u6570\u3084\u5c5e\u6027\u306e\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": [131, 132], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u57fa\u672c\u7684\u306a\u7dda\u306e\u5ea7\u6a19\u306e\u6307\u5b9a\u3068\u3057\u3066": [131, 132], "\u306e\u5404\u5f15\u6570\u3092\u6301\u3061\u307e\u3059": [131, 132], "\u7834\u7dda\u306e\u30b5\u30a4\u30ba\u3068\u3057\u3066\u306e": 131, "\u5f15\u6570\u3068\u7834\u7dda\u9593\u306e\u30b9\u30da\u30fc\u30b9\u306e\u30b5\u30a4\u30ba\u3068\u3057\u3066\u306e": 131, "\u5f15\u6570\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u3067\u3059": [131, 132], "graphics_draw_dashed_line_basic_usag": 131, "\u7834\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 131, "\u7834\u7dda\u9593\u306e\u7a7a\u767d\u30b9\u30da\u30fc\u30b9\u306e\u30b5\u30a4\u30ba": 131, "\u3092\u9664\u3044\u305f": [131, 132], "\u306a\u3069\u306e\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": [131, 132], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30b7\u30f3\u30d7\u30eb\u306a\u70b9\u7dda\u306e\u76f4\u7dda\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 132, "\u70b9\u7dda\u306e\u30b5\u30a4\u30ba\u3068\u3057\u3066": 132, "graphics_draw_dotted_line_basic_usag": 132, "\u70b9\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 132, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6955\u5186\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 133, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 133, "\u306e\u5f15\u6570\u306f\u6955\u5186\u306e\u4e2d\u592e\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 133, "\u306f\u6955\u5186\u306e\u5e45\u3068\u9ad8\u3055\u3092\u6c7a\u5b9a\u3057\u307e\u3059": 133, "\u3053\u308c\u3089\u306e\u30b5\u30a4\u30ba\u306f\u534a\u5f84\u306e\u500d\u306e\u5024": 133, "\u76f4\u5f84": 133, "\u3067\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 133, "graphics_draw_ellipse_basic_usag": 133, "\u3053\u306e\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u4ed6\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u7cfb\u306e\u30af\u30e9\u30b9\u3068\u540c\u69d8\u306b": 133, "\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 133, "\u6955\u5186\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u305f\u3073\u306b\u5e45\u3068\u9ad8\u3055\u304c\u5927\u304d\u304f\u306a\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059": 133, "on_ellipse_click": 133, "graphics_draw_ellipse_return_valu": 133, "_ellips": 133, "\u6955\u5186\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 133, "\u4f5c\u6210\u3055\u308c\u305f\u6955\u5186\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 133, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30b7\u30f3\u30d7\u30eb\u306a\u76f4\u7dda\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 134, "\u306a\u3069\u306e\u5f15\u6570\u3084\u5c5e\u6027\u306e\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": 134, "\u306e\u5404\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": [63, 134], "graphics_draw_line_basic_usag": 134, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30b7\u30f3\u30d7\u30eb\u3055\u306e\u305f\u3081\u306b": 134, "\u306e\u5404\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": [134, 138], "\u3082\u3057\u3082\u3053\u308c\u3089\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u304c\u5fc5\u8981\u306a\u5834\u5408\u306b\u306f": 134, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4ee3\u308f\u308a\u306b": 134, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4ed5\u69d8\u3057\u3066\u304f\u3060\u3055\u3044": 134, "ignor": 134, "graphics_draw_line_ignored_dot_set": 134, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5404\u7a2e\u8a2d\u5b9a\u3092\u5909\u66f4\u3057\u305f\u308a\u30a4\u30d9\u30f3\u30c8\u3092\u767b\u9332\u3057\u305f\u308a\u7b49\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 134, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082\u540c\u3058\u304f": 134, "graphics_draw_line_line_inst": 134, "\u901a\u5e38\u306e\u76f4\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 134, "\u306a\u3069\u306e\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": [134, 138], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30d1\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 135, "path_data_list": [135, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "pathlineto": [135, 146, 171, 174], "pathbezier2d": [135, 146, 168], "\u306a\u3069\u306e\u30d1\u30b9\u30c7\u30fc\u30bf\u306e\u914d\u5217\u3068\u306a\u308a\u307e\u3059": 135, "path": [135, 146, 167, 168, 169, 170, 171, 172, 173, 174, 175], "pathmoveto": [135, 146, 167, 168, 169, 170, 171, 172, 173, 175], "control_x": [135, 166, 167, 168, 169, 170], "control_i": [135, 166, 167, 168, 169, 170], "dest_x": [135, 166, 167, 168, 169, 170], "dest_i": [135, 166, 167, 168, 169, 170], "graphics_draw_path_basic_usag": 135, "pathhorizont": [135, 146], "pathvert": [135, 146, 171], "pathclos": [135, 146], "pathbezier2dcontinu": [135, 146, 167], "pathbezier3dcontinu": [135, 146, 169], "path_data_bas": [135, 166], "pathdatabas": [135, 166], "_path": 135, "\u30d1\u30b9\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 135, "pathdata": [135, 166], "moveto\u306a\u3069\u306e\u5bfe\u8c61\u306e\u30d1\u30b9\u30c7\u30fc\u30bf\u306e\u8a2d\u5b9a\u306e\u30ea\u30b9\u30c8": [135, 166], "\u4f5c\u6210\u3055\u308c\u305f\u30d1\u30b9\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 135, "pathbezier3d": [135, 146, 170], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u591a\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 136, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u6319\u52d5\u304c\u5c11\u3057\u4f3c\u3066\u3044\u307e\u3059\u304c": 136, "\u30d1\u30b9\u3092\u9589\u3058\u306a\u304f\u3066\u3082\u826f\u3044\u3068\u3044\u3046\u9055\u3044\u304c\u3042\u308a\u307e\u3059": 136, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5404\u9802\u70b9\u306e\u5ea7\u6a19\u3092\u6c7a\u3081\u308b\u305f\u3081\u306e": 136, "triangl": [136, 146], "diamond": 136, "shape": [136, 142], "graphics_draw_polygon_basic_usag": 136, "\u5857\u308a\u306e\u8272\u306e\u8a2d\u5b9a\u3092\u3057\u305f\u5834\u5408": 136, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6319\u52d5\u306f\u5c11\u3057\u8fd1\u304f\u306a\u308a\u307e\u3059": 136, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3069\u3061\u3089\u3082\u4e09\u89d2\u5f62\u304c\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 136, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u5de6\u5074\u306e\u4e09\u89d2\u5f62\u3092\u63cf\u753b\u3057": 136, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u53f3\u5074\u306e\u4e09\u89d2\u5f62\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 136, "graphics_draw_polygon_line_to_difference_1": 136, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u306f\u30d1\u30b9\u3092\u9589\u3058\u308b\u5fc5\u8981\u304c\u3042\u308b\u304b\u3069\u3046\u304b\u306e\u9055\u3044\u304c\u3042\u308a\u307e\u3059": 136, "\u3053\u306e\u9055\u3044\u306f\u7dda\u306e\u8a2d\u5b9a\u3092\u884c\u3063\u305f\u5834\u5408\u306b\u306f\u9855\u8457\u306b\u306a\u308a\u307e\u3059": 136, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u7d42\u70b9\u306e\u5ea7\u6a19\u304b\u3089\u59cb\u70b9\u306e\u5ea7\u6a19\u3078\u306f\u30d1\u30b9\u304c\u81ea\u52d5\u3067\u306f\u7e4b\u304c\u308a\u307e\u305b\u3093": 136, "see": 136, "differ": 136, "graphics_draw_polygon_line_to_difference_2": 136, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u4ed6\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u7cfb\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u540c\u69d8\u306e\u57fa\u672c\u7684\u306a\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 136, "\u30af\u30e9\u30b9\u306f\u9802\u70b9\u3092\u52a0\u3048\u308b\u305f\u3081\u306e": 136, "append_line_point": 136, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5ea7\u6a19\u306e\u8ffd\u52a0\u3092\u884c\u3044\u4e09\u89d2\u304b\u3089\u56db\u89d2\u306b\u5909\u63db\u3057\u3066\u3044\u307e\u3059": 136, "dynam": [136, 139], "graphics_draw_polygon_append_line_point": 136, "_polyg": 136, "\u591a\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 136, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fpolyline\u30af\u30e9\u30b9": 136, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u4f5c\u6210\u3055\u308c\u307e\u3059": 136, "\u306b\u4f3c\u3066\u3044\u307e\u3059\u304c": 136, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u59cb\u70b9\u3068\u7d42\u70b9\u304c\u9023\u7d50\u3055\u308c\u308b\u3068\u3044\u3046\u9055\u3044\u304c\u3042\u308a\u307e\u3059": 136, "\u591a\u89d2\u5f62\u306e\u9802\u70b9\u306e\u5404\u5ea7\u6a19": 136, "\u4f5c\u6210\u3055\u308c\u305f\u591a\u89d2\u5f62\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 136, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u56db\u89d2\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 137, "\u306e\u5404\u5f15\u6570\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 137, "\u306f\u56db\u89d2\u306e\u5ea7\u6a19\u3092\u8a2d\u5b9a\u3057": 137, "\u306f\u56db\u89d2\u306e\u30b5\u30a4\u30ba\u3092\u6c7a\u5b9a\u3057\u307e\u3059": [137, 139], "graphics_draw_rect_basic_usag": 137, "\u524d\u8ff0\u306e\u30b3\u30fc\u30c9\u3067\u306f\u6a2a\u9577\u306e\u56db\u89d2\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 137, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3076\u524d\u306b": 137, "\u5857\u308a\u306e\u8a2d\u5b9a\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 137, "\u3092\u547c\u3093\u3067\u304a\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 137, "\u306e\u547c\u3073\u51fa\u3057\u304c\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u753b\u9762\u4e0a\u306b\u56db\u89d2\u304c\u8868\u793a\u3055\u308c\u307e\u305b\u3093": 137, "graphics_draw_rect_basic_usage_skipped_begin_fil": 137, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u5909\u9006\u3057\u307e\u3059": 137, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u5bfe\u3057\u3066\u5404\u5c5e\u6027\u306e\u66f4\u65b0\u3084\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u767b\u9332\u306a\u3069\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 137, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u306f": 137, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u5bfe\u3057\u3066\u30af\u30ea\u30c3\u30af\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u3092\u767b\u9332\u3057": 137, "\u306e\u30cf\u30f3\u30c9\u30e9\u5185\u3067x\u5ea7\u6a19\u3092\u66f4\u65b0\u3057\u3066\u3044\u307e\u3059": 137, "creat": [137, 142, 190, 205], "graphics_draw_rect_rectangl": 137, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u307f\u308b\u3068": 137, "\u30cf\u30f3\u30c9\u30e9\u306fx\u5ea7\u6a19\u3092100px\u306e\u4f4d\u7f6e\u306b\u5909\u66f4\u3057\u307e\u3059": 137, "\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u56db\u89d2\u3092\u63cf\u753b\u3057\u307e\u3059": 137, "\u63cf\u753b\u3092\u958b\u59cb\u3059\u308b\u4f4d\u7f6e\u306ex\u5ea7\u6a19": 137, "\u63cf\u753b\u3092\u958b\u59cb\u3059\u308b\u4f4d\u7f6e\u306ey\u5ea7\u6a19": 137, "\u56db\u89d2\u306e\u5e45": [137, 139, 182, 183], "\u56db\u89d2\u306e\u9ad8\u3055": [137, 139, 182, 183], "\u751f\u6210\u3055\u308c\u305f\u56db\u89d2": [137, 139], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30b7\u30f3\u30d7\u30eb\u306a\u4e38\u30c9\u30c3\u30c8\u306e\u76f4\u7dda\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 138, "cap": [138, 141], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u4e38\u306e": 138, "\u8a2d\u5b9a\u3092\u5185\u90e8\u3067\u4f7f\u3063\u3066\u3044\u308b\u305f\u3081": 138, "\u8a2d\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059": 138, "\u305d\u308c\u3089\u306b\u52a0\u3048\u3066\u4e38\u306e\u30b5\u30a4\u30ba\u306e": 138, "\u3068\u4e38\u306e\u9593\u306e\u30b9\u30da\u30fc\u30b9\u3092\u6c7a\u5b9a\u3059\u308b": 138, "round": [138, 141], "graphics_draw_round_dotted_line_basic_usag": 138, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4e38\u306ecap": 138, "\u7dda\u306e\u7aef\u306e\u30b9\u30bf\u30a4\u30eb": 138, "\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u305f\u3081": 138, "\u7dda\u306e\u9577\u3055\u306fcap\u306e\u30b5\u30a4\u30ba\u306b\u5fdc\u3058\u3066\u5927\u304d\u304f\u306a\u308a\u307e\u3059": 138, "\u3082\u3057\u3082\u7dda\u306e\u5de6\u7aef\u3092\u4ed6\u306e\u7dda\u3068\u5408\u308f\u305b\u305f\u3044\u5834\u5408\u306b\u306f\u4e38\u306e\u30b5\u30a4\u30ba\u306e\u534a\u5206\u3092": 138, "\u306e\u5f15\u6570\u304b\u3089\u6e1b\u7b97\u3057\u3066\u304f\u3060\u3055\u3044": 138, "270": [138, 169], "half": 138, "normal": 138, "graphics_draw_round_dotted_line_not": 138, "\u4e38\u30c9\u30c3\u30c8\u306e\u76f4\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 138, "\u4e38\u30c9\u30c3\u30c8\u306e\u30b5\u30a4\u30ba": 138, "\u30c9\u30c3\u30c8\u9593\u306e\u7a7a\u767d\u306e\u30b9\u30da\u30fc\u30b9\u306e\u30b5\u30a4\u30ba": 138, "\u3092\u9664\u3044\u3066": 138, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u89d2\u4e38\u306e\u56db\u89d2\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 139, "\u306a\u3069\u306e\u5404\u5f15\u6570\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 139, "\u5f15\u6570\u306f\u56db\u89d2\u306e\u5ea7\u6a19\u3092\u8a2d\u5b9a\u3057": 139, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u3055\u3089\u306b\u89d2\u4e38\u306e\u30b5\u30a4\u30ba\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e": 139, "graphics_draw_round_rect_basic_usag": 139, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u540c\u69d8\u306b": 139, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u56db\u89d2\u306e\u89d2\u4e38\u306e\u30b5\u30a4\u30ba\u3092\u5909\u66f4\u3059\u308b\u305f\u3081\u306e": 139, "attribut": 139, "graphics_draw_round_rect_return_valu": 139, "\u89d2\u4e38\u56db\u89d2\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 139, "\u63cf\u753b\u3092\u958b\u59cb\u3059\u308bx\u5ea7\u6a19": [139, 182, 206, 207], "\u63cf\u753b\u3092\u958b\u59cb\u3059\u308by\u5ea7\u6a19": [139, 182, 206, 207], "\u56db\u89d2\u306e\u89d2\u4e38\u306e\u5e45": 139, "\u56db\u89d2\u306e\u89d2\u4e38\u306e\u9ad8\u3055": 139, "round_rect": 139, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4e09\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 140, "x1": 140, "y1": 140, "x2": 140, "y2": 140, "x3": 140, "y3": 140, "\u306e\u5f15\u6570\u306f\u4e09\u89d2\u5f62\u306e1\u3064\u76ee\u306e\u9802\u70b9\u306e\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 140, "\u306f2\u3064\u76ee\u306e\u9802\u70b9\u306e\u5ea7\u6a19\u3068\u306a\u308a": 140, "\u306f3\u3064\u76ee\u306e\u9802\u70b9\u306e\u5ea7\u6a19\u3068\u306a\u308a\u307e": 140, "graphics_draw_triangle_basic_usag": 140, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u5404\u7a2e\u8a2d\u5b9a\u3092\u66f4\u65b0\u3057\u305f\u308a\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u306a\u3069\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 140, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057": [140, 142], "\u306e\u30cf\u30f3\u30c9\u30e9\u5185\u3067x\u5ea7\u6a19\u306e\u66f4\u65b0\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 140, "graphics_draw_triangle_triangle_inst": 140, "\u4e09\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": 140, "1\u3064\u76ee\u306e\u9802\u70b9\u306ex\u5ea7\u6a19": [140, 229], "1\u3064\u76ee\u306e\u9802\u70b9\u306ey\u5ea7\u6a19": [140, 229], "2\u3064\u76ee\u306e\u9802\u70b9\u306ex\u5ea7\u6a19": [140, 229], "2\u3064\u76ee\u306e\u9802\u70b9\u306ey\u5ea7\u6a19": [140, 229], "3\u3064\u76ee\u306e\u9802\u70b9\u306ex\u5ea7\u6a19": [140, 229], "3\u3064\u76ee\u306e\u9802\u70b9\u306ey\u5ea7\u6a19": [140, 229], "\u751f\u6210\u3055\u308c\u305f\u4e09\u89d2\u5f62\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 140, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u7dda\u306e\u8272\u3084\u7dda\u306e\u900f\u660e\u5ea6": 141, "\u7dda\u5e45": 141, "\u70b9\u7dda\u306a\u3069\u306e\u7dda\u306e\u5404\u30b9\u30bf\u30a4\u30eb\u306e\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 141, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u518d\u5ea6\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u5b9f\u884c\u3057\u305f\u308a": 141, "\u30e1\u30bd\u30c3\u30c9\u306a\u3069\u3092\u547c\u3076\u307e\u3067\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u4fdd\u6301\u3057\u7d9a\u3051\u307e\u3059": 141, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u540c\u3058\u3088\u3046\u306a\u6319\u52d5\u3092\u3057\u307e\u3059": 141, "\u306a\u3069\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u63cf\u753b\u7cfb\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u5404\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4f5c\u6210\u6642\u306b\u53c2\u7167\u3057\u307e\u3059": 141, "\u5f93\u3063\u3066\u7dda\u306e\u8a2d\u5b9a\u304c\u5fc5\u8981\u306a\u5834\u5408\u306b\u306f\u5404\u63cf\u753b\u7cfb\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3076\u524d\u306b\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u304a\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 141, "162": 141, "3px": 141, "110": 141, "graphics_line_style_bas": 141, "\u6307\u5b9a\u304c\u5fc5\u9808\u306a": 141, "\u5f15\u6570\u306f\u7dda\u306e\u8272\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 141, "102": 141, "graphics_line_style_line_color": 141, "\u3082\u3057\u3082\u7dda\u306e\u8272\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u3053\u306e\u5f15\u6570\u306b": 141, "\u5b9a\u6570\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": 141, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u7dda\u306e\u8272\u8a2d\u5b9a\u3092\u524a\u9664\u3057\u3066\u3044\u308b\u306e\u3067\u7dda\u306f\u898b\u3048\u306a\u304f\u306a\u3063\u3066\u3044\u307e\u3059": 141, "graphics_line_style_clear_line_color": 141, "\u4ee5\u4e0b\u306e\u30ea\u30b9\u30c8\u3088\u3046\u306a\u306e\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 141, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e": 141, "\u5f15\u6570\u3068\u540c\u3058\u6319\u52d5\u306b\u306a\u308a\u307e\u3059": 141, "\u5b9a\u6570\u306e\u6307\u5b9a": 141, "\u3053\u308c\u306f\u7dda\u306e\u8272\u306e\u524a\u9664\u6307\u5b9a\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059": 141, "graphics_line_style_line_color_color_cod": 141, "\u5f15\u6570\u306f\u7dda\u306e\u5e45\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 141, "1\u4ee5\u4e0a\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 141, "165": 141, "graphics_line_style_thick": 141, "\u5f15\u6570\u3067\u7dda\u306e\u900f\u660e\u5ea6\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 141, "\u306e\u7bc4\u56f2\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 141, "upper": [141, 146], "lower": [141, 146], "graphics_line_style_alpha": 141, "\u7dda\u306e\u7aef\u306e\u30b9\u30bf\u30a4\u30eb\u306f": 141, "\u30af\u30e9\u30b9\u306eenum\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 141, "\u4ee5\u4e0b\u306e\u3088\u3046\u306b": 141, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f3\u7a2e\u985e\u5b58\u5728\u3057\u307e\u3059": 141, "butt": 141, "\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3042\u308a": 141, "\u7aef\u306b\u306f\u306a\u306b\u3082\u8a2d\u5b9a\u3055\u308c\u307e\u305b\u3093": 141, "\u7dda\u306e\u7aef\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u4e38\u304f\u3057\u307e\u3059": 141, "squar": 141, "\u7dda\u306e\u7aef\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u56db\u89d2\u304f\u3057\u307e\u3059": 141, "\u3053\u308c\u306fbutt\u3068\u4f3c\u305f\u8868\u793a\u306b\u306a\u308a\u307e\u3059\u304c": 141, "\u8a2d\u5b9a\u3055\u308c\u308b\u56db\u89d2\u306e\u5206\u3060\u3051\u7dda\u304c\u9577\u304f\u306a\u308a\u307e\u3059": 141, "same": 141, "longer": 141, "graphics_line_style_cap": 141, "joint": 141, "\u5f15\u6570\u3067\u306f\u7dda\u306e\u7e4b\u304e\u76ee": 141, "\u9802\u70b9\u90e8\u5206": 141, "\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u5909\u66f4\u3057\u307e\u3059": 141, "\u3053\u306e\u5f15\u6570\u306b\u306f": 141, "linejoint": [141, 166, 177, 178, 182, 229], "\u306eenum\u306e\u5404\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 141, "\u4e3b\u306b": 141, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u751f\u6210\u3055\u308c\u308b": 141, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u3053\u306e\u5f15\u6570\u306f\u4f7f\u7528\u3055\u308c\u307e\u3059": 141, "\u4ee5\u4e0b\u306e\u3088\u3046\u306blinejoints\u306eenum\u306b\u306f3\u3064\u306e\u5024\u304c\u5b58\u5728\u3057\u307e\u3059": 141, "miter": 141, "\u3053\u306e\u8a2d\u5b9a\u306f\u9802\u70b9\u304c": 141, "\u5c16\u3063\u305f\u5f62\u3067\u306e": 141, "\u984d\u7e01\u306e\u3088\u3046\u306a\u5f62\u306e\u30b9\u30bf\u30a4\u30eb\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 141, "\u3053\u306e\u8a2d\u5b9a\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u3068\u306a\u308a\u307e\u3059": 141, "\u3053\u306e\u8a2d\u5b9a\u306f\u4e38\u3044\u9802\u70b9\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 141, "bevel": 141, "\u3053\u306e\u8a2d\u5b9a\u306f\u5c04\u89d2": 141, "\u30d9\u30d9\u30eb": 141, "\u306e\u9802\u70b9\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 141, "graphics_line_style_joint": 141, "\u5f15\u6570\u306f\u7dda\u3092\u70b9\u7dda\u3078\u3068\u5909\u66f4\u3059\u308b\u8a2d\u5b9a\u3067\u3059": 141, "\u30af\u30e9\u30b9\u306e\u8a2d\u5b9a\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 141, "\u70b9\u7dda\u306e\u30b5\u30a4\u30ba\u306f": 141, "\u5f15\u6570\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 141, "1\u4ee5\u4e0a\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 141, "160": [141, 234], "graphics_line_style_line_dot_set": 141, "\u3053\u306e\u8a2d\u5b9a\u3084\u985e\u4f3c\u306e\u8a2d\u5b9a\u306f\u7dda\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3060\u3051\u3067\u306a\u304f": 141, "\u306a\u3069\u4ed6\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u30af\u30e9\u30b9\u306e\u8868\u793a\u3082\u5909\u66f4\u3057\u307e\u3059": 141, "038": 141, "graphics_line_style_line_dot_setting_rectangl": 141, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u7121\u8996\u3055\u308c\u307e\u3059": 141, "\u5f15\u6570\u306f\u7dda\u306e\u7834\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u5909\u66f4\u3057\u307e\u3059": 141, "\u3054\u306e\u5f15\u6570\u306f": 141, "\u3053\u306e\u8a2d\u5b9a\u3067\u306f\u7834\u7dda\u306e\u30b5\u30a4\u30ba\u3092": 141, "\u5f15\u6570\u3067": 141, "\u7a7a\u767d\u306e\u30b9\u30da\u30fc\u30b9\u306e\u30b5\u30a4\u30ba\u3092": 141, "space": 141, "graphics_line_style_line_dash_set": 141, "\u5f15\u6570\u306f\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 141, "\u3053\u306e\u8a2d\u5b9a\u3067\u306f\u5186\u306e\u30b5\u30a4\u30ba\u3092": 141, "\u5186\u306e\u9593\u306e\u30b9\u30da\u30fc\u30b9\u306e\u30b5\u30a4\u30ba\u3092": 141, "graphics_line_style_line_round_dot_set": 141, "\u3053\u306e\u8a2d\u5b9a\u306f\u5185\u90e8\u3067": 141, "\u8a2d\u5b9a\u306e\u5024\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u305f\u3081": 141, "\u3053\u306e\u8a2d\u5b9a\u3067\u306f": 141, "\u5f15\u6570\u306e\u8a2d\u5b9a\u304c\u7121\u8996\u3055\u308c\u307e\u3059": 141, "\u4e38\u306e\u30b5\u30a4\u30ba\u306b\u5fdc\u3058\u305f\u5206\u3060\u3051\u7dda\u306e\u9577\u3055\u304c\u9577\u304f\u306a\u308a\u307e\u3059": 141, "\u5f15\u6570\u306f\u7dda\u306b\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 141, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 141, "\u3053\u306e\u8a2d\u5b9a\u306f\u77ed\u3044\u70b9\u7dda\u306e\u30b5\u30a4\u30ba\u3092": 141, "\u9577\u3044\u7834\u7dda\u306e\u30b5\u30a4\u30ba\u3092": 141, "\u305d\u3057\u3066\u7a7a\u767d\u306e\u30b9\u30da\u30fc\u30b9\u306e\u30b5\u30a4\u30ba\u3092": 141, "graphics_line_style_line_dash_dot_set": 141, "\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 141, "\u7dda\u306e\u5e45": 141, "\u7dda\u8272\u306e\u900f\u660e\u5ea6": 141, "\u7dda\u306e\u7aef\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 141, "\u7dda\u306b\u95a2\u4fc2\u3057\u306a\u3044rectangle\u30af\u30e9\u30b9\u306a\u3069\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u3053\u306e\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": 141, "\u9006\u306bpolyline\u30af\u30e9\u30b9\u306a\u3069\u306e\u7dda\u306b\u95a2\u4fc2\u3057\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u306f\u3053\u306e\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u307e\u3059": 141, "\u7dda\u306e\u9802\u70b9": 141, "\u63a5\u5408\u90e8": 141, "\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 141, "\u6298\u308c\u7dda\u7dda\u306b\u95a2\u4fc2\u3057\u306a\u3044rectangle\u306a\u3069\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u3053\u306e\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": 141, "\u9006\u306bpolyline\u30af\u30e9\u30b9\u306a\u3069\u306e\u6298\u308c\u7dda\u95a2\u4fc2\u306e\u30af\u30e9\u30b9\u3067\u306f\u3053\u306e\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u307e\u3059": 141, "\u70b9\u7dda\u306e\u8a2d\u5b9a": 141, "\u3082\u3057\u3082\u3053\u306e\u5f15\u6570\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": 141, "\u7dda\u306f\u70b9\u7dda\u306b\u306a\u308a\u307e\u3059": 141, "\u7834\u7dda\u306e\u8a2d\u5b9a": 141, "\u7dda\u306f\u7834\u7dda\u306b\u306a\u308a\u307e\u3059": 141, "\u4e38\u30c9\u30c3\u30c8\u306e\u8a2d\u5b9a": 141, "\u7dda\u306f\u4e38\u30c9\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059": 141, "\u3054\u306e\u8a2d\u5b9a\u306f\u5185\u90e8\u3067cap\u306e\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u305f\u3081": 141, "\u3068\u7dda\u5e45\u306e\u8a2d\u5b9a\u3092\u4e0a\u66f8\u304d\u3057\u307e\u3059": 141, "cap\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u90fd\u5408": 141, "\u7dda\u306e\u9577\u3055\u3082\u9577\u304f\u306a\u308a\u307e\u3059": 141, "move_to\u3084line_to\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u305f\u901a\u5e38\u306e\u7dda\u306e\u9577\u3055\u3068\u5408\u308f\u305b\u305f\u3044\u5834\u5408\u306b\u306f\u4e38\u306e\u534a\u5206\u306e\u30b5\u30a4\u30ba\u3092\u7dda\u306e\u958b\u59cb\u4f4d\u7f6e\u306ex\u5ea7\u6a19\u3078\u52a0\u7b97\u3057": 141, "\u3055\u3089\u306b\u4e38\u306e\u534a\u5206\u306e\u30b5\u30a4\u30ba\u3092\u7dda\u306e\u7d42\u4e86\u4f4d\u7f6e\u306ex\u5ea7\u6a19\u304b\u3089\u6e1b\u7b97\u3057\u3066\u304f\u3060\u3055\u3044": 141, "y\u5ea7\u6a19\u3082\u540c\u69d8\u3067\u3059": 141, "\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 141, "\u7dda\u306e\u4e00\u70b9\u9396\u7dda\u306b\u306a\u308a\u307e\u3059": 141, "\u73fe\u5728\u306e\u7dda\u306e\u8272\u3092\u53d6\u5f97\u3057\u307e\u3059": 141, "\u73fe\u5728\u306e\u7dda\u306e\u8272": 141, "\u73fe\u5728\u306e\u7dda\u306e\u7dda\u5e45\u3092\u53d6\u5f97\u3057\u307e\u3059": 141, "\u73fe\u5728\u306e\u7dda\u306e\u900f\u660e\u5ea6\u3092\u53d6\u5f97\u3057\u307e\u3059": 141, "\u73fe\u5728\u306e\u7dda\u306e\u7aef\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 141, "\u73fe\u5728\u306e\u7dda\u306e\u63a5\u5408\u90e8": 141, "\u9802\u70b9": 141, "\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 141, "\u73fe\u5728\u306e\u7dda\u306e\u70b9\u7dda\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 141, "\u73fe\u5728\u306e\u70b9\u7dda\u8a2d\u5b9a": 141, "\u73fe\u5728\u306e\u7834\u7dda\u8a2d\u5b9a": 141, "\u73fe\u5728\u306e\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 141, "\u73fe\u5728\u306e\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 141, "\u73fe\u5728\u306e\u7dda\u306e\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 141, "\u73fe\u5728\u306e\u4e00\u70b9\u9396\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 141, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u7dda\u306e\u63cf\u753b\u306e\u958b\u59cb\u4f4d\u7f6e\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u73fe\u5728\u306e\u4f4d\u7f6e\u304b\u3089\u7d42\u70b9\u4f4d\u7f6e\u306b\u5411\u3051\u3066\u7dda\u3092\u63cf\u753b\u3057\u307e\u3059": 142, "\u9023\u7d9a\u3057\u3066": 142, "\u3092\u547c\u3073\u51fa\u3059\u3068\u5bfe\u8c61\u306e\u7dda\u306f\u6298\u308c\u7dda\u306b\u306a\u308a\u307e\u3059": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3093\u3060\u5f8c\u306b": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3093\u3060\u5834\u5408\u306b\u306f\u65b0\u3057\u3044\u7dda\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u751f\u6210\u3055\u308c\u307e\u3059": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5171\u306bx\u3068y\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 142, "destin": 142, "graphics_move_to_and_line_to_basic_usag": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u9023\u7d9a\u3057\u3066\u547c\u3073\u51fa\u3057\u305f\u5834\u5408": 142, "\u7d50\u679c\u306e\u7dda\u306f\u6298\u308c\u7dda\u306b\u306a\u308a\u307e\u3059": 142, "final": 142, "z": [142, 171], "graphics_move_to_and_line_to_sequential_cal": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u305f\u5f8c\u306b": 142, "\u3092\u547c\u3073\u51fa\u3057\u305f\u5834\u5408\u65b0\u3057\u3044\u7dda\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u751f\u6210\u3055\u308c\u307e\u3059": 142, "new": [142, 206, 207], "graphics_move_to_and_line_to_multi_move_to_cal": 142, "\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u5404\u8a2d\u5b9a\u3092\u66f4\u65b0\u3057\u305f\u308a\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 142, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f": 142, "on_line_click": 142, "\u30cf\u30f3\u30c9\u30e9\u5185\u3067\u7dda\u306e\u8272\u306e\u66f4\u65b0\u3068\u70b9\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 142, "graphics_move_to_and_line_to_polylin": 142, "\u3082\u3057\u4ee5\u4e0b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u30570\u305f\u5834\u5408": 142, "\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u306f\u66f4\u65b0\u3055\u308c\u307e\u3059": 142, "_polylin": 142, "\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u306b\u7dda\u306e\u63cf\u753b\u4f4d\u7f6e\u3092\u79fb\u52d5\u3055\u305b\u307e\u3059": 142, "\u79fb\u52d5\u5148\u3068\u306a\u308bx\u5ea7\u6a19": 142, "\u79fb\u52d5\u5148\u3068\u306a\u308by\u5ea7\u6a19": 142, "\u7dda\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 142, "line_1": 142, "line_2": 142, "\u76f4\u524d\u306e\u4f4d\u7f6e\u306e\u5ea7\u6a19\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u5ea7\u6a19\u306b\u5411\u3051\u3066\u7dda\u3092\u63cf\u753b\u3057\u307e\u3059": 142, "\u521d\u671f\u4f4d\u7f6e\u306fx": 142, "0\u306b\u306a\u308a\u307e\u3059": 142, "\u7dda\u306e\u63cf\u753b\u5148\u3068\u306a\u308b\u7d42\u70b9\u306ex\u5ea7\u6a19": 142, "\u7dda\u306e\u63cf\u753b\u5148\u3068\u306a\u308b\u7d42\u70b9\u306ey\u5ea7\u6a19": 142, "line_3": 142, "apysc\u3067\u306f\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u3068\u540c\u69d8\u306e\u7406\u7531\u3067": 144, "\u30af\u30e9\u30b9\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 144, "\u30af\u30e9\u30b9\u306fapysc\u306e\u5206\u5c90\u5236\u5fa1\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 144, "\u30ad\u30fc\u30ef\u30fc\u30c9\u3068\u4f3c\u305f\u3088\u3046\u306a\u5f62\u3067\u52d5\u4f5c\u3057\u307e\u3059": 144, "\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u3068\u5171\u306b\u4f7f\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 144, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e\u5f15\u6570\u306b\u306f\u6761\u4ef6\u3068\u3057\u3066\u306e": 144, "\u306e\u5024\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 144, "if\u6587\u306e\u5206\u5c90\u5236\u5fa1\u306e\u8868\u73fe\u3092\u8ffd\u52a0\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9": 144, "\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306flocal": 144, "\u95a2\u6570\u306e\u5024\u3092\u3054\u306e\u5f15\u6570\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": 144, "\u306e\u30b9\u30b3\u30fc\u30d7\u306e\u7d42\u4e86\u6642\u306b\u5bfe\u8c61\u306evariablenamemixin\u30af\u30e9\u30b9\u306e\u5404\u30ed\u30fc\u30ab\u30eb\u5909\u6570\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5024\u3092\u30b9\u30b3\u30fc\u30d7\u306e\u958b\u59cb\u524d\u306e\u6642\u70b9\u306b\u5fa9\u5143\u3057\u307e\u3059": 144, "\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u51e6\u7406\u3067python\u4e0a\u306e\u5404\u30ed\u30fc\u30ab\u30eb\u5909\u6570\u306e\u5024\u3092\u66f4\u65b0\u3057\u305f\u304f\u306a\u3044\u5834\u5408\u306a\u3069\u306b\u4fbf\u5229\u306a\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 144, "apysc\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u4ed6\u306epython\u30d1\u30c3\u30b1\u30fc\u30b8\u306e": 145, "numpi": 145, "np": 145, "panda": 145, "pd": 145, "tkinter": 145, "tk": 145, "\u306a\u3069\u3068\u540c\u3058\u3088\u3046\u306b": 145, "\u3068\u3044\u3046import\u306e\u6307\u5b9a\u3092\u63a8\u5968\u3057\u3066\u3044\u307e\u3059": 145, "\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u30eb\u30fc\u30c8\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u30d1\u30b9\u306bapysc\u3067\u5229\u7528\u304c\u5fc5\u8981\u306a\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059": 145, "\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u5185\u90e8\u3067\u4f7f\u7528\u3059\u308b\u30ed\u30b8\u30c3\u30af\u306e\u5404\u30e2\u30b8\u30e5\u30fc\u30eb\u306f": 145, "_file": 145, "\u306e\u3088\u3046\u306b\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2\u306e\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059": 145, "\u57fa\u672c\u7684\u306b\u3053\u308c\u3089\u306e\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u4ed8\u3044\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u5229\u7528\u306f\u4e0d\u8981\u3067\u3059": 145, "apysc\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30da\u30fc\u30b8\u3078\u3088\u3046\u3053\u305d": 146, "apysc\u306fpython\u306e\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u7528\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u3059": 146, "\u73fe\u5728\u958b\u767a\u4e2d\u3067\u3042\u308a\u90e8\u5206\u7684\u306b\u306e\u307f\u52d5\u4f5c\u3057\u307e\u3059": 146, "github": [146, 154], "\u3082\u3057\u3082apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u6c17\u306b\u3044\u3063\u305f\u308a": 146, "\u3082\u3057\u304f\u306f\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5c06\u6765\u306b\u671f\u5f85\u304c\u51fa\u6765\u305d\u3046\u3068\u611f\u3058\u3089\u308c\u305f\u3089\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30b9\u30bf\u30fc\u3092\u4ed8\u3051\u3066\u3044\u305f\u3060\u3051\u307e\u3059\u3068\u5e78\u3044\u3067\u3059": 146, "pypi": 146, "\u4ed6\u306e\u8a00\u8a9e\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8": 146, "\u82f1\u8a9e": 146, "english": 146, "\u65e5\u672c\u8a9e": 146, "\u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u73fe\u5728\u306e\u5b9f\u88c5\u3067\u3067\u304d\u308b\u3053\u3068": 146, "\u306e\u6163\u7fd2": 146, "\u306fapysc\u306e\u63cf\u753b\u9818\u57df\u5168\u4f53\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u3068\u306a\u308a": 146, "\u306f\u901a\u5e38\u306e\u5404\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u30af\u30e9\u30b9\u3068\u306a\u308a\u307e\u3059": 146, "sprite\u30af\u30e9\u30b9": 146, "\u4ee5\u4e0b\u306fhtml\u3068javascript\u306e\u51fa\u529b\u51e6\u7406\u95a2\u4fc2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 146, "display_on_jupyt": [146, 234], "display_on_colaboratori": [146, 234], "\u306a\u3069\u306e\u89aa\u3068\u306a\u308c\u308b\u5404\u30af\u30e9\u30b9\u306f\u4ee5\u4e0b\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 146, "remove_children": 146, "num_children": [146, 185, 190], "get_child_at": [146, 190], "\u4f55\u6545": 146, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30c7\u30fc\u30bf\u578b\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u306e\u304b": 146, "\u306e\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u578b\u306e": 146, "to_str": [146, 183], "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u8a08\u7b97\u5236\u5fa1": 146, "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u6bd4\u8f03\u5236\u5fa1": 146, "to_fix": 146, "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": 146, "\u30af\u30e9\u30b9\u306e\u52a0\u7b97\u3068\u4e57\u7b97\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": 146, "split": 146, "lstrip": 146, "strip": 146, "rstrip": 146, "apply_max_num_of_decimal_plac": 146, "\u30d7\u30ed\u30d1\u30c6\u30a3": 146, "\u30af\u30e9\u30b9\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a": 146, "get": [146, 229], "\u30af\u30e9\u30b9\u306f\u5404\u8868\u793a\u7528\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u57fa\u5e95\u30af\u30e9\u30b9\u3067\u3059": 146, "\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u3067\u3042\u308a": 146, "\u4e14\u3064": [146, 197, 203], "\u306a\u3069\u306e\u5404\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u57fa\u5e95\u30af\u30e9\u30b9\u3068\u306a\u308a\u307e\u3059": 146, "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u5c5e\u6027\u306e\u6982\u8981": 146, "get_css": 146, "set_css": 146, "get_scale_from_point": 146, "set_scale_from_point": 146, "\u30af\u30e9\u30b9\u306f\u5404\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u63cf\u753b\u51e6\u7406\u3092\u6271\u3044\u307e\u3059": 146, "\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": [146, 179], "draw_triangl": 146, "draw_path": [146, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "svgtextspan": 146, "get_bound": 146, "prevent_default": 146, "stop_propag": 146, "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u767b\u9332\u3068\u30a4\u30d9\u30f3\u30c8\u306e\u767a\u751f": 146, "\u5236\u5fa1": 146, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": 146, "dblclick": [146, 159], "forarrayvalu": 146, "forarrayindicesandvalu": 146, "fordictkei": 146, "fordictvalu": 146, "fordictkeysandvalu": 146, "continu": 146, "\u95a2\u6570": 146, "stop": [146, 220, 223, 234], "reset": [146, 220, 234], "enter_fram": [146, 206, 229, 231], "unbind_enter_fram": 146, "unbind_enter_frame_al": 146, "set_month_end": 146, "total_second": 146, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": 146, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306eduration\u8a2d\u5b9a": 146, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306edelay\u306e\u8a2d\u5b9a": 146, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8fd4\u5374\u5024": 146, "animationbase\u30af\u30e9\u30b9": 146, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3": 146, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 146, "animation_paus": 146, "animation_plai": 146, "animation_reset": 146, "animation_finish": 146, "animation_revers": 146, "animation_tim": 146, "math": 146, "min": 146, "max": 146, "trunc": 146, "delet": 146, "add_debug_info_set": 146, "\u306e\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 146, "\u306e\u5f15\u6570\u8a2d\u5b9a": 146, "javascript": 146, "\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u6319\u52d5": 146, "assert_not_equ": 146, "assert_fals": 146, "assert_great": 146, "assert_less": 146, "assert_less_equ": 146, "assert_arrays_not_equ": 146, "assert_dicts_equ": 146, "assert_dicts_not_equ": 146, "assert_defin": 146, "\u306e\u5404\u30af\u30e9\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 147, "\u30af\u30e9\u30b9\u306fapysc\u306e\u6574\u6570\u306e\u578b\u3068\u306a\u308a\u307e\u3059": 147, "\u3053\u306e\u30af\u30e9\u30b9\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b\u6570\u5024\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 147, "\u3082\u3057\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e\u5f15\u6570\u306b\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f": 147, "\u30af\u30e9\u30b9\u306f\u305d\u306e\u5024\u306e\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3092\u5207\u308a\u6368\u3066\u307e\u3059": 147, "\u30af\u30e9\u30b9\u306fapysc\u306e\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u578b\u3067\u3059": 147, "\u30af\u30e9\u30b9\u3068\u540c\u69d8\u306b\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e\u5f15\u6570\u306b\u6570\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 147, "number_2": [147, 148, 149], "21": 147, "\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9": 147, "\u3053\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306f": 147, "\u30af\u30e9\u30b9\u3068\u540c\u69d8\u306b\u52d5\u4f5c\u3057\u307e\u3059": 147, "python\u958b\u767a\u8005\u306e\u65b9\u306f\u3082\u3057\u304b\u3057\u305f\u3089": 147, "\u30af\u30e9\u30b9\u3088\u308a\u3082\u3053\u3061\u3089\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306e\u65b9\u304c\u6163\u308c\u89aa\u3057\u3093\u3067\u3044\u3066\u81ea\u7136\u306b\u611f\u3058\u3089\u308c\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093": 147, "\u4e00\u65b9\u3067javascript\u306a\u3069\u306e\u958b\u767a\u8005\u306e\u65b9\u306f": 147, "\u3088\u308a\u3082": 147, "\u306e\u65b9\u304c\u81ea\u7136\u306b\u601d\u3048\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093": 147, "\u306e\u5404\u30af\u30e9\u30b9\u306f\u540c\u3058\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 147, "\u8a73\u7d30\u306b\u95a2\u3057\u3066\u306f\u4ee5\u4e0b\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": 147, "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u5404\u8a08\u7b97\u306e\u5236\u5fa1": 147, "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u5404\u6bd4\u8f03\u306e\u5236\u5fa1": 147, "number_value_mixin": [147, 220, 222, 224, 232], "numbervaluemixin": [147, 220, 222, 224, 232], "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u4e0a\u306e\u6574\u6570\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 147, "\u6574\u6570\u306e\u521d\u671f\u5024": 147, "\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u3053\u306e\u30af\u30e9\u30b9\u306f\u5024\u3092\u6574\u6570\u3078\u3068\u5909\u63db\u3057\u307e\u3059": 147, "\u30af\u30e9\u30b9\u306e\u5171\u901a\u306e\u5404\u8a08\u7b97\u5236\u5fa1": 147, "\u30af\u30e9\u30b9\u306e\u5171\u901a\u306e\u5404\u6bd4\u8f03\u5236\u5fa1": 147, "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u7528\u306e\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u30af\u30e9\u30b9\u3067\u3059": 147, "\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u521d\u671f\u5024": 147, "\u3082\u3057\u3082int\u3084int\u306a\u3069\u306e\u578b\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u3053\u306e\u30af\u30e9\u30b9\u306f\u5024\u3092\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3078\u5909\u63db\u3057\u307e\u3059": 147, "\u30af\u30e9\u30b9\u306fnumber\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u3067\u3042\u308a": 147, "\u3053\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306fnumber\u30af\u30e9\u30b9\u3068\u540c\u69d8\u306b\u52d5\u4f5c\u3057\u307e\u3059": 147, "\u73fe\u5728\u306e\u6570\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 147, "\u73fe\u5728\u306e\u6570\u5024": 147, "\u306e\u5404\u30af\u30e9\u30b9\u306e\u52a0\u7b97\u3084\u4e57\u7b97\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u8a08\u7b97\u5236\u5fa1\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 148, "\u306e\u5404\u5024\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b": 148, "\u306a\u3069\u306epython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u5024\u3068\u8a08\u7b97\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u540c\u3058\u578b\u540c\u58eb": 148, "\u540c\u58eb\u306a\u3069": 148, "\u3067\u306e\u8a08\u7b97\u3082\u540c\u69d8\u306b\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 148, "\u8a08\u7b97\u3067\u5de6\u5074\u306e\u5024\u304cpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u5024\u306e\u5834\u5408\u306f\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093": 148, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 148, "typeerror": [148, 193], "unsupport": 148, "operand": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u5404\u5024\u306e\u52a0\u7b97\u51e6\u7406\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3082\u540c\u3058\u3088\u3046\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u5404\u5024\u306e\u6e1b\u7b97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3082\u540c\u69d8\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u5404\u5024\u3092\u4e57\u7b97\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u5404\u5024\u306e\u9664\u7b97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u8fd4\u5374\u5024\u306f": 148, "\u306e\u6574\u6570\u3067\u306f\u306a\u304f": 148, "\u306e\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306b\u306a\u308a\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3067\u9664\u7b97\u3068\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u5207\u308a\u6368\u3066\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u578b\u306e\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3067\u306f\u306a\u304f": 148, "\u306e\u6574\u6570\u3068\u306a\u308a\u307e\u3059": 148, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u5270\u4f59\u306e\u8a08\u7b97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 148, "\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u6bd4\u8f03\u5236\u5fa1\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 149, "\u5404\u6bd4\u8f03\u5236\u5fa1\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 149, "\u306e\u5024\u3067\u306f\u306a\u304f": [149, 195], "\u306e\u5024\u3092python\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 149, "\u306a\u3069\u306e\u5024\u3068\u6bd4\u8f03\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 149, "\u9593": 149, "\u9593\u306e\u6bd4\u8f03\u306a\u3069\u3082\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 149, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [149, 195], "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u975e\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [149, 195], "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u672a\u6e80\u6761\u4ef6\u306e\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 149, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u4ee5\u4e0b\u6761\u4ef6\u306e\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 149, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u8d85\u904e\u6761\u4ef6\u306e\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 149, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u4ee5\u4e0a\u6761\u4ef6\u306e\u6bd4\u8f03\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 149, "\u30e1\u30bd\u30c3\u30c9\u306f\u6570\u5024\u3092\u56fa\u5b9a\u306e\u6841\u6570\u306e\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3092\u6301\u3063\u305f\u6587\u5b57\u5217\u3078\u3068\u5909\u63db\u3057\u307e\u3059": 150, "digit": 150, "\u305d\u306e\u5f15\u6570\u306f0": 150, "100\u306e\u7bc4\u56f2\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 150, "\u5f15\u6570\u306b0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": 150, "\u7d50\u679c\u306e\u6587\u5b57\u5217\u306f\u6574\u6570\u306e\u5f62\u5f0f\u306e\u6587\u5b57\u5217\u306b\u306a\u308a\u307e\u3059": 150, "\u5f15\u6570\u306b2\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u7d50\u679c\u306e\u6587\u5b57\u5217\u306f\u5c0f\u6570\u70b9\u4ee5\u4e0b\u304c2\u6841\u306e\u6570\u5024\u306e\u6587\u5b57\u5217\u306b\u306a\u308a\u307e\u3059": 150, "34": [150, 200, 206], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5207\u308a\u6368\u3066\u3089\u308c\u305f\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306b\u5076\u6570\u4e38\u3081\u306e\u51e6\u7406\u3092\u53cd\u6620\u3057\u307e\u3059": 150, "\u4f8b\u3048\u3070\u3082\u3057\u6570\u5024\u304c10": 150, "678\u3067\u3042\u308a": 150, "\u5f15\u6570\u304c\u306b2\u304c\u6307\u5b9a\u3055\u308c\u305f\u3070\u3042\u307d": 150, "\u7d50\u679c\u306e\u6587\u5b57\u5217\u306f10": 150, "68\u306b\u306a\u308a\u307e\u3059": 150, "num": 150, "789": 150, "fixed_float_str": 150, "79": 150, "78900": 150, "to_fixed_basics_usag": 150, "\u5024\u3092\u56fa\u5b9a\u306e\u5c0f\u6570\u70b9\u4ee5\u4e0b\u306e\u6841\u6570\u306e\u6587\u5b57\u5217\u3078\u3068\u5909\u63db\u3057\u307e\u3059": 150, "\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u6841\u6570": 150, "100\u306e\u7bc4\u56f2\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 150, "result_str": [150, 200], "\u5909\u63db\u3055\u308c\u305f\u6587\u5b57\u5217": [150, 227], "\u30af\u30e9\u30b9\u306f\u76f4\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 152, "start_point": [152, 206], "end_point": [152, 206], "\u306e\u5f15\u6570\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": [152, 174], "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306f": [152, 166, 178], "\u306a\u3069\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u5f15\u6570\u3082\u53d7\u3051\u4ed8\u3051\u307e\u3059": [152, 178], "line_basic_usag": 152, "\u306a\u3069\u306e\u4ed6\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3046\u5f62\u3067\u3082\u76f4\u7dda\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 152, "line_x": 152, "\u3053\u306e\u5c5e\u6027\u306e\u5024\u306f\u5f15\u6570\u306e\u5ea7\u6a19\u306e\u6700\u5c0f\u5024\u3068\u540c\u5024\u306b\u306a\u308a\u307e\u3059": [152, 177, 178], "line_i": 152, "line_line_color": 152, "line_line_alpha": 152, "line_line_thick": 152, "line_line_dot_set": 152, "line_line_dash_set": 152, "line_line_round_dot_set": 152, "line_line_dash_dot_set": 152, "40": 152, "line_rotation_around_cent": 152, "line_set_rotation_around_point": 152, "line_scale_x_from_cent": 152, "line_scale_y_from_cent": 152, "line_scale_x_from_point": 152, "line_scale_y_from_point": 152, "line_flip_x": 152, "line_flip_i": 152, "line_skew_x": 152, "line_skew_i": 152, "\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 152, "points2d": 152, "\u7dda\u306e\u958b\u59cb\u5ea7\u6a19": 152, "\u7dda\u306e\u7d42\u4e86\u5ea7\u6a19": 152, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [156, 158], "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f\u6570\u5024\u3092\u683c\u7d0d\u3057\u305f\u914d\u5217\u306e\u4e2d\u3067\u306e\u6700\u5927\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 156, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f": [156, 162], "\u578b\u306e\u5024\u306e\u5f15\u6570": 156, "\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 156, "\u5185\u306e\u5404\u5024\u306e\u578b\u306b\u95a2\u308f\u3089\u305a": [156, 157], "max_valu": 156, "\u6307\u5b9a\u3055\u308c\u305f\u914d\u5217\u306e\u5024\u306e\u4e2d\u304b\u3089\u6700\u5927\u5024\u306e\u6570\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 156, "\u6570\u5024\u3092\u683c\u7d0d\u3057\u305f\u914d\u5217": [156, 157], "\u914d\u5217\u306e\u4e2d\u306e\u6570\u5024\u306e\u6700\u5927\u5024": 156, "\u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 157, "\u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u6307\u5b9a\u3055\u308c\u305f\u6570\u5024\u306e\u914d\u5217\u306e\u4e2d\u306e\u6700\u5c0f\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 157, "\u30af\u30e9\u30b9\u306e\u5024\u306e\u5f15\u6570": 157, "\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 157, "min_valu": 157, "\u6307\u5b9a\u3055\u308c\u305f\u914d\u5217\u306e\u5404\u5024\u306e\u4e2d\u304b\u3089\u6700\u5c0f\u5024\u306e\u6570\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 157, "\u914d\u5217\u306e\u4e2d\u3067\u6700\u5c0f\u306e\u6570\u5024": 157, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f\u5024\u306e\u5c0f\u6570\u70b9\u4ee5\u4e0b\u306e\u5024\u3092\u5207\u308a\u6368\u3066\u3066\u6574\u6570\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 158, "\u306e\u3044\u305a\u308c\u304b\u306e\u578b\u306e\u5024\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 158, "\u3082\u3057\u3082\u5f15\u6570\u306e\u5024\u304c": 158, "\u578b\u306e\u5024\u3067\u3042\u308c\u3070\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5c0f\u6570\u70b9\u4ee5\u4e0b\u306e\u5024\u3092\u5207\u308a\u6368\u3066\u3066": 158, "\u578b\u306b\u5909\u63db\u3057\u305f\u72b6\u614b\u3067\u8fd4\u5374\u3057\u307e\u3059": 158, "\u306e\u578b\u306e\u5024\u3067\u3042\u308c\u3070": 158, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f0\u3082\u3057\u304f\u306f1\u306e": 158, "result_int": 158, "\u6307\u5b9a\u3055\u308c\u305f\u5024\u304b\u3089\u5c0f\u6570\u70b9\u4ee5\u4e0b\u306e\u5024\u3092\u5207\u308a\u843d\u3068\u3057\u307e\u3059": 158, "\u5c0f\u6570\u70b9\u4ee5\u4e0b\u3092\u5207\u308a\u6368\u3066\u308b\u5bfe\u8c61\u306e\u5024": 158, "\u3082\u3057\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c": 158, "\u578b\u306e\u5024\u306e\u5834\u5408": 158, "\u5909\u9006\u5024\u306f": 158, "\u5207\u308a\u6368\u3066\u51e6\u7406\u3068": 158, "\u578b\u3078\u306e\u5909\u63db\u304c\u53cd\u6620\u3055\u308c\u305f\u5024": 158, "\u30af\u30e9\u30b9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 159, "\u30af\u30ea\u30c3\u30af\u3084\u30de\u30a6\u30b9\u30c0\u30a6\u30f3": 159, "\u30de\u30a6\u30b9\u30aa\u30fc\u30d0\u30fc\u306a\u3069\u306e": 159, "\u306e\u5404\u30cf\u30f3\u30c9\u30e9\u3092\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 159, "\u30cf\u30f3\u30c9\u30e9\u306e\u5f15\u6570\u3078\u4efb\u610f\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 159, "\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u3092\u8a2d\u5b9a\u3059\u308b\u306b\u306f\u307e\u305a\u306f\u30cf\u30f3\u30c9\u30e9\u7528\u306e\u95a2\u6570": 159, "\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9": [159, 160], "\u306e\u5b9a\u7fa9\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 159, "\u3053\u308c\u3089\u306e\u30cf\u30f3\u30c9\u30e9\u306f": 159, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u767b\u9332\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 159, "mouse_event_abstract_click": 159, "\u4ed6\u306b\u3082\u30de\u30a6\u30b9\u30c0\u30a6\u30f3\u3084\u30de\u30a6\u30b9\u30aa\u30fc\u30d0\u30fc": 159, "\u30de\u30a6\u30b9\u30e0\u30fc\u30d6\u306a\u3069\u69d8\u3005\u306a\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u7528\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u5b58\u5728\u3057\u307e\u3059": 159, "\u5c5e\u6027\u306a\u3069\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u57fa\u672c\u7684\u306a\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 160, "\u5404\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": 160, "\u5f15\u6570\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": [109, 160, 198, 199, 202], "\u5f15\u6570\u306f\u30a4\u30d9\u30f3\u30c8\u304c\u767a\u884c\u3055\u308c\u305f\u969b\u306b\u4f7f\u7528\u3055\u308c\u308b\u95a2\u6570\u306a\u3069\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3059": 160, "\u5f15\u6570\u306f\u30cf\u30f3\u30c9\u30e9\u3078\u6e21\u3055\u308c\u308b\u8ffd\u52a0\u306e\u4efb\u610f\u306e\u8f9e\u66f8\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3067\u3059": 160, "\u3053\u306e\u5f15\u6570\u306f\u7701\u7565\u3067\u304d\u307e\u3059": 160, "\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u306e\u3088\u3046\u306b\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 160, "_coloropt": 160, "mouse_event_basic_basic_binding_usag": 160, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u5834\u5408": 160, "\u30cf\u30f3\u30c9\u30e9\u306f\u56db\u89d2\u306e\u8272\u3092\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306b\u6e21\u3055\u308c\u305f\u8272\u306b\u5909\u66f4\u3057\u307e\u3059": 160, "\u306e\u5404\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u306f": 160, "\u306a\u3069\u306e\u69d8\u3005\u306a\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u7528\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u304c\u305d\u3063\u6b73\u3057\u307e\u3059": 160, "\u306e\u5404\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": [160, 161, 162, 163], "unbind_mousedown": 160, "unbind_": 160, "event_nam": 160, "\u3068\u3044\u3046\u540d\u524d\u306e\u5f62\u5f0f\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 160, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u5358\u4f53\u3092\u89e3\u9664\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 160, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u3092\u89e3\u9664\u3057\u3066\u3044\u308b\u305f\u3081": 160, "\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570\u306f\u547c\u3070\u308c\u306a\u304f\u306a\u308a\u307e\u3059": 160, "mouse_event_basic_basic_unbinding_usag": 160, "\u4ee5\u4e0b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u307f\u3066\u3082\u4f55\u3082\u8d77\u3053\u3089\u306a\u3044\u3053\u3068\u304c\u78ba\u8a8d\u3067\u304d\u307e\u3059": 160, "\u7279\u5b9a\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u3092\u4e00\u62ec\u3067\u89e3\u9664\u3059\u308b\u306e\u304c\u5f79\u7acb\u3064\u6642\u304c\u3042\u308a\u307e\u3059": 160, "\u30a4\u30d9\u30f3\u30c8\u304c\u8a2d\u5b9a\u3067\u304d\u308b\u5404\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 160, "unbind_click_al": [160, 220], "_all": 160, "\u3068\u3044\u3046\u540d\u524d\u306e\u5f62\u5f0f\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u304a\u308a": 160, "\u305d\u308c\u3092\u4f7f\u3063\u3066\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u4e00\u901a\u308a\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 160, "\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3093\u3067\u5168\u3066\u306e\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u3066\u3044\u307e\u3059": 160, "change_color_on_rectangle_click": 160, "change_x_on_rectangle_click": 160, "mouse_event_basic_unbind_all_event_handl": 160, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u307f\u3066\u3082\u8272\u306e\u5909\u5316\u3084x\u5ea7\u6a19\u306e\u66f4\u65b0\u306a\u3069\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059": 160, "\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570": 160, "\u306e\u7b2c\u4e00\u5f15\u6570\u306f": 160, "\u578b\u306e\u5f15\u6570\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 160, "\u7b2c\u4e8c\u5f15\u6570\u306b\u306f": 160, "\u3068\u3044\u3046\u540d\u524d\u306e\u8f9e\u66f8\u306e\u5f15\u6570\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 160, "\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u6642\u306b\u3053\u306eoptions\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306e\u6307\u5b9a\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306b\u306f\u3053\u306e\u5f15\u6570\u306e\u5024\u306f\u7a7a\u306e\u8f9e\u66f8": 160, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u30a4\u30d9\u30f3\u30c8\u767b\u9332\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u306a\u308b": 160, "\u4f8b\u3048\u3070\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u3092\u56db\u89d2\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u8a2d\u5b9a\u3057\u305f\u5834\u5408": 160, "\u5c5e\u6027\u306f\u305d\u306e\u56db\u89d2\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u306a\u308a\u307e\u3059": 160, "\u3082\u3057\u3082\u30cf\u30f3\u30c9\u30e9\u3092\u7279\u5b9a\u306e\u578b\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u307f\u3067\u4f7f\u3046\u3053\u3068\u304c\u5206\u304b\u3063\u3066\u3044\u308b\u5834\u5408": 160, "\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3067\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u306e\u6307\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 160, "\u5c5e\u6027\u306e\u578b\u306e\u6c7a\u5b9a\u306b\u4f7f\u308f\u308c": 160, "mypi": [160, 181], "pylanc": 160, "\u306a\u3069\u306e\u578b\u30c1\u30a7\u30c3\u30af\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u3063\u3066\u3044\u308b\u5834\u5408\u5f79\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 160, "on_rectangle_mousedown": 160, "mouseevent\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 160, "\u306e\u5404\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 160, "\u3053\u308c\u3089\u306e\u5c5e\u6027\u306f\u30b9\u30c6\u30fc\u30b8\u306e\u5de6\u4e0a\u306e\u4f4d\u7f6e\u3092\u57fa\u6e96\u3068\u3057\u305f\u7d76\u5bfe\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 160, "on_mousemov": [160, 162], "mouse_event_basic_stage_x_and_stage_i": 160, "f12\u3092\u62bc\u3057\u3066chrome\u306a\u3069\u306edevtools\u3092\u958b\u304d": 160, "\u4ee5\u4e0b\u306e\u56db\u89d2\u306e\u4e0a\u3067\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u3092\u52d5\u304b\u3059\u3068": 160, "\u306e\u5ea7\u6a19\u5024\u3092\u5bb6\u8a13\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 160, "\u524d\u8ff0\u306e\u30b3\u30fc\u30c9\u3067\u306f\u56db\u89d2\u3092": 160, "\u306e\u4f4d\u7f6e\u306b\u8a2d\u5b9a\u3057\u3066\u3044\u308b\u305f\u3081": 160, "\u306e\u5024\u306f50": 160, "100\u306e\u7bc4\u56f2\u306e\u5024\u3068\u306a\u308a": 160, "\u306e\u5024\u306f100": [160, 222], "150\u306e\u7bc4\u56f2\u306e\u5024\u3068\u306a\u308a\u307e\u3059": 160, "mouseevent\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 160, "\u3068\u3044\u3046\u5c5e\u6027\u3082\u6301\u3063\u3066\u3044\u307e\u3059": 160, "\u3053\u308c\u3089\u306e\u5c5e\u6027\u306f\u30a4\u30d9\u30f3\u30c8\u304c\u767b\u9332\u3055\u308c\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u57fa\u6e96\u3068\u3057\u305f\u76f8\u5bfe\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 160, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306flocal_x\u3068local_y\u306e\u5ea7\u6a19\u304c\u56db\u89d2\u306e\u7bc4\u56f2\u306e\u5ea7\u6a19\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059": 160, "\u56db\u89d2\u306e\u30b5\u30a4\u30ba\u304c50px\u306a\u305f\u3081": 160, "\u306e\u5024\u306f\u4e21\u65b9\u3068\u30820": 160, "50\u306e\u7bc4\u56f2\u306b\u306a\u308a\u307e\u3059": 160, "mouse_event_basic_local_x_and_local_i": 160, "\u4ee5\u4e0b\u306e\u56db\u89d2\u306e\u4e0a\u3067\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u3092\u52d5\u304b\u3057\u3066\u307f\u3066\u51fa\u529b\u7d50\u679c\u3092\u78ba\u8a8d\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044": 160, "\u30b9\u30c6\u30fc\u30b8\u57fa\u6e96\u306ex\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 160, "on_mousedown": [160, 161], "\u30b9\u30c6\u30fc\u30b8\u57fa\u6e96\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 160, "\u30a4\u30d9\u30f3\u30c8\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5185\u306e\u76f8\u5bfe\u5ea7\u6a19\u306ex\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 160, "\u4f8b\u3048\u3070sprite\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u5834\u5408\u306b\u306fsprite\u306e\u5de6\u4e0a\u306e\u4f4d\u7f6e\u3092\u57fa\u6e96\u3068\u3057\u305f\u5ea7\u6a19\u306b\u306a\u308a\u307e\u3059": 160, "\u30a4\u30d9\u30f3\u30c8\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306a\u3044\u306e\u76f8\u5bfe\u5ea7\u6a19\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 160, "\u3053\u306e\u30a4\u30d9\u30f3\u30c8\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u307e\u3059": 160, "\u3053\u306e\u30a4\u30d9\u30f3\u30c8\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 160, "bind_custom_ev": 160, "trigger_custom_ev": 160, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30de\u30a6\u30b9\u3092\u62bc\u3057\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 161, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30de\u30a6\u30b9\u304b\u3089\u6307\u3092\u96e2\u3057\u305f": 161, "\u62bc\u3057\u3066\u3044\u308b\u72b6\u614b\u3092\u89e3\u9664\u3057\u305f": 161, "\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 161, "\u306e\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u304a\u308a": 161, "\u305d\u308c\u3089\u3092\u4f7f\u3063\u3066\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [161, 163], "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u306b\u5bfe\u3057\u3066\u30de\u30a6\u30b9\u3092\u62bc\u3057\u305f\u6642\u3068\u96e2\u3057\u305f\u6642\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u305d\u308c\u305e\u308c\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 161, "\u30cf\u30f3\u30c9\u30e9\u3067\u306f\u30de\u30a6\u30b9\u3092\u62bc\u3057\u305f\u6642\u306b\u56db\u89d2\u306e\u8272\u3092\u5909\u66f4\u3057": 161, "\u30de\u30a6\u30b9\u3092\u96e2\u3057\u305f\u6642\u306b\u5143\u306e\u8272\u306b\u623b\u3057\u3066\u3044\u307e\u3059": 161, "on_mouseup": 161, "mousedown_and_mouseup_basic_usag": 161, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 161, "\u306e\u5404\u30cf\u30f3\u30c9\u30e9\u5185\u3067\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u3066\u3044\u308b\u305f\u3081\u30cf\u30f3\u30c9\u30e9\u306e\u51e6\u7406\u306f1\u56de\u306e\u307f\u5b9f\u884c\u3055\u308c\u307e\u3059": 161, "mousedown_and_mouseup_unbind_interfac": 161, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082\u5b58\u5728\u3057\u307e\u3059": 161, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u8a72\u5f53\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u5168\u3066\u53d6\u308a\u9664\u304d\u307e\u3059": 161, "\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u62bc\u3057\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 161, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u62bc\u3057\u305f\u6642\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9": 161, "\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u62bc\u3057\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 161, "\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u62bc\u3057\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u5168\u3066\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 161, "\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u96e2\u3057\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 161, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u96e2\u3057\u305f\u6642\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9": 161, "\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u96e2\u3057\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 161, "\u30de\u30a6\u30b9\u306e\u30dc\u30bf\u30f3\u3092\u96e2\u3057\u305f\u3068\u304e\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u5168\u3066\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 161, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4efb\u610f\u306e": 162, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u30de\u30a6\u30b9\u3092\u52d5\u304b\u3057\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 162, "\u5bfe\u8c61\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u3092\u52d5\u304b\u3059\u5ea6\u306b\u8a2d\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u304c\u547c\u3070\u308c\u307e\u3059": 162, "\u305d\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 162, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5186\u306b\u5bfe\u3057\u3066\u30de\u30a6\u30b9\u3092\u52d5\u304b\u3057\u305f\u3068\u304d\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 162, "\u5bfe\u8c61\u306e\u5186\u306e\u4e0a\u3067\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u3092\u52d5\u304b\u3059\u3068": 162, "\u5186\u306e\u4f4d\u7f6e\u306f\u30ab\u30fc\u30bd\u30eb\u306e\u4f4d\u7f6e\u306b\u66f4\u65b0\u3055\u308c\u307e\u3059": 162, "stage_x": 162, "stage_i": 162, "mousemove_basic_usag": 162, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30de\u30a6\u30b9\u3092\u52d5\u304b\u3057\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 162, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u5186\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u30de\u30a6\u30b9\u3092\u52d5\u304b\u3057\u305f\u3068\u304d\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3059\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059": 162, "mousemove_unbind_interfac": 162, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082\u5b58\u5728\u3057": 162, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u30de\u30a6\u30b9\u3092\u52d5\u304b\u3057\u305f\u3068\u304d\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u5168\u3066\u89e3\u9664\u3057\u307e\u3059": 162, "\u30de\u30a6\u30b9\u3092\u52d5\u304b\u3057\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 162, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30de\u30a6\u30b9\u3092\u52d5\u304b\u3057\u305f\u969b\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9": 162, "\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u3092\u52d5\u304b\u3057\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u3067\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 162, "\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u3092\u52d5\u304b\u3057\u305f\u3068\u304d\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u5168\u3066\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 162, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u5bfe\u8c61\u306e": 163, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u306b\u4e57\u3063\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 163, "\u4e0a\u304b\u3089\u96e2\u308c\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 163, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u304a\u308a": 163, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30de\u30a6\u30b9\u304c\u4e57\u3063\u305f\u6642\u3068\u96e2\u308c\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u56db\u89d2\u306b\u5bfe\u3057\u3066\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 163, "\u56db\u89d2\u306b\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u4e57\u3063\u305f\u6642\u306b\u56db\u89d2\u306e\u8272\u304c\u5909\u66f4\u3055\u308c": 163, "\u30ab\u30fc\u30bd\u30eb\u304c\u96e2\u308c\u305f\u6642\u306b\u8272\u304c\u623b\u3055\u308c\u308b\u3088\u3046\u306b\u8a2d\u5b9a\u3057\u3066\u3042\u308a\u307e\u3059": 163, "on_mouseov": 163, "on_mouseout": 163, "revert": 163, "mous": 163, "over": 163, "mouseover_and_mouseout_basic_usag": 163, "\u304b\u3089\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 163, "\u306e\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570\u5185\u3067\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u3066\u3044\u308b\u305f\u3081\u3053\u308c\u3089\u306e\u30cf\u30f3\u30c9\u30e9\u306f\u6700\u521d\u306e1\u56de\u306e\u307f\u547c\u3070\u308c\u307e\u3059": 163, "unbind": 163, "mouseover_and_mouseout_unbind_interfac": 163, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3082\u5b58\u5728\u3057\u307e\u3059": 163, "\u3053\u308c\u3089\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5bfe\u8c61\u306e": 163, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u5bfe\u8c61\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u5168\u3066\u89e3\u9664\u3057\u307e\u3059": 163, "\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u4e57\u3063\u305f\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 163, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u306b\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u4e57\u3063\u305f\u969b\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9": 163, "\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u4e57\u3063\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 163, "\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u4e57\u3063\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u5168\u3066\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 163, "\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u304b\u3089\u96e2\u308c\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 163, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u304b\u3089\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u96e2\u308c\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u5bfe\u8c61\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 163, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u304b\u3089\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u304c\u96e2\u308c\u305f\u969b\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u5168\u3066\u89e3\u9664\u3057\u307e\u3059": 163, "\u306a\u3069\u306e\u30b3\u30f3\u30c6\u30ca\u306e\u30af\u30e9\u30b9\u306e": 165, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5b50\u306e\u6570\u306e": 165, "\u578b\u306e\u6574\u6570\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 165, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u521d\u671f\u5024\u306f": 165, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5b50\u3092\u6301\u3064\u305f\u30810\u3067\u306f\u306a\u304f1\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 165, "\u578b\u306e\u6574\u6570\u306e\u5b50\u306e\u6570\u3092\u8fd4\u5374\u3057\u307e\u3059": 165, "\u305d\u306e\u5024\u3092\u4f7f\u3063\u3066\u5ea7\u6a19\u306e\u8a08\u7b97\u306a\u3069\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 165, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u65b0\u3057\u3044\u56db\u89d2\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059": 165, "\u5c5e\u6027\u306e\u5024\u306f\u65b0\u3057\u3044\u56db\u89d2\u306ex\u5ea7\u6a19\u3092\u6c7a\u3081\u308b\u306e\u306b\u4f7f\u308f\u308c\u3066\u3044\u307e\u3059": 165, "\u3053\u306e\u30b3\u30fc\u30c9\u3067\u306f\u30af\u30ea\u30c3\u30af\u3055\u308c\u305f\u969b\u306b\u73fe\u5728\u306e": 165, "\u5c5e\u6027\u306e\u5024\u3092\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u306b\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 165, "f12\u30ad\u30fc\u3092\u62bc\u3057\u3066\u30b3\u30f3\u30bd\u30fc\u30eb\u3092\u958b\u3044\u3066\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044": 165, "rectangle_x": [165, 182], "new_rect": 165, "children": 165, "num_children_basic_usag": 165, "\u73fe\u5728\u306e\u5b50\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059": [165, 191], "\u73fe\u5728\u306e\u5b50\u306e\u6570": [165, 191], "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u751f\u6210\u3057\u307e\u3059": 166, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306f": [166, 168, 172, 174, 206], "\u306a\u3069\u306e\u5404\u30d1\u30b9\u8a2d\u5b9a\u3092\u683c\u7d0d\u3057\u305f\u30ea\u30b9\u30c8\u3067\u3059": 166, "\u306a\u3069\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u7528\u306e\u5f15\u6570\u3082\u53d7\u3051\u4ed8\u3051\u307e\u3059": 166, "path_basic_usag": 166, "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u306b\u65b0\u3057\u3044\u5ea7\u6a19\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [166, 174], "\u30af\u30e9\u30b9\u306f\u73fe\u5728\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u5ea7\u6a19\u4f4d\u7f6e\u304b\u3089\u65b0\u305f\u306a\u7dda\u306e\u30d1\u30b9\u3092\u63cf\u753b\u3057\u307e\u3059": [166, 173], "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u4e0a\u306b\u6c34\u5e73\u65b9\u5411\u306e\u76f4\u7dda\u306e\u63cf\u753b\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [166, 172], "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u4e0a\u306b\u65b0\u3057\u3044\u5782\u76f4\u306e\u76f4\u7dda\u306e\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [166, 171, 175], "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u30782\u6b21\u306e\u30d9\u30b8\u30a7\u66f2\u7dda\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [166, 167], "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u306b\u9023\u7d9a\u3057\u305f2\u6b21\u5143\u306e\u30d9\u30b8\u30a7\u66f2\u7dda\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [166, 168], "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u4e0a\u306b3\u6b21\u306e\u30d9\u30b8\u30a7\u66f2\u7dda\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [166, 169], "\u30af\u30e9\u30b9\u306f\u30d1\u30b9\u4e0a\u306b\u9023\u7d9a\u3057\u305f3\u6b21\u30d9\u30b8\u30a7\u66f2\u7dda\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": [166, 170], "path_x": 166, "path_i": 166, "path_fill_color": 166, "path_fill_alpha": 166, "path_line_color": 166, "path_line_alpha": 166, "path_line_thick": 166, "path_line_dot_set": 166, "path_line_dash_set": 166, "path_line_round_dot_set": 166, "path_line_dash_dot_set": 166, "path_rotation_around_cent": 166, "path_rotation_around_point": 166, "path_scale_x_from_cent": 166, "path_scale_y_from_cent": 166, "path_scale_x_from_point": 166, "path_scale_y_from_point": 166, "path_flip_x": 166, "path_flip_i": 166, "path_skew_x": 166, "path_skew_i": 166, "line_joint": [166, 177, 178, 182, 229], "\u30d1\u30b9\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 166, "\u8a2d\u5b9a\u3059\u308b\u7dda\u306e\u9023\u7d50\u90e8\u5206\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [166, 177, 178, 182, 229], "\u4e3b\u306b\u3053\u306e\u8a2d\u5b9a\u306f": [167, 168, 169, 170, 171, 172, 173, 174, 175], "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3068": [167, 168, 169, 170, 171, 172, 173, 174, 175], "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u4f7f\u7528\u3055\u308c\u307e\u3059": [167, 168, 169, 170, 171, 172, 173, 174, 175], "\u306e\u5404\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 167, "\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u5236\u5fa1\u70b9\u306e\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 167, "\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u7d42\u70b9\u5ea7\u6a19\u306e\u6307\u5b9a\u3068\u306a\u308a\u307e\u3059": [167, 169], "path_bezier_2d_basic_usage_1": 167, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30de\u30bc\u30f3\u30bf\u8272\u306e\u5186\u3067\u5236\u5fa1\u70b9\u306e\u5ea7\u6a19\u3092\u793a\u3057\u3066\u3044\u307e\u3059": 167, "\u30b7\u30a2\u30f3\u306e\u8272\u3067\u306f\u7d42\u70b9\u5ea7\u6a19\u3092\u793a\u3057\u3066\u3044\u307e\u3059": 167, "magenta_circl": [167, 169, 170], "cyan_circl": [167, 169, 170], "path_bezier_2d_basic_usage_2": 167, "rel": [167, 168, 169, 170, 172, 173, 174, 175], "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u5f15\u6570\u306f\u305d\u306e\u6319\u52d5\u3092\u5909\u66f4\u3057\u307e\u3059": [167, 168, 169, 170, 172, 173, 174, 175], "\u3082\u3057\u305d\u306e\u5f15\u6570\u306btrue\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u5ea7\u6a19\u306f\u76f8\u5bfe\u5ea7\u6a19\u3068\u3057\u3066\u8a2d\u5b9a\u3055\u308c\u307e\u3059": [167, 168, 169, 170, 172, 173, 174, 175], "\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306ffalse\u3068\u306a\u3063\u3066\u304a\u308a": [167, 168, 169, 170, 172, 173, 174, 175], "\u3053\u306e\u8a2d\u5b9a\u3067\u306f\u7d76\u5bfe\u5ea7\u6a19\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059": [167, 168, 169, 170, 172, 173, 174, 175], "\u57fa\u6e96\u3068\u306a\u308b\u5ea7\u6a19\u306f\u5236\u5fa1\u70b9\u306a\u3069\u3067\u306f\u306a\u304f\u958b\u59cb\u70b9\u3068\u306a\u308a\u307e\u3059": 167, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306frelative\u306e\u8a2d\u5b9a\u3092\u884c\u3044\u3064\u3064\u30d9\u30b8\u30a7\u66f2\u7dda\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 167, "\u306e\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u305f\u3081": 167, "\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306f\u8ca0\u306e\u5024\u3068\u306a\u308a": 167, "\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306f0\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 167, "path_bezier_2d_rel": 167, "svg\u306e2\u6b21\u306e\u30d9\u30b8\u30a7\u66f2\u7dda": 167, "q": 167, "\u306e\u30c7\u30fc\u30bf\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 167, "\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u5236\u5fa1\u70b9\u306ex\u5ea7\u6a19": [167, 170], "\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u5236\u5fa1\u70b9\u306ey\u5ea7\u6a19": [167, 170], "\u7d42\u70b9\u306ex\u5ea7\u6a19": [167, 168, 169, 170, 172, 173, 174], "\u7d42\u70b9\u306ey\u5ea7\u6a19": [167, 168, 169, 170, 173, 174, 175], "\u30d1\u30b9\u306e\u5ea7\u6a19\u304c\u76f8\u5bfe\u5ea7\u6a19\u3068\u3057\u3066\u6271\u3046\u304b\u3082\u3057\u304f\u306f\u7d76\u5bfe\u5ea7\u6a19\u3068\u3057\u3066\u6271\u3046\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024": [167, 168, 169, 170, 172, 173, 174, 175], "\u3053\u306e\u8a2d\u5b9a\u306f\u7dda\u5bfe\u79f0\u306a\u4f4d\u7f6e\u306e\u5236\u5fa1\u70b9\u3092\u4f7f\u3046\u3053\u3068\u3067\u6ed1\u3089\u304b\u306a\u66f2\u7dda\u3092\u63cf\u753b\u3057\u307e\u3059": 168, "\u3053\u308c\u3089\u306e\u5ea7\u6a19\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u7d42\u70b9\u5ea7\u6a19\u306e\u6307\u5b9a\u3068\u306a\u308a\u307e\u3059": 168, "\u30af\u30e9\u30b9\u306e\u76f4\u5f8c\u3067\u306e\u307f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3068\u3044\u3046\u5236\u9650\u304c\u3042\u308a\u307e\u3059": 168, "path_bezier_2d_continual_basic_usag": 168, "path_bezier_2d_continual_rel": 168, "svg\u306e\u9023\u7d9a\u3057\u305f2\u6b21\u5143\u306e\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u30c7\u30fc\u30bf\u8a2d\u5b9a\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 168, "\u3053\u306e\u30af\u30e9\u30b9\u306f2\u3064\u306e\u5236\u5fa1\u70b9\u3092\u6301\u3061\u307e\u3059": 169, "\u6bd4\u8f03\u5bfe\u8c61\u3068\u3057\u3066": 169, "2\u6b21\u306e\u30d9\u30b8\u30a7\u66f2\u7dda\u3067\u306f1\u3064\u306e\u5236\u5fa1\u70b9\u306e\u307f\u3092\u6301\u3061\u307e\u3059": 169, "control_x1": [169, 170], "control_y1": [169, 170], "control_x2": [169, 170], "control_y2": [169, 170], "\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u6700\u521d\u306e\u5236\u5fa1\u70b9\u306e\u4f4d\u7f6e\u3092\u6c7a\u5b9a\u3059\u308b\u305f\u3081\u306e\u5ea7\u6a19\u6307\u5b9a\u3067\u3059": 169, "\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e2\u756a\u76ee\u306e\u5236\u5fa1\u70b9\u306e\u4f4d\u7f6e\u3092\u6c7a\u5b9a\u3059\u308b\u305f\u3081\u306e\u5ea7\u6a19\u6307\u5b9a\u3067\u3059": 169, "path_bezier_3d_basic_usage_1": 169, "\u30b7\u30a2\u30f3\u8272\u306e\u5186\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u6700\u521d\u306e\u5236\u5fa1\u70b9\u3092\u793a\u3057\u3066\u3044\u307e\u3059": 169, "\u30de\u30bc\u30f3\u30bf\u306e\u5186\u3067\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e2\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u3092\u793a\u3057\u3066\u3044\u307e\u3059": 169, "\u9ec4\u8272\u306e\u5186\u3067\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u7d42\u70b9\u5ea7\u6a19\u3092\u793a\u3057\u3066\u3044\u307e\u3059": 169, "yellow_circl": 169, "ff0": 169, "path_bezier_3d_basic_usage_2": 169, "\u57fa\u6e96\u70b9\u306f\u958b\u59cb\u4f4d\u7f6e\u306e\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 169, "\u6700\u521d\u306e\u5236\u5fa1\u70b9\u30842\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093": 169, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306frelative\u306e\u8a2d\u5b9a\u3092\u3057\u3066\u30d9\u30b8\u30a7\u66f2\u7dda\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 169, "path_bezier_3d_rel": 169, "svg\u306e3\u6b21\u306e\u30d9\u30b8\u30a7\u66f2\u7dda": 169, "\u306e\u30d1\u30b9\u30c7\u30fc\u30bf\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 169, "\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u6700\u521d\u306e\u5236\u5fa1\u70b9\u306ex\u5ea7\u6a19": 169, "\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u6700\u521d\u306e\u5236\u5fa1\u70b9\u306ey\u5ea7\u6a19": 169, "\u30d9\u30b8\u30a7\u66f2\u7dda\u306e2\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u306ex\u5ea7\u6a19": 169, "\u30d9\u30b8\u30a7\u66f2\u7dda\u306e2\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u306ey\u5ea7\u6a19": 169, "\u30af\u30e9\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u308b\u307e\u3059": 170, "\u3053\u306e\u8a2d\u5b9a\u306f\u5236\u5fa1\u70b9\u306b\u7dda\u5bfe\u79f0\u4f4d\u7f6e\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u3067\u6ed1\u3089\u304b\u306a\u66f2\u7dda\u3092\u63cf\u753b\u3057\u307e\u3059": 170, "\u306e\u5404\u5f15\u6570\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 170, "\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e2\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u306e\u4f4d\u7f6e\u3068\u306a\u308a\u307e\u3059": 170, "\u30d9\u30b8\u30a7\u66f2\u7dda\u306e2\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u306e\u7dda\u5bfe\u79f0\u306e\u4f4d\u7f6e\u306f": 170, "\u30af\u30e9\u30b9\u306e1\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u306e\u4f4d\u7f6e\u3068\u3057\u3066\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 170, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b\u306f1\u3064\u76ee\u306e\u5236\u5fa1\u70b9\u306e\u4f4d\u7f6e\u306e\u6307\u5b9a\u306e\u5f15\u6570\u306f\u5b58\u5728\u3057\u307e\u305b\u3093": 170, "\u5f15\u6570\u306f\u30d9\u30b8\u30a7\u66f2\u7dda\u306e\u7d42\u70b9\u4f4d\u7f6e\u306e\u6307\u5b9a\u3068\u306a\u308a\u307e\u3059": 170, "\u30af\u30e9\u30b9\u306b\u306f": 170, "\u30af\u30e9\u30b9\u306e\u76f4\u5f8c\u3067\u306e\u307f\u4f7f\u7528\u3067\u304d\u308b\u3068\u3044\u3046\u5236\u9650\u304c\u5b58\u5728\u3057\u307e\u3059": 170, "420": 170, "path_bezier_3d_continual_basic_usage_1": 170, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30b7\u30a2\u30f3\u306e\u5186\u306f\u5236\u5fa1\u70b9": 170, "\u306e\u4f4d\u7f6e\u3092\u793a\u3057": 170, "\u30de\u30bc\u30f3\u30bf\u306e\u5186\u3067\u306f\u7d42\u70b9\u306e\u4f4d\u7f6e": 170, "\u3092\u793a\u3057\u307e\u3059": 170, "path_bezier_3d_continual_basic_usage_2": 170, "\u57fa\u6e96\u3068\u306a\u308b\u4f4d\u7f6e\u306f\u5236\u5fa1\u70b9\u306a\u3069\u3067\u306f\u306a\u304f\u59cb\u70b9\u306e\u4f4d\u7f6e\u3068\u306a\u308a\u307e\u3059": 170, "path_bezier_3d_continual_rel": 170, "svg\u306e\u9023\u7d9a\u3057\u305f3\u6b21\u30d9\u30b8\u30a7\u66f2\u7dda": 170, "\u306e\u305f\u3081\u306e\u30d1\u30b9\u30c7\u30fc\u30bf\u306e\u30af\u30e9\u30b9\u3067\u3059": [170, 171, 174], "\u3082\u3057\u3082\u30d1\u30b9\u306e\u59cb\u70b9\u3068\u7d42\u70b9\u304c\u7e4b\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408": 171, "\u3053\u306e\u8a2d\u5b9a\u306f\u3053\u308c\u3089\u306e\u5ea7\u6a19\u3092\u63a5\u7d9a\u3057\u307e\u3059": 171, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306f\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": [171, 186], "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3082\u3057\u304f\u306f": [171, 172, 173, 174, 175], "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e": [171, 172, 173, 174, 175], "\u5f15\u6570\u3067\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u5fc5\u8981\u3068\u3055\u308c\u307e\u3059": [171, 172, 173, 174, 175], "\u5de6\u5074\u306e\u30d1\u30b9\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306f": 171, "close": 171, "\u30af\u30e9\u30b9\u306e\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u305b\u3093": 171, "\u9006\u306b\u53f3\u5074\u306e\u30d1\u30b9\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3067\u306f": 171, "\u30af\u30e9\u30b9\u306e\u8a2d\u5b9a\u3092\u4f7f\u7528\u3057\u3066\u304a\u308a": 171, "\u59cb\u70b9\u3068\u7d42\u70b9\u306e\u5ea7\u6a19\u304c\u63a5\u7d9a\u3055\u308c\u3066\u3044\u307e\u3059": 171, "left_path": 171, "right_path": 171, "path_close_basic_usag": 171, "svg\u306e\u30d1\u30b9\u3092\u9589\u3058\u308b\u6307\u5b9a": 171, "00": 171, "\u5782\u76f4\u65b9\u5411\u306e\u5ea7\u6a19\u8a2d\u5b9a\u304c\u4e0d\u8981\u306a\u5782\u76f4\u65b9\u5411\u306e\u76f4\u63a5\u306e\u63cf\u753b\u304c\u5fc5\u8981\u306a\u969b\u306b\u3053\u306e\u30af\u30e9\u30b9\u3092\u4f7f\u3046\u3053\u3068\u3067\u30b3\u30fc\u30c9\u306e\u8a18\u8ff0\u3092\u30b7\u30f3\u30d7\u30eb\u306b\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 172, "\u306e\u5f15\u6570\u306e\u307f\u5fc5\u8981\u3068\u3057\u307e\u3059": 172, "50\u306e\u4f4d\u7f6e\u304b\u3089x": [172, 173], "150\u306e\u4f4d\u7f6e\u3078\u6c34\u5e73\u65b9\u5411\u306e\u76f4\u7dda\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 172, "path_horizontal_basic_usag": 172, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306frelative\u306e\u8a2d\u5b9a\u3092\u884c\u3044": [172, 173], "\u305d\u3057\u3066\u6c34\u5e73\u65b9\u5411\u306b50px\u305a\u3089\u3057\u305f\u4f4d\u7f6e\u306b\u76f4\u7dda\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 172, "path_horizontal_rel": 172, "svg\u306e\u6c34\u5e73\u65b9\u5411\u3078\u306e\u7dda": 172, "h": 172, "\u306e\u63cf\u753b\u306e\u305f\u3081\u306e\u30d1\u30b9\u30c7\u30fc\u30bf\u306e\u30af\u30e9\u30b9\u3067\u3059": [172, 173, 175], "\u306e\u5f15\u6570\u6307\u5b9a\u304c\u5fc5\u8981\u3068\u306a\u308a\u307e\u3059": 173, "50\u306e\u4f4d\u7f6e\u306b\u5411\u3051\u3066": 173, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8a2d\u5b9a\u3057\u3066\u7dda\u306e\u63cf\u753b\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 173, "path_line_to_basic_usag": 173, "\u73fe\u5728\u306e\u4f4d\u7f6e\u304b\u308950px\u4e0b\u306e\u4f4d\u7f6e\u306b\u5411\u3051\u3066\u7dda\u306e\u63cf\u753b\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 173, "path_line_to_rel": 173, "svg\u306e\u7279\u5b9a\u5ea7\u6a19\u306b\u5bfe\u3059\u308b\u7dda": 173, "l": 173, "\u3053\u306e\u8a2d\u5b9a\u306f\u5ea7\u6a19\u8a2d\u5b9a\u306e\u307f\u3092\u884c\u3044": 174, "\u65b0\u3057\u3044\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u8ffd\u52a0\u306a\u3069\u306f\u884c\u3044\u307e\u305b\u3093": 174, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066x": 174, "50\u306e\u5ea7\u6a19\u4f4d\u7f6e\u3092\u8a2d\u5b9a\u3057\u305f\u5f8c\u306bx": 174, "50\u306e\u4f4d\u7f6e\u3078\u7dda\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 174, "path_move_to_basic_usag": 174, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306frelative\u306e\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u304a\u308a": 174, "\u76f8\u5bfe\u7684\u306b50px\u4e0b\u306e\u4f4d\u7f6e\u306b\u79fb\u52d5\u3055\u305b\u3066\u3044\u307e\u3059": 174, "path_move_to_rel": 174, "svg\u306e\u7279\u5b9a\u5ea7\u6a19\u3078\u306e\u79fb\u52d5": 174, "m": 174, "\u3053\u306e\u8a2d\u5b9a\u306f\u3082\u3057\u5782\u76f4\u65b9\u5411\u306e\u7dda\u306e\u63cf\u753b\u306e\u307f\u304c\u5fc5\u8981\u3067\u6c34\u5e73\u65b9\u5411\u306e\u5ea7\u6a19\u8a2d\u5b9a\u304c\u4e0d\u8981\u306a\u5834\u5408\u306b\u30b3\u30fc\u30c9\u306e\u8a18\u8ff0\u3092\u30b7\u30f3\u30d7\u30eb\u306b\u3057\u307e\u3059": 175, "\u306e\u5f15\u6570\u6307\u5b9a\u306e\u307f\u5fc5\u8981\u3068\u3057\u307e\u3059": 175, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fy": 175, "50\u306e\u5ea7\u6a19\u304b\u3089y": 175, "150\u306e\u5ea7\u6a19\u306b\u5411\u3051\u3066\u5782\u76f4\u306e\u76f4\u7dda\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 175, "path_vertical_basic_usag": 175, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306frelative\u306e\u8a2d\u5b9a\u3092\u3057\u3066\u73fe\u5728\u306e\u5ea7\u6a19\u304b\u3089\u5782\u76f4\u65b9\u5411\u306b50px\u4e0b\u306e\u4f4d\u7f6e\u306b\u76f4\u7dda\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 175, "path_vertical_rel": 175, "svg\u306e\u5782\u76f4\u65b9\u5411\u3078\u306e\u7dda": 175, "\u30af\u30e9\u30b9\u306f2\u6b21\u5143\u306e\u5ea7\u6a19\u5024\u3092\u6271\u3046\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30af\u30e9\u30b9\u3067": 176, "x\u5ea7\u6a19\u3068y\u5ea7\u6a19\u3092\u6271\u3044\u307e\u3059": 176, "\u30af\u30e9\u30b9\u306a\u3069\u306e\u4e00\u90e8\u306e\u30af\u30e9\u30b9\u3067\u4f7f\u7528\u3055\u308c": 176, "\u5404\u9802\u70b9\u5ea7\u6a19\u306e\u8a2d\u5b9a\u7528\u306b\u53c2\u7167\u3055\u308c\u307e\u3059": 176, "\u306e\u5404\u5f15\u6570\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 176, "\u5404\u5f15\u6570\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 176, "\u306e\u5024\u304b\u3082\u3057\u304f\u306fapysc\u306e": 176, "point_1": 176, "point_2": 176, "\u306e\u5c5e\u6027\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b": 176, "\u5c5e\u6027\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b": 176, "\u578b\u306e\u5024\u3092\u4f7f\u3063\u3066\u5024\u3092\u66f4\u65b0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 176, "\u306e\u5024\u306e\u30ea\u30b9\u30c8\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 176, "\u305d\u306e\u305f\u3081\u3053\u306e\u7bc0\u3067\u306f\u305d\u306e\u63cf\u753b\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3088\u308b": 176, "\u30af\u30e9\u30b9\u3092\u4f7f\u3063\u305f\u30b3\u30fc\u30c9\u4f8b\u3092\u8f09\u305b\u3066\u3044\u307e\u3059": 176, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f3\u70b9\u306e\u5ea7\u6a19\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u4e09\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u63cf\u753b\u3057\u3066\u3044\u307e\u3059": 176, "point2d_basic_usag": 176, "2\u6b21\u5143\u306e\u5ea7\u6a19\u5024\u3092\u6271\u3046\u30af\u30e9\u30b9\u3067\u3059": 176, "x\u5ea7\u6a19\u306e\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 176, "y\u5ea7\u6a19\u306e\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3059": 176, "\u30af\u30e9\u30b9\u306f\u591a\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 177, "\u306e\u30ea\u30b9\u30c8\u306e\u5f15\u6570\u306e\u6307\u5b9a\u304c\u5fc5\u8981\u3068\u306a\u308a\u307e\u3059": 177, "polygon_basic_usag": 177, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3046\u5f62\u3067\u3082\u591a\u89d2\u5f62\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 177, "polygon_x": 177, "polygon_i": 177, "polygon_fill_color": 177, "polygon_fill_alpha": 177, "polygon_line_color": 177, "polygon_line_alpha": 177, "polygon_line_thick": 177, "polygon_line_dot_set": 177, "polygon_line_dash_set": 177, "polygon_line_round_dot_set": 177, "polygon_line_dash_dot_set": 177, "polygon_rotation_around_cent": 177, "polygon_set_rotation_around_point": 177, "polygon_scale_x_from_cent": 177, "polygon_scale_y_from_cent": 177, "polygon_scale_x_from_point": 177, "polygon_scale_y_from_point": 177, "polygon_flip_x": 177, "polygon_flip_i": 177, "polygon_skew_x": 177, "polygon_skew_i": 177, "\u591a\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 177, "\u3053\u306e\u30af\u30e9\u30b9\u306fpolyline\u30af\u30e9\u30b9\u3068\u4f3c\u3066\u3044\u307e\u3059\u304c": 177, "polyline\u30af\u30e9\u30b9\u3068\u306f\u7570\u306a\u308a\u3053\u306e\u30af\u30e9\u30b9\u3067\u306f\u5ea7\u6a19\u306e\u7d42\u70b9\u3068\u59cb\u70b9\u304c\u63a5\u7d9a\u3055\u308c\u308b\u70b9\u304c\u7570\u306a\u308a\u307e\u3059": 177, "\u591a\u89d2\u5f62\u306e\u5404\u9802\u70b9\u306e\u5ea7\u6a19\u306e\u30ea\u30b9\u30c8": 177, "\u30af\u30e9\u30b9\u306f\u6298\u308c\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 178, "\u30af\u30e9\u30b9\u306f\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b": 178, "\u306e\u30ea\u30b9\u30c8\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 178, "polyline_basic_usag": 178, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3046\u5f62\u3067\u3082\u6298\u308c\u7dda\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 178, "polyline_x": 178, "polyline_i": 178, "polyline_fill_color": 178, "polyline_fill_alpha": 178, "polyline_line_color": 178, "polyline_line_alpha": 178, "polyline_line_thick": 178, "polyline_line_dot_set": 178, "polyline_line_dash_set": 178, "polyline_line_round_dot_set": 178, "polyline_line_dash_dot_set": 178, "polyline_rotation_around_cent": 178, "polyline_set_rotation_around_point": 178, "polyline_scale_x_from_cent": 178, "polyline_scale_y_from_cent": 178, "polyline_scale_x_from_point": 178, "polyline_scale_y_from_point": 178, "polyline_flip_x": 178, "polyline_flip_i": 178, "polyline_skew_x": 178, "polyline_skew_i": 178, "\u6298\u308c\u7dda\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 178, "\u7dda\u306e\u5ea7\u6a19\u306e\u30ea\u30b9\u30c8": 178, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306fapysc\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u6700\u521d\u306e\u4e00\u6b69\u3068\u3057\u3066\u306e\u8af8\u3005\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 179, "apysc\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u3046\u306b\u306fpython3": 179, "7\u3082\u3057\u304f\u306f\u305d\u308c\u4ee5\u964d\u306epython\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u5fc5\u8981\u3067\u3059": 179, "apysc\u306fpip\u306e\u30b3\u30de\u30f3\u30c9\u3092\u4f7f\u3063\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 179, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306fapysc\u306e\u5404\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8868\u793a\u3059\u308b\u9818\u57df\u3068\u306a\u308b\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u3059": 179, "\u5e45\u306e\u8a2d\u5b9a\u3068\u3057\u3066\u306e": 179, "\u9ad8\u3055\u306e\u8a2d\u5b9a\u3068\u3057\u3066\u306e": 179, "\u305d\u3057\u3066\u80cc\u666f\u8272\u3068\u3057\u3066\u306e": 179, "\u5f15\u6570\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 179, "\u3055\u3089\u306b": 179, "\u7d50\u679c\u306ehtml\u3068javascript\u306e\u30d5\u30a1\u30a4\u30eb\u3092": 179, "\u95a2\u6570\u306b\u3088\u3063\u3066\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 179, "\u3053\u306e\u30b1\u30fc\u30b9\u3067\u306f\u307e\u3060\u9ed2\u3044\u80cc\u666f\u306e\u30b9\u30c6\u30fc\u30b8\u304c\u8868\u793a\u3055\u308c\u308b\u3060\u3051\u3067\u3059": 179, "quick_start_stage_cr": 179, "\u3053\u306e\u30b3\u30fc\u30c9\u3067\u306f": 179, "\u5f15\u6570\u306b\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u7d50\u679c\u306ehtml\u3068javascript\u306e\u5404\u30d5\u30a1\u30a4\u30eb\u3092\u751f\u6210\u3057\u307e\u3059": 179, "\u306e\u30d5\u30a1\u30a4\u30eb": 179, "\u3092\u958b\u304f\u3053\u3068\u3067\u51fa\u529b\u7d50\u679c\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 179, "\u30af\u30e9\u30b9\u306f\u5404\u8868\u793a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30b3\u30f3\u30c6\u30ca\u3068\u306a\u308b\u30af\u30e9\u30b9\u3067\u3042\u308a": 179, "\u5c5e\u6027\u3092\u4f7f\u3063\u3066\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 179, "vector": 179, "quick_start_sprite_graph": 179, "\u30af\u30e9\u30b9\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": 179, "\u95a2\u6570\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u3066\u3044\u304d\u307e\u3059": 180, "\u95a2\u6570\u306f": [180, 228], "\u578b\u306e\u6307\u5b9a\u306e\u7bc4\u56f2\u306e\u914d\u5217\u3092\u4f5c\u6210\u3057\u307e\u3059": 180, "\u3082\u3057\u3082\u5f15\u6570\u30921\u3064\u3060\u3051\u6307\u5b9a\u3057\u305f\u5834\u5408": 180, "\u7bc4\u56f2\u306e\u914d\u5217\u306f0\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u5f15\u6570\u306e\u5024\u3092": 180, "1\u3057\u305f\u7bc4\u56f2\u306b\u306a\u308a\u307e\u3059": 180, "range_arr": 180, "range_basics_usage_1": 180, "\u3082\u30572\u3064\u306e\u5f15\u6570\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u7bc4\u56f2\u306e\u914d\u5217\u306f\u6700\u521d\u306e\u5f15\u6570\u306e\u5024": 180, "2\u3064\u76ee\u306e\u5f15\u6570\u306e\u5024\u3092": 180, "range_basics_usage_2": 180, "\u3082\u30573\u3064\u5f15\u6570\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u7bc4\u56f2\u306e\u914d\u5217\u306f\u6700\u521d\u306e\u5f15\u6570\u306e\u5024": 180, "1\u3057\u305f\u7bc4\u56f2\u3068\u306a\u308a": 180, "\u5404\u5024\u306f3\u3064\u76ee\u306b\u6307\u5b9a\u3055\u308c\u305f\u5f15\u6570\u306e\u5024\u306e\u30b9\u30c6\u30c3\u30d7\u3067\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 180, "range_basics_usage_3": 180, "arg": [180, 228], "\u6574\u6570\u306e\u6307\u5b9a\u7bc4\u56f2\u306e\u914d\u5217\u3092\u751f\u6210\u3057\u307e\u3059": 180, "\u751f\u6210\u3055\u308c\u305f\u914d\u5217": 180, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306fmypy\u3084pyl": 181, "pyright": 181, "\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306e\u30c1\u30a7\u30c3\u30af\u7528\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 181, "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306fmypy\u3068pyl": 181, "\u306e\u578b\u30c1\u30a7\u30c3\u30af\u306e\u5404\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 181, "\u305d\u306e\u305f\u3081apysc\u3092\u4f7f\u3063\u305f\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u306f\u3053\u308c\u3089\u306e2\u3064\u306e": 181, "\u3044\u305a\u308c\u304b\u3082\u3057\u304f\u306f\u4e21\u65b9\u306e": 181, "\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u4f7f\u7528\u304c\u76f8\u6027\u304c\u826f\u304f\u5411\u3044\u3066\u3044\u307e\u3059": 181, "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f": [181, 186], "\u306e\u5f15\u6570\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u3066mypy\u306emisc": 181, "miscellan": 181, "\u306e\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9\u306e\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3057\u3066\u3044\u307e\u3059": 181, "\u3053\u306e\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9\u306f\u591a\u304f\u306e\u30a8\u30e9\u30fc\u3092apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u4e0a\u3067\u767a\u751f\u3055\u305b\u307e\u3059\u304c": 181, "\u5927\u534a\u306f\u7121\u5bb3\u306a\u30a8\u30e9\u30fc\u3068\u306a\u308b\u305f\u3081apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u3053\u308c\u3089\u3092\u7121\u8996\u3059\u308b\u5f62\u3067\u958b\u767a\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 181, "issu": 181, "decor": [181, 216], "1362": 181, "\u30af\u30e9\u30b9\u306f\u56db\u89d2\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 182, "\u306e\u5f15\u6570\u6307\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 182, "rectangle_basic_usag": 182, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u3082\u56db\u89d2\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 182, "rectangle_i": 182, "rectangle_width": 182, "rectangle_height": 182, "\u5c5e\u6027\u3067\u306f\u56db\u89d2\u306e\u89d2\u4e38\u306e\u5e45\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 182, "rectangle_ellipse_width": 182, "\u5c5e\u6027\u3067\u306f\u56db\u89d2\u306e\u89d2\u4e38\u306e\u9ad8\u3055\u306e\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 182, "rectangle_ellipse_height": 182, "rectangle_fill_color": 182, "rectangle_fill_alpha": 182, "rectangle_line_color": 182, "rectangle_line_alpha": 182, "rectangle_line_thick": 182, "rectangle_line_dot_set": 182, "rectangle_line_dash_set": 182, "rectangle_line_round_dot_set": 182, "rectangle_line_dash_dot_set": 182, "rectangle_rotation_around_cent": 182, "rectangle_set_rotation_around_point": 182, "rectangle_scale_x_from_cent": 182, "rectangle_scale_y_from_cent": 182, "rectangle_scale_x_from_point": 182, "rectangle_scale_y_from_point": 182, "rectangle_flip_x": 182, "rectangle_flip_i": 182, "rectangle_skew_x": 182, "rectangle_skew_i": 182, "\u56db\u89d2\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059": 182, "lext_x": 183, "\u3068\u3044\u3063\u305f\u56db\u89d2\u306e\u5e7e\u4f55\u5b66": 183, "\u5ea7\u6a19\u3084\u30b5\u30a4\u30ba\u306a\u3069": 183, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3061\u307e\u3059": 183, "\u591a\u304f\u306e\u30b1\u30fc\u30b9\u3067\u306f": 183, "apysc\u304c\u5185\u90e8\u3067": 183, "\u30af\u30e9\u30b9\u3092\u521d\u671f\u5316\u3057\u307e\u3059": 183, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057": 183, "\u4e14\u3064\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u56db\u89d2\u306e\u5e7e\u4f55\u5b66\u306e\u30c7\u30fc\u30bf": 183, "\u30d0\u30a6\u30f3\u30c7\u30a3\u30f3\u30b0\u30dc\u30c3\u30af\u30b9": 183, "\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 183, "text_1": 183, "rectangle_geom_basic_usag": 183, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u5404\u5c5e\u6027\u306e\u5ea7\u6a19\u3092\u8868\u793a\u3057\u3066\u3044\u307e\u3059": 183, "point_radiu": 183, "ae59e3": 183, "right_x_and_top_y_circl": 183, "right_x_and_top_y_text": 183, "726efa": 183, "left_x_and_bottom_y_circl": 183, "left_x_and_bottom_y_text": 183, "6eaee6": 183, "right_x_and_bottom_y_circl": 183, "right_x_and_bottom_y_text": 183, "center_x_and_center_y_circl": 183, "center_x_and_center_y_text": 183, "rectangle_geom_each_attribute_point": 183, "\u56db\u89d2\u306e\u5e7e\u4f55\u5b66\u60c5\u5831\u3092\u6271\u3046\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 183, "\u56db\u89d2\u306e\u5de6\u7aef\u306ex\u5ea7\u6a19": 183, "\u56db\u89d2\u306e\u4e2d\u592e\u306ex\u5ea7\u6a19": 183, "\u56db\u89d2\u306e\u53f3\u7aef\u306ex\u5ea7\u6a19": 183, "\u56db\u89d2\u306e\u4e0a\u7aef\u306ey\u5ea7\u6a19": 183, "\u56db\u89d2\u306e\u4e2d\u592e\u306ey\u5ea7\u6a19": 183, "\u56db\u89d2\u306e\u4e0b\u7aef\u306ey\u5ea7\u6a19": 183, "\u56db\u89d2\u306e\u5de6\u7aef\u306ex\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u4e2d\u592e\u306ex\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u53f3\u7aef\u306ex\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u4e0a\u7aef\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u4e2d\u592e\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u4e0b\u7aef\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u5e45\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u5e45\u306e\u5024": 183, "\u56db\u89d2\u306e\u9ad8\u3055\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 183, "\u56db\u89d2\u306e\u9ad8\u3055\u306e\u5024": 183, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u30b3\u30f3\u30c6\u30ca\u306e\u5404\u30af\u30e9\u30b9\u306e": 185, "\u30e1\u30bd\u30c3\u30c9\u306f\u30b3\u30f3\u30c6\u30ca\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u5168\u3066\u306e\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 185, "\u3044\u305a\u308c\u304b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u5834\u5408": 185, "\u30e1\u30bd\u30c3\u30c9\u304c\u547c\u3070\u308c\u5168\u3066\u306e\u5b50\u304c\u53d6\u308a\u9664\u304b\u308c\u307e\u3059": 185, "remove_children_basic_usag": 185, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304b\u3089\u5168\u3066\u306e\u5b50\u8981\u7d20\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 185, "\u30af\u30e9\u30b9\u3092\u5404\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u3068\u540c\u3058\u3088\u3046\u306a\u7406\u7531\u3067\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 186, "\u30af\u30e9\u30b9\u306fjavascript\u306e": 186, "\u306e\u30b3\u30fc\u30c9\u306e\u3088\u3046\u306b\u632f\u308b\u821e\u3044\u307e\u3059": 186, "\u5f93\u3063\u3066": 186, "\u3053\u306e\u30af\u30e9\u30b9\u306f\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9\u5185\u306e\u30b9\u30b3\u30fc\u30d7\u3067\u306e\u307f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 186, "\u306a\u3069\u306e\u6761\u4ef6\u5206\u5c90\u306e\u8a18\u8ff0\u5185\u306a\u3069\u3067\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 186, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u305f\u3073\u306b\u5857\u308a\u306e\u8272\u3092\u5909\u66f4\u3057\u3066\u3044\u307e\u3059": 186, "\u3067\u306e\u5206\u5c90\u5185\u3067\u306f": 186, "\u30af\u30e9\u30b9\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u305f\u3081": 186, "1\u56de\u306e\u30af\u30ea\u30c3\u30af\u3067\u306f1\u56de\u306e\u8272\u5909\u66f4\u306e\u307f\u884c\u308f\u308c\u307e\u3059": 186, "00ffaa": [143, 186], "return_basic_usag": 186, "\u306e\u30b3\u30fc\u30c9\u8868\u73fe\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 186, "\u3053\u306e\u30af\u30e9\u30b9\u306f\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u3067\u306e\u307f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 186, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fhtml\u3068javascript\u5168\u4f53\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u51fa\u529b\u3057\u307e\u3059": 187, "apysc\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u6700\u5f8c\u3067html\u306a\u3069\u3092\u51fa\u529b\u3059\u308b\u305f\u3081\u306b\u3053\u306e\u95a2\u6570\u306e\u547c\u3073\u51fa\u3057\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 187, "\u95a2\u6570\u3067\u306f\u6700\u4f4e\u9650": 187, "\u3053\u306e\u5f15\u6570\u306fhtml\u3068javascript\u306e\u5404\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u529b\u5148\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3068\u306a\u308a\u307e\u3059": 187, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306fhtml\u3068javascript\u306e\u5404\u30d5\u30a1\u30a4\u30eb\u51fa\u529b\u3057\u3066\u3044\u307e\u3059": 187, "\u51fa\u529b\u3057\u305fhtml\u3067\u306f\u7e26\u6a2a150px\u306e\u7a7a\u306e\u30b9\u30c6\u30fc\u30b8\u306e\u307f\u8868\u793a\u3055\u308c\u308b\u3088\u3046\u306b\u3057\u3066\u3042\u308a\u307e\u3059": 187, "save_overall_html_interface_basic_usag": 187, "\u4e0a\u8a18\u306e\u30b3\u30fc\u30c9\u3067\u306f": 187, "\u306e\u30d1\u30b9\u306bhtml\u30d5\u30a1\u30a4\u30eb\u3084\u4ed6\u306ejavascript\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u30d5\u30a1\u30a4\u30eb\u304c\u51fa\u529b\u3055\u308c\u307e\u3059": 187, "\u95a2\u6570\u306b\u306f": 187, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5f15\u6570\u304c\u5b58\u5728\u3057\u307e\u3059": 187, "\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306ftrue\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 187, "\u3053\u306e\u8a2d\u5b9a\u306f\u3082\u3057true\u306b\u306a\u3063\u3066\u3044\u304d\u308c\u3070\u51fa\u529b\u7d50\u679c\u306ehtml\u3092\u6700\u5c0f\u5316": 187, "false\u306e\u8a2d\u5b9a\u306f\u30c7\u30d0\u30c3\u30b0\u6642\u306a\u3069\u306b\u4fbf\u5229\u306a\u6642\u304c\u3042\u308a\u307e\u3059": 187, "dest_dir": 187, "\u3082\u3057\u3082javascript\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u30d1\u30b9\u3092\u8abf\u6574\u3057\u305f\u3044\u5834\u5408": 187, "js_lib_dir_path": 187, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u306a\u308b\u5f15\u6570\u3067\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 187, "\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u51fa\u529b\u3055\u308c\u305fhtml": 187, "\u5185\u306ejavascript\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30d1\u30b9\u6307\u5b9a\u3092\u4e0a\u66f8\u304d\u3057\u307e\u3059": 187, "\u3053\u306e\u8a2d\u5b9a\u306f\u4f8b\u3048\u3070django\u306e\u3088\u3046\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u9759\u7684\u30d5\u30a1\u30a4\u30eb\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b\u5f62\u3067javascript\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u3066html\u3092\u51fa\u529b\u3057\u305f\u3044\u5834\u5408\u306a\u3069\u306b\u5f79\u7acb\u3064\u6642\u304c\u3042\u308a\u307e\u3059": 187, "skip_js_lib_export": 187, "\u306e\u5f15\u6570\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3082\u65e2\u306b\u51fa\u529b\u6e08\u307f\u306ejavascript\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u51fa\u529b\u3092\u7701\u7565\u3057\u305f\u3044\u5834\u5408\u306b\u5f79\u7acb\u3061\u307e\u3059": 187, "\u3053\u306e\u8a2d\u5b9a\u3092\u6709\u52b9\u306b\u3059\u308b\u3068javascript\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u51fa\u529b\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3059": 187, "static": 187, "j": 187, "\u73fe\u5728\u306e\u5b9f\u88c5\u3067\u306f": 187, "\u306e\u8a2d\u5b9a\u3067\u306fjavascript\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u529b\u5148\u306f\u5909\u66f4\u3055\u308c\u307e\u305b\u3093": 187, "\u51fa\u529b\u3055\u308c\u308bhtml\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3092\u5909\u66f4\u3057\u305f\u3044\u5834\u5408\u306b\u306f": 187, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 187, "\u3053\u306e\u5f15\u6570\u306fhtml\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3092": 187, "\u304b\u3089\u4efb\u610f\u306e\u4ed6\u306e\u540d\u524d\u306b\u5909\u66f4\u3057\u307e\u3059": 187, "chart": 187, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5f15\u6570\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u3067": 187, "\u51fa\u529b\u7d50\u679c\u306ehtml\u5185\u306b\u5404javascript\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u5bb9\u3092\u542b\u3081\u3066\u307e\u3068\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 187, "\u3053\u306e\u8a2d\u5b9a\u306f\u4ed6\u306e\u30e1\u30f3\u30d0\u30fc\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u5171\u6709\u3059\u308b\u5834\u5408\u306a\u3069\u306b1\u3064\u306e\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u3067\u6271\u3046\u3053\u3068\u304c\u3067\u304d\u4fbf\u5229\u306a\u6642\u304c\u3042\u308a\u307e\u3059": 187, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5f15\u6570\u306f\u30d5\u30a1\u30a4\u30eb\u51fa\u529b\u6642\u306e\u6a19\u6e96\u51fa\u529b\u306e\u6319\u52d5\u3092\u5909\u66f4\u3057\u307e\u3059": 187, "\u3082\u3057\u30820\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u6a19\u6e96\u51fa\u529b\u306b\u4f55\u3082\u8868\u793a\u3057\u306a\u304f\u306a\u308a\u307e\u3059": 187, "1\u3082\u3057\u304f\u306f\u4ed6\u306e\u5024\u3092\u6307\u5b9a\u3059\u308c\u3070apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u306f\u6a19\u6e96\u51fa\u529b\u3092\u8868\u793a\u3057\u307e\u3059": 187, "\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9\u4ee5\u4e0b\u306bhtml\u3068javascript\u306e\u30d5\u30a1\u30a4\u30eb\u5168\u4f53\u3092\u51fa\u529b\u3057\u307e\u3059": 187, "\u5404html\u3068javascript\u30d5\u30a1\u30a4\u30eb\u306e\u4fdd\u5b58\u5148\u3068\u306a\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9": 187, "html\u3068javascript\u306e\u5185\u5bb9\u3092\u6700\u5c0f\u5316": 187, "javascript\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30d1\u30b9\u306e\u8a2d\u5b9a": 187, "\u3053\u306e\u8a2d\u5b9a\u306fhtml\u5185\u306ejavascript\u306e\u30b3\u30fc\u30c9\u306e\u30d1\u30b9\u306e\u6307\u5b9a\u90e8\u5206\u306b\u5f71\u97ff\u3057\u307e\u3059": 187, "\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306b\u306fhtml\u3068\u540c\u3058\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 187, "\u3053\u306e\u8a2d\u5b9a\u306fdjango\u306e\u3088\u3046\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u9759\u7684\u30d5\u30a1\u30a4\u30eb\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306a\u3069\u306b\u4fbf\u5229\u306a\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 187, "\u3082\u3057\u3053\u306e\u5f15\u6570\u304c\u8a2d\u5b9a\u3055\u308c\u305f\u5834\u5408\u306b\u306f": 187, "\u306e\u8a2d\u5b9a\u3082\u6709\u52b9\u306b\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059": 187, "true\u304c\u8a2d\u5b9a\u3055\u308c\u305f\u5834\u5408": 187, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fjavascript\u306e\u5404\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u51fa\u529b\u3057\u306a\u304f\u306a\u308a\u307e\u3059": 187, "\u5404javascript\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u51fa\u529b\u3055\u308c\u308bhtml\u5185\u306b\u57cb\u3081\u8fbc\u3080\u304b\u3069\u3046\u304b\u306e\u8a2d\u5b9a\u3067\u3059": 187, "\u3082\u3057true\u304c\u8a2d\u5b9a\u3055\u308c\u305f\u5834\u5408": 187, "\u51fa\u529b\u3055\u308c\u308bhtml\u306f\u5927\u304d\u304f\u306a\u308a": 187, "\u305d\u3057\u30661\u3064\u306ehtml\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u51fa\u529b\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 187, "\u3053\u306e\u8a2d\u5b9a\u306f\u51fa\u529b\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092iframe\u30bf\u30b0\u3067\u4f7f\u3046\u969b\u306bcors\u306e\u30a8\u30e9\u30fc\u3092\u56de\u907f\u3057\u305f\u3044\u6642\u306a\u3069\u306b\u5f79\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 187, "\u30ed\u30ae\u30f3\u30b0": 187, "\u30ed\u30b0\u8868\u793a": 187, "\u306e\u8a2d\u5b9a\u3067\u3059": 187, "0\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": 187, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30ed\u30b0\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u8868\u793a\u3057\u306a\u304f\u306a\u308a\u307e\u3059": 187, "1\u3082\u3057\u304f\u306f\u4ed6\u306e\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": 187, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30ed\u30b0\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u901a\u5e38\u901a\u308a\u8868\u793a\u3057\u307e\u3059": 187, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f\u51fa\u529b\u5148\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u51fa\u529b\u524d\u306b\u7a7a\u306b\u3057\u307e\u3059": 187, "tmp": [187, 233], "output": 187, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u9023\u7d9a\u3055\u305b\u3066\u518d\u751f\u3059\u308b\u65b9\u6cd5\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 188, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u9023\u7d9a\u3057\u3066\u547c\u3073\u51fa\u3057\u305f\u5834\u5408": 188, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306f\u9806\u756a\u306b\u30b9\u30bf\u30fc\u30c8\u3057\u307e\u3059": 188, "\u6700\u521d\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u304c\u7d42\u308f\u3063\u305f\u3089\u6b21\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u518d\u751f\u304c\u30b9\u30bf\u30fc\u30c8\u3058\u307e\u3059": 188, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f4\u3064\u306e\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 188, "\u3053\u308c\u3089\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306f\u540c\u6642\u306b\u306f\u30b9\u30bf\u30fc\u30c8\u3057\u307e\u305b\u3093": 188, "sequential_animation_example_1": 188, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u7d42\u4e86\u6642\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u3066\u9023\u7d9a\u3057\u305f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 188, "\u3082\u3057\u3082\u8907\u6570\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u540c\u6642\u306b\u518d\u751f\u3057\u305f\u3044\u5834\u5408": 188, "\u4ee5\u4e0b\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u304a\u4f7f\u3044\u304f\u3060\u3055\u3044": 188, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u8a2d\u5b9a\u3092\u6709\u52b9\u5316\u3057\u307e\u3059": 189, "\u3053\u306e\u8a2d\u5b9a\u306f\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u60c5\u5831": 189, "python\u4e0a\u306e\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306e\u547c\u3073\u51fa\u3057\u3068\u5f15\u6570\u60c5\u5831\u306a\u3069": 189, "\u3092\u51fa\u529b\u3055\u308c\u308bhtml\u4e0a\u306b\u8ffd\u52a0\u3057\u307e\u3059": 189, "\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u8a2d\u5b9a\u306f\u591a\u304f\u306e\u60c5\u5831\u3092html\u4e0a\u306b\u8ffd\u52a0\u3057\u307e\u3059": 189, "\u7d50\u679c\u3068\u3057\u3066\u51fa\u529b\u6642\u9593\u306f\u9577\u304f\u306a\u308a": 189, "\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba\u3082\u5927\u304d\u304f\u306a\u308a\u307e\u3059": 189, "html\u6700\u5c0f\u5316": 189, "\u306e\u8a2d\u5b9a\u3082\u7121\u8996\u3057\u307e\u3059": 189, "\u30b9\u30c6\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5f8c\u3067\u3042\u308c\u3070": 189, "\u95a2\u6570\u3092\u4f7f\u3063\u3066\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u3092\u8a2d\u5b9a\u305a\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 189, "set_debug_mode_basic_usag": 189, "\u3053\u306e\u8a2d\u5b9a\u306f\u4ee5\u4e0b\u306e\u4f8b\u306e\u7528\u306b\u51fa\u529b\u3055\u308c\u305fhtml\u5185\u306bpython\u306e\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306e\u547c\u3073\u51fa\u3057\u3084\u305d\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u3084\u30af\u30e9\u30b9\u540d": 189, "\u5f15\u6570\u60c5\u5831\u306a\u3069\u306ejavascript\u306e\u30b3\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0\u3057\u307e\u3059": 189, "_append_constructor_express": 189, "var": [189, 232, 233], "sp_1": [189, 232], "nest": [189, 232], "html\u3068javascript\u306e\u30c7\u30d0\u30c3\u30b0\u7528\u306b\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": 189, "\u3082\u3057\u3053\u306e\u95a2\u6570\u3092\u547c\u3073\u51fa\u3057\u305f\u5834\u5408": 189, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4ee5\u4e0b\u306e\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 189, "html\u306e\u6700\u5c0f\u5316": 189, "\u8a2d\u5b9a\u3092\u7121\u52b9\u5316\u3057\u307e\u3059": 189, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3054\u3068\u306ejavascript\u4e0a\u3067\u306e\u533a\u5207\u308a\u306e\u305f\u3081\u306e\u6587\u5b57\u5217\u3092\u8ffd\u52a0\u3057\u307e\u3059": 189, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30b3\u30f3\u30c6\u30ca\u3067\u3059": 190, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u6301\u3061": 190, "\u5404\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u3092\u63cf\u753b\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 190, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u81ea\u52d5\u7684\u306b\u30b9\u30c6\u30fc\u30b8\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3059": 190, "\u306a\u3069\u306e\u95a2\u9023\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u547c\u3073\u51fa\u3059\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093": 190, "\u3082\u3057\u4ed6\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b": 190, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8ffd\u52a0\u3057\u305f\u3044\u3068\u5834\u5408": 190, "\u624b\u52d5\u3067": 190, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f": 190, "\u305d\u308c\u3092\u4f7f\u3063\u3066\u5404\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u3092\u63cf\u753b\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 190, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u306f\u6c34\u8272\u306e\u56db\u89d2\u3092\u63cf\u753b\u3057\u307e\u3059": 190, "sprite_graphics_attribut": 190, "\u8a73\u7d30\u306f\u4ee5\u4e0b\u306e": 190, "\u30af\u30e9\u30b9\u306e\u95a2\u9023\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u3054\u89a7\u304f\u3060\u3055\u3044": 190, "\u7dda\u8a2d\u5b9a": 190, "\u56db\u89d2\u63cf\u753b": 190, "\u5186\u63cf\u753b": 190, "\u30af\u30e9\u30b9\u306f\u30b3\u30f3\u30c6\u30ca\u3067\u3042\u308a": 190, "\u305d\u306e\u5ea7\u6a19\u3092\u79fb\u52d5\u3055\u305b\u308b\u3068\u540c\u6642\u306b\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5ea7\u6a19\u3082\u5909\u66f4\u3055\u308c\u307e\u3059": 190, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068sprite\u306ey\u5ea7\u6a19\u304c\u5909\u5316\u3057\u307e\u3059": 190, "\u5b50\u306e\u5404\u56db\u89d2\u5f62\u304c\u4e00\u901a\u308a\u79fb\u52d5\u3057\u307e\u3059": 190, "sprite_move_instances_simultan": 190, "\u4ee5\u964d\u306e\u30da\u30fc\u30b8\u3067\u306f": 190, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306a\u3069": 190, "sprite\u30af\u30e9\u30b9\u306e\u4ed6\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u3066\u3044\u304d\u307e\u3059": 190, "\u5b50\u306e\u4ef6\u6570\u5c5e\u6027": [190, 191], "\u7279\u5b9a\u4f4d\u7f6e\u306e\u5b50\u306e\u53d6\u5f97\u51e6\u7406": [190, 191], "\u89aa\u306b\u306a\u308b\u3053\u3068\u306e\u51fa\u6765\u308b\u57fa\u672c\u7684\u306a\u8868\u793a\u7528\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f5c\u6210\u3057\u307e\u3059": 190, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e": 190, "javascript\u4e0a\u306a\u3069\u3067\u4f7f\u308f\u308c\u308b": 190, "\u5909\u6570\u540d\u306e\u8a2d\u5b9a\u5024": 190, "apysc\u306e\u5185\u90e8\u5b9f\u88c5\u3067": 190, "\u30af\u30e9\u30b9\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u3092\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316\u3059\u308b\u6642\u4ee5\u5916\u306f\u8a2d\u5b9a\u306f\u4e0d\u8981\u3067\u3059": 190, "rect": [190, 233], "\u30af\u30e9\u30b9\u306fapysc\u306b\u304a\u3051\u308b\u63cf\u753b\u30a8\u30ea\u30a2\u5168\u4f53\u3092\u6271\u3046\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057": 191, "\u5404\u8981\u7d20\u3092\u683c\u7d0d\u3057\u307e\u3059": 191, "apysc\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u6700\u521d\u3067": 191, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 191, "\u3053\u306e\u6642\u70b9\u3067\u5185\u90e8\u3067\u30c7\u30fc\u30bf\u3084\u30d5\u30a1\u30a4\u30eb\u306e\u53e4\u3044\u3082\u306e\u306e\u524a\u9664\u306a\u3069\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u4f5c\u6210\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u30b7\u30f3\u30d7\u30eb\u3067\u3059": 191, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5f15\u6570\u3092\u6301\u3063\u3066\u304a\u308a": 191, "\u3053\u306e\u5f15\u6570\u3067\u30b9\u30c6\u30fc\u30b8\u306e\u80cc\u666f\u8272\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 191, "stage_background_color": 191, "\u3053\u306e\u30b3\u30fc\u30c9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u9ed2\u80cc\u666f\u306e\u30b9\u30c6\u30fc\u30b8\u306ehtml\u3092\u751f\u6210\u3057\u307e\u3059": 191, "\u30af\u30e9\u30b9\u306f\u30b9\u30c6\u30fc\u30b8\u306e\u5e45\u3092\u8a2d\u5b9a\u3059\u308b": 191, "\u5f15\u6570\u3068\u30b9\u30c6\u30fc\u30b8\u306e\u9ad8\u3055\u3092\u8a2d\u5b9a\u3059\u308b": 191, "\u3053\u308c\u3089\u306e\u8a2d\u5b9a\u306f\u30b9\u30c6\u30fc\u30b8\u306e\u30b5\u30a4\u30ba\u3092\u5909\u66f4\u3057\u307e\u3059": 191, "stage_s": 191, "\u4e0a\u8a18\u306e\u30b3\u30fc\u30c9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6a2a\u9577\u306e\u30b9\u30c6\u30fc\u30b8\u3092\u4f5c\u6210\u3057\u307e\u3059": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u8981\u7d20\u306eid": 191, "html\u306eid": 191, "\u3082\u3057\u3082\u3053\u306e\u8a2d\u5b9a\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408": 191, "apysc\u306f\u30b9\u30c6\u30fc\u30b8\u751f\u6210\u6642\u306e\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7\u3084\u4e71\u6570\u306a\u3069\u3092\u30d9\u30fc\u30b9\u3068\u3057\u305f\u4e00\u610f\u306aid\u3092\u751f\u6210\u3057\u307e\u3059": 191, "stage_12345": 191, "line_chart_1": 191, "\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306fapysc\u306e\u5404\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u8907\u6570\u56de\u51fa\u529b\u306a\u3069\u3092\u884c\u3046\u969b\u306eid\u306e\u8b58\u5225\u3084\u30d0\u30fc\u30b8\u30e7\u30f3\u7ba1\u7406\u306a\u3069\u306e\u9762\u3067\u4fbf\u5229\u3067\u3059": 191, "\u95a2\u6570\u306f\u73fe\u5728\u751f\u6210\u6e08\u307f\u306e\u30b9\u30c6\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 191, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4ed6\u306e\u95a2\u6570\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u306a\u3069\u3067\u30b9\u30c6\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53c2\u7167\u3057\u305f\u3044\u5834\u5408\u306a\u3069\u306b\u4fbf\u5229\u306a\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 191, "my_stag": 191, "_other_funct": 191, "185": 191, "add_to": 191, "bodi": 191, "\u30b9\u30c6\u30fc\u30b8": 191, "\u63cf\u753b\u9818\u57df\u5168\u4f53": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u5e45": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u9ad8\u3055": 191, "16\u9032\u6570\u306e\u80cc\u666f\u8272\u306e\u6587\u5b57\u5217": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u8981\u7d20\u3092\u8ffd\u52a0\u5148\u3068\u306a\u308b\u8981\u7d20\u306e\u6307\u5b9a": 191, "\u4e00\u610f\u306e\u30bf\u30b0": 191, "\u3084id\u306e\u30bb\u30ec\u30af\u30bf": 191, "uniqu": 191, "elem": 191, "\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [191, 195], "\u30b9\u30c6\u30fc\u30b8\u306ehtml\u8981\u7d20\u306b\u8a2d\u5b9a\u3055\u308c\u308bid\u306e\u5c5e\u6027": 191, "graph": 191, "\u3082\u3057none\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408": 191, "\u4e71\u6570\u306a\u3069\u3092\u4f7f\u3063\u305f\u6570\u5024\u3092\u4f7f\u3063\u305f\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 191, "sales_chart": 191, "\u30b9\u30c6\u30fc\u30b8\u306ehtml\u8981\u7d20\u306eid\u3092\u53d6\u5f97\u3057\u307e\u3059": 191, "\u30b9\u30c6\u30fc\u30b8\u306ehtml\u8981\u7d20\u306eid": 191, "id\u7528\u306e": 191, "\u306e\u8a18\u53f7\u306a\u3069\u306f\u542b\u307e\u308c\u307e\u305b\u3093": 191, "\u65e2\u306b\u751f\u6210\u6e08\u307f\u306e\u30b9\u30c6\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u307e\u3059": 191, "\u5bfe\u8c61\u306e\u30b9\u30c6\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 191, "stagenotcreatederror": 191, "\u3082\u3057\u3082\u307e\u3060\u751f\u6210\u6e08\u307f\u306e\u30b9\u30c6\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408": 191, "\u30af\u30e9\u30b9\u306fapysc\u306e\u6587\u5b57\u5217\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 192, "\u3053\u306e\u30af\u30e9\u30b9\u306f\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u306e\u3088\u3046\u306b\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306e\u5f15\u6570\u306b": 192, "string_1": [192, 193, 195], "string_2": [192, 193, 195], "\u30af\u30e9\u30b9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f\u4ee5\u4e0b\u306e\u8cc7\u6599\u306a\u3069\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": 192, "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u5236\u5fa1": 192, "\u30af\u30e9\u30b9\u306e\u52a0\u7b97\u3068\u4e57\u7b97\u306e\u5236\u5fa1": 192, "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u304a\u3051\u308b\u6587\u5b57\u5217\u7528\u306e\u30af\u30e9\u30b9\u3067\u3059": 192, "\u6587\u5b57\u5217\u306e\u5024\u306e\u521d\u671f\u5024": 192, "world": [192, 193, 195, 206], "\u73fe\u5728\u306e\u6587\u5b57\u5217\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 192, "\u73fe\u5728\u306e\u6587\u5b57\u5217\u306e\u5024": 192, "\u30af\u30e9\u30b9\u306e\u52a0\u7b97\u3068\u4e57\u7b97\u306e\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 193, "\u30af\u30e9\u30b9\u306e\u52a0\u7b97\u306e\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": 193, "\u306f\u9023\u7d50\u3055\u308c\u305f": 193, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3082\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 193, "\u306e\u5024\u3068python\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 193, "\u306e\u5024\u306b\u3088\u308b\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u3082\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 193, "\u306e\u5024\u540c\u58eb\u306e\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u3082\u540c\u69d8\u3067\u3059": 193, "string_3": 193, "\u306e\u5024\u3068": 193, "\u306e\u5024\u306e\u5834\u5408": 193, "\u5de6\u5074\u3092": 193, "\u306e\u5024\u306b\u3059\u308b\u5834\u5408": 193, "\u306f\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093": 193, "\u4f8b\u3048\u3070\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 193, "must": 193, "\u30af\u30e9\u30b9\u306e\u4e57\u7b97\u306e\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": 193, "\u306fpython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u6587\u5b57\u5217\u306e\u3088\u3046\u306b\u5024\u3092\u7e70\u308a\u8fd4\u3057\u305f\u6587\u5b57\u5217\u3092\u8fd4\u5374\u3057\u307e\u3059": 193, "hellohellohello": 193, "\u578b\u306e\u5024\u3092\u53f3\u5074\u306e\u5024\u3068\u3057\u3066\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 193, "\u30e1\u30bd\u30c3\u30c9\u306f\u6587\u5b57\u5217\u306b\u5bfe\u3057\u3066\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u6700\u5927\u6841\u6570\u306e\u6761\u4ef6\u3092\u53cd\u6620\u3057\u307e\u3059": 194, "\u3082\u3057\u6587\u5b57\u5217\u304c": 194, "123": 194, "45678": 194, "\u3067\u5c0f\u6570\u70b9\u6570\u306e\u6700\u5927\u6841\u6570\u304c": 194, "\u3060\u3063\u305f\u5834\u5408": [194, 198], "456": 194, "\u306e\u6587\u5b57\u5217\u3092\u8fd4\u5374\u3057\u307e\u3059": 194, "\u3082\u3057\u3082\u6587\u5b57\u5217\u304c\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u306f\u306a\u3044\u5834\u5408": 194, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5143\u306e\u6587\u5b57\u5217\u3092\u305d\u306e\u307e\u307e\u8fd4\u5374\u3057\u307e\u3059": 194, "max_num_of_decimal_plac": 194, "\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u6700\u5927\u6841\u6570": 194, "\u578b": 194, "\u578b\u306e\u65b0\u3057\u3044\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 194, "origin": 194, "abc": 194, "string_apply_max_num_of_decimal_places_basic_usage_1": 194, "\u3053\u306e\u6587\u5b57\u5217\u306b\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u6700\u5927\u6841\u6570\u306e\u8a2d\u5b9a\u3092\u53cd\u6620\u3057\u307e\u3059": 194, "\u53cd\u6620\u5f8c\u306e\u6587\u5b57\u5217": 194, "\u306a\u3069\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 195, "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u306fpyhton\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 195, "\u578b\u306e\u6bd4\u8f03\u5bfe\u8c61\u306e\u5024": 195, "\u6bd4\u8f03\u306e\u53f3\u5074\u306e\u5024": 195, "\u672a\u6e80": 195, "\u4ee5\u4e0b": 195, "\u8d85\u904e": 195, "\u4ee5\u4e0a\u306e\u6bd4\u8f03\u306e\u51e6\u7406\u3092python\u30d3\u30eb\u30c8\u30a4\u30f3\u306e": 195, "\u306e\u5024\u306e\u3088\u3046\u306b": 195, "\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3092\u4f7f\u3063\u3066\u304a\u3053\u306a\u3092\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 195, "\u3054\u306e\u51e6\u7406\u306f\u65e5\u4ed8\u3084\u65e5\u6642\u306a\u3069\u306e\u6587\u5b57\u5217\u6bd4\u8f03\u306a\u3069\u3067\u5f79\u306b\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 195, "1970": 195, "06": 195, "04": 195, "\u5c5e\u6027\u306f\u6587\u5b57\u6570\u3092\u8fd4\u5374\u3057\u307e\u3059": 196, "abcdef": 196, "\u3068\u3044\u3046\u6587\u5b57\u5217\u3067\u306f6\u304c\u8fd4\u5374\u3055\u308c": 196, "\u3042\u3044\u3046\u3048\u304a": 196, "\u3068\u3044\u3046\u6587\u5b57\u5217\u3067\u306f5\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059": 196, "\u5c5e\u6027\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b": 196, "string_length_basic_usage_1": 196, "\u3053\u306e\u5c5e\u6027\u306funicode\u306e\u30b3\u30fc\u30c9\u30dd\u30a4\u30f3\u30c8\u6570\u3092\u30ab\u30a6\u30f3\u30c8\u3057\u3066\u3044\u308b\u305f\u3081": 196, "\u7d75\u6587\u5b57\u3092\u5bfe\u8c61\u3068\u3057\u305f\u5834\u5408\u306b\u60f3\u5b9a\u5916\u306e\u6587\u5b57\u5217\u3092\u8fd4\u5374\u3059\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 196, "\u5927\u534a\u306e\u7d75\u6587\u5b57\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u60f3\u5b9a\u901a\u308a\u306e\u6587\u5b57\u6570\u3068\u3057\u3066\u632f\u308b\u821e\u3044\u307e\u3059": 196, "string_length_notes_1": 196, "\u3057\u304b\u3057\u306a\u304c\u3089\u8907\u6570\u306e\u30b3\u30fc\u30c9\u30dd\u30a4\u30f3\u30c8\u3092\u6301\u3064\u7d75\u6587\u5b57\u306b\u95a2\u3057\u3066\u306f\u3053\u306e\u5c5e\u6027\u306f\u60f3\u5b9a\u5916\u306e\u6587\u5b57\u6570\u3092\u8fd4\u5374\u3057\u307e\u3059": 196, "\u3053\u308c\u306fpython\u3068\u540c\u3058\u3088\u3046\u306a\u6319\u52d5\u3092\u3057\u307e\u3059": 196, "string_length_notes_2": 196, "\u6587\u5b57\u306e\u9577\u3055": 196, "\u6587\u5b57\u6570": 196, "characters_length": 196, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u306e\u5de6\u7aef\u304b\u3089\u7a7a\u767d\u6587\u5b57\u3082\u3057\u304f\u306f\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57": 198, "\u3082\u3057\u304f\u306f\u6587\u5b57\u5217": [198, 202], "\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": [198, 199, 202], "\u30e1\u30bd\u30c3\u30c9\u306f\u7701\u7565\u53ef\u80fd\u306a": [198, 199, 202], "\u3082\u3057\u3082\u3053\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3057\u305f\u5834\u5408": [198, 202], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u7a7a\u767d\u6587\u5b57": 198, "\u30b9\u30da\u30fc\u30b9\u3084\u6539\u884c\u306a\u3069": 198, "\u3092\u6587\u5b57\u5217\u306e\u5de6\u7aef\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 198, "aabbaa": [198, 202], "string_lstrip_basic_usage_1": 198, "\u3082\u3057\u3082\u4f55\u3089\u304b\u306e\u6587\u5b57\u5217\u306e\u5024\u3092": 198, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u306e\u5de6\u7aef\u304b\u3089\u305d\u306e\u6587\u5b57": 198, "bbaa": 198, "string_lstrip_basic_usage_2": 198, "\u3053\u306e\u5024\u306e\u5de6\u7aef\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u3082\u3057\u304f\u6587\u5b57\u5217\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 198, "\u3053\u306e\u5024\u306e\u5de6\u7aef\u304b\u3089\u53d6\u308a\u9664\u304f\u6587\u5b57\u3082\u3057\u304f\u306f\u6587\u5b57\u5217": 198, "\u3082\u3057\u3082\u3053\u306e\u5f15\u6570\u304c\u306e\u5024\u304cnone": 198, "\u30c7\u30d5\u30a9\u30eb\u30c8": [198, 208, 209], "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u30b9\u30da\u30fc\u30b9\u3084\u6539\u884c\u306a\u3069\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": [198, 199, 202], "\u9664\u5916\u51e6\u7406\u5b9f\u884c\u5f8c\u306e\u6587\u5b57\u5217": [198, 199, 202], "aabbcc": [198, 199, 202], "aabbccaa": [198, 199, 202], "bbccaa": 198, "\u30e1\u30bd\u30c3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 199, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u306e\u53f3\u7aef\u304b\u3089\u7a7a\u767d\u6587\u5b57\u3082\u3057\u304f\u306f\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57": 199, "\u307e\u305f\u306f\u6587\u5b57\u5217": 199, "\u3082\u3057\u3053\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3057\u305f\u5834\u5408": [109, 199], "\u6587\u5b57\u5217\u306e\u53f3\u7aef\u304b\u3089\u7a7a\u767d\u6587\u5b57\u3084\u6539\u884c\u306a\u3069\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 199, "string_rstrip_basic_usage_1": 199, "\u5f15\u6570\u306b\u4f55\u3089\u304b\u306e\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": [199, 202], "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u306e\u53f3\u7aef\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u3082\u3057\u304f\u306f\u6587\u5b57\u5217\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 199, "string_rstrip_basic_usage_2": 199, "\u3053\u306e\u5024\u306e\u53f3\u7aef\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u3082\u3057\u304f\u306f\u6587\u5b57\u5217\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 199, "\u3053\u306e\u5024\u306e\u53f3\u7aef\u304b\u3089\u53d6\u308a\u9664\u304f\u6587\u5b57\u3082\u3057\u304f\u306f\u6587\u5b57\u5217": 199, "\u3082\u3057\u3053\u306e\u5f15\u6570\u306b": 199, "\u30c7\u30d5\u30a9\u30eb\u30c8\u5024": [199, 202], "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u3092\u5206\u5272\u3057\u3066": 201, "\u306e\u5024\u3092\u683c\u7d0d\u3057\u305f": 201, "\u306e\u914d\u5217\u3092\u4f5c\u6210\u3057\u307e\u3059": 201, "\u30e1\u30bd\u30c3\u30c9\u306f\u533a\u5207\u308a\u6587\u5b57\u3068\u3057\u3066\u306e": 201, "\u578b\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 201, "str_valu": 201, "lorem": [164, 201, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "ipsum": [164, 201, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "dolor": [164, 201, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "sit": [164, 201, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "splitted_str": 201, "string_split_basic_usag": 201, "\u73fe\u5728\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3055\u308c\u305f\u533a\u5207\u308a\u6587\u5b57": 201, "\u5217": 201, "\u3092\u4f7f\u3063\u3066\u5206\u5272\u3057\u307e\u3059": 201, "\u5206\u5272\u3055\u308c\u305f\u6587\u5b57\u5217\u3092\u683c\u7d0d\u3057\u305f\u914d\u5217": 201, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u306e\u5de6\u7aef\u3068\u53f3\u7aef\u304b\u3089\u7a7a\u767d\u6587\u5b57\u3082\u3057\u304f\u306f\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57": 202, "\u6587\u5b57\u5217": 202, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u306e\u5de6\u7aef\u3068\u53f3\u7aef\u304b\u3089\u30b9\u30da\u30fc\u30b9\u3084\u6539\u884c\u306a\u3069\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 202, "string_strip_basic_usage_1": 202, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6587\u5b57\u5217\u306e\u5de6\u7aef\u3068\u53f3\u7aef\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57": 202, "bbcc": 202, "string_strip_basic_usage_2": 202, "\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u3082\u3057\u304f\u306f\u6587\u5b57\u5217\u3092\u5de6\u7aef\u3068\u53f3\u7aef\u304b\u3089\u53d6\u308a\u9664\u304d\u307e\u3059": 202, "\u3053\u306e\u5024\u306e\u5de6\u7aef\u3068\u53f3\u7aef\u304b\u3089\u53d6\u308a\u9664\u304f\u6587\u5b57\u3082\u3057\u304f\u306f\u6587\u5b57\u5217": 202, "\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": [202, 207], "\u30af\u30e9\u30b9\u306fsvg\u30c6\u30ad\u30b9\u30c8\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u751f\u6210\u3057\u307e\u3059": 206, "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u306f": [164, 206, 207], "\u306a\u3069\u306e\u30d5\u30a9\u30f3\u30c8\u3084\u30b9\u30bf\u30a4\u30eb\u306a\u3069\u306e\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 206, "svg_text": [206, 207], "32": [206, 207, 213], "svg_text_basic_usag": 206, "\u30c6\u30ad\u30b9\u30c8\u306ey\u5ea7\u6a19\u306e\u57fa\u6e96\u70b9\u306f\u30c6\u30ad\u30b9\u30c8\u306e\u4e0b\u90e8\u4ed8\u8fd1\u306e\u4f4d\u7f6e\u3068\u306a\u308a\u307e\u3059": 206, "\u3053\u308c\u306fsvg\u30c6\u30ad\u30b9\u30c8\u306e\u4ed5\u69d8\u3068\u306a\u308a\u307e\u3059": 206, "\u305d\u306e\u305f\u3081\u3082\u3057\u3082y\u5ea7\u6a19\u306b": 206, "\u30c6\u30ad\u30b9\u30c8\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u307b\u3068\u3093\u3069\u898b\u3048\u306a\u304f\u306a\u308a\u307e\u3059": 206, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u8f9b\u3046\u3058\u3066\u30b3\u30f3\u30de\u306e\u4e00\u90e8\u304c\u78ba\u8a8d\u3067\u304d\u307e\u3059": 206, "svg_text_note_on_the_y_baselin": 206, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [206, 207], "svg_text_text": 206, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [206, 207], "24": [154, 206, 217, 219], "svg_text_font_s": 206, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30d5\u30a9\u30f3\u30c8\u30d5\u30a1\u30df\u30ea\u30fc": [206, 207], "\u30d5\u30a9\u30f3\u30c8\u306e\u6307\u5b9a": [206, 207], "\u3053\u306e\u5c5e\u6027\u306f\u5404\u30d5\u30a9\u30f3\u30c8\u540d\u306e": [206, 207], "\u578b\u306e\u6587\u5b57\u5217\u3092\u683c\u7d0d\u3057\u305f": [206, 207], "\u578b\u306e\u914d\u5217\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": [206, 207], "impact": [206, 207], "roman": [206, 207], "svg_text_font_famili": 206, "svg_text_x": 206, "70": 206, "svg_text_i": 206, "svg_text_fill_color": 206, "svg_text_fill_alpha": 206, "svg_text_line_color": 206, "svg_text_line_alpha": 206, "svg_text_line_thick": 206, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u884c\u9593\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 206, "amet": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "consectetur": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "adipisc": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "elit": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "sed": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "eiusmod": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "tempor": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "incididunt": [164, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216], "svg_text_lead": 206, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u6c34\u5e73\u65b9\u5411\u306e\u884c\u63c3\u3048\u306e\u8a2d\u5b9a": 206, "\u5de6\u7aef": 206, "\u4e2d\u592e": 206, "\u53f3\u7aef": 206, "\u3053\u306e\u5c5e\u6027\u306f": 206, "svgtextalign": [206, 207], "\u306eenum\u306e\u5024\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 206, "svg_text_align": 206, "\u3053\u306e\u5c5e\u6027\u306fx\u5ea7\u6a19\u306e\u57fa\u6e96\u4f4d\u7f6e": 206, "\u306e\u4f4d\u7f6e": 206, "\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5909\u66f4\u3057\u307e\u3059": 206, "x\u5ea7\u6a19\u306e\u57fa\u6e96\u4f4d\u7f6e\u306f\u30c6\u30ad\u30b9\u30c8\u306e\u4e2d\u592e\u4f4d\u7f6e\u306b\u306a\u308a\u307e\u3059": 206, "x\u5ea7\u6a19\u306e\u57fa\u6e96\u4f4d\u7f6e\u306f\u30c6\u30ad\u30b9\u30c8\u306e\u53f3\u7aef\u306e\u4f4d\u7f6e\u306b\u306a\u308a\u307e\u3059": 206, "container_sprit": 206, "vertical_x0_lin": 206, "x0_text": 206, "left_align_sample_text": 206, "sampl": 206, "52": 206, "center_align_sample_text": 206, "72": [154, 206], "right_align_sample_text": 206, "92": 206, "svg_text_align_not": 206, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u592a\u5b57\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [206, 207], "svg_text_bold": 206, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u659c\u4f53\u306e\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": [206, 207], "svg_text_ital": 206, "svg_txt_rotation_around_cent": 206, "svg_txt_rotation_around_point": 206, "\u62e1\u7e2e\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u8a2d\u5b9a\u6b21\u7b2c\u3067\u306f\u8868\u793a\u304c\u5d29\u308c\u305f\u308a\u3059\u308b\u305f\u3081\u5229\u7528\u306f\u975e\u63a8\u5968\u3067\u3059": 206, "svg_txt_scale_x_from_cent": 206, "svg_txt_scale_x_from_point": 206, "svg_txt_flip_x": 206, "svg_txt_flip_i": 206, "666666": [154, 164, 206, 207], "svg_text_align_mixin": [206, 207], "svg\u30c6\u30ad\u30b9\u30c8\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 206, "\u3053\u306e\u30af\u30e9\u30b9\u3067\u4f7f\u7528\u3059\u308b\u30c6\u30ad\u30b9\u30c8": [206, 207], "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\u8a2d\u5b9a": [206, 207], "\u30d5\u30a9\u30f3\u30c8\u30d5\u30a1\u30df\u30ea\u30fc\u8a2d\u5b9a": [206, 207], "\u914d\u5217\u5185\u306e\u5404\u6587\u5b57\u5217\u306b\u306f\u500b\u5225\u306e\u30d5\u30a9\u30f3\u30c8\u540d\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": [206, 207], "\u306e\u7bc0\u3082\u78ba\u8a8d\u3092\u304a\u9858\u3044\u3057\u307e\u3059": [206, 207], "\u5857\u308a\u306e\u8272\u306e\u8a2d\u5b9a": [206, 207], "\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u8a2d\u5b9a": [206, 207], "\u7dda\u306e\u8272\u306e\u8a2d\u5b9a": [206, 207], "\u7dda\u306e\u900f\u660e\u5ea6\u306e\u8a2d\u5b9a": [206, 207], "\u7dda\u5e45\u306e\u8a2d\u5b9a": 206, "\u30c6\u30ad\u30b9\u30c8\u306e\u884c\u9593\u306e\u30b5\u30a4\u30ba": 206, "\u30c6\u30ad\u30b9\u30c8\u306e\u884c\u63c3\u3048\u306e\u8a2d\u5b9a": [164, 206], "\u30c6\u30ad\u30b9\u30c8\u306b\u592a\u5b57\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u884c\u3046\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024": [206, 207], "\u30c6\u30ad\u30b9\u30c8\u3092\u659c\u4f53\u8868\u793a\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u884c\u3046\u304b\u3069\u3046\u304b\u306e\u771f\u507d\u5024": [206, 207], "svgtext\u30af\u30e9\u30b9\u306e\u5ea7\u6a19\u306e0\u306e\u4f4d\u7f6e\u306f\u30c6\u30ad\u30b9\u30c8\u306e\u4e0b\u90e8\u304b\u3089\u30b9\u30bf\u30fc\u30c8\u3057\u307e\u3059": [206, 207], "\u305d\u306e\u305f\u3081\u3082\u3057\u3082y": [206, 207], "0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": [206, 207], "\u30c6\u30ad\u30b9\u30c8\u306f\u307b\u3068\u3093\u3069\u898b\u3048\u306a\u3044\u72b6\u614b\u306b\u306a\u308a\u307e\u3059": [206, 207], "\u306e\u5b50\u3068\u306a\u308b\u30c6\u30ad\u30b9\u30c8\u8981\u7d20\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 207, "\u8907\u6570\u306e": 207, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066\u305d\u308c\u305e\u308c\u306b\u7570\u306a\u308b\u30c6\u30ad\u30b9\u30c8\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3057\u305f\u72b6\u614b\u306e": 207, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 207, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b\u306f": 207, "\u306a\u3069\u306e\u5404\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u5f15\u6570\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 207, "\u3082\u3057\u3082\u305d\u308c\u3089\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u5f15\u6570\u6307\u5b9a\u3092\u7701\u7565\u3057\u305f\u5834\u5408": 207, "\u89aa\u306esvgtext\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30b9\u30bf\u30a4\u30eb\u304c\u53cd\u6620\u3055\u308c\u307e\u3059": 207, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u3063\u3066": 207, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4f5c\u6210\u3059\u308b\u306b\u306f": 207, "\u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3046\u3053\u3068\u3067\u5bfe\u5fdc\u304c\u3067\u304d\u307e\u3059": 207, "text_span": 207, "svg_txt_span_basic_usag": 207, "\u30af\u30e9\u30b9\u306f\u6539\u884c\u8a2d\u5b9a\u3092\u7121\u8996\u3057\u307e\u3059": 207, "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u6539\u884c\u7528\u306e\u6587\u5b57\u5217": 207, "\u3092\u542b\u3093\u3067\u3044\u307e\u3059\u304c\u30c6\u30ad\u30b9\u30c8\u306e\u884c\u306f\u5358\u4e00\u884c\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 207, "svg_txt_span_notes_of_the_line_break": 207, "\u3082\u3057\u3082\u6539\u884c\u3092\u52a0\u3048\u305f\u3044\u5834\u5408\u306b\u306f": 207, "\u30af\u30e9\u30b9\u3067\u306f\u306a\u304f": 207, "\u30af\u30e9\u30b9\u3092\u4f7f\u7528\u3059\u308b\u304b": 207, "\u3082\u3057\u304f\u306f\u8907\u6570\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u3066\u5bfe\u5fdc\u3092\u304a\u9858\u3044\u3057\u307e\u3059": 207, "text_span_1": 207, "text_span_2": 207, "svg_txt_span_text": 207, "svg_txt_span_font_s": 207, "arial": 207, "svg_txt_span_font_famili": 207, "svg_txt_span_fill_color": 207, "svg_txt_span_fill_alpha": 207, "svg_txt_span_line_color": 207, "svg_txt_span_line_alpha": 207, "svg_txt_span_line_thick": 207, "svg_txt_span_bold": 207, "svg_txt_span_ital": 207, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306ex\u5ea7\u6a19\u306e\u8abf\u6574\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 207, "svg_txt_span_delta_x": 207, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306ey\u5ea7\u6a19\u306e\u8abf\u6574\u5024\u306e\u66f4\u65b0\u3082\u304f\u3057\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 207, "\u3053\u306e\u8a2d\u5b9a\u306f\u76f4\u524d\u306e": 207, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u8a2d\u5b9a\u3092\u5f15\u304d\u7d99\u304e\u307e\u3059": 207, "text_span_3": 207, "dolar": 207, "svg_txt_span_delta_i": 207, "\u306e\u5b50\u3068\u306a\u308bsvg\u306etext": 207, "span\u8981\u7d20\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 207, "x\u5ea7\u6a19\u306e\u8abf\u6574\u5024\u306e\u8a2d\u5b9a": 207, "\u3053\u306e\u8a2d\u5b9a\u306f\u5f8c\u306b\u7d9a\u304f": 207, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5ea7\u6a19\u3082\u5909\u66f4\u3057\u307e\u3059": 207, "y\u5ea7\u6a19\u306e\u8abf\u6574\u5024\u306e\u8a2d\u5b9a": 207, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5ea7\u6a19\u3082\u66f4\u65b0\u3057\u307e\u3059": 207, "\u3082\u3057\u3082\u5404\u7a2e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306b": 207, "\u305d\u306e\u30b9\u30bf\u30a4\u30eb\u306f\u89aa\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3092\u5f15\u304d\u7d99\u304e\u307e\u3059": 207, "14": [207, 232], "svg_text_span": 207, "lead": 207, "align": [207, 209], "\u6307\u5b9a\u3055\u308c\u305f\u5404text": 207, "span\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f7f\u7528\u3057\u3066": 207, "\u5404text": 207, "span": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\u306e\u8a2d\u5b9a": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u30d5\u30a9\u30f3\u30c8\u8a2d\u5b9a": 207, "\u914d\u5217\u5185\u306e\u5404\u6587\u5b57\u5217\u306f\u30d5\u30a9\u30f3\u30c8\u540d\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u5857\u308a\u306e\u8272": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u5857\u308a\u306e\u900f\u660e\u5ea6": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u7dda\u306e\u8272": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u7dda\u306e\u900f\u660e\u5ea6": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u7dda\u5e45": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u884c\u9593\u8a2d\u5b9a": 207, "\u30c6\u30ad\u30b9\u30c8\u5168\u4f53\u306b\u8a2d\u5b9a\u3059\u308b\u884c\u63c3\u3048\u8a2d\u5b9a": 207, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 207, "\u30af\u30e9\u30b9\u306f2\u3064\u306e": 217, "datetim": [217, 218, 219], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u9593\u306e\u6642\u9593\u5dee\u3092\u6271\u3044\u307e\u3059": 217, "2\u3064\u306e": 217, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u9593\u306e\u6e1b\u7b97\u306f\u3053\u306e\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 217, "datetime_1": [217, 218, 219], "datetime_2": [217, 218, 219], "timedelta_": [217, 218, 219], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b": 217, "\u5c5e\u6027\u3084": 217, "\u30e1\u30bd\u30c3\u30c9\u306a\u3069\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 217, "\u6642\u9593\u306e\u9593\u9694\u5024\u306e\u65e5\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059": [217, 218], "\u65e5\u6570\u5024": [217, 218], "\u5c0f\u6570\u70b9\u6570\u306e\u5206\u306f\u7121\u8996\u3055\u308c\u307e\u3059": [217, 218], "\u6642\u9593\u306e\u9593\u9694\u5024\u306e\u5408\u8a08\u79d2\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059": [217, 219], "\u6642\u9593\u306e\u9593\u9694\u5024\u306e\u5408\u8a08\u79d2\u6570": [217, 219], "86400": [217, 219], "\u5c5e\u6027\u306f2\u3064\u306e": 218, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u9593\u306e\u65e5\u6570\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 218, "\u5c5e\u6027\u306e\u5024\u306e\u578b\u306fapysc\u306e": 218, "\u578b\u3068\u306a\u308a": 218, "\u4e14\u3064\u305d\u306e\u5024\u306e\u5c0f\u6570\u70b9\u6570\u306f\u5207\u308a\u6368\u3066\u3089\u308c\u307e\u3059": 218, "datetime_3": 218, "datetime_4": 218, "\u30e1\u30bd\u30c3\u30c9\u306f2\u3064\u306e": 219, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u9593\u306e\u5408\u8a08\u79d2\u6570\u3092\u8fd4\u5374\u3057\u307e\u3059": 219, "\u30e1\u30bd\u30c3\u30c9\u306fapysc\u306e": 219, "\u3082\u3057\u3082\u3044\u305a\u308c\u304b\u306e": 219, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c": 219, "\u5c5e\u6027\u306e\u5024\u3092\u6301\u3063\u3066\u3044\u305f\u5834\u5408\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5c0f\u6570\u70b9\u6570\u3082\u542b\u3093\u3060\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 219, "\u30af\u30e9\u30b9\u306f\u4e00\u5b9a\u9593\u9694\u3067\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306e\u30bf\u30a4\u30de\u30fc\u306e\u51e6\u7406\u3092\u6271\u3044\u307e\u3059": 220, "\u4efb\u610f\u306e\u9593\u9694\u3092\u8a2d\u5b9a\u3057\u3066\u30cf\u30f3\u30c9\u30e9\u306e\u547c\u3073\u51fa\u3057\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 220, "\u30af\u30e9\u30b9\u306f\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067\u30cf\u30f3\u30c9\u30e9\u3068\u3057\u3066\u306e": 220, "\u5f15\u6570\u3068\u30bf\u30a4\u30de\u30fc\u5b9f\u884c\u9593\u9694\u306e\u30df\u30ea\u79d2\u3068\u3057\u3066\u306e": 220, "\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3073\u51fa\u3059\u3068\u30bf\u30a4\u30de\u30fc\u304c\u30b9\u30bf\u30fc\u30c8\u3057\u307e\u3059": 220, "\u30bf\u30a4\u30de\u30fc\u306f": 220, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u3057\u3066\u6307\u5b9a\u3067\u304d\u308b\u8ffd\u52a0\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306e\u5f15\u6570\u3092\u30cf\u30f3\u30c9\u30e9\u3078\u6e21\u3057\u307e\u3059": 220, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2": 220, "\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b": 220, "\u30af\u30e9\u30b9\u3092\u4f7f\u7528\u3057\u305f\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u3044\u307e\u3059": 220, "timer_basic_usag": 220, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u30bf\u30a4\u30de\u30fc\u304c\u30b9\u30bf\u30fc\u30c8\u3057": 220, "\u30bf\u30a4\u30de\u30fc\u306e\u30cf\u30f3\u30c9\u30e9\u306f\u56db\u89d2\u306ex\u5ea7\u6a19\u3092\u52a0\u7b97\u3057\u3066\u3044\u304d\u307e\u3059": 220, "_constructoropt": [220, 222, 224], "\u4e00\u5b9a\u9593\u9694\u3054\u3068\u306b\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306e\u30bf\u30a4\u30de\u30fc\u306e\u30af\u30e9\u30b9\u3067\u3059": [220, 222, 224], "\u4e00\u5b9a\u9593\u9694\u3054\u3068\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9\u306e\u30cf\u30f3\u30c9\u30e9": [220, 222, 224], "\u30cf\u30f3\u30c9\u30e9\u306e\u5b9f\u884c\u9593\u9694\u3068\u306a\u308b\u30df\u30ea\u79d2\u3082\u3057\u304f\u306ffps\u306eenum\u306e\u5024": [220, 222, 224], "fps\u306b\u5fdc\u3058\u3066\u8a08\u7b97\u3055\u308c\u305f\u30df\u30ea\u79d2\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059": [220, 222, 224], "\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308c\u3070": [220, 222, 224], "\u306e\u5024\u306f16": [220, 222, 224], "6666667\u30df\u30ea\u79d2\u76f8\u5f53\u306b\u306a\u308a\u307e\u3059": [220, 222, 224], "\u30cf\u30f3\u30c9\u30e9\u306e\u5b9f\u884c\u56de\u6570\u306e\u4e0a\u9650\u5024": [220, 222, 224], "\u30cf\u30f3\u30c9\u30e9\u306e\u5b9f\u884c\u56de\u6570\u304c\u3053\u306e\u5024\u306b\u5230\u9054\u3057\u305f\u5834\u5408\u30bf\u30a4\u30de\u30fc\u306f\u505c\u6b62\u3057\u307e\u3059": [220, 222, 224], "\u3082\u30570\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306b\u306f\u30bf\u30a4\u30de\u30fc\u306f\u505c\u6b62\u3057\u306a\u304f\u306a\u308a\u307e\u3059": [220, 222, 224], "\u30cf\u30f3\u30c9\u30e9\u306e\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9\u3078\u6e21\u3059\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u3057\u3066\u306e\u5404\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u683c\u7d0d\u3057\u305f\u8f9e\u66f8": [220, 222, 224], "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30bf\u30a4\u30de\u30fc\u304c\u7d42\u4e86": 221, "\u5b8c\u4e86": 221, "\u3057\u305f\u969b\u306b\u547c\u3070\u308c\u308b\u30cf\u30f3\u30c9\u30e9\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 221, "\u306e\u5f15\u6570\u306b100\u3092\u8a2d\u5b9a\u3057\u305f\u5834\u5408\u305d\u306e\u30cf\u30f3\u30c9\u30e9\u306f\u30bf\u30a4\u30de\u30fc\u306e\u30ab\u30a6\u30f3\u30c8\u304c100\u56de\u306b\u5230\u9054\u3057\u305f\u30bf\u30a4\u30df\u30f3\u30b0\u3067\u547c\u3070\u308c\u307e\u3059": 221, "\u30e1\u30bd\u30c3\u30c9\u306f\u4ed6\u306e\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u540c\u69d8\u306b\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306e\u30cf\u30f3\u30c9\u30e9\u3068\u3057\u3066\u306e": 221, "\u306e\u5f15\u6570\u3068\u30cf\u30f3\u30c9\u30e9\u306b\u6e21\u3059\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3068\u3057\u3066\u306e": 221, "\u5f15\u6570\u306e\u8f9e\u66f8\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 221, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b1\u3064\u76ee\u306e\u5de6\u5074\u306e\u56db\u89d2\u306b\u5bfe\u3059\u308b\u56de\u8ee2\u8a2d\u5b9a\u7528\u306e\u30bf\u30a4\u30de\u30fc\u3092\u958b\u59cb\u3057\u3066\u3044\u307e\u3059": 221, "1\u3064\u76ee\u306e\u30bf\u30a4\u30de\u30fc\u304c\u7d42\u4e86\u3057\u305f\u30bf\u30a4\u30df\u30f3\u30b0\u30672\u3064\u76ee\u306e\u30bf\u30a4\u30de\u30fc\u3092\u958b\u59cb\u3057\u3066\u3044\u307e\u3059": 221, "_rectsopt": 221, "on_timer_1_complet": 221, "timer_complete_basic_usag": 221, "_timercompleteopt": 221, "\u30bf\u30a4\u30de\u30fc\u7d42\u4e86\u6642\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u8ffd\u52a0\u3057\u307e\u3059": 221, "\u30bf\u30a4\u30de\u30fc\u7d42\u4e86\u6642\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3082\u3057\u304f\u306f\u30e1\u30bd\u30c3\u30c9": 221, "\u5f15\u6570\u306e\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [222, 224], "\u5f15\u6570\u306e\u8a2d\u5b9a\u3067\u306f\u30bf\u30a4\u30de\u30fc\u306e\u9593\u9694\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u3059": 222, "\u3053\u306e\u8a2d\u5b9a\u306f\u30df\u30ea\u79d2\u5358\u4f4d\u3068\u306a\u308a": 222, "1000\u306e\u5024\u3092\u6307\u5b9a\u3059\u308c\u30701\u79d2\u3054\u3068\u306e\u9593\u9694\u306b\u306a\u308a\u307e\u3059": 222, "\u578b\u306e\u5024": [63, 151, 155, 222], "\u306eenum\u306e\u5024\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 222, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3067": 222, "deplai": 222, "\u5f15\u6570\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [222, 224], "\u306e3\u3064\u306e\u30bf\u30a4\u30de\u30fc\u3092\u751f\u6210\u3057": 222, "\u305d\u308c\u305e\u308cdelay\u306e\u5024\u306b": 222, "1\u756a\u76ee\u306e\u30bf\u30a4\u30de\u30fc": 222, "\u3067\u306f1\u79d2\u9593\u306b10\u56de\u30cf\u30f3\u30c9\u30e9\u306e\u547c\u3073\u51fa\u3057\u3092\u884c\u3044": 222, "2\u756a\u76ee\u306e\u30bf\u30a4\u30de\u30fc": 222, "\u306e\u5024\u306f33": 222, "\u3067\u306f1\u79d2\u9593\u306b30\u56de\u306e\u547c\u3073\u51fa\u3057\u3092\u884c\u3044": 222, "3\u756a\u76ee\u306e\u30bf\u30a4\u30de\u30fc": 222, "\u3067\u306f60\u56de\u306e\u547c\u3073\u51fa\u3057\u3092\u884c\u3044\u307e\u3059": 222, "would": 222, "tick": 222, "timer_delay_basic_usag": 222, "\u306e\u5f15\u6570\u306b\u306f": 222, "1\u79d2\u5f53\u305f\u308a\u306e\u30d5\u30ec\u30fc\u30e0\u6570": 222, "\u306eenum\u306e\u5024\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 222, "\u3092\u6307\u5b9a\u3059\u308c\u307060fps\u76f8\u5f53\u306e\u5b9f\u884c\u56de\u6570": 222, "6666667\u30df\u30ea\u79d2\u3054\u3068\u306e\u5b9f\u884c": 222, "\u3092\u6307\u5b9a\u3059\u308c\u307030fps\u76f8\u5f53": 222, "3333333\u30df\u30ea\u79d2\u3054\u3068\u306e\u5b9f\u884c": 222, "timer_delay_fps_enum": 222, "\u9045\u5ef6": 222, "\u9593\u9694": 222, "\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 222, "\u30cf\u30f3\u30c9\u30e9\u306e\u5b9f\u884c\u3054\u3068\u306e\u30df\u30ea\u79d2\u306e\u9593\u9694\u5024": 222, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3084": 223, "\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u767b\u9332\u3055\u308c\u308b\u30bf\u30a4\u30de\u30fc\u95a2\u4fc2\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u306b\u6e21\u3055\u308c\u308b\u30a4\u30d9\u30f3\u30c8\u306e\u30af\u30e9\u30b9\u3067\u3059": 223, "\u30bf\u30a4\u30de\u30fc\u95a2\u4fc2\u306e\u5404\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u7b2c\u4e00\u5f15\u6570\u306f": 223, "timer_event_basic_usag": 223, "\u5c5e\u6027\u306f\u5bfe\u8c61\u306e": 223, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3068\u306a\u308a": 223, "\u305e\u308c\u3092\u53c2\u7167\u3057\u3066\u30bf\u30a4\u30de\u30fc\u95a2\u4fc2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 223, "count": 223, "current_count": [223, 226], "timer_event_this_attribut": 223, "\u30bf\u30a4\u30de\u30fc\u95a2\u4fc2\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30af\u30e9\u30b9\u3067\u3059": 223, "\u5bfe\u8c61\u306e\u30bf\u30a4\u30de\u30fc\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 223, "\u3053\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u5bfe\u8c61\u306e\u30bf\u30a4\u30de\u30fc\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 223, "\u5f15\u6570\u306e\u8a2d\u5b9a\u3067\u306f\u30cf\u30f3\u30c9\u30e9\u304c\u547c\u3070\u308c\u308b\u6700\u5927\u6570\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u3059": 224, "\u3082\u305710\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u30bf\u30a4\u30de\u30fc\u306f10\u56de\u30cf\u30f3\u30c9\u30e9\u3092\u547c\u3073\u51fa\u3057\u305f\u5f8c\u306b\u505c\u6b62\u3057\u307e\u3059": 224, "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b\u3066": 224, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b": 224, "\u306e\u5024\u304c100\u306e\u30bf\u30a4\u30de\u30fc\u3092\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 224, "\u3082\u3057\u30bf\u30a4\u30de\u30fc\u304c\u30cf\u30f3\u30c9\u30e9\u5185\u3067\u56db\u89d2\u3092100\u56de\u5206\u52d5\u304b\u3057\u305f\u5834\u5408": 224, "100px\u5206\u53f3\u306b\u52d5\u3044\u305f\u5834\u5408": 224, "\u30bf\u30a4\u30de\u30fc\u306f\u505c\u6b62\u3057\u307e\u3059": 224, "timer_repeat_count_basic_usag": 224, "\u30cf\u30f3\u30c9\u30e9\u304c\u547c\u3070\u308c\u308b\u6700\u5927\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059": 224, "\u30cf\u30f3\u30c9\u30e9\u306e\u547c\u3073\u51fa\u3057\u306e\u4e0a\u9650\u56de\u6570": 224, "\u3082\u30570\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": 224, "\u30bf\u30a4\u30de\u30fc\u306f\u305a\u3063\u3068\u5b9f\u884c\u3055\u308c\u7d9a\u3051\u307e\u3059": 224, "\u30cf\u30f3\u30c9\u30e9\u3092\u547c\u3073\u7d9a\u3051\u307e\u3059": 224, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30bf\u30a4\u30de\u30fc\u306e\u30ab\u30a6\u30f3\u30c8\u3092\u30ea\u30bb\u30c3\u30c8\u3057\u305d\u3057\u3066\u30bf\u30a4\u30de\u30fc\u3092\u505c\u6b62\u3057\u307e\u3059": 225, "\u30e1\u30bd\u30c3\u30c9\u306f\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 225, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f1\u3064\u76ee\u306e\u30bf\u30a4\u30de\u30fc\u3067\u56db\u89d2\u309290\u5ea6\u56de\u8ee2\u3055\u305b\u3066\u3044\u307e\u3059": 225, "\u56de\u8ee2\u51e6\u7406\u304c\u7d42\u308f\u3063\u305f\u30892\u3064\u76ee\u306e\u30bf\u30a4\u30de\u30fc\u3092\u30ea\u30bb\u30c3\u30c8\u3055\u305b\u3066\u304b\u3089\u30b9\u30bf\u30fc\u30c8\u3055\u305b\u3066\u3044\u307e\u3059": 225, "\u30b9\u30bf\u30fc\u30c8\u5f8c\u306b1\u79d2\u7d4c\u904e\u3057\u305f\u30891\u3064\u76ee\u306e\u30bf\u30a4\u30de\u30fc\u3092\u30ea\u30bb\u30c3\u30c8\u3057\u3066\u304b\u3089\u518d\u5ea6\u30b9\u30bf\u30fc\u30c8\u3055\u305b\u3066\u3044\u307e\u3059": 225, "_timeropt": 225, "on_first_tim": 225, "on_first_timer_complet": 225, "on_second_tim": 225, "options_1": 225, "options_2": 225, "timer_reset_basic_usag": 225, "\u30bf\u30a4\u30de\u30fc\u306e\u30ab\u30a6\u30f3\u30c8\u3092\u30ea\u30bb\u30c3\u30c8\u3057": 225, "\u305d\u3057\u3066\u30bf\u30a4\u30de\u30fc\u306e\u505c\u6b62\u3092\u884c\u3044\u307e\u3059": 225, "\u3053\u306e\u30da\u30fc\u30b8\u3067timer\u30af\u30e9\u30b9\u306e": 226, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30bf\u30a4\u30de\u30fc\u3092\u30b9\u30bf\u30fc\u30c8\u3055\u305b\u307e\u3059": 226, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30bf\u30a4\u30de\u30fc\u3092\u505c\u6b62\u3055\u305b\u307e\u3059": 226, "\u306e\u5404\u30e1\u30bd\u30c3\u30c9\u306f\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": 226, "\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u30bf\u30a4\u30de\u30fc\u3092\u30b9\u30bf\u30fc\u30c8\u3055\u305b": 226, "\u30bf\u30a4\u30de\u30fc\u306e\u30ab\u30a6\u30f3\u30c8\u304c100\u306b\u9054\u3057\u305f\u6642\u70b9\u3067\u30bf\u30a4\u30de\u30fc\u3092\u505c\u6b62\u3055\u305b\u3066\u3044\u307e\u3059": 226, "what": 226, "timer_start_and_stop_basic_usag": 226, "\u30bf\u30a4\u30de\u30fc\u3092\u958b\u59cb\u3057\u307e\u3059": 226, "\u30bf\u30a4\u30de\u30fc\u3092\u505c\u6b62\u3057\u307e\u3059": 226, "\u30e1\u30bd\u30c3\u30c9\u306f\u305d\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u81ea\u4f53\u306e": 227, "\u578b\u3067\u306e\u8868\u73fe\u306e\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 227, "\u306a\u3069\u306e\u57fa\u672c\u7684\u306a\u5404\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u306b\u5b58\u5728\u3057\u307e\u3059": 227, "\u8fd4\u5374\u5024\u306fjavascript\u306b\u6e96\u3058\u305f\u5024\u3068\u306a\u308a\u307e\u3059": 227, "\u306e\u5024\u3067\u3042\u308c\u3070": 227, "\u306a\u3069\u306e\u5024\u3067\u306f\u306a\u304f": 227, "\u3068\u3044\u3063\u305f\u6587\u5b57\u5217\u306e\u5024\u306b\u306a\u308a\u307e\u3059": 227, "number_valu": 227, "bool_valu": 227, "array_valu": 227, "to_string_basic_usage_1": 227, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u305d\u306e\u6587\u5b57\u5217\u3092\u4f7f\u3063\u3066\u30c6\u30ad\u30b9\u30c8\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3046\u969b\u306b\u4fbf\u5229\u306a\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 227, "to_string_basic_usage_2": 227, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u6587\u5b57\u5217\u3078\u3068\u5909\u63db\u3057\u307e\u3059": 227, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u4efb\u610f\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u8868\u793a\u3057\u307e\u3059": 228, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fjavascript\u306e": 228, "\u306e\u95a2\u6570\u3068\u540c\u3058\u3088\u3046\u306a\u6319\u52d5\u3092\u3057\u307e\u3059": 228, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fpython\u306e\u30d5\u30a1\u30a4\u30eb\u540d": 228, "\u547c\u3073\u51fa\u3057\u5143\u306e\u60c5\u5831": 228, "\u884c\u756a\u53f7\u306a\u3069\u306e\u60c5\u5831\u3082\u8868\u793a\u3057\u307e\u3059": 228, "\u95a2\u6570\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u3068\u306a\u308a\u307e\u3059": 228, "\u305d\u306e\u95a2\u6570\u306f": 228, "\u95a2\u6570\u3068\u540c\u3058\u3088\u3046\u306b\u52d5\u4f5c\u3057\u307e\u3059": 228, "\u95a2\u6570\u306f\u4efb\u610f\u306e\u6570\u306e\u5f15\u6570\u3092\u53d7\u3051\u4ed8\u3051": 228, "\u305d\u3057\u3066\u69d8\u3005\u306a\u578b\u306e\u5024\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 228, "\u4f0a\u8cc0\u306e\u30b3\u30fc\u30c9\u4f8b\u3067\u306f\u56db\u89d2\u3092\u63cf\u753b\u3057": 228, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u30d6\u30e9\u30a6\u30b6\u306e\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059": 228, "f12\u30ad\u30fc\u3092\u62bc\u3057\u3066\u30b3\u30f3\u30bd\u30fc\u30eb\u3092\u958b\u3044\u3066\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": 228, "trace_basic_usag": 228, "\u5f15\u6570\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u306e\u60c5\u5831\u3092\u30b3\u30f3\u30bd\u30fc\u30eb\u3078\u8868\u793a\u3057\u307e\u3059": 228, "\u3053\u306e\u95a2\u6570\u306fjavascript\u306e": 228, "\u306b\u8a72\u5f53\u3059\u308b\u30b3\u30fc\u30c9\u3092\u4fdd\u5b58\u3057\u307e\u3059": 228, "\u30b3\u30f3\u30bd\u30fc\u30eb\u4e0a\u306b\u8868\u793a\u3059\u308b\u4efb\u610f\u306e\u5f15\u6570\u306e\u5024": 228, "\u30af\u30e9\u30b9\u306f\u4e09\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u751f\u6210\u3057\u307e\u3059": 229, "\u5f15\u6570\u306f1\u3064\u76ee\u306e\u9802\u70b9\u306e\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 229, "\u5f15\u6570\u306f2\u3064\u76ee\u306e\u9802\u70b9\u306e\u5ea7\u6a19\u3068\u306a\u308a": 229, "\u306f3\u3064\u76ee\u306e\u9802\u70b9\u306e\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 229, "triangle_basic_usag": 229, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3046\u3053\u3068\u3067\u3082\u4e09\u89d2\u5f62\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 229, "triangle_x": 229, "triangle_i": 229, "\u5c5e\u6027\u3067\u306f1\u3064\u76ee\u306e\u9802\u70b9\u306ex\u5ea7\u6a19\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 229, "triangle_x1": 229, "\u5c5e\u6027\u3067\u306f1\u3064\u76ee\u306e\u9802\u70b9\u306ey\u5ea7\u6a19\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 229, "triangle_y1": 229, "\u5c5e\u6027\u3067\u306f2\u3064\u76ee\u306e\u9802\u70b9\u306ex\u5ea7\u6a19\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 229, "triangle_x2": 229, "\u5c5e\u6027\u3067\u306f2\u3064\u76ee\u306e\u9802\u70b9\u306ey\u5ea7\u6a19\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 229, "triangle_y2": 229, "\u5c5e\u6027\u3067\u306f3\u3064\u76ee\u306ex\u5ea7\u6a19\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 229, "triangle_x3": 229, "\u5c5e\u6027\u3067\u306f3\u3064\u76ee\u306ey\u5ea7\u6a19\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 229, "triangle_y3": 229, "triangle_fill_color": 229, "triangle_fill_alpha": 229, "triangle_line_color": 229, "triangle_line_alpha": 229, "triangle_line_thick": 229, "triangle_line_dot_set": 229, "triangle_line_dash_set": 229, "triangle_line_round_dot_set": 229, "triangle_line_dash_dot_set": 229, "triangle_rotation_around_cent": 229, "rotation_x": 229, "rotation_i": 229, "triangle_set_rotation_around_point": 229, "triangle_scale_x_from_cent": 229, "triangle_scale_y_from_cent": 229, "scale_coordinate_x": 229, "triangle_set_scale_x_from_point": 229, "scale_coordinate_i": 229, "triangle_set_scale_y_from_point": 229, "triangle_flip_x": 229, "triangle_flip_i": 229, "triangle_skew_x": 229, "triangle_skew_i": 229, "\u4e09\u89d2\u5f62\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 229, "1\u3064\u76ee\u306ex\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 229, "1\u3064\u76ee\u306ex\u5ea7\u6a19": 229, "1\u3064\u76ee\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 229, "1\u3064\u76ee\u306ey\u5ea7\u6a19": 229, "2\u3064\u76ee\u306ex\u5ea7\u6a19": 229, "2\u3064\u76ee\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 229, "2\u3064\u76ee\u306ey\u5ea7\u6a19": 229, "3\u3064\u76ee\u306ex\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 229, "3\u3064\u76ee\u306ex\u5ea7\u6a19": 229, "3\u3064\u76ee\u306ey\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u307e\u3059": 229, "3\u3064\u76ee\u306ey\u5ea7\u6a19": 229, "\u306e\u5404\u5b9a\u6570\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 230, "\u306e\u5024\u3092\u793a\u3059\u305f\u306e\u5b9a\u6570\u5024\u3067\u3059": 230, "\u3068\u307b\u307c\u540c\u3058\u5024\u3068\u306a\u308a\u307e\u3059": 230, "\u53cd\u5bfe\u306b": 230, "\u306e\u5024\u3092\u793a\u3059\u305f\u3081\u306e\u5b9a\u6570\u3068\u306a\u308a\u307e\u3059": 230, "\u3053\u308c\u3089\u306e\u5b9a\u6570\u306f": [], "\u306e\u521d\u671f\u5316": [], "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316": [], "\u5f8c\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059": [], "\u306e\u521d\u671f\u5316\u524d\u306b\u3053\u308c\u3089\u306e\u5b9a\u6570\u3092\u53c2\u7167\u3057\u305f\u5834\u5408\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": [], "attributeerror": [], "\u306e\u521d\u671f\u5316\u3092\u884c\u3046\u3053\u3068\u3067\u30a8\u30e9\u30fc\u306f\u767a\u751f\u3057\u306a\u304f\u306a\u308a\u307e\u3059": [], "\u306e\u5404\u5b9a\u6570\u306f": 230, "\u306a\u3069\u3068\u540c\u3058\u3088\u3046\u306b\u632f\u308b\u821e\u3044\u307e\u3059": 230, "\u306e\u5f15\u6570\u3092\u53d6\u308b\u95a2\u6570\u3084\u30e1\u30bd\u30c3\u30c9\u306a\u3069\u3067\u306f\u3053\u308c\u3089\u306e\u5b9a\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 230, "bold": [146, 164, 230], "ital": [146, 164, 230], "true_and_false_basic_usag": 230, "\u30e1\u30bd\u30c3\u30c9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fenter": 231, "frame\u30a4\u30d9\u30f3\u30c8\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 231, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u6307\u5b9a\u3055\u308c\u305f\u4e00\u3064\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u7121\u52b9\u5316\u3057": 231, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u3059\u3079\u3066\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a\u3092\u7121\u52b9\u5316\u3057\u307e\u3059": 231, "\u3053\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u3082\u3057\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u304c\u307e\u3060\u672a\u8a2d\u5b9a\u3060\u3063\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a\u307e\u3059": 231, "\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306benter": 231, "frame\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u7121\u52b9\u5316\u3057\u3066\u3044\u307e\u3059": 231, "unbind_enter_frame_basic_usag": 231, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u3057\u307e\u305b\u3093": [231, 232], "\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u969b\u306b\u3059\u3079\u3066\u306eenter": 231, "on_enter_frame_1": 231, "on_enter_frame_2": 231, "unbind_enter_frame_all_basic_usag": 231, "\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u306eenter": 231, "frame\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 231, "\u8a2d\u5b9a\u3092\u53d6\u308a\u9664\u304f\u5bfe\u8c61\u306ecallable\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 231, "_enterframeeventnotregist": 231, "\u3082\u3057\u6307\u5b9a\u3055\u308c\u305f\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u524a\u9664\u5bfe\u8c61\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408": 231, "\u3059\u3079\u3066\u306eenter": 231, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 232, "\u3053\u306e\u95a2\u6570\u306f\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\u306e\u8ffd\u52a0\u3092\u505c\u6b62\u3057\u307e\u3059": 232, "\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u8a2d\u5b9a\u306f\u5927\u91cf\u306e\u60c5\u5831\u3092\u51fa\u529b\u3057\u307e\u3059": 232, "\u6642\u6298\u3053\u308c\u306f\u7169\u96d1\u306a": 232, "\u60c5\u5831\u304c\u591a\u3059\u304e\u308b": 232, "\u72b6\u614b\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 232, "\u305d\u306e\u3088\u3046\u306a\u5834\u5408\u306b\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u304c\u4e0d\u8981\u306b\u306a\u3063\u305f\u30bf\u30a4\u30df\u30f3\u30b0\u3067\u8a2d\u5b9a\u3092\u89e3\u9664\u3059\u308b\u3068\u5f79\u306b\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 232, "\u3082\u3057\u3082\u51fa\u529b\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 232, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u6709\u52b9\u306b\u306a\u3063\u3066\u3044\u308b\u3068": 232, "\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u60c5\u5831\u306a\u3069\u3082\u524a\u9664\u3055\u308c\u3066\u3057\u307e\u3044\u307e\u3059": 232, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u3092\u89e3\u9664\u3057\u305f\u5834\u5408\u306b\u306f": 232, "\u306e\u5f15\u6570\u8a2d\u5b9a\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 232, "\u306e\u5909\u6570\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316\u306810\u306e\u52a0\u7b97\u51e6\u7406\u306e\u7b87\u6240\u306e\u307f\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\u306e\u8ffd\u52a0\u3092\u6709\u52b9\u5316\u3057\u3066\u3044\u307e\u3059": 232, "unset_debug_mode_basic_usag": 232, "\u51fa\u529b\u3055\u308c\u305fhtml\u3067\u306f\u6700\u521d\u306e\u6574\u6570\u90e8\u5206\u306e\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u542b\u3093\u3067\u3044\u307e\u3059": 232, "\u305d\u306e\u5f8c\u306e\u30b9\u30d7\u30e9\u30a4\u30c8\u30842\u3064\u76ee\u306e\u6574\u6570\u95a2\u4fc2\u306e\u4f4d\u7f6e\u306e\u3082\u306e\u306f\u542b\u307e\u308c\u306a\u3044\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 232, "g_1": 232, "i_12": 232, "indexof": 232, "i_13": 232, "type_nam": 232, "i_16": 232, "to_int_from_float": 232, "_convert": 232, "cast": 232, "int_or_float": 232, "append_constructor_express": 232, "i_18": 232, "i_19": 232, "cpy": 232, "html\u3068javascript\u306e\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3057\u307e\u3059": 232, "\u306e\u5f15\u6570\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 233, "\u5f15\u6570\u306f\u51fa\u529b\u3055\u308c\u308bjavascript\u306e\u5909\u6570\u540d\u306e\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u5909\u66f4\u3057\u307e\u3059": 233, "\u3053\u306e\u8a2d\u5b9a\u306f\u51fa\u529b\u3055\u308c\u305fjavascript\u306b\u5bfe\u3057\u3066\u30c7\u30d0\u30c3\u30b0\u3092\u884c\u3046\u969b\u306a\u3069\u306b\u4fbf\u5229\u306a\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 233, "apysc\u306e\u5404\u30af\u30e9\u30b9\u306f": 233, "\u305d\u306e\u5f15\u6570\u3092\u4f7f\u3063\u3066\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 233, "my_int": 233, "\u3068\u3044\u3046\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3092": 233, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3078\u3068\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059": 233, "variable_name_suffix_basic_usage_1": 233, "\u51fa\u529b\u3055\u308c\u305fjavascript\u30b3\u30fc\u30c9\u5185\u3067": 233, "\u30af\u30e9\u30b9\u304c\u5909\u63db\u3055\u308c\u3066\u4f5c\u6210\u3055\u308c\u305f\u5909\u6570\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3055\u308c\u305f": 233, "_my_int": 233, "\u3068\u3044\u3046\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u6301\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059": 233, "i_9__my_int": 233, "py": 233, "\u30af\u30e9\u30b9\u306e\u5c5e\u6027\u306e\u5024\u306f\u305d\u306e\u30af\u30e9\u30b9\u3078\u6307\u5b9a\u3055\u308c\u305f\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u5024\u3092\u5f15\u304d\u7d99\u304e\u307e\u3059": 233, "my_rectangl": 233, "\u3068\u3044\u3046\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": 233, "\u305d\u306e\u30af\u30e9\u30b9\u306e\u5c5e\u6027": 233, "\u306f\u540c\u69d8\u306b": 233, "\u3068\u3044\u3046\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u6301\u3064\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 233, "variable_name_suffix_basic_usage_2": 233, "\u3053\u306e\u3088\u3046\u306a\u30b1\u30fc\u30b9\u3067\u306f": 233, "\u306a\u3069\u306e\u5c5e\u6027\u306e\u8b58\u5225\u7528\u306e\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3082\u540c\u69d8\u306b\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 233, "i_9__my_rectangle__x": 233, "i_10__my_rectangle__i": 233, "i_12__my_rectangle__width": 233, "rect_1__my_rectangl": 233, "i_16__my_rectangle__width": 233, "i_17__my_rectangle__height": 233, "attr": 233, "s_1__my_rectangle__fill_color": 233, "opac": 233, "n_2__my_rectangle__fill_alpha": 233, "stroke": 233, "i_15__my_rectangle__line_thick": 233, "n_3__my_rectangle__line_alpha": 233, "\u30e9\u30a4\u30d6\u30d1\u30ea\u306e\u73fe\u5728\u306e\u5b9f\u88c5\u3068\u6a5f\u80fd\u306e\u6982\u8981\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 234, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u3092python\u3092\u4f7f\u3063\u3066\u66f8\u304f\u3053\u3068\u304c\u3067\u304d": 234, "\u7d50\u679c\u3092html\u306b\u51fa\u529b\u3057\u305f\u308a\u3082\u3057\u304f\u306fjupyt": 234, "notebook\u3084jupyterlab": 234, "googl": 234, "colaboratory\u4e0a\u306a\u3069\u3067\u8868\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 234, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u56db\u89d2\u3084\u5186": 234, "\u7dda\u306a\u3069\u306e\u69d8\u3005\u306a\u7a2e\u985e\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u63cf\u753b\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 234, "650": 234, "210": 234, "145": 234, "53": 234, "what_apysc_can_do_draw_vector_graph": 234, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u30af\u30ea\u30c3\u30af\u3084\u30de\u30a6\u30b9\u30c0\u30a6\u30f3": 234, "\u30de\u30a6\u30b9\u30aa\u30fc\u30d0\u30fc": 234, "\u30de\u30a6\u30b9\u30e0\u30fc\u30d6\u306a\u3069\u306e\u5404\u7a2e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059": 234, "\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u4f8b": 234, "\u4ee5\u4e0b\u306e\u56db\u89d2\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044": 234, "what_apysc_can_do_mouse_event_click": 234, "\u30bf\u30a4\u30de\u30fc\u306b\u95a2\u4fc2\u3057\u305f\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d": 234, "\u305d\u308c\u3092\u4f7f\u3063\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 234, "alpha_direct": 234, "current_alpha": 234, "what_apysc_can_do_timer_anim": 234, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 234, "tween": 234, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u4f7f\u3063\u3066\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3092\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 234, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": 234, "\u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u4f55\u6545": 235, "\u306a\u3069\u306epython\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30c7\u30fc\u30bf\u578b\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u306e\u304b\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 235, "\u4f55\u6545\u305d\u308c\u3089\u306e\u4ee3\u308f\u308a\u306b": 235, "\u306a\u3069\u306e\u30c7\u30fc\u30bf\u306e\u578b\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u306e\u304b\u306b\u3064\u3044\u3066\u3082\u8aac\u660e\u3057\u307e\u3059": 235, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306fpython\u306e\u30b3\u30fc\u30c9\u3092javascript\u3078\u3068\u5909\u63db\u3059\u308b\u305f\u3081\u306b\u5909\u6570\u306e\u751f\u6210\u3084\u66f4\u65b0\u306a\u3069\u306e\u51e6\u7406\u3092\u5185\u90e8\u3067\u8ffd\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 235, "\u3053\u306e\u7406\u7531\u304b\u3089": 235, "\u306a\u3069\u306e\u72ec\u81ea\u306e\u578b\u3092\u8a2d\u3051\u3066\u305d\u3061\u3089\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 235, "\u5834\u5408\u306b\u3088\u3063\u3066\u306fhtml\u306e\u751f\u6210\u51e6\u7406\u3067\u3053\u308c\u3089\u306e\u578b\u306e\u5229\u7528\u304c\u4e0d\u8981\u306a\u5834\u5408\u3082\u3042\u308a\u307e\u3059\u304c": 235, "\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306a\u3069\u306e\u975e\u540c\u671f\u306a\u51e6\u7406\u3092\u4f7f\u3046\u5834\u5408\u306a\u3069\u306b\u306f\u5229\u7528\u304c\u5fc5\u8981\u306b\u306a\u3063\u3066\u304d\u307e\u3059": 235, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306f\u305d\u308c\u3089\u306e\u578b\u306e\u5185\u90e8\u3067\u81ea\u52d5\u7684\u306b\u5909\u6570\u540d\u3092\u5272\u308a\u632f\u308a": 235, "html\u3084javascript\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u51fa\u529b\u3059\u308b\u969b\u306b\u305d\u308c\u3089\u306e\u5909\u6570\u540d\u3092\u4f7f\u7528\u3057\u307e\u3059": 235, "\u5909\u6570\u306e\u751f\u6210\u3084\u66f4\u65b0\u306a\u3069\u306e\u5185\u5bb9\u3082\u51fa\u529b\u3055\u308c\u308bjavascript\u306e\u30b3\u30fc\u30c9\u306b\u53cd\u6620\u3055\u308c\u307e\u3059": 235, "\u3082\u3057python\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u578b\u3092\u4f7f\u3063\u305f\u5834\u5408": 235, "\u3053\u308c\u3089\u306e\u5024javascript\u4e0a\u3067\u306f\u56fa\u5b9a\u5024\u3067\u8a2d\u5b9a\u3055\u308c\u307e\u3059": 235, "apysc\u4e0a\u3067\u306f\u975e\u540c\u671f\u306e\u95a2\u6570\u306a\u3069\u3067\u306e\u5909\u6570\u306e\u5909\u66f4\u304c\u53cd\u6620\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3059": 235, "0x7f7f22e57fa0": [], "\u5c5e\u6027\u306b\u306f": 114, "\u306e\u5024\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 114, "700": [65, 153], "colors_memb": [65, 153], "color_nam": [65, 153], "constant_names_arr": [65, 153], "colors_arr": [65, 153], "comput": 65, "hope": 65, "0x7f9bec67baf0": [], "materialdesigncolor": [62, 146], "red_100_ffcdd2": 153, "red_300_e57373": 153, "indigo_800_283593": 153, "indigo_a200_536df": 153, "\u306a\u3069\u306e\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u306e\u8272\u306e\u5b9a\u6570\u3092\u6301\u3061\u307e\u3059": 153, "gray_800_424242": 153, "cyan_200_80deea": 153, "material_design_colors_basic_usag": 153, "material_design_colors_definit": 153, "overview": 153, "materi": [153, 154], "design": [153, 154], "zfill": 146, "\u30e1\u30bd\u30c3\u30c9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [151, 155, 197, 200, 203, 204], "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u6570\u3067\u30bc\u30ed\u57cb\u3081\u3055\u308c\u305f\u6587\u5b57\u5217\u3092\u8fd4\u5374\u3057\u307e\u3059": 204, "\u305d\u306e\u8a2d\u5b9a\u306b\u3088\u3063\u3066\u5408\u8a08\u306e\u6587\u5b57\u6570\u304c\u6c7a\u5b9a\u3057\u307e\u3059": 204, "\u8fd4\u5374\u5024\u306f\u30b3\u30d4\u30fc\u3055\u308c\u305f": 204, "00001": 204, "string_zfill_basic_usag": 204, "\u6587\u5b57\u5217\u306e\u5de6\u5074\u30920\u3067\u57cb\u3081\u305f\u6587\u5b57\u5217\u3092\u8fd4\u5374\u3057\u307e\u3059": 204, "\u6587\u5b57\u5217\u306e\u5e45": 204, "\u9577\u3055": 204, "\u7d50\u679c\u306e\u6587\u5b57\u5217": 204, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 63, "from_rg": 63, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306f\u8d64\u7dd1\u9752\u306e3\u8272\u306e\u6307\u5b9a\u304b\u3089\u65b0\u305f\u306a\u8272\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059": 63, "255\u306e8bit\u306e\u6b63\u306e\u6574\u6570\u306e\u7bc4\u56f2\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3059": 63, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306f": 63, "red": 63, "green": 63, "\u3053\u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306f\u65b0\u305f\u306a\u8272\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u3057\u307e\u3059": 63, "black_color": 63, "black_rectangl": 63, "white_color": 63, "255": [57, 63, 143, 184], "white_rectangl": 63, "cyan_color": 63, "128": 63, "cyan_rectangl": 63, "color_from_rgb_basic_usag": 63, "rgb": 63, "\u8d64": 63, "\u7dd1": 63, "\u9752": 63, "\u306e\u5024\u304b\u3089\u8272\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 63, "\u8d64\u8272\u306e\u5024": 63, "\u7dd1\u8272\u306e\u5024": 63, "\u9752\u8272\u306e\u5024": 63, "\u4f5c\u6210\u3055\u308c\u305f\u8272\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 63, "00ff00": 63, "from_rgb": [62, 146], "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9": [62, 146], "to_hex": 146, "\u578b\u306e\u5024\u304b\u308916\u9032\u6570\u306e\u6587\u5b57\u5217": 151, "1f": 151, "\u578b\u306e\u5024\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": 151, "\u306e\u5024\u3067\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u305f\u5834\u5408": [], "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f16\u9032\u6570\u306e\u6587\u5b57\u5217": 151, "28": 151, "hex_str": 151, "1c": 151, "int_and_number_to_hex_basic_usag": 151, "16\u9032\u6570\u306e\u6587\u5b57\u5217": 151, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3092\u7121\u8996\u3057\u307e\u3059": 151, "\u306e\u5024\u3067\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u305f\u5834\u5408\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u306e\u5024\u306f\u7121\u8996\u3055\u308c\u307e\u3059": 151, "\u30e1\u30bd\u30c3\u30c9\u306f\u5c0f\u6587\u5b57\u306b\u5909\u63db\u3055\u308c\u305f\u6587\u5b57\u5217\u306e\u30b3\u30d4\u30fc\u3092\u8fd4\u5374\u3057\u307e\u3059": 197, "\u30e1\u30bd\u30c3\u30c9\u306f\u5f15\u6570\u3092\u5fc5\u8981\u3068\u305b\u305a": 197, "abc1_": [197, 203], "string_lower_basic_usag": 197, "\u5c0f\u6587\u5b57\u306b\u5909\u63db\u3055\u308c\u305f\u6587\u5b57\u5217\u306e\u30b3\u30d4\u30fc\u3092\u53d6\u5f97\u3057\u307e\u3059": 197, "\u5c0f\u6587\u5b57\u306b\u5909\u63db\u3055\u308c\u305f\u6587\u5b57\u5217\u306e\u30b3\u30d4\u30fc": 197, "\u30e1\u30bd\u30c3\u30c9\u306f\u5927\u6587\u5b57\u306b\u5909\u63db\u3055\u308c\u305f\u6587\u5b57\u5217\u306e\u30b3\u30d4\u30fc\u3092\u8fd4\u5374\u3057\u307e\u3059": 203, "\u30e1\u30bd\u30c3\u30c9\u306f\u5f15\u6570\u306e\u6307\u5b9a\u3092\u5fc5\u8981\u3068\u305b\u305a": 203, "string_upper_basic_usag": 203, "\u5927\u6587\u5b57\u306b\u5909\u63db\u3055\u308c\u305f\u6587\u5b57\u5217\u306e\u30b3\u30d4\u30fc\u3092\u8fd4\u5374\u3057\u307e\u3059": 203, "\u5927\u6587\u5b57\u5909\u63db\u3055\u308c\u305f\u6587\u5b57\u5217\u306e\u30b3\u30d4\u30fc": 203, "red_color": [62, 146], "\u5c5e\u6027\u306f\u8d64\u8272\u306e": 184, "\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059": [], "\u3053\u306e\u5024\u306f0": [57, 143, 184], "255\u306e\u7bc4\u56f2\u3092\u53d6\u308a\u307e\u3059": [57, 143, 184], "red_color_basic_usag": 184, "\u8d64\u8272\u306e\u6574\u6570\u5024": 184, "\u30d7\u30ed\u30d1\u30c6\u30a3\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 143, "\u30d7\u30ed\u30d1\u30c6\u30a3\u306f\u7dd1\u8272\u306e\u8272\u306e": 143, "aa00ff": 143, "green_color_basic_usag": 143, "\u7dd1\u8272\u306e\u6574\u6570\u5024": 143, "green_color": [62, 146], "\u5c5e\u6027\u306f\u9752\u8272\u306e": 57, "ffaa00": 57, "blue_color_basic_usag": 57, "\u9752\u8272\u306e\u6574\u6570\u306e\u5024": 57, "\u9752\u8272\u306e\u6574\u6570\u5024": 57, "aaff00": 57, "blue_color": [62, 146], "\u30e1\u30bd\u30c3\u30c9\u306f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u958b\u59cb\u3068\u7d42\u4e86\u306e\u6307\u5b9a\u5024\u3092\u4f7f\u3063\u3066\u6587\u5b57\u5217\u3092\u30b9\u30e9\u30a4\u30b9": 200, "\u6587\u5b57\u5217\u306e\u4e00\u90e8\u306e\u62bd\u51fa\u3092": 200, "\u306e2\u3064\u306e\u5f15\u6570\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059": 200, "\u5f15\u6570\u306f\u30b9\u30e9\u30a4\u30b9\u306e\u958b\u59cb\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3067\u3059": 200, "\u5f15\u6570\u306f\u30b9\u30e9\u30a4\u30b9\u306e\u7d42\u70b9\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u6307\u5b9a\u3068\u306a\u308a\u307e\u3059": 200, "\u30b9\u30e9\u30a4\u30b9\u7bc4\u56f2\u306e\u6700\u5f8c\u306f\u3053\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 200, "\u305f\u3060\u3057\u3053\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u81ea\u4f53\u306f\u542b\u307f\u307e\u305b\u3093": 200, "\u304c\u4f7f\u308f\u308c\u307e\u3059": 200, "012345": 200, "12345": 200, "string_slice_basic_usag": 200, "\u6307\u5b9a\u3055\u308c\u305f\u5f15\u6570\u306e\u7bc4\u56f2\u306b\u57fa\u3065\u3044\u3066\u30b9\u30e9\u30a4\u30b9\u3055\u308c\u305f\u6587\u5b57\u5217\u3092\u53d6\u5f97\u3057\u307e\u3059": 200, "\u3082\u3057\u3082\u3053\u306e\u5f15\u6570\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408": 200, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u7d42\u4e86\u4f4d\u7f6e\u306e\u30b9\u30e9\u30a4\u30b9\u3092\u30b9\u30ad\u30c3\u30d7\u3057\u307e\u3059": 200, "\u30b9\u30e9\u30a4\u30b9\u7d50\u679c\u306e\u6587\u5b57\u5217": 200, "\u578b\u306e\u5024\u306e\u8fd4\u5374\u3082\u3057\u304f\u306f\u8a2d\u5b9a\u3092\u884c\u3044\u307e\u3059": [57, 143, 184], "\u4ee5\u4e0b\u306e\u4f8b\u306f": 184, "\u5c5e\u6027\u306egetter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4f7f\u7528\u4f8b\u3068\u306a\u308a\u307e\u3059": 184, "\u306egetter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4f8b\u3092\u793a\u3057\u307e\u3059": 143, "\u306egetter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u4f7f\u3044\u65b9\u3092\u793a\u3057\u307e\u3059": 57, "0x7f45d423a2b0": [], "multilinetext": [146, 208, 209, 210, 211, 212, 213, 214, 215, 216], "\u30af\u30e9\u30b9\u306f\u8907\u6570\u884c\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3057\u307e\u3059": 164, "\u3053\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u4e00\u5b9a\u306e\u5e45\u3067\u6298\u308a\u8fd4\u3057\u307e\u3059": 164, "text_align": [146, 164, 209], "\u306a\u3069\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u3082\u540c\u69d8\u306b\u53d7\u3051\u4ed8\u3051\u307e\u3059": 164, "multi_line_text": [164, 208, 209, 210, 211, 212, 214, 215, 216], "ut": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "labor": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "et": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "magna": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "aliqua": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "enim": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "ad": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "minim": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "veniam": [164, 208, 209, 210, 211, 212, 213, 214, 215, 216], "cyan_00aaff": [154, 164, 205, 212], "multi_line_text_basic_usag": 164, "css_text_align": 164, "csstextalign": [164, 209], "text_align_last": [146, 164], "css_text_align_last": 164, "csstextalignlast": 164, "underlin": [146, 164], "\u8907\u6570\u884c\u306e\u30c6\u30ad\u30b9\u30c8\u8981\u7d20\u306e\u30af\u30e9\u30b9\u306e\u5b9f\u88c5": 164, "\u8868\u793a\u5bfe\u8c61\u306e\u30c6\u30ad\u30b9\u30c8": 164, "html\u30bf\u30b0\u304c\u5229\u7528\u53ef\u80fd\u3067\u3059": 164, "\u6298\u308a\u8fd4\u3057\u4f4d\u7f6e\u3068\u306a\u308b\u30c6\u30ad\u30b9\u30c8\u306e\u5e45": 164, "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba": 164, "gray_666666": 164, "\u30c6\u30ad\u30b9\u30c8\u306e\u8272": [164, 212], "\u30c6\u30ad\u30b9\u30c8\u306e\u900f\u660e\u5ea6": 164, "\u6700\u5c0f\u5024\u306f0": 164, "\u6700\u5927\u5024\u306f1": 164, "\u30c6\u30ad\u30b9\u30c8\u3092\u592a\u5b57\u3067\u8868\u793a\u3059\u308b\u304b\u5426\u304b": 164, "\u30c6\u30ad\u30b9\u30c8\u3092\u659c\u4f53\u3067\u8868\u793a\u3059\u308b\u304b\u5426\u304b": 164, "\u6700\u7d42\u884c\u306e\u884c\u63c3\u3048\u306e\u8a2d\u5b9a": 164, "\u30c6\u30ad\u30b9\u30c8\u306e\u4e0b\u7dda\u3092\u8868\u793a\u3059\u308b\u304b\u5426\u304b": 164, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u30c6\u30ad\u30b9\u30c8\u95a2\u4fc2\u306e": [208, 209, 210, 211, 212, 213, 214, 215, 216], "text_fill_color_basic_usag": 212, "\u30c6\u30ad\u30b9\u30c8\u306e\u5857\u308a\u306e\u8272\u3092\u53d6\u5f97\u3057\u307e\u3059": 212, "\u30c6\u30ad\u30b9\u30c8\u306e": [146, 164], "text_fill_alpha_basic_usag": 211, "\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 211, "\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u5024": 211, "170": [208, 209, 210, 211, 214], "\u5c5e\u6027\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u592a\u5b57\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3044\u307e\u3059": 210, "getter\u3082\u3057\u304f\u306fsetter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u306f": [], "\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059": [], "\u306e\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": [210, 214, 216], "\u30c6\u30ad\u30b9\u30c8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u592a\u5b57\u306e\u30b9\u30bf\u30a4\u30eb\u306b\u306a\u308a\u307e\u3059": 210, "text_bold_basic_usag": 210, "\u592a\u5b57\u8a2d\u5b9a": 210, "font": [210, 213, 214], "weight": 210, "\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 210, "\u592a\u5b57": 210, "\u8a2d\u5b9a\u306e\u5024": 210, "\u5c5e\u6027\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u659c\u4f53\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 214, "\u30c6\u30ad\u30b9\u30c8\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u659c\u4f53\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306b\u306a\u308a\u307e\u3059": 214, "text_italic_basic_usag": 214, "\u659c\u4f53\u306e\u30b9\u30bf\u30a4\u30eb": 214, "\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": [214, 216], "\u306e\u8a2d\u5b9a\u5024": 214, "auto": [164, 209], "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30c6\u30ad\u30b9\u30c8\u306e\u884c\u63c3\u3048\u306e\u8a2d\u5b9a\u5024\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 208, "getter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f": [], "\u8a2d\u5b9a\u3067\u304d\u308benum\u306e\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059": 208, "justifi": [208, 209], "\u3053\u306e\u8a2d\u5b9a\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u3067\u3059": [208, 209], "css_text_align_left": 208, "css_text_align_cent": 208, "css_text_align_right": 208, "\u7279\u8a18\u3058\u3053\u3092": 208, "\u3053\u306eenum\u306e\u8a2d\u5b9a\u306f\u30c6\u30ad\u30b9\u30c8\u3092\u5747\u7b49\u914d\u7f6e\u3057\u307e\u3059": 208, "css_text_align_justifi": 208, "\u30c6\u30ad\u30b9\u30c8\u306e\u884c\u63c3\u3048\u8a2d\u5b9a\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 208, "\u884c\u63c3\u3048\u8a2d\u5b9a": 208, "getter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306f": 208, "\u306e\u578b\u306eenum\u306e\u5024\u3068\u306a\u308a\u307e\u3059": 208, "\u5c5e\u6027\u3067\u306f\u6700\u7d42\u884c\u306e\u884c\u63c3\u3048\u306e\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 209, "getter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u578b\u306f": [209, 215], "\u306eenum\u306e\u5024\u3068\u306a\u308a\u307e\u3059": 209, "\u6307\u5b9a\u3067\u304d\u308benum\u306e\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059": 209, "\u6319\u52d5": 209, "\u306e\u8a2d\u5b9a\u3092\u7d99\u627f\u3057\u307e\u3059": 209, "\u8a2d\u5b9a\u304c": 209, "\u306e\u5834\u5408\u306b\u306f": 209, "\u5c5e\u6027\u3082\u4e2d\u592e\u5bc4\u305b\u3068\u3057\u3066\u632f\u308b\u821e\u3044\u307e\u3059": 209, "css_text_align_last_auto": 209, "css_text_align_last_left": 209, "css_text_align_last_cent": 209, "css_text_align_last_right": 209, "\u3053\u306eenum\u306e\u8a2d\u5b9a\u306f\u6700\u7d42\u884c\u306e\u30c6\u30ad\u30b9\u30c8\u3092\u5747\u7b49\u306b\u884c\u63c3\u3048\u3057\u307e\u3059": 209, "css_text_align_last_justifi": 209, "last\u5c5e\u6027\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 209, "last\u5c5e\u6027\u306e\u5024": 209, "\u306e\u578b\u3068\u306a\u308a\u307e\u3059": [210, 214, 216], "\u5c5e\u6027\u3067\u306f\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba": 213, "\u30c6\u30ad\u30b9\u30c8\u30b5\u30a4\u30ba": 213, "\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 213, "getter\u3068setter\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u5024\u306e\u578b\u306f": 213, "font_size_16_text": 213, "font_size_32_text": 213, "190": 213, "text_font_size_basic_usag": 213, "\u30c6\u30ad\u30b9\u30c8\u306e\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\u3092\u53d6\u5f97\u3057\u307e\u3059": 213, "\u30c6\u30ad\u30b9\u30c8\u306e\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba": 213, "\u5c5e\u6027\u306f\u30c6\u30ad\u30b9\u30c8\u306e\u4e0b\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3044\u307e\u3059": 216, "\u30c6\u30ad\u30b9\u30c8\u306f\u4e0b\u7dda\u3092\u8868\u793a\u3057\u307e\u3059": 216, "195": 216, "gray_aaaaaa": [215, 216], "text_underline_basic_usag": 216, "\u30c6\u30ad\u30b9\u30c8\u306e\u4e0b\u7dda": 216, "\u30c6\u30ad\u30b9\u30c8\u306e\u4e0b\u7dda\u306e\u8a2d\u5b9a": 216, "line_height": [146, 164], "\u884c\u306e\u9ad8\u3055": 164, "\u30c6\u30ad\u30b9\u30c8\u306e\u884c\u9593": 164, "\u306e\u8a2d\u5b9a": 164, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u884c\u9593\u306e\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 215, "\u306e\u5024\u306b\u306a\u308a\u307e\u3059": 215, "\u3082\u3057\u3053\u306e\u5c5e\u6027\u306b1": 215, "5\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408": 215, "\u884c\u9593\u306f\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\u306e1": 215, "5\u500d\u306e\u5927\u304d\u3055\u306b\u306a\u308a\u307e\u3059": 215, "text_line_height_basic_usag": 215, "\u884c\u9593\u306e\u5024\u3092\u53d6\u5f97\u3057\u307e\u3059": 215, "\u884c\u9593\u306e\u5024": 215, "0x7f2367f69400": [], "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u73fe\u5728\u306e\u4e00\u70b9\u9396\u7dda\u306e\u8a2d\u5b9a\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3048\u307e\u3059": 117, "\u5c5e\u6027\u3067\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4e38\u30c9\u30c3\u30c8\u306e\u7dda\u306e\u8a2d\u5b9a\u306e\u66f4\u65b0\u3068\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 120, "\u5c5e\u6027\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7dda\u5e45\u306e\u66f4\u65b0\u3082\u3057\u304f\u306f\u53d6\u5f97\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 121, "\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u30a2\u30a4\u30b3\u30f3": [], "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306fapysc\u3067\u306e\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u306e\u30a2\u30a4\u30b3\u30f3\u306b\u95a2\u4fc2\u3057\u305f\u5b9f\u88c5\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": [], "\u5404\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u306e\u30a2\u30a4\u30b3\u30f3\u306e\u30af\u30e9\u30b9\u540d\u306f\u4f8b\u3048\u3070": [], "materialsearchicon": [], "materialaccountcircleicon": [], "\u3068\u3044\u3063\u305f\u3088\u3046\u306b": [], "\u30a2\u30a4\u30b3\u30f3\u540d": [], "icon": 154, "\u3068\u3044\u3046\u5f62\u5f0f\u306b\u306a\u308a\u307e\u3059": [], "\u3053\u308c\u3089\u306e\u30a2\u30a4\u30b3\u30f3\u306e\u30af\u30e9\u30b9\u306f": [], "\u306a\u3069\u306e\u4ed6\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u7528\u306e\u5404\u30af\u30e9\u30b9\u3068\u540c\u69d8\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [], "margin": [], "icon_s": [], "icon_num": [], "search_icon": [], "info_icon": [], "materialinfoicon": [], "home_icon": 154, "materialhomeicon": 154, "magenta_ff00ff": [], "material_icons_basic_usag": [], "\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u306e\u30a2\u30a4\u30b3\u30f3\u3092\u4f5c\u6210\u3057\u307e\u3059": [], "\u30a2\u30a4\u30b3\u30f3\u306e\u5857\u308a\u306e\u8272": 154, "\u30a2\u30a4\u30b3\u30f3\u306e\u5857\u308a\u306e\u900f\u660e\u5ea6": 154, "\u30a2\u30a4\u30b3\u30f3\u306ex\u5ea7\u6a19": 154, "\u30a2\u30a4\u30b3\u30f3\u306ey\u5ea7\u6a19": 154, "\u30a2\u30a4\u30b3\u30f3\u306e\u5e45": [], "\u30a2\u30a4\u30b3\u30f3\u306e\u9ad8\u3055": [], "apach": 154, "licens": 154, "version": 154, "0x7f750e8a79d0": [], "\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3": 146, "\u3053\u306e\u30da\u30fc\u30b8\u3067\u306fapysc\u306b\u304a\u3051\u308b\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306e\u5b9f\u88c5\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 154, "\u5404\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306f\u4e00\u756a\u4e0a\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u30d1\u30b9\u306b\u5b58\u5728\u3057\u307e\u3059": 154, "materialtimelineicon": 154, "\u5404\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306e\u540d\u524d\u306f": 154, "\u3068\u3044\u3046\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3068": 154, "\u3068\u3044\u3046\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u5171\u901a\u3067\u6301\u3061\u307e\u3059": 154, "\u5168\u3066\u306e\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306f": 154, "\u306a\u3069\u306e\u5ea7\u6a19\u3084\u30b9\u30bf\u30a4\u30eb\u306e\u8a2d\u5b9a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059": 154, "168": 154, "materialbuildicon": 154, "materialcheckcircleicon": 154, "material_icon_basic_usage_1": 154, "\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u5c5e\u6027\u3092\u7528\u3044\u3066\u5ea7\u6a19\u3084\u30b9\u30bf\u30a4\u30eb\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 154, "build_icon": 154, "check_circle_icon": 154, "material_icon_basic_usage_2": 154, "apysc\u30e9\u30a4\u30d6\u30e9\u30ea\u306fapach": 154, "0\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059": 154, "svg\u30a2\u30a4\u30b3\u30f3\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u306e\u5b9f\u88c5": 154, "clamp": 146, "\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u6700\u5c0f\u5024\u3068\u6700\u5927\u5024\u306e\u7bc4\u56f2\u5185\u3067\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 155, "\u3082\u3057\u5024\u304c": 155, "\u3067\u6700\u5c0f\u5024\u304c": 155, "\u306e\u5834\u5408": 155, "\u7d50\u679c\u306e\u5024\u306f": 155, "\u3067\u6700\u5927\u5024\u304c": 155, "\u3067\u6700\u5c0f\u5024\u3068\u6700\u5927\u5024\u304c": 155, "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u305d\u306e\u307e\u307e": 155, "min_": 155, "max_": 155, "\u5404\u5f15\u6570\u3068\u8fd4\u5374\u5024\u306f": 155, "math_clamp_basic_usag": 155, "_valuetyp": 155, "\u6307\u5b9a\u3055\u308c\u305f\u6700\u5c0f\u5024\u3068\u6700\u5927\u5024\u306e\u7bc4\u56f2\u5185\u3067\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 155, "\u3082\u3057\u5024\u304c\u6700\u5c0f\u5024\u672a\u6e80\u3067\u3042\u308c\u3070\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u6700\u5c0f\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 155, "\u3082\u3057\u5024\u304c\u6700\u5927\u5024\u3088\u308a\u3082\u5927\u304d\u3051\u308c\u3070\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u6700\u5927\u5024\u3092\u8fd4\u5374\u3057\u307e\u3059": 155, "\u5bfe\u8c61\u306e": 155, "\u6700\u5c0f\u5024": 155, "\u6700\u5927\u5024": 155, "\u6700\u5c0f\u5024\u3068\u6700\u5927\u5024\u7bc4\u56f2\u306e\u53cd\u6620\u5f8c\u306e\u5024": 155, "svgmask": 146, "\u30af\u30e9\u30b9\u3068\u95a2\u9023\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9": 146, "\u30af\u30e9\u30b9\u3068\u305d\u308c\u306b\u95a2\u9023\u3057\u305f": 205, "add_svg_masking_object": [], "\u30e1\u30bd\u30c3\u30c9\u3084": 205, "svg_mask": [], "\u5c5e\u6027\u306a\u3069\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 205, "\u30af\u30e9\u30b9\u306fsvg\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u306e\u30de\u30b9\u30af\u8a2d\u5b9a\u3092\u6271\u3044\u307e\u3059": 205, "\u91cd\u306a\u308a\u3042\u3063\u305f\u9818\u57df\u306e\u307f\u3092\u8868\u793a\u3059\u308b\u5f62\u3067svg\u306e": 205, "\u306b\u5225\u306esvg\u306e": 205, "\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 205, "\u4ee5\u4e0b\u306e\u30b9\u30c6\u30c3\u30d7\u3067\u30de\u30b9\u30af\u8a2d\u5b9a\u3092\u9069\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 205, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059": 205, "\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u4f5c\u6210\u3057\u305f": 205, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b": 205, "\u3092\u8ffd\u52a0\u3057\u307e\u3059": 205, "\u30de\u30b9\u30af\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u5bfe\u8c61\u306e": 205, "\u5c5e\u6027\u306b\u8a2d\u5b9a\u3057\u307e\u3059": 205, "mask": 205, "add": 205, "masking_object": 205, "svg_mask_basic_usag": 205, "svg\u306e\u30de\u30b9\u30af\u51e6\u7406\u306e\u305f\u3081\u306e\u30af\u30e9\u30b9\u3067\u3059": 205, "graphics_bas": 205, "\u3053\u306e\u30de\u30b9\u30af\u306b\u30de\u30b9\u30af\u51e6\u7406\u7528\u306esvg\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8ffd\u52a0\u3057\u307e\u3059": 205, "\u3053\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u4ed6\u306esvg\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u30de\u30b9\u30af\u3059\u308b\u305f\u3081\u306b\u305d\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f7f\u7528\u3057\u307e\u3059": 205, "\u30de\u30b9\u30af\u3078\u8907\u6570\u306e\u30de\u30b9\u30af\u51e6\u7406\u7528\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 205, "\u8ffd\u52a0\u3059\u308b\u30de\u30b9\u30af\u51e6\u7406\u7528\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 205, "svg\u306e\u30de\u30b9\u30af\u8a2d\u5b9a\u3092\u53d6\u5f97\u3057\u307e\u3059": 205, "\u3082\u3057\u30de\u30b9\u30af\u8a2d\u5b9a\u304c\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u3070": 205, "\u3053\u306e\u5c5e\u6027\u306e\u5024\u306fnone\u3068\u306a\u308a\u307e\u3059": 205, "\u30de\u30b9\u30af\u8a2d\u5b9a": 205, "\u30de\u30b9\u30af\u3092\u8a2d\u5b9a\u3059\u308b\u5bfe\u8c61\u306e": 205, "\u3068\u30de\u30b9\u30af\u7528\u306e": 205, "\u306f\u305d\u308c\u305e\u308c\u5206\u96e2\u3055\u308c\u305f\u5ea7\u6a19\u5024\u3092\u6301\u3063\u3066\u3044\u307e\u3059": 205, "\u3082\u3057\u4e21\u65b9\u306e": 205, "\u306e\u5ea7\u6a19\u3092\u540c\u3058\u91cf\u3060\u3051\u5909\u66f4\u3057\u305f\u3044\u5834\u5408\u306b\u306f": 205, "\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u3092\u4f7f\u7528\u3059\u308b\u3068\u4fbf\u5229\u3067\u3059": 205, "\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u5ea7\u6a19\u306e\u307f\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u3067": 205, "\u30de\u30b9\u30af\u306e\u5ea7\u6a19\u3092\u7dad\u6301\u3057\u305f\u307e\u307e": 205, "\u306e\u5ea7\u6a19\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 205, "\u30de\u30b9\u30af\u51e6\u7406\u7528\u306e": 205, "\u306e\u30b3\u30f3\u30c6\u30ca\u30fc\u3078\u3068\u8ffd\u52a0\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093": 205, "need": 205, "svg_mask_sprite_container_exampl": 205, "0x7fc97c13cb80": [], "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u7701\u7565\u53ef\u80fd\u306a": 109, "target_coordinate_space_object": [109, 183], "\u8fd4\u5374\u5024\u306e\u57fa\u6e96\u3068\u306a\u308b\u5ea7\u6a19\u306f\u6307\u5b9a\u3055\u308c\u305f\u5f15\u6570\u306e": 109, "\u304b\u3089\u306e\u76f8\u5bfe\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 109, "\u3053\u306e\u8a2d\u5b9a\u306f\u89aa\u306e": 109, "\u306e\u5ea7\u6a19\u306a\u3069\u306e\u76f8\u5bfe\u5ea7\u6a19\u3092\u53d6\u5f97\u3057\u305f\u3044\u5834\u5408\u306a\u3069\u306b\u5f79\u306b\u7acb\u3064\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 109, "\u5ea7\u6a19\u306f": 109, "\u3092\u57fa\u6e96\u3068\u3057\u305f\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 109, "\u5b9f\u8cea\u7684\u306b\u7d76\u5bfe\u5ea7\u6a19\u3068\u306a\u308a\u307e\u3059": 109, "\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306e\u4f8b": 109, "get_bounds_basic_usage_1": 109, "\u5f15\u6570\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306e\u4f8b": 109, "get_bounds_basic_usage_2": 109, "\u5ea7\u6a19\u306e\u57fa\u6e96\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [109, 183], "\u3082\u3057none\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": [109, 183], "\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u30b9\u30c6\u30fc\u30b8\u3092\u57fa\u6e96\u3068\u3057\u305f\u30d0\u30a6\u30f3\u30c7\u30a3\u30f3\u30b0\u30dc\u30c3\u30af\u30b9\u306e\u30c7\u30fc\u30bf\u3092\u8fd4\u5374\u3057\u307e\u3059": [109, 183], "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408": [109, 183], "\u3054\u306e\u30e1\u30bd\u30c3\u30c9\u306f\u6307\u5b9a\u3055\u308c\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u5ea7\u6a19\u3092\u57fa\u6e96\u3068\u3057\u305f\u30d0\u30a6\u30f3\u30c7\u30a3\u30f3\u30b0\u30dc\u30c3\u30af\u30b9\u306e\u30c7\u30fc\u30bf\u3092\u8fd4\u5374\u3057\u307e\u3059": [109, 183], "0x7fc88d17f040": 99}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"\u30cf\u30f3\u30c9\u30e9\u306eoptions\u5f15\u6570\u306e\u578b\u306b\u3064\u3044\u3066": 0, "options\u5f15\u6570\u306b\u306f\u8f9e\u66f8\u306e\u578b\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 0, "typeddict\u3092\u4f7f\u3063\u305f\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306b\u3064\u3044\u3066": 0, "add_child": [1, 191], "remove_child": [1, 191], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [1, 3, 5, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 28, 30, 31, 32, 35, 38, 40, 42, 43, 45, 46, 47, 48, 50, 51, 54, 61, 66, 74, 76, 79, 80, 83, 84, 89, 90, 92, 93, 99, 108, 109, 110, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 150, 155, 156, 157, 158, 162, 165, 185, 187, 189, 194, 198, 199, 201, 202, 218, 219, 221, 225, 227, 228, 232], "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": [1, 26, 27, 29, 34, 37, 39, 44, 48, 49, 50, 51, 52, 53, 54, 56, 87, 88, 89, 91, 100, 114, 123, 124, 125, 126, 142, 161, 163, 226, 231], "\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u81ea\u52d5\u8ffd\u52a0\u306b\u3064\u3044\u3066": 1, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [1, 61, 79, 89, 100], "\u95a2\u9023\u8cc7\u6599": [1, 2, 33, 45, 47, 48, 49, 50, 51, 52, 53, 54, 59, 61, 66, 79, 85, 86, 88, 89, 94, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 111, 119, 135, 144, 159, 160, 161, 162, 163, 179, 181, 188, 189, 190, 220, 222, 231, 232], "api": [1, 3, 5, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 54, 56, 61, 66, 67, 79, 83, 87, 89, 92, 93, 100, 101, 102, 103, 104, 105, 106, 110, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 141, 142, 150, 161, 162, 163, 165, 186, 187, 189, 191, 194, 198, 199, 201, 202, 221, 225, 226, 228, 232], "add_debug_info_set": 2, "\u306e\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 2, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": [2, 3, 5, 9, 10, 11, 13, 14, 15, 17, 18, 20, 21, 23, 24, 25, 28, 30, 31, 32, 35, 38, 40, 42, 43, 45, 46, 47, 61, 66, 69, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 83, 84, 90, 92, 93, 99, 108, 109, 110, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 150, 155, 156, 157, 158, 162, 165, 185, 187, 189, 194, 198, 199, 201, 202, 207, 218, 219, 221, 225, 227, 228, 232], "\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 80, 82, 83, 84, 87, 88, 90, 91, 92, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 150, 151, 152, 153, 154, 155, 156, 157, 158, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 187, 189, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233], "mypy\u8a2d\u5b9a\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": 2, "animationbase\u30af\u30e9\u30b9": 3, "start": [3, 226], "animationbas": [4, 5, 16], "\u30af\u30e9\u30b9": [4, 5, 8, 33, 58, 60, 62, 65, 67, 68, 81, 85, 96, 97, 98, 101, 102, 103, 104, 105, 106, 111, 144, 146, 147, 152, 153, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 186, 191, 192, 206, 207, 217, 220, 223, 229], "target": 4, "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 4, "\u5c5e\u6027\u306e\u6982\u8981": [4, 41, 57, 143, 184, 196, 208, 209, 210, 211, 212, 213, 214, 215, 216], "\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306b\u3064\u3044\u3066": 4, "\u5c5e\u6027\u306eapi": [4, 8, 33, 41, 42, 57, 58, 69, 70, 71, 72, 73, 75, 77, 78, 81, 84, 90, 112, 113, 114, 115, 116, 118, 119, 120, 121, 122, 124, 127, 141, 143, 147, 160, 183, 184, 191, 192, 196, 205, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 222, 223, 224, 229], "animation_complet": [5, 188], "\u4ed6\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3059\u969b\u306e\u7279\u8a18\u4e8b\u9805": 5, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306edelay\u306e\u8a2d\u5b9a": 6, "\u8a2d\u5b9a\u6982\u8981": [6, 7], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306eduration\u8a2d\u5b9a": 7, "animationev": 8, "\u30af\u30e9\u30b9\u6982\u8981": [8, 60, 62, 65, 68, 95, 97, 101, 102, 103, 104, 105, 106, 107, 152, 153, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 182, 183, 205, 206, 217, 223, 229], "this\u5c5e\u6027": 8, "\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3": [8, 33], "\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eapi": [8, 33, 58, 60, 62, 68, 81, 96, 97, 98, 144, 147, 152, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 191, 192, 205, 206, 207, 220, 222, 223, 224, 229], "thi": [8, 160, 223], "animation_fill_alpha": 9, "animation_fill_color": 10, "animation_finish": 11, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": 12, "apysc\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u51fa\u6765\u308b\u3053\u3068": 12, "\u5404\u5c5e\u6027\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u4f8b": 12, "\u30a4\u30fc\u30b8\u30f3\u30b0": 12, "x\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "y\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "x\u5ea7\u6a19\u3068y\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u9ad8\u3055\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u5857\u308a\u306e\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u7dda\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u7dda\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u7dda\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u534a\u5f84\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 12, "animation_line_alpha": 13, "animation_line_color": 14, "animation_line_thick": 15, "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3": 16, "animationbase\u30af\u30e9\u30b9\u306b\u95a2\u4fc2\u3057\u305f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u81ea\u8eab\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 16, "animation_mov": 17, "animation_parallel": 18, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306edurat": 18, "delai": [18, 222], "easing\u306e\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u306e\u7279\u8a18\u4e8b\u9805": 18, "animation_paus": 19, "animation_plai": 19, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": [19, 77], "animation_radiu": 20, "animation_reset": 21, "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8fd4\u5374\u5024": 22, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fanimationbase\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": 22, "animation_revers": 23, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [23, 178, 229], "animation_rotation_around_cent": 24, "animation_rotation_around_point": 25, "animation_scale_x_from_cent": 26, "animation_scale_y_from_cent": 26, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [26, 27, 29, 34, 37, 39, 44, 49, 91, 100, 125, 161, 163, 226], "animation_scale_x_from_point": 27, "animation_scale_y_from_point": 27, "animation_tim": 28, "animation_width": 29, "animation_height": 29, "ellips": [29, 30, 31, 97], "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": 29, "animation_x": 30, "circl": [30, 31, 60], "\u306e\u5404\u30af\u30e9\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [30, 31], "animation_i": 31, "append_js_express": 32, "arrai": [33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 146], "\u30af\u30e9\u30b9\u3068\u306f": 33, "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u30e1\u30bd\u30c3\u30c9": [33, 81], "fixed_value_typ": 33, "\u5f15\u6570\u306b\u3064\u3044\u3066": 33, "valu": [33, 58, 81, 108, 147, 192], "\u30af\u30e9\u30b9\u306e": [34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 57, 63, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 83, 84, 87, 89, 90, 91, 100, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 151, 155, 156, 157, 158, 160, 183, 184, 194, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 207, 218, 219, 221, 222, 224, 225, 226], "append": 34, "push": 34, "clear": [35, 128], "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 36, "extend": 37, "concat": 37, "index_of": 38, "insert": 39, "insert_at": 39, "join": 40, "last_valu": 41, "\u30d7\u30ed\u30d1\u30c6\u30a3": [41, 57, 143, 184], "length": [42, 84, 196], "len": 42, "\u95a2\u6570\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": 42, "pop": 43, "remov": 44, "remove_at": 44, "revers": 45, "slice": [46, 200], "sort": 47, "assert_arrays_equ": 48, "assert_arrays_not_equ": 48, "assert_equ": [48, 50, 51], "assert_not_equ": [48, 50, 51], "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [48, 50], "assert_defin": 49, "assert_undefin": 49, "assert_dicts_equ": 50, "assert_dicts_not_equ": 50, "assert_great": 52, "assert_greater_equ": 52, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [52, 53, 231], "\u306eapi": [52, 53, 56, 99, 117, 118, 119, 120, 140, 156, 157, 158, 185, 191, 231], "assert_less": 53, "assert_less_equ": 53, "assert_tru": 54, "assert_fals": 54, "javascript": 55, "\u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u6319\u52d5": 55, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u540d\u306b\u3064\u3044\u3066": 55, "\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u7d50\u679c\u306b\u3064\u3044\u3066": 55, "\u7701\u7565\u53ef\u80fd\u306amsg\u5f15\u6570\u306b\u3064\u3044\u3066": 55, "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u767b\u9332\u3068\u30a4\u30d9\u30f3\u30c8\u306e\u767a\u751f": 56, "\u767a\u706b": 56, "\u5236\u5fa1": 56, "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u306e\u89e3\u9664": 56, "bind_custom_ev": 56, "trigger_custom_ev": 56, "unbind_custom_ev": 56, "unbind_custom_event_al": 56, "boolean": [58, 146], "\u30af\u30e9\u30b9\u306e\u6982\u8981": [58, 67, 85, 96, 98, 111, 144, 176, 186, 191, 192, 220], "bool\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306e\u7279\u8a18\u4e8b\u9805": 58, "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u5236\u5fa1": 58, "\u306e\u5024\u3092\u53cd\u8ee2\u3055\u305b\u308b": 58, "not_": 58, "\u5404\u5206\u5c90\u5236\u5fa1\u306e\u30af\u30e9\u30b9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5909\u6570\u5024\u306e\u5fa9\u5143\u8a2d\u5b9a": 59, "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306ewith\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u5185\u306e\u30b3\u30fc\u30c9\u306e\u5b9f\u884c\u306b\u3064\u3044\u3066": 59, "\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5909\u6570\u306e\u5fa9\u5143\u8a2d\u5b9a": 59, "draw_circl": [60, 129], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [60, 182], "x\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "y\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "radius\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 60, "fill_color\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 166, 177, 178, 182, 206, 207, 229], "fill_alpha\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 166, 177, 178, 182, 206, 207, 229], "line_color\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 207, 229], "line_alpha\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 207, 229], "line_thickness\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 207, 229], "line_dot_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "line_dash_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "line_round_dot_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "line_dash_dot_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "rotation_around_center\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "set_rotation_around_point\u3068get_rotation_around_point\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "scale_x_from_center\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "scale_y_from_center\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "set_scale_x_from_point\u3068get_scale_x_from_point\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "set_scale_y_from_point\u3068get_scale_y_from_point\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "flip_x\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "flip_y\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 206, 229], "skew_x\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "skew_y\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [60, 97, 152, 166, 177, 178, 182, 229], "click": 61, "unbind_click": 61, "\u5168\u3066\u306e\u30af\u30ea\u30c3\u30af\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u3092\u89e3\u9664\u3059\u308b": 61, "unbind_click_al": 61, "color": [57, 62, 63, 65, 143, 146, 184], "\u53d7\u3051\u4ed8\u3051\u3089\u308c\u308b16\u9032\u6570\u306e\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9": 62, "colorless": 64, "\u5b9a\u6570": 64, "\u5b9a\u6570\u306e\u6982\u8981": 64, "\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5404\u8272": [65, 153], "contain": [66, 191], "continu": 67, "datetim": [68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 146], "dai": [69, 217, 218], "\u5c5e\u6027": [69, 70, 71, 72, 73, 75, 77, 78, 86, 113, 160, 196, 208, 209, 210, 211, 212, 213, 214, 215, 216, 223], "hour": 70, "millisecond": 71, "minut": 72, "month": 73, "now": 74, "\u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306eapi": 74, "second": 75, "set_month_end": 76, "weekday_j": 77, "weekday_pi": 77, "year": 78, "dblclick": 79, "unbind_dblclick": 79, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [79, 163], "unbind_dblclick_al": 79, "delet": 80, "dictionari": [81, 82, 83, 84, 146], "dictionary\u30af\u30e9\u30b9\u306e\u6982\u8981": 81, "\u5024\u306esetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 81, "\u5024\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 81, "getter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": 81, "\u5024\u306e\u524a\u9664\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 81, "\u30af\u30e9\u30b9\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a": 82, "get": 83, "len\u95a2\u6570\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": 84, "displayobject": [85, 86, 87, 88, 89, 90, 91, 146], "graphicsbas": [86, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 146], "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u5c5e\u6027\u306e\u6982\u8981": 86, "\u305d\u308c\u3089\u306e\u5c5e\u6027\u3067apysc\u304c\u3067\u304d\u308b\u3053\u3068": 86, "x": [86, 91], "y": [86, 91], "visibl": [86, 90], "\u56de\u8ee2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 86, "\u62e1\u7e2e\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 86, "\u53cd\u8ee2\u306e\u5404\u5c5e\u6027": 86, "\u6b6a\u307f\u306e\u5404\u5c5e\u6027": 86, "get_css": 87, "set_css": 87, "\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 87, "\u30af\u30e9\u30b9\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 88, "parent": 89, "remove_from_par": 89, "\u7d2f\u7b97\u4ee3\u5165\u6f14\u7b97": 91, "x\u5c5e\u6027\u306eapi": [91, 176], "y\u5c5e\u6027\u306eapi": [91, 176], "display_on_colaboratori": 92, "\u5fc5\u8981\u3068\u3055\u308c\u308b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306a\u3069\u306e\u5bfe\u5fdc": [92, 93], "display_on_jupyt": 93, "\u7279\u8a18\u4e8b\u9805": [93, 96, 98, 122, 138, 165, 189, 232], "\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": 94, "apysc\u306e\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3067\u304d\u308b\u3053\u3068": 94, "\u5857\u308a\u306e\u8a2d\u5b9a": 94, "\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 94, "\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 94, "\u30a4\u30fc\u30b8\u30f3\u30b0\u306eenum": 95, "\u30a4\u30fc\u30ba\u30a4\u30f3": 95, "eas": 95, "\u30a4\u30fc\u30ba\u30a2\u30a6\u30c8": 95, "out": 95, "\u30a4\u30fc\u30ba\u30a4\u30f3\u30a2\u30a6\u30c8": 95, "\u306e\u9055\u3044": 95, "\u30a4\u30fc\u30ba\u30a4\u30f3\u306e\u4f8b": 95, "\u30a4\u30fc\u30ba\u30a2\u30a6\u30c8\u306e\u4f8b": 95, "\u30a4\u30fc\u30ba\u30a4\u30f3\u30a2\u30a6\u30c8\u306e\u4f8b": 95, "elif": 96, "draw_ellips": [97, 133], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u306e\u7279\u8a18\u4e8b\u9805": 97, "width\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [97, 182], "height\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [97, 182], "els": 98, "enter_fram": 99, "timer": [99, 220, 221, 222, 224, 225, 226], "\u30af\u30e9\u30b9\u3068": 99, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u3069\u3061\u3089\u3092\u4f7f\u3046\u3079\u304d\u304b": 99, "event": 100, "prevent_default": 100, "stop_propag": 100, "forarrayindic": 101, "forarrayindicesandvalu": 102, "forarrayvalu": 103, "fordictkei": 104, "fordictkeysandvalu": 105, "fordictvalu": 106, "fp": 107, "enum": 107, "apysc": [108, 146, 234, 235], "\u306e\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u578b\u306e": 108, "getter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": 108, "setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": 108, "get_bound": [109, 183], "\u30e1\u30bd\u30c3\u30c9\u306eapi": [109, 151, 155, 183, 197, 200, 203, 204, 205, 217, 219, 227], "get_child_at": [110, 191], "graphic": [111, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146], "sprite": 111, "\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u7d4c\u7531\u3057\u305f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u547c\u3073\u51fa\u3057": 111, "\u5404\u8fd4\u5374\u5024\u306b\u3064\u3044\u3066": 111, "fill_alpha": [112, 127, 211], "fill_color": [113, 127, 212], "flip_x": 114, "flip_i": 114, "line_alpha": [115, 141], "line_color": [116, 141], "line_dash_dot_set": [117, 141], "\u8a2d\u5b9a\u306e\u524a\u9664": [117, 118, 119, 120], "delete_line_dash_dot_set": 117, "line_dash_set": [118, 141], "delete_line_dash_set": 118, "line_dot_set": [119, 141], "delete_line_dot_set": 119, "line_round_dot_set": [120, 141], "delete_line_round_dot_set": 120, "line_thick": [121, 141], "rotation_around_cent": 122, "rotation_around_point": 123, "get_rotation_around_point": 123, "set_rotation_around_point": 123, "scale_x_from_cent": 124, "scale_y_from_cent": 124, "get_scale_from_point": 125, "set_scale_from_point": 125, "get_scale_x_from_point": 125, "set_scale_x_from_point": 125, "get_scale_y_from_point": 125, "set_scale_y_from_point": 125, "skew_x": 126, "skew_i": 126, "properti": [126, 191], "begin_fil": 127, "\u5857\u308a\u306e\u8272\u306e\u8a2d\u5b9a": 127, "\u5857\u308a\u306e\u8272\u306e\u900f\u660e\u5ea6\u306e\u8a2d\u5b9a": 127, "\u8fd4\u5374\u5024": [129, 133, 136, 139], "draw_dash_dotted_lin": 130, "draw_dashed_lin": 131, "draw_dotted_lin": 132, "draw_lin": [134, 152], "\u7121\u8996\u3055\u308c\u308b\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": 134, "line": [134, 152], "\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 134, "draw_path": 135, "draw_polygon": [136, 176, 177], "line_to": [136, 142, 178], "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u9055\u3044\u306b\u3064\u3044\u3066": 136, "draw_rect": [137, 182], "rectangl": [137, 182], "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [137, 140, 142], "draw_round_dotted_lin": 138, "draw_round_rect": 139, "draw_triangl": [140, 229], "triangl": [140, 229], "line_styl": 141, "\u7dda\u306e\u8272\u306e\u8a2d\u5b9a": 141, "\u7dda\u5e45\u306e\u8a2d\u5b9a": 141, "\u7dda\u306e\u900f\u660e\u5ea6\u306e\u8a2d\u5b9a": 141, "\u7dda\u7aef\u306e\u8a2d\u5b9a": 141, "\u7dda\u306e\u7e4b\u304e\u76ee\u306e\u8a2d\u5b9a": 141, "\u7dda\u306e\u70b9\u7dda\u8a2d\u5b9a": 141, "\u7dda\u306e\u7834\u7dda\u8a2d\u5b9a": 141, "\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u8a2d\u5b9a": 141, "\u7dda\u306e\u4e00\u70b9\u9396\u7dda\u306e\u8a2d\u5b9a": 141, "line_cap": 141, "line_joint": 141, "move_to": [142, 178], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u9023\u7d9a\u3057\u305f\u547c\u3073\u51fa\u3057": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u305f\u5f8c\u306e": 142, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u547c\u3073\u51fa\u3057": 142, "polylin": [142, 178], "If": 144, "import": 145, "\u306e\u6163\u7fd2": 145, "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8": 146, "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u95a2\u9023\u30ea\u30f3\u30af": 146, "\u30af\u30a4\u30c3\u30af\u30b9\u30bf\u30fc\u30c8\u30ac\u30a4\u30c9": [146, 179], "\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u5404\u30af\u30e9\u30b9": 146, "\u51fa\u529b\u51e6\u7406": 146, "\u5b50\u8981\u7d20\u95a2\u4fc2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 146, "apysc\u306e\u57fa\u672c\u7684\u306a\u5404\u30c7\u30fc\u30bf\u30af\u30e9\u30b9": 146, "int": [146, 147, 148, 149, 150, 151], "number": [146, 147, 148, 149, 150, 151], "string": [146, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204], "\u30af\u30e9\u30b9\u3068\u5404\u5b9a\u6570\u5024": 146, "\u30af\u30e9\u30b9\u3068\u5404\u5b9a\u6570": 146, "\u306e\u5404\u30af\u30e9\u30b9": 146, "\u5404\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u306e\u30af\u30e9\u30b9": 146, "svg": 146, "\u30c6\u30ad\u30b9\u30c8": 146, "\u5ea7\u6a19": 146, "\u30b5\u30a4\u30ba\u7b49\u306e\u30c7\u30fc\u30bf\u306e\u5404\u30af\u30e9\u30b9": 146, "\u30a4\u30d9\u30f3\u30c8\u306e\u5171\u901a\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 146, "mouseev": [146, 159, 160], "\u30af\u30e9\u30b9\u3068\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a": 146, "\u6761\u4ef6\u5206\u5c90\u306e\u5236\u5fa1": 146, "\u30eb\u30fc\u30d7": 146, "\u30bf\u30a4\u30de\u30fc\u3068enter": 146, "frame": 146, "timedelta": [146, 217, 218, 219], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 146, "\u6570\u5b66": 146, "\u305d\u306e\u4ed6\u306e\u64cd\u4f5c\u95a2\u4fc2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 146, "\u30c7\u30d0\u30c3\u30b0": 146, "\u30c6\u30b9\u30c8": 146, "float\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306e\u7279\u8a18\u4e8b\u9805": 147, "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 147, "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u8a08\u7b97\u5236\u5fa1": 148, "\u5171\u901a\u306e\u6319\u52d5": [148, 149], "\u52a0\u7b97": [148, 193], "\u6e1b\u7b97": 148, "\u4e57\u7b97": [148, 193], "\u9664\u7b97": 148, "\u5207\u308a\u6368\u3066\u9664\u7b97": 148, "\u5270\u4f59": 148, "\u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u6bd4\u8f03\u5236\u5fa1": 149, "\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 149, "\u975e\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 149, "\u672a\u6e80\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 149, "\u4ee5\u4e0b\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 149, "\u8d85\u904e\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 149, "\u4ee5\u4e0a\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 149, "to_fix": 150, "\u3084\u4ed6\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": 152, "math": [155, 156, 157, 158], "max": 156, "min": 157, "trunc": 158, "\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": 159, "\u3053\u308c\u3089\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067apysc\u304c\u51fa\u6765\u308b\u3053\u3068": 159, "\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u4f8b": 159, "\u57fa\u672c\u7684\u306a\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 160, "\u57fa\u672c\u7684\u306a\u30a4\u30d9\u30f3\u30c8\u767b\u9332\u51e6\u7406\u306e\u4f7f\u3044\u65b9": 160, "\u57fa\u672c\u7684\u306a\u30a4\u30d9\u30f3\u30c8\u89e3\u9664\u51e6\u7406\u306e\u4f7f\u3044\u65b9": 160, "\u5168\u3066\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3059\u308b": 160, "\u30cf\u30f3\u30c9\u30e9\u306e\u5f15\u6570\u306e\u540d\u524d\u3068\u578b": 160, "\u30af\u30e9\u30b9\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u578b\u306e\u8a2d\u5b9a": 160, "stage_x": 160, "stage_i": 160, "local_x": 160, "local_i": 160, "mousedown": 161, "mouseup": 161, "\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": 161, "\u89e3\u9664\u7528\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [161, 162, 163], "unbind_mousedown": 161, "unbind_mousedown_al": 161, "unbind_mouseup": 161, "unbind_mouseup_al": 161, "mousemov": 162, "unbind_mousemov": 162, "unbind_mousemove_al": 162, "mouseov": 163, "mouseout": 163, "unbind_mouseov": 163, "unbind_mouseover_al": 163, "unbind_mouseout": 163, "unbind_mouseout_al": 163, "num_children": [165, 191], "path": 166, "pathmoveto": [166, 174], "\u30af\u30e9\u30b9\u8a2d\u5b9a": 166, "pathlineto": [166, 173], "pathhorizont": [166, 172], "pathvert": [166, 175], "pathclos": [166, 171], "pathbezier2d": [166, 167], "pathbezier2dcontinu": [166, 168], "pathbezier3d": [166, 169], "pathbezier3dcontinu": [166, 170], "\u76f8\u5bfe\u5ea7\u6a19\u8a2d\u5b9a": [167, 168, 169, 170, 172, 173, 174, 175], "point2d": 176, "x\u3068y\u5ea7\u6a19\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 176, "x\u3068y\u5ea7\u6a19\u306esetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 176, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u304a\u3051\u308b\u4f7f\u7528\u4f8b": 176, "polygon": 177, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": 177, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 179, "stage\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057": 179, "html\u3092\u51fa\u529b\u3059\u308b": 179, "sprite\u306e\u30b3\u30f3\u30c6\u30ca\u3068\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3059\u308b": 179, "rang": 180, "\u95a2\u6570": 180, "\u95a2\u6570\u6982\u8981": 180, "\u95a2\u6570\u306eapi": 180, "\u63a8\u5968\u3055\u308c\u308b\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306e\u30c1\u30a7\u30c3\u30af\u8a2d\u5b9a": 181, "\u63a8\u5968\u3055\u308c\u308b\u578b\u30c1\u30a7\u30c3\u30af\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u3064\u3044\u3066": 181, "mypy\u3067\u7121\u8996\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u3044\u308b\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9": 181, "ellipse_width\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 182, "ellipse_height\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 182, "rectanglegeom": 183, "\u5404\u5c5e\u6027\u306e\u5ea7\u6a19": 183, "left_x": 183, "center_x": 183, "right_x": 183, "top_i": 183, "center_i": 183, "bottom_i": 183, "width": 183, "height": 183, "remove_children": 185, "return": 186, "save_overall_html": 187, "html\u3092\u6700\u5c0f\u5316\u3059\u308b": 187, "javascript\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9\u306e\u8a2d\u5b9a\u3068\u51fa\u529b\u30b9\u30ad\u30c3\u30d7\u306e\u8a2d\u5b9a": 187, "html_file_nam": 187, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u3066html\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3092\u5909\u66f4\u3059\u308b": 187, "embed_js_lib": 187, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3067javascript\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u30921\u3064\u306ehtml\u30d5\u30a1\u30a4\u30eb\u306b\u307e\u3068\u3081\u308b": 187, "verbos": 187, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6a19\u6e96\u51fa\u529b\u306e\u8a2d\u5b9a\u3092\u5909\u66f4\u3059\u308b": 187, "\u9023\u7d9a\u3057\u305f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a": 188, "\u540c\u3058\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u9023\u7d9a\u3057\u3066\u547c\u3073\u51fa\u3059": 188, "\u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a": 188, "set_debug_mod": 189, "sprite\u30af\u30e9\u30b9": 190, "sprite\u3068\u306f": 190, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u81ea\u52d5\u8ffd\u52a0\u306b\u95a2\u3059\u308b\u6ce8\u610f\u70b9": 190, "graphics\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": 190, "displayobject\u306e\u8907\u6570\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u79fb\u52d5\u306b\u3064\u3044\u3066": 190, "sprite\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bfapi": 190, "stage": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u4f5c\u6210": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u80cc\u666f\u8272\u8a2d\u5b9a": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u30b5\u30a4\u30ba\u8a2d\u5b9a": 191, "\u30b9\u30c6\u30fc\u30b8\u306e\u8981\u7d20\u306eid\u8a2d\u5b9a": 191, "get_stag": 191, "\u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 191, "stage_elem_id": 191, "\u30af\u30e9\u30b9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 192, "\u30af\u30e9\u30b9\u306e\u52a0\u7b97\u3068\u4e57\u7b97\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": 193, "apply_max_num_of_decimal_plac": 194, "\u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": 195, "\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8fd4\u5374\u5024\u306e\u578b": 195, "\u53d7\u3051\u4ed8\u3051\u3089\u308c\u308b\u53f3\u5074\u306e\u5024\u306e\u578b": 195, "\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03": 195, "\u975e\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03": 195, "\u672a\u6e80\u3082\u3057\u304f\u306f\u8d85\u904e\u6761\u4ef6\u306e\u6bd4\u8f03": 195, "\u7d75\u6587\u5b57\u306b\u95a2\u3059\u308b\u7279\u8a18\u4e8b\u9805": 196, "lstrip": 198, "rstrip": 199, "split": 201, "strip": 202, "svgtext": [206, 207], "\u30c6\u30ad\u30b9\u30c8\u306ey\u5ea7\u6a19\u306e\u57fa\u6e96\u70b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": 206, "text": [206, 207], "\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [206, 207], "font_siz": [206, 207, 213], "font_famili": [206, 207], "lead": 206, "align": 206, "bold": [206, 207, 210], "ital": [206, 207, 214], "\u62e1\u7e2e\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": 206, "svgtextspan": 207, "\u6539\u884c\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": 207, "delta_x": 207, "delta_i": 207, "create_with_svg_text_span": 207, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306eapi": [63, 207], "total_second": [217, 219], "timer_complet": 221, "\u8a2d\u5b9a": [222, 224], "\u5f15\u6570\u306e\u6982\u8981": [222, 224, 233], "\u5f15\u6570\u306bfps\u306eenum\u306e\u5024\u3092\u8a2d\u5b9a\u3059\u308b": 222, "timerev": 223, "repeat_count": 224, "reset": 225, "stop": 226, "to_str": 227, "trace": 228, "print\u95a2\u6570\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": 228, "x1\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 229, "y1\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 229, "x2\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 229, "y2\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 229, "x3\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 229, "y3\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": 229, "x1": 229, "y1": 229, "x2": 229, "y2": 229, "x3": 229, "y3": 229, "true_": 230, "false_": 230, "\u306e\u5404\u5b9a\u6570": 230, "\u5404\u5b9a\u6570\u306e\u6982\u8981": 230, "\u521d\u671f\u5316\u30bf\u30a4\u30df\u30f3\u30b0\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [], "unbind_enter_fram": 231, "unbind_enter_frame_al": 231, "unset_debug_mod": 232, "variable_name_suffix": 233, "\u306e\u5f15\u6570\u8a2d\u5b9a": 233, "\u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u73fe\u5728\u306e\u5b9f\u88c5\u3067\u3067\u304d\u308b\u3053\u3068": 234, "python\u3092\u4f7f\u3063\u3066\u66f8\u304d": 234, "\u305d\u308c\u3092html\u3078\u51fa\u529b": 234, "\u3082\u3057\u304f\u306fjupyter\u4e0a\u3067\u5229\u7528\u3059\u308b": 234, "\u69d8\u3005\u306a\u7a2e\u985e\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u63cf\u753b": 234, "\u5404\u7a2e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a": 234, "\u30bf\u30a4\u30de\u30fc\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 234, "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3088\u308b\u5404\u5c5e\u6027\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": 234, "\u4f55\u6545": 235, "\u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306fpython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30c7\u30fc\u30bf\u578b\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u306e\u304b": 235, "\u3067\u306fpython\u3092javascript\u3078\u3068\u5909\u63db\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a": 235, "\u5909\u6570\u306e\u5909\u5316\u3092\u8ffd\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 235, "\u53c2\u8003\u6587\u732e": [65, 153], "\u53c2\u8003\u8cc7\u6599": [65, 153], "materialdesigncolor": 153, "zfill": 204, "\u30e1\u30bd\u30c3\u30c9": [151, 197, 200, 203, 204], "\u30e1\u30bd\u30c3\u30c9\u6982\u8981": [151, 197, 200, 203, 204], "from_rgb": 63, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9": 63, "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u6982\u8981": 63, "to_hex": 151, "ap": 151, "number\u578b\u306e\u5024\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": 151, "lower": 197, "upper": 203, "red_color": 184, "green_color": 143, "blue_color": 57, "multilinetext": 164, "\u30c6\u30ad\u30b9\u30c8\u306e": [210, 211, 212, 213, 214, 215, 216], "text_align": 208, "csstextalign": 208, "left\u306e\u4f8b": [208, 209], "center\u306e\u4f8b": [208, 209], "right\u306e\u4f8b": [208, 209], "justify\u306e\u4f8b": [208, 209], "text_align_last": 209, "csstextalignlast": 209, "auto\u306e\u4f8b": 209, "underlin": 216, "line_height": 215, "\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3": 146, "\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3\u30a2\u30a4\u30b3\u30f3": [], "\u5b9f\u88c5\u306e\u6982\u8981": [], "\u5404\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eapi": 154, "\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3": 154, "\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306e\u30e9\u30a4\u30bb\u30f3\u30b9": 154, "clamp": 155, "\u30de\u30b9\u30af": 146, "svgmask": 205, "\u30af\u30e9\u30b9\u3068\u95a2\u9023\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9": 205, "add_svg_masking_object": 205, "svg_mask": 205, "displayobject\u3068\u30de\u30b9\u30af\u306e\u5ea7\u6a19\u3092\u540c\u671f\u3055\u305b\u305f\u3044\u5834\u5408\u306e\u30b1\u30fc\u30b9": 205}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx": 58}, "alltitles": {"\u30cf\u30f3\u30c9\u30e9\u306eoptions\u5f15\u6570\u306e\u578b\u306b\u3064\u3044\u3066": [[0, "options"]], "options\u5f15\u6570\u306b\u306f\u8f9e\u66f8\u306e\u578b\u3092\u53d7\u3051\u4ed8\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [[0, "id1"]], "TypedDict\u3092\u4f7f\u3063\u305f\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306b\u3064\u3044\u3066": [[0, "typeddict"]], "add_child \u3068 remove_child \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[1, "add-child-remove-child"]], "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": [[1, "id1"], [26, "id1"], [27, "id1"], [29, "id1"], [34, "id1"], [37, "id1"], [39, "id1"], [44, "id1"], [48, "id1"], [49, "id1"], [50, "id1"], [51, "id1"], [52, "id1"], [53, "id1"], [54, "id1"], [56, "id2"], [87, "id1"], [88, "id1"], [89, "id1"], [91, "id1"], [100, "id1"], [114, "id1"], [123, "id1"], [124, "id1"], [125, "id1"], [126, "id1"], [142, "id1"], [161, "id1"], [163, "id1"], [226, "id1"], [231, "id1"]], "\u5b50\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u81ea\u52d5\u8ffd\u52a0\u306b\u3064\u3044\u3066": [[1, "id2"]], "remove_child \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[1, "remove-child"]], "add_child \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[1, "add-child"]], "\u95a2\u9023\u8cc7\u6599": [[1, "id3"], [2, "id3"], [33, "id4"], [45, "id3"], [47, "id3"], [48, "id2"], [49, "id2"], [50, "id2"], [51, "id2"], [52, "id2"], [53, "id2"], [54, "id2"], [59, "id3"], [61, "id2"], [66, "id3"], [79, "id2"], [85, "id2"], [86, "id5"], [88, "id3"], [89, "id2"], [94, "id5"], [96, "id4"], [98, "id4"], [101, "id3"], [102, "id3"], [103, "id3"], [104, "id3"], [105, "id3"], [106, "id3"], [107, "id3"], [111, "id3"], [119, "id4"], [135, "id3"], [144, "id3"], [159, "id2"], [160, "id6"], [161, "id2"], [162, "id2"], [163, "id2"], [179, "id3"], [181, "id3"], [188, "id3"], [189, "id4"], [190, "id3"], [220, "id3"], [222, "id3"], [231, "id3"], [232, "id4"], [99, "id3"]], "add_child API": [[1, "add-child-api"], [191, "add-child-api"]], "remove_child API": [[1, "remove-child-api"], [191, "remove-child-api"]], "add_debug_info_setting \u306e\u30c7\u30b3\u30ec\u30fc\u30bf\u30fc\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[2, "add-debug-info-setting"]], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": [[2, "id1"], [3, "id1"], [5, "id1"], [9, "id1"], [10, "id1"], [11, "id1"], [13, "id1"], [14, "id1"], [15, "id1"], [17, "id1"], [18, "id1"], [20, "id1"], [21, "id1"], [23, "id1"], [24, "id1"], [25, "id1"], [28, "id1"], [30, "id1"], [31, "id1"], [32, "id1"], [35, "id1"], [38, "id1"], [40, "id1"], [42, "id1"], [43, "id1"], [45, "id1"], [46, "id1"], [47, "id1"], [61, "id1"], [66, "id1"], [69, "id1"], [70, "id1"], [71, "id1"], [72, "id1"], [73, "id1"], [74, "id1"], [75, "id1"], [76, "id1"], [78, "id1"], [79, "id1"], [80, "id1"], [83, "id1"], [84, "id1"], [90, "id1"], [92, "id1"], [93, "id1"], [108, "id1"], [110, "id1"], [112, "id1"], [113, "id1"], [115, "id1"], [116, "id1"], [117, "id1"], [118, "id1"], [119, "id1"], [120, "id1"], [121, "id1"], [122, "id1"], [127, "id1"], [128, "id1"], [129, "id1"], [130, "id1"], [131, "id1"], [132, "id1"], [133, "id1"], [134, "id1"], [135, "id1"], [136, "id1"], [137, "id1"], [138, "id1"], [139, "id1"], [140, "id1"], [141, "id1"], [150, "id1"], [155, "id1"], [156, "id1"], [157, "id1"], [158, "id1"], [162, "id1"], [165, "id1"], [185, "id1"], [187, "id1"], [189, "id1"], [194, "id1"], [198, "id1"], [199, "id1"], [201, "id1"], [202, "id1"], [218, "id1"], [219, "id1"], [221, "id1"], [225, "id1"], [227, "id1"], [228, "id1"], [232, "id1"], [109, "id1"], [207, "id1"], [99, "id1"]], "\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[2, "id2"], [3, "id2"], [4, "id2"], [5, "id2"], [6, "id2"], [7, "id2"], [8, "id2"], [9, "id2"], [10, "id2"], [11, "id2"], [13, "id2"], [14, "id2"], [15, "id2"], [17, "id2"], [18, "id2"], [19, "id2"], [20, "id2"], [21, "id2"], [22, "id2"], [23, "id2"], [24, "id2"], [25, "id2"], [26, "id2"], [27, "id2"], [28, "id2"], [29, "id2"], [30, "id2"], [31, "id2"], [32, "id2"], [34, "id2"], [35, "id2"], [36, "id1"], [37, "id2"], [38, "id2"], [39, "id2"], [40, "id2"], [41, "id2"], [42, "id2"], [43, "id2"], [44, "id2"], [45, "id2"], [46, "id2"], [47, "id2"], [48, "id3"], [49, "id3"], [50, "id3"], [51, "id3"], [52, "id3"], [53, "id3"], [54, "id3"], [56, "id3"], [57, "id2"], [60, "id2"], [62, "id2"], [63, "id2"], [64, "id2"], [65, "id2"], [66, "id2"], [67, "id2"], [68, "id2"], [69, "id2"], [70, "id2"], [71, "id2"], [72, "id2"], [73, "id2"], [74, "id2"], [75, "id2"], [76, "id2"], [77, "id2"], [78, "id2"], [80, "id2"], [82, "id1"], [83, "id2"], [84, "id2"], [87, "id2"], [88, "id2"], [90, "id2"], [91, "id2"], [92, "id3"], [93, "id4"], [95, "id2"], [96, "id2"], [97, "id2"], [98, "id2"], [101, "id2"], [102, "id2"], [103, "id2"], [104, "id2"], [105, "id2"], [106, "id2"], [107, "id2"], [110, "id2"], [112, "id2"], [113, "id2"], [114, "id2"], [115, "id2"], [116, "id2"], [117, "id2"], [118, "id2"], [119, "id2"], [120, "id2"], [121, "id2"], [122, "id2"], [123, "id2"], [124, "id2"], [125, "id2"], [127, "id2"], [128, "id2"], [129, "id2"], [130, "id2"], [131, "id2"], [132, "id2"], [133, "id2"], [134, "id2"], [135, "id2"], [136, "id2"], [137, "id2"], [138, "id2"], [139, "id2"], [140, "id2"], [141, "id2"], [142, "id2"], [143, "id2"], [144, "id2"], [150, "id2"], [151, "id2"], [152, "id2"], [153, "id2"], [154, "id2"], [155, "id2"], [156, "id2"], [157, "id2"], [158, "id2"], [162, "id3"], [164, "id2"], [165, "id3"], [166, "id2"], [167, "id2"], [168, "id2"], [169, "id2"], [170, "id2"], [171, "id2"], [172, "id2"], [173, "id2"], [174, "id2"], [175, "id2"], [176, "id2"], [177, "id2"], [178, "id2"], [180, "id2"], [182, "id2"], [184, "id2"], [185, "id2"], [186, "id2"], [187, "id2"], [189, "id3"], [194, "id2"], [196, "id2"], [197, "id2"], [198, "id2"], [199, "id2"], [200, "id2"], [201, "id2"], [202, "id2"], [203, "id2"], [204, "id2"], [205, "id2"], [208, "id2"], [209, "id2"], [210, "id2"], [211, "id2"], [212, "id2"], [213, "id2"], [214, "id2"], [215, "id2"], [216, "id2"], [217, "id2"], [218, "id2"], [219, "id2"], [220, "id2"], [221, "id2"], [222, "id2"], [223, "id2"], [224, "id2"], [225, "id2"], [226, "id2"], [227, "id2"], [228, "id2"], [229, "id2"], [230, "id2"], [231, "id2"], [232, "id3"], [233, "id2"], [109, "id2"], [183, "id2"], [206, "id2"], [207, "id2"], [99, "id2"]], "mypy\u8a2d\u5b9a\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[2, "mypy"]], "AnimationBase\u30af\u30e9\u30b9 start \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[3, "animationbase-start"]], "start API": [[3, "start-api"], [226, "start-api"]], "AnimationBase \u30af\u30e9\u30b9 target \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[4, "animationbase-target"]], "\u5c5e\u6027\u306e\u6982\u8981": [[4, "id1"], [41, "id1"], [57, "id1"], [143, "id1"], [184, "id1"], [196, "id1"], [208, "id1"], [209, "id1"], [210, "id1"], [211, "id1"], [212, "id1"], [213, "id1"], [214, "id1"], [215, "id1"], [216, "id1"]], "\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306b\u3064\u3044\u3066": [[4, "id3"]], "target \u5c5e\u6027\u306eAPI": [[4, "target-api"]], "AnimationBase \u30af\u30e9\u30b9 animation_complete \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[5, "animationbase-animation-complete"]], "\u4ed6\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3059\u969b\u306e\u7279\u8a18\u4e8b\u9805": [[5, "id3"]], "animation_complete API": [[5, "animation-complete-api"]], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306edelay\u306e\u8a2d\u5b9a": [[6, "delay"]], "\u8a2d\u5b9a\u6982\u8981": [[6, "id1"], [7, "id1"]], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306eduration\u8a2d\u5b9a": [[7, "duration"]], "AnimationEvent \u30af\u30e9\u30b9": [[8, "animationevent"]], "\u30af\u30e9\u30b9\u6982\u8981": [[8, "id1"], [60, "id1"], [62, "id1"], [65, "id1"], [68, "id1"], [95, "id1"], [97, "id1"], [101, "id1"], [102, "id1"], [103, "id1"], [104, "id1"], [105, "id1"], [106, "id1"], [107, "id1"], [152, "id1"], [153, "id1"], [164, "id1"], [166, "id1"], [167, "id1"], [168, "id1"], [169, "id1"], [170, "id1"], [171, "id1"], [172, "id1"], [173, "id1"], [174, "id1"], [175, "id1"], [177, "id1"], [178, "id1"], [182, "id1"], [205, "id1"], [217, "id1"], [223, "id1"], [229, "id1"], [183, "id1"], [206, "id1"]], "this\u5c5e\u6027": [[8, "this"]], "\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3": [[8, "id3"], [33, "id3"]], "AnimationEvent \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[8, "animationevent-api"]], "this \u5c5e\u6027\u306eAPI": [[8, "this-api"], [160, "this-api"], [223, "this-api"]], "animation_fill_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[9, "animation-fill-alpha"]], "animation_fill_alpha API": [[9, "animation-fill-alpha-api"]], "animation_fill_color \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[10, "animation-fill-color"]], "animation_fill_color API": [[10, "animation-fill-color-api"]], "animation_finish \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[11, "animation-finish"]], "animation_finish API": [[11, "animation-finish-api"]], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": [[12, "id1"]], "apysc\u306e\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u51fa\u6765\u308b\u3053\u3068": [[12, "apysc"]], "\u5404\u5c5e\u6027\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a\u4f8b": [[12, "id2"]], "\u30a4\u30fc\u30b8\u30f3\u30b0": [[12, "id3"]], "X\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "x"]], "Y\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "y"]], "X\u5ea7\u6a19\u3068Y\u5ea7\u6a19\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "xy"]], "\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id4"]], "\u9ad8\u3055\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id5"]], "\u5857\u308a\u306e\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id6"]], "\u5857\u308a\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id7"]], "\u7dda\u8272\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id8"]], "\u7dda\u306e\u900f\u660e\u5ea6\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id9"]], "\u7dda\u5e45\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id10"]], "\u534a\u5f84\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id11"]], "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id12"]], "\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u56de\u8ee2\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id13"]], "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id14"]], "\u4e2d\u592e\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id15"]], "\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u6c34\u5e73\u65b9\u5411\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id16"]], "\u6307\u5b9a\u5ea7\u6a19\u306b\u3088\u308b\u5782\u76f4\u65b9\u5411\u306e\u62e1\u7e2e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[12, "id17"]], "animation_line_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[13, "animation-line-alpha"]], "animation_line_alpha API": [[13, "animation-line-alpha-api"]], "animation_line_color \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[14, "animation-line-color"]], "animation_line_color API": [[14, "animation-line-color-api"]], "animation_line_thickness \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[15, "animation-line-thickness"]], "animation_line_thickness API": [[15, "animation-line-thickness-api"]], "AnimationBase \u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u30e1\u30bd\u30c3\u30c9\u30c1\u30a7\u30fc\u30f3": [[16, "animationbase"]], "AnimationBase\u30af\u30e9\u30b9\u306b\u95a2\u4fc2\u3057\u305f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f\u81ea\u8eab\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": [[16, "id1"]], "animation_move \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[17, "animation-move"]], "animation_move API": [[17, "animation-move-api"]], "animation_parallel \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[18, "animation-parallel"]], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306eduration\u3001delay\u3001easing\u306e\u8a2d\u5b9a\u306b\u3064\u3044\u3066\u306e\u7279\u8a18\u4e8b\u9805": [[18, "durationdelayeasing"]], "animation_parallel API": [[18, "animation-parallel-api"]], "animation_pause \u3068 animation_play \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[19, "animation-pause-animation-play"]], "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u6982\u8981": [[19, "id1"], [77, "id1"]], "animation_pause API": [[19, "animation-pause-api"]], "animation_play API": [[19, "animation-play-api"]], "animation_radius \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[20, "animation-radius"]], "animation_radius API": [[20, "animation-radius-api"]], "animation_reset \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[21, "animation-reset"]], "animation_reset API": [[21, "animation-reset-api"]], "\u5404\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u8fd4\u5374\u5024": [[22, "id1"]], "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306fAnimationBase\u306e\u30b5\u30d6\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u8fd4\u5374\u3057\u307e\u3059": [[22, "animationbase"]], "animation_reverse \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[23, "animation-reverse"]], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[23, "id3"]], "animation_reverse API": [[23, "animation-reverse-api"]], "animation_rotation_around_center \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[24, "animation-rotation-around-center"]], "animation_rotation_around_center API": [[24, "animation-rotation-around-center-api"]], "animation_rotation_around_point \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[25, "animation-rotation-around-point"]], "animation_rotation_around_point API": [[25, "animation-rotation-around-point-api"]], "animation_scale_x_from_center \u3068 animation_scale_y_from_center \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[26, "animation-scale-x-from-center-animation-scale-y-from-center"]], "animation_scale_x_from_center API": [[26, "animation-scale-x-from-center-api"]], "animation_scale_y_from_center API": [[26, "animation-scale-y-from-center-api"]], "animation_scale_x_from_point \u3068 animation_scale_y_from_point \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[27, "animation-scale-x-from-point-animation-scale-y-from-point"]], "animation_time \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[28, "animation-time"]], "animation_time API": [[28, "animation-time-api"]], "animation_width \u3068 animation_height \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[29, "animation-width-animation-height"]], "Ellipse \u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [[29, "ellipse"]], "animation_width API": [[29, "animation-width-api"]], "animation_height API": [[29, "animation-height-api"]], "animation_x \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[30, "animation-x"]], "Circle \u3068 Ellipse \u306e\u5404\u30af\u30e9\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[30, "circle-ellipse"], [31, "circle-ellipse"]], "animation_x API": [[30, "animation-x-api"]], "animation_y \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[31, "animation-y"]], "animation_y API": [[31, "animation-y-api"]], "append_js_expression \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[32, "append-js-expression"]], "append_js_expression API": [[32, "append-js-expression-api"]], "Array \u30af\u30e9\u30b9": [[33, "array"], [146, "array"]], "Array \u30af\u30e9\u30b9\u3068\u306f": [[33, "id1"]], "\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u30e1\u30bd\u30c3\u30c9": [[33, "id2"], [81, "id2"]], "fixed_value_type \u5f15\u6570\u306b\u3064\u3044\u3066": [[33, "fixed-value-type"]], "Array \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[33, "array-api"]], "value \u5c5e\u6027\u306eAPI": [[33, "value-api"], [58, "value-api"], [81, "value-api"], [147, "value-api"], [192, "value-api"]], "Array \u30af\u30e9\u30b9\u306e append \u3068 push \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[34, "array-append-push"]], "append API": [[34, "append-api"]], "push API": [[34, "push-api"]], "Array \u30af\u30e9\u30b9\u306e clear \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[35, "array-clear"]], "Array \u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[36, "array"]], "Array \u30af\u30e9\u30b9\u306e extend \u3068 concat \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[37, "array-extend-concat"]], "extend API": [[37, "extend-api"]], "concat API": [[37, "concat-api"]], "Array \u30af\u30e9\u30b9\u306e index_of \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[38, "array-index-of"]], "index_of API": [[38, "index-of-api"]], "Array \u30af\u30e9\u30b9\u306e insert \u3068 insert_at \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[39, "array-insert-insert-at"]], "insert API": [[39, "insert-api"]], "insert_at API": [[39, "insert-at-api"]], "Array \u30af\u30e9\u30b9\u306e join \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[40, "array-join"]], "join API": [[40, "join-api"]], "Array \u30af\u30e9\u30b9\u306e last_value \u30d7\u30ed\u30d1\u30c6\u30a3": [[41, "array-last-value"]], "last_value \u5c5e\u6027\u306eAPI": [[41, "last-value-api"]], "Array \u30af\u30e9\u30b9\u306e length \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[42, "array-length"]], "len()\u95a2\u6570\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [[42, "len"]], "length \u5c5e\u6027\u306eAPI": [[42, "length-api"], [84, "length-api"], [196, "length-api"]], "Array \u30af\u30e9\u30b9\u306e pop \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[43, "array-pop"]], "pop API": [[43, "pop-api"]], "Array \u30af\u30e9\u30b9\u306e remove \u3068 remove_at \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[44, "array-remove-remove-at"]], "remove API": [[44, "remove-api"]], "remove_at API": [[44, "remove-at-api"]], "Array \u30af\u30e9\u30b9\u306e reverse \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[45, "array-reverse"]], "reverse API": [[45, "reverse-api"]], "Array \u30af\u30e9\u30b9\u306e slice \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[46, "array-slice"]], "slice API": [[46, "slice-api"]], "Array \u30af\u30e9\u30b9\u306e sort \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[47, "array-sort"]], "sort API": [[47, "sort-api"]], "assert_arrays_equal \u3068 assert_arrays_not_equal \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[48, "assert-arrays-equal-assert-arrays-not-equal"]], "assert_equal \u3068 assert_not_equal \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [[48, "assert-equal-assert-not-equal"], [50, "assert-equal-assert-not-equal"]], "assert_arrays_equal API": [[48, "assert-arrays-equal-api"]], "assert_arrays_not_equal API": [[48, "assert-arrays-not-equal-api"]], "assert_defined \u3068 assert_undefined \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[49, "assert-defined-assert-undefined"]], "assert_defined API": [[49, "assert-defined-api"]], "assert_undefined API": [[49, "assert-undefined-api"]], "assert_dicts_equal \u3068 assert_dicts_not_equal \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[50, "assert-dicts-equal-assert-dicts-not-equal"]], "assert_dicts_equal API": [[50, "assert-dicts-equal-api"]], "assert_dicts_not_equal API": [[50, "assert-dicts-not-equal-api"]], "assert_equal \u3068 assert_not_equal \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[51, "assert-equal-assert-not-equal"]], "assert_equal API": [[51, "assert-equal-api"]], "assert_not_equal API": [[51, "assert-not-equal-api"]], "assert_greater \u3068 assert_greater_equal \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[52, "assert-greater-assert-greater-equal"]], "assert_greater \u306eAPI": [[52, "assert-greater-api"]], "assert_greater_equal \u306eAPI": [[52, "assert-greater-equal-api"]], "assert_less \u3068 assert_less_equal \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[53, "assert-less-assert-less-equal"]], "assert_less \u306eAPI": [[53, "assert-less-api"]], "assert_less_equal \u306eAPI": [[53, "assert-less-equal-api"]], "assert_true \u3068 assert_false \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[54, "assert-true-assert-false"]], "assert_true API": [[54, "assert-true-api"]], "assert_false API": [[54, "assert-false-api"]], "JavaScript \u4e0a\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u6319\u52d5": [[55, "javascript"]], "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u540d\u306b\u3064\u3044\u3066": [[55, "id1"]], "\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u306e\u7d50\u679c\u306b\u3064\u3044\u3066": [[55, "id2"]], "\u7701\u7565\u53ef\u80fd\u306amsg\u5f15\u6570\u306b\u3064\u3044\u3066": [[55, "msg"]], "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u767b\u9332\u3068\u30a4\u30d9\u30f3\u30c8\u306e\u767a\u751f\uff08\u767a\u706b\uff09\u5236\u5fa1": [[56, "id1"]], "\u30ab\u30b9\u30bf\u30e0\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a\u306e\u89e3\u9664": [[56, "id4"]], "bind_custom_event API": [[56, "bind-custom-event-api"]], "trigger_custom_event API": [[56, "trigger-custom-event-api"]], "unbind_custom_event \u306eAPI": [[56, "unbind-custom-event-api"]], "unbind_custom_event_all \u306eAPI": [[56, "unbind-custom-event-all-api"]], "Color \u30af\u30e9\u30b9\u306e blue_color \u30d7\u30ed\u30d1\u30c6\u30a3": [[57, "color-blue-color"]], "blue_color \u5c5e\u6027\u306eAPI": [[57, "blue-color-api"]], "Boolean \u30af\u30e9\u30b9": [[58, "boolean"]], "Boolean \u30af\u30e9\u30b9\u306e\u6982\u8981": [[58, "id1"]], "Bool\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[58, "bool"]], "Boolean \u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u5236\u5fa1": [[58, "id2"]], "Boolean \u306e\u5024\u3092\u53cd\u8ee2\u3055\u305b\u308b": [[58, "id3"]], "Boolean \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[58, "boolean-api"]], "not_ \u5c5e\u6027\u306eAPI": [[58, "not-api"]], "\u5404\u5206\u5c90\u5236\u5fa1\u306e\u30af\u30e9\u30b9\u306e\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5909\u6570\u5024\u306e\u5fa9\u5143\u8a2d\u5b9a": [[59, "id1"]], "\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306ewith\u30b9\u30c6\u30fc\u30c8\u30e1\u30f3\u30c8\u5185\u306e\u30b3\u30fc\u30c9\u306e\u5b9f\u884c\u306b\u3064\u3044\u3066": [[59, "with"]], "\u30b9\u30b3\u30fc\u30d7\u5185\u306e\u5909\u6570\u306e\u5fa9\u5143\u8a2d\u5b9a": [[59, "id2"]], "Circle \u30af\u30e9\u30b9": [[60, "circle"]], "draw_circle \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[60, "draw-circle"]], "x\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "x"], [97, "x"], [152, "x"], [166, "x"], [177, "x"], [178, "x"], [182, "x"], [229, "x"], [206, "x"]], "y\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "y"], [97, "y"], [152, "y"], [166, "y"], [177, "y"], [178, "y"], [182, "y"], [229, "y"], [206, "id3"]], "radius\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "radius"]], "fill_color\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "fill-color"], [97, "fill-color"], [166, "fill-color"], [177, "fill-color"], [178, "fill-color"], [182, "fill-color"], [229, "fill-color"], [206, "fill-color"], [207, "fill-color"]], "fill_alpha\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "fill-alpha"], [97, "fill-alpha"], [166, "fill-alpha"], [177, "fill-alpha"], [178, "fill-alpha"], [182, "fill-alpha"], [229, "fill-alpha"], [206, "fill-alpha"], [207, "fill-alpha"]], "line_color\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "line-color"], [97, "line-color"], [152, "line-color"], [166, "line-color"], [177, "line-color"], [178, "line-color"], [182, "line-color"], [229, "line-color"], [206, "line-color"], [207, "line-color"]], "line_alpha\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "line-alpha"], [97, "line-alpha"], [152, "line-alpha"], [166, "line-alpha"], [177, "line-alpha"], [178, "line-alpha"], [182, "line-alpha"], [229, "line-alpha"], [206, "line-alpha"], [207, "line-alpha"]], "line_thickness\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "line-thickness"], [97, "line-thickness"], [152, "line-thickness"], [166, "line-thickness"], [177, "line-thickness"], [178, "line-thickness"], [182, "line-thickness"], [229, "line-thickness"], [206, "line-thickness"], [207, "line-thickness"]], "line_dot_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "line-dot-setting"], [97, "line-dot-setting"], [152, "line-dot-setting"], [166, "line-dot-setting"], [177, "line-dot-setting"], [178, "line-dot-setting"], [182, "line-dot-setting"], [229, "line-dot-setting"]], "line_dash_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "line-dash-setting"], [97, "line-dash-setting"], [152, "line-dash-setting"], [166, "line-dash-setting"], [177, "line-dash-setting"], [178, "line-dash-setting"], [182, "line-dash-setting"], [229, "line-dash-setting"]], "line_round_dot_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "line-round-dot-setting"], [97, "line-round-dot-setting"], [152, "line-round-dot-setting"], [166, "line-round-dot-setting"], [177, "line-round-dot-setting"], [178, "line-round-dot-setting"], [182, "line-round-dot-setting"], [229, "line-round-dot-setting"]], "line_dash_dot_setting\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "line-dash-dot-setting"], [97, "line-dash-dot-setting"], [152, "line-dash-dot-setting"], [166, "line-dash-dot-setting"], [177, "line-dash-dot-setting"], [178, "line-dash-dot-setting"], [182, "line-dash-dot-setting"], [229, "line-dash-dot-setting"]], "rotation_around_center\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "rotation-around-center"], [97, "rotation-around-center"], [152, "rotation-around-center"], [166, "rotation-around-center"], [177, "rotation-around-center"], [178, "rotation-around-center"], [182, "rotation-around-center"], [229, "rotation-around-center"], [206, "rotation-around-center"]], "set_rotation_around_point\u3068get_rotation_around_point\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "set-rotation-around-pointget-rotation-around-point"], [97, "set-rotation-around-pointget-rotation-around-point"], [152, "set-rotation-around-pointget-rotation-around-point"], [166, "set-rotation-around-pointget-rotation-around-point"], [177, "set-rotation-around-pointget-rotation-around-point"], [178, "set-rotation-around-pointget-rotation-around-point"], [182, "set-rotation-around-pointget-rotation-around-point"], [229, "set-rotation-around-pointget-rotation-around-point"], [206, "set-rotation-around-pointget-rotation-around-point"]], "scale_x_from_center\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "scale-x-from-center"], [97, "scale-x-from-center"], [152, "scale-x-from-center"], [166, "scale-x-from-center"], [177, "scale-x-from-center"], [178, "scale-x-from-center"], [182, "scale-x-from-center"], [229, "scale-x-from-center"], [206, "scale-x-from-center"]], "scale_y_from_center\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "scale-y-from-center"], [97, "scale-y-from-center"], [152, "scale-y-from-center"], [166, "scale-y-from-center"], [177, "scale-y-from-center"], [178, "scale-y-from-center"], [182, "scale-y-from-center"], [229, "scale-y-from-center"]], "set_scale_x_from_point\u3068get_scale_x_from_point\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "set-scale-x-from-pointget-scale-x-from-point"], [97, "set-scale-x-from-pointget-scale-x-from-point"], [152, "set-scale-x-from-pointget-scale-x-from-point"], [166, "set-scale-x-from-pointget-scale-x-from-point"], [177, "set-scale-x-from-pointget-scale-x-from-point"], [178, "set-scale-x-from-pointget-scale-x-from-point"], [182, "set-scale-x-from-pointget-scale-x-from-point"], [229, "set-scale-x-from-pointget-scale-x-from-point"], [206, "set-scale-x-from-pointget-scale-x-from-point"]], "set_scale_y_from_point\u3068get_scale_y_from_point\u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "set-scale-y-from-pointget-scale-y-from-point"], [97, "set-scale-y-from-pointget-scale-y-from-point"], [152, "set-scale-y-from-pointget-scale-y-from-point"], [166, "set-scale-y-from-pointget-scale-y-from-point"], [177, "set-scale-y-from-pointget-scale-y-from-point"], [178, "set-scale-y-from-pointget-scale-y-from-point"], [182, "set-scale-y-from-pointget-scale-y-from-point"], [229, "set-scale-y-from-pointget-scale-y-from-point"]], "flip_x\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "flip-x"], [97, "flip-x"], [152, "flip-x"], [166, "flip-x"], [177, "flip-x"], [178, "flip-x"], [182, "flip-x"], [229, "flip-x"], [206, "flip-x"]], "flip_y\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "flip-y"], [97, "flip-y"], [152, "flip-y"], [166, "flip-y"], [177, "flip-y"], [178, "flip-y"], [182, "flip-y"], [229, "flip-y"], [206, "flip-y"]], "skew_x\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "skew-x"], [97, "skew-x"], [152, "skew-x"], [166, "skew-x"], [177, "skew-x"], [178, "skew-x"], [182, "skew-x"], [229, "skew-x"]], "skew_y\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[60, "skew-y"], [97, "skew-y"], [152, "skew-y"], [166, "skew-y"], [177, "skew-y"], [178, "skew-y"], [182, "skew-y"], [229, "skew-y"]], "Circle \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[60, "circle-api"]], "click \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[61, "click"]], "click \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[61, "id3"]], "unbind_click \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[61, "unbind-click"]], "\u5168\u3066\u306e\u30af\u30ea\u30c3\u30af\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u3092\u89e3\u9664\u3059\u308b": [[61, "id4"]], "click API": [[61, "click-api"]], "unbind_click API": [[61, "unbind-click-api"]], "unbind_click_all API": [[61, "unbind-click-all-api"]], "Color \u30af\u30e9\u30b9": [[62, "color"]], "\u53d7\u3051\u4ed8\u3051\u3089\u308c\u308b16\u9032\u6570\u306e\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9": [[62, "id3"]], "Color \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[62, "color-api"]], "Color \u30af\u30e9\u30b9\u306e from_rgb \u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9": [[63, "color-from-rgb"]], "\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u6982\u8981": [[63, "id1"]], "from_rgb \u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306eAPI": [[63, "from-rgb-api"]], "COLORLESS \u5b9a\u6570": [[64, "colorless"]], "\u5b9a\u6570\u306e\u6982\u8981": [[64, "id1"]], "Colors \u30af\u30e9\u30b9": [[65, "colors"]], "\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5404\u8272": [[65, "id3"], [153, "id3"]], "\u53c2\u8003\u6587\u732e\u30fb\u53c2\u8003\u8cc7\u6599": [[65, "id4"], [153, "id4"]], "contains \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[66, "contains"]], "contains API": [[66, "contains-api"], [191, "contains-api"]], "Continue \u30af\u30e9\u30b9": [[67, "continue"]], "Continue \u30af\u30e9\u30b9\u306e\u6982\u8981": [[67, "id1"]], "Continue API": [[67, "continue-api"]], "DateTime \u30af\u30e9\u30b9": [[68, "datetime"], [146, "datetime"]], "DateTime \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[68, "datetime-api"]], "DateTime \u30af\u30e9\u30b9\u306e day \u5c5e\u6027": [[69, "datetime-day"]], "day \u5c5e\u6027\u306eAPI": [[69, "day-api"]], "DateTime \u30af\u30e9\u30b9\u306e hour \u5c5e\u6027": [[70, "datetime-hour"]], "hour \u5c5e\u6027\u306eAPI": [[70, "hour-api"]], "DateTime \u30af\u30e9\u30b9\u306e millisecond \u5c5e\u6027": [[71, "datetime-millisecond"]], "millisecond \u5c5e\u6027\u306eAPI": [[71, "millisecond-api"]], "DateTime \u30af\u30e9\u30b9\u306e minute \u5c5e\u6027": [[72, "datetime-minute"]], "minute \u5c5e\u6027\u306eAPI": [[72, "minute-api"]], "DateTime \u30af\u30e9\u30b9\u306e month \u5c5e\u6027": [[73, "datetime-month"]], "month \u5c5e\u6027\u306eAPI": [[73, "month-api"]], "DateTime \u30af\u30e9\u30b9\u306e now \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[74, "datetime-now"]], "now \u306e\u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306eAPI": [[74, "now-api"]], "DateTime \u30af\u30e9\u30b9\u306e second \u5c5e\u6027": [[75, "datetime-second"]], "second \u5c5e\u6027\u306eAPI": [[75, "second-api"]], "DateTime \u30af\u30e9\u30b9\u306e set_month_end \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[76, "datetime-set-month-end"]], "DateTime \u30af\u30e9\u30b9\u306e weekday_js \u3068 weekday_py \u5c5e\u6027": [[77, "datetime-weekday-js-weekday-py"]], "weekday_js \u5c5e\u6027\u306eAPI": [[77, "weekday-js-api"]], "weekday_py \u5c5e\u6027\u306eAPI": [[77, "weekday-py-api"]], "DateTime \u30af\u30e9\u30b9\u306e year \u5c5e\u6027": [[78, "datetime-year"]], "year \u5c5e\u6027\u306eAPI": [[78, "year-api"]], "dblclick \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[79, "dblclick"]], "dblclick \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[79, "id3"]], "unbind_dblclick \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[79, "unbind-dblclick"]], "dblclick API": [[79, "dblclick-api"]], "unbind_dblclick API": [[79, "unbind-dblclick-api"]], "unbind_dblclick_all API": [[79, "unbind-dblclick-all-api"]], "delete \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[80, "delete"]], "Dictionary \u30af\u30e9\u30b9": [[81, "dictionary"], [146, "dictionary"]], "Dictionary\u30af\u30e9\u30b9\u306e\u6982\u8981": [[81, "id1"]], "\u5024\u306esetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[81, "setter"]], "\u5024\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[81, "getter"]], "getter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[81, "id3"]], "\u5024\u306e\u524a\u9664\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[81, "id4"]], "Dictionary \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[81, "dictionary-api"]], "Dictionary \u30af\u30e9\u30b9\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u306e\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a": [[82, "dictionary"]], "Dictionary \u30af\u30e9\u30b9\u306e get \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[83, "dictionary-get"]], "get API": [[83, "get-api"]], "Dictionary \u30af\u30e9\u30b9\u306e length \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[84, "dictionary-length"]], "len\u95a2\u6570\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [[84, "len"]], "DisplayObject \u30af\u30e9\u30b9": [[85, "displayobject"]], "DisplayObject \u30af\u30e9\u30b9\u306e\u6982\u8981": [[85, "id1"]], "DisplayObject \u3068 GraphicsBase \u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u5c5e\u6027\u306e\u6982\u8981": [[86, "displayobject-graphicsbase"]], "\u305d\u308c\u3089\u306e\u5c5e\u6027\u3067apysc\u304c\u3067\u304d\u308b\u3053\u3068": [[86, "apysc"]], "x \u3068 y \u5c5e\u6027": [[86, "x-y"]], "visible \u5c5e\u6027": [[86, "visible"]], "\u56de\u8ee2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[86, "id1"]], "\u62e1\u7e2e\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[86, "id2"]], "\u53cd\u8ee2\u306e\u5404\u5c5e\u6027": [[86, "id3"]], "\u6b6a\u307f\u306e\u5404\u5c5e\u6027": [[86, "id4"]], "DisplayObject \u30af\u30e9\u30b9\u306e get_css \u3068 set_css \u30e1\u30bd\u30c3\u30c9\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[87, "displayobject-get-css-set-css"]], "get_css API": [[87, "get-css-api"]], "set_css API": [[87, "set-css-api"]], "DisplayObject \u30af\u30e9\u30b9\u306e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u8a2d\u5b9a\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[88, "displayobject"]], "DisplayObject \u30af\u30e9\u30b9\u306e parent \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[89, "displayobject-parent"]], "remove_from_parent \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[89, "remove-from-parent"]], "parent API": [[89, "parent-api"]], "remove_from_parent API": [[89, "remove-from-parent-api"]], "DisplayObject \u30af\u30e9\u30b9\u306e visible \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[90, "displayobject-visible"]], "visible \u5c5e\u6027\u306eAPI": [[90, "visible-api"]], "DisplayObject \u30af\u30e9\u30b9\u306e x \u3068 y \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[91, "displayobject-x-y"]], "\u7d2f\u7b97\u4ee3\u5165\u6f14\u7b97": [[91, "id3"]], "x\u5c5e\u6027\u306eAPI": [[91, "xapi"], [176, "xapi"]], "y\u5c5e\u6027\u306eAPI": [[91, "yapi"], [176, "yapi"]], "display_on_colaboratory \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[92, "display-on-colaboratory"]], "\u5fc5\u8981\u3068\u3055\u308c\u308b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306a\u3069\u306e\u5bfe\u5fdc": [[92, "id2"], [93, "id2"]], "display_on_colaboratory API": [[92, "display-on-colaboratory-api"]], "display_on_jupyter \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[93, "display-on-jupyter"]], "\u7279\u8a18\u4e8b\u9805": [[93, "id3"], [96, "id3"], [98, "id3"], [122, "id3"], [138, "id3"], [165, "id2"], [189, "id2"], [232, "id2"]], "display_on_jupyter API": [[93, "display-on-jupyter-api"]], "\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": [[94, "id1"]], "apysc\u306e\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067\u3067\u304d\u308b\u3053\u3068": [[94, "apysc"]], "\u5857\u308a\u306e\u8a2d\u5b9a": [[94, "id2"]], "\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [[94, "id3"]], "\u63cf\u753b\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[94, "id4"]], "\u30a4\u30fc\u30b8\u30f3\u30b0\u306eenum": [[95, "enum"]], "\u30a4\u30fc\u30ba\u30a4\u30f3\uff08ease-in\uff09\u3001\u30a4\u30fc\u30ba\u30a2\u30a6\u30c8\uff08ease-out\uff09\u3001\u30a4\u30fc\u30ba\u30a4\u30f3\u30a2\u30a6\u30c8\uff08ease-in-out\uff09\u306e\u9055\u3044": [[95, "ease-in-ease-out-ease-in-out"]], "\u30a4\u30fc\u30ba\u30a4\u30f3\u306e\u4f8b": [[95, "id3"]], "\u30a4\u30fc\u30ba\u30a2\u30a6\u30c8\u306e\u4f8b": [[95, "id4"]], "\u30a4\u30fc\u30ba\u30a4\u30f3\u30a2\u30a6\u30c8\u306e\u4f8b": [[95, "id5"]], "Elif \u30af\u30e9\u30b9": [[96, "elif"]], "Elif \u30af\u30e9\u30b9\u306e\u6982\u8981": [[96, "id1"]], "Elif \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[96, "elif-api"]], "Ellipse \u30af\u30e9\u30b9": [[97, "ellipse"]], "draw_ellipse \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3064\u3044\u3066\u306e\u7279\u8a18\u4e8b\u9805": [[97, "draw-ellipse"]], "width\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[97, "width"], [182, "width"]], "height\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[97, "height"], [182, "height"]], "Ellipse \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[97, "ellipse-api"]], "Else \u30af\u30e9\u30b9": [[98, "else"]], "Else \u30af\u30e9\u30b9\u306e\u6982\u8981": [[98, "id1"]], "Else \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[98, "else-api"]], "Event \u30af\u30e9\u30b9\u306e prevent_default \u3068 stop_propagation \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[100, "event-prevent-default-stop-propagation"]], "prevent_default \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[100, "prevent-default"]], "stop_propagation \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[100, "stop-propagation"]], "prevent_default API": [[100, "prevent-default-api"]], "stop_propagation API": [[100, "stop-propagation-api"]], "ForArrayIndices \u30af\u30e9\u30b9": [[101, "forarrayindices"]], "ForArrayIndices API": [[101, "forarrayindices-api"]], "ForArrayIndicesAndValues \u30af\u30e9\u30b9": [[102, "forarrayindicesandvalues"]], "ForArrayIndicesAndValues API": [[102, "forarrayindicesandvalues-api"]], "ForArrayValues \u30af\u30e9\u30b9": [[103, "forarrayvalues"]], "ForArrayValues API": [[103, "forarrayvalues-api"]], "ForDictKeys \u30af\u30e9\u30b9": [[104, "fordictkeys"]], "ForDictKeys API": [[104, "fordictkeys-api"]], "ForDictKeysAndValues \u30af\u30e9\u30b9": [[105, "fordictkeysandvalues"]], "ForDictKeysAndValues API": [[105, "fordictkeysandvalues-api"]], "ForDictValues \u30af\u30e9\u30b9": [[106, "fordictvalues"]], "ForDictValues API": [[106, "fordictvalues-api"]], "FPS \u306e enum": [[107, "fps-enum"]], "apysc \u306e\u57fa\u672c\u7684\u306a\u30c7\u30fc\u30bf\u578b\u306e value \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[108, "apysc-value"]], "getter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[108, "getter"]], "setter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[108, "setter"]], "get_child_at \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[110, "get-child-at"]], "get_child_at API": [[110, "get-child-at-api"], [191, "get-child-at-api"]], "Graphics \u30af\u30e9\u30b9": [[111, "graphics"], [146, "graphics"]], "Graphics \u30af\u30e9\u30b9\u306e\u6982\u8981": [[111, "id1"]], "Sprite \u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u7d4c\u7531\u3057\u305f\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u547c\u3073\u51fa\u3057": [[111, "sprite"]], "\u5404\u8fd4\u5374\u5024\u306b\u3064\u3044\u3066": [[111, "id2"]], "GraphicsBase \u30af\u30e9\u30b9\u306e fill_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[112, "graphicsbase-fill-alpha"]], "fill_alpha \u5c5e\u6027\u306eAPI": [[112, "fill-alpha-api"], [127, "fill-alpha-api"], [211, "fill-alpha-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e fill_color \u5c5e\u6027": [[113, "graphicsbase-fill-color"]], "fill_color \u5c5e\u6027\u306eAPI": [[113, "fill-color-api"], [127, "fill-color-api"], [212, "fill-color-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e flip_x \u3068 flip_y \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[114, "graphicsbase-flip-x-flip-y"]], "flip_x \u5c5e\u6027\u306eAPI": [[114, "flip-x-api"]], "flip_y \u5c5e\u6027\u306eAPI": [[114, "flip-y-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e line_alpha \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[115, "graphicsbase-line-alpha"]], "line_alpha \u5c5e\u6027\u306eAPI": [[115, "line-alpha-api"], [141, "line-alpha-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e line_color \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[116, "graphicsbase-line-color"]], "line_color \u5c5e\u6027\u306eAPI": [[116, "line-color-api"], [141, "line-color-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e line_dash_dot_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[117, "graphicsbase-line-dash-dot-setting"]], "\u8a2d\u5b9a\u306e\u524a\u9664": [[117, "id3"], [118, "id3"], [119, "id3"], [120, "id3"]], "line_dash_dot_setting \u306eAPI": [[117, "line-dash-dot-setting-api"]], "delete_line_dash_dot_setting \u306eAPI": [[117, "delete-line-dash-dot-setting-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e line_dash_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[118, "graphicsbase-line-dash-setting"]], "line_dash_setting \u5c5e\u6027\u306eAPI": [[118, "line-dash-setting-api"], [141, "line-dash-setting-api"]], "delete_line_dash_setting \u306eAPI": [[118, "delete-line-dash-setting-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e line_dot_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[119, "graphicsbase-line-dot-setting"]], "line_dot_setting \u5c5e\u6027\u306eAPI": [[119, "line-dot-setting-api"], [141, "line-dot-setting-api"]], "delete_line_dot_setting \u306eAPI": [[119, "delete-line-dot-setting-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e line_round_dot_setting \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[120, "graphicsbase-line-round-dot-setting"]], "line_round_dot_setting \u5c5e\u6027\u306eAPI": [[120, "line-round-dot-setting-api"], [141, "line-round-dot-setting-api"]], "delete_line_round_dot_setting \u306eAPI": [[120, "delete-line-round-dot-setting-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e line_thickness \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[121, "graphicsbase-line-thickness"]], "line_thickness \u5c5e\u6027\u306eAPI": [[121, "line-thickness-api"], [141, "line-thickness-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e rotation_around_center \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[122, "graphicsbase-rotation-around-center"]], "rotation_around_center \u5c5e\u6027\u306eAPI": [[122, "rotation-around-center-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e rotation_around_point \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[123, "graphicsbase-rotation-around-point"]], "get_rotation_around_point API": [[123, "get-rotation-around-point-api"]], "set_rotation_around_point API": [[123, "set-rotation-around-point-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e scale_x_from_center \u3068 scale_y_from_center \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[124, "graphicsbase-scale-x-from-center-scale-y-from-center"]], "scale_x_from_center \u5c5e\u6027\u306eAPI": [[124, "scale-x-from-center-api"]], "scale_y_from_center \u5c5e\u6027\u306eAPI": [[124, "scale-y-from-center-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e get_scale_from_point \u3068 set_scale_from_point \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[125, "graphicsbase-get-scale-from-point-set-scale-from-point"]], "get_scale_x_from_point API": [[125, "get-scale-x-from-point-api"]], "set_scale_x_from_point API": [[125, "set-scale-x-from-point-api"]], "get_scale_y_from_point API": [[125, "get-scale-y-from-point-api"]], "set_scale_y_from_point API": [[125, "set-scale-y-from-point-api"]], "GraphicsBase \u30af\u30e9\u30b9\u306e skew_x \u3068 skew_y \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[126, "graphicsbase-skew-x-skew-y"]], "skew_x property API": [[126, "skew-x-property-api"]], "skew_y property API": [[126, "skew-y-property-api"]], "Graphics \u30af\u30e9\u30b9\u306e begin_fill \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[127, "graphics-begin-fill"]], "\u5857\u308a\u306e\u8272\u306e\u8a2d\u5b9a": [[127, "id3"]], "\u5857\u308a\u306e\u8272\u306e\u900f\u660e\u5ea6\u306e\u8a2d\u5b9a": [[127, "id4"]], "begin_fill API": [[127, "begin-fill-api"]], "Graphics \u30af\u30e9\u30b9\u306e clear \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[128, "graphics-clear"]], "Graphics \u30af\u30e9\u30b9\u306e draw_circle \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[129, "graphics-draw-circle"]], "\u8fd4\u5374\u5024": [[129, "id3"], [133, "id3"], [136, "id3"], [139, "id3"]], "draw_circle API": [[129, "draw-circle-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_dash_dotted_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[130, "graphics-draw-dash-dotted-line"]], "draw_dash_dotted_line API": [[130, "draw-dash-dotted-line-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_dashed_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[131, "graphics-draw-dashed-line"]], "draw_dashed_line API": [[131, "draw-dashed-line-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_dotted_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[132, "graphics-draw-dotted-line"]], "draw_dotted_line API": [[132, "draw-dotted-line-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_ellipse \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[133, "graphics-draw-ellipse"]], "draw_ellipse API": [[133, "draw-ellipse-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[134, "graphics-draw-line"]], "\u7121\u8996\u3055\u308c\u308b\u7dda\u306e\u30b9\u30bf\u30a4\u30eb\u8a2d\u5b9a": [[134, "id3"]], "Line \u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [[134, "line"]], "draw_line API": [[134, "draw-line-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_path \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[135, "graphics-draw-path"]], "draw_path API": [[135, "draw-path-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_polygon \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[136, "graphics-draw-polygon"]], "line_to \u3068 draw_polygon \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u9055\u3044\u306b\u3064\u3044\u3066": [[136, "line-to-draw-polygon"]], "draw_polygon API": [[136, "draw-polygon-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_rect \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[137, "graphics-draw-rect"]], "Rectangle \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [[137, "rectangle"]], "draw_rect API": [[137, "draw-rect-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_round_dotted_line \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[138, "graphics-draw-round-dotted-line"]], "draw_round_dotted_line API": [[138, "draw-round-dotted-line-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_round_rect \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[139, "graphics-draw-round-rect"]], "draw_round_rect API": [[139, "draw-round-rect-api"]], "Graphics \u30af\u30e9\u30b9\u306e draw_triangle \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[140, "graphics-draw-triangle"]], "Triangle \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [[140, "triangle"]], "draw_triangle \u306eAPI": [[140, "draw-triangle-api"]], "Graphics \u30af\u30e9\u30b9\u306e line_style \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[141, "graphics-line-style"]], "\u7dda\u306e\u8272\u306e\u8a2d\u5b9a": [[141, "id3"]], "\u7dda\u5e45\u306e\u8a2d\u5b9a": [[141, "id4"]], "\u7dda\u306e\u900f\u660e\u5ea6\u306e\u8a2d\u5b9a": [[141, "id5"]], "\u7dda\u7aef\u306e\u8a2d\u5b9a": [[141, "id6"]], "\u7dda\u306e\u7e4b\u304e\u76ee\u306e\u8a2d\u5b9a": [[141, "id7"]], "\u7dda\u306e\u70b9\u7dda\u8a2d\u5b9a": [[141, "id8"]], "\u7dda\u306e\u7834\u7dda\u8a2d\u5b9a": [[141, "id9"]], "\u7dda\u306e\u4e38\u30c9\u30c3\u30c8\u8a2d\u5b9a": [[141, "id10"]], "\u7dda\u306e\u4e00\u70b9\u9396\u7dda\u306e\u8a2d\u5b9a": [[141, "id11"]], "line_style API": [[141, "line-style-api"]], "line_cap \u5c5e\u6027\u306eAPI": [[141, "line-cap-api"]], "line_joints \u5c5e\u6027\u306eAPI": [[141, "line-joints-api"]], "line_dash_dot_setting \u5c5e\u6027\u306eAPI": [[141, "line-dash-dot-setting-api"]], "Graphics \u30af\u30e9\u30b9\u306e move_to \u3068 line_to \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[142, "graphics-move-to-line-to"]], "line_to \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u9023\u7d9a\u3057\u305f\u547c\u3073\u51fa\u3057": [[142, "line-to"]], "line_to \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u547c\u3073\u51fa\u3057\u305f\u5f8c\u306e move_to \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u547c\u3073\u51fa\u3057": [[142, "line-to-move-to"]], "Polyline \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": [[142, "polyline"]], "move_to API": [[142, "move-to-api"]], "line_to API": [[142, "line-to-api"]], "Color \u30af\u30e9\u30b9\u306e green_color \u30d7\u30ed\u30d1\u30c6\u30a3": [[143, "color-green-color"]], "green_color \u5c5e\u6027\u306eAPI": [[143, "green-color-api"]], "If \u30af\u30e9\u30b9": [[144, "if"]], "If \u30af\u30e9\u30b9\u306e\u6982\u8981": [[144, "id1"]], "If \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[144, "if-api"]], "import \u306e\u6163\u7fd2": [[145, "import"]], "Int \u3068 Number \u30af\u30e9\u30b9": [[147, "int-number"], [146, "int-number"]], "Int \u30af\u30e9\u30b9": [[147, "int"]], "Number \u30af\u30e9\u30b9": [[147, "number"]], "Float\u30af\u30e9\u30b9\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[147, "float"]], "Int \u3068 Number \u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[147, "id1"]], "Int \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[147, "int-api"]], "Number \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[147, "number-api"]], "Int \u3068 Number \u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u8a08\u7b97\u5236\u5fa1": [[148, "int-number"]], "\u5171\u901a\u306e\u6319\u52d5": [[148, "id1"], [149, "id1"]], "\u52a0\u7b97": [[148, "id2"], [193, "id1"]], "\u6e1b\u7b97": [[148, "id3"]], "\u4e57\u7b97": [[148, "id4"], [193, "id2"]], "\u9664\u7b97": [[148, "id5"]], "\u5207\u308a\u6368\u3066\u9664\u7b97": [[148, "id6"]], "\u5270\u4f59": [[148, "id7"]], "Int \u3068 Number \u30af\u30e9\u30b9\u306e\u57fa\u672c\u7684\u306a\u6bd4\u8f03\u5236\u5fa1": [[149, "int-number"]], "\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": [[149, "id2"]], "\u975e\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": [[149, "id3"]], "\u672a\u6e80\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": [[149, "id4"]], "\u4ee5\u4e0b\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": [[149, "id5"]], "\u8d85\u904e\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": [[149, "id6"]], "\u4ee5\u4e0a\u6761\u4ef6\u306e\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": [[149, "id7"]], "Int \u3068 Number \u30af\u30e9\u30b9\u306e to_fixed \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[150, "int-number-to-fixed"]], "to_fixed API": [[150, "to-fixed-api"]], "Int \u3068 Number \u30af\u30e9\u30b9\u306e to_hex \u30e1\u30bd\u30c3\u30c9": [[151, "int-number-to-hex"]], "\u30e1\u30bd\u30c3\u30c9\u6982\u8981": [[151, "id1"], [197, "id1"], [200, "id1"], [203, "id1"], [204, "id1"]], "ap.Number\u578b\u306e\u5024\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [[151, "ap-number"]], "to_hex \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[151, "to-hex-api"]], "Line \u30af\u30e9\u30b9": [[152, "line"]], "draw_line \u3084\u4ed6\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[152, "draw-line"]], "Line \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[152, "line-api"]], "MaterialDesignColors \u30af\u30e9\u30b9": [[153, "materialdesigncolors"]], "\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3": [[154, "id1"]], "\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306e\u30e9\u30a4\u30bb\u30f3\u30b9": [[154, "id3"]], "\u5404\u30de\u30c6\u30ea\u30a2\u30eb\u30a2\u30a4\u30b3\u30f3\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[154, "api"]], "Math \u30af\u30e9\u30b9\u306e clamp \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[155, "math-clamp"]], "clamp \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[155, "clamp-api"]], "Math \u30af\u30e9\u30b9\u306e max \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[156, "math-max"]], "Math.max \u306eAPI": [[156, "math-max-api"]], "Math \u30af\u30e9\u30b9\u306e min \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[157, "math-min"]], "Math.min \u306eAPI": [[157, "math-min-api"]], "Math \u30af\u30e9\u30b9\u306e trunc \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[158, "math-trunc"]], "Math.trunc \u306eAPI": [[158, "math-trunc-api"]], "MouseEvent \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u6982\u8981": [[159, "mouseevent"]], "\u3053\u308c\u3089\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3067apysc\u304c\u51fa\u6765\u308b\u3053\u3068": [[159, "apysc"]], "\u30af\u30ea\u30c3\u30af\u30a4\u30d9\u30f3\u30c8\u306e\u4f8b": [[159, "id1"]], "\u57fa\u672c\u7684\u306a\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[160, "id1"]], "\u57fa\u672c\u7684\u306a\u30a4\u30d9\u30f3\u30c8\u767b\u9332\u51e6\u7406\u306e\u4f7f\u3044\u65b9": [[160, "id2"]], "\u57fa\u672c\u7684\u306a\u30a4\u30d9\u30f3\u30c8\u89e3\u9664\u51e6\u7406\u306e\u4f7f\u3044\u65b9": [[160, "id3"]], "\u5168\u3066\u306e\u30a4\u30d9\u30f3\u30c8\u30cf\u30f3\u30c9\u30e9\u306e\u8a2d\u5b9a\u3092\u89e3\u9664\u3059\u308b": [[160, "id4"]], "\u30cf\u30f3\u30c9\u30e9\u306e\u5f15\u6570\u306e\u540d\u524d\u3068\u578b": [[160, "id5"]], "MouseEvent \u30af\u30e9\u30b9\u306e this \u5c5e\u6027": [[160, "mouseevent-this"]], "MouseEvent \u30af\u30e9\u30b9\u306e\u30b8\u30a7\u30cd\u30ea\u30c3\u30af\u578b\u306e\u8a2d\u5b9a": [[160, "mouseevent"]], "MouseEvent \u30af\u30e9\u30b9\u306e stage_x \u3068 stage_y \u5c5e\u6027": [[160, "mouseevent-stage-x-stage-y"]], "MouseEvent \u30af\u30e9\u30b9\u306e local_x \u3068 local_y \u5c5e\u6027": [[160, "mouseevent-local-x-local-y"]], "stage_x \u5c5e\u6027\u306eAPI": [[160, "stage-x-api"]], "stage_y \u5c5e\u6027\u306eAPI": [[160, "stage-y-api"]], "local_x \u5c5e\u6027\u306eAPI": [[160, "local-x-api"]], "local_y \u5c5e\u6027\u306eAPI": [[160, "local-y-api"]], "mousedown \u3068 mouseup \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[161, "mousedown-mouseup"]], "mousedown \u3068 mouseup \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[161, "id3"]], "\u89e3\u9664\u7528\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[161, "id4"], [162, "id4"], [163, "id4"]], "mousedown API": [[161, "mousedown-api"]], "unbind_mousedown API": [[161, "unbind-mousedown-api"]], "unbind_mousedown_all API": [[161, "unbind-mousedown-all-api"]], "mouseup API": [[161, "mouseup-api"]], "unbind_mouseup API": [[161, "unbind-mouseup-api"]], "unbind_mouseup_all API": [[161, "unbind-mouseup-all-api"]], "mousemove \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[162, "mousemove"]], "mousemove API": [[162, "mousemove-api"]], "unbind_mousemove API": [[162, "unbind-mousemove-api"]], "unbind_mousemove_all API": [[162, "unbind-mousemove-all-api"]], "mouseover \u3068 mouseout \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[163, "mouseover-mouseout"]], "mouseover \u3068 mouseout \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[163, "id3"]], "mouseover API": [[163, "mouseover-api"]], "unbind_mouseover API": [[163, "unbind-mouseover-api"]], "unbind_mouseover_all API": [[163, "unbind-mouseover-all-api"]], "mouseout API": [[163, "mouseout-api"]], "unbind_mouseout API": [[163, "unbind-mouseout-api"]], "unbind_mouseout_all API": [[163, "unbind-mouseout-all-api"]], "MultiLineText \u30af\u30e9\u30b9": [[164, "multilinetext"]], "MultiLineText \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[164, "multilinetext-api"]], "num_children \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[165, "num-children"]], "num_children API": [[165, "num-children-api"]], "Path \u30af\u30e9\u30b9": [[166, "path"]], "PathMoveTo \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathmoveto"]], "PathLineTo \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathlineto"]], "PathHorizontal \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathhorizontal"]], "PathVertical \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathvertical"]], "PathClose \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathclose"]], "PathBezier2D \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathbezier2d"]], "PathBezier2DContinual \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathbezier2dcontinual"]], "PathBezier3D \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathbezier3d"]], "PathBezier3DContinual \u30af\u30e9\u30b9\u8a2d\u5b9a": [[166, "pathbezier3dcontinual"]], "Path \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[166, "path-api"]], "PathBezier2D \u30af\u30e9\u30b9": [[167, "pathbezier2d"]], "\u76f8\u5bfe\u5ea7\u6a19\u8a2d\u5b9a": [[167, "id3"], [168, "id3"], [169, "id3"], [170, "id3"], [172, "id3"], [173, "id3"], [174, "id3"], [175, "id3"]], "PathBezier2D \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[167, "pathbezier2d-api"]], "PathBezier2DContinual \u30af\u30e9\u30b9": [[168, "pathbezier2dcontinual"]], "PathBezier2DContinual \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[168, "pathbezier2dcontinual-api"]], "PathBezier3D \u30af\u30e9\u30b9": [[169, "pathbezier3d"]], "PathBezier3D \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[169, "pathbezier3d-api"]], "PathBezier3DContinual \u30af\u30e9\u30b9": [[170, "pathbezier3dcontinual"]], "PathBezier3DContinual \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[170, "pathbezier3dcontinual-api"]], "PathClose \u30af\u30e9\u30b9": [[171, "pathclose"]], "PathClose \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[171, "pathclose-api"]], "PathHorizontal \u30af\u30e9\u30b9": [[172, "pathhorizontal"]], "PathHorizontal \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[172, "pathhorizontal-api"]], "PathLineTo \u30af\u30e9\u30b9": [[173, "pathlineto"]], "PathLineTo \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[173, "pathlineto-api"]], "PathMoveTo \u30af\u30e9\u30b9": [[174, "pathmoveto"]], "PathMoveTo \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[174, "pathmoveto-api"]], "PathVertical \u30af\u30e9\u30b9": [[175, "pathvertical"]], "PathVertical \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[175, "pathvertical-api"]], "Point2D \u30af\u30e9\u30b9": [[176, "point2d"]], "Point2D \u30af\u30e9\u30b9\u306e\u6982\u8981": [[176, "id1"]], "X\u3068Y\u5ea7\u6a19\u306egetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[176, "xygetter"]], "X\u3068Y\u5ea7\u6a19\u306esetter\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[176, "xysetter"]], "draw_polygon \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u304a\u3051\u308b\u4f7f\u7528\u4f8b": [[176, "draw-polygon"]], "Point2D \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[176, "point2d-api"]], "Polygon \u30af\u30e9\u30b9": [[177, "polygon"]], "draw_polygon \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u304a\u3051\u308b\u7279\u8a18\u4e8b\u9805": [[177, "draw-polygon"]], "Polygon \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[177, "polygon-api"]], "Polyline \u30af\u30e9\u30b9": [[178, "polyline"]], "move_to \u3068 line_to \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[178, "move-to-line-to"]], "Polyline \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[178, "polyline-api"]], "\u30af\u30a4\u30c3\u30af\u30b9\u30bf\u30fc\u30c8\u30ac\u30a4\u30c9": [[179, "id1"], [146, "id2"]], "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[179, "id2"]], "Stage\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u3001HTML\u3092\u51fa\u529b\u3059\u308b": [[179, "stagehtml"]], "Sprite\u306e\u30b3\u30f3\u30c6\u30ca\u3068\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3059\u308b": [[179, "sprite"]], "range \u95a2\u6570": [[180, "range"]], "\u95a2\u6570\u6982\u8981": [[180, "id1"]], "range \u95a2\u6570\u306eAPI": [[180, "range-api"]], "\u63a8\u5968\u3055\u308c\u308b\u578b\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306e\u30c1\u30a7\u30c3\u30af\u8a2d\u5b9a": [[181, "id1"]], "\u63a8\u5968\u3055\u308c\u308b\u578b\u30c1\u30a7\u30c3\u30af\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u3064\u3044\u3066": [[181, "id2"]], "mypy\u3067\u7121\u8996\u8a2d\u5b9a\u3092\u884c\u3063\u3066\u3044\u308b\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9": [[181, "mypy"]], "Rectangle \u30af\u30e9\u30b9": [[182, "rectangle"]], "draw_rect \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[182, "draw-rect"]], "ellipse_width\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[182, "ellipse-width"]], "ellipse_height\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[182, "ellipse-height"]], "Rectangle \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[182, "rectangle-api"]], "Color \u30af\u30e9\u30b9\u306e red_color \u30d7\u30ed\u30d1\u30c6\u30a3": [[184, "color-red-color"]], "red_color \u5c5e\u6027\u306eAPI": [[184, "red-color-api"]], "remove_children \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[185, "remove-children"]], "remove_children \u306eAPI": [[185, "remove-children-api"]], "Return \u30af\u30e9\u30b9": [[186, "return"]], "Return \u30af\u30e9\u30b9\u306e\u6982\u8981": [[186, "id1"]], "Return API": [[186, "return-api"]], "save_overall_html \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[187, "save-overall-html"]], "HTML\u3092\u6700\u5c0f\u5316\u3059\u308b": [[187, "html"]], "JavaScript\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9\u306e\u8a2d\u5b9a\u3068\u51fa\u529b\u30b9\u30ad\u30c3\u30d7\u306e\u8a2d\u5b9a": [[187, "javascript"]], "html_file_name \u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u3066HTML\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3092\u5909\u66f4\u3059\u308b": [[187, "html-file-name-html"]], "embed_js_libs \u30aa\u30d7\u30b7\u30e7\u30f3\u3067JavaScript\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u30921\u3064\u306eHTML\u30d5\u30a1\u30a4\u30eb\u306b\u307e\u3068\u3081\u308b": [[187, "embed-js-libs-javascript1html"]], "verbose \u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6a19\u6e96\u51fa\u529b\u306e\u8a2d\u5b9a\u3092\u5909\u66f4\u3059\u308b": [[187, "verbose"]], "save_overall_html API": [[187, "save-overall-html-api"]], "\u9023\u7d9a\u3057\u305f\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u8a2d\u5b9a": [[188, "id1"]], "\u540c\u3058\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u4e0a\u3067\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3092\u9023\u7d9a\u3057\u3066\u547c\u3073\u51fa\u3059": [[188, "id2"]], "animation_complete \u306e\u30cf\u30f3\u30c9\u30e9\u8a2d\u5b9a": [[188, "animation-complete"]], "set_debug_mode \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[189, "set-debug-mode"]], "set_debug_mode API": [[189, "set-debug-mode-api"]], "Sprite\u30af\u30e9\u30b9": [[190, "sprite"]], "Sprite\u3068\u306f\uff1f": [[190, "id1"]], "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u81ea\u52d5\u8ffd\u52a0\u306b\u95a2\u3059\u308b\u6ce8\u610f\u70b9": [[190, "id2"]], "graphics\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": [[190, "graphics"]], "DisplayObject\u306e\u8907\u6570\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u79fb\u52d5\u306b\u3064\u3044\u3066": [[190, "displayobject"]], "Sprite\u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bfAPI": [[190, "spriteapi"]], "Stage \u30af\u30e9\u30b9": [[191, "stage"]], "Stage \u30af\u30e9\u30b9\u306e\u6982\u8981": [[191, "id1"]], "\u30b9\u30c6\u30fc\u30b8\u306e\u4f5c\u6210": [[191, "id2"]], "\u30b9\u30c6\u30fc\u30b8\u306e\u80cc\u666f\u8272\u8a2d\u5b9a": [[191, "id3"]], "\u30b9\u30c6\u30fc\u30b8\u306e\u30b5\u30a4\u30ba\u8a2d\u5b9a": [[191, "id4"]], "\u30b9\u30c6\u30fc\u30b8\u306e\u8981\u7d20\u306eID\u8a2d\u5b9a": [[191, "id"]], "get_stage \u95a2\u6570\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[191, "get-stage"]], "Stage \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[191, "stage-api"]], "stage_elem_id \u5c5e\u6027\u306eAPI": [[191, "stage-elem-id-api"]], "num_children property API": [[191, "num-children-property-api"]], "get_stage \u306eAPI": [[191, "get-stage-api"]], "String \u30af\u30e9\u30b9": [[192, "string"], [146, "string"]], "String \u30af\u30e9\u30b9\u306e\u6982\u8981": [[192, "id1"]], "String \u30af\u30e9\u30b9\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[192, "id2"]], "String \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[192, "string-api"]], "String \u30af\u30e9\u30b9\u306e\u52a0\u7b97\u3068\u4e57\u7b97\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": [[193, "string"]], "String \u30af\u30e9\u30b9\u306e apply_max_num_of_decimal_places \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[194, "string-apply-max-num-of-decimal-places"]], "apply_max_num_of_decimal_places API": [[194, "apply-max-num-of-decimal-places-api"]], "String \u30af\u30e9\u30b9\u306e\u6bd4\u8f03\u306e\u5404\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3": [[195, "string"]], "\u6bd4\u8f03\u306e\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8fd4\u5374\u5024\u306e\u578b": [[195, "id1"]], "\u53d7\u3051\u4ed8\u3051\u3089\u308c\u308b\u53f3\u5074\u306e\u5024\u306e\u578b": [[195, "id2"]], "\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03": [[195, "id3"]], "\u975e\u7b49\u5024\u6761\u4ef6\u306e\u6bd4\u8f03": [[195, "id4"]], "\u672a\u6e80\u3082\u3057\u304f\u306f\u8d85\u904e\u6761\u4ef6\u306e\u6bd4\u8f03": [[195, "id5"]], "String \u30af\u30e9\u30b9\u306e length \u5c5e\u6027": [[196, "string-length"]], "\u7d75\u6587\u5b57\u306b\u95a2\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[196, "id3"]], "String \u30af\u30e9\u30b9\u306e lower \u30e1\u30bd\u30c3\u30c9": [[197, "string-lower"]], "lower \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[197, "lower-api"]], "String \u30af\u30e9\u30b9\u306e lstrip \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[198, "string-lstrip"]], "lstrip API": [[198, "lstrip-api"]], "String \u30af\u30e9\u30b9\u306e rstrip \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[199, "string-rstrip"]], "rstrip API": [[199, "rstrip-api"]], "String \u30af\u30e9\u30b9\u306e slice \u30e1\u30bd\u30c3\u30c9": [[200, "string-slice"]], "slice \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[200, "slice-api"]], "String \u30af\u30e9\u30b9\u306e split \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[201, "string-split"]], "split API": [[201, "split-api"]], "String \u30af\u30e9\u30b9\u306e strip \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[202, "string-strip"]], "strip API": [[202, "strip-api"]], "String \u30af\u30e9\u30b9\u306e upper \u30e1\u30bd\u30c3\u30c9": [[203, "string-upper"]], "upper \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[203, "upper-api"]], "String \u30af\u30e9\u30b9\u306e zfill \u30e1\u30bd\u30c3\u30c9": [[204, "string-zfill"]], "zfill \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[204, "zfill-api"]], "SvgMask \u30af\u30e9\u30b9\u3068\u95a2\u9023\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9": [[205, "svgmask"]], "DisplayObject\u3068\u30de\u30b9\u30af\u306e\u5ea7\u6a19\u3092\u540c\u671f\u3055\u305b\u305f\u3044\u5834\u5408\u306e\u30b1\u30fc\u30b9": [[205, "displayobject"]], "SvgMask \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[205, "svgmask-api"]], "SvgMask \u30af\u30e9\u30b9\u306e add_svg_masking_object \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[205, "svgmask-add-svg-masking-object-api"]], "svg_mask \u5c5e\u6027\u306eAPI": [[205, "svg-mask-api"]], "text_align \u5c5e\u6027": [[208, "text-align"]], "CssTextAlign.LEFT\u306e\u4f8b": [[208, "csstextalign-left"]], "CssTextAlign.CENTER\u306e\u4f8b": [[208, "csstextalign-center"]], "CssTextAlign.RIGHT\u306e\u4f8b": [[208, "csstextalign-right"]], "CssTextAlign.JUSTIFY\u306e\u4f8b": [[208, "csstextalign-justify"]], "text_align \u5c5e\u6027\u306eAPI": [[208, "text-align-api"]], "text_align_last \u5c5e\u6027": [[209, "text-align-last"]], "CssTextAlignLast.AUTO\u306e\u4f8b": [[209, "csstextalignlast-auto"]], "CssTextAlignLast.LEFT\u306e\u4f8b": [[209, "csstextalignlast-left"]], "CssTextAlignLast.CENTER\u306e\u4f8b": [[209, "csstextalignlast-center"]], "CssTextAlignLast.RIGHT\u306e\u4f8b": [[209, "csstextalignlast-right"]], "CssTextAlignLast.JUSTIFY\u306e\u4f8b": [[209, "csstextalignlast-justify"]], "text_align_last \u5c5e\u6027\u306eAPI": [[209, "text-align-last-api"]], "\u30c6\u30ad\u30b9\u30c8\u306e bold \u5c5e\u6027": [[210, "bold"]], "bold \u5c5e\u6027\u306eAPI": [[210, "bold-api"]], "\u30c6\u30ad\u30b9\u30c8\u306e fill_alpha \u5c5e\u6027": [[211, "fill-alpha"]], "\u30c6\u30ad\u30b9\u30c8\u306e fill_color \u5c5e\u6027": [[212, "fill-color"]], "\u30c6\u30ad\u30b9\u30c8\u306e font_size \u5c5e\u6027": [[213, "font-size"]], "font_size \u5c5e\u6027\u306eAPI": [[213, "font-size-api"]], "\u30c6\u30ad\u30b9\u30c8\u306e italic \u5c5e\u6027": [[214, "italic"]], "italic \u5c5e\u6027\u306eAPI": [[214, "italic-api"]], "\u30c6\u30ad\u30b9\u30c8\u306e line_height \u5c5e\u6027": [[215, "line-height"]], "line_height \u5c5e\u6027\u306eAPI": [[215, "line-height-api"]], "\u30c6\u30ad\u30b9\u30c8\u306e underline \u5c5e\u6027": [[216, "underline"]], "underline \u5c5e\u6027\u306eAPI": [[216, "underline-api"]], "TimeDelta \u30af\u30e9\u30b9": [[217, "timedelta"], [146, "timedelta"]], "days \u5c5e\u6027\u306eAPI": [[217, "days-api"], [218, "days-api"]], "total_seconds \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[217, "total-seconds-api"], [219, "total-seconds-api"]], "TimeDelta \u30af\u30e9\u30b9\u306e days \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[218, "timedelta-days"]], "TimeDelta \u30af\u30e9\u30b9\u306e total_seconds \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[219, "timedelta-total-seconds"]], "Timer \u30af\u30e9\u30b9": [[220, "timer"]], "Timer \u30af\u30e9\u30b9\u306e\u6982\u8981": [[220, "id1"]], "Timer \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[220, "timer-api"], [222, "timer-api"], [224, "timer-api"]], "Timer \u30af\u30e9\u30b9\u306e timer_complete \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[221, "timer-timer-complete"]], "timer_complete API": [[221, "timer-complete-api"]], "Timer \u30af\u30e9\u30b9\u306e delay \u8a2d\u5b9a": [[222, "timer-delay"]], "\u5f15\u6570\u306e\u6982\u8981": [[222, "id1"], [224, "id1"], [233, "id1"]], "delay \u5f15\u6570\u306bFPS\u306eenum\u306e\u5024\u3092\u8a2d\u5b9a\u3059\u308b": [[222, "delay-fpsenum"]], "delay \u5c5e\u6027\u306eAPI": [[222, "delay-api"]], "TimerEvent \u30af\u30e9\u30b9": [[223, "timerevent"]], "this \u5c5e\u6027": [[223, "this"]], "TimerEvent \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[223, "timerevent-api"]], "Timer \u30af\u30e9\u30b9\u306e repeat_count \u8a2d\u5b9a": [[224, "timer-repeat-count"]], "repeat_count \u5c5e\u6027\u306eAPI": [[224, "repeat-count-api"]], "Timer \u30af\u30e9\u30b9\u306e reset \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[225, "timer-reset"]], "reset API": [[225, "reset-api"]], "Timer \u30af\u30e9\u30b9\u306e start \u3068 stop \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[226, "timer-start-stop"]], "stop API": [[226, "stop-api"]], "to_string \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[227, "to-string"]], "to_string \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[227, "to-string-api"]], "trace \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[228, "trace"]], "print\u95a2\u6570\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[228, "print"]], "trace API": [[228, "trace-api"]], "Triangle \u30af\u30e9\u30b9": [[229, "triangle"]], "draw_triangle \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u7279\u8a18\u4e8b\u9805": [[229, "draw-triangle"]], "x1\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[229, "x1"]], "y1\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[229, "y1"]], "x2\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[229, "x2"]], "y2\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[229, "y2"]], "x3\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[229, "x3"]], "y3\u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[229, "y3"]], "Triangle \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[229, "triangle-api"]], "x1 \u5c5e\u6027\u306eAPI": [[229, "x1-api"]], "y1 \u5c5e\u6027\u306eAPI": [[229, "y1-api"]], "x2 \u5c5e\u6027\u306eAPI": [[229, "x2-api"]], "y2 \u5c5e\u6027\u306eAPI": [[229, "y2-api"]], "x3 \u5c5e\u6027\u306eAPI": [[229, "x3-api"]], "y3 \u5c5e\u6027\u306eAPI": [[229, "y3-api"]], "True_ \u3068 False_ \u306e\u5404\u5b9a\u6570": [[230, "true-false"]], "\u5404\u5b9a\u6570\u306e\u6982\u8981": [[230, "id1"]], "unbind_enter_frame \u3068 unbind_enter_frame_all \u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[231, "unbind-enter-frame-unbind-enter-frame-all"]], "unbind_enter_frame \u306eAPI": [[231, "unbind-enter-frame-api"]], "unbind_enter_frame_all \u306eAPI": [[231, "unbind-enter-frame-all-api"]], "unset_debug_mode \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[232, "unset-debug-mode"]], "unset_debug_mode API": [[232, "unset-debug-mode-api"]], "variable_name_suffix \u306e\u5f15\u6570\u8a2d\u5b9a": [[233, "variable-name-suffix"]], "apysc \u30e9\u30a4\u30d6\u30e9\u30ea\u304c\u73fe\u5728\u306e\u5b9f\u88c5\u3067\u3067\u304d\u308b\u3053\u3068": [[234, "apysc"]], "Python\u3092\u4f7f\u3063\u3066\u66f8\u304d\u3001\u305d\u308c\u3092HTML\u3078\u51fa\u529b\u30fb\u3082\u3057\u304f\u306fJupyter\u4e0a\u3067\u5229\u7528\u3059\u308b": [[234, "pythonhtmljupyter"]], "\u69d8\u3005\u306a\u7a2e\u985e\u306e\u30d9\u30af\u30bf\u30fc\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u63cf\u753b": [[234, "id1"]], "\u5404\u7a2e\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a": [[234, "id2"]], "\u30bf\u30a4\u30de\u30fc\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u3068\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[234, "id3"]], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u3088\u308b\u5404\u5c5e\u6027\u306e\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[234, "id4"]], "\u4f55\u6545 apysc \u30e9\u30a4\u30d6\u30e9\u30ea\u3067\u306fPython\u306e\u30d3\u30eb\u30c8\u30a4\u30f3\u306e\u30c7\u30fc\u30bf\u578b\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u306e\u304b": [[235, "apysc-python"]], "apysc \u3067\u306fPython\u3092JavaScript\u3078\u3068\u5909\u63db\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u3001\u5909\u6570\u306e\u5909\u5316\u3092\u8ffd\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": [[235, "apysc-pythonjavascript"]], "get_bounds \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[109, "get-bounds"]], "get_bounds \u30e1\u30bd\u30c3\u30c9\u306eAPI": [[109, "get-bounds-api"], [183, "get-bounds-api"]], "RectangleGeom \u30af\u30e9\u30b9": [[183, "rectanglegeom"]], "\u5404\u5c5e\u6027\u306e\u5ea7\u6a19": [[183, "id3"]], "RectangleGeom \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[183, "rectanglegeom-api"]], "RectangleGeom \u30af\u30e9\u30b9\u306e left_x \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-left-x-api"]], "RectangleGeom \u30af\u30e9\u30b9\u306e center_x \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-center-x-api"]], "RectangleGeom \u30af\u30e9\u30b9\u306e right_x \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-right-x-api"]], "RectangleGeom \u30af\u30e9\u30b9\u306e top_y \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-top-y-api"]], "RectangleGeom \u30af\u30e9\u30b9\u306e center_y \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-center-y-api"]], "RectangleGeom \u30af\u30e9\u30b9\u306e bottom_y \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-bottom-y-api"]], "RectangleGeom \u30af\u30e9\u30b9\u306e width \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-width-api"]], "RectangleGeom \u306e height \u5c5e\u6027\u306eAPI": [[183, "rectanglegeom-height-api"]], "SvgText \u30af\u30e9\u30b9": [[206, "svgtext"]], "\u30c6\u30ad\u30b9\u30c8\u306eY\u5ea7\u6a19\u306e\u57fa\u6e96\u70b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[206, "y"]], "text \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[206, "text"], [207, "text"]], "font_size \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[206, "font-size"], [207, "font-size"]], "font_family \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[206, "font-family"], [207, "font-family"]], "leading \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[206, "leading"]], "align \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[206, "align"]], "bold \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[206, "bold"], [207, "bold"]], "italic \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[206, "italic"], [207, "italic"]], "\u62e1\u7e2e\u95a2\u4fc2\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[206, "id4"]], "SvgText \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[206, "svgtext-api"]], "SvgTextSpan \u30af\u30e9\u30b9": [[207, "svgtextspan"]], "\u6539\u884c\u306b\u5bfe\u3059\u308b\u7279\u8a18\u4e8b\u9805": [[207, "id3"]], "delta_x \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[207, "delta-x"]], "delta_y \u5c5e\u6027\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u4f8b": [[207, "delta-y"]], "SvgTextSpan \u30af\u30e9\u30b9\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306eAPI": [[207, "svgtextspan-api"]], "SvgText \u30af\u30e9\u30b9\u306e create_with_svg_text_spans \u30af\u30e9\u30b9\u30e1\u30bd\u30c3\u30c9\u306eAPI": [[207, "svgtext-create-with-svg-text-spans-api"]], "enter_frame \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[99, "enter-frame"]], "Timer \u30af\u30e9\u30b9\u3068 enter_frame \u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306e\u3069\u3061\u3089\u3092\u4f7f\u3046\u3079\u304d\u304b": [[99, "timer-enter-frame"]], "enter_frame \u306eAPI": [[99, "enter-frame-api"]], "apysc \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8": [[146, "apysc"]], "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u95a2\u9023\u30ea\u30f3\u30af": [[146, "id1"]], "\u30b3\u30f3\u30c6\u30ca\u30fc\u306e\u5404\u30af\u30e9\u30b9": [[146, "id3"]], "\u51fa\u529b\u51e6\u7406": [[146, "id4"]], "\u5b50\u8981\u7d20\u95a2\u4fc2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[146, "id5"]], "apysc\u306e\u57fa\u672c\u7684\u306a\u5404\u30c7\u30fc\u30bf\u30af\u30e9\u30b9": [[146, "id6"]], "Boolean \u30af\u30e9\u30b9\u3068\u5404\u5b9a\u6570\u5024": [[146, "boolean"]], "Color \u30af\u30e9\u30b9\u3068\u5404\u5b9a\u6570": [[146, "color"]], "DisplayObject \u3068 GraphicsBase \u306e\u5404\u30af\u30e9\u30b9": [[146, "displayobject-graphicsbase"]], "\u5404\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u306e\u30af\u30e9\u30b9": [[146, "id7"]], "\u30c6\u30ad\u30b9\u30c8": [[146, "id8"]], "SVG \u30c6\u30ad\u30b9\u30c8": [[146, "svg"]], "\u5ea7\u6a19\u30fb\u30b5\u30a4\u30ba\u7b49\u306e\u30c7\u30fc\u30bf\u306e\u5404\u30af\u30e9\u30b9": [[146, "id9"]], "\u30de\u30b9\u30af": [[146, "id10"]], "\u30a4\u30d9\u30f3\u30c8\u306e\u5171\u901a\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[146, "id11"]], "MouseEvent \u30af\u30e9\u30b9\u3068\u30de\u30a6\u30b9\u30a4\u30d9\u30f3\u30c8\u306e\u8a2d\u5b9a": [[146, "mouseevent"]], "\u6761\u4ef6\u5206\u5c90\u306e\u5236\u5fa1": [[146, "id12"]], "\u30eb\u30fc\u30d7": [[146, "id13"]], "\u30bf\u30a4\u30de\u30fc\u3068enter-frame": [[146, "enter-frame"]], "\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3": [[146, "id14"]], "\u6570\u5b66": [[146, "id15"]], "\u305d\u306e\u4ed6\u306e\u64cd\u4f5c\u95a2\u4fc2\u306e\u5404\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [[146, "id16"]], "\u30c7\u30d0\u30c3\u30b0": [[146, "id17"]], "\u30c6\u30b9\u30c8": [[146, "id18"]], "\u30de\u30c6\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30f3": [[146, "id19"]]}, "indexentries": {}}) \ No newline at end of file diff --git a/docs/jp/static/array_last_value_basic_usage_1/index.html b/docs/jp/static/array_last_value_basic_usage_1/index.html index 1b0823b182..1d9055ae09 100644 --- a/docs/jp/static/array_last_value_basic_usage_1/index.html +++ b/docs/jp/static/array_last_value_basic_usage_1/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/array_last_value_basic_usage_2/index.html b/docs/jp/static/array_last_value_basic_usage_2/index.html index fc7e9c77fb..b758219499 100644 --- a/docs/jp/static/array_last_value_basic_usage_2/index.html +++ b/docs/jp/static/array_last_value_basic_usage_2/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_basic_usage/index.html b/docs/jp/static/circle_basic_usage/index.html index 09ea4fa203..8ede519982 100644 --- a/docs/jp/static/circle_basic_usage/index.html +++ b/docs/jp/static/circle_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_fill_alpha/index.html b/docs/jp/static/circle_fill_alpha/index.html index 1122f316b8..bc15640608 100644 --- a/docs/jp/static/circle_fill_alpha/index.html +++ b/docs/jp/static/circle_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_fill_color/index.html b/docs/jp/static/circle_fill_color/index.html index 6cd58e2df0..a0f1b37473 100644 --- a/docs/jp/static/circle_fill_color/index.html +++ b/docs/jp/static/circle_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_flip_x/index.html b/docs/jp/static/circle_flip_x/index.html index 0885e0773f..fdc4a6978a 100644 --- a/docs/jp/static/circle_flip_x/index.html +++ b/docs/jp/static/circle_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_flip_y/index.html b/docs/jp/static/circle_flip_y/index.html index dfaa8a4d23..183b7cbfb1 100644 --- a/docs/jp/static/circle_flip_y/index.html +++ b/docs/jp/static/circle_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_line_alpha/index.html b/docs/jp/static/circle_line_alpha/index.html index d2fe60df16..b215b66bda 100644 --- a/docs/jp/static/circle_line_alpha/index.html +++ b/docs/jp/static/circle_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_line_color/index.html b/docs/jp/static/circle_line_color/index.html index 2690a7dcef..63164e74bb 100644 --- a/docs/jp/static/circle_line_color/index.html +++ b/docs/jp/static/circle_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_line_dash_dot_setting/index.html b/docs/jp/static/circle_line_dash_dot_setting/index.html index fc56c0326e..d7a977bee3 100644 --- a/docs/jp/static/circle_line_dash_dot_setting/index.html +++ b/docs/jp/static/circle_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_line_dash_setting/index.html b/docs/jp/static/circle_line_dash_setting/index.html index 9e02e349b8..bfa5f50aa6 100644 --- a/docs/jp/static/circle_line_dash_setting/index.html +++ b/docs/jp/static/circle_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_line_dot_setting/index.html b/docs/jp/static/circle_line_dot_setting/index.html index f8901afb5e..8a15257fb2 100644 --- a/docs/jp/static/circle_line_dot_setting/index.html +++ b/docs/jp/static/circle_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_line_round_dot_setting/index.html b/docs/jp/static/circle_line_round_dot_setting/index.html index 949ed4f8f5..344500a3e7 100644 --- a/docs/jp/static/circle_line_round_dot_setting/index.html +++ b/docs/jp/static/circle_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_line_thickness/index.html b/docs/jp/static/circle_line_thickness/index.html index d75db642bf..b6f841477f 100644 --- a/docs/jp/static/circle_line_thickness/index.html +++ b/docs/jp/static/circle_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_radius/index.html b/docs/jp/static/circle_radius/index.html index 34944943a9..cc3a92e530 100644 --- a/docs/jp/static/circle_radius/index.html +++ b/docs/jp/static/circle_radius/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_rotation_around_center/index.html b/docs/jp/static/circle_rotation_around_center/index.html index 1bb6449637..709c99e945 100644 --- a/docs/jp/static/circle_rotation_around_center/index.html +++ b/docs/jp/static/circle_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_scale_x_from_center/index.html b/docs/jp/static/circle_scale_x_from_center/index.html index 861983d2a3..970a32afba 100644 --- a/docs/jp/static/circle_scale_x_from_center/index.html +++ b/docs/jp/static/circle_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_scale_x_from_point/index.html b/docs/jp/static/circle_scale_x_from_point/index.html index e379fbf85e..5bf980f794 100644 --- a/docs/jp/static/circle_scale_x_from_point/index.html +++ b/docs/jp/static/circle_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_scale_y_from_center/index.html b/docs/jp/static/circle_scale_y_from_center/index.html index 0367fad457..e33d4fa53e 100644 --- a/docs/jp/static/circle_scale_y_from_center/index.html +++ b/docs/jp/static/circle_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_scale_y_from_point/index.html b/docs/jp/static/circle_scale_y_from_point/index.html index 9c6a926cc0..734fc4cf09 100644 --- a/docs/jp/static/circle_scale_y_from_point/index.html +++ b/docs/jp/static/circle_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_set_rotation_around_point/index.html b/docs/jp/static/circle_set_rotation_around_point/index.html index 15cd74b0c0..d5cee024be 100644 --- a/docs/jp/static/circle_set_rotation_around_point/index.html +++ b/docs/jp/static/circle_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_skew_x/index.html b/docs/jp/static/circle_skew_x/index.html index 69aaecb99c..6a3de8338c 100644 --- a/docs/jp/static/circle_skew_x/index.html +++ b/docs/jp/static/circle_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_skew_y/index.html b/docs/jp/static/circle_skew_y/index.html index 31c5aeec79..913d75c098 100644 --- a/docs/jp/static/circle_skew_y/index.html +++ b/docs/jp/static/circle_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_x/index.html b/docs/jp/static/circle_x/index.html index 39771f0cc1..582ad94e40 100644 --- a/docs/jp/static/circle_x/index.html +++ b/docs/jp/static/circle_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/circle_y/index.html b/docs/jp/static/circle_y/index.html index 721c68a451..8f4ef45837 100644 --- a/docs/jp/static/circle_y/index.html +++ b/docs/jp/static/circle_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/datetime_now_basic_usage/index.html b/docs/jp/static/datetime_now_basic_usage/index.html index 80f01cdf2c..0f6de3b7d9 100644 --- a/docs/jp/static/datetime_now_basic_usage/index.html +++ b/docs/jp/static/datetime_now_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/display_object_visible_basic_usage/index.html b/docs/jp/static/display_object_visible_basic_usage/index.html index e5add41d6f..e212c80f6b 100644 --- a/docs/jp/static/display_object_visible_basic_usage/index.html +++ b/docs/jp/static/display_object_visible_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/display_object_x_and_y_augmented_assignment/index.html b/docs/jp/static/display_object_x_and_y_augmented_assignment/index.html index 8a30f54de2..66c53df203 100644 --- a/docs/jp/static/display_object_x_and_y_augmented_assignment/index.html +++ b/docs/jp/static/display_object_x_and_y_augmented_assignment/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/display_object_x_and_y_basic_usage/index.html b/docs/jp/static/display_object_x_and_y_basic_usage/index.html index 27434d2ad8..808c17de07 100644 --- a/docs/jp/static/display_object_x_and_y_basic_usage/index.html +++ b/docs/jp/static/display_object_x_and_y_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_basic_usage/index.html b/docs/jp/static/ellipse_basic_usage/index.html index c26d6399ed..da8f6e7005 100644 --- a/docs/jp/static/ellipse_basic_usage/index.html +++ b/docs/jp/static/ellipse_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_fill_alpha/index.html b/docs/jp/static/ellipse_fill_alpha/index.html index 8f87fbd51d..7545d91f8f 100644 --- a/docs/jp/static/ellipse_fill_alpha/index.html +++ b/docs/jp/static/ellipse_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_fill_color/index.html b/docs/jp/static/ellipse_fill_color/index.html index 6da05acdcb..b81f10bc8e 100644 --- a/docs/jp/static/ellipse_fill_color/index.html +++ b/docs/jp/static/ellipse_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_flip_x/index.html b/docs/jp/static/ellipse_flip_x/index.html index 5eeffd6e98..e2ddd37ae1 100644 --- a/docs/jp/static/ellipse_flip_x/index.html +++ b/docs/jp/static/ellipse_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_flip_y/index.html b/docs/jp/static/ellipse_flip_y/index.html index 07cba794ab..c6bb569b04 100644 --- a/docs/jp/static/ellipse_flip_y/index.html +++ b/docs/jp/static/ellipse_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_height/index.html b/docs/jp/static/ellipse_height/index.html index f9a5eda640..084ef4d0ee 100644 --- a/docs/jp/static/ellipse_height/index.html +++ b/docs/jp/static/ellipse_height/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_line_alpha/index.html b/docs/jp/static/ellipse_line_alpha/index.html index 90a98366ab..2e0f38a024 100644 --- a/docs/jp/static/ellipse_line_alpha/index.html +++ b/docs/jp/static/ellipse_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_line_color/index.html b/docs/jp/static/ellipse_line_color/index.html index d70d99cdbd..119c45ca01 100644 --- a/docs/jp/static/ellipse_line_color/index.html +++ b/docs/jp/static/ellipse_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_line_dash_dot_setting/index.html b/docs/jp/static/ellipse_line_dash_dot_setting/index.html index 6194ec1c36..6a8ef17ed9 100644 --- a/docs/jp/static/ellipse_line_dash_dot_setting/index.html +++ b/docs/jp/static/ellipse_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_line_dash_setting/index.html b/docs/jp/static/ellipse_line_dash_setting/index.html index 1890d22a99..fbab9156e7 100644 --- a/docs/jp/static/ellipse_line_dash_setting/index.html +++ b/docs/jp/static/ellipse_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_line_dot_setting/index.html b/docs/jp/static/ellipse_line_dot_setting/index.html index 98ab705dc0..542cc5d020 100644 --- a/docs/jp/static/ellipse_line_dot_setting/index.html +++ b/docs/jp/static/ellipse_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_line_round_dot_setting/index.html b/docs/jp/static/ellipse_line_round_dot_setting/index.html index 16ee29b1ea..0891904bbf 100644 --- a/docs/jp/static/ellipse_line_round_dot_setting/index.html +++ b/docs/jp/static/ellipse_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_line_thickness/index.html b/docs/jp/static/ellipse_line_thickness/index.html index 5af0e91bd0..817ba802e9 100644 --- a/docs/jp/static/ellipse_line_thickness/index.html +++ b/docs/jp/static/ellipse_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_rotation_around_center/index.html b/docs/jp/static/ellipse_rotation_around_center/index.html index b4e76803da..2191bb6e13 100644 --- a/docs/jp/static/ellipse_rotation_around_center/index.html +++ b/docs/jp/static/ellipse_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_scale_x_from_center/index.html b/docs/jp/static/ellipse_scale_x_from_center/index.html index 5511d1b06f..7db865cf7b 100644 --- a/docs/jp/static/ellipse_scale_x_from_center/index.html +++ b/docs/jp/static/ellipse_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_scale_x_from_point/index.html b/docs/jp/static/ellipse_scale_x_from_point/index.html index f061cf8552..24b9c93ac0 100644 --- a/docs/jp/static/ellipse_scale_x_from_point/index.html +++ b/docs/jp/static/ellipse_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_scale_y_from_center/index.html b/docs/jp/static/ellipse_scale_y_from_center/index.html index 585b176607..6d4ccada0b 100644 --- a/docs/jp/static/ellipse_scale_y_from_center/index.html +++ b/docs/jp/static/ellipse_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_scale_y_from_point/index.html b/docs/jp/static/ellipse_scale_y_from_point/index.html index 2c357e8b3f..07e0409987 100644 --- a/docs/jp/static/ellipse_scale_y_from_point/index.html +++ b/docs/jp/static/ellipse_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_set_rotation_around_point/index.html b/docs/jp/static/ellipse_set_rotation_around_point/index.html index b90645feda..0499c301f1 100644 --- a/docs/jp/static/ellipse_set_rotation_around_point/index.html +++ b/docs/jp/static/ellipse_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_skew_x/index.html b/docs/jp/static/ellipse_skew_x/index.html index e23228acc6..0f2f6fea89 100644 --- a/docs/jp/static/ellipse_skew_x/index.html +++ b/docs/jp/static/ellipse_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_skew_y/index.html b/docs/jp/static/ellipse_skew_y/index.html index d0c2461fe7..5801b2a34c 100644 --- a/docs/jp/static/ellipse_skew_y/index.html +++ b/docs/jp/static/ellipse_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_width/index.html b/docs/jp/static/ellipse_width/index.html index abe26c991d..92176d92df 100644 --- a/docs/jp/static/ellipse_width/index.html +++ b/docs/jp/static/ellipse_width/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_x/index.html b/docs/jp/static/ellipse_x/index.html index a2de27f5cc..e6f1d0311f 100644 --- a/docs/jp/static/ellipse_x/index.html +++ b/docs/jp/static/ellipse_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/ellipse_y/index.html b/docs/jp/static/ellipse_y/index.html index 915eb04ec1..dc2f28ab97 100644 --- a/docs/jp/static/ellipse_y/index.html +++ b/docs/jp/static/ellipse_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/enter_frame_basic_usage/index.html b/docs/jp/static/enter_frame_basic_usage/index.html index 8e660b6ffe..e2e41b2cee 100644 --- a/docs/jp/static/enter_frame_basic_usage/index.html +++ b/docs/jp/static/enter_frame_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_base_fill_alpha_basic_usage/index.html b/docs/jp/static/graphics_base_fill_alpha_basic_usage/index.html index fa6852fa10..f717016f2e 100644 --- a/docs/jp/static/graphics_base_fill_alpha_basic_usage/index.html +++ b/docs/jp/static/graphics_base_fill_alpha_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_base_fill_color_basic_usage/index.html b/docs/jp/static/graphics_base_fill_color_basic_usage/index.html index 5a5851fb99..59baa580f8 100644 --- a/docs/jp/static/graphics_base_fill_color_basic_usage/index.html +++ b/docs/jp/static/graphics_base_fill_color_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_base_flip_x_basic_usage/index.html b/docs/jp/static/graphics_base_flip_x_basic_usage/index.html index 26a79c73d2..00844246c2 100644 --- a/docs/jp/static/graphics_base_flip_x_basic_usage/index.html +++ b/docs/jp/static/graphics_base_flip_x_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_base_line_alpha_basic_usage/index.html b/docs/jp/static/graphics_base_line_alpha_basic_usage/index.html index 96a2f31003..18f958ec88 100644 --- a/docs/jp/static/graphics_base_line_alpha_basic_usage/index.html +++ b/docs/jp/static/graphics_base_line_alpha_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_base_line_color_basic_usage/index.html b/docs/jp/static/graphics_base_line_color_basic_usage/index.html index a7c46bf1b5..5a44497b31 100644 --- a/docs/jp/static/graphics_base_line_color_basic_usage/index.html +++ b/docs/jp/static/graphics_base_line_color_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_base_line_thickness_basic_usage/index.html b/docs/jp/static/graphics_base_line_thickness_basic_usage/index.html index 956d235ee3..11047f7e3b 100644 --- a/docs/jp/static/graphics_base_line_thickness_basic_usage/index.html +++ b/docs/jp/static/graphics_base_line_thickness_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_base_rotation_around_center_basic_usage/index.html b/docs/jp/static/graphics_base_rotation_around_center_basic_usage/index.html index 8370c4050c..651863c5e4 100644 --- a/docs/jp/static/graphics_base_rotation_around_center_basic_usage/index.html +++ b/docs/jp/static/graphics_base_rotation_around_center_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_base_rotation_around_point_basic_usage/index.html b/docs/jp/static/graphics_base_rotation_around_point_basic_usage/index.html index 29b3ee06ae..2aceb95624 100644 --- a/docs/jp/static/graphics_base_rotation_around_point_basic_usage/index.html +++ b/docs/jp/static/graphics_base_rotation_around_point_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_base_scale_from_center_basic_usage_1/index.html b/docs/jp/static/graphics_base_scale_from_center_basic_usage_1/index.html index 0c5ab14039..0f8c257479 100644 --- a/docs/jp/static/graphics_base_scale_from_center_basic_usage_1/index.html +++ b/docs/jp/static/graphics_base_scale_from_center_basic_usage_1/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_base_scale_from_center_basic_usage_2/index.html b/docs/jp/static/graphics_base_scale_from_center_basic_usage_2/index.html index 290727cc78..d800dff1cf 100644 --- a/docs/jp/static/graphics_base_scale_from_center_basic_usage_2/index.html +++ b/docs/jp/static/graphics_base_scale_from_center_basic_usage_2/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_base_scale_from_center_basic_usage_3/index.html b/docs/jp/static/graphics_base_scale_from_center_basic_usage_3/index.html index a608fd2672..7d795b494e 100644 --- a/docs/jp/static/graphics_base_scale_from_center_basic_usage_3/index.html +++ b/docs/jp/static/graphics_base_scale_from_center_basic_usage_3/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_base_scale_from_point_basic_usage_x/index.html b/docs/jp/static/graphics_base_scale_from_point_basic_usage_x/index.html index 89e55e31cf..c0518c2a36 100644 --- a/docs/jp/static/graphics_base_scale_from_point_basic_usage_x/index.html +++ b/docs/jp/static/graphics_base_scale_from_point_basic_usage_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_base_scale_from_point_basic_usage_y/index.html b/docs/jp/static/graphics_base_scale_from_point_basic_usage_y/index.html index 82d33236eb..2d93ffce60 100644 --- a/docs/jp/static/graphics_base_scale_from_point_basic_usage_y/index.html +++ b/docs/jp/static/graphics_base_scale_from_point_basic_usage_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_base_skew_x_basic_usage/index.html b/docs/jp/static/graphics_base_skew_x_basic_usage/index.html index 4219f7ab94..8bcf54bc33 100644 --- a/docs/jp/static/graphics_base_skew_x_basic_usage/index.html +++ b/docs/jp/static/graphics_base_skew_x_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_base_skew_y_incremental_basic_usage/index.html b/docs/jp/static/graphics_base_skew_y_incremental_basic_usage/index.html index 35b6438962..aab747779a 100644 --- a/docs/jp/static/graphics_base_skew_y_incremental_basic_usage/index.html +++ b/docs/jp/static/graphics_base_skew_y_incremental_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_begin_fill_acceptable_color_settings/index.html b/docs/jp/static/graphics_begin_fill_acceptable_color_settings/index.html index f33dff454d..4386e56dda 100644 --- a/docs/jp/static/graphics_begin_fill_acceptable_color_settings/index.html +++ b/docs/jp/static/graphics_begin_fill_acceptable_color_settings/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_begin_fill_alpha_setting/index.html b/docs/jp/static/graphics_begin_fill_alpha_setting/index.html index 7fe4c0bb1e..890df7b477 100644 --- a/docs/jp/static/graphics_begin_fill_alpha_setting/index.html +++ b/docs/jp/static/graphics_begin_fill_alpha_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_begin_fill_basic_usage/index.html b/docs/jp/static/graphics_begin_fill_basic_usage/index.html index 3d820c4327..e0b7c60334 100644 --- a/docs/jp/static/graphics_begin_fill_basic_usage/index.html +++ b/docs/jp/static/graphics_begin_fill_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_begin_fill_color_setting_clear/index.html b/docs/jp/static/graphics_begin_fill_color_setting_clear/index.html index 71c065a131..f552cd2113 100644 --- a/docs/jp/static/graphics_begin_fill_color_setting_clear/index.html +++ b/docs/jp/static/graphics_begin_fill_color_setting_clear/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_begin_fill_fill_color/index.html b/docs/jp/static/graphics_begin_fill_fill_color/index.html index 77b9ea9c6b..67227c9f4f 100644 --- a/docs/jp/static/graphics_begin_fill_fill_color/index.html +++ b/docs/jp/static/graphics_begin_fill_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_circle_basic_usage/index.html b/docs/jp/static/graphics_draw_circle_basic_usage/index.html index dd13422d03..713db9b8f4 100644 --- a/docs/jp/static/graphics_draw_circle_basic_usage/index.html +++ b/docs/jp/static/graphics_draw_circle_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_circle_return_value/index.html b/docs/jp/static/graphics_draw_circle_return_value/index.html index 764a7232fa..b6a05a27a6 100644 --- a/docs/jp/static/graphics_draw_circle_return_value/index.html +++ b/docs/jp/static/graphics_draw_circle_return_value/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_dash_dotted_line_basic_usage/index.html b/docs/jp/static/graphics_draw_dash_dotted_line_basic_usage/index.html index a7d96bc21d..3a11314895 100644 --- a/docs/jp/static/graphics_draw_dash_dotted_line_basic_usage/index.html +++ b/docs/jp/static/graphics_draw_dash_dotted_line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_dashed_line_basic_usage/index.html b/docs/jp/static/graphics_draw_dashed_line_basic_usage/index.html index 1cb063dc70..0e0079c881 100644 --- a/docs/jp/static/graphics_draw_dashed_line_basic_usage/index.html +++ b/docs/jp/static/graphics_draw_dashed_line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_dotted_line_basic_usage/index.html b/docs/jp/static/graphics_draw_dotted_line_basic_usage/index.html index 158781cee4..1b7d8ad52a 100644 --- a/docs/jp/static/graphics_draw_dotted_line_basic_usage/index.html +++ b/docs/jp/static/graphics_draw_dotted_line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_ellipse_basic_usage/index.html b/docs/jp/static/graphics_draw_ellipse_basic_usage/index.html index c0beb976f3..93bfd99cc5 100644 --- a/docs/jp/static/graphics_draw_ellipse_basic_usage/index.html +++ b/docs/jp/static/graphics_draw_ellipse_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_ellipse_return_value/index.html b/docs/jp/static/graphics_draw_ellipse_return_value/index.html index d8430211e4..5c87778bb5 100644 --- a/docs/jp/static/graphics_draw_ellipse_return_value/index.html +++ b/docs/jp/static/graphics_draw_ellipse_return_value/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_line_basic_usage/index.html b/docs/jp/static/graphics_draw_line_basic_usage/index.html index e04f93de08..dcf262636c 100644 --- a/docs/jp/static/graphics_draw_line_basic_usage/index.html +++ b/docs/jp/static/graphics_draw_line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_line_ignored_dot_setting/index.html b/docs/jp/static/graphics_draw_line_ignored_dot_setting/index.html index a0a5decd49..0a47cbf852 100644 --- a/docs/jp/static/graphics_draw_line_ignored_dot_setting/index.html +++ b/docs/jp/static/graphics_draw_line_ignored_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_line_line_instance/index.html b/docs/jp/static/graphics_draw_line_line_instance/index.html index 5034fdbf5f..6e6bddd1e4 100644 --- a/docs/jp/static/graphics_draw_line_line_instance/index.html +++ b/docs/jp/static/graphics_draw_line_line_instance/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_path_basic_usage/index.html b/docs/jp/static/graphics_draw_path_basic_usage/index.html index 572cd037c8..9660d6c078 100644 --- a/docs/jp/static/graphics_draw_path_basic_usage/index.html +++ b/docs/jp/static/graphics_draw_path_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_polygon_append_line_point/index.html b/docs/jp/static/graphics_draw_polygon_append_line_point/index.html index 866feb09b1..024deb8315 100644 --- a/docs/jp/static/graphics_draw_polygon_append_line_point/index.html +++ b/docs/jp/static/graphics_draw_polygon_append_line_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_polygon_basic_usage/index.html b/docs/jp/static/graphics_draw_polygon_basic_usage/index.html index ce64438fb1..775c432909 100644 --- a/docs/jp/static/graphics_draw_polygon_basic_usage/index.html +++ b/docs/jp/static/graphics_draw_polygon_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_polygon_line_to_difference_1/index.html b/docs/jp/static/graphics_draw_polygon_line_to_difference_1/index.html index 211e96ab13..5673bd9f49 100644 --- a/docs/jp/static/graphics_draw_polygon_line_to_difference_1/index.html +++ b/docs/jp/static/graphics_draw_polygon_line_to_difference_1/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_polygon_line_to_difference_2/index.html b/docs/jp/static/graphics_draw_polygon_line_to_difference_2/index.html index 55cc078abf..bd58b8736a 100644 --- a/docs/jp/static/graphics_draw_polygon_line_to_difference_2/index.html +++ b/docs/jp/static/graphics_draw_polygon_line_to_difference_2/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_rect_basic_usage/index.html b/docs/jp/static/graphics_draw_rect_basic_usage/index.html index bd2a66e75e..813f22af38 100644 --- a/docs/jp/static/graphics_draw_rect_basic_usage/index.html +++ b/docs/jp/static/graphics_draw_rect_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_rect_basic_usage_skipped_begin_fill/index.html b/docs/jp/static/graphics_draw_rect_basic_usage_skipped_begin_fill/index.html index efb8b22706..b5b93c3134 100644 --- a/docs/jp/static/graphics_draw_rect_basic_usage_skipped_begin_fill/index.html +++ b/docs/jp/static/graphics_draw_rect_basic_usage_skipped_begin_fill/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_rect_rectangle/index.html b/docs/jp/static/graphics_draw_rect_rectangle/index.html index a54c887729..9f2f957389 100644 --- a/docs/jp/static/graphics_draw_rect_rectangle/index.html +++ b/docs/jp/static/graphics_draw_rect_rectangle/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_round_dotted_line_basic_usage/index.html b/docs/jp/static/graphics_draw_round_dotted_line_basic_usage/index.html index 8ccf3797e2..e0c12ebc4a 100644 --- a/docs/jp/static/graphics_draw_round_dotted_line_basic_usage/index.html +++ b/docs/jp/static/graphics_draw_round_dotted_line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_round_dotted_line_notes/index.html b/docs/jp/static/graphics_draw_round_dotted_line_notes/index.html index fcbbe60fcf..93bb57174b 100644 --- a/docs/jp/static/graphics_draw_round_dotted_line_notes/index.html +++ b/docs/jp/static/graphics_draw_round_dotted_line_notes/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_round_rect_basic_usage/index.html b/docs/jp/static/graphics_draw_round_rect_basic_usage/index.html index cab5d807b8..8050e5a9d8 100644 --- a/docs/jp/static/graphics_draw_round_rect_basic_usage/index.html +++ b/docs/jp/static/graphics_draw_round_rect_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_round_rect_return_value/index.html b/docs/jp/static/graphics_draw_round_rect_return_value/index.html index 4394c94367..3559561da2 100644 --- a/docs/jp/static/graphics_draw_round_rect_return_value/index.html +++ b/docs/jp/static/graphics_draw_round_rect_return_value/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_triangle_basic_usage/index.html b/docs/jp/static/graphics_draw_triangle_basic_usage/index.html index 49266aa8d4..b779e7c7ab 100644 --- a/docs/jp/static/graphics_draw_triangle_basic_usage/index.html +++ b/docs/jp/static/graphics_draw_triangle_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_draw_triangle_triangle_instance/index.html b/docs/jp/static/graphics_draw_triangle_triangle_instance/index.html index 25ac63d6dc..b93ff94c9c 100644 --- a/docs/jp/static/graphics_draw_triangle_triangle_instance/index.html +++ b/docs/jp/static/graphics_draw_triangle_triangle_instance/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_line_style_alpha/index.html b/docs/jp/static/graphics_line_style_alpha/index.html index bf965b4eed..c156420f6a 100644 --- a/docs/jp/static/graphics_line_style_alpha/index.html +++ b/docs/jp/static/graphics_line_style_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_line_style_basics/index.html b/docs/jp/static/graphics_line_style_basics/index.html index 4c838ded06..af484833ed 100644 --- a/docs/jp/static/graphics_line_style_basics/index.html +++ b/docs/jp/static/graphics_line_style_basics/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_line_style_caps/index.html b/docs/jp/static/graphics_line_style_caps/index.html index fe7555ee0f..ee00235363 100644 --- a/docs/jp/static/graphics_line_style_caps/index.html +++ b/docs/jp/static/graphics_line_style_caps/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_line_style_clear_line_color/index.html b/docs/jp/static/graphics_line_style_clear_line_color/index.html index 6bbb1cafeb..754d2271eb 100644 --- a/docs/jp/static/graphics_line_style_clear_line_color/index.html +++ b/docs/jp/static/graphics_line_style_clear_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_line_style_joints/index.html b/docs/jp/static/graphics_line_style_joints/index.html index 723c099ac4..f391d36dcc 100644 --- a/docs/jp/static/graphics_line_style_joints/index.html +++ b/docs/jp/static/graphics_line_style_joints/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_line_style_line_color/index.html b/docs/jp/static/graphics_line_style_line_color/index.html index 7b65e5a22a..78d18623a2 100644 --- a/docs/jp/static/graphics_line_style_line_color/index.html +++ b/docs/jp/static/graphics_line_style_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_line_style_line_color_color_code/index.html b/docs/jp/static/graphics_line_style_line_color_color_code/index.html index 870a75e99a..c2a9ca1c92 100644 --- a/docs/jp/static/graphics_line_style_line_color_color_code/index.html +++ b/docs/jp/static/graphics_line_style_line_color_color_code/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_line_style_line_dash_dot_setting/index.html b/docs/jp/static/graphics_line_style_line_dash_dot_setting/index.html index 5e358f502b..82f21454ca 100644 --- a/docs/jp/static/graphics_line_style_line_dash_dot_setting/index.html +++ b/docs/jp/static/graphics_line_style_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_line_style_line_dash_setting/index.html b/docs/jp/static/graphics_line_style_line_dash_setting/index.html index 814f4b2a92..70c23b0bf4 100644 --- a/docs/jp/static/graphics_line_style_line_dash_setting/index.html +++ b/docs/jp/static/graphics_line_style_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_line_style_line_dot_setting/index.html b/docs/jp/static/graphics_line_style_line_dot_setting/index.html index 727e96938a..ccd9910b7e 100644 --- a/docs/jp/static/graphics_line_style_line_dot_setting/index.html +++ b/docs/jp/static/graphics_line_style_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_line_style_line_dot_setting_rectangle/index.html b/docs/jp/static/graphics_line_style_line_dot_setting_rectangle/index.html index c2cc332cee..8ade6c272e 100644 --- a/docs/jp/static/graphics_line_style_line_dot_setting_rectangle/index.html +++ b/docs/jp/static/graphics_line_style_line_dot_setting_rectangle/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_line_style_line_round_dot_setting/index.html b/docs/jp/static/graphics_line_style_line_round_dot_setting/index.html index 74969888ec..f08204ddb4 100644 --- a/docs/jp/static/graphics_line_style_line_round_dot_setting/index.html +++ b/docs/jp/static/graphics_line_style_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_line_style_thickness/index.html b/docs/jp/static/graphics_line_style_thickness/index.html index 08b2b3a4f8..a47b479e18 100644 --- a/docs/jp/static/graphics_line_style_thickness/index.html +++ b/docs/jp/static/graphics_line_style_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_move_to_and_line_to_basic_usage/index.html b/docs/jp/static/graphics_move_to_and_line_to_basic_usage/index.html index a70583a4e3..99dc77b094 100644 --- a/docs/jp/static/graphics_move_to_and_line_to_basic_usage/index.html +++ b/docs/jp/static/graphics_move_to_and_line_to_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_move_to_and_line_to_multi_move_to_calling/index.html b/docs/jp/static/graphics_move_to_and_line_to_multi_move_to_calling/index.html index ad464e0c1d..9dfa34fbc5 100644 --- a/docs/jp/static/graphics_move_to_and_line_to_multi_move_to_calling/index.html +++ b/docs/jp/static/graphics_move_to_and_line_to_multi_move_to_calling/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_move_to_and_line_to_polyline/index.html b/docs/jp/static/graphics_move_to_and_line_to_polyline/index.html index e718b1562a..81604b36d8 100644 --- a/docs/jp/static/graphics_move_to_and_line_to_polyline/index.html +++ b/docs/jp/static/graphics_move_to_and_line_to_polyline/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/graphics_move_to_and_line_to_sequential_calling/index.html b/docs/jp/static/graphics_move_to_and_line_to_sequential_calling/index.html index 660b8cd751..64c4ba687d 100644 --- a/docs/jp/static/graphics_move_to_and_line_to_sequential_calling/index.html +++ b/docs/jp/static/graphics_move_to_and_line_to_sequential_calling/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_basic_usage/index.html b/docs/jp/static/line_basic_usage/index.html index fe01cde35a..e7e36e15a6 100644 --- a/docs/jp/static/line_basic_usage/index.html +++ b/docs/jp/static/line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_flip_x/index.html b/docs/jp/static/line_flip_x/index.html index 771f923bc3..ce8ad298ba 100644 --- a/docs/jp/static/line_flip_x/index.html +++ b/docs/jp/static/line_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_flip_y/index.html b/docs/jp/static/line_flip_y/index.html index e4b14c222f..cc2e8fdf23 100644 --- a/docs/jp/static/line_flip_y/index.html +++ b/docs/jp/static/line_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_line_alpha/index.html b/docs/jp/static/line_line_alpha/index.html index 76ca0b13c4..210df728f9 100644 --- a/docs/jp/static/line_line_alpha/index.html +++ b/docs/jp/static/line_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_line_color/index.html b/docs/jp/static/line_line_color/index.html index 28c6937f86..6f524c1dd9 100644 --- a/docs/jp/static/line_line_color/index.html +++ b/docs/jp/static/line_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_line_dash_dot_setting/index.html b/docs/jp/static/line_line_dash_dot_setting/index.html index 37b82eaf16..da0f036de5 100644 --- a/docs/jp/static/line_line_dash_dot_setting/index.html +++ b/docs/jp/static/line_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_line_dash_setting/index.html b/docs/jp/static/line_line_dash_setting/index.html index 90135cfd8c..9338dafd0e 100644 --- a/docs/jp/static/line_line_dash_setting/index.html +++ b/docs/jp/static/line_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_line_dot_setting/index.html b/docs/jp/static/line_line_dot_setting/index.html index 1b7855296d..e9a0558c8d 100644 --- a/docs/jp/static/line_line_dot_setting/index.html +++ b/docs/jp/static/line_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_line_round_dot_setting/index.html b/docs/jp/static/line_line_round_dot_setting/index.html index 4fc88585a7..598604a2f5 100644 --- a/docs/jp/static/line_line_round_dot_setting/index.html +++ b/docs/jp/static/line_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_line_thickness/index.html b/docs/jp/static/line_line_thickness/index.html index 4901fe9c13..e4d33a617a 100644 --- a/docs/jp/static/line_line_thickness/index.html +++ b/docs/jp/static/line_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_rotation_around_center/index.html b/docs/jp/static/line_rotation_around_center/index.html index 65376b8a52..0999042482 100644 --- a/docs/jp/static/line_rotation_around_center/index.html +++ b/docs/jp/static/line_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_scale_x_from_center/index.html b/docs/jp/static/line_scale_x_from_center/index.html index 602f30d803..0eca56f4c6 100644 --- a/docs/jp/static/line_scale_x_from_center/index.html +++ b/docs/jp/static/line_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_scale_x_from_point/index.html b/docs/jp/static/line_scale_x_from_point/index.html index 6b14da43b0..390d48c957 100644 --- a/docs/jp/static/line_scale_x_from_point/index.html +++ b/docs/jp/static/line_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_scale_y_from_center/index.html b/docs/jp/static/line_scale_y_from_center/index.html index 05bb16d373..9d8dd79c22 100644 --- a/docs/jp/static/line_scale_y_from_center/index.html +++ b/docs/jp/static/line_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_scale_y_from_point/index.html b/docs/jp/static/line_scale_y_from_point/index.html index c38821fdea..e85e20869f 100644 --- a/docs/jp/static/line_scale_y_from_point/index.html +++ b/docs/jp/static/line_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_set_rotation_around_point/index.html b/docs/jp/static/line_set_rotation_around_point/index.html index b4c4275c39..1a6ddbf340 100644 --- a/docs/jp/static/line_set_rotation_around_point/index.html +++ b/docs/jp/static/line_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_skew_x/index.html b/docs/jp/static/line_skew_x/index.html index 5948aa5489..c407cee259 100644 --- a/docs/jp/static/line_skew_x/index.html +++ b/docs/jp/static/line_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_skew_y/index.html b/docs/jp/static/line_skew_y/index.html index 667f783187..e4d71502dc 100644 --- a/docs/jp/static/line_skew_y/index.html +++ b/docs/jp/static/line_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_x/index.html b/docs/jp/static/line_x/index.html index 022fa3a8c8..e98da37af2 100644 --- a/docs/jp/static/line_x/index.html +++ b/docs/jp/static/line_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/line_y/index.html b/docs/jp/static/line_y/index.html index 7eb244d185..fa8550f8e2 100644 --- a/docs/jp/static/line_y/index.html +++ b/docs/jp/static/line_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/num_children_basic_usage/index.html b/docs/jp/static/num_children_basic_usage/index.html index 389bcf13b1..244f44b47d 100644 --- a/docs/jp/static/num_children_basic_usage/index.html +++ b/docs/jp/static/num_children_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_basic_usage/index.html b/docs/jp/static/path_basic_usage/index.html index bf3793f3c6..c5811566c5 100644 --- a/docs/jp/static/path_basic_usage/index.html +++ b/docs/jp/static/path_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_fill_alpha/index.html b/docs/jp/static/path_fill_alpha/index.html index e098243d40..5e871418e4 100644 --- a/docs/jp/static/path_fill_alpha/index.html +++ b/docs/jp/static/path_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_fill_color/index.html b/docs/jp/static/path_fill_color/index.html index aaadf1bdc6..2cb722327d 100644 --- a/docs/jp/static/path_fill_color/index.html +++ b/docs/jp/static/path_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_flip_x/index.html b/docs/jp/static/path_flip_x/index.html index b57789c67b..2d8e7b64d6 100644 --- a/docs/jp/static/path_flip_x/index.html +++ b/docs/jp/static/path_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_flip_y/index.html b/docs/jp/static/path_flip_y/index.html index f49086bdbd..fef327557a 100644 --- a/docs/jp/static/path_flip_y/index.html +++ b/docs/jp/static/path_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_line_alpha/index.html b/docs/jp/static/path_line_alpha/index.html index 2566fca29c..96485e22da 100644 --- a/docs/jp/static/path_line_alpha/index.html +++ b/docs/jp/static/path_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_line_color/index.html b/docs/jp/static/path_line_color/index.html index 9ea7b56169..82e3656c34 100644 --- a/docs/jp/static/path_line_color/index.html +++ b/docs/jp/static/path_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_line_dash_dot_setting/index.html b/docs/jp/static/path_line_dash_dot_setting/index.html index 4fb93edd77..66ec0985a2 100644 --- a/docs/jp/static/path_line_dash_dot_setting/index.html +++ b/docs/jp/static/path_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_line_dash_setting/index.html b/docs/jp/static/path_line_dash_setting/index.html index 4161fea151..0d0018586d 100644 --- a/docs/jp/static/path_line_dash_setting/index.html +++ b/docs/jp/static/path_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_line_dot_setting/index.html b/docs/jp/static/path_line_dot_setting/index.html index a25491b3e6..774fbfc26e 100644 --- a/docs/jp/static/path_line_dot_setting/index.html +++ b/docs/jp/static/path_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_line_round_dot_setting/index.html b/docs/jp/static/path_line_round_dot_setting/index.html index 47a1f91c75..3fdce6fe8a 100644 --- a/docs/jp/static/path_line_round_dot_setting/index.html +++ b/docs/jp/static/path_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_line_thickness/index.html b/docs/jp/static/path_line_thickness/index.html index 85c094e0d5..96950d70c6 100644 --- a/docs/jp/static/path_line_thickness/index.html +++ b/docs/jp/static/path_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_rotation_around_center/index.html b/docs/jp/static/path_rotation_around_center/index.html index e3dba760e3..fe34f64082 100644 --- a/docs/jp/static/path_rotation_around_center/index.html +++ b/docs/jp/static/path_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_rotation_around_point/index.html b/docs/jp/static/path_rotation_around_point/index.html index 9235173949..5dc91b4953 100644 --- a/docs/jp/static/path_rotation_around_point/index.html +++ b/docs/jp/static/path_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_scale_x_from_center/index.html b/docs/jp/static/path_scale_x_from_center/index.html index 0958f5c13f..c4780f877b 100644 --- a/docs/jp/static/path_scale_x_from_center/index.html +++ b/docs/jp/static/path_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_scale_x_from_point/index.html b/docs/jp/static/path_scale_x_from_point/index.html index 64dfde7987..4b50cde3a5 100644 --- a/docs/jp/static/path_scale_x_from_point/index.html +++ b/docs/jp/static/path_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_scale_y_from_center/index.html b/docs/jp/static/path_scale_y_from_center/index.html index e9ee5d5326..e1ff5a1e1e 100644 --- a/docs/jp/static/path_scale_y_from_center/index.html +++ b/docs/jp/static/path_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_scale_y_from_point/index.html b/docs/jp/static/path_scale_y_from_point/index.html index c38cb0f570..a266f9d86e 100644 --- a/docs/jp/static/path_scale_y_from_point/index.html +++ b/docs/jp/static/path_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_skew_x/index.html b/docs/jp/static/path_skew_x/index.html index 768ac1e56d..930729ad75 100644 --- a/docs/jp/static/path_skew_x/index.html +++ b/docs/jp/static/path_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_skew_y/index.html b/docs/jp/static/path_skew_y/index.html index f8b501d1b5..935bd7c47e 100644 --- a/docs/jp/static/path_skew_y/index.html +++ b/docs/jp/static/path_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_x/index.html b/docs/jp/static/path_x/index.html index 5ff1c13069..96253b93e1 100644 --- a/docs/jp/static/path_x/index.html +++ b/docs/jp/static/path_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/path_y/index.html b/docs/jp/static/path_y/index.html index 2d86a40f9e..1ae686bda1 100644 --- a/docs/jp/static/path_y/index.html +++ b/docs/jp/static/path_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/point2d_basic_usage/index.html b/docs/jp/static/point2d_basic_usage/index.html index 491865217e..56fe547f24 100644 --- a/docs/jp/static/point2d_basic_usage/index.html +++ b/docs/jp/static/point2d_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_basic_usage/index.html b/docs/jp/static/polygon_basic_usage/index.html index b7fba95b95..cd522b9d6f 100644 --- a/docs/jp/static/polygon_basic_usage/index.html +++ b/docs/jp/static/polygon_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_fill_alpha/index.html b/docs/jp/static/polygon_fill_alpha/index.html index da9d2a32c5..107cb82e71 100644 --- a/docs/jp/static/polygon_fill_alpha/index.html +++ b/docs/jp/static/polygon_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_fill_color/index.html b/docs/jp/static/polygon_fill_color/index.html index 77cd77cc8b..616c9069f7 100644 --- a/docs/jp/static/polygon_fill_color/index.html +++ b/docs/jp/static/polygon_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_flip_x/index.html b/docs/jp/static/polygon_flip_x/index.html index ea0326cfe0..82ea2478d7 100644 --- a/docs/jp/static/polygon_flip_x/index.html +++ b/docs/jp/static/polygon_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_flip_y/index.html b/docs/jp/static/polygon_flip_y/index.html index f65279adc1..a864a7a7cb 100644 --- a/docs/jp/static/polygon_flip_y/index.html +++ b/docs/jp/static/polygon_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_line_alpha/index.html b/docs/jp/static/polygon_line_alpha/index.html index f6355400bd..4741ef994e 100644 --- a/docs/jp/static/polygon_line_alpha/index.html +++ b/docs/jp/static/polygon_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_line_color/index.html b/docs/jp/static/polygon_line_color/index.html index 93dcf365d1..68519a6818 100644 --- a/docs/jp/static/polygon_line_color/index.html +++ b/docs/jp/static/polygon_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_line_dash_dot_setting/index.html b/docs/jp/static/polygon_line_dash_dot_setting/index.html index 6303059d60..2db3f2387f 100644 --- a/docs/jp/static/polygon_line_dash_dot_setting/index.html +++ b/docs/jp/static/polygon_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_line_dash_setting/index.html b/docs/jp/static/polygon_line_dash_setting/index.html index 810c9d508e..130fe423bf 100644 --- a/docs/jp/static/polygon_line_dash_setting/index.html +++ b/docs/jp/static/polygon_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_line_dot_setting/index.html b/docs/jp/static/polygon_line_dot_setting/index.html index 356116918c..ced6f2112d 100644 --- a/docs/jp/static/polygon_line_dot_setting/index.html +++ b/docs/jp/static/polygon_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_line_round_dot_setting/index.html b/docs/jp/static/polygon_line_round_dot_setting/index.html index 747e7744c3..c0aa676dea 100644 --- a/docs/jp/static/polygon_line_round_dot_setting/index.html +++ b/docs/jp/static/polygon_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_line_thickness/index.html b/docs/jp/static/polygon_line_thickness/index.html index bfa6ca2d18..b5c5901d3c 100644 --- a/docs/jp/static/polygon_line_thickness/index.html +++ b/docs/jp/static/polygon_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_rotation_around_center/index.html b/docs/jp/static/polygon_rotation_around_center/index.html index 199d3c9129..9aedafe64c 100644 --- a/docs/jp/static/polygon_rotation_around_center/index.html +++ b/docs/jp/static/polygon_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_scale_x_from_center/index.html b/docs/jp/static/polygon_scale_x_from_center/index.html index 6f384c7214..2dfb6a5e1c 100644 --- a/docs/jp/static/polygon_scale_x_from_center/index.html +++ b/docs/jp/static/polygon_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_scale_x_from_point/index.html b/docs/jp/static/polygon_scale_x_from_point/index.html index 2bad8d6d72..c34cf4a3db 100644 --- a/docs/jp/static/polygon_scale_x_from_point/index.html +++ b/docs/jp/static/polygon_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_scale_y_from_center/index.html b/docs/jp/static/polygon_scale_y_from_center/index.html index eb0d0019b6..d56eb76df4 100644 --- a/docs/jp/static/polygon_scale_y_from_center/index.html +++ b/docs/jp/static/polygon_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_scale_y_from_point/index.html b/docs/jp/static/polygon_scale_y_from_point/index.html index c6ce223392..5e4dfe6bc7 100644 --- a/docs/jp/static/polygon_scale_y_from_point/index.html +++ b/docs/jp/static/polygon_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_set_rotation_around_point/index.html b/docs/jp/static/polygon_set_rotation_around_point/index.html index df408e9c72..bc660ff15f 100644 --- a/docs/jp/static/polygon_set_rotation_around_point/index.html +++ b/docs/jp/static/polygon_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_skew_x/index.html b/docs/jp/static/polygon_skew_x/index.html index 49c2a15273..711c355446 100644 --- a/docs/jp/static/polygon_skew_x/index.html +++ b/docs/jp/static/polygon_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_skew_y/index.html b/docs/jp/static/polygon_skew_y/index.html index d92cddb3a0..acc923f09a 100644 --- a/docs/jp/static/polygon_skew_y/index.html +++ b/docs/jp/static/polygon_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_x/index.html b/docs/jp/static/polygon_x/index.html index fa6b4c6c01..104b39a04c 100644 --- a/docs/jp/static/polygon_x/index.html +++ b/docs/jp/static/polygon_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polygon_y/index.html b/docs/jp/static/polygon_y/index.html index f4f79114f0..aa4dbeee42 100644 --- a/docs/jp/static/polygon_y/index.html +++ b/docs/jp/static/polygon_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_basic_usage/index.html b/docs/jp/static/polyline_basic_usage/index.html index a9eef97776..fa92c8affa 100644 --- a/docs/jp/static/polyline_basic_usage/index.html +++ b/docs/jp/static/polyline_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_fill_alpha/index.html b/docs/jp/static/polyline_fill_alpha/index.html index 1d7ae178ba..6a74695b4e 100644 --- a/docs/jp/static/polyline_fill_alpha/index.html +++ b/docs/jp/static/polyline_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_fill_color/index.html b/docs/jp/static/polyline_fill_color/index.html index 54e98ba802..fe4ce65e51 100644 --- a/docs/jp/static/polyline_fill_color/index.html +++ b/docs/jp/static/polyline_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_flip_x/index.html b/docs/jp/static/polyline_flip_x/index.html index 103ea8bb67..5cc3ec9ef8 100644 --- a/docs/jp/static/polyline_flip_x/index.html +++ b/docs/jp/static/polyline_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_flip_y/index.html b/docs/jp/static/polyline_flip_y/index.html index 262b587d6c..b29a283c8e 100644 --- a/docs/jp/static/polyline_flip_y/index.html +++ b/docs/jp/static/polyline_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_line_alpha/index.html b/docs/jp/static/polyline_line_alpha/index.html index 586108db3e..45bf5b2e2b 100644 --- a/docs/jp/static/polyline_line_alpha/index.html +++ b/docs/jp/static/polyline_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_line_color/index.html b/docs/jp/static/polyline_line_color/index.html index 3153b1ce77..ad4b1aff58 100644 --- a/docs/jp/static/polyline_line_color/index.html +++ b/docs/jp/static/polyline_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_line_dash_dot_setting/index.html b/docs/jp/static/polyline_line_dash_dot_setting/index.html index cdc3e1622a..3dd77f9cde 100644 --- a/docs/jp/static/polyline_line_dash_dot_setting/index.html +++ b/docs/jp/static/polyline_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_line_dash_setting/index.html b/docs/jp/static/polyline_line_dash_setting/index.html index 43897b5061..5c1d0a7f91 100644 --- a/docs/jp/static/polyline_line_dash_setting/index.html +++ b/docs/jp/static/polyline_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_line_dot_setting/index.html b/docs/jp/static/polyline_line_dot_setting/index.html index 3021f89419..bcae153c95 100644 --- a/docs/jp/static/polyline_line_dot_setting/index.html +++ b/docs/jp/static/polyline_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_line_round_dot_setting/index.html b/docs/jp/static/polyline_line_round_dot_setting/index.html index f6f9ef2523..da993dec04 100644 --- a/docs/jp/static/polyline_line_round_dot_setting/index.html +++ b/docs/jp/static/polyline_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_line_thickness/index.html b/docs/jp/static/polyline_line_thickness/index.html index de0376abdc..c1730ba379 100644 --- a/docs/jp/static/polyline_line_thickness/index.html +++ b/docs/jp/static/polyline_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_rotation_around_center/index.html b/docs/jp/static/polyline_rotation_around_center/index.html index 4200c1ce43..daf6a6f16d 100644 --- a/docs/jp/static/polyline_rotation_around_center/index.html +++ b/docs/jp/static/polyline_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_scale_x_from_center/index.html b/docs/jp/static/polyline_scale_x_from_center/index.html index 89e314323b..4ecf00d440 100644 --- a/docs/jp/static/polyline_scale_x_from_center/index.html +++ b/docs/jp/static/polyline_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_scale_x_from_point/index.html b/docs/jp/static/polyline_scale_x_from_point/index.html index f078ca73c2..8ca295f297 100644 --- a/docs/jp/static/polyline_scale_x_from_point/index.html +++ b/docs/jp/static/polyline_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_scale_y_from_center/index.html b/docs/jp/static/polyline_scale_y_from_center/index.html index fbdf537e5e..d6bc76350c 100644 --- a/docs/jp/static/polyline_scale_y_from_center/index.html +++ b/docs/jp/static/polyline_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_scale_y_from_point/index.html b/docs/jp/static/polyline_scale_y_from_point/index.html index f2c68689e3..5e4ebb626b 100644 --- a/docs/jp/static/polyline_scale_y_from_point/index.html +++ b/docs/jp/static/polyline_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_set_rotation_around_point/index.html b/docs/jp/static/polyline_set_rotation_around_point/index.html index 1aa374edd1..8d0fae14cb 100644 --- a/docs/jp/static/polyline_set_rotation_around_point/index.html +++ b/docs/jp/static/polyline_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_skew_x/index.html b/docs/jp/static/polyline_skew_x/index.html index b891885c9b..b80ca87692 100644 --- a/docs/jp/static/polyline_skew_x/index.html +++ b/docs/jp/static/polyline_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_skew_y/index.html b/docs/jp/static/polyline_skew_y/index.html index 014ae8980e..c19c702976 100644 --- a/docs/jp/static/polyline_skew_y/index.html +++ b/docs/jp/static/polyline_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_x/index.html b/docs/jp/static/polyline_x/index.html index c6ee306272..32b7353901 100644 --- a/docs/jp/static/polyline_x/index.html +++ b/docs/jp/static/polyline_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/polyline_y/index.html b/docs/jp/static/polyline_y/index.html index fd6e3230de..704079d7c5 100644 --- a/docs/jp/static/polyline_y/index.html +++ b/docs/jp/static/polyline_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_basic_usage/index.html b/docs/jp/static/rectangle_basic_usage/index.html index ea7ed06613..2e48180057 100644 --- a/docs/jp/static/rectangle_basic_usage/index.html +++ b/docs/jp/static/rectangle_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_ellipse_height/index.html b/docs/jp/static/rectangle_ellipse_height/index.html index 6e7ddc824b..044a581be3 100644 --- a/docs/jp/static/rectangle_ellipse_height/index.html +++ b/docs/jp/static/rectangle_ellipse_height/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_ellipse_width/index.html b/docs/jp/static/rectangle_ellipse_width/index.html index 646d081fa3..d2897f299a 100644 --- a/docs/jp/static/rectangle_ellipse_width/index.html +++ b/docs/jp/static/rectangle_ellipse_width/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_fill_alpha/index.html b/docs/jp/static/rectangle_fill_alpha/index.html index c05f82c100..6442791989 100644 --- a/docs/jp/static/rectangle_fill_alpha/index.html +++ b/docs/jp/static/rectangle_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_fill_color/index.html b/docs/jp/static/rectangle_fill_color/index.html index b9208d89dd..0ebe89143e 100644 --- a/docs/jp/static/rectangle_fill_color/index.html +++ b/docs/jp/static/rectangle_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_flip_x/index.html b/docs/jp/static/rectangle_flip_x/index.html index af2a028fbc..5053bc8a82 100644 --- a/docs/jp/static/rectangle_flip_x/index.html +++ b/docs/jp/static/rectangle_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_flip_y/index.html b/docs/jp/static/rectangle_flip_y/index.html index fb4d6276f4..d688df3356 100644 --- a/docs/jp/static/rectangle_flip_y/index.html +++ b/docs/jp/static/rectangle_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_geom_basic_usage/index.html b/docs/jp/static/rectangle_geom_basic_usage/index.html index 83cd2ee6b5..e1abf526d9 100644 --- a/docs/jp/static/rectangle_geom_basic_usage/index.html +++ b/docs/jp/static/rectangle_geom_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_geom_each_attribute_point/index.html b/docs/jp/static/rectangle_geom_each_attribute_point/index.html index f7711e6c74..4b312e6db2 100644 --- a/docs/jp/static/rectangle_geom_each_attribute_point/index.html +++ b/docs/jp/static/rectangle_geom_each_attribute_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_height/index.html b/docs/jp/static/rectangle_height/index.html index 5dd7f4a5ac..c893c16a1c 100644 --- a/docs/jp/static/rectangle_height/index.html +++ b/docs/jp/static/rectangle_height/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_line_alpha/index.html b/docs/jp/static/rectangle_line_alpha/index.html index d592c5130c..66a450404d 100644 --- a/docs/jp/static/rectangle_line_alpha/index.html +++ b/docs/jp/static/rectangle_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_line_color/index.html b/docs/jp/static/rectangle_line_color/index.html index 105959a885..829f5a1a1d 100644 --- a/docs/jp/static/rectangle_line_color/index.html +++ b/docs/jp/static/rectangle_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_line_dash_dot_setting/index.html b/docs/jp/static/rectangle_line_dash_dot_setting/index.html index cbffce846e..1634b53d20 100644 --- a/docs/jp/static/rectangle_line_dash_dot_setting/index.html +++ b/docs/jp/static/rectangle_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_line_dash_setting/index.html b/docs/jp/static/rectangle_line_dash_setting/index.html index 8d3820a455..d164900a30 100644 --- a/docs/jp/static/rectangle_line_dash_setting/index.html +++ b/docs/jp/static/rectangle_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_line_dot_setting/index.html b/docs/jp/static/rectangle_line_dot_setting/index.html index dc756f565e..295cea1817 100644 --- a/docs/jp/static/rectangle_line_dot_setting/index.html +++ b/docs/jp/static/rectangle_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_line_round_dot_setting/index.html b/docs/jp/static/rectangle_line_round_dot_setting/index.html index 645fdde30e..86dfd6ad8e 100644 --- a/docs/jp/static/rectangle_line_round_dot_setting/index.html +++ b/docs/jp/static/rectangle_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_line_thickness/index.html b/docs/jp/static/rectangle_line_thickness/index.html index 9afd1b6c20..49124a4382 100644 --- a/docs/jp/static/rectangle_line_thickness/index.html +++ b/docs/jp/static/rectangle_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_rotation_around_center/index.html b/docs/jp/static/rectangle_rotation_around_center/index.html index bce79c3a6f..ebfd9b1762 100644 --- a/docs/jp/static/rectangle_rotation_around_center/index.html +++ b/docs/jp/static/rectangle_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_scale_x_from_center/index.html b/docs/jp/static/rectangle_scale_x_from_center/index.html index 47aaa222d4..d0190d02df 100644 --- a/docs/jp/static/rectangle_scale_x_from_center/index.html +++ b/docs/jp/static/rectangle_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_scale_x_from_point/index.html b/docs/jp/static/rectangle_scale_x_from_point/index.html index f86286b5b7..12c384d084 100644 --- a/docs/jp/static/rectangle_scale_x_from_point/index.html +++ b/docs/jp/static/rectangle_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_scale_y_from_center/index.html b/docs/jp/static/rectangle_scale_y_from_center/index.html index c621695e8d..e2b4e33d83 100644 --- a/docs/jp/static/rectangle_scale_y_from_center/index.html +++ b/docs/jp/static/rectangle_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_scale_y_from_point/index.html b/docs/jp/static/rectangle_scale_y_from_point/index.html index 7ee6ceedd4..6d0716016e 100644 --- a/docs/jp/static/rectangle_scale_y_from_point/index.html +++ b/docs/jp/static/rectangle_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_set_rotation_around_point/index.html b/docs/jp/static/rectangle_set_rotation_around_point/index.html index ddd4ba2d20..2a2e03823e 100644 --- a/docs/jp/static/rectangle_set_rotation_around_point/index.html +++ b/docs/jp/static/rectangle_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_skew_x/index.html b/docs/jp/static/rectangle_skew_x/index.html index 23527276bd..ea8c66d541 100644 --- a/docs/jp/static/rectangle_skew_x/index.html +++ b/docs/jp/static/rectangle_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_skew_y/index.html b/docs/jp/static/rectangle_skew_y/index.html index dbedea52cc..40d6e7f8fb 100644 --- a/docs/jp/static/rectangle_skew_y/index.html +++ b/docs/jp/static/rectangle_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_width/index.html b/docs/jp/static/rectangle_width/index.html index e2fc8d2ede..c352b2370d 100644 --- a/docs/jp/static/rectangle_width/index.html +++ b/docs/jp/static/rectangle_width/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_x/index.html b/docs/jp/static/rectangle_x/index.html index 9581971723..3e27d576cb 100644 --- a/docs/jp/static/rectangle_x/index.html +++ b/docs/jp/static/rectangle_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/rectangle_y/index.html b/docs/jp/static/rectangle_y/index.html index 5dcec59de5..5bcba45120 100644 --- a/docs/jp/static/rectangle_y/index.html +++ b/docs/jp/static/rectangle_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/remove_children_basic_usage/index.html b/docs/jp/static/remove_children_basic_usage/index.html index 22fd86a228..050dc87989 100644 --- a/docs/jp/static/remove_children_basic_usage/index.html +++ b/docs/jp/static/remove_children_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/sprite_basic_usage_of_add_child/index.html b/docs/jp/static/sprite_basic_usage_of_add_child/index.html index 2add17040c..bd0d300efc 100644 --- a/docs/jp/static/sprite_basic_usage_of_add_child/index.html +++ b/docs/jp/static/sprite_basic_usage_of_add_child/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/sprite_basic_usage_of_remove_child/index.html b/docs/jp/static/sprite_basic_usage_of_remove_child/index.html index 8970e38ca2..3c44c6d489 100644 --- a/docs/jp/static/sprite_basic_usage_of_remove_child/index.html +++ b/docs/jp/static/sprite_basic_usage_of_remove_child/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/sprite_contains_basic_usage/index.html b/docs/jp/static/sprite_contains_basic_usage/index.html index b61ee26a57..d7e3e1a3f0 100644 --- a/docs/jp/static/sprite_contains_basic_usage/index.html +++ b/docs/jp/static/sprite_contains_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/sprite_graphics_attribute/index.html b/docs/jp/static/sprite_graphics_attribute/index.html index 77b9ea9c6b..67227c9f4f 100644 --- a/docs/jp/static/sprite_graphics_attribute/index.html +++ b/docs/jp/static/sprite_graphics_attribute/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/sprite_move_instances_simultaneously/index.html b/docs/jp/static/sprite_move_instances_simultaneously/index.html index a91dd552be..ba120a3a1f 100644 --- a/docs/jp/static/sprite_move_instances_simultaneously/index.html +++ b/docs/jp/static/sprite_move_instances_simultaneously/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_align/index.html b/docs/jp/static/svg_text_align/index.html index b5d3741ed1..131ae1625c 100644 --- a/docs/jp/static/svg_text_align/index.html +++ b/docs/jp/static/svg_text_align/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_align_note/index.html b/docs/jp/static/svg_text_align_note/index.html index 177e8deb36..a5d9892b10 100644 --- a/docs/jp/static/svg_text_align_note/index.html +++ b/docs/jp/static/svg_text_align_note/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_basic_usage/index.html b/docs/jp/static/svg_text_basic_usage/index.html index 0203c4aea0..8bf81c0bcc 100644 --- a/docs/jp/static/svg_text_basic_usage/index.html +++ b/docs/jp/static/svg_text_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_bold/index.html b/docs/jp/static/svg_text_bold/index.html index 3ef28ec719..e4ef67a738 100644 --- a/docs/jp/static/svg_text_bold/index.html +++ b/docs/jp/static/svg_text_bold/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_fill_alpha/index.html b/docs/jp/static/svg_text_fill_alpha/index.html index 1c45787afa..461a4e51dd 100644 --- a/docs/jp/static/svg_text_fill_alpha/index.html +++ b/docs/jp/static/svg_text_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_fill_color/index.html b/docs/jp/static/svg_text_fill_color/index.html index f5017a9187..0cf183260d 100644 --- a/docs/jp/static/svg_text_fill_color/index.html +++ b/docs/jp/static/svg_text_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_font_family/index.html b/docs/jp/static/svg_text_font_family/index.html index 97c63e7c64..9cd45039ad 100644 --- a/docs/jp/static/svg_text_font_family/index.html +++ b/docs/jp/static/svg_text_font_family/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_font_size/index.html b/docs/jp/static/svg_text_font_size/index.html index bb9307ccf0..bb23cc9c56 100644 --- a/docs/jp/static/svg_text_font_size/index.html +++ b/docs/jp/static/svg_text_font_size/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_italic/index.html b/docs/jp/static/svg_text_italic/index.html index cd70b12ea0..3fcb3d507b 100644 --- a/docs/jp/static/svg_text_italic/index.html +++ b/docs/jp/static/svg_text_italic/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_leading/index.html b/docs/jp/static/svg_text_leading/index.html index bf56b89cd7..5f711a3bf6 100644 --- a/docs/jp/static/svg_text_leading/index.html +++ b/docs/jp/static/svg_text_leading/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_line_alpha/index.html b/docs/jp/static/svg_text_line_alpha/index.html index a442243530..10e690107e 100644 --- a/docs/jp/static/svg_text_line_alpha/index.html +++ b/docs/jp/static/svg_text_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_line_color/index.html b/docs/jp/static/svg_text_line_color/index.html index b992f565eb..ee42979b34 100644 --- a/docs/jp/static/svg_text_line_color/index.html +++ b/docs/jp/static/svg_text_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_line_thickness/index.html b/docs/jp/static/svg_text_line_thickness/index.html index 9441b459c5..39605104a6 100644 --- a/docs/jp/static/svg_text_line_thickness/index.html +++ b/docs/jp/static/svg_text_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_note_on_the_y_baseline/index.html b/docs/jp/static/svg_text_note_on_the_y_baseline/index.html index b1a889b8b8..807c88470f 100644 --- a/docs/jp/static/svg_text_note_on_the_y_baseline/index.html +++ b/docs/jp/static/svg_text_note_on_the_y_baseline/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_text/index.html b/docs/jp/static/svg_text_text/index.html index 6a4096b844..9800d88618 100644 --- a/docs/jp/static/svg_text_text/index.html +++ b/docs/jp/static/svg_text_text/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_x/index.html b/docs/jp/static/svg_text_x/index.html index 65373c3c07..4d4ac4b66a 100644 --- a/docs/jp/static/svg_text_x/index.html +++ b/docs/jp/static/svg_text_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_text_y/index.html b/docs/jp/static/svg_text_y/index.html index c99c97be1d..640343bb1e 100644 --- a/docs/jp/static/svg_text_y/index.html +++ b/docs/jp/static/svg_text_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_flip_x/index.html b/docs/jp/static/svg_txt_flip_x/index.html index 7716a384cd..f212e154a9 100644 --- a/docs/jp/static/svg_txt_flip_x/index.html +++ b/docs/jp/static/svg_txt_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_flip_y/index.html b/docs/jp/static/svg_txt_flip_y/index.html index 4febb7f007..535cc3c71e 100644 --- a/docs/jp/static/svg_txt_flip_y/index.html +++ b/docs/jp/static/svg_txt_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_rotation_around_center/index.html b/docs/jp/static/svg_txt_rotation_around_center/index.html index 9a06b1b580..c9026644de 100644 --- a/docs/jp/static/svg_txt_rotation_around_center/index.html +++ b/docs/jp/static/svg_txt_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_rotation_around_point/index.html b/docs/jp/static/svg_txt_rotation_around_point/index.html index d08d01b1c0..0c9b13a5ff 100644 --- a/docs/jp/static/svg_txt_rotation_around_point/index.html +++ b/docs/jp/static/svg_txt_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_scale_x_from_center/index.html b/docs/jp/static/svg_txt_scale_x_from_center/index.html index 73cf83ad95..49c7cff55b 100644 --- a/docs/jp/static/svg_txt_scale_x_from_center/index.html +++ b/docs/jp/static/svg_txt_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_scale_x_from_point/index.html b/docs/jp/static/svg_txt_scale_x_from_point/index.html index 439cea1c12..e6fe3f3cce 100644 --- a/docs/jp/static/svg_txt_scale_x_from_point/index.html +++ b/docs/jp/static/svg_txt_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_span_basic_usage/index.html b/docs/jp/static/svg_txt_span_basic_usage/index.html index 7e4dfd410e..396c18ca8d 100644 --- a/docs/jp/static/svg_txt_span_basic_usage/index.html +++ b/docs/jp/static/svg_txt_span_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_span_bold/index.html b/docs/jp/static/svg_txt_span_bold/index.html index feda290004..0e821821d6 100644 --- a/docs/jp/static/svg_txt_span_bold/index.html +++ b/docs/jp/static/svg_txt_span_bold/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_span_delta_x/index.html b/docs/jp/static/svg_txt_span_delta_x/index.html index f202600939..3f2d499704 100644 --- a/docs/jp/static/svg_txt_span_delta_x/index.html +++ b/docs/jp/static/svg_txt_span_delta_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_span_delta_y/index.html b/docs/jp/static/svg_txt_span_delta_y/index.html index 0530b1f7d0..b9609ed2f6 100644 --- a/docs/jp/static/svg_txt_span_delta_y/index.html +++ b/docs/jp/static/svg_txt_span_delta_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_span_fill_alpha/index.html b/docs/jp/static/svg_txt_span_fill_alpha/index.html index 4783895aa8..e94325a877 100644 --- a/docs/jp/static/svg_txt_span_fill_alpha/index.html +++ b/docs/jp/static/svg_txt_span_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_span_fill_color/index.html b/docs/jp/static/svg_txt_span_fill_color/index.html index b3ba8b7d0c..486e36c5ab 100644 --- a/docs/jp/static/svg_txt_span_fill_color/index.html +++ b/docs/jp/static/svg_txt_span_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_span_font_family/index.html b/docs/jp/static/svg_txt_span_font_family/index.html index eb47c76a00..5dfd7ed3d6 100644 --- a/docs/jp/static/svg_txt_span_font_family/index.html +++ b/docs/jp/static/svg_txt_span_font_family/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_span_font_size/index.html b/docs/jp/static/svg_txt_span_font_size/index.html index 14313a27e2..5d23c0dbbc 100644 --- a/docs/jp/static/svg_txt_span_font_size/index.html +++ b/docs/jp/static/svg_txt_span_font_size/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_span_italic/index.html b/docs/jp/static/svg_txt_span_italic/index.html index caad68f7ea..fe2d4b52ef 100644 --- a/docs/jp/static/svg_txt_span_italic/index.html +++ b/docs/jp/static/svg_txt_span_italic/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_span_line_alpha/index.html b/docs/jp/static/svg_txt_span_line_alpha/index.html index 5e036e76b2..46ae0ccf86 100644 --- a/docs/jp/static/svg_txt_span_line_alpha/index.html +++ b/docs/jp/static/svg_txt_span_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_span_line_color/index.html b/docs/jp/static/svg_txt_span_line_color/index.html index 9fa436693d..eae13c4211 100644 --- a/docs/jp/static/svg_txt_span_line_color/index.html +++ b/docs/jp/static/svg_txt_span_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_span_line_thickness/index.html b/docs/jp/static/svg_txt_span_line_thickness/index.html index 8fba761cbb..4080fad07a 100644 --- a/docs/jp/static/svg_txt_span_line_thickness/index.html +++ b/docs/jp/static/svg_txt_span_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_span_notes_of_the_line_break/index.html b/docs/jp/static/svg_txt_span_notes_of_the_line_break/index.html index cd69243192..c90bea3ca5 100644 --- a/docs/jp/static/svg_txt_span_notes_of_the_line_break/index.html +++ b/docs/jp/static/svg_txt_span_notes_of_the_line_break/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/svg_txt_span_text/index.html b/docs/jp/static/svg_txt_span_text/index.html index 2964789b36..33487c9631 100644 --- a/docs/jp/static/svg_txt_span_text/index.html +++ b/docs/jp/static/svg_txt_span_text/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_basic_usage/index.html b/docs/jp/static/triangle_basic_usage/index.html index 76edc730d8..1144fb3e2f 100644 --- a/docs/jp/static/triangle_basic_usage/index.html +++ b/docs/jp/static/triangle_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_fill_alpha/index.html b/docs/jp/static/triangle_fill_alpha/index.html index 936d5ef671..9c6fb74146 100644 --- a/docs/jp/static/triangle_fill_alpha/index.html +++ b/docs/jp/static/triangle_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_fill_color/index.html b/docs/jp/static/triangle_fill_color/index.html index a9c36447b2..b3784a4b21 100644 --- a/docs/jp/static/triangle_fill_color/index.html +++ b/docs/jp/static/triangle_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_flip_x/index.html b/docs/jp/static/triangle_flip_x/index.html index 6a97e70c98..ab0d5a602c 100644 --- a/docs/jp/static/triangle_flip_x/index.html +++ b/docs/jp/static/triangle_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_flip_y/index.html b/docs/jp/static/triangle_flip_y/index.html index 2234e6ab1a..2920ed84ba 100644 --- a/docs/jp/static/triangle_flip_y/index.html +++ b/docs/jp/static/triangle_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_line_alpha/index.html b/docs/jp/static/triangle_line_alpha/index.html index 2ef1bc9179..4555ecbee6 100644 --- a/docs/jp/static/triangle_line_alpha/index.html +++ b/docs/jp/static/triangle_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_line_color/index.html b/docs/jp/static/triangle_line_color/index.html index e1cd03c4d3..ae94f9de9e 100644 --- a/docs/jp/static/triangle_line_color/index.html +++ b/docs/jp/static/triangle_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_line_dash_dot_setting/index.html b/docs/jp/static/triangle_line_dash_dot_setting/index.html index 94d965ab8c..7d8bc07f84 100644 --- a/docs/jp/static/triangle_line_dash_dot_setting/index.html +++ b/docs/jp/static/triangle_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_line_dash_setting/index.html b/docs/jp/static/triangle_line_dash_setting/index.html index b536fb2862..440c0a5860 100644 --- a/docs/jp/static/triangle_line_dash_setting/index.html +++ b/docs/jp/static/triangle_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_line_dot_setting/index.html b/docs/jp/static/triangle_line_dot_setting/index.html index a8ec900d15..efc6ec184e 100644 --- a/docs/jp/static/triangle_line_dot_setting/index.html +++ b/docs/jp/static/triangle_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_line_round_dot_setting/index.html b/docs/jp/static/triangle_line_round_dot_setting/index.html index 3c6f1e31ae..2c10e4f4f9 100644 --- a/docs/jp/static/triangle_line_round_dot_setting/index.html +++ b/docs/jp/static/triangle_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_line_thickness/index.html b/docs/jp/static/triangle_line_thickness/index.html index 129a2bed05..5222d38826 100644 --- a/docs/jp/static/triangle_line_thickness/index.html +++ b/docs/jp/static/triangle_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_rotation_around_center/index.html b/docs/jp/static/triangle_rotation_around_center/index.html index 92b27d517c..c2c32b86cd 100644 --- a/docs/jp/static/triangle_rotation_around_center/index.html +++ b/docs/jp/static/triangle_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_scale_x_from_center/index.html b/docs/jp/static/triangle_scale_x_from_center/index.html index 790f13d735..33e5844ee6 100644 --- a/docs/jp/static/triangle_scale_x_from_center/index.html +++ b/docs/jp/static/triangle_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_scale_y_from_center/index.html b/docs/jp/static/triangle_scale_y_from_center/index.html index 90e49b7355..68f6bdfa08 100644 --- a/docs/jp/static/triangle_scale_y_from_center/index.html +++ b/docs/jp/static/triangle_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_set_rotation_around_point/index.html b/docs/jp/static/triangle_set_rotation_around_point/index.html index 1a8b55a80d..40a14f82fb 100644 --- a/docs/jp/static/triangle_set_rotation_around_point/index.html +++ b/docs/jp/static/triangle_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_set_scale_x_from_point/index.html b/docs/jp/static/triangle_set_scale_x_from_point/index.html index 32dcee67f8..02550c07b6 100644 --- a/docs/jp/static/triangle_set_scale_x_from_point/index.html +++ b/docs/jp/static/triangle_set_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_set_scale_y_from_point/index.html b/docs/jp/static/triangle_set_scale_y_from_point/index.html index bd64b16fb4..c5405c25b6 100644 --- a/docs/jp/static/triangle_set_scale_y_from_point/index.html +++ b/docs/jp/static/triangle_set_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_skew_x/index.html b/docs/jp/static/triangle_skew_x/index.html index b243ddfd9c..2ca0fe9c29 100644 --- a/docs/jp/static/triangle_skew_x/index.html +++ b/docs/jp/static/triangle_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_skew_y/index.html b/docs/jp/static/triangle_skew_y/index.html index 2e7690b5c8..7e1cf1f5bc 100644 --- a/docs/jp/static/triangle_skew_y/index.html +++ b/docs/jp/static/triangle_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_x/index.html b/docs/jp/static/triangle_x/index.html index 897955b4ad..4f9368a27e 100644 --- a/docs/jp/static/triangle_x/index.html +++ b/docs/jp/static/triangle_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_x1/index.html b/docs/jp/static/triangle_x1/index.html index 308e108e00..14785cb664 100644 --- a/docs/jp/static/triangle_x1/index.html +++ b/docs/jp/static/triangle_x1/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_x2/index.html b/docs/jp/static/triangle_x2/index.html index e8b15d7576..af334cc386 100644 --- a/docs/jp/static/triangle_x2/index.html +++ b/docs/jp/static/triangle_x2/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_x3/index.html b/docs/jp/static/triangle_x3/index.html index e7565f44ff..ad003d9341 100644 --- a/docs/jp/static/triangle_x3/index.html +++ b/docs/jp/static/triangle_x3/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_y/index.html b/docs/jp/static/triangle_y/index.html index e0bbf06be5..b5ad83505f 100644 --- a/docs/jp/static/triangle_y/index.html +++ b/docs/jp/static/triangle_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_y1/index.html b/docs/jp/static/triangle_y1/index.html index b0869a1d1d..c16b106ec2 100644 --- a/docs/jp/static/triangle_y1/index.html +++ b/docs/jp/static/triangle_y1/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_y2/index.html b/docs/jp/static/triangle_y2/index.html index 3f4f3dc560..4d61f525f4 100644 --- a/docs/jp/static/triangle_y2/index.html +++ b/docs/jp/static/triangle_y2/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/triangle_y3/index.html b/docs/jp/static/triangle_y3/index.html index cfb4c23c8a..564e723de5 100644 --- a/docs/jp/static/triangle_y3/index.html +++ b/docs/jp/static/triangle_y3/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/unbind_enter_frame_all_basic_usage/index.html b/docs/jp/static/unbind_enter_frame_all_basic_usage/index.html index 1c78690108..17d42e66b3 100644 --- a/docs/jp/static/unbind_enter_frame_all_basic_usage/index.html +++ b/docs/jp/static/unbind_enter_frame_all_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/jp/static/unbind_enter_frame_basic_usage/index.html b/docs/jp/static/unbind_enter_frame_basic_usage/index.html index cfb53efd13..ed36ffdb7d 100644 --- a/docs/jp/static/unbind_enter_frame_basic_usage/index.html +++ b/docs/jp/static/unbind_enter_frame_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/array_last_value_basic_usage_1/index.html b/docs_src/source/_static/array_last_value_basic_usage_1/index.html index 1b0823b182..1d9055ae09 100644 --- a/docs_src/source/_static/array_last_value_basic_usage_1/index.html +++ b/docs_src/source/_static/array_last_value_basic_usage_1/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/array_last_value_basic_usage_2/index.html b/docs_src/source/_static/array_last_value_basic_usage_2/index.html index fc7e9c77fb..b758219499 100644 --- a/docs_src/source/_static/array_last_value_basic_usage_2/index.html +++ b/docs_src/source/_static/array_last_value_basic_usage_2/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_basic_usage/index.html b/docs_src/source/_static/circle_basic_usage/index.html index 09ea4fa203..8ede519982 100644 --- a/docs_src/source/_static/circle_basic_usage/index.html +++ b/docs_src/source/_static/circle_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_fill_alpha/index.html b/docs_src/source/_static/circle_fill_alpha/index.html index 1122f316b8..bc15640608 100644 --- a/docs_src/source/_static/circle_fill_alpha/index.html +++ b/docs_src/source/_static/circle_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_fill_color/index.html b/docs_src/source/_static/circle_fill_color/index.html index 6cd58e2df0..a0f1b37473 100644 --- a/docs_src/source/_static/circle_fill_color/index.html +++ b/docs_src/source/_static/circle_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_flip_x/index.html b/docs_src/source/_static/circle_flip_x/index.html index 0885e0773f..fdc4a6978a 100644 --- a/docs_src/source/_static/circle_flip_x/index.html +++ b/docs_src/source/_static/circle_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_flip_y/index.html b/docs_src/source/_static/circle_flip_y/index.html index dfaa8a4d23..183b7cbfb1 100644 --- a/docs_src/source/_static/circle_flip_y/index.html +++ b/docs_src/source/_static/circle_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_line_alpha/index.html b/docs_src/source/_static/circle_line_alpha/index.html index d2fe60df16..b215b66bda 100644 --- a/docs_src/source/_static/circle_line_alpha/index.html +++ b/docs_src/source/_static/circle_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_line_color/index.html b/docs_src/source/_static/circle_line_color/index.html index 2690a7dcef..63164e74bb 100644 --- a/docs_src/source/_static/circle_line_color/index.html +++ b/docs_src/source/_static/circle_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_line_dash_dot_setting/index.html b/docs_src/source/_static/circle_line_dash_dot_setting/index.html index fc56c0326e..d7a977bee3 100644 --- a/docs_src/source/_static/circle_line_dash_dot_setting/index.html +++ b/docs_src/source/_static/circle_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_line_dash_setting/index.html b/docs_src/source/_static/circle_line_dash_setting/index.html index 9e02e349b8..bfa5f50aa6 100644 --- a/docs_src/source/_static/circle_line_dash_setting/index.html +++ b/docs_src/source/_static/circle_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_line_dot_setting/index.html b/docs_src/source/_static/circle_line_dot_setting/index.html index f8901afb5e..8a15257fb2 100644 --- a/docs_src/source/_static/circle_line_dot_setting/index.html +++ b/docs_src/source/_static/circle_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_line_round_dot_setting/index.html b/docs_src/source/_static/circle_line_round_dot_setting/index.html index 949ed4f8f5..344500a3e7 100644 --- a/docs_src/source/_static/circle_line_round_dot_setting/index.html +++ b/docs_src/source/_static/circle_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_line_thickness/index.html b/docs_src/source/_static/circle_line_thickness/index.html index d75db642bf..b6f841477f 100644 --- a/docs_src/source/_static/circle_line_thickness/index.html +++ b/docs_src/source/_static/circle_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_radius/index.html b/docs_src/source/_static/circle_radius/index.html index 34944943a9..cc3a92e530 100644 --- a/docs_src/source/_static/circle_radius/index.html +++ b/docs_src/source/_static/circle_radius/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_rotation_around_center/index.html b/docs_src/source/_static/circle_rotation_around_center/index.html index 1bb6449637..709c99e945 100644 --- a/docs_src/source/_static/circle_rotation_around_center/index.html +++ b/docs_src/source/_static/circle_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_scale_x_from_center/index.html b/docs_src/source/_static/circle_scale_x_from_center/index.html index 861983d2a3..970a32afba 100644 --- a/docs_src/source/_static/circle_scale_x_from_center/index.html +++ b/docs_src/source/_static/circle_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_scale_x_from_point/index.html b/docs_src/source/_static/circle_scale_x_from_point/index.html index e379fbf85e..5bf980f794 100644 --- a/docs_src/source/_static/circle_scale_x_from_point/index.html +++ b/docs_src/source/_static/circle_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_scale_y_from_center/index.html b/docs_src/source/_static/circle_scale_y_from_center/index.html index 0367fad457..e33d4fa53e 100644 --- a/docs_src/source/_static/circle_scale_y_from_center/index.html +++ b/docs_src/source/_static/circle_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_scale_y_from_point/index.html b/docs_src/source/_static/circle_scale_y_from_point/index.html index 9c6a926cc0..734fc4cf09 100644 --- a/docs_src/source/_static/circle_scale_y_from_point/index.html +++ b/docs_src/source/_static/circle_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_set_rotation_around_point/index.html b/docs_src/source/_static/circle_set_rotation_around_point/index.html index 15cd74b0c0..d5cee024be 100644 --- a/docs_src/source/_static/circle_set_rotation_around_point/index.html +++ b/docs_src/source/_static/circle_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_skew_x/index.html b/docs_src/source/_static/circle_skew_x/index.html index 69aaecb99c..6a3de8338c 100644 --- a/docs_src/source/_static/circle_skew_x/index.html +++ b/docs_src/source/_static/circle_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_skew_y/index.html b/docs_src/source/_static/circle_skew_y/index.html index 31c5aeec79..913d75c098 100644 --- a/docs_src/source/_static/circle_skew_y/index.html +++ b/docs_src/source/_static/circle_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_x/index.html b/docs_src/source/_static/circle_x/index.html index 39771f0cc1..582ad94e40 100644 --- a/docs_src/source/_static/circle_x/index.html +++ b/docs_src/source/_static/circle_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/circle_y/index.html b/docs_src/source/_static/circle_y/index.html index 721c68a451..8f4ef45837 100644 --- a/docs_src/source/_static/circle_y/index.html +++ b/docs_src/source/_static/circle_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/datetime_now_basic_usage/index.html b/docs_src/source/_static/datetime_now_basic_usage/index.html index 80f01cdf2c..0f6de3b7d9 100644 --- a/docs_src/source/_static/datetime_now_basic_usage/index.html +++ b/docs_src/source/_static/datetime_now_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/display_object_visible_basic_usage/index.html b/docs_src/source/_static/display_object_visible_basic_usage/index.html index e5add41d6f..e212c80f6b 100644 --- a/docs_src/source/_static/display_object_visible_basic_usage/index.html +++ b/docs_src/source/_static/display_object_visible_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/display_object_x_and_y_augmented_assignment/index.html b/docs_src/source/_static/display_object_x_and_y_augmented_assignment/index.html index 8a30f54de2..66c53df203 100644 --- a/docs_src/source/_static/display_object_x_and_y_augmented_assignment/index.html +++ b/docs_src/source/_static/display_object_x_and_y_augmented_assignment/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/display_object_x_and_y_basic_usage/index.html b/docs_src/source/_static/display_object_x_and_y_basic_usage/index.html index 27434d2ad8..808c17de07 100644 --- a/docs_src/source/_static/display_object_x_and_y_basic_usage/index.html +++ b/docs_src/source/_static/display_object_x_and_y_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_basic_usage/index.html b/docs_src/source/_static/ellipse_basic_usage/index.html index c26d6399ed..da8f6e7005 100644 --- a/docs_src/source/_static/ellipse_basic_usage/index.html +++ b/docs_src/source/_static/ellipse_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_fill_alpha/index.html b/docs_src/source/_static/ellipse_fill_alpha/index.html index 8f87fbd51d..7545d91f8f 100644 --- a/docs_src/source/_static/ellipse_fill_alpha/index.html +++ b/docs_src/source/_static/ellipse_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_fill_color/index.html b/docs_src/source/_static/ellipse_fill_color/index.html index 6da05acdcb..b81f10bc8e 100644 --- a/docs_src/source/_static/ellipse_fill_color/index.html +++ b/docs_src/source/_static/ellipse_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_flip_x/index.html b/docs_src/source/_static/ellipse_flip_x/index.html index 5eeffd6e98..e2ddd37ae1 100644 --- a/docs_src/source/_static/ellipse_flip_x/index.html +++ b/docs_src/source/_static/ellipse_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_flip_y/index.html b/docs_src/source/_static/ellipse_flip_y/index.html index 07cba794ab..c6bb569b04 100644 --- a/docs_src/source/_static/ellipse_flip_y/index.html +++ b/docs_src/source/_static/ellipse_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_height/index.html b/docs_src/source/_static/ellipse_height/index.html index f9a5eda640..084ef4d0ee 100644 --- a/docs_src/source/_static/ellipse_height/index.html +++ b/docs_src/source/_static/ellipse_height/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_line_alpha/index.html b/docs_src/source/_static/ellipse_line_alpha/index.html index 90a98366ab..2e0f38a024 100644 --- a/docs_src/source/_static/ellipse_line_alpha/index.html +++ b/docs_src/source/_static/ellipse_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_line_color/index.html b/docs_src/source/_static/ellipse_line_color/index.html index d70d99cdbd..119c45ca01 100644 --- a/docs_src/source/_static/ellipse_line_color/index.html +++ b/docs_src/source/_static/ellipse_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_line_dash_dot_setting/index.html b/docs_src/source/_static/ellipse_line_dash_dot_setting/index.html index 6194ec1c36..6a8ef17ed9 100644 --- a/docs_src/source/_static/ellipse_line_dash_dot_setting/index.html +++ b/docs_src/source/_static/ellipse_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_line_dash_setting/index.html b/docs_src/source/_static/ellipse_line_dash_setting/index.html index 1890d22a99..fbab9156e7 100644 --- a/docs_src/source/_static/ellipse_line_dash_setting/index.html +++ b/docs_src/source/_static/ellipse_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_line_dot_setting/index.html b/docs_src/source/_static/ellipse_line_dot_setting/index.html index 98ab705dc0..542cc5d020 100644 --- a/docs_src/source/_static/ellipse_line_dot_setting/index.html +++ b/docs_src/source/_static/ellipse_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_line_round_dot_setting/index.html b/docs_src/source/_static/ellipse_line_round_dot_setting/index.html index 16ee29b1ea..0891904bbf 100644 --- a/docs_src/source/_static/ellipse_line_round_dot_setting/index.html +++ b/docs_src/source/_static/ellipse_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_line_thickness/index.html b/docs_src/source/_static/ellipse_line_thickness/index.html index 5af0e91bd0..817ba802e9 100644 --- a/docs_src/source/_static/ellipse_line_thickness/index.html +++ b/docs_src/source/_static/ellipse_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_rotation_around_center/index.html b/docs_src/source/_static/ellipse_rotation_around_center/index.html index b4e76803da..2191bb6e13 100644 --- a/docs_src/source/_static/ellipse_rotation_around_center/index.html +++ b/docs_src/source/_static/ellipse_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_scale_x_from_center/index.html b/docs_src/source/_static/ellipse_scale_x_from_center/index.html index 5511d1b06f..7db865cf7b 100644 --- a/docs_src/source/_static/ellipse_scale_x_from_center/index.html +++ b/docs_src/source/_static/ellipse_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_scale_x_from_point/index.html b/docs_src/source/_static/ellipse_scale_x_from_point/index.html index f061cf8552..24b9c93ac0 100644 --- a/docs_src/source/_static/ellipse_scale_x_from_point/index.html +++ b/docs_src/source/_static/ellipse_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_scale_y_from_center/index.html b/docs_src/source/_static/ellipse_scale_y_from_center/index.html index 585b176607..6d4ccada0b 100644 --- a/docs_src/source/_static/ellipse_scale_y_from_center/index.html +++ b/docs_src/source/_static/ellipse_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_scale_y_from_point/index.html b/docs_src/source/_static/ellipse_scale_y_from_point/index.html index 2c357e8b3f..07e0409987 100644 --- a/docs_src/source/_static/ellipse_scale_y_from_point/index.html +++ b/docs_src/source/_static/ellipse_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_set_rotation_around_point/index.html b/docs_src/source/_static/ellipse_set_rotation_around_point/index.html index b90645feda..0499c301f1 100644 --- a/docs_src/source/_static/ellipse_set_rotation_around_point/index.html +++ b/docs_src/source/_static/ellipse_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_skew_x/index.html b/docs_src/source/_static/ellipse_skew_x/index.html index e23228acc6..0f2f6fea89 100644 --- a/docs_src/source/_static/ellipse_skew_x/index.html +++ b/docs_src/source/_static/ellipse_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_skew_y/index.html b/docs_src/source/_static/ellipse_skew_y/index.html index d0c2461fe7..5801b2a34c 100644 --- a/docs_src/source/_static/ellipse_skew_y/index.html +++ b/docs_src/source/_static/ellipse_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_width/index.html b/docs_src/source/_static/ellipse_width/index.html index abe26c991d..92176d92df 100644 --- a/docs_src/source/_static/ellipse_width/index.html +++ b/docs_src/source/_static/ellipse_width/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_x/index.html b/docs_src/source/_static/ellipse_x/index.html index a2de27f5cc..e6f1d0311f 100644 --- a/docs_src/source/_static/ellipse_x/index.html +++ b/docs_src/source/_static/ellipse_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/ellipse_y/index.html b/docs_src/source/_static/ellipse_y/index.html index 915eb04ec1..dc2f28ab97 100644 --- a/docs_src/source/_static/ellipse_y/index.html +++ b/docs_src/source/_static/ellipse_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/enter_frame_basic_usage/index.html b/docs_src/source/_static/enter_frame_basic_usage/index.html index 8e660b6ffe..e2e41b2cee 100644 --- a/docs_src/source/_static/enter_frame_basic_usage/index.html +++ b/docs_src/source/_static/enter_frame_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_base_fill_alpha_basic_usage/index.html b/docs_src/source/_static/graphics_base_fill_alpha_basic_usage/index.html index fa6852fa10..f717016f2e 100644 --- a/docs_src/source/_static/graphics_base_fill_alpha_basic_usage/index.html +++ b/docs_src/source/_static/graphics_base_fill_alpha_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_base_fill_color_basic_usage/index.html b/docs_src/source/_static/graphics_base_fill_color_basic_usage/index.html index 5a5851fb99..59baa580f8 100644 --- a/docs_src/source/_static/graphics_base_fill_color_basic_usage/index.html +++ b/docs_src/source/_static/graphics_base_fill_color_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_base_flip_x_basic_usage/index.html b/docs_src/source/_static/graphics_base_flip_x_basic_usage/index.html index 26a79c73d2..00844246c2 100644 --- a/docs_src/source/_static/graphics_base_flip_x_basic_usage/index.html +++ b/docs_src/source/_static/graphics_base_flip_x_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_base_line_alpha_basic_usage/index.html b/docs_src/source/_static/graphics_base_line_alpha_basic_usage/index.html index 96a2f31003..18f958ec88 100644 --- a/docs_src/source/_static/graphics_base_line_alpha_basic_usage/index.html +++ b/docs_src/source/_static/graphics_base_line_alpha_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_base_line_color_basic_usage/index.html b/docs_src/source/_static/graphics_base_line_color_basic_usage/index.html index a7c46bf1b5..5a44497b31 100644 --- a/docs_src/source/_static/graphics_base_line_color_basic_usage/index.html +++ b/docs_src/source/_static/graphics_base_line_color_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_base_line_thickness_basic_usage/index.html b/docs_src/source/_static/graphics_base_line_thickness_basic_usage/index.html index 956d235ee3..11047f7e3b 100644 --- a/docs_src/source/_static/graphics_base_line_thickness_basic_usage/index.html +++ b/docs_src/source/_static/graphics_base_line_thickness_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_base_rotation_around_center_basic_usage/index.html b/docs_src/source/_static/graphics_base_rotation_around_center_basic_usage/index.html index 8370c4050c..651863c5e4 100644 --- a/docs_src/source/_static/graphics_base_rotation_around_center_basic_usage/index.html +++ b/docs_src/source/_static/graphics_base_rotation_around_center_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_base_rotation_around_point_basic_usage/index.html b/docs_src/source/_static/graphics_base_rotation_around_point_basic_usage/index.html index 29b3ee06ae..2aceb95624 100644 --- a/docs_src/source/_static/graphics_base_rotation_around_point_basic_usage/index.html +++ b/docs_src/source/_static/graphics_base_rotation_around_point_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_base_scale_from_center_basic_usage_1/index.html b/docs_src/source/_static/graphics_base_scale_from_center_basic_usage_1/index.html index 0c5ab14039..0f8c257479 100644 --- a/docs_src/source/_static/graphics_base_scale_from_center_basic_usage_1/index.html +++ b/docs_src/source/_static/graphics_base_scale_from_center_basic_usage_1/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_base_scale_from_center_basic_usage_2/index.html b/docs_src/source/_static/graphics_base_scale_from_center_basic_usage_2/index.html index 290727cc78..d800dff1cf 100644 --- a/docs_src/source/_static/graphics_base_scale_from_center_basic_usage_2/index.html +++ b/docs_src/source/_static/graphics_base_scale_from_center_basic_usage_2/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_base_scale_from_center_basic_usage_3/index.html b/docs_src/source/_static/graphics_base_scale_from_center_basic_usage_3/index.html index a608fd2672..7d795b494e 100644 --- a/docs_src/source/_static/graphics_base_scale_from_center_basic_usage_3/index.html +++ b/docs_src/source/_static/graphics_base_scale_from_center_basic_usage_3/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_base_scale_from_point_basic_usage_x/index.html b/docs_src/source/_static/graphics_base_scale_from_point_basic_usage_x/index.html index 89e55e31cf..c0518c2a36 100644 --- a/docs_src/source/_static/graphics_base_scale_from_point_basic_usage_x/index.html +++ b/docs_src/source/_static/graphics_base_scale_from_point_basic_usage_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_base_scale_from_point_basic_usage_y/index.html b/docs_src/source/_static/graphics_base_scale_from_point_basic_usage_y/index.html index 82d33236eb..2d93ffce60 100644 --- a/docs_src/source/_static/graphics_base_scale_from_point_basic_usage_y/index.html +++ b/docs_src/source/_static/graphics_base_scale_from_point_basic_usage_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_base_skew_x_basic_usage/index.html b/docs_src/source/_static/graphics_base_skew_x_basic_usage/index.html index 4219f7ab94..8bcf54bc33 100644 --- a/docs_src/source/_static/graphics_base_skew_x_basic_usage/index.html +++ b/docs_src/source/_static/graphics_base_skew_x_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_base_skew_y_incremental_basic_usage/index.html b/docs_src/source/_static/graphics_base_skew_y_incremental_basic_usage/index.html index 35b6438962..aab747779a 100644 --- a/docs_src/source/_static/graphics_base_skew_y_incremental_basic_usage/index.html +++ b/docs_src/source/_static/graphics_base_skew_y_incremental_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_begin_fill_acceptable_color_settings/index.html b/docs_src/source/_static/graphics_begin_fill_acceptable_color_settings/index.html index f33dff454d..4386e56dda 100644 --- a/docs_src/source/_static/graphics_begin_fill_acceptable_color_settings/index.html +++ b/docs_src/source/_static/graphics_begin_fill_acceptable_color_settings/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_begin_fill_alpha_setting/index.html b/docs_src/source/_static/graphics_begin_fill_alpha_setting/index.html index 7fe4c0bb1e..890df7b477 100644 --- a/docs_src/source/_static/graphics_begin_fill_alpha_setting/index.html +++ b/docs_src/source/_static/graphics_begin_fill_alpha_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_begin_fill_basic_usage/index.html b/docs_src/source/_static/graphics_begin_fill_basic_usage/index.html index 3d820c4327..e0b7c60334 100644 --- a/docs_src/source/_static/graphics_begin_fill_basic_usage/index.html +++ b/docs_src/source/_static/graphics_begin_fill_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_begin_fill_color_setting_clear/index.html b/docs_src/source/_static/graphics_begin_fill_color_setting_clear/index.html index 71c065a131..f552cd2113 100644 --- a/docs_src/source/_static/graphics_begin_fill_color_setting_clear/index.html +++ b/docs_src/source/_static/graphics_begin_fill_color_setting_clear/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_begin_fill_fill_color/index.html b/docs_src/source/_static/graphics_begin_fill_fill_color/index.html index 77b9ea9c6b..67227c9f4f 100644 --- a/docs_src/source/_static/graphics_begin_fill_fill_color/index.html +++ b/docs_src/source/_static/graphics_begin_fill_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_circle_basic_usage/index.html b/docs_src/source/_static/graphics_draw_circle_basic_usage/index.html index dd13422d03..713db9b8f4 100644 --- a/docs_src/source/_static/graphics_draw_circle_basic_usage/index.html +++ b/docs_src/source/_static/graphics_draw_circle_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_circle_return_value/index.html b/docs_src/source/_static/graphics_draw_circle_return_value/index.html index 764a7232fa..b6a05a27a6 100644 --- a/docs_src/source/_static/graphics_draw_circle_return_value/index.html +++ b/docs_src/source/_static/graphics_draw_circle_return_value/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_dash_dotted_line_basic_usage/index.html b/docs_src/source/_static/graphics_draw_dash_dotted_line_basic_usage/index.html index a7d96bc21d..3a11314895 100644 --- a/docs_src/source/_static/graphics_draw_dash_dotted_line_basic_usage/index.html +++ b/docs_src/source/_static/graphics_draw_dash_dotted_line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_dashed_line_basic_usage/index.html b/docs_src/source/_static/graphics_draw_dashed_line_basic_usage/index.html index 1cb063dc70..0e0079c881 100644 --- a/docs_src/source/_static/graphics_draw_dashed_line_basic_usage/index.html +++ b/docs_src/source/_static/graphics_draw_dashed_line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_dotted_line_basic_usage/index.html b/docs_src/source/_static/graphics_draw_dotted_line_basic_usage/index.html index 158781cee4..1b7d8ad52a 100644 --- a/docs_src/source/_static/graphics_draw_dotted_line_basic_usage/index.html +++ b/docs_src/source/_static/graphics_draw_dotted_line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_ellipse_basic_usage/index.html b/docs_src/source/_static/graphics_draw_ellipse_basic_usage/index.html index c0beb976f3..93bfd99cc5 100644 --- a/docs_src/source/_static/graphics_draw_ellipse_basic_usage/index.html +++ b/docs_src/source/_static/graphics_draw_ellipse_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_ellipse_return_value/index.html b/docs_src/source/_static/graphics_draw_ellipse_return_value/index.html index d8430211e4..5c87778bb5 100644 --- a/docs_src/source/_static/graphics_draw_ellipse_return_value/index.html +++ b/docs_src/source/_static/graphics_draw_ellipse_return_value/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_line_basic_usage/index.html b/docs_src/source/_static/graphics_draw_line_basic_usage/index.html index e04f93de08..dcf262636c 100644 --- a/docs_src/source/_static/graphics_draw_line_basic_usage/index.html +++ b/docs_src/source/_static/graphics_draw_line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_line_ignored_dot_setting/index.html b/docs_src/source/_static/graphics_draw_line_ignored_dot_setting/index.html index a0a5decd49..0a47cbf852 100644 --- a/docs_src/source/_static/graphics_draw_line_ignored_dot_setting/index.html +++ b/docs_src/source/_static/graphics_draw_line_ignored_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_line_line_instance/index.html b/docs_src/source/_static/graphics_draw_line_line_instance/index.html index 5034fdbf5f..6e6bddd1e4 100644 --- a/docs_src/source/_static/graphics_draw_line_line_instance/index.html +++ b/docs_src/source/_static/graphics_draw_line_line_instance/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_path_basic_usage/index.html b/docs_src/source/_static/graphics_draw_path_basic_usage/index.html index 572cd037c8..9660d6c078 100644 --- a/docs_src/source/_static/graphics_draw_path_basic_usage/index.html +++ b/docs_src/source/_static/graphics_draw_path_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_polygon_append_line_point/index.html b/docs_src/source/_static/graphics_draw_polygon_append_line_point/index.html index 866feb09b1..024deb8315 100644 --- a/docs_src/source/_static/graphics_draw_polygon_append_line_point/index.html +++ b/docs_src/source/_static/graphics_draw_polygon_append_line_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_polygon_basic_usage/index.html b/docs_src/source/_static/graphics_draw_polygon_basic_usage/index.html index ce64438fb1..775c432909 100644 --- a/docs_src/source/_static/graphics_draw_polygon_basic_usage/index.html +++ b/docs_src/source/_static/graphics_draw_polygon_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_polygon_line_to_difference_1/index.html b/docs_src/source/_static/graphics_draw_polygon_line_to_difference_1/index.html index 211e96ab13..5673bd9f49 100644 --- a/docs_src/source/_static/graphics_draw_polygon_line_to_difference_1/index.html +++ b/docs_src/source/_static/graphics_draw_polygon_line_to_difference_1/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_polygon_line_to_difference_2/index.html b/docs_src/source/_static/graphics_draw_polygon_line_to_difference_2/index.html index 55cc078abf..bd58b8736a 100644 --- a/docs_src/source/_static/graphics_draw_polygon_line_to_difference_2/index.html +++ b/docs_src/source/_static/graphics_draw_polygon_line_to_difference_2/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_rect_basic_usage/index.html b/docs_src/source/_static/graphics_draw_rect_basic_usage/index.html index bd2a66e75e..813f22af38 100644 --- a/docs_src/source/_static/graphics_draw_rect_basic_usage/index.html +++ b/docs_src/source/_static/graphics_draw_rect_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_rect_basic_usage_skipped_begin_fill/index.html b/docs_src/source/_static/graphics_draw_rect_basic_usage_skipped_begin_fill/index.html index efb8b22706..b5b93c3134 100644 --- a/docs_src/source/_static/graphics_draw_rect_basic_usage_skipped_begin_fill/index.html +++ b/docs_src/source/_static/graphics_draw_rect_basic_usage_skipped_begin_fill/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_rect_rectangle/index.html b/docs_src/source/_static/graphics_draw_rect_rectangle/index.html index a54c887729..9f2f957389 100644 --- a/docs_src/source/_static/graphics_draw_rect_rectangle/index.html +++ b/docs_src/source/_static/graphics_draw_rect_rectangle/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_round_dotted_line_basic_usage/index.html b/docs_src/source/_static/graphics_draw_round_dotted_line_basic_usage/index.html index 8ccf3797e2..e0c12ebc4a 100644 --- a/docs_src/source/_static/graphics_draw_round_dotted_line_basic_usage/index.html +++ b/docs_src/source/_static/graphics_draw_round_dotted_line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_round_dotted_line_notes/index.html b/docs_src/source/_static/graphics_draw_round_dotted_line_notes/index.html index fcbbe60fcf..93bb57174b 100644 --- a/docs_src/source/_static/graphics_draw_round_dotted_line_notes/index.html +++ b/docs_src/source/_static/graphics_draw_round_dotted_line_notes/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_round_rect_basic_usage/index.html b/docs_src/source/_static/graphics_draw_round_rect_basic_usage/index.html index cab5d807b8..8050e5a9d8 100644 --- a/docs_src/source/_static/graphics_draw_round_rect_basic_usage/index.html +++ b/docs_src/source/_static/graphics_draw_round_rect_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_round_rect_return_value/index.html b/docs_src/source/_static/graphics_draw_round_rect_return_value/index.html index 4394c94367..3559561da2 100644 --- a/docs_src/source/_static/graphics_draw_round_rect_return_value/index.html +++ b/docs_src/source/_static/graphics_draw_round_rect_return_value/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_triangle_basic_usage/index.html b/docs_src/source/_static/graphics_draw_triangle_basic_usage/index.html index 49266aa8d4..b779e7c7ab 100644 --- a/docs_src/source/_static/graphics_draw_triangle_basic_usage/index.html +++ b/docs_src/source/_static/graphics_draw_triangle_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_draw_triangle_triangle_instance/index.html b/docs_src/source/_static/graphics_draw_triangle_triangle_instance/index.html index 25ac63d6dc..b93ff94c9c 100644 --- a/docs_src/source/_static/graphics_draw_triangle_triangle_instance/index.html +++ b/docs_src/source/_static/graphics_draw_triangle_triangle_instance/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_line_style_alpha/index.html b/docs_src/source/_static/graphics_line_style_alpha/index.html index bf965b4eed..c156420f6a 100644 --- a/docs_src/source/_static/graphics_line_style_alpha/index.html +++ b/docs_src/source/_static/graphics_line_style_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_line_style_basics/index.html b/docs_src/source/_static/graphics_line_style_basics/index.html index 4c838ded06..af484833ed 100644 --- a/docs_src/source/_static/graphics_line_style_basics/index.html +++ b/docs_src/source/_static/graphics_line_style_basics/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_line_style_caps/index.html b/docs_src/source/_static/graphics_line_style_caps/index.html index fe7555ee0f..ee00235363 100644 --- a/docs_src/source/_static/graphics_line_style_caps/index.html +++ b/docs_src/source/_static/graphics_line_style_caps/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_line_style_clear_line_color/index.html b/docs_src/source/_static/graphics_line_style_clear_line_color/index.html index 6bbb1cafeb..754d2271eb 100644 --- a/docs_src/source/_static/graphics_line_style_clear_line_color/index.html +++ b/docs_src/source/_static/graphics_line_style_clear_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_line_style_joints/index.html b/docs_src/source/_static/graphics_line_style_joints/index.html index 723c099ac4..f391d36dcc 100644 --- a/docs_src/source/_static/graphics_line_style_joints/index.html +++ b/docs_src/source/_static/graphics_line_style_joints/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_line_style_line_color/index.html b/docs_src/source/_static/graphics_line_style_line_color/index.html index 7b65e5a22a..78d18623a2 100644 --- a/docs_src/source/_static/graphics_line_style_line_color/index.html +++ b/docs_src/source/_static/graphics_line_style_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_line_style_line_color_color_code/index.html b/docs_src/source/_static/graphics_line_style_line_color_color_code/index.html index 870a75e99a..c2a9ca1c92 100644 --- a/docs_src/source/_static/graphics_line_style_line_color_color_code/index.html +++ b/docs_src/source/_static/graphics_line_style_line_color_color_code/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_line_style_line_dash_dot_setting/index.html b/docs_src/source/_static/graphics_line_style_line_dash_dot_setting/index.html index 5e358f502b..82f21454ca 100644 --- a/docs_src/source/_static/graphics_line_style_line_dash_dot_setting/index.html +++ b/docs_src/source/_static/graphics_line_style_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_line_style_line_dash_setting/index.html b/docs_src/source/_static/graphics_line_style_line_dash_setting/index.html index 814f4b2a92..70c23b0bf4 100644 --- a/docs_src/source/_static/graphics_line_style_line_dash_setting/index.html +++ b/docs_src/source/_static/graphics_line_style_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_line_style_line_dot_setting/index.html b/docs_src/source/_static/graphics_line_style_line_dot_setting/index.html index 727e96938a..ccd9910b7e 100644 --- a/docs_src/source/_static/graphics_line_style_line_dot_setting/index.html +++ b/docs_src/source/_static/graphics_line_style_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_line_style_line_dot_setting_rectangle/index.html b/docs_src/source/_static/graphics_line_style_line_dot_setting_rectangle/index.html index c2cc332cee..8ade6c272e 100644 --- a/docs_src/source/_static/graphics_line_style_line_dot_setting_rectangle/index.html +++ b/docs_src/source/_static/graphics_line_style_line_dot_setting_rectangle/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_line_style_line_round_dot_setting/index.html b/docs_src/source/_static/graphics_line_style_line_round_dot_setting/index.html index 74969888ec..f08204ddb4 100644 --- a/docs_src/source/_static/graphics_line_style_line_round_dot_setting/index.html +++ b/docs_src/source/_static/graphics_line_style_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_line_style_thickness/index.html b/docs_src/source/_static/graphics_line_style_thickness/index.html index 08b2b3a4f8..a47b479e18 100644 --- a/docs_src/source/_static/graphics_line_style_thickness/index.html +++ b/docs_src/source/_static/graphics_line_style_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_move_to_and_line_to_basic_usage/index.html b/docs_src/source/_static/graphics_move_to_and_line_to_basic_usage/index.html index a70583a4e3..99dc77b094 100644 --- a/docs_src/source/_static/graphics_move_to_and_line_to_basic_usage/index.html +++ b/docs_src/source/_static/graphics_move_to_and_line_to_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_move_to_and_line_to_multi_move_to_calling/index.html b/docs_src/source/_static/graphics_move_to_and_line_to_multi_move_to_calling/index.html index ad464e0c1d..9dfa34fbc5 100644 --- a/docs_src/source/_static/graphics_move_to_and_line_to_multi_move_to_calling/index.html +++ b/docs_src/source/_static/graphics_move_to_and_line_to_multi_move_to_calling/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_move_to_and_line_to_polyline/index.html b/docs_src/source/_static/graphics_move_to_and_line_to_polyline/index.html index e718b1562a..81604b36d8 100644 --- a/docs_src/source/_static/graphics_move_to_and_line_to_polyline/index.html +++ b/docs_src/source/_static/graphics_move_to_and_line_to_polyline/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/graphics_move_to_and_line_to_sequential_calling/index.html b/docs_src/source/_static/graphics_move_to_and_line_to_sequential_calling/index.html index 660b8cd751..64c4ba687d 100644 --- a/docs_src/source/_static/graphics_move_to_and_line_to_sequential_calling/index.html +++ b/docs_src/source/_static/graphics_move_to_and_line_to_sequential_calling/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_basic_usage/index.html b/docs_src/source/_static/line_basic_usage/index.html index fe01cde35a..e7e36e15a6 100644 --- a/docs_src/source/_static/line_basic_usage/index.html +++ b/docs_src/source/_static/line_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_flip_x/index.html b/docs_src/source/_static/line_flip_x/index.html index 771f923bc3..ce8ad298ba 100644 --- a/docs_src/source/_static/line_flip_x/index.html +++ b/docs_src/source/_static/line_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_flip_y/index.html b/docs_src/source/_static/line_flip_y/index.html index e4b14c222f..cc2e8fdf23 100644 --- a/docs_src/source/_static/line_flip_y/index.html +++ b/docs_src/source/_static/line_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_line_alpha/index.html b/docs_src/source/_static/line_line_alpha/index.html index 76ca0b13c4..210df728f9 100644 --- a/docs_src/source/_static/line_line_alpha/index.html +++ b/docs_src/source/_static/line_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_line_color/index.html b/docs_src/source/_static/line_line_color/index.html index 28c6937f86..6f524c1dd9 100644 --- a/docs_src/source/_static/line_line_color/index.html +++ b/docs_src/source/_static/line_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_line_dash_dot_setting/index.html b/docs_src/source/_static/line_line_dash_dot_setting/index.html index 37b82eaf16..da0f036de5 100644 --- a/docs_src/source/_static/line_line_dash_dot_setting/index.html +++ b/docs_src/source/_static/line_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_line_dash_setting/index.html b/docs_src/source/_static/line_line_dash_setting/index.html index 90135cfd8c..9338dafd0e 100644 --- a/docs_src/source/_static/line_line_dash_setting/index.html +++ b/docs_src/source/_static/line_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_line_dot_setting/index.html b/docs_src/source/_static/line_line_dot_setting/index.html index 1b7855296d..e9a0558c8d 100644 --- a/docs_src/source/_static/line_line_dot_setting/index.html +++ b/docs_src/source/_static/line_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_line_round_dot_setting/index.html b/docs_src/source/_static/line_line_round_dot_setting/index.html index 4fc88585a7..598604a2f5 100644 --- a/docs_src/source/_static/line_line_round_dot_setting/index.html +++ b/docs_src/source/_static/line_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_line_thickness/index.html b/docs_src/source/_static/line_line_thickness/index.html index 4901fe9c13..e4d33a617a 100644 --- a/docs_src/source/_static/line_line_thickness/index.html +++ b/docs_src/source/_static/line_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_rotation_around_center/index.html b/docs_src/source/_static/line_rotation_around_center/index.html index 65376b8a52..0999042482 100644 --- a/docs_src/source/_static/line_rotation_around_center/index.html +++ b/docs_src/source/_static/line_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_scale_x_from_center/index.html b/docs_src/source/_static/line_scale_x_from_center/index.html index 602f30d803..0eca56f4c6 100644 --- a/docs_src/source/_static/line_scale_x_from_center/index.html +++ b/docs_src/source/_static/line_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_scale_x_from_point/index.html b/docs_src/source/_static/line_scale_x_from_point/index.html index 6b14da43b0..390d48c957 100644 --- a/docs_src/source/_static/line_scale_x_from_point/index.html +++ b/docs_src/source/_static/line_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_scale_y_from_center/index.html b/docs_src/source/_static/line_scale_y_from_center/index.html index 05bb16d373..9d8dd79c22 100644 --- a/docs_src/source/_static/line_scale_y_from_center/index.html +++ b/docs_src/source/_static/line_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_scale_y_from_point/index.html b/docs_src/source/_static/line_scale_y_from_point/index.html index c38821fdea..e85e20869f 100644 --- a/docs_src/source/_static/line_scale_y_from_point/index.html +++ b/docs_src/source/_static/line_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_set_rotation_around_point/index.html b/docs_src/source/_static/line_set_rotation_around_point/index.html index b4c4275c39..1a6ddbf340 100644 --- a/docs_src/source/_static/line_set_rotation_around_point/index.html +++ b/docs_src/source/_static/line_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_skew_x/index.html b/docs_src/source/_static/line_skew_x/index.html index 5948aa5489..c407cee259 100644 --- a/docs_src/source/_static/line_skew_x/index.html +++ b/docs_src/source/_static/line_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_skew_y/index.html b/docs_src/source/_static/line_skew_y/index.html index 667f783187..e4d71502dc 100644 --- a/docs_src/source/_static/line_skew_y/index.html +++ b/docs_src/source/_static/line_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_x/index.html b/docs_src/source/_static/line_x/index.html index 022fa3a8c8..e98da37af2 100644 --- a/docs_src/source/_static/line_x/index.html +++ b/docs_src/source/_static/line_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/line_y/index.html b/docs_src/source/_static/line_y/index.html index 7eb244d185..fa8550f8e2 100644 --- a/docs_src/source/_static/line_y/index.html +++ b/docs_src/source/_static/line_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/num_children_basic_usage/index.html b/docs_src/source/_static/num_children_basic_usage/index.html index 389bcf13b1..244f44b47d 100644 --- a/docs_src/source/_static/num_children_basic_usage/index.html +++ b/docs_src/source/_static/num_children_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_basic_usage/index.html b/docs_src/source/_static/path_basic_usage/index.html index bf3793f3c6..c5811566c5 100644 --- a/docs_src/source/_static/path_basic_usage/index.html +++ b/docs_src/source/_static/path_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_fill_alpha/index.html b/docs_src/source/_static/path_fill_alpha/index.html index e098243d40..5e871418e4 100644 --- a/docs_src/source/_static/path_fill_alpha/index.html +++ b/docs_src/source/_static/path_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_fill_color/index.html b/docs_src/source/_static/path_fill_color/index.html index aaadf1bdc6..2cb722327d 100644 --- a/docs_src/source/_static/path_fill_color/index.html +++ b/docs_src/source/_static/path_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_flip_x/index.html b/docs_src/source/_static/path_flip_x/index.html index b57789c67b..2d8e7b64d6 100644 --- a/docs_src/source/_static/path_flip_x/index.html +++ b/docs_src/source/_static/path_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_flip_y/index.html b/docs_src/source/_static/path_flip_y/index.html index f49086bdbd..fef327557a 100644 --- a/docs_src/source/_static/path_flip_y/index.html +++ b/docs_src/source/_static/path_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_line_alpha/index.html b/docs_src/source/_static/path_line_alpha/index.html index 2566fca29c..96485e22da 100644 --- a/docs_src/source/_static/path_line_alpha/index.html +++ b/docs_src/source/_static/path_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_line_color/index.html b/docs_src/source/_static/path_line_color/index.html index 9ea7b56169..82e3656c34 100644 --- a/docs_src/source/_static/path_line_color/index.html +++ b/docs_src/source/_static/path_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_line_dash_dot_setting/index.html b/docs_src/source/_static/path_line_dash_dot_setting/index.html index 4fb93edd77..66ec0985a2 100644 --- a/docs_src/source/_static/path_line_dash_dot_setting/index.html +++ b/docs_src/source/_static/path_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_line_dash_setting/index.html b/docs_src/source/_static/path_line_dash_setting/index.html index 4161fea151..0d0018586d 100644 --- a/docs_src/source/_static/path_line_dash_setting/index.html +++ b/docs_src/source/_static/path_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_line_dot_setting/index.html b/docs_src/source/_static/path_line_dot_setting/index.html index a25491b3e6..774fbfc26e 100644 --- a/docs_src/source/_static/path_line_dot_setting/index.html +++ b/docs_src/source/_static/path_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_line_round_dot_setting/index.html b/docs_src/source/_static/path_line_round_dot_setting/index.html index 47a1f91c75..3fdce6fe8a 100644 --- a/docs_src/source/_static/path_line_round_dot_setting/index.html +++ b/docs_src/source/_static/path_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_line_thickness/index.html b/docs_src/source/_static/path_line_thickness/index.html index 85c094e0d5..96950d70c6 100644 --- a/docs_src/source/_static/path_line_thickness/index.html +++ b/docs_src/source/_static/path_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_rotation_around_center/index.html b/docs_src/source/_static/path_rotation_around_center/index.html index e3dba760e3..fe34f64082 100644 --- a/docs_src/source/_static/path_rotation_around_center/index.html +++ b/docs_src/source/_static/path_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_rotation_around_point/index.html b/docs_src/source/_static/path_rotation_around_point/index.html index 9235173949..5dc91b4953 100644 --- a/docs_src/source/_static/path_rotation_around_point/index.html +++ b/docs_src/source/_static/path_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_scale_x_from_center/index.html b/docs_src/source/_static/path_scale_x_from_center/index.html index 0958f5c13f..c4780f877b 100644 --- a/docs_src/source/_static/path_scale_x_from_center/index.html +++ b/docs_src/source/_static/path_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_scale_x_from_point/index.html b/docs_src/source/_static/path_scale_x_from_point/index.html index 64dfde7987..4b50cde3a5 100644 --- a/docs_src/source/_static/path_scale_x_from_point/index.html +++ b/docs_src/source/_static/path_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_scale_y_from_center/index.html b/docs_src/source/_static/path_scale_y_from_center/index.html index e9ee5d5326..e1ff5a1e1e 100644 --- a/docs_src/source/_static/path_scale_y_from_center/index.html +++ b/docs_src/source/_static/path_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_scale_y_from_point/index.html b/docs_src/source/_static/path_scale_y_from_point/index.html index c38cb0f570..a266f9d86e 100644 --- a/docs_src/source/_static/path_scale_y_from_point/index.html +++ b/docs_src/source/_static/path_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_skew_x/index.html b/docs_src/source/_static/path_skew_x/index.html index 768ac1e56d..930729ad75 100644 --- a/docs_src/source/_static/path_skew_x/index.html +++ b/docs_src/source/_static/path_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_skew_y/index.html b/docs_src/source/_static/path_skew_y/index.html index f8b501d1b5..935bd7c47e 100644 --- a/docs_src/source/_static/path_skew_y/index.html +++ b/docs_src/source/_static/path_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_x/index.html b/docs_src/source/_static/path_x/index.html index 5ff1c13069..96253b93e1 100644 --- a/docs_src/source/_static/path_x/index.html +++ b/docs_src/source/_static/path_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/path_y/index.html b/docs_src/source/_static/path_y/index.html index 2d86a40f9e..1ae686bda1 100644 --- a/docs_src/source/_static/path_y/index.html +++ b/docs_src/source/_static/path_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/point2d_basic_usage/index.html b/docs_src/source/_static/point2d_basic_usage/index.html index 491865217e..56fe547f24 100644 --- a/docs_src/source/_static/point2d_basic_usage/index.html +++ b/docs_src/source/_static/point2d_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_basic_usage/index.html b/docs_src/source/_static/polygon_basic_usage/index.html index b7fba95b95..cd522b9d6f 100644 --- a/docs_src/source/_static/polygon_basic_usage/index.html +++ b/docs_src/source/_static/polygon_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_fill_alpha/index.html b/docs_src/source/_static/polygon_fill_alpha/index.html index da9d2a32c5..107cb82e71 100644 --- a/docs_src/source/_static/polygon_fill_alpha/index.html +++ b/docs_src/source/_static/polygon_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_fill_color/index.html b/docs_src/source/_static/polygon_fill_color/index.html index 77cd77cc8b..616c9069f7 100644 --- a/docs_src/source/_static/polygon_fill_color/index.html +++ b/docs_src/source/_static/polygon_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_flip_x/index.html b/docs_src/source/_static/polygon_flip_x/index.html index ea0326cfe0..82ea2478d7 100644 --- a/docs_src/source/_static/polygon_flip_x/index.html +++ b/docs_src/source/_static/polygon_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_flip_y/index.html b/docs_src/source/_static/polygon_flip_y/index.html index f65279adc1..a864a7a7cb 100644 --- a/docs_src/source/_static/polygon_flip_y/index.html +++ b/docs_src/source/_static/polygon_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_line_alpha/index.html b/docs_src/source/_static/polygon_line_alpha/index.html index f6355400bd..4741ef994e 100644 --- a/docs_src/source/_static/polygon_line_alpha/index.html +++ b/docs_src/source/_static/polygon_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_line_color/index.html b/docs_src/source/_static/polygon_line_color/index.html index 93dcf365d1..68519a6818 100644 --- a/docs_src/source/_static/polygon_line_color/index.html +++ b/docs_src/source/_static/polygon_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_line_dash_dot_setting/index.html b/docs_src/source/_static/polygon_line_dash_dot_setting/index.html index 6303059d60..2db3f2387f 100644 --- a/docs_src/source/_static/polygon_line_dash_dot_setting/index.html +++ b/docs_src/source/_static/polygon_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_line_dash_setting/index.html b/docs_src/source/_static/polygon_line_dash_setting/index.html index 810c9d508e..130fe423bf 100644 --- a/docs_src/source/_static/polygon_line_dash_setting/index.html +++ b/docs_src/source/_static/polygon_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_line_dot_setting/index.html b/docs_src/source/_static/polygon_line_dot_setting/index.html index 356116918c..ced6f2112d 100644 --- a/docs_src/source/_static/polygon_line_dot_setting/index.html +++ b/docs_src/source/_static/polygon_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_line_round_dot_setting/index.html b/docs_src/source/_static/polygon_line_round_dot_setting/index.html index 747e7744c3..c0aa676dea 100644 --- a/docs_src/source/_static/polygon_line_round_dot_setting/index.html +++ b/docs_src/source/_static/polygon_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_line_thickness/index.html b/docs_src/source/_static/polygon_line_thickness/index.html index bfa6ca2d18..b5c5901d3c 100644 --- a/docs_src/source/_static/polygon_line_thickness/index.html +++ b/docs_src/source/_static/polygon_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_rotation_around_center/index.html b/docs_src/source/_static/polygon_rotation_around_center/index.html index 199d3c9129..9aedafe64c 100644 --- a/docs_src/source/_static/polygon_rotation_around_center/index.html +++ b/docs_src/source/_static/polygon_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_scale_x_from_center/index.html b/docs_src/source/_static/polygon_scale_x_from_center/index.html index 6f384c7214..2dfb6a5e1c 100644 --- a/docs_src/source/_static/polygon_scale_x_from_center/index.html +++ b/docs_src/source/_static/polygon_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_scale_x_from_point/index.html b/docs_src/source/_static/polygon_scale_x_from_point/index.html index 2bad8d6d72..c34cf4a3db 100644 --- a/docs_src/source/_static/polygon_scale_x_from_point/index.html +++ b/docs_src/source/_static/polygon_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_scale_y_from_center/index.html b/docs_src/source/_static/polygon_scale_y_from_center/index.html index eb0d0019b6..d56eb76df4 100644 --- a/docs_src/source/_static/polygon_scale_y_from_center/index.html +++ b/docs_src/source/_static/polygon_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_scale_y_from_point/index.html b/docs_src/source/_static/polygon_scale_y_from_point/index.html index c6ce223392..5e4dfe6bc7 100644 --- a/docs_src/source/_static/polygon_scale_y_from_point/index.html +++ b/docs_src/source/_static/polygon_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_set_rotation_around_point/index.html b/docs_src/source/_static/polygon_set_rotation_around_point/index.html index df408e9c72..bc660ff15f 100644 --- a/docs_src/source/_static/polygon_set_rotation_around_point/index.html +++ b/docs_src/source/_static/polygon_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_skew_x/index.html b/docs_src/source/_static/polygon_skew_x/index.html index 49c2a15273..711c355446 100644 --- a/docs_src/source/_static/polygon_skew_x/index.html +++ b/docs_src/source/_static/polygon_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_skew_y/index.html b/docs_src/source/_static/polygon_skew_y/index.html index d92cddb3a0..acc923f09a 100644 --- a/docs_src/source/_static/polygon_skew_y/index.html +++ b/docs_src/source/_static/polygon_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_x/index.html b/docs_src/source/_static/polygon_x/index.html index fa6b4c6c01..104b39a04c 100644 --- a/docs_src/source/_static/polygon_x/index.html +++ b/docs_src/source/_static/polygon_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polygon_y/index.html b/docs_src/source/_static/polygon_y/index.html index f4f79114f0..aa4dbeee42 100644 --- a/docs_src/source/_static/polygon_y/index.html +++ b/docs_src/source/_static/polygon_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_basic_usage/index.html b/docs_src/source/_static/polyline_basic_usage/index.html index a9eef97776..fa92c8affa 100644 --- a/docs_src/source/_static/polyline_basic_usage/index.html +++ b/docs_src/source/_static/polyline_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_fill_alpha/index.html b/docs_src/source/_static/polyline_fill_alpha/index.html index 1d7ae178ba..6a74695b4e 100644 --- a/docs_src/source/_static/polyline_fill_alpha/index.html +++ b/docs_src/source/_static/polyline_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_fill_color/index.html b/docs_src/source/_static/polyline_fill_color/index.html index 54e98ba802..fe4ce65e51 100644 --- a/docs_src/source/_static/polyline_fill_color/index.html +++ b/docs_src/source/_static/polyline_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_flip_x/index.html b/docs_src/source/_static/polyline_flip_x/index.html index 103ea8bb67..5cc3ec9ef8 100644 --- a/docs_src/source/_static/polyline_flip_x/index.html +++ b/docs_src/source/_static/polyline_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_flip_y/index.html b/docs_src/source/_static/polyline_flip_y/index.html index 262b587d6c..b29a283c8e 100644 --- a/docs_src/source/_static/polyline_flip_y/index.html +++ b/docs_src/source/_static/polyline_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_line_alpha/index.html b/docs_src/source/_static/polyline_line_alpha/index.html index 586108db3e..45bf5b2e2b 100644 --- a/docs_src/source/_static/polyline_line_alpha/index.html +++ b/docs_src/source/_static/polyline_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_line_color/index.html b/docs_src/source/_static/polyline_line_color/index.html index 3153b1ce77..ad4b1aff58 100644 --- a/docs_src/source/_static/polyline_line_color/index.html +++ b/docs_src/source/_static/polyline_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_line_dash_dot_setting/index.html b/docs_src/source/_static/polyline_line_dash_dot_setting/index.html index cdc3e1622a..3dd77f9cde 100644 --- a/docs_src/source/_static/polyline_line_dash_dot_setting/index.html +++ b/docs_src/source/_static/polyline_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_line_dash_setting/index.html b/docs_src/source/_static/polyline_line_dash_setting/index.html index 43897b5061..5c1d0a7f91 100644 --- a/docs_src/source/_static/polyline_line_dash_setting/index.html +++ b/docs_src/source/_static/polyline_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_line_dot_setting/index.html b/docs_src/source/_static/polyline_line_dot_setting/index.html index 3021f89419..bcae153c95 100644 --- a/docs_src/source/_static/polyline_line_dot_setting/index.html +++ b/docs_src/source/_static/polyline_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_line_round_dot_setting/index.html b/docs_src/source/_static/polyline_line_round_dot_setting/index.html index f6f9ef2523..da993dec04 100644 --- a/docs_src/source/_static/polyline_line_round_dot_setting/index.html +++ b/docs_src/source/_static/polyline_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_line_thickness/index.html b/docs_src/source/_static/polyline_line_thickness/index.html index de0376abdc..c1730ba379 100644 --- a/docs_src/source/_static/polyline_line_thickness/index.html +++ b/docs_src/source/_static/polyline_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_rotation_around_center/index.html b/docs_src/source/_static/polyline_rotation_around_center/index.html index 4200c1ce43..daf6a6f16d 100644 --- a/docs_src/source/_static/polyline_rotation_around_center/index.html +++ b/docs_src/source/_static/polyline_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_scale_x_from_center/index.html b/docs_src/source/_static/polyline_scale_x_from_center/index.html index 89e314323b..4ecf00d440 100644 --- a/docs_src/source/_static/polyline_scale_x_from_center/index.html +++ b/docs_src/source/_static/polyline_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_scale_x_from_point/index.html b/docs_src/source/_static/polyline_scale_x_from_point/index.html index f078ca73c2..8ca295f297 100644 --- a/docs_src/source/_static/polyline_scale_x_from_point/index.html +++ b/docs_src/source/_static/polyline_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_scale_y_from_center/index.html b/docs_src/source/_static/polyline_scale_y_from_center/index.html index fbdf537e5e..d6bc76350c 100644 --- a/docs_src/source/_static/polyline_scale_y_from_center/index.html +++ b/docs_src/source/_static/polyline_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_scale_y_from_point/index.html b/docs_src/source/_static/polyline_scale_y_from_point/index.html index f2c68689e3..5e4ebb626b 100644 --- a/docs_src/source/_static/polyline_scale_y_from_point/index.html +++ b/docs_src/source/_static/polyline_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_set_rotation_around_point/index.html b/docs_src/source/_static/polyline_set_rotation_around_point/index.html index 1aa374edd1..8d0fae14cb 100644 --- a/docs_src/source/_static/polyline_set_rotation_around_point/index.html +++ b/docs_src/source/_static/polyline_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_skew_x/index.html b/docs_src/source/_static/polyline_skew_x/index.html index b891885c9b..b80ca87692 100644 --- a/docs_src/source/_static/polyline_skew_x/index.html +++ b/docs_src/source/_static/polyline_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_skew_y/index.html b/docs_src/source/_static/polyline_skew_y/index.html index 014ae8980e..c19c702976 100644 --- a/docs_src/source/_static/polyline_skew_y/index.html +++ b/docs_src/source/_static/polyline_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_x/index.html b/docs_src/source/_static/polyline_x/index.html index c6ee306272..32b7353901 100644 --- a/docs_src/source/_static/polyline_x/index.html +++ b/docs_src/source/_static/polyline_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/polyline_y/index.html b/docs_src/source/_static/polyline_y/index.html index fd6e3230de..704079d7c5 100644 --- a/docs_src/source/_static/polyline_y/index.html +++ b/docs_src/source/_static/polyline_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_basic_usage/index.html b/docs_src/source/_static/rectangle_basic_usage/index.html index ea7ed06613..2e48180057 100644 --- a/docs_src/source/_static/rectangle_basic_usage/index.html +++ b/docs_src/source/_static/rectangle_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_ellipse_height/index.html b/docs_src/source/_static/rectangle_ellipse_height/index.html index 6e7ddc824b..044a581be3 100644 --- a/docs_src/source/_static/rectangle_ellipse_height/index.html +++ b/docs_src/source/_static/rectangle_ellipse_height/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_ellipse_width/index.html b/docs_src/source/_static/rectangle_ellipse_width/index.html index 646d081fa3..d2897f299a 100644 --- a/docs_src/source/_static/rectangle_ellipse_width/index.html +++ b/docs_src/source/_static/rectangle_ellipse_width/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_fill_alpha/index.html b/docs_src/source/_static/rectangle_fill_alpha/index.html index c05f82c100..6442791989 100644 --- a/docs_src/source/_static/rectangle_fill_alpha/index.html +++ b/docs_src/source/_static/rectangle_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_fill_color/index.html b/docs_src/source/_static/rectangle_fill_color/index.html index b9208d89dd..0ebe89143e 100644 --- a/docs_src/source/_static/rectangle_fill_color/index.html +++ b/docs_src/source/_static/rectangle_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_flip_x/index.html b/docs_src/source/_static/rectangle_flip_x/index.html index af2a028fbc..5053bc8a82 100644 --- a/docs_src/source/_static/rectangle_flip_x/index.html +++ b/docs_src/source/_static/rectangle_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_flip_y/index.html b/docs_src/source/_static/rectangle_flip_y/index.html index fb4d6276f4..d688df3356 100644 --- a/docs_src/source/_static/rectangle_flip_y/index.html +++ b/docs_src/source/_static/rectangle_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_geom_basic_usage/index.html b/docs_src/source/_static/rectangle_geom_basic_usage/index.html index 83cd2ee6b5..e1abf526d9 100644 --- a/docs_src/source/_static/rectangle_geom_basic_usage/index.html +++ b/docs_src/source/_static/rectangle_geom_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_geom_each_attribute_point/index.html b/docs_src/source/_static/rectangle_geom_each_attribute_point/index.html index f7711e6c74..4b312e6db2 100644 --- a/docs_src/source/_static/rectangle_geom_each_attribute_point/index.html +++ b/docs_src/source/_static/rectangle_geom_each_attribute_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_height/index.html b/docs_src/source/_static/rectangle_height/index.html index 5dd7f4a5ac..c893c16a1c 100644 --- a/docs_src/source/_static/rectangle_height/index.html +++ b/docs_src/source/_static/rectangle_height/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_line_alpha/index.html b/docs_src/source/_static/rectangle_line_alpha/index.html index d592c5130c..66a450404d 100644 --- a/docs_src/source/_static/rectangle_line_alpha/index.html +++ b/docs_src/source/_static/rectangle_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_line_color/index.html b/docs_src/source/_static/rectangle_line_color/index.html index 105959a885..829f5a1a1d 100644 --- a/docs_src/source/_static/rectangle_line_color/index.html +++ b/docs_src/source/_static/rectangle_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_line_dash_dot_setting/index.html b/docs_src/source/_static/rectangle_line_dash_dot_setting/index.html index cbffce846e..1634b53d20 100644 --- a/docs_src/source/_static/rectangle_line_dash_dot_setting/index.html +++ b/docs_src/source/_static/rectangle_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_line_dash_setting/index.html b/docs_src/source/_static/rectangle_line_dash_setting/index.html index 8d3820a455..d164900a30 100644 --- a/docs_src/source/_static/rectangle_line_dash_setting/index.html +++ b/docs_src/source/_static/rectangle_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_line_dot_setting/index.html b/docs_src/source/_static/rectangle_line_dot_setting/index.html index dc756f565e..295cea1817 100644 --- a/docs_src/source/_static/rectangle_line_dot_setting/index.html +++ b/docs_src/source/_static/rectangle_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_line_round_dot_setting/index.html b/docs_src/source/_static/rectangle_line_round_dot_setting/index.html index 645fdde30e..86dfd6ad8e 100644 --- a/docs_src/source/_static/rectangle_line_round_dot_setting/index.html +++ b/docs_src/source/_static/rectangle_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_line_thickness/index.html b/docs_src/source/_static/rectangle_line_thickness/index.html index 9afd1b6c20..49124a4382 100644 --- a/docs_src/source/_static/rectangle_line_thickness/index.html +++ b/docs_src/source/_static/rectangle_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_rotation_around_center/index.html b/docs_src/source/_static/rectangle_rotation_around_center/index.html index bce79c3a6f..ebfd9b1762 100644 --- a/docs_src/source/_static/rectangle_rotation_around_center/index.html +++ b/docs_src/source/_static/rectangle_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_scale_x_from_center/index.html b/docs_src/source/_static/rectangle_scale_x_from_center/index.html index 47aaa222d4..d0190d02df 100644 --- a/docs_src/source/_static/rectangle_scale_x_from_center/index.html +++ b/docs_src/source/_static/rectangle_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_scale_x_from_point/index.html b/docs_src/source/_static/rectangle_scale_x_from_point/index.html index f86286b5b7..12c384d084 100644 --- a/docs_src/source/_static/rectangle_scale_x_from_point/index.html +++ b/docs_src/source/_static/rectangle_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_scale_y_from_center/index.html b/docs_src/source/_static/rectangle_scale_y_from_center/index.html index c621695e8d..e2b4e33d83 100644 --- a/docs_src/source/_static/rectangle_scale_y_from_center/index.html +++ b/docs_src/source/_static/rectangle_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_scale_y_from_point/index.html b/docs_src/source/_static/rectangle_scale_y_from_point/index.html index 7ee6ceedd4..6d0716016e 100644 --- a/docs_src/source/_static/rectangle_scale_y_from_point/index.html +++ b/docs_src/source/_static/rectangle_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_set_rotation_around_point/index.html b/docs_src/source/_static/rectangle_set_rotation_around_point/index.html index ddd4ba2d20..2a2e03823e 100644 --- a/docs_src/source/_static/rectangle_set_rotation_around_point/index.html +++ b/docs_src/source/_static/rectangle_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_skew_x/index.html b/docs_src/source/_static/rectangle_skew_x/index.html index 23527276bd..ea8c66d541 100644 --- a/docs_src/source/_static/rectangle_skew_x/index.html +++ b/docs_src/source/_static/rectangle_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_skew_y/index.html b/docs_src/source/_static/rectangle_skew_y/index.html index dbedea52cc..40d6e7f8fb 100644 --- a/docs_src/source/_static/rectangle_skew_y/index.html +++ b/docs_src/source/_static/rectangle_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_width/index.html b/docs_src/source/_static/rectangle_width/index.html index e2fc8d2ede..c352b2370d 100644 --- a/docs_src/source/_static/rectangle_width/index.html +++ b/docs_src/source/_static/rectangle_width/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_x/index.html b/docs_src/source/_static/rectangle_x/index.html index 9581971723..3e27d576cb 100644 --- a/docs_src/source/_static/rectangle_x/index.html +++ b/docs_src/source/_static/rectangle_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/rectangle_y/index.html b/docs_src/source/_static/rectangle_y/index.html index 5dcec59de5..5bcba45120 100644 --- a/docs_src/source/_static/rectangle_y/index.html +++ b/docs_src/source/_static/rectangle_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/remove_children_basic_usage/index.html b/docs_src/source/_static/remove_children_basic_usage/index.html index 22fd86a228..050dc87989 100644 --- a/docs_src/source/_static/remove_children_basic_usage/index.html +++ b/docs_src/source/_static/remove_children_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/sprite_basic_usage_of_add_child/index.html b/docs_src/source/_static/sprite_basic_usage_of_add_child/index.html index 2add17040c..bd0d300efc 100644 --- a/docs_src/source/_static/sprite_basic_usage_of_add_child/index.html +++ b/docs_src/source/_static/sprite_basic_usage_of_add_child/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/sprite_basic_usage_of_remove_child/index.html b/docs_src/source/_static/sprite_basic_usage_of_remove_child/index.html index 8970e38ca2..3c44c6d489 100644 --- a/docs_src/source/_static/sprite_basic_usage_of_remove_child/index.html +++ b/docs_src/source/_static/sprite_basic_usage_of_remove_child/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/sprite_contains_basic_usage/index.html b/docs_src/source/_static/sprite_contains_basic_usage/index.html index b61ee26a57..d7e3e1a3f0 100644 --- a/docs_src/source/_static/sprite_contains_basic_usage/index.html +++ b/docs_src/source/_static/sprite_contains_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/sprite_graphics_attribute/index.html b/docs_src/source/_static/sprite_graphics_attribute/index.html index 77b9ea9c6b..67227c9f4f 100644 --- a/docs_src/source/_static/sprite_graphics_attribute/index.html +++ b/docs_src/source/_static/sprite_graphics_attribute/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/sprite_move_instances_simultaneously/index.html b/docs_src/source/_static/sprite_move_instances_simultaneously/index.html index a91dd552be..ba120a3a1f 100644 --- a/docs_src/source/_static/sprite_move_instances_simultaneously/index.html +++ b/docs_src/source/_static/sprite_move_instances_simultaneously/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_align/index.html b/docs_src/source/_static/svg_text_align/index.html index b5d3741ed1..131ae1625c 100644 --- a/docs_src/source/_static/svg_text_align/index.html +++ b/docs_src/source/_static/svg_text_align/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_align_note/index.html b/docs_src/source/_static/svg_text_align_note/index.html index 177e8deb36..a5d9892b10 100644 --- a/docs_src/source/_static/svg_text_align_note/index.html +++ b/docs_src/source/_static/svg_text_align_note/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_basic_usage/index.html b/docs_src/source/_static/svg_text_basic_usage/index.html index 0203c4aea0..8bf81c0bcc 100644 --- a/docs_src/source/_static/svg_text_basic_usage/index.html +++ b/docs_src/source/_static/svg_text_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_bold/index.html b/docs_src/source/_static/svg_text_bold/index.html index 3ef28ec719..e4ef67a738 100644 --- a/docs_src/source/_static/svg_text_bold/index.html +++ b/docs_src/source/_static/svg_text_bold/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_fill_alpha/index.html b/docs_src/source/_static/svg_text_fill_alpha/index.html index 1c45787afa..461a4e51dd 100644 --- a/docs_src/source/_static/svg_text_fill_alpha/index.html +++ b/docs_src/source/_static/svg_text_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_fill_color/index.html b/docs_src/source/_static/svg_text_fill_color/index.html index f5017a9187..0cf183260d 100644 --- a/docs_src/source/_static/svg_text_fill_color/index.html +++ b/docs_src/source/_static/svg_text_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_font_family/index.html b/docs_src/source/_static/svg_text_font_family/index.html index 97c63e7c64..9cd45039ad 100644 --- a/docs_src/source/_static/svg_text_font_family/index.html +++ b/docs_src/source/_static/svg_text_font_family/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_font_size/index.html b/docs_src/source/_static/svg_text_font_size/index.html index bb9307ccf0..bb23cc9c56 100644 --- a/docs_src/source/_static/svg_text_font_size/index.html +++ b/docs_src/source/_static/svg_text_font_size/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_italic/index.html b/docs_src/source/_static/svg_text_italic/index.html index cd70b12ea0..3fcb3d507b 100644 --- a/docs_src/source/_static/svg_text_italic/index.html +++ b/docs_src/source/_static/svg_text_italic/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_leading/index.html b/docs_src/source/_static/svg_text_leading/index.html index bf56b89cd7..5f711a3bf6 100644 --- a/docs_src/source/_static/svg_text_leading/index.html +++ b/docs_src/source/_static/svg_text_leading/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_line_alpha/index.html b/docs_src/source/_static/svg_text_line_alpha/index.html index a442243530..10e690107e 100644 --- a/docs_src/source/_static/svg_text_line_alpha/index.html +++ b/docs_src/source/_static/svg_text_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_line_color/index.html b/docs_src/source/_static/svg_text_line_color/index.html index b992f565eb..ee42979b34 100644 --- a/docs_src/source/_static/svg_text_line_color/index.html +++ b/docs_src/source/_static/svg_text_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_line_thickness/index.html b/docs_src/source/_static/svg_text_line_thickness/index.html index 9441b459c5..39605104a6 100644 --- a/docs_src/source/_static/svg_text_line_thickness/index.html +++ b/docs_src/source/_static/svg_text_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_note_on_the_y_baseline/index.html b/docs_src/source/_static/svg_text_note_on_the_y_baseline/index.html index b1a889b8b8..807c88470f 100644 --- a/docs_src/source/_static/svg_text_note_on_the_y_baseline/index.html +++ b/docs_src/source/_static/svg_text_note_on_the_y_baseline/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_text/index.html b/docs_src/source/_static/svg_text_text/index.html index 6a4096b844..9800d88618 100644 --- a/docs_src/source/_static/svg_text_text/index.html +++ b/docs_src/source/_static/svg_text_text/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_x/index.html b/docs_src/source/_static/svg_text_x/index.html index 65373c3c07..4d4ac4b66a 100644 --- a/docs_src/source/_static/svg_text_x/index.html +++ b/docs_src/source/_static/svg_text_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_text_y/index.html b/docs_src/source/_static/svg_text_y/index.html index c99c97be1d..640343bb1e 100644 --- a/docs_src/source/_static/svg_text_y/index.html +++ b/docs_src/source/_static/svg_text_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_flip_x/index.html b/docs_src/source/_static/svg_txt_flip_x/index.html index 7716a384cd..f212e154a9 100644 --- a/docs_src/source/_static/svg_txt_flip_x/index.html +++ b/docs_src/source/_static/svg_txt_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_flip_y/index.html b/docs_src/source/_static/svg_txt_flip_y/index.html index 4febb7f007..535cc3c71e 100644 --- a/docs_src/source/_static/svg_txt_flip_y/index.html +++ b/docs_src/source/_static/svg_txt_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_rotation_around_center/index.html b/docs_src/source/_static/svg_txt_rotation_around_center/index.html index 9a06b1b580..c9026644de 100644 --- a/docs_src/source/_static/svg_txt_rotation_around_center/index.html +++ b/docs_src/source/_static/svg_txt_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_rotation_around_point/index.html b/docs_src/source/_static/svg_txt_rotation_around_point/index.html index d08d01b1c0..0c9b13a5ff 100644 --- a/docs_src/source/_static/svg_txt_rotation_around_point/index.html +++ b/docs_src/source/_static/svg_txt_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_scale_x_from_center/index.html b/docs_src/source/_static/svg_txt_scale_x_from_center/index.html index 73cf83ad95..49c7cff55b 100644 --- a/docs_src/source/_static/svg_txt_scale_x_from_center/index.html +++ b/docs_src/source/_static/svg_txt_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_scale_x_from_point/index.html b/docs_src/source/_static/svg_txt_scale_x_from_point/index.html index 439cea1c12..e6fe3f3cce 100644 --- a/docs_src/source/_static/svg_txt_scale_x_from_point/index.html +++ b/docs_src/source/_static/svg_txt_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_span_basic_usage/index.html b/docs_src/source/_static/svg_txt_span_basic_usage/index.html index 7e4dfd410e..396c18ca8d 100644 --- a/docs_src/source/_static/svg_txt_span_basic_usage/index.html +++ b/docs_src/source/_static/svg_txt_span_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_span_bold/index.html b/docs_src/source/_static/svg_txt_span_bold/index.html index feda290004..0e821821d6 100644 --- a/docs_src/source/_static/svg_txt_span_bold/index.html +++ b/docs_src/source/_static/svg_txt_span_bold/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_span_delta_x/index.html b/docs_src/source/_static/svg_txt_span_delta_x/index.html index f202600939..3f2d499704 100644 --- a/docs_src/source/_static/svg_txt_span_delta_x/index.html +++ b/docs_src/source/_static/svg_txt_span_delta_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_span_delta_y/index.html b/docs_src/source/_static/svg_txt_span_delta_y/index.html index 0530b1f7d0..b9609ed2f6 100644 --- a/docs_src/source/_static/svg_txt_span_delta_y/index.html +++ b/docs_src/source/_static/svg_txt_span_delta_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_span_fill_alpha/index.html b/docs_src/source/_static/svg_txt_span_fill_alpha/index.html index 4783895aa8..e94325a877 100644 --- a/docs_src/source/_static/svg_txt_span_fill_alpha/index.html +++ b/docs_src/source/_static/svg_txt_span_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_span_fill_color/index.html b/docs_src/source/_static/svg_txt_span_fill_color/index.html index b3ba8b7d0c..486e36c5ab 100644 --- a/docs_src/source/_static/svg_txt_span_fill_color/index.html +++ b/docs_src/source/_static/svg_txt_span_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_span_font_family/index.html b/docs_src/source/_static/svg_txt_span_font_family/index.html index eb47c76a00..5dfd7ed3d6 100644 --- a/docs_src/source/_static/svg_txt_span_font_family/index.html +++ b/docs_src/source/_static/svg_txt_span_font_family/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_span_font_size/index.html b/docs_src/source/_static/svg_txt_span_font_size/index.html index 14313a27e2..5d23c0dbbc 100644 --- a/docs_src/source/_static/svg_txt_span_font_size/index.html +++ b/docs_src/source/_static/svg_txt_span_font_size/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_span_italic/index.html b/docs_src/source/_static/svg_txt_span_italic/index.html index caad68f7ea..fe2d4b52ef 100644 --- a/docs_src/source/_static/svg_txt_span_italic/index.html +++ b/docs_src/source/_static/svg_txt_span_italic/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_span_line_alpha/index.html b/docs_src/source/_static/svg_txt_span_line_alpha/index.html index 5e036e76b2..46ae0ccf86 100644 --- a/docs_src/source/_static/svg_txt_span_line_alpha/index.html +++ b/docs_src/source/_static/svg_txt_span_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_span_line_color/index.html b/docs_src/source/_static/svg_txt_span_line_color/index.html index 9fa436693d..eae13c4211 100644 --- a/docs_src/source/_static/svg_txt_span_line_color/index.html +++ b/docs_src/source/_static/svg_txt_span_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_span_line_thickness/index.html b/docs_src/source/_static/svg_txt_span_line_thickness/index.html index 8fba761cbb..4080fad07a 100644 --- a/docs_src/source/_static/svg_txt_span_line_thickness/index.html +++ b/docs_src/source/_static/svg_txt_span_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_span_notes_of_the_line_break/index.html b/docs_src/source/_static/svg_txt_span_notes_of_the_line_break/index.html index cd69243192..c90bea3ca5 100644 --- a/docs_src/source/_static/svg_txt_span_notes_of_the_line_break/index.html +++ b/docs_src/source/_static/svg_txt_span_notes_of_the_line_break/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/svg_txt_span_text/index.html b/docs_src/source/_static/svg_txt_span_text/index.html index 2964789b36..33487c9631 100644 --- a/docs_src/source/_static/svg_txt_span_text/index.html +++ b/docs_src/source/_static/svg_txt_span_text/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_basic_usage/index.html b/docs_src/source/_static/triangle_basic_usage/index.html index 76edc730d8..1144fb3e2f 100644 --- a/docs_src/source/_static/triangle_basic_usage/index.html +++ b/docs_src/source/_static/triangle_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_fill_alpha/index.html b/docs_src/source/_static/triangle_fill_alpha/index.html index 936d5ef671..9c6fb74146 100644 --- a/docs_src/source/_static/triangle_fill_alpha/index.html +++ b/docs_src/source/_static/triangle_fill_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_fill_color/index.html b/docs_src/source/_static/triangle_fill_color/index.html index a9c36447b2..b3784a4b21 100644 --- a/docs_src/source/_static/triangle_fill_color/index.html +++ b/docs_src/source/_static/triangle_fill_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_flip_x/index.html b/docs_src/source/_static/triangle_flip_x/index.html index 6a97e70c98..ab0d5a602c 100644 --- a/docs_src/source/_static/triangle_flip_x/index.html +++ b/docs_src/source/_static/triangle_flip_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_flip_y/index.html b/docs_src/source/_static/triangle_flip_y/index.html index 2234e6ab1a..2920ed84ba 100644 --- a/docs_src/source/_static/triangle_flip_y/index.html +++ b/docs_src/source/_static/triangle_flip_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_line_alpha/index.html b/docs_src/source/_static/triangle_line_alpha/index.html index 2ef1bc9179..4555ecbee6 100644 --- a/docs_src/source/_static/triangle_line_alpha/index.html +++ b/docs_src/source/_static/triangle_line_alpha/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_line_color/index.html b/docs_src/source/_static/triangle_line_color/index.html index e1cd03c4d3..ae94f9de9e 100644 --- a/docs_src/source/_static/triangle_line_color/index.html +++ b/docs_src/source/_static/triangle_line_color/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_line_dash_dot_setting/index.html b/docs_src/source/_static/triangle_line_dash_dot_setting/index.html index 94d965ab8c..7d8bc07f84 100644 --- a/docs_src/source/_static/triangle_line_dash_dot_setting/index.html +++ b/docs_src/source/_static/triangle_line_dash_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_line_dash_setting/index.html b/docs_src/source/_static/triangle_line_dash_setting/index.html index b536fb2862..440c0a5860 100644 --- a/docs_src/source/_static/triangle_line_dash_setting/index.html +++ b/docs_src/source/_static/triangle_line_dash_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_line_dot_setting/index.html b/docs_src/source/_static/triangle_line_dot_setting/index.html index a8ec900d15..efc6ec184e 100644 --- a/docs_src/source/_static/triangle_line_dot_setting/index.html +++ b/docs_src/source/_static/triangle_line_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_line_round_dot_setting/index.html b/docs_src/source/_static/triangle_line_round_dot_setting/index.html index 3c6f1e31ae..2c10e4f4f9 100644 --- a/docs_src/source/_static/triangle_line_round_dot_setting/index.html +++ b/docs_src/source/_static/triangle_line_round_dot_setting/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_line_thickness/index.html b/docs_src/source/_static/triangle_line_thickness/index.html index 129a2bed05..5222d38826 100644 --- a/docs_src/source/_static/triangle_line_thickness/index.html +++ b/docs_src/source/_static/triangle_line_thickness/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_rotation_around_center/index.html b/docs_src/source/_static/triangle_rotation_around_center/index.html index 92b27d517c..c2c32b86cd 100644 --- a/docs_src/source/_static/triangle_rotation_around_center/index.html +++ b/docs_src/source/_static/triangle_rotation_around_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_scale_x_from_center/index.html b/docs_src/source/_static/triangle_scale_x_from_center/index.html index 790f13d735..33e5844ee6 100644 --- a/docs_src/source/_static/triangle_scale_x_from_center/index.html +++ b/docs_src/source/_static/triangle_scale_x_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_scale_y_from_center/index.html b/docs_src/source/_static/triangle_scale_y_from_center/index.html index 90e49b7355..68f6bdfa08 100644 --- a/docs_src/source/_static/triangle_scale_y_from_center/index.html +++ b/docs_src/source/_static/triangle_scale_y_from_center/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_set_rotation_around_point/index.html b/docs_src/source/_static/triangle_set_rotation_around_point/index.html index 1a8b55a80d..40a14f82fb 100644 --- a/docs_src/source/_static/triangle_set_rotation_around_point/index.html +++ b/docs_src/source/_static/triangle_set_rotation_around_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_set_scale_x_from_point/index.html b/docs_src/source/_static/triangle_set_scale_x_from_point/index.html index 32dcee67f8..02550c07b6 100644 --- a/docs_src/source/_static/triangle_set_scale_x_from_point/index.html +++ b/docs_src/source/_static/triangle_set_scale_x_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_set_scale_y_from_point/index.html b/docs_src/source/_static/triangle_set_scale_y_from_point/index.html index bd64b16fb4..c5405c25b6 100644 --- a/docs_src/source/_static/triangle_set_scale_y_from_point/index.html +++ b/docs_src/source/_static/triangle_set_scale_y_from_point/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_skew_x/index.html b/docs_src/source/_static/triangle_skew_x/index.html index b243ddfd9c..2ca0fe9c29 100644 --- a/docs_src/source/_static/triangle_skew_x/index.html +++ b/docs_src/source/_static/triangle_skew_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_skew_y/index.html b/docs_src/source/_static/triangle_skew_y/index.html index 2e7690b5c8..7e1cf1f5bc 100644 --- a/docs_src/source/_static/triangle_skew_y/index.html +++ b/docs_src/source/_static/triangle_skew_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_x/index.html b/docs_src/source/_static/triangle_x/index.html index 897955b4ad..4f9368a27e 100644 --- a/docs_src/source/_static/triangle_x/index.html +++ b/docs_src/source/_static/triangle_x/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_x1/index.html b/docs_src/source/_static/triangle_x1/index.html index 308e108e00..14785cb664 100644 --- a/docs_src/source/_static/triangle_x1/index.html +++ b/docs_src/source/_static/triangle_x1/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_x2/index.html b/docs_src/source/_static/triangle_x2/index.html index e8b15d7576..af334cc386 100644 --- a/docs_src/source/_static/triangle_x2/index.html +++ b/docs_src/source/_static/triangle_x2/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_x3/index.html b/docs_src/source/_static/triangle_x3/index.html index e7565f44ff..ad003d9341 100644 --- a/docs_src/source/_static/triangle_x3/index.html +++ b/docs_src/source/_static/triangle_x3/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_y/index.html b/docs_src/source/_static/triangle_y/index.html index e0bbf06be5..b5ad83505f 100644 --- a/docs_src/source/_static/triangle_y/index.html +++ b/docs_src/source/_static/triangle_y/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_y1/index.html b/docs_src/source/_static/triangle_y1/index.html index b0869a1d1d..c16b106ec2 100644 --- a/docs_src/source/_static/triangle_y1/index.html +++ b/docs_src/source/_static/triangle_y1/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_y2/index.html b/docs_src/source/_static/triangle_y2/index.html index 3f4f3dc560..4d61f525f4 100644 --- a/docs_src/source/_static/triangle_y2/index.html +++ b/docs_src/source/_static/triangle_y2/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/triangle_y3/index.html b/docs_src/source/_static/triangle_y3/index.html index cfb4c23c8a..564e723de5 100644 --- a/docs_src/source/_static/triangle_y3/index.html +++ b/docs_src/source/_static/triangle_y3/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/unbind_enter_frame_all_basic_usage/index.html b/docs_src/source/_static/unbind_enter_frame_all_basic_usage/index.html index 1c78690108..17d42e66b3 100644 --- a/docs_src/source/_static/unbind_enter_frame_all_basic_usage/index.html +++ b/docs_src/source/_static/unbind_enter_frame_all_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/_static/unbind_enter_frame_basic_usage/index.html b/docs_src/source/_static/unbind_enter_frame_basic_usage/index.html index cfb53efd13..ed36ffdb7d 100644 --- a/docs_src/source/_static/unbind_enter_frame_basic_usage/index.html +++ b/docs_src/source/_static/unbind_enter_frame_basic_usage/index.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs_src/source/enter_frame.md b/docs_src/source/enter_frame.md index d32aa1304a..16f1f2e808 100644 --- a/docs_src/source/enter_frame.md +++ b/docs_src/source/enter_frame.md @@ -80,7 +80,7 @@ ap.save_overall_html(dest_dir_path="enter_frame_basic_usage/") Note: the document build script generates and updates this API document section automatically. Maybe this section is duplicated compared with previous sections. -**[Interface signature]** `enter_frame(self, handler: Callable[[apysc._event.enter_frame_event.EnterFrameEvent, ~_Options], NoneType], *, fps: apysc._time.fps.FPS =