diff --git a/_build/html/.buildinfo b/_build/html/.buildinfo index 371e8c7..606e43e 100644 --- a/_build/html/.buildinfo +++ b/_build/html/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: bd9add27c6c7b46f7f9cc7e532aef33c +config: a17eda6b2f4cc4d1bf0c442022dd05ae tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/_build/html/.doctrees/appendix.doctree b/_build/html/.doctrees/appendix.doctree index 629087c..bb66e48 100644 --- a/_build/html/.doctrees/appendix.doctree +++ b/_build/html/.doctrees/appendix.doctree Binary files differ diff --git a/_build/html/.doctrees/environment.pickle b/_build/html/.doctrees/environment.pickle index 8205827..3275d5d 100644 --- a/_build/html/.doctrees/environment.pickle +++ b/_build/html/.doctrees/environment.pickle Binary files differ diff --git a/_build/html/.doctrees/intro.doctree b/_build/html/.doctrees/intro.doctree index f3b903c..9c5c7c5 100644 --- a/_build/html/.doctrees/intro.doctree +++ b/_build/html/.doctrees/intro.doctree Binary files differ diff --git a/_build/html/.doctrees/week1.doctree b/_build/html/.doctrees/week1.doctree index bb049ae..3b86385 100644 --- a/_build/html/.doctrees/week1.doctree +++ b/_build/html/.doctrees/week1.doctree Binary files differ diff --git a/_build/html/_sources/appendix.rst.txt b/_build/html/_sources/appendix.rst.txt index c97cc29..2f85b7d 100644 --- a/_build/html/_sources/appendix.rst.txt +++ b/_build/html/_sources/appendix.rst.txt @@ -54,3 +54,15 @@ :linenos: :emphasize-lines: 8-19 +LINE Notify (HTTPS POST) +--------------------------------------------- + +https://notify-bot.line.me/ja/ で、トークンを取得しておく必要があります。 + + +.. literalinclude:: src/line01.ino + :caption: + :name: line01 + :language: arduino + :linenos: + :emphasize-lines: 25-29 diff --git a/_build/html/_sources/intro.rst.txt b/_build/html/_sources/intro.rst.txt index a5c2615..7b65096 100644 --- a/_build/html/_sources/intro.rst.txt +++ b/_build/html/_sources/intro.rst.txt @@ -49,4 +49,5 @@ - M5StickC非公式日本語リファレンス https://lang-ship.com/reference/unofficial/M5StickC - スイッチサイエンス M5StickC Plus https://www.switch-science.com/catalog/6470 -- M5StickCガイド https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/docs/M5StickC_Guide_Japanese.pdf \ No newline at end of file +- M5StickCガイド https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/docs/M5StickC_Guide_Japanese.pdf +- arduino-cli https://github.com/arduino/arduino-cli コマンドラインでビルド&書き込みできるツール。最初はGUI版の Arduino IDE をおすすめしますが、慣れてきたら入れてみてもよいかも。MacOSなら brew install で簡単に導入できます。 \ No newline at end of file diff --git a/_build/html/_sources/week1.rst.txt b/_build/html/_sources/week1.rst.txt index 968e5fc..dd7bfe2 100644 --- a/_build/html/_sources/week1.rst.txt +++ b/_build/html/_sources/week1.rst.txt @@ -1,7 +1,8 @@ .. |br| raw:: html -
+ + 1週目 ======================== @@ -375,7 +376,11 @@ :linenos: .. :emphasize-lines: 5 -.. warning:: https (SSL) 通信をする場合は、スケッチ例→HTTPClient→BasicHttpsClient を参照して、WiFiClientSecure クラスを使用してください。 +.. role:: strike + + +.. warning:: https (SSL) 通信でPOSTメソッドで送信する場合は、付録→LINE Notify (:numref:`line01`)を参考にしてください。以前は「スケッチ例→HTTPClient→BasicHttpsClient を参照して、WiFiClientSecure クラスを使用してください。」と書いていましたが、WifiClientSecureは必要ありません。 + Google Spreadsheet にデータを送信する -------------------------------------------------------- @@ -400,7 +405,7 @@ :linenos: :emphasize-lines: 14,18 -.. warning:: doGet関数の返却値は、本来はHTTPのレスポンスとして受け取れるのですが、現状の ``HTTPClient`` ではリダイレクトをうまく処理できないため、Google App Scriptの出力を受け取れない可能性があります。 +.. warning:: doGet関数の返却値は、本来はHTTPのレスポンスとして受け取れるのですが、現状の ``HTTPClient`` ではリダイレクトをうまく処理できない?ため、Google App Scriptの出力を受け取れない可能性があります。 WebServer ---------------------------------------- diff --git a/_build/html/appendix.html b/_build/html/appendix.html index a431df9..0ba68cd 100644 --- a/_build/html/appendix.html +++ b/_build/html/appendix.html @@ -14,6 +14,7 @@ + @@ -101,6 +102,7 @@
  • 実験室で赤外リモコン送信テスト
  • 気温・湿度・気圧 (ENV II Sensor)
  • Speaker Hatで音をだす
  • +
  • LINE Notify (HTTPS POST)
  • @@ -573,6 +575,118 @@ +
    +

    LINE Notify (HTTPS POST)

    +

    https://notify-bot.line.me/ja/ で、トークンを取得しておく必要があります。

    +
    +
    リスト 32 src/line01.ino
    +
     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
    #include <WiFi.h>
    +#include <WiFiMulti.h>
    +#include <WiFiClient.h>
    +#include <HTTPClient.h>
    +
    +WiFiMulti WiFiMulti;
    +
    +void setup() {
    +  Serial.begin(115200);
    +  WiFi.mode(WIFI_STA);
    +  WiFiMulti.addAP("miura_asp_2g", "********");
    +
    +  // wait for WiFi connection
    +  Serial.print("Waiting for WiFi to connect...");
    +  while ((WiFiMulti.run() != WL_CONNECTED)) {
    +    Serial.print(".");
    +    delay(50);
    +  }
    +  Serial.println(" connected");
    +}
    +
    +void loop() {
    +  HTTPClient http;
    +
    +  if (http.begin("https://notify-api.line.me/api/notify")) {  // HTTPS
    +    http.addHeader("Authorization", "Bearer TOKENTOKENTOKEN"); // ここのTOKENTOKEN... の部分に、取得したTokenを指定する
    +    http.addHeader("Content-Type", "application/x-www-form-urlencoded"); // format of postdata
    +    String postdata = "message=日本語でも大丈夫です";
    +    int httpCode = http.POST(postdata);
    +
    +    // httpCode will be negative on error
    +    if (httpCode > 0) {
    +      // HTTP header has been send and Server response header has been handled
    +      Serial.printf("[HTTP] GET... code: %d\n", httpCode);
    +
    +      // file found at server
    +      if (httpCode == HTTP_CODE_OK || httpCode == HTTP_CODE_MOVED_PERMANENTLY) {
    +        String payload = http.getString();
    +        Serial.println(payload);
    +      }
    +    } else {
    +      Serial.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str());
    +    }
    +    http.end();
    +  } else {
    +    Serial.printf("[HTTP] Unable to connect\n");
    +  }
    +
    +  Serial.println();
    +  Serial.println("Waiting 2 minutes..."); 
    +  delay(60*2*1000); // 120秒まつ
    +}
    +
    +
    +
    +
    diff --git a/_build/html/arduino.html b/_build/html/arduino.html index b275914..baa3c6f 100644 --- a/_build/html/arduino.html +++ b/_build/html/arduino.html @@ -14,6 +14,7 @@ + @@ -91,9 +92,12 @@ diff --git a/_build/html/conclusion.html b/_build/html/conclusion.html index c0c95ed..0774a07 100644 --- a/_build/html/conclusion.html +++ b/_build/html/conclusion.html @@ -14,6 +14,7 @@ + @@ -91,9 +92,12 @@ diff --git a/_build/html/faq.html b/_build/html/faq.html index 0f902d9..31c5031 100644 --- a/_build/html/faq.html +++ b/_build/html/faq.html @@ -14,6 +14,7 @@ + diff --git a/_build/html/genindex.html b/_build/html/genindex.html index dca5ab3..8e15c38 100644 --- a/_build/html/genindex.html +++ b/_build/html/genindex.html @@ -15,6 +15,7 @@ + diff --git a/_build/html/index.html b/_build/html/index.html index 23aa90e..b7256e8 100644 --- a/_build/html/index.html +++ b/_build/html/index.html @@ -14,6 +14,7 @@ + @@ -231,6 +232,7 @@
  • 実験室で赤外リモコン送信テスト
  • 気温・湿度・気圧 (ENV II Sensor)
  • Speaker Hatで音をだす
  • +
  • LINE Notify (HTTPS POST)
  • diff --git a/_build/html/intro.html b/_build/html/intro.html index fce46a9..7ef5b34 100644 --- a/_build/html/intro.html +++ b/_build/html/intro.html @@ -14,6 +14,7 @@ + @@ -101,6 +102,7 @@
  • 1週目
  • 2週目
  • Frequently-Asked Questions (FAQ: よくある質問)
  • +
  • 付録
  • @@ -214,6 +216,7 @@
  • M5StickC非公式日本語リファレンス https://lang-ship.com/reference/unofficial/M5StickC
  • スイッチサイエンス M5StickC Plus https://www.switch-science.com/catalog/6470
  • M5StickCガイド https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/docs/M5StickC_Guide_Japanese.pdf
  • +
  • arduino-cli https://github.com/arduino/arduino-cli コマンドラインでビルド&書き込みできるツール。最初はGUI版の Arduino IDE をおすすめしますが、慣れてきたら入れてみてもよいかも。MacOSなら brew install で簡単に導入できます。
  • diff --git a/_build/html/objects.inv b/_build/html/objects.inv index 29542b9..43a90d9 100644 --- a/_build/html/objects.inv +++ b/_build/html/objects.inv Binary files differ diff --git a/_build/html/pre.html b/_build/html/pre.html index 8b55835..6e31e82 100644 --- a/_build/html/pre.html +++ b/_build/html/pre.html @@ -14,6 +14,7 @@ + @@ -117,6 +118,7 @@
  • 1週目
  • 2週目
  • Frequently-Asked Questions (FAQ: よくある質問)
  • +
  • 付録
  • diff --git a/_build/html/search.html b/_build/html/search.html index 5fb04b5..c7ce527 100644 --- a/_build/html/search.html +++ b/_build/html/search.html @@ -14,6 +14,7 @@ + diff --git a/_build/html/searchindex.js b/_build/html/searchindex.js index 187ce2d..9b3e1af 100644 --- a/_build/html/searchindex.js +++ b/_build/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["appendix","arduino","conclusion","faq","index","intro","pre","tutorial","week1","week2"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:55},filenames:["appendix.rst","arduino.rst","conclusion.rst","faq.rst","index.rst","intro.rst","pre.rst","tutorial.rst","week1.rst","week2.rst"],objects:{},objnames:{},objtypes:{},terms:{"!)":3,"!\"":[0,8],"!\\":8,"#.":[],"#\uff08":8,"#]":7,"#define":8,"#include":[0,1,8,9],"#ir":0,"$date":7,"$revision":7,"%%":0,"%d":[8,9],"%i":[],"&&":8,"©":[],"')":8,"'.":8,"';":8,"'\\n":8,"'\\r":8,"']":8,"'a":8,"'c":8,"'s":[0,7,8],"'t":0,"'z":8,"(!":3,"(&":[0,8,9],"('":8,"('#":[],"((":[0,8],"()":[0,1,8,9],"(=":8,"([":8,"(\"":[0,1,8,9],"(\\":[],"(\u30d4\u30f3":8,"(\u79d2":8,"(address":8,"(analogread":8,"(b":8,"(beeptask":9,"(bit":8,"(black":[0,8],"(blue":[0,8],"(bm":[],"(body":[],"(bool":8,"(buf":8,"(button":8,"(c":8,"(callback":8,"(char":8,"(clientid":8,"(coin":0,"(const":0,"(contentservice":8,"(cyan":8,"(delay":0,"(dname":8,"(e":8,"(f":0,"(g":8,"(general":8,"(github":0,"(google":8,"(gotip":8,"(green":[8,9],"(header":[],"(hex":8,"(hid":8,"(httpcode":8,"(hz":8,"(i":[7,8],"(infrared":4,"(int":8,"(isr":9,"(k":8,"(kirled":[0,8],"(lcd":8,"(lcdtask":9,"(ledchannel":0,"(ledtask":9,"(link":[],"(listen\u3057":8,"(localtime":8,"(loops":8,"(mac":8,"(macbt":8,"(message":8,"(meth":8,"(ms":8,"(mutex":9,"(n":8,"(name":8,"(now":8,"(null":9,"(num":[],"(orange":8,"(p":8,"(params":8,"(payload":8,"(photoshot":0,"(pin":[1,8,9],"(post":8,"(pubtopic":8,"(purple":8,"(pwm":8,"(pwmch":[],"(r":8,"(random":9,"(recording":0,"(red":0,"(req":8,"(rrggbb":8,"(rval":[],"(samsungstate":0,"(sbuf":8,"(server":8,"(serverclients":8,"(servo":0,"(sheet":8,"(sht":0,"(sjdoc":8,"(ssid":8,"(str":8,"(string":8,"(struct":8,"(tmp":8,"(topic":8,"(true":8,"(tskname":9,"(u":0,"(uint":8,"(v":8,"(var":8,"(void":9,"(weatherapi":8,"(white":[0,8,9],"(wifi":8,"(wificlient":8,"(will":8,"(windows":[],"(withargtask":9,"(yellow":[0,8],")%":9,"))":[0,8,9],"),":8,").":8,");":[0,1,8,9],")=":8,")\"":[7,8],")\\":[],")\u300d":[8,9],")connecting":8,")payload":8,"){":8,"*(":9,"*)":[8,9],"**":[8,9],"***":8,"*/":[8,9],"*\"":[7,8],"*]":7,"*c":[0,8],"*p":8,"++":[0,8,9],"+-":[1,8],"+\"":[7,8],"+\\":[],"+]":[],"+t":8,", $":[],", \"":7,", and":7,", g":8,", gyrox":8,", i":9,", match":8,", meth":8,", num":8,", or":7,", r":8,",%":8,",\"":[8,9],"-+":[1,8],"--":[1,8,9],"->":8,"-\"":[7,8,9],"-and":0,"-ap":8,"-arduinoide":[],"-asked":[4,8],"-based":5,"-buildpath":[],"-c":6,"-chan":[],"-cn":5,"-dict":7,"-display":8,"-enumerated":7,"-env":0,"-esp":8,"-fix":[],"-free":7,"-hokuson":0,"-ii":0,"-io":[1,8],"-kernel":9,"-l":[],"-led":0,"-left":7,"-level":7,"-literal":7,"-m":8,"-mutex":[],"-notes":7,"-numbered":7,"-numfig":7,"-o":7,"-pages":[],"-polarity":0,"-quote":7,"-r":8,"-rest":7,"-role":7,"-sa":8,"-science":[5,6],"-sending":0,"-shenzhen":5,"-ship":[0,1,5,8],"-specific":7,"-start":[],"-symbol":7,"-table":7,"-terminated":8,"-type":8,"-typec":3,"-u":0,"-unit":0,"-users":[2,7],"-xxxxx":[],"-xxxxxxxxxx":6,"-z":8,".)":7,".*":9,".,":8,"..":[0,7],"...":[0,8],".\"":[7,8],".\\":[],".\n#":[],".\uff09":8,".addap":8,".aliyuncs":5,".appendrow":8,".arduino":6,".available":8,".be":8,".beep":8,".begin":[0,8,9],".biz":8,".c":[8,9],".cc":6,".charat":8,".color":8,".com":[0,1,5,6,8],".concat":8,".connect":8,".connected":8,".cpp":9,".createsprite":8,".createtextoutput":8,".date":8,".disconnect":8,".e":[],".end":8,".espressif":6,".fillrect":8,".fillscreen":[0,8,9],".fillsprite":8,".ftdichip":6,".g":0,".get":8,".getacceldata":8,".getactivespreadsheet":8,".getbtnpress":8,".getcapture":8,".getdata":8,".getgyrodata":8,".getint":8,".getlastrow":8,".getrange":8,".getsheetbyname":8,".getstring":8,".gettime":8,".githubusercontent":[],".globalmatch":8,".google":8,".gres":8,".gs":8,".h":[0,1,8,9],".hasclient":8,".hatenablog":0,".hours":8,".htm":6,".html":[1,7,8,9],".imamura":8,".info":[7,8],".init":8,".ino":[1,2,8,9],".istlab":[7,8],".jp":[1,2,7,8,9],".js":8,".json":6,".length":8,".localip":8,".log":[],".loop":8,".mimetype":8,".minutes":8,".mongonta":[],".month":8,".mute":[8,9],".net":[7,8],".nict":8,".org":7,".oss":5,".pdf":5,".png":7,".print":8,".printf":[0,1,8,9],".println":[0,8,9],".publish":8,".push":8,".pushsprite":8,".putint":8,".read":8,".readbytes":8,".readhumidity":0,".readpressure":0,".readtemperature":0,".restart":8,".run":8,".screenbreath":8,".seconds":8,".sendnec":[0,8],".sendraw":0,".sendsamsungac":0,".sendsony":0,".setbeep":8,".setcallback":8,".setcolordepth":8,".setcursor":[0,8,9],".setdata":8,".setmimetype":8,".setnodelay":8,".setrotation":[0,8,9],".setserver":8,".settextcolor":[0,8,9],".settextfont":8,".settextsize":[0,8,9],".settime":8,".sf":7,".sourceforge":7,".sparkfun":0,".startswith":8,".state":8,".status":8,".stop":8,".storange":[1,8],".stringify":8,".subscribe":8,".substring":8,".switch":[5,6],".text":8,".tm":8,".toint":8,".tolowercase":8,".tone":[8,9],".trim":8,".tsukumijima":8,".txt":[0,7],".update":8,".usbserial":6,".wasreleased":[0,8],".wasreleasefor":8,".weekday":8,".write":8,".xxx":8,".year":8,".zip":[],"/ #":8,"/ (":8,"/ \"":[],"/ \u4f8b":8,"/ \u6ce8":8,"/#":8,"/%":8,"/%s":8,"/*":[0,9],"/+":8,"//":[0,1,8,9],"/\"":8,"/accgyro":8,"/adafruit":0,"/adc":[1,8],"/address":8,"/analogread":1,"/api":8,"/arc":[],"/arduino":8,"/blog":[0,1,8],"/brtos":9,"/bts":8,"/button":8,"/c":0,"/cabin":[],"/catalog":[5,6],"/cdm":[],"/cds":8,"/city":8,"/class":[],"/client":8,"/comp":[],"/cplus":[6,8],"/crankyoldgit":0,"/crc":1,"/cu":6,"/dev":6,"/diode":0,"/directives":7,"/disconnected":8,"/dl":6,"/docs":[5,7],"/doget":8,"/download":[],"/drivers":6,"/ea":8,"/en":6,"/entry":0,"/env":0,"/esp":[],"/espressif":8,"/ex1":[],"/examples":8,"/exec":8,"/factorytest":1,"/forecast":8,"/freertos":[],"/functions":[],"/g":[],"/gi":[],"/gm":[],"/howto":[],"/httpclient":8,"/httpserver":8,"/humid":8,"/i":1,"/images":7,"/ip":8,"/ir":[],"/irremoteesp":0,"/irsend":[0,8],"/isprime":[],"/items":8,"/jbox":[],"/kitazaki":8,"/lcd":8,"/led":8,"/libraries":8,"/linux":[],"/lo":8,"/m":[0,1,5,8],"/macos":[],"/macros":8,"/main":6,"/master":8,"/mqtt":8,"/nnn":8,"/ntp":8,"/numbering":7,"/o":[],"/or":8,"/output":8,"/package":6,"/pages":[],"/peripherals":[1,8],"/phones":0,"/pjs":[],"/plain":8,"/polarity":0,"/pref":8,"/preferences":8,"/program":0,"/pwm":8,"/ref":7,"/reference":[1,5,8],"/regexp":8,"/resource":5,"/reverse":7,"/rmt":1,"/roles":7,"/rst":7,"/rtc":8,"/run":[],"/rxd":0,"/s":8,"/sensor":8,"/serial":8,"/servohat":8,"/sketch":[1,2],"/software":6,"/sound":8,"/speakerhat":0,"/sprite":8,"/startcounter":8,"/str":8,"/task":9,"/telnet":8,"/temp":8,"/tutorials":0,"/txd":0,"/unofficial":[1,5,8],"/vcp":6,"/wifi":8,"/work":[0,1,8],"/xxxxxxxxxx":8,"0fhpa":0,"0x":[0,8],"0xa":[0,8],"0xxxxxxxxx":[],"10":8,"11":8,"14":8,"1\u3064":[8,9],"1\u30d0\u30a4\u30c8":8,"1\u56de":8,"1\u79d2":8,"1\u884c":8,"1byte":8,"1ce":8,"1jzbaet":8,"1s":8,"1uxc":8,"1x":8,"21":8,"2\u3064":[0,8],"2d":1,"2dict":8,"2f":[0,8],"2fd":8,"2fhpa":0,"2g":8,"2s":1,"3\u3064":[8,9],"3d":1,"3v":[1,8],"3x":0,"4e":8,"5\u7cfb":8,"5bit":8,"5e":8,"5stack":[0,5,6,8],"5stick":[],"5stickc":[0,1,5,6,8],"5stickcplus":[0,1,5,8,9],"5v":8,"6b":8,"6bc":[],"6bit":8,"6k":0,"8bit":8,"8k":0,"8pixel":8,"8y":8,":%":[0,8],":/":[0,1,2,5,6,7,8,9],"::":7,":>":[],":\"":7,":`":[],":file":[],":numref":[],":text":8,"; p":8,";)":[],";;":9,";\"":[],";\\":[],";dr":0,"< *":8,"< c":8,"":9,"=\"":7,"=\\":[],"={":8,"><":[],">>":7,">\"":[],">`":[],"??":8,"?val":8,"@python":7,"[%s":9,"['":8,"[0":8,"[6":8,"[\"":8,"[]":[0,9],"[a":8,"[b":8,"[c":8,"[cit":7,"[i":[0,8,9],"[k":8,"[len":8,"[max":8,"[n":8,"[note":9,"[pos":8,"\"#":[],"\"$":[],"\"%":8,"\"([":8,"\")":[0,8,9],"\"+":8,"\",":[0,1,7,8,9],"\"..":7,"\"/":[],"\":":7,"\";":8,"\"<":[],"\"":8,"\"\"":[],"\"]":8,"\"b":[],"\"g":[],"\"r":[],"\"}":[],"\\\"":[],"\\\"+":[],"\\n":[0,1,8,9],"\\r":0,"\u2026\u300d":[6,8],"\u2192\u300c":6,"\u2192\u300d":6,"\u2192\u5024":8,"\u2192apps":8,"\u2192basichttpsclient":8,"\u2192httpclient":8,"\u2605\u2605":8,"\u3001(":8,"\u3001*":8,"\u3001/":[],"\u3001:":[],"\u3001?":8,"\u3001\u2714":6,"\u3001\u300c":[6,8,9],"\u3001`":[],"\u3001esp":5,"\u3001iot":[],"\u3001pc":8,"\u3002*":[],"\u3002-":8,"\u3002:":[6,8],"\u3002\"":8,"\u3002\u300c":6,"\u3002\u3059\u3053\u3057":6,"\u3002\u3061":[0,6,8,9],"\u3002\u3064\u307e\u308a":8,"\u3002\u307b\u3052\u307b\u3052\u307b\u3052":7,"\u3002\u307e\u305f":[0,6,8],"\u3002\uff08":[0,8,9],"\u3002\uff09":[0,8,9],"\u3002a":8,"\u3002arduino":6,"\u3002b":8,"\u3002bluetoth":8,"\u3002c":[],"\u3002color":[],"\u3002configtime":8,"\u3002g":8,"\u3002gpio":8,"\u3002httpclient":8,"\u3002ide":6,"\u3002json":8,"\u3002mac":6,"\u3002map":[],"\u3002match":8,"\u3002p":8,"\u3002pc":8,"\u3002pin":8,"\u3002post\u30e1\u30bd\u30c3\u30c9":[],"\u3002preference":8,"\u3002retain":8,"\u3002serial":8,"\u3002settextsize":8,"\u3002val":8,"\u3002windows":6,"\u300c=":8,"\u300c\u25bc":9,"\u300c\u30d6\u30ed\u30fc\u30ab":8,"\u300cbmp":8,"\u300chigh":8,"\u300cm":[],"\u300cserial":8,"\u300d(":8,"\u300d*":[],"\u300d\u2192":[6,8],"\u300d\uff09":5,"\u301cz":8,"\u3042\u3044":8,"\u3042\u304d\u3089\u304b":8,"\u3042\u3063":0,"\u3042\u3068":[6,8],"\u3042\u307e\u308a":8,"\u3042\u308a":[0,2,3,6,8,9],"\u3042\u308b":[4,8,9],"\u3042\u308c":8,"\u3042\u308f\u305b":8,"\u3044\u3044":0,"\u3044\u3044\u304b\u3048\u308b":9,"\u3044\u304d":8,"\u3044\u304f\u3064\u304b":9,"\u3044\u3061\u3069":6,"\u3044\u3061\u3070\u3093":2,"\u3044\u307e\u305b":9,"\u3044\u308a":7,"\u3044\u308b":[2,3,5,6,8,9],"\u3044\u308c":[3,6,8],"\u3046\u3061":8,"\u3046\u307e\u304f":[5,8],"\u3046\u307e\u304f\u3044\u304b":[0,5,8],"\u3048\u3089\u3076":6,"\u304a\u3044":8,"\u304a\u304b\u3057\u304f":8,"\u304a\u304d":8,"\u304a\u304d\u307e\u3057\u3087":8,"\u304a\u304d\u308b":8,"\u304a\u304f":[0,6,8],"\u304a\u3051\u308b":5,"\u304a\u3057":8,"\u304a\u3059":6,"\u304a\u307e\u3051":8,"\u304a\u3082":6,"\u304a\u3082\u3044":0,"\u304a\u3082\u3063":8,"\u304a\u3088\u3073":5,"\u304a\u308a":5,"\u304b\u3048":[],"\u304b\u304b\u308a":[6,8],"\u304b\u304b\u308b":8,"\u304b\u3051\u308b":5,"\u304b\u3064":9,"\u304b\u3069\u3046":[5,8],"\u304b\u306a\u308a":[],"\u304b\u3076\u3089":8,"\u304b\u3082":8,"\u304b\u3084":[],"\u304b\u3089":[0,1,5,6,7,8,9],"\u304b\u308f\u308a":5,"\u304c\u3042\u308a":6,"\u304c\u304f\u308b":[],"\u304c\u3064\u3044":9,"\u304c\u3064\u304b\u3048":8,"\u304c\u3064\u304f":7,"\u304c\u3069":5,"\u304c\u308b":[],"\u304c\u308f\u304b\u308a":3,"\u304f\u3060":[0,3,6,8,9],"\u304f\u308a\u304b\u3048":8,"\u304f\u308c\u308b":8,"\u3053\u3053":[2,6,7,8,9],"\u3053\u3053\u304c":8,"\u3053\u3053\u3067":[8,9],"\u3053\u3053\u306b":8,"\u3053\u3053\u306e":[2,8,9],"\u3053\u3053\u306f":8,"\u3053\u3061\u3089":[5,6,8,9],"\u3053\u3068":[0,3,5,6,8,9],"\u3053\u306e":[1,3,5,8,9],"\u3053\u308c":[8,9],"\u3053\u308c\u3089":1,"\u3054\u3068":[8,9],"\u3055\u3044":[0,3,6,8,9],"\u3055\u3044\u3054":8,"\u3055\u3089\u306b":7,"\u3057\u304b":[3,7],"\u3057\u3057":8,"\u3057\u3066":8,"\u3057\u3070\u3089\u304f":3,"\u3057\u307e\u3044":8,"\u3057\u307e\u3057\u3087":8,"\u3057\u307e\u3059":8,"\u3057\u307e\u305b":8,"\u3057\u3084\u3059\u3044":9,"\u3057\u3088":8,"\u3059\u304e":[],"\u3059\u3050":8,"\u3059\u3053\u3057":[0,8],"\u3059\u3053\u3057\u308f\u304b\u308a":6,"\u3059\u3059\u3081":[5,8],"\u3059\u3059\u3081\u304b":4,"\u3059\u3059\u3081\u308b":5,"\u3059\u3079":[6,8],"\u3059\u3079\u3066":8,"\u3059\u308b":[0,2,3,4,5,7],"\u3059\u308c":8,"\u305a\u3064":8,"\u305b\u308b":[0,5,8,9],"\u305c\u3072\u3084\u3063":8,"\u305d\u3046\u3044\u3046":[],"\u305d\u3053\u306b\u5bfe\u3057":8,"\u305d\u306e":[3,4,5],"\u305d\u306e\u3046\u3048":0,"\u305d\u308c":8,"\u305d\u308c\u305e\u308c":[8,9],"\u305f\u3044":[1,8,9],"\u305f\u3044\u304b":5,"\u305f\u3046\u3048":8,"\u305f\u304b":[5,8],"\u305f\u3060\u304d":5,"\u305f\u3060\u3057":[6,8,9],"\u305f\u3068\u3048":8,"\u305f\u3073":8,"\u305f\u307b\u3046":9,"\u305f\u3081":[5,6,8,9],"\u305f\u3089":[6,8,9],"\u305f\u308a":[5,6,8,9],"\u305f\u308a\u3057":8,"\u3060\u3046\u3048":5,"\u3060\u3051":[0,6,8],"\u3060\u3055\u3044":[0,3,6,8],"\u3060\u3059":4,"\u3060\u3068":7,"\u3060\u308a":8,"\u3061\u306a\u307f":8,"\u3061\u3089\u3064\u304d":8,"\u3064\u3044":7,"\u3064\u304b\u3044":8,"\u3064\u304b\u3046":[],"\u3064\u304b\u3063":[8,9],"\u3064\u304f\u3088\u3046":7,"\u3064\u306a\u3044":8,"\u3064\u3076":8,"\u3064\u3076\u3059":8,"\u3066\u304f":8,"\u3066\u307f":8,"\u3066\u307f\u307e\u3057\u3087":9,"\u3067\u304d":[4,5,6,7,8,9],"\u3067\u304d\u308b":[5,6,8,9],"\u3067\u304f":8,"\u3067\u3057":0,"\u3067\u3057\u3087":8,"\u3067\u3059":[0,1,2,3,6,7,8,9],"\u3067\u3064":8,"\u3067\u307f\u307e\u3057\u3087":3,"\u3067\u307f\u308b":8,"\u3067\u3082":8,"\u3068\u3044\u3046":[6,8,9],"\u3068\u3044\u3063":8,"\u3068\u3048":[1,9],"\u3068\u304b\u3044":8,"\u3068\u304d":[0,4,6,7,9],"\u3068\u304d\u306b":3,"\u3068\u304f":5,"\u3068\u3053\u308d":8,"\u3068\u3057":8,"\u3068\u3057\u3066":[5,7,8,9],"\u3068\u3059\u308b":8,"\u3068\u308b":5,"\u3068\u308c":9,"\u3069\u3046":[5,8],"\u3069\u3061\u3089":8,"\u306a\u3044":[0,4,6,7,8,9],"\u306a\u304a":8,"\u306a\u304a\u3057":6,"\u306a\u304b":8,"\u306a\u304b\u3063":[5,9],"\u306a\u304c\u3089":[3,5,8],"\u306a\u304f":[6,8],"\u306a\u3051\u308c":8,"\u306a\u3057":[6,8],"\u306a\u305c\u304b":0,"\u306a\u3063":5,"\u306a\u3069":[3,8],"\u306a\u306b":8,"\u306a\u306e":[],"\u306a\u307f":[0,6,8,9],"\u306a\u3081\u3089\u304b":8,"\u306a\u3089":[8,9],"\u306a\u308a":[1,6,7,8,9],"\u306a\u308b":[5,8,9],"\u306a\u3093":[0,8],"\u306b\u304a\u304d":0,"\u306b\u304b\u3044":8,"\u306b\u3057":[],"\u306b\u3059\u3059\u307f":6,"\u306b\u3059\u308c":7,"\u306b\u305b":8,"\u306b\u3064\u3044\u3066":[2,5,8,9],"\u306b\u307e\u3068\u3081\u3088":9,"\u306b\u3082":8,"\u306b\u3088\u3063":[],"\u306b\u3088\u3063\u3066":8,"\u306b\u3088\u308a":8,"\u306b\u3088\u308b":[2,5,7,8],"\u306b\u5bfe\u3057":[8,9],"\u306b\u5bfe\u3059\u308b":[5,8],"\u306b\u5bfe\u5fdc":[],"\u306b\u5f93\u3063":0,"\u306e\u305e\u3044":9,"\u306e\u305e\u307e\u3057\u3044":8,"\u306e\u3061":8,"\u306e\u3061\u3089\u3064\u304d":8,"\u306e\u3067":[0,6,8],"\u306e\u307b\u3046":8,"\u306e\u307f":[4,6,8,9],"\u306e\u3088\u3046":[1,6,7,8],"\u306f\u3044\u3089":4,"\u306f\u3058\u307e\u308b":8,"\u3072\u3068\u3064":8,"\u3072\u3089\u3044":8,"\u3072\u3089\u304d":[6,8,9],"\u3072\u3089\u304f":[6,8,9],"\u3079\u304d":5,"\u307b\u3046":[1,3,8],"\u307b\u304b":8,"\u307b\u3052\u307b\u3052":[],"\u307b\u3069":8,"\u307b\u307c":[0,8],"\u307e\u3057":[0,2,8,9],"\u307e\u3057\u3087":[],"\u307e\u3059":[0,1,2,3,5,6,7,8,9],"\u307e\u305a":8,"\u307e\u305b":[0,8,9],"\u307e\u305f":[8,9],"\u307e\u3060":8,"\u307e\u3063":2,"\u307e\u3067":[6,8,9],"\u307e\u3068":2,"\u307e\u3068\u3081":[],"\u307e\u3068\u3081\u3066":[5,8],"\u307e\u3068\u3081\u308b":[5,9],"\u307e\u308b":[],"\u307f\u3066":[3,6],"\u307f\u306a\u3057":[],"\u307f\u307e\u3057\u3087":[3,8],"\u307f\u308b":8,"\u3082\u3042\u308a":[],"\u3082\u3057":[0,8],"\u3082\u3061":[],"\u3082\u3061\u3044\u308b":[],"\u3082\u3068":5,"\u3082\u306e":8,"\u3084\u3059":5,"\u3084\u3059\u3044":3,"\u3084\u3059\u304f":[5,6,8,9],"\u3084\u3063":8,"\u3084setbeep":8,"\u3088\u3044":[0,8],"\u3088\u3046":[1,3,5,6,8,9],"\u3088\u304f":[0,2,4,8],"\u3088\u308a":[0,6,8,9],"\u3089\u308c":5,"\u3089\u308c\u308b":5,"\u308c\u307e\u305b":[3,8],"\u308c\u308b":[6,8],"\u308f\u304b\u308a":[0,5],"\u3092\u3044\u308c":8,"\u3092\u3048\u3089\u3073":3,"\u3092\u304a\u3057":[6,8],"\u3092\u304b\u3048":3,"\u3092\u3059\u308c":7,"\u3092\u3064\u304b\u3044":7,"\u3092\u3064\u304b\u3046":8,"\u3092\u3084\u3063":6,"\u30a2\u30a4\u30b3\u30f3":[6,9],"\u30a2\u30a4\u30b3\u30f3\u30dc\u30bf\u30f3":[6,8],"\u30a2\u30af\u30bb\u30b9":9,"\u30a2\u30af\u30bb\u30b9\u30dd\u30a4\u30f3\u30c8":8,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u30a2\u30c9\u30d0\u30fc\u30bf\u30a4\u30ba":[],"\u30a2\u30c9\u30d0\u30fc\u30bf\u30a4\u30ba\u30e1\u30f3\u30c8":[],"\u30a2\u30c9\u30ec\u30b9":[2,7,9],"\u30a2\u30ca\u30ed\u30b0\u30bb\u30f3\u30b5":4,"\u30a2\u30d7\u30ea":8,"\u30a4\u30af\u30ea\u30d7\u30b9":6,"\u30a4\u30f3\u30af\u30eb\u30fc\u30c9":[6,8],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[0,4,8],"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":5,"\u30a4\u30f3\u30c7\u30f3\u30c8":8,"\u30a4\u30f3\u30c8\u30ed\u30c0\u30af\u30b7\u30e7\u30f3":[],"\u30a4\u30f3\u30c8\u30ed\u30c0\u30af\u30b7\u30e7\u30f3intro":[],"\u30a6\u30a4\u30eb\u30b9":3,"\u30a6\u30a7\u30d6\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":8,"\u30a8\u30c7\u30a3\u30bf":8,"\u30aa\u30af\u30bf\u30fc\u30d6":8,"\u30aa\u30d5\u30b9\u30af\u30ea\u30fc\u30f3":8,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":8,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30d5\u30a1\u30a4\u30eb":6,"\u30aa\u30d7\u30b7\u30e7\u30f3":8,"\u30aa\u30ea\u30b8\u30ca\u30eb":8,"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9":8,"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30cf\u30fc\u30c9\u30a6\u30a7\u30a2\u30de\u30a4\u30b3\u30f3":[],"\u30ab\u30a6\u30f3\u30bf":8,"\u30ab\u30e1\u30e9":8,"\u30ab\u30e9\u30fc":5,"\u30ac\u30a4\u30c9":[5,8],"\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3":7,"\u30ad\u30e5\u30fc":4,"\u30ad\u30fc":8,"\u30ad\u30fc\u30dc\u30fc\u30c9":8,"\u30ae\u30b6\u30ae\u30b6":8,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":8,"\u30af\u30e9\u30b9":4,"\u30af\u30ea\u30c3\u30af":[2,3,6,7],"\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9":8,"\u30af\u30ed\u30c3\u30af":8,"\u30b0\u30e9\u30d5":8,"\u30b0\u30e9\u30f3\u30c9":8,"\u30b0\u30eb\u30fc\u30d7":5,"\u30b0\u30ed\u30fc\u30d0\u30eb":[8,9],"\u30b1\u30fc\u30d6\u30eb":[3,8],"\u30b3\u30d4\u30fc":[5,6,8,9],"\u30b3\u30de\u30f3\u30c9":[],"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":8,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":8,"\u30b3\u30e1\u30f3\u30c8":[0,8],"\u30b3\u30f3\u30d1\u30a4\u30eb":[4,6],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30c6\u30b9\u30c8":7,"\u30b3\u30fc\u30c9":4,"\u30b3\u30fc\u30c9\u30a8\u30c7\u30a3\u30bf":[6,8],"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":8,"\u30b5\u30a4\u30ba":[0,8],"\u30b5\u30a4\u30c8":[2,7,8],"\u30b5\u30b9\u30da\u30f3\u30c9":9,"\u30b5\u30d6\u30b9\u30af\u30e9\u30a4\u30d6":8,"\u30b5\u30d6\u30b9\u30af\u30e9\u30a4\u30d6\u30e2\u30c7\u30eb":8,"\u30b5\u30de\u30fc\u30bf\u30a4\u30e0":8,"\u30b5\u30f3\u30d7\u30eb":0,"\u30b5\u30f3\u30d7\u30eb\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":[],"\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0":[6,8],"\u30b5\u30fc\u30d0":[4,5],"\u30b5\u30fc\u30d3\u30b9":8,"\u30b5\u30fc\u30dc":8,"\u30b5\u30fc\u30dc\u30cf\u30c3\u30c8":4,"\u30b5\u30fc\u30dc\u30e2\u30fc\u30bf":[4,5],"\u30b5\u30fc\u30dc\u30e2\u30fc\u30bf\u30fc":[],"\u30b7\u30a7\u30eb":8,"\u30b7\u30b9\u30c6\u30e0":[5,7,8],"\u30b7\u30b9\u30c6\u30e0\u30ea\u30bb\u30c3\u30c8":8,"\u30b7\u30d5\u30c8":8,"\u30b7\u30ea\u30a2\u30eb":8,"\u30b7\u30ea\u30a2\u30eb\u30b3\u30f3\u30bd\u30fc\u30eb":[0,8,9],"\u30b7\u30ea\u30a2\u30eb\u30d7\u30ed\u30c3\u30bf":8,"\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8":3,"\u30b7\u30ea\u30a2\u30eb\u30e2\u30cb\u30bf":[8,9],"\u30b7\u30ea\u30fc\u30ba":5,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":8,"\u30b7\u30f3\u30d7\u30eb":8,"\u30b7\u30fc\u30c8":8,"\u30b8\u30a7\u30a4\u30bd\u30f3":8,"\u30b8\u30e3\u30a4\u30ed\u30bb\u30f3\u30b5":8,"\u30b8\u30e3\u30a4\u30ed\u30c7\u30fc\u30bf":8,"\u30b8\u30e3\u30f3\u30d1\u30ef\u30a4\u30e4":8,"\u30b8\u30e3\u30f3\u30d7":[],"\u30b9\u30a4\u30c3\u30c1\u30b5\u30a4\u30a8\u30f3\u30b9":5,"\u30b9\u30ad\u30c3\u30d7":8,"\u30b9\u30af\u30ea\u30d7\u30c8\u30a8\u30c7\u30a3\u30bf":8,"\u30b9\u30af\u30ed\u30fc\u30eb":8,"\u30b9\u30b1\u30c3\u30c1":[6,8],"\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af":[8,9],"\u30b9\u30bf\u30fc\u30c8":8,"\u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc":6,"\u30b9\u30c6\u30c3\u30d7":6,"\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9":8,"\u30b9\u30d7\u30e9\u30a4\u30c8":4,"\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8":8,"\u30b9\u30da\u30fc\u30b9":8,"\u30bb\u30de\u30d5\u30a9":4,"\u30bb\u30f3\u30b5":[4,5,9],"\u30bb\u30f3\u30b5\u30c7\u30fc\u30bf":8,"\u30bb\u30f3\u30b5\u30fc":[],"\u30bd\u30b1\u30c3\u30c8":[],"\u30bd\u30d5\u30c8":3,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":[],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":[1,2,6,8],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u30d5\u30a1\u30a4\u30eb":[8,9],"\u30bf\u30a4\u30d7":8,"\u30bf\u30a4\u30df\u30f3\u30b0":8,"\u30bf\u30b9\u30af":[3,4],"\u30bf\u30b9\u30af\u30cf\u30f3\u30c9\u30eb":9,"\u30bf\u30d6":[0,9],"\u30bf\u30fc\u30df\u30ca\u30eb":8,"\u30c0\u30a6\u30f3\u30b0\u30ec\u30fc\u30c9":[0,8],"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":6,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u30b5\u30a4\u30c8":6,"\u30c0\u30d6\u30eb\u30d0\u30c3\u30d5\u30a1\u30ea\u30f3\u30b0":8,"\u30c1\u30a7\u30c3\u30af":6,"\u30c1\u30e3\u30f3\u30cd\u30eb":8,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":7,"\u30c1\u30fc\u30e0":5,"\u30c4\u30fc\u30eb":[6,8],"\u30c6\u30ad\u30b9\u30c8":6,"\u30c6\u30ad\u30b9\u30c8\u30a8\u30ea\u30a2":[6,8],"\u30c6\u30b9\u30c8":[4,7,8],"\u30c7\u30a3\u30b9\u30d7\u30ec\u30a4":[4,5],"\u30c7\u30a3\u30b9\u30d7\u30ec\u30a4\u30b5\u30a4\u30ba":6,"\u30c7\u30d0\u30a4\u30b9":6,"\u30c7\u30d0\u30a4\u30b9\u30de\u30cd\u30fc\u30b8\u30e3":6,"\u30c7\u30d0\u30a4\u30b9p":[],"\u30c7\u30d0\u30a4\u30b9s":[],"\u30c7\u30d5\u30a9\u30eb\u30c8":6,"\u30c7\u30e5\u30fc\u30c6\u30a3\u30fc":8,"\u30c7\u30fc\u30bf":[0,4,5],"\u30c8\u30d4\u30c3\u30af":[],"\u30c9\u30e9\u30a4\u30d0":6,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":8,"\u30ce\u30f3\u30d6\u30ed\u30c3\u30ad\u30f3\u30b0":8,"\u30cf\u30a4\u30e9\u30a4\u30c8":[0,8],"\u30cf\u30c3\u30b7\u30e5":8,"\u30cf\u30fc\u30c9\u30a6\u30a7\u30a2":8,"\u30d0\u30a4\u30ca\u30ea\u30bb\u30de\u30d5\u30a9":9,"\u30d0\u30c3\u30af\u30b0\u30e9\u30a6\u30f3\u30c9":8,"\u30d0\u30c3\u30c6\u30ea":6,"\u30d0\u30fc\u30b8\u30e7\u30f3":[0,4,8],"\u30d1\u30b9\u30ef\u30fc\u30c9":8,"\u30d1\u30bd\u30b3\u30f3":8,"\u30d1\u30cd\u30eb":5,"\u30d1\u30d6\u30ea\u30c3\u30b7\u30e5":8,"\u30d1\u30eb\u30b9":8,"\u30d1\u30fc\u30b8\u30f3\u30b0":8,"\u30d1\u30fc\u30b9":8,"\u30d2\u30f3\u30c8":4,"\u30d3\u30c3\u30c8":8,"\u30d3\u30c3\u30c8\u30ab\u30e9\u30fc":8,"\u30d3\u30c7\u30aa\u30ab\u30e1\u30e9":0,"\u30d3\u30fc\u30d7":8,"\u30d4\u30af\u30bb\u30eb":8,"\u30d4\u30af\u30bb\u30eb\u30d5\u30a9\u30f3\u30c8":8,"\u30d4\u30f3":[0,8],"\u30d5\u30a1\u30a4\u30eb":[0,1,3,6,7,8,9],"\u30d5\u30a1\u30a4\u30eb\u30e1\u30cb\u30e5\u30fc":8,"\u30d5\u30a3\u30fc\u30eb\u30c9":6,"\u30d5\u30a9\u30eb\u30c0":[8,9],"\u30d5\u30a9\u30f3\u30c8":8,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":8,"\u30d5\u30e9\u30c3\u30b7\u30e5":8,"\u30d5\u30e9\u30c3\u30b7\u30e5\u30e1\u30e2\u30ea":0,"\u30d6\u30b6\u30fc":[4,6,9],"\u30d6\u30e9\u30a6\u30b6":8,"\u30d6\u30ec\u30c3\u30c9\u30dc\u30fc\u30c9":8,"\u30d6\u30ed\u30c3\u30af\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":6,"\u30d6\u30ed\u30fc\u30ab":8,"\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":[5,9],"\u30d7\u30ed\u30b0\u30e9\u30e0":[0,4],"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[8,9],"\u30d7\u30ed\u30bb\u30c3\u30b5":9,"\u30d7\u30ed\u30c8\u30b3\u30eb":8,"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb":8,"\u30d7\u30ed\u30f3\u30d7\u30c8":8,"\u30d8\u30c3\u30c0":8,"\u30d8\u30c3\u30c0\u30d5\u30a1\u30a4\u30eb":8,"\u30d9\u30fc\u30b9":6,"\u30da\u30fc\u30b8":[4,5,8],"\u30dc\u30bf\u30f3":[0,4,5,6,9],"\u30dc\u30bf\u30f3\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":8,"\u30dc\u30fc\u30c9":9,"\u30dc\u30fc\u30c9\u30de\u30cd\u30fc\u30b8\u30e3":6,"\u30dc\u30fc\u30c9\u30de\u30cd\u30fc\u30b8\u30e3\u30fc":[],"\u30dc\u30fc\u30ec\u30fc\u30c8":8,"\u30dd\u30a4\u30f3\u30bf":[8,9],"\u30dd\u30fc\u30bf\u30eb":[],"\u30dd\u30fc\u30c8":[6,8],"\u30de\u30a4\u30af\u30ed\u30d7\u30ed\u30bb\u30c3\u30b5":5,"\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9":6,"\u30de\u30a4\u30b3\u30f3\u30e2\u30b8\u30e5\u30fc\u30eb":5,"\u30de\u30a6\u30b9":8,"\u30de\u30c3\u30c1":8,"\u30de\u30c3\u30c1\u30e3\u30fc":8,"\u30de\u30c3\u30c1\u30f3\u30b0":8,"\u30de\u30eb\u30c1\u30bf\u30b9\u30af":9,"\u30de\u30fc\u30b8":9,"\u30df\u30e5\u30fc\u30c6\u30c3\u30af\u30b9":4,"\u30df\u30ea":[8,9],"\u30e1\u30a4\u30f3":[8,9],"\u30e1\u30bd\u30c3\u30c9":8,"\u30e1\u30c3\u30bb\u30fc\u30b8":8,"\u30e1\u30cb\u30e5\u30fc":[6,8,9],"\u30e1\u30e2\u30ea":[3,9],"\u30e1\u30f3\u30d0\u30fc":8,"\u30e2\u30b8\u30e5\u30fc\u30eb":8,"\u30e2\u30cb\u30bf":[],"\u30e2\u30fc\u30bf":8,"\u30e2\u30fc\u30c9":[1,8,9],"\u30e9\u30a4\u30d6\u30e9\u30ea":8,"\u30e9\u30a4\u30d6\u30e9\u30ea\u30de\u30cd\u30fc\u30b8\u30e3":[0,6,8],"\u30e9\u30f3\u30c0\u30e0":9,"\u30e9\u30f3\u30d7":8,"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u30af\u30ed\u30c3\u30af":8,"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":9,"\u30ea\u30af\u30a8\u30b9\u30c8":8,"\u30ea\u30af\u30a8\u30b9\u30c8\u30dc\u30c7\u30a3":8,"\u30ea\u30b9\u30c8":[0,8,9],"\u30ea\u30bb\u30c3\u30c8":8,"\u30ea\u30bd\u30fc\u30b9":9,"\u30ea\u30c0\u30a4\u30ec\u30af\u30c8":8,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[5,8,9],"\u30ea\u30e2\u30b3\u30f3":4,"\u30ea\u30f3\u30af":[0,1,2,6],"\u30eb\u30fc\u30d7":8,"\u30ec\u30b8\u30e5\u30fc\u30e0":9,"\u30ec\u30b9\u30dd\u30f3\u30b9":8,"\u30ec\u30d9\u30eb":5,"\u30ec\u30dd\u30fc\u30c8":5,"\u30ed\u30fc\u30ab\u30eb":9,"\u30fb\u30bf\u30a4\u30df\u30f3\u30b0":9,"\u30fb\u30d0\u30a4\u30ca\u30ea":8,"\u30fb\u4e00\u6642\u505c\u6b62":9,"\u30fb\u5171\u6709":8,"\u30fb\u65b9\u5411\u6027":5,"\u30fb\u96fb\u529b":4,"\u4e00\u65e6":8,"\u4e00\u6642":9,"\u4e00\u6642\u7684":3,"\u4e00\u756a\u4e0b":8,"\u4e00\u756a\u5de6":6,"\u4e00\u81f4":[0,8,9],"\u4e00\u822c":8,"\u4e00\u822c\u7684":5,"\u4e00\u89a7":8,"\u4e00\u8cab":5,"\u4e00\u8cab\u6027":[],"\u4e00\u90e8":8,"\u4e09\u6d66":8,"\u4e0a\u8a18":[5,8],"\u4e0a\u90e8":8,"\u4e0b\u8a18":[],"\u4e0d\u5177\u5408":3,"\u4e0d\u63ee":8,"\u4e0d\u8981":8,"\u4e0e\u3048":5,"\u4e0e\u3048\u308b":9,"\u4e21\u65b9":7,"\u4e26\u5217":9,"\u4e3b\u4f53":9,"\u4e88\u5099":5,"\u4e88\u5831":8,"\u4e88\u7fd2":5,"\u4e8b\u524d":4,"\u4e8b\u8c61":8,"\u4e92\u63db":6,"\u4eba\u611f":[],"\u4eba\u6c17":[],"\u4eca\u56de":9,"\u4ecb\u3057":8,"\u4ed5\u69d8":8,"\u4ed5\u7d44":[5,9],"\u4ed5\u8fbc":9,"\u4ed8\u4e0e":8,"\u4ed8\u9332":[4,8],"\u4ee3\u7528":8,"\u4ee5\u4e0a":8,"\u4ee5\u4e0b":[0,5,6,8,9],"\u4ee5\u5916":[8,9],"\u4ee5\u964d":[6,8],"\u4eee\u5b9a":8,"\u4eee\u60f3":8,"\u4eee\u8a2d":8,"\u4f34\u3046":3,"\u4f38\u3070":8,"\u4f38\u9577":[],"\u4f4d\u7f6e":8,"\u4f4e\u3044":0,"\u4f55\u500d":8,"\u4f59\u767d":8,"\u4f5c\u54c1":5,"\u4f5c\u6210":[8,9],"\u4f5c\u696d":[5,6,9],"\u4f7f\u3044":8,"\u4f7f\u3044\u65b9":[0,9],"\u4f7f\u3046":8,"\u4f7f\u3048":[8,9],"\u4f7f\u3048\u308b":8,"\u4f7f\u3063":[6,8,9],"\u4f7f\u308f":[6,8],"\u4f7f\u7528":[3,5,6,8,9],"\u4f8b\u3048":8,"\u4f8b\u5916":8,"\u4fbf\u5229":8,"\u4fdd\u5b58":[8,9],"\u4fdd\u6301":8,"\u4fe1\u53f7":[],"\u4fee\u6b63":8,"\u500b\u5225":8,"\u500d\u6570":8,"\u500d\u7387":8,"\u5024\u3084":8,"\u5024\u4ee5":[],"\u505c\u3081":8,"\u505c\u6b62":[3,8,9],"\u5099\u3048":[5,8],"\u5099\u308f\u3063":9,"\u50cd\u304d":5,"\u512a\u5148":9,"\u5143\u3005":3,"\u5145\u96fb":3,"\u5148\u982d":8,"\u5165\u308a":8,"\u5165\u308c":[0,4,9],"\u5165\u308c\u308b":8,"\u5165\u51fa":9,"\u5165\u529b":[5,6,8,9],"\u5165\u9580":9,"\u5168\u3066":8,"\u5168\u54e1":8,"\u516c\u5f0f":8,"\u516c\u958b":8,"\u5171\u6709":[5,8],"\u5185\u5074":8,"\u5185\u51e6":8,"\u5185\u5305":[8,9],"\u5185\u5bb9":[0,5,8,9],"\u5185\u8535":[0,8],"\u5185\u8535ir":[],"\u5185\u8535irled":[],"\u5185\u8535led":4,"\u5185\u90e8":[1,9],"\u5186\u6ed1":[5,8],"\u518d\u73fe":5,"\u518d\u8d77":8,"\u518d\u8d77\u52d5":[3,6,8],"\u518d\u958b":9,"\u5199\u771f":5,"\u51e6\u7406":[8,9],"\u51fa\u3059":[],"\u51fa\u3059\u4f8b":0,"\u51fa\u3063\u5f35\u3063":8,"\u51fa\u529b":[0,6,8],"\u5206\u5272":9,"\u5206\u62c5":[5,8],"\u5206\u89e3":8,"\u5206\u89e3\u80fd":8,"\u5207\u308a":[8,9],"\u5207\u308a\u65b9":4,"\u5207\u308b":8,"\u5207\u65ad":8,"\u521d\u5fc3":[6,8],"\u521d\u5fc3\u8005":[],"\u521d\u671f":[6,8],"\u5224\u5b9a":8,"\u5225\u30bf\u30d6":0,"\u5225\u7269":8,"\u5225\u95a2\u6570":8,"\u5229\u7528":[4,6,9],"\u5236\u5fa1":[4,9],"\u5236\u9650":[3,8,9],"\u524a\u6e1b":9,"\u524a\u9664":[8,9],"\u524d\u5f8c":8,"\u524d\u63d0":8,"\u524d\u8005":[],"\u5272\u3063":0,"\u5272\u308a\u5f53\u3066\u308b":3,"\u5272\u308a\u8fbc\u307f":9,"\u5272\u5408":5,"\u5275\u9020":5,"\u52a0\u901f":8,"\u52a0\u901f\u5ea6":4,"\u52b9\u679c":[5,8],"\u52d5\u304b":5,"\u52d5\u304b\u3059":8,"\u52d5\u4f5c":[5,8,9],"\u52d5\u753b":8,"\u5316\u3051":8,"\u533a\u5207\u308a":8,"\u533a\u5225":[5,8],"\u5341\u5206":[3,5],"\u5343\u8449":8,"\u534a\u89d2":8,"\u5358\u4f53":8,"\u5358\u7d14":9,"\u5358\u8a9e":5,"\u5371\u967a":8,"\u539f\u56e0":6,"\u53b3\u5bc6":[8,9],"\u53c2\u7167":[1,7,8,9],"\u53c2\u8003":[0,2,5,6,7,8,9],"\u53c2\u8003url":4,"\u53cd\u5bfe":8,"\u53cd\u5fdc":8,"\u53d6\u308a\u9664\u304f":8,"\u53d6\u308c":8,"\u53d6\u308c\u308b":8,"\u53d6\u5f97":[4,9],"\u53d7\u3051":8,"\u53d7\u3051\u53d6\u308c":[],"\u53d7\u4fe1":8,"\u53d7\u5149":8,"\u53d7\u5149\u5668":8,"\u53ef\u5909\u9577":8,"\u53ef\u80fd":[3,8],"\u53f0\u76ee":8,"\u53f3\u4e0a":[6,8,9],"\u53f3\u4e0b":8,"\u5404\u6a5f":5,"\u5404\u81ea":5,"\u5408\u308f":[],"\u5408\u308f\u305b":0,"\u540c\u3058":[0,8,9],"\u540c\u3058\u73ed":8,"\u540c\u58eb":8,"\u540c\u6642":9,"\u540c\u671f":9,"\u540c\u69d8":8,"\u5411\u304b\u3063":8,"\u5411\u304d":[3,8],"\u5411\u3051":[5,6,8],"\u5411\u4e0a":6,"\u542b\u307e":[8,9],"\u542b\u3080":[5,8],"\u5468\u308a":8,"\u5468\u671f":8,"\u5468\u671ft":8,"\u5468\u6ce2":8,"\u5468\u6ce2\u6570":8,"\u547c\u3070":8,"\u547c\u3073":[6,8,9],"\u547c\u3073\u51fa\u3057":8,"\u547c\u3073\u51fa\u305b\u308b":8,"\u547c\u3076":[8,9],"\u547c\u3093":8,"\u547d\u4ee4":8,"\u554f\u984c":8,"\u56db\u89d2":6,"\u56de\u3059":8,"\u56de\u8def":8,"\u56f0\u96e3":8,"\u56f2\u3063":8,"\u56f3\u3078":7,"\u56f3\u3084":5,"\u56f3\u8868":7,"\u56fa\u5b9a":6,"\u5727\u529b":8,"\u57f7\u7b46":5,"\u57fa\u5730":8,"\u57fa\u672c":[5,8,9],"\u57fa\u672c\u7684":[],"\u57fa\u6e96":4,"\u57fa\u790e":5,"\u5831\u544a":5,"\u5831\u544a\u66f8":5,"\u5834\u5408":[0,1,3,5,8,9],"\u5834\u6240":8,"\u5857\u308a":8,"\u5897\u3084":8,"\u5897\u3084\u3059":8,"\u5897\u52a0":6,"\u5909\u3048":8,"\u5909\u5316":8,"\u5909\u63db":4,"\u5909\u6570":[0,8,9],"\u5909\u66f4":8,"\u5916\u5074":8,"\u5916\u90e8":4,"\u591a\u3044":8,"\u5927\u304d\u3044":8,"\u5927\u6587\u5b57":8,"\u5929\u6c17":8,"\u592a\u967d":8,"\u5931\u6557":[0,6,8],"\u59cb\u3081":6,"\u5b66\u3093":[5,9],"\u5b66\u5185":8,"\u5b66\u5916":[],"\u5b66\u7fd2":[],"\u5b89\u3044":3,"\u5b89\u4fa1":5,"\u5b8c\u4e86":8,"\u5b8c\u6210":5,"\u5b9a\u7fa9":[8,9],"\u5b9f\u4e16":5,"\u5b9f\u4e16\u754c":5,"\u5b9f\u65bd":5,"\u5b9f\u753b":8,"\u5b9f\u884c":[8,9],"\u5b9f\u88c5":8,"\u5b9f\u9a13":[4,8,9],"\u5b9f\u9a13\u5ba4":4,"\u5ba3\u8a00":[8,9],"\u5bb9\u91cf":6,"\u5bfe\u51e6":8,"\u5bfe\u5fdc":8,"\u5bfe\u7b56":3,"\u5c0e\u5165":8,"\u5c0f\u3055":8,"\u5c0f\u3055\u304f":8,"\u5c0f\u578b":5,"\u5c0f\u6587\u5b57":8,"\u5c11\u3057":8,"\u5c11\u306a\u3044":[1,8],"\u5c11\u306a\u304f":5,"\u5c5e\u3059\u308b":[],"\u5de5\u5b66":9,"\u5de6\u5074":8,"\u5dee\u3057\u8fbc\u3080":3,"\u5e38\u6642":8,"\u5e38\u6642\u52d5\u3044":9,"\u5e45\u5909":8,"\u5e73\u5747":8,"\u5e74\u5ea6":9,"\u5f0f\u65e5\u672c\u8a9e":5,"\u5f15\u304d\u4f38\u3070":8,"\u5f15\u304d\u8d77\u3053\u3059":[3,9],"\u5f15\u6570":[8,9],"\u5f15\u7528":[5,8],"\u5f31\u3044":[],"\u5f37\u304f":8,"\u5f37\u8abf":1,"\u5f62\u5f0f":[0,5,8],"\u5f71\u97ff":8,"\u5f79\u5272":8,"\u5f85\u305f":8,"\u5f85\u3061\u53d7\u3051":8,"\u5f85\u3061\u53d7\u3051\u308b":8,"\u5f85\u3064":9,"\u5f85\u3064\u4f8b":9,"\u5f85\u6a5f":9,"\u5f8c\u7d99":6,"\u5f8c\u8005":8,"\u5fa9\u5143":8,"\u5fa9\u6d3b":3,"\u5fae\u304b":8,"\u5fc5\u305a":5,"\u5fc5\u8981":[5,6,8,9],"\u5fc5\u9808":8,"\u5fd8\u308c\u308b":8,"\u5fdc\u3058":8,"\u601d\u308f":1,"\u60c5\u5831":[4,5,8,9],"\u60f3\u5b9a":8,"\u610f\u5473":8,"\u610f\u56f3":[5,9],"\u6163\u6027":8,"\u6210\u529f":[8,9],"\u6210\u679c\u7269":5,"\u624b\u5206\u3051":8,"\u624b\u6bb5":8,"\u624b\u8efd":8,"\u624b\u9593":[6,8],"\u624b\u9806":[],"\u6253\u3061\u8fbc\u3080":8,"\u6253\u3064":8,"\u6271\u3044":4,"\u6271\u3046":[],"\u6291\u5236":8,"\u629c\u3051\u308b":3,"\u62b5\u6297":[1,8],"\u62bc\u3057":[0,3,8],"\u62bc\u3059":[6,8],"\u62bd\u51fa":8,"\u62bd\u8c61":5,"\u62c5\u5f53":[5,8],"\u62e1\u5927":[2,7],"\u62e1\u5f35":[6,8],"\u62e1\u5f35\u5b50":[8,9],"\u6307\u5b9a":[8,9],"\u6307\u6a19":[],"\u6307\u793a":[5,6],"\u6319\u52d5":9,"\u633f\u3057":6,"\u633f\u3059\u9762":8,"\u6392\u4ed6":9,"\u63a5\u7d9a":[0,3,4,6],"\u63cf\u753b":8,"\u63d0\u51fa":5,"\u63db\u3048":5,"\u63db\u3048\u308b":8,"\u642d\u8f09":5,"\u64cd\u4f5c":0,"\u6539\u5584":3,"\u6539\u5909":[0,8],"\u6539\u884c":8,"\u6545\u969c":8,"\u6559\u54e1":[5,8],"\u6570\u5024":8,"\u6570\u5909":[],"\u6570\u5b57":6,"\u6570\u79d2":8,"\u6574\u5f62":8,"\u6574\u6570":8,"\u6587\u4f53":5,"\u6587\u5b57":8,"\u6587\u5b57\u5217":4,"\u6587\u6cd5":[],"\u6587\u732e":5,"\u65ad\u7247":8,"\u65b0\u3057\u3044":[0,8],"\u65b0\u898f\u30bf\u30d6":9,"\u65b9\u5f0f":8,"\u65b9\u6cd5":8,"\u65e5\u6642":8,"\u65e5\u672c\u8a9e":[6,9],"\u660e\u308b":8,"\u660e\u5ea6":8,"\u660e\u5feb":[],"\u660e\u78ba":5,"\u660e\u8a18":5,"\u6620\u308a":8,"\u6642\u523b":[4,9],"\u6642\u5dee":8,"\u6642\u8a08":8,"\u6642\u9593":[6,8,9],"\u666e\u901a\u62bc":8,"\u66f2\u3052":8,"\u66f4\u65b0":8,"\u66f8\u3044":[4,8],"\u66f8\u304b":8,"\u66f8\u304d":5,"\u66f8\u304d\u8fbc\u307e":8,"\u66f8\u304d\u8fbc\u307f":[4,9],"\u66f8\u304d\u8fbc\u3080":6,"\u66f8\u304d\u8fbc\u3093":[3,8,9],"\u66f8\u304f":[0,4,9],"\u66f8\u3051":8,"\u66f8\u5f0f":5,"\u66ff\u3048":8,"\u66ff\u3048\u308b":9,"\u6700\u521d":8,"\u6700\u5927":8,"\u6700\u5f8c":8,"\u6700\u60aa":8,"\u6700\u65b0":[0,8],"\u6700\u7d42":8,"\u6700\u8fd1":6,"\u6709\u52b9":8,"\u6709\u540d":6,"\u6709\u7528":5,"\u671b\u307e\u3057\u3044":8,"\u671f\u5f85":[],"\u671f\u9593":5,"\u672c\u4f53":[4,6],"\u672c\u5b9f\u9a13":6,"\u672c\u5f53":8,"\u672c\u6765":8,"\u672c\u8cea":9,"\u67d4\u8edf":6,"\u683c\u7d0d":8,"\u691c\u7d22":6,"\u691c\u8a3c":8,"\u6982\u8981":8,"\u69cb\u6210":[8,9],"\u69cb\u7bc9":5,"\u69cb\u9020":8,"\u6a19\u6e96":8,"\u6a29\u9650":[3,6],"\u6a5f\u5668":[5,8],"\u6a5f\u69cb":9,"\u6a5f\u80fd":[3,5,8,9],"\u6b62\u3081\u308b":8,"\u6b63\u898f":8,"\u6b8b\u3057":8,"\u6b8b\u3059":5,"\u6b8b\u308a":8,"\u6b8b\u308b":8,"\u6bb5\u968e":6,"\u6bd4\u3079":8,"\u6c17\u5727":4,"\u6c17\u6e29":4,"\u6c7a\u3081":5,"\u6ce8\u610f":[1,4,6],"\u6d17\u3044\u51fa\u3057":5,"\u6d3b\u304b\u3057":9,"\u6d3b\u52d5":5,"\u6d41\u901a":8,"\u6d88\u3048":8,"\u6db2\u6676":[4,5],"\u6df1\u3081\u308b":8,"\u6df1\u5165\u308a":8,"\u6e08\u307f":[],"\u6e1b\u3089":[],"\u6e21\u3059":9,"\u6e21\u3059\u4f8b":9,"\u6e29\u5ea6":[],"\u6e7f\u5ea6":4,"\u6e96\u3058\u308b":5,"\u6e96\u5099":[4,5,8],"\u6ea2\u308c\u308b":8,"\u6f14\u7b97":8,"\u70b9\u6ec5":8,"\u70b9\u706f":8,"\u7121\u7dda":[5,8],"\u7167\u5408":8,"\u7167\u5ea6":8,"\u7279\u5b9a":9,"\u7279\u6709":6,"\u72b6\u614b":[6,8,9],"\u72b6\u6cc1":8,"\u72ec\u81ea":5,"\u73ed\u3068\u3057":5,"\u73ed\u3068\u3057\u3066":5,"\u73ed\u5358":5,"\u73fe\u5728":[],"\u73fe\u72b6":8,"\u7406\u7531":5,"\u7406\u89e3":8,"\u74b0\u5883":[4,5,8],"\u751f\u3058\u308b":8,"\u751f\u6210":[8,9],"\u7528\u3044":[0,5,8,9],"\u7528\u3044\u308b":[8,9],"\u7528\u8a9e":5,"\u7528\u9014":[8,9],"\u753b\u50cf":2,"\u753b\u9762":[3,5,6,8,9],"\u756a\u30d4\u30f3":8,"\u756a\u53f7":[0,7,8],"\u7570\u306a\u308b":8,"\u767a\u4fe1":[],"\u767a\u58f2":6,"\u767a\u6027":8,"\u767a\u884c":8,"\u767a\u8868":5,"\u767a\u8868\u4f1a":5,"\u767a\u97f3":6,"\u767b\u5834":5,"\u767b\u9332":8,"\u76ee\u4ee5\u964d":8,"\u76ee\u7684":[4,8],"\u76ee\u7acb\u3061":[],"\u76ee\u7acb\u3064":8,"\u76f4\u5217":8,"\u76f4\u63a5":[1,8],"\u76f4\u6d41":8,"\u76f8\u5f53":9,"\u76f8\u8ac7":[],"\u7701\u7565":8,"\u77ed\u3044\u8db3":8,"\u77ed\u304f":8,"\u77ed\u7e2e":6,"\u7834\u58ca":8,"\u7834\u88c2":8,"\u78ba\u8a8d":[5,8],"\u793a\u3055":5,"\u793a\u3057":[0,1,2,7,8,9],"\u793a\u3059":[5,6,8],"\u793eenv":0,"\u79d2\u5f85":8,"\u79d2\u6570":8,"\u79d2\u9593":8,"\u79d2\u9cf4\u3089":[8,9],"\u79fb\u884c":8,"\u7a0b\u5ea6":[5,8],"\u7a2e\u985e":[0,8],"\u7a7a\u767d":8,"\u7aef\u5b50":8,"\u7ba1\u7406":[3,6,8,9],"\u7bc4\u56f2":[5,8],"\u7c21\u5358":[5,6,8],"\u7c21\u6f54":8,"\u7d20\u6570":[],"\u7d22\u5f15":[],"\u7d42\u308f\u3089":4,"\u7d42\u308f\u308b":9,"\u7d42\u4e86":[3,6,8],"\u7d42\u7aef":8,"\u7d44\u307f\u5408\u308f":9,"\u7d50\u5c40":8,"\u7d50\u679c":[7,8],"\u7d50\u8ad6":1,"\u7d5e\u308a\u8fbc\u307f":6,"\u7d5e\u308a\u8fbc\u3093":[6,8],"\u7d71\u4e00":5,"\u7d71\u5408":[4,5,6],"\u7d99\u627f":9,"\u7d99\u7d9a":8,"\u7dad\u6301":8,"\u7dda\u901a":8,"\u7e26\u578b":8,"\u7e26\u6a2a":8,"\u7e4b\u304c\u308b":8,"\u7e4b\u304e":[],"\u7e70\u308a\u8fd4\u3057":8,"\u7e70\u308a\u8fd4\u3059":4,"\u7f6e\u3044":9,"\u7f6e\u304d":8,"\u7fd2\u5f97":9,"\u8003\u3048":8,"\u8003\u5bdf":5,"\u8003\u616e":[],"\u8005\u5411":8,"\u8033\u969c\u308a":8,"\u8074\u304f\u5206":0,"\u8089\u773c":8,"\u80cc\u666f":8,"\u811a\u6ce8":2,"\u81ea\u30bf\u30b9\u30af":[3,9],"\u81ea\u5206":6,"\u81ea\u52d5":[7,8],"\u8272\u6307\u5b9a":8,"\u82e5\u5e72":8,"\u866b\u773c":8,"\u884c\u3046":[5,6],"\u884c\u3048":5,"\u884c\u3048\u308b":[5,9],"\u884c\u3063":[8,9],"\u884c\u308f":8,"\u884c\u76ee":8,"\u8868\u73fe":8,"\u8868\u793a":[2,3,4,5,7],"\u8868\u8a18":[6,8],"\u88c5\u7f6e":8,"\u8907\u6570":[4,8],"\u8907\u96d1":[8,9],"\u8981\u7d20":8,"\u898b\u3048":8,"\u898b\u3048\u308b":8,"\u899a\u3048":8,"\u89e3\u50cf":[6,8],"\u89e3\u653e":9,"\u89e3\u6790":8,"\u89e3\u6c7a":5,"\u89e3\u8aac":8,"\u8a00\u8a9e":[6,8],"\u8a08\u6e2c":8,"\u8a08\u7b97":8,"\u8a18\u53f7":8,"\u8a18\u6cd5":8,"\u8a18\u8ff0":[5,6,8,9],"\u8a18\u9332":5,"\u8a2d\u5b9a":[1,4,8,9],"\u8a31\u53ef":9,"\u8a55\u4fa1":4,"\u8a66\u3057":8,"\u8a66\u3059":8,"\u8a66\u307f\u308b":8,"\u8a66\u9a13":5,"\u8a71\u3057\u5408\u3044":5,"\u8a71\u3057\u5408\u3063":5,"\u8a73\u3057\u3044":8,"\u8a73\u7d30":[6,8,9],"\u8a8d\u8b58":3,"\u8aac\u660e":[5,8],"\u8aad\u307f":5,"\u8aad\u307f\u51fa\u3057":8,"\u8aad\u307f\u53d6\u3063":8,"\u8aad\u307f\u53d6\u308a":5,"\u8aad\u307f\u53d6\u308b":8,"\u8aad\u3081":8,"\u8aad\u3093":0,"\u8abf\u3079":8,"\u8abf\u3079\u308b":[],"\u8abf\u6574":8,"\u8abf\u67fb":5,"\u8b1b\u7fa9":[5,7,8],"\u8ca9\u58f2":9,"\u8cbc\u3063":0,"\u8cbc\u308a\u4ed8\u3051":0,"\u8cc7\u6599":[],"\u8cc7\u6e90":9,"\u8cea\u554f":[4,8],"\u8cfc\u8aad":8,"\u8d64\u5916":4,"\u8d64\u5916\u5149":[],"\u8d64\u5916\u7dda":8,"\u8d64\u5916led":0,"\u8d64\u8272":8,"\u8d64led":[],"\u8d77\u304d\u308b":8,"\u8d77\u52d5":[4,6,8],"\u8db3\u308a":[3,8],"\u8ddd\u96e2":8,"\u8efd\u91cf":8,"\u8f9e\u66f8":8,"\u8fbc\u3080":1,"\u8fd1\u3044":[],"\u8fd1\u3065":8,"\u8fd1\u3065\u304b":[],"\u8fd1\u5e74":5,"\u8fd1\u8ddd":8,"\u8fd4\u3057":8,"\u8fd4\u3059":8,"\u8fd4\u5374":8,"\u8ff0\u3079\u308b":9,"\u8ffd\u52a0":[0,8,9],"\u8ffd\u5b9f\u9a13":[],"\u8ffd\u8a18":8,"\u9001\u3063":8,"\u9001\u4fe1":[4,5],"\u9001\u53d7":8,"\u9001\u53d7\u4fe1":8,"\u9014\u4e2d":9,"\u901a\u4fe1":[4,5,9],"\u901a\u5e38":8,"\u901f\u304f":6,"\u901f\u5ea6":8,"\u9023\u643a":5,"\u9023\u7d50":8,"\u9023\u7d9a":8,"\u9031\u76ee":[4,5],"\u9032\u3081":5,"\u9032\u3081\u308b":8,"\u9032\u6570":4,"\u904e\u304e":8,"\u9053\u7b4b":5,"\u9055\u3044":[0,9],"\u9069\u3057":9,"\u9069\u5207":5,"\u9069\u5408":6,"\u9069\u5f53":[3,8],"\u9069\u7528":8,"\u9078\u629e":[8,9],"\u90e8\u5206":[0,5,8,9],"\u914d\u5217":[0,8],"\u914d\u7dda":8,"\u914d\u7f6e":0,"\u91cd\u8981":[0,8],"\u91cd\u8996":6,"\u9577\u3044":8,"\u9577\u3055":8,"\u9577\u5e74":6,"\u9577\u62bc":8,"\u9577\u62bc\u3057":8,"\u958b\u3044":8,"\u958b\u304f":8,"\u958b\u59cb":[6,8],"\u958b\u767a":[4,5,8,9],"\u9593\u9055\u3044":1,"\u9593\u9694":9,"\u95a2\u6570":[3,8,9],"\u9632\u6b62":8,"\u9650\u3089\u308c":9,"\u9650\u5b9a":9,"\u968f\u6642":8,"\u96db\u5f62":5,"\u96e2\u7121":8,"\u96fb\u529b":[],"\u96fb\u5727":8,"\u96fb\u6e90":4,"\u975e\u516c":5,"\u975e\u516c\u5f0f":9,"\u975e\u5e38":6,"\u97f3\u58f0":0,"\u9805\u76ee":[5,8],"\u9806\u6b21":5,"\u9806\u756a":8,"\u9818\u57df":8,"\u985e\u4f3c":[],"\u9ad8\u6027":5,"\u9ad8\u901f":9,"\u9ad8\u97f3":8,"\u9cf4\u3063":8,"\u9cf4\u3089":[6,8],"\u9cf4\u3089\u3059":8,"\u9ec4\u8272":0,"\uff01\u300c":8,"\uff01\uff01":8,"\uff08\u300c":5,"\uff08\u8aad\u307f\u53d6\u3063":8,"\uff08\u8d64":4,"\uff08arduino":4,"\uff08arduinoide":6,"\uff08ascii":8,"\uff08iot":5,"\uff08m":8,"\uff08project":5,"\uff08tft":4,"\uff08windows":4,"\uff09:":[],"\uff09<":[],"\uff09\u3001":[8,9],"\uff09\u3002":[3,6,8],"\uff09\u300d":6,"\uff09\u30ad\u30fc":8,"\uff09arduino":4,"\uff13\u3064":8,"\uff1a<":6,"\uff1a\u300c":[],"\uff1aarduino":8,"\uff1ahttps":8,"\uff1ajson":8,"\uff1am":5,"\uff1amqtt":8,"\uff1aproperly":9,"\uff1awifi":8,"\uff1f\u300d":8,"\uff1f\u3011":8,"\uff1f\uff09":[5,8],"\uff1f\uff1f":7,"])":[0,7,8,9],"]+":8,"],":[8,9],"].":8,"];":[8,9],"]\u301c":8,"^]":8,"`\uff09":[],"`_":[],"``":6,"`adc":[],"`arduino":[],"`esp":[],"`gp":[],"a\u30dc\u30bf\u30f3":8,"b\u30dc\u30bf\u30f3":[3,8],"break":8,"byte":8,"cds\u30bb\u30eb":[1,8],"char":[8,9],"class":7,"const":[0,8],"continue":8,"control\u30ad\u30fc":8,"default":7,"double":1,"else":[0,8,9],"false":8,"float":[0,8],"for":[0,6,7,8,9],"function":8,"get\u30e1\u30bd\u30c3\u30c9":8,"if":[0,7,8,9],"in":[7,8],"int":[0,1,8,9],"interface":8,"long":7,"m5\u30c7\u30d0\u30a4\u30b9":8,"new":[7,8],"null":[8,9],"pin\u30d4\u30f3":[],"post\u30e1\u30bd\u30c3\u30c9":8,"public":8,"return":8,"this":[0,7,8],"true":8,"try":8,"var":8,"void":[0,1,8,9],"while":[0,8,9],"with":[0,7,8,9],"{\"":[],"| (":8,"|br":[],"|copy":[],"||":8,"})":[],"};":[0,8],_ap:8,_asp:8,_bmp:0,_bt:8,_build:[],_callback:8,_ch:8,_clients:8,_code:8,_connected:8,_control:8,_data:0,_datetypedef:8,_esp:6,_esprite:4,_factory:[],_factorytest:[],_feb:[1,2],_file:[],_for:8,_format:[],_from:8,_guide:5,_hour:8,_interval:0,_ipconfig:7,_japanese:5,_json:8,_len:0,_m:[],_mac:8,_mday:8,_menu:[],_min:8,_mon:8,_msec:9,_ntp:8,_ok:8,_on:8,_password:8,_pin:0,_pm:1,_point:1,_pub:8,_rate:0,_raw:0,_read:8,_sec:8,_select:[],_serial:8,_serialport:[],_sht:0,_sketchexample:[],_sprite:8,_srv:8,_sta:8,_str:8,_sub:8,_subscribe:8,_t:[1,8,9],_timetypedef:8,_url:8,_wday:8,_wifi:8,_wlx:[],_year:8,able:8,accgyro:[],action:[],adafruit:0,adc:4,add:8,added:7,address:8,addresses:7,admonition:7,adornment:7,after:7,air:0,akita:8,akizukidenshi:[],all:8,allows:8,along:8,also:7,an:[0,7],analog:[1,8],analogread:[1,8],and:[0,7,8],anonymous:7,any:[0,7,8],anything:8,api:[8,9],app:8,apps:8,arcfn:0,arduino:[2,3,4,8,9],arduinocds:[1,8],arduinojson:8,are:[0,7,8],arg:9,array:8,arrived:8,as:[0,7,8],ascii:8,at:[0,7,8],attention:7,attribute:7,author:7,auto:7,automatically:7,available:8,average:8,avoid:0,ax:8,axp:8,ay:8,az:8,ba:8,backslash:7,based:0,basetype:9,be:[0,7,8],beep:[4,9],beept:9,beeptask:9,before:[0,7],begin:[0,1,7,8,9],below:0,between:7,bgcolor:8,bibliographic:7,binary:9,bit:8,bits:[0,8],black:0,blank:7,ble:8,bledevice:1,blehiddevice:8,bleserver:1,bleutils:1,blob:8,block:7,blocks:7,blue:8,bluetooth:4,bluetoothserial:8,bme:0,bmp:0,body:8,book:7,bool:8,boot:0,boston:8,bps:8,br:[],brackets:7,breaks:7,broken:8,broker:8,bt:8,btna:[0,8],btnb:[0,8],bts:[],buf:8,bullet:7,but:[7,8],bval:[],by:[0,7,8],bytes:8,callback:8,camera:0,can:[0,7,8],cannot:7,caption:7,capture:0,captured:0,captures:8,carriage:8,caution:7,cbuf:8,cc:8,ccache:[],ccs:[],cd:8,cds:[],ch1:8,ch2:8,ch:8,character:[7,8],cheat:[],cheatsheet:7,check:[0,8],circuit:0,circuits:0,cit:[7,8],citation:7,citics:[],classifier:7,client:8,clientid:8,clients:8,close:8,cm:8,co:[],code:[0,1,6,7,8],codes:0,coin:0,com:6,command:8,comment:7,comments:7,common:0,compound:7,conclusion:1,configtime:8,connect:[0,8],connected:[0,8],connecting:8,connection:8,connectordisconnect:8,console:[],constrain:8,container:7,content:8,contents:[4,7],contentservice:8,contexts:7,continuation:7,conversion:7,converter:8,copy:8,copyright:[0,8],coredebuglevel:8,coreno:9,correct:0,could:0,count:[8,9],cp2:[],cpp:9,cpu:8,crange:[],create:7,csv:7,ctrl:8,curl:8,current:0,currentline:8,custom:7,cyan:8,danger:7,data:[0,7,8],date:[7,8],datestruct:8,david:7,dccc:[],debugging:0,dec:8,decorations:7,def:7,define:8,definition:7,definitions:7,defs:7,delay:[0,1,8,9],delaymicroseconds:0,demonstrates:0,description:7,deserialize:8,deserializejson:8,details:8,dev:[],development:6,device:[6,8],devices:8,dict:8,dictionary:8,different:8,digital:[0,8],digitalwrite:[8,9],directive:[],directly:[0,7],disconnect:8,disconnected:8,display:[0,8],distributed:8,divisor:[],dl:6,dname:8,docinfo:7,docs:7,doctest:7,document:7,docutils:7,doget:8,doing:0,don:0,done:9,dopost:[],drawclock:[],drive:0,driven:0,driver:[1,6],each:7,eclipse:6,effectively:0,either:8,element:7,elements:[],elm:[],emphasis:7,empty:7,end:[1,8],energy:[],enhancement:7,enough:[0,8],enumerated:7,env:4,environment:[6,8],epigraph:7,equivalent:7,error:7,escape:8,escapes:7,esp:[0,1,8,9],etc:[0,7],even:[7,8],ex1:8,example:[0,8],examples:7,exclusion:9,explicit:7,extern:0,external:7,fabf:8,factorytest:[6,8],failed:8,faq:[4,8],fast:8,feb:7,felica:[],ffe:0,fft:1,field:7,fifth:8,fig:7,figure:7,file:[6,7,8],find:[0,8],first:[0,8],fitness:8,flashed:0,floor:8,flush:7,following:0,font:8,footer:7,footnote:7,form:[],format:7,foundation:8,franklin:8,free:8,freertos:4,frequently:[4,8],from:[0,7,8],ftdi:6,ful:0,full:7,g0:8,g2:[1,8],general:8,generate:7,generates:7,generic:7,get:8,getcoloruint:8,getlocaltime:8,getrange:8,getrtc:8,getvalue:8,gh:[],git:9,github:[0,8],gmt:8,gnd:[1,8],gnu:8,gochkov:8,good:0,goodger:7,google:4,got:8,gotip:8,gp:8,gpio:[0,8],gpios:0,gr:[],green:8,greenyellow:8,grid:7,groupxx:8,grove:8,gval:[],gx:8,gyrox:8,gyroy:8,gyroz:8,hangstuck:[],happytech:9,hat:4,have:[0,8],header:[7,8],heading:7,height:[],here:[0,1],hex:8,hextodec:8,high:[8,9],highlights:7,highorlow:9,hint:7,hoge:[1,9],hogehoge:9,hold:8,hope:8,how:8,hristo:8,html:7,http:[0,7,8,9],httpclient:8,httpcode:8,https:[0,1,2,5,6,7,8],hum:0,human:8,humi:0,humidity:0,hyperlink:7,hz:8,ic:8,id:[],ide:[4,8,9],iframe:[],ii:4,image:7,images:[],implied:8,important:7,imu:8,inc:8,include:[0,1,7,8],indentation:7,indented:7,indents:7,index:6,inertial:8,info:[7,8],informal:7,information:0,inline:[],ino:[0,8,9],input:[7,8],insert:8,install:[0,7],instead:7,integrated:6,interfere:0,internal:7,internet:7,interpreted:[],interrupt:9,interval:9,intro:[],introductory:7,intval:8,iot:8,ip:[2,7,8],ipaddr:[],ipconfig:[2,7],ir:[0,8],irled:8,irrecvdumpv:[0,8],irremoteesp:[0,8],irsend:[0,8],irsenddemo:0,is:[0,7,8],isalldigit:8,isdigit:8,isprime:[],it:[0,7,8],items:[7,8],itself:7,january:0,java:6,javascript:8,jjyclock:[],jquery:[],json:8,july:0,junichi:8,just:0,ken:0,key:8,khz:0,kirled:[0,8],know:0,krecvpin:8,labelled:7,lang:[0,1,5,8],large:8,lastrow:8,lasttime:9,later:8,latex:7,lcd:[0,4,9],lcdt:9,lcdtask:9,learn:0,learning:5,least:7,lecattachpin:8,led:[0,4,9],ledcattachpin:[0,8],ledchannel:0,ledcsetup:[0,8],ledcwrite:[0,8],ledcwritetone:0,ledt:9,ledtask:9,legend:7,len:[0,8],length:8,lesser:8,library:[0,8],license:8,like:7,line:[1,7,8],lines:7,list:7,lists:7,literal:7,loadcount:8,localtime:8,location:8,longer:8,loop:[0,1,8,9],loops:8,low:[8,9],lpt:6,lt:8,m5:[0,8,9],m5stack:5,m5stick:6,m5stickc:5,m5stickcplus:[6,8],ma:8,mac:[],macbt:8,magenta:8,magnify:8,main:[1,9],make:[0,1,8],manager:[0,6],manually:7,many:[7,8],map:8,marchan:[],markup:[],master:8,match:8,matching:8,matchstate:8,math:7,mathematical:7,max:8,may:8,mbuf:8,mcu:9,measurement:8,merchantability:8,message:[0,8],meta:7,metadata:7,meth:8,method:8,mg:8,mhigh:8,mi:7,microsoft:6,min:[],mini:7,mistakes:0,miura:8,mlow:8,mode:[0,8],modify:8,modulation:4,module:0,modules:0,more:[0,8],mpu:8,mqpass:8,mqtt:4,mqttclient:8,mquser:8,ms:8,mstatus:9,music:0,must:[0,8],mute:8,mutex:9,mutual:9,mydata:8,name:[7,8],named:7,names:8,nay:8,naz:8,nconnecting:8,nec:[0,8],needs:[0,8],network:4,newline:8,next:7,ngy:8,ngz:8,nn:0,no:[7,8],non:7,nopen:8,normal:0,not:[0,8],notation:7,note:[7,9],notice:[],notifications:9,now:8,ntp:4,ntpserver:8,num:[8,9],number:7,numbered:7,numref:7,object:8,of:[0,7,8],off:8,office:8,ok:8,olive:9,on:[0,7,8,9],once:[0,1],onchange:[],onin:[],option:[7,8],optional:7,options:7,or:[7,8],orange:8,os:[6,9],ota:[],output:[8,9],overlined:7,pair:8,panasonic:0,paragraphs:7,parallel:7,param:8,parameter:8,params:8,parsed:7,parsing:8,part:8,particular:8,pass:8,passed:7,password:8,payload:8,pbl:5,pc:[6,8],pctaskgettaskname:9,pdpass:9,pep:7,photoshot:0,picture:7,pin:[0,1,8,9],ping:8,pinmode:[1,8,9],pins:0,pip:7,pixel:8,pjs:[],playmusic:0,please:[0,7],plus:[5,6],point:1,polarity:0,port:[6,8],portticktype:9,pos:8,possible:7,post:8,power:8,poweroff:8,preceded:7,pref:8,preference:4,preferences:8,preserve:7,pressed:8,pressure:0,prime:[],print:[7,8],printf:8,println:8,processes:7,profile:4,progmem:0,proposal:7,protocol:4,prs:0,pub:8,published:8,publisher:8,pubsubclient:8,pubtopic:8,pull:7,pulse:4,purpose:8,push:8,put:[0,1],pvparam:9,pwm:4,pwmch:[],px:[],python:7,qiita:8,qs:8,question:[],questions:[4,8],queue:8,quick:[],quit:8,quote:7,quoted:7,quotes:7,random:8,randomseed:8,range:8,raspberrypi:[],ratein:8,raw:[0,7],rcs:[],re:8,read:[7,8],reading:7,ready:8,really:0,realtime:9,reboot:8,received:8,reconnect:8,recording:0,red:8,redistribute:8,reference:[],regexp:8,reject:8,reminders:[],remote:8,remoteip:8,repeatedly:1,repeats:0,replace:[0,7],replacement:7,req:8,request:[7,8],reserved:8,reset:8,resolution:0,resolve:8,resolved:8,response:8,rest:7,restart:8,restructuredtext:[],result:0,ret:8,retain:8,retained:8,revision:7,rfc:7,rgb:8,rgbf:[],rights:8,role:[],rom:1,routine:9,rr:[],rrggbb:8,rtc:8,rtos:4,rtp:9,rubric:7,run:[0,1],rval:[],rx:0,same:8,sample:[0,1],sampling:0,samsung:0,savecount:8,sbuf:8,scanf:[],screen:0,script:8,search:8,secs:8,section:[],sections:7,sectnum:7,secure:[],see:[0,7,8],semaphore:9,send:[0,8],sending:0,sensor:4,sent:[],separate:[7,9],separated:7,serial:[0,1,4,9],serialbt:8,serialize:[],server:8,serverclients:8,service:9,servo:0,set:[0,7,8],setbeep:8,setcpufrequencymhz:8,setcursor:8,setrgb:[],setrotation:8,setrtcfromlt:8,settextfont:8,setup:[0,1,6,8,9],sheet:8,shirriff:0,should:8,showmac:[],sht:0,sidebar:7,simple:7,size:8,sjdoc:8,slave:8,slow:8,so:8,software:8,sony:0,source:7,spaces:7,speaker:4,specific:7,specified:0,sphinx:[2,7],spot:8,spp:4,spreadsheet:4,spreadsheetapp:8,sprintf:[8,9],sprite:8,spu:8,src:[0,1,2,8,9],ss:7,ssid:8,ssl:8,st:8,standalone:7,standard:7,start:[1,8],started:8,state:[0,8],staticjsondocument:8,stdio:[],step:[],stop:8,store:6,str:8,string:8,strong:7,struct:[1,8],structure:[],studio:6,style:[],sub:[7,8,9],submit:[],subscriber:8,subscript:7,subsections:7,substitution:7,succesfully:8,suggest:0,suggested:0,sup:7,superscript:7,support:0,sure:[0,8],syntax:[],table:7,tables:7,tabs:9,take:8,target:7,task:9,taskhandle:9,tcp:8,telemetry:8,telnet:8,temp:0,temperature:0,term:7,terms:8,test:0,text:[],textfont:8,tft:8,th:9,than:8,that:8,the:[0,8],then:8,there:8,threadx:9,time:[0,4],timestruct:8,tip:7,tips:0,title:7,titled:7,titles:7,tl:0,tm:8,tmp:[0,8],to:[0,1,7,8],today:7,toint:8,tone:8,topic:[7,8],toshiba:8,tostring:8,transistor:0,transmissions:0,transparent:8,transport:8,tricky:0,tskname:9,tsknm:9,tutorial:[],tv:8,two:7,tx:0,type:[7,8],typedef:1,typical:0,uart:8,uiflow:6,uint:[0,8],under:8,underlined:7,unicode:7,uniform:7,unit:[0,8],unless:0,uno:6,unsigned:8,untouched:7,update:[0,8],upto:8,url:8,usa:8,usb:[3,6,8],use:[0,7,8],used:[0,7,8],useful:[7,8],using:[0,9],val:8,valid:0,value:8,valueserver:[],variation:7,vcp:6,ver:[],verse:7,version:[0,7,8],view:8,virtual:6,visible:7,visual:6,vtaskdelayuntil:9,vtaskdelete:9,warning:7,warranty:8,was:8,way:7,we:0,weather:8,weatherapi:8,web:[6,8],webapi:8,webclient:4,webserver:4,were:7,what:0,when:0,white:8,width:4,wifi:4,wificlient:8,wificlientsecure:8,wifimulti:8,wifiserver:8,wifitelnettoserial:8,wiki:0,will:[0,8],willcon:8,willconnect:8,windows:8,wire:0,wiring:0,withargtask:9,without:8,wl:8,won:0,would:8,wrapped:7,write:8,writer:7,www:[1,5,6,8],xsemaphorecreatemutex:9,xsemaphoregive:9,xsemaphorehandle:9,xsemaphoretake:9,xtaskcreatepinnedtocore:9,xtaskgettickcount:9,xxx:8,yellow:8,you:[0,7,8],your:[0,1,8],youtu:8,zero:8},titles:["\u4ed8\u9332","Arduino","Conclusion","Frequently-Asked Questions \uff08FAQ: \u3088\u304f\u3042\u308b\u8cea\u554f\uff09","IoT\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0","\u5b9f\u9a13\u306e\u76ee\u7684","\u4e8b\u524d\u6e96\u5099","Tutorial","1\u9031\u76ee","2\u9031\u76ee"],titleterms:{"'s":[],"(infrared":8,"-asked":3,"5stickcplus":6,"\u3042\u308b":3,"\u3059\u3059\u3081\u304b":5,"\u3059\u308b":[6,8,9],"\u305d\u306e":[8,9],"\u3060\u3059":0,"\u3067\u304d":3,"\u3068\u304d":8,"\u306a\u3044":3,"\u306e\u307f":3,"\u306f\u3044\u3089":3,"\u307e\u3068\u3081":[],"\u3088\u304f":3,"\u30a2\u30c9\u30ec\u30b9":8,"\u30a2\u30ca\u30ed\u30b0\u30bb\u30f3\u30b5":8,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":6,"\u30a4\u30f3\u30c8\u30ed\u30c0\u30af\u30b7\u30e7\u30f3":[],"\u30a4\u30f3\u30c8\u30ed\u30c0\u30af\u30b7\u30e7\u30f3intro":[],"\u30ad\u30e5\u30fc":9,"\u30af\u30e9\u30b9":8,"\u30b3\u30de\u30f3\u30c9":8,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[],"\u30b3\u30f3\u30d1\u30a4\u30eb":3,"\u30b3\u30fc\u30c9":8,"\u30b5\u30f3\u30d7\u30eb":8,"\u30b5\u30f3\u30d7\u30eb\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":6,"\u30b5\u30fc\u30d0":8,"\u30b5\u30fc\u30dc\u30cf\u30c3\u30c8":8,"\u30b5\u30fc\u30dc\u30e2\u30fc\u30bf":8,"\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8":6,"\u30b9\u30d7\u30e9\u30a4\u30c8":8,"\u30b9\u30ec\u30fc\u30d6":8,"\u30bb\u30de\u30d5\u30a9":9,"\u30bb\u30f3\u30b5":8,"\u30bf\u30b9\u30af":9,"\u30c6\u30b9\u30c8":0,"\u30c7\u30a3\u30b9\u30d7\u30ec\u30a4":8,"\u30c7\u30d0\u30a4\u30b9":8,"\u30c7\u30fc\u30bf":8,"\u30c8\u30d4\u30c3\u30af":8,"\u30d0\u30fc\u30b8\u30e7\u30f3":6,"\u30d2\u30f3\u30c8":8,"\u30d3\u30eb\u30c9":6,"\u30d6\u30b6\u30fc":8,"\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":4,"\u30d7\u30ed\u30b0\u30e9\u30e0":[3,6,8,9],"\u30dc\u30bf\u30f3":8,"\u30dc\u30fc\u30c9":6,"\u30dc\u30fc\u30c9\u30de\u30cd\u30fc\u30b8\u30e3\u30fc":6,"\u30de\u30b9\u30bf":8,"\u30df\u30e5\u30fc\u30c6\u30c3\u30af\u30b9":9,"\u30e2\u30cb\u30bf":[],"\u30e9\u30a4\u30d6\u30e9\u30ea":6,"\u30ea\u30e2\u30b3\u30f3":[0,8],"\u30ea\u30f3\u30af":[],"\u30ef\u30a4\u30eb\u30c9\u30ab\u30fc\u30c9":8,"\u30fb\u96fb\u529b":8,"\u4e8b\u524d":6,"\u4ed8\u9332":0,"\u4fe1\u53f7":8,"\u5165\u308c":8,"\u5185\u8535led":8,"\u5207\u308a\u65b9":8,"\u5229\u7528":8,"\u5236\u5fa1":8,"\u52a0\u901f\u5ea6":8,"\u53c2\u8003":[],"\u53c2\u8003url":5,"\u53d6\u5f97":8,"\u57fa\u6e96":5,"\u5834\u5408":6,"\u5909\u63db":8,"\u5916\u90e8":8,"\u5b66\u7fd2":[],"\u5b9f\u9a13":5,"\u5b9f\u9a13\u5ba4":0,"\u60c5\u5831":6,"\u6271\u3044":8,"\u6307\u6a19":[],"\u63a5\u7d9a":8,"\u6570\u5909":[],"\u6574\u6570":[],"\u6587\u5b57\u5217":8,"\u6642\u523b":8,"\u66f8\u3044":9,"\u66f8\u304d\u8fbc\u307f":[3,6,8],"\u66f8\u304d\u8fbc\u3080":8,"\u66f8\u304f":8,"\u672c\u4f53":8,"\u691c\u7d22":4,"\u6c17\u5727":0,"\u6c17\u6e29":0,"\u6ce8\u610f":8,"\u6db2\u6676":8,"\u6e29\u5ea6":[],"\u6e7f\u5ea6":0,"\u6e96\u5099":6,"\u74b0\u5883":6,"\u76ee\u7684":5,"\u78ba\u8a8d":6,"\u7d22\u5f15":4,"\u7d42\u308f\u3089":3,"\u7d71\u5408":9,"\u7e70\u308a\u8fd4\u3059":3,"\u8868\u793a":[6,8],"\u8907\u6570":9,"\u8a2d\u5b9a":6,"\u8a55\u4fa1":5,"\u8aad\u307f\u53d6\u308a":8,"\u8abf\u3079\u308b":8,"\u8cea\u554f":3,"\u8d64\u5916":[0,8],"\u8d77\u52d5":3,"\u8ffd\u52a0":6,"\u9001\u4fe1":[0,8],"\u901a\u4fe1":8,"\u9031\u76ee":[8,9],"\u9032\u6570":8,"\u9078\u629e":6,"\u958b\u767a":6,"\u96fb\u529b":[],"\u96fb\u6e90":[3,8],"\uff08\u8d64":8,"\uff08arduino":6,"\uff08tft":8,"\uff08windows":3,"\uff09arduino":3,_esprite:8,adc:8,analogread:[],and:[],arduino:[1,6],beep:8,bluetooth:8,body:7,cheat:7,conclusion:2,directive:7,documentation:[],elements:7,energy:[],env:0,esp:6,faq:3,freertos:9,frequently:3,google:8,hat:0,ide:[3,6],ii:0,indices:[],inline:7,interpreted:7,iot:4,lcd:8,led:8,linux:6,low:[],mac:8,macos:6,markup:7,modulation:8,mosquitto:8,mqtt:8,network:8,ntp:8,preference:8,profile:8,protocol:8,publish:8,pulse:8,pwm:8,question:[],questions:3,quick:7,reference:7,reminders:7,restructuredtext:7,role:7,rtos:9,section:7,sensor:0,serial:8,sheet:7,speaker:0,spp:8,spreadsheet:8,structure:7,subscribe:8,syntax:7,tables:[],testrtp:[],text:7,the:7,time:8,to:[],tutorial:7,url:6,webclient:8,webserver:8,welcome:[],width:8,wifi:8,windows:6}}) \ No newline at end of file +Search.setIndex({docnames:["appendix","arduino","conclusion","faq","index","intro","pre","tutorial","week1","week2"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:55},filenames:["appendix.rst","arduino.rst","conclusion.rst","faq.rst","index.rst","intro.rst","pre.rst","tutorial.rst","week1.rst","week2.rst"],objects:{},objnames:{},objtypes:{},terms:{"!)":3,"!\"":[0,8],"!\\":8,"#.":[],"#\uff08":8,"#]":7,"#define":8,"#include":[0,1,8,9],"#ir":0,"$date":7,"$revision":7,"%%":0,"%d":[8,9],"%i":[],"&&":8,"©":[],"')":8,"'.":8,"';":8,"'\\n":8,"'\\r":8,"']":8,"'a":8,"'c":8,"'s":[0,7,8],"'t":0,"'z":8,"(!":3,"(&":[0,8,9],"('":8,"('#":[],"((":[0,8],"()":[0,1,8,9],"(=":8,"([":8,"(\"":[0,1,8,9],"(\\":[],"(\u30d4\u30f3":8,"(\u79d2":8,"(address":8,"(analogread":8,"(b":8,"(beeptask":9,"(bit":8,"(black":[0,8],"(blue":[0,8],"(bm":[],"(body":[],"(bool":8,"(buf":8,"(button":8,"(c":8,"(callback":8,"(char":8,"(clientid":8,"(coin":0,"(const":0,"(contentservice":8,"(cyan":8,"(delay":0,"(dname":8,"(e":8,"(f":0,"(g":8,"(general":8,"(github":0,"(google":8,"(gotip":8,"(green":[8,9],"(header":[],"(hex":8,"(hid":8,"(httpcode":[0,8],"(hz":8,"(i":[7,8],"(infrared":4,"(int":8,"(isr":9,"(k":8,"(kirled":[0,8],"(lcd":8,"(lcdtask":9,"(ledchannel":0,"(ledtask":9,"(link":[],"(listen\u3057":8,"(localtime":8,"(loops":8,"(mac":8,"(macbt":8,"(message":8,"(meth":8,"(ms":8,"(mutex":9,"(n":8,"(name":8,"(now":8,"(null":9,"(num":[],"(orange":8,"(p":8,"(params":8,"(payload":[0,8],"(photoshot":0,"(pin":[1,8,9],"(post":8,"(postdata":0,"(pubtopic":8,"(purple":8,"(pwm":8,"(pwmch":[],"(r":8,"(random":9,"(recording":0,"(red":0,"(req":8,"(rrggbb":8,"(rval":[],"(samsungstate":0,"(sbuf":8,"(server":8,"(serverclients":8,"(servo":0,"(sheet":8,"(sht":0,"(sjdoc":8,"(ssid":8,"(str":8,"(string":8,"(struct":8,"(tmp":8,"(topic":8,"(true":8,"(tskname":9,"(u":0,"(uint":8,"(v":8,"(var":8,"(void":9,"(weatherapi":8,"(white":[0,8,9],"(wifi":[0,8],"(wificlient":8,"(will":8,"(windows":[],"(withargtask":9,"(yellow":[0,8],")%":9,"))":[0,8,9],"),":8,").":[0,8],");":[0,1,8,9],")=":8,")\"":[7,8],")\\":[],")\u300d":[8,9],")connecting":8,")payload":8,"){":8,"*(":9,"*)":[8,9],"**":[0,8,9],"***":8,"*/":[8,9],"*\"":[7,8],"*]":7,"*c":[0,8],"*p":8,"++":[0,8,9],"+-":[1,8],"+\"":[7,8],"+\\":[],"+]":[],"+t":8,", $":[],", \"":7,", and":7,", g":8,", gyrox":8,", i":9,", match":8,", meth":8,", num":8,", or":7,", r":8,",%":8,",\"":[8,9],"-+":[1,8],"--":[1,8,9],"->":8,"-\"":[7,8,9],"-and":0,"-ap":8,"-api":0,"-arduinoide":[],"-asked":[4,8],"-based":5,"-bot":0,"-buildpath":[],"-c":6,"-chan":[],"-cli":5,"-cn":5,"-dict":7,"-display":8,"-enumerated":7,"-env":0,"-esp":8,"-fix":[],"-form":0,"-free":7,"-hokuson":0,"-ii":0,"-io":[1,8],"-kernel":9,"-l":[],"-led":0,"-left":7,"-level":7,"-literal":7,"-m":8,"-mutex":[],"-notes":7,"-numbered":7,"-numfig":7,"-o":7,"-pages":[],"-polarity":0,"-quote":7,"-r":8,"-rest":7,"-role":7,"-sa":8,"-science":[5,6],"-sending":0,"-shenzhen":5,"-ship":[0,1,5,8],"-specific":7,"-start":[],"-symbol":7,"-table":7,"-terminated":8,"-type":[0,8],"-typec":3,"-u":0,"-unit":0,"-urlencoded":0,"-users":[2,7],"-www":0,"-xxxxx":[],"-xxxxxxxxxx":6,"-z":8,".)":7,".*":9,".,":8,"..":[0,7],"...":[0,8],".\"":[0,7,8],".\\":[],".\n#":[],".\uff09":8,".addap":[0,8],".addheader":0,".aliyuncs":5,".appendrow":8,".arduino":6,".available":8,".be":8,".beep":8,".begin":[0,8,9],".biz":8,".c":[8,9],".cc":6,".charat":8,".color":8,".com":[0,1,5,6,8],".concat":8,".connect":8,".connected":8,".cpp":9,".createsprite":8,".createtextoutput":8,".date":8,".disconnect":8,".e":[],".end":[0,8],".errortostring":0,".espressif":6,".fillrect":8,".fillscreen":[0,8,9],".fillsprite":8,".ftdichip":6,".g":0,".get":8,".getacceldata":8,".getactivespreadsheet":8,".getbtnpress":8,".getcapture":8,".getdata":8,".getgyrodata":8,".getint":8,".getlastrow":8,".getrange":8,".getsheetbyname":8,".getstring":[0,8],".gettime":8,".githubusercontent":[],".globalmatch":8,".google":8,".gres":8,".gs":8,".h":[0,1,8,9],".hasclient":8,".hatenablog":0,".hours":8,".htm":6,".html":[1,7,8,9],".imamura":8,".info":[7,8],".init":8,".ino":[1,2,8,9],".istlab":[7,8],".jp":[1,2,7,8,9],".js":8,".json":6,".length":8,".line":0,".localip":8,".log":[],".loop":8,".me":0,".mimetype":8,".minutes":8,".mode":0,".mongonta":[],".month":8,".mute":[8,9],".net":[7,8],".nict":8,".org":7,".oss":5,".pdf":5,".png":7,".post":0,".print":[0,8],".printf":[0,1,8,9],".println":[0,8,9],".publish":8,".push":8,".pushsprite":8,".putint":8,".read":8,".readbytes":8,".readhumidity":0,".readpressure":0,".readtemperature":0,".restart":8,".run":[0,8],".screenbreath":8,".seconds":8,".sendnec":[0,8],".sendraw":0,".sendsamsungac":0,".sendsony":0,".setbeep":8,".setcallback":8,".setcolordepth":8,".setcursor":[0,8,9],".setdata":8,".setmimetype":8,".setnodelay":8,".setrotation":[0,8,9],".setserver":8,".settextcolor":[0,8,9],".settextfont":8,".settextsize":[0,8,9],".settime":8,".sf":7,".sourceforge":7,".sparkfun":0,".startswith":8,".state":8,".status":8,".stop":8,".storange":[1,8],".stringify":8,".subscribe":8,".substring":8,".switch":[5,6],".text":8,".tm":8,".toint":8,".tolowercase":8,".tone":[8,9],".trim":8,".tsukumijima":8,".txt":[0,7],".update":8,".usbserial":6,".wasreleased":[0,8],".wasreleasefor":8,".weekday":8,".write":8,".xxx":8,".year":8,".zip":[],"/ #":8,"/ (":8,"/ \"":[],"/ \u4f8b":8,"/ \u6ce8":8,"/#":8,"/%":8,"/%s":8,"/*":[0,9],"/+":8,"//":[0,1,8,9],"/\"":8,"/accgyro":8,"/adafruit":0,"/adc":[1,8],"/address":8,"/analogread":1,"/api":[0,8],"/arc":[],"/arduino":[5,8],"/blog":[0,1,8],"/brtos":9,"/bts":8,"/button":8,"/c":0,"/cabin":[],"/catalog":[5,6],"/cdm":[],"/cds":8,"/city":8,"/class":[],"/client":8,"/comp":[],"/cplus":[6,8],"/crankyoldgit":0,"/crc":1,"/cu":6,"/dev":6,"/diode":0,"/directives":7,"/disconnected":8,"/dl":6,"/docs":[5,7],"/doget":8,"/download":[],"/drivers":6,"/ea":8,"/en":6,"/entry":0,"/env":0,"/esp":[],"/espressif":8,"/ex1":[],"/examples":8,"/exec":8,"/factorytest":1,"/forecast":8,"/freertos":[],"/functions":[],"/g":[],"/gi":[],"/gm":[],"/howto":[],"/httpclient":8,"/httpserver":8,"/humid":8,"/i":1,"/images":7,"/ip":8,"/ir":[],"/irremoteesp":0,"/irsend":[0,8],"/isprime":[],"/items":8,"/ja":0,"/jbox":[],"/kitazaki":8,"/lcd":8,"/led":8,"/libraries":8,"/line":0,"/linux":[],"/lo":8,"/m":[0,1,5,8],"/macos":[],"/macros":8,"/main":6,"/master":8,"/mqtt":8,"/nnn":8,"/notify":0,"/ntp":8,"/numbering":7,"/o":[],"/or":8,"/output":8,"/package":6,"/pages":[],"/peripherals":[1,8],"/phones":0,"/pjs":[],"/plain":8,"/polarity":0,"/pref":8,"/preferences":8,"/program":0,"/pwm":8,"/ref":7,"/reference":[1,5,8],"/regexp":8,"/resource":5,"/reverse":7,"/rmt":1,"/roles":7,"/rst":7,"/rtc":8,"/run":[],"/rxd":0,"/s":8,"/sensor":8,"/serial":8,"/servohat":8,"/sketch":[1,2],"/software":6,"/sound":8,"/speakerhat":0,"/sprite":8,"/startcounter":8,"/str":8,"/task":9,"/telnet":8,"/temp":8,"/tutorials":0,"/txd":0,"/unofficial":[1,5,8],"/vcp":6,"/wifi":8,"/work":[0,1,8],"/x":0,"/xxxxxxxxxx":8,"0fhpa":0,"0x":[0,8],"0xa":[0,8],"0xxxxxxxxx":[],"10":8,"11":8,"14":8,"1\u3064":[8,9],"1\u30d0\u30a4\u30c8":8,"1\u56de":8,"1\u79d2":8,"1\u884c":8,"1byte":8,"1ce":8,"1jzbaet":8,"1s":8,"1uxc":8,"1x":8,"21":8,"2\u3064":[0,8],"2d":1,"2dict":8,"2f":[0,8],"2fd":8,"2fhpa":0,"2g":[0,8],"2s":1,"3\u3064":[8,9],"3d":1,"3v":[1,8],"3x":0,"4e":8,"5\u7cfb":8,"5bit":8,"5e":8,"5stack":[0,5,6,8],"5stick":[],"5stickc":[0,1,5,6,8],"5stickcplus":[0,1,5,8,9],"5v":8,"6b":8,"6bc":[],"6bit":8,"6k":0,"8bit":8,"8k":0,"8pixel":8,"8y":8,":%":[0,8],":/":[0,1,2,5,6,7,8,9],"::":7,":>":[],":\"":7,":`":[],":file":[],":numref":[],":strike":[],":text":8,"; p":8,";)":[],";;":9,";\"":[],";\\":[],";dr":0,"< *":8,"< c":8,"":9,"=\"":7,"=\\":[],"={":8,"><":[],">>":7,">\"":[],">`":[],"??":8,"?val":8,"@python":7,"[%s":9,"['":8,"[0":8,"[6":8,"[\"":8,"[]":[0,9],"[a":8,"[b":8,"[c":8,"[cit":7,"[i":[0,8,9],"[k":8,"[len":8,"[max":8,"[n":8,"[note":9,"[pos":8,"\"#":[],"\"$":[],"\"%":8,"\"([":8,"\")":[0,8,9],"\"+":8,"\",":[0,1,7,8,9],"\"..":7,"\"/":[],"\":":7,"\";":[0,8],"\"<":[],"\"":8,"\"\"":[],"\"]":8,"\"b":[],"\"g":[],"\"r":[],"\"}":[],"\\\"":[],"\\\"+":[],"\\n":[0,1,8,9],"\\r":0,"\u2026\u300d":[6,8],"\u2192\u300c":6,"\u2192\u300d":6,"\u2192\u5024":8,"\u2192apps":8,"\u2192basichttpsclient":8,"\u2192httpclient":8,"\u2192line":8,"\u2605\u2605":8,"\u3001(":8,"\u3001*":8,"\u3001/":[],"\u3001:":[],"\u3001?":8,"\u3001\u2714":6,"\u3001\u300c":[6,8,9],"\u3001`":[],"\u3001esp":5,"\u3001iot":[],"\u3001pc":8,"\u3002*":[],"\u3002-":8,"\u3002:":[6,8],"\u3002\"":8,"\u3002\u300c":6,"\u3002\u300d":8,"\u3002\u3059\u3053\u3057":6,"\u3002\u3061":[0,6,8,9],"\u3002\u3064\u307e\u308a":8,"\u3002\u307b\u3052\u307b\u3052\u307b\u3052":7,"\u3002\u307e\u305f":[0,6,8],"\u3002\uff08":[0,8,9],"\u3002\uff09":[0,8,9],"\u3002`":[],"\u3002a":8,"\u3002arduino":6,"\u3002b":8,"\u3002bluetoth":8,"\u3002c":[],"\u3002color":[],"\u3002configtime":8,"\u3002g":8,"\u3002gpio":8,"\u3002http":[],"\u3002httpclient":8,"\u3002ide":6,"\u3002json":8,"\u3002mac":6,"\u3002macos":5,"\u3002map":[],"\u3002match":8,"\u3002p":8,"\u3002pc":8,"\u3002pin":8,"\u3002post\u30e1\u30bd\u30c3\u30c9":[],"\u3002preference":8,"\u3002retain":8,"\u3002serial":8,"\u3002settextsize":8,"\u3002val":8,"\u3002windows":6,"\u300c=":8,"\u300c\u25bc":9,"\u300c\u30d6\u30ed\u30fc\u30ab":8,"\u300cbmp":8,"\u300chigh":8,"\u300cm":[],"\u300cserial":8,"\u300d(":8,"\u300d*":[],"\u300d\u2192":[6,8],"\u300d\uff09":5,"\u301cz":8,"\u3042\u3044":8,"\u3042\u304d\u3089\u304b":8,"\u3042\u3063":0,"\u3042\u3068":[6,8],"\u3042\u307e\u308a":8,"\u3042\u308a":[0,2,3,6,8,9],"\u3042\u308b":[4,8,9],"\u3042\u308c":8,"\u3042\u308f\u305b":8,"\u3044\u3044":0,"\u3044\u3044\u304b\u3048\u308b":9,"\u3044\u304d":8,"\u3044\u304f\u3064\u304b":9,"\u3044\u3061\u3069":6,"\u3044\u3061\u3070\u3093":2,"\u3044\u307e\u305b":9,"\u3044\u308a":7,"\u3044\u308b":[2,3,5,6,8,9],"\u3044\u308c":[3,6,8],"\u3046\u3061":8,"\u3046\u307e\u304f":[5,8],"\u3046\u307e\u304f\u3044\u304b":[0,5,8],"\u3048\u3089\u3076":6,"\u304a\u3044":8,"\u304a\u304b\u3057\u304f":8,"\u304a\u304d":8,"\u304a\u304d\u307e\u3057\u3087":8,"\u304a\u304d\u308b":8,"\u304a\u304f":[0,6,8],"\u304a\u3051\u308b":5,"\u304a\u3057":8,"\u304a\u3059":6,"\u304a\u3059\u3059\u3081\u3057":5,"\u304a\u307e\u3051":8,"\u304a\u3082":6,"\u304a\u3082\u3044":0,"\u304a\u3082\u3063":8,"\u304a\u3088\u3073":5,"\u304a\u308a":5,"\u304b\u3048":[],"\u304b\u304b\u308a":[6,8],"\u304b\u304b\u308b":8,"\u304b\u3051\u308b":5,"\u304b\u3064":9,"\u304b\u3069\u3046":[5,8],"\u304b\u306a\u308a":[],"\u304b\u3076\u3089":8,"\u304b\u3082":[5,8],"\u304b\u3084":[],"\u304b\u3089":[0,1,5,6,7,8,9],"\u304b\u308f\u308a":5,"\u304c\u3042\u308a":6,"\u304c\u304f\u308b":[],"\u304c\u3064\u3044":9,"\u304c\u3064\u304b\u3048":8,"\u304c\u3064\u304f":7,"\u304c\u3069":5,"\u304c\u308b":[],"\u304c\u308f\u304b\u308a":3,"\u304f\u3060":[0,3,6,8,9],"\u304f\u308a\u304b\u3048":8,"\u304f\u308c\u308b":8,"\u3053\u3053":[2,6,7,8,9],"\u3053\u3053\u304c":8,"\u3053\u3053\u3067":[8,9],"\u3053\u3053\u306b":8,"\u3053\u3053\u306e":[0,2,8,9],"\u3053\u3053\u306f":8,"\u3053\u3061\u3089":[5,6,8,9],"\u3053\u3068":[0,3,5,6,8,9],"\u3053\u306e":[1,3,5,8,9],"\u3053\u308c":[8,9],"\u3053\u308c\u3089":1,"\u3054\u3068":[8,9],"\u3055\u3044":[0,3,6,8,9],"\u3055\u3044\u3054":8,"\u3055\u3089\u306b":7,"\u3057\u304b":[3,7],"\u3057\u3057":8,"\u3057\u3066":8,"\u3057\u3070\u3089\u304f":3,"\u3057\u307e\u3044":8,"\u3057\u307e\u3057\u3087":8,"\u3057\u307e\u3059":8,"\u3057\u307e\u305b":8,"\u3057\u3084\u3059\u3044":9,"\u3057\u3088":8,"\u3059\u304e":[],"\u3059\u3050":8,"\u3059\u3053\u3057":[0,8],"\u3059\u3053\u3057\u308f\u304b\u308a":6,"\u3059\u3059\u3081":[5,8],"\u3059\u3059\u3081\u304b":4,"\u3059\u3059\u3081\u308b":5,"\u3059\u3079":[6,8],"\u3059\u3079\u3066":8,"\u3059\u308b":[0,2,3,4,5,7],"\u3059\u308c":8,"\u305a\u3064":8,"\u305b\u308b":[0,5,8,9],"\u305c\u3072\u3084\u3063":8,"\u305d\u3046\u3044\u3046":[],"\u305d\u3053\u306b\u5bfe\u3057":8,"\u305d\u306e":[3,4,5],"\u305d\u306e\u3046\u3048":0,"\u305d\u308c":8,"\u305d\u308c\u305e\u308c":[8,9],"\u305f\u3044":[1,8,9],"\u305f\u3044\u304b":5,"\u305f\u3046\u3048":8,"\u305f\u304b":[5,8],"\u305f\u3060\u304d":5,"\u305f\u3060\u3057":[6,8,9],"\u305f\u3068\u3048":8,"\u305f\u3073":8,"\u305f\u307b\u3046":9,"\u305f\u3081":[5,6,8,9],"\u305f\u3089":[5,6,8,9],"\u305f\u308a":[5,6,8,9],"\u305f\u308a\u3057":8,"\u3060\u3046\u3048":5,"\u3060\u3051":[0,6,8],"\u3060\u3055\u3044":[0,3,6,8],"\u3060\u3059":4,"\u3060\u3068":7,"\u3060\u308a":8,"\u3061\u306a\u307f":8,"\u3061\u3089\u3064\u304d":8,"\u3064\u3044":7,"\u3064\u304b\u3044":8,"\u3064\u304b\u3046":[],"\u3064\u304b\u3063":[8,9],"\u3064\u304f\u3088\u3046":7,"\u3064\u306a\u3044":8,"\u3064\u3076":8,"\u3064\u3076\u3059":8,"\u3066\u304f":8,"\u3066\u307f":8,"\u3066\u307f\u307e\u3057\u3087":9,"\u3067\u304d":[4,5,6,7,8,9],"\u3067\u304d\u308b":[5,6,8,9],"\u3067\u304f":8,"\u3067\u3057":0,"\u3067\u3057\u3087":8,"\u3067\u3059":[0,1,2,3,6,7,8,9],"\u3067\u3064":8,"\u3067\u307f\u307e\u3057\u3087":3,"\u3067\u307f\u308b":8,"\u3067\u3082":[0,8],"\u3068\u3044\u3046":[6,8,9],"\u3068\u3044\u3063":8,"\u3068\u3048":[1,9],"\u3068\u304b\u3044":8,"\u3068\u304d":[0,4,6,7,9],"\u3068\u304d\u306b":3,"\u3068\u304f":5,"\u3068\u3053\u308d":8,"\u3068\u3057":8,"\u3068\u3057\u3066":[5,7,8,9],"\u3068\u3059\u308b":8,"\u3068\u308b":5,"\u3068\u308c":9,"\u3069\u3046":[5,8],"\u3069\u3061\u3089":8,"\u306a\u3044":[0,4,6,7,8,9],"\u306a\u304a":8,"\u306a\u304a\u3057":6,"\u306a\u304b":8,"\u306a\u304b\u3063":[5,9],"\u306a\u304c\u3089":[3,5,8],"\u306a\u304f":[6,8],"\u306a\u3051\u308c":8,"\u306a\u3057":[6,8],"\u306a\u305c\u304b":0,"\u306a\u3063":5,"\u306a\u3069":[3,8],"\u306a\u306b":8,"\u306a\u306e":[],"\u306a\u307f":[0,6,8,9],"\u306a\u3081\u3089\u304b":8,"\u306a\u3089":[5,8,9],"\u306a\u308a":[1,6,7,8,9],"\u306a\u308b":[5,8,9],"\u306a\u3093":[0,8],"\u306b\u304a\u304d":0,"\u306b\u304b\u3044":8,"\u306b\u3057":[],"\u306b\u3059\u3059\u307f":6,"\u306b\u3059\u308c":7,"\u306b\u305b":8,"\u306b\u3064\u3044\u3066":[2,5,8,9],"\u306b\u307e\u3068\u3081\u3088":9,"\u306b\u3082":8,"\u306b\u3088\u3063":[],"\u306b\u3088\u3063\u3066":8,"\u306b\u3088\u308a":8,"\u306b\u3088\u308b":[2,5,7,8],"\u306b\u5bfe\u3057":[8,9],"\u306b\u5bfe\u3059\u308b":[5,8],"\u306b\u5bfe\u5fdc":[],"\u306b\u5f93\u3063":0,"\u306e\u305e\u3044":9,"\u306e\u305e\u307e\u3057\u3044":8,"\u306e\u3061":8,"\u306e\u3061\u3089\u3064\u304d":8,"\u306e\u3067":[0,6,8],"\u306e\u307b\u3046":8,"\u306e\u307f":[4,6,8,9],"\u306e\u3088\u3046":[1,6,7,8],"\u306f\u3044\u3089":4,"\u306f\u3058\u307e\u308b":8,"\u3072\u3068\u3064":8,"\u3072\u3089\u3044":8,"\u3072\u3089\u304d":[6,8,9],"\u3072\u3089\u304f":[6,8,9],"\u3079\u304d":5,"\u307b\u3046":[1,3,8],"\u307b\u304b":8,"\u307b\u3052\u307b\u3052":[],"\u307b\u3069":8,"\u307b\u307c":[0,8],"\u307e\u3057":[0,2,8,9],"\u307e\u3057\u3087":[],"\u307e\u3059":[0,1,2,3,5,6,7,8,9],"\u307e\u305a":8,"\u307e\u305b":[0,8,9],"\u307e\u305f":[8,9],"\u307e\u3060":8,"\u307e\u3063":2,"\u307e\u3064":0,"\u307e\u3067":[6,8,9],"\u307e\u3068":2,"\u307e\u3068\u3081":[],"\u307e\u3068\u3081\u3066":[5,8],"\u307e\u3068\u3081\u308b":[5,9],"\u307e\u308b":[],"\u307f\u3066":[3,5,6],"\u307f\u306a\u3057":[],"\u307f\u307e\u3057\u3087":[3,8],"\u307f\u308b":8,"\u3082\u3042\u308a":[],"\u3082\u3057":[0,8],"\u3082\u3061":[],"\u3082\u3061\u3044\u308b":[],"\u3082\u3068":5,"\u3082\u306e":8,"\u3084\u3059":5,"\u3084\u3059\u3044":3,"\u3084\u3059\u304f":[5,6,8,9],"\u3084\u3063":8,"\u3084setbeep":8,"\u3088\u3044":[0,5,8],"\u3088\u3046":[1,3,5,6,8,9],"\u3088\u304f":[0,2,4,8],"\u3088\u308a":[0,6,8,9],"\u3089\u308c":5,"\u3089\u308c\u308b":5,"\u308c\u307e\u305b":[3,8],"\u308c\u308b":[6,8],"\u308f\u304b\u308a":[0,5],"\u3092\u3044\u308c":8,"\u3092\u3048\u3089\u3073":3,"\u3092\u304a\u3057":[6,8],"\u3092\u304b\u3048":3,"\u3092\u3059\u308c":7,"\u3092\u3064\u304b\u3044":7,"\u3092\u3064\u304b\u3046":8,"\u3092\u3084\u3063":6,"\u30a2\u30a4\u30b3\u30f3":[6,9],"\u30a2\u30a4\u30b3\u30f3\u30dc\u30bf\u30f3":[6,8],"\u30a2\u30af\u30bb\u30b9":9,"\u30a2\u30af\u30bb\u30b9\u30dd\u30a4\u30f3\u30c8":8,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u30a2\u30c9\u30d0\u30fc\u30bf\u30a4\u30ba":[],"\u30a2\u30c9\u30d0\u30fc\u30bf\u30a4\u30ba\u30e1\u30f3\u30c8":[],"\u30a2\u30c9\u30ec\u30b9":[2,7,9],"\u30a2\u30ca\u30ed\u30b0\u30bb\u30f3\u30b5":4,"\u30a2\u30d7\u30ea":8,"\u30a4\u30af\u30ea\u30d7\u30b9":6,"\u30a4\u30f3\u30af\u30eb\u30fc\u30c9":[6,8],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[0,4,8],"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":5,"\u30a4\u30f3\u30c7\u30f3\u30c8":8,"\u30a4\u30f3\u30c8\u30ed\u30c0\u30af\u30b7\u30e7\u30f3":[],"\u30a4\u30f3\u30c8\u30ed\u30c0\u30af\u30b7\u30e7\u30f3intro":[],"\u30a6\u30a4\u30eb\u30b9":3,"\u30a6\u30a7\u30d6\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":8,"\u30a8\u30c7\u30a3\u30bf":8,"\u30aa\u30af\u30bf\u30fc\u30d6":8,"\u30aa\u30d5\u30b9\u30af\u30ea\u30fc\u30f3":8,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":8,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30d5\u30a1\u30a4\u30eb":6,"\u30aa\u30d7\u30b7\u30e7\u30f3":8,"\u30aa\u30ea\u30b8\u30ca\u30eb":8,"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9":8,"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30cf\u30fc\u30c9\u30a6\u30a7\u30a2\u30de\u30a4\u30b3\u30f3":[],"\u30ab\u30a6\u30f3\u30bf":8,"\u30ab\u30e1\u30e9":8,"\u30ab\u30e9\u30fc":5,"\u30ac\u30a4\u30c9":[5,8],"\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3":7,"\u30ad\u30e5\u30fc":4,"\u30ad\u30fc":8,"\u30ad\u30fc\u30dc\u30fc\u30c9":8,"\u30ae\u30b6\u30ae\u30b6":8,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":8,"\u30af\u30e9\u30b9":4,"\u30af\u30ea\u30c3\u30af":[2,3,6,7],"\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9":8,"\u30af\u30ed\u30c3\u30af":8,"\u30b0\u30e9\u30d5":8,"\u30b0\u30e9\u30f3\u30c9":8,"\u30b0\u30eb\u30fc\u30d7":5,"\u30b0\u30ed\u30fc\u30d0\u30eb":[8,9],"\u30b1\u30fc\u30d6\u30eb":[3,8],"\u30b3\u30d4\u30fc":[5,6,8,9],"\u30b3\u30de\u30f3\u30c9":[],"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":8,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[5,8],"\u30b3\u30e1\u30f3\u30c8":[0,8],"\u30b3\u30f3\u30d1\u30a4\u30eb":[4,6],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30c6\u30b9\u30c8":7,"\u30b3\u30fc\u30c9":4,"\u30b3\u30fc\u30c9\u30a8\u30c7\u30a3\u30bf":[6,8],"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":8,"\u30b5\u30a4\u30ba":[0,8],"\u30b5\u30a4\u30c8":[2,7,8],"\u30b5\u30b9\u30da\u30f3\u30c9":9,"\u30b5\u30d6\u30b9\u30af\u30e9\u30a4\u30d6":8,"\u30b5\u30d6\u30b9\u30af\u30e9\u30a4\u30d6\u30e2\u30c7\u30eb":8,"\u30b5\u30de\u30fc\u30bf\u30a4\u30e0":8,"\u30b5\u30f3\u30d7\u30eb":0,"\u30b5\u30f3\u30d7\u30eb\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":[],"\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0":[6,8],"\u30b5\u30fc\u30d0":[4,5],"\u30b5\u30fc\u30d3\u30b9":8,"\u30b5\u30fc\u30dc":8,"\u30b5\u30fc\u30dc\u30cf\u30c3\u30c8":4,"\u30b5\u30fc\u30dc\u30e2\u30fc\u30bf":[4,5],"\u30b5\u30fc\u30dc\u30e2\u30fc\u30bf\u30fc":[],"\u30b7\u30a7\u30eb":8,"\u30b7\u30b9\u30c6\u30e0":[5,7,8],"\u30b7\u30b9\u30c6\u30e0\u30ea\u30bb\u30c3\u30c8":8,"\u30b7\u30d5\u30c8":8,"\u30b7\u30ea\u30a2\u30eb":8,"\u30b7\u30ea\u30a2\u30eb\u30b3\u30f3\u30bd\u30fc\u30eb":[0,8,9],"\u30b7\u30ea\u30a2\u30eb\u30d7\u30ed\u30c3\u30bf":8,"\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8":3,"\u30b7\u30ea\u30a2\u30eb\u30e2\u30cb\u30bf":[8,9],"\u30b7\u30ea\u30fc\u30ba":5,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":8,"\u30b7\u30f3\u30d7\u30eb":8,"\u30b7\u30fc\u30c8":8,"\u30b8\u30a7\u30a4\u30bd\u30f3":8,"\u30b8\u30e3\u30a4\u30ed\u30bb\u30f3\u30b5":8,"\u30b8\u30e3\u30a4\u30ed\u30c7\u30fc\u30bf":8,"\u30b8\u30e3\u30f3\u30d1\u30ef\u30a4\u30e4":8,"\u30b8\u30e3\u30f3\u30d7":[],"\u30b9\u30a4\u30c3\u30c1\u30b5\u30a4\u30a8\u30f3\u30b9":5,"\u30b9\u30ad\u30c3\u30d7":8,"\u30b9\u30af\u30ea\u30d7\u30c8\u30a8\u30c7\u30a3\u30bf":8,"\u30b9\u30af\u30ed\u30fc\u30eb":8,"\u30b9\u30b1\u30c3\u30c1":[6,8],"\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af":[8,9],"\u30b9\u30bf\u30fc\u30c8":8,"\u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc":6,"\u30b9\u30c6\u30c3\u30d7":6,"\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9":8,"\u30b9\u30d7\u30e9\u30a4\u30c8":4,"\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8":8,"\u30b9\u30da\u30fc\u30b9":8,"\u30bb\u30de\u30d5\u30a9":4,"\u30bb\u30f3\u30b5":[4,5,9],"\u30bb\u30f3\u30b5\u30c7\u30fc\u30bf":8,"\u30bb\u30f3\u30b5\u30fc":[],"\u30bd\u30b1\u30c3\u30c8":[],"\u30bd\u30d5\u30c8":3,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":[],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":[1,2,6,8],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u30d5\u30a1\u30a4\u30eb":[8,9],"\u30bf\u30a4\u30d7":8,"\u30bf\u30a4\u30df\u30f3\u30b0":8,"\u30bf\u30b9\u30af":[3,4],"\u30bf\u30b9\u30af\u30cf\u30f3\u30c9\u30eb":9,"\u30bf\u30d6":[0,9],"\u30bf\u30fc\u30df\u30ca\u30eb":8,"\u30c0\u30a6\u30f3\u30b0\u30ec\u30fc\u30c9":[0,8],"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":6,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u30b5\u30a4\u30c8":6,"\u30c0\u30d6\u30eb\u30d0\u30c3\u30d5\u30a1\u30ea\u30f3\u30b0":8,"\u30c1\u30a7\u30c3\u30af":6,"\u30c1\u30e3\u30f3\u30cd\u30eb":8,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":7,"\u30c1\u30fc\u30e0":5,"\u30c4\u30fc\u30eb":[5,6,8],"\u30c6\u30ad\u30b9\u30c8":6,"\u30c6\u30ad\u30b9\u30c8\u30a8\u30ea\u30a2":[6,8],"\u30c6\u30b9\u30c8":[4,7,8],"\u30c7\u30a3\u30b9\u30d7\u30ec\u30a4":[4,5],"\u30c7\u30a3\u30b9\u30d7\u30ec\u30a4\u30b5\u30a4\u30ba":6,"\u30c7\u30d0\u30a4\u30b9":6,"\u30c7\u30d0\u30a4\u30b9\u30de\u30cd\u30fc\u30b8\u30e3":6,"\u30c7\u30d0\u30a4\u30b9p":[],"\u30c7\u30d0\u30a4\u30b9s":[],"\u30c7\u30d5\u30a9\u30eb\u30c8":6,"\u30c7\u30e5\u30fc\u30c6\u30a3\u30fc":8,"\u30c7\u30fc\u30bf":[0,4,5],"\u30c8\u30d4\u30c3\u30af":[],"\u30c8\u30fc\u30af\u30f3":0,"\u30c9\u30e9\u30a4\u30d0":6,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":8,"\u30ce\u30f3\u30d6\u30ed\u30c3\u30ad\u30f3\u30b0":8,"\u30cf\u30a4\u30e9\u30a4\u30c8":[0,8],"\u30cf\u30c3\u30b7\u30e5":8,"\u30cf\u30fc\u30c9\u30a6\u30a7\u30a2":8,"\u30d0\u30a4\u30ca\u30ea\u30bb\u30de\u30d5\u30a9":9,"\u30d0\u30c3\u30af\u30b0\u30e9\u30a6\u30f3\u30c9":8,"\u30d0\u30c3\u30c6\u30ea":6,"\u30d0\u30fc\u30b8\u30e7\u30f3":[0,4,8],"\u30d1\u30b9\u30ef\u30fc\u30c9":8,"\u30d1\u30bd\u30b3\u30f3":8,"\u30d1\u30cd\u30eb":5,"\u30d1\u30d6\u30ea\u30c3\u30b7\u30e5":8,"\u30d1\u30eb\u30b9":8,"\u30d1\u30fc\u30b8\u30f3\u30b0":8,"\u30d1\u30fc\u30b9":8,"\u30d2\u30f3\u30c8":4,"\u30d3\u30c3\u30c8":8,"\u30d3\u30c3\u30c8\u30ab\u30e9\u30fc":8,"\u30d3\u30c7\u30aa\u30ab\u30e1\u30e9":0,"\u30d3\u30eb\u30c9":5,"\u30d3\u30fc\u30d7":8,"\u30d4\u30af\u30bb\u30eb":8,"\u30d4\u30af\u30bb\u30eb\u30d5\u30a9\u30f3\u30c8":8,"\u30d4\u30f3":[0,8],"\u30d5\u30a1\u30a4\u30eb":[0,1,3,6,7,8,9],"\u30d5\u30a1\u30a4\u30eb\u30e1\u30cb\u30e5\u30fc":8,"\u30d5\u30a3\u30fc\u30eb\u30c9":6,"\u30d5\u30a9\u30eb\u30c0":[8,9],"\u30d5\u30a9\u30f3\u30c8":8,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":8,"\u30d5\u30e9\u30c3\u30b7\u30e5":8,"\u30d5\u30e9\u30c3\u30b7\u30e5\u30e1\u30e2\u30ea":0,"\u30d6\u30b6\u30fc":[4,6,9],"\u30d6\u30e9\u30a6\u30b6":8,"\u30d6\u30ec\u30c3\u30c9\u30dc\u30fc\u30c9":8,"\u30d6\u30ed\u30c3\u30af\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":6,"\u30d6\u30ed\u30fc\u30ab":8,"\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":[5,9],"\u30d7\u30ed\u30b0\u30e9\u30e0":[0,4],"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[8,9],"\u30d7\u30ed\u30bb\u30c3\u30b5":9,"\u30d7\u30ed\u30c8\u30b3\u30eb":8,"\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb":8,"\u30d7\u30ed\u30f3\u30d7\u30c8":8,"\u30d8\u30c3\u30c0":8,"\u30d8\u30c3\u30c0\u30d5\u30a1\u30a4\u30eb":8,"\u30d9\u30fc\u30b9":6,"\u30da\u30fc\u30b8":[4,5,8],"\u30dc\u30bf\u30f3":[0,4,5,6,9],"\u30dc\u30bf\u30f3\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":8,"\u30dc\u30fc\u30c9":9,"\u30dc\u30fc\u30c9\u30de\u30cd\u30fc\u30b8\u30e3":6,"\u30dc\u30fc\u30c9\u30de\u30cd\u30fc\u30b8\u30e3\u30fc":[],"\u30dc\u30fc\u30ec\u30fc\u30c8":8,"\u30dd\u30a4\u30f3\u30bf":[8,9],"\u30dd\u30fc\u30bf\u30eb":[],"\u30dd\u30fc\u30c8":[6,8],"\u30de\u30a4\u30af\u30ed\u30d7\u30ed\u30bb\u30c3\u30b5":5,"\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9":6,"\u30de\u30a4\u30b3\u30f3\u30e2\u30b8\u30e5\u30fc\u30eb":5,"\u30de\u30a6\u30b9":8,"\u30de\u30c3\u30c1":8,"\u30de\u30c3\u30c1\u30e3\u30fc":8,"\u30de\u30c3\u30c1\u30f3\u30b0":8,"\u30de\u30eb\u30c1\u30bf\u30b9\u30af":9,"\u30de\u30fc\u30b8":9,"\u30df\u30e5\u30fc\u30c6\u30c3\u30af\u30b9":4,"\u30df\u30ea":[8,9],"\u30e1\u30a4\u30f3":[8,9],"\u30e1\u30bd\u30c3\u30c9":8,"\u30e1\u30c3\u30bb\u30fc\u30b8":8,"\u30e1\u30cb\u30e5\u30fc":[6,8,9],"\u30e1\u30e2\u30ea":[3,9],"\u30e1\u30f3\u30d0\u30fc":8,"\u30e2\u30b8\u30e5\u30fc\u30eb":8,"\u30e2\u30cb\u30bf":[],"\u30e2\u30fc\u30bf":8,"\u30e2\u30fc\u30c9":[1,8,9],"\u30e9\u30a4\u30d6\u30e9\u30ea":8,"\u30e9\u30a4\u30d6\u30e9\u30ea\u30de\u30cd\u30fc\u30b8\u30e3":[0,6,8],"\u30e9\u30f3\u30c0\u30e0":9,"\u30e9\u30f3\u30d7":8,"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u30af\u30ed\u30c3\u30af":8,"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":9,"\u30ea\u30af\u30a8\u30b9\u30c8":8,"\u30ea\u30af\u30a8\u30b9\u30c8\u30dc\u30c7\u30a3":8,"\u30ea\u30b9\u30c8":[0,8,9],"\u30ea\u30bb\u30c3\u30c8":8,"\u30ea\u30bd\u30fc\u30b9":9,"\u30ea\u30c0\u30a4\u30ec\u30af\u30c8":8,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[5,8,9],"\u30ea\u30e2\u30b3\u30f3":4,"\u30ea\u30f3\u30af":[0,1,2,6],"\u30eb\u30fc\u30d7":8,"\u30ec\u30b8\u30e5\u30fc\u30e0":9,"\u30ec\u30b9\u30dd\u30f3\u30b9":8,"\u30ec\u30d9\u30eb":5,"\u30ec\u30dd\u30fc\u30c8":5,"\u30ed\u30fc\u30ab\u30eb":9,"\u30fb\u30bf\u30a4\u30df\u30f3\u30b0":9,"\u30fb\u30d0\u30a4\u30ca\u30ea":8,"\u30fb\u4e00\u6642\u505c\u6b62":9,"\u30fb\u5171\u6709":8,"\u30fb\u65b9\u5411\u6027":5,"\u30fb\u96fb\u529b":4,"\u4e00\u65e6":8,"\u4e00\u6642":9,"\u4e00\u6642\u7684":3,"\u4e00\u756a\u4e0b":8,"\u4e00\u756a\u5de6":6,"\u4e00\u81f4":[0,8,9],"\u4e00\u822c":8,"\u4e00\u822c\u7684":5,"\u4e00\u89a7":8,"\u4e00\u8cab":5,"\u4e00\u8cab\u6027":[],"\u4e00\u90e8":8,"\u4e09\u6d66":8,"\u4e0a\u8a18":[5,8],"\u4e0a\u90e8":8,"\u4e0b\u8a18":[],"\u4e0d\u5177\u5408":3,"\u4e0d\u63ee":8,"\u4e0d\u8981":8,"\u4e0e\u3048":5,"\u4e0e\u3048\u308b":9,"\u4e21\u65b9":7,"\u4e26\u5217":9,"\u4e3b\u4f53":9,"\u4e88\u5099":5,"\u4e88\u5831":8,"\u4e88\u7fd2":5,"\u4e8b\u524d":4,"\u4e8b\u8c61":8,"\u4e92\u63db":6,"\u4eba\u611f":[],"\u4eba\u6c17":[],"\u4eca\u56de":9,"\u4ecb\u3057":8,"\u4ed5\u69d8":8,"\u4ed5\u7d44":[5,9],"\u4ed5\u8fbc":9,"\u4ed8\u4e0e":8,"\u4ed8\u9332":[4,8],"\u4ee3\u7528":8,"\u4ee5\u4e0a":8,"\u4ee5\u4e0b":[0,5,6,8,9],"\u4ee5\u524d":8,"\u4ee5\u5916":[8,9],"\u4ee5\u964d":[6,8],"\u4eee\u5b9a":8,"\u4eee\u60f3":8,"\u4eee\u8a2d":8,"\u4f34\u3046":3,"\u4f38\u3070":8,"\u4f38\u9577":[],"\u4f4d\u7f6e":8,"\u4f4e\u3044":0,"\u4f55\u500d":8,"\u4f59\u767d":8,"\u4f5c\u54c1":5,"\u4f5c\u6210":[8,9],"\u4f5c\u696d":[5,6,9],"\u4f7f\u3044":8,"\u4f7f\u3044\u65b9":[0,9],"\u4f7f\u3046":8,"\u4f7f\u3048":[8,9],"\u4f7f\u3048\u308b":8,"\u4f7f\u3063":[6,8,9],"\u4f7f\u308f":[6,8],"\u4f7f\u7528":[3,5,6,8,9],"\u4f8b\u3048":8,"\u4f8b\u5916":8,"\u4fbf\u5229":8,"\u4fdd\u5b58":[8,9],"\u4fdd\u6301":8,"\u4fe1\u53f7":[],"\u4fee\u6b63":8,"\u500b\u5225":8,"\u500d\u6570":8,"\u500d\u7387":8,"\u5024\u3084":8,"\u5024\u4ee5":[],"\u505c\u3081":8,"\u505c\u6b62":[3,8,9],"\u5099\u3048":[5,8],"\u5099\u308f\u3063":9,"\u50cd\u304d":5,"\u512a\u5148":9,"\u5143\u3005":3,"\u5145\u96fb":3,"\u5148\u982d":8,"\u5165\u308a":8,"\u5165\u308c":[0,4,5,9],"\u5165\u308c\u308b":8,"\u5165\u51fa":9,"\u5165\u529b":[5,6,8,9],"\u5165\u9580":9,"\u5168\u3066":8,"\u5168\u54e1":8,"\u516c\u5f0f":8,"\u516c\u958b":8,"\u5171\u6709":[5,8],"\u5185\u5074":8,"\u5185\u51e6":8,"\u5185\u5305":[8,9],"\u5185\u5bb9":[0,5,8,9],"\u5185\u8535":[0,8],"\u5185\u8535ir":[],"\u5185\u8535irled":[],"\u5185\u8535led":4,"\u5185\u90e8":[1,9],"\u5186\u6ed1":[5,8],"\u518d\u73fe":5,"\u518d\u8d77":8,"\u518d\u8d77\u52d5":[3,6,8],"\u518d\u958b":9,"\u5199\u771f":5,"\u51e6\u7406":[8,9],"\u51fa\u3059":[],"\u51fa\u3059\u4f8b":0,"\u51fa\u3063\u5f35\u3063":8,"\u51fa\u529b":[0,6,8],"\u5206\u5272":9,"\u5206\u62c5":[5,8],"\u5206\u89e3":8,"\u5206\u89e3\u80fd":8,"\u5207\u308a":[8,9],"\u5207\u308a\u65b9":4,"\u5207\u308b":8,"\u5207\u65ad":8,"\u521d\u5fc3":[6,8],"\u521d\u5fc3\u8005":[],"\u521d\u671f":[6,8],"\u5224\u5b9a":8,"\u5225\u30bf\u30d6":0,"\u5225\u7269":8,"\u5225\u95a2\u6570":8,"\u5229\u7528":[4,6,9],"\u5236\u5fa1":[4,9],"\u5236\u9650":[3,8,9],"\u524a\u6e1b":9,"\u524a\u9664":[8,9],"\u524d\u5f8c":8,"\u524d\u63d0":8,"\u524d\u8005":[],"\u5272\u3063":0,"\u5272\u308a\u5f53\u3066\u308b":3,"\u5272\u308a\u8fbc\u307f":9,"\u5272\u5408":5,"\u5275\u9020":5,"\u52a0\u901f":8,"\u52a0\u901f\u5ea6":4,"\u52b9\u679c":[5,8],"\u52d5\u304b":5,"\u52d5\u304b\u3059":8,"\u52d5\u4f5c":[5,8,9],"\u52d5\u753b":8,"\u5316\u3051":8,"\u533a\u5207\u308a":8,"\u533a\u5225":[5,8],"\u5341\u5206":[3,5],"\u5343\u8449":8,"\u534a\u89d2":8,"\u5358\u4f53":8,"\u5358\u7d14":9,"\u5358\u8a9e":5,"\u5371\u967a":8,"\u539f\u56e0":6,"\u53b3\u5bc6":[8,9],"\u53c2\u7167":[1,7,8,9],"\u53c2\u8003":[0,2,5,6,7,8,9],"\u53c2\u8003url":4,"\u53cd\u5bfe":8,"\u53cd\u5fdc":8,"\u53d6\u308a\u9664\u304f":8,"\u53d6\u308c":8,"\u53d6\u308c\u308b":8,"\u53d6\u5f97":[0,4,9],"\u53d7\u3051":8,"\u53d7\u3051\u53d6\u308c":[],"\u53d7\u4fe1":8,"\u53d7\u5149":8,"\u53d7\u5149\u5668":8,"\u53ef\u5909\u9577":8,"\u53ef\u80fd":[3,8],"\u53f0\u76ee":8,"\u53f3\u4e0a":[6,8,9],"\u53f3\u4e0b":8,"\u5404\u6a5f":5,"\u5404\u81ea":5,"\u5408\u308f":[],"\u5408\u308f\u305b":0,"\u540c\u3058":[0,8,9],"\u540c\u3058\u73ed":8,"\u540c\u58eb":8,"\u540c\u6642":9,"\u540c\u671f":9,"\u540c\u69d8":8,"\u5411\u304b\u3063":8,"\u5411\u304d":[3,8],"\u5411\u3051":[5,6,8],"\u5411\u4e0a":6,"\u542b\u307e":[8,9],"\u542b\u3080":[5,8],"\u5468\u308a":8,"\u5468\u671f":8,"\u5468\u671ft":8,"\u5468\u6ce2":8,"\u5468\u6ce2\u6570":8,"\u547c\u3070":8,"\u547c\u3073":[6,8,9],"\u547c\u3073\u51fa\u3057":8,"\u547c\u3073\u51fa\u305b\u308b":8,"\u547c\u3076":[8,9],"\u547c\u3093":8,"\u547d\u4ee4":8,"\u554f\u984c":8,"\u56db\u89d2":6,"\u56de\u3059":8,"\u56de\u8def":8,"\u56f0\u96e3":8,"\u56f2\u3063":8,"\u56f3\u3078":7,"\u56f3\u3084":5,"\u56f3\u8868":7,"\u56fa\u5b9a":6,"\u5727\u529b":8,"\u57f7\u7b46":5,"\u57fa\u5730":8,"\u57fa\u672c":[5,8,9],"\u57fa\u672c\u7684":[],"\u57fa\u6e96":4,"\u57fa\u790e":5,"\u5831\u544a":5,"\u5831\u544a\u66f8":5,"\u5834\u5408":[0,1,3,5,8,9],"\u5834\u6240":8,"\u5857\u308a":8,"\u5897\u3084":8,"\u5897\u3084\u3059":8,"\u5897\u52a0":6,"\u5909\u3048":8,"\u5909\u5316":8,"\u5909\u63db":4,"\u5909\u6570":[0,8,9],"\u5909\u66f4":8,"\u5916\u5074":8,"\u5916\u90e8":4,"\u591a\u3044":8,"\u5927\u304d\u3044":8,"\u5927\u4e08":0,"\u5927\u6587\u5b57":8,"\u5929\u6c17":8,"\u592a\u967d":8,"\u5931\u6557":[0,6,8],"\u59cb\u3081":6,"\u5b66\u3093":[5,9],"\u5b66\u5185":8,"\u5b66\u5916":[],"\u5b66\u7fd2":[],"\u5b89\u3044":3,"\u5b89\u4fa1":5,"\u5b8c\u4e86":8,"\u5b8c\u6210":5,"\u5b9a\u7fa9":[8,9],"\u5b9f\u4e16":5,"\u5b9f\u4e16\u754c":5,"\u5b9f\u65bd":5,"\u5b9f\u753b":8,"\u5b9f\u884c":[8,9],"\u5b9f\u88c5":8,"\u5b9f\u9a13":[4,8,9],"\u5b9f\u9a13\u5ba4":4,"\u5ba3\u8a00":[8,9],"\u5bb9\u91cf":6,"\u5bfe\u51e6":8,"\u5bfe\u5fdc":8,"\u5bfe\u7b56":3,"\u5c0e\u5165":[5,8],"\u5c0f\u3055":8,"\u5c0f\u3055\u304f":8,"\u5c0f\u578b":5,"\u5c0f\u6587\u5b57":8,"\u5c11\u3057":8,"\u5c11\u306a\u3044":[1,8],"\u5c11\u306a\u304f":5,"\u5c5e\u3059\u308b":[],"\u5de5\u5b66":9,"\u5de6\u5074":8,"\u5dee\u3057\u8fbc\u3080":3,"\u5e38\u6642":8,"\u5e38\u6642\u52d5\u3044":9,"\u5e45\u5909":8,"\u5e73\u5747":8,"\u5e74\u5ea6":9,"\u5f0f\u65e5\u672c\u8a9e":5,"\u5f15\u304d\u4f38\u3070":8,"\u5f15\u304d\u8d77\u3053\u3059":[3,9],"\u5f15\u6570":[8,9],"\u5f15\u7528":[5,8],"\u5f31\u3044":[],"\u5f37\u304f":8,"\u5f37\u8abf":1,"\u5f62\u5f0f":[0,5,8],"\u5f71\u97ff":8,"\u5f79\u5272":8,"\u5f85\u305f":8,"\u5f85\u3061\u53d7\u3051":8,"\u5f85\u3061\u53d7\u3051\u308b":8,"\u5f85\u3064":9,"\u5f85\u3064\u4f8b":9,"\u5f85\u6a5f":9,"\u5f8c\u7d99":6,"\u5f8c\u8005":8,"\u5fa9\u5143":8,"\u5fa9\u6d3b":3,"\u5fae\u304b":8,"\u5fc5\u305a":5,"\u5fc5\u8981":[0,5,6,8,9],"\u5fc5\u9808":8,"\u5fd8\u308c\u308b":8,"\u5fdc\u3058":8,"\u601d\u308f":1,"\u60c5\u5831":[4,5,8,9],"\u60f3\u5b9a":8,"\u610f\u5473":8,"\u610f\u56f3":[5,9],"\u6163\u308c":5,"\u6163\u6027":8,"\u6210\u529f":[8,9],"\u6210\u679c\u7269":5,"\u624b\u5206\u3051":8,"\u624b\u6bb5":8,"\u624b\u8efd":8,"\u624b\u9593":[6,8],"\u624b\u9806":[],"\u6253\u3061\u8fbc\u3080":8,"\u6253\u3064":8,"\u6271\u3044":4,"\u6271\u3046":[],"\u6291\u5236":8,"\u629c\u3051\u308b":3,"\u62b5\u6297":[1,8],"\u62bc\u3057":[0,3,8],"\u62bc\u3059":[6,8],"\u62bd\u51fa":8,"\u62bd\u8c61":5,"\u62c5\u5f53":[5,8],"\u62e1\u5927":[2,7],"\u62e1\u5f35":[6,8],"\u62e1\u5f35\u5b50":[8,9],"\u6307\u5b9a":[0,8,9],"\u6307\u6a19":[],"\u6307\u793a":[5,6],"\u6319\u52d5":9,"\u633f\u3057":6,"\u633f\u3059\u9762":8,"\u6392\u4ed6":9,"\u63a5\u7d9a":[0,3,4,6],"\u63cf\u753b":8,"\u63d0\u51fa":5,"\u63db\u3048":5,"\u63db\u3048\u308b":8,"\u642d\u8f09":5,"\u64cd\u4f5c":0,"\u6539\u5584":3,"\u6539\u5909":[0,8],"\u6539\u884c":8,"\u6545\u969c":8,"\u6559\u54e1":[5,8],"\u6570\u5024":8,"\u6570\u5909":[],"\u6570\u5b57":6,"\u6570\u79d2":8,"\u6574\u5f62":8,"\u6574\u6570":8,"\u6587\u4f53":5,"\u6587\u5b57":8,"\u6587\u5b57\u5217":4,"\u6587\u6cd5":[],"\u6587\u732e":5,"\u65ad\u7247":8,"\u65b0\u3057\u3044":[0,8],"\u65b0\u898f\u30bf\u30d6":9,"\u65b9\u5f0f":8,"\u65b9\u6cd5":8,"\u65e5\u6642":8,"\u65e5\u672c\u8a9e":[0,6,9],"\u660e\u308b":8,"\u660e\u5ea6":8,"\u660e\u5feb":[],"\u660e\u78ba":5,"\u660e\u8a18":5,"\u6620\u308a":8,"\u6642\u523b":[4,9],"\u6642\u5dee":8,"\u6642\u8a08":8,"\u6642\u9593":[6,8,9],"\u666e\u901a":[],"\u666e\u901a\u62bc":8,"\u66f2\u3052":8,"\u66f4\u65b0":8,"\u66f8\u3044":[4,8],"\u66f8\u304b":8,"\u66f8\u304d":5,"\u66f8\u304d\u8fbc\u307e":8,"\u66f8\u304d\u8fbc\u307f":[4,5,9],"\u66f8\u304d\u8fbc\u3080":6,"\u66f8\u304d\u8fbc\u3093":[3,8,9],"\u66f8\u304f":[0,4,9],"\u66f8\u3051":8,"\u66f8\u5f0f":5,"\u66ff\u3048":8,"\u66ff\u3048\u308b":9,"\u6700\u521d":[5,8],"\u6700\u5927":8,"\u6700\u5f8c":8,"\u6700\u60aa":8,"\u6700\u65b0":[0,8],"\u6700\u7d42":8,"\u6700\u8fd1":6,"\u6709\u52b9":8,"\u6709\u540d":6,"\u6709\u7528":5,"\u671b\u307e\u3057\u3044":8,"\u671f\u5f85":[],"\u671f\u9593":5,"\u672c\u4f53":[4,6],"\u672c\u5b9f\u9a13":6,"\u672c\u5f53":8,"\u672c\u6765":8,"\u672c\u8cea":9,"\u67d4\u8edf":6,"\u683c\u7d0d":8,"\u691c\u7d22":6,"\u691c\u8a3c":8,"\u6982\u8981":8,"\u69cb\u6210":[8,9],"\u69cb\u7bc9":5,"\u69cb\u9020":8,"\u6a19\u6e96":8,"\u6a29\u9650":[3,6],"\u6a5f\u5668":[5,8],"\u6a5f\u69cb":9,"\u6a5f\u80fd":[3,5,8,9],"\u6b62\u3081\u308b":8,"\u6b63\u898f":8,"\u6b8b\u3057":8,"\u6b8b\u3059":5,"\u6b8b\u308a":8,"\u6b8b\u308b":8,"\u6bb5\u968e":6,"\u6bd4\u3079":8,"\u6c17\u5727":4,"\u6c17\u6e29":4,"\u6c7a\u3081":5,"\u6ce8\u610f":[1,4,6],"\u6d17\u3044\u51fa\u3057":5,"\u6d3b\u304b\u3057":9,"\u6d3b\u52d5":5,"\u6d41\u901a":8,"\u6d88\u3048":8,"\u6db2\u6676":[4,5],"\u6df1\u3081\u308b":8,"\u6df1\u5165\u308a":8,"\u6e08\u307f":[],"\u6e1b\u3089":[],"\u6e21\u3059":9,"\u6e21\u3059\u4f8b":9,"\u6e29\u5ea6":[],"\u6e7f\u5ea6":4,"\u6e96\u3058\u308b":5,"\u6e96\u5099":[4,5,8],"\u6ea2\u308c\u308b":8,"\u6f14\u7b97":8,"\u70b9\u6ec5":8,"\u70b9\u706f":8,"\u7121\u7dda":[5,8],"\u7167\u5408":8,"\u7167\u5ea6":8,"\u7279\u5b9a":9,"\u7279\u6709":6,"\u72b6\u614b":[6,8,9],"\u72b6\u6cc1":8,"\u72ec\u81ea":5,"\u73ed\u3068\u3057":5,"\u73ed\u3068\u3057\u3066":5,"\u73ed\u5358":5,"\u73fe\u5728":[],"\u73fe\u72b6":8,"\u7406\u7531":5,"\u7406\u89e3":8,"\u74b0\u5883":[4,5,8],"\u751f\u3058\u308b":8,"\u751f\u6210":[8,9],"\u7528\u3044":[0,5,8,9],"\u7528\u3044\u308b":[8,9],"\u7528\u8a9e":5,"\u7528\u9014":[8,9],"\u753b\u50cf":2,"\u753b\u9762":[3,5,6,8,9],"\u756a\u30d4\u30f3":8,"\u756a\u53f7":[0,7,8],"\u7570\u306a\u308b":8,"\u767a\u4fe1":[],"\u767a\u58f2":6,"\u767a\u6027":8,"\u767a\u884c":8,"\u767a\u8868":5,"\u767a\u8868\u4f1a":5,"\u767a\u97f3":6,"\u767b\u5834":5,"\u767b\u9332":8,"\u76ee\u4ee5\u964d":8,"\u76ee\u7684":[4,8],"\u76ee\u7acb\u3061":[],"\u76ee\u7acb\u3064":8,"\u76f4\u5217":8,"\u76f4\u63a5":[1,8],"\u76f4\u6d41":8,"\u76f8\u5f53":9,"\u76f8\u8ac7":[],"\u7701\u7565":8,"\u77ed\u3044\u8db3":8,"\u77ed\u304f":8,"\u77ed\u7e2e":6,"\u7834\u58ca":8,"\u7834\u88c2":8,"\u78ba\u8a8d":[5,8],"\u793a\u3055":5,"\u793a\u3057":[0,1,2,7,8,9],"\u793a\u3059":[5,6,8],"\u793eenv":0,"\u79d2\u5f85":8,"\u79d2\u6570":8,"\u79d2\u9593":8,"\u79d2\u9cf4\u3089":[8,9],"\u79fb\u884c":8,"\u7a0b\u5ea6":[5,8],"\u7a2e\u985e":[0,8],"\u7a7a\u767d":8,"\u7aef\u5b50":8,"\u7ba1\u7406":[3,6,8,9],"\u7bc4\u56f2":[5,8],"\u7c21\u5358":[5,6,8],"\u7c21\u6f54":8,"\u7d20\u6570":[],"\u7d22\u5f15":[],"\u7d42\u308f\u3089":4,"\u7d42\u308f\u308b":9,"\u7d42\u4e86":[3,6,8],"\u7d42\u7aef":8,"\u7d44\u307f\u5408\u308f":9,"\u7d50\u5c40":8,"\u7d50\u679c":[7,8],"\u7d50\u8ad6":1,"\u7d5e\u308a\u8fbc\u307f":6,"\u7d5e\u308a\u8fbc\u3093":[6,8],"\u7d71\u4e00":5,"\u7d71\u5408":[4,5,6],"\u7d99\u627f":9,"\u7d99\u7d9a":8,"\u7dad\u6301":8,"\u7dda\u901a":8,"\u7e26\u578b":8,"\u7e26\u6a2a":8,"\u7e4b\u304c\u308b":8,"\u7e4b\u304e":[],"\u7e70\u308a\u8fd4\u3057":8,"\u7e70\u308a\u8fd4\u3059":4,"\u7f6e\u3044":9,"\u7f6e\u304d":8,"\u7fd2\u5f97":9,"\u8003\u3048":8,"\u8003\u5bdf":5,"\u8003\u616e":[],"\u8005\u5411":8,"\u8033\u969c\u308a":8,"\u8074\u304f\u5206":0,"\u8089\u773c":8,"\u80cc\u666f":8,"\u811a\u6ce8":2,"\u81ea\u30bf\u30b9\u30af":[3,9],"\u81ea\u5206":6,"\u81ea\u52d5":[7,8],"\u8272\u6307\u5b9a":8,"\u82e5\u5e72":8,"\u866b\u773c":8,"\u884c\u3046":[5,6],"\u884c\u3048":5,"\u884c\u3048\u308b":[5,9],"\u884c\u3063":[8,9],"\u884c\u308f":8,"\u884c\u76ee":8,"\u8868\u73fe":8,"\u8868\u793a":[2,3,4,5,7],"\u8868\u8a18":[6,8],"\u88c5\u7f6e":8,"\u8907\u6570":[4,8],"\u8907\u96d1":[8,9],"\u8981\u7d20":8,"\u898b\u3048":8,"\u898b\u3048\u308b":8,"\u899a\u3048":8,"\u89e3\u50cf":[6,8],"\u89e3\u653e":9,"\u89e3\u6790":8,"\u89e3\u6c7a":5,"\u89e3\u8aac":8,"\u8a00\u8a9e":[6,8],"\u8a08\u6e2c":8,"\u8a08\u7b97":8,"\u8a18\u53f7":8,"\u8a18\u6cd5":8,"\u8a18\u8ff0":[5,6,8,9],"\u8a18\u9332":5,"\u8a2d\u5b9a":[1,4,8,9],"\u8a31\u53ef":9,"\u8a55\u4fa1":4,"\u8a66\u3057":8,"\u8a66\u3059":8,"\u8a66\u307f\u308b":8,"\u8a66\u9a13":5,"\u8a71\u3057\u5408\u3044":5,"\u8a71\u3057\u5408\u3063":5,"\u8a73\u3057\u3044":8,"\u8a73\u7d30":[6,8,9],"\u8a8d\u8b58":3,"\u8aac\u660e":[5,8],"\u8aad\u307f":5,"\u8aad\u307f\u51fa\u3057":8,"\u8aad\u307f\u53d6\u3063":8,"\u8aad\u307f\u53d6\u308a":5,"\u8aad\u307f\u53d6\u308b":8,"\u8aad\u3081":8,"\u8aad\u3093":0,"\u8abf\u3079":8,"\u8abf\u3079\u308b":[],"\u8abf\u6574":8,"\u8abf\u67fb":5,"\u8b1b\u7fa9":[5,7,8],"\u8ca9\u58f2":9,"\u8cbc\u3063":0,"\u8cbc\u308a\u4ed8\u3051":0,"\u8cc7\u6599":[],"\u8cc7\u6e90":9,"\u8cea\u554f":[4,8],"\u8cfc\u8aad":8,"\u8d64\u5916":4,"\u8d64\u5916\u5149":[],"\u8d64\u5916\u7dda":8,"\u8d64\u5916led":0,"\u8d64\u8272":8,"\u8d64led":[],"\u8d77\u304d\u308b":8,"\u8d77\u52d5":[4,6,8],"\u8db3\u308a":[3,8],"\u8ddd\u96e2":8,"\u8efd\u91cf":8,"\u8f9e\u66f8":8,"\u8fbc\u3080":1,"\u8fd1\u3044":[],"\u8fd1\u3065":8,"\u8fd1\u3065\u304b":[],"\u8fd1\u5e74":5,"\u8fd1\u8ddd":8,"\u8fd4\u3057":8,"\u8fd4\u3059":8,"\u8fd4\u5374":8,"\u8ff0\u3079\u308b":9,"\u8ffd\u52a0":[0,8,9],"\u8ffd\u5b9f\u9a13":[],"\u8ffd\u8a18":8,"\u9001\u3063":8,"\u9001\u4fe1":[4,5],"\u9001\u53d7":8,"\u9001\u53d7\u4fe1":8,"\u9014\u4e2d":9,"\u901a\u4fe1":[4,5,9],"\u901a\u5e38":8,"\u901a\u77e5":[],"\u901f\u304f":6,"\u901f\u5ea6":8,"\u9023\u643a":5,"\u9023\u7d50":8,"\u9023\u7d9a":8,"\u9031\u76ee":[4,5],"\u9032\u3081":5,"\u9032\u3081\u308b":8,"\u9032\u6570":4,"\u904e\u304e":8,"\u9053\u7b4b":5,"\u9055\u3044":[0,9],"\u9069\u3057":9,"\u9069\u5207":5,"\u9069\u5408":6,"\u9069\u5f53":[3,8],"\u9069\u7528":8,"\u9078\u629e":[8,9],"\u90e8\u5206":[0,5,8,9],"\u914d\u5217":[0,8],"\u914d\u7dda":8,"\u914d\u7f6e":0,"\u91cd\u8981":[0,8],"\u91cd\u8996":6,"\u9577\u3044":8,"\u9577\u3055":8,"\u9577\u5e74":6,"\u9577\u62bc":8,"\u9577\u62bc\u3057":8,"\u958b\u3044":8,"\u958b\u304f":8,"\u958b\u59cb":[6,8],"\u958b\u767a":[4,5,8,9],"\u9593\u9055\u3044":1,"\u9593\u9694":9,"\u95a2\u6570":[3,8,9],"\u9632\u6b62":8,"\u9650\u3089\u308c":9,"\u9650\u5b9a":9,"\u968f\u6642":8,"\u96db\u5f62":5,"\u96e2\u7121":8,"\u96fb\u529b":[],"\u96fb\u5727":8,"\u96fb\u6e90":4,"\u975e\u516c":5,"\u975e\u516c\u5f0f":9,"\u975e\u5e38":6,"\u97f3\u58f0":0,"\u9805\u76ee":[5,8],"\u9806\u6b21":5,"\u9806\u756a":8,"\u9818\u57df":8,"\u985e\u4f3c":[],"\u9ad8\u6027":5,"\u9ad8\u901f":9,"\u9ad8\u97f3":8,"\u9cf4\u3063":8,"\u9cf4\u3089":[6,8],"\u9cf4\u3089\u3059":8,"\u9ec4\u8272":0,"\uff01\u300c":8,"\uff01\uff01":8,"\uff08\u300c":5,"\uff08\u8aad\u307f\u53d6\u3063":8,"\uff08\u8d64":4,"\uff08arduino":4,"\uff08arduinoide":6,"\uff08ascii":8,"\uff08iot":5,"\uff08m":8,"\uff08project":5,"\uff08tft":4,"\uff08windows":4,"\uff09:":[],"\uff09<":[],"\uff09\u3001":[8,9],"\uff09\u3002":[3,6,8],"\uff09\u300d":6,"\uff09\u30ad\u30fc":8,"\uff09arduino":4,"\uff13\u3064":8,"\uff1a<":6,"\uff1a\u300c":[],"\uff1aarduino":8,"\uff1ahttps":8,"\uff1ajson":8,"\uff1am":5,"\uff1amqtt":8,"\uff1aproperly":9,"\uff1awifi":8,"\uff1f\u300d":8,"\uff1f\u3011":8,"\uff1f\uff09":[5,8],"\uff1f\uff1f":7,"])":[0,7,8,9],"]+":8,"],":[8,9],"].":8,"];":[8,9],"]\u301c":8,"^]":8,"`\uff09":[],"`_":[],"``":6,"`adc":[],"`arduino":[],"`esp":[],"`gp":[],"a\u30dc\u30bf\u30f3":8,"b\u30dc\u30bf\u30f3":[3,8],"break":8,"byte":8,"cds\u30bb\u30eb":[1,8],"char":[8,9],"class":7,"const":[0,8],"continue":8,"control\u30ad\u30fc":8,"default":7,"double":1,"else":[0,8,9],"false":8,"float":[0,8],"for":[0,6,7,8,9],"function":8,"get\u30e1\u30bd\u30c3\u30c9":8,"if":[0,7,8,9],"in":[7,8],"int":[0,1,8,9],"interface":8,"long":7,"m5\u30c7\u30d0\u30a4\u30b9":8,"new":[7,8],"null":[8,9],"pin\u30d4\u30f3":[],"post\u30e1\u30bd\u30c3\u30c9":8,"public":8,"return":8,"this":[0,7,8],"true":8,"try":8,"var":8,"void":[0,1,8,9],"while":[0,8,9],"with":[0,7,8,9],"{\"":[],"| (":8,"|br":8,"|copy":[],"||":8,"})":[],"};":[0,8],_ap:8,_asp:[0,8],_bmp:0,_bt:8,_build:[],_callback:8,_ch:8,_clients:8,_code:[0,8],_connected:[0,8],_control:8,_data:0,_datetypedef:8,_esp:6,_esprite:4,_factory:[],_factorytest:[],_feb:[1,2],_file:[],_for:8,_format:[],_from:8,_guide:5,_hour:8,_interval:0,_ipconfig:7,_japanese:5,_json:8,_len:0,_m:[],_mac:8,_mday:8,_menu:[],_min:8,_mon:8,_moved:0,_msec:9,_ntp:8,_ok:[0,8],_on:8,_password:8,_permanently:0,_pin:0,_pm:1,_point:1,_pub:8,_rate:0,_raw:0,_read:8,_sec:8,_select:[],_serial:8,_serialport:[],_sht:0,_sketchexample:[],_sprite:8,_srv:8,_sta:[0,8],_str:[0,8],_sub:8,_subscribe:8,_t:[1,8,9],_timetypedef:8,_url:8,_wday:8,_wifi:8,_wlx:[],_year:8,able:8,accgyro:[],action:[],adafruit:0,adc:4,add:8,added:7,addheader:[],address:8,addresses:7,admonition:7,adornment:7,after:7,air:0,akita:8,akizukidenshi:[],all:8,allows:8,along:8,also:7,an:[0,7],analog:[1,8],analogread:[1,8],and:[0,7,8],anonymous:7,any:[0,7,8],anything:8,api:[8,9],app:8,application:0,apps:8,arcfn:0,arduino:[2,3,4,5,8,9],arduinocds:[1,8],arduinojson:8,are:[0,7,8],arg:9,array:8,arrived:8,as:[0,7,8],ascii:8,at:[0,7,8],attention:7,attribute:7,author:7,authorization:0,auto:7,automatically:7,available:8,average:8,avoid:0,ax:8,axp:8,ay:8,az:8,ba:8,backslash:7,based:0,basetype:9,be:[0,7,8],bearer:0,been:0,beep:[4,9],beept:9,beeptask:9,before:[0,7],begin:[0,1,7,8,9],below:0,between:7,bgcolor:8,bibliographic:7,binary:9,bit:8,bits:[0,8],black:0,blank:7,ble:8,bledevice:1,blehiddevice:8,bleserver:1,bleutils:1,blob:8,block:7,blocks:7,blue:8,bluetooth:4,bluetoothserial:8,bme:0,bmp:0,body:8,book:7,bool:8,boot:0,boston:8,bps:8,br:[],brackets:7,breaks:7,brew:5,broken:8,broker:8,bt:8,btna:[0,8],btnb:[0,8],bts:[],buf:8,bullet:7,but:[7,8],bval:[],by:[0,7,8],bytes:8,callback:8,camera:0,can:[0,7,8],cannot:7,caption:7,capture:0,captured:0,captures:8,carriage:8,caution:7,cbuf:8,cc:8,ccache:[],ccs:[],cd:8,cds:[],ch1:8,ch2:8,ch:8,character:[7,8],cheat:[],cheatsheet:7,check:[0,8],circuit:0,circuits:0,cit:[7,8],citation:7,citics:[],classifier:7,client:8,clientid:8,clients:8,close:8,cm:8,co:[],code:[0,1,6,7,8],codes:0,coin:0,com:6,command:8,comment:7,comments:7,common:0,compound:7,conclusion:1,configtime:8,connect:[0,8],connected:[0,8],connecting:8,connection:[0,8],connectordisconnect:8,console:[],constrain:8,container:7,content:[0,8],contents:[4,7],contentservice:8,contexts:7,continuation:7,conversion:7,converter:8,copy:8,copyright:[0,8],coredebuglevel:8,coreno:9,correct:0,could:0,count:[8,9],cp2:[],cpp:9,cpu:8,crange:[],create:7,csv:7,ctrl:8,curl:8,current:0,currentline:8,custom:7,cyan:8,danger:7,data:[0,7,8],date:[7,8],datestruct:8,david:7,dccc:[],debugging:0,dec:8,decorations:7,def:7,define:8,definition:7,definitions:7,defs:7,delay:[0,1,8,9],delaymicroseconds:0,demonstrates:0,description:7,deserialize:8,deserializejson:8,details:8,dev:[],development:6,device:[6,8],devices:8,dict:8,dictionary:8,different:8,digital:[0,8],digitalwrite:[8,9],directive:[],directly:[0,7],disconnect:8,disconnected:8,display:[0,8],distributed:8,divisor:[],dl:6,dname:8,docinfo:7,docs:7,doctest:7,document:7,docutils:7,doget:8,doing:0,don:0,done:9,dopost:[],drawclock:[],drive:0,driven:0,driver:[1,6],each:7,eclipse:6,effectively:0,either:8,element:7,elements:[],elm:[],emphasis:7,empty:7,end:[1,8],energy:[],enhancement:7,enough:[0,8],enumerated:7,env:4,environment:[6,8],epigraph:7,equivalent:7,error:[0,7],escape:8,escapes:7,esp:[0,1,8,9],etc:[0,7],even:[7,8],ex1:8,example:[0,8],examples:7,exclusion:9,explicit:7,extern:0,external:7,fabf:8,factorytest:[6,8],failed:[0,8],faq:[4,8],fast:8,feb:7,felica:[],ffe:0,fft:1,field:7,fifth:8,fig:7,figure:7,file:[0,6,7,8],find:[0,8],first:[0,8],fitness:8,flashed:0,floor:8,flush:7,following:0,font:8,footer:7,footnote:7,form:[],format:[0,7],found:0,foundation:8,franklin:8,free:8,freertos:4,frequently:[4,8],from:[0,7,8],ftdi:6,ful:0,full:7,g0:8,g2:[1,8],general:8,generate:7,generates:7,generic:7,get:[0,8],getcoloruint:8,getlocaltime:8,getrange:8,getrtc:8,getvalue:8,gh:[],git:9,github:[0,5,8],gmt:8,gnd:[1,8],gnu:8,gochkov:8,good:0,goodger:7,google:4,got:8,gotip:8,gp:8,gpio:[0,8],gpios:0,gr:[],green:8,greenyellow:8,grid:7,groupxx:8,grove:8,gui:5,gval:[],gx:8,gyrox:8,gyroy:8,gyroz:8,handled:0,hangstuck:[],happytech:9,has:0,hat:4,have:[0,8],header:[0,7,8],heading:7,height:[],here:[0,1],hex:8,hextodec:8,high:[8,9],highlights:7,highorlow:9,hint:7,hoge:[1,9],hogehoge:9,hold:8,hope:8,how:8,hristo:8,html:7,http:[0,7,8,9],httpclient:[0,8],httpcode:[0,8],https:[1,2,4,5,6,7,8],hum:0,human:8,humi:0,humidity:0,hyperlink:7,hz:8,ic:8,id:[],ide:[4,5,8,9],iframe:[],ii:4,image:7,images:[],implied:8,important:7,imu:8,inc:8,include:[0,1,7,8],indentation:7,indented:7,indents:7,index:6,inertial:8,info:[7,8],informal:7,information:0,inline:[],ino:[0,8,9],input:[7,8],insert:8,install:[0,5,7],instead:7,integrated:6,interfere:0,internal:7,internet:7,interpreted:[],interrupt:9,interval:9,intro:[],introductory:7,intval:8,iot:8,ip:[2,7,8],ipaddr:[],ipconfig:[2,7],ir:[0,8],irled:8,irrecvdumpv:[0,8],irremoteesp:[0,8],irsend:[0,8],irsenddemo:0,is:[0,7,8],isalldigit:8,isdigit:8,isprime:[],it:[0,7,8],items:[7,8],itself:7,january:0,java:6,javascript:8,jjyclock:[],jquery:[],json:8,july:0,junichi:8,just:0,ken:0,key:8,khz:0,kirled:[0,8],know:0,krecvpin:8,labelled:7,lang:[0,1,5,8],large:8,lastrow:8,lasttime:9,later:8,latex:7,lcd:[0,4,9],lcdt:9,lcdtask:9,learn:0,learning:5,least:7,lecattachpin:8,led:[0,4,9],ledcattachpin:[0,8],ledchannel:0,ledcsetup:[0,8],ledcwrite:[0,8],ledcwritetone:0,ledt:9,ledtask:9,legend:7,len:[0,8],length:8,lesser:8,library:[0,8],license:8,like:7,line:[1,4,7,8],lines:7,list:7,lists:7,literal:7,loadcount:8,localtime:8,location:8,longer:8,loop:[0,1,8,9],loops:8,low:[8,9],lpt:6,lt:8,m5:[0,8,9],m5stack:5,m5stick:6,m5stickc:5,m5stickcplus:[6,8],ma:8,mac:[],macbt:8,magenta:8,magnify:8,main:[1,9],make:[0,1,8],manager:[0,6],manually:7,many:[7,8],map:8,marchan:[],markup:[],master:8,match:8,matching:8,matchstate:8,math:7,mathematical:7,max:8,may:8,mbuf:8,mcu:9,measurement:8,merchantability:8,message:[0,8],meta:7,metadata:7,meth:8,method:8,mg:8,mhigh:8,mi:7,microsoft:6,min:[],mini:7,minutes:0,mistakes:0,miura:[0,8],mlow:8,mode:[0,8],modify:8,modulation:4,module:0,modules:0,more:[0,8],mpu:8,mqpass:8,mqtt:4,mqttclient:8,mquser:8,ms:8,mstatus:9,music:0,must:[0,8],mute:8,mutex:9,mutual:9,mydata:8,name:[7,8],named:7,names:8,nay:8,naz:8,nconnecting:8,nec:[0,8],needs:[0,8],negative:0,network:4,newline:8,next:7,ngy:8,ngz:8,nn:0,no:[7,8],non:7,nopen:8,normal:0,not:[0,8],notation:7,note:[7,9],notice:[],notifications:9,notify:[4,8],now:8,ntp:4,ntpserver:8,num:[8,9],number:7,numbered:7,numref:7,object:8,of:[0,7,8],off:8,office:8,ok:8,olive:9,on:[0,7,8,9],once:[0,1],onchange:[],onin:[],option:[7,8],optional:7,options:7,or:[7,8],orange:8,os:[6,9],ota:[],output:[8,9],overlined:7,pair:8,panasonic:0,paragraphs:7,parallel:7,param:8,parameter:8,params:8,parsed:7,parsing:8,part:8,particular:8,pass:8,passed:7,password:8,payload:[0,8],pbl:5,pc:[6,8],pctaskgettaskname:9,pdpass:9,pep:7,photoshot:0,picture:7,pin:[0,1,8,9],ping:8,pinmode:[1,8,9],pins:0,pip:7,pixel:8,pjs:[],playmusic:0,please:[0,7],plus:[5,6],point:1,polarity:0,port:[6,8],portticktype:9,pos:8,possible:7,post:[4,8],postdata:0,power:8,poweroff:8,preceded:7,pref:8,preference:4,preferences:8,preserve:7,pressed:8,pressure:0,prime:[],print:[7,8],printf:8,println:8,processes:7,profile:4,progmem:0,proposal:7,protocol:4,prs:0,pub:8,published:8,publisher:8,pubsubclient:8,pubtopic:8,pull:7,pulse:4,purpose:8,push:8,put:[0,1],pvparam:9,pwm:4,pwmch:[],px:[],python:7,qiita:8,qs:8,question:[],questions:[4,8],queue:8,quick:[],quit:8,quote:7,quoted:7,quotes:7,random:8,randomseed:8,range:8,raspberrypi:[],ratein:8,raw:[0,7],rcs:[],re:8,read:[7,8],reading:7,ready:8,really:0,realtime:9,reboot:8,received:8,reconnect:8,recording:0,red:8,redistribute:8,reference:[],regexp:8,reject:8,reminders:[],remote:8,remoteip:8,repeatedly:1,repeats:0,replace:[0,7],replacement:7,req:8,request:[7,8],reserved:8,reset:8,resolution:0,resolve:8,resolved:8,response:[0,8],rest:7,restart:8,restructuredtext:[],result:0,ret:8,retain:8,retained:8,revision:7,rfc:7,rgb:8,rgbf:[],rights:8,role:[],rom:1,routine:9,rr:[],rrggbb:8,rtc:8,rtos:4,rtp:9,rubric:7,run:[0,1],rval:[],rx:0,same:8,sample:[0,1],sampling:0,samsung:0,savecount:8,sbuf:8,scanf:[],screen:0,script:8,search:8,secs:8,section:[],sections:7,sectnum:7,secure:[],see:[0,7,8],semaphore:9,send:[0,8],sending:0,sensor:4,sent:[],separate:[7,9],separated:7,serial:[0,1,4,9],serialbt:8,serialize:[],server:[0,8],serverclients:8,service:9,servo:0,set:[0,7,8],setbeep:8,setcpufrequencymhz:8,setcursor:8,setrgb:[],setrotation:8,setrtcfromlt:8,settextfont:8,setup:[0,1,6,8,9],sheet:8,shirriff:0,should:8,showmac:[],sht:0,sidebar:7,simple:7,size:8,sjdoc:8,slave:8,slow:8,so:8,software:8,sony:0,source:7,spaces:7,speaker:4,specific:7,specified:0,sphinx:[2,7],spot:8,spp:4,spreadsheet:4,spreadsheetapp:8,sprintf:[8,9],sprite:8,spu:8,src:[0,1,2,8,9],ss:7,ssid:8,ssl:8,st:8,standalone:7,standard:7,start:[1,8],started:8,state:[0,8],staticjsondocument:8,stdio:[],step:[],stop:8,store:6,str:8,string:[0,8],strong:7,struct:[1,8],structure:[],studio:6,style:[],sub:[7,8,9],submit:[],subscriber:8,subscript:7,subsections:7,substitution:7,succesfully:8,suggest:0,suggested:0,sup:7,superscript:7,support:0,sure:[0,8],syntax:[],table:7,tables:7,tabs:9,take:8,target:7,task:9,taskhandle:9,tcp:8,telemetry:8,telnet:8,temp:0,temperature:0,term:7,terms:8,test:0,text:[],textfont:8,tft:8,th:9,than:8,that:8,the:[0,8],then:8,there:8,threadx:9,time:[0,4],timestruct:8,tip:7,tips:0,title:7,titled:7,titles:7,tl:0,tm:8,tmp:[0,8],to:[0,1,7,8],today:7,toint:8,token:0,tokentoken:0,tokentokentoken:0,tone:8,topic:[7,8],toshiba:8,tostring:8,transistor:0,transmissions:0,transparent:8,transport:8,tricky:0,tskname:9,tsknm:9,tutorial:[],tv:8,two:7,tx:0,type:[7,8],typedef:1,typical:0,uart:8,uiflow:6,uint:[0,8],unable:0,under:8,underlined:7,unicode:7,uniform:7,unit:[0,8],unless:0,uno:6,unsigned:8,untouched:7,update:[0,8],upto:8,url:8,usa:8,usb:[3,6,8],use:[0,7,8],used:[0,7,8],useful:[7,8],using:[0,9],val:8,valid:0,value:8,valueserver:[],variation:7,vcp:6,ver:[],verse:7,version:[0,7,8],view:8,virtual:6,visible:7,visual:6,vtaskdelayuntil:9,vtaskdelete:9,wait:0,waiting:0,warning:7,warranty:8,was:8,way:7,we:0,weather:8,weatherapi:8,web:[6,8],webapi:8,webclient:4,webserver:4,were:7,what:0,when:0,white:8,width:4,wifi:[0,4],wificlient:[0,8],wificlientsecure:8,wifimulti:[0,8],wifiserver:8,wifitelnettoserial:8,wiki:0,will:[0,8],willcon:8,willconnect:8,windows:8,wire:0,wiring:0,withargtask:9,without:8,wl:[0,8],won:0,would:8,wrapped:7,write:8,writer:7,www:[1,5,6,8],xsemaphorecreatemutex:9,xsemaphoregive:9,xsemaphorehandle:9,xsemaphoretake:9,xtaskcreatepinnedtocore:9,xtaskgettickcount:9,xxx:8,yellow:8,you:[0,7,8],your:[0,1,8],youtu:8,zero:8},titles:["\u4ed8\u9332","Arduino","Conclusion","Frequently-Asked Questions \uff08FAQ: \u3088\u304f\u3042\u308b\u8cea\u554f\uff09","IoT\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0","\u5b9f\u9a13\u306e\u76ee\u7684","\u4e8b\u524d\u6e96\u5099","Tutorial","1\u9031\u76ee","2\u9031\u76ee"],titleterms:{"'s":[],"(infrared":8,"-asked":3,"5stickcplus":6,"\u3042\u308b":3,"\u3059\u3059\u3081\u304b":5,"\u3059\u308b":[6,8,9],"\u305d\u306e":[8,9],"\u3060\u3059":0,"\u3067\u304d":3,"\u3068\u304d":8,"\u306a\u3044":3,"\u306e\u307f":3,"\u306f\u3044\u3089":3,"\u307e\u3068\u3081":[],"\u3088\u304f":3,"\u30a2\u30c9\u30ec\u30b9":8,"\u30a2\u30ca\u30ed\u30b0\u30bb\u30f3\u30b5":8,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":6,"\u30a4\u30f3\u30c8\u30ed\u30c0\u30af\u30b7\u30e7\u30f3":[],"\u30a4\u30f3\u30c8\u30ed\u30c0\u30af\u30b7\u30e7\u30f3intro":[],"\u30ad\u30e5\u30fc":9,"\u30af\u30e9\u30b9":8,"\u30b3\u30de\u30f3\u30c9":8,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[],"\u30b3\u30f3\u30d1\u30a4\u30eb":3,"\u30b3\u30fc\u30c9":8,"\u30b5\u30f3\u30d7\u30eb":8,"\u30b5\u30f3\u30d7\u30eb\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":6,"\u30b5\u30fc\u30d0":8,"\u30b5\u30fc\u30dc\u30cf\u30c3\u30c8":8,"\u30b5\u30fc\u30dc\u30e2\u30fc\u30bf":8,"\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8":6,"\u30b9\u30d7\u30e9\u30a4\u30c8":8,"\u30b9\u30ec\u30fc\u30d6":8,"\u30bb\u30de\u30d5\u30a9":9,"\u30bb\u30f3\u30b5":8,"\u30bf\u30b9\u30af":9,"\u30c6\u30b9\u30c8":0,"\u30c7\u30a3\u30b9\u30d7\u30ec\u30a4":8,"\u30c7\u30d0\u30a4\u30b9":8,"\u30c7\u30fc\u30bf":8,"\u30c8\u30d4\u30c3\u30af":8,"\u30d0\u30fc\u30b8\u30e7\u30f3":6,"\u30d2\u30f3\u30c8":8,"\u30d3\u30eb\u30c9":6,"\u30d6\u30b6\u30fc":8,"\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":4,"\u30d7\u30ed\u30b0\u30e9\u30e0":[3,6,8,9],"\u30dc\u30bf\u30f3":8,"\u30dc\u30fc\u30c9":6,"\u30dc\u30fc\u30c9\u30de\u30cd\u30fc\u30b8\u30e3\u30fc":6,"\u30de\u30b9\u30bf":8,"\u30df\u30e5\u30fc\u30c6\u30c3\u30af\u30b9":9,"\u30e2\u30cb\u30bf":[],"\u30e9\u30a4\u30d6\u30e9\u30ea":6,"\u30ea\u30e2\u30b3\u30f3":[0,8],"\u30ea\u30f3\u30af":[],"\u30ef\u30a4\u30eb\u30c9\u30ab\u30fc\u30c9":8,"\u30fb\u96fb\u529b":8,"\u4e8b\u524d":6,"\u4ed8\u9332":0,"\u4fe1\u53f7":8,"\u5165\u308c":8,"\u5185\u8535led":8,"\u5207\u308a\u65b9":8,"\u5229\u7528":8,"\u5236\u5fa1":8,"\u52a0\u901f\u5ea6":8,"\u53c2\u8003":[],"\u53c2\u8003url":5,"\u53d6\u5f97":8,"\u57fa\u6e96":5,"\u5834\u5408":6,"\u5909\u63db":8,"\u5916\u90e8":8,"\u5b66\u7fd2":[],"\u5b9f\u9a13":5,"\u5b9f\u9a13\u5ba4":0,"\u60c5\u5831":6,"\u6271\u3044":8,"\u6307\u6a19":[],"\u63a5\u7d9a":8,"\u6570\u5909":[],"\u6574\u6570":[],"\u6587\u5b57\u5217":8,"\u6642\u523b":8,"\u66f8\u3044":9,"\u66f8\u304d\u8fbc\u307f":[3,6,8],"\u66f8\u304d\u8fbc\u3080":8,"\u66f8\u304f":8,"\u672c\u4f53":8,"\u691c\u7d22":4,"\u6c17\u5727":0,"\u6c17\u6e29":0,"\u6ce8\u610f":8,"\u6db2\u6676":8,"\u6e29\u5ea6":[],"\u6e7f\u5ea6":0,"\u6e96\u5099":6,"\u74b0\u5883":6,"\u76ee\u7684":5,"\u78ba\u8a8d":6,"\u7d22\u5f15":4,"\u7d42\u308f\u3089":3,"\u7d71\u5408":9,"\u7e70\u308a\u8fd4\u3059":3,"\u8868\u793a":[6,8],"\u8907\u6570":9,"\u8a2d\u5b9a":6,"\u8a55\u4fa1":5,"\u8aad\u307f\u53d6\u308a":8,"\u8abf\u3079\u308b":8,"\u8cea\u554f":3,"\u8d64\u5916":[0,8],"\u8d77\u52d5":3,"\u8ffd\u52a0":6,"\u9001\u4fe1":[0,8],"\u901a\u4fe1":8,"\u901a\u77e5":[],"\u9031\u76ee":[8,9],"\u9032\u6570":8,"\u9078\u629e":6,"\u958b\u767a":6,"\u96fb\u529b":[],"\u96fb\u6e90":[3,8],"\uff08\u8d64":8,"\uff08arduino":6,"\uff08tft":8,"\uff08windows":3,"\uff09arduino":3,_esprite:8,adc:8,analogread:[],and:[],arduino:[1,6],beep:8,bluetooth:8,body:7,cheat:7,conclusion:2,directive:7,documentation:[],elements:7,energy:[],env:0,esp:6,faq:3,freertos:9,frequently:3,google:8,hat:0,https:0,ide:[3,6],ii:0,indices:[],inline:7,interpreted:7,iot:4,lcd:8,led:8,line:0,linux:6,low:[],mac:8,macos:6,markup:7,modulation:8,mosquitto:8,mqtt:8,network:8,notify:0,ntp:8,post:0,preference:8,profile:8,protocol:8,publish:8,pulse:8,pwm:8,question:[],questions:3,quick:7,reference:7,reminders:7,restructuredtext:7,role:7,rtos:9,section:7,sensor:0,serial:8,sheet:7,speaker:0,spp:8,spreadsheet:8,structure:7,subscribe:8,syntax:7,tables:[],testrtp:[],text:7,the:7,time:8,to:[],tutorial:7,url:6,webclient:8,webserver:8,welcome:[],width:8,wifi:8,windows:6}}) \ No newline at end of file diff --git a/_build/html/tutorial.html b/_build/html/tutorial.html index aa4793b..8858bf7 100644 --- a/_build/html/tutorial.html +++ b/_build/html/tutorial.html @@ -14,6 +14,7 @@ + @@ -91,9 +92,12 @@ diff --git a/_build/html/week1.html b/_build/html/week1.html index 75d25f3..bc35e17 100644 --- a/_build/html/week1.html +++ b/_build/html/week1.html @@ -14,6 +14,7 @@ + @@ -639,7 +640,7 @@

    注釈

    -

    変数の型一覧 uint16_t は unsigned int 16bit type の略です。
    参考:M5StackのLCDディスプレイの色をRGBで指定する。

    +

    変数の型一覧 uint16_t は unsigned int 16bit type の略です。 |br| 参考:M5StackのLCDディスプレイの色をRGBで指定する。

    @@ -1807,7 +1808,7 @@

    警告

    -

    https (SSL) 通信をする場合は、スケッチ例→HTTPClient→BasicHttpsClient を参照して、WiFiClientSecure クラスを使用してください。

    +

    https (SSL) 通信でPOSTメソッドで送信する場合は、付録→LINE Notify (リスト 32)を参考にしてください。以前は「スケッチ例→HTTPClient→BasicHttpsClient を参照して、WiFiClientSecure クラスを使用してください。」と書いていましたが、WifiClientSecureは必要ありません。

    @@ -1868,7 +1869,7 @@

    警告

    -

    doGet関数の返却値は、本来はHTTPのレスポンスとして受け取れるのですが、現状の HTTPClient ではリダイレクトをうまく処理できないため、Google App Scriptの出力を受け取れない可能性があります。

    +

    doGet関数の返却値は、本来はHTTPのレスポンスとして受け取れるのですが、現状の HTTPClient ではリダイレクトをうまく処理できない?ため、Google App Scriptの出力を受け取れない可能性があります。

    diff --git a/_build/html/week2.html b/_build/html/week2.html index dca55f6..005c161 100644 --- a/_build/html/week2.html +++ b/_build/html/week2.html @@ -14,6 +14,7 @@ + @@ -105,6 +106,7 @@
  • Frequently-Asked Questions (FAQ: よくある質問)
  • +
  • 付録
  • diff --git a/appendix.rst b/appendix.rst index c97cc29..2f85b7d 100755 --- a/appendix.rst +++ b/appendix.rst @@ -54,3 +54,15 @@ :linenos: :emphasize-lines: 8-19 +LINE Notify (HTTPS POST) +--------------------------------------------- + +https://notify-bot.line.me/ja/ で、トークンを取得しておく必要があります。 + + +.. literalinclude:: src/line01.ino + :caption: + :name: line01 + :language: arduino + :linenos: + :emphasize-lines: 25-29 diff --git a/conf.py b/conf.py index 2ba44e8..8b01c52 100755 --- a/conf.py +++ b/conf.py @@ -1,75 +1,76 @@ -# Configuration file for the Sphinx documentation builder. -# -# This file only contains a selection of the most common options. For a full -# list see the documentation: -# https://www.sphinx-doc.org/en/master/usage/configuration.html - -# -- Path setup -------------------------------------------------------------- - -# If extensions (or modules to document with autodoc) are in another directory, -# add these directories to sys.path here. If the directory is relative to the -# documentation root, use os.path.abspath to make it absolute, like shown here. -# -# import os -# import sys -# sys.path.insert(0, os.path.abspath('.')) - - -# -- Project information ----------------------------------------------------- - -project = 'IoT Programming' -copyright = '2021, Motoki Miura' -author = 'Motoki Miura' - - -# -- General configuration --------------------------------------------------- - -# Add any Sphinx extension module names here, as strings. They can be -# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom -# ones. -extensions = [ - 'sphinx_copybutton', - 'sphinx_rtd_theme', -] - -# Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] - -# The language for content autogenerated by Sphinx. Refer to documentation -# for a list of supported languages. -# -# This is also used if you do content translation via gettext catalogs. -# Usually you set "language" from the command line for these cases. -language = 'ja' - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -# This pattern also affects html_static_path and html_extra_path. -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] - - -# -- Options for HTML output ------------------------------------------------- - -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -# -# html_theme = 'alabaster' -# html_theme = 'bizstyle' -# html_theme = 'nature' -html_theme = 'sphinx_rtd_theme' - -master_doc = 'index' -numfig = True - -# Add any paths that contain custom static files (such as style sheets) here, -# relative to this directory. They are copied after the builtin static files, -# so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] - -#latex_docclass = {'manual': 'jsbook'} -latex_engine = 'platex' -#latex_documents = {'documentclass':'howto'} -latex_elements = { - 'papersize': 'a4paper', - 'pointsize': '10pt', - } +# Configuration file for the Sphinx documentation builder. +# +# This file only contains a selection of the most common options. For a full +# list see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Path setup -------------------------------------------------------------- + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +# +# import os +# import sys +# sys.path.insert(0, os.path.abspath('.')) + + +# -- Project information ----------------------------------------------------- + +project = 'IoT Programming' +copyright = '2021, Motoki Miura' +author = 'Motoki Miura' + + +# -- General configuration --------------------------------------------------- + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom +# ones. +extensions = [ + 'sphinx_copybutton', + 'sphinx_rtd_theme', +] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['_templates'] + +# The language for content autogenerated by Sphinx. Refer to documentation +# for a list of supported languages. +# +# This is also used if you do content translation via gettext catalogs. +# Usually you set "language" from the command line for these cases. +language = 'ja' + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +# This pattern also affects html_static_path and html_extra_path. +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] + + +# -- Options for HTML output ------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +# +# html_theme = 'alabaster' +# html_theme = 'bizstyle' +# html_theme = 'nature' +html_theme = 'sphinx_rtd_theme' + +master_doc = 'index' +numfig = True + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ['_static'] +html_css_files = ['custom.css'] + +#latex_docclass = {'manual': 'jsbook'} +latex_engine = 'platex' +#latex_documents = {'documentclass':'howto'} +latex_elements = { + 'papersize': 'a4paper', + 'pointsize': '10pt', + } diff --git a/intro.rst b/intro.rst index a5c2615..7b65096 100755 --- a/intro.rst +++ b/intro.rst @@ -49,4 +49,5 @@ - M5StickC非公式日本語リファレンス https://lang-ship.com/reference/unofficial/M5StickC - スイッチサイエンス M5StickC Plus https://www.switch-science.com/catalog/6470 -- M5StickCガイド https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/docs/M5StickC_Guide_Japanese.pdf \ No newline at end of file +- M5StickCガイド https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/docs/M5StickC_Guide_Japanese.pdf +- arduino-cli https://github.com/arduino/arduino-cli コマンドラインでビルド&書き込みできるツール。最初はGUI版の Arduino IDE をおすすめしますが、慣れてきたら入れてみてもよいかも。MacOSなら brew install で簡単に導入できます。 \ No newline at end of file diff --git a/src/line01.ino b/src/line01.ino new file mode 100644 index 0000000..b6cd9ab --- /dev/null +++ b/src/line01.ino @@ -0,0 +1,52 @@ +#include +#include +#include +#include + +WiFiMulti WiFiMulti; + +void setup() { + Serial.begin(115200); + WiFi.mode(WIFI_STA); + WiFiMulti.addAP("miura_asp_2g", "********"); + + // wait for WiFi connection + Serial.print("Waiting for WiFi to connect..."); + while ((WiFiMulti.run() != WL_CONNECTED)) { + Serial.print("."); + delay(50); + } + Serial.println(" connected"); +} + +void loop() { + HTTPClient http; + + if (http.begin("https://notify-api.line.me/api/notify")) { // HTTPS + http.addHeader("Authorization", "Bearer TOKENTOKENTOKEN"); // ここのTOKENTOKEN... の部分に、取得したTokenを指定する + http.addHeader("Content-Type", "application/x-www-form-urlencoded"); // format of postdata + String postdata = "message=日本語でも大丈夫です"; + int httpCode = http.POST(postdata); + + // httpCode will be negative on error + if (httpCode > 0) { + // HTTP header has been send and Server response header has been handled + Serial.printf("[HTTP] GET... code: %d\n", httpCode); + + // file found at server + if (httpCode == HTTP_CODE_OK || httpCode == HTTP_CODE_MOVED_PERMANENTLY) { + String payload = http.getString(); + Serial.println(payload); + } + } else { + Serial.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str()); + } + http.end(); + } else { + Serial.printf("[HTTP] Unable to connect\n"); + } + + Serial.println(); + Serial.println("Waiting 2 minutes..."); + delay(60*2*1000); // 120秒まつ +} \ No newline at end of file diff --git a/week1.rst b/week1.rst index 968e5fc..dd7bfe2 100755 --- a/week1.rst +++ b/week1.rst @@ -1,7 +1,8 @@ .. |br| raw:: html -
    + + 1週目 ======================== @@ -375,7 +376,11 @@ :linenos: .. :emphasize-lines: 5 -.. warning:: https (SSL) 通信をする場合は、スケッチ例→HTTPClient→BasicHttpsClient を参照して、WiFiClientSecure クラスを使用してください。 +.. role:: strike + + +.. warning:: https (SSL) 通信でPOSTメソッドで送信する場合は、付録→LINE Notify (:numref:`line01`)を参考にしてください。以前は「スケッチ例→HTTPClient→BasicHttpsClient を参照して、WiFiClientSecure クラスを使用してください。」と書いていましたが、WifiClientSecureは必要ありません。 + Google Spreadsheet にデータを送信する -------------------------------------------------------- @@ -400,7 +405,7 @@ :linenos: :emphasize-lines: 14,18 -.. warning:: doGet関数の返却値は、本来はHTTPのレスポンスとして受け取れるのですが、現状の ``HTTPClient`` ではリダイレクトをうまく処理できないため、Google App Scriptの出力を受け取れない可能性があります。 +.. warning:: doGet関数の返却値は、本来はHTTPのレスポンスとして受け取れるのですが、現状の ``HTTPClient`` ではリダイレクトをうまく処理できない?ため、Google App Scriptの出力を受け取れない可能性があります。 WebServer ----------------------------------------