diff --git a/dev/docs/contribution.html b/dev/docs/contribution.html index 83ead3e206..a5c8277cc5 100644 --- a/dev/docs/contribution.html +++ b/dev/docs/contribution.html @@ -509,7 +509,7 @@
$ sudo apt-get install -V debootstrap createrepo rpm mercurial python-docutils python-jinja2 ruby-full mingw-w64 g++-mingw-w64 mecab libmecab-dev nsis gnupg2 dh-autoreconf bison
また、Sphinxは常に最新のバージョンを使う事を推奨します。 pip3
を使用して最新のSphinxをインストールするようにして下さい。
$ pip3 install --upgrade sphinx
-
また、rubyのrakeパッケージを以下のコマンドによりインストールします。
$ sudo gem install rake
リリース作業ではRPMパッケージに対する署名を行います。 -その際、パッケージ署名用の鍵が必要です。
-Groongaプロジェクトでは署名用の鍵をリリース担当者の公開鍵で暗号化してリポジトリのpackages/ディレクトリ以下へと登録しています。新しいリリース担当者に任命されたばかりで、まだ自分用に暗号化された鍵が無い場合には、他のリリース担当者に依頼して署名用の鍵を暗号化してもらって下さい。
-リリース担当者はリポジトリに登録された秘密鍵を復号した後に鍵のインポートを以下のコマンドにて行います。
-$ cd packages
-$ gpg --decrypt release-key-secret.asc.gpg.(担当者) > (復号した鍵ファイル)
-$ gpg --import (復号した鍵ファイル)
-
鍵のインポートが正常終了すると gpg –list-keys でGroongaの署名用の鍵を確認することができます。
-$ gpg --list-keys
-pub 1024R/F10399C0 2012-04-24
-uid groonga Key (groonga Official Signing Key)
-<packages@groonga.org>
-sub 1024R/BC009774 2012-04-24
-
鍵をインポートしただけでは使用することができないため、インポートした鍵に対してtrust,signを行う必要があります。
-以下のコマンドを実行して署名を行います。(途中の選択肢は省略)
-$ gpg --edit-key packages@groonga.org
-gpg> trust
-gpg> sign
-gpg> save
-gpg> quit
-
この作業は、新規にリリースを行うことになった担当者やパッケージに署名する鍵に変更があった場合などに行います。
-この作業は、新規にリリースを行うことになった担当者のみ行います。
[Launchpad](https://launchpad.net/)にアカウントを作成し、自分の普段使いの公開鍵を登録した上で、他のリリース担当者に依頼して[Groongaチーム](https://launchpad.net/~groonga)に追加してもらって下さい。
Groongaのリリース作業ではリリース専用の環境下(コンパイルフラグ)でビルドする必要があります。
リリース時と開発時でディレクトリを分けずに作業することもできますが、誤ったコンパイルフラグでリリースしてしまう危険があります。
そのため、以降の説明では$GROONGA_DIR以下のディレクトリにリリース用の作業ディレクトリ(groonga.clean)としてソースコードをcloneしたものとして説明します。
リリース用のクリーンな状態でソースコードを取得するために$GROONGA_DIRにて以下のコマンドを実行します。
@@ -523,34 +486,30 @@この作業はリリース作業ごとに行います。
GroongaのウェブサイトのソースはGroonga同様にGitHubにリポジトリを置いています。
-リリース作業では後述するコマンド(make update-latest-release)にてトップページのバージョンを置き換えることができるようになっています。
-Groongaのウェブサイトのソースコードを$GROONGA_ORG_PATHとして取得するためには、$GROONGA_DIRにて以下のコマンドを実行します。
-$ git clone git@github.com:groonga/groonga.org.git
+リリース作業では後述するコマンド( rake release:version:update
)でタグをプッシュしてCIが動き出すトリガーとします。
+$ git clone git@github.com:groonga/groonga.org.git ${GROONGA_ORG_PATH}
これで、$GROONGA_ORG_PATHにgroonga.orgのソースを取得できます。
-
-12.3.7.3.3. CMakeの実行#
-$ mkdir -p build-dir/groonga
-$ cmake -S $GROONGA_CLONE_DIR -B build-dir/groonga --preset=doc --fresh -DCMAKE_INSTALL_PREFIX="/tmp/local"
-$ cmake --build build-dir/groonga
-
-
-また、あらかじめpackagesユーザでpackages.groonga.orgにsshログインできることを確認しておいてください。
-ログイン可能であるかの確認は以下のようにコマンドを実行して行います。
-$ ssh packages@packages.groonga.org
+
+12.3.7.3.3. Apache Arrowリポジトリの取得#
+Apache Arrowのソースも取得します。Apache ArrowのRakeタスクを利用するためです。
+$ git clone https://github.com/apache/arrow.git ${APACHE_ARROW_REPOSITORY}
+
+
+12.3.7.3.4. 事前確認#
Ubuntu向けパッケージをテスト用に公開する時は、 Ubuntu向けパッケージのビルド確認 の手順で不安定版のリポジトリにアップロードするように指定します。
新任のリリース担当者は必ず、この方法でPPAのリポジトリにパッケージをアップロードできる事を確認しておいてください。
PPAのリポジトリは、同名のパッケージを上書いてアップロードできないので、不安定版のリポジトリでビルドできることを確認してから、安定版のリポジトリへアップロードするようにしてください。
-12.3.7.3.4. 変更点のまとめ#
+12.3.7.3.5. 変更点のまとめ#
前回リリース時からの変更点を $GROONGA_CLONE_DIR/doc/source/news/*.md
(英語)にまとめます。
ここでまとめた内容についてはリリースアナウンスにも使用します。
前回リリースからの変更履歴を参照するには以下のコマンドを実行します。
@@ -568,18 +527,44 @@ 12.3.7.3.4. 変更点のまとめ内部的な変更(変数名の変更やらリファクタリング)
-
-12.3.7.3.5. rake release:version:updateの実行#
-rake release:version:update
コマンドでは、 OLD_RELEASE
に前回のバージョンを、 GROONGA_ORG_DIR
にGroongaのWebサイトのディレクトリーを、 NEW_RELEASE_DATE
に次回リリースの日付(未来の日付)を指定します。
-$ cd $GROONGA_CLONE_DIR
-$ rake release:version:update OLD_RELEASE=14.0.9 GROONGA_ORG_DIR=../groonga.org OLD_RELEASE_DATE=2024-09-27 NEW_RELEASE_DATE=2024-11-05
+
+12.3.7.3.6. rake release
の実行#
+rake release
コマンドでは、 NEW_RELEASE_DATE
にリリースの日付(≒ 実行日)を指定します。
+$ cd ${GROONGA_CLONE_DIR}
+$ rake release NEW_RELEASE_DATE=$(date +%Y-%m-%d)
-これにより、clone済みのGroongaのWebサイトのトップページのソース(index.html,ja/index.html)やRPMパッケージのspecファイルのバージョン表記などが更新されます。
+release
タスクは次の3つのタスクを実行します。
+
+release:version:update
+
+RPMパッケージのspecファイルに新しいバージョンのチェンジログを追記したりなどします。
+
+
+release:tag
+
+リリース用のタグを打ちます。
+これによりタグがプッシュされ自動リリースが動き出します。
+
+
+dev:version:bump
+
+次のリリースに向けてバージョンを更新します。
+
+
+
+
+12.3.7.3.6.1. 補足: dev:version:bump
タスク#
+rake dev:version:bump NEW_VERSION=x.x.x
のようにバージョンを指定して更新できます。
+
+Note
+base_versionはtar.gzなどのリリース用のファイル名で使用します。
+
+
-12.3.7.3.6. Ubuntu向けパッケージのビルド確認#
-Ubuntu向けのパッケージは、LaunchPadでビルドしています。
+
12.3.7.3.7. Ubuntu向けパッケージのビルド確認#
+Ubuntu向けのパッケージは、Launchpadでビルドしています。
リリース前にUbuntu向けパッケージが正常にビルドできるか以下の手順で確認します。
rake release:version:update
の結果をリポジトリーにpush後にGitHub Actionsで生成されるソースアーカイブをダウンロードします。
ダウンロードしたソースアーカイブを $GROONGA_CLONE_DIR
のトップに配置します。その後、以下のコマンドを実行してください。
@@ -589,61 +574,17 @@ 12.3.7.3.5. rake release:version:update
-12.3.7.3.7. 各種テストの確認#
+12.3.7.3.8. 各種テストの確認#
リリース用のタグを設定する前に、以下のテストが全てパスしているかを確認します。
タグを設定してから問題が発覚すると、再度リリースすることになってしまうので、タグを設定する前に問題がないか確認します。
テストやパッケージの作成に失敗していたら、原因を特定して修正します。
-12.3.7.3.8. リリースタグの設定#
-リリース用のタグを打つには以下のコマンドを実行します。
-$ rake release:tag
-
-
-
-
-12.3.7.3.9. リリース用アーカイブファイルの作成とアップロード#
-Groongaのリリース用アーカイブファイルは、MroongaやPGroonga、Rroonga等関連プロダクトのリリースにも使用します。
-生成でき次第アップロードしておくと、関連プロダクトのリリース作業がしやすくなります。
-タグを設定すると、GitHub Actionsで自動生成されます。
-GitHub Actionsでソースアーカイブが自動生成されたのを確認したら以下の手順でアップロードします。
-$ cd packages
-$ rake source GITHUB_ACCESS_TOKEN=...
-
-
-これにより、GitHub Actionsで生成したソースアーカイブを $GROONGA_CLONE_DIR/groonga-(バージョン).tar.gz
-にダウンロードし packages.groonga.org へアップロードします。
-
-
-12.3.7.3.10. パッケージのビルドとアップロード#
-パッケージングは以下の3種類を対象に行います。
-Ubuntu以外のOS向けのパッケージは全てGitHub Actionsで生成されます。
-
-Debian系(.deb)
-Red Hat系(.rpm)
-Windows系(.exe,.zip)
-
-
-
-12.3.7.3.11. Debian系パッケージのビルドとアップロード#
-タグを設定すると、GitHub Actionsで自動生成されます。
-GitHub Actionsでパッケージが自動生成されたのを確認したら以下の手順で、packages.groonga.orgへアップロードします。
-$ cd packages
-$ rake apt
-
-
-この段階では、ビルドしたパッケージは未署名なので、$PACKAGES_GROONGA_ORG_REPOSITORYに移動し、以下のコマンドを実行します。
-$ rake apt
-
-
-上記のコマンドを実行することで、リポジトリーの同期、パッケージの署名、リポジトリーの更新、アップロードまで実行できます。
-
-
-12.3.7.3.12. Ubuntu用パッケージのアップロード#
+12.3.7.3.9. Ubuntu用パッケージのアップロード#
Ubuntu向けパッケージの作成には、作業マシン上にGroongaのビルドに必要な依存ソフトウェア一式がインストールされている必要があります。以下のようにしてインストールしておいて下さい。
$ sudo apt build-dep groonga
@@ -657,38 +598,14 @@ 12.3.7.3.12. Ubuntu用パッケージの
-
-12.3.7.3.12.1. Ubuntu用パッケージの公開の取り消し#
+
+12.3.7.3.9.1. Ubuntu用パッケージの公開の取り消し#
LaunchpadのGroongaチームのページで対象のPPAを選択し、バージョン一覧の上にある「View package details」リンクの先で「Delete packages」リンクを辿ると、アップロード済みパッケージを削除できます。
例;[不安定版リポジトリのパッケージの削除用のページ](https://launchpad.net/~groonga/+archive/ubuntu/nightly/+delete-packages)。
-
-12.3.7.3.13. Red Hat系パッケージのビルドとアップロード#
-タグを設定すると、GitHub Actionsで自動生成されます。
-GitHub Actionsでパッケージが自動生成されたのを確認したら以下の手順で、packages.groonga.orgへアップロードします。
-$ cd packages
-$ rake yum
-
-
-この段階では、ビルドしたパッケージはまだ未署名なので、$PACKAGES_GROONGA_ORG_REPOSITORYに移動し、以下のコマンドを実行します。
-$ rake yum
-
-
-上記のコマンドを実行することで、リポジトリーの同期、パッケージの署名、リポジトリーの更新、アップロードまで実行できます。
-
-
-12.3.7.3.14. Windows用パッケージのビルドとアップロード#
-タグを設定すると、GitHub Actionsで自動生成されます。
-GitHub Actionsでパッケージが自動生成されたのを確認したら以下の手順で、packages.groonga.orgからGitHub Actionsへのリンクを作成します。
-$ cd packages
-$ rake windows
-
-
-packages.groonga.org上にWindows版の最新パッケージへリダイレクトする .htaccess
が作成されます。
-
-12.3.7.3.15. WindowsのMSYS2用パッケージのアップロード#
+12.3.7.3.10. WindowsのMSYS2用パッケージのアップロード#
MINGW-packages の、 mingw-w64-groonga/PKGBUILD
を最新にして、プルリクエストを作成します。
MINGW-packagesはforkして自分のリポジトリを作成しておきます。
また、forkしたリポジトリのGitHub Actionsを有効にしておきます。
@@ -726,8 +643,16 @@ 12.3.7.3.15. WindowsのMSYS2用パッケ
プルリクエストがマージされると、MSYS2用のパッケージがリリースされます。
+
+12.3.7.3.11. ドキュメントの更新#
+groonga.org
リポジトリにて次のタスクを実行します。そうすることでタグがプッシュされCIにてドキュメントが更新されます。
+$ cd ${GROONGA_ORG_PATH}
+$ rake release:version:update
+
+
+
-12.3.7.3.16. Dockerイメージの更新#
+12.3.7.3.12. Dockerイメージの更新#
Docker Hub のGroongaのDockerイメージを更新します。
GroongaのDockerリポジトリー をクローンし、リポジトリーの中のDockerfileを更新します。
以下は、Groongaのバージョンが 12.0.9
の場合の例です。作業時には最新のバージョンを指定してください。
@@ -745,8 +670,8 @@ 12.3.7.3.16. Dockerイメージの更新
pushすると、 GroongaのDockerリポジトリーのGithub Actions が Docker HubのGroonga のDockerイメージを自動で更新します。
-
-12.3.7.3.17. リリースアナウンスの作成#
+
+12.3.7.3.13. リリースアナウンスの作成#
リリースの際にはリリースアナウンスを流して、Groongaを広く通知します。
news.rstに変更点をまとめましたが、それを元にリリースアナウンスを作成します。
リリースアナウンスには以下を含めます。
@@ -777,55 +702,8 @@ 12.3.7.3.17. リリースアナウンス
後述しますが、Twitter等でのリリースアナウンスの際はここで用意したアナウンス文の要約を使用します。
-
-12.3.7.3.18. BloGroonga(ブログ)の更新#
-https://groonga.org/blog/ および https://groonga.org/blog/ にて公開されているリリース案内を作成します。
-基本的にはリリースアナウンスの内容をそのまま記載します。
-cloneしたWebサイトのソースに対して以下のファイルを新規追加します。
-
-groonga.org/en/_post/(リリース日)-release.md
-groonga.org/ja/_post/(リリース日)-release.md
-
-編集した内容をpushする前に確認したい場合にはJekyllおよびRedCloth(Textileパーサー)、RDiscount(Markdownパーサー)、JavaScript interpreter(therubyracer、Node.jsなど)が必要です。
-インストールするには以下のコマンドを実行します。
-$ sudo gem install jekyll jekyll-paginate RedCloth rdiscount therubyracer
-
-
-jekyllのインストールを行ったら、以下のコマンドでローカルにwebサーバを起動します。
-$ jekyll serve --watch
-
-
-あとはブラウザにてhttp://localhost:4000にアクセスして内容に問題がないかを確認します。
-
-Note
-記事を非公開の状態でアップロードするには.mdファイルのpublished:をfalseに設定します。
----
-layout: post.en
-title: Groonga 2.0.5 has been released
-published: false
----
-
-
-
-
-
-12.3.7.3.19. ドキュメントのアップロード#
-doc/source以下のドキュメントを更新、翻訳まで完了している状態で、ドキュメントのアップロード作業を行います。
-そのためにはまず groonga
のリポジトリをカレントディレクトリにして以下のコマンドを実行します。
-$ cmake -S . -B ../groonga.doc --preset=doc --fresh
-$ rake release:document:update BUILD_DIR=../groonga.doc GROONGA_ORG_DIR=../groonga.org
-
-
-これで、 groonga.org
の docs/
と ja/docs
以下に更新したドキュメントがコピーされます。
-生成されているドキュメントに問題のないことを確認できたら、コミット、pushして groonga.org
へと反映します。
-また、 groonga.org
リポジトリの _config.yml
に最新リリースのバージョン番号と日付を表す情報の指定があるので、これらも更新します。
-groonga_version: x.x.x
-groonga_release_date: xxxx-xx-xx
-
-
-
-12.3.7.3.20. Homebrewの更新#
+12.3.7.3.14. Homebrewの更新#
この手順は省略可能です(Homebrewの更新はGroongaプロジェクト本体のリリース要件には含まれません)。
OS Xでのパッケージ管理方法として Homebrew があります。
Groongaを簡単にインストールできるようにするために、Homebrewへpull requestを送ります。
@@ -839,53 +717,21 @@ 12.3.7.3.20. Homebrewの更新
-12.3.7.3.21. リリースアナウンス#
-作成したリリースアナウンスをメーリングリストへと流します。
-
-groonga-dev groonga-dev@lists.osdn.me
-Groonga-talk groonga-talk@lists.sourceforge.net
-
-
-12.3.7.3.22. Twitterでリリースアナウンスをする#
+12.3.7.3.15. Twitterでリリースアナウンスをする#
BloGroongaのリリースエントリには「リンクをあなたのフォロワーに共有する」ためのツイートボタンがあるので、そのボタンを使ってリリースアナウンスします。(画面下部に配置されている)
このボタンを経由する場合、ツイート内容に自動的にリリースタイトル(「groonga 2.0.8リリース」など)とBloGroongaのリリースエントリのURLが挿入されます。
この作業はBloGroongaの英語版、日本語版それぞれで行います。
あらかじめgroongaアカウントでログインしておくとアナウンスを円滑に行うことができます。
-12.3.7.3.23. Facebookでリリースアナウンスをする#
+12.3.7.3.16. Facebookでリリースアナウンスをする#
FacebookにGroongaグループがあります。
https://www.facebook.com/groonga/
Groongaグループのメンバーになると、個人のアカウントではなく、Groongaグループのメンバーとして投稿できます。
ブログエントリなどをもとに、リリースアナウンスを投稿します。
以上でリリース作業は終了です。
-
-12.3.7.3.24. リリース後にやること#
-リリースアナウンスを流し終えたら、次期バージョンの開発が始まります。
-
-Groonga のbase_versionの更新
-
-
-12.3.7.3.24.1. Groonga バージョン更新#
-$GROONGA_CLONE_DIRにて以下のコマンドを実行します。
-$ rake dev:version:bump NEW_VERSION=x.x.x
-
-
-これにより$GROONGA_CLONE_DIR/base_versionが更新されるのでコミットしておきます。
-
-Note
-base_versionはtar.gzなどのリリース用のファイル名で使用します。
-
-
-
-12.3.7.3.24.2. パッケージの署名用のパスフレーズを知りたい#
-パッケージの署名に必要な秘密鍵のパスフレーズについては
-リリース担当者向けの秘密鍵を復号したテキストの1行目に記載してあります。
-
-
@@ -939,43 +785,33 @@ 12.3.7.3.24.2. パッケージの署名
- 12.3.7.1. 前提条件
- 12.3.7.2. 最初の1回だけ行う手順
-- 12.3.7.3. 毎回のリリースで行う手順
+- 12.3.7.3. 毎回のリリースで行う手順
- 12.3.7.3.1. Groongaのソースコード取得
-- 12.3.7.3.2. Groongaのウェブサイトの取得
-- 12.3.7.3.3. CMakeの実行
-- 12.3.7.3.4. 変更点のまとめ
-- 12.3.7.3.5. rake release:version:updateの実行
-- 12.3.7.3.6. Ubuntu向けパッケージのビルド確認
-- 12.3.7.3.7. 各種テストの確認
-- 12.3.7.3.8. リリースタグの設定
-- 12.3.7.3.9. リリース用アーカイブファイルの作成とアップロード
-- 12.3.7.3.10. パッケージのビルドとアップロード
-- 12.3.7.3.11. Debian系パッケージのビルドとアップロード
-- 12.3.7.3.12. Ubuntu用パッケージのアップロード
-- 12.3.7.3.12.1. Ubuntu用パッケージの公開の取り消し
+- 12.3.7.3.2. Groongaのウェブサイトの取得
+- 12.3.7.3.3. Apache Arrowリポジトリの取得
+- 12.3.7.3.4. 事前確認
+- 12.3.7.3.5. 変更点のまとめ
+- 12.3.7.3.6.
rake release
の実行
-- 12.3.7.3.13. Red Hat系パッケージのビルドとアップロード
-- 12.3.7.3.14. Windows用パッケージのビルドとアップロード
-- 12.3.7.3.15. WindowsのMSYS2用パッケージのアップロード
-- 12.3.7.3.16. Dockerイメージの更新
-- 12.3.7.3.17. リリースアナウンスの作成
-- 12.3.7.3.18. BloGroonga(ブログ)の更新
-- 12.3.7.3.19. ドキュメントのアップロード
-- 12.3.7.3.20. Homebrewの更新
-- 12.3.7.3.21. リリースアナウンス
-- 12.3.7.3.22. Twitterでリリースアナウンスをする
-- 12.3.7.3.23. Facebookでリリースアナウンスをする
-- 12.3.7.3.24. リリース後にやること
-- 12.3.7.3.24.1. Groonga バージョン更新
-- 12.3.7.3.24.2. パッケージの署名用のパスフレーズを知りたい
+- 12.3.7.3.7. Ubuntu向けパッケージのビルド確認
+- 12.3.7.3.8. 各種テストの確認
+- 12.3.7.3.9. Ubuntu用パッケージのアップロード
+- 12.3.7.3.10. WindowsのMSYS2用パッケージのアップロード
+- 12.3.7.3.11. ドキュメントの更新
+- 12.3.7.3.12. Dockerイメージの更新
+- 12.3.7.3.13. リリースアナウンスの作成
+- 12.3.7.3.14. Homebrewの更新
+- 12.3.7.3.15. Twitterでリリースアナウンスをする
+- 12.3.7.3.16. Facebookでリリースアナウンスをする
diff --git a/dev/docs/install/ubuntu.html b/dev/docs/install/ubuntu.html
index 7a56797f07..9592a211f6 100644
--- a/dev/docs/install/ubuntu.html
+++ b/dev/docs/install/ubuntu.html
@@ -430,9 +430,8 @@ 2.4.1. PPA (Personal Package Archive)
Here are supported Ubuntu versions:
-20.04 LTS Focal Fossa
22.04 LTS Jammy Jellyfish
-23.04 Lunar Lobster
+24.04 LTS Noble Numbat
Enable the universe repository to install Groonga:
sudo apt -V -y install software-properties-common
diff --git a/dev/docs/reference/api/search/all_7.js b/dev/docs/reference/api/search/all_7.js
index dec9944a6c..5262eeb791 100644
--- a/dev/docs/reference/api/search/all_7.js
+++ b/dev/docs/reference/api/search/all_7.js
@@ -1,12 +1,12 @@
var searchData=
[
['geo_2eh_0',['geo.h',['../geo_8h.html',1,'']]],
- ['get_1',['get',['../classgrn_1_1UniqueObj.html#af2708822d56532595eac43f93cfe2849',1,'grn::UniqueObj::get()'],['../classgrn_1_1SharedObj.html#a7c966dc7b831486006944ef21660feaa',1,'grn::SharedObj::get()'],['../classgrn_1_1CommandArguments.html#a9c5c4110183801c0972f3416f619b385',1,'grn::CommandArguments::get(const char *prefix, const char *name)'],['../classgrn_1_1CommandArguments.html#ab6735a908cdb73a6cac60fcc134a5da3',1,'grn::CommandArguments::get(const char *prefix, const char *name, const char *fallback_name)'],['../namespacegrn_1_1bulk.html#ae65c6f2d1a5dce30baf36dace3a986aa',1,'grn::bulk::get()'],['../classgrn_1_1CommandArguments.html#ac97892664ef7a5e29148264826245823',1,'grn::CommandArguments::get(const char *prefix, const char *fallback_prefix, const char *name, const char *fallback_name)'],['../classgrn_1_1CommandArguments.html#a3cd4cc390003cc415af8434f0247f3ea',1,'grn::CommandArguments::get(const char *name)']]],
- ['get_5fbool_2',['get_bool',['../classgrn_1_1CommandArguments.html#ad84520d4b243a3d3a660a17c43bc147e',1,'grn::CommandArguments::get_bool(const char *name, bool default_value)'],['../classgrn_1_1CommandArguments.html#aad3cc45a213ac01ca479c6c24f0eb917',1,'grn::CommandArguments::get_bool(const char *prefix, const char *name, const char *fallback_name, bool default_value)'],['../classgrn_1_1CommandArguments.html#a57e8d084adc9b8a0281940ab74ad326d',1,'grn::CommandArguments::get_bool(const char *prefix, const char *fallback_prefix, const char *name, const char *fallback_name, bool default_value)'],['../classgrn_1_1CommandArguments.html#a3ed0b68178eccb36f7efefadb3b55efb',1,'grn::CommandArguments::get_bool(const char *prefix, const char *name, bool default_value)']]],
- ['get_5ffloat_3',['get_float',['../classgrn_1_1CommandArguments.html#ae54fd385a76c80152a7fcebd092ceee2',1,'grn::CommandArguments::get_float(const char *prefix, const char *name, const char *fallback_name, float default_value)'],['../classgrn_1_1CommandArguments.html#a138d0472080bc3db208ec92a83ee97ce',1,'grn::CommandArguments::get_float(const char *prefix, const char *fallback_prefix, const char *name, const char *fallback_name, float default_value)'],['../classgrn_1_1CommandArguments.html#a7882e009f7f6960f2ea46b662b87ca46',1,'grn::CommandArguments::get_float(const char *name, float default_value)'],['../classgrn_1_1CommandArguments.html#afe229bdfe666c19e1af07a5a4359bc03',1,'grn::CommandArguments::get_float(const char *prefix, const char *name, float default_value)']]],
- ['get_5fint32_4',['get_int32',['../classgrn_1_1CommandArguments.html#a29660d93f9cac3546596053cdfcf9596',1,'grn::CommandArguments::get_int32(const char *prefix, const char *fallback_prefix, const char *name, const char *fallback_name, int32_t default_value)'],['../classgrn_1_1CommandArguments.html#aa91e10cac099e1d9f213abf3bbe00f59',1,'grn::CommandArguments::get_int32(const char *prefix, const char *name, int32_t default_value)'],['../classgrn_1_1CommandArguments.html#a8232442aca899582006127981237057c',1,'grn::CommandArguments::get_int32(const char *prefix, const char *name, const char *fallback_name, int32_t default_value)'],['../classgrn_1_1CommandArguments.html#ad8fda6710fbc194e25e976e6d665840b',1,'grn::CommandArguments::get_int32(const char *name, int32_t default_value)']]],
- ['get_5fstring_5',['get_string',['../classgrn_1_1CommandArguments.html#a5166c241f1a53806bf73ee2f2f6225f2',1,'grn::CommandArguments::get_string(const char *prefix, const char *name, const char *fallback_name, grn_raw_string default_value=default_string_value())'],['../classgrn_1_1CommandArguments.html#aece917c86f543d8dcce081a500ed0f94',1,'grn::CommandArguments::get_string(const char *name, grn_raw_string default_value=default_string_value())'],['../classgrn_1_1CommandArguments.html#af512596bc89814312101ad0735f302e6',1,'grn::CommandArguments::get_string(const char *prefix, const char *fallback_prefix, const char *name, const char *fallback_name, grn_raw_string default_value=default_string_value())'],['../classgrn_1_1CommandArguments.html#aab9175fffd479a95abe7ade29d7fc514',1,'grn::CommandArguments::get_string(const char *prefix, const char *name, grn_raw_string default_value=default_string_value())']]],
- ['get_5fuint32_6',['get_uint32',['../classgrn_1_1CommandArguments.html#aa85f4c718c460ce77f7aae4b5ac17009',1,'grn::CommandArguments::get_uint32(const char *prefix, const char *name, uint32_t default_value)'],['../classgrn_1_1CommandArguments.html#a50da63ab1405b58c200bf62fd7e4b10c',1,'grn::CommandArguments::get_uint32(const char *name, uint32_t default_value)'],['../classgrn_1_1CommandArguments.html#a6c7486e46f341f5ffbaede0838a47d84',1,'grn::CommandArguments::get_uint32(const char *prefix, const char *fallback_prefix, const char *name, const char *fallback_name, uint32_t default_value)'],['../classgrn_1_1CommandArguments.html#aee0b5dbb2031cd62bf3fb54783b8aa9b',1,'grn::CommandArguments::get_uint32(const char *prefix, const char *name, const char *fallback_name, uint32_t default_value)']]],
+ ['get_1',['get',['../classgrn_1_1CommandArguments.html#a3cd4cc390003cc415af8434f0247f3ea',1,'grn::CommandArguments::get(const char *name)'],['../classgrn_1_1CommandArguments.html#a9c5c4110183801c0972f3416f619b385',1,'grn::CommandArguments::get(const char *prefix, const char *name)'],['../classgrn_1_1SharedObj.html#a7c966dc7b831486006944ef21660feaa',1,'grn::SharedObj::get()'],['../classgrn_1_1CommandArguments.html#ac97892664ef7a5e29148264826245823',1,'grn::CommandArguments::get()'],['../classgrn_1_1UniqueObj.html#af2708822d56532595eac43f93cfe2849',1,'grn::UniqueObj::get()'],['../namespacegrn_1_1bulk.html#ae65c6f2d1a5dce30baf36dace3a986aa',1,'grn::bulk::get()'],['../classgrn_1_1CommandArguments.html#ab6735a908cdb73a6cac60fcc134a5da3',1,'grn::CommandArguments::get(const char *prefix, const char *name, const char *fallback_name)']]],
+ ['get_5fbool_2',['get_bool',['../classgrn_1_1CommandArguments.html#ad84520d4b243a3d3a660a17c43bc147e',1,'grn::CommandArguments::get_bool(const char *name, bool default_value)'],['../classgrn_1_1CommandArguments.html#aad3cc45a213ac01ca479c6c24f0eb917',1,'grn::CommandArguments::get_bool(const char *prefix, const char *name, const char *fallback_name, bool default_value)'],['../classgrn_1_1CommandArguments.html#a3ed0b68178eccb36f7efefadb3b55efb',1,'grn::CommandArguments::get_bool(const char *prefix, const char *name, bool default_value)'],['../classgrn_1_1CommandArguments.html#a57e8d084adc9b8a0281940ab74ad326d',1,'grn::CommandArguments::get_bool(const char *prefix, const char *fallback_prefix, const char *name, const char *fallback_name, bool default_value)']]],
+ ['get_5ffloat_3',['get_float',['../classgrn_1_1CommandArguments.html#ae54fd385a76c80152a7fcebd092ceee2',1,'grn::CommandArguments::get_float(const char *prefix, const char *name, const char *fallback_name, float default_value)'],['../classgrn_1_1CommandArguments.html#a7882e009f7f6960f2ea46b662b87ca46',1,'grn::CommandArguments::get_float(const char *name, float default_value)'],['../classgrn_1_1CommandArguments.html#a138d0472080bc3db208ec92a83ee97ce',1,'grn::CommandArguments::get_float(const char *prefix, const char *fallback_prefix, const char *name, const char *fallback_name, float default_value)'],['../classgrn_1_1CommandArguments.html#afe229bdfe666c19e1af07a5a4359bc03',1,'grn::CommandArguments::get_float(const char *prefix, const char *name, float default_value)']]],
+ ['get_5fint32_4',['get_int32',['../classgrn_1_1CommandArguments.html#ad8fda6710fbc194e25e976e6d665840b',1,'grn::CommandArguments::get_int32(const char *name, int32_t default_value)'],['../classgrn_1_1CommandArguments.html#aa91e10cac099e1d9f213abf3bbe00f59',1,'grn::CommandArguments::get_int32(const char *prefix, const char *name, int32_t default_value)'],['../classgrn_1_1CommandArguments.html#a8232442aca899582006127981237057c',1,'grn::CommandArguments::get_int32(const char *prefix, const char *name, const char *fallback_name, int32_t default_value)'],['../classgrn_1_1CommandArguments.html#a29660d93f9cac3546596053cdfcf9596',1,'grn::CommandArguments::get_int32(const char *prefix, const char *fallback_prefix, const char *name, const char *fallback_name, int32_t default_value)']]],
+ ['get_5fstring_5',['get_string',['../classgrn_1_1CommandArguments.html#a5166c241f1a53806bf73ee2f2f6225f2',1,'grn::CommandArguments::get_string(const char *prefix, const char *name, const char *fallback_name, grn_raw_string default_value=default_string_value())'],['../classgrn_1_1CommandArguments.html#aab9175fffd479a95abe7ade29d7fc514',1,'grn::CommandArguments::get_string(const char *prefix, const char *name, grn_raw_string default_value=default_string_value())'],['../classgrn_1_1CommandArguments.html#af512596bc89814312101ad0735f302e6',1,'grn::CommandArguments::get_string(const char *prefix, const char *fallback_prefix, const char *name, const char *fallback_name, grn_raw_string default_value=default_string_value())'],['../classgrn_1_1CommandArguments.html#aece917c86f543d8dcce081a500ed0f94',1,'grn::CommandArguments::get_string(const char *name, grn_raw_string default_value=default_string_value())']]],
+ ['get_5fuint32_6',['get_uint32',['../classgrn_1_1CommandArguments.html#a50da63ab1405b58c200bf62fd7e4b10c',1,'grn::CommandArguments::get_uint32(const char *name, uint32_t default_value)'],['../classgrn_1_1CommandArguments.html#aa85f4c718c460ce77f7aae4b5ac17009',1,'grn::CommandArguments::get_uint32(const char *prefix, const char *name, uint32_t default_value)'],['../classgrn_1_1CommandArguments.html#a6c7486e46f341f5ffbaede0838a47d84',1,'grn::CommandArguments::get_uint32(const char *prefix, const char *fallback_prefix, const char *name, const char *fallback_name, uint32_t default_value)'],['../classgrn_1_1CommandArguments.html#aee0b5dbb2031cd62bf3fb54783b8aa9b',1,'grn::CommandArguments::get_uint32(const char *prefix, const char *name, const char *fallback_name, uint32_t default_value)']]],
['grn_7',['grn',['../namespacegrn.html',1,'']]],
['grn_3a_3aarrow_8',['arrow',['../namespacegrn_1_1arrow.html',1,'grn']]],
['grn_3a_3abulk_9',['bulk',['../namespacegrn_1_1bulk.html',1,'grn']]],
diff --git a/dev/docs/searchindex.js b/dev/docs/searchindex.js
index 61088d0320..c29d5e4a0b 100644
--- a/dev/docs/searchindex.js
+++ b/dev/docs/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"--enable-apache-arrow and --disable-apache-arrow": [[31, "enable-apache-arrow-and-disable-apache-arrow"]], "--force-lock-clear": [[173, "force-lock-clear"]], "--force-truncate": [[173, "force-truncate"]], "--help": [[31, "help"]], "--localstatedir=PATH": [[31, "localstatedir-path"]], "--log-flags": [[173, "log-flags"], [173, "id3"]], "--log-level": [[173, "log-level"], [173, "id1"]], "--log-path": [[173, "log-path"], [173, "id2"]], "--prefix=PATH": [[31, "prefix-path"]], "--since": [[173, "since"]], "--target": [[173, "target"]], "--with-default-encoding=ENCODING": [[31, "with-default-encoding-encoding"]], "--with-log-path=PATH": [[31, "with-log-path-path"]], "--with-lz4": [[31, "with-lz4"]], "--with-match-escalation-threshold=NUMBER": [[31, "with-match-escalation-threshold-number"]], "--with-message-pack=MESSAGE_PACK_INSTALL_PREFIX": [[31, "with-message-pack-message-pack-install-prefix"]], "--with-munin-plugins": [[31, "with-munin-plugins"]], "--with-package-platform=PLATFORM": [[31, "with-package-platform-platform"]], "--with-zlib": [[31, "with-zlib"]], "-13: GRN_NOT_ENOUGH_SPACE": [[104, null]], "-22: GRN_INVALID_ARGUMENT": [[102, null]], "-2: GRN_OPERATION_NOT_PERMITTED": [[105, null]], "-34: GRN_RESOURCE_DEADLOCK_AVOIDED": [[106, null]], "-3: GRN_NO_SUCH_FILE_OR_DIRECTORY": [[103, null]], "-6: GRN_INPUT_OUTPUT_ERROR": [[101, null]], "-DCMAKE_INSTALL_PREFIX": [[27, "dcmake-install-prefix"]], "-DCMAKE_PREFIX_PATH=PATHS": [[27, "dcmake-prefix-path-paths"]], "-DGRN_WITH_APACHE_ARROW": [[27, "dgrn-with-apache-arrow"]], "-DGRN_WITH_MRUBY": [[27, "dgrn-with-mruby"]], "-G GENERATOR": [[27, "g-generator"]], "0.7.6\u30ea\u30ea\u30fc\u30b9 - 2010-08-19": [[36, "id5"]], "0.7.7\u30ea\u30ea\u30fc\u30b9 - 2010-08-25": [[36, "id2"]], "1.0.0\u30ea\u30ea\u30fc\u30b9 - 2010-08-29": [[37, "id36"]], "1.0.1\u30ea\u30ea\u30fc\u30b9 - 2010-09-06": [[37, "id32"]], "1.0.2\u30ea\u30ea\u30fc\u30b9 - 2010-09-09": [[37, "id27"]], "1.0.3\u30ea\u30ea\u30fc\u30b9 - 2010-10-29": [[37, "id22"]], "1.0.4\u30ea\u30ea\u30fc\u30b9 - 2010-11-29": [[37, "id17"]], "1.0.5\u30ea\u30ea\u30fc\u30b9 - 2010-12-29": [[37, "id12"]], "1.0.6\u30ea\u30ea\u30fc\u30b9 - 2010-12-31": [[37, "id9"]], "1.0.7\u30ea\u30ea\u30fc\u30b9 - 2011-01-29": [[37, "id5"]], "1.0.8\u30ea\u30ea\u30fc\u30b9 - 2011-02-02": [[37, "id2"]], "1.1.0\u30ea\u30ea\u30fc\u30b9 - 2011-02-09": [[38, "id2"]], "1.2.0\u30ea\u30ea\u30fc\u30b9 - 2011-03-29": [[39, "id24"]], "1.2.1\u30ea\u30ea\u30fc\u30b9 - 2011-04-29": [[39, "id20"]], "2005-04-12": [[55, "id20"]], "2005-06-23": [[55, "id18"]], "2005-07-05": [[55, "id17"]], "2005-08-16": [[55, "id15"]], "2005-09-08": [[55, "id13"]], "2005-09-17": [[55, "id11"]], "2005-10-27": [[55, "id9"]], "2005-12-22": [[55, "id7"]], "2006-01-12": [[55, "id5"]], "2006-01-16": [[55, "id4"]], "2006-03-03": [[55, "id2"]], "2006-04-05": [[55, "id1"]], "API": [[59, null]], "Access log": [[292, "access-log"]], "Added NormalizerNFKC": [[45, "added-reference-normalizers-normalizer-nfkc"]], "Added TokenFilterNFKC": [[45, "added-reference-token-filters-token-filter-nfkc"]], "Addition assignment operator": [[225, "addition-assignment-operator"]], "Addition operator": [[225, "addition-operator"]], "Additional information about lexicon for full text search": [[309, null]], "Additional normalizers": [[229, "additional-normalizers"]], "Administration tool (HTTP)": [[312, "administration-tool-http"]], "Advanced drilldown related parameters": [[135, "advanced-drilldown-related-parameters"], [156, "advanced-drilldown-related-parameters"]], "Advanced search parameters": [[135, "advanced-search-parameters"], [156, "advanced-search-parameters"]], "Advanced usage": [[231, "advanced-usage"], [232, "advanced-usage"], [233, "advanced-usage"], [234, "advanced-usage"], [235, "advanced-usage"], [237, "advanced-usage"], [257, "advanced-usage"], [258, "advanced-usage"], [259, "advanced-usage"], [272, "advanced-usage"], [274, "advanced-usage"], [275, "advanced-usage"]], "Alias": [[58, null]], "AlmaLinux": [[24, null]], "AlmaLinux 8": [[24, "almalinux-8"]], "AlmaLinux 9": [[24, "almalinux-9"]], "Amazon Linux": [[25, null]], "Amazon Linux 2023": [[25, "amazon-linux-2023"]], "Amazon Linux: Added support for Amazon Linux 2023 aarch64": [[45, "install-amazon-linux-added-support-for-amazon-linux-2023-aarch64"]], "Anchor": [[244, "anchor"]], "Apache Arrow": [[96, "apache-arrow"]], "Apache Arrow is required": [[94, "apache-arrow-is-required"]], "Arithmetic operators": [[225, "arithmetic-operators"]], "Array": [[225, "array"]], "Assignment expression": [[224, "assignment-expression"]], "Assignment operators": [[225, "assignment-operators"]], "Authentication": [[292, "authentication"]], "Available Values": [[94, "available-values"]], "Available nginx modules": [[177, "available-nginx-modules"]], "BODY": [[95, "body"]], "Basic commands": [[308, "basic-commands"]], "Basic operations": [[308, null]], "Basic operators": [[225, "basic-operators"]], "Basic usage": [[137, "basic-usage"], [163, "basic-usage"]], "Bigram table": [[311, "bigram-table"]], "Bitwise AND assignment operator": [[225, "bitwise-and-assignment-operator"]], "Bitwise AND operator": [[225, "bitwise-and-operator"]], "Bitwise NOT operator": [[225, "bitwise-not-operator"]], "Bitwise OR assignment operator": [[225, "bitwise-or-assignment-operator"]], "Bitwise OR operator": [[225, "bitwise-or-operator"]], "Bitwise XOR assignment operator": [[225, "bitwise-xor-assignment-operator"]], "Bitwise XOR operator": [[225, "bitwise-xor-operator"]], "Bitwise left shift assignment operator": [[225, "bitwise-left-shift-assignment-operator"]], "Bitwise operators": [[225, "bitwise-operators"]], "Bitwise signed right shift assignment operator": [[225, "bitwise-signed-right-shift-assignment-operator"]], "Bitwise unsigned right shift assignment operator": [[225, "bitwise-unsigned-right-shift-assignment-operator"]], "BloGroonga(\u30d6\u30ed\u30b0)\u306e\u66f4\u65b0": [[12, "blogroonga"]], "Bool": [[282, "bool"]], "Boolean": [[225, "boolean"]], "Boolean type": [[305, "boolean-type"]], "Browse the administration tool": [[177, "browse-the-administration-tool"]], "Build Groonga": [[7, "build-groonga"], [8, "build-groonga"]], "Build and install Groonga": [[27, "build-and-install-groonga"]], "Build from source": [[24, "build-from-source"], [25, "build-from-source"], [28, "build-from-source"], [30, "build-from-source"], [31, "build-from-source"], [32, "build-from-source"], [33, "build-from-source"]], "Built-in normalizers": [[229, "built-in-normalizers"]], "Built-in scorers": [[245, "built-in-scorers"]], "Builtin command": [[175, "builtin-command"]], "Builtin types": [[282, "builtin-types"]], "C API": [[16, null]], "CANDIDATE_N": [[180, "candidate-n"]], "CMake options": [[27, "cmake-options"]], "CMake presets": [[27, "cmake-presets"]], "CMake\u306e\u5b9f\u884c": [[12, "cmake"]], "COLUMN": [[155, "column"]], "COLUMN_FULL_NAME": [[141, "column-full-name"]], "COLUMN_ID": [[141, "column-id"]], "COLUMN_INFORMATION": [[112, "column-information"]], "COLUMN_LIST_HEADER": [[112, "column-list-header"]], "COLUMN_NAME": [[141, "column-name"]], "COLUMN_TABLE": [[141, "column-table"]], "COLUMN_TYPE_NAME": [[141, "column-type-name"]], "COLUMN_TYPE_RAW_ID": [[141, "column-type-raw-id"]], "COLUMN_TYPE_RAW_NAME": [[141, "column-type-raw-name"]], "COLUMN_VALUE_TYPE": [[141, "column-value-type"]], "COMMAND": [[155, "command"]], "CONDITION_1": [[186, "condition-1"]], "CONDITION_N": [[186, "condition-n"]], "CONTEXT_ID": [[228, "context-id"]], "Cache related parameter": [[132, "cache-related-parameter"], [134, "cache-related-parameter"], [135, "cache-related-parameter"], [156, "cache-related-parameter"]], "Cascade delete": [[121, "cascade-delete"]], "Cast": [[86, null]], "CentOS": [[26, null]], "Changes": [[55, "changes"]], "Character class": [[244, "character-class"]], "Characteristics": [[254, "characteristics"]], "Characteristics of Groonga": [[0, null]], "Characteristics of all tables": [[254, "id5"]], "Chat room": [[2, "chat-room"]], "Check the settings": [[94, "check-the-settings"]], "Checkout Groonga from the repository": [[6, "checkout-groonga-from-the-repository"], [7, "checkout-groonga-from-the-repository"], [8, "checkout-groonga-from-the-repository"]], "Choice": [[244, "choice"]], "Client": [[1, null]], "Client mode": [[175, "client-mode"]], "Column": [[87, null], [141, "column"]], "Column store and aggregate query": [[0, "column-store-and-aggregate-query"]], "Combined expression": [[224, "combined-expression"]], "Command": [[92, null], [175, "command"]], "Command format": [[308, "command-format"]], "Command line": [[241, "command-line"]], "Command line parameters": [[175, "command-line-parameters"], [180, "command-line-parameters"]], "Command version": [[93, null]], "Commands": [[171, "commands"], [173, "commands"], [248, "commands"]], "Comments table": [[311, "comments-table"]], "Community": [[2, null]], "Comparison": [[292, null]], "Comparison operators": [[225, "comparison-operators"]], "Completion": [[250, null], [252, "completion"]], "Conditional expression": [[224, "conditional-expression"]], "Configuration": [[21, "configuration"], [171, null]], "Configuration directives": [[177, "configuration-directives"]], "Configuration file": [[292, "configuration-file"]], "Control syntaxes": [[225, "control-syntaxes"]], "Cooccurrence search": [[250, "cooccurrence-search"], [251, "cooccurrence-search"], [253, "cooccurrence-search"]], "Correction": [[251, null], [252, "correction"]], "Create a column": [[308, "create-a-column"]], "Create a column that refers a table\u2019s record": [[111, "create-a-column-that-refers-a-table-s-record"]], "Create a database": [[308, "create-a-database"]], "Create a generated column": [[111, "create-a-generated-column"]], "Create a large index column": [[111, "create-a-large-index-column"]], "Create a lexicon table for full text search": [[308, "create-a-lexicon-table-for-full-text-search"]], "Create a medium index column": [[111, "create-a-medium-index-column"]], "Create a multiple columns index column": [[111, "create-a-multiple-columns-index-column"]], "Create a scalar column": [[111, "create-a-scalar-column"]], "Create a small index column": [[111, "create-a-small-index-column"]], "Create a table": [[308, "create-a-table"], [311, "create-a-table"]], "Create a vector column": [[111, "create-a-vector-column"]], "Create a weight vector column": [[111, "create-a-weight-vector-column"]], "Create an index column": [[111, "create-an-index-column"]], "Create an index column for full text search": [[111, "create-an-index-column-for-full-text-search"], [308, "create-an-index-column-for-full-text-search"]], "Create configure": [[6, "create-configure"]], "Create data store table": [[161, "create-data-store-table"]], "Create large data store table": [[161, "create-large-data-store-table"]], "Create lexicon": [[161, "create-lexicon"]], "Create range index table": [[161, "create-range-index-table"]], "Create tag index table": [[161, "create-tag-index-table"]], "Creating column index against each column": [[310, "creating-column-index-against-each-column"]], "Creating one column index against multiple columns": [[310, "creating-one-column-index-against-multiple-columns"]], "Custom command version": [[292, "custom-command-version"]], "Custom prefix path": [[292, "custom-prefix-path"]], "Cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "cutter"]], "DATABASE_NAME_TABLE": [[141, "database-name-table"]], "DATABASE_PATH": [[180, "database-path"]], "DATABASE_TYPE_ID": [[141, "database-type-id"]], "DATABASE_TYPE_NAME": [[141, "database-type-name"]], "DATA_COLUMN_VALUE_COMPRESS_FILTER": [[141, "data-column-value-compress-filter"]], "DATA_COLUMN_VALUE_COMPRESS_METHOD": [[141, "data-column-value-compress-method"]], "DB_API": [[11, "db-api"]], "DESCTIPION": [[179, "desctipion"]], "DOMAIN": [[112, "domain"]], "Daemon mode": [[175, "daemon-mode"]], "Data store columns": [[87, "data-store-columns"]], "Data types": [[282, null]], "Database": [[141, "database"]], "Date and time type": [[305, "date-and-time-type"]], "Debian GNU/Linux": [[28, null]], "Debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "debian"]], "Decreases used resources": [[137, "decreases-used-resources"], [163, "decreases-used-resources"]], "Dependencies": [[31, "dependencies"]], "Description": [[282, "description"]], "Detail": [[100, "detail"]], "Development": [[20, null]], "Differences from select": [[135, "differences-from-select"]], "Division assignment operator": [[225, "division-assignment-operator"]], "Division operator": [[225, "division-operator"]], "Docker": [[29, null]], "Docker\u30a4\u30e1\u30fc\u30b8\u306e\u66f4\u65b0": [[12, "docker"]], "Download source": [[27, "download-source"]], "Drilldown": [[156, "drilldown"], [306, null]], "Drilldown by domain column": [[306, "id1"]], "Drilldown related parameters": [[135, "drilldown-related-parameters"], [156, "drilldown-related-parameters"]], "Drilldown with multiple column": [[306, "drilldown-with-multiple-column"]], "Dropped support OSes": [[43, "dropped-support-oses"]], "Dynamic column": [[156, "dynamic-column"]], "Dynamic column related parameters": [[132, "dynamic-column-related-parameters"], [134, "dynamic-column-related-parameters"], [135, "dynamic-column-related-parameters"], [156, "dynamic-column-related-parameters"]], "ELAPSED_TIME": [[228, "elapsed-time"]], "EXAMPLE": [[179, "example"]], "EXIT STATUS": [[179, "exit-status"]], "Enable request timeout by default": [[99, "enable-request-timeout-by-default"]], "Equal condition": [[224, "equal-condition"]], "Equal operator": [[225, "equal-operator"]], "Error case": [[95, "error-case"]], "Escape": [[224, "escape"], [244, "escape"]], "Example": [[61, "example"], [62, "example"], [63, "example"], [65, "example"], [66, "example"], [67, "example"], [68, "example"], [69, "example"], [70, "example"], [71, "example"], [72, "example"], [73, "example"], [74, "example"], [75, "example"], [76, "example"], [77, "example"], [78, "example"], [79, "example"], [80, "example"], [81, "example"], [82, "example"], [83, "example"], [84, "example"], [298, "example"], [302, "example"], [303, "example"]], "Examples": [[21, "examples"]], "Executables": [[172, null]], "Extraction by position": [[208, "extraction-by-position"], [208, "id1"]], "Extraction by regular expression": [[208, "extraction-by-regular-expression"], [208, "id2"]], "FILES": [[179, "files"]], "FLAGS": [[112, "flags"], [142, "flags"]], "Facebook": [[2, "facebook"]], "Facebook\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b": [[12, "facebook"]], "Fixed a bug that deb/rpm packages can\u2019t be used on machines that don\u2019t have AVX": [[45, "fixed-a-bug-that-deb-rpm-packages-can-t-be-used-on-machines-that-don-t-have-avx"]], "Fixes": [[39, "fixes"], [39, "id2"], [39, "id5"], [39, "id8"], [39, "id11"], [39, "id13"], [39, "id16"], [39, "id19"], [41, "fixes"], [41, "id2"], [41, "id5"], [41, "id8"], [41, "id11"], [41, "id13"], [41, "id16"], [41, "id19"], [41, "id22"], [41, "id25"], [41, "id27"], [42, "fixes"], [42, "id2"], [42, "id6"], [42, "id10"], [42, "id13"], [42, "id17"], [42, "id21"], [42, "id28"], [42, "id35"], [42, "id39"], [43, "fixes"], [43, "id3"], [43, "id5"], [43, "id7"], [43, "id9"], [43, "id11"], [43, "id15"], [43, "id17"], [43, "id24"], [43, "id26"], [44, "fixes"], [44, "id2"], [44, "id4"], [44, "id6"], [44, "id7"], [44, "id9"], [44, "id10"], [44, "id12"], [44, "id14"], [44, "id16"], [44, "id19"], [44, "id24"], [45, "fixes"], [45, "id2"], [45, "id4"], [45, "id6"], [45, "id7"], [45, "id9"], [45, "id12"], [45, "id16"], [45, "id17"], [45, "id19"], [45, "id22"], [45, "id25"], [47, "fixes"], [47, "id1"], [47, "id3"], [47, "id6"], [47, "id9"], [47, "id12"], [47, "id15"], [47, "id18"], [47, "id21"], [47, "id24"], [47, "id27"], [47, "id30"], [47, "id33"], [48, "fixes"], [48, "id2"], [48, "id5"], [48, "id8"], [48, "id11"], [48, "id14"], [48, "id17"], [48, "id20"], [48, "id23"], [48, "id27"], [48, "id30"], [48, "id32"], [49, "fixes"], [49, "id1"], [49, "id3"], [49, "id6"], [49, "id9"], [49, "id12"], [49, "id15"], [49, "id18"], [49, "id21"], [49, "id24"], [49, "id27"], [49, "id30"], [50, "fixes"], [50, "id2"], [50, "id5"], [50, "id8"], [50, "id11"], [50, "id14"], [50, "id17"], [50, "id20"], [50, "id23"], [50, "id26"], [50, "id29"], [50, "id32"], [50, "id35"], [51, "fixes"], [51, "id2"], [51, "id4"], [51, "id6"], [51, "id9"], [51, "id11"], [51, "id14"], [51, "id17"], [51, "id20"], [51, "id23"], [51, "id25"], [51, "id28"], [51, "id31"], [51, "id34"], [51, "id37"], [52, "fixes"], [52, "id2"], [52, "id5"], [52, "id8"], [52, "id10"], [52, "id12"], [52, "id15"], [52, "id18"], [52, "id21"], [52, "id24"], [52, "id26"], [52, "id29"], [53, "fixes"], [53, "id2"], [53, "id4"], [53, "id6"], [53, "id9"], [53, "id11"], [53, "id13"], [53, "id15"], [53, "id17"], [53, "id19"], [53, "id22"], [53, "id25"], [54, "fixes"], [54, "id4"], [54, "id7"], [54, "id9"], [54, "id12"], [54, "id15"], [54, "id18"], [54, "id21"], [54, "id24"], [54, "id27"], [55, "fixes"]], "Float": [[225, "float"], [282, "float"]], "Float32": [[282, "float32"]], "For Groonga developers": [[4, null]], "For use as a daemon process": [[94, "for-use-as-a-daemon-process"]], "Format": [[96, "format"], [228, "format"], [228, "id3"], [243, "format"]], "FreeBSD": [[281, "freebsd"]], "Full text search": [[308, "full-text-search"]], "Full text search and Instant update": [[0, "full-text-search-and-instant-update"]], "Full text search condition": [[224, "full-text-search-condition"]], "Full text search condition (with explicit match column)": [[224, "full-text-search-condition-with-explicit-match-column"]], "Full text search with specific index name": [[310, "full-text-search-with-specific-index-name"]], "Full-text search against multiple columns": [[310, "full-text-search-against-multiple-columns"]], "Function": [[182, null]], "Function call": [[225, "function-call"]], "Functions": [[227, "functions"]], "Fuzzy query related parameters": [[156, "fuzzy-query-related-parameters"]], "GENERATED_COLUMN_SOURCE_FULL_NAME": [[141, "generated-column-source-full-name"]], "GENERATED_COLUMN_SOURCE_ID": [[141, "generated-column-source-id"]], "GENERATED_COLUMN_SOURCE_NAME": [[141, "generated-column-source-name"]], "GENERATED_COLUMN_SOURCE_TABLE": [[141, "generated-column-source-table"]], "GENERATED_COLUMN_VALUE_GENERATOR": [[141, "generated-column-value-generator"]], "GENERATOR": [[112, "generator"]], "GET parameters": [[180, "get-parameters"]], "GNU/Linux or UNIX": [[27, "gnu-linux-or-unix"], [27, "id1"], [27, "id5"]], "GQTP": [[290, null], [298, null]], "GQTP header": [[298, "gqtp-header"]], "GQTP\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": [[9, "gqtp"]], "Generate HTML": [[18, "generate-html"]], "Generate the HTML files with your changes": [[18, "generate-the-html-files-with-your-changes"]], "Generated column": [[87, "generated-column"]], "Generated scalar column": [[90, "generated-scalar-column"]], "Generated vector column": [[91, "generated-vector-column"]], "Geo location search with index": [[307, "geo-location-search-with-index"]], "Geo point": [[225, "geo-point"]], "Geo-location (latitude and longitude) search": [[0, "geo-location-latitude-and-longitude-search"]], "GeoIndex table": [[311, "geoindex-table"]], "Geolocation search": [[239, null]], "Get a record": [[308, "get-a-record"]], "Global configurations": [[60, null]], "Glossary": [[248, "glossary"]], "Greater than condition": [[224, "greater-than-condition"]], "Greater than operator": [[225, "greater-than-operator"]], "Greater than or equal to condition": [[224, "greater-than-or-equal-to-condition"]], "Greater than or equal to operator": [[225, "greater-than-or-equal-to-operator"]], "Groonga HTTP server": [[178, null]], "Groonga documentation": [[22, null]], "Groonga library": [[0, "groonga-library"]], "Groonga overview": [[0, "groonga-overview"]], "Groonga server": [[0, "groonga-server"]], "Groonga \u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0": [[12, "id21"]], "Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": [[9, null]], "Groonga-httpd specific directives": [[177, "groonga-httpd-specific-directives"]], "Groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97": [[12, "id8"]], "Groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97": [[12, "groonga"]], "Groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb": [[11, "groonga"]], "Group": [[244, "group"]], "Grouping": [[224, "grouping"], [225, "grouping"]], "Gzip compression": [[292, "gzip-compression"]], "HEADER": [[95, "header"], [112, "header"], [115, "header"], [116, "header"], [117, "header"], [126, "header"], [128, "header"], [142, "header"], [155, "header"]], "HTTP": [[241, "http"], [291, null]], "HTTPS": [[292, "https"]], "HashTags table": [[311, "hashtags-table"]], "Higlight": [[44, "higlight"]], "Higlight and Summary of changes from 12.0.0 to 12.1.2": [[44, "higlight-and-summary-of-changes-from-12-0-0-to-12-1-2"]], "Homebrew": [[30, "homebrew"]], "Homebrew\u306e\u66f4\u65b0": [[12, "homebrew"]], "How it learns": [[250, "how-it-learns"], [251, "how-it-learns"], [253, "how-it-learns"]], "How it works": [[250, "how-it-works"], [251, "how-it-works"], [253, "how-it-works"]], "How to add a new documentation": [[18, "how-to-add-a-new-documentation"]], "How to add new language": [[17, "how-to-add-new-language"]], "How to analyze": [[302, "how-to-analyze"]], "How to analyze error messages": [[302, null]], "How to analyze socket errors": [[302, "how-to-analyze-socket-errors"]], "How to apply just weight": [[91, "how-to-apply-just-weight"]], "How to assign ID to request": [[98, "how-to-assign-id-to-request"]], "How to avoid mmap Cannot allocate memory error": [[303, null]], "How to build Groonga at the repository": [[5, null]], "How to build Groonga at the repository by CMake on GNU/Linux or Unix": [[7, null]], "How to build Groonga at the repository by CMake on Windows": [[8, null]], "How to build Groonga at the repository by GNU Autotools": [[6, null]], "How to change column configuration": [[110, "how-to-change-column-configuration"]], "How to change table configuration": [[110, "how-to-change-table-configuration"]], "How to clone Groonga repository": [[17, "how-to-clone-groonga-repository"]], "How to confirm HTML output": [[17, "how-to-confirm-html-output"]], "How to contribute in documentation topics": [[15, null]], "How to contribute to groonga": [[3, null]], "How to convert romaji to reading": [[240, "how-to-convert-romaji-to-reading"]], "How to create": [[90, "how-to-create"], [91, "how-to-create"], [91, "id3"], [91, "id7"], [91, "id11"]], "How to edit .edit": [[17, "how-to-edit-edit"]], "How to edit documentation": [[18, "how-to-edit-documentation"]], "How to extract learning data": [[253, "how-to-extract-learning-data"]], "How to fork and clone Groonga repository": [[18, "how-to-fork-and-clone-groonga-repository"]], "How to generate HTML files": [[17, "how-to-generate-html-files"]], "How to install Sphinx": [[17, "how-to-install-sphinx"]], "How to load": [[91, "how-to-load"], [91, "id4"], [91, "id8"]], "How to manage language models": [[227, "how-to-manage-language-models"]], "How to report a bug": [[19, null]], "How to resolve alias": [[58, "how-to-resolve-alias"]], "How to run": [[290, "how-to-run"]], "How to run a GQTP client": [[298, "how-to-run-a-gqtp-client"]], "How to run a GQTP daemon": [[298, "how-to-run-a-gqtp-daemon"]], "How to run a GQTP server": [[298, "how-to-run-a-gqtp-server"]], "How to run an HTTP server": [[312, "how-to-run-an-http-server"]], "How to search": [[91, "how-to-search"], [91, "id5"], [91, "id9"]], "How to send .po files": [[17, "how-to-send-po-files"]], "How to send a command to an HTTP server": [[312, "how-to-send-a-command-to-an-http-server"]], "How to send patch": [[17, "how-to-send-patch"]], "How to send pull request": [[17, "how-to-send-pull-request"]], "How to send your works": [[17, "how-to-send-your-works"]], "How to set timeout to request": [[99, "how-to-set-timeout-to-request"]], "How to terminate a GQTP server": [[298, "how-to-terminate-a-gqtp-server"]], "How to update .edit files": [[17, "how-to-update-edit-files"]], "How to update .po files": [[17, "how-to-update-po-files"]], "How to update reading data": [[250, "how-to-update-reading-data"]], "How to use": [[94, "how-to-use"], [226, "how-to-use"], [250, "how-to-use"], [251, "how-to-use"], [253, "how-to-use"]], "Hypertext transfer protocol (HTTP)": [[312, "hypertext-transfer-protocol-http"]], "I18N": [[17, null]], "ID": [[112, "id"]], "INDEX": [[155, "index"]], "INDEX_COLUMN_SOURCE_FULL_NAME": [[141, "index-column-source-full-name"]], "INDEX_COLUMN_SOURCE_ID": [[141, "index-column-source-id"]], "INDEX_COLUMN_SOURCE_NAME": [[141, "index-column-source-name"]], "INDEX_COLUMN_SOURCE_TABLE": [[141, "index-column-source-table"]], "INDEX_COLUMN_VALUE_POSITION": [[141, "index-column-value-position"]], "INDEX_COLUMN_VALUE_SECTION": [[141, "index-column-value-section"]], "INDEX_COLUMN_VALUE_SIZE": [[141, "index-column-value-size"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_ARRAY_SEGMENT_ID": [[141, "index-column-value-statistics-max-array-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_BUFFER_SEGMENT_ID": [[141, "index-column-value-statistics-max-buffer-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_IN_USE_CHUNK_ID": [[141, "index-column-value-statistics-max-in-use-chunk-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_IN_USE_PHYSICAL_SEGMENT_ID": [[141, "index-column-value-statistics-max-in-use-physical-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_SECTION_ID": [[141, "index-column-value-statistics-max-section-id"]], "INDEX_COLUMN_VALUE_STATISTICS_NEXT_PHYSICAL_SEGMENT_ID": [[141, "index-column-value-statistics-next-physical-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_N_ARRAY_SEGMENTS": [[141, "index-column-value-statistics-n-array-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_BUFFER_SEGMENTS": [[141, "index-column-value-statistics-n-buffer-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_GARBAGE_CHUNKS": [[141, "index-column-value-statistics-n-garbage-chunks"]], "INDEX_COLUMN_VALUE_STATISTICS_N_GARBAGE_SEGMENTS": [[141, "index-column-value-statistics-n-garbage-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_PHYSICAL_SEGMENTS": [[141, "index-column-value-statistics-n-physical-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_UNMANAGED_SEGMENTS": [[141, "index-column-value-statistics-n-unmanaged-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_TOTAL_CHUNK_SIZE": [[141, "index-column-value-statistics-total-chunk-size"]], "INDEX_COLUMN_VALUE_WEIGHT": [[141, "index-column-value-weight"]], "Improvements": [[39, "improvements"], [39, "id1"], [39, "id4"], [39, "id7"], [39, "id10"], [39, "id12"], [39, "id15"], [39, "id18"], [40, "improvements"], [41, "improvements"], [41, "id1"], [41, "id4"], [41, "id6"], [41, "id10"], [41, "id12"], [41, "id15"], [41, "id18"], [41, "id21"], [41, "id24"], [41, "id28"], [42, "improvements"], [42, "id1"], [42, "id5"], [42, "id9"], [42, "id12"], [42, "id16"], [42, "id20"], [42, "id24"], [42, "id27"], [42, "id31"], [42, "id34"], [42, "id38"], [43, "improvements"], [43, "id1"], [43, "id2"], [43, "id4"], [43, "id6"], [43, "id8"], [43, "id10"], [43, "id12"], [43, "id14"], [43, "id16"], [43, "id20"], [43, "id23"], [43, "id28"], [44, "improvements"], [44, "id1"], [44, "id3"], [44, "id5"], [44, "id8"], [44, "id11"], [44, "id13"], [44, "id15"], [44, "id18"], [44, "id21"], [44, "id23"], [45, "improvements"], [45, "id1"], [45, "id3"], [45, "id5"], [45, "id8"], [45, "id11"], [45, "id14"], [45, "id15"], [45, "id18"], [45, "id20"], [45, "id21"], [45, "id24"], [46, "improvements"], [47, "improvements"], [47, "id2"], [47, "id5"], [47, "id8"], [47, "id11"], [47, "id14"], [47, "id17"], [47, "id20"], [47, "id23"], [47, "id26"], [47, "id29"], [47, "id32"], [48, "improvements"], [48, "id1"], [48, "id4"], [48, "id7"], [48, "id10"], [48, "id13"], [48, "id16"], [48, "id19"], [48, "id22"], [48, "id25"], [48, "id26"], [48, "id29"], [49, "improvements"], [49, "id2"], [49, "id5"], [49, "id8"], [49, "id11"], [49, "id14"], [49, "id17"], [49, "id20"], [49, "id23"], [49, "id26"], [49, "id29"], [50, "improvements"], [50, "id1"], [50, "id4"], [50, "id7"], [50, "id10"], [50, "id13"], [50, "id16"], [50, "id19"], [50, "id22"], [50, "id25"], [50, "id28"], [50, "id31"], [50, "id34"], [51, "improvements"], [51, "id1"], [51, "id3"], [51, "id5"], [51, "id8"], [51, "id10"], [51, "id13"], [51, "id16"], [51, "id19"], [51, "id22"], [51, "id27"], [51, "id30"], [51, "id33"], [51, "id36"], [52, "improvements"], [52, "id1"], [52, "id4"], [52, "id7"], [52, "id9"], [52, "id11"], [52, "id14"], [52, "id17"], [52, "id20"], [52, "id23"], [52, "id25"], [52, "id28"], [53, "improvements"], [53, "id1"], [53, "id3"], [53, "id5"], [53, "id8"], [53, "id10"], [53, "id12"], [53, "id14"], [53, "id16"], [53, "id18"], [53, "id21"], [53, "id24"], [54, "improvements"], [54, "id1"], [54, "id2"], [54, "id3"], [54, "id6"], [54, "id8"], [54, "id11"], [54, "id14"], [54, "id17"], [54, "id20"], [54, "id23"], [54, "id26"], [54, "id29"], [55, "improvements"], [55, "id3"], [55, "id6"], [55, "id8"], [55, "id10"], [55, "id12"], [55, "id14"], [55, "id16"], [55, "id19"], [55, "id21"]], "Index": [[244, "index"]], "Index column": [[87, "index-column"], [88, null]], "Index column: Fixed an Offline index construction bug": [[45, "reference-columns-index-fixed-an-offline-index-construction-bug"]], "Indexes with Weight": [[310, "indexes-with-weight"]], "Indexing": [[226, null]], "Install": [[23, null], [243, "install"]], "Install depended software": [[6, "install-depended-software"], [8, "install-depended-software"], [27, "install-depended-software"]], "Install dependent software": [[18, "install-dependent-software"]], "Int16": [[282, "int16"]], "Int32": [[282, "int32"]], "Int64": [[282, "int64"]], "Int8": [[282, "int8"]], "Integer": [[225, "integer"]], "Introduction": [[18, null], [252, null]], "Invalid mode": [[111, "invalid-mode"]], "Inverted index and tokenizer": [[0, "inverted-index-and-tokenizer"]], "JSON": [[96, "json"]], "JSON and MessagePack": [[95, "json-and-messagepack"]], "Known Issues": [[42, "known-issues"], [42, "id3"], [42, "id7"], [42, "id11"], [42, "id14"], [42, "id18"], [42, "id22"], [42, "id25"], [42, "id29"], [42, "id32"], [42, "id36"], [43, "known-issues"], [43, "id18"], [43, "id21"], [43, "id25"]], "L": [[228, "l"]], "Language model": [[227, null]], "Launch groonga-suggest-httpd": [[180, "launch-groonga-suggest-httpd"]], "Launch groonga-suggest-learner": [[180, "launch-groonga-suggest-learner"]], "Learn from user inputs": [[180, "learn-from-user-inputs"]], "Learning": [[252, "learning"]], "Learning data from groonga-suggest-httpd": [[181, "learning-data-from-groonga-suggest-httpd"]], "Learning data from log files": [[181, "learning-data-from-log-files"]], "Left shift operator": [[225, "left-shift-operator"]], "Less than condition": [[224, "less-than-condition"]], "Less than operator": [[225, "less-than-operator"]], "Less than or equal to condition": [[224, "less-than-or-equal-to-condition"]], "Less than or equal to operator": [[225, "less-than-or-equal-to-operator"]], "Let\u2019s create micro-blog": [[311, null]], "Libraries": [[31, "libraries"]], "Limitation": [[243, "limitation"]], "Limitations": [[34, null], [91, "limitations"], [254, "limitations"]], "Limitations about types": [[282, "limitations-about-types"]], "Limitations of column": [[34, "limitations-of-column"]], "Limitations of indexing": [[34, "limitations-of-indexing"]], "Limitations of table": [[34, "limitations-of-table"]], "Linux": [[281, "linux"]], "List": [[100, "list"]], "Literals": [[225, "literals"]], "Load records": [[308, "load-records"]], "Loading data": [[311, "loading-data"]], "Loading data by POST": [[177, "loading-data-by-post"]], "Location": [[243, "location"]], "Log": [[228, null]], "Logical AND": [[224, "logical-and"]], "Logical AND NOT": [[224, "logical-and-not"]], "Logical AND NOT operator": [[225, "logical-and-not-operator"]], "Logical AND operator": [[225, "logical-and-operator"]], "Logical NOT operator": [[225, "logical-not-operator"]], "Logical OR": [[224, "logical-or"]], "Logical OR operator": [[225, "logical-or-operator"]], "Logical operators": [[225, "logical-operators"]], "LongText": [[282, "longtext"]], "Longitude and latitude types": [[305, "longitude-and-latitude-types"]], "Lotate log files with log_reopen": [[131, "lotate-log-files-with-log-reopen"]], "MESSAGE": [[228, "message"], [228, "id5"]], "MacPorts": [[30, "macports"]], "Made llama.cpp initialization lazy": [[45, "made-llama-cpp-initialization-lazy"]], "Mailing List": [[2, "mailing-list"]], "Major action on this error": [[101, "major-action-on-this-error"], [102, "major-action-on-this-error"], [103, "major-action-on-this-error"], [104, "major-action-on-this-error"], [105, "major-action-on-this-error"], [106, "major-action-on-this-error"]], "Major cause": [[101, "major-cause"], [102, "major-cause"], [103, "major-cause"], [104, "major-cause"], [105, "major-cause"], [106, "major-cause"]], "Match operator": [[225, "match-operator"]], "Memcached binary protocol": [[295, null]], "Memory usage": [[281, "memory-usage"]], "Missing mode": [[111, "missing-mode"]], "Modulo assignment operator": [[225, "modulo-assignment-operator"]], "Mroonga storage engine": [[0, "mroonga-storage-engine"]], "Multi databases": [[292, "multi-databases"]], "Multiplication assignment operator": [[225, "multiplication-assignment-operator"]], "Multiplication operator": [[225, "multiplication-operator"]], "NAME": [[112, "name"], [179, "name"]], "NONE": [[156, "none"]], "NORMALIZER": [[155, "normalizer"]], "NORMALIZERS": [[155, "normalizers"]], "Name": [[282, "name"]], "Narrow down & Full-text search by using syntax like JavaScript": [[315, "narrow-down-full-text-search-by-using-syntax-like-javascript"]], "Narrow down & sort by using location information": [[315, "narrow-down-sort-by-using-location-information"]], "Near phrase product search condition": [[224, "near-phrase-product-search-condition"]], "Near phrase product search operator": [[225, "near-phrase-product-search-operator"]], "Near phrase search condition": [[224, "near-phrase-search-condition"]], "Near phrase search operator": [[225, "near-phrase-search-operator"]], "Near search condition": [[224, "near-search-condition"]], "Near search operator": [[225, "near-search-operator"]], "Nested index search among related table by column index": [[310, "nested-index-search-among-related-table-by-column-index"]], "New Features and Improvements": [[43, "new-features-and-improvements"]], "Newly supported OSes": [[43, "newly-supported-oses"]], "News": [[35, null]], "News - 1.2.x": [[39, null]], "News - 1.3 series": [[40, null]], "News - 10 series": [[41, null]], "News - 11 series": [[42, null]], "News - 12 series": [[43, null]], "News - 13 series": [[44, null]], "News - 14 series": [[45, null]], "News - 15 series": [[46, null]], "News - 2 series": [[47, null]], "News - 3 series": [[48, null]], "News - 4 series": [[49, null]], "News - 5 series": [[50, null]], "News - 6 series": [[51, null]], "News - 7 series": [[52, null]], "News - 8 series": [[53, null]], "News - 9 series": [[54, null]], "News in Senna period": [[55, null]], "Normal scalar column": [[90, "normal-scalar-column"]], "Normal vector column": [[91, "normal-vector-column"]], "NormalizerAuto": [[230, null]], "NormalizerNFKC": [[231, null]], "NormalizerNFKC100": [[232, null]], "NormalizerNFKC121": [[233, null]], "NormalizerNFKC130": [[234, null]], "NormalizerNFKC150": [[235, null]], "NormalizerNFKC51": [[236, null]], "NormalizerNFKC: Added support for mixing unify_middle_dot and remove_symbol": [[45, "normalizernfkc-added-support-for-mixing-unify-middle-dot-and-remove-symbol"]], "NormalizerTable": [[237, null]], "Normalizers": [[229, null]], "Not equal condition": [[224, "not-equal-condition"]], "Not equal operator": [[225, "not-equal-operator"]], "Notes": [[94, "notes"]], "Null": [[225, "null"]], "Numeric types": [[305, "numeric-types"]], "OBJECT (\"column:*\" object types specific properties)": [[142, "object-column-object-types-specific-properties"]], "OBJECT (\"column:fix\" and \"column:var\" object types specific properties)": [[142, "object-column-fix-and-column-var-object-types-specific-properties"]], "OBJECT (\"proc\" object type specific properties)": [[142, "object-proc-object-type-specific-properties"]], "OBJECT (\"table:*\" object types specific properties)": [[142, "object-table-object-types-specific-properties"]], "OBJECT (\"type\" object type specific properties)": [[142, "object-type-object-type-specific-properties"]], "OBJECT (common properties)": [[142, "object-common-properties"]], "OBJECTS": [[142, "objects"]], "OBJECT_TYPE": [[142, "object-type"]], "OPTIONS": [[179, "options"]], "Object literal": [[225, "object-literal"]], "Offline index construction": [[226, "offline-index-construction"]], "Offline index construction: Added support for parallel execution": [[45, "offline-index-construction-added-support-for-parallel-execution"]], "Online index construction": [[226, "online-index-construction"]], "Operate a database": [[308, "operate-a-database"]], "Operations": [[238, null]], "Optional parameter": [[183, "optional-parameter"], [188, "optional-parameter"], [195, "optional-parameter"], [203, "optional-parameter"], [231, "optional-parameter"], [232, "optional-parameter"], [233, "optional-parameter"], [234, "optional-parameter"], [235, "optional-parameter"], [258, "optional-parameter"], [259, "optional-parameter"], [260, "optional-parameter"], [261, "optional-parameter"], [272, "optional-parameter"], [274, "optional-parameter"], [275, "optional-parameter"]], "Optional parameters": [[110, "optional-parameters"], [111, "optional-parameters"], [115, "optional-parameters"], [116, "optional-parameters"], [117, "optional-parameters"], [118, "optional-parameters"], [122, "optional-parameters"], [124, "optional-parameters"], [125, "optional-parameters"], [132, "optional-parameters"], [133, "optional-parameters"], [134, "optional-parameters"], [135, "optional-parameters"], [136, "optional-parameters"], [137, "optional-parameters"], [138, "optional-parameters"], [140, "optional-parameters"], [141, "optional-parameters"], [142, "optional-parameters"], [143, "optional-parameters"], [146, "optional-parameters"], [149, "optional-parameters"], [150, "optional-parameters"], [155, "optional-parameters"], [157, "optional-parameters"], [158, "optional-parameters"], [160, "optional-parameters"], [161, "optional-parameters"], [163, "optional-parameters"], [165, "optional-parameters"], [166, "optional-parameters"], [167, "optional-parameters"], [168, "optional-parameters"], [180, "optional-parameters"], [180, "groonga-suggest-httpd-optional-parameters"], [193, "optional-parameters"], [202, "optional-parameters"], [205, "optional-parameters"], [209, "optional-parameters"], [219, "optional-parameters"], [237, "optional-parameters"], [246, "optional-parameters"], [247, "optional-parameters"]], "Optional parameters for learning": [[180, "optional-parameters-for-learning"]], "Optional: Translate documentation": [[18, "optional-translate-documentation"]], "Options": [[175, "options"], [181, "options"]], "Ordered near phrase product search condition": [[224, "ordered-near-phrase-product-search-condition"]], "Ordered near phrase product search operator": [[225, "ordered-near-phrase-product-search-operator"]], "Ordered near phrase search condition": [[224, "ordered-near-phrase-search-condition"]], "Ordered near phrase search operator": [[225, "ordered-near-phrase-search-operator"]], "Original operators": [[225, "original-operators"]], "Others": [[31, null], [244, "others"]], "Others: Build with CMake": [[27, null]], "Output": [[241, null]], "Output format": [[95, null]], "Output format for drilldowns[${LABEL}] style": [[156, "output-format-for-drilldowns-label-style"]], "Output related parameters": [[134, "output-related-parameters"], [135, "output-related-parameters"], [156, "output-related-parameters"]], "Output trace log": [[96, null]], "Overview": [[84, null], [305, "overview"]], "PATH": [[112, "path"]], "PID": [[228, "pid"]], "PKG_CONFIG_PATH=PATHS": [[31, "pkg-config-path-paths"]], "PLUGIN": [[155, "plugin"]], "PLUGINS": [[155, "plugins"]], "POSITION": [[123, "position"]], "POST": [[292, "post"]], "POWER_SET": [[156, "power-set"]], "PPA (Personal Package Archive)": [[32, "ppa-personal-package-archive"]], "PPA\u7528\u306e\u9375\u306e\u767b\u9332": [[12, "ppa"]], "PROGRESS": [[228, "progress"]], "Paging": [[156, "paging"]], "Parallel execution": [[94, null]], "Parallel execution support": [[94, "parallel-execution-support"]], "Parameters": [[107, "parameters"], [108, "parameters"], [109, "parameters"], [110, "parameters"], [111, "parameters"], [112, "parameters"], [113, "parameters"], [114, "parameters"], [115, "parameters"], [116, "parameters"], [117, "parameters"], [118, "parameters"], [119, "parameters"], [120, "parameters"], [121, "parameters"], [122, "parameters"], [123, "parameters"], [124, "parameters"], [125, "parameters"], [126, "parameters"], [127, "parameters"], [128, "parameters"], [129, "parameters"], [130, "parameters"], [131, "parameters"], [132, "parameters"], [133, "parameters"], [134, "parameters"], [135, "parameters"], [136, "parameters"], [137, "parameters"], [138, "parameters"], [140, "parameters"], [141, "parameters"], [142, "parameters"], [143, "parameters"], [146, "parameters"], [147, "parameters"], [149, "parameters"], [150, "parameters"], [152, "parameters"], [153, "parameters"], [154, "parameters"], [155, "parameters"], [156, "parameters"], [157, "parameters"], [158, "parameters"], [159, "parameters"], [160, "parameters"], [161, "parameters"], [162, "parameters"], [163, "parameters"], [164, "parameters"], [165, "parameters"], [166, "parameters"], [167, "parameters"], [168, "parameters"], [170, "parameters"], [181, "parameters"], [183, "parameters"], [186, "parameters"], [188, "parameters"], [191, "parameters"], [192, "parameters"], [193, "parameters"], [194, "parameters"], [195, "parameters"], [196, "parameters"], [197, "parameters"], [198, "parameters"], [201, "parameters"], [202, "parameters"], [203, "parameters"], [205, "parameters"], [208, "parameters"], [209, "parameters"], [210, "parameters"], [211, "parameters"], [219, "parameters"], [220, "parameters"], [221, "parameters"], [231, "parameters"], [232, "parameters"], [233, "parameters"], [234, "parameters"], [235, "parameters"], [237, "parameters"], [246, "parameters"], [247, "parameters"], [257, "parameters"], [258, "parameters"], [259, "parameters"], [260, "parameters"], [261, "parameters"], [272, "parameters"], [274, "parameters"], [275, "parameters"], [281, "parameters"], [286, "parameters"]], "Performance": [[292, "performance"]], "Performance related directives": [[177, "performance-related-directives"]], "Persistent table": [[254, "persistent-table"]], "Persistent table and temporary table": [[254, "persistent-table-and-temporary-table"]], "Phrase search condition": [[224, "phrase-search-condition"]], "Phrase search condition (with explicit match column)": [[224, "phrase-search-condition-with-explicit-match-column"]], "Plugin": [[85, null]], "Prefix RK search": [[240, null], [250, "prefix-rk-search"]], "Prefix search": [[250, "prefix-search"]], "Prefix search by primary key": [[313, "prefix-search-by-primary-key"]], "Prefix search condition": [[224, "prefix-search-condition"]], "Prefix search operator": [[225, "prefix-search-operator"]], "Prefix search with patricia trie": [[313, null]], "Preparation": [[314, "preparation"]], "Prepare your pull request": [[18, "prepare-your-pull-request"]], "Pretty print": [[97, null]], "Preview changes on HTML files": [[18, "preview-changes-on-html-files"]], "Preview the generated HTML files in your Web browser": [[18, "preview-the-generated-html-files-in-your-web-browser"]], "Preview translations on HTML files": [[18, "preview-translations-on-html-files"]], "Process log": [[228, "process-log"]], "Protocol": [[298, "protocol"]], "Pseudo column": [[89, null]], "Pulling image": [[29, "pulling-image"]], "QUERY": [[228, "query"]], "QUERY_STATUS": [[228, "query-status"]], "Quantifier": [[244, "quantifier"]], "Query cache": [[177, "query-cache"]], "Query expanders": [[242, null]], "Query expansion": [[314, null]], "Query log": [[228, "query-log"]], "Query syntax": [[224, null]], "QueryExpanderTSV": [[243, null]], "RANGE": [[112, "range"], [142, "range"]], "RECORD_ID": [[123, "record-id"]], "RETURN_CODE": [[228, "return-code"]], "Record ID": [[254, "record-id"]], "Red Hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "red-hat"]], "Reference": [[60, "reference"], [61, "reference"], [62, "reference"], [63, "reference"], [64, "reference"], [65, "reference"], [66, "reference"], [67, "reference"], [68, "reference"], [69, "reference"], [70, "reference"], [71, "reference"], [72, "reference"], [73, "reference"], [74, "reference"], [75, "reference"], [76, "reference"], [77, "reference"], [78, "reference"], [79, "reference"], [80, "reference"], [81, "reference"], [82, "reference"], [83, "reference"], [84, "reference"], [85, "reference"]], "Reference manual": [[57, null]], "Reference scalar column": [[90, "reference-scalar-column"]], "Reference types": [[305, "reference-types"]], "Reference vector column": [[91, "reference-vector-column"]], "Reflect translations to .po files": [[18, "reflect-translations-to-po-files"]], "Regular expression": [[244, null]], "Regular expression condition": [[224, "regular-expression-condition"]], "Regular expression operator": [[225, "regular-expression-operator"]], "Regular expression: Fixed a bug with an empty pattern": [[45, "reference-regular-expression-fixed-a-bug-with-an-empty-pattern"]], "Related tables": [[181, "related-tables"]], "Release 1.2.2 - 2011-05-29": [[39, "release-1-2-2-2011-05-29"]], "Release 1.2.3 - 2011-06-29": [[39, "release-1-2-3-2011-06-29"]], "Release 1.2.4 - 2011-07-29": [[39, "release-1-2-4-2011-07-29"]], "Release 1.2.5 - 2011-08-29": [[39, "release-1-2-5-2011-08-29"]], "Release 1.2.6 - 2011-09-29": [[39, "release-1-2-6-2011-09-29"]], "Release 1.2.7 - 2011-10-29": [[39, "release-1-2-7-2011-10-29"]], "Release 1.2.8 - 2011-11-29": [[39, "release-1-2-8-2011-11-29"]], "Release 1.2.9 - 2011-12-29": [[39, "release-1-2-9-2011-12-29"]], "Release 1.3.0 - 2012-01-29": [[40, "release-1-3-0-2012-01-29"]], "Release 10.0.0 - 2020-03-29": [[41, "release-10-0-0-2020-03-29"]], "Release 10.0.1 - 2020-03-30": [[41, "release-10-0-1-2020-03-30"]], "Release 10.0.2 - 2020-04-29": [[41, "release-10-0-2-2020-04-29"]], "Release 10.0.3 - 2020-05-29": [[41, "release-10-0-3-2020-05-29"]], "Release 10.0.4 - 2020-06-29": [[41, "release-10-0-4-2020-06-29"]], "Release 10.0.5 - 2020-07-30": [[41, "release-10-0-5-2020-07-30"]], "Release 10.0.6 - 2020-08-29": [[41, "release-10-0-6-2020-08-29"]], "Release 10.0.7 - 2020-09-29": [[41, "release-10-0-7-2020-09-29"]], "Release 10.0.8 - 2020-10-29": [[41, "release-10-0-8-2020-10-29"]], "Release 10.0.9 - 2020-12-01": [[41, "release-10-0-9-2020-12-01"]], "Release 10.1.0 - 2020-12-29": [[41, "release-10-1-0-2020-12-29"]], "Release 10.1.1 - 2021-01-25": [[41, "release-10-1-1-2021-01-25"]], "Release 11.0.0 - 2021-02-09": [[42, "release-11-0-0-2021-02-09"]], "Release 11.0.1 - 2021-03-31": [[42, "release-11-0-1-2021-03-31"]], "Release 11.0.2 - 2021-05-10": [[42, "release-11-0-2-2021-05-10"]], "Release 11.0.3 - 2021-05-29": [[42, "release-11-0-3-2021-05-29"]], "Release 11.0.4 - 2021-06-29": [[42, "release-11-0-4-2021-06-29"]], "Release 11.0.5 - 2021-07-29": [[42, "release-11-0-5-2021-07-29"]], "Release 11.0.6 - 2021-08-29": [[42, "release-11-0-6-2021-08-29"]], "Release 11.0.7 - 2021-09-29": [[42, "release-11-0-7-2021-09-29"]], "Release 11.0.9 - 2021-11-04": [[42, "release-11-0-9-2021-11-04"]], "Release 11.1.0 - 2021-11-29": [[42, "release-11-1-0-2021-11-29"]], "Release 11.1.1 - 2021-12-29": [[42, "release-11-1-1-2021-12-29"]], "Release 11.1.3 - 2022-01-29": [[42, "release-11-1-3-2022-01-29"]], "Release 12.0.0 - 2022-02-09": [[43, "release-12-0-0-2022-02-09"]], "Release 12.0.1 - 2022-02-28": [[43, "release-12-0-1-2022-02-28"]], "Release 12.0.2 - 2022-03-29": [[43, "release-12-0-2-2022-03-29"]], "Release 12.0.3 - 2022-04-29": [[43, "release-12-0-3-2022-04-29"]], "Release 12.0.4 - 2022-06-06": [[43, "release-12-0-4-2022-06-06"]], "Release 12.0.5 - 2022-06-29": [[43, "release-12-0-5-2022-06-29"]], "Release 12.0.6 - 2022-08-04": [[43, "release-12-0-6-2022-08-04"]], "Release 12.0.7 - 2022-08-29": [[43, "release-12-0-7-2022-08-29"]], "Release 12.0.8 - 2022-10-03": [[43, "release-12-0-8-2022-10-03"]], "Release 12.0.9 - 2022-10-28": [[43, "release-12-0-9-2022-10-28"]], "Release 12.1.0 - 2022-11-29": [[43, "release-12-1-0-2022-11-29"]], "Release 12.1.1 - 2023-01-06": [[43, "release-12-1-1-2023-01-06"]], "Release 12.1.2 - 2023-01-29": [[43, "release-12-1-2-2023-01-29"]], "Release 13.0.0 - 2023-02-09": [[44, "release-13-0-0-2023-02-09"]], "Release 13.0.1 - 2023-03-24": [[44, "release-13-0-1-2023-03-24"]], "Release 13.0.2 - 2023-07-12": [[44, "release-13-0-2-2023-07-12"]], "Release 13.0.3 - 2023-07-24": [[44, "release-13-0-3-2023-07-24"]], "Release 13.0.4 - 2023-07-26": [[44, "release-13-0-4-2023-07-26"]], "Release 13.0.5 - 2023-08-02": [[44, "release-13-0-5-2023-08-02"]], "Release 13.0.6 - 2023-08-31": [[44, "release-13-0-6-2023-08-31"]], "Release 13.0.7 - 2023-09-12": [[44, "release-13-0-7-2023-09-12"]], "Release 13.0.8 - 2023-09-29": [[44, "release-13-0-8-2023-09-29"]], "Release 13.0.9 - 2023-10-29": [[44, "release-13-0-9-2023-10-29"]], "Release 13.1.0 - 2023-12-26": [[44, "release-13-1-0-2023-12-26"]], "Release 13.1.1 - 2024-01-09": [[44, "release-13-1-1-2024-01-09"]], "Release 14.0.0 - 2024-02-29": [[45, "release-14-0-0-2024-02-29"]], "Release 14.0.1 - 2024-03-14": [[45, "release-14-0-1-2024-03-14"]], "Release 14.0.2 - 2024-03-29": [[45, "release-14-0-2-2024-03-29"]], "Release 14.0.3 - 2024-05-09": [[45, "release-14-0-3-2024-05-09"]], "Release 14.0.4 - 2024-05-29": [[45, "release-14-0-4-2024-05-29"]], "Release 14.0.5 - 2024-07-04": [[45, "release-14-0-5-2024-07-04"]], "Release 14.0.6 - 2024-07-29": [[45, "release-14-0-6-2024-07-29"]], "Release 14.0.7 - 2024-09-03": [[45, "release-14-0-7-2024-09-03"]], "Release 14.0.8 - 2024-09-25": [[45, "release-14-0-8-2024-09-25"]], "Release 14.0.9 - 2024-09-27": [[45, "release-14-0-9-2024-09-27"]], "Release 14.1.0 - 2024-11-05": [[45, "release-14-1-0-2024-11-05"]], "Release 14.1.1 - 2024-12-03": [[45, "release-14-1-1-2024-12-03"]], "Release 14.1.2 - 2024-12-24": [[45, "release-14-1-2-2024-12-24"]], "Release 14.1.3 - 2025-01-29": [[45, "release-14-1-3-2025-01-29"]], "Release 15.0.0 - 2025-02-09": [[46, "release-15-0-0-2025-02-09"]], "Release 2.0.0 - 2012-02-29": [[47, "release-2-0-0-2012-02-29"]], "Release 2.0.1 - 2012-03-29": [[47, "release-2-0-1-2012-03-29"]], "Release 2.0.2 - 2012-04-29": [[47, "release-2-0-2-2012-04-29"]], "Release 2.0.3 - 2012-05-29": [[47, "release-2-0-3-2012-05-29"]], "Release 2.0.4 - 2012-06-29": [[47, "release-2-0-4-2012-06-29"]], "Release 2.0.5 - 2012-07-29": [[47, "release-2-0-5-2012-07-29"]], "Release 2.0.6 - 2012-08-29": [[47, "release-2-0-6-2012-08-29"]], "Release 2.0.7 - 2012-09-29": [[47, "release-2-0-7-2012-09-29"]], "Release 2.0.8 - 2012-10-29": [[47, "release-2-0-8-2012-10-29"]], "Release 2.0.9 - 2012-11-29": [[47, "release-2-0-9-2012-11-29"]], "Release 2.1.0 - 2012-12-29": [[47, "release-2-1-0-2012-12-29"]], "Release 2.1.1 - 2012-12-29": [[47, "release-2-1-1-2012-12-29"]], "Release 2.1.2 - 2013-01-29": [[47, "release-2-1-2-2013-01-29"]], "Release 3.0.0 - 2013-02-09": [[48, "release-3-0-0-2013-02-09"]], "Release 3.0.1 - 2013-02-28": [[48, "release-3-0-1-2013-02-28"]], "Release 3.0.2 - 2013-03-29": [[48, "release-3-0-2-2013-03-29"]], "Release 3.0.3 - 2013-04-29": [[48, "release-3-0-3-2013-04-29"]], "Release 3.0.4 - 2013-05-29": [[48, "release-3-0-4-2013-05-29"]], "Release 3.0.5 - 2013-06-29": [[48, "release-3-0-5-2013-06-29"]], "Release 3.0.6 - 2013-07-29": [[48, "release-3-0-6-2013-07-29"]], "Release 3.0.7 - 2013-08-29": [[48, "release-3-0-7-2013-08-29"]], "Release 3.0.8 - 2013-09-29": [[48, "release-3-0-8-2013-09-29"]], "Release 3.0.9 - 2013-10-29": [[48, "release-3-0-9-2013-10-29"]], "Release 3.1.0 - 2013-11-29": [[48, "release-3-1-0-2013-11-29"]], "Release 3.1.1 - 2013-12-29": [[48, "release-3-1-1-2013-12-29"]], "Release 3.1.2 - 2014-01-29": [[48, "release-3-1-2-2014-01-29"]], "Release 4.0.0 - 2014-02-09": [[49, "release-4-0-0-2014-02-09"]], "Release 4.0.1 - 2014-03-29": [[49, "release-4-0-1-2014-03-29"]], "Release 4.0.2 - 2014-05-29": [[49, "release-4-0-2-2014-05-29"]], "Release 4.0.3 - 2014-06-29": [[49, "release-4-0-3-2014-06-29"]], "Release 4.0.4 - 2014-07-29": [[49, "release-4-0-4-2014-07-29"]], "Release 4.0.5 - 2014-08-29": [[49, "release-4-0-5-2014-08-29"]], "Release 4.0.6 - 2014-09-29": [[49, "release-4-0-6-2014-09-29"]], "Release 4.0.7 - 2014-10-29": [[49, "release-4-0-7-2014-10-29"]], "Release 4.0.8 - 2014-11-29": [[49, "release-4-0-8-2014-11-29"]], "Release 4.0.9 - 2014-12-29": [[49, "release-4-0-9-2014-12-29"]], "Release 4.1.0 - 2015-01-09": [[49, "release-4-1-0-2015-01-09"]], "Release 4.1.1 - 2015-01-29": [[49, "release-4-1-1-2015-01-29"]], "Release 5.0.0 - 2015-02-09": [[50, "release-5-0-0-2015-02-09"]], "Release 5.0.1 - 2015-03-29": [[50, "release-5-0-1-2015-03-29"]], "Release 5.0.2 - 2015-03-31": [[50, "release-5-0-2-2015-03-31"]], "Release 5.0.3 - 2015-04-29": [[50, "release-5-0-3-2015-04-29"]], "Release 5.0.4 - 2015-05-29": [[50, "release-5-0-4-2015-05-29"]], "Release 5.0.5 - 2015-06-29": [[50, "release-5-0-5-2015-06-29"]], "Release 5.0.6 - 2015-07-29": [[50, "release-5-0-6-2015-07-29"]], "Release 5.0.7 - 2015-08-31": [[50, "release-5-0-7-2015-08-31"]], "Release 5.0.8 - 2015-09-29": [[50, "release-5-0-8-2015-09-29"]], "Release 5.0.9 - 2015-10-29": [[50, "release-5-0-9-2015-10-29"]], "Release 5.1.0 - 2015-11-29": [[50, "release-5-1-0-2015-11-29"]], "Release 5.1.1 - 2015-12-29": [[50, "release-5-1-1-2015-12-29"]], "Release 5.1.2 - 2016-01-29": [[50, "release-5-1-2-2016-01-29"]], "Release 6.0.0 - 2016-02-29": [[51, "release-6-0-0-2016-02-29"]], "Release 6.0.1 - 2016-03-29": [[51, "release-6-0-1-2016-03-29"]], "Release 6.0.2 - 2016-04-29": [[51, "release-6-0-2-2016-04-29"]], "Release 6.0.3 - 2016-05-29": [[51, "release-6-0-3-2016-05-29"]], "Release 6.0.4 - 2016-06-06": [[51, "release-6-0-4-2016-06-06"]], "Release 6.0.5 - 2016-06-29": [[51, "release-6-0-5-2016-06-29"]], "Release 6.0.7 - 2016-07-29": [[51, "release-6-0-7-2016-07-29"]], "Release 6.0.8 - 2016-08-29": [[51, "release-6-0-8-2016-08-29"]], "Release 6.0.9 - 2016-09-29": [[51, "release-6-0-9-2016-09-29"]], "Release 6.1.0 - 2016-10-29": [[51, "release-6-1-0-2016-10-29"]], "Release 6.1.1 - 2016-11-29": [[51, "release-6-1-1-2016-11-29"]], "Release 6.1.2 - 2016-12-31": [[51, "release-6-1-2-2016-12-31"]], "Release 6.1.3 - 2017-01-06": [[51, "release-6-1-3-2017-01-06"]], "Release 6.1.4 - 2017-01-18": [[51, "release-6-1-4-2017-01-18"]], "Release 6.1.5 - 2017-01-23": [[51, "release-6-1-5-2017-01-23"]], "Release 7.0.0 - 2017-02-09": [[52, "release-7-0-0-2017-02-09"]], "Release 7.0.1 - 2017-03-29": [[52, "release-7-0-1-2017-03-29"]], "Release 7.0.2 - 2017-04-29": [[52, "release-7-0-2-2017-04-29"]], "Release 7.0.3 - 2017-05-29": [[52, "release-7-0-3-2017-05-29"]], "Release 7.0.4 - 2017-06-29": [[52, "release-7-0-4-2017-06-29"]], "Release 7.0.5 - 2017-07-29": [[52, "release-7-0-5-2017-07-29"]], "Release 7.0.6 - 2017-08-29": [[52, "release-7-0-6-2017-08-29"]], "Release 7.0.7 - 2017-09-29": [[52, "release-7-0-7-2017-09-29"]], "Release 7.0.8 - 2017-10-29": [[52, "release-7-0-8-2017-10-29"]], "Release 7.0.9 - 2017-11-29": [[52, "release-7-0-9-2017-11-29"]], "Release 7.1.0 - 2017-12-29": [[52, "release-7-1-0-2017-12-29"]], "Release 7.1.1 - 2018-01-29": [[52, "release-7-1-1-2018-01-29"]], "Release 8.0.0 - 2018-02-09": [[53, "release-8-0-0-2018-02-09"]], "Release 8.0.1 - 2018-03-29": [[53, "release-8-0-1-2018-03-29"]], "Release 8.0.2 - 2018-04-29": [[53, "release-8-0-2-2018-04-29"]], "Release 8.0.3 - 2018-05-29": [[53, "release-8-0-3-2018-05-29"]], "Release 8.0.4 - 2018-06-29": [[53, "release-8-0-4-2018-06-29"]], "Release 8.0.5 - 2018-07-29": [[53, "release-8-0-5-2018-07-29"]], "Release 8.0.6 - 2018-08-29": [[53, "release-8-0-6-2018-08-29"]], "Release 8.0.7 - 2018-09-29": [[53, "release-8-0-7-2018-09-29"]], "Release 8.0.8 - 2018-10-29": [[53, "release-8-0-8-2018-10-29"]], "Release 8.0.9 - 2018-11-29": [[53, "release-8-0-9-2018-11-29"]], "Release 8.1.0 - 2018-12-29": [[53, "release-8-1-0-2018-12-29"]], "Release 8.1.1 - 2019-01-29": [[53, "release-8-1-1-2019-01-29"]], "Release 9.0.0 - 2019-02-09": [[54, "release-9-0-0-2019-02-09"]], "Release 9.0.1 - 2019-03-29": [[54, "release-9-0-1-2019-03-29"]], "Release 9.0.2 - 2019-04-29": [[54, "release-9-0-2-2019-04-29"]], "Release 9.0.3 - 2019-05-29": [[54, "release-9-0-3-2019-05-29"]], "Release 9.0.4 - 2019-06-29": [[54, "release-9-0-4-2019-06-29"]], "Release 9.0.5 - 2019-07-30": [[54, "release-9-0-5-2019-07-30"]], "Release 9.0.6 - 2019-08-05": [[54, "release-9-0-6-2019-08-05"]], "Release 9.0.7 - 2019-08-29": [[54, "release-9-0-7-2019-08-29"]], "Release 9.0.8 - 2019-09-27": [[54, "release-9-0-8-2019-09-27"]], "Release 9.0.9 - 2019-10-30": [[54, "release-9-0-9-2019-10-30"]], "Release 9.1.0 - 2019-11-29": [[54, "release-9-1-0-2019-11-29"]], "Release 9.1.1 - 2020-01-07": [[54, "release-9-1-1-2020-01-07"]], "Release 9.1.2 - 2020-01-29": [[54, "release-9-1-2-2020-01-29"]], "Relicensed to LGPL-2.1-or-later from LGPL-2.1-only": [[45, "relicensed-to-lgpl-2-1-or-later-from-lgpl-2-1-only"]], "Remote access": [[312, null]], "Removes a table with tables and columns that reference the target table": [[163, "removes-a-table-with-tables-and-columns-that-reference-the-target-table"]], "Removes broken tables as much as possible": [[137, "removes-broken-tables-as-much-as-possible"]], "Removes parts of a logical table": [[137, "removes-parts-of-a-logical-table"]], "Removes with related tables": [[137, "removes-with-related-tables"]], "Report a bug to the mailing list": [[19, "report-a-bug-to-the-mailing-list"]], "Repository": [[13, null]], "Request ID": [[98, null]], "Request queries": [[177, "request-queries"]], "Request timeout": [[99, null]], "Required parameter": [[237, "required-parameter"]], "Required parameters": [[110, "required-parameters"], [111, "required-parameters"], [112, "required-parameters"], [114, "required-parameters"], [115, "required-parameters"], [116, "required-parameters"], [117, "required-parameters"], [118, "required-parameters"], [124, "required-parameters"], [125, "required-parameters"], [132, "required-parameters"], [133, "required-parameters"], [134, "required-parameters"], [135, "required-parameters"], [136, "required-parameters"], [137, "required-parameters"], [138, "required-parameters"], [140, "required-parameters"], [141, "required-parameters"], [142, "required-parameters"], [143, "required-parameters"], [146, "required-parameters"], [149, "required-parameters"], [150, "required-parameters"], [153, "required-parameters"], [155, "required-parameters"], [156, "required-parameters"], [157, "required-parameters"], [158, "required-parameters"], [160, "required-parameters"], [161, "required-parameters"], [163, "required-parameters"], [164, "required-parameters"], [165, "required-parameters"], [166, "required-parameters"], [167, "required-parameters"], [168, "required-parameters"], [170, "required-parameters"], [180, "required-parameters"], [180, "groonga-suggest-httpd-required-parameters"], [183, "required-parameters"], [188, "required-parameters"], [193, "required-parameters"], [195, "required-parameters"], [202, "required-parameters"], [203, "required-parameters"], [205, "required-parameters"], [209, "required-parameters"], [211, "required-parameters"], [219, "required-parameters"], [246, "required-parameters"], [247, "required-parameters"]], "Required parameters for learning": [[180, "required-parameters-for-learning"]], "Required parameters for suggestion": [[180, "required-parameters-for-suggestion"]], "Requirements": [[194, "requirements"], [197, "requirements"]], "Restart GQTP server": [[296, "restart-gqtp-server"]], "Restart HTTP server": [[296, "restart-http-server"], [296, "id3"]], "Return code": [[100, null]], "Return code on timeout": [[99, "return-code-on-timeout"]], "Return value": [[107, "return-value"], [108, "return-value"], [109, "return-value"], [110, "return-value"], [111, "return-value"], [112, "return-value"], [113, "return-value"], [114, "return-value"], [115, "return-value"], [116, "return-value"], [117, "return-value"], [118, "return-value"], [119, "return-value"], [120, "return-value"], [121, "return-value"], [122, "return-value"], [123, "return-value"], [124, "return-value"], [125, "return-value"], [126, "return-value"], [127, "return-value"], [128, "return-value"], [129, "return-value"], [130, "return-value"], [131, "return-value"], [132, "return-value"], [133, "return-value"], [134, "return-value"], [135, "return-value"], [136, "return-value"], [137, "return-value"], [138, "return-value"], [139, "return-value"], [140, "return-value"], [141, "return-value"], [142, "return-value"], [143, "return-value"], [144, "return-value"], [145, "return-value"], [146, "return-value"], [147, "return-value"], [148, "return-value"], [149, "return-value"], [150, "return-value"], [151, "return-value"], [152, "return-value"], [153, "return-value"], [154, "return-value"], [155, "return-value"], [156, "return-value"], [157, "return-value"], [158, "return-value"], [159, "return-value"], [160, "return-value"], [161, "return-value"], [162, "return-value"], [163, "return-value"], [164, "return-value"], [165, "return-value"], [166, "return-value"], [167, "return-value"], [168, "return-value"], [169, "return-value"], [170, "return-value"], [180, "return-value"], [183, "return-value"], [184, "return-value"], [186, "return-value"], [187, "return-value"], [188, "return-value"], [191, "return-value"], [192, "return-value"], [193, "return-value"], [194, "return-value"], [195, "return-value"], [196, "return-value"], [197, "return-value"], [198, "return-value"], [200, "return-value"], [201, "return-value"], [202, "return-value"], [203, "return-value"], [205, "return-value"], [206, "return-value"], [207, "return-value"], [208, "return-value"], [209, "return-value"], [210, "return-value"], [211, "return-value"], [212, "return-value"], [213, "return-value"], [214, "return-value"], [215, "return-value"], [216, "return-value"], [217, "return-value"], [218, "return-value"], [219, "return-value"], [220, "return-value"], [221, "return-value"], [222, "return-value"], [246, "return-value"], [247, "return-value"], [284, "return-value"], [285, "return-value"], [286, "return-value"], [287, "return-value"], [288, "return-value"]], "Reverse proxy and cache": [[177, "reverse-proxy-and-cache"]], "Reverse resolution of reference relationships": [[307, "reverse-resolution-of-reference-relationships"]], "Rules": [[248, "rules"]], "Run cmake": [[8, "run-cmake"], [27, "run-cmake"]], "Run cmake with --preset=doc": [[18, "run-cmake-with-preset-doc"]], "Run configure": [[6, "run-configure"]], "Run make": [[6, "run-make"]], "SCHEMA": [[155, "id1"]], "SCORE_N": [[180, "score-n"]], "SEE ALSO": [[179, "see-also"]], "SOURCE": [[155, "source"]], "SOURCES": [[112, "sources"], [142, "sources"]], "SUCCEEDED_OR_NOT": [[115, "succeeded-or-not"], [117, "succeeded-or-not"], [126, "succeeded-or-not"], [128, "succeeded-or-not"]], "SYNOPSTIS": [[179, "synopstis"]], "Sample data": [[224, "sample-data"], [225, "sample-data"]], "Scalar column": [[90, null]], "Score related parameters": [[156, "score-related-parameters"]], "Scorer": [[245, null]], "Script syntax": [[225, null]], "Search": [[311, "search"], [314, "search"]], "Search comments by hash tags": [[311, "search-comments-by-hash-tags"]], "Search comments by keyword": [[311, "search-comments-by-keyword"]], "Search comments by keyword and geolocation": [[311, "search-comments-by-keyword-and-geolocation"]], "Search comments by posted time": [[311, "search-comments-by-posted-time"]], "Search comments by user id": [[311, "search-comments-by-user-id"]], "Search comments by using the value of GeoPoint type": [[311, "search-comments-by-using-the-value-of-geopoint-type"]], "Search condition: filter": [[156, "search-condition-filter"]], "Search condition: query": [[156, "search-condition-query"]], "Search conditions": [[156, "search-conditions"]], "Search related parameters": [[132, "search-related-parameters"], [134, "search-related-parameters"], [135, "search-related-parameters"], [156, "search-related-parameters"]], "Search users by geolocation data (GeoPoint)": [[311, "search-users-by-geolocation-data-geopoint"]], "Search users by keyword": [[311, "search-users-by-keyword"]], "Search users who follows specific user": [[311, "search-users-who-follows-specific-user"]], "Search user\u2019s favorite comments": [[311, "search-user-s-favorite-comments"]], "Security": [[225, "security"]], "Security issues": [[312, "security-issues"]], "See also": [[6, "see-also"], [7, "see-also"], [8, "see-also"], [58, "see-also"], [90, "see-also"], [95, "see-also"], [98, "see-also"], [99, "see-also"], [100, "see-also"], [107, "see-also"], [109, "see-also"], [111, "see-also"], [112, "see-also"], [115, "see-also"], [116, "see-also"], [117, "see-also"], [119, "see-also"], [121, "see-also"], [125, "see-also"], [126, "see-also"], [128, "see-also"], [129, "see-also"], [130, "see-also"], [131, "see-also"], [136, "see-also"], [138, "see-also"], [139, "see-also"], [142, "see-also"], [144, "see-also"], [145, "see-also"], [146, "see-also"], [148, "see-also"], [151, "see-also"], [153, "see-also"], [154, "see-also"], [155, "see-also"], [156, "see-also"], [159, "see-also"], [161, "see-also"], [165, "see-also"], [168, "see-also"], [169, "see-also"], [178, "see-also"], [180, "see-also"], [184, "see-also"], [191, "see-also"], [192, "see-also"], [193, "see-also"], [201, "see-also"], [202, "see-also"], [203, "see-also"], [205, "see-also"], [206, "see-also"], [210, "see-also"], [223, "see-also"], [229, "see-also"], [230, "see-also"], [231, "see-also"], [232, "see-also"], [233, "see-also"], [234, "see-also"], [235, "see-also"], [237, "see-also"], [240, "see-also"], [243, "see-also"], [246, "see-also"], [247, "see-also"], [254, "see-also"], [255, "see-also"], [272, "see-also"], [274, "see-also"], [275, "see-also"], [276, "see-also"], [278, "see-also"], [286, "see-also"], [298, "see-also"]], "Send patch": [[18, "send-patch"]], "Senna -> groonga - 2009-01-14": [[55, "senna-groonga-2009-01-14"]], "Server": [[289, null]], "Server mode": [[175, "server-mode"]], "Server packages": [[296, null]], "Set per Groonga command": [[94, "set-per-groonga-command"]], "Set the default value": [[94, "set-the-default-value"]], "Set up": [[177, "set-up"]], "Setup": [[180, "setup"]], "Sharable storage and read lock-free": [[0, "sharable-storage-and-read-lock-free"]], "Sharding": [[248, null]], "Shift operators": [[225, "shift-operators"]], "ShortText": [[282, "shorttext"]], "Shut down": [[177, "shut-down"]], "Signed right shift operator": [[225, "signed-right-shift-operator"]], "Similar search": [[251, "similar-search"]], "Similar search condition": [[224, "similar-search-condition"]], "Similar search operator": [[225, "similar-search-operator"]], "Simple usage": [[134, "simple-usage"], [135, "simple-usage"], [156, "simple-usage"], [231, "simple-usage"], [232, "simple-usage"], [233, "simple-usage"], [234, "simple-usage"], [235, "simple-usage"], [237, "simple-usage"], [257, "simple-usage"], [258, "simple-usage"], [259, "simple-usage"], [272, "simple-usage"], [274, "simple-usage"], [275, "simple-usage"]], "Slice related parameters": [[156, "slice-related-parameters"]], "Solution": [[303, "solution"]], "Sort a search result": [[308, "sort-a-search-result"]], "Sort by using scorer": [[315, "sort-by-using-scorer"]], "Sorting drilldown results": [[306, "sorting-drilldown-results"]], "Specification": [[297, null]], "Specified by --default-n-workers option of groonga executable file": [[94, "specified-by-default-n-workers-option-of-groonga-executable-file"]], "Specified by --n_workers option of Groonga command": [[94, "specified-by-n-workers-option-of-groonga-command"]], "Specified by environment variable GRN_N_WORKERS_DEFAULT": [[94, "specified-by-environment-variable-grn-n-workers-default"]], "Specify output columns": [[308, "specify-output-columns"]], "Specify output ranges": [[308, "specify-output-ranges"]], "Standalone mode": [[175, "standalone-mode"]], "Start GQTP server": [[296, "start-gqtp-server"]], "Start HTTP server": [[296, "start-http-server"], [296, "id1"]], "Stop GQTP server": [[296, "stop-gqtp-server"]], "Stop HTTP server": [[296, "stop-http-server"], [296, "id2"]], "Stopped vendoring RapidJSON": [[45, "stopped-vendoring-rapidjson"]], "String": [[225, "string"]], "String types": [[305, "string-types"]], "Submit a bug to the issue tracker": [[19, "submit-a-bug-to-the-issue-tracker"]], "Submit your pull request": [[18, "submit-your-pull-request"]], "Subtraction assignment operator": [[225, "subtraction-assignment-operator"]], "Subtraction operator": [[225, "subtraction-operator"]], "Success case": [[95, "success-case"]], "Suffix search by primary key": [[313, "suffix-search-by-primary-key"]], "Suffix search condition": [[224, "suffix-search-condition"]], "Suffix search operator": [[225, "suffix-search-operator"]], "Suggest": [[249, null]], "Suggestion": [[252, "suggestion"], [253, null]], "Summary": [[44, "summary"], [58, "summary"], [60, "summary"], [61, "summary"], [62, "summary"], [63, "summary"], [64, "summary"], [65, "summary"], [66, "summary"], [67, "summary"], [69, "summary"], [70, "summary"], [71, "summary"], [72, "summary"], [73, "summary"], [74, "summary"], [75, "summary"], [76, "summary"], [77, "summary"], [78, "summary"], [79, "summary"], [80, "summary"], [81, "summary"], [82, "summary"], [83, "summary"], [84, "summary"], [85, "summary"], [87, "summary"], [88, "summary"], [90, "summary"], [91, "summary"], [94, "summary"], [95, "summary"], [96, "summary"], [97, "summary"], [98, "summary"], [99, "summary"], [100, "summary"], [107, "summary"], [108, "summary"], [109, "summary"], [110, "summary"], [111, "summary"], [112, "summary"], [113, "summary"], [114, "summary"], [115, "summary"], [116, "summary"], [117, "summary"], [118, "summary"], [119, "summary"], [120, "summary"], [121, "summary"], [122, "summary"], [123, "summary"], [124, "summary"], [125, "summary"], [126, "summary"], [127, "summary"], [128, "summary"], [129, "summary"], [130, "summary"], [131, "summary"], [132, "summary"], [133, "summary"], [134, "summary"], [135, "summary"], [136, "summary"], [137, "summary"], [138, "summary"], [139, "summary"], [140, "summary"], [141, "summary"], [142, "summary"], [143, "summary"], [144, "summary"], [145, "summary"], [146, "summary"], [147, "summary"], [148, "summary"], [149, "summary"], [150, "summary"], [151, "summary"], [152, "summary"], [153, "summary"], [154, "summary"], [155, "summary"], [156, "summary"], [157, "summary"], [158, "summary"], [159, "summary"], [160, "summary"], [161, "summary"], [162, "summary"], [163, "summary"], [164, "summary"], [165, "summary"], [166, "summary"], [167, "summary"], [168, "summary"], [169, "summary"], [170, "summary"], [171, "summary"], [173, "summary"], [175, "summary"], [177, "summary"], [178, "summary"], [180, "summary"], [181, "summary"], [183, "summary"], [184, "summary"], [186, "summary"], [187, "summary"], [188, "summary"], [191, "summary"], [192, "summary"], [193, "summary"], [194, "summary"], [195, "summary"], [196, "summary"], [197, "summary"], [198, "summary"], [200, "summary"], [201, "summary"], [202, "summary"], [203, "summary"], [205, "summary"], [206, "summary"], [207, "summary"], [208, "summary"], [209, "summary"], [210, "summary"], [211, "summary"], [212, "summary"], [213, "summary"], [214, "summary"], [215, "summary"], [216, "summary"], [217, "summary"], [218, "summary"], [219, "summary"], [220, "summary"], [221, "summary"], [222, "summary"], [227, "summary"], [229, "summary"], [230, "summary"], [231, "summary"], [232, "summary"], [233, "summary"], [234, "summary"], [235, "summary"], [236, "summary"], [237, "summary"], [240, "summary"], [243, "summary"], [244, "summary"], [245, "summary"], [246, "summary"], [247, "summary"], [248, "summary"], [254, "summary"], [255, null], [257, "summary"], [258, "summary"], [259, "summary"], [260, "summary"], [261, "summary"], [262, null], [264, "summary"], [265, "summary"], [266, "summary"], [267, "summary"], [268, "summary"], [269, "summary"], [270, "summary"], [271, "summary"], [272, "summary"], [273, "summary"], [274, "summary"], [275, "summary"], [276, "summary"], [277, "summary"], [278, "summary"], [279, "summary"], [280, "summary"], [281, "summary"], [284, "summary"], [285, "summary"], [286, "summary"], [287, "summary"], [288, "summary"], [290, "summary"]], "Summary of changes from Groonga 11.0.0 to 11.1.3": [[43, "summary-of-changes-from-groonga-11-0-0-to-11-1-3"]], "Supported features": [[239, "supported-features"]], "Synopsis": [[181, "synopsis"]], "Syntax": [[107, "syntax"], [108, "syntax"], [109, "syntax"], [110, "syntax"], [111, "syntax"], [112, "syntax"], [113, "syntax"], [114, "syntax"], [115, "syntax"], [116, "syntax"], [117, "syntax"], [118, "syntax"], [119, "syntax"], [120, "syntax"], [121, "syntax"], [122, "syntax"], [123, "syntax"], [124, "syntax"], [125, "syntax"], [126, "syntax"], [127, "syntax"], [128, "syntax"], [129, "syntax"], [130, "syntax"], [131, "syntax"], [132, "syntax"], [133, "syntax"], [134, "syntax"], [135, "syntax"], [136, "syntax"], [137, "syntax"], [138, "syntax"], [139, "syntax"], [140, "syntax"], [141, "syntax"], [142, "syntax"], [143, "syntax"], [144, "syntax"], [145, "syntax"], [146, "syntax"], [147, "syntax"], [148, "syntax"], [149, "syntax"], [150, "syntax"], [151, "syntax"], [152, "syntax"], [153, "syntax"], [154, "syntax"], [155, "syntax"], [156, "syntax"], [157, "syntax"], [158, "syntax"], [159, "syntax"], [160, "syntax"], [161, "syntax"], [162, "syntax"], [163, "syntax"], [164, "syntax"], [165, "syntax"], [166, "syntax"], [167, "syntax"], [168, "syntax"], [169, "syntax"], [170, "syntax"], [173, "syntax"], [175, "syntax"], [177, "syntax"], [178, "syntax"], [180, "syntax"], [183, "syntax"], [184, "syntax"], [186, "syntax"], [187, "syntax"], [188, "syntax"], [191, "syntax"], [192, "syntax"], [193, "syntax"], [194, "syntax"], [195, "syntax"], [196, "syntax"], [197, "syntax"], [198, "syntax"], [200, "syntax"], [201, "syntax"], [202, "syntax"], [203, "syntax"], [205, "syntax"], [206, "syntax"], [207, "syntax"], [208, "syntax"], [209, "syntax"], [210, "syntax"], [211, "syntax"], [212, "syntax"], [213, "syntax"], [214, "syntax"], [215, "syntax"], [216, "syntax"], [217, "syntax"], [218, "syntax"], [219, "syntax"], [220, "syntax"], [221, "syntax"], [222, "syntax"], [230, "syntax"], [231, "syntax"], [232, "syntax"], [233, "syntax"], [234, "syntax"], [235, "syntax"], [236, "syntax"], [237, "syntax"], [244, "syntax"], [246, "syntax"], [247, "syntax"], [257, "syntax"], [258, "syntax"], [259, "syntax"], [260, "syntax"], [261, "syntax"], [264, "syntax"], [265, "syntax"], [266, "syntax"], [267, "syntax"], [268, "syntax"], [269, "syntax"], [270, "syntax"], [271, "syntax"], [272, "syntax"], [273, "syntax"], [274, "syntax"], [275, "syntax"], [276, "syntax"], [277, "syntax"], [278, "syntax"], [279, "syntax"], [280, "syntax"], [284, "syntax"], [285, "syntax"], [286, "syntax"], [287, "syntax"], [288, "syntax"]], "TABLE": [[155, "table"]], "TABLES": [[155, "tables"]], "TABLE_DAT_KEY": [[254, "table-dat-key"]], "TABLE_HASH_KEY": [[254, "table-hash-key"]], "TABLE_HASH_KEY: Fixed a bug that garbage entry may not be reused": [[45, "table-hash-key-fixed-a-bug-that-garbage-entry-may-not-be-reused"]], "TABLE_ID": [[141, "table-id"]], "TABLE_KEY_MAX_TOTAL_SIZE": [[141, "table-key-max-total-size"]], "TABLE_KEY_TOTAL_SIZE": [[141, "table-key-total-size"]], "TABLE_KEY_TYPE": [[141, "table-key-type"]], "TABLE_NAME": [[141, "table-name"]], "TABLE_NO_KEY": [[254, "table-no-key"]], "TABLE_N_RECORDS": [[141, "table-n-records"]], "TABLE_PAT_KEY": [[254, "table-pat-key"]], "TABLE_PAT_KEY: Added support for Float32 as key type": [[46, "table-pat-key-added-support-for-builtin-type-float32-as-key-type"]], "TABLE_PAT_KEY: Fixed a bug that existing key may be broken after defrag": [[45, "table-pat-key-fixed-a-bug-that-existing-key-may-be-broken-after-reference-commands-defrag"]], "TABLE_PAT_KEY: Fixed a bug that some WALs are missing for defrag": [[45, "table-pat-key-fixed-a-bug-that-some-wals-are-missing-for-reference-commands-defrag"]], "TABLE_PAT_KEY: Improved key space efficiency": [[45, "table-pat-key-improved-key-space-efficiency"]], "TABLE_TYPE_ID": [[141, "table-type-id"]], "TABLE_TYPE_NAME": [[141, "table-type-name"]], "TABLE_VALUE_TYPE": [[141, "table-value-type"]], "THRESHOLD_N": [[186, "threshold-n"]], "TIME_STAMP": [[228, "time-stamp"], [228, "id4"]], "TOKENIZER": [[155, "tokenizer"]], "TOKENIZERS": [[155, "tokenizers"]], "TOKEN_FILTER": [[155, "token-filter"]], "TOKEN_FILTERS": [[142, "token-filters"], [155, "token-filters"]], "TOKEN_ID": [[123, "token-id"]], "TOKEN_VALUE": [[123, "token-value"]], "TSV": [[95, "tsv"]], "TSV File": [[243, "tsv-file"]], "TYPE": [[112, "type"], [155, "type"], [180, "type"]], "TYPES": [[155, "types"]], "TYPE_ID": [[141, "type-id"]], "TYPE_ID_OF_TYPE": [[141, "type-id-of-type"]], "TYPE_NAME": [[141, "type-name"]], "TYPE_NAME_OF_TYPE": [[141, "type-name-of-type"]], "TYPE_SIZE": [[141, "type-size"]], "Table": [[141, "table"]], "Tables": [[254, null]], "Tag search": [[307, "tag-search"]], "Tag search and reverse resolution of reference relationships": [[307, null]], "Temporary table": [[254, "temporary-table"]], "Term extract operator": [[225, "term-extract-operator"]], "Test related parameters": [[134, "test-related-parameters"]], "Text": [[282, "text"]], "Thanks": [[39, "thanks"], [39, "id3"], [39, "id6"], [39, "id9"], [39, "id14"], [39, "id17"], [40, "thanks"], [41, "thanks"], [41, "id3"], [41, "id9"], [41, "id14"], [41, "id17"], [41, "id20"], [41, "id23"], [41, "id26"], [42, "thanks"], [42, "id4"], [42, "id8"], [42, "id15"], [42, "id19"], [42, "id23"], [42, "id26"], [42, "id30"], [42, "id33"], [42, "id37"], [43, "thanks"], [43, "id13"], [43, "id19"], [43, "id22"], [43, "id27"], [44, "thanks"], [44, "id17"], [44, "id20"], [44, "id22"], [45, "thanks"], [45, "id10"], [45, "id13"], [45, "id23"], [47, "thanks"], [47, "id4"], [47, "id7"], [47, "id10"], [47, "id13"], [47, "id16"], [47, "id19"], [47, "id22"], [47, "id25"], [47, "id28"], [47, "id31"], [47, "id34"], [48, "thanks"], [48, "id3"], [48, "id6"], [48, "id9"], [48, "id12"], [48, "id15"], [48, "id18"], [48, "id21"], [48, "id24"], [48, "id28"], [48, "id31"], [48, "id33"], [49, "thanks"], [49, "id4"], [49, "id7"], [49, "id10"], [49, "id13"], [49, "id16"], [49, "id19"], [49, "id22"], [49, "id25"], [49, "id28"], [49, "id31"], [50, "thanks"], [50, "id3"], [50, "id6"], [50, "id9"], [50, "id12"], [50, "id15"], [50, "id18"], [50, "id21"], [50, "id24"], [50, "id27"], [50, "id30"], [50, "id33"], [50, "id36"], [51, "thanks"], [51, "id7"], [51, "id12"], [51, "id15"], [51, "id18"], [51, "id21"], [51, "id24"], [51, "id26"], [51, "id29"], [51, "id32"], [51, "id35"], [51, "id38"], [52, "thanks"], [52, "id3"], [52, "id6"], [52, "id13"], [52, "id16"], [52, "id19"], [52, "id22"], [52, "id27"], [52, "id30"], [53, "thanks"], [53, "id7"], [53, "id20"], [53, "id23"], [53, "id26"], [54, "thanks"], [54, "id5"], [54, "id10"], [54, "id13"], [54, "id16"], [54, "id19"], [54, "id22"], [54, "id25"], [54, "id28"]], "The Birth of Brazil Inc. and Senna": [[56, "the-birth-of-brazil-inc-and-senna"]], "The Evolution to Groonga": [[56, "the-evolution-to-groonga"]], "The Internet Landscape at that time": [[56, "the-internet-landscape-at-that-time"]], "The Pre-Groonga Era": [[56, null]], "The max number of open files per process": [[281, "the-max-number-of-open-files-per-process"]], "The number of kinds of index target data and the number of handleable records in a small index column": [[111, "id4"]], "The total number of records": [[156, "the-total-number-of-records"]], "Time": [[225, "time"], [282, "time"]], "Token filters": [[256, null]], "TokenBigram": [[264, null]], "TokenBigramIgnoreBlank": [[265, null]], "TokenBigramIgnoreBlankSplitSymbol": [[266, null]], "TokenBigramIgnoreBlankSplitSymbolAlpha": [[267, null]], "TokenBigramIgnoreBlankSplitSymbolAlphaDigit": [[268, null]], "TokenBigramSplitSymbol": [[269, null]], "TokenBigramSplitSymbolAlpha": [[270, null]], "TokenBigramSplitSymbolAlphaDigit": [[271, null]], "TokenDelimit": [[272, null]], "TokenDelimitNull": [[273, null]], "TokenFilterNFKC": [[257, null]], "TokenFilterNFKC100": [[258, null]], "TokenFilterNFKC150": [[259, null]], "TokenFilterStem": [[260, null]], "TokenFilterStopWord": [[261, null]], "TokenMecab": [[274, null]], "TokenNgram": [[275, null]], "TokenPattern": [[276, null]], "TokenRegexp": [[277, null]], "TokenTable": [[278, null]], "TokenTrigram": [[279, null]], "TokenUnigram": [[280, null]], "Tokenizers": [[263, null]], "TokyoGeoPoint": [[282, "tokyogeopoint"]], "Tools": [[31, "tools"]], "Translate the documentation in .edit.po files": [[18, "translate-the-documentation-in-edit-po-files"]], "Translation flow": [[17, "translation-flow"]], "Travis CI": [[21, null]], "Troubleshooting": [[300, null]], "Tuning": [[281, null]], "Tutorial": [[304, null]], "Twitter": [[2, "twitter"]], "Twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240(\u4f8b\u3048\u3070Redmine)\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044": [[10, "twitter-redmine"]], "Twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b": [[12, "twitter"]], "Twitter\u7de8": [[10, "twitter"]], "Type": [[141, "type"]], "Types that can\u2019t be specified in primary key of table": [[282, "types-that-can-t-be-specified-in-primary-key-of-table"]], "Typo tolerance": [[156, "typo-tolerance"]], "UInt16": [[282, "uint16"]], "UInt32": [[282, "uint32"]], "UInt64": [[282, "uint64"]], "UInt8": [[282, "uint8"]], "Ubuntu": [[32, null]], "Ubuntu\u5411\u3051\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u78ba\u8a8d": [[12, "ubuntu"]], "Ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "id14"]], "Ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u516c\u958b\u306e\u53d6\u308a\u6d88\u3057": [[12, "id15"]], "Unicode version": [[237, "unicode-version"]], "Unremovable cases": [[137, "unremovable-cases"], [163, "unremovable-cases"]], "Unsigned right shift operator": [[225, "unsigned-right-shift-operator"]], "Upgrading without downtime": [[292, "upgrading-without-downtime"]], "Usage": [[58, "usage"], [88, "usage"], [90, "usage"], [91, "usage"], [96, "usage"], [97, "usage"], [107, "usage"], [108, "usage"], [109, "usage"], [110, "usage"], [111, "usage"], [112, "usage"], [113, "usage"], [114, "usage"], [115, "usage"], [116, "usage"], [117, "usage"], [118, "usage"], [119, "usage"], [120, "usage"], [121, "usage"], [122, "usage"], [123, "usage"], [124, "usage"], [125, "usage"], [126, "usage"], [127, "usage"], [128, "usage"], [129, "usage"], [130, "usage"], [131, "usage"], [132, "usage"], [133, "usage"], [134, "usage"], [135, "usage"], [136, "usage"], [137, "usage"], [138, "usage"], [139, "usage"], [140, "usage"], [141, "usage"], [142, "usage"], [143, "usage"], [144, "usage"], [145, "usage"], [146, "usage"], [147, "usage"], [148, "usage"], [149, "usage"], [150, "usage"], [151, "usage"], [152, "usage"], [153, "usage"], [154, "usage"], [155, "usage"], [156, "usage"], [157, "usage"], [158, "usage"], [159, "usage"], [160, "usage"], [161, "usage"], [162, "usage"], [163, "usage"], [164, "usage"], [165, "usage"], [166, "usage"], [167, "usage"], [168, "usage"], [169, "usage"], [170, "usage"], [173, "usage"], [175, "usage"], [177, "usage"], [178, "usage"], [180, "usage"], [181, "usage"], [183, "usage"], [184, "usage"], [186, "usage"], [187, "usage"], [188, "usage"], [191, "usage"], [192, "usage"], [193, "usage"], [194, "usage"], [195, "usage"], [196, "usage"], [197, "usage"], [198, "usage"], [200, "usage"], [201, "usage"], [202, "usage"], [203, "usage"], [205, "usage"], [206, "usage"], [207, "usage"], [208, "usage"], [209, "usage"], [210, "usage"], [211, "usage"], [212, "usage"], [213, "usage"], [214, "usage"], [215, "usage"], [216, "usage"], [217, "usage"], [218, "usage"], [219, "usage"], [220, "usage"], [221, "usage"], [222, "usage"], [230, "usage"], [231, "usage"], [232, "usage"], [233, "usage"], [234, "usage"], [235, "usage"], [236, "usage"], [237, "usage"], [240, "usage"], [241, "usage"], [243, "usage"], [244, "usage"], [245, "usage"], [246, "usage"], [247, "usage"], [257, "usage"], [258, "usage"], [259, "usage"], [260, "usage"], [261, "usage"], [264, "usage"], [265, "usage"], [266, "usage"], [267, "usage"], [268, "usage"], [269, "usage"], [270, "usage"], [271, "usage"], [272, "usage"], [273, "usage"], [274, "usage"], [275, "usage"], [276, "usage"], [277, "usage"], [278, "usage"], [279, "usage"], [280, "usage"], [284, "usage"], [285, "usage"], [286, "usage"], [287, "usage"], [288, "usage"]], "Use suggested response": [[180, "use-suggested-response"]], "Use unify_to_katakana with other options": [[231, "use-unify-to-katakana-with-other-options"], [235, "use-unify-to-katakana-with-other-options"]], "Users table": [[311, "users-table"]], "Using multi CPU cores": [[292, "using-multi-cpu-cores"]], "Using the column value of location": [[188, "using-the-column-value-of-location"]], "Using the explicitly specified value of location": [[188, "using-the-explicitly-specified-value-of-location"]], "VALUE": [[116, "value"]], "VECTOR_COLUMN_VALUE_WEIGHT": [[141, "vector-column-value-weight"]], "VECTOR_COLUMN_VALUE_WEIGHT_BFLOAT16": [[141, "vector-column-value-weight-bfloat16"]], "VECTOR_COLUMN_VALUE_WEIGHT_FLOAT32": [[141, "vector-column-value-weight-float32"]], "Various data types": [[305, null]], "Various search conditions": [[315, null]], "Vector column": [[91, null]], "Vector column: Fixed a bug that needed cast may not be done": [[45, "reference-columns-vector-fixed-a-bug-that-needed-cast-may-not-be-done"]], "Vector types": [[305, "vector-types"]], "View a table": [[308, "view-a-table"]], "WGS84GeoPoint": [[282, "wgs84geopoint"]], "Weight vector column": [[91, "weight-vector-column"]], "Window function": [[156, "window-function"], [283, null]], "Window function related parameters": [[132, "window-function-related-parameters"], [134, "window-function-related-parameters"], [135, "window-function-related-parameters"], [156, "window-function-related-parameters"]], "Windows": [[27, "windows"], [27, "id2"], [27, "id6"], [33, null]], "Windows\u306eMSYS2\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "windowsmsys2"]], "Windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "windows"]], "With TokenMecab": [[231, "with-tokenmecab"], [235, "with-tokenmecab"]], "With docker-compose": [[29, "with-docker-compose"]], "XML": [[95, "xml"]], "[GQTP] Fixed a bug that wrong return code is returned": [[45, "server-gqtp-fixed-a-bug-that-wrong-return-code-is-returned"]], "[column_create] Added the generator parameter": [[45, "reference-commands-column-create-added-the-column-create-generator-parameter"]], "[index_column_diff] Fixed a bug that false positive diff may be reported": [[45, "reference-commands-index-column-diff-fixed-a-bug-that-false-positive-diff-may-be-reported"]], "[language_model_vectorize] Added (Experimental)": [[45, "reference-functions-language-model-vectorize-added-experimental"]], "[logical_range_filter] Fixed a bug that invalid JSON format response may be returned": [[45, "reference-commands-logical-range-filter-fixed-a-bug-that-invalid-json-format-response-may-be-returned"]], "[request_cancel] Fixed a bug that invalid JSON format response may be returned": [[45, "reference-commands-request-cancel-fixed-a-bug-that-invalid-json-format-response-may-be-returned"]], "[status] Added .[\"features\"][\"llama.cpp\"] entry": [[45, "reference-commands-status-added-features-llama-cpp-entry"]], "access_log": [[177, "access-log"]], "adjuster": [[156, "adjuster"]], "algorithm": [[260, "algorithm"]], "approximate_type": [[188, "approximate-type"]], "auto_release_count": [[149, "auto-release-count"]], "between": [[183, null]], "bookworm": [[28, "bookworm"]], "cache": [[132, "cache"], [134, "cache"], [135, "cache"], [156, "cache"]], "cache_limit": [[107, null]], "cast_loose": [[184, null]], "check": [[108, null], [173, "check"]], "clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "clang"]], "clearlock": [[109, null]], "close_tagN": [[191, "close-tagn"], [192, "close-tagn"]], "column": [[191, "column"], [192, "column"], [201, "column"], [211, "column"], [246, "column"], [247, "column"]], "column_copy": [[110, null]], "column_create": [[111, null]], "column_list": [[112, null]], "column_or_value": [[183, "column-or-value"]], "column_remove": [[113, null]], "column_rename": [[114, null]], "columns": [[125, "columns"], [261, "columns"]], "columns[${NAME}].flags": [[132, "columns-name-flags"], [134, "columns-name-flags"], [135, "columns-name-flags"], [156, "columns-name-flags"]], "columns[${NAME}].stage": [[132, "columns-name-stage"], [134, "columns-name-stage"], [135, "columns-name-stage"], [156, "columns-name-stage"]], "columns[${NAME}].type": [[132, "columns-name-type"], [134, "columns-name-type"], [135, "columns-name-type"], [156, "columns-name-type"]], "columns[${NAME}].value": [[132, "columns-name-value"], [134, "columns-name-value"], [135, "columns-name-value"], [156, "columns-name-value"]], "columns[${NAME}].window.group_keys": [[132, "columns-name-window-group-keys"], [134, "columns-name-window-group-keys"], [135, "columns-name-window-group-keys"], [156, "columns-name-window-group-keys"]], "columns[${NAME}].window.sort_keys": [[132, "columns-name-window-sort-keys"], [134, "columns-name-window-sort-keys"], [135, "columns-name-window-sort-keys"], [156, "columns-name-window-sort-keys"]], "command_version\u30d1\u30e9\u30e1\u30fc\u30bf": [[93, "id4"]], "condition_column_name": [[195, "condition-column-name"]], "condition_table": [[195, "condition-table"]], "config_delete": [[115, null]], "config_get": [[116, null]], "config_set": [[117, null]], "configure": [[31, "configure"]], "contain(v1, v2, mode, arg, callback)": [[11, "contain-v1-v2-mode-arg-callback"]], "database_path": [[181, "database-path"]], "database_unmap": [[118, null]], "default-command-version\u30d1\u30e9\u30e1\u30fc\u30bf": [[93, "default-command-version"]], "default_mode": [[202, "default-mode"], [203, "default-mode"]], "default_operator": [[202, "default-operator"], [203, "default-operator"]], "default_tokenizer": [[161, "default-tokenizer"]], "define_selector": [[119, null]], "defrag": [[120, null]], "defrag: Added support for TABLE_PAT_KEY": [[45, "reference-commands-defrag-added-support-for-table-pat-key"]], "defrag: Fixed a bug that columns of TABLE_PAT_KEY aren\u2019t processed": [[45, "reference-commands-defrag-fixed-a-bug-that-columns-of-table-pat-key-aren-t-processed"]], "delete": [[121, null]], "delete: Added support for reference weight vector": [[45, "reference-commands-delete-added-support-for-reference-weight-vector"]], "delimiter": [[272, "delimiter"]], "dependent": [[137, "dependent"], [163, "dependent"]], "drilldown": [[135, "drilldown"], [156, "select-drilldown"]], "drilldown_calc_target": [[135, "drilldown-calc-target"], [156, "drilldown-calc-target"]], "drilldown_calc_types": [[135, "drilldown-calc-types"], [156, "drilldown-calc-types"]], "drilldown_filter": [[135, "drilldown-filter"], [156, "drilldown-filter"]], "drilldown_limit": [[135, "drilldown-limit"], [156, "drilldown-limit"]], "drilldown_max_n_target_records": [[156, "drilldown-max-n-target-records"]], "drilldown_offset": [[135, "drilldown-offset"], [156, "drilldown-offset"]], "drilldown_output_columns": [[135, "drilldown-output-columns"], [156, "drilldown-output-columns"]], "drilldown_sort_keys": [[135, "drilldown-sort-keys"], [156, "drilldown-sort-keys"]], "drilldown_sortby": [[135, "drilldown-sortby"], [156, "drilldown-sortby"]], "drilldowns[${LABEL}].calc_target": [[135, "drilldowns-label-calc-target"]], "drilldowns[${LABEL}].calc_types": [[135, "drilldowns-label-calc-types"]], "drilldowns[${LABEL}].columns[${NAME}].flags": [[135, "drilldowns-label-columns-name-flags"]], "drilldowns[${LABEL}].columns[${NAME}].stage": [[135, "drilldowns-label-columns-name-stage"], [156, "drilldowns-label-columns-name-stage"]], "drilldowns[${LABEL}].columns[${NAME}].type": [[135, "drilldowns-label-columns-name-type"]], "drilldowns[${LABEL}].columns[${NAME}].value": [[135, "drilldowns-label-columns-name-value"]], "drilldowns[${LABEL}].columns[${NAME}].window.group_keys": [[135, "drilldowns-label-columns-name-window-group-keys"]], "drilldowns[${LABEL}].columns[${NAME}].window.sort_keys": [[135, "drilldowns-label-columns-name-window-sort-keys"]], "drilldowns[${LABEL}].filter": [[135, "drilldowns-label-filter"]], "drilldowns[${LABEL}].key_vector_expansion": [[156, "drilldowns-label-key-vector-expansion"]], "drilldowns[${LABEL}].keys": [[135, "drilldowns-label-keys"], [156, "drilldowns-label-keys"]], "drilldowns[${LABEL}].limit": [[135, "drilldowns-label-limit"]], "drilldowns[${LABEL}].offset": [[135, "drilldowns-label-offset"]], "drilldowns[${LABEL}].output_columns": [[135, "drilldowns-label-output-columns"], [156, "drilldowns-label-output-columns"]], "drilldowns[${LABEL}].sort_keys": [[135, "drilldowns-label-sort-keys"]], "drilldowns[${LABEL}].sortby": [[135, "drilldowns-label-sortby"]], "drilldowns[${LABEL}].table": [[156, "drilldowns-label-table"]], "dump": [[122, null]], "dump_indexes": [[122, "dump-indexes"]], "dump_plugins": [[122, "dump-plugins"]], "dump_records": [[122, "dump-records"]], "dump_schema": [[122, "dump-schema"]], "each": [[125, "each"]], "edit_distance": [[185, null]], "ellipsoid": [[188, "ellipsoid"]], "equal(v1, v2, arg, callback)": [[11, "equal-v1-v2-arg-callback"]], "escalate": [[186, null]], "filter": [[132, "filter"], [134, "filter"], [135, "filter"], [156, "filter"]], "filter_string": [[210, "filter-string"]], "flags": [[111, "flags"], [138, "flags"], [161, "flags"], [165, "flags"], [168, "flags"], [202, "flags"], [203, "flags"], [298, "flags"]], "force": [[137, "force"], [143, "force"]], "from_name": [[110, "from-name"], [160, "from-name"]], "from_table": [[110, "from-table"]], "fuzzy_max_distance": [[156, "fuzzy-max-distance"]], "fuzzy_max_distance_ratio": [[156, "fuzzy-max-distance-ratio"]], "fuzzy_max_expansions": [[156, "fuzzy-max-expansions"]], "fuzzy_prefix_length": [[156, "fuzzy-prefix-length"]], "fuzzy_search": [[187, null]], "fuzzy_with_tokenize": [[156, "fuzzy-with-tokenize"]], "fuzzy_with_transposition": [[156, "fuzzy-with-transposition"]], "generator": [[111, "generator"]], "geo_distance": [[188, null]], "geo_in_circle": [[189, null]], "geo_in_rectangle": [[190, null]], "greater(v1, v2, arg, callback)": [[11, "greater-v1-v2-arg-callback"]], "greater_equal(v1, v2, arg, callback)": [[11, "greater-equal-v1-v2-arg-callback"]], "grn_cache": [[61, null]], "grn_column": [[62, null]], "grn_command_version": [[63, null]], "grn_content_type": [[64, null]], "grn_ctx": [[65, null]], "grn_db": [[66, null]], "grn_encoding": [[67, null]], "grn_expr": [[11, "grn-expr"], [68, null], [223, null]], "grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea": [[11, "id3"]], "grn_geo": [[69, null]], "grn_hook": [[70, null]], "grn_ii": [[71, null]], "grn_index_cursor": [[72, null]], "grn_info": [[73, null]], "grn_inspect": [[74, null]], "grn_match_escalation": [[75, null]], "grn_obj": [[76, null]], "grn_pat_size(): Fixed a bug that 0 may not be returned on error": [[45, "grn-pat-size-fixed-a-bug-that-0-may-not-be-returned-on-error"]], "grn_proc": [[77, null]], "grn_search": [[78, null]], "grn_table": [[79, null]], "grn_table_cursor": [[80, null]], "grn_table_select()": [[11, "grn-table-select"]], "grn_thread_*": [[81, null]], "grn_type": [[82, null]], "grn_user_data": [[83, null]], "grndb": [[173, null]], "grnslap": [[174, null]], "groonga": [[177, "groonga"], [293, null]], "groonga executable file": [[175, null]], "groonga executable file: Added context_id log flag": [[45, "reference-executables-groonga-added-context-id-log-flag"]], "groonga executable file: Improved error handling": [[45, "reference-executables-groonga-improved-error-handling"]], "groonga-benchmark": [[176, null]], "groonga-benchmark\u547d\u4ee4": [[176, "id8"]], "groonga-benchmark\u5b9f\u884c\u7d50\u679c": [[176, "id12"]], "groonga-httpd": [[177, null], [294, null], [296, "groonga-httpd"]], "groonga-server-gqtp": [[296, "groonga-server-gqtp"]], "groonga-server-http": [[296, "groonga-server-http"]], "groonga-suggest-create-dataset": [[179, null]], "groonga-suggest-httpd": [[180, null]], "groonga-suggest-learner": [[181, null]], "groonga_base_path": [[177, "groonga-base-path"]], "groonga_cache_base_path": [[177, "groonga-cache-base-path"]], "groonga_cache_limit": [[177, "groonga-cache-limit"]], "groonga_database": [[177, "groonga-database"]], "groonga_database_auto_create": [[177, "groonga-database-auto-create"]], "groonga_log_level": [[177, "groonga-log-level"]], "groonga_log_path": [[177, "groonga-log-path"]], "groonga_query_log_path": [[177, "groonga-query-log-path"]], "highlight": [[191, null]], "highlight_full": [[192, null]], "highlight_html": [[193, null]], "html": [[194, "html"]], "html_untag": [[194, null]], "id": [[153, "id"]], "ifexists": [[125, "ifexists"]], "ignore_blank": [[275, "ignore-blank"]], "in_records": [[195, null]], "in_values": [[196, null]], "include_class": [[274, "include-class"]], "include_form": [[274, "include-form"]], "include_reading": [[274, "include-reading"]], "index": [[246, "index"], [247, "index"]], "index_column": [[165, "index-column"]], "index_column_diff": [[123, null]], "index_column_diff: Added support for changing log level for progress logs": [[45, "reference-commands-index-column-diff-added-support-for-changing-log-level-for-progress-logs"]], "input_type": [[125, "input-type"]], "io_flush": [[124, null]], "kern.maxfileperproc": [[281, "kern-maxfileperproc"]], "key": [[115, "key"], [116, "key"], [117, "key"]], "key_type": [[161, "key-type"]], "keywordN": [[191, "keywordn"], [192, "keywordn"]], "language_model_vectorize": [[197, null]], "language_model_vectorize: Added support for Phi-4": [[45, "reference-functions-language-model-vectorize-added-support-for-phi-4"]], "lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "lcov"]], "length": [[208, "length"], [209, "length"]], "less(v1, v2, arg, callback)": [[11, "less-v1-v2-arg-callback"]], "less_equal(v1, v2, arg, callback)": [[11, "less-equal-v1-v2-arg-callback"]], "level": [[129, "level"]], "libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "libmemcached"]], "limit": [[134, "limit"], [135, "limit"], [156, "limit"]], "limits drilldown results": [[306, "limits-drilldown-results"]], "load": [[125, null]], "load: Improved error handling": [[45, "reference-commands-load-improved-error-handling"]], "load_columns": [[135, "load-columns"], [156, "load-columns"]], "load_table": [[135, "load-table"], [156, "load-table"]], "load_values": [[135, "load-values"], [156, "load-values"]], "lock_acquire": [[126, null]], "lock_clear": [[127, null]], "lock_release": [[128, null]], "lock_table": [[125, "lock-table"]], "log_level": [[129, null]], "log_put": [[130, null]], "log_reopen": [[131, null]], "logical_count": [[132, null]], "logical_parameters": [[133, null]], "logical_range_filter": [[134, null]], "logical_select": [[135, null]], "logical_shard_list": [[136, null]], "logical_table": [[132, "logical-table"], [134, "logical-table"], [135, "logical-table"], [136, "logical-table"], [137, "logical-table"]], "logical_table_remove": [[137, null]], "loose_blank": [[275, "loose-blank"]], "loose_symbol": [[275, "loose-symbol"]], "macOS": [[27, "macos"], [30, null]], "make": [[31, "make"]], "make install": [[31, "make-install"]], "match_columns": [[135, "match-columns"], [156, "match-columns"], [202, "match-columns"], [203, "match-columns"]], "match_columns parameter": [[310, null]], "match_escalation": [[156, "match-escalation"]], "match_escalation_threshold": [[135, "match-escalation-threshold"], [156, "match-escalation-threshold"]], "math_abs": [[198, null]], "max": [[107, "max"], [132, "max"], [134, "max"], [135, "max"], [137, "max"], [167, "max"], [183, "max"]], "max_border": [[132, "max-border"], [134, "max-border"], [135, "max-border"], [137, "max-border"], [183, "max-border"]], "max_n_results": [[205, "max-n-results"]], "min": [[132, "min"], [134, "min"], [135, "min"], [137, "min"], [183, "min"]], "min_border": [[132, "min-border"], [134, "min-border"], [135, "min-border"], [137, "min-border"], [183, "min-border"]], "mode": [[157, "mode"], [165, "mode"], [168, "mode"], [219, "mode"]], "mode_name": [[195, "mode-name"]], "model_name": [[197, "model-name"]], "n": [[275, "n"]], "n_workers": [[156, "n-workers"]], "name": [[111, "name"], [114, "name"], [123, "name"], [140, "name"], [141, "name"], [143, "name"], [161, "name"], [163, "name"], [164, "name"], [208, "name"]], "near(v1, v2, arg, callback)": [[11, "near-v1-v2-arg-callback"]], "new_name": [[114, "new-name"], [164, "new-name"]], "nginx log related directives": [[177, "nginx-log-related-directives"]], "nofile": [[281, "nofile"]], "normalize": [[138, null]], "normalized": [[237, "normalized"]], "normalizer": [[138, "normalizer"], [161, "normalizer"], [168, "normalizer"]], "normalizer_list": [[139, null]], "normalizer_name": [[192, "normalizer-name"]], "not_equal(v1, v2, arg, callback)": [[11, "not-equal-v1-v2-arg-callback"]], "now": [[199, null]], "nth": [[208, "nth"], [208, "id4"], [209, "nth"]], "number_classify": [[200, null]], "object_exist": [[140, null]], "object_inspect": [[141, null]], "object_list": [[142, null]], "object_remove": [[143, null]], "offset": [[134, "offset"], [135, "offset"], [156, "offset"]], "only_opened": [[124, "only-opened"]], "open_tagN": [[191, "open-tagn"], [192, "open-tagn"]], "options": [[208, "options"], [208, "id5"], [209, "options"]], "order": [[134, "order"]], "output_columns": [[134, "output-columns"], [135, "output-columns"], [156, "output-columns"]], "output_errors": [[125, "output-errors"]], "output_ids": [[125, "output-ids"]], "path": [[111, "path"], [161, "path"]], "pattern": [[272, "pattern"]], "plugin_register": [[144, null]], "plugin_unregister": [[145, null]], "point1": [[188, "point1"]], "point2": [[188, "point2"]], "post_filter": [[132, "post-filter"], [134, "post-filter"], [135, "post-filter"]], "prefix(v1, v2, arg, callback)": [[11, "prefix-v1-v2-arg-callback"]], "prefix_rk_search": [[201, null]], "progress_log_level": [[123, "progress-log-level"]], "protocol": [[298, "id1"]], "proxy_cache": [[177, "proxy-cache"]], "query": [[135, "query"], [156, "query"], [201, "query"], [202, null]], "query_expand": [[146, null]], "query_expander": [[135, "query-expander"], [156, "query-expander"], [202, "query-expander"], [203, "query-expander"]], "query_expansion": [[156, "query-expansion"]], "query_flags": [[135, "query-flags"], [156, "query-flags"]], "query_parallel_or": [[203, null]], "query_string": [[202, "query-string"], [203, "query-string"]], "query_type": [[298, "query-type"]], "quit": [[147, null]], "rake release:version:update\u306e\u5b9f\u884c": [[12, "rake-release-version-update"]], "rand": [[204, null]], "range_filter": [[148, null]], "range_index": [[133, "range-index"]], "record_number": [[284, null]], "recover": [[173, "recover"]], "rectangle": [[188, "rectangle"]], "recursive": [[124, "recursive"], [149, "recursive"], [150, "recursive"]], "reference_acquire": [[149, null]], "reference_release": [[150, null]], "regexp": [[208, "regexp"]], "register": [[151, null]], "reindex": [[152, null]], "remove_blank": [[275, "remove-blank"]], "remove_symbol": [[231, "remove-symbol"], [234, "remove-symbol"], [235, "remove-symbol"]], "report_source_location": [[275, "report-source-location"]], "request_cancel": [[153, null]], "ruby_eval": [[154, null]], "schema": [[155, null]], "scope": [[210, "scope"]], "scorer": [[135, "scorer"], [156, "scorer"]], "scorer_tf_at_most": [[246, null]], "scorer_tf_idf": [[247, null]], "script": [[154, "script"]], "select": [[156, null]], "shard_key": [[132, "shard-key"], [134, "shard-key"], [135, "shard-key"], [137, "shard-key"]], "shutdown": [[157, null]], "similar(v1, v2, arg, callback)": [[11, "similar-v1-v2-arg-callback"]], "size": [[298, "size"]], "slices[${LABEL}].filter": [[156, "slices-label-filter"]], "slices[${LABEL}].limit": [[156, "slices-label-limit"]], "slices[${LABEL}].match_columns": [[156, "slices-label-match-columns"]], "slices[${LABEL}].offset": [[156, "slices-label-offset"]], "slices[${LABEL}].output_columns": [[156, "slices-label-output-columns"]], "slices[${LABEL}].query": [[156, "slices-label-query"]], "slices[${LABEL}].query_expander": [[156, "slices-label-query-expander"]], "slices[${LABEL}].query_flags": [[156, "slices-label-query-flags"]], "slices[${LABEL}].sort_keys": [[156, "slices-label-sort-keys"]], "snippet": [[205, null]], "snippet_html": [[206, null]], "sort_hash_table": [[122, "sort-hash-table"]], "sort_keys": [[134, "sort-keys"], [135, "sort-keys"], [156, "sort-keys"]], "sortby": [[135, "sortby"], [156, "sortby"]], "source": [[111, "source"]], "sphere": [[188, "sphere"]], "status": [[158, null], [298, "status"]], "string": [[138, "string"], [165, "string"], [168, "string"]], "string_length": [[207, null]], "string_slice": [[208, null]], "string_substring": [[209, null]], "sub_filter": [[210, null]], "suffix(v1, v2, arg, callback)": [[11, "suffix-v1-v2-arg-callback"]], "suggest": [[159, null]], "table": [[111, "table"], [112, "table"], [114, "table"], [123, "table"], [125, "table"], [156, "table"], [165, "table"]], "table_copy": [[160, null]], "table_create": [[161, null]], "table_list": [[162, null]], "table_remove": [[163, null]], "table_rename": [[164, null]], "table_tokenize": [[165, null]], "tables": [[122, "tables"]], "target": [[198, "target"], [208, "target"], [208, "id3"], [209, "target"], [221, "target"], [237, "target"]], "target_class": [[274, "target-class"]], "target_name": [[124, "target-name"], [126, "target-name"], [127, "target-name"], [128, "target-name"], [149, "target-name"], [150, "target-name"], [152, "target-name"], [170, "target-name"]], "target_value": [[196, "target-value"]], "text": [[193, "text"], [197, "text"]], "thread_dump": [[166, null]], "thread_limit": [[167, null]], "time_classify_day": [[211, null]], "time_classify_day_of_week": [[212, null]], "time_classify_hour": [[213, null]], "time_classify_minute": [[214, null]], "time_classify_month": [[215, null]], "time_classify_second": [[216, null]], "time_classify_week": [[217, null]], "time_classify_year": [[218, null]], "to_name": [[110, "to-name"], [160, "to-name"]], "to_table": [[110, "to-table"]], "token_filters": [[161, "token-filters"], [168, "token-filters"]], "tokenize": [[168, null]], "tokenizer": [[168, "tokenizer"]], "tokenizer_list": [[169, null]], "truncate": [[170, null]], "type": [[111, "type"]], "unicode_version": [[237, "normalizer-table-unicode-version"]], "unify_alphabet": [[275, "unify-alphabet"]], "unify_digit": [[275, "unify-digit"]], "unify_hyphen": [[231, "unify-hyphen"], [232, "unify-hyphen"], [233, "unify-hyphen"], [234, "unify-hyphen"], [235, "unify-hyphen"], [258, "unify-hyphen"], [259, "unify-hyphen"]], "unify_hyphen_and_prolonged_sound_mark": [[231, "unify-hyphen-and-prolonged-sound-mark"], [232, "unify-hyphen-and-prolonged-sound-mark"], [233, "unify-hyphen-and-prolonged-sound-mark"], [234, "unify-hyphen-and-prolonged-sound-mark"], [235, "unify-hyphen-and-prolonged-sound-mark"], [258, "unify-hyphen-and-prolonged-sound-mark"], [259, "unify-hyphen-and-prolonged-sound-mark"]], "unify_kana": [[231, "unify-kana"], [232, "unify-kana"], [233, "unify-kana"], [234, "unify-kana"], [235, "unify-kana"], [258, "unify-kana"], [259, "unify-kana"]], "unify_kana_case": [[231, "unify-kana-case"], [232, "unify-kana-case"], [233, "unify-kana-case"], [234, "unify-kana-case"], [235, "unify-kana-case"], [258, "unify-kana-case"], [259, "unify-kana-case"]], "unify_kana_hyphen": [[231, "unify-kana-hyphen"], [232, "unify-kana-hyphen"], [233, "unify-kana-hyphen"], [234, "unify-kana-hyphen"], [235, "unify-kana-hyphen"]], "unify_kana_prolonged_sound_mark": [[231, "unify-kana-prolonged-sound-mark"], [232, "unify-kana-prolonged-sound-mark"], [233, "unify-kana-prolonged-sound-mark"], [234, "unify-kana-prolonged-sound-mark"], [235, "unify-kana-prolonged-sound-mark"]], "unify_kana_voiced_sound_mark": [[231, "unify-kana-voiced-sound-mark"], [232, "unify-kana-voiced-sound-mark"], [233, "unify-kana-voiced-sound-mark"], [234, "unify-kana-voiced-sound-mark"], [235, "unify-kana-voiced-sound-mark"], [258, "unify-kana-voiced-sound-mark"], [259, "unify-kana-voiced-sound-mark"]], "unify_katakana_bu_sound": [[231, "unify-katakana-bu-sound"], [232, "unify-katakana-bu-sound"], [233, "unify-katakana-bu-sound"], [234, "unify-katakana-bu-sound"], [235, "unify-katakana-bu-sound"], [258, "unify-katakana-bu-sound"], [259, "unify-katakana-bu-sound"]], "unify_katakana_di_sound": [[231, "unify-katakana-di-sound"], [232, "unify-katakana-di-sound"], [233, "unify-katakana-di-sound"], [234, "unify-katakana-di-sound"], [235, "unify-katakana-di-sound"]], "unify_katakana_du_small_sounds": [[231, "unify-katakana-du-small-sounds"], [232, "unify-katakana-du-small-sounds"], [233, "unify-katakana-du-small-sounds"], [234, "unify-katakana-du-small-sounds"], [235, "unify-katakana-du-small-sounds"]], "unify_katakana_du_sound": [[231, "unify-katakana-du-sound"], [232, "unify-katakana-du-sound"], [233, "unify-katakana-du-sound"], [234, "unify-katakana-du-sound"], [235, "unify-katakana-du-sound"]], "unify_katakana_gu_small_sounds": [[231, "unify-katakana-gu-small-sounds"], [232, "unify-katakana-gu-small-sounds"], [233, "unify-katakana-gu-small-sounds"], [234, "unify-katakana-gu-small-sounds"], [235, "unify-katakana-gu-small-sounds"]], "unify_katakana_trailing_o": [[231, "unify-katakana-trailing-o"], [232, "unify-katakana-trailing-o"], [233, "unify-katakana-trailing-o"], [234, "unify-katakana-trailing-o"], [235, "unify-katakana-trailing-o"]], "unify_katakana_v_sounds": [[231, "unify-katakana-v-sounds"], [232, "unify-katakana-v-sounds"], [233, "unify-katakana-v-sounds"], [234, "unify-katakana-v-sounds"], [235, "unify-katakana-v-sounds"], [258, "unify-katakana-v-sounds"], [259, "unify-katakana-v-sounds"]], "unify_katakana_wo_sound": [[231, "unify-katakana-wo-sound"], [232, "unify-katakana-wo-sound"], [233, "unify-katakana-wo-sound"], [234, "unify-katakana-wo-sound"], [235, "unify-katakana-wo-sound"]], "unify_katakana_zu_small_sounds": [[231, "unify-katakana-zu-small-sounds"], [232, "unify-katakana-zu-small-sounds"], [233, "unify-katakana-zu-small-sounds"], [234, "unify-katakana-zu-small-sounds"], [235, "unify-katakana-zu-small-sounds"]], "unify_latin_alphabet_with": [[231, "unify-latin-alphabet-with"], [235, "unify-latin-alphabet-with"]], "unify_middle_dot": [[231, "unify-middle-dot"], [232, "unify-middle-dot"], [233, "unify-middle-dot"], [234, "unify-middle-dot"], [235, "unify-middle-dot"], [258, "unify-middle-dot"], [259, "unify-middle-dot"]], "unify_prolonged_sound_mark": [[231, "unify-prolonged-sound-mark"], [232, "unify-prolonged-sound-mark"], [233, "unify-prolonged-sound-mark"], [234, "unify-prolonged-sound-mark"], [235, "unify-prolonged-sound-mark"], [258, "unify-prolonged-sound-mark"], [259, "unify-prolonged-sound-mark"]], "unify_symbol": [[275, "unify-symbol"]], "unify_to_katakana": [[231, "unify-to-katakana"], [235, "unify-to-katakana"]], "unify_to_romaji": [[231, "unify-to-romaji"], [232, "unify-to-romaji"], [233, "unify-to-romaji"], [234, "unify-to-romaji"], [235, "unify-to-romaji"], [258, "unify-to-romaji"], [259, "unify-to-romaji"]], "use_html_escape": [[192, "use-html-escape"]], "use_range_index": [[134, "use-range-index"]], "use_reading": [[274, "use-reading"]], "value": [[117, "value"], [195, "value"], [196, "value"], [219, "value"]], "value_type": [[161, "value-type"]], "values": [[125, "values"]], "vector": [[219, "vector"]], "vector_find": [[219, null]], "vector_new": [[220, null]], "vector_size": [[221, null]], "vector_slice": [[222, null]], "version": [[231, "version"]], "vm.max_map_count": [[281, "vm-max-map-count"]], "vm.overcommit_memory": [[281, "vm-overcommit-memory"]], "width": [[205, "width"]], "window_count": [[285, null]], "window_rank": [[286, null]], "window_record_number": [[287, null]], "window_sum": [[288, null]], "worker_processes": [[177, "worker-processes"]], "zip": [[33, "zip"]], "{\"default_close_tag\": \"close_tag\"}": [[191, "default-close-tag-close-tag"]], "{\"default_open_tag\": \"open_tag\"}": [[191, "default-open-tag-open-tag"]], "{\"html_escape\": true} or {\"html_mode\": true}": [[191, "html-escape-true-or-html-mode-true"]], "{\"normalizer\": \"Normalizerxxx\"}": [[191, "normalizer-normalizerxxx"]], "{\"normalizers\": \"Normalizerxxx\"}": [[191, "normalizers-normalizerxxx"]], "{\"option\": \"value of option\"}": [[183, "option-value-of-option"], [196, "option-value-of-option"]], "{\"sequential_class_tag_mode\": true}": [[191, "sequential-class-tag-mode-true"], [193, "sequential-class-tag-mode-true"]], "\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b": [[10, "id5"]], "\u30aa\u30d7\u30b7\u30e7\u30f3": [[174, "id4"], [176, "id4"]], "\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831": [[14, "id6"]], "\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b": [[11, "id5"]], "\u30af\u30a8\u30ea\u306e\u5b9f\u73fe": [[11, null]], "\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": [[11, "id2"]], "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5": [[93, "id3"]], "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb": [[176, "id9"]], "\u30b5\u30f3\u30d7\u30eb": [[174, "id6"], [176, "id10"]], "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb": [[176, "id7"]], "\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c": [[14, "id5"]], "\u30c6\u30b9\u30c8\u65b9\u6cd5": [[14, null]], "\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9": [[14, "id2"]], "\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c": [[14, "id11"]], "\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0": [[176, "id14"]], "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "id17"]], "\u30d0\u30fc\u30b8\u30e7\u30f30\u7cfb\u306e\u304a\u77e5\u3089\u305b": [[36, null]], "\u30d0\u30fc\u30b8\u30e7\u30f31.0\u7cfb\u306e\u304a\u77e5\u3089\u305b": [[37, null]], "\u30d0\u30fc\u30b8\u30e7\u30f31.1\u7cfb\u306e\u304a\u77e5\u3089\u305b": [[38, null]], "\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051": [[93, "id2"]], "\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "id13"]], "\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044": [[12, "id22"]], "\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8": [[12, "id5"]], "\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099": [[12, "id4"]], "\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b": [[282, "id3"]], "\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd": [[10, null]], "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9": [[12, "id19"]], "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210": [[12, "id16"]], "\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a": [[12, "id11"]], "\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210": [[12, "id6"]], "\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068": [[12, "id20"]], "\u30ea\u30ea\u30fc\u30b9\u624b\u9806": [[12, null]], "\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "id12"]], "\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa": [[14, "id10"]], "\u4f7f\u3044\u65b9": [[176, "id6"]], "\u4f8b": [[185, "id6"], [189, "id7"], [190, "id7"], [199, "id5"], [204, "id6"], [301, "id2"]], "\u4fee\u6b63": [[36, "id4"], [36, "id7"], [37, "id3"], [37, "id7"], [37, "id10"], [37, "id15"], [37, "id20"], [37, "id25"], [37, "id30"], [37, "id34"], [37, "id38"], [38, "id4"], [39, "id22"], [39, "id26"]], "\u5236\u9650\u4e8b\u9805": [[176, "id13"]], "\u524d\u63d0\u6761\u4ef6": [[12, "id2"]], "\u539f\u56e0": [[301, "id3"]], "\u5404\u7a2e\u30c6\u30b9\u30c8\u306e\u78ba\u8a8d": [[12, "id10"]], "\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b": [[301, null]], "\u540d\u524d": [[89, "id1"], [174, "id1"], [176, "id1"], [185, "id1"], [189, "id1"], [190, "id1"], [199, "id1"], [204, "id1"]], "\u5909\u66f4": [[37, "id14"], [37, "id19"], [37, "id24"], [37, "id29"]], "\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081": [[12, "id9"]], "\u5b8c\u5168\u4e00\u81f4\u691c\u7d22": [[299, "id3"]], "\u5b9f\u9a13\u7684": [[39, "id27"]], "\u5bfe\u5fdc": [[10, "id4"], [10, "id7"], [10, "id9"]], "\u5bfe\u7b56\u65b9\u6cd51: \u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b": [[301, "id4"]], "\u5bfe\u7b56\u65b9\u6cd52: \u95be\u5024\u3092\u3042\u3052\u308b": [[301, "id5"]], "\u5f15\u6570": [[174, "id5"], [176, "id5"], [185, "id4"], [189, "id4"], [190, "id4"], [204, "id4"]], "\u611f\u8b1d": [[36, "id8"], [37, "id4"], [37, "id8"], [37, "id11"], [37, "id16"], [37, "id21"], [37, "id26"], [37, "id31"], [37, "id35"], [37, "id39"], [38, "id5"], [39, "id23"], [39, "id28"]], "\u6539\u826f": [[36, "id3"], [36, "id6"], [37, "id6"], [37, "id13"], [37, "id18"], [37, "id23"], [37, "id28"], [37, "id33"], [37, "id37"], [38, "id3"], [39, "id21"], [39, "id25"]], "\u66f8\u5f0f": [[174, "id2"], [176, "id2"], [185, "id2"], [189, "id2"], [190, "id2"], [199, "id2"], [204, "id2"]], "\u6700\u521d\u306e1\u56de\u3060\u3051\u884c\u3046\u624b\u9806": [[12, "id3"]], "\u691c\u7d22": [[299, null]], "\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051": [[299, "id6"]], "\u691c\u7d22\u306e\u6319\u52d5": [[299, "id2"]], "\u691c\u7d22\u4f8b1": [[11, "id6"]], "\u691c\u7d22\u4f8b2": [[11, "id7"]], "\u691c\u7d22\u4f8b3": [[11, "id8"]], "\u691c\u7d22\u4f8b4": [[11, "id9"]], "\u6982\u8981": [[93, "id1"]], "\u69d8\u3005\u306a\u30c6\u30b9\u30c8": [[14, "id7"]], "\u6bce\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u3067\u884c\u3046\u624b\u9806": [[12, "id7"]], "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b": [[14, "id9"]], "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b": [[14, "id8"]], "\u7279\u6b8a\u547d\u4ee4": [[176, "id11"]], "\u7406\u7531": [[10, "id3"], [10, "id6"], [10, "id8"]], "\u8aac\u660e": [[89, "id2"], [174, "id3"], [176, "id3"], [185, "id3"], [189, "id3"], [190, "id3"], [199, "id3"], [204, "id3"]], "\u8fd4\u5024": [[185, "id5"], [189, "id6"], [190, "id6"], [199, "id4"], [204, "id5"]], "\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f": [[10, "id2"]], "\u90e8\u5206\u4e00\u81f4\u691c\u7d22": [[299, "id5"]], "\u95a2\u4fc2\u5f0f": [[11, "id4"]], "\u9759\u7684\u89e3\u6790": [[14, "id12"]], "\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22": [[299, "id4"]]}, "docnames": ["characteristic", "client", "community", "contribution", "contribution/development", "contribution/development/build", "contribution/development/build/unix_autotools", "contribution/development/build/unix_cmake", "contribution/development/build/windows_cmake", "contribution/development/com", "contribution/development/cooperation", "contribution/development/query", "contribution/development/release", "contribution/development/repository", "contribution/development/test", "contribution/documentation", "contribution/documentation/c-api", "contribution/documentation/i18n", "contribution/documentation/introduction", "contribution/report", "development", "development/travis-ci", "index", "install", "install/almalinux", "install/amazon_linux", "install/centos", "install/cmake", "install/debian", "install/docker", "install/mac_os_x", "install/others", "install/ubuntu", "install/windows", "limitations", "news", "news/0", "news/1.0", "news/1.1", "news/1.2", "news/1.3", "news/10", "news/11", "news/12", "news/13", "news/14", "news/15", "news/2", "news/3", "news/4", "news/5", "news/6", "news/7", "news/8", "news/9", "news/senna", "origin", "reference", "reference/alias", "reference/api", "reference/api/global_configurations", "reference/api/grn_cache", "reference/api/grn_column", "reference/api/grn_command_version", "reference/api/grn_content_type", "reference/api/grn_ctx", "reference/api/grn_db", "reference/api/grn_encoding", "reference/api/grn_expr", "reference/api/grn_geo", "reference/api/grn_hook", "reference/api/grn_ii", "reference/api/grn_index_cursor", "reference/api/grn_info", "reference/api/grn_inspect", "reference/api/grn_match_escalation", "reference/api/grn_obj", "reference/api/grn_proc", "reference/api/grn_search", "reference/api/grn_table", "reference/api/grn_table_cursor", "reference/api/grn_thread", "reference/api/grn_type", "reference/api/grn_user_data", "reference/api/overview", "reference/api/plugin", "reference/cast", "reference/column", "reference/columns/index", "reference/columns/pseudo", "reference/columns/scalar", "reference/columns/vector", "reference/command", "reference/command/command_version", "reference/command/n_workers", "reference/command/output_format", "reference/command/output_trace_log", "reference/command/pretty_print", "reference/command/request_id", "reference/command/request_timeout", "reference/command/return_code", "reference/command/return_codes/grn_input_output_error", "reference/command/return_codes/grn_invalid_argument", "reference/command/return_codes/grn_no_such_file_or_directory", "reference/command/return_codes/grn_not_enough_space", "reference/command/return_codes/grn_operation_not_permitted", "reference/command/return_codes/grn_resource_deadlock_avoided", "reference/commands/cache_limit", "reference/commands/check", "reference/commands/clearlock", "reference/commands/column_copy", "reference/commands/column_create", "reference/commands/column_list", "reference/commands/column_remove", "reference/commands/column_rename", "reference/commands/config_delete", "reference/commands/config_get", "reference/commands/config_set", "reference/commands/database_unmap", "reference/commands/define_selector", "reference/commands/defrag", "reference/commands/delete", "reference/commands/dump", "reference/commands/index_column_diff", "reference/commands/io_flush", "reference/commands/load", "reference/commands/lock_acquire", "reference/commands/lock_clear", "reference/commands/lock_release", "reference/commands/log_level", "reference/commands/log_put", "reference/commands/log_reopen", "reference/commands/logical_count", "reference/commands/logical_parameters", "reference/commands/logical_range_filter", "reference/commands/logical_select", "reference/commands/logical_shard_list", "reference/commands/logical_table_remove", "reference/commands/normalize", "reference/commands/normalizer_list", "reference/commands/object_exist", "reference/commands/object_inspect", "reference/commands/object_list", "reference/commands/object_remove", "reference/commands/plugin_register", "reference/commands/plugin_unregister", "reference/commands/query_expand", "reference/commands/quit", "reference/commands/range_filter", "reference/commands/reference_acquire", "reference/commands/reference_release", "reference/commands/register", "reference/commands/reindex", "reference/commands/request_cancel", "reference/commands/ruby_eval", "reference/commands/schema", "reference/commands/select", "reference/commands/shutdown", "reference/commands/status", "reference/commands/suggest", "reference/commands/table_copy", "reference/commands/table_create", "reference/commands/table_list", "reference/commands/table_remove", "reference/commands/table_rename", "reference/commands/table_tokenize", "reference/commands/thread_dump", "reference/commands/thread_limit", "reference/commands/tokenize", "reference/commands/tokenizer_list", "reference/commands/truncate", "reference/configuration", "reference/executables", "reference/executables/grndb", "reference/executables/grnslap", "reference/executables/groonga", "reference/executables/groonga-benchmark", "reference/executables/groonga-httpd", "reference/executables/groonga-server-http", "reference/executables/groonga-suggest-create-dataset", "reference/executables/groonga-suggest-httpd", "reference/executables/groonga-suggest-learner", "reference/function", "reference/functions/between", "reference/functions/cast_loose", "reference/functions/edit_distance", "reference/functions/escalate", "reference/functions/fuzzy_search", "reference/functions/geo_distance", "reference/functions/geo_in_circle", "reference/functions/geo_in_rectangle", "reference/functions/highlight", "reference/functions/highlight_full", "reference/functions/highlight_html", "reference/functions/html_untag", "reference/functions/in_records", "reference/functions/in_values", "reference/functions/language_model_vectorize", "reference/functions/math_abs", "reference/functions/now", "reference/functions/number_classify", "reference/functions/prefix_rk_search", "reference/functions/query", "reference/functions/query_parallel_or", "reference/functions/rand", "reference/functions/snippet", "reference/functions/snippet_html", "reference/functions/string_length", "reference/functions/string_slice", "reference/functions/string_substring", "reference/functions/sub_filter", "reference/functions/time_classify_day", "reference/functions/time_classify_day_of_week", "reference/functions/time_classify_hour", "reference/functions/time_classify_minute", "reference/functions/time_classify_month", "reference/functions/time_classify_second", "reference/functions/time_classify_week", "reference/functions/time_classify_year", "reference/functions/vector_find", "reference/functions/vector_new", "reference/functions/vector_size", "reference/functions/vector_slice", "reference/grn_expr", "reference/grn_expr/query_syntax", "reference/grn_expr/script_syntax", "reference/indexing", "reference/language_model", "reference/log", "reference/normalizers", "reference/normalizers/normalizer_auto", "reference/normalizers/normalizer_nfkc", "reference/normalizers/normalizer_nfkc100", "reference/normalizers/normalizer_nfkc121", "reference/normalizers/normalizer_nfkc130", "reference/normalizers/normalizer_nfkc150", "reference/normalizers/normalizer_nfkc51", "reference/normalizers/normalizer_table", "reference/operations", "reference/operations/geolocation_search", "reference/operations/prefix_rk_search", "reference/output", "reference/query_expanders", "reference/query_expanders/tsv", "reference/regular_expression", "reference/scorer", "reference/scorers/scorer_tf_at_most", "reference/scorers/scorer_tf_idf", "reference/sharding", "reference/suggest", "reference/suggest/completion", "reference/suggest/correction", "reference/suggest/introduction", "reference/suggest/suggestion", "reference/tables", "reference/token_filter/summary", "reference/token_filters", "reference/token_filters/token_filter_nfkc", "reference/token_filters/token_filter_nfkc100", "reference/token_filters/token_filter_nfkc150", "reference/token_filters/token_filter_stem", "reference/token_filters/token_filter_stop_word", "reference/tokenizer/summary", "reference/tokenizers", "reference/tokenizers/token_bigram", "reference/tokenizers/token_bigram_ignore_blank", "reference/tokenizers/token_bigram_ignore_blank_split_symbol", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit", "reference/tokenizers/token_bigram_split_symbol", "reference/tokenizers/token_bigram_split_symbol_alpha", "reference/tokenizers/token_bigram_split_symbol_alpha_digit", "reference/tokenizers/token_delimit", "reference/tokenizers/token_delimit_null", "reference/tokenizers/token_mecab", "reference/tokenizers/token_ngram", "reference/tokenizers/token_pattern", "reference/tokenizers/token_regexp", "reference/tokenizers/token_table", "reference/tokenizers/token_trigram", "reference/tokenizers/token_unigram", "reference/tuning", "reference/types", "reference/window_function", "reference/window_functions/record_number", "reference/window_functions/window_count", "reference/window_functions/window_rank", "reference/window_functions/window_record_number", "reference/window_functions/window_sum", "server", "server/gqtp", "server/http", "server/http/comparison", "server/http/groonga", "server/http/groonga-httpd", "server/memcached", "server/package", "spec", "spec/gqtp", "spec/search", "troubleshooting", "troubleshooting/different_results_with_the_same_keyword", "troubleshooting/how_to_analyze_error_message", "troubleshooting/mmap_cannot_allocate_memory", "tutorial", "tutorial/data", "tutorial/drilldown", "tutorial/index", "tutorial/introduction", "tutorial/lexicon", "tutorial/match_columns", "tutorial/micro_blog", "tutorial/network", "tutorial/patricia_trie", "tutorial/query_expansion", "tutorial/search"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["characteristic.rst", "client.rst", "community.rst", "contribution.rst", "contribution/development.rst", "contribution/development/build.rst", "contribution/development/build/unix_autotools.rst", "contribution/development/build/unix_cmake.rst", "contribution/development/build/windows_cmake.rst", "contribution/development/com.rst", "contribution/development/cooperation.rst", "contribution/development/query.rst", "contribution/development/release.rst", "contribution/development/repository.rst", "contribution/development/test.rst", "contribution/documentation.rst", "contribution/documentation/c-api.rst", "contribution/documentation/i18n.rst", "contribution/documentation/introduction.md", "contribution/report.rst", "development.rst", "development/travis-ci.rst", "index.rst", "install.rst", "install/almalinux.rst", "install/amazon_linux.rst", "install/centos.rst", "install/cmake.md", "install/debian.rst", "install/docker.rst", "install/mac_os_x.rst", "install/others.rst", "install/ubuntu.md", "install/windows.rst", "limitations.rst", "news.rst", "news/0.rst", "news/1.0.rst", "news/1.1.rst", "news/1.2.rst", "news/1.3.rst", "news/10.rst", "news/11.rst", "news/12.rst", "news/13.md", "news/14.md", "news/15.md", "news/2.rst", "news/3.rst", "news/4.rst", "news/5.rst", "news/6.rst", "news/7.rst", "news/8.rst", "news/9.rst", "news/senna.rst", "origin.md", "reference.rst", "reference/alias.rst", "reference/api.rst", "reference/api/global_configurations.rst", "reference/api/grn_cache.rst", "reference/api/grn_column.rst", "reference/api/grn_command_version.rst", "reference/api/grn_content_type.rst", "reference/api/grn_ctx.rst", "reference/api/grn_db.rst", "reference/api/grn_encoding.rst", "reference/api/grn_expr.rst", "reference/api/grn_geo.rst", "reference/api/grn_hook.rst", "reference/api/grn_ii.rst", "reference/api/grn_index_cursor.rst", "reference/api/grn_info.rst", "reference/api/grn_inspect.rst", "reference/api/grn_match_escalation.rst", "reference/api/grn_obj.rst", "reference/api/grn_proc.rst", "reference/api/grn_search.rst", "reference/api/grn_table.rst", "reference/api/grn_table_cursor.rst", "reference/api/grn_thread.rst", "reference/api/grn_type.rst", "reference/api/grn_user_data.rst", "reference/api/overview.rst", "reference/api/plugin.rst", "reference/cast.rst", "reference/column.rst", "reference/columns/index.rst", "reference/columns/pseudo.rst", "reference/columns/scalar.rst", "reference/columns/vector.rst", "reference/command.rst", "reference/command/command_version.rst", "reference/command/n_workers.md", "reference/command/output_format.rst", "reference/command/output_trace_log.md", "reference/command/pretty_print.rst", "reference/command/request_id.rst", "reference/command/request_timeout.rst", "reference/command/return_code.rst", "reference/command/return_codes/grn_input_output_error.rst", "reference/command/return_codes/grn_invalid_argument.rst", "reference/command/return_codes/grn_no_such_file_or_directory.rst", "reference/command/return_codes/grn_not_enough_space.rst", "reference/command/return_codes/grn_operation_not_permitted.rst", "reference/command/return_codes/grn_resource_deadlock_avoided.rst", "reference/commands/cache_limit.rst", "reference/commands/check.rst", "reference/commands/clearlock.rst", "reference/commands/column_copy.rst", "reference/commands/column_create.rst", "reference/commands/column_list.rst", "reference/commands/column_remove.rst", "reference/commands/column_rename.rst", "reference/commands/config_delete.rst", "reference/commands/config_get.rst", "reference/commands/config_set.rst", "reference/commands/database_unmap.rst", "reference/commands/define_selector.rst", "reference/commands/defrag.rst", "reference/commands/delete.rst", "reference/commands/dump.rst", "reference/commands/index_column_diff.rst", "reference/commands/io_flush.rst", "reference/commands/load.rst", "reference/commands/lock_acquire.rst", "reference/commands/lock_clear.rst", "reference/commands/lock_release.rst", "reference/commands/log_level.rst", "reference/commands/log_put.rst", "reference/commands/log_reopen.rst", "reference/commands/logical_count.rst", "reference/commands/logical_parameters.rst", "reference/commands/logical_range_filter.rst", "reference/commands/logical_select.rst", "reference/commands/logical_shard_list.rst", "reference/commands/logical_table_remove.rst", "reference/commands/normalize.rst", "reference/commands/normalizer_list.rst", "reference/commands/object_exist.rst", "reference/commands/object_inspect.rst", "reference/commands/object_list.rst", "reference/commands/object_remove.rst", "reference/commands/plugin_register.rst", "reference/commands/plugin_unregister.rst", "reference/commands/query_expand.rst", "reference/commands/quit.rst", "reference/commands/range_filter.rst", "reference/commands/reference_acquire.rst", "reference/commands/reference_release.rst", "reference/commands/register.rst", "reference/commands/reindex.rst", "reference/commands/request_cancel.rst", "reference/commands/ruby_eval.rst", "reference/commands/schema.rst", "reference/commands/select.rst", "reference/commands/shutdown.rst", "reference/commands/status.rst", "reference/commands/suggest.rst", "reference/commands/table_copy.rst", "reference/commands/table_create.rst", "reference/commands/table_list.rst", "reference/commands/table_remove.rst", "reference/commands/table_rename.rst", "reference/commands/table_tokenize.rst", "reference/commands/thread_dump.rst", "reference/commands/thread_limit.rst", "reference/commands/tokenize.rst", "reference/commands/tokenizer_list.rst", "reference/commands/truncate.rst", "reference/configuration.rst", "reference/executables.rst", "reference/executables/grndb.rst", "reference/executables/grnslap.rst", "reference/executables/groonga.rst", "reference/executables/groonga-benchmark.rst", "reference/executables/groonga-httpd.rst", "reference/executables/groonga-server-http.rst", "reference/executables/groonga-suggest-create-dataset.rst", "reference/executables/groonga-suggest-httpd.rst", "reference/executables/groonga-suggest-learner.rst", "reference/function.rst", "reference/functions/between.rst", "reference/functions/cast_loose.rst", "reference/functions/edit_distance.rst", "reference/functions/escalate.rst", "reference/functions/fuzzy_search.rst", "reference/functions/geo_distance.rst", "reference/functions/geo_in_circle.rst", "reference/functions/geo_in_rectangle.rst", "reference/functions/highlight.rst", "reference/functions/highlight_full.rst", "reference/functions/highlight_html.rst", "reference/functions/html_untag.rst", "reference/functions/in_records.rst", "reference/functions/in_values.rst", "reference/functions/language_model_vectorize.md", "reference/functions/math_abs.rst", "reference/functions/now.rst", "reference/functions/number_classify.rst", "reference/functions/prefix_rk_search.rst", "reference/functions/query.rst", "reference/functions/query_parallel_or.rst", "reference/functions/rand.rst", "reference/functions/snippet.rst", "reference/functions/snippet_html.rst", "reference/functions/string_length.rst", "reference/functions/string_slice.rst", "reference/functions/string_substring.rst", "reference/functions/sub_filter.rst", "reference/functions/time_classify_day.rst", "reference/functions/time_classify_day_of_week.rst", "reference/functions/time_classify_hour.rst", "reference/functions/time_classify_minute.rst", "reference/functions/time_classify_month.rst", "reference/functions/time_classify_second.rst", "reference/functions/time_classify_week.rst", "reference/functions/time_classify_year.rst", "reference/functions/vector_find.rst", "reference/functions/vector_new.rst", "reference/functions/vector_size.rst", "reference/functions/vector_slice.rst", "reference/grn_expr.rst", "reference/grn_expr/query_syntax.rst", "reference/grn_expr/script_syntax.rst", "reference/indexing.rst", "reference/language_model.md", "reference/log.rst", "reference/normalizers.rst", "reference/normalizers/normalizer_auto.rst", "reference/normalizers/normalizer_nfkc.md", "reference/normalizers/normalizer_nfkc100.rst", "reference/normalizers/normalizer_nfkc121.rst", "reference/normalizers/normalizer_nfkc130.rst", "reference/normalizers/normalizer_nfkc150.rst", "reference/normalizers/normalizer_nfkc51.rst", "reference/normalizers/normalizer_table.rst", "reference/operations.rst", "reference/operations/geolocation_search.rst", "reference/operations/prefix_rk_search.rst", "reference/output.rst", "reference/query_expanders.rst", "reference/query_expanders/tsv.rst", "reference/regular_expression.rst", "reference/scorer.rst", "reference/scorers/scorer_tf_at_most.rst", "reference/scorers/scorer_tf_idf.rst", "reference/sharding.rst", "reference/suggest.rst", "reference/suggest/completion.rst", "reference/suggest/correction.rst", "reference/suggest/introduction.rst", "reference/suggest/suggestion.rst", "reference/tables.rst", "reference/token_filter/summary.rst", "reference/token_filters.rst", "reference/token_filters/token_filter_nfkc.md", "reference/token_filters/token_filter_nfkc100.rst", "reference/token_filters/token_filter_nfkc150.rst", "reference/token_filters/token_filter_stem.rst", "reference/token_filters/token_filter_stop_word.rst", "reference/tokenizer/summary.rst", "reference/tokenizers.rst", "reference/tokenizers/token_bigram.rst", "reference/tokenizers/token_bigram_ignore_blank.rst", "reference/tokenizers/token_bigram_ignore_blank_split_symbol.rst", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.rst", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.rst", "reference/tokenizers/token_bigram_split_symbol.rst", "reference/tokenizers/token_bigram_split_symbol_alpha.rst", "reference/tokenizers/token_bigram_split_symbol_alpha_digit.rst", "reference/tokenizers/token_delimit.rst", "reference/tokenizers/token_delimit_null.rst", "reference/tokenizers/token_mecab.rst", "reference/tokenizers/token_ngram.rst", "reference/tokenizers/token_pattern.rst", "reference/tokenizers/token_regexp.rst", "reference/tokenizers/token_table.rst", "reference/tokenizers/token_trigram.rst", "reference/tokenizers/token_unigram.rst", "reference/tuning.rst", "reference/types.rst", "reference/window_function.rst", "reference/window_functions/record_number.rst", "reference/window_functions/window_count.rst", "reference/window_functions/window_rank.rst", "reference/window_functions/window_record_number.rst", "reference/window_functions/window_sum.rst", "server.rst", "server/gqtp.rst", "server/http.rst", "server/http/comparison.rst", "server/http/groonga.rst", "server/http/groonga-httpd.rst", "server/memcached.rst", "server/package.rst", "spec.rst", "spec/gqtp.rst", "spec/search.rst", "troubleshooting.rst", "troubleshooting/different_results_with_the_same_keyword.rst", "troubleshooting/how_to_analyze_error_message.rst", "troubleshooting/mmap_cannot_allocate_memory.rst", "tutorial.rst", "tutorial/data.rst", "tutorial/drilldown.rst", "tutorial/index.rst", "tutorial/introduction.rst", "tutorial/lexicon.rst", "tutorial/match_columns.rst", "tutorial/micro_blog.rst", "tutorial/network.rst", "tutorial/patricia_trie.rst", "tutorial/query_expansion.rst", "tutorial/search.rst"], "indexentries": {"--address": [[175, "cmdoption-groonga-a", false]], "--bind-address": [[175, "cmdoption-groonga-bind-address", false]], "--cache-base-path": [[175, "cmdoption-groonga-cache-base-path", false]], "--cache-limit": [[175, "cmdoption-groonga-cache-limit", false]], "--config-path": [[175, "cmdoption-groonga-config-path", false]], "--daemon": [[180, "cmdoption-groonga-suggest-httpd-d", false], [181, "cmdoption-groonga-suggest-learner-d", false]], "--default-match-escalation-threshold": [[175, "cmdoption-groonga-default-match-escalation-threshold", false]], "--default-n-workers": [[175, "cmdoption-groonga-default-n-workers", false]], "--default-request-timeout": [[175, "cmdoption-groonga-default-request-timeout", false]], "--dir": [[176, "cmdoption-groonga-benchmark-dir", false]], "--disable-max-fd-check": [[180, "cmdoption-groonga-suggest-httpd-disable-max-fd-check", false]], "--document-root": [[175, "cmdoption-groonga-document-root", false]], "--encoding": [[175, "cmdoption-groonga-e", false]], "--ftp": [[176, "cmdoption-groonga-benchmark-ftp", false]], "--groonga": [[176, "cmdoption-groonga-benchmark-groonga", false]], "--help": [[175, "cmdoption-groonga-h", false]], "--host": [[176, "cmdoption-groonga-benchmark-i", false]], "--log-base-path": [[180, "cmdoption-groonga-suggest-httpd-l", false], [181, "cmdoption-groonga-suggest-learner-l", false]], "--log-flags": [[175, "cmdoption-groonga-log-flags", false]], "--log-level": [[175, "cmdoption-groonga-l", false], [181, "cmdoption-groonga-suggest-learner-log-level", false]], "--log-output-dir": [[176, "cmdoption-groonga-benchmark-log-output-dir", false]], "--log-path": [[175, "cmdoption-groonga-log-path", false], [181, "cmdoption-groonga-suggest-learner-log-path", false]], "--log-rotate-threshold-size": [[175, "cmdoption-groonga-log-rotate-threshold-size", false]], "--max-threads": [[175, "cmdoption-groonga-t", false]], "--n-lines-per-log-file": [[180, "cmdoption-groonga-suggest-httpd-n-lines-per-log-file", false]], "--n-threads": [[180, "cmdoption-groonga-suggest-httpd-t", false]], "--pid-path": [[175, "cmdoption-groonga-pid-path", false]], "--port": [[175, "cmdoption-groonga-p", false], [176, "cmdoption-groonga-benchmark-p", false], [180, "cmdoption-groonga-suggest-httpd-p", false]], "--protocol": [[175, "cmdoption-groonga-protocol", false], [176, "cmdoption-groonga-benchmark-protocol", false]], "--query-log-path": [[175, "cmdoption-groonga-query-log-path", false]], "--query-log-rotate-threshold-size": [[175, "cmdoption-groonga-query-log-rotate-threshold-size", false]], "--receive-endpoint": [[180, "cmdoption-groonga-suggest-httpd-r", false], [181, "cmdoption-groonga-suggest-learner-r", false]], "--send-endpoint": [[180, "cmdoption-groonga-suggest-httpd-s", false], [181, "cmdoption-groonga-suggest-learner-s", false]], "--server-id": [[175, "cmdoption-groonga-i", false]], "-a": [[175, "cmdoption-groonga-a", false]], "-c": [[175, "cmdoption-groonga-c", false]], "-d": [[175, "cmdoption-groonga-d", false], [180, "cmdoption-groonga-suggest-httpd-d", false], [181, "cmdoption-groonga-suggest-learner-d", false]], "-e": [[175, "cmdoption-groonga-e", false]], "-h": [[175, "cmdoption-groonga-h", false]], "-i": [[175, "cmdoption-groonga-i", false], [176, "cmdoption-groonga-benchmark-i", false]], "-l": [[175, "cmdoption-groonga-l", false], [180, "cmdoption-groonga-suggest-httpd-l", false], [181, "cmdoption-groonga-suggest-learner-l", false]], "-m": [[174, "cmdoption-grnslap-m", false]], "-n": [[175, "cmdoption-groonga-n", false]], "-p": [[174, "cmdoption-grnslap-P", false], [175, "cmdoption-groonga-p", false], [176, "cmdoption-groonga-benchmark-p", false], [180, "cmdoption-groonga-suggest-httpd-p", false]], "-r": [[180, "cmdoption-groonga-suggest-httpd-r", false], [181, "cmdoption-groonga-suggest-learner-r", false]], "-s": [[175, "cmdoption-groonga-s", false], [180, "cmdoption-groonga-suggest-httpd-s", false], [181, "cmdoption-groonga-suggest-learner-s", false]], "-t": [[175, "cmdoption-groonga-t", false], [180, "cmdoption-groonga-suggest-httpd-t", false]], "command": [[175, "cmdoption-groonga-arg-command", false]], "db": [[176, "cmdoption-groonga-benchmark-arg-db", false]], "dest": [[174, "cmdoption-grnslap-arg-dest", false], [175, "cmdoption-groonga-arg-dest", false]], "grn_cache (c type)": [[61, "c.grn_cache", false]], "grn_cache_close (c function)": [[61, "c.grn_cache_close", false]], "grn_cache_current_get (c function)": [[61, "c.grn_cache_current_get", false]], "grn_cache_current_set (c function)": [[61, "c.grn_cache_current_set", false]], "grn_cache_get_max_n_entries (c function)": [[61, "c.grn_cache_get_max_n_entries", false]], "grn_cache_set_max_n_entries (c function)": [[61, "c.grn_cache_set_max_n_entries", false]], "grn_content_type (c type)": [[64, "c.grn_content_type", false]], "grn_expr_add_var (c function)": [[68, "c.grn_expr_add_var", false]], "grn_expr_alloc (c function)": [[68, "c.grn_expr_alloc", false]], "grn_expr_append_const (c function)": [[68, "c.grn_expr_append_const", false]], "grn_expr_append_const_int (c function)": [[68, "c.grn_expr_append_const_int", false]], "grn_expr_append_const_str (c function)": [[68, "c.grn_expr_append_const_str", false]], "grn_expr_append_obj (c function)": [[68, "c.grn_expr_append_obj", false]], "grn_expr_append_op (c function)": [[68, "c.grn_expr_append_op", false]], "grn_expr_close (c function)": [[68, "c.grn_expr_close", false]], "grn_expr_compile (c function)": [[68, "c.grn_expr_compile", false]], "grn_expr_create (c function)": [[68, "c.grn_expr_create", false]], "grn_expr_exec (c function)": [[68, "c.grn_expr_exec", false]], "grn_expr_get_keywords (c function)": [[68, "c.grn_expr_get_keywords", false]], "grn_expr_get_var_by_offset (c function)": [[68, "c.grn_expr_get_var_by_offset", false]], "grn_expr_syntax_escape (c function)": [[68, "c.grn_expr_syntax_escape", false]], "grn_expr_syntax_escape_query (c function)": [[68, "c.grn_expr_syntax_escape_query", false]], "grn_fin (c function)": [[84, "c.grn_fin", false]], "grn_ii (c type)": [[71, "c.grn_ii", false]], "grn_ii_buffer (c type)": [[71, "c.grn_ii_buffer", false]], "grn_ii_buffer_append (c function)": [[71, "c.grn_ii_buffer_append", false]], "grn_ii_buffer_close (c function)": [[71, "c.grn_ii_buffer_close", false]], "grn_ii_buffer_commit (c function)": [[71, "c.grn_ii_buffer_commit", false]], "grn_ii_buffer_open (c function)": [[71, "c.grn_ii_buffer_open", false]], "grn_init (c function)": [[84, "c.grn_init", false]], "grn_inspect (c function)": [[74, "c.grn_inspect", false]], "grn_inspect_encoding (c function)": [[74, "c.grn_inspect_encoding", false]], "grn_inspect_indented (c function)": [[74, "c.grn_inspect_indented", false]], "grn_inspect_limited (c function)": [[74, "c.grn_inspect_limited", false]], "grn_inspect_name (c function)": [[74, "c.grn_inspect_name", false]], "grn_inspect_query_log_flags (c function)": [[74, "c.grn_inspect_query_log_flags", false]], "grn_inspect_type (c function)": [[74, "c.grn_inspect_type", false]], "grn_p (c function)": [[74, "c.grn_p", false]], "grn_p_geo_point (c function)": [[74, "c.grn_p_geo_point", false]], "grn_p_ii_values (c function)": [[74, "c.grn_p_ii_values", false]], "grn_plugin_charlen (c function)": [[85, "c.grn_plugin_charlen", false]], "grn_plugin_command_create (c function)": [[85, "c.grn_plugin_command_create", false]], "grn_plugin_error (c macro)": [[85, "c.GRN_PLUGIN_ERROR", false]], "grn_plugin_expr_var_init (c function)": [[85, "c.grn_plugin_expr_var_init", false]], "grn_plugin_fin (c function)": [[85, "c.GRN_PLUGIN_FIN", false]], "grn_plugin_free (c macro)": [[85, "c.GRN_PLUGIN_FREE", false]], "grn_plugin_init (c function)": [[85, "c.GRN_PLUGIN_INIT", false]], "grn_plugin_isspace (c function)": [[85, "c.grn_plugin_isspace", false]], "grn_plugin_log (c macro)": [[85, "c.GRN_PLUGIN_LOG", false]], "grn_plugin_malloc (c macro)": [[85, "c.GRN_PLUGIN_MALLOC", false]], "grn_plugin_mutex (c type)": [[85, "c.grn_plugin_mutex", false]], "grn_plugin_mutex_close (c function)": [[85, "c.grn_plugin_mutex_close", false]], "grn_plugin_mutex_lock (c function)": [[85, "c.grn_plugin_mutex_lock", false]], "grn_plugin_mutex_open (c function)": [[85, "c.grn_plugin_mutex_open", false]], "grn_plugin_mutex_unlock (c function)": [[85, "c.grn_plugin_mutex_unlock", false]], "grn_plugin_proc_alloc (c function)": [[85, "c.grn_plugin_proc_alloc", false]], "grn_plugin_proc_get_var (c function)": [[85, "c.grn_plugin_proc_get_var", false]], "grn_plugin_proc_get_var_by_offset (c function)": [[85, "c.grn_plugin_proc_get_var_by_offset", false]], "grn_plugin_realloc (c macro)": [[85, "c.GRN_PLUGIN_REALLOC", false]], "grn_plugin_register (c function)": [[85, "c.GRN_PLUGIN_REGISTER", false]], "grn_plugin_win32_base_dir (c function)": [[85, "c.grn_plugin_win32_base_dir", false]], "grn_plugin_windows_base_dir (c function)": [[85, "c.grn_plugin_windows_base_dir", false]], "grn_thread_get_limit (c function)": [[81, "c.grn_thread_get_limit", false]], "grn_thread_get_limit_func (c type)": [[81, "c.grn_thread_get_limit_func", false]], "grn_thread_set_get_limit_func (c function)": [[81, "c.grn_thread_set_get_limit_func", false]], "grn_thread_set_limit (c function)": [[81, "c.grn_thread_set_limit", false]], "grn_thread_set_limit_func (c type)": [[81, "c.grn_thread_set_limit_func", false]], "grn_thread_set_set_limit_func (c function)": [[81, "c.grn_thread_set_set_limit_func", false]], "grnslap command line option": [[174, "cmdoption-grnslap-P", false], [174, "cmdoption-grnslap-arg-dest", false], [174, "cmdoption-grnslap-m", false]], "groonga command line option": [[175, "cmdoption-groonga-a", false], [175, "cmdoption-groonga-arg-command", false], [175, "cmdoption-groonga-arg-dest", false], [175, "cmdoption-groonga-bind-address", false], [175, "cmdoption-groonga-c", false], [175, "cmdoption-groonga-cache-base-path", false], [175, "cmdoption-groonga-cache-limit", false], [175, "cmdoption-groonga-config-path", false], [175, "cmdoption-groonga-d", false], [175, "cmdoption-groonga-default-match-escalation-threshold", false], [175, "cmdoption-groonga-default-n-workers", false], [175, "cmdoption-groonga-default-request-timeout", false], [175, "cmdoption-groonga-document-root", false], [175, "cmdoption-groonga-e", false], [175, "cmdoption-groonga-h", false], [175, "cmdoption-groonga-i", false], [175, "cmdoption-groonga-l", false], [175, "cmdoption-groonga-log-flags", false], [175, "cmdoption-groonga-log-path", false], [175, "cmdoption-groonga-log-rotate-threshold-size", false], [175, "cmdoption-groonga-n", false], [175, "cmdoption-groonga-p", false], [175, "cmdoption-groonga-pid-path", false], [175, "cmdoption-groonga-protocol", false], [175, "cmdoption-groonga-query-log-path", false], [175, "cmdoption-groonga-query-log-rotate-threshold-size", false], [175, "cmdoption-groonga-s", false], [175, "cmdoption-groonga-t", false]], "groonga-benchmark command line option": [[176, "cmdoption-groonga-benchmark-arg-db", false], [176, "cmdoption-groonga-benchmark-arg-script", false], [176, "cmdoption-groonga-benchmark-dir", false], [176, "cmdoption-groonga-benchmark-ftp", false], [176, "cmdoption-groonga-benchmark-groonga", false], [176, "cmdoption-groonga-benchmark-i", false], [176, "cmdoption-groonga-benchmark-log-output-dir", false], [176, "cmdoption-groonga-benchmark-p", false], [176, "cmdoption-groonga-benchmark-protocol", false]], "groonga-suggest-httpd command line option": [[180, "cmdoption-groonga-suggest-httpd-d", false], [180, "cmdoption-groonga-suggest-httpd-disable-max-fd-check", false], [180, "cmdoption-groonga-suggest-httpd-l", false], [180, "cmdoption-groonga-suggest-httpd-n-lines-per-log-file", false], [180, "cmdoption-groonga-suggest-httpd-p", false], [180, "cmdoption-groonga-suggest-httpd-r", false], [180, "cmdoption-groonga-suggest-httpd-s", false], [180, "cmdoption-groonga-suggest-httpd-t", false]], "groonga-suggest-learner command line option": [[181, "cmdoption-groonga-suggest-learner-d", false], [181, "cmdoption-groonga-suggest-learner-l", false], [181, "cmdoption-groonga-suggest-learner-log-level", false], [181, "cmdoption-groonga-suggest-learner-log-path", false], [181, "cmdoption-groonga-suggest-learner-r", false], [181, "cmdoption-groonga-suggest-learner-s", false]], "script": [[176, "cmdoption-groonga-benchmark-arg-script", false]]}, "objects": {"": [[85, 0, 1, "c.GRN_PLUGIN_ERROR", "GRN_PLUGIN_ERROR"], [85, 1, 1, "c.GRN_PLUGIN_FIN", "GRN_PLUGIN_FIN"], [85, 0, 1, "c.GRN_PLUGIN_FREE", "GRN_PLUGIN_FREE"], [85, 1, 1, "c.GRN_PLUGIN_INIT", "GRN_PLUGIN_INIT"], [85, 0, 1, "c.GRN_PLUGIN_LOG", "GRN_PLUGIN_LOG"], [85, 0, 1, "c.GRN_PLUGIN_MALLOC", "GRN_PLUGIN_MALLOC"], [85, 0, 1, "c.GRN_PLUGIN_REALLOC", "GRN_PLUGIN_REALLOC"], [85, 1, 1, "c.GRN_PLUGIN_REGISTER", "GRN_PLUGIN_REGISTER"], [61, 3, 1, "c.grn_cache", "grn_cache"], [61, 1, 1, "c.grn_cache_close", "grn_cache_close"], [61, 1, 1, "c.grn_cache_current_get", "grn_cache_current_get"], [61, 1, 1, "c.grn_cache_current_set", "grn_cache_current_set"], [61, 1, 1, "c.grn_cache_get_max_n_entries", "grn_cache_get_max_n_entries"], [61, 1, 1, "c.grn_cache_set_max_n_entries", "grn_cache_set_max_n_entries"], [64, 3, 1, "c.grn_content_type", "grn_content_type"], [68, 1, 1, "c.grn_expr_add_var", "grn_expr_add_var"], [68, 1, 1, "c.grn_expr_alloc", "grn_expr_alloc"], [68, 1, 1, "c.grn_expr_append_const", "grn_expr_append_const"], [68, 1, 1, "c.grn_expr_append_const_int", "grn_expr_append_const_int"], [68, 1, 1, "c.grn_expr_append_const_str", "grn_expr_append_const_str"], [68, 1, 1, "c.grn_expr_append_obj", "grn_expr_append_obj"], [68, 1, 1, "c.grn_expr_append_op", "grn_expr_append_op"], [68, 1, 1, "c.grn_expr_close", "grn_expr_close"], [68, 1, 1, "c.grn_expr_compile", "grn_expr_compile"], [68, 1, 1, "c.grn_expr_create", "grn_expr_create"], [68, 1, 1, "c.grn_expr_exec", "grn_expr_exec"], [68, 1, 1, "c.grn_expr_get_keywords", "grn_expr_get_keywords"], [68, 1, 1, "c.grn_expr_get_var_by_offset", "grn_expr_get_var_by_offset"], [68, 1, 1, "c.grn_expr_syntax_escape", "grn_expr_syntax_escape"], [68, 1, 1, "c.grn_expr_syntax_escape_query", "grn_expr_syntax_escape_query"], [84, 1, 1, "c.grn_fin", "grn_fin"], [71, 3, 1, "c.grn_ii", "grn_ii"], [71, 3, 1, "c.grn_ii_buffer", "grn_ii_buffer"], [71, 1, 1, "c.grn_ii_buffer_append", "grn_ii_buffer_append"], [71, 1, 1, "c.grn_ii_buffer_close", "grn_ii_buffer_close"], [71, 1, 1, "c.grn_ii_buffer_commit", "grn_ii_buffer_commit"], [71, 1, 1, "c.grn_ii_buffer_open", "grn_ii_buffer_open"], [84, 1, 1, "c.grn_init", "grn_init"], [74, 1, 1, "c.grn_inspect", "grn_inspect"], [74, 1, 1, "c.grn_inspect_encoding", "grn_inspect_encoding"], [74, 1, 1, "c.grn_inspect_indented", "grn_inspect_indented"], [74, 1, 1, "c.grn_inspect_limited", "grn_inspect_limited"], [74, 1, 1, "c.grn_inspect_name", "grn_inspect_name"], [74, 1, 1, "c.grn_inspect_query_log_flags", "grn_inspect_query_log_flags"], [74, 1, 1, "c.grn_inspect_type", "grn_inspect_type"], [74, 1, 1, "c.grn_p", "grn_p"], [74, 1, 1, "c.grn_p_geo_point", "grn_p_geo_point"], [74, 1, 1, "c.grn_p_ii_values", "grn_p_ii_values"], [85, 1, 1, "c.grn_plugin_charlen", "grn_plugin_charlen"], [85, 1, 1, "c.grn_plugin_command_create", "grn_plugin_command_create"], [85, 1, 1, "c.grn_plugin_expr_var_init", "grn_plugin_expr_var_init"], [85, 1, 1, "c.grn_plugin_isspace", "grn_plugin_isspace"], [85, 3, 1, "c.grn_plugin_mutex", "grn_plugin_mutex"], [85, 1, 1, "c.grn_plugin_mutex_close", "grn_plugin_mutex_close"], [85, 1, 1, "c.grn_plugin_mutex_lock", "grn_plugin_mutex_lock"], [85, 1, 1, "c.grn_plugin_mutex_open", "grn_plugin_mutex_open"], [85, 1, 1, "c.grn_plugin_mutex_unlock", "grn_plugin_mutex_unlock"], [85, 1, 1, "c.grn_plugin_proc_alloc", "grn_plugin_proc_alloc"], [85, 1, 1, "c.grn_plugin_proc_get_var", "grn_plugin_proc_get_var"], [85, 1, 1, "c.grn_plugin_proc_get_var_by_offset", "grn_plugin_proc_get_var_by_offset"], [85, 1, 1, "c.grn_plugin_win32_base_dir", "grn_plugin_win32_base_dir"], [85, 1, 1, "c.grn_plugin_windows_base_dir", "grn_plugin_windows_base_dir"], [81, 1, 1, "c.grn_thread_get_limit", "grn_thread_get_limit"], [81, 3, 1, "c.grn_thread_get_limit_func", "grn_thread_get_limit_func"], [81, 1, 1, "c.grn_thread_set_get_limit_func", "grn_thread_set_get_limit_func"], [81, 1, 1, "c.grn_thread_set_limit", "grn_thread_set_limit"], [81, 3, 1, "c.grn_thread_set_limit_func", "grn_thread_set_limit_func"], [81, 1, 1, "c.grn_thread_set_set_limit_func", "grn_thread_set_set_limit_func"]], "GRN_PLUGIN_FIN": [[85, 2, 1, "c.GRN_PLUGIN_FIN", "ctx"]], "GRN_PLUGIN_INIT": [[85, 2, 1, "c.GRN_PLUGIN_INIT", "ctx"]], "GRN_PLUGIN_REGISTER": [[85, 2, 1, "c.GRN_PLUGIN_REGISTER", "ctx"]], "grn_cache_close": [[61, 2, 1, "c.grn_cache_close", "cache"], [61, 2, 1, "c.grn_cache_close", "ctx"]], "grn_cache_current_get": [[61, 2, 1, "c.grn_cache_current_get", "ctx"]], "grn_cache_current_set": [[61, 2, 1, "c.grn_cache_current_set", "cache"], [61, 2, 1, "c.grn_cache_current_set", "ctx"]], "grn_cache_get_max_n_entries": [[61, 2, 1, "c.grn_cache_get_max_n_entries", "cache"], [61, 2, 1, "c.grn_cache_get_max_n_entries", "ctx"]], "grn_cache_set_max_n_entries": [[61, 2, 1, "c.grn_cache_set_max_n_entries", "cache"], [61, 2, 1, "c.grn_cache_set_max_n_entries", "ctx"], [61, 2, 1, "c.grn_cache_set_max_n_entries", "n"]], "grn_expr_add_var": [[68, 2, 1, "c.grn_expr_add_var", "ctx"], [68, 2, 1, "c.grn_expr_add_var", "expr"], [68, 2, 1, "c.grn_expr_add_var", "name"], [68, 2, 1, "c.grn_expr_add_var", "name_size"]], "grn_expr_alloc": [[68, 2, 1, "c.grn_expr_alloc", "ctx"], [68, 2, 1, "c.grn_expr_alloc", "domain"], [68, 2, 1, "c.grn_expr_alloc", "expr"], [68, 2, 1, "c.grn_expr_alloc", "flags"]], "grn_expr_append_const": [[68, 2, 1, "c.grn_expr_append_const", "ctx"], [68, 2, 1, "c.grn_expr_append_const", "expr"], [68, 2, 1, "c.grn_expr_append_const", "nargs"], [68, 2, 1, "c.grn_expr_append_const", "obj"], [68, 2, 1, "c.grn_expr_append_const", "op"]], "grn_expr_append_const_int": [[68, 2, 1, "c.grn_expr_append_const_int", "ctx"], [68, 2, 1, "c.grn_expr_append_const_int", "expr"], [68, 2, 1, "c.grn_expr_append_const_int", "i"], [68, 2, 1, "c.grn_expr_append_const_int", "nargs"], [68, 2, 1, "c.grn_expr_append_const_int", "op"]], "grn_expr_append_const_str": [[68, 2, 1, "c.grn_expr_append_const_str", "ctx"], [68, 2, 1, "c.grn_expr_append_const_str", "expr"], [68, 2, 1, "c.grn_expr_append_const_str", "nargs"], [68, 2, 1, "c.grn_expr_append_const_str", "op"], [68, 2, 1, "c.grn_expr_append_const_str", "str"], [68, 2, 1, "c.grn_expr_append_const_str", "str_size"]], "grn_expr_append_obj": [[68, 2, 1, "c.grn_expr_append_obj", "ctx"], [68, 2, 1, "c.grn_expr_append_obj", "expr"], [68, 2, 1, "c.grn_expr_append_obj", "nargs"], [68, 2, 1, "c.grn_expr_append_obj", "obj"], [68, 2, 1, "c.grn_expr_append_obj", "op"]], "grn_expr_append_op": [[68, 2, 1, "c.grn_expr_append_op", "ctx"], [68, 2, 1, "c.grn_expr_append_op", "expr"], [68, 2, 1, "c.grn_expr_append_op", "nargs"], [68, 2, 1, "c.grn_expr_append_op", "op"]], "grn_expr_close": [[68, 2, 1, "c.grn_expr_close", "ctx"], [68, 2, 1, "c.grn_expr_close", "expr"]], "grn_expr_compile": [[68, 2, 1, "c.grn_expr_compile", "ctx"], [68, 2, 1, "c.grn_expr_compile", "expr"]], "grn_expr_create": [[68, 2, 1, "c.grn_expr_create", "ctx"], [68, 2, 1, "c.grn_expr_create", "name"], [68, 2, 1, "c.grn_expr_create", "name_size"]], "grn_expr_exec": [[68, 2, 1, "c.grn_expr_exec", "ctx"], [68, 2, 1, "c.grn_expr_exec", "expr"], [68, 2, 1, "c.grn_expr_exec", "nargs"]], "grn_expr_get_keywords": [[68, 2, 1, "c.grn_expr_get_keywords", "ctx"], [68, 2, 1, "c.grn_expr_get_keywords", "expr"], [68, 2, 1, "c.grn_expr_get_keywords", "keywords"]], "grn_expr_get_var_by_offset": [[68, 2, 1, "c.grn_expr_get_var_by_offset", "ctx"], [68, 2, 1, "c.grn_expr_get_var_by_offset", "expr"], [68, 2, 1, "c.grn_expr_get_var_by_offset", "offset"]], "grn_expr_syntax_escape": [[68, 2, 1, "c.grn_expr_syntax_escape", "ctx"], [68, 2, 1, "c.grn_expr_syntax_escape", "escape_character"], [68, 2, 1, "c.grn_expr_syntax_escape", "escaped_string"], [68, 2, 1, "c.grn_expr_syntax_escape", "string"], [68, 2, 1, "c.grn_expr_syntax_escape", "string_size"], [68, 2, 1, "c.grn_expr_syntax_escape", "target_characters"]], "grn_expr_syntax_escape_query": [[68, 2, 1, "c.grn_expr_syntax_escape_query", "ctx"], [68, 2, 1, "c.grn_expr_syntax_escape_query", "escaped_query"], [68, 2, 1, "c.grn_expr_syntax_escape_query", "query"], [68, 2, 1, "c.grn_expr_syntax_escape_query", "query_size"]], "grn_ii_buffer_append": [[71, 2, 1, "c.grn_ii_buffer_append", "ctx"], [71, 2, 1, "c.grn_ii_buffer_append", "ii_buffer"], [71, 2, 1, "c.grn_ii_buffer_append", "rid"], [71, 2, 1, "c.grn_ii_buffer_append", "section"], [71, 2, 1, "c.grn_ii_buffer_append", "value"]], "grn_ii_buffer_close": [[71, 2, 1, "c.grn_ii_buffer_close", "ctx"], [71, 2, 1, "c.grn_ii_buffer_close", "ii_buffer"]], "grn_ii_buffer_commit": [[71, 2, 1, "c.grn_ii_buffer_commit", "ctx"], [71, 2, 1, "c.grn_ii_buffer_commit", "ii_buffer"]], "grn_ii_buffer_open": [[71, 2, 1, "c.grn_ii_buffer_open", "ctx"], [71, 2, 1, "c.grn_ii_buffer_open", "ii"], [71, 2, 1, "c.grn_ii_buffer_open", "update_buffer_size"]], "grn_inspect": [[74, 2, 1, "c.grn_inspect", "buffer"], [74, 2, 1, "c.grn_inspect", "ctx"], [74, 2, 1, "c.grn_inspect", "obj"]], "grn_inspect_encoding": [[74, 2, 1, "c.grn_inspect_encoding", "buffer"], [74, 2, 1, "c.grn_inspect_encoding", "ctx"], [74, 2, 1, "c.grn_inspect_encoding", "encoding"]], "grn_inspect_indented": [[74, 2, 1, "c.grn_inspect_indented", "buffer"], [74, 2, 1, "c.grn_inspect_indented", "ctx"], [74, 2, 1, "c.grn_inspect_indented", "indent"], [74, 2, 1, "c.grn_inspect_indented", "obj"]], "grn_inspect_limited": [[74, 2, 1, "c.grn_inspect_limited", "buffer"], [74, 2, 1, "c.grn_inspect_limited", "ctx"], [74, 2, 1, "c.grn_inspect_limited", "obj"]], "grn_inspect_name": [[74, 2, 1, "c.grn_inspect_name", "buffer"], [74, 2, 1, "c.grn_inspect_name", "ctx"], [74, 2, 1, "c.grn_inspect_name", "obj"]], "grn_inspect_query_log_flags": [[74, 2, 1, "c.grn_inspect_query_log_flags", "buffer"], [74, 2, 1, "c.grn_inspect_query_log_flags", "ctx"], [74, 2, 1, "c.grn_inspect_query_log_flags", "flags"]], "grn_inspect_type": [[74, 2, 1, "c.grn_inspect_type", "buffer"], [74, 2, 1, "c.grn_inspect_type", "ctx"], [74, 2, 1, "c.grn_inspect_type", "type"]], "grn_p": [[74, 2, 1, "c.grn_p", "ctx"], [74, 2, 1, "c.grn_p", "obj"]], "grn_p_geo_point": [[74, 2, 1, "c.grn_p_geo_point", "ctx"], [74, 2, 1, "c.grn_p_geo_point", "point"]], "grn_p_ii_values": [[74, 2, 1, "c.grn_p_ii_values", "ctx"], [74, 2, 1, "c.grn_p_ii_values", "obj"]], "grn_plugin_charlen": [[85, 2, 1, "c.grn_plugin_charlen", "ctx"], [85, 2, 1, "c.grn_plugin_charlen", "encoding"], [85, 2, 1, "c.grn_plugin_charlen", "str_length"], [85, 2, 1, "c.grn_plugin_charlen", "str_ptr"]], "grn_plugin_command_create": [[85, 2, 1, "c.grn_plugin_command_create", "ctx"], [85, 2, 1, "c.grn_plugin_command_create", "func"], [85, 2, 1, "c.grn_plugin_command_create", "n_vars"], [85, 2, 1, "c.grn_plugin_command_create", "name"], [85, 2, 1, "c.grn_plugin_command_create", "name_size"], [85, 2, 1, "c.grn_plugin_command_create", "vars"]], "grn_plugin_expr_var_init": [[85, 2, 1, "c.grn_plugin_expr_var_init", "ctx"], [85, 2, 1, "c.grn_plugin_expr_var_init", "name"], [85, 2, 1, "c.grn_plugin_expr_var_init", "name_size"], [85, 2, 1, "c.grn_plugin_expr_var_init", "var"]], "grn_plugin_isspace": [[85, 2, 1, "c.grn_plugin_isspace", "ctx"], [85, 2, 1, "c.grn_plugin_isspace", "encoding"], [85, 2, 1, "c.grn_plugin_isspace", "str_length"], [85, 2, 1, "c.grn_plugin_isspace", "str_ptr"]], "grn_plugin_mutex_close": [[85, 2, 1, "c.grn_plugin_mutex_close", "ctx"], [85, 2, 1, "c.grn_plugin_mutex_close", "mutex"]], "grn_plugin_mutex_lock": [[85, 2, 1, "c.grn_plugin_mutex_lock", "ctx"], [85, 2, 1, "c.grn_plugin_mutex_lock", "mutex"]], "grn_plugin_mutex_open": [[85, 2, 1, "c.grn_plugin_mutex_open", "ctx"]], "grn_plugin_mutex_unlock": [[85, 2, 1, "c.grn_plugin_mutex_unlock", "ctx"], [85, 2, 1, "c.grn_plugin_mutex_unlock", "mutex"]], "grn_plugin_proc_alloc": [[85, 2, 1, "c.grn_plugin_proc_alloc", "ctx"], [85, 2, 1, "c.grn_plugin_proc_alloc", "domain"], [85, 2, 1, "c.grn_plugin_proc_alloc", "flags"], [85, 2, 1, "c.grn_plugin_proc_alloc", "user_data"]], "grn_plugin_proc_get_var": [[85, 2, 1, "c.grn_plugin_proc_get_var", "ctx"], [85, 2, 1, "c.grn_plugin_proc_get_var", "name"], [85, 2, 1, "c.grn_plugin_proc_get_var", "name_size"], [85, 2, 1, "c.grn_plugin_proc_get_var", "user_data"]], "grn_plugin_proc_get_var_by_offset": [[85, 2, 1, "c.grn_plugin_proc_get_var_by_offset", "ctx"], [85, 2, 1, "c.grn_plugin_proc_get_var_by_offset", "offset"], [85, 2, 1, "c.grn_plugin_proc_get_var_by_offset", "user_data"]], "grn_thread_set_get_limit_func": [[81, 2, 1, "c.grn_thread_set_get_limit_func", "data"], [81, 2, 1, "c.grn_thread_set_get_limit_func", "func"]], "grn_thread_set_limit": [[81, 2, 1, "c.grn_thread_set_limit", "new_limit"]], "grn_thread_set_set_limit_func": [[81, 2, 1, "c.grn_thread_set_set_limit_func", "data"], [81, 2, 1, "c.grn_thread_set_set_limit_func", "func"]], "grnslap": [[174, 4, 1, "cmdoption-grnslap-P", "-P"], [174, 4, 1, "cmdoption-grnslap-m", "-m"], [174, 4, 1, "cmdoption-grnslap-arg-dest", "dest"]], "groonga": [[175, 4, 1, "cmdoption-groonga-a", "--address"], [175, 4, 1, "cmdoption-groonga-bind-address", "--bind-address"], [175, 4, 1, "cmdoption-groonga-cache-base-path", "--cache-base-path"], [175, 4, 1, "cmdoption-groonga-cache-limit", "--cache-limit"], [175, 4, 1, "cmdoption-groonga-config-path", "--config-path"], [175, 4, 1, "cmdoption-groonga-default-match-escalation-threshold", "--default-match-escalation-threshold"], [175, 4, 1, "cmdoption-groonga-default-n-workers", "--default-n-workers"], [175, 4, 1, "cmdoption-groonga-default-request-timeout", "--default-request-timeout"], [175, 4, 1, "cmdoption-groonga-document-root", "--document-root"], [175, 4, 1, "cmdoption-groonga-e", "--encoding"], [175, 4, 1, "cmdoption-groonga-h", "--help"], [175, 4, 1, "cmdoption-groonga-log-flags", "--log-flags"], [175, 4, 1, "cmdoption-groonga-l", "--log-level"], [175, 4, 1, "cmdoption-groonga-log-path", "--log-path"], [175, 4, 1, "cmdoption-groonga-log-rotate-threshold-size", "--log-rotate-threshold-size"], [175, 4, 1, "cmdoption-groonga-t", "--max-threads"], [175, 4, 1, "cmdoption-groonga-pid-path", "--pid-path"], [175, 4, 1, "cmdoption-groonga-p", "--port"], [175, 4, 1, "cmdoption-groonga-protocol", "--protocol"], [175, 4, 1, "cmdoption-groonga-query-log-path", "--query-log-path"], [175, 4, 1, "cmdoption-groonga-query-log-rotate-threshold-size", "--query-log-rotate-threshold-size"], [175, 4, 1, "cmdoption-groonga-i", "--server-id"], [175, 4, 1, "cmdoption-groonga-a", "-a"], [175, 4, 1, "cmdoption-groonga-c", "-c"], [175, 4, 1, "cmdoption-groonga-d", "-d"], [175, 4, 1, "cmdoption-groonga-e", "-e"], [175, 4, 1, "cmdoption-groonga-h", "-h"], [175, 4, 1, "cmdoption-groonga-i", "-i"], [175, 4, 1, "cmdoption-groonga-l", "-l"], [175, 4, 1, "cmdoption-groonga-n", "-n"], [175, 4, 1, "cmdoption-groonga-p", "-p"], [175, 4, 1, "cmdoption-groonga-s", "-s"], [175, 4, 1, "cmdoption-groonga-t", "-t"], [175, 4, 1, "cmdoption-groonga-arg-command", "command"], [175, 4, 1, "cmdoption-groonga-arg-dest", "dest"]], "groonga-benchmark": [[176, 4, 1, "cmdoption-groonga-benchmark-dir", "--dir"], [176, 4, 1, "cmdoption-groonga-benchmark-ftp", "--ftp"], [176, 4, 1, "cmdoption-groonga-benchmark-groonga", "--groonga"], [176, 4, 1, "cmdoption-groonga-benchmark-i", "--host"], [176, 4, 1, "cmdoption-groonga-benchmark-log-output-dir", "--log-output-dir"], [176, 4, 1, "cmdoption-groonga-benchmark-p", "--port"], [176, 4, 1, "cmdoption-groonga-benchmark-protocol", "--protocol"], [176, 4, 1, "cmdoption-groonga-benchmark-i", "-i"], [176, 4, 1, "cmdoption-groonga-benchmark-p", "-p"], [176, 4, 1, "cmdoption-groonga-benchmark-arg-db", "db"], [176, 4, 1, "cmdoption-groonga-benchmark-arg-script", "script"]], "groonga-suggest-httpd": [[180, 4, 1, "cmdoption-groonga-suggest-httpd-d", "--daemon"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-disable-max-fd-check", "--disable-max-fd-check"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-l", "--log-base-path"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-n-lines-per-log-file", "--n-lines-per-log-file"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-t", "--n-threads"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-p", "--port"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-r", "--receive-endpoint"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-s", "--send-endpoint"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-d", "-d"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-l", "-l"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-p", "-p"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-r", "-r"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-s", "-s"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-t", "-t"]], "groonga-suggest-learner": [[181, 4, 1, "cmdoption-groonga-suggest-learner-d", "--daemon"], [181, 4, 1, "cmdoption-groonga-suggest-learner-l", "--log-base-path"], [181, 4, 1, "cmdoption-groonga-suggest-learner-log-level", "--log-level"], [181, 4, 1, "cmdoption-groonga-suggest-learner-log-path", "--log-path"], [181, 4, 1, "cmdoption-groonga-suggest-learner-r", "--receive-endpoint"], [181, 4, 1, "cmdoption-groonga-suggest-learner-s", "--send-endpoint"], [181, 4, 1, "cmdoption-groonga-suggest-learner-d", "-d"], [181, 4, 1, "cmdoption-groonga-suggest-learner-l", "-l"], [181, 4, 1, "cmdoption-groonga-suggest-learner-r", "-r"], [181, 4, 1, "cmdoption-groonga-suggest-learner-s", "-s"]]}, "objnames": {"0": ["c", "macro", "C macro"], "1": ["c", "function", "C function"], "2": ["c", "functionParam", "C function parameter"], "3": ["c", "type", "C type"], "4": ["std", "cmdoption", "program option"]}, "objtypes": {"0": "c:macro", "1": "c:function", "2": "c:functionParam", "3": "c:type", "4": "std:cmdoption"}, "terms": {"": [6, 12, 17, 18, 22, 23, 26, 27, 31, 39, 40, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 56, 74, 81, 87, 91, 95, 96, 106, 116, 121, 124, 125, 131, 132, 134, 135, 137, 140, 141, 142, 155, 156, 158, 159, 161, 163, 165, 166, 168, 173, 175, 177, 180, 181, 183, 186, 188, 191, 192, 193, 196, 197, 201, 202, 203, 205, 206, 210, 223, 224, 225, 226, 228, 237, 239, 241, 243, 244, 245, 246, 247, 248, 250, 251, 253, 262, 264, 270, 271, 272, 274, 276, 278, 282, 290, 292, 298, 302, 303, 304, 305, 306, 307, 308, 310, 314, 315], "0": [12, 26, 27, 28, 31, 35, 55, 58, 68, 74, 81, 85, 91, 94, 95, 96, 97, 98, 99, 100, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 173, 174, 175, 176, 177, 178, 180, 183, 184, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 219, 220, 221, 222, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 241, 244, 245, 246, 247, 248, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 282, 283, 284, 285, 286, 287, 288, 296, 298, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "00": [41, 42, 43, 44, 47, 54, 95, 132, 134, 135, 137, 156, 176, 180, 211, 212, 250, 251, 253, 271, 282, 305, 311], "000": [111, 183, 196], "0000": [111, 273], "000000": [41, 42, 43, 44, 211], "00000000": 74, "000000000000000": [54, 124], "000000000072779": 228, "000000000075770": 228, "000000000099998": 228, "000000000119062": 228, "000000000b123456": 52, "0000000012345678": 52, "00000001": 74, "000000ce63aff640": 43, "000001": [42, 211], "0000100": [142, 143, 164, 175], "0000101": [112, 114, 142], "0000102": [112, 142], "0000103": 142, "00001100": 74, "000020": 211, "00007860": 166, "00008052": 166, "00008202": 108, "0001": 111, "000113964080810547": 241, "000115633010864258": 175, "000126361846923828": 241, "000131845474243164": 241, "000133702000000": 43, "000133703000000": 43, "0001480579376220703": 43, "0001730918884277344": 42, "00019073486328125": 44, "0001978874206542969": [43, 44], "0002026557922363281": 42, "000220775604248047": 99, "0002346038818359375": [43, 44], "0002503395080566406": 41, "0003311634063720703": 42, "0003361701965332031": 43, "000355720520019531": [42, 43, 44, 58, 91, 94, 95, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 177, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 245, 246, 247, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 286, 298, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "000418127": 301, "0004854202270507812": 45, "0005342960357666016": 43, "0005414485931396484": 42, "0005481243133544922": [43, 44], "0005536079406738281": 45, "0005540847778320312": 42, "0005846023559570312": 43, "000647003": 301, "000647716": 301, "0006628036499023438": 41, "0007376670837402344": 45, "000743783": 301, "000794": 12, "00082087516784668": 241, "0009": 243, "0009913444519042969": 45, "000x": 17, "001": [42, 183, 196, 314], "0010": 111, "001013517379760742": 45, "001041412353515625": 45, "001147": 176, "001213": 176, "001319169998168945": 42, "00133": 43, "001366376876831055": 45, "001431": 176, "00144": 176, "001525487": 301, "001608610153198242": 45, "001833438873291016": 45, "001911401748657227": 45, "001977920532226562": 45, "002": [42, 176, 183, 196, 314], "0020": [272, 273], "002193": 45, "002481460571289062": 45, "002741": 176, "002784013748168945": 193, "002813816070556641": 41, "002861": 176, "002965450286865234": 42, "002d": [231, 232, 233, 234, 235, 257, 258, 259], "003": 42, "003981828689575195": 42, "004": 42, "005": 42, "006": 42, "0061": 53, "00612": 39, "006752": 49, "00686": 47, "0069": 45, "007": 42, "00703": 47, "00794": 12, "008": 42, "009": 42, "00b7": [231, 232, 233, 234, 235, 258, 259], "00n": 173, "00z": [42, 180], "01": [35, 95, 132, 134, 135, 137, 180, 183, 196, 211, 212, 228, 275, 282, 305], "010": [42, 111], "0101": 111, "01088": 47, "011": [42, 111], "01100001": 74, "0111": 111, "01174": 47, "01192": 48, "012": 42, "0123": 275, "012345": 275, "0123456789": 275, "01248": 48, "013": 42, "0130": 45, "01346": 48, "014": 42, "01418": 176, "01440": 48, "015": 42, "015119": 176, "01520": 48, "01571": 48, "01593": 48, "01596": 48, "01599": 48, "016": 42, "01621": 48, "01661": 48, "017": 42, "01729": 48, "01751": 48, "018": 42, "01800": 48, "01810": 48, "018364": 174, "01845": 48, "01890": 48, "019": 42, "01929": 241, "01930": 48, "01971983909606934": 44, "01t00": [43, 180], "01t08": 42, "01t09": [42, 44], "01t10": 42, "01t11": 42, "01t19": 42, "01t21": 42, "02": [35, 41, 132, 134, 135, 137, 156, 183, 196, 211, 212, 225], "020": 42, "02017": 48, "02052": 48, "02073": 49, "02097": 49, "021": 42, "02113": 49, "022": 42, "023": 42, "02398": 49, "024": 42, "02409": 49, "02454": 49, "025": 42, "026": 42, "02651": 49, "02673": 49, "02691": 49, "027": 42, "02731": 49, "02754": 49, "02796": 49, "028": 42, "02841": 176, "029": 42, "02902": 49, "02942": 49, "02970": 49, "02981": 49, "02d7": [231, 232, 233, 234, 235, 258, 259], "02t09": 42, "03": [35, 135, 137, 156, 212, 311], "030": 42, "03014": 49, "0307": 45, "031": 42, "03118": 50, "03131": 50, "03177": 50, "032": 42, "03255": 50, "033": 42, "034": 42, "03427": 50, "035": 42, "03515": 50, "03527212142944336": 43, "03562": 50, "036": [42, 282], "03632": 50, "037": 42, "03708": 50, "03761": 50, "03771400451660156": 43, "038": 42, "03825": 50, "03884": 51, "039": 42, "03948": 51, "03997230529785156": 41, "04": [12, 21, 32, 35, 44, 49, 132, 134, 135, 156, 176, 212, 303], "040": 42, "04008": 51, "04012": 51, "04028": 51, "04040": 51, "04055": 51, "04058": 51, "041": 42, "04107": 51, "042": 42, "04219": 51, "043": 42, "0435875803232193": 41, "044": 42, "04449": 52, "045": 42, "04533": 52, "046": 42, "04609": 53, "04683": 53, "04688": 53, "047": 42, "04770": 54, "048": 42, "049": [42, 176], "04956": [43, 44], "05": [12, 35, 97, 111, 174, 176, 211, 212, 228, 241, 311], "050": 42, "05005": 43, "050228": 45, "052517": 228, "058a": [231, 232, 233, 234, 235, 258, 259], "06": [35, 44, 173, 212, 228, 303], "06164214760065079": 41, "07": [35, 132, 134, 135, 212, 225, 228], "072": 45, "073": [34, 254, 282], "08": [35, 132, 134, 135, 156, 228, 250, 251, 253, 303], "08321": 241, "0871751606464386": 41, "09": [12, 35, 132, 134, 135, 228, 250, 251, 253], "090": [53, 275], "09011112222": [53, 275], "095": 282, "096246": 45, "098612308502197": 42, "099782": [43, 44], "0c": 271, "0e": 176, "0garbag": 53, "0mq": 48, "0th": 111, "0x0": [40, 282, 305], "0x00": 111, "0x01": [111, 298], "0x02": [111, 298], "0x03": 111, "0x04": [111, 298], "0x08": 298, "0x10": 298, "0x11": 111, "0x12": 111, "0x13": 111, "0x14": 111, "0x19": 111, "0x1b": 111, "0x20": 224, "0x29": 111, "0x3f": 111, "0x40": 111, "0x45": 111, "0x46": 111, "0x47": 111, "0x48": 111, "0x55": 111, "0x55788b59dbe0": 228, "0x5c": 53, "0x6a": 111, "0x7fa0d5d7ed00": 99, "0x91": 111, "0x99": 111, "0x9a": 111, "0xa0": 111, "0xa7": 111, "0xc7": 298, "0xe1": 111, "0y": 44, "0yyi": 44, "0\u306e\u79d2\u8868\u8a18": 301, "0\u30ea\u30ea\u30fc\u30b9": 35, "0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059": 175, "0\u7cfb\u306e\u304a\u77e5\u3089\u305b": 35, "1": [0, 11, 12, 14, 31, 34, 35, 58, 68, 74, 91, 93, 94, 95, 96, 97, 98, 99, 100, 105, 108, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 121, 122, 123, 124, 125, 126, 128, 131, 132, 133, 134, 135, 137, 138, 141, 142, 143, 144, 145, 149, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 163, 164, 165, 166, 167, 168, 170, 171, 173, 175, 176, 177, 178, 180, 181, 183, 185, 186, 188, 189, 190, 191, 192, 193, 196, 197, 201, 202, 203, 205, 206, 208, 209, 210, 212, 220, 221, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 241, 243, 244, 245, 246, 247, 250, 251, 253, 254, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 274, 275, 276, 277, 278, 279, 280, 281, 286, 292, 298, 301, 302, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "10": [35, 45, 56, 91, 95, 96, 100, 107, 111, 132, 134, 135, 141, 142, 149, 150, 155, 156, 158, 159, 161, 166, 168, 173, 176, 184, 191, 192, 193, 202, 203, 204, 211, 224, 225, 231, 232, 234, 245, 258, 262, 264, 267, 268, 271, 275, 277, 282, 301, 306, 308, 310], "100": [41, 42, 43, 48, 49, 50, 91, 96, 99, 107, 110, 111, 132, 134, 135, 156, 159, 161, 173, 174, 175, 176, 177, 184, 189, 250, 264, 269, 270, 286, 301], "1000": [41, 42, 53, 54, 74, 111], "10000": [54, 174, 281], "100000": [42, 43], "1000000": 180, "10000000": 74, "1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059": 282, "1001": [54, 111], "10041": [29, 125, 153, 174, 175, 176, 177, 178, 241, 292, 296, 312], "10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059": 174, "10041\u756a": 175, "10043": [49, 175, 296, 298], "10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059": 175, "10043\u756a": 175, "10055": 302, "1007": 54, "1009": 54, "100abc": 184, "100cent": [264, 269, 270, 271], "100mb": 52, "100x": [51, 52], "100x100": 189, "100x150": 190, "100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070": 301, "101": [48, 91], "1010": [54, 176], "1011": 54, "102": 250, "1023": 54, "1024": [41, 45, 51, 54, 125, 141, 225, 312], "102400": 41, "1024r": 12, "1025202362": 315, "1030": [39, 54], "1035": 39, "10400": 176, "1042": 39, "1043": 39, "1044": 39, "1045": 54, "1047": 39, "10475660": 188, "1048": 39, "1051": [39, 111], "1051322": 188, "1052": 45, "1052672": 141, "1053": 39, "1054": 47, "10649": 42, "1065": 54, "1073741823": 254, "1073741824\u306e\u6574\u6570\u3067": 89, "10738": 241, "1087": 41, "1089": 41, "109": 48, "10900": 176, "10d": 173, "10h": 173, "10m": [173, 177], "10month": 173, "10t13": [250, 251, 253], "10t22": 251, "10w": 173, "10x": 45, "10z": 225, "11": [12, 35, 41, 44, 91, 96, 100, 111, 132, 134, 135, 141, 142, 155, 156, 166, 168, 202, 203, 205, 208, 209, 211, 224, 225, 237, 268, 277, 281, 286, 310], "110": [41, 48, 108], "1100": 41, "1101": 41, "1102": 41, "1102520059": 315, "1106": 41, "11068624": 111, "111": [41, 48, 108], "1110": 111, "1111": [53, 111, 275], "1112": 41, "11155": 108, "112": [41, 48], "1120": 41, "1122": 41, "1126": 41, "1129": 228, "113": 48, "1139": 41, "114": [37, 48], "115": [48, 54], "1153": 41, "1155": 41, "1158": 41, "116": [48, 108], "1167": 39, "11675": 54, "1169": 42, "117": 48, "1171": 39, "1172": 42, "1173": 39, "1175": 39, "1177": 42, "118": 48, "1180": 39, "1186": 42, "1189641421": 315, "1191": 42, "11925": 176, "1194": 39, "11x1": 41, "11x11": 41, "11x13": 41, "12": [12, 35, 54, 100, 111, 135, 141, 142, 155, 156, 166, 168, 176, 183, 186, 211, 224, 225, 231, 233, 241, 244, 268, 275, 277, 311], "120": 48, "120000": 108, "12008": 176, "1209": [39, 42], "121": 108, "1215": [39, 40], "1216": 39, "122": [48, 174, 211], "1220": 39, "1224": 42, "1225": 39, "1226": 39, "1228": 42, "123": [42, 48, 138], "123000": 42, "1234": [40, 42, 180], "12345": 298, "123456": 52, "1234567890": [45, 225, 305], "1234569999": 305, "123457": 305, "1235": 180, "1238": 42, "124": 48, "1240": 42, "1242": 40, "1247": 47, "125": 48, "1251": 40, "1256791194": 199, "1258": 47, "126": [42, 48, 52], "1265": 42, "12670817": 111, "1268794800": 311, "1268795100": 311, "1268798400": 311, "1268802000": 311, "127": [42, 48, 108, 175, 178, 180, 282], "1271252824": 176, "128": [42, 48, 111, 180, 282], "128452975": 315, "128452975x503157902": [305, 307, 312, 315], "128487316x502920929": [307, 315], "1285031914": 301, "128515259x503187188": [307, 315], "1285858800": 301, "1285858800\u306f2010": 301, "1289": 47, "128mb": 47, "129": [42, 48, 176], "1298": 47, "1299": 47, "12gb": 303, "12x12": 41, "13": [28, 35, 41, 43, 47, 48, 49, 52, 53, 96, 100, 111, 141, 142, 155, 156, 158, 168, 176, 177, 183, 186, 191, 193, 231, 232, 233, 234, 235, 237, 241, 247, 259, 268, 277, 296, 301, 305, 311], "130": 48, "1301": 42, "1302": 47, "1303": 47, "13036498944": 303, "1305": 47, "1307627409696579": 41, "131": [45, 48], "131072": [141, 281], "1312950803": [159, 250, 251, 253], "1312950804": [159, 250, 251], "1312950805": [159, 250, 251], "1312950808": [159, 253], "1312950809": [159, 251], "1312950810": [159, 251], "1313": 42, "1316": 42, "1317": 42, "13192": 176, "132": 48, "1320": 47, "13214": 176, "1324": 47, "1325": 47, "1326": 47, "13277": 176, "1327721626": 241, "1327721628": 241, "1327721639": 241, "1327721649": 241, "1327721664": 241, "1327809282": 241, "1327809294": 241, "1327809319": 241, "1327809339": 241, "1327809366": 241, "1328": 47, "13289": 176, "1329": 47, "13291000": 188, "133": [43, 48], "1330": 47, "1337566253": [42, 43, 44, 58, 91, 94, 95, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 177, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 245, 246, 247, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 286, 298, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "134": 48, "1340": 47, "1342": 47, "1343011270": 225, "135": 97, "1350490027": 315, "135631": 176, "135960000x": 188, "136": [48, 108], "1363": 47, "1365180540": 315, "1366": 43, "1367": 43, "137": 48, "1372": 47, "138": 48, "1386": 47, "1387": 47, "1388": 47, "1389": 47, "139": [36, 48, 315], "139000": 43, "1393": 47, "13\u7528rpm\u306e\u63d0\u4f9b": 37, "14": [12, 21, 26, 35, 41, 42, 43, 48, 49, 50, 52, 53, 54, 58, 100, 111, 112, 120, 123, 141, 142, 155, 158, 168, 175, 176, 183, 197, 225, 227, 228, 231, 232, 233, 234, 235, 236, 257, 258, 259, 277, 311], "140": 48, "1400": 158, "1405": 47, "1406": 47, "141": 48, "1416063600": 43, "1416150000": 43, "1418": 47, "1419": 47, "142": [48, 241], "1420": 47, "1421": 47, "1422928140": [135, 156], "1422928140000000": [135, 156], "1422935340": [41, 135, 156], "1422935340000000": [135, 156], "1422975600": [41, 135], "1422975600000000": 135, "1423": 47, "1427": [231, 232, 233, 234, 235, 258, 259], "1428": 47, "1429": 47, "1429687763": 175, "143": 48, "14320": 12, "1436281200": [134, 135], "1436284800": [134, 135], "1436288400": [134, 135], "1436313600": 45, "1436367600": [134, 135], "1436371200": [134, 135], "143660000x419009000": 188, "144": [48, 241], "1441761403": 158, "1448344437": 97, "1448344438": 97, "145": 48, "1451": 47, "1453": 44, "14541": 176, "1455": 47, "145508000x": 188, "14570": 176, "1458228600": 137, "1459846102": 99, "146": [48, 241], "1462": 45, "1462460400": 42, "146249000x": 311, "1462546799": 42, "1462546800": 42, "1462633200": 42, "1462719599": 42, "146566000x": [188, 311], "146607190x": 311, "146710080x": 311, "146741340x": 311, "146867000x": 311, "147": [48, 282], "148": [48, 166], "149": 48, "1490": 176, "14t00": 41, "14x14": 41, "15": [35, 39, 41, 43, 44, 45, 50, 51, 53, 100, 132, 134, 135, 141, 142, 155, 156, 168, 176, 183, 186, 224, 225, 231, 235, 259, 277, 305, 311], "150": [42, 48, 198, 286], "1500": 41, "150x100": 190, "151": 48, "15187": 176, "152489000x": 311, "152944": 108, "153": 91, "1531": 47, "1532": 47, "1534": 47, "1536": 44, "1538": 45, "154": 49, "1540383426": 315, "155": [41, 241], "1560": 44, "157": 241, "1573": 176, "158": 49, "1588258800": 211, "159": 241, "1590469700": 41, "1590647445": 41, "1594339851": 41, "15min": 51, "15t00": 41, "16": [35, 39, 41, 42, 43, 44, 45, 47, 50, 51, 52, 100, 111, 132, 134, 135, 141, 142, 155, 168, 173, 174, 183, 186, 225, 228, 231, 257, 277], "160": 49, "1601": 44, "1602724694": 41, "1604020694": 41, "1608087311": 41, "1608088617": 41, "1608088628": 41, "16114": 42, "1612504193": 42, "162": 49, "1624": [44, 166], "1624605205": 42, "1624686303": 42, "1625227424": 42, "163": 49, "16384": [141, 142], "1639037503": 42, "164": 49, "164097": 176, "1643165838": 42, "1643595008": 42, "1649760492": 315, "165": 42, "1650849001": 43, "16515": 42, "1654": 44, "1654237168": 43, "1655": 44, "1656473820": 43, "1656480220": 43, "166": 49, "1660": 166, "1663989875": 44, "1664781132": 43, "1666923364": [43, 44], "1666924069": [43, 44], "1666924357": [43, 44], "167": 49, "1672123380": 43, "1677829950": 44, "16779234": 111, "1678097412": 44, "168": [49, 175, 180], "1681692777": 315, "16842752": 141, "16843": 53, "16844": 53, "1686038572": 193, "169": 49, "1696558618": [94, 158, 177, 298, 308, 312], "16bit": 282, "16gb": 303, "16gib": 281, "16t00": 41, "16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059": 108, "17": [27, 35, 41, 43, 44, 47, 50, 52, 53, 54, 100, 111, 141, 142, 155, 168, 178, 277, 311], "170": 49, "171": 49, "1710401574": 45, "1714636915": 315, "1715155644": 45, "1715155680": 45, "1715155762": 45, "1715215640": 45, "1715220409": 45, "1715221627": 45, "1715222501": 45, "1715224057": 45, "1715224211": 45, "1716": 166, "1718": 176, "1719376617": 45, "1719377505": 45, "172": 49, "172310000": 188, "173": 49, "1738": 45, "17380": 176, "174": [49, 108], "17435": 176, "17480": 176, "17491": 176, "175": 49, "175904000x8464000": 188, "176": 49, "177": 49, "1774": 45, "178": 49, "179": 49, "17t00": 41, "18": [35, 41, 44, 47, 48, 50, 53, 74, 100, 137, 141, 142, 155, 156, 168, 174, 228, 277, 282, 301], "1800": 41, "1804289383": 315, "18149": 108, "182": 49, "1828": 166, "183": 49, "184": 49, "1845": 45, "185": 49, "18524211": 111, "185428000x": 188, "188": [49, 315], "189": 49, "18970": 176, "18998": 176, "19": [35, 41, 42, 47, 48, 50, 53, 54, 100, 137, 142, 155, 156, 168, 174, 211, 228, 277, 303], "190": [49, 53], "191": 49, "192": [49, 175, 180], "193": [49, 166], "194": 49, "195": 175, "1957747793": 315, "196": 49, "1964": 48, "1967": 176, "1967513926": 315, "197": 49, "1970": [42, 44, 95, 180, 225, 282, 305, 311], "198": 49, "19801": 176, "1988": 47, "1999": [42, 43, 48], "1b": 42, "1bit": 111, "1byte": [111, 298], "1cpu": 156, "1g": 49, "1gb": 50, "1o": 244, "1st": [111, 183], "1tib": [34, 161, 254], "1usec": 51, "1x139": 305, "1year": 173, "1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059": 93, "1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc": 39, "1\u3068command": 93, "1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059": 93, "1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f": 176, "1\u30ea\u30ea\u30fc\u30b9": 35, "1\u5358\u8a9e\u6271\u3044": 299, "1\u7cfb\u306e\u304a\u77e5\u3089\u305b": 35, "1\u884c\u76ee": 176, "2": [0, 12, 27, 28, 34, 35, 58, 74, 91, 93, 94, 95, 96, 97, 98, 99, 100, 108, 111, 114, 115, 116, 117, 118, 121, 122, 123, 124, 126, 128, 131, 132, 134, 135, 137, 141, 142, 149, 154, 155, 156, 157, 158, 159, 161, 163, 164, 168, 170, 171, 173, 175, 176, 177, 183, 184, 186, 188, 191, 192, 193, 194, 195, 201, 202, 203, 205, 206, 208, 209, 210, 212, 221, 224, 225, 226, 229, 230, 231, 232, 233, 234, 235, 237, 241, 243, 244, 245, 246, 247, 250, 253, 254, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 274, 275, 277, 279, 280, 281, 282, 286, 292, 298, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "20": [32, 41, 42, 43, 44, 45, 47, 48, 50, 52, 58, 100, 142, 155, 156, 168, 176, 183, 186, 195, 202, 211, 225, 251, 277, 311], "200": [41, 42, 43, 49, 50, 96, 111, 132, 134, 135, 156, 198, 205, 286, 305], "2000": [42, 43, 240], "20000": 311, "20010": 176, "2003": 56, "20041": 177, "2005": [35, 56], "2006": [35, 56], "2008": [39, 48], "2009": 35, "200byte": [205, 206], "201": 49, "2010": [35, 47, 49, 50, 176, 231, 232, 233, 234, 235, 258, 259, 301, 307, 311], "2011": [35, 228, 250, 251, 253], "2012": [12, 35, 41, 225], "2013": [35, 41, 303], "2014": [35, 42, 43, 231, 232, 233, 234, 235, 258, 259], "2015": [35, 41, 132, 134, 135, 156, 231, 232, 233, 234, 235, 258, 259], "20150708": [132, 134, 135], "20150709": [132, 134, 135], "20150814": 248, "2016": [35, 42, 43, 137], "2017": [35, 41, 43, 44, 132, 134, 135], "2018": [35, 54, 212], "2019": [35, 41, 173], "202": [49, 176], "2020": [35, 211], "2021": [35, 45, 166], "2022": [27, 35, 44, 231, 232, 233, 234, 235, 258, 259], "2023": [22, 23, 27, 35, 111, 174], "2024": [12, 35, 56], "2025": [35, 228], "203": 49, "2043": [231, 232, 233, 234, 235, 258, 259], "2044897763": 315, "2048": [42, 49], "204835": 174, "2054": [48, 307, 315], "206": 49, "2078": 45, "207b": [231, 232, 233, 234, 235, 258, 259], "208": 49, "208b": [231, 232, 233, 234, 235, 258, 259], "209": 43, "2097": 45, "20km": 311, "21": [27, 42, 43, 44, 45, 47, 100, 111, 168, 174, 183, 186, 202, 211, 277, 301], "210": [49, 96], "2104": 45, "212": 49, "2121": 45, "21252": 45, "2147483643": 225, "2147483648": [44, 142, 155, 225], "215": 49, "216": [49, 108], "216639": 158, "2168": 45, "217": 49, "218": 176, "21th": 48, "21x21": 41, "21x9": 41, "22": [32, 35, 41, 42, 43, 44, 45, 47, 74, 100, 111, 115, 132, 134, 135, 141, 143, 156, 166, 168, 173, 176, 211, 245], "220": [42, 44, 49], "221": 49, "2211": 46, "2212": [231, 232, 233, 234, 235, 258, 259], "2219": [231, 232, 233, 234, 235, 258, 259], "2222": [53, 275], "223": [49, 282], "225": 37, "227": 49, "22c5": [231, 232, 233, 234, 235, 258, 259], "22x10": 41, "23": [32, 35, 42, 43, 44, 45, 50, 100, 132, 135, 168, 211, 225, 241, 250, 251, 253, 275], "230": 155, "23017": 42, "2307": 49, "231": 155, "232": 155, "233": [97, 155], "237": [50, 108], "239": 49, "23bit": 111, "23t02": 225, "24": [12, 35, 42, 50, 100, 111, 142, 158, 168, 176, 250, 251], "240": 49, "242": 49, "2438": 49, "24byte": 298, "24t18": 173, "25": [35, 42, 48, 100, 108, 111, 134, 135, 156, 168, 228, 250, 251, 305], "250": [41, 42, 198], "2500": [231, 232, 233, 234, 235, 258, 259], "2501": [231, 232, 233, 234, 235, 258, 259], "253": 49, "254": 42, "2546": 49, "255": [42, 111, 282], "255829000": 311, "256": [51, 91, 111, 112, 114, 141, 142, 155, 164, 175, 211], "256gib": 34, "256kb": 303, "256kib": 281, "257": [41, 112, 114, 142, 155], "257662232kbyte": 176, "258": [112, 142, 155], "25846": 176, "259": [49, 142, 155, 315], "26": [35, 42, 100, 111, 168, 225], "2601": 176, "26057": [159, 250, 251], "262144": 141, "26298": 176, "264": 49, "26542080": 141, "26568": 108, "26595": 176, "266": 52, "266228000": 311, "266280000": 311, "266315480": 311, "266319590": 311, "266422000": [188, 311], "267021260": 311, "268": [34, 248, 254], "268052438": 301, "268435455": 254, "268435456": 254, "26897": 176, "27": [12, 35, 42, 43, 44, 100, 168, 228, 315], "270": 49, "27018": 176, "27025": 176, "271": 49, "27153": 176, "272": 176, "273053": 176, "2744": 176, "27446": 176, "27596": 176, "276": 50, "276421": 228, "276553": 228, "278549": [43, 44], "279": 43, "28": [34, 35, 42, 44, 45, 100, 134, 135, 156, 168, 253, 254], "283": 50, "288": 166, "29": [34, 35, 58, 91, 94, 100, 111, 132, 134, 135, 156, 158, 168, 177, 186, 225, 251, 254, 298, 308, 312], "290": [53, 74], "29025": 176, "29195195": 12, "292570838": 301, "29289245605469e": 97, "2929": [58, 94, 111, 115, 118, 132, 134, 135, 137, 143, 156, 158, 163, 177, 180, 298, 308, 312], "294": [41, 282], "295": 282, "296": 50, "2a": 166, "2byte": [100, 298], "2ch": 56, "2channel": 56, "2e31": [231, 232, 233, 234, 235, 258, 259], "2groonga": 166, "2lib": 166, "2nd": [43, 53, 156], "2rd": 156, "2rroonga": 42, "2st": 156, "2thread": 166, "2x": 39, "2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059": 93, "2\u30ea\u30ea\u30fc\u30b9": 35, "2\u884c\u76ee": 176, "3": [0, 11, 12, 17, 27, 29, 35, 56, 91, 93, 94, 96, 99, 100, 106, 111, 114, 121, 122, 123, 125, 132, 134, 135, 137, 138, 141, 142, 154, 155, 156, 158, 159, 164, 166, 167, 168, 170, 173, 175, 176, 177, 178, 183, 193, 194, 197, 198, 201, 203, 204, 205, 206, 208, 209, 210, 211, 212, 221, 224, 225, 226, 229, 231, 232, 233, 234, 235, 236, 240, 244, 245, 246, 247, 250, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 274, 275, 276, 277, 278, 279, 280, 281, 283, 286, 296, 298, 299, 301, 305, 306, 307, 308, 310, 311, 312, 313, 315], "30": [34, 35, 42, 47, 100, 120, 137, 168, 174, 186, 211, 244, 251, 254], "300": [41, 42, 120, 132, 134, 135], "3000": [42, 50], "3001": 50, "3002": 50, "303": 91, "304533": 43, "30547": 176, "3086": 176, "30ac": 230, "30fb": [231, 232, 233, 234, 235, 258, 259], "30fc": [231, 232, 233, 234, 235, 258, 259], "31": [35, 47, 100, 111, 134, 135, 156, 168], "313": 228, "313401": 228, "3137": 176, "314e": 225, "316": 315, "317": 50, "317582": 45, "31st": 111, "31t22": 42, "32": [23, 28, 32, 33, 42, 43, 44, 45, 47, 53, 54, 100, 111, 141, 142, 168, 176, 225, 282], "3231": 53, "323451": 45, "327": 41, "32768": 225, "32bit": [41, 48, 50, 51, 111, 282], "32byte": 50, "32gib": 281, "32nd": 111, "33": [42, 47, 91, 100, 142, 166, 168, 250, 251, 253], "330": 51, "332": 51, "332274": 45, "33248": 176, "3326656": 41, "33282": 142, "33285": 176, "336": 50, "338": 50, "33x12": 41, "34": [42, 47, 52, 100, 156, 166, 168, 211, 275, 301, 303], "3405": 43, "340685": 45, "345734": 228, "348": 50, "35": [36, 41, 42, 100, 134, 135, 156, 168, 178, 228, 305, 315], "351": 50, "353": 50, "354": 50, "355": 50, "355064": 193, "357": 50, "358": 50, "359464": 176, "36": [42, 100, 156, 168], "360": 41, "361": 41, "3616": 49, "363": 50, "364602632": 301, "368": 50, "37": [42, 100, 168, 241], "372": 282, "375": 50, "378": 50, "379": 50, "38": [42, 43, 44, 49, 100, 168, 241], "380": 50, "380738": 42, "38095511": 111, "381": 50, "382": 50, "385": 52, "39": [41, 42, 100, 168, 228], "3901936": 228, "3920288775949": 41, "393": 50, "396": 50, "39600000000": 41, "397": 50, "399": [42, 50], "3dai": 173, "3rd": [48, 51, 53, 156], "3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408": 299, "3\u30ea\u30ea\u30fc\u30b9": 35, "3\u884c\u76ee": 176, "4": [27, 31, 35, 74, 93, 94, 96, 98, 100, 109, 111, 121, 124, 127, 132, 135, 141, 142, 149, 150, 153, 155, 156, 158, 167, 168, 170, 173, 175, 176, 183, 192, 193, 196, 198, 201, 202, 206, 210, 212, 219, 224, 225, 226, 237, 244, 245, 247, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 274, 275, 277, 278, 279, 280, 281, 282, 286, 298, 307, 308, 310, 311, 313, 315], "40": [42, 43, 74, 100, 132, 176, 186, 228, 315], "400": [41, 42, 48, 49, 51, 198, 286], "4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059": 12, "400m": 41, "401": 228, "403": 50, "405": 50, "406": 50, "406149": 41, "4063": 240, "407": 50, "408": 51, "409": 50, "4091b": [117, 171], "4096": [43, 47, 48, 74, 98, 141, 142, 155, 228], "4096byte": [50, 254], "4097byte": 254, "41": [42, 43, 52, 100, 111, 134, 135, 156, 225, 315], "410": 41, "4102": 301, "415": 50, "417": 50, "41741": 43, "41742": 43, "418": 45, "419": 50, "4194304": 303, "42": [42, 74, 100, 228, 315], "420": 50, "424238335": 315, "4281": 176, "429": 54, "4294967185": 108, "4294967295": 141, "43": [42, 43, 100], "431": 37, "432017408": 303, "435": [34, 248, 254], "436218": 225, "436218z": 225, "437": 44, "43783": 97, "438": [39, 44], "4387": 301, "43x12": 41, "44": [42, 74, 100, 211], "4400": 301, "44001770019531e": 241, "440753": 41, "440760000": 188, "446": 282, "447": 50, "448": 50, "448064902": 301, "45": [42, 100, 176, 275, 315], "450": 50, "4505": 108, "452": 50, "4526677": 111, "454": 50, "455": [34, 248, 254], "456": 50, "457": 50, "458": 50, "458756": 228, "458829": 228, "458856": 228, "458875": 228, "458986": 228, "459": 51, "4592401": 111, "45ea3034": 228, "46": [42, 43, 74, 100, 315], "460": [37, 51], "461000": 188, "463": 51, "464": 51, "4648070": 111, "4652": 166, "4658217": 111, "47": [41, 42, 47, 100, 176], "472": 51, "4723879": 111, "476": 51, "47719": 176, "479": 51, "48": [42, 100, 141, 142], "481": 51, "483": 282, "484": 51, "48472": 176, "485": [108, 174], "48509": 176, "48554": 176, "48607": 176, "487": 51, "49": [41, 42, 100, 135, 141, 142, 156], "490": 51, "49152": [142, 175], "49153": 142, "493": 51, "494": 52, "495": 51, "496": 51, "496007": 45, "497": 51, "4byte": 298, "4e86e700": 303, "4gib": [34, 42, 43, 51, 161, 254, 298], "4kib": [34, 41, 45, 50, 58, 115, 116, 117, 171, 254], "4mib": 141, "4th": 156, "4\u30ea\u30ea\u30fc\u30b9": 35, "4\u884c\u76ee": 176, "5": [11, 12, 26, 35, 37, 55, 58, 74, 85, 91, 93, 96, 97, 99, 100, 110, 111, 115, 116, 117, 118, 122, 124, 126, 128, 132, 133, 134, 135, 136, 137, 140, 141, 142, 144, 145, 146, 151, 152, 153, 155, 156, 158, 167, 168, 171, 173, 175, 183, 186, 192, 193, 194, 195, 196, 202, 203, 212, 219, 221, 224, 225, 231, 236, 237, 244, 246, 247, 248, 257, 258, 259, 262, 264, 265, 266, 267, 268, 270, 271, 274, 275, 277, 279, 280, 305, 306, 307, 308, 311, 313, 315], "50": [42, 52, 91, 100, 141, 183, 186, 195, 196, 198, 205, 209, 211, 251], "500": [41, 49, 183, 196], "5000": [307, 315], "50000": 307, "502": 74, "503157902": 315, "504": 51, "506": 91, "507": [51, 158], "508": [37, 51], "5095787": 41, "51": [42, 91, 100, 141, 202], "510": 91, "511": 51, "512": 141, "51265384": 111, "514": [37, 176], "515": [37, 51, 111], "517": 51, "518": 51, "518000": 166, "519": 51, "52": [42, 100, 251, 315], "520": 41, "522": 51, "523": 51, "524": 51, "524027": 43, "524084839": 301, "524290": 74, "526": 51, "527": 51, "528": 51, "529": 51, "53": [42, 48, 100], "530": 41, "531": 51, "532": 51, "533": 51, "534": 51, "535": 282, "536": [34, 254], "5367431640625e": 241, "537505": 45, "538": 37, "538532": 42, "539": 51, "54": [42, 100, 176], "540": [37, 42], "541": [37, 51], "542": 51, "54311": 241, "544": 51, "545": 51, "5453": 176, "546": 51, "548": 51, "549": 51, "55": [42, 91, 100, 111, 137, 141, 315], "550": 51, "551": [51, 282, 303], "5513765": 41, "553": 51, "555": 37, "55541": 199, "5558225": 188, "559": 51, "55x11": 41, "56": [42, 100, 305], "560": 51, "560146": 42, "56057": [159, 250, 251], "56058502197266e": 241, "563": 37, "564": 51, "564207350021": 36, "565": 91, "566": 91, "567": 37, "56880000x": 188, "57": [42, 100, 241, 315], "571": 37, "574": 166, "576": 51, "578": 37, "5782": 241, "579": 51, "57f2ff87d45d7f0f525e2216": 51, "58": [42, 100], "580": 51, "58043f77614116a2568d529c": 51, "5807750": 188, "581": 51, "582": 51, "582000": 166, "583": 51, "5836138": 188, "584": 51, "586": 51, "587": 51, "589": 51, "59": [42, 100, 132, 135], "590": 51, "591": 51, "591000": 166, "591901": 43, "592": 51, "592000": 166, "593": 51, "593000": 166, "594000": 166, "5956": 176, "596": [37, 108], "596516649": 315, "597000": 166, "59777": 108, "599": 51, "59\u74b0\u5883\u306b\u304a\u3044\u3066": 39, "5b": [117, 171], "5th": 156, "5week": 173, "5\u30ea\u30ea\u30fc\u30b9": 35, "6": [35, 74, 94, 96, 99, 100, 108, 111, 125, 132, 133, 134, 135, 137, 140, 141, 142, 143, 146, 153, 155, 156, 157, 159, 160, 163, 166, 168, 175, 183, 186, 187, 191, 192, 193, 207, 209, 211, 212, 222, 224, 225, 244, 257, 258, 259, 262, 264, 267, 268, 270, 271, 274, 275, 277, 283, 285, 307, 308, 313, 315], "60": [74, 100, 158, 186, 282], "601": 51, "601000": 166, "6020": 176, "603000": 166, "607": 51, "607000": 166, "608": 37, "6084117": 41, "61": [48, 100], "610000": 166, "61095": 241, "611000": 166, "612": 37, "613": 37, "615": 282, "617": [37, 51], "618": 51, "619": 51, "61eaaa306d9ba23328d23ce1": 42, "62": [48, 100], "620": 51, "622": 51, "623": 52, "624": [37, 51], "625": 52, "626": 51, "627": 52, "628": [37, 51], "628048": 45, "629": 52, "63": [48, 58, 100, 156, 225], "630": 37, "633": 52, "63304": 99, "634": 52, "64": [21, 23, 24, 28, 32, 33, 51, 74, 100, 111, 134, 135, 141, 142, 155, 156, 282], "641078": 42, "642": 45, "64263": 45, "6449499130249023": 197, "646": 52, "647": 282, "648": 282, "64bit": [50, 141, 282], "64kib": 50, "65": [100, 141, 142, 155, 186, 282], "652696": 44, "653039": 43, "6540993452072144": 197, "65465": 298, "65466": 298, "65467": 298, "65468": 298, "65469": 298, "65470": 298, "65471": 298, "65472": 298, "65473": 298, "65474": 298, "65475": 298, "65476": 298, "65477": 298, "65478": 298, "65479": 298, "65480": 298, "65481": 298, "65482": 298, "65483": 298, "65484": 298, "65485": 298, "65486": 298, "65487": 298, "65488": 298, "65489": 298, "65490": 298, "65491": 298, "65492": 298, "65493": 298, "65494": 298, "65495": 298, "65496": 298, "65497": 298, "65498": 298, "65499": 298, "65500": 298, "65501": 298, "65502": 298, "65503": 298, "65504": 298, "65505": 298, "65506": 298, "65507": 298, "65508": 298, "65509": 298, "65510": 298, "65511": 298, "65512": 298, "65513": 298, "65514": [45, 298], "65515": 298, "65516": 298, "65517": 298, "65518": 298, "65519": 298, "65520": 298, "65521": 298, "65522": 298, "65523": 298, "65524": 298, "65525": 298, "65526": 298, "65527": 298, "65528": 298, "65529": 298, "65530": [281, 298], "65531": 298, "65532": 298, "65533": 298, "65534": 298, "65535": 298, "65535byte": 50, "65536": [141, 142, 155, 281, 303], "65662": 111, "65724": 111, "65816": 111, "6581704020500183": 197, "66": [100, 155], "660": 37, "661": 39, "669": 37, "67": [100, 111, 155, 275], "6720": [307, 315], "6789": 275, "68": [45, 100, 155, 156], "6813819": 315, "6813819x139": [305, 315], "683": 54, "685": 53, "686": 37, "68693": 176, "6880439": 188, "689": 37, "69": [100, 155], "690": 37, "6909211x139": 315, "691": 52, "691991": 42, "695": 52, "6954581363924": 36, "696": 52, "698": 52, "699": 52, "6elz": 49, "6gib": 281, "6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 37, "6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull": 12, "6\u30ea\u30ea\u30fc\u30b9": 35, "6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059": 14, "7": [17, 26, 35, 74, 96, 100, 110, 111, 118, 122, 124, 132, 134, 135, 136, 141, 142, 155, 156, 158, 161, 167, 168, 173, 175, 176, 195, 196, 198, 209, 212, 220, 222, 224, 225, 235, 241, 244, 245, 262, 264, 267, 268, 270, 271, 274, 275, 277, 284, 285, 287, 288, 305, 307, 308, 315], "70": [41, 54, 100, 155, 158], "700": 52, "7002581": 315, "70098944": 43, "701": 52, "702": 52, "703": [37, 52], "706": 52, "708": 52, "70845": 175, "709": 282, "709869": 228, "71": [100, 155], "710": 41, "710013": 228, "71236": 108, "71252824": 176, "713": 37, "715882": 41, "7163": 301, "719885386": 315, "72": [100, 141, 142, 155], "7209": 51, "721": 52, "723": 37, "7238996": 111, "725": 52, "7293": 50, "729597": 42, "73": [100, 155, 176], "730": 52, "733": 52, "734894": 43, "735": 52, "7361": 108, "737014": 176, "74": [74, 100, 155], "740": 52, "741": [34, 176, 254], "743": 52, "744": 282, "7470239": 108, "748": 37, "75": [100, 155, 228], "750": 37, "751": [37, 52], "7529": 52, "754": [111, 282], "757": 37, "758": 39, "76": [100, 108, 155], "760": 52, "76057": [159, 250, 251], "762519": 176, "766": 39, "7660839": [305, 315], "767": [52, 282], "768": 282, "77": [48, 99, 100, 153, 155, 268], "770": 228, "770243": 51, "775": [52, 282], "776": 37, "777": 268, "78": [100, 155, 275], "780": 52, "781": 52, "783368690": 315, "787": 52, "79": [48, 100, 155], "790": 37, "794": 37, "799167": 50, "7b": [197, 227], "7d": 173, "7e": 176, "7h": 51, "7\u30ea\u30ea\u30fc\u30b9": 35, "8": [6, 22, 23, 34, 35, 42, 55, 74, 96, 100, 111, 124, 125, 132, 134, 135, 141, 142, 155, 156, 158, 159, 160, 168, 170, 175, 176, 180, 184, 186, 212, 219, 224, 225, 230, 232, 236, 241, 244, 258, 262, 264, 267, 268, 270, 271, 274, 275, 277, 286, 292, 307, 308, 315], "80": [43, 48, 100, 155, 175, 312], "800": 41, "802": 37, "805990": 176, "806": 52, "807": [37, 282], "808": 282, "8080": 180, "80ghz": 176, "81": [48, 55, 155], "813529": 174, "815": [34, 254], "8167": 301, "8192": 50, "82": [48, 155], "820": 53, "823": [34, 254], "82675": 241, "82pre": 55, "83": [48, 155], "8308622": 111, "831495": 176, "833": 39, "834": 38, "8342565": 41, "835218": 303, "837": 38, "84": [48, 155, 241, 282], "841000": 43, "84187": 241, "842000": 43, "846930886": 315, "85": [48, 53, 155, 302], "854": 282, "858": 53, "86": [48, 155], "8601": [42, 43, 173, 225], "86057": [159, 250, 251, 253], "86058": 250, "86059": 250, "86060": 250, "87": [48, 155, 166], "870": [34, 254], "878": 39, "88": [48, 155, 211], "880": 39, "883798": [43, 44], "8868": 53, "887": 39, "888": 39, "89": [48, 155, 275], "890": 39, "890356": 111, "892": 39, "892326": 43, "893": 39, "8935": 176, "894": 39, "895": 39, "89858": [42, 43, 44, 58, 91, 94, 95, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 177, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 245, 246, 247, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 286, 298, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "8988854": 166, "899": 39, "8990": 176, "8bit": [111, 282], "8byte": [34, 298], "8x8": 41, "8\u306b\u5bfe\u5fdc": 37, "8\u30ea\u30ea\u30fc\u30b9": [12, 35], "9": [12, 22, 23, 34, 35, 37, 85, 94, 96, 97, 98, 100, 108, 109, 111, 123, 124, 125, 127, 132, 134, 135, 137, 141, 142, 149, 153, 155, 156, 157, 158, 161, 166, 168, 170, 173, 175, 177, 181, 188, 205, 224, 225, 228, 229, 230, 232, 233, 234, 241, 244, 254, 258, 262, 264, 267, 268, 271, 274, 275, 277, 282, 286, 298, 301, 305, 306, 308, 312, 315], "90": [48, 55, 155, 156], "900": 41, "902": 315, "904": 54, "909": [39, 54], "91": [48, 156], "911": 54, "912": [34, 39, 54, 254], "913": 54, "913053": 44, "915408": 176, "92": [48, 241], "921248": 174, "9223372036854775807": 225, "9223372036854775808": 225, "924836": 41, "92619": 180, "929": 315, "93": [48, 54], "934": 39, "935": 39, "936": 54, "93850": 180, "93933868408203e": 241, "94293": 180, "9430448": 41, "94392": 108, "944": 39, "94734": 180, "95": 48, "951": 54, "9511": 54, "9513": 54, "95147": 180, "9516": 54, "952": 39, "95553": 180, "958": 54, "95959": 180, "96": [48, 54], "96000": 180, "9605": 42, "967": 282, "96857": [159, 250, 251], "97": [48, 174], "975": 315, "975mbyte": 176, "979517": 45, "98": [48, 50], "986": 39, "9876": 42, "99": 48, "993": [47, 49], "994": 47, "995": 48, "996": 50, "997": 176, "999": [53, 156], "9999": 156, "99999": 53, "999999": 42, "9x10": 41, "9x9": 41, "A": [0, 21, 27, 28, 34, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 74, 85, 87, 91, 98, 111, 124, 129, 138, 149, 156, 159, 161, 163, 171, 175, 179, 180, 186, 205, 206, 208, 210, 224, 225, 228, 229, 237, 239, 243, 244, 255, 262, 277, 282, 298, 303, 305, 308], "AND": [42, 45, 48, 49, 51, 52, 54, 156, 183, 195, 196, 202, 223, 315], "AS": 156, "And": [18, 31, 42, 49, 110, 111, 124, 153, 156, 168, 178, 203, 231, 232, 233, 234, 235, 243, 254, 282, 310, 311, 313], "As": [1, 3, 43, 44, 45, 52, 56, 111, 202, 276, 278, 296, 303, 306, 307, 308, 310, 311, 315], "At": [41, 42, 56, 106, 310], "BY": 306, "Be": [156, 298], "But": [6, 7, 8, 16, 17, 23, 39, 42, 43, 44, 45, 49, 50, 52, 53, 54, 58, 91, 111, 114, 135, 137, 141, 143, 149, 156, 164, 170, 188, 224, 225, 226, 227, 229, 243, 244, 245, 247, 262, 264, 272, 277, 281, 292, 296, 310], "By": [0, 18, 41, 42, 43, 45, 48, 49, 50, 51, 56, 177, 198, 244, 253, 311, 313], "For": [0, 2, 3, 8, 18, 22, 27, 31, 33, 34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 68, 91, 95, 103, 110, 111, 121, 124, 125, 132, 134, 135, 137, 138, 141, 142, 143, 155, 156, 157, 158, 159, 161, 166, 168, 170, 173, 175, 177, 182, 183, 193, 196, 203, 206, 210, 219, 223, 224, 225, 226, 227, 229, 231, 235, 237, 240, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 260, 262, 264, 272, 274, 275, 276, 278, 281, 292, 305, 306, 307, 308, 309, 310, 313, 314, 315], "IN": 55, "IT": 307, "If": [3, 6, 7, 8, 13, 17, 18, 21, 24, 25, 27, 28, 30, 31, 32, 33, 34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 64, 74, 81, 85, 90, 91, 94, 95, 96, 98, 99, 100, 102, 103, 104, 105, 106, 107, 110, 111, 112, 114, 115, 117, 118, 121, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 137, 138, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 155, 156, 157, 158, 160, 161, 163, 164, 166, 167, 168, 170, 173, 175, 177, 178, 179, 180, 181, 183, 184, 186, 188, 191, 192, 193, 195, 196, 197, 198, 205, 206, 208, 209, 210, 219, 224, 225, 226, 228, 229, 231, 232, 233, 234, 235, 237, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 262, 264, 274, 275, 279, 280, 281, 282, 286, 290, 292, 296, 298, 303, 305, 306, 308, 310, 312, 313, 315], "In": [0, 17, 27, 31, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 58, 84, 87, 91, 95, 111, 121, 124, 132, 134, 135, 143, 149, 156, 161, 163, 173, 175, 177, 180, 181, 183, 186, 193, 196, 202, 205, 206, 208, 209, 210, 224, 225, 226, 231, 237, 241, 244, 253, 262, 264, 272, 274, 276, 277, 278, 298, 305, 306, 307, 308, 310, 311, 313, 314, 315], "It": [6, 17, 19, 23, 27, 31, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 64, 68, 74, 81, 84, 85, 87, 90, 91, 94, 95, 96, 99, 100, 107, 111, 112, 114, 116, 118, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 149, 152, 153, 155, 156, 158, 159, 161, 164, 165, 167, 168, 169, 171, 173, 175, 177, 180, 181, 183, 186, 188, 191, 192, 193, 194, 196, 197, 201, 202, 203, 205, 207, 210, 211, 212, 219, 220, 223, 224, 225, 228, 229, 230, 231, 235, 236, 239, 243, 244, 245, 246, 247, 248, 250, 251, 253, 254, 260, 262, 264, 268, 271, 274, 275, 281, 282, 290, 291, 292, 302, 306, 308, 310, 311, 314], "Its": [68, 85, 111, 155, 175, 224, 225], "NEAR": [195, 202, 219], "NOT": [42, 50, 156, 202, 223], "Near": [44, 51, 202], "No": [45, 47, 50, 53, 156, 175, 231, 232, 233, 234, 235, 244, 257, 258, 259, 272, 274, 275, 302], "Not": [135, 156, 202, 251, 298], "ON": 27, "OR": [42, 43, 44, 45, 47, 49, 132, 156, 193, 196, 202, 203, 223, 243, 247, 298, 314, 315], "Of": 306, "On": [0, 31, 43, 51, 111, 156, 175, 177, 183, 196, 202, 210, 305, 310], "One": [0, 42, 56, 74, 91, 156, 163, 178, 180, 181, 205, 206, 248, 276, 310, 315], "TO": 292, "That": [44, 96, 308], "The": [0, 6, 7, 8, 17, 18, 22, 27, 31, 32, 34, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 68, 74, 81, 85, 91, 94, 95, 96, 98, 107, 110, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 149, 150, 152, 153, 155, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 171, 173, 175, 177, 180, 183, 184, 186, 188, 191, 192, 193, 195, 196, 197, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 224, 225, 228, 230, 231, 237, 239, 240, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 277, 278, 279, 280, 282, 286, 292, 295, 296, 298, 302, 305, 306, 307, 308, 310, 311, 312, 315], "Then": [0, 17, 27, 29, 30, 33, 42, 43, 44, 91, 111, 156, 177, 183, 196, 250, 276, 278, 298, 302, 303, 305, 306, 307, 310, 311, 314, 315], "There": [1, 2, 3, 8, 13, 19, 23, 24, 25, 28, 32, 41, 45, 47, 49, 52, 54, 68, 74, 90, 91, 110, 111, 115, 116, 117, 118, 121, 122, 124, 125, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 149, 150, 153, 155, 156, 157, 158, 160, 161, 163, 165, 166, 167, 168, 170, 175, 177, 180, 181, 183, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 208, 210, 211, 219, 221, 223, 224, 225, 229, 231, 232, 233, 234, 235, 237, 244, 245, 246, 247, 258, 259, 260, 261, 262, 272, 274, 275, 276, 281, 292, 296, 298, 303, 308, 310, 311, 312, 315], "These": [0, 18, 39, 41, 42, 43, 45, 111, 156, 171, 175, 205, 206, 307, 308], "To": [18, 31, 39, 42, 49, 53, 56, 94, 111, 122, 124, 133, 156, 177, 197, 198, 208, 209, 211, 212, 219, 221, 222, 223, 224, 247, 250, 251, 253, 282, 292, 303, 305, 306, 314], "WITH": [45, 231, 235], "With": [21, 22, 23, 41, 43, 45, 52, 91, 156, 243, 311], "_": [39, 44, 89, 111, 132, 134, 135, 156, 161, 248, 262, 275], "_0ba": 166, "_0bg": 166, "_0cc": 166, "_20160320": 137, "__": 275, "___": 275, "__scrt_common_main_seh": 166, "__uint32_t": 50, "_avg": [135, 156], "_c": 166, "_column": 237, "_config": 12, "_dataset": [179, 181], "_id": [41, 42, 43, 44, 45, 49, 50, 52, 58, 89, 91, 95, 110, 111, 114, 121, 122, 134, 135, 137, 156, 159, 164, 170, 183, 186, 195, 196, 201, 224, 225, 226, 229, 244, 250, 251, 253, 260, 261, 276, 278, 301, 306, 307, 308, 310, 312, 313, 314, 315], "_id\u306e\u5024\u306f\u4e0d\u5909\u3067": 89, "_kei": [41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 58, 89, 91, 94, 95, 110, 111, 112, 114, 121, 122, 123, 125, 132, 134, 135, 141, 152, 155, 156, 159, 163, 164, 165, 170, 177, 180, 183, 184, 186, 188, 194, 195, 196, 198, 201, 208, 209, 210, 212, 219, 221, 224, 225, 229, 237, 240, 245, 250, 251, 253, 261, 278, 281, 292, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "_key\u30ab\u30e9\u30e0\u306e\u51fa\u529b\u306b\u5bfe\u5fdc": 36, "_max": [135, 156], "_min": [135, 156], "_name": [111, 161], "_nsubrec": [41, 43, 44, 49, 89, 135, 156, 306, 307, 311], "_post": 12, "_score": [39, 41, 42, 43, 44, 45, 47, 48, 50, 53, 54, 89, 91, 96, 132, 134, 135, 156, 159, 180, 188, 202, 203, 225, 245, 246, 247, 250, 251, 253, 301, 307, 308, 310, 311, 315], "_set_valu": 40, "_socr": 41, "_sum": [52, 135, 156], "_valu": [41, 48, 49, 89, 135, 156], "_w": 262, "_work": 166, "_yyyymmdd": [132, 134, 135, 137], "a01": 166, "a1b2c3d": 224, "a9zawa": 54, "a_part_of_speech": 274, "aaa": [44, 54, 166], "aaaxxxbbbcdefghi": 44, "aardvark": [52, 53], "aa\u3042": 44, "ab": [44, 252], "aba": [306, 308, 315], "abandon": 56, "abbrev": 188, "abc": [41, 44, 50], "abc123456789def": [41, 44], "abc123456789defg": 44, "abc12345678def": [41, 44], "abc1de2def": [41, 44], "abcd": [44, 138], "abcdef": [41, 44], "abcxyzdef": [41, 44], "abebcdxyzdef": 41, "abi": 50, "abl": [41, 42, 43, 44, 45, 96, 111, 141, 156, 161, 195, 244, 245, 246, 247, 248, 276], "abort": 49, "about": [2, 7, 14, 17, 18, 19, 20, 21, 22, 23, 24, 25, 28, 31, 32, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 85, 91, 92, 95, 98, 100, 106, 107, 111, 112, 114, 115, 116, 117, 121, 122, 123, 124, 126, 127, 128, 129, 132, 134, 135, 137, 138, 139, 142, 149, 152, 153, 154, 155, 156, 158, 159, 161, 163, 165, 168, 169, 170, 173, 175, 177, 180, 182, 186, 188, 196, 202, 203, 210, 224, 225, 228, 238, 239, 243, 244, 245, 246, 247, 250, 251, 253, 262, 281, 283, 292, 303, 304, 310, 311, 312, 315], "abov": [17, 18, 21, 31, 41, 42, 43, 44, 45, 47, 50, 51, 54, 111, 124, 135, 153, 156, 161, 173, 177, 180, 183, 194, 195, 196, 202, 210, 229, 231, 232, 233, 234, 235, 237, 243, 250, 251, 253, 262, 272, 274, 275, 276, 278, 302, 306, 308, 310, 311, 314, 315], "absent": 56, "absolut": [41, 52, 111, 144, 145, 151, 161, 198], "ac": [31, 237], "acccept": 54, "acccess": 296, "accept": [0, 39, 42, 44, 45, 47, 49, 50, 51, 53, 54, 98, 99, 111, 125, 153, 156, 157, 170, 173, 175, 180, 183, 188, 224, 225, 276, 292, 298, 302, 308, 310, 311, 314, 315], "access": [0, 17, 18, 22, 39, 47, 48, 49, 50, 51, 52, 58, 60, 105, 114, 156, 164, 177, 178, 250, 251, 253, 281, 291, 296, 298, 304, 305], "accessor": [41, 50, 51, 53, 54], "accident": 48, "accord": [41, 188, 305], "accordingli": 177, "account": [2, 49], "accross": 47, "accuml": 48, "accumul": [56, 156], "accur": [0, 42, 205, 206], "accuraci": [41, 56], "achiev": 56, "acquir": [41, 42, 50, 124, 126, 128, 149, 150], "acquisit": 44, "acronym": [290, 298], "across": 188, "action": [12, 18, 43, 48, 111], "actions\u304c\u6210\u529f\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059": 12, "actions\u3067\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u304c\u81ea\u52d5\u751f\u6210\u3055\u308c\u305f\u306e\u3092\u78ba\u8a8d\u3057\u305f\u3089\u4ee5\u4e0b\u306e\u624b\u9806\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3057\u307e\u3059": 12, "actions\u3067\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u81ea\u52d5\u751f\u6210\u3055\u308c\u305f\u306e\u3092\u78ba\u8a8d\u3057\u305f\u3089\u4ee5\u4e0b\u306e\u624b\u9806\u3067": 12, "actions\u3067\u751f\u6210\u3055\u308c\u307e\u3059": 12, "actions\u3067\u751f\u6210\u3055\u308c\u308b\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059": 12, "actions\u3067\u751f\u6210\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u3092": 12, "actions\u3067\u81ea\u52d5\u751f\u6210\u3055\u308c\u307e\u3059": 12, "actions\u3078\u306e\u30ea\u30f3\u30af\u3092\u4f5c\u6210\u3057\u307e\u3059": 12, "actions\u3092\u6709\u52b9\u306b\u3057\u3066\u304a\u304d\u307e\u3059": 12, "activ": [42, 53, 123], "actual": [17, 18, 44, 45, 48, 49, 51, 52, 94, 96, 132, 134, 135, 137, 156, 173, 177, 245, 305, 308], "ad": [0, 18, 28, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 74, 85, 96, 97, 98, 99, 110, 111, 112, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 146, 149, 150, 152, 153, 155, 156, 157, 158, 160, 161, 163, 166, 167, 168, 170, 171, 173, 175, 184, 186, 187, 191, 192, 193, 195, 196, 197, 198, 203, 205, 207, 208, 209, 211, 212, 219, 220, 221, 222, 224, 225, 226, 227, 229, 231, 232, 233, 234, 235, 237, 244, 246, 247, 248, 255, 257, 258, 259, 261, 277, 282, 283, 285, 286, 287, 288, 298, 306, 310, 313], "adachi": 56, "adag": 56, "add": [3, 6, 12, 21, 27, 31, 32, 34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 111, 125, 134, 155, 156, 168, 175, 177, 182, 201, 225, 243, 248, 254, 274, 277, 283, 305, 306, 307, 308, 310, 313], "addit": [0, 22, 24, 25, 27, 28, 31, 32, 41, 42, 43, 44, 57, 111, 138, 156, 168, 186, 224, 231, 252, 260, 274, 296, 304, 305, 308, 313], "addition": [50, 52, 315], "additional_configure_opt": [48, 52], "additional_last_interv": [44, 225], "address": [39, 47, 50, 53, 175, 180, 298, 312], "address_is_in_us": 298, "address_is_not_avail": 298, "adisk": 244, "adjac": [224, 264], "adject": 156, "adjust": [42, 44, 48, 49, 52, 53, 91, 111, 135], "admin": [37, 39, 47, 48, 49, 50, 51], "admin_html": [39, 175], "admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059": 175, "administr": [22, 41, 42, 47, 49, 56, 178, 304], "adopt": [56, 141], "adult": 41, "advanc": [41, 42, 45, 50, 55, 123, 137, 154, 223, 224, 254], "advantag": [0, 42, 205, 206, 296], "adventur": 111, "adverb": 156, "advis": 111, "affect": [43, 45, 47, 48, 49, 50, 51, 52, 54], "afr": [306, 308, 315], "africa": 56, "after": [17, 18, 31, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 84, 99, 111, 118, 122, 124, 132, 134, 135, 137, 140, 143, 149, 156, 157, 163, 171, 173, 175, 177, 180, 184, 191, 192, 193, 224, 225, 229, 254, 257, 258, 259, 261, 272, 281, 286, 305, 307, 308, 312], "ag": [41, 45, 58, 111, 112, 124, 149, 150, 155, 156, 161, 183, 186], "again": [41, 42, 43, 44, 45, 49, 50, 52, 156, 173, 177, 186, 226], "against": [0, 22, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 68, 91, 106, 111, 134, 136, 137, 138, 142, 149, 155, 156, 163, 170, 173, 175, 203, 224, 225, 244, 248, 250, 251, 253, 304, 307, 311, 313, 314], "againt": 45, "agaist": 47, "aggreg": [22, 41, 42, 43, 44, 156, 205, 206], "aggregate_sd": 41, "aggregator_": [41, 44], "aggregator_mean": 41, "aggregator_sd": 41, "aggregator_sum": 41, "ago": 250, "ahead": 42, "ahello": 50, "ahost1": 244, "ai": 44, "aim": 48, "aio": 48, "airport": 44, "airport_nam": 44, "aki": 49, "akihabara": 315, "akinori": 50, "akio": [39, 47, 48, 50, 51, 53, 54], "akio\u3055\u3093": 37, "akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210": 37, "akio\u3055\u3093\u304c\u5831\u544a": 37, "akio\u3055\u3093\u304c\u63d0\u6848": 37, "akira": 49, "al": [42, 45, 277], "alan": 42, "albert": 54, "alert": [49, 129, 130, 175, 177, 228], "algolithm": 223, "algorithm": [39, 53, 107, 111, 188, 247], "ali": [42, 110], "ali_scor": 42, "alia": [22, 50, 53, 57, 115, 116, 117, 129, 175], "alias": [50, 58, 115, 116, 117, 202], "aliased_column": 58, "alic": [41, 42, 44, 45, 58, 110, 111, 114, 141, 156, 164, 170, 177, 183, 186, 195, 202, 203, 224, 277, 292, 311], "align": [132, 134, 135], "alisa": [42, 44, 202, 203], "all": [0, 17, 27, 31, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 53, 54, 58, 74, 91, 94, 98, 99, 107, 110, 111, 112, 114, 115, 116, 117, 118, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 146, 149, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 170, 171, 173, 175, 177, 183, 193, 195, 197, 202, 203, 205, 208, 209, 219, 223, 224, 225, 226, 228, 230, 231, 232, 233, 234, 235, 244, 246, 247, 250, 253, 257, 258, 259, 260, 264, 268, 271, 281, 282, 292, 298, 308, 311, 314], "all_record": 47, "alloc": [22, 43, 47, 49, 50, 51, 53, 54, 68, 85, 94, 141, 156, 158, 300, 305, 308], "alloc_count": [41, 94, 97, 158, 175, 177, 241, 298, 308, 312], "alloc_info": 51, "allow": [0, 41, 42, 43, 47, 50, 53, 156, 181, 205, 206, 308, 312], "allow_column": [41, 42, 44, 156, 202, 224], "allow_leading_not": [41, 156, 202], "allow_pragma": [44, 156], "allow_upd": [156, 224], "almalinux": [18, 22, 23, 26, 27, 31, 42, 43, 44, 296], "almost": [39, 41, 54, 156, 225, 281, 290, 303], "alnum": 44, "alogolizm": 111, "alon": [43, 50], "alpha": [42, 43, 44, 231, 232, 233, 234, 235, 237], "alphabet": [45, 49, 111, 132, 134, 135, 156, 161, 168, 231, 235, 244, 251, 264, 267, 268, 270, 271], "alpin": [29, 45], "alreadi": [41, 42, 43, 44, 45, 49, 52, 85, 94, 106, 118, 123, 125, 135, 140, 156, 168, 181, 226, 281, 308, 310], "also": [0, 3, 17, 18, 22, 26, 27, 31, 41, 42, 43, 44, 45, 47, 51, 52, 53, 54, 56, 57, 91, 96, 110, 123, 124, 132, 134, 135, 137, 149, 150, 163, 173, 177, 183, 188, 196, 197, 208, 219, 224, 225, 226, 227, 228, 244, 245, 250, 252, 273, 290, 291, 292, 296, 305, 307, 308, 310, 311, 313, 315], "alter": 56, "although": 177, "alwai": [0, 41, 42, 43, 45, 49, 50, 51, 52, 53, 54, 81, 95, 133, 141, 156, 159, 167, 177, 186, 201, 224, 225, 250, 275, 281, 286, 298], "alx": 156, "am": [18, 193, 206, 311], "amazon": [22, 23, 27, 43, 44, 52, 54, 156], "america": 45, "among": [22, 47, 56, 134, 135, 304, 305, 307], "amount": [41, 45, 47, 51, 173], "amp": [43, 44], "an": [0, 18, 20, 22, 23, 27, 28, 31, 32, 33, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 68, 74, 81, 84, 85, 87, 91, 95, 96, 98, 99, 107, 110, 112, 114, 115, 116, 117, 123, 124, 125, 126, 127, 128, 132, 134, 135, 137, 138, 139, 141, 142, 143, 145, 149, 152, 153, 154, 155, 156, 158, 161, 163, 164, 165, 168, 169, 173, 175, 177, 178, 180, 183, 186, 195, 196, 197, 201, 203, 205, 206, 208, 209, 219, 223, 224, 225, 226, 227, 229, 230, 231, 232, 233, 234, 235, 236, 237, 243, 244, 245, 246, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 264, 272, 273, 274, 275, 276, 278, 281, 286, 292, 302, 304, 305, 307, 310, 311], "analysi": [0, 31, 54, 156, 225], "analyz": [0, 22, 39, 42, 47, 52, 96, 156, 177, 274, 300], "anchor": 50, "and_not": 202, "ani": [0, 31, 41, 42, 43, 44, 45, 46, 50, 51, 53, 58, 110, 111, 125, 132, 135, 138, 142, 143, 149, 154, 155, 156, 159, 163, 165, 167, 168, 175, 177, 191, 192, 193, 205, 206, 210, 224, 237, 243, 245, 264, 275, 286, 292], "anim": [44, 307], "animals_sound": 44, "ann": 12, "annot": 48, "announc": 43, "annual": 46, "anonym": [43, 44, 124, 254], "anonymous": 74, "anoth": [0, 42, 47, 50, 52, 68, 110, 126, 156, 173, 243], "anthoni": [42, 43], "anymor": 45, "anyth": [41, 44, 45, 278], "anywher": 43, "aomi": 52, "apach": [12, 24, 25, 27, 28, 41, 42, 43, 44, 45, 52, 54, 125, 156, 158, 178], "apache_arrow": [41, 94, 156, 158, 177, 298, 308, 312], "apache_arrow_inform": 158, "apache_arrow_repositori": 12, "api": [1, 3, 15, 22, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 60, 61, 81, 84, 85, 92, 100, 223, 292], "appear": [0, 42, 43, 44, 49, 100, 111, 123, 142, 156, 168, 205, 206, 224, 225, 243, 245, 308], "append": [42, 44, 47, 68, 224, 225], "appl": [41, 42, 211, 229, 272, 276, 278], "appli": [42, 43, 45, 52, 53, 54, 55, 56, 68, 111, 132, 134, 135, 156, 167, 180, 205, 281], "applic": [0, 20, 39, 42, 44, 45, 49, 52, 54, 125, 156, 175, 177, 178, 205, 206, 225, 228, 243, 292], "approach": [56, 186, 188], "appropri": 302, "approv": 49, "approxim": [39, 47, 188], "approximate_typ": 189, "appveyor": 49, "april": 12, "apt": [12, 21, 28, 32, 41, 47, 54], "aptitud": 14, "aquariu": 41, "ar": [0, 1, 2, 3, 6, 8, 17, 18, 19, 21, 23, 24, 25, 27, 28, 31, 32, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 82, 83, 84, 85, 90, 91, 94, 95, 96, 100, 106, 107, 110, 111, 112, 114, 117, 118, 121, 122, 123, 124, 125, 126, 127, 131, 132, 133, 134, 135, 136, 137, 138, 141, 142, 144, 145, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 163, 164, 165, 166, 168, 171, 173, 175, 177, 178, 179, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 223, 224, 225, 226, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 240, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 257, 258, 259, 260, 262, 264, 266, 267, 268, 271, 272, 274, 275, 276, 281, 282, 286, 290, 292, 296, 298, 299, 301, 302, 303, 305, 306, 307, 308, 310, 311, 312, 313, 315], "arai": 50, "aramaki": 39, "aramaki\u3055\u3093": 37, "aramaki\u3055\u3093\u304c\u5831\u544a": 37, "arbitrari": 302, "arc": 168, "architectur": [0, 27, 49, 50, 158, 175], "archiv": [6, 7, 8, 12, 17, 22, 23, 27, 31, 33, 41, 44, 47, 54], "area": [0, 41, 43, 52, 54], "aren": [42, 43, 44, 47, 49, 50, 51, 52, 53, 90, 111, 124, 132, 134, 135, 137, 142, 156, 157, 158, 161, 163, 177, 180, 205, 206, 224, 239, 254, 281, 292], "arg": [41, 175], "arg1_nam": 244, "arg1_valu": 244, "arg2_nam": 244, "arg2_valu": 244, "arg3_valu": 244, "arg_list_too_long": 298, "argc": 81, "argument": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 85, 102, 122, 124, 135, 149, 150, 155, 156, 175, 184, 186, 188, 192, 193, 194, 196, 198, 201, 202, 205, 206, 208, 210, 219, 220, 221, 225, 244, 245, 248, 295, 298, 302, 308, 310, 312], "argument1": [225, 245], "argument2": [225, 245], "argv": 81, "arg\u306e\u307f\u304c\u6570\u5024\u3067\u4e0e\u3048\u3089\u308c\u305f\u5834\u5408\u306f\u30b9\u30b3\u30a2\u5024\u306e\u4fc2\u6570\u3068\u307f\u306a\u3055\u308c\u307e\u3059": 11, "ari": 41, "arithmet": [41, 44, 48], "arm64": [42, 43, 158], "armenian": [231, 232, 233, 234, 235, 258, 259], "armhf": 49, "arnaud": 39, "around": [42, 43, 44, 53, 56, 205, 206, 239, 302], "arrai": [39, 41, 42, 45, 47, 49, 51, 52, 53, 54, 91, 95, 96, 108, 112, 134, 138, 139, 141, 142, 155, 156, 161, 168, 169, 205, 206, 224, 254, 305, 307, 308, 311], "arrang": 308, "arrow": [12, 24, 25, 27, 28, 41, 42, 43, 44, 45, 52, 54, 125, 156, 158, 178], "arrowconfig": 27, "art": [52, 53, 225, 311], "articl": [42, 52, 310], "articles2": 310, "articles_cont": [42, 310], "artifactori": [24, 25, 28], "artist": 43, "arugment1": 225, "asami": 48, "asc": 12, "ascend": [122, 134, 135, 136, 156, 198, 239, 306, 308, 315], "ascii": [44, 53, 224, 225, 264, 265, 266, 267, 268, 275, 279, 280], "askdkc": 44, "askmonti": 49, "aspect": 56, "aspx": 302, "assigend": 224, "assign": [48, 50, 153, 168, 254, 302, 315], "associ": [39, 45, 85, 121, 125, 156, 175, 197, 228, 302, 305, 307, 308], "assum": [52, 153], "ath": 44, "atsushi": [43, 44, 49, 50, 51], "attach": [17, 229, 255], "attent": [111, 156, 313], "attr_setpshar": 48, "attribut": [138, 139, 168, 169, 194], "atv": [306, 308, 315], "august": 43, "auth_bas": [177, 292], "auth_basic_user_fil": [177, 292], "authent": [291, 312], "author": 177, "auto": [31, 41, 42, 47, 49, 53, 133, 149, 156, 159, 186], "auto_release_count": 41, "autocomplet": [43, 44], "autoconf": [6, 39], "autogen": [6, 17, 47], "autom": 197, "automak": [6, 37], "automat": [12, 17, 31, 41, 42, 43, 45, 50, 52, 54, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 87, 111, 124, 132, 134, 135, 144, 145, 149, 150, 151, 156, 173, 177, 186, 197, 205, 224, 225, 254, 295, 307, 308, 313], "autoreconf": 12, "autotool": [5, 7, 31, 43, 44], "avail": [0, 17, 27, 31, 41, 43, 44, 48, 50, 51, 52, 53, 55, 64, 74, 85, 95, 96, 111, 112, 123, 124, 125, 132, 133, 134, 135, 137, 138, 156, 157, 159, 161, 168, 173, 175, 178, 180, 195, 202, 212, 219, 224, 225, 231, 257, 290, 298, 302, 305, 308], "averag": [43, 49, 94, 156], "avg": [49, 135, 156, 174], "avoid": [22, 41, 43, 48, 49, 53, 137, 149, 156, 163, 300], "awar": 85, "ax1": 45, "axaixiuxuexeoxo": [231, 232, 233, 234, 235, 257, 258, 259], "axx1": 45, "ayumu": [49, 50], "b": [12, 18, 27, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 74, 135, 138, 156, 191, 192, 193, 210, 224, 225, 244, 262], "ba": 42, "back": [43, 52, 177, 225, 244, 310], "back_trac": [43, 44, 94, 158, 177, 298, 308, 312], "background": [56, 175, 191, 193], "backlog": 52, "backslash": [48, 68, 224], "backtrac": [41, 42, 43, 44, 51, 52, 166], "backup": [106, 122], "backward": [42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 170, 246, 247, 292], "bad": [0, 43, 44, 48, 49, 51], "bad_address": 298, "bad_file_descriptor": 298, "balanc": 44, "banana": [42, 211], "band": 56, "bar": [111, 161, 231, 232, 233, 234, 235, 258, 259], "base": [0, 17, 24, 25, 28, 31, 32, 41, 42, 43, 44, 45, 47, 48, 49, 51, 52, 53, 54, 96, 111, 134, 153, 156, 168, 175, 177, 178, 180, 181, 191, 192, 193, 205, 206, 208, 209, 224, 225, 228, 237, 240, 244, 245, 246, 247, 248, 250, 251, 253, 264, 274, 277, 291, 296, 311, 312], "base_form": [53, 274], "base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059": 12, "base_version\u306ftar": 12, "basebal": [307, 310], "basethreadinitthunk": 166, "bash": [31, 50], "basi": 308, "basic": [0, 22, 27, 42, 47, 49, 110, 156, 292, 304, 305], "batch": [47, 96, 125], "bbb": 44, "bc": 44, "bc009774": 12, "bcde": 44, "beaver": [44, 53], "becam": [42, 49, 56], "becaus": [0, 6, 7, 8, 17, 21, 26, 27, 31, 34, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 58, 94, 95, 96, 110, 111, 114, 118, 122, 124, 132, 134, 135, 137, 141, 142, 143, 144, 149, 151, 156, 161, 164, 167, 173, 175, 177, 180, 183, 184, 186, 196, 197, 201, 202, 205, 210, 219, 224, 225, 226, 229, 240, 241, 243, 244, 245, 246, 247, 250, 251, 252, 253, 254, 257, 258, 259, 261, 262, 264, 265, 266, 267, 268, 272, 274, 275, 276, 278, 281, 286, 290, 291, 292, 296, 298, 302, 305, 307, 308, 310, 313, 314], "becom": [0, 43, 44, 45, 50, 53, 54, 55, 111, 188, 282, 305], "been": [12, 41, 42, 43, 45, 50, 53, 54, 106, 114, 123, 164, 177, 296], "befor": [31, 34, 40, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 84, 91, 94, 107, 111, 132, 133, 134, 135, 138, 140, 143, 144, 149, 151, 153, 156, 163, 167, 177, 186, 191, 192, 193, 219, 224, 225, 243, 244, 250, 251, 252, 257, 258, 259, 272, 305, 308], "before_instal": 21, "beforehand": [31, 42], "beg": [244, 277], "began": 56, "begin": [18, 43, 174, 244, 272, 277], "beginn": 42, "behav": [156, 188], "behavior": [41, 42, 43, 45, 47, 49, 50, 52, 53, 54, 56, 74, 94, 137, 156, 171, 183, 202, 205, 231, 232, 233, 234, 235, 244, 264, 275], "behaviour": [31, 48, 122], "behind": 42, "beijin": 188, "being": [54, 56, 111, 156], "believ": 56, "bellefleur": 52, "belong": [52, 87, 282, 306], "below": [13, 18, 41, 42, 43, 44, 45, 52, 53, 54, 111, 114, 122, 123, 125, 132, 134, 135, 153, 156, 164, 166, 177, 224, 231, 232, 233, 234, 235, 257, 258, 259, 260, 261, 264, 272, 274, 275, 279, 280], "benchmark": [22, 27, 43, 44, 47, 48, 49, 57, 172], "benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059": 176, "benchmark\u304c\u5229\u7528\u3059\u308bgroonga": 176, "benchmark\u304c\u52d5\u4f5c\u3057": 176, "benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059": 176, "benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408": 176, "benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070": 176, "benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068": 176, "benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916": 176, "benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5": 176, "benchmark\u306f": 176, "benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp": 176, "benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059": 176, "benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093": 176, "benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059": 176, "benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057": 176, "benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059": 176, "benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408": 176, "benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059": 176, "benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059": 176, "benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093": 176, "benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059": 176, "benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 176, "benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c": 176, "benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c": 176, "benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059": 176, "benchmark\u7528\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u5206\u3067\u4f5c\u6210\u3059\u308b\u3053\u3068\u3082\u65e2\u5b58\u306e\u3082\u306e\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 176, "benchmark\u7d42\u4e86\u5f8c\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u529b\u5148\u306f\u306f\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u3059": 176, "benefit": 296, "bernard": 50, "best": 0, "beta": 55, "better": [0, 43, 49, 111, 124, 156, 225, 310], "between": [22, 39, 41, 42, 43, 44, 45, 47, 48, 49, 51, 52, 53, 54, 57, 111, 114, 123, 124, 137, 149, 156, 161, 164, 173, 181, 182, 188, 202, 224, 225, 239, 244, 251, 254, 262, 264, 265, 266, 267, 268, 269, 270, 271, 273, 279, 280, 292, 310, 313, 315], "bfloat16": [44, 90, 94, 142, 155, 158, 177, 298, 308, 312], "bfloat16_valu": 44, "bi": [275, 299, 301], "big": [49, 54, 122, 177], "bigger": [54, 111], "bigram": [44, 53, 176, 179, 180, 262, 264, 266, 267, 268, 269, 270, 271, 275, 277, 301], "bigramlexicon": 152, "bigram\u306e\u5834\u5408\u306f\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059": 299, "bill": [50, 299, 301], "billiard": [299, 301], "billion": 111, "bin": [18, 31, 33, 166], "binari": [0, 1, 22, 47, 48, 49, 50, 51, 54, 95, 177, 225, 241, 282, 289, 292, 312], "bind": [20, 21, 39, 42, 47, 50, 55, 175, 191, 192, 193, 223], "bionic": [44, 53], "birth": 22, "bison": 12, "biswapriyo": 45, "bit": [21, 23, 24, 28, 32, 33, 41, 43, 44, 45, 54, 111, 156, 175, 176, 177, 224, 225, 282, 305], "bitwis": [45, 50, 298], "black": [229, 239], "blank": [43, 44, 50, 53, 265, 266, 267, 268, 275], "block": [48, 52, 106, 158, 161, 163, 177, 225, 305], "blog": [12, 22, 41, 54, 132, 134, 135, 156, 210, 224, 225, 226, 301, 304, 310], "blog1": 310, "blog2": 310, "blog_bodi": 301, "blog_body\u7d22\u5f15": 301, "blog_comment_index": 210, "blog_cont": 210, "blog_titl": 308, "blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f": 12, "blogs\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u3092tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u3066\u304b\u3089\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059": 301, "blosc": [44, 94, 111, 158, 177, 298, 308, 312], "blosclz": 111, "blue": 56, "bm25": [41, 245, 247], "bo": 45, "board": 56, "bob": [41, 42, 44, 45, 58, 114, 156, 164, 170, 177, 183, 186, 202, 203, 292, 311], "bodi": [41, 42, 43, 44, 45, 48, 51, 54, 96, 109, 110, 111, 113, 118, 120, 124, 125, 127, 131, 137, 140, 141, 143, 144, 145, 149, 150, 151, 152, 157, 160, 161, 163, 164, 166, 167, 178, 180, 191, 192, 193, 275, 292, 298, 301, 310, 314], "body_bytes_s": 177, "body_index_column": 52, "bom\u4ed8\u304dutf": 37, "book": [41, 111, 225], "bookmark": [91, 122, 125, 137], "bookmark_index": 91, "bookmark_titl": 122, "bookworm": [22, 23, 44], "bool": [41, 42, 43, 45, 48, 50, 51, 53, 54, 90, 110, 132, 134, 135, 141, 142, 155, 156, 165, 224, 261, 305, 313], "boolean": [22, 43, 48, 51, 55, 155, 186, 202, 203, 224, 282, 304], "boost": [180, 250], "border": [47, 53, 168, 183], "borderlin": 134, "boston": 311, "both": [0, 17, 23, 28, 32, 33, 41, 42, 43, 44, 50, 51, 52, 53, 87, 91, 95, 111, 132, 134, 135, 141, 156, 163, 171, 180, 202, 203, 206, 224, 225, 226, 244, 247, 250, 254, 275, 276, 292, 298, 311, 315], "bottom_right": [39, 190], "bound": 49, "box": [41, 156, 231, 232, 233, 234, 235, 258, 259], "brace": 125, "bracket": 125, "brad": 51, "branch": [18, 44], "branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059": 14, "brand": 50, "brasil": 188, "brasillia": 188, "brazil": [22, 306], "break": [39, 45, 47, 49, 50, 51, 123, 125, 173], "brew": [18, 30], "bring": 308, "british": 314, "broadcast": 311, "broke": 45, "broken": [39, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 123, 126, 127, 128, 142, 143, 152, 163, 173], "broken_pip": 298, "brooklyn": 311, "browser": [17, 31, 41, 42, 178, 312], "bsd": [7, 8, 31, 39, 49, 50], "bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": 37, "buffer": [48, 50, 51, 53, 54, 68, 71, 74, 108, 141, 302, 310], "bug": [3, 22, 31, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55], "buggi": 53, "bugs_tags_index": 45, "build": [0, 3, 4, 12, 14, 18, 21, 22, 23, 40, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 64, 111, 156, 171, 243, 248], "build_dir": 12, "buildabl": 39, "builder": 71, "build\u3092\u7528\u3044\u3066": 14, "built": [0, 22, 31, 41, 43, 44, 48, 50, 53, 54, 56, 57, 92, 122, 138, 168, 177, 182, 188, 283], "builtin": [22, 57, 74, 111, 124, 141, 142, 188], "bulk": [41, 50, 51, 52, 68], "bullet": [231, 232, 233, 234, 235, 258, 259], "bullsey": [42, 43, 45], "bump": [12, 48, 49, 50], "bundl": [17, 18, 27, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56], "busi": 56, "buster": [43, 44, 54], "button": [17, 18, 47, 48], "buzz": 180, "bye": [41, 42, 43, 44, 45, 132, 134, 135, 156, 165, 224, 225, 261, 310], "byte": [39, 42, 43, 44, 47, 48, 49, 50, 51, 52, 68, 85, 98, 111, 141, 142, 155, 156, 158, 205, 206, 282, 298], "byte1": 111, "byte_delta": 141, "c": [0, 3, 6, 15, 18, 22, 27, 31, 33, 39, 40, 41, 42, 43, 44, 45, 49, 50, 51, 52, 54, 55, 74, 100, 111, 115, 118, 129, 135, 138, 143, 156, 163, 166, 175, 210, 224, 225, 228, 241, 290, 298, 302, 308], "c1": 203, "c2": 203, "c3": 203, "ca": [28, 298], "cab": 42, "cabrera": 44, "cacao": 42, "cach": [0, 36, 41, 42, 43, 44, 47, 48, 50, 51, 52, 53, 61, 74, 107, 158, 175], "cache_hit_r": [41, 94, 97, 158, 177, 241, 298, 308, 312], "cache_limit": [22, 42, 43, 50, 57, 92, 177], "cache_previ": 61, "cafedomanc": 51, "cake": 198, "calc": 52, "calc_target": [50, 156], "calc_typ": [50, 52, 156], "calcul": [41, 42, 44, 45, 47, 48, 49, 52, 53, 111, 154, 156, 188, 198, 239, 311, 315], "calicul": 43, "call": [41, 42, 43, 47, 48, 49, 50, 52, 53, 81, 84, 85, 87, 91, 111, 114, 133, 134, 141, 149, 150, 154, 156, 164, 167, 188, 223, 231, 236, 306, 308], "callback": 180, "callback\u304c\u4e0e\u3048\u3089\u308c\u305a": 11, "caller": 54, "calloc": 51, "callum": 45, "calro": [183, 186], "came": 41, "camp": 311, "can": [0, 1, 6, 7, 17, 18, 19, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 64, 68, 84, 85, 87, 90, 91, 94, 95, 96, 98, 99, 100, 101, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 161, 163, 164, 165, 166, 167, 168, 170, 171, 173, 175, 177, 178, 180, 182, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 219, 223, 224, 225, 226, 227, 228, 229, 231, 232, 233, 234, 235, 236, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 272, 274, 275, 276, 277, 278, 281, 283, 290, 292, 296, 298, 302, 303, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315], "can_be_key_typ": 155, "can_be_value_typ": 155, "canadian": [231, 232, 233, 234, 235, 258, 259], "cancel": [45, 49, 51, 52, 98, 99, 153], "cancel_request_is_accepted_or_not": 153, "cancer": 41, "candid": [43, 44, 156, 159, 180, 201, 250], "candidate1": 159, "candidate2": 159, "candidate_1": 180, "candidate_2": 180, "cannot": [22, 53, 111, 156, 161, 224, 225, 226, 229, 254, 292, 300], "capabl": 56, "capac": [41, 101], "capit": [45, 53, 56, 231, 235, 308], "caplit": [48, 49], "capricorn": 41, "captur": 208, "care": [17, 52, 112, 149, 156, 224, 247, 250], "carefulli": [91, 137, 143, 163], "carlier": [43, 44], "carlo": [44, 114, 164, 170], "cas_error": 298, "cascad": [48, 49], "case": [18, 27, 31, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 58, 61, 81, 85, 91, 96, 110, 111, 114, 121, 123, 124, 132, 133, 134, 135, 143, 149, 151, 156, 161, 164, 168, 177, 180, 181, 183, 193, 196, 201, 202, 205, 206, 224, 225, 237, 239, 244, 245, 246, 247, 250, 262, 264, 277, 281, 290, 303, 305, 306, 308, 310, 311, 314, 315], "cast": [22, 39, 40, 41, 42, 43, 44, 47, 48, 51, 52, 53, 54, 57, 111, 132, 134, 135, 156, 184, 224, 246, 247, 311], "cast_loos": [22, 53, 57, 182], "casual": 56, "cat": 42, "categor": [125, 156, 165, 168], "categori": [41, 53, 156], "caus": [39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 156, 161, 224, 225, 302, 305], "cd": [12, 17, 18, 31, 44], "cdt": 27, "cdt4": 27, "ce": [270, 271, 277], "ceekz": 48, "cent": [264, 269], "center": [0, 189], "center\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u3092\u4e2d\u5fc3\u3068\u3059\u308b\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059": 189, "cento": [37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54], "centos6": 47, "central": [41, 311], "ceo": 56, "certain": 315, "certif": 28, "ch": 168, "chain": 210, "challeng": 56, "chang": [0, 3, 12, 31, 39, 40, 41, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 91, 107, 111, 114, 118, 124, 132, 138, 153, 154, 156, 159, 163, 164, 171, 177, 183, 191, 192, 196, 202, 205, 225, 231, 232, 233, 234, 235, 237, 241, 243, 260, 262, 264, 275, 277, 292], "channel": 53, "chapter": 308, "char": [41, 49, 68, 74, 81, 85], "charact": [0, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 56, 68, 74, 85, 111, 129, 132, 134, 135, 138, 156, 161, 168, 175, 191, 192, 193, 195, 205, 206, 207, 208, 209, 224, 225, 228, 229, 230, 231, 232, 233, 234, 235, 237, 243, 251, 257, 258, 259, 264, 265, 266, 267, 268, 271, 272, 273, 275, 279, 280, 308], "characterist": [22, 42, 57, 205, 206, 244, 247, 278], "charactor": [208, 209, 279, 280], "charli": 311, "chart": [39, 41], "chat": [22, 50], "check": [13, 14, 22, 27, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 92, 95, 96, 100, 106, 122, 123, 124, 137, 138, 140, 156, 163, 165, 177, 180, 183, 224, 225, 231, 232, 233, 234, 235, 237, 303], "check_result": 123, "checkbox": 42, "check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059": 14, "check\u30b3\u30de\u30f3\u30c9\u306f": 108, "child": [42, 54, 124, 149, 150], "china": [188, 306], "choic": 0, "choos": [6, 7, 34, 44, 49, 51, 97, 125, 156, 157, 161, 175, 177, 180, 244, 262, 305], "chracterist": 254, "chri": [42, 45], "christian": 50, "chunk": [41, 50, 51, 53, 108, 141, 281, 303], "chunk_size_threshold": 53, "chunked_token": 53, "ci": [20, 22, 47, 48, 49], "cimbin": [257, 258, 259], "circl": [0, 239], "cirit": 177, "citi": [44, 74, 188, 239, 311], "city_nam": 44, "cjk": 53, "clang": [14, 45, 47, 48, 49, 50], "clarifi": [49, 54], "class": [41, 43, 44, 45, 53, 156, 191, 192, 193, 194, 206, 274, 275], "classif": [156, 306], "classifi": [51, 156], "clean": [6, 12, 14, 50, 52], "cleanup": 52, "clear": [39, 41, 42, 43, 47, 49, 51, 52, 53, 54, 56, 127, 177, 302], "clearcod": 56, "clearli": 50, "clearlock": [22, 47, 49, 57, 92, 175], "clearlock\u306f": 109, "cleverli": 118, "click": [18, 156], "client": [8, 22, 41, 45, 47, 49, 52, 53, 58, 99, 177, 180, 245, 290, 296], "clone": [3, 6, 7, 8, 12, 13, 31], "clone\u3057\u305fweb\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306b\u5bfe\u3057\u3066\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u65b0\u898f\u8ffd\u52a0\u3057\u307e\u3059": 12, "clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9": 12, "close": [41, 42, 44, 50, 51, 53, 54, 149, 150, 163, 186, 191, 192, 205, 206, 254], "close_tag1": [191, 192], "clumn": 281, "cmake": [3, 5, 6, 12, 22, 23, 24, 25, 28, 30, 31, 32, 33, 43, 44, 47, 48, 50, 51, 52], "cmp0014": 49, "co": [55, 180, 252], "code": [3, 6, 7, 8, 17, 22, 27, 41, 42, 47, 48, 49, 50, 51, 52, 54, 57, 68, 84, 92, 95, 111, 153, 156, 170, 228, 241, 298, 302, 308], "codeblock": 27, "codelit": 27, "codenam": 28, "coffe": 198, "collaps": 47, "colleagu": 3, "collect": [0, 31, 42, 54, 95, 311], "color": [191, 193, 229], "colum": 310, "column": [11, 22, 31, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 74, 96, 105, 112, 114, 115, 116, 117, 118, 121, 123, 124, 126, 127, 128, 137, 140, 143, 149, 150, 152, 159, 161, 164, 165, 170, 173, 179, 180, 183, 193, 194, 195, 196, 197, 198, 202, 203, 205, 206, 208, 209, 210, 219, 221, 225, 226, 237, 239, 243, 244, 245, 248, 250, 251, 252, 253, 254, 281, 282, 286, 304, 305, 307, 311, 313, 314, 315], "column1": [11, 41, 47, 48, 49, 132, 134, 135, 156, 225, 245], "column2": [11, 41, 47, 48, 49, 135, 156, 225, 245], "column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f": 11, "column3": 245, "column_": 111, "column_1": [155, 210], "column_2": [155, 210], "column_3": [155, 210], "column_copi": [22, 43, 44, 50, 51, 57, 58, 92], "column_cr": [22, 39, 41, 42, 43, 44, 49, 50, 51, 53, 54, 57, 58, 90, 91, 92, 110, 112, 114, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 142, 143, 149, 150, 152, 155, 156, 161, 163, 164, 165, 170, 175, 176, 180, 183, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 210, 211, 212, 219, 221, 224, 225, 226, 237, 244, 245, 246, 247, 248, 260, 261, 275, 276, 278, 281, 286, 301, 305, 306, 307, 308, 310, 311, 313, 314, 315], "column_filter_byte_delta": 44, "column_filter_shuffl": [44, 111], "column_index": [41, 42, 43, 44, 45, 49, 50, 91, 111, 112, 122, 123, 132, 134, 135, 137, 142, 149, 150, 152, 155, 156, 163, 180, 183, 186, 191, 192, 193, 196, 201, 202, 203, 205, 206, 210, 224, 225, 226, 237, 244, 245, 246, 247, 260, 261, 275, 276, 278, 281, 301, 307, 308, 310, 311, 314], "column_information1": 112, "column_information2": 112, "column_list": [22, 37, 39, 43, 44, 47, 49, 57, 92, 114, 175, 308], "column_list\u30b3\u30de\u30f3\u30c9": 36, "column_n": 210, "column_nam": [42, 124, 125, 140, 143, 155], "column_name1": 125, "column_name2": 125, "column_name_1": [134, 155, 156], "column_name_2": [134, 155, 156], "column_name_3": 155, "column_name_n": [134, 156], "column_name_with_t": 155, "column_name_with_table_nam": 155, "column_normalizations_target_column": [43, 237], "column_remov": [22, 49, 57, 92, 110, 124, 143, 149, 163, 175], "column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059": 113, "column_renam": [22, 40, 48, 49, 51, 57, 58, 92, 110, 124], "column_scalar": [41, 42, 43, 44, 45, 51, 58, 110, 111, 112, 114, 121, 122, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 142, 143, 149, 150, 152, 155, 156, 163, 164, 165, 170, 180, 183, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 210, 211, 212, 224, 225, 226, 237, 244, 245, 246, 247, 260, 261, 275, 276, 278, 281, 286, 301, 306, 307, 310, 311, 314], "column_type_1": [134, 156], "column_type_2": [134, 156], "column_type_n": [134, 156], "column_vector": [41, 42, 43, 44, 45, 48, 49, 50, 54, 91, 110, 111, 112, 121, 132, 134, 135, 156, 180, 197, 201, 210, 219, 221, 305, 307, 311, 314], "column_with_index": 51, "columnn": 47, "columnnorm": [43, 237], "columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "column\u306e\u5024\u304c": 11, "com": [6, 7, 8, 12, 13, 17, 18, 21, 41, 44, 156, 302, 305, 306, 308, 310, 312, 315], "comamnd": 292, "combin": [0, 27, 42, 43, 44, 45, 47, 49, 51, 56, 111, 156, 161, 177, 180, 183, 191, 201, 202, 203, 231, 232, 233, 234, 235, 243, 264, 272, 305, 308], "come": [41, 54, 239, 311], "comma": [50, 111, 125, 225, 305, 306, 308], "command": [0, 6, 13, 14, 17, 18, 21, 22, 27, 29, 31, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 61, 74, 85, 91, 95, 96, 98, 99, 102, 107, 110, 111, 112, 114, 115, 116, 117, 118, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 176, 177, 178, 179, 182, 191, 192, 193, 194, 197, 198, 203, 208, 209, 211, 212, 219, 221, 222, 224, 243, 244, 245, 250, 251, 252, 253, 254, 281, 282, 290, 291, 298, 303, 304, 305, 310, 313, 314, 315], "command_lin": 155, "command_nam": [155, 178, 312], "command_object_remov": 143, "command_thread_dump": 166, "command_vers": [41, 42, 43, 44, 45, 50, 51, 54, 93, 94, 96, 97, 158, 177, 178, 191, 192, 193, 194, 206, 241, 298, 308, 312], "command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 93, "commandinput": 50, "comment": [42, 44, 48, 50, 210, 243, 310], "comment_cont": 210, "comment_index": 311, "comment_nam": 210, "comments2": 310, "comments_cont": [42, 310], "comments_loc": 311, "commentt": 42, "commit": [6, 12, 17, 18, 49, 56], "commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089": 12, "commnad": [42, 93], "commod": 56, "common": [32, 39, 41, 43, 47, 156, 161, 175, 186, 223, 224, 225, 254, 282, 310], "commonli": [0, 42, 244], "commun": [8, 17, 18, 19, 21, 22, 27, 56, 177, 178, 180], "compani": 56, "compar": [0, 18, 41, 42, 47, 49, 50, 51, 53, 156, 195, 205, 206, 219, 224, 276], "comparison": [22, 44, 47, 51, 53, 111, 219, 289, 291], "compat": [24, 25, 28, 32, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 132, 134, 135, 138, 170, 177, 230, 231, 232, 233, 234, 235, 236, 246, 247, 257, 258, 259, 292], "compet": 56, "compil": [6, 27, 31, 39, 42, 43, 48, 49, 50, 54], "complementari": 53, "complet": [22, 39, 40, 41, 45, 48, 51, 53, 56, 57, 99, 144, 145, 151, 159, 180, 201, 240, 249, 253, 314], "complex": [42, 43, 47, 48, 50, 56, 156, 225, 244, 272], "complianc": 177, "compon": 56, "compos": [22, 23, 42, 43], "composit": [41, 44, 53, 54, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259], "comprehens": 56, "compress": [31, 39, 41, 47, 48, 49, 51, 53, 111, 123, 141, 155, 291], "compress_filt": 141, "compress_filter_byte_delta": [111, 141], "compress_filter_shuffl": [111, 141], "compress_filter_truncate_precision_1byt": [44, 111, 141], "compress_filter_truncate_precision_2byt": [44, 111, 141], "compress_lz4": [51, 111], "compress_zlib": [51, 111], "compress_zstd": [51, 111], "comput": [47, 56, 85, 111, 132, 134, 135, 156, 158, 180, 197, 224, 225, 240, 245, 246, 247, 250, 251, 253, 281, 286], "com\u304cedge\u3092\u4f5c\u308b": 9, "com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b": 9, "com\u306f1\u30b9\u30ec\u30c3\u30c9": 9, "con": 45, "conbin": 223, "conbind": 224, "concaten": [43, 310], "concatin": [47, 48], "concept": 49, "conceptu": 56, "conclus": 272, "concret": [110, 156, 306, 307, 310], "concurr": [94, 125, 156, 228], "cond": 48, "cond_sign": 81, "condit": [22, 34, 41, 42, 43, 44, 45, 47, 48, 50, 52, 53, 54, 68, 137, 149, 159, 186, 195, 202, 203, 205, 208, 209, 210, 219, 223, 225, 237, 272, 304, 308, 311, 313], "condition1": [43, 225], "condition2": 225, "condition_1": 43, "condition_2": [43, 186], "condition_column_name1": 195, "condition_column_namen": 195, "condition_n": 43, "conditional_probability_threshold": [39, 159], "conditionin": 41, "conditon": [42, 43], "condtion": 224, "conf": [50, 51, 177, 281, 296, 303], "config": [8, 27, 31, 36, 39, 47, 50, 115, 175], "config_delet": [22, 50, 57, 92, 116, 117, 171], "config_get": [22, 50, 57, 92, 115, 117, 171], "config_set": [22, 50, 57, 58, 92, 115, 116, 124, 171], "configur": [14, 17, 20, 22, 27, 30, 40, 41, 44, 47, 48, 49, 50, 51, 52, 54, 57, 58, 59, 115, 116, 117, 124, 129, 156, 179, 180, 225, 243, 244, 248, 281, 291, 296, 303], "configure\u306e": 39, "configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 37, "configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 14, "config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f": 37, "config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059": 93, "confirm": [3, 42, 43, 44, 45, 54, 101, 102, 105, 106, 111, 117, 124, 137, 141, 163, 171, 180, 224, 244, 248, 264, 302, 303, 305], "conflict": [51, 52, 53, 125], "confus": [51, 54, 244, 264], "conifugr": 21, "conjug": 56, "conjunct": 156, "connect": [1, 41, 47, 50, 53, 56, 94, 156, 175, 298, 302, 308], "connection_refus": 298, "consciou": 54, "consid": [43, 44, 49, 94, 132, 141, 156, 161, 292, 296, 307, 310, 314], "consist": [42, 49, 50, 51, 142, 155, 156, 171, 180, 224, 248, 253, 264, 298, 308], "consol": [74, 177], "const": [40, 41, 68, 74, 85], "constant": [50, 52, 53, 111], "constant_pattern": 50, "construct": [22, 41, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 94, 225], "construnct": 50, "consum": [45, 49, 52], "consumpt": 44, "contact": 17, "contain": [0, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 68, 74, 122, 125, 139, 142, 156, 169, 183, 191, 192, 193, 224, 225, 245, 246, 247, 262, 276, 278, 302, 307, 308, 310, 311], "container_nam": 42, "content": [39, 41, 42, 43, 44, 45, 48, 49, 50, 53, 54, 56, 85, 87, 95, 96, 112, 125, 131, 132, 134, 135, 142, 155, 156, 163, 173, 177, 178, 194, 197, 202, 203, 205, 206, 210, 224, 225, 226, 237, 245, 260, 261, 278, 281, 292, 298, 307, 310, 311], "content_embed": 197, "content_featur": 41, "content_index": [163, 245], "content_length": [132, 134, 135, 156], "content_token": 41, "content_type_len": 47, "context": [39, 41, 45, 50, 53, 61, 68, 74, 158, 163, 175, 177, 205, 206, 210, 228], "context_id": 175, "continu": [21, 26, 41, 47, 48, 49, 50, 56, 111, 158, 168, 175, 251, 265, 266, 267, 268, 275, 278], "contrast": [0, 42, 49, 51, 84, 175, 183, 196, 202, 308, 310], "contribut": [18, 22, 48, 51, 111], "contributor": 56, "control": [41, 43, 47, 49, 52, 56, 111, 132, 133, 134, 135, 156, 177, 183, 202, 223, 237], "contry_nam": 44, "conveni": [0, 1, 31, 39, 52, 250, 291], "convens": 47, "convent": 47, "convers": [39, 177], "convert": [41, 43, 45, 49, 50, 51, 52, 53, 100, 225, 227, 229, 254, 305, 311], "cook": [42, 43], "coordin": [41, 188, 305], "copa": 50, "copi": [18, 41, 42, 43, 47, 50, 51, 54, 58, 85, 110, 114, 122, 164], "copyfloat32valu": 43, "copyright": 49, "core": [0, 6, 12, 31, 45, 94, 156, 176, 177, 180, 291], "coremodul": 177, "corpor": 54, "correct": [18, 22, 42, 43, 47, 49, 50, 51, 52, 54, 56, 57, 102, 156, 159, 180, 243, 249, 250], "correctli": [41, 42, 44, 47, 50, 51, 52, 54, 101, 124, 224, 308], "correl": [134, 135, 156], "correspond": [18, 43, 54, 111, 124, 132, 134, 135, 149, 150, 156, 159, 178, 237, 250, 251, 252, 253], "corrupt": [42, 43, 45, 51, 52, 53, 106, 137, 173], "cosin": 45, "cosmic": 53, "cosmo0920": [48, 49], "cost": [54, 226, 274], "costli": 45, "could": [42, 43, 44, 45, 47, 56, 111, 302, 305], "couldn": [41, 45, 47, 50], "count": [0, 41, 43, 44, 50, 52, 54, 132, 134, 135, 149, 150, 156, 158, 208, 209, 224, 307, 311], "counter": [51, 56], "countermeasur": [53, 274], "countri": [44, 121, 306, 312], "cours": [56, 306], "cover": [0, 42, 137, 205, 206], "coverag": 14, "coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b": 14, "cp932": 53, "cpe": 25, "cpp": [94, 156, 158, 177, 197, 227, 298, 308, 312], "cpu": [6, 31, 43, 45, 94, 156, 158, 176, 177, 180, 197, 291, 298, 308, 312], "cpu_n_work": 158, "crach": 52, "crash": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 114, 123, 124, 127, 164, 173], "crawler": 56, "crb": 24, "crch": 168, "creat": [12, 17, 18, 22, 29, 38, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 61, 68, 85, 87, 110, 122, 126, 131, 132, 134, 135, 137, 138, 140, 141, 143, 155, 156, 158, 159, 163, 172, 173, 175, 177, 180, 188, 197, 201, 220, 223, 225, 226, 228, 229, 237, 244, 250, 251, 253, 254, 274, 278, 281, 295, 304, 305, 306, 307, 313, 314], "created_at": [42, 43, 132, 134, 135, 212], "created_at_text": [42, 43], "createfilemap": 50, "createrepo": 12, "creation": [39, 44, 45, 48, 50, 156, 308], "creteria": 308, "crisi": 56, "crit": [129, 130, 175], "criteria": [54, 308], "critic": [31, 45, 47, 51, 52, 54, 56, 85, 129, 175, 228], "cross": [42, 43, 56], "crt": 166, "crush": [43, 44], "ctor": 43, "ctrl": [175, 298, 308], "ctx": [11, 41, 45, 52, 61, 68, 71, 74, 85, 166, 302], "ctx_new\u3068\u3044\u3046queue\u306b": 9, "culcul": 44, "cullent": 53, "cultur": 56, "cumul": [132, 134, 135, 156], "curl": [21, 31, 47, 125, 153, 175, 177, 180, 241, 292], "current": [17, 39, 41, 42, 43, 44, 45, 50, 52, 53, 54, 56, 58, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 96, 107, 110, 111, 114, 123, 125, 133, 156, 158, 161, 163, 164, 166, 175, 177, 183, 196, 197, 205, 227, 239, 308, 311], "current_column": 58, "current_flag": 74, "current_nfthread": 81, "cursor": [39, 41, 50], "custom": [6, 21, 27, 31, 39, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 81, 111, 122, 138, 156, 161, 165, 167, 168, 177, 202, 206, 219, 223, 224, 225, 228, 229, 245, 250, 255, 291, 306], "custom_nam": 142, "customers_a": 41, "customers_b": 41, "customiz": 206, "cut": 25, "cutter": [6, 12, 14], "cutter_check_leak": 14, "cutter_debug": 14, "cutter_dir": 12, "cutter_source_path": 12, "cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076": 14, "cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076": 14, "cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f": 14, "cuttlefish": 53, "cve": [42, 43, 49, 52, 53, 54], "cxx": 44, "cycl": 51, "d": [25, 41, 42, 44, 48, 49, 51, 53, 54, 74, 96, 125, 129, 153, 156, 166, 173, 174, 175, 177, 178, 180, 181, 191, 193, 224, 225, 228, 241, 244, 262, 264, 275, 281, 290, 292, 295, 298, 299, 301, 303, 308, 312], "daemoinz": 47, "daemon": [47, 48, 49, 50, 177, 180, 181, 290, 295, 312], "dai": [50, 52, 56, 158, 173, 211, 212, 225, 226, 228, 248, 311], "daijiro": 56, "daiki": [37, 38, 39, 47], "danger": [114, 126, 127, 128, 137, 143, 163, 164, 292], "dangl": [137, 163], "danish": [53, 260], "darwin": 158, "dash": [31, 231, 232, 233, 234, 235, 258, 259], "dat": [40, 41, 47, 48, 51, 52], "dat_kei": [124, 141, 254], "data": [0, 21, 22, 23, 28, 29, 32, 33, 34, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 61, 81, 90, 91, 94, 106, 110, 112, 121, 122, 123, 124, 125, 132, 134, 135, 141, 142, 149, 152, 156, 159, 173, 178, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 226, 237, 239, 241, 244, 245, 246, 247, 248, 249, 251, 252, 254, 276, 278, 281, 286, 292, 298, 304, 307, 308, 310, 313], "data_column": 156, "data_index": 123, "data_numb": 42, "data_set_nam": 159, "data_str": 42, "data_tag": 41, "data_typ": [42, 44, 96], "databas": [0, 20, 22, 31, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 61, 106, 112, 118, 122, 123, 124, 125, 126, 127, 128, 139, 140, 142, 143, 144, 149, 150, 151, 152, 155, 156, 161, 163, 169, 171, 173, 175, 177, 179, 180, 181, 205, 206, 223, 224, 225, 229, 248, 254, 281, 282, 291, 296, 298, 303, 304, 312], "database_path": [106, 173], "database_unmap": [22, 50, 52, 57, 92, 105, 143, 149, 152], "dataset": [22, 48, 50, 51, 57, 159, 172, 180, 181, 250, 251], "dataset1": 180, "dataset2": 180, "dataset3": 180, "dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b": 38, "date": [0, 22, 42, 43, 111, 176, 188, 282, 304, 311], "dav": 195, "dave": [183, 186], "david": [43, 44, 195], "daylight": 49, "db": [29, 39, 40, 42, 44, 48, 50, 51, 52, 53, 122, 124, 141, 159, 163, 173, 175, 176, 177, 181, 244, 281, 296, 298, 308, 312], "db1": 292, "db2": 292, "db_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u8907\u96d1\u306a\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "db_api\u306f": 11, "db_api\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u90e8\u5206\u306b\u5bfe\u3059\u308b\u5358\u7d14\u306a\u64cd\u4f5c\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059": 11, "db_path": [50, 94, 112, 114, 142, 143, 164, 175, 177, 178, 180, 241, 290, 295, 298, 308, 312], "dbm": [0, 42, 205, 206], "dbmss": [0, 42], "db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059": 175, "db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059": [162, 175], "db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a": 162, "db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059": 175, "dcb314": 49, "dcmake_install_prefix": [12, 23], "dcmake_prefix_path": 23, "dd": [43, 44, 225, 228, 244], "ddl": [45, 49, 176], "ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059": 301, "ddthh": 42, "de": [17, 44, 74], "deadlock": 52, "deafult": 39, "deal": 275, "deb": [12, 28, 32, 39, 47, 48, 49, 50, 51, 54], "debian": [12, 18, 22, 23, 27, 31, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 296], "debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059": 14, "debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c": 39, "debian\u7cfb": 12, "debootstrap": 12, "debug": [6, 8, 27, 41, 43, 45, 49, 50, 51, 52, 54, 56, 123, 129, 130, 168, 175, 177, 228], "debugg": 6, "debug\u3092\u8ffd\u52a0": 37, "debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c": 37, "decemb": 56, "decid": [43, 44, 56, 183, 196, 243], "decim": [42, 43, 99, 175, 225, 282, 305], "decis": [41, 56], "decod": 46, "decreas": [6, 34, 41, 42, 44, 50, 52, 54, 81, 111, 262], "decrement": [42, 52], "decrypt": 12, "dededed": 44, "def": [41, 44], "defalt": 37, "defaul_valu": 184, "default": [0, 6, 18, 27, 34, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 91, 96, 110, 111, 122, 123, 125, 126, 127, 128, 132, 133, 134, 135, 137, 141, 143, 152, 156, 157, 158, 159, 161, 163, 165, 168, 173, 175, 177, 180, 183, 184, 186, 188, 191, 193, 196, 202, 203, 205, 208, 209, 219, 224, 225, 226, 228, 231, 237, 241, 245, 247, 251, 275, 281, 282, 292, 296, 298, 301, 305, 306, 308, 310, 312], "default_close_tag": [42, 205], "default_command_vers": [41, 45, 94, 97, 158, 177, 241, 298, 308, 312], "default_mod": [195, 219], "default_n_work": [94, 158, 177, 298, 308, 312], "default_open_tag": [42, 205], "default_oper": [41, 42, 54], "default_token": [41, 42, 43, 44, 45, 51, 74, 111, 123, 132, 134, 135, 142, 152, 155, 156, 162, 163, 164, 165, 175, 176, 180, 191, 192, 193, 202, 203, 205, 206, 210, 224, 225, 226, 244, 245, 246, 247, 255, 260, 261, 275, 276, 278, 281, 301, 308, 310, 311, 314], "default_valu": [41, 184, 208, 209], "defer": 45, "defg": 44, "defin": [42, 43, 44, 50, 53, 111, 142, 156, 179, 180, 201, 225, 226, 237, 243, 248, 250, 275, 282, 298, 308], "define_selector": [22, 57, 92, 175], "define_selector\u306f": 119, "definion": 225, "definit": [43, 44, 47, 58, 111, 121, 125, 132, 134, 135, 149, 150, 156, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 244, 245, 246, 247, 286], "defrag": [22, 39, 48, 57, 92], "defrag\u306f": 120, "defxyzabc": 41, "degrad": [41, 43, 50, 54, 149], "degre": [39, 91, 94, 156, 203, 225, 305, 315], "dejan": 51, "delai": 51, "delet": [12, 22, 36, 37, 39, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 57, 92, 106, 115, 123, 124, 125, 137, 156, 170, 171, 254], "delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "delete\u30b3\u30de\u30f3\u30c9": 36, "delimit": [0, 42, 43, 48, 50, 53, 168, 205, 253, 264, 305], "delimiter1": 272, "delimiter2": 272, "delimiter_pattern": 205, "delimiter_regexp": [42, 43, 205], "delta": [43, 44], "demerit": [52, 254], "demo": 307, "deni": 105, "dense_union": [44, 96], "deo": [43, 44], "dep": 12, "depend": [0, 3, 7, 22, 23, 34, 40, 41, 42, 43, 44, 45, 47, 49, 51, 52, 54, 55, 94, 95, 111, 123, 124, 125, 141, 149, 150, 156, 180, 203, 208, 237, 245, 246, 247, 274, 310], "deprec": [5, 6, 31, 39, 41, 44, 45, 47, 48, 49, 50, 51, 52, 85, 93, 109, 135, 151, 156, 158, 161, 175, 188, 232, 233, 234, 235, 236, 258, 259, 284], "deprecated\u3060\u3063\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3068\u306a\u308a\u307e\u3059": 93, "deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059": 93, "depth": [44, 96], "derail": 56, "dereferenc": 51, "deriv": [181, 296], "descend": [50, 134, 156, 159, 180, 286], "describ": [3, 5, 6, 7, 8, 17, 18, 19, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 41, 42, 45, 49, 50, 58, 59, 85, 90, 91, 92, 95, 107, 110, 111, 112, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 170, 172, 173, 175, 177, 180, 182, 193, 194, 210, 224, 225, 229, 237, 238, 239, 243, 244, 245, 246, 247, 248, 249, 250, 251, 253, 264, 281, 283, 298, 302, 308, 310, 311], "descript": [6, 22, 43, 44, 47, 48, 49, 50, 51, 54, 57, 96, 111, 112, 124, 125, 132, 134, 135, 138, 139, 142, 155, 156, 157, 158, 161, 168, 169, 173, 175, 177, 178, 180, 202, 224, 228, 244, 248, 250, 298, 299, 302, 311], "description\u306b": 299, "descriptor": 180, "design": [45, 47, 156, 290, 305], "desin": 296, "desir": 56, "desktop": [8, 302], "despit": [45, 54], "dest": [41, 174, 175, 305], "destin": [41, 42, 43, 50, 54, 74, 110, 160], "destination_tag": 43, "destruct": [125, 173], "detail": [0, 1, 3, 7, 12, 17, 24, 25, 27, 28, 31, 32, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 74, 85, 87, 90, 91, 98, 104, 110, 111, 118, 124, 132, 134, 135, 137, 141, 142, 144, 145, 149, 150, 151, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 168, 176, 177, 180, 202, 203, 224, 225, 228, 244, 257, 260, 274, 281, 282, 283, 296, 305, 306, 308, 315], "detect": [6, 31, 39, 41, 42, 43, 44, 45, 47, 50, 51, 52, 53, 54, 96, 168, 177, 198, 205], "determin": [43, 134, 156, 223, 237, 302, 308], "dev": [2, 6, 12, 14, 31, 39, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 177], "devel": 31, "develop": [0, 3, 6, 7, 8, 22, 23, 24, 25, 28, 30, 32, 33, 42, 47, 48, 49, 50, 54, 56, 93, 95, 260, 311], "develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059": 93, "deviat": 41, "devic": 0, "dewangga": 50, "df": [41, 247], "df_column": 41, "dgrn_with_apache_arrow": 23, "dgrn_with_mrubi": 23, "dh": 12, "diacrit": [45, 231, 235], "dialog": 48, "diana": 45, "dict": 44, "dictionari": [30, 37, 47, 48, 49, 50, 51, 96, 156, 229, 274], "did": [41, 43, 44, 96, 111], "didn": [41, 43, 44, 45, 46, 49, 50, 51, 54, 103], "diff": 54, "differ": [18, 19, 41, 42, 43, 45, 47, 49, 50, 52, 53, 56, 111, 124, 134, 141, 156, 161, 175, 177, 180, 188, 191, 193, 195, 202, 208, 224, 225, 241, 244, 245, 264, 265, 266, 267, 268, 269, 270, 271, 273, 275, 279, 280, 292, 305, 310, 315], "difficult": [0, 42, 54], "diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059": 176, "dig": 302, "digest": 292, "digit": [41, 49, 53, 111, 132, 134, 135, 156, 161, 228, 244, 251, 264, 268, 271, 275], "dimens": 45, "dinam": 223, "dingo": 41, "dinner": 0, "dir": [12, 176], "direct": [47, 48, 54, 292], "directli": [42, 52, 54, 122, 156, 225, 311], "directori": [6, 17, 27, 31, 39, 41, 47, 48, 49, 50, 53, 85, 111, 161, 177, 180, 181, 197, 243], "directory_not_empti": 298, "disabl": [18, 37, 39, 40, 41, 43, 44, 45, 47, 48, 49, 50, 52, 53, 132, 134, 135, 143, 149, 156, 158, 175, 177, 180, 224, 228, 250, 302], "disable_and_not": 42, "disable_prefix_search": 42, "discard": [48, 56], "disco": 41, "discuss": [2, 19, 44], "disk": [50, 52, 118, 124, 140, 161, 175, 177, 244, 310], "disk_usag": 141, "displai": [41, 43, 44, 47, 51, 52, 54, 158, 201], "distanc": [0, 41, 44, 45, 47, 51, 156, 188, 198, 224, 225, 239, 315], "distance_cosin": [45, 197], "distance_inner_product": [45, 197], "distance_l1_norm": 45, "distance_l2_norm_squar": 45, "distinct": [34, 51, 180, 237, 313], "distribut": [23, 24, 28, 29, 31, 32, 33, 44, 45, 47, 49, 56, 132, 135, 248], "divid": [0, 42, 43, 225, 247, 305], "divis": [49, 52, 53], "dll": [39, 41, 47, 49, 51, 53, 85, 166], "dnf": [18, 24, 25], "do": [0, 6, 17, 18, 27, 31, 39, 41, 42, 43, 44, 49, 50, 54, 68, 74, 91, 94, 96, 111, 127, 137, 156, 163, 224, 298, 306, 307, 308, 310, 311, 313], "do_alon": 166, "do_gqpt": 176, "do_gqtp": 176, "do_http": 176, "do_loc": 176, "do_map": 52, "doc": [3, 12, 16, 17, 27, 39, 40, 41, 47, 48, 49, 50, 51, 53, 106, 177, 314], "doc_bodi": 314, "doc_update_fil": 18, "docker": [12, 22, 23, 42, 43], "dockerfil": 12, "dockerhub": 29, "documenataion": 95, "document": [0, 3, 5, 6, 7, 8, 12, 16, 17, 21, 23, 27, 31, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 87, 102, 111, 137, 156, 168, 175, 177, 178, 180, 182, 202, 203, 205, 206, 224, 225, 226, 244, 245, 246, 247, 252, 261, 262, 281, 283, 303, 309, 314], "document_index": [41, 44, 45, 191, 192, 193, 275], "documents_content_index": [42, 202, 203, 205, 206], "documentvectorbm25": 41, "docutil": 12, "dodaisuk": [53, 54], "doe": [0, 42, 43, 44, 45, 47, 48, 50, 51, 81, 91, 156, 159, 173, 177, 202, 208, 210, 224, 225, 296, 305, 308], "doesn": [31, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 85, 95, 110, 111, 112, 114, 118, 132, 134, 135, 137, 140, 141, 142, 143, 149, 153, 155, 156, 157, 161, 164, 167, 168, 173, 177, 180, 183, 186, 195, 205, 206, 219, 224, 225, 226, 227, 229, 231, 235, 239, 240, 243, 244, 245, 247, 248, 250, 251, 254, 261, 262, 264, 272, 274, 276, 278, 281, 286, 291, 292, 314], "domain": [16, 47, 49, 50, 51, 68, 85, 114, 162, 164, 175, 312], "domain_error": 298, "domin": 56, "don": [17, 23, 31, 33, 39, 41, 42, 43, 44, 49, 50, 52, 53, 54, 61, 64, 68, 81, 91, 96, 99, 111, 112, 118, 123, 124, 126, 127, 128, 132, 133, 134, 135, 137, 149, 152, 156, 157, 161, 175, 177, 178, 180, 201, 205, 224, 225, 226, 227, 236, 237, 241, 243, 244, 245, 246, 247, 253, 261, 262, 264, 274, 275, 292, 295, 298, 308, 312], "done": [49, 52, 61, 111, 124, 156, 177, 186], "donut": 198, "dot": [45, 47, 53, 231, 232, 233, 234, 235, 258, 259], "doubl": [39, 41, 42, 44, 47, 48, 49, 50, 138, 155, 156, 161, 168, 183, 196, 224, 225, 254, 282, 308], "doubt": 306, "down": [22, 42, 43, 44, 48, 49, 53, 94, 135, 156, 183, 186, 196, 302, 304, 311], "downcas": 229, "download": [22, 23, 31, 33, 227], "downtim": [58, 291], "doxygen": [60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83], "dput_configuration_nam": 12, "dput_incom": 12, "dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc": 37, "drastic": 51, "draw": [231, 232, 233, 234, 235, 258, 259, 307], "drill": [135, 156, 311], "drilldown": [22, 39, 41, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 89, 119, 134, 254, 304, 307, 311], "drilldown_adjust": 53, "drilldown_calc_target": 49, "drilldown_calc_typ": 49, "drilldown_filt": [51, 52], "drilldown_limit": [50, 119, 306], "drilldown_max_n_target_record": [43, 44], "drilldown_offset": [50, 119, 306], "drilldown_output_column": [49, 119, 306], "drilldown_result": 156, "drilldown_result1": 156, "drilldown_result2": 156, "drilldown_result_1": 156, "drilldown_result_2": 156, "drilldown_result_for_column1": 156, "drilldown_result_for_column2": 156, "drilldown_result_for_kei": 156, "drilldown_result_for_labeled_drilldown": 156, "drilldown_result_n": 156, "drilldown_sort_kei": [51, 306], "drilldown_sortbi": [50, 51, 119], "drilldown_xxx": 156, "drilldown\u6642\u306b\u53c2\u7167\u5148\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306bsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63": 36, "drink": 41, "droonga": [195, 196, 219, 248], "drop": [39, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 111], "due": [0, 42, 45, 53, 56, 205, 206, 302], "dump": [22, 37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 64, 92, 129, 137, 163, 171, 175, 177, 228, 281], "dump_config": 122, "dump_index": 50, "dump_path": 41, "dump_plugin": [42, 50], "dump_record": 50, "dump_schema": [42, 50], "dump\u30b3\u30de\u30f3\u30c9": 36, "duplic": [41, 43, 49, 51, 54], "dure": [47, 52, 53, 54, 56, 124, 308], "dutch": [53, 260], "dylan": 44, "dynam": [0, 40, 41, 42, 43, 44, 45, 51, 52, 53, 54, 111, 177, 275, 308], "e": [17, 27, 31, 34, 41, 42, 43, 44, 49, 50, 52, 54, 74, 105, 111, 129, 156, 159, 161, 168, 175, 191, 193, 224, 225, 228, 231, 234, 235, 244, 250, 253, 275, 277, 305, 315], "ea": 168, "each": [0, 5, 18, 23, 31, 39, 41, 42, 43, 44, 45, 48, 50, 51, 52, 53, 56, 68, 91, 94, 96, 98, 99, 111, 112, 132, 133, 134, 135, 137, 139, 141, 142, 153, 156, 158, 159, 168, 169, 171, 175, 177, 180, 191, 192, 193, 195, 201, 202, 203, 205, 219, 224, 225, 228, 245, 250, 251, 253, 254, 260, 286, 298, 303, 305, 306, 307, 308, 309, 315], "each_nam": 50, "ealier": 47, "eanbl": 6, "ear": 168, "earch": 168, "earli": 52, "earlier": [39, 50, 51, 53, 124, 170, 229, 230], "easi": [0, 42, 43, 49, 51, 54, 175, 180, 223, 237, 243, 245, 292, 312], "easier": [42, 43, 44, 52, 245], "easili": [41, 42, 45, 49, 51, 228], "east": 56, "ec": 156, "echo": 143, "eclips": [17, 27], "ecmascript": [47, 48, 156, 223, 225], "ed": [44, 51, 156], "edg": 53, "edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f": 9, "edge\u3054\u3068\u306bqueue\u3092\u6301\u3064": 9, "edge\u306equeue\u306benqueue\u3055\u308c\u308b": 9, "edge\u306fctx\u3092\u542b\u3080": 9, "edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc": 9, "edict": 51, "edict2grn": 49, "edit": [3, 12, 21, 31, 43, 44, 47, 51, 156, 177, 225, 243], "edit_dist": [22, 36, 51, 57, 182, 225], "editor": 17, "editorconfig": 42, "editrc": 39, "ef": 44, "effect": [41, 42, 43, 45, 47, 50, 53, 111, 124, 125, 141, 175, 202, 203, 224, 225, 246, 311], "effici": [0, 41, 51, 91, 111, 133, 177, 310], "effort": 56, "efghi": 44, "egg": 310, "ehllo": 156, "eight": [275, 308], "either": [19, 48, 135, 156, 183, 208, 224, 225, 244, 310], "eito": 48, "el": [262, 264, 267, 268, 275], "elaps": [39, 44, 95, 96, 158, 180, 225, 228, 241, 282], "elapsed_tim": [42, 43, 44, 53, 95, 96], "element": [41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 74, 91, 95, 96, 100, 111, 142, 155, 156, 205, 206, 219, 305, 308], "element1": [91, 225], "element2": [91, 225], "element3": 91, "elfr": 47, "elimin": 48, "ell": 275, "elli": 45, "ellip": [188, 189], "ellipsoid": 189, "ello": 50, "els": [49, 50, 302], "em": [111, 231, 232, 233, 234, 235, 258, 259], "emac": 17, "embed": [0, 45, 50, 52, 175, 177, 193, 197, 206, 243], "embedd": [50, 197], "emerg": [129, 130, 175, 177, 228], "emfil": 302, "emili": 45, "emit": 47, "emoji": [231, 232, 233, 234, 235], "emphas": 194, "emphasi": 56, "empti": [39, 41, 42, 43, 44, 48, 49, 50, 52, 54, 74, 111, 112, 115, 116, 117, 141, 142, 155, 156, 208, 209, 224, 282], "en": [2, 12, 18, 41, 43, 54, 159, 168, 177, 205, 250, 270, 271], "enabl": [6, 17, 18, 27, 32, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 56, 94, 111, 134, 143, 149, 150, 156, 158, 161, 168, 175, 177, 180, 196, 197, 198, 208, 209, 211, 212, 219, 221, 222, 224, 228, 231, 232, 233, 234, 235, 248, 257, 258, 259, 305, 306, 312, 314], "enable_tokenized_delimit": 168, "enablerepo": 24, "enci": 176, "enclos": 308, "encod": [46, 48, 49, 50, 51, 53, 68, 74, 85, 175, 180, 225, 230, 236, 241, 292, 298], "encoding\u306e\u5024\u304c": 39, "encodiong": 225, "encount": [23, 28, 32, 33], "encyclopedia": 282, "end": [26, 43, 44, 45, 50, 56, 174, 188, 208, 209, 224, 225, 241, 244, 272, 277], "end_of_data": 298, "end_tagn": 192, "end_tim": 42, "endian": 49, "endien": 111, "endpoint": [180, 181], "eng": [159, 250], "engi": [159, 250], "engin": [22, 24, 25, 28, 32, 42, 43, 44, 56, 156, 159, 168, 191, 192, 193, 197, 205, 206, 244, 245, 246, 247, 250, 251, 252, 253, 296, 305, 307], "enginen": 250, "english": [2, 14, 17, 18, 19, 39, 48, 49, 51, 52, 53, 54, 156, 225, 250, 260, 264], "enhanc": [18, 55, 56], "enorm": [51, 253, 307], "enough": [0, 41, 42, 43, 49, 50, 51, 52, 53, 54, 56, 101, 104, 111, 134, 183, 196, 197, 206, 303, 310], "enough_filtered_ratio": 42, "enourm": 54, "ensur": [18, 50, 51, 52, 53, 251], "enter": [48, 50, 298, 308], "enterpris": 31, "entir": [56, 208], "entiti": 0, "entranc": 308, "entri": [41, 42, 43, 44, 48, 50, 51, 61, 96, 107, 109, 110, 113, 119, 120, 121, 125, 126, 127, 128, 132, 134, 135, 152, 156, 163, 173, 191, 192, 193, 210, 224, 225, 275, 281, 310, 311], "entries_20150708": [132, 134, 135], "entries_20150709": [132, 134, 135], "entries_bodi": 310, "entries_cont": [41, 43, 44, 45], "entries_content_index": [43, 44, 156, 224, 225, 281], "entries_content_index_20150708": [132, 134, 135], "entries_content_index_20150709": [132, 134, 135], "entries_key_index": [41, 43, 44, 156, 224, 225, 281], "entries_key_index_20150708": [132, 134, 135], "entries_key_index_20150709": [132, 134, 135], "entries_numb": 50, "entries_titl": [43, 44, 310], "entries_whol": 310, "entries_yyyymmdd": [132, 134, 135], "entrust": 56, "entry1": [110, 310], "entry2": 310, "entry3": 310, "entry4": 310, "entry_20150708": [132, 135], "entry_20150709": [132, 135], "entry_bodi": 152, "entry_kei": 152, "entry_selector": 119, "entrykei": 163, "enumer": 308, "env": 243, "envelop": 51, "enviro": 41, "enviromn": 50, "environ": [6, 21, 23, 27, 31, 33, 39, 40, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 149, 150, 156, 177, 243], "envoron": 43, "eoan": [41, 54], "eol": [26, 41, 42, 43, 45, 52, 53], "epel": [24, 47, 52], "epoch": [42, 305, 311], "epol": [41, 94, 158, 177, 298, 308, 312], "equal": [43, 44, 45, 49, 50, 51, 54, 111, 131, 156, 159, 175, 177, 186, 195, 202, 205, 206, 219, 223, 230, 232, 233, 234, 235, 236, 243, 258, 259, 314, 315], "equat": [188, 231, 235], "equival": [44, 54, 74, 124, 231, 235], "er": [43, 44, 96, 244], "era": [0, 22], "eric": [183, 186], "ermin": [41, 54], "errbuf": 53, "errno": [49, 50, 302], "error": [0, 6, 22, 23, 28, 31, 32, 33, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 58, 68, 84, 85, 100, 110, 111, 115, 117, 118, 121, 124, 125, 126, 127, 128, 129, 130, 132, 134, 135, 137, 143, 144, 145, 149, 150, 151, 152, 155, 156, 157, 160, 161, 163, 164, 166, 170, 175, 177, 188, 224, 228, 244, 247, 296, 300, 308], "error_cod": 85, "error_fil": 44, "error_funct": 44, "error_input_command": 44, "error_input_fil": 44, "error_input_lin": 44, "error_lin": 44, "error_loc": 95, "error_messag": [44, 95], "error_no_system_resourc": 52, "errror": 244, "escal": [22, 37, 43, 44, 45, 47, 53, 54, 57, 156, 171, 175, 182, 301], "escap": [42, 43, 47, 48, 49, 52, 68, 191, 192, 205, 225], "escape_charact": 68, "escaped_charact": 68, "escaped_queri": 68, "escaped_str": 68, "escaps": [191, 192, 193, 206], "especi": [43, 50], "essenti": [18, 177], "establish": [44, 56, 298, 308], "estim": [41, 50, 51, 52, 53, 54, 165, 303], "estimate_s": 50, "estimated_s": [51, 165], "etc": [3, 25, 41, 47, 53, 54, 177, 243, 281, 292, 296, 303, 305, 308], "etim": 174, "euc": [48, 175, 277], "euc_jp": 31, "euclidean": 45, "ev": 302, "eva": 56, "eval": 154, "evalu": [41, 42, 43, 45, 48, 50, 52, 53, 111, 154, 155, 156, 186, 210, 224, 225, 244, 277], "evaluated_valu": 154, "even": [0, 23, 28, 31, 32, 33, 41, 42, 43, 44, 45, 47, 48, 49, 51, 52, 53, 54, 74, 111, 124, 134, 137, 143, 156, 157, 173, 225, 247, 250, 276, 310], "event": [50, 180, 292], "event_dataset": [179, 181], "event_queri": [159, 179, 180, 181, 250, 251, 253], "event_typ": [179, 180], "eventu": 44, "ever": 48, "everi": [41, 42, 52, 111, 306], "everyon": 312, "evil": [180, 225], "evn": 43, "evolut": 22, "evolutionari": 56, "ex": [12, 42, 43, 53, 166, 168], "exact": [11, 42, 44, 58, 96, 111, 133, 156, 161, 254], "exactli": [43, 54, 303], "exampl": [0, 3, 8, 18, 20, 22, 27, 31, 34, 37, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 91, 94, 95, 96, 98, 99, 103, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 177, 178, 180, 182, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 286, 292, 300, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "exapml": 111, "exce": [47, 48, 50, 51, 141], "exceed": [34, 303], "excel": 243, "except": [39, 41, 42, 43, 47, 49, 50, 52, 53, 54, 58, 91, 110, 134, 135, 141, 152, 154, 156, 161, 168, 175, 177, 195, 196, 205, 206, 208, 209, 219, 224, 231, 232, 233, 234, 235, 239, 244, 254, 260, 261, 264, 272, 274, 275, 281], "except_source_column": 42, "exclam": 50, "exclud": [42, 43, 47, 48, 49, 53, 122, 125, 132, 134, 135, 137, 183, 231, 232, 233, 234, 235, 274], "exclude_t": 48, "exclus": [43, 51, 111, 191, 192, 193], "excut": 48, "exe_common": 166, "exec_format_error": 298, "execut": [0, 18, 22, 27, 31, 33, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 81, 91, 92, 95, 96, 99, 103, 105, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 173, 177, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 226, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 245, 246, 247, 248, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 286, 290, 298, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "execute_search": 135, "exemplifi": 56, "exist": [1, 27, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 58, 111, 124, 125, 131, 132, 134, 135, 136, 137, 140, 143, 153, 156, 163, 173, 175, 177, 181, 183, 186, 195, 196, 197, 225, 227, 245, 248, 264, 296, 298, 305, 308, 310, 315], "existent1": [43, 111], "existent2": [43, 111], "exit": [47, 48, 50, 171, 173, 175, 225], "exit_failur": 84, "exit_success": 84, "exmapl": 44, "expand": [22, 41, 42, 43, 44, 47, 48, 51, 57, 144, 145, 151, 156, 161, 202, 203, 243, 248], "expand_character_refer": [43, 44], "expanded_term_column": 42, "expans": [22, 39, 42, 45, 47, 51, 52, 56, 156, 202, 243, 304], "expect": [42, 43, 45, 49, 54, 111, 156, 183, 196, 224, 240, 244, 246, 274, 278, 305], "expens": 42, "experiment": [18, 27, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 61, 96, 132, 138, 145, 154, 156, 186, 197, 227, 244, 246, 277], "expert": 42, "expertis": 56, "expir": [50, 52, 107, 177], "explain": [50, 53, 54, 96, 111, 122, 156, 180, 305, 308], "explan": [54, 111, 237], "explicitli": [18, 31, 44, 45, 47, 50, 96, 111, 124, 156, 157, 177, 205, 236, 241, 250, 292, 310], "exploit": 0, "explos": 56, "expnas": 243, "expon": 111, "expornenti": 225, "export": [18, 39, 41, 48, 49, 50, 51, 52, 53], "expr": [58, 68, 166], "express": [22, 39, 41, 42, 43, 44, 47, 48, 50, 51, 53, 54, 56, 57, 68, 111, 112, 121, 125, 141, 142, 155, 156, 177, 188, 202, 205, 223, 272, 276, 277, 281, 310], "expression_rewrit": [51, 53], "ext": 168, "extend": [49, 54, 56, 244, 310, 314], "extens": [41, 178, 197, 241], "extern": 31, "extra": [43, 45, 224, 225], "extract": [0, 17, 27, 31, 33, 42, 43, 44, 47, 49, 50, 51, 52, 54, 68, 134, 156, 161, 177, 193, 205, 206, 209, 210, 228, 231, 232, 233, 234, 235, 249, 260, 262, 272, 276, 296, 302], "extrct": 225, "ey": 156, "f": [43, 54, 74, 168], "f10399c0": 12, "f6": 25, "fa": 168, "face": 227, "facebook": [12, 22, 47], "facebook\u306bgroonga\u30b0\u30eb\u30fc\u30d7\u304c\u3042\u308a\u307e\u3059": 12, "facet": 156, "fact": [156, 307], "faction": 311, "factor": [49, 156], "fail": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 85, 110, 111, 115, 118, 124, 132, 134, 137, 143, 144, 145, 149, 150, 151, 156, 160, 161, 163, 164, 166, 184, 224, 308], "failur": [47, 49, 50, 51, 52], "fall": 52, "fallback": [50, 51], "fals": [12, 36, 41, 42, 43, 44, 48, 49, 51, 53, 94, 110, 111, 114, 115, 117, 118, 121, 126, 127, 128, 129, 131, 135, 137, 140, 141, 142, 143, 152, 153, 155, 158, 163, 168, 170, 177, 183, 191, 192, 193, 195, 196, 203, 205, 210, 224, 225, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280, 282, 298, 305, 308, 312, 313], "famili": [43, 44, 45, 52, 53, 111, 156, 168, 225], "familiar": 306, "farther": 44, "fast": [0, 41, 42, 43, 44, 45, 46, 50, 87, 95, 111, 125, 132, 134, 135, 156, 161, 168, 188, 191, 192, 193, 194, 195, 196, 197, 205, 206, 219, 224, 225, 239, 244, 245, 247, 254, 291, 292, 307, 308, 310], "faster": [31, 39, 41, 42, 45, 48, 49, 51, 52, 53, 54, 111, 134, 183, 196, 277, 290], "fastest": 58, "fastli": [94, 156], "fatal": 49, "fault": [47, 54], "favor": 56, "favorit": 17, "favorited_bi": 311, "fbnteqr": 50, "fd": [39, 180, 302], "featur": [0, 6, 17, 27, 39, 41, 42, 44, 47, 49, 50, 51, 52, 53, 54, 56, 58, 91, 94, 96, 99, 110, 111, 132, 133, 134, 135, 138, 139, 145, 156, 157, 158, 159, 161, 163, 166, 167, 168, 169, 173, 175, 177, 180, 188, 197, 201, 202, 223, 224, 225, 227, 231, 235, 240, 243, 244, 245, 246, 248, 249, 250, 251, 252, 253, 254, 291, 298, 306, 308, 310, 312], "fedora": [18, 37, 39, 47, 48, 49, 296], "fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332": 37, "fedora\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30eb\u30fc\u30eb\u306b\u5f93\u3046\u3088\u3046\u306b\u6539\u826f": 37, "feel": [18, 43, 44, 49, 244], "felt": 56, "fetch": [42, 49, 253, 310], "few": [41, 43, 45, 56, 156, 257, 291, 292], "fewer": [52, 111], "ff01": 50, "ff1f": 50, "ff21": 53, "ff65": [231, 232, 233, 234, 235, 258, 259], "ff70": [231, 232, 233, 234, 235, 258, 259], "ff76": 230, "ff9e": 230, "ffef": 277, "fff0": 277, "fffe": 168, "fg": 44, "fget": 50, "field": [50, 112], "figur": 239, "file": [3, 12, 22, 27, 31, 33, 36, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 81, 95, 99, 101, 122, 125, 153, 156, 167, 172, 173, 177, 178, 180, 197, 225, 228, 248, 250, 290, 291, 296, 298, 302, 303, 308], "file_corrupt": 298, "file_exist": 298, "file_too_larg": 298, "filenam": 52, "filename_too_long": 298, "file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8": 37, "fill": [41, 42, 156, 225], "filter": [22, 28, 32, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 91, 110, 111, 119, 121, 124, 141, 142, 153, 155, 161, 165, 168, 182, 183, 186, 188, 193, 195, 196, 197, 198, 201, 202, 203, 205, 206, 210, 223, 225, 240, 244, 252, 253, 255, 257, 258, 259, 260, 261, 276, 286, 299, 301, 306, 307, 311, 313, 315], "filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8": 37, "final": [18, 43, 84, 85, 91, 156, 177, 231, 232, 233, 234, 235, 258, 259, 302], "find": [0, 3, 17, 18, 31, 33, 42, 45, 50, 51, 53, 56, 110, 111, 114, 134, 135, 156, 159, 164, 191, 192, 193, 201, 205, 206, 219, 229, 240, 248, 250, 251, 253, 260, 262, 264, 265, 266, 267, 268, 274, 275, 302, 308], "find_packag": 44, "finish": [17, 41, 43, 50, 53, 54, 84, 111, 132, 149, 153, 156, 157, 173, 228], "finnish": [53, 260], "firefox": 17, "firewal": 105, "firewood": [47, 48], "first": [17, 18, 31, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 53, 54, 85, 95, 111, 112, 124, 132, 134, 135, 153, 156, 161, 175, 177, 191, 192, 193, 195, 197, 205, 206, 211, 212, 219, 224, 225, 231, 232, 233, 234, 235, 243, 244, 245, 292, 296, 302, 305, 307, 308, 310, 311, 314], "fitler": [258, 259], "five": [95, 308], "fix": [111, 112, 114, 141, 156, 161, 188, 251, 298, 303], "fix_siz": 141, "fixed_size_column": 52, "fixed_size_type_vector_column": 50, "flag": [31, 34, 39, 40, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 68, 74, 85, 91, 108, 114, 123, 141, 155, 162, 164, 175, 176, 197, 224, 225, 228, 229, 230, 244, 254, 305, 306, 307, 308, 309, 310, 311, 313], "flanc": 188, "flat": 96, "flexibl": [0, 42, 111, 202, 223], "flexibli": 42, "float": [41, 42, 43, 44, 45, 46, 47, 50, 51, 90, 95, 96, 111, 132, 134, 135, 141, 142, 155, 156, 188, 241, 246, 247, 305], "float32": [41, 42, 43, 44, 90, 111, 142, 155, 197], "floor": 156, "floow": 42, "flow": [3, 51, 156, 292], "flower": 305, "fluent": 13, "flush": [50, 51, 52, 53, 54, 124], "flushviewoffil": 50, "fo": 41, "focal": [32, 41], "focu": [45, 231, 235], "focus": 308, "folder": 33, "follow": [2, 17, 18, 21, 27, 29, 31, 33, 34, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 58, 74, 84, 85, 90, 91, 95, 96, 110, 111, 112, 114, 124, 125, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 149, 155, 156, 159, 161, 163, 164, 166, 167, 168, 169, 173, 175, 177, 179, 180, 181, 183, 184, 188, 191, 192, 193, 195, 196, 197, 198, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 222, 224, 225, 228, 231, 235, 237, 239, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 262, 264, 266, 267, 268, 277, 281, 282, 290, 292, 295, 298, 302, 303, 305, 306, 307, 308, 312, 315], "followe": 311, "fontain": 39, "foo": 52, "food": [41, 44, 276], "food_nam": 44, "footnot": [188, 308], "forc": [47, 51, 52, 53], "force_match_escal": 45, "force_prefix": [45, 50, 53, 168, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280], "force_prefix_search": [45, 53, 168, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280], "forcibli": 41, "foreground": 175, "foreign": 56, "forget": [91, 124, 126, 150, 201], "fork": [3, 12, 17, 175], "fork\u3057\u305f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b": 12, "fork\u3057\u305f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u3066": 12, "fork\u3057\u305f\u30ea\u30dd\u30b8\u30c8\u30ea\u306egithub": 12, "fork\u3057\u305f\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u66f4\u65b0": 12, "fork\u3057\u305f\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u30ed\u30fc\u30ab\u30eb\u306bclone\u3057": 12, "form": [39, 41, 42, 44, 48, 51, 53, 54, 156, 177, 178, 223, 224, 225, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259, 295, 298, 308, 311, 312], "form_1": 308, "form_2": 308, "format": [17, 18, 22, 27, 31, 40, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 55, 57, 64, 85, 92, 97, 99, 100, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 166, 167, 168, 169, 170, 173, 177, 178, 180, 202, 203, 208, 209, 225, 227, 241, 244, 248, 282, 292, 298, 304, 305, 311, 312], "former": [58, 180, 224, 225, 230, 243], "formula": [188, 303], "forth": 225, "fossa": [32, 41], "fot": 41, "found": [31, 44, 47, 48, 52, 53, 54, 56, 123, 134, 156, 219, 240, 252, 262, 275], "founder": 56, "four": [91, 95, 110, 175, 195, 208, 209, 228, 254, 274, 308], "fraction": [0, 111, 305, 311], "fragment": 120, "francisco": 188, "frank": [183, 186], "free": [18, 22, 39, 41, 45, 49, 50, 53, 54, 61, 85, 94, 108, 156, 228, 282, 298, 303], "freebsd": [22, 50, 57], "freed": [41, 49, 51, 61, 158], "french": [53, 260], "french_memos_cont": 260, "frenchmemo": 260, "frenchterm": 260, "freq": 180, "freq0": [180, 253], "freq1": [180, 253], "freq2": [180, 253], "frequenc": [41, 49, 50, 159, 165, 245, 246, 247, 309], "frequency_threshold": [39, 159, 180, 250, 251, 253], "frequent": [27, 42, 52, 245], "fresh": [12, 226], "fridai": 212, "friend": [3, 307], "friendli": 47, "friendship": 307, "from": [0, 18, 22, 23, 26, 27, 39, 40, 41, 42, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 68, 81, 85, 87, 105, 106, 110, 111, 118, 121, 122, 123, 125, 132, 134, 137, 140, 142, 152, 153, 156, 158, 161, 163, 170, 175, 177, 183, 188, 193, 194, 197, 198, 205, 206, 208, 209, 219, 220, 223, 224, 225, 227, 231, 234, 235, 239, 240, 243, 244, 246, 247, 250, 251, 252, 253, 261, 262, 272, 278, 292, 296, 298, 302, 305, 308, 310, 311, 315], "from_column": 110, "from_offic": 198, "from_stat": 198, "fromtabl": 110, "front": 45, "fruit": 41, "fsf": 47, "fstack": 53, "ft": 197, "ftb": 55, "ftp": 176, "fu": 168, "fuku1": 53, "fukuoka": 56, "ful": 168, "fulfil": 296, "full": [12, 22, 31, 34, 39, 41, 42, 43, 44, 45, 47, 49, 50, 52, 53, 54, 84, 91, 112, 141, 156, 167, 168, 177, 186, 197, 202, 203, 205, 206, 219, 223, 225, 227, 230, 231, 232, 233, 234, 235, 244, 245, 257, 258, 259, 262, 272, 302, 304, 305, 307, 311, 314], "full_nam": [141, 155], "fulli": [47, 177], "fulltext": [24, 25, 28, 32, 52, 59, 132, 134, 135, 156, 161, 168, 175, 191, 192, 193, 206, 224, 225, 229, 239, 254, 296, 310], "fullwidth": [50, 53], "fumiyasu": 39, "funa": 49, "func": [41, 53, 81, 85], "functin": 225, "function": [0, 6, 14, 22, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 74, 81, 85, 95, 102, 111, 140, 141, 142, 167, 175, 177, 180, 183, 186, 188, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 222, 245, 246, 247, 254, 286, 296, 306, 315], "function_nam": 95, "function_not_impl": 298, "functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059": 14, "fundament": 56, "furigana": 159, "further": 305, "futur": [39, 41, 43, 44, 48, 54, 56, 91, 96, 132, 138, 141, 154, 188, 244, 292, 298], "fuzzi": [44, 51, 96, 161], "fuzzy_max_dist": 44, "fuzzy_max_distance_ratio": 44, "fuzzy_max_expans": 44, "fuzzy_prefix_length": 44, "fuzzy_search": [22, 41, 44, 51, 57, 182], "fuzzy_token": [44, 156], "fuzzy_with_transposit": 44, "g": [12, 23, 31, 34, 41, 42, 43, 44, 50, 52, 54, 74, 105, 111, 156, 161, 180, 191, 193, 208, 231, 234, 235, 250, 253, 305, 315], "g0763d91": 97, "g5a4c6f3": 41, "ga": [156, 168, 230], "ga54c5f8": 176, "gaeeyo": 41, "game": [42, 286], "game1": [42, 286], "game2": [42, 286], "gap": [42, 286], "garbag": [39, 41, 44, 48, 49, 53, 108, 141, 180], "gat": [306, 308, 315], "gather": 111, "ga\u306f\u3068\u3066\u3082": 44, "gb87d9f8": 241, "gc": 51, "gcc": [31, 39, 47, 48], "gd6cd635": 228, "gdb": 6, "gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068": 14, "gem": 12, "gemfil": 47, "gemini": 41, "gener": [3, 6, 21, 22, 23, 31, 41, 42, 43, 44, 48, 50, 52, 53, 54, 57, 60, 61, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 85, 114, 132, 134, 135, 141, 142, 155, 156, 165, 168, 179, 197, 206, 231, 235, 237, 244, 262, 264, 277, 308, 310], "genki": 48, "gensim": 41, "geo": [22, 39, 40, 48, 74, 188, 304, 311, 315], "geo_dist": [22, 39, 47, 48, 57, 182, 307, 315], "geo_distance2": [39, 188], "geo_distance3": [39, 188], "geo_distance_location_rectangl": 54, "geo_in_circl": [22, 39, 41, 48, 51, 57, 182, 307, 311, 315], "geo_in_rectangl": [22, 36, 37, 39, 41, 48, 51, 57, 182, 315], "geodet": [282, 315], "geograph": [188, 305], "geoindex": 307, "geoloc": [22, 49, 57, 238, 245, 246, 247], "geometri": [39, 50], "geopoint": 188, "geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc": 37, "geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8": 36, "geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63": 37, "geosit": 307, "german": [53, 260], "get": [0, 2, 12, 22, 27, 31, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 61, 85, 96, 106, 107, 116, 132, 133, 136, 143, 156, 165, 166, 167, 168, 171, 175, 178, 186, 196, 225, 226, 240, 241, 250, 251, 253, 274, 304, 306, 310, 311, 312, 315], "getaddrinfo": 47, "getenv": 50, "getter": 52, "gettext": [17, 18], "get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080": 174, "gguf": [197, 227], "gh": [44, 45, 46], "gi": 168, "git": [6, 7, 8, 12, 13, 17, 18], "github": [6, 7, 8, 12, 13, 17, 18, 19, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 96], "github_access_token": 12, "githubusercont": 21, "gitter": [2, 42, 50, 51], "gituub": 51, "give": [0, 41, 42, 43], "given": [45, 47, 48, 51, 56, 74, 111, 156, 197, 207, 212, 219, 224, 225, 302, 307], "glaser": 51, "glib": 48, "global": [22, 47, 48, 50, 54, 57, 59, 61], "glossari": [21, 22, 57], "gmbijecc": 166, "gmo": 49, "gnoonag": 156, "gnu": [3, 5, 8, 12, 18, 22, 23, 31, 39, 41, 42, 43, 44, 45, 52, 53, 54], "gnupg2": 12, "go": [0, 18, 111, 226, 290, 308], "gobject": 50, "golow": 44, "golubchik": [50, 52], "gone": 307, "goo": [56, 224, 225], "good": [0, 31, 41, 42, 43, 44, 45, 56, 123, 132, 134, 135, 156, 165, 168, 195, 219, 224, 225, 226, 261, 264, 274, 310], "googl": [56, 156, 224, 245, 246, 247, 252], "gorilla": [41, 42, 43], "goroo": 290, "got": [42, 48, 49, 106], "gp": 0, "gpg": 12, "gpl": [45, 55], "gpu": 197, "gqtp": [0, 1, 22, 24, 25, 28, 32, 47, 48, 49, 50, 53, 100, 174, 175, 176, 289, 297, 312], "gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": 3, "gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059": 174, "gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068": 174, "gqtp\u306e\u5834\u5408": 175, "gr": [156, 161, 168, 180, 208], "gr00nga": 156, "grab": 53, "grace": [50, 157], "gram": [0, 51, 53, 168, 225, 275, 308], "gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u8a9e\u306e\u30d2\u30c3\u30c8\u6570\u304c\u591a\u3044\u305f\u3081": 301, "gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u9069\u5408\u7387\u306e\u4f4e\u3044\u5834\u5408\u304c\u591a\u3044\u306e\u3067": 301, "gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059": 301, "gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3068tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3067\u6319\u52d5\u304c\u5909\u308f\u308a\u307e\u3059": 299, "gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u306f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059": 299, "gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u518d\u73fe\u7387\u3092\u3042\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c": 301, "gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059": 301, "grand": 311, "graph": 0, "greas": 305, "greater": [43, 44, 45, 94, 105, 149, 156, 159, 202, 208], "greater_equ": 202, "greatli": 54, "green": 27, "gregex": 48, "grep": 302, "grew": 141, "grmdb": 173, "grn": [42, 43, 122, 177], "grn1": 310, "grn2": 310, "grn3": 310, "grn_address_is_in_us": 100, "grn_address_is_not_avail": 100, "grn_arg_list_too_long": 100, "grn_back_trace_en": 43, "grn_bad_address": 100, "grn_bad_file_descriptor": 100, "grn_between_too_many_index_match_ratio": [42, 49, 183], "grn_bool\u578b\u3092\u8ffd\u52a0": 37, "grn_broken_pip": 100, "grn_bulk": [51, 68], "grn_bulk_": 52, "grn_bulk_vsiz": 68, "grn_cach": [22, 50, 57, 59], "grn_cache_clos": 61, "grn_cache_current_get": 61, "grn_cache_current_set": 61, "grn_cache_default_open": 52, "grn_cache_get_max_n_entri": 61, "grn_cache_open": 61, "grn_cache_set_max_n_entri": 61, "grn_cancel": [99, 100, 153], "grn_cas_error": 100, "grn_column": [22, 57, 59], "grn_column_cach": 52, "grn_column_get_all_index_data": 50, "grn_column_trunc": 49, "grn_com_event_stop_accept": 302, "grn_command_error": 100, "grn_command_input_get_argu": 50, "grn_command_run": 166, "grn_command_vers": [22, 57, 59], "grn_command_version_default": 50, "grn_cond": 81, "grn_conf_get": 50, "grn_conf_set": 50, "grn_config_cursor_get_kei": 50, "grn_config_cursor_get_valu": 50, "grn_config_cursor_next": 50, "grn_config_cursor_open": 50, "grn_config_delet": [50, 115], "grn_config_get": 50, "grn_config_set": 50, "grn_connection_refus": 100, "grn_connection_reset": [41, 100], "grn_content_json": 64, "grn_content_msgpack": 64, "grn_content_non": 64, "grn_content_tsv": 64, "grn_content_typ": [22, 57, 59], "grn_content_xml": 64, "grn_ctx": [22, 41, 47, 50, 53, 57, 59, 61, 68, 71, 74, 85, 133], "grn_ctx_at": [47, 51], "grn_ctx_batch_mod": 49, "grn_ctx_close": [39, 49], "grn_ctx_fin": 47, "grn_ctx_get_all_norm": 50, "grn_ctx_get_all_t": 50, "grn_ctx_get_all_token": 50, "grn_ctx_get_all_token_filt": 50, "grn_ctx_get_all_typ": 50, "grn_ctx_init": 39, "grn_ctx_is_open": 50, "grn_ctx_open": 39, "grn_ctx_output_nul": 50, "grn_ctx_output_uint64": 50, "grn_ctx_per_db": 39, "grn_ctx_qe_exec": 166, "grn_ctx_recv": 49, "grn_ctx_send": [51, 61, 64, 166], "grn_ctx_t": 100, "grn_ctx_use_ql": 49, "grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": 37, "grn_dat": 39, "grn_dat_cursor": 41, "grn_dat_cursor_get_max_n_record": 41, "grn_dat_repair": 40, "grn_db": [22, 40, 57, 59], "grn_db_float": [41, 50], "grn_db_float32": 41, "grn_db_kei": [40, 124], "grn_db_recov": [49, 50, 51], "grn_db_register_by_nam": 38, "grn_db_text": 68, "grn_db_touch": 37, "grn_db_unmap": 50, "grn_default_logger_get_path": 47, "grn_default_logger_get_rotate_threshold_s": 50, "grn_default_logger_set_path": [47, 52], "grn_default_logger_set_rotate_threshold_s": 50, "grn_default_query_logger_get_path": 47, "grn_default_query_logger_get_rotate_threshold_s": 50, "grn_default_query_logger_set_path": [47, 52], "grn_default_query_logger_set_rotate_threshold_s": 50, "grn_directory_not_empti": 100, "grn_domain_error": 100, "grn_dump_column_create_flag": 50, "grn_dump_table_create_flag": 50, "grn_ecmascript": [58, 156], "grn_enable_reference_count": [41, 43, 54, 149, 150], "grn_enc_default": 74, "grn_enc_euc_jp": 74, "grn_enc_koi8r": 74, "grn_enc_latin1": 74, "grn_enc_non": 74, "grn_enc_sji": 74, "grn_enc_utf8": 74, "grn_encod": [22, 53, 57, 59, 74, 85], "grn_end_of_data": 100, "grn_exec_format_error": 100, "grn_expr": [22, 47, 49, 57, 59, 119, 121, 188, 244], "grn_expr_add_var": 68, "grn_expr_alloc": 68, "grn_expr_append_const": [11, 52, 68], "grn_expr_append_const_int": 68, "grn_expr_append_const_str": 68, "grn_expr_append_obj": [11, 68], "grn_expr_append_op": [11, 52, 68], "grn_expr_clos": 68, "grn_expr_compil": 68, "grn_expr_creat": 68, "grn_expr_create_for_queri": 11, "grn_expr_estimate_s": 50, "grn_expr_exec": [50, 68, 166], "grn_expr_get_keyword": 68, "grn_expr_get_var_by_offset": 68, "grn_expr_optim": [42, 43, 53], "grn_expr_pars": [52, 68], "grn_expr_query_no_syntax_error": 52, "grn_expr_syntax_escap": 68, "grn_expr_syntax_escape_queri": 68, "grn_expr_syntax_expand_queri": 51, "grn_expr_syntax_expand_query_by_t": 52, "grn_expr_take_obj": 51, "grn_expr_var": 85, "grn_expr\u3067\u8868\u73fe\u3055\u308c\u305f\u691c\u7d22\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3068\u304d\u306b\u4f7f\u3044\u307e\u3059": 11, "grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea": 3, "grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f": 11, "grn_expr\u306f": 11, "grn_expr\u306f\u4ee3\u5165\u3084\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u3088\u3046\u306a\u69d8\u3005\u306a\u64cd\u4f5c\u3092\u8868\u73fe\u3067\u304d\u307e\u3059\u304c": 11, "grn_expr\u3092\u4f7f\u3063\u3066\u69d8\u3005\u306a\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "grn_fals": 52, "grn_file_corrupt": 100, "grn_file_exist": 100, "grn_file_read": 50, "grn_file_too_larg": 100, "grn_fileinfo_open": 52, "grn_filename_too_long": 100, "grn_fin": [50, 84, 228], "grn_float_valu": 50, "grn_function_not_impl": 100, "grn_geo": [22, 57, 59], "grn_geo_estimate_in_rectangl": 39, "grn_geo_point": 74, "grn_geo_point_set": 74, "grn_geo_select_in_circl": 39, "grn_geo_select_in_rectangl": 39, "grn_geo_table_sort": 50, "grn_get_default_cache_base_path": 52, "grn_get_global_error_messag": 50, "grn_get_package_label": 50, "grn_get_version_major": 41, "grn_get_version_micro": 41, "grn_get_version_minor": 41, "grn_hash": 41, "grn_hash_add": 43, "grn_hash_add_table_cursor": 41, "grn_hash_siz": 50, "grn_hash_tini": 50, "grn_highlight": 44, "grn_highlighter_clear_keyword": 53, "grn_hook": [22, 57, 59], "grn_id": [41, 68, 71, 85], "grn_id_nil": [43, 45, 68, 111], "grn_ii": [22, 57, 59], "grn_ii_buff": 71, "grn_ii_buffer_append": 71, "grn_ii_buffer_clos": 71, "grn_ii_buffer_commit": 71, "grn_ii_buffer_open": 71, "grn_ii_cursor": 50, "grn_ii_cursor_clos": 50, "grn_ii_cursor_next": 50, "grn_ii_cursor_next_po": 52, "grn_ii_cursor_open": 50, "grn_ii_cursor_set_min": 50, "grn_ii_cursor_set_min_en": [42, 43, 50, 51], "grn_ii_estimate_size_for_lexicon_cursor": 50, "grn_ii_estimate_size_for_queri": 50, "grn_ii_get_flag": 54, "grn_ii_max_n_chunks_tini": 51, "grn_ii_max_n_segments_tini": 51, "grn_ii_overlap_token_skip_en": [51, 52], "grn_ii_posting_add": [41, 51, 54], "grn_ii_posting_add_float": 41, "grn_ii_reduce_expire_en": 53, "grn_ii_reduce_expire_threshold": [52, 53], "grn_ii_sel": 111, "grn_ii_select_too_many_index_match_ratio_refer": 41, "grn_illegal_byte_sequ": 100, "grn_improper_link": 100, "grn_in_values_too_many_index_match_ratio": [42, 49, 196], "grn_inappropriate_i_o_control_oper": 100, "grn_incompatible_file_format": 100, "grn_index_chunk_split_en": 51, "grn_index_column_diff": 54, "grn_index_cursor": [22, 57, 59], "grn_index_cursor_next": 48, "grn_info": [22, 57, 59], "grn_info_sourc": 42, "grn_init": [47, 50, 81, 84, 228], "grn_input_output_error": 100, "grn_inspect": [22, 57, 59], "grn_inspect_encod": 74, "grn_inspect_ind": 74, "grn_inspect_limit": 74, "grn_inspect_nam": 74, "grn_inspect_query_log_flag": 74, "grn_inspect_typ": 74, "grn_int32_value_float_valu": 50, "grn_interrupted_function_cal": [100, 153], "grn_invalid_argu": 100, "grn_invalid_format": 100, "grn_invalid_seek": 100, "grn_io_expir": 52, "grn_io_flush": 52, "grn_io_use_spars": 50, "grn_io_vers": 49, "grn_is_a_directori": 100, "grn_is_back_trace_en": 43, "grn_is_reference_count_en": [43, 44], "grn_itoh": 39, "grn_ja_skip_same_value_put": 48, "grn_lock_set_timeout": 54, "grn_log_level": 85, "grn_log_level_pars": 50, "grn_log_level_to_str": 50, "grn_log_path": 47, "grn_logger": 47, "grn_logger_info": 47, "grn_logger_put": 53, "grn_logger_reopen": 47, "grn_logical_range_filter_en": 50, "grn_logical_range_filter_threshold": 50, "grn_lzo_error": 100, "grn_match_escal": [22, 57, 59], "grn_mecab_chunk_size_threshold": 50, "grn_mecab_chunked_tokenize_en": 50, "grn_memory_get_usag": 54, "grn_mutex": 81, "grn_network_is_down": 100, "grn_ngram_tokenizer_remove_blank_dis": [51, 52], "grn_ngram_tokenizer_remove_blank_en": 52, "grn_no_buff": 100, "grn_no_child_process": 100, "grn_no_locks_avail": 100, "grn_no_memory_avail": 100, "grn_no_space_left_on_devic": 100, "grn_no_such_devic": 100, "grn_no_such_device_or_address": 100, "grn_no_such_file_or_directori": 100, "grn_no_such_process": 100, "grn_normalizer_error": 100, "grn_not_a_directori": 100, "grn_not_enough_spac": 100, "grn_not_socket": 100, "grn_obj": [22, 41, 47, 49, 50, 53, 57, 59, 68, 71, 74, 85], "grn_obj_": 44, "grn_obj_cast": 50, "grn_obj_clear_lock": 39, "grn_obj_clear_option_valu": 53, "grn_obj_clos": [11, 49, 50], "grn_obj_compress_zlib": 51, "grn_obj_delete_by_id": 39, "grn_obj_fin": 68, "grn_obj_flag": [68, 85], "grn_obj_flush": 50, "grn_obj_flush_recurs": 50, "grn_obj_format": 41, "grn_obj_format_fin": 41, "grn_obj_get_disk_usag": 52, "grn_obj_get_valu": 39, "grn_obj_have_sourc": 41, "grn_obj_is_accessor": 50, "grn_obj_is_builtin": 39, "grn_obj_is_corrupt": 52, "grn_obj_is_data_column": 52, "grn_obj_is_expr": 52, "grn_obj_is_function_proc": 50, "grn_obj_is_index_column": 53, "grn_obj_is_key_accessor": 50, "grn_obj_is_normalizer_proc": 50, "grn_obj_is_number_family_bulk": 53, "grn_obj_is_proc_proc": 50, "grn_obj_is_scalar_column": 52, "grn_obj_is_scorer_proc": 50, "grn_obj_is_selector_proc": 50, "grn_obj_is_t": 50, "grn_obj_is_text_family_typ": 51, "grn_obj_is_token_column": 41, "grn_obj_is_token_filter_proc": 50, "grn_obj_is_tokenizer_proc": 50, "grn_obj_is_tru": 50, "grn_obj_is_typ": 50, "grn_obj_is_uvector": 41, "grn_obj_is_vector_column": 53, "grn_obj_is_weight_uvector": 41, "grn_obj_is_weight_vector": 41, "grn_obj_is_xxx": 41, "grn_obj_own": 50, "grn_obj_path": 48, "grn_obj_path_by_id": 40, "grn_obj_reindex": 50, "grn_obj_remov": [39, 50], "grn_obj_remove_depend": 51, "grn_obj_search": 51, "grn_obj_set_info": 42, "grn_obj_set_info_source_valid": 42, "grn_obj_table_dat_kei": 39, "grn_obj_type_to_str": 51, "grn_obj_ubref": 41, "grn_obj_unlink": 41, "grn_obj_unref": 41, "grn_obj_vector": 68, "grn_object_corrupt": 100, "grn_op_adjust": [11, 51], "grn_op_adjust\u306f": 11, "grn_op_and": [11, 41], "grn_op_and\u306f": 11, "grn_op_but": 11, "grn_op_but\u306f": 11, "grn_op_cal": 11, "grn_op_fuzzi": 51, "grn_op_get_valu": 52, "grn_op_or": 11, "grn_op_or\u306f": 11, "grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f": 11, "grn_op_push": 11, "grn_op_term_extract": 50, "grn_oper": [41, 68], "grn_operation_not_permit": 100, "grn_operation_not_support": 100, "grn_operation_timeout": 100, "grn_operation_would_block": 100, "grn_operator_to_exec_func": 52, "grn_order_by_estimated_size_en": [41, 52], "grn_output_range_norm": 45, "grn_p": 74, "grn_p_geo_point": 74, "grn_p_ii_valu": 74, "grn_parse_query_flag": 50, "grn_pat_at": 37, "grn_pat_cursor_next": 50, "grn_pat_del": 50, "grn_pat_fuzzy_search": 51, "grn_permission_deni": 100, "grn_persistent_cache_open": 52, "grn_plugin_calloc": 51, "grn_plugin_charlen": 85, "grn_plugin_command_cr": [49, 85], "grn_plugin_error": [85, 100], "grn_plugin_expr_var_init": [49, 85], "grn_plugin_fin": 85, "grn_plugin_fre": 85, "grn_plugin_get_nam": 50, "grn_plugin_get_ruby_suffix": 50, "grn_plugin_get_suffix": 39, "grn_plugin_get_system_plugins_dir": 39, "grn_plugin_init": 85, "grn_plugin_isspac": 85, "grn_plugin_log": 85, "grn_plugin_malloc": 85, "grn_plugin_mutex": 85, "grn_plugin_mutex_clos": 85, "grn_plugin_mutex_lock": 85, "grn_plugin_mutex_open": 85, "grn_plugin_mutex_unlock": 85, "grn_plugin_proc_alloc": 85, "grn_plugin_proc_get_cal": 52, "grn_plugin_proc_get_value_bool": 41, "grn_plugin_proc_get_value_mod": 53, "grn_plugin_proc_get_value_oper": 41, "grn_plugin_proc_get_var": [49, 85], "grn_plugin_proc_get_var_bool": 51, "grn_plugin_proc_get_var_by_offset": [49, 85], "grn_plugin_proc_get_var_int32": 51, "grn_plugin_proc_get_var_str": 51, "grn_plugin_proc_xxx": 41, "grn_plugin_realloc": 85, "grn_plugin_regist": [38, 85], "grn_plugin_win32_base_dir": [50, 85], "grn_plugin_windows_base_dir": [50, 85], "grn_plugins_dir": [50, 53], "grn_plugins_path": 53, "grn_post": 41, "grn_posting_get_posit": 41, "grn_posting_get_record_id": 41, "grn_posting_get_rest": 41, "grn_posting_get_section_id": 41, "grn_posting_get_tf": 41, "grn_posting_get_weight": 41, "grn_posting_get_weight_float": 41, "grn_proc": [22, 57, 59], "grn_proc_cal": 166, "grn_proc_func": 85, "grn_proc_funct": 85, "grn_proc_get_typ": 49, "grn_proc_is_st": 52, "grn_proc_options_pars": 41, "grn_proc_options_parsev": 41, "grn_proc_options_xxx": 41, "grn_proc_set_is_st": 52, "grn_proc_set_selector": 49, "grn_ptr": 50, "grn_ptr_init": 68, "grn_ptr_value_at": 68, "grn_pvector": [50, 68], "grn_qlog_path": 47, "grn_queri": 47, "grn_query_expander_tsv_synonyms_fil": 243, "grn_query_log_show_condit": 53, "grn_query_logger_get_flag": 74, "grn_ra_cast_valu": 111, "grn_range_error": 100, "grn_raw_str": 53, "grn_rc": [61, 68, 71, 84, 85], "grn_read_only_file_system": 100, "grn_request_canceler_cancel_al": 51, "grn_resource_busi": 100, "grn_resource_deadlock_avoid": 100, "grn_resource_temporarily_unavail": [52, 100], "grn_result_set_add_record": 41, "grn_result_set_add_t": 41, "grn_result_set_add_table_cursor": 41, "grn_result_set_add_xxx": 41, "grn_result_too_larg": 100, "grn_retry_max": 100, "grn_rset_add_record": 41, "grn_scan_info_regexp_dot_asterisk_en": 52, "grn_scorer_error": 100, "grn_search": [22, 57, 59], "grn_search_optarg": 50, "grn_select_n_workers_default": 156, "grn_selector_data": 41, "grn_selector_data_get": 41, "grn_selector_data_get_arg": 41, "grn_selector_data_get_expr": 41, "grn_selector_data_get_index": 41, "grn_selector_data_get_op": 41, "grn_selector_data_get_result_set": 41, "grn_selector_data_get_selector": 41, "grn_selector_data_get_t": 41, "grn_selector_data_get_xxx": 41, "grn_selector_func": 49, "grn_set_back_trace_en": 43, "grn_set_default_cache_base_path": 52, "grn_set_reference_count_en": 43, "grn_slow_log_threshold": 43, "grn_snip": [47, 49], "grn_snip_clos": 49, "grn_sock": 302, "grn_socket_is_already_connect": 100, "grn_socket_is_already_shutdown": 100, "grn_socket_is_not_connect": 100, "grn_socket_not_initi": 100, "grn_stack_over_flow": 100, "grn_sub_filter_pre_filter_threshold": 43, "grn_success": [61, 68, 84, 85, 100, 228], "grn_syntax_error": 100, "grn_t": 50, "grn_tabl": [22, 57, 59], "grn_table_apply_expr": 52, "grn_table_at": [37, 40], "grn_table_cursor": [22, 41, 57, 59], "grn_table_cursor_get_max_n_record": 41, "grn_table_cursor_next": 37, "grn_table_cursor_open": 37, "grn_table_delet": 50, "grn_table_delete_by_id": 50, "grn_table_find_reference_object": 52, "grn_table_fuzzy_search": 51, "grn_table_fuzzy_search_with_transposit": 51, "grn_table_get": 40, "grn_table_group": 50, "grn_table_group_flag": 50, "grn_table_s": 11, "grn_table_select": [3, 68], "grn_table_select_and_min_skip_en": 52, "grn_table_select_enough_filtered_ratio": [51, 53, 54], "grn_table_select_sequenti": 51, "grn_table_setoper": [51, 52], "grn_table_sort": 45, "grn_table_trunc": 39, "grn_text_init": 74, "grn_text_len": [68, 74], "grn_text_printf": 49, "grn_text_printfv": 41, "grn_text_valu": [68, 74], "grn_text_vprintf": [41, 49], "grn_thread_": [22, 57, 59], "grn_thread_dump": 166, "grn_thread_get_limit": [50, 81], "grn_thread_get_limit_func": 81, "grn_thread_set_get_limit_func": [81, 167], "grn_thread_set_limit": 81, "grn_thread_set_limit_func": 81, "grn_thread_set_set_limit_func": [81, 167], "grn_time_usec_to_sec": 41, "grn_timev": 41, "grn_timeval_from_doubl": 41, "grn_timeval_to_nsec": 41, "grn_token_column_parallel_chunk_s": 41, "grn_token_column_parallel_table_size_threshold": 41, "grn_token_filter_error": 100, "grn_tokenize_onli": 51, "grn_tokenizer_error": 100, "grn_tokenizer_query_open": 47, "grn_too_large_offset": 100, "grn_too_many_link": 100, "grn_too_many_open_fil": 100, "grn_too_many_open_files_in_system": 100, "grn_too_many_symbolic_link": 100, "grn_too_small_limit": 100, "grn_too_small_offset": 100, "grn_type": [22, 57, 59, 74], "grn_type_id": 41, "grn_type_id_is_float_famili": 41, "grn_type_id_s": 41, "grn_unknown_error": 100, "grn_unsupported_command_vers": 100, "grn_update_not_allow": 100, "grn_user_data": [22, 57, 59, 85], "grn_vector_copi": 41, "grn_vector_pop_el": 50, "grn_void": 51, "grn_wgs84_geo_point_init": 74, "grn_window_function_error": 100, "grn_window_get_s": 52, "grn_with_bundled_onigmo": 45, "grn_zlib_error": 100, "grn_zstd_error": 100, "grndb": [22, 41, 42, 49, 50, 51, 52, 53, 54, 57, 106, 143, 172], "grnline": 308, "grnslap": [22, 57, 172], "grnslap\u306f": 174, "grntest": [13, 37, 39, 47, 51], "grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc": 37, "grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63": 37, "grnwrap": 308, "gro": [42, 180, 205, 206, 208], "gronga": [243, 252], "gronnga": 252, "groo": [156, 180], "groon": 44, "groonag": 156, "groong": [44, 237], "groonga": [1, 2, 13, 16, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 59, 60, 61, 64, 81, 84, 85, 87, 91, 92, 93, 95, 96, 97, 99, 101, 102, 103, 106, 110, 111, 112, 114, 118, 122, 123, 124, 125, 129, 131, 132, 134, 135, 137, 138, 144, 145, 151, 153, 155, 156, 157, 158, 159, 161, 164, 166, 167, 168, 171, 172, 173, 188, 191, 192, 193, 194, 195, 196, 197, 202, 203, 205, 206, 208, 209, 210, 219, 221, 223, 224, 225, 226, 227, 228, 229, 230, 237, 238, 239, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 260, 262, 264, 272, 273, 275, 281, 282, 289, 290, 291, 292, 295, 298, 301, 302, 303, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "groonga1": 93, "groonga_cache_base_path": 52, "groonga_cache_limit": 48, "groonga_cli": 225, "groonga_clone_dir": 12, "groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059": 12, "groonga_databas": 292, "groonga_database_auto_cr": [47, 48], "groonga_default_command_vers": 292, "groonga_dir": 12, "groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059": 12, "groonga_dir\u4ee5\u4e0b\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 12, "groonga_dist": 47, "groonga_get_thread_limit": 81, "groonga_log_level": 48, "groonga_log_path": 48, "groonga_n_record": 48, "groonga_org_dir": 12, "groonga_org_path": 12, "groonga_org_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f": 12, "groonga_org_path\u306bgroonga": 12, "groonga_path": 176, "groonga_query_log_path": [48, 49], "groonga_release_d": 12, "groonga_set_thread_limit": 81, "groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0": 38, "groonga_vers": [12, 39], "groongau0000ful": 273, "groonga\u3068mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba": 36, "groonga\u306edocker\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc": 12, "groonga\u306edocker\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306egithub": 12, "groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306fgroonga\u540c\u69d8\u306bgithub\u306b\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u7f6e\u3044\u3066\u3044\u307e\u3059": 12, "groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092": 12, "groonga\u306e\u30ab\u30e9\u30e0\u306f": 282, "groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f": 89, "groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057": 11, "groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067": 14, "groonga\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c": 12, "groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb": 37, "groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b": 12, "groonga\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306f": 12, "groonga\u306f": 14, "groonga\u306f\u3068\u3066\u3082\u901f\u3044": 44, "groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089": 11, "groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059": [299, 301], "groonga\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3057\u305f\u7d50\u679c\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306b\u9650\u308a": 301, "groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059": 11, "groonga\u3092\u4f7f\u3044\u59cb\u3081\u307e\u3057\u305f": 156, "groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066": 10, "groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066": 10, "groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093": 176, "groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059": 12, "groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b": 12, "groonga\u3092\u8d77\u52d5\u3059\u308b\u969b\u306e\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306a\u3044\u3057\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb\u306bdefault": 93, "groonga\u30b0\u30eb\u30fc\u30d7\u306e\u30e1\u30f3\u30d0\u30fc\u3068\u3057\u3066\u6295\u7a3f\u3067\u304d\u307e\u3059": 12, "groonga\u30b0\u30eb\u30fc\u30d7\u306e\u30e1\u30f3\u30d0\u30fc\u306b\u306a\u308b\u3068": 12, "groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066": 176, "groonga\u30b3\u30de\u30f3\u30c9\u306b": 37, "groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 176, "groonga\u30b3\u30de\u30f3\u30c9\u3092\u901a\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u547d\u4ee4\u3092\u30b3\u30de\u30f3\u30c9\u3068\u547c\u3073\u307e\u3059": 175, "groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc": 37, "groonga\u30c1\u30fc\u30e0": 12, "groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0": 176, "groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 39, "groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5bfe\u3059\u308b\u691c\u7d22\u51e6\u7406\u3084\u66f4\u65b0\u51e6\u7406\u306e\u305f\u3081\u306e\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u305f\u3081\u306e\u30c7\u30fc\u30bf\u69cb\u9020\u3067": 11, "groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf\u3067\u3059": 11, "groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u4e00\u7fa4\u306ec\u8a00\u8a9e\u5411\u3051api\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059": 11, "groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082": 93, "groonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u306f\u7f72\u540d\u7528\u306e\u9375\u3092\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306e\u516c\u958b\u9375\u3067\u6697\u53f7\u5316\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u306epackag": 12, "groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059": 147, "groonga\u30d7\u30ed\u30bb\u30b9\u306b\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 175, "groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044": 174, "groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059": 175, "groonga\u30d7\u30ed\u30bb\u30b9\u306e\u901a\u4fe1\u5c64\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30c4\u30fc\u30eb": 174, "groonga\u30d7\u30ed\u30bb\u30b9\u5185\u306e\u6307\u5b9a\u3057\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059": 108, "groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b": 93, "groonga\u5358\u4f53\u3067test": 176, "groonga\u53ca\u3073groonga": 176, "groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570": [108, 109, 113, 119, 120, 130, 147, 162], "groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default": 93, "groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059": 176, "groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068": 174, "groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f": 176, "groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u30921\u884c\u306b1\u3064\u305a\u3064\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059": 176, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 108, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 109, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 113, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 119, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 120, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 130, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 147, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 162, "groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 185, "groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 189, "groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 190, "groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 199, "groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 204, "groonga\u95a2\u9023\u3067\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u306a\u3044\u3068\u306a\u308b\u3068\u958b\u767a\u8005\u306f\u56f0\u3063\u3066\u3044\u308b\u4eba\u3092\u898b\u3064\u3051\u3089\u308c\u306a\u3044\u3057": 10, "grooon": 180, "grooonga": 52, "groovi": [41, 42, 43], "group": [0, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 54, 132, 134, 135, 156, 208, 210, 254, 305, 306, 311], "group_kei": [41, 52, 286], "grow": [54, 56], "grroonga": 252, "grunga": 56, "gt": [44, 191, 192, 193, 206], "gted": 17, "gtihub": [39, 41], "guard": [50, 125, 247], "guess": 43, "gui": 155, "guid": 27, "gurun": 223, "gurunavi": [50, 51, 52], "guthub": 54, "gz": [12, 27, 31], "gzcat": 51, "gzip": [31, 47, 291], "gzip_typ": 292, "gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059": 12, "h": [16, 50, 85, 156, 168, 173, 174, 175, 177, 237, 275, 277, 292], "h3": [45, 94, 158, 177, 298, 308, 312], "ha": [0, 12, 19, 26, 31, 34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 60, 85, 87, 91, 95, 96, 105, 106, 111, 112, 114, 121, 123, 132, 134, 135, 137, 138, 139, 141, 142, 143, 153, 155, 156, 159, 161, 163, 164, 166, 167, 168, 169, 173, 175, 177, 178, 179, 180, 183, 184, 188, 191, 192, 193, 195, 201, 203, 206, 210, 211, 212, 219, 223, 224, 225, 226, 228, 229, 231, 232, 233, 234, 235, 237, 238, 239, 241, 243, 244, 245, 246, 247, 248, 249, 251, 252, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 272, 274, 275, 276, 278, 281, 286, 291, 292, 296, 298, 305, 306, 307, 308, 310], "hack": 237, "had": [17, 41, 42, 43, 44, 45, 50, 51, 53, 54, 56, 245], "hai": 11, "half": [42, 53, 56, 230, 231, 232, 233, 234, 235, 257, 258, 259], "halfwidth": [230, 231, 232, 233, 234, 235, 258, 259], "halt": 41, "hana": 307, "hanako": 121, "hand": [0, 31, 43, 50, 51, 111, 156, 177, 180, 183, 196, 202, 210, 305, 310], "handl": [41, 42, 43, 48, 49, 50, 51, 52, 53, 54, 100, 111, 177, 254, 265, 266, 267, 268, 269, 270, 271, 281, 303, 305], "handwritten": 42, "hang": 48, "hanleabl": 111, "happen": [42, 44, 45, 52], "hard": 281, "hash": [39, 41, 42, 43, 47, 48, 50, 51, 52, 53, 54, 104, 111, 122, 142, 155, 161, 225, 254], "hash_index": 311, "hash_kei": [53, 124, 141, 142, 254], "hash_tag": 311, "hashida": [42, 43, 54], "hashidatk": 54, "hasn": [41, 54, 230, 236, 264, 265, 266, 267, 268, 269, 270, 271, 273, 277, 279, 280], "hat": 31, "hatak": [49, 50], "hat\u7cfb": 12, "have": [0, 6, 16, 17, 18, 21, 27, 31, 41, 42, 43, 44, 46, 49, 50, 52, 53, 54, 56, 64, 87, 95, 96, 100, 110, 111, 112, 132, 134, 135, 137, 141, 142, 149, 156, 157, 159, 161, 163, 173, 177, 180, 186, 201, 205, 224, 225, 226, 229, 237, 239, 243, 244, 248, 251, 253, 255, 261, 264, 281, 282, 291, 292, 296, 305, 308, 312], "haven": [43, 123], "haystack": 11, "hdd": [41, 111, 161, 176], "he": [42, 156, 262, 264, 267, 268, 275], "he11o": 156, "head": [21, 49, 156, 174, 177, 298], "header": [41, 42, 43, 45, 47, 48, 49, 50, 74, 96, 99, 100, 107, 110, 111, 114, 118, 121, 123, 124, 125, 127, 129, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 143, 144, 145, 149, 150, 151, 152, 153, 154, 156, 157, 158, 160, 161, 163, 164, 166, 167, 168, 169, 170, 178, 292], "heart": 56, "heavi": [52, 124, 156, 231, 232, 233, 234, 235, 258, 259, 290], "hei": [42, 156], "hel": 275, "held": 50, "hello": [41, 42, 43, 44, 45, 50, 96, 111, 123, 132, 134, 135, 156, 165, 224, 225, 226, 261, 262, 264, 267, 268, 272, 275, 277, 310], "help": [16, 17, 27, 44, 48, 52, 54, 156, 173, 175, 240, 244, 245, 252, 274], "help\u3067\u51fa\u529b\u3055\u308c\u308b": 39, "help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044": 14, "hemispher": 47, "hendro": 48, "her": 44, "here": [6, 17, 18, 21, 27, 31, 32, 43, 44, 45, 52, 53, 58, 61, 64, 68, 74, 81, 84, 85, 91, 96, 97, 98, 99, 100, 107, 110, 111, 112, 114, 115, 116, 117, 121, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 139, 141, 142, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 163, 164, 165, 168, 169, 170, 173, 175, 177, 178, 179, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 243, 244, 245, 246, 247, 250, 251, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 272, 273, 274, 275, 276, 278, 281, 286, 292, 298, 306, 310, 315], "hereaft": 0, "hereinaft": 56, "hex": [225, 307], "hh": [50, 225, 228], "hi": [56, 156], "hi12x": 156, "hidden": [0, 53], "hide": 48, "hideki": [48, 49, 50], "hideya": 56, "higchi": [42, 43], "high": [0, 41, 53, 91, 106, 156, 197, 223, 246], "high_scor": 110, "higher": [27, 94, 111, 156, 159], "highest": 111, "highight": 191, "highight_ful": 192, "highli": [42, 44, 245, 246, 247], "highlight": [22, 41, 44, 45, 51, 53, 54, 57, 182, 192, 193, 237, 275], "highlight_ful": [22, 41, 49, 51, 52, 57, 182, 193], "highlight_html": [22, 41, 44, 45, 49, 50, 51, 52, 53, 54, 57, 182, 191, 192, 275], "hilight": 44, "hill": 27, "hino": 48, "hint": 302, "hippo": [42, 43], "hiragana": [44, 53, 54, 201, 224, 225, 231, 232, 233, 234, 235, 240, 250, 257, 258, 259, 264], "hiro": 50, "hiroaki": [50, 51], "hiroshi": [39, 49, 50, 51], "hiroshi\u3055\u3093": 37, "hiroshi\u3055\u3093\u304c\u5831\u544a": 37, "hirotaka": 50, "hiroyuki": [50, 51, 56], "hirsut": [42, 43], "histori": [39, 45, 52, 56], "hit": [41, 43, 44, 45, 48, 53, 54, 111, 156, 223, 313], "hmm": 311, "ho": 277, "hoang": 45, "hobbi": 228, "hoge": [175, 185], "hold": [305, 309], "home": [12, 31, 45, 277], "homebrew": [12, 22, 23, 49, 51], "homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0": 39, "homebrew\u306e\u66f4\u65b0\u306fgroonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u672c\u4f53\u306e\u30ea\u30ea\u30fc\u30b9\u8981\u4ef6\u306b\u306f\u542b\u307e\u308c\u307e\u305b\u3093": 12, "homebrew\u3078pul": 12, "homepag": 176, "hook": [21, 137, 149], "hope": 56, "hori": 56, "horikoshi": 39, "horimoto": [45, 53], "horizont": [231, 232, 233, 234, 235, 258, 259], "host": [6, 7, 8, 21, 39, 41, 176, 178, 180, 244, 248, 298, 312], "host1": 244, "host2": 244, "host_name_or_ip_address": [298, 312], "hostnam": [47, 175, 176, 177, 178, 298], "host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059": 176, "hottolink": 55, "hotwagn": 54, "hour": [42, 106, 173, 225, 228, 311], "hour2": 134, "how": [4, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 41, 43, 44, 45, 46, 47, 49, 50, 51, 52, 54, 56, 57, 85, 96, 111, 132, 133, 135, 137, 155, 156, 163, 180, 188, 195, 197, 202, 203, 219, 225, 228, 239, 244, 245, 246, 247, 249, 257, 260, 274, 281, 289, 295, 300, 305, 306, 307, 308, 310, 311], "how_to_use_range_index": 133, "howev": [0, 41, 42, 43, 44, 45, 54, 94, 111, 123, 132, 134, 135, 156, 186, 191, 192, 193, 225, 231, 235, 272], "howto": [51, 52], "htaccess": 12, "html": [3, 12, 37, 39, 41, 43, 44, 47, 49, 51, 54, 106, 111, 177, 178, 191, 192, 193, 205, 206, 292], "html_escap": 205, "html_untag": [22, 48, 57, 111, 182], "html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068": 175, "htpasswd": [177, 292], "http": [0, 1, 12, 13, 17, 21, 22, 24, 25, 27, 28, 31, 32, 33, 41, 43, 44, 47, 48, 49, 50, 51, 52, 54, 57, 91, 94, 122, 125, 153, 156, 157, 172, 174, 175, 176, 177, 180, 194, 195, 196, 219, 244, 253, 272, 289, 290, 293, 302, 304, 305, 306, 307, 308, 310, 315], "http_refer": 177, "http_user_ag": 177, "http_x_forwarded_for": 177, "httpd": [22, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 61, 131, 153, 167, 172, 178, 179, 228, 252, 289, 291, 292], "httprewritemodul": 177, "http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059": 174, "http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b": 37, "http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 174, "http\u306e\u5834\u5408": 175, "http\u30b5\u30fc\u30d0\u3068\u3057\u3066groonga\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306b\u9759\u7684\u30da\u30fc\u30b8\u3092\u683c\u7d0d\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059": 175, "http\u7d4c\u7531\u3067\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u6642\u306b\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b": 37, "hub": 12, "hubeni": 188, "hub\u306egroonga": 12, "hug": 227, "huge": [41, 42, 43, 54], "human": [112, 161], "hung": 41, "hye": 156, "hypehn": 156, "hyper": 156, "hypertext": [22, 304], "hyphen": [44, 53, 111, 156, 161, 231, 232, 233, 234, 235, 257, 258, 259, 308], "i": [0, 1, 5, 6, 7, 8, 13, 17, 18, 21, 23, 24, 25, 27, 28, 30, 31, 32, 33, 34, 39, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 64, 68, 74, 81, 84, 85, 87, 90, 91, 92, 95, 96, 97, 98, 99, 100, 101, 104, 105, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 173, 175, 176, 177, 178, 179, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 290, 291, 292, 296, 298, 302, 303, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "i1": 52, "i10a": [43, 44], "i18n": [3, 15, 22, 43, 44, 51], "i386": 39, "i686": 176, "ia": [299, 301], "ic": 277, "ichii": 39, "id": [22, 28, 39, 41, 45, 47, 49, 50, 51, 53, 54, 57, 74, 91, 92, 108, 110, 111, 114, 121, 123, 141, 142, 155, 157, 162, 164, 175, 180, 228, 298, 305, 308], "idea": 156, "idempot": [43, 44], "identifi": [52, 58, 110, 121, 282], "ideograph": [50, 53], "idf": [41, 49, 245, 246, 247], "idx_airport_nam": 44, "idx_animals_sound": 44, "idx_city_nam": 44, "idx_contry_nam": 44, "idx_food_nam": 44, "idx_plant_nam": 44, "idx_shark_nam": 44, "ieee": [111, 282], "ifexist": 44, "iff": 308, "ignor": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 111, 121, 124, 138, 153, 156, 168, 224, 225, 243, 254, 261, 265, 266, 267, 268, 275, 278], "ignore_blank": 45, "ii": [43, 44, 51, 53, 71, 96, 111, 244], "ii_buff": 71, "iii": 43, "iiii": 43, "il": [299, 301], "ill": 299, "illegal_byte_sequ": 298, "illustr": 306, "imag": [22, 23, 43, 53], "imagin": [156, 306], "immedi": [0, 41, 42, 43, 44, 50, 51, 54, 153, 157, 177, 180], "immut": 141, "impact": [41, 149], "impish": [42, 43, 44], "implement": [17, 39, 41, 42, 44, 45, 47, 49, 50, 51, 55, 56, 99, 110, 111, 132, 135, 154, 156, 177, 178, 188, 201, 224, 225, 247, 248, 254, 290, 291], "implemnt": 291, "implicitli": 310, "import": [0, 12, 27, 31, 39, 42, 43, 47, 48, 50, 53, 61, 91, 92, 106, 111, 156, 161, 168, 177, 224, 243, 245, 246, 247, 262, 292, 309, 310], "impress": 56, "improper_link": 298, "improv": [124, 156, 177, 196, 223, 225, 296], "in_record": [22, 52, 57, 182], "in_valu": [22, 42, 49, 50, 51, 52, 57, 182], "inaccur": [47, 111], "inada": 48, "inappropriate_i_o_control_oper": 298, "inc": [22, 49, 50, 51, 52], "incid": 56, "includ": [6, 16, 27, 41, 42, 43, 44, 45, 48, 49, 50, 51, 53, 54, 56, 94, 95, 96, 110, 111, 112, 114, 123, 125, 132, 134, 135, 137, 138, 141, 143, 144, 145, 151, 154, 156, 164, 165, 168, 180, 183, 202, 205, 206, 219, 224, 225, 243, 246, 247, 264, 272, 274, 275, 292, 308, 310], "include_class": 53, "include_form": 53, "include_read": [53, 231, 232, 233, 234, 235], "inclus": [53, 183], "incompat": [42, 43, 46, 47, 48, 49, 50, 51, 52, 54, 111], "incompatible_file_format": 298, "incomplet": 51, "inconsist": 45, "inconveni": 43, "incorrect": [42, 43, 44, 45, 49, 54, 208], "incorrectli": [45, 54], "incoveni": 43, "increas": [0, 6, 43, 44, 45, 50, 52, 54, 81, 91, 111, 139, 154, 156, 158, 168, 169, 180, 188, 244, 247, 262, 281], "increment": [42, 43, 52, 96, 98, 111, 125, 173, 286], "incres": 49, "indent": 74, "independ": [0, 133, 156, 177, 231, 232, 233, 234, 235, 274], "index": [12, 17, 22, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 71, 74, 91, 94, 96, 104, 106, 112, 122, 123, 124, 132, 133, 134, 135, 137, 141, 142, 149, 152, 156, 163, 165, 173, 175, 183, 186, 195, 196, 201, 205, 206, 208, 209, 224, 225, 237, 239, 254, 262, 276, 277, 278, 281, 304, 311], "index_1": 155, "index_2": 155, "index_blog": 310, "index_column": [41, 42, 49, 50, 51, 123, 124, 156], "index_column_df_ratio": 52, "index_column_df_ratio_between": 52, "index_column_diff": [22, 42, 54, 57, 92], "index_column_have_source_record": [43, 44], "index_column_nam": 155, "index_column_name_with_table_nam": 155, "index_column_source_record": 52, "index_column_value_statistics_n_physical_seg": 54, "index_column_value_statistics_next_physical_segment_id": 54, "index_cont": 45, "index_friend": 307, "index_larg": [54, 111, 141], "index_medium": [111, 141], "index_messag": 310, "index_n": 155, "index_nam": 42, "index_point": 307, "index_smal": [111, 141], "index_tag": 307, "index_titl": 310, "index_xxx": 141, "indexblog1": 310, "indexblog2": 310, "indic": [43, 48, 74, 96, 168, 188, 228, 308, 313], "indispens": 56, "individu": [43, 156], "indri": [42, 43, 44], "ineffect": 41, "infin": [41, 52], "infinit": [39, 44, 47, 49, 50, 161], "inflected_form": [53, 274], "inflected_typ": [53, 274], "influenc": [43, 175, 177], "info": [27, 50, 51, 52, 111, 129, 130, 173, 175, 177, 228, 244, 247], "inform": [0, 2, 17, 18, 22, 40, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 56, 96, 112, 134, 141, 142, 144, 151, 154, 155, 156, 158, 173, 175, 228, 229, 304, 307, 311], "inherit": 48, "inhibit": 40, "init": [31, 47, 48, 49], "initi": [39, 41, 43, 47, 49, 50, 51, 52, 53, 54, 56, 84, 85, 111, 132, 134, 135, 156], "inl": 166, "inlin": 42, "inner": 45, "innodb": 0, "input": [39, 42, 43, 44, 48, 51, 52, 53, 54, 64, 95, 96, 122, 125, 156, 197, 225, 240, 250, 251, 252, 253, 257, 258, 259, 298, 308], "input_file_nam": 95, "input_output_error": 298, "input_typ": [42, 43, 44, 45, 178], "insensit": [156, 201, 244], "insert": [41, 47, 156, 205, 206, 308], "inspect": [48, 49, 50, 51, 52, 54, 74, 141, 155], "inst": 48, "instal": [0, 3, 7, 12, 14, 21, 22, 24, 25, 28, 29, 30, 32, 33, 39, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 85, 103, 156, 178, 260, 274, 296], "install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044": 174, "install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093": 176, "instanc": 45, "instant": [22, 42], "instantli": [0, 42, 205, 206], "instead": [21, 23, 27, 31, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 74, 85, 109, 111, 124, 131, 135, 141, 149, 151, 156, 158, 161, 173, 175, 177, 188, 191, 192, 193, 197, 202, 205, 206, 208, 209, 223, 224, 225, 229, 232, 233, 234, 235, 236, 237, 239, 244, 254, 258, 259, 284, 298, 314], "instroduc": 48, "instruct": [51, 52, 180], "insuffici": [51, 96, 305], "int": [42, 47, 50, 51, 61, 68, 71, 74, 81, 85, 241], "int16": [37, 41, 42, 48, 90, 96, 141, 142, 155], "int32": [41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 54, 90, 91, 110, 111, 114, 135, 141, 142, 155, 156, 159, 161, 164, 170, 180, 183, 186, 188, 198, 202, 203, 224, 225, 245, 246, 247, 250, 251, 253, 301, 306, 307, 308, 310, 311, 315], "int32_min": 44, "int64": [41, 42, 45, 48, 49, 90, 135, 141, 142, 155, 156, 184], "int8": [37, 41, 42, 48, 49, 90, 111, 141, 142, 155, 305], "integ": [42, 43, 44, 50, 51, 91, 96, 100, 111, 141, 142, 156, 167, 175, 186, 282, 298, 305, 308], "integr": [21, 47, 48, 227, 305], "intel": 176, "intend": [43, 44, 47, 49, 210, 224, 310], "intens": 177, "intent": 205, "interact": [298, 308], "interest": [3, 50, 244, 308], "interfac": [41, 47, 54, 125, 180, 241, 308], "intern": [40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 51, 56, 61, 64, 74, 96, 124, 141, 142, 149, 227, 237, 305], "internet": [0, 22, 223], "interpret": [12, 40, 224, 272], "interrupt": 53, "interrupted_function_cal": 298, "interv": [43, 44, 51, 54, 111, 224, 225], "introduc": [3, 18, 43, 44, 45, 49, 50, 51, 52], "introduct": [3, 15, 17, 22, 49, 57, 122, 149, 150, 159, 249, 298, 308, 312], "introspect": 47, "intuit": 313, "inv_res_column": 176, "inv_thread_column": 176, "invalid": [39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 74, 85, 102, 124, 149, 155, 156, 161], "invalid_": [43, 44, 111], "invalid_argu": [45, 298], "invalid_error": [43, 111], "invalid_format": 298, "invalid_ignor": [43, 111], "invalid_seek": 298, "invalid_warn": [43, 111], "invalidmodescalar": 111, "invalidmodevector": 111, "invers": [49, 245, 247], "invert": [22, 39, 41, 42, 43, 47, 49, 50, 51, 111, 186, 205, 206, 225, 307, 308], "investig": [48, 51, 52, 302, 303, 306], "invis": 111, "involuntari": 42, "io": [24, 25, 28, 50, 52, 55], "io_flush": [22, 41, 50, 51, 52, 53, 54, 57, 92], "ip": [175, 176, 180, 298, 312], "ipad": [30, 274], "ipc": [27, 31, 125], "iptabl": [292, 312], "ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059": 176, "is_a_directori": 298, "is_anim": 305, "is_popular": [132, 134, 135, 156], "is_removable_table_raw": 163, "is_stop_column": 261, "is_stop_word": [42, 45, 49, 50, 53, 165, 261], "isn": [6, 31, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 81, 95, 99, 107, 111, 112, 124, 125, 132, 133, 134, 135, 137, 141, 149, 154, 155, 156, 159, 161, 163, 175, 177, 205, 206, 219, 224, 225, 243, 248, 250, 251, 252, 262, 264, 274, 286, 298], "iso": [42, 43, 173, 225], "isob": 48, "isssu": 48, "issu": [3, 22, 44, 48, 49, 50, 51, 54, 96, 156, 296, 303, 304], "itagaki": 37, "italian": [53, 260], "item": [41, 42, 43, 44, 50, 52, 53, 54, 58, 115, 116, 117, 156, 159, 161, 171, 177, 180, 201, 250, 251, 253, 254, 292, 296], "item_": 159, "item_dataset": [179, 253], "item_queri": [159, 179, 180, 250, 251, 253], "item_query_kana": 180, "item_query_kei": 180, "itemlog": 135, "itemlogs_20170415": 135, "itemlogs_20170416": 135, "items_index": 201, "iter": [50, 56, 225], "its": [3, 20, 43, 45, 47, 50, 52, 53, 56, 68, 81, 85, 91, 111, 112, 124, 125, 132, 135, 137, 149, 155, 156, 163, 164, 173, 195, 225, 228, 237, 246, 250, 275, 295, 298, 302, 305, 308, 310, 311, 312], "itself": [41, 48, 49, 52, 91, 168, 224, 243, 244], "iwai": [40, 47, 48, 51], "iwamatsu": 51, "i\u3046": 44, "j": [21, 31], "j4": [14, 31], "j8": 6, "ja": [2, 12, 17, 18, 47, 51, 302], "jacob16bit": 50, "jame": 313, "jammi": [32, 43, 44], "jan": [52, 311], "januari": [42, 225], "japan": [42, 56, 121, 250, 306, 312, 315], "japanes": [0, 2, 17, 18, 19, 41, 44, 47, 49, 53, 56, 156, 224, 225, 240, 250, 264, 274], "japanese_entries_cont": 156, "japaneseentri": 156, "japaneseterm": 156, "jason": 313, "javascript": [12, 22, 39, 177, 178, 304, 312], "je": 313, "jeff": 313, "jekyl": 12, "jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089": 12, "jellyfish": [32, 43, 44], "jemalloc": 49, "jennif": 313, "jersei": 311, "jessi": [48, 49, 50, 53], "jfrog": [24, 25, 28], "ji": 240, "jinja2": 12, "jira": 51, "jiro": 307, "job": [54, 158, 176], "john": [121, 313], "join": 2, "josep": [42, 43, 54], "joseph": 313, "jp": [12, 44, 48, 50, 55, 156, 277, 302], "jq": 308, "jqueri": 49, "jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63": 37, "json": [37, 39, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 64, 91, 97, 125, 159, 177, 178, 241, 292, 298, 308], "jsonp": [50, 180], "jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63": 39, "js\u306a\u3069": 12, "juli": [42, 43, 45, 50, 52, 53], "jun": [49, 50], "just": [6, 17, 21, 23, 28, 31, 32, 33, 39, 41, 42, 43, 44, 47, 48, 49, 50, 52, 56, 61, 84, 95, 97, 107, 111, 114, 121, 132, 137, 138, 140, 141, 144, 149, 151, 153, 154, 156, 161, 163, 164, 168, 173, 175, 179, 180, 186, 202, 224, 225, 226, 228, 237, 243, 245, 248, 250, 262, 272, 291, 292, 311], "k": [237, 307], "ka": 230, "kagami": 50, "kakesa": 50, "kamicup": 54, "kana": [53, 159, 179, 180, 231, 232, 233, 234, 235, 240, 250, 251, 253, 274], "kanako": 48, "kanji": [56, 240, 264], "kare": [231, 232, 233, 234, 235], "kashihara": 49, "katagiri": 48, "katakana": [53, 54, 159, 201, 230, 231, 232, 233, 234, 235, 240, 250, 257, 258, 259, 264], "kate": 27, "kato": 54, "kawada": 49, "kawaji": 47, "kazuhiko": [47, 49, 51], "kazuhiro": [42, 43, 48], "keep": [34, 39, 42, 43, 44, 45, 51, 52, 53, 54, 61, 91, 99, 149, 173, 177, 226, 246, 247, 274], "keep_origin": 42, "kei": [0, 12, 22, 34, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 58, 74, 91, 96, 104, 110, 111, 120, 121, 125, 132, 134, 137, 141, 153, 155, 158, 159, 161, 163, 171, 173, 180, 202, 203, 208, 209, 224, 225, 229, 237, 240, 254, 262, 278, 286, 304, 305, 306, 307, 308, 314], "keitaro": [42, 43], "ken": 307, "kenichi": [37, 39], "kensaku": 56, "kentaro": 48, "kept": [53, 134, 135, 156], "kernel": [47, 228, 281], "kernel32": 166, "key1": [52, 110], "key2": 52, "key_1": 155, "key_2": 155, "key_float": 142, "key_geo_point": 142, "key_index": 163, "key_int": 142, "key_larg": [34, 51, 161, 254], "key_length": 298, "key_n": 155, "key_nam": [135, 156], "key_norm": [47, 50, 161, 229, 230], "key_typ": [44, 45, 111, 155, 156, 175, 176, 305, 306, 307, 308, 310, 311, 313], "key_uint": 142, "key_valu": 53, "key_var_s": 142, "key_vector_expans": 43, "key_with_si": [161, 224, 225, 313], "key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3068\u540c\u7b49\u3067\u3059": 299, "key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059": 299, "keyboard": 156, "keyr": [41, 47, 54], "keys_zon": 177, "keyword": [41, 42, 43, 44, 45, 47, 48, 51, 52, 53, 54, 68, 133, 156, 161, 191, 192, 193, 202, 205, 206, 224, 244, 245, 246, 247, 252, 275, 276, 278, 307, 308, 310], "keyword1": [47, 54, 191, 192, 202, 205], "keyword2": [47, 54, 191, 192, 202, 205], "keyword_cont": 68, "keyword_s": 68, "kfc": 239, "kill": 157, "kind": [0, 41, 43, 74, 282, 306, 308, 314, 315], "kinjir": 307, "kisk": 47, "kitaiti": 51, "kiyokawa": 51, "kk": 244, "klose": 50, "km": 311, "know": [43, 44, 45, 46, 50, 54, 111, 124, 149, 156, 173, 262, 306, 307, 311], "knowledg": 0, "known": [0, 41, 48, 156, 205, 206, 225, 245, 278, 308, 312], "ko": 55, "koi8r": [31, 47, 175], "koji": 47, "konishi": 48, "korea": 306, "kosuk": 48, "kouhei": 48, "kqueue": [41, 94, 158, 177, 298, 308, 312], "kuriyama": [49, 50], "kwic": [205, 206], "kytea": [31, 47, 48, 53, 168], "l": [74, 175, 180, 181, 264, 275], "label": [41, 43, 44, 48, 49, 50, 51, 52, 53, 54, 110, 201], "label1": [49, 135, 156], "label2": [135, 156], "label_1": 156, "label_2": 156, "label_n": 156, "labeledargu": 52, "lack": [54, 56, 302], "lager": [41, 48], "lake": 239, "land_mark_index": 41, "landmark": 41, "landscap": 22, "langasek": 51, "languag": [0, 1, 3, 18, 20, 21, 22, 41, 42, 45, 48, 49, 51, 52, 53, 56, 57, 156, 197, 260, 264, 274], "language_model": [197, 227], "language_model_vector": [22, 57, 182, 227], "larg": [0, 41, 42, 43, 44, 45, 47, 50, 51, 52, 53, 54, 56, 125, 141, 149, 156, 173, 224, 225, 231, 232, 233, 234, 235, 248, 254, 258, 259, 262, 281, 292, 305], "larger": [41, 42, 43, 44, 49, 50, 52, 91, 99, 111, 118, 134, 135, 141, 142, 156, 161, 175, 181, 205, 206, 224, 225, 253, 254, 281, 298], "larget": 153, "largetext": 254, "last": [41, 42, 43, 44, 47, 50, 52, 156, 168, 180, 205, 224, 225, 264, 286, 302], "last_modifi": 311, "lat": 176, "late": 156, "latenc": 176, "later": [39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 96, 110, 124, 125, 132, 134, 135, 153, 156, 175, 191, 192, 193, 194, 210, 224, 225, 229, 230, 237, 244, 248, 308], "latest": [2, 6, 7, 8, 12, 24, 25, 27, 28, 29, 31, 33, 42, 49, 50, 51, 156], "latin": [45, 53, 175, 231, 235], "latin1": [31, 47], "latinov": 51, "latitud": [22, 74, 225, 304, 311, 315], "latitude_in_degre": 225, "latitude_in_degreexlongitude_in_degre": 225, "latitude_in_msec": 225, "latitude_in_msecxlongitude_in_msec": 225, "latter": [58, 180, 224, 225, 230, 243], "launch": 181, "launchpad": [12, 32, 49], "launchpad_uploader_pgp_kei": 12, "launchpad\u3067\u30d3\u30eb\u30c9\u3057\u3066\u3044\u307e\u3059": 12, "launchpad\u306egroonga\u30c1\u30fc\u30e0\u306e\u30da\u30fc\u30b8\u3067\u5bfe\u8c61\u306eppa\u3092\u9078\u629e\u3057": 12, "layer": 50, "layout": 12, "lc_messag": [17, 18], "lcov": 14, "ld": [262, 264, 275], "lead": [41, 56, 132, 134, 135, 156, 206, 308], "leak": [37, 39, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 158], "leakag": 314, "leaner": 181, "lear": 253, "learn": [48, 132, 134, 135, 156, 159, 188, 249, 306, 310], "learner": [22, 49, 51, 57, 172, 179, 252], "learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63": 37, "least": [41, 44, 47, 50, 54, 107, 111, 149, 156, 195, 203, 205, 210, 224, 237, 281, 303], "led": 56, "left": [44, 51, 53], "left_hand_side_el": 51, "leftmost": 225, "legal": 56, "lemon": [58, 156], "length": [47, 51, 53, 85, 178, 305], "lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664": 39, "leo": 41, "less": [41, 43, 49, 50, 51, 52, 53, 99, 156, 161, 175, 186, 195, 202, 205, 206, 219, 223, 226, 244, 246, 247, 281, 282, 296, 315], "less_equ": 202, "let": [22, 44, 54, 91, 111, 132, 134, 135, 156, 163, 188, 226, 264, 276, 278, 302, 304, 305, 307, 308, 310, 314, 315], "letter": [44, 45, 53, 230, 231, 232, 233, 234, 235, 258, 259], "level": [41, 42, 43, 47, 48, 49, 50, 51, 52, 54, 85, 96, 111, 123, 130, 166, 175, 177, 181, 228, 298, 306], "lexcon": 308, "lexicon": [22, 42, 43, 44, 45, 50, 51, 53, 111, 122, 124, 149, 152, 156, 163, 165, 202, 203, 210, 226, 229, 237, 244, 254, 261, 304, 310], "lexicon2": 310, "lexicon_t": 176, "lgpl": 55, "li": [42, 45, 277, 299, 301], "li_scor": 42, "liang": [43, 44], "lib": [27, 31, 37, 42, 43, 45, 48, 111, 115, 118, 132, 134, 135, 137, 143, 144, 145, 151, 156, 163, 166, 173, 177, 296, 302], "libarrow": 31, "libedit": [31, 39, 45, 47, 50, 54], "libedit\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u9055\u3046\u554f\u984c\u306e\u4fee\u6b63": 37, "libedit\u5bfe\u5fdc": 36, "libev": [31, 40], "libgcc_s_sjlj": 49, "libgroonga": [20, 52, 166, 308], "libmecab": 12, "libmemcach": 14, "libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059": 14, "libnginx": 44, "libra": 41, "librari": [1, 20, 22, 27, 33, 42, 44, 47, 48, 49, 50, 51, 52, 59, 64, 84, 167, 175, 223, 245, 290, 296, 302, 308], "libstemm": 49, "libtool": [6, 50], "libwinpthread": 49, "lic": 195, "licens": [45, 47, 49, 54, 55, 56], "life": 50, "lifecycl": 21, "lifetim": 56, "light": [114, 140, 142, 164, 231, 232, 233, 234, 235, 258, 259, 290], "lighthous": 41, "like": [2, 22, 27, 31, 41, 42, 43, 44, 45, 46, 49, 50, 53, 54, 74, 91, 96, 112, 114, 125, 132, 134, 135, 140, 141, 143, 156, 159, 164, 175, 177, 180, 188, 201, 202, 205, 210, 223, 224, 225, 231, 235, 239, 244, 246, 247, 250, 264, 275, 279, 280, 290, 292, 304, 306, 311], "likewis": 156, "limit": [22, 36, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 104, 119, 153, 159, 175, 177, 188, 210, 223, 224, 225, 228, 245, 246, 248, 253, 281, 304, 307, 308, 310, 312], "line": [6, 14, 17, 18, 21, 27, 31, 39, 41, 42, 47, 49, 50, 52, 53, 54, 74, 95, 96, 122, 125, 155, 177, 188, 224, 239, 243, 244, 248, 290, 291, 292, 302, 308], "line_cont": 95, "line_numb": 95, "link": [47, 49, 50, 52, 56, 156, 224, 225, 305, 306, 312], "lintian": 41, "linux": [3, 5, 8, 12, 18, 22, 23, 29, 31, 39, 41, 42, 43, 44, 47, 52, 53, 54, 57, 94, 158, 176, 177, 298, 308, 312], "lion": 47, "lisp": 52, "list": [3, 12, 13, 17, 22, 27, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 68, 74, 111, 112, 124, 133, 136, 139, 141, 142, 156, 158, 161, 169, 175, 177, 179, 181, 224, 225, 229, 239, 276, 302, 305, 307, 308, 310, 311], "listen": [47, 52, 177, 292, 298, 302, 312], "listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "liter": [39, 41, 42, 44, 45, 47, 48, 51, 54, 191, 192, 193, 206, 208, 209, 224, 244, 277], "littl": [41, 43, 44, 54, 56, 111, 156, 175, 177], "live": [161, 311], "livedoor": 56, "ll": [6, 17, 44, 45, 49, 52, 53, 56, 133, 137, 163, 168, 177, 227, 244, 248, 262, 264, 267, 268, 275, 299, 301], "llama": [94, 158, 177, 197, 227, 298, 308, 312], "llc": 56, "lldb": 6, "llo": 275, "llt": 168, "lo": [262, 264, 267, 268, 275], "loack": 106, "load": [22, 37, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 92, 94, 106, 109, 110, 111, 114, 118, 121, 122, 123, 124, 132, 134, 135, 137, 140, 141, 144, 149, 150, 151, 156, 159, 161, 164, 165, 170, 173, 175, 176, 178, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 237, 240, 243, 244, 245, 246, 247, 248, 250, 251, 253, 260, 261, 275, 276, 278, 282, 286, 292, 301, 304, 305, 306, 307, 310, 313, 314, 315], "load_column": [41, 53, 54], "load_tabl": [41, 53, 54], "load_valu": [41, 53, 54], "loaded_id": [51, 125], "loaded_record": 125, "loadedlog": [41, 54], "load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059": 93, "load\u30b3\u30de\u30f3\u30c9": 36, "lobster": [32, 44], "local": [0, 6, 12, 17, 18, 27, 31, 42, 43, 53, 175, 177, 225, 227], "localeoutput": 53, "localhost": [12, 125, 153, 174, 175, 176, 177, 180, 241, 292, 298], "localstatedir\u3092\u4f7f\u7528": 37, "localtim": 42, "locat": [18, 21, 22, 41, 47, 48, 49, 51, 53, 90, 95, 175, 177, 239, 275, 292, 304, 305, 306, 311, 312], "location_in_groonga": 95, "location_in_input": 95, "location_str": 311, "lock": [22, 39, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 85, 106, 124, 125, 126, 127, 128, 205, 206], "lock_acquir": [22, 50, 57, 92, 128], "lock_clear": [22, 49, 50, 52, 57, 92, 109, 126, 128], "lock_releas": [22, 50, 57, 92, 126], "lock_tabl": 53, "log": [12, 22, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 85, 92, 106, 110, 111, 123, 124, 129, 132, 134, 135, 136, 137, 140, 143, 152, 156, 161, 166, 175, 176, 180, 244, 246, 247, 248, 250, 251, 253, 254, 291, 296, 303], "log1": 110, "log_20160320": 137, "log_format": [54, 177], "log_level": [22, 43, 50, 52, 57, 92, 111, 130, 131, 173, 175, 228], "log_put": [22, 50, 57, 92, 129, 131, 175], "log_put\u306f": 130, "log_reopen": [22, 51, 54, 57, 92, 129, 130], "log_repoen": 47, "log_typ": 45, "logal": 21, "logger": [47, 50, 74], "logic": [42, 43, 44, 47, 50, 51, 132, 134, 135, 136, 156, 195, 202, 248, 262], "logical_": [133, 248], "logical_count": [22, 41, 43, 44, 50, 52, 53, 54, 57, 92, 158, 248], "logical_paramet": [22, 50, 57, 92, 248], "logical_range_filt": [22, 41, 43, 44, 50, 52, 53, 54, 57, 92, 132, 133, 158, 248], "logical_select": [22, 41, 50, 51, 52, 53, 54, 57, 92, 132, 134, 137, 158, 191, 192, 193, 248, 283], "logical_shard_list": [22, 50, 57, 92, 137, 248], "logical_table_nam": [132, 134, 135, 248], "logical_table_remov": [22, 41, 50, 51, 52, 57, 92, 124, 248], "login": [42, 43, 281], "logo": [41, 47], "logrot": [47, 49, 50], "logs_20150203": [132, 135, 137, 156], "logs_20150204": 135, "logs_20150801": 136, "logs_20150802": 136, "logs_20150814": 248, "logs_20150815": 248, "logs_20150930": 136, "logs_20160318": 137, "logs_20160319": 137, "logs_20160320": 137, "logs_20160320_timestamp": 137, "logs_20170315": 41, "logs_20170316": 41, "logs_20170317": 41, "logs_20170415": [132, 134], "logs_20170416": [132, 134], "logs_message_index": 244, "logs_timestamp": [41, 152], "logyyyymmddhhmmss": 180, "log\u3067\u3059": 175, "log\u3068\u3044\u3046\u5f62\u5f0f\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u4f5c\u3089\u308c\u307e\u3059": 176, "log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059": 93, "london": 188, "long": [43, 44, 45, 48, 49, 50, 51, 54, 71, 74, 96, 111, 153, 156, 157, 161, 173, 224, 225], "longer": [43, 44, 45, 53, 55, 74, 126, 141], "longest": [39, 43, 225], "longitud": [22, 74, 225, 304, 311, 315], "longitude_in_degre": 225, "longitude_in_msec": 225, "longitudexlatitud": 48, "longtext": [41, 45, 58, 90, 111, 141, 142, 155, 237], "longtext\u306e\uff13\u3064\u306e\u578b\u306b\u3064\u3044\u3066\u306f\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u4fdd\u5b58\u3057\u305f\u308a\u51fa\u529b\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u3059\u304c": 282, "look": [41, 45, 100, 111], "lookahead": 272, "loop": [44, 47, 49, 50, 51], "loos": [53, 184, 186], "loose_blank": [42, 45, 53], "loose_items_index": 201, "loose_symbol": [42, 44, 53], "looseitem": 201, "loss": 18, "lost": [51, 52, 257, 258, 259], "lot": [42, 43, 44, 48, 156], "love": 310, "lower": [111, 156, 161, 168, 244, 308], "lowercas": [45, 244], "lowest": 156, "lru": 107, "lsb": 28, "lsb_releas": 28, "lt": [21, 32, 42, 43, 45, 168, 191, 192, 193, 206], "lte": 168, "lucid": [37, 48], "lucid\u304b\u3089": 37, "lunar": [32, 44], "lunch": 0, "lz4": [41, 49, 51, 52, 53, 94, 111, 141, 155, 158, 177, 298, 308, 312], "lzo": [39, 47, 48, 49], "lzo_error": 298, "lzo\u30b5\u30dd\u30fc\u30c8\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u308b\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308bapi\u3092\u8ffd\u52a0": 37, "m": [18, 42, 43, 156, 173, 174, 226, 260, 310, 311], "mac": [37, 47], "machin": [49, 175], "maco": [18, 22, 23, 49, 51, 54], "macport": [22, 23, 39], "macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0": 39, "macro": [39, 41, 48, 49, 50, 52, 302], "made": [39, 43, 47, 50, 53, 54, 56, 308], "madrid": 188, "magazin": 156, "magnitud": [134, 135], "mai": [0, 20, 27, 31, 34, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 61, 81, 94, 95, 96, 111, 112, 114, 123, 124, 125, 126, 127, 128, 132, 134, 138, 140, 153, 154, 155, 156, 158, 159, 161, 163, 164, 173, 177, 180, 195, 205, 224, 225, 243, 244, 245, 246, 247, 254, 257, 258, 259, 264, 274, 277, 281, 292, 307, 310], "mail": [3, 17, 22, 50], "mail_column": 176, "mailarch": 12, "main": [17, 43, 44, 81, 135, 166], "mainli": [45, 49, 122, 311], "mainlin": [49, 50], "mainstream": 0, "maintain": [43, 45, 54, 56, 274, 278], "mainten": [45, 260, 274], "maintenait": 260, "maintenir": 260, "major": [23, 41, 42, 43, 44, 45, 46, 53, 54, 56], "make": [0, 12, 14, 17, 18, 19, 27, 41, 42, 43, 44, 45, 49, 51, 52, 54, 56, 85, 105, 111, 123, 174, 175, 176, 177, 226, 308, 312, 313], "makecach": 47, "makefil": 27, "makoto": 51, "malfunct": 50, "malloc": 49, "man": [42, 45, 51], "manag": [0, 18, 21, 22, 27, 31, 42, 45, 57, 58, 98, 118, 141, 153, 171, 173, 175, 177, 205, 206, 243, 254, 292, 312], "mandat": 56, "manhattan": 45, "mani": [0, 3, 17, 31, 34, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 56, 81, 91, 111, 123, 124, 132, 134, 135, 137, 142, 156, 161, 163, 165, 168, 177, 179, 224, 225, 244, 245, 246, 247, 252, 254, 281, 290, 291, 292, 296, 302, 305, 306, 308], "manipul": 223, "manner": [156, 308], "mantic": [44, 45], "manual": [22, 27, 31, 42, 45, 49, 226, 227], "man\u3092\u8ffd\u52a0": 36, "map": [39, 43, 50, 52, 58, 110, 118, 156, 158, 228, 250, 281, 303], "map_hugetlb": 39, "mariadb": [43, 48, 49, 51], "mark": [27, 40, 45, 49, 50, 51, 52, 53, 111, 161, 191, 193, 230, 231, 232, 233, 234, 235, 258, 259, 261, 277, 311], "markdown": 18, "markdown\u30d1\u30fc\u30b5\u30fc": 12, "market": 42, "marku": 47, "markup": [16, 50], "marshal": 45, "marverick\u306b\u5909\u66f4": 37, "masafumi": [48, 49, 51], "masaharu": [40, 47, 48, 51], "masahiro": [37, 48, 49], "masahiro\u3055\u3093": 37, "masanori": 51, "masatoshi": [50, 53], "massachusett": 311, "master": [12, 44, 177], "masuda": [42, 43], "match": [37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 68, 91, 121, 132, 134, 135, 156, 161, 171, 175, 177, 183, 186, 191, 192, 193, 195, 196, 197, 201, 202, 203, 205, 206, 208, 210, 219, 223, 226, 244, 245, 246, 247, 261, 272, 276, 278, 301, 308, 310, 311], "match_column": [22, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 91, 111, 119, 191, 192, 193, 205, 206, 224, 226, 228, 245, 246, 247, 260, 261, 275, 276, 278, 299, 301, 304, 308, 311, 314], "match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059": 301, "match_escal": 53, "match_escalation_threshold": [31, 37, 42, 44, 45, 53, 171, 186], "math": 198, "math_ab": [22, 52, 57, 182], "matsuu": 37, "matthia": 50, "matur": [1, 296], "maverick": 39, "max": [39, 41, 43, 44, 47, 48, 49, 50, 51, 52, 54, 58, 61, 81, 105, 108, 115, 116, 117, 118, 133, 141, 156, 158, 163, 171, 174, 175, 176, 180, 203, 204, 205, 206, 224, 225, 246, 254, 292], "max_array_segment_id": 141, "max_buffer_segment_id": 141, "max_command_vers": [41, 94, 97, 158, 177, 241, 298, 308, 312], "max_concurr": 174, "max_dist": [41, 44, 51], "max_element_interv": 44, "max_expans": [41, 44], "max_in_use_chunk_id": 141, "max_in_use_physical_segment_id": 141, "max_interv": [44, 225], "max_length": 195, "max_map_count": 303, "max_map_seg": 53, "max_n_enough_filtered_record": 42, "max_n_physical_seg": [54, 141], "max_n_target_record": [43, 44, 156], "max_nfthread": 81, "max_phrase_interv": 44, "max_phrase_interval_1": [44, 225], "max_phrase_interval_2": [44, 225], "max_section_id": 141, "max_token_interval_1": [44, 225], "max_token_interval_2": [44, 225], "max_total_s": 141, "max_tp": 174, "max_valu": 281, "maximum": [27, 34, 41, 42, 43, 50, 98, 111, 132, 135, 137, 141, 142, 156, 161, 183, 225, 245, 246, 254, 298, 303, 305, 308], "mayb": [53, 54], "mcdonald": 239, "md": [12, 18], "mdev": [50, 51], "md\u30d5\u30a1\u30a4\u30eb\u306epublish": 12, "me": [2, 12, 50, 56, 148, 160, 277], "mean": [31, 41, 42, 45, 47, 48, 49, 50, 51, 52, 53, 56, 58, 64, 68, 85, 91, 99, 100, 111, 112, 118, 124, 126, 127, 128, 129, 131, 132, 134, 135, 137, 141, 143, 149, 152, 153, 156, 158, 159, 168, 171, 173, 175, 177, 180, 202, 203, 210, 224, 225, 228, 229, 239, 240, 243, 244, 246, 247, 248, 250, 257, 258, 259, 262, 268, 271, 281, 303, 305, 306, 308, 310, 315], "meaning": [50, 111], "meaningless": [41, 58, 149, 150, 244], "measur": [0, 39, 44], "mecab": [0, 12, 24, 25, 28, 30, 31, 32, 39, 41, 45, 47, 48, 49, 50, 51, 53, 55, 94, 103, 142, 158, 177, 274, 298, 308, 312], "mecab_new2": 47, "mecab_strerror": 49, "mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u691c\u51fa\u51e6\u7406\u3092\u6539\u5584": 36, "mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u6642\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u3088\u308a\u89aa\u5207\u306b\u3057\u305f": 37, "mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u305f\u3068\u304d\u306b\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 39, "mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 39, "mechan": [47, 50, 177, 186, 292], "media": 49, "median": 49, "medium": [23, 28, 32, 33, 51, 141, 311], "meerkat": 39, "meet": [42, 43, 49, 311, 315], "meetup": 50, "memcach": [0, 1, 22, 50, 51, 289, 312], "memcached\u306e\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u305f\u3081\u306b\u306f": 14, "memcpi": 53, "memo": [41, 42, 43, 44, 45, 50, 142, 155, 195, 196, 197, 202, 203, 208, 209, 212, 219, 221, 245, 246, 247, 260, 261], "memo1": 245, "memo2": 245, "memo3": 245, "memo4": 245, "memo5": 245, "memo6": 245, "memo7": 245, "memo_index": [43, 49], "memor": 18, "memori": [22, 23, 27, 28, 32, 33, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 85, 111, 118, 123, 124, 156, 158, 161, 175, 177, 197, 244, 300, 302], "memory_map_s": [43, 44, 94, 158, 177, 298, 308, 312], "memos_cont": [41, 42, 43, 44, 45, 260, 261], "memos_content_index": [142, 155], "memos_tag": [41, 42, 196], "memos_timestamp": 42, "memset": 50, "mention": [45, 210], "menu": [156, 276], "mercuri": 12, "mere": 56, "merg": [0, 17, 42, 47, 53], "meridian": 188, "merit": [45, 134, 156, 175, 177], "messag": [6, 12, 22, 39, 40, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 85, 95, 111, 125, 130, 173, 175, 244, 246, 247, 300, 310, 311], "message_for_1st_record": 125, "message_for_2nd_record": 125, "message_index": [246, 247], "message_pack": [41, 94, 158, 177, 298, 308, 312], "messagepack": [31, 39, 40, 41, 44, 47, 50, 52, 54, 64, 241, 292, 298], "met": [45, 210], "meta": [47, 112, 173], "metadata": [41, 42, 44, 47, 51, 52, 53, 96, 111, 124, 142, 154, 231, 232, 233, 234, 235, 245, 246, 247, 274, 311], "meter": [188, 198, 315], "method": [18, 42, 43, 48, 50, 52, 53, 56, 141, 155, 156, 208, 225, 240, 250, 262, 264, 266, 267, 268, 269, 270, 271, 275, 277, 279, 280, 308], "micor": 41, "micro": [22, 54, 225, 304, 305], "microsecond": [41, 44, 228, 305], "microsoft": [8, 27, 33, 42, 50, 302], "middl": [44, 53, 123, 156, 231, 232, 233, 234, 235, 258, 259], "midnight": 225, "might": [41, 43, 45, 54, 56, 111], "migrat": [43, 44, 46, 49, 132, 134, 135, 156, 224, 225], "mike": 121, "milk": 42, "million": [34, 54, 56, 111], "millisecond": [99, 175, 180, 225, 305, 315], "mime": [50, 292], "min": [41, 47, 49, 50, 52, 53, 156, 173, 174, 176], "min_interv": 44, "minagawa": [48, 49, 51], "mind": [34, 248], "mine": 0, "mingl": [231, 232, 233, 234, 235, 274], "mingw": [12, 41, 42, 43, 54], "mingw32": 44, "minim": [177, 183], "minimum": [24, 25, 28, 32, 44, 56, 85, 132, 135, 137, 156, 225, 296], "minor": 41, "minotaur": [44, 45], "minu": [42, 231, 232, 233, 234, 235, 257, 258, 259], "minut": [42, 43, 173, 225, 228, 250, 251, 311, 315], "mip": 51, "mipsel": 51, "mirai": 56, "mismatch": [49, 51, 52, 173, 208], "miss": [39, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 123, 155, 243], "missing_": [43, 44, 111], "missing_add": [43, 111], "missing_and": 43, "missing_ignor": [43, 44, 111], "missing_nil": [43, 44, 111], "missingmodescalar": 111, "missingmodescalarref": 111, "missingmodevector": 111, "missingmodevectorref": 111, "mistaken": 41, "mistral": [197, 227], "misunderstand": 42, "mitani": 49, "mitsuhiro": 37, "mitsuo": 48, "mix": [41, 50, 53, 56, 91, 159, 178, 264], "miyashita": 51, "mizuhara": 50, "mkdir": [12, 122], "mkostemp": 49, "mktime": 50, "mm": [42, 43, 44, 225, 228], "mmap": [22, 43, 44, 48, 300], "mnt": 29, "mo": 17, "mobil": 0, "mod": 44, "mode": [17, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 143, 149, 150, 195, 197, 202, 244, 277, 298, 308], "mode1": 195, "mode_nam": 197, "model": [22, 41, 45, 49, 57, 167, 175, 197, 298], "moden": 195, "modern": 311, "modif": [18, 42, 45, 50, 54], "modifi": [18, 31, 41, 51, 52, 173, 231, 232, 233, 234, 235, 258, 259, 303, 312, 314], "modified_at": 44, "modul": [0, 22, 37, 41, 49, 50, 229, 245, 255, 262, 292], "moero": 307, "moment": 41, "mondai": 212, "monei": 307, "monitor": [28, 32, 43, 48], "monkei": 305, "month": [50, 52, 173, 225, 228, 248, 307, 311], "montywi": 40, "mooz\u3055\u3093": 39, "mooz\u3055\u3093\u304c\u4fee\u6b63": 39, "more": [0, 6, 18, 27, 31, 34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 85, 87, 90, 91, 94, 96, 111, 112, 124, 131, 132, 134, 135, 137, 141, 142, 152, 155, 156, 159, 161, 163, 173, 175, 177, 180, 181, 186, 195, 196, 197, 201, 202, 203, 205, 206, 210, 224, 225, 226, 227, 240, 243, 244, 245, 246, 247, 248, 251, 252, 254, 255, 260, 262, 264, 272, 274, 281, 282, 292, 298, 305, 308, 311, 313], "moreov": 315, "mori": 56, "moritapo": 307, "moritar": 310, "morn": 226, "moronga": 156, "morpholog": [0, 31, 156, 225, 274], "most": [42, 49, 50, 52, 91, 92, 94, 111, 135, 142, 156, 186, 224, 225, 227, 244, 246, 264, 277, 292, 305, 308], "motoi": 48, "mountain": 41, "move": [16, 39, 44, 47, 50, 110, 118, 131, 141], "movi": 307, "mpaa": 183, "mrb": [50, 53], "mrb_valu": 51, "mroonag": 156, "mroonaga": 156, "mroonga": [22, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 91, 122, 125, 132, 134, 135, 156, 191, 192, 193, 194, 195, 196, 202, 203, 210, 219, 224, 225, 243, 245, 248, 310], "mroonga_oper": 41, "mroonga\u3082\u4f7f\u3044\u59cb\u3081\u307e\u3057\u305f": 156, "mroonga\u3084pgroonga": 12, "mrubi": [6, 27, 41, 48, 49, 50, 51, 53, 54, 94, 154, 158, 177, 248, 298, 308, 312], "ms740668": 302, "msdn": 302, "msec": 39, "msg_control": 50, "msg_controllen": 50, "msg_flag": 50, "msg_id": 12, "msghdr": 50, "msgpack": [44, 50, 51, 52, 53, 241, 292, 298], "msgpackc": 44, "msg\u306fcom\u306b\u3088\u3063\u3066": 9, "msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b": 9, "msvc": 50, "msyql": 91, "msys2": 12, "msys2\u7528\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u307e\u3059": 12, "mte": 55, "much": [41, 43, 44, 45, 52, 53, 54, 262], "mulitipl": 42, "multi": [0, 27, 31, 39, 41, 42, 43, 44, 49, 50, 51, 53, 54, 156, 177, 228, 237, 291], "multibyt": [39, 44, 51], "multifacet": 56, "multilin": [54, 244], "multilingu": 56, "multipl": [0, 22, 27, 31, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 74, 90, 91, 96, 112, 121, 132, 134, 135, 138, 149, 152, 153, 155, 156, 165, 168, 175, 177, 178, 180, 186, 191, 192, 195, 196, 202, 203, 224, 231, 232, 233, 234, 235, 238, 244, 245, 248, 250, 272, 274, 275, 276, 286, 290, 304, 307, 309, 311], "multipli": [42, 225, 310], "multithread": [27, 31, 50, 118, 153], "munin": [28, 32, 39, 40, 43, 44, 47, 48, 49], "munin\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8ffd\u52a0": 36, "murakami": [48, 49, 50, 51, 52, 53], "murata": 52, "museum": 311, "musha": 50, "music": [228, 307], "must": [6, 7, 8, 27, 31, 41, 42, 44, 45, 46, 49, 50, 51, 52, 53, 54, 58, 68, 74, 84, 85, 87, 96, 106, 110, 111, 112, 114, 118, 121, 124, 125, 126, 127, 128, 131, 132, 134, 135, 141, 143, 149, 150, 153, 156, 159, 161, 164, 167, 173, 175, 177, 178, 180, 181, 183, 194, 201, 203, 208, 210, 224, 225, 237, 244, 246, 247, 248, 253, 278, 281, 292, 298, 303, 305, 308, 310, 312], "mutabl": 141, "mutex": [48, 85], "mutex_lock": 81, "mutex_unlock": 81, "mv": 131, "mxcl": 12, "my": [43, 44, 45, 132, 134, 135, 156, 224, 225, 227, 310], "myamanishi3": 52, "myisam": 0, "mysql": [0, 24, 25, 28, 32, 41, 42, 43, 44, 45, 49, 50, 51, 53, 55, 91, 103, 138, 156, 191, 192, 193, 205, 206, 229, 243, 245, 248, 252], "n": [0, 14, 29, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 61, 74, 96, 111, 122, 129, 132, 138, 156, 166, 168, 173, 174, 175, 180, 202, 224, 225, 228, 244, 272, 281, 299, 301, 308], "n10": [224, 225], "n11": [224, 225], "n2": 224, "n29": 225, "n_arg": 41, "n_array_seg": 141, "n_buffer_seg": 141, "n_byte": 142, "n_cpu_thread": 203, "n_element": [51, 142], "n_entri": 107, "n_garbage_chunk": 141, "n_garbage_chunks_in_space0": 141, "n_garbage_chunks_in_space1": 141, "n_garbage_chunks_in_space13": 141, "n_garbage_seg": 141, "n_hit": [42, 43, 44, 96, 132, 156], "n_job": [41, 94, 158, 177, 298, 308, 312], "n_keyword": 68, "n_like": [41, 43, 44, 95, 132, 134, 135, 156, 224, 225, 281], "n_likes_class": 156, "n_likes_cumulative_sum_per_tag": [132, 134, 135, 156], "n_likes_str": [132, 134, 135, 156], "n_likes_sum_per_tag": [132, 134, 135, 156], "n_loaded_record": [51, 125], "n_max_thread": 167, "n_queri": [41, 94, 97, 158, 177, 241, 298, 308, 312], "n_record": 141, "n_records_per_day_and_item": 41, "n_unmanaged_seg": 141, "n_var": 85, "n_worker": [27, 31, 43, 44, 45, 158, 175, 177, 226, 298, 308, 312], "na": 56, "nagano": 49, "naist": 274, "naiv": 306, "nakai": 48, "nakamura": 50, "nama": [231, 232, 233, 234, 235], "name": [0, 17, 22, 27, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 68, 74, 85, 95, 96, 108, 110, 113, 119, 121, 124, 125, 126, 127, 128, 131, 136, 137, 138, 139, 142, 144, 145, 149, 150, 152, 155, 158, 159, 160, 162, 168, 169, 170, 173, 175, 177, 180, 181, 188, 191, 192, 195, 197, 202, 203, 210, 211, 219, 225, 231, 232, 233, 234, 235, 237, 243, 248, 250, 254, 274, 276, 278, 292, 295, 298, 302, 304, 305, 306, 307, 308, 311, 313, 315], "name1": [132, 134, 135, 156, 208, 225], "name2": [132, 134, 135, 156, 208, 225], "name_1": [308, 312], "name_2": [308, 312], "name_s": [68, 85], "name_t": 141, "names_kei": 44, "nan": [41, 52], "nano": 96, "nanosecond": [41, 95, 228], "naoa": [41, 42, 43, 44], "naoina": [47, 48], "naoya": [48, 49, 50, 51, 52, 53], "naozumi": 56, "narg": 68, "narrow": [22, 42, 43, 48, 49, 53, 124, 149, 156, 183, 186, 196, 302, 304], "narwhal": 39, "natanael": 50, "nath": 45, "natti": 39, "natur": [51, 52], "ne": [55, 168], "nearbi": 0, "nearest": 198, "neartoken": 224, "neartokenterm": 224, "necesarri": 43, "necessari": [39, 43, 45, 173, 308], "necessarili": 45, "need": [0, 6, 17, 18, 21, 27, 31, 33, 34, 39, 41, 42, 43, 44, 47, 49, 50, 52, 53, 54, 58, 61, 64, 68, 81, 84, 91, 94, 95, 96, 111, 118, 123, 124, 125, 126, 132, 133, 134, 135, 136, 137, 138, 141, 144, 149, 151, 153, 156, 157, 161, 163, 168, 170, 173, 175, 177, 180, 186, 193, 197, 198, 201, 203, 205, 206, 211, 212, 219, 224, 225, 227, 236, 237, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 253, 254, 260, 274, 278, 281, 292, 295, 298, 303, 308, 310, 313, 314, 315], "needl": 11, "needleess": 47, "needless": [40, 41, 42, 43, 44, 47, 48, 50, 51, 52, 99, 124, 272, 274], "neg": [41, 42, 47, 50, 52, 85, 100, 156, 208, 209, 224, 225, 272], "neglig": [49, 53], "neighbor": 0, "neither": [124, 149], "neolog": 274, "neologd": 274, "nest": [22, 42, 47, 48, 49, 50, 53, 54, 141, 156, 304], "nested_reference_column": 156, "nesteddrilldownmemo": 156, "nesteddrilldowntag": 156, "net": [2, 12, 305, 306, 307, 308, 312, 315], "netbsd": 48, "netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc": 37, "netinet": 50, "network": [47, 105, 292, 298, 307], "network_is_down": 298, "net\u306egroonga\u30c1\u30fc\u30e0\u306eppa\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059": 12, "net\u4e0a\u3067\u30d3\u30eb\u30c9\u304c\u5b9f\u884c\u3055\u308c": 12, "never": [31, 41, 42, 43, 44, 45, 50, 52, 111, 133, 150, 156, 159, 244], "new": [0, 3, 6, 12, 22, 56, 58, 61, 74, 81, 85, 96, 110, 111, 114, 126, 131, 132, 133, 134, 135, 156, 157, 161, 164, 167, 175, 177, 180, 188, 220, 226, 252, 278, 298, 305, 308, 311], "new_column": 58, "new_limit": 81, "new_release_d": 12, "new_seri": 110, "new_tag": 110, "new_valu": 156, "new_vers": 12, "newark": 311, "newer": [44, 49, 50, 52, 131, 173], "newid": 110, "newli": [0, 42, 44, 45, 49, 111, 170, 205, 206, 226], "newlin": [39, 40, 50, 74, 272], "newnam": 110, "next": [0, 18, 42, 43, 45, 49, 50, 94, 111, 132, 134, 135, 141, 156, 180, 231, 232, 233, 234, 235, 278, 286, 307, 308], "next_physical_segment_id": [54, 141], "nf": 31, "nfkc": [41, 44, 45, 53, 54, 94, 158, 177, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259, 298, 308, 312], "nfkc51lexicon": 236, "nfthread": 81, "ng": [156, 168, 209], "nga": [42, 156, 208], "ngho\u00e8o": 45, "nginx": [41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 291, 296], "nginxhttpstubstatusmodul": 49, "ngoan": [45, 231, 235], "ngo\u1eb1n": [45, 231, 235], "ngram": [53, 275], "ngroonga": 42, "nguyen": 41, "ngx_http_log_modul": 177, "ngx_http_proxy_modul": 177, "nhamhjpm": 166, "ni": [201, 240], "nice": 226, "night": [226, 314], "nightli": 12, "niho": 201, "nihon": [201, 250], "niku": 49, "nil": 74, "nine": 308, "ninja": [18, 27], "nippon": 250, "nise_nab": 49, "nishimura": 56, "nmroonga": 43, "nmysql": 43, "no_buff": 298, "no_child_process": 298, "no_kei": [141, 254], "no_key\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u5024\u3092\u30b5\u30dd\u30fc\u30c8": 36, "no_locks_avail": 298, "no_memory_avail": 298, "no_space_left_on_devic": 298, "no_such_devic": 298, "no_such_device_or_address": 298, "no_such_file_or_directori": 298, "no_such_process": 298, "noarch": [24, 25], "nobl": 45, "nobodi": 43, "nobuhiro": 51, "node": [12, 21, 45, 47, 50, 51, 74], "nogpgcheck": 47, "nois": [42, 45, 180, 251, 262, 274], "noisi": 156, "nokubi": 49, "nomal": [47, 177], "non": [18, 27, 31, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 95, 111, 141, 156, 173, 224, 225, 231, 232, 233, 234, 235, 264, 265, 266, 267, 268, 274, 275, 279, 280], "noncompress": 111, "none": [31, 43, 53, 74, 111, 126, 127, 128, 135, 138, 141, 152, 161, 165, 168, 175, 177, 179, 180, 298, 310], "none_expant": 156, "noneexpantiondrilldownmemo": 156, "nonexist": [42, 43, 44, 49, 50, 51, 52, 58, 111, 115, 116, 132, 134, 135, 156], "nonexistent1": 111, "nonexistent2": 111, "nonexistent3": 111, "nonexistent_command": 50, "nor": [31, 156, 161], "noraml": 168, "normal": [22, 24, 25, 28, 32, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 64, 74, 81, 92, 95, 102, 103, 110, 111, 112, 118, 123, 124, 132, 133, 134, 135, 137, 139, 141, 142, 143, 152, 156, 158, 162, 163, 164, 165, 173, 175, 177, 180, 186, 192, 193, 197, 201, 202, 203, 205, 206, 224, 225, 226, 230, 231, 232, 233, 234, 235, 236, 240, 243, 244, 245, 246, 247, 255, 257, 258, 259, 260, 261, 262, 264, 272, 275, 279, 280, 281, 282, 301, 308, 310, 311, 314], "normalizationsindex": 45, "normalizeauto": [191, 192], "normalized_column": 237, "normalized_text": 138, "normalizer_1": 155, "normalizer_2": 155, "normalizer_list": [22, 49, 57, 92], "normalizer_n": 155, "normalizer_nam": 155, "normalizer_name_1": 155, "normalizer_name_2": 155, "normalizer_name_n": 155, "normalizerauto": [41, 42, 43, 44, 45, 50, 53, 111, 132, 134, 135, 138, 139, 142, 152, 155, 156, 161, 163, 165, 168, 180, 191, 192, 193, 201, 202, 203, 205, 206, 224, 225, 226, 229, 236, 240, 244, 245, 246, 247, 255, 260, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 275, 277, 279, 280, 281, 301, 308, 310, 311, 314], "normalizerhtml": [43, 44, 139, 155], "normalizernfkc": [42, 44, 229, 232, 233, 234, 235, 236, 257], "normalizernfkc100": [53, 54, 139, 155, 229, 231, 258, 275], "normalizernfkc121": [41, 42, 43, 44, 54, 139, 155, 229, 231], "normalizernfkc130": [41, 42, 43, 44, 123, 139, 155, 203, 224, 229, 231], "normalizernfkc150": [44, 45, 139, 155, 156, 229, 231, 259], "normalizernfkc160": 45, "normalizernfkc51": [53, 139, 155, 229, 231], "normalizert": [42, 43, 44, 45, 139, 155, 191, 229], "normalizs": 161, "normallexicon": 230, "normalzi": [191, 192], "northern": 47, "norwegian": [53, 260], "nosuchfileordirectori": 50, "not_a_directori": 298, "not_enough_spac": 298, "not_equ": 202, "not_socket": 298, "notat": [47, 48, 225], "note": [0, 18, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 85, 111, 121, 124, 125, 132, 134, 138, 143, 153, 154, 156, 161, 175, 177, 180, 194, 205, 219, 224, 225, 231, 275, 281, 292, 303, 305, 306, 308, 312], "noth": [45, 50, 53, 64, 81, 123, 124, 149, 156, 173, 175, 177, 221, 250, 252, 275, 286], "notic": [42, 44, 45, 50, 51, 111, 123, 129, 130, 166, 175, 177, 246, 247], "notif": [48, 228], "notifi": 153, "notmal": 42, "notrelated_20160320": 137, "noun": [53, 231, 232, 233, 234, 235, 274], "now": [6, 17, 18, 22, 27, 31, 40, 41, 42, 43, 44, 45, 46, 49, 50, 52, 53, 57, 58, 91, 96, 111, 132, 135, 154, 182, 191, 193, 201, 227, 244, 275, 306, 310, 311], "np": [41, 42, 44, 224, 225], "np1": [224, 225], "np10": [44, 224, 225], "np11": 224, "np14": 225, "np2": [41, 224], "np29": 225, "np3": 44, "npp": [42, 44, 45, 224, 225], "npp1": [44, 45], "npp10": 225, "npp11": 224, "npp2": [44, 224, 225], "npp29": 225, "nromal": 42, "nroonga": [21, 202, 203, 310], "nsi": 12, "nsubrecs_str": 135, "nt": [270, 271], "ntdll": 166, "nterm": 108, "nth": [111, 135], "nthe": 42, "ntt": 56, "ntwaitforworkviaworkerfactori": 166, "nul": [39, 85, 273], "null": [6, 11, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 61, 68, 81, 85, 107, 111, 122, 124, 125, 126, 127, 128, 132, 133, 134, 135, 137, 141, 142, 149, 150, 152, 155, 156, 161, 164, 165, 167, 168, 184, 191, 192, 193, 194, 205, 206, 208, 209, 211, 212, 219, 221, 231, 232, 233, 234, 235, 237, 275, 302], "null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8": 36, "numbat": 45, "number": [0, 34, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 61, 81, 85, 91, 94, 95, 96, 98, 104, 105, 107, 108, 118, 131, 132, 133, 134, 135, 141, 142, 149, 154, 155, 158, 159, 161, 163, 167, 171, 175, 176, 177, 180, 183, 186, 195, 196, 203, 205, 206, 207, 208, 209, 223, 224, 225, 244, 245, 247, 253, 254, 275, 282, 286, 292, 296, 298, 302, 303, 305, 306, 307, 308, 312], "number1": 225, "number2": 225, "number_classifi": [22, 51, 57, 156, 182], "number_column": [43, 186], "number_liter": 50, "number_round": 45, "numer": [22, 44, 46, 50, 53, 56, 224, 225, 304], "numeric_dynamic_column": 44, "nunit": 173, "ny": 311, "nyokki": 45, "o": [7, 8, 12, 14, 24, 37, 42, 43, 44, 45, 47, 48, 49, 50, 94, 118, 124, 156, 158, 161, 176, 177, 208, 243, 244, 254, 262, 264, 275, 292, 298, 307, 308, 312], "o_": 262, "o_binari": 47, "o_creat": 52, "obata": [37, 39, 48, 50, 51, 53, 54], "obj": [41, 68, 74, 108], "object": [39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 58, 61, 74, 85, 87, 90, 91, 106, 111, 114, 120, 124, 126, 127, 128, 137, 138, 139, 140, 141, 143, 149, 150, 152, 155, 156, 158, 164, 168, 169, 173, 223, 254], "object1": 225, "object2": 225, "object_1": 142, "object_2": 142, "object_corrupt": 298, "object_exist": [22, 50, 57, 92, 137, 143], "object_inspect": [22, 51, 52, 54, 57, 92], "object_list": [22, 51, 57, 92], "object_n": 142, "object_remov": [22, 51, 57, 92, 124], "object_warm": 42, "objnam": [109, 120], "obsolet": [50, 240], "obtain": 85, "obvious": 305, "occas": 43, "occur": [41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 95, 106, 114, 135, 156, 159, 164, 180, 243, 281, 302, 314], "occurr": [41, 43, 45, 156, 247], "ocelot": [39, 48], "ocr": 42, "octal": 225, "octob": 49, "odd": 225, "off": [27, 39, 45, 49, 177, 262], "offer": [54, 56], "offic": 198, "offici": [8, 12, 27, 31, 39, 45, 102, 197, 227], "offlin": [22, 40, 41, 47, 48, 49, 50, 51, 52, 53, 57, 94], "offset": [43, 44, 45, 47, 50, 52, 54, 68, 85, 119, 159, 308], "offsetted_dai": 41, "offsetted_timestamp": 41, "often": [41, 42, 111, 124, 156, 161, 183], "ohkubo": 51, "ohter": 231, "ohzeki": 49, "ok": [121, 132, 134, 135, 156, 224, 225], "okapi": [41, 245, 247], "okapi_bm25": 41, "oknj": 54, "old": [39, 41, 44, 45, 47, 50, 51, 52, 85, 114, 164, 183, 229], "old_releas": 12, "old_release_d": 12, "older": [50, 311], "om": 277, "omit": [39, 42, 43, 44, 95, 124, 126, 127, 128, 144, 145, 149, 150, 151, 152, 156, 168, 180, 188, 205, 209, 219, 224, 225, 241, 250, 254, 308], "onc": [39, 41, 43, 47, 49, 52, 56, 84, 124, 132, 135, 156, 177, 180, 186, 229, 306, 310, 311], "one": [0, 18, 24, 25, 28, 32, 34, 39, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 56, 61, 85, 90, 91, 95, 96, 105, 107, 110, 111, 112, 115, 116, 121, 122, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 161, 163, 167, 168, 170, 171, 173, 175, 177, 178, 180, 181, 186, 188, 193, 194, 195, 198, 201, 203, 205, 206, 208, 210, 211, 212, 219, 221, 224, 225, 227, 229, 230, 237, 240, 244, 245, 246, 247, 248, 251, 254, 262, 264, 272, 276, 281, 282, 290, 292, 298, 302, 305, 307, 308, 311, 315], "one_charact": 51, "oneir": [39, 48], "oneself": 49, "onga": [205, 206], "ongaeshi": [47, 48, 50], "ongaeshi\u3055\u3093": 37, "ongaeshi\u3055\u3093\u304c\u5831\u544a": 37, "onigmo": [41, 45, 49, 50, 51, 52, 54, 94, 158, 177, 244, 298, 308, 312], "oniguruma": 50, "onli": [0, 6, 7, 17, 18, 21, 23, 24, 27, 28, 31, 32, 33, 34, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 56, 58, 61, 64, 74, 84, 85, 94, 96, 99, 100, 105, 107, 111, 112, 115, 116, 118, 121, 122, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 149, 151, 152, 153, 154, 156, 157, 158, 159, 161, 163, 166, 167, 168, 170, 173, 175, 177, 178, 180, 181, 183, 191, 192, 193, 194, 195, 196, 198, 201, 202, 205, 206, 210, 211, 212, 219, 221, 224, 225, 226, 227, 231, 235, 236, 237, 239, 243, 244, 245, 246, 247, 248, 254, 262, 264, 274, 275, 276, 277, 278, 286, 292, 296, 302, 305, 308, 310, 313, 315], "onlin": [22, 43, 44, 45, 50, 52, 53, 56, 57], "only_open": 52, "onp": [41, 42, 44, 224, 225], "onp10": 225, "onp29": 225, "onpp": [42, 44, 224, 225], "onpp1": 44, "onpp10": 225, "onpp29": 225, "onto": 281, "oo": [156, 168, 208, 254], "oon": [42, 208, 209], "ooo": 254, "op": [41, 44, 51, 52, 68], "opaqu": [61, 298], "opear": 225, "open": [18, 21, 39, 41, 42, 43, 45, 47, 48, 50, 51, 52, 53, 56, 61, 124, 142, 143, 163, 173, 180, 191, 192, 205, 206, 228, 229, 298, 308], "open_tag1": [191, 192], "openbsd": [50, 51], "oper": [22, 31, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 56, 57, 68, 96, 110, 114, 127, 137, 140, 149, 156, 164, 183, 195, 196, 201, 202, 223, 231, 232, 233, 234, 235, 240, 258, 259, 298, 302, 304], "operation_not_permit": 298, "operation_not_support": 298, "operation_timeout": 298, "operation_would_block": 298, "ophiuchu": 41, "opportun": 56, "opposit": 111, "oprtat": 42, "opt": 56, "optim": [41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 56], "optima": 45, "optimum": 177, "option": [3, 6, 23, 30, 31, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 95, 96, 102, 107, 112, 126, 127, 128, 131, 152, 156, 159, 173, 174, 176, 177, 178, 182, 186, 191, 192, 223, 224, 225, 228, 229, 230, 241, 244, 248, 250, 251, 253, 255, 257, 276, 290, 291, 292, 295, 298, 308, 310, 311, 312, 313], "oracl": [39, 44], "orang": [211, 276, 278], "orangain": 48, "order": [0, 17, 27, 41, 42, 43, 44, 45, 47, 48, 50, 51, 53, 54, 96, 132, 135, 136, 156, 198, 203, 239, 286, 298, 306, 308, 313, 315], "ordinari": 43, "ore": [156, 205, 224, 225], "org": [12, 17, 24, 25, 27, 28, 31, 33, 41, 43, 49, 50, 54, 91, 122, 125, 176, 177, 194, 305, 306, 307, 308, 312, 315], "org\u304b\u3089github": 12, "org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059": 176, "org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044": 176, "org\u3068\u901a\u4fe1\u3057\u307e\u3059": 176, "org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408": 176, "org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044": 12, "org\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059": 12, "org\u3078\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3057\u307e\u3059": 12, "org\u4e0a\u306bwindows\u7248\u306e\u6700\u65b0\u30d1\u30c3\u30b1\u30fc\u30b8\u3078\u30ea\u30c0\u30a4\u30ec\u30af\u30c8\u3059\u308b": 12, "orient": [0, 42, 205, 206, 305], "origin": [1, 17, 18, 41, 42, 43, 48, 49, 52, 56, 64, 95, 122, 156, 230, 253, 298, 312, 313, 314], "original_id": [135, 156], "orilldown": 306, "orl": 275, "orphan": [48, 52], "orthograph": [43, 53, 274], "osanai": [49, 50], "osdn": [2, 12, 50], "otehr": 161, "other": [0, 3, 6, 7, 17, 18, 22, 23, 24, 25, 28, 30, 32, 33, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 74, 84, 85, 87, 95, 101, 105, 110, 111, 112, 121, 123, 124, 125, 127, 132, 134, 135, 138, 149, 156, 159, 163, 165, 168, 173, 175, 177, 181, 183, 196, 197, 202, 210, 224, 225, 230, 232, 233, 234, 257, 264, 272, 274, 275, 276, 278, 282, 292, 305, 306, 307, 308, 310, 315], "other_t": 50, "otherhand": 156, "otherwis": [21, 31, 44, 61, 74, 85, 111, 112, 114, 115, 117, 121, 124, 126, 127, 128, 129, 131, 137, 140, 141, 142, 152, 153, 155, 156, 163, 170, 183, 195, 196, 210, 219, 225, 308], "ouput": 48, "our": [2, 17, 42, 43, 44, 46, 54, 56, 248], "ourselv": 41, "out": [13, 23, 28, 32, 33, 42, 43, 45, 49, 52, 54, 99, 210, 310], "out_gqtp": 176, "out_http": 176, "out_loc": 176, "outdat": [49, 51], "outlin": 18, "output": [3, 22, 27, 31, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 64, 68, 91, 92, 97, 99, 100, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 126, 127, 128, 129, 132, 133, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 166, 167, 168, 169, 170, 175, 176, 177, 178, 180, 181, 194, 228, 231, 232, 233, 234, 235, 257, 258, 259, 274, 302, 304, 305], "output_column": [41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 91, 110, 111, 119, 132, 159, 182, 184, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 225, 245, 246, 247, 275, 286, 301, 305, 307, 308, 310, 311, 315], "output_columns\u304b\u3089_value\u3092\u524a\u9664": 37, "output_error": 52, "output_format": 96, "output_id": 51, "output_pretti": [41, 43, 44, 45, 97, 178], "output_trace_log": [44, 96], "output_typ": [41, 42, 44, 45, 241], "output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059": 122, "outsid": [27, 49], "over": [0, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 54, 104, 132, 134, 135, 192, 303, 312], "overcommit": 281, "overcommit_memori": [47, 228], "overflow": [39, 48, 49, 50, 51, 52, 53, 54, 305], "overhead": [49, 53, 125, 141, 186, 296], "overlap": 44, "overrid": [31, 45, 58], "overview": [22, 50, 57, 59, 304], "overwrit": [51, 99], "overwritten": 315, "own": [0, 43, 47, 50, 52, 68, 225, 305], "owner": [48, 50, 177], "o\u65e5": [267, 268], "p": [12, 39, 42, 174, 175, 176, 180, 281, 295, 298, 312], "pack": 41, "packag": [8, 12, 17, 22, 23, 24, 25, 27, 28, 33, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 54, 94, 111, 156, 172, 177, 197, 260, 274, 289, 308], "packages_groonga_org_repositori": 12, "packages_groonga_org_repository\u306b\u79fb\u52d5\u3057": 12, "packages\u306b\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u4f5c\u6210\u3057\u307e\u3059": 12, "packages\u306ffork\u3057\u3066\u81ea\u5206\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3066\u304a\u304d\u307e\u3059": 12, "packages\u3092\u767b\u9332\u3057\u3066\u304a\u304d\u307e\u3059": 12, "page": [2, 17, 18, 22, 41, 42, 47, 48, 50, 178, 302, 308], "pagerank": [245, 246, 247], "pagin": [12, 308], "pai": [111, 156], "pair": [44, 50, 52, 96, 141, 142, 156, 186, 202, 203, 208, 209, 243, 250, 251, 252, 253, 305], "pair_dataset": [179, 253], "pair_queri": [159, 179, 180, 250, 251, 253], "pangolin": [47, 52], "paragraph": 308, "parallel": [0, 6, 22, 41, 42, 43, 44, 51, 57, 92, 156, 203, 226], "paramet": [22, 27, 31, 39, 40, 41, 42, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 61, 68, 74, 81, 85, 97, 98, 99, 139, 144, 145, 151, 169, 171, 177, 178, 184, 206, 212, 225, 228, 230, 236, 243, 245, 264, 265, 266, 267, 268, 269, 270, 271, 273, 276, 277, 278, 279, 280, 283, 292, 303, 304, 305, 306, 308, 311, 312, 314, 315], "parametar": 208, "parameter1": 177, "parent": [135, 156, 177], "parenthes": [53, 308], "parenthesi": 44, "pari": 188, "park": 311, "parker": 50, "pars": [41, 42, 44, 49, 51, 52, 54, 58, 68, 202, 223], "parser": [54, 156, 244], "part": [0, 31, 42, 53, 54, 95, 111, 134, 156, 205, 206, 231, 232, 233, 234, 235, 274, 305, 308, 311], "partial": [11, 50, 52, 248, 250, 252, 298], "partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057": 11, "particl": 156, "particular": [42, 56, 111], "partli": 54, "pass": [6, 27, 39, 40, 43, 50, 51, 52, 53, 81, 125, 153, 167, 177, 180, 188, 202, 224, 225, 244, 308, 312], "passiv": 42, "past": [47, 54], "pat": [40, 45, 47, 51, 74, 124], "pat_kei": [141, 142, 254], "patch": [3, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55], "path": [18, 23, 29, 36, 39, 41, 42, 44, 45, 47, 48, 49, 50, 52, 53, 54, 85, 114, 131, 142, 144, 145, 151, 159, 162, 164, 175, 177, 178, 180, 181, 228, 244, 291, 296, 298, 308], "pathch": 42, "path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059": 176, "path\u3092": 37, "patiricia": 50, "patprefix": 313, "patricia": [22, 39, 41, 43, 44, 47, 48, 50, 51, 54, 104, 120, 142, 155, 161, 224, 225, 254, 304, 308], "patsuffix": 313, "pattern": [0, 50, 52, 53, 54, 95, 111, 195, 224, 225, 244, 276], "pattern_1": 276, "pattern_2": 276, "pattern_n": 276, "pc": [31, 39], "pcre": [47, 52, 177], "pc\u306bgroonga": 38, "pdb": 53, "peak": 56, "pen": [41, 42, 44, 96, 231, 234, 235, 272], "penalti": 48, "pend": [50, 74], "pentium": 176, "peopl": [0, 42, 111, 262], "people_age_index": 111, "people_age_medium_index": 111, "people_age_small_index": 111, "people_key_index": 111, "people_key_roles_index": 111, "people_roles_large_index": 111, "per": [0, 39, 41, 43, 45, 47, 51, 90, 91, 125, 132, 134, 135, 156, 171, 177, 180, 279, 280], "percentag": [42, 158], "perfect": [0, 247], "perfectli": 133, "perform": [0, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 56, 124, 125, 134, 149, 156, 175, 180, 196, 197, 205, 206, 225, 290, 291, 296, 302, 308, 310], "perhap": 56, "period": [35, 56, 310], "perl": 177, "permiss": [31, 49], "permission_deni": 298, "permit": [53, 137], "persist": [22, 52, 53, 57, 112, 114, 142, 164, 171, 175, 177], "person": [18, 22, 23, 56, 111, 231, 232, 233, 234, 235, 274, 311], "perspect": 56, "pg": 183, "pgp": 54, "pgroonga": [41, 42, 43, 45, 50, 53, 54, 122, 156, 197, 224, 225, 228, 237, 245, 248], "phase": 54, "phenomenon": 56, "phone": 275, "php": [12, 47, 49, 50, 290], "phrase": [41, 42, 43, 44, 45, 47, 51, 111], "phrase1": [41, 44, 224, 225], "phrase1_1": [224, 225], "phrase1_2": [224, 225], "phrase2": [41, 44, 224, 225], "phrase2_1": [224, 225], "phrase2_2": [224, 225], "phrase3": 225, "physic": [43, 52, 54, 108], "pi": 278, "pid": [31, 36, 39, 41, 50, 51, 52, 53, 173, 175], "pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b": 36, "pie": [276, 278], "piikbmgh": 166, "pikonyan": 307, "pinu": 52, "pip": 18, "pip3": 12, "pipermail": 49, "piro": 49, "pisc": 41, "pkg": [31, 37, 39, 47, 50], "pkgbuild": 12, "pkgconfig": 31, "pkgrel": 12, "pkgver": 12, "place": [2, 31, 45, 111, 311], "placehold": 48, "plai": [0, 314], "plain": [50, 52, 194], "plan": [41, 53, 56, 313], "plant": 44, "plant_nam": 44, "platform": [17, 23, 27, 39, 85], "platorm": 51, "player": [110, 164], "player1": 110, "pleas": [2, 3, 17, 18, 19, 31, 41, 43, 44, 49, 50, 51, 54, 94, 96, 104, 106, 111, 156, 186, 245, 246, 247, 308], "plu": 42, "plug": 53, "pluggabl": 0, "plugin": [13, 17, 22, 24, 25, 27, 28, 32, 37, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 53, 54, 57, 59, 103, 122, 132, 133, 134, 135, 136, 137, 138, 142, 144, 145, 151, 154, 156, 168, 197, 198, 208, 209, 211, 212, 219, 221, 222, 229, 243, 248, 255, 281], "plugin_1": 155, "plugin_2": 155, "plugin_id": 142, "plugin_n": 155, "plugin_nam": 155, "plugin_name_1": 155, "plugin_name_2": 155, "plugin_name_n": 155, "plugin_regist": [22, 41, 42, 43, 45, 57, 92, 103, 122, 124, 132, 133, 134, 135, 136, 137, 145, 151, 154, 155, 156, 165, 180, 195, 197, 198, 208, 209, 211, 212, 219, 221, 222, 243, 255, 260, 261], "plugin_unregist": [22, 50, 54, 57, 92, 124, 144, 151], "po": [3, 51, 74, 189, 190], "poedit": 17, "point": [0, 39, 40, 41, 42, 43, 48, 50, 56, 74, 85, 91, 111, 114, 153, 156, 188, 189, 190, 196, 224, 239, 282, 286, 299, 303, 305, 308, 315], "pointer": [51, 85], "point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c": [189, 190], "point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059": 189, "point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059": 190, "point\u578b\u306e\u5024": [189, 190], "point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059": [189, 190], "pole": 188, "polici": 48, "poll": [41, 94, 158, 177, 298, 308, 312], "pool": 81, "poor": 243, "popular": [50, 91, 132, 134, 135, 156, 175], "port": [29, 30, 48, 49, 55, 175, 176, 177, 178, 180, 241, 292, 296, 298, 312], "port_numb": [295, 298, 312], "portabl": [39, 48, 54, 177], "portugues": [53, 260], "posit": [42, 43, 44, 49, 51, 53, 85, 91, 100, 111, 112, 138, 141, 155, 156, 167, 168, 209, 224, 225, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280, 308], "posix": [50, 225], "possibl": [39, 41, 42, 43, 45, 50, 51, 52, 54, 111, 123, 156, 282, 302], "post": [12, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 111, 125, 132, 134, 135, 141, 156, 178, 180, 224, 225, 226, 291, 308], "post_filt": [42, 43, 44, 45, 52, 53], "posted_bi": 311, "postfix": [132, 134, 135, 137], "postgresql": [0, 42, 52, 96, 197, 205, 206, 248], "potenti": [48, 56], "poti": [42, 43], "power": [43, 44, 156, 244], "power8": 49, "power_set": [43, 44], "powersetdrilldownmemo": [43, 156], "powertool": 24, "poyonga": 290, "pp": 49, "ppa": [12, 22, 23, 49], "ppa\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u306f": 12, "practic": [0, 49, 305], "pragma": 156, "pre": [22, 74, 180], "pre_filter_threshold": [43, 44], "preciou": 224, "precis": [0, 41, 47, 50, 51, 52, 95, 111, 225, 250, 262, 264, 274, 282, 308], "preconfigur": [24, 25, 28, 32, 296], "predic": [50, 53], "predict": [161, 254, 264], "prefer": [50, 156], "preferenti": 118, "prefix": [6, 14, 18, 22, 39, 40, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 57, 81, 110, 111, 144, 145, 151, 156, 159, 161, 175, 177, 180, 197, 201, 202, 205, 219, 227, 238, 248, 254, 291, 304, 308], "prefix_length": 41, "prefix_match_s": 51, "prefix_rk_search": [22, 50, 57, 182, 240], "prefix_search": [39, 159], "prepar": [22, 41, 45, 54, 177, 193, 197, 206, 260, 304], "prepend": [44, 177, 224, 225], "present": [42, 56, 111], "preserv": 56, "preset": [3, 12, 23], "press": 17, "pretti": [22, 49, 50, 51, 57, 92], "prevent": [41, 43, 48, 51], "preview": 3, "previou": [41, 43, 44, 47, 48, 49, 51, 52, 54, 138, 167, 180, 231, 232, 233, 234, 235, 244, 245, 305, 306, 310], "previous": 156, "price": [41, 42, 132, 134, 135, 211, 305], "price_sd": 41, "price_sum": 41, "price_with_tax": 42, "primari": [22, 125, 304, 305, 306, 307, 308, 314], "print": [22, 49, 50, 51, 57, 74, 92, 298], "printf": [53, 74], "prioriti": [0, 53, 156, 250], "privileg": [48, 312], "probabl": [42, 106, 159], "problem": [39, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 61, 137, 143, 177, 224, 225, 246, 264, 305], "problrm": 45, "proc": [48, 50, 52, 85, 118, 143, 156, 166], "proc_database_unmap": 118, "proc_object": 143, "proc_select": 156, "proc_thread": 166, "procedur": [18, 27, 31, 41, 43, 44, 47, 48, 51, 106, 201], "process": [0, 17, 18, 22, 23, 27, 28, 31, 32, 33, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 92, 95, 99, 100, 101, 105, 111, 114, 124, 127, 131, 132, 134, 135, 144, 149, 151, 152, 156, 157, 158, 161, 164, 171, 175, 177, 180, 186, 203, 224, 225, 229, 237, 255, 262, 292, 296, 298, 308, 315], "process_id": [45, 53, 175], "processor": 0, "produc": [53, 111], "product": [42, 44, 45, 50, 51, 134, 177, 180], "products_nam": 42, "profil": 311, "program": [1, 27, 47, 48, 52, 56, 112, 175, 177, 180, 181, 225], "progress": [27, 53, 54, 56, 123], "progress_log_level": 45, "project": [0, 3, 12, 13, 19, 21, 27, 42, 49, 225, 296], "prolong": [53, 231, 232, 233, 234, 235, 258, 259], "prolonged_sound_mark": 44, "promot": 48, "prompt": [47, 241, 308], "pronoun": 53, "pronounc": [53, 56, 223, 231, 232, 233, 234, 235, 257, 258, 259], "pronunci": 56, "proonga": 290, "propag": 53, "proper": [49, 95, 156, 311], "properli": [43, 47, 50, 224, 312], "properti": [32, 51, 155, 228], "propos": [156, 180, 252], "proprietari": 56, "protector": 53, "protocol": [0, 1, 22, 47, 49, 50, 51, 100, 174, 175, 176, 177, 178, 241, 289, 290, 292, 296, 304], "provid": [0, 1, 21, 24, 25, 27, 28, 32, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 56, 59, 81, 84, 94, 96, 111, 112, 132, 133, 134, 135, 156, 172, 173, 175, 177, 180, 188, 202, 227, 237, 241, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 291, 292, 296, 302, 306, 308, 312], "proxi": 292, "proxy_cache_path": 177, "proxy_cache_valid": 177, "proxy_pass": 177, "pseudo": [41, 44, 47, 48, 49, 50, 87, 111, 112, 125, 155, 156, 224, 225, 306, 315], "pthread_": 48, "ptr": [37, 85], "pub": 12, "public": 49, "publicli": 56, "publish": [12, 49, 51], "pull": [22, 23], "purchas": 42, "pure": [56, 264], "puropos": 168, "purpos": [43, 48, 51, 91, 202, 308, 310, 312], "push": [12, 17, 18], "push\u3055\u308c\u305f\u30d6\u30e9\u30f3\u30c1\u306egithub": 12, "push\u3057\u3066": 12, "push\u3059\u308b\u3068": 12, "put": [17, 41, 42, 45, 49, 50, 156, 166, 178, 224, 227, 237, 240, 244, 247, 281], "python": [12, 18, 290], "q": 180, "q1": 203, "q2": 203, "q4_k_m": [197, 227], "q_cond": 81, "q_mutex": 81, "qp": [174, 176], "quantal": 47, "quantiti": [41, 42], "quantity_sum": 41, "quartet": 56, "queri": [11, 22, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 68, 74, 91, 92, 100, 107, 111, 119, 124, 131, 132, 134, 144, 145, 151, 159, 175, 176, 178, 179, 180, 181, 182, 183, 186, 191, 192, 193, 194, 195, 196, 203, 205, 206, 210, 223, 225, 226, 240, 241, 243, 244, 245, 246, 247, 250, 251, 252, 253, 260, 261, 262, 264, 274, 275, 276, 278, 290, 292, 296, 298, 299, 301, 304, 305, 306, 307, 308, 310, 311, 312, 313, 315], "query_expand": [22, 42, 43, 44, 48, 51, 57, 92, 144, 145, 151, 243, 314], "query_expans": [39, 48, 243], "query_flag": [42, 44, 47, 51, 52, 202, 224], "query_no_syntax_error": [44, 52, 156], "query_opt": 42, "query_parallel_or": [22, 27, 31, 42, 43, 45, 57, 182, 202], "query_s": 68, "query_str": [42, 48], "query_string0": 203, "query_string1": [42, 203], "query_string2": 42, "query_stringn": [42, 203], "queryexpandertsv": [22, 41, 44, 47, 48, 57, 144, 145, 151, 242], "query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587": 38, "question": [50, 310], "quetzal": 47, "queue": 302, "quickli": [132, 134, 135, 156, 226], "quiet": 298, "quit": [12, 22, 42, 52, 53, 57, 92, 175, 228, 298], "quit\u306f": 147, "quiz": 307, "quorum": 52, "quot": [48, 138, 168, 224, 225, 308], "quotat": [138, 168], "quotient": 225, "r": [18, 42, 47, 74, 176, 180, 181, 240, 244, 272, 275], "rab": [306, 308, 315], "raccoon": 307, "radimrehurek": 41, "radious_or_point": 189, "radix": 225, "rais": [45, 53, 310], "rakutan": 310, "ram": 176, "ran": 250, "rand": [22, 52, 57, 182, 315], "rand_max": 204, "random": 315, "rang": [18, 22, 45, 47, 48, 49, 50, 51, 52, 87, 111, 114, 133, 137, 156, 162, 164, 183, 244, 254, 304, 311], "range_error": 298, "range_filt": [22, 49, 57, 92, 134], "range_index": [50, 134], "ranguba": [44, 49, 52, 91], "rank": [42, 49, 197, 286, 308], "rapidjson": [41, 54, 94, 158, 177, 298, 308, 312], "rare": [42, 48, 50], "raspberri": [276, 278], "rate": [48, 111, 183], "rather": [50, 91, 112, 156, 226, 244, 245, 246, 247, 264, 274, 290], "raw": [21, 48, 51, 125, 141], "rb": [42, 49, 54, 132, 134, 135, 137], "rb\u3092\u8ffd\u52a0": 37, "rc": [43, 45, 52, 84, 100, 124, 168, 228], "rch": 168, "rd": [299, 301], "rdbm": [43, 44, 50, 175, 197], "rdiscount": 12, "re": [18, 31, 39, 44, 45, 49, 50, 124, 125, 133, 167, 197, 223, 237, 244, 281], "reach": [41, 42, 43, 45, 52, 53, 281], "read": [3, 22, 39, 41, 42, 47, 53, 54, 94, 114, 122, 125, 156, 164, 181, 201, 205, 206, 231, 232, 233, 234, 235, 243, 249, 274, 298, 308], "read_only_file_system": 298, "readabl": [40, 49], "readi": [18, 31, 47, 132, 134, 135, 156, 224, 225, 244], "readm": [44, 48, 227], "real": [0, 42, 44, 53, 54, 58, 81, 134, 156, 158, 205, 206, 281, 282], "real_nam": [58, 115, 116, 117], "realli": [41, 43, 44, 132, 134, 135, 156, 224, 225, 314], "realloc": [52, 54], "realtim": [159, 253], "reason": [31, 43, 47, 156, 161, 173, 225, 244, 250, 264, 292, 296, 303, 306], "rebuild": [42, 43, 44, 45, 50, 52, 53, 54], "recal": [0, 223, 262, 264, 274], "receiv": [0, 17, 45, 125, 175, 177, 180, 181, 225, 295, 298], "recent": [45, 51, 107, 173], "recogn": [0, 42], "recommend": [6, 8, 23, 28, 31, 32, 33, 41, 42, 43, 44, 45, 49, 50, 51, 52, 54, 58, 95, 124, 156, 177, 180, 196, 224, 225, 244, 262, 264, 281, 290, 292, 296, 308, 312], "reconstruct": [42, 49], "record": [0, 22, 34, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 68, 90, 91, 96, 104, 110, 121, 122, 123, 125, 132, 134, 135, 137, 141, 159, 161, 170, 183, 186, 188, 191, 192, 193, 195, 196, 197, 201, 202, 203, 205, 206, 210, 223, 224, 225, 226, 228, 239, 244, 245, 246, 247, 248, 253, 276, 278, 282, 286, 304, 305, 306, 307, 310, 311, 312, 313, 314, 315], "record1": 137, "record2": 137, "record3": 137, "record_1_column_1": [134, 156], "record_1_column_2": [134, 156], "record_1_column_n": [134, 156], "record_2_column_1": [134, 156], "record_2_column_2": [134, 156], "record_2_column_n": [134, 156], "record_id": 50, "record_n_column_1": [134, 156], "record_n_column_2": [134, 156], "record_n_column_n": [134, 156], "record_numb": [22, 51, 52, 57, 135, 283], "recov": [41, 42, 43, 44, 45, 50, 53, 106], "recover": 173, "recreat": [50, 51, 53, 152, 173], "rect": [47, 188, 189], "rectangl": [0, 39, 47, 189, 239], "recurs": [6, 7, 8, 12, 13, 18, 41, 44, 54, 58, 127, 156, 173, 177, 243], "recycl": [41, 49], "red": 31, "redcloth": 12, "redhat": 39, "redmin": 49, "redmine_full_text_search": 54, "reduc": [0, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 104, 111, 118, 125, 133, 156, 173, 186, 195, 240, 244, 251, 254, 275, 292, 296, 314], "redund": [52, 237], "refer": [0, 22, 39, 41, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 58, 105, 106, 121, 123, 124, 125, 137, 149, 150, 155, 156, 180, 186, 195, 197, 210, 226, 244, 282, 304, 306, 310, 311], "referec": 41, "referenc": [43, 47, 48, 52, 111, 121, 124, 137, 149, 156, 161, 163, 306], "reference_acquir": [22, 41, 42, 44, 57, 92, 150], "reference_column": [41, 49, 50, 53, 156, 163], "reference_count": [43, 44, 94, 158, 177, 298, 308, 312], "reference_releas": [22, 41, 57, 92, 149], "reference_vector_column": 48, "referenced_table_nam": 124, "referencedbycolumn": 163, "referencedbyt": 163, "referencedt": 163, "referencet": 163, "refin": [0, 48], "refresh": 307, "regard": [44, 45, 48, 53, 56, 178, 224, 231, 232, 233, 234, 235, 257, 258, 259], "regardless": [50, 53, 111], "regener": 31, "regexp": [49, 50, 52, 202], "regexplexicon": [152, 244], "region": [239, 315], "regist": [0, 22, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 57, 58, 85, 92, 103, 122, 132, 133, 134, 135, 136, 137, 138, 144, 149, 154, 156, 168, 197, 198, 205, 206, 208, 209, 211, 212, 219, 221, 222, 224, 225, 226, 229, 240, 243, 250, 251, 252, 254, 255, 278, 305, 311, 315], "regress": [41, 45, 48, 49, 50], "regular": [22, 42, 43, 50, 51, 53, 54, 57, 177, 202, 205, 272, 276, 277, 305, 308], "regular_express": 244, "rehash": [45, 54], "reindex": [22, 50, 51, 52, 53, 57, 92], "rel": [39, 41, 49, 111, 138, 156, 161], "relat": [0, 2, 3, 13, 21, 22, 24, 25, 28, 31, 32, 39, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 54, 81, 90, 124, 149, 173, 175, 197, 223, 228, 244, 252, 253, 254, 281, 283, 296, 303, 304], "relationship": [22, 47, 111, 114, 164, 304, 305, 310, 311], "relax": 281, "releas": [6, 7, 8, 24, 25, 27, 28, 35, 55, 84, 106, 118, 126, 128, 149, 150, 188, 226], "relev": [0, 56, 308], "reload": [131, 243], "remain": [42, 43, 48, 51, 52, 53, 54, 118, 123, 173, 228, 244], "remaind": 225, "rememb": 156, "remot": [12, 22, 41, 175, 298, 304], "remote_addr": 177, "remote_us": 177, "remov": [6, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 105, 110, 111, 121, 143, 149, 151, 156, 165, 173, 175, 177, 197, 231, 234, 235, 244, 261, 305], "remove_blank": [44, 53, 54, 138], "remove_blank_forc": 44, "remove_column": 42, "remove_new_lin": 42, "remove_symbol": [42, 43], "remove_tag": [43, 44], "remove_tokenized_delimit": 138, "renam": [39, 44, 47, 48, 50, 52, 56, 58, 110, 114, 131, 164, 254, 308], "reopen": [39, 51, 131, 152], "reorder": 41, "reorgan": 111, "rep_gqpt": 176, "rep_gqtp": 176, "rep_http": 176, "rep_loc": 176, "repair": [40, 42], "repeat": [0, 17, 41, 42, 54], "repeatedli": [43, 44, 111], "repl": 45, "replac": [17, 21, 45, 49, 50, 53, 58, 111, 175, 179, 181, 225, 244, 314], "replai": 177, "repli": [310, 311], "replic": [45, 245], "replied_to": 311, "replied_us": 311, "replies2": 310, "replies_cont": 310, "reply_to": 310, "repo": [54, 227], "repoforg": 47, "report": [3, 22, 31, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 85, 96, 111, 143, 156, 173, 302], "report_source_loc": [44, 45, 53], "report_source_offset": [42, 43, 44, 45], "repositori": [3, 4, 22, 32, 39, 47, 48, 50, 54], "repres": [43, 44, 45, 68, 111, 142, 175, 223, 225, 244, 305, 307, 314], "represent": [17, 41, 45, 52, 68, 91], "reproduc": [42, 43, 48, 52, 54], "repurpos": 56, "request": [22, 41, 45, 48, 49, 50, 51, 52, 53, 54, 57, 58, 92, 94, 122, 125, 134, 153, 156, 157, 158, 171, 175, 178, 180, 225, 228, 250, 251, 253, 292, 295, 298, 312], "request_cancel": [22, 42, 43, 44, 49, 51, 52, 57, 92, 98, 99], "request_id": [50, 51, 98, 153], "request_tim": [54, 177], "request_timeout": [51, 99], "request\u3092\u9001\u308a\u307e\u3057\u305f": 12, "request\u3092\u9001\u308a\u307e\u3059": 12, "requir": [0, 18, 21, 27, 31, 39, 41, 42, 43, 44, 45, 47, 48, 50, 52, 54, 56, 96, 131, 144, 145, 151, 154, 173, 177, 181, 186, 191, 192, 196, 198, 201, 208, 210, 221, 224, 225, 226, 244, 245, 248, 250, 252, 274, 278, 286, 291, 292, 305], "res_column": 176, "res_tabl": 176, "rescord": 223, "reset": [41, 50], "resiz": 85, "resolut": [22, 41, 304, 311], "resolv": [22, 39, 41, 42, 43, 45, 47, 51, 52, 57, 91, 111, 120, 143, 161, 228, 245, 246, 247, 248], "resourc": [42, 43, 45, 49, 52, 56, 84, 94, 99, 156, 197, 226], "resource_busi": 298, "resource_deadlock_avoid": 298, "resource_temporarily_unavail": 298, "resours": 61, "respect": [43, 47, 305, 311, 315], "responc": 44, "respons": [0, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 54, 61, 99, 100, 110, 125, 132, 134, 135, 153, 156, 158, 177, 178, 292, 298], "rest": [52, 74, 85, 134, 243], "restart": [42, 43, 50, 51, 52, 144, 151, 175, 177, 243, 281], "restaur": 0, "restor": [41, 51, 106], "restrict": [47, 48, 134, 292, 312], "restructuredtext": 18, "result": [0, 11, 18, 22, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 74, 94, 95, 97, 122, 123, 132, 134, 135, 138, 153, 154, 156, 173, 180, 181, 186, 188, 195, 202, 203, 205, 206, 210, 225, 230, 240, 241, 243, 244, 250, 251, 253, 254, 265, 266, 267, 268, 276, 304, 305, 307, 310, 311, 314, 315], "result_cod": 74, "result_set": [41, 42, 44], "result_too_larg": 298, "result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061": 11, "retriev": [0, 111, 142, 156, 180, 225], "retry_max": 298, "return": [22, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 61, 68, 74, 81, 84, 85, 92, 95, 177, 224, 225, 228, 250, 251, 252, 253, 292, 298, 302, 306, 308, 311, 314, 315], "return_cod": [42, 43, 44, 53, 95, 96, 125], "return_code_for_1st_record": 125, "return_code_for_2nd_record": 125, "reus": [50, 53, 141, 156, 175, 254], "reusabl": 45, "reveal": 0, "revers": [12, 22, 42, 292, 304, 308, 311], "revert": 51, "review": 18, "revis": 51, "rewrit": [50, 55], "rf": [12, 177], "rhel": [31, 44], "rid": [71, 74], "right": [42, 43, 49, 50, 224], "right_hand_sid": 51, "ring_buff": 180, "ringtail": 48, "risk": [49, 173], "riski": 52, "rk": [22, 50, 57, 201, 238], "rl": [262, 264, 275], "rld": 275, "rlimit_nofil": [48, 228], "rm": [12, 177], "ro": [156, 168], "role": [0, 111, 202, 203], "romaji": [53, 201, 231, 232, 233, 234, 235, 250, 257, 258, 259], "romanian": [53, 260], "room": [22, 50], "roon": [44, 208], "roonga": [219, 224, 225, 252], "root": [48, 50, 175, 177, 178, 312], "root\u306b\u5909\u66f4": 37, "root\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5024\u306b\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305f\u5834\u5408": 175, "rose": 305, "rotat": [45, 50, 175], "roughli": 305, "round": [39, 211], "row": [0, 42, 156, 205, 206], "rpm": [12, 24, 25, 39, 40, 43, 44, 47, 48, 49, 50, 51, 52], "rroonga": [21, 41, 42, 43, 44, 45, 48, 49, 50, 61, 156, 191, 192, 193, 196, 202, 203, 210, 221, 223, 224, 225, 245, 310], "rroonga\u7b49\u95a2\u9023\u30d7\u30ed\u30c0\u30af\u30c8\u306e\u30ea\u30ea\u30fc\u30b9\u306b\u3082\u4f7f\u7528\u3057\u307e\u3059": 12, "rst": 18, "rst\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c": 12, "rst\u306e\u5185\u5bb9": 12, "rtluserthreadstart": 166, "rubi": [0, 6, 8, 12, 21, 41, 42, 43, 47, 49, 50, 55, 91, 154, 156, 191, 192, 193, 208, 221, 223, 244, 245, 290], "ruby19": 47, "ruby_ev": [22, 27, 42, 48, 52, 57, 92], "ruby_load": [42, 48], "ruby_script": 154, "rubygem": 47, "rubyinstal": 8, "ruby\u306erake\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3088\u308a\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059": 12, "rule": [22, 49, 53, 57, 132, 134, 135, 156, 168, 292], "run": [3, 14, 17, 21, 22, 23, 29, 31, 42, 45, 49, 50, 52, 56, 98, 114, 124, 125, 134, 152, 153, 157, 163, 164, 166, 175, 177, 178, 180, 181, 243, 281, 289, 291, 292, 295], "runtim": [33, 41, 42, 50, 54], "rurema": 49, "russian": [53, 260], "ryo": [50, 52], "ryoji": 49, "ryunosuk": 51, "s10": 49, "s3ki\u3055\u3093": 37, "s3ki\u3055\u3093\u304c\u5831\u544a": 37, "s_id1": 125, "s_id2": 125, "sa": [42, 159, 251], "sae": [159, 251], "saer": [159, 251], "saerc": [159, 251], "saerch": [159, 251], "safe": [45, 52, 111, 149], "safeti": 51, "sagittariu": 41, "sai": [111, 219, 224, 225, 308, 310], "sako": 50, "salamand": [48, 49], "sale": 211, "same": [18, 31, 41, 42, 43, 44, 45, 48, 50, 51, 52, 53, 54, 56, 68, 90, 91, 94, 95, 96, 98, 110, 111, 125, 131, 132, 134, 135, 137, 144, 149, 150, 151, 152, 153, 156, 175, 177, 180, 202, 203, 208, 224, 225, 229, 231, 232, 233, 234, 235, 244, 245, 246, 247, 248, 251, 257, 258, 259, 272, 275, 286, 290, 292, 305, 308, 310, 315], "sampl": [41, 43, 44, 47, 111, 121, 122, 132, 134, 135, 136, 137, 144, 145, 151, 156, 176, 177, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 243, 244, 245, 246, 247, 276, 278, 286, 292, 310], "san": 188, "sanz": [42, 43, 54], "satisfi": [41, 43, 44, 48, 50, 51, 125, 137, 163, 224, 225, 237], "sato": [45, 50, 51], "satoh": 39, "satoshi": [49, 52], "satouyuzh": 53, "saturdai": 212, "sauci": [48, 49], "save": [12, 49, 111, 180, 303, 310], "saw": 56, "scalar": [42, 43, 50, 51, 52, 53, 58, 87, 91, 112, 134, 141, 155, 156], "scale": [0, 56, 292], "scan": [14, 50, 191, 192, 193, 201, 224, 225], "scan_build": 14, "scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059": 14, "schema": [22, 41, 42, 43, 44, 50, 52, 53, 57, 58, 92, 96, 110, 121, 122, 125, 132, 134, 135, 137, 142, 149, 150, 156, 163, 179, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 237, 244, 245, 246, 247, 248, 251, 276, 278, 281, 286, 310], "scope": [50, 54, 244], "score": [41, 42, 47, 50, 51, 52, 53, 54, 74, 91, 111, 114, 159, 164, 170, 180, 202, 223, 245, 246, 247, 286, 308, 310, 315], "score1": 11, "score2": 11, "score_1": 180, "score_2": 180, "score_adjust_express": 156, "score_adjust_expression1": 156, "score_adjust_expression2": 156, "score_column": [41, 42], "score_funct": 245, "score_function1": 245, "score_function2": 245, "score_function3": 245, "score_mean": 41, "score_quant": 42, "score_valu": 50, "scorer": [22, 41, 50, 53, 57, 119, 124, 182, 188, 198, 223, 225, 246, 247, 304, 307], "scorer_tf_at_most": [50, 53, 245, 247], "scorer_tf_idf": [42, 245], "scorer\u306f": 156, "scorpio": 41, "scr": 176, "script": [21, 22, 31, 41, 43, 47, 48, 49, 50, 51, 52, 53, 54, 57, 68, 111, 112, 125, 141, 142, 155, 156, 176, 186, 210, 223, 224, 244], "script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059": 176, "script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [185, 189, 190, 199, 204], "scritp": 42, "scr\u3067\u3059": 176, "scr\u306e\u4e2d\u8eab\u304c": 176, "se": [56, 168, 250], "sea": [168, 250], "sear": 250, "searc": 250, "search": [22, 24, 25, 27, 28, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 68, 84, 87, 110, 112, 123, 159, 161, 168, 175, 183, 186, 191, 192, 193, 195, 196, 197, 201, 202, 203, 205, 206, 210, 219, 223, 226, 227, 229, 231, 235, 238, 243, 244, 245, 246, 247, 248, 252, 254, 261, 262, 264, 272, 273, 274, 275, 276, 277, 278, 292, 296, 304, 305, 306], "search_result": 156, "searchabl": [50, 53, 226], "searchu0000http": 273, "sebastian": 49, "sec": 173, "second": [41, 42, 43, 44, 45, 95, 96, 99, 112, 124, 149, 153, 156, 158, 173, 175, 180, 188, 195, 205, 219, 224, 225, 228, 245, 282, 292, 305, 308, 310, 311, 315], "secret": 12, "secsion": 95, "section": [3, 17, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 41, 42, 48, 49, 50, 51, 52, 53, 56, 58, 59, 71, 85, 90, 91, 92, 94, 107, 110, 111, 112, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 170, 172, 173, 175, 177, 180, 182, 188, 193, 224, 227, 238, 243, 244, 245, 246, 247, 249, 250, 251, 253, 281, 283, 298, 302, 306, 310, 311], "secur": [22, 42, 43, 49, 50, 52, 53, 54, 281, 304], "sed": [39, 47, 50], "see": [0, 1, 17, 18, 21, 22, 24, 25, 26, 27, 28, 30, 31, 32, 33, 42, 43, 44, 45, 47, 48, 49, 50, 54, 56, 57, 85, 87, 91, 104, 106, 110, 114, 118, 123, 124, 127, 132, 133, 134, 135, 137, 140, 141, 143, 149, 150, 152, 157, 158, 160, 163, 164, 166, 167, 170, 173, 175, 177, 188, 194, 195, 197, 219, 224, 225, 227, 228, 244, 250, 257, 260, 264, 281, 282, 283, 290, 293, 294, 296, 303, 305, 306, 307, 308, 311, 315], "seem": [18, 42], "segment": [47, 49, 51, 54, 108, 141], "segv": [42, 48], "seki": 53, "select": [22, 37, 38, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 61, 68, 91, 92, 93, 94, 96, 98, 99, 107, 110, 111, 114, 121, 124, 132, 134, 148, 149, 150, 153, 158, 164, 170, 175, 176, 177, 182, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 226, 228, 229, 243, 244, 245, 246, 247, 253, 260, 261, 275, 276, 278, 283, 286, 290, 299, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "select_al": 52, "select_opt": 225, "selector": [41, 47, 50, 51, 52, 111, 201, 202, 203], "select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059": 176, "select\u306e\u51fa\u529b\u306b\u4e0d\u6b63\u306a\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3055\u308c\u305f\u6642\u306bsegv\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 36, "select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059": 93, "select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0": 37, "select\u30b3\u30de\u30f3\u30c9": 36, "self": 176, "semant": 45, "semi": [39, 53, 161, 231, 232, 233, 234, 235, 258, 259], "sen": 56, "sen_index_delimit": 55, "sen_index_norm": 55, "sen_sel_term_extract": 55, "senario": 52, "senboku": 48, "send": [3, 19, 41, 43, 45, 54, 122, 153, 178, 180, 181, 290, 298], "sender": 181, "senna": [22, 35, 43, 44, 132, 134, 135, 156, 224, 225, 243], "senna\u306e\u30b7\u30b9\u30c6\u30e0\u3092\u3059\u3079\u3066\u79fb\u884c\u3057\u307e\u3057\u305f": 156, "sens": [56, 175, 177], "sensit": 264, "sent": [42, 43, 44, 292], "sentenc": [41, 42, 43, 205, 224, 225], "sentens": 50, "separ": [27, 31, 45, 47, 50, 53, 64, 111, 112, 125, 138, 141, 142, 156, 159, 161, 165, 168, 175, 177, 180, 202, 224, 225, 231, 232, 233, 234, 235, 241, 243, 258, 259, 262, 264, 273, 279, 280, 298, 306, 308], "sequenc": [39, 42, 44, 48, 96, 98, 125, 156, 159, 180, 224, 225, 228, 250, 251, 253, 298], "sequence_dataset": 179, "sequence_queri": [179, 180], "sequenti": [41, 42, 45, 49, 50, 51, 52, 53, 54, 183, 195, 196, 201, 203, 224, 225, 226, 244, 277], "sequential_class_tag_mod": 44, "serach": 251, "serch": [159, 251], "sergei": [49, 50, 52], "seri": [35, 74, 308], "serial": [94, 110, 156], "serihiro": 47, "seriou": [47, 49], "serv": [12, 49, 305], "server": [1, 21, 22, 23, 24, 25, 28, 32, 33, 39, 40, 41, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 56, 57, 81, 94, 105, 122, 137, 153, 156, 157, 167, 172, 177, 180, 195, 196, 219, 241, 290, 291, 292, 293, 295, 307, 308], "servic": [0, 21, 29, 47, 48, 49, 50, 56, 157, 251, 281, 296], "session": [180, 290, 298], "set": [24, 25, 27, 28, 32, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 61, 74, 81, 87, 91, 102, 104, 105, 107, 111, 116, 117, 124, 125, 129, 133, 134, 137, 156, 157, 158, 165, 167, 171, 180, 183, 184, 196, 202, 203, 223, 225, 250, 275, 281, 292, 296, 313], "set_host": 176, "set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9": 176, "set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408": 176, "set_norm": 45, "set_port": 176, "set_token_filt": 49, "settlement": 42, "settlements_purchas": 42, "setup": [17, 18, 21, 27, 48, 51], "seven": 308, "severalfold": 41, "sh": [6, 12, 14, 17, 18, 21, 27, 47, 54], "sha256sum": 12, "shape": 239, "sharabl": 22, "shard": [22, 27, 41, 43, 44, 50, 52, 54, 57, 132, 133, 134, 135, 136, 137, 254], "shard_kei": 41, "shard_name_1": 136, "shard_name_2": 136, "shard_name_n": 136, "share": [0, 2, 31, 39, 45, 47, 48, 61, 132, 134, 135, 137, 175, 177, 197, 227, 307, 310], "shared_kei": 134, "shark": 44, "shark_nam": 44, "shell": [31, 50, 175, 224, 244], "shibanao4870": [42, 43], "shibuya\u3055\u3093": 37, "shibuya\u3055\u3093\u304c\u5831\u544a": 37, "shidara": 39, "shift": 275, "shift_ji": [31, 277], "shimada": 47, "shimada\u3055\u3093": 37, "shimada\u3055\u3093\u304c\u5831\u544a": 37, "shimadzu": 54, "shimamura": [50, 53, 54], "shimoda": 37, "shimomura": 47, "shinjyuku": 315, "shinoda": [43, 44, 49, 50, 51], "shinonon": [43, 44], "shinya": 47, "ship": 42, "shira": 45, "shiro615": 54, "shm": 177, "sho": [48, 49, 51], "shoe": 42, "shop": [42, 198, 226, 299], "short": [28, 41, 42, 43, 52, 91, 149, 156, 177], "shortcut": 42, "shorten": [41, 54], "shorter": [43, 44, 50, 226], "shortli": 56, "shorttext": [41, 42, 43, 44, 45, 49, 51, 52, 53, 58, 74, 90, 91, 95, 96, 110, 111, 112, 114, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 141, 142, 143, 149, 150, 152, 155, 156, 159, 161, 162, 163, 164, 165, 170, 175, 176, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 236, 237, 240, 244, 245, 246, 247, 250, 251, 253, 254, 255, 260, 261, 275, 276, 278, 281, 286, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "shorttext\u306e\u30d9\u30af\u30bf\u30fc\u3092\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u4f7f\u7528\u3057\u305f\u3044\u5834\u5408\u306b\u306f": 282, "shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0": 37, "should": [5, 6, 8, 18, 21, 23, 27, 28, 31, 32, 33, 42, 43, 44, 45, 47, 50, 51, 52, 53, 56, 68, 85, 91, 98, 111, 125, 133, 134, 137, 143, 149, 152, 156, 161, 163, 170, 173, 180, 224, 225, 228, 230, 243, 251, 298], "shouldn": [6, 49], "shourtend": 156, "show": [0, 31, 36, 39, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 58, 64, 94, 95, 96, 100, 110, 111, 121, 125, 126, 132, 134, 135, 137, 138, 141, 142, 149, 150, 155, 156, 183, 184, 186, 188, 191, 192, 193, 194, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 224, 225, 228, 239, 241, 244, 245, 246, 247, 264, 275, 286, 295, 298, 305, 306, 307, 308, 311, 312, 315], "showen": 100, "shown": [43, 45, 74, 135, 156, 225, 308], "shuffl": [111, 141], "shuhei": 49, "shutdown": [22, 41, 51, 52, 54, 57, 92, 124, 175, 177, 244, 292, 298], "shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": 37, "sh\u306e\u307f\u306a\u3089\u305a": 14, "sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059": 14, "sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059": 14, "si": 39, "sid": [12, 39, 49, 74, 108], "side": [0, 42, 43, 45, 47, 50, 51, 99, 156], "sigabrt": 44, "sigcont": 48, "sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc": 39, "sign": [12, 42, 47, 100, 111, 231, 232, 233, 234, 235, 258, 259, 282, 305], "signal": 49, "signific": 45, "significantli": 0, "sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 12, "sigstop": 48, "sigusr1": 39, "silent": [21, 51], "simd": 45, "simdjson": [45, 94, 158, 177, 298, 308, 312], "simil": [54, 225], "similar": [42, 43, 44, 45, 47, 48, 49, 52, 53, 54, 91, 96, 134, 141, 156, 159, 175, 186, 195, 197, 202, 203, 205, 219, 223, 230, 265, 266, 267, 268, 269, 270, 271, 273, 279, 280, 286, 306, 310, 312], "similar_search": [47, 159], "similarli": 43, "simpl": [49, 50, 112, 114, 132, 138, 139, 158, 164, 165, 168, 169, 170, 177, 186, 188, 194, 195, 196, 198, 201, 202, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 291, 292, 296, 306], "simplest": [0, 31, 98, 245], "simpli": [42, 54, 197, 247, 313], "simplifi": [48, 196], "simultan": [45, 52, 56], "sinc": [41, 42, 43, 44, 45, 47, 50, 51, 52, 54, 56, 85, 95, 96, 109, 111, 124, 132, 134, 135, 151, 156, 158, 161, 170, 175, 177, 180, 188, 191, 192, 193, 225, 226, 228, 232, 233, 234, 235, 236, 244, 258, 259, 282, 284, 296, 305, 311], "singl": [41, 45, 48, 49, 91, 111, 138, 156, 167, 168, 237, 282, 308], "sister": 111, "site": [49, 122, 126, 127, 128, 152, 156, 223, 305, 306, 307, 308, 310, 312, 315], "site_titl": 152, "sitecountri": [306, 312], "sitedomain": [306, 312], "situat": [45, 54, 56, 156, 302], "six": [183, 228, 308], "size": [23, 28, 32, 33, 34, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 68, 74, 81, 85, 98, 104, 108, 111, 112, 115, 116, 117, 123, 124, 125, 141, 142, 155, 156, 158, 161, 171, 175, 177, 205, 206, 221, 248, 254, 281, 303], "size_of_one_value_in_byt": 155, "size_t": 41, "sizeof": [50, 68], "sji": [31, 55, 175], "skip": [48, 49, 50, 51, 124, 308], "skip_leading_spac": 205, "slash": 225, "sleepi": 226, "slice": [41, 42, 43, 44, 51, 52, 53, 54], "slip": 45, "slow": [41, 42, 43, 44, 50, 54, 94, 111, 156, 161, 175, 177, 224, 225, 244, 254], "slower": [41, 111, 175, 177, 188, 245, 247, 306], "slowlog": 43, "small": [34, 41, 44, 45, 48, 49, 50, 51, 53, 125, 134, 141, 149, 161, 183, 196, 224, 225, 231, 232, 233, 234, 235, 254, 258, 259, 262, 311], "smaller": [0, 41, 42, 44, 52, 91, 111, 161, 188, 226, 228], "smith": 51, "snake_cas": 50, "sneaker": 42, "snippet": [22, 41, 42, 43, 44, 47, 48, 51, 55, 57, 182, 206], "snippet1": [205, 206], "snippet2": [205, 206], "snippet3": 206, "snippet_html": [22, 43, 44, 47, 48, 49, 50, 51, 52, 54, 57, 134, 156, 182, 205], "so": [7, 8, 13, 17, 20, 26, 27, 31, 41, 42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 58, 91, 94, 100, 102, 105, 106, 111, 112, 123, 124, 125, 132, 134, 135, 137, 140, 141, 142, 143, 144, 145, 151, 155, 156, 158, 161, 168, 175, 177, 178, 180, 195, 202, 205, 219, 224, 225, 226, 228, 229, 239, 244, 245, 246, 247, 250, 251, 253, 254, 257, 260, 274, 277, 281, 303, 305, 308, 309, 310, 311, 313], "soccer": 307, "social": 307, "socket": [22, 47, 122, 300], "socket_is_already_connect": 298, "socket_is_already_shutdown": 298, "socket_is_not_connect": 298, "socket_not_initi": 298, "socr": 42, "soerr": 302, "soft": 281, "softwar": [3, 7, 21, 22, 23, 32, 45, 50, 56], "soichiro": 51, "solari": [7, 8, 39, 47, 50], "solr": 225, "solut": [22, 264, 300, 306, 310], "solv": [42, 51, 52, 245, 246, 247, 305], "some": [0, 1, 2, 8, 17, 27, 31, 34, 41, 42, 43, 44, 47, 48, 49, 50, 51, 53, 54, 58, 68, 84, 91, 95, 98, 111, 125, 132, 134, 135, 137, 141, 142, 153, 156, 157, 161, 163, 168, 171, 173, 179, 180, 182, 183, 202, 203, 224, 225, 227, 228, 237, 244, 245, 248, 255, 262, 281, 282], "some_condit": 53, "someon": 311, "someth": [45, 49, 56, 123], "sometim": [41, 42, 43, 49, 51, 275], "song": [42, 43, 54], "soon": [56, 99, 239, 248, 292], "sooner": 54, "sort": [0, 12, 22, 39, 41, 42, 45, 48, 50, 51, 52, 54, 122, 132, 134, 135, 136, 156, 159, 180, 239, 254, 286, 304, 307], "sort_bi": 195, "sort_hash_t": 52, "sort_kei": [41, 42, 43, 45, 51, 52, 53, 54, 196, 197, 198, 202, 245, 246, 247, 286, 307, 308, 315], "sortbi": [39, 42, 48, 51, 119, 159], "sound": [44, 53, 230, 231, 232, 233, 234, 235, 251, 258, 259], "soundkitchen": [39, 47], "sourc": [6, 7, 8, 12, 16, 17, 18, 21, 22, 23, 39, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 95, 105, 110, 114, 123, 124, 141, 149, 156, 160, 173, 197, 302, 307, 308, 310, 311], "source_1": [142, 155], "source_2": [142, 155], "source_column_nam": 50, "source_file_nam": 95, "source_n": [142, 155], "source_offset": 53, "source_tag": 43, "sourceforg": [2, 12, 50], "source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0": 12, "southern": 47, "sozaki": 52, "space": [0, 39, 41, 42, 43, 44, 48, 50, 51, 52, 53, 54, 85, 91, 104, 111, 138, 141, 156, 168, 205, 224, 225, 244, 253, 262, 264, 265, 266, 267, 268, 272, 273, 275, 279, 280, 302, 308], "spain": 188, "spammer": [245, 246, 247], "span": [41, 43, 44, 45, 54, 191, 192, 193, 194, 206, 275], "spanish": [53, 260], "spars": [50, 52], "speak": 310, "speaker": [2, 18], "spec": [39, 47, 48, 52, 156], "special": [17, 31, 41, 48, 68, 95, 100, 111, 125, 156, 168, 191, 192, 193, 206, 224, 231, 235, 244, 298, 308], "specif": [0, 22, 31, 41, 42, 43, 44, 45, 47, 48, 49, 51, 52, 53, 54, 91, 122, 132, 143, 154, 156, 159, 183, 205, 206, 225, 230, 231, 232, 233, 234, 235, 240, 257, 274, 276, 277, 304, 305, 306, 307], "specifi": [0, 6, 8, 17, 22, 27, 30, 31, 34, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 74, 85, 87, 91, 95, 96, 97, 99, 107, 110, 111, 112, 114, 115, 116, 117, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 161, 163, 164, 165, 167, 168, 170, 173, 175, 177, 178, 179, 180, 181, 183, 184, 186, 191, 192, 193, 194, 195, 196, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 219, 221, 223, 224, 225, 231, 232, 233, 234, 235, 237, 239, 241, 244, 245, 246, 247, 254, 257, 258, 259, 260, 261, 272, 274, 275, 276, 278, 286, 292, 295, 298, 303, 304, 305, 306, 307, 310, 311, 312, 313, 315], "specifii": 44, "speech": [0, 53, 231, 232, 233, 234, 235, 274], "speed": [39, 41, 43, 54, 56, 252, 254], "spefici": 184, "spell": [45, 243, 314], "spend": [224, 225], "sphere": [56, 189], "spheric": 188, "sphinx": [3, 12, 15, 16, 18, 49, 50, 51], "sphinx\u306f\u5e38\u306b\u6700\u65b0\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u4f7f\u3046\u4e8b\u3092\u63a8\u5968\u3057\u307e\u3059": 12, "sphr": [188, 189], "spil": 50, "split": [39, 50, 51, 104, 225, 254, 272], "spokesman": 3, "sport": 307, "spreadsheet": 243, "sql": [42, 44, 156, 245, 306], "squar": 188, "squeez": 48, "squeeze\u4ee5\u964d\u306edebian\u3084karmic\u4ee5\u964d\u306euubntu\u3067\u306f\u4ee5\u4e0b\u306e\u7528\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059": 14, "src": [41, 166, 305], "srpm": 52, "ss": [42, 225, 228, 244], "ssd": [41, 111, 161], "ssh": 12, "ssssss": 228, "st": [168, 225, 277], "stabil": [43, 44], "stabl": [42, 49, 51, 53, 93, 96, 156, 159, 197, 227], "stack": [43, 44, 48, 51], "stack_over_flow": 298, "stage": [41, 42, 43, 44, 45, 49, 51, 52, 53, 54, 197, 286], "stamp": [43, 228, 250, 251, 253], "stand": [50, 290], "standalon": [41, 181], "standard": [27, 31, 41, 42, 43, 50, 122, 125, 177, 282, 298, 308], "standbi": [45, 123], "stargazi": 278, "start": [17, 39, 41, 42, 43, 44, 45, 47, 48, 49, 51, 52, 85, 95, 96, 105, 114, 125, 132, 134, 135, 156, 158, 164, 180, 188, 208, 209, 224, 225, 226, 228, 240, 241, 243, 250, 252, 264, 292, 302, 308, 312], "start_tim": [41, 42, 43, 44, 50, 94, 96, 97, 158, 177, 298, 308, 312], "starttim": [41, 50, 94, 97, 158, 177, 241, 298, 308, 312], "startup": [42, 47, 166], "state": [41, 43, 45, 47, 53, 121, 188, 290, 298], "stateless": 53, "statement": 225, "static": [39, 41, 43, 44, 49, 50, 51, 52, 81, 178, 308], "station": [198, 239, 311, 315], "statist": [52, 54, 141], "statu": [22, 28, 32, 41, 43, 44, 47, 48, 49, 50, 51, 54, 57, 74, 92, 94, 97, 100, 105, 121, 149, 156, 173, 174, 175, 176, 177, 178, 188, 241, 290, 292, 308, 312], "status": [42, 100, 298], "status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b": 176, "status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0": 37, "status\u30b3\u30de\u30f3\u30c9": 36, "stderr": [42, 43], "stdin": 40, "stdout": [42, 43], "stem": [28, 32, 42, 43, 49, 52, 53, 260], "steme": 260, "steming_algorithm": 260, "step": [17, 18, 31, 42, 43, 51, 54, 110, 156, 244, 253, 305, 308], "steve": 51, "sticker": [41, 42, 43, 156], "still": [16, 17, 41, 42, 45, 46, 48, 49, 52, 96, 114, 131, 134, 149, 153, 156, 164, 173, 197, 227], "stock": [53, 56], "stop": [39, 42, 44, 47, 48, 49, 50, 51, 52, 53, 54, 58, 81, 99, 106, 114, 123, 134, 156, 157, 164, 175, 177, 245, 246, 247, 261, 309], "stop_word": [42, 45, 122, 165, 255, 261], "stopword": [43, 45], "storag": [22, 41, 42, 43, 44, 48, 101, 111, 161, 191, 192, 193], "storategi": 186, "store": [22, 34, 41, 42, 43, 45, 47, 48, 50, 53, 54, 57, 58, 61, 68, 74, 90, 91, 104, 110, 111, 112, 124, 132, 134, 135, 141, 155, 156, 181, 188, 201, 225, 229, 239, 244, 253, 254, 282, 298, 305, 306, 307, 308, 310, 311, 314, 315], "store_a": 41, "store_b": 41, "stori": 56, "str": 68, "str_length": 85, "str_ptr": 85, "str_size": 68, "straddl": 41, "strang": 244, "strategi": 156, "stream": [27, 31, 41, 44, 49, 51, 96, 125, 178], "strengthen": 56, "strerror": 49, "stretch": 41, "strftime": 53, "strict": [49, 50], "strictli": 186, "stridden": 41, "string": [11, 22, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 68, 74, 85, 90, 91, 95, 96, 98, 111, 112, 115, 116, 117, 129, 132, 134, 135, 142, 155, 156, 161, 171, 180, 184, 186, 188, 191, 192, 193, 195, 201, 203, 205, 206, 207, 208, 209, 223, 224, 231, 234, 235, 237, 244, 257, 258, 259, 275, 282, 304, 306, 307, 308, 310, 311, 314], "string1": 185, "string1\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u3068string2\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u306e\u9593\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u6c42\u3081\u307e\u3059": 185, "string2": 185, "string_length": [22, 51, 57, 132, 134, 135, 156, 182, 195], "string_liter": 49, "string_siz": 68, "string_slic": [22, 42, 43, 57, 182], "string_substr": [22, 42, 51, 57, 182], "string_tokn": 41, "stringifi": 51, "string\u306b": 11, "strip": [43, 44, 194], "strlen": 85, "stronger": [53, 156], "strongli": [23, 28, 32, 33, 56], "struct": 53, "structur": [0, 41, 42, 49, 51, 56, 95, 96, 111, 254, 307], "stub": 49, "studio": [8, 27, 41, 42, 43, 44, 47, 48, 50, 51], "style": [49, 50, 52, 96, 125, 141, 191, 193, 244], "su": 51, "sub": [0, 12, 52, 53, 135, 180, 274], "sub1": [135, 156], "sub_filt": [22, 41, 43, 44, 48, 50, 53, 54, 57, 182, 195, 201], "subclass": [53, 274], "subclass0": 274, "subclass1": 274, "subclass2": 274, "subexp": 208, "subject": [41, 48], "sublim": 27, "submiss": [159, 250, 251, 253], "submit": [3, 22, 48, 159, 180, 250, 251, 253], "subrec": 74, "subrecord": 48, "subscript": [231, 232, 233, 234, 235, 258, 259], "subsect": 302, "subsequ": 56, "subset": [156, 282], "substitut": [17, 42, 156, 202, 224, 225], "substr": [42, 43, 51, 195, 208, 209, 224, 225], "succe": [52, 131], "succeed": [31, 50, 100, 115, 117, 121, 126, 127, 128, 129, 152, 170, 308], "succeeded_or_not": [114, 121, 127, 129, 152, 170], "success": [41, 51, 61, 68, 84, 85, 110, 111, 114, 118, 124, 137, 144, 145, 149, 150, 151, 160, 161, 163, 164, 166, 298], "successfulli": [51, 85, 127, 128, 308], "successor": 225, "suddenli": 48, "sudo": [12, 14, 18, 21, 24, 25, 27, 28, 30, 31, 32, 47, 281, 296, 303, 312], "suenaga": 50, "suet": 111, "suffici": [85, 111, 302], "suffix": [22, 44, 47, 52, 54, 144, 145, 151, 173, 179, 181, 195, 202, 205, 219, 231, 232, 233, 234, 235, 274, 304, 310], "suffixsearchterm": [224, 225], "sug": 252, "suggest": [22, 31, 37, 38, 39, 40, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 57, 92, 123, 172, 244, 250, 251], "suggest_prepar": [159, 250, 251, 253], "suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0": 39, "suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0": 39, "sugimoto": 50, "suit": [0, 42, 49, 205, 206], "suitabl": [41, 44, 49, 54, 90, 111, 125, 132, 135, 149, 156, 161, 175, 178, 205, 226, 245, 247, 254, 262, 264, 272, 273], "sum": [41, 49, 52, 132, 134, 135, 156, 245], "summar": 306, "summari": [22, 48, 57, 176, 256, 263, 289, 306], "sundai": 212, "suno": 49, "super": 42, "superior": [0, 42, 205, 206], "superscript": [231, 232, 233, 234, 235, 258, 259], "supoort": 54, "supplementari": 54, "support": [0, 1, 6, 7, 17, 21, 26, 27, 31, 32, 39, 40, 41, 42, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 85, 97, 99, 111, 132, 134, 135, 153, 154, 156, 158, 161, 167, 168, 173, 177, 181, 195, 201, 219, 224, 225, 226, 227, 230, 231, 235, 236, 240, 241, 243, 244, 248, 254, 260, 274, 277, 292, 295, 296, 305, 306, 307, 308, 310, 312, 313, 315], "suppos": [41, 123, 183, 196], "suppport": 51, "suppress": [40, 43, 44, 47, 49, 53, 135, 156], "sure": [18, 308], "surfac": 239, "surplu": 41, "surrog": 52, "surround": [41, 47, 191, 192, 193, 205, 206, 225], "sutamin": 41, "suzuki": 47, "swap": [43, 281], "swedish": [53, 260], "swig": 55, "switch": [18, 26, 41, 42, 43, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83], "syllab": [231, 232, 233, 234, 235, 258, 259], "symbol": [42, 43, 44, 53, 231, 232, 233, 234, 235, 237, 264, 265, 266, 267, 268, 269, 270, 271, 275], "synonym": [43, 44, 45, 51, 156, 243, 314], "synonymgroup": 43, "syntax": [22, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 57, 58, 68, 91, 223, 245, 304, 310], "syntax_error": 298, "syscal": [49, 308], "sysconfig": 296, "sysctl": [50, 281, 303], "system": [0, 5, 6, 7, 25, 27, 31, 32, 39, 42, 43, 44, 48, 49, 50, 51, 53, 54, 56, 94, 111, 118, 123, 124, 125, 132, 134, 135, 156, 175, 177, 203, 205, 206, 224, 225, 226, 281, 282, 302, 305, 315], "system32": 166, "systemctl": 296, "systemd": [47, 50, 51], "sytax": 42, "sz": 42, "t": [6, 7, 14, 17, 23, 31, 33, 34, 39, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 64, 68, 81, 84, 85, 90, 91, 95, 96, 98, 99, 101, 103, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 137, 140, 141, 142, 143, 149, 152, 153, 154, 155, 156, 157, 158, 159, 161, 163, 164, 167, 168, 173, 175, 177, 178, 180, 183, 184, 186, 191, 192, 193, 195, 201, 202, 205, 206, 219, 224, 225, 226, 227, 229, 230, 231, 235, 236, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 286, 291, 292, 295, 298, 308, 310, 312, 314], "t1": 11, "tab": [50, 64, 241, 243, 298], "tabel": 53, "tabl": [11, 22, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 74, 87, 91, 93, 94, 104, 105, 113, 118, 119, 120, 121, 124, 126, 127, 128, 132, 134, 135, 136, 138, 140, 143, 149, 150, 152, 153, 159, 160, 164, 170, 173, 175, 177, 179, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 237, 240, 243, 244, 245, 246, 247, 248, 250, 251, 253, 255, 260, 261, 275, 276, 278, 281, 286, 292, 295, 301, 304, 305, 306, 307, 309, 312, 313, 314, 315], "table1": 163, "table2": 163, "table_": [161, 254], "table_1": 155, "table_2": 155, "table_copi": [22, 51, 57, 92], "table_cr": [22, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 54, 57, 58, 91, 92, 110, 111, 112, 114, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 141, 142, 143, 149, 150, 152, 155, 156, 163, 164, 165, 170, 175, 176, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 236, 237, 240, 244, 245, 246, 247, 248, 254, 255, 260, 261, 275, 276, 278, 281, 286, 301, 305, 306, 307, 308, 310, 311, 313, 314], "table_dat_kei": [34, 41, 48, 49, 51, 52, 110, 141, 155, 161, 224, 225], "table_hash_kei": [34, 41, 42, 43, 44, 51, 58, 91, 110, 111, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 141, 142, 143, 149, 150, 152, 155, 156, 161, 163, 180, 183, 184, 186, 188, 194, 195, 196, 198, 201, 202, 203, 208, 209, 212, 219, 221, 225, 226, 229, 230, 236, 245, 281, 305, 306, 307, 308, 310, 311], "table_list": [22, 37, 39, 47, 53, 57, 92, 164, 175, 308], "table_list\u306f": 162, "table_n": 155, "table_nam": [42, 124, 140, 143, 149, 155], "table_name_1": 155, "table_name_2": 155, "table_name_n": 155, "table_name_of_index_column": 124, "table_no_kei": [34, 41, 42, 43, 44, 45, 49, 50, 58, 110, 111, 121, 122, 126, 127, 128, 132, 134, 135, 137, 140, 141, 143, 152, 155, 156, 161, 163, 180, 191, 192, 193, 197, 202, 203, 205, 206, 211, 224, 225, 226, 237, 244, 246, 247, 260, 261, 275, 276, 278, 286, 301, 310], "table_pat_kei": [34, 41, 42, 43, 44, 48, 50, 51, 74, 91, 110, 111, 112, 114, 122, 123, 124, 132, 134, 135, 137, 141, 142, 149, 150, 152, 155, 156, 161, 163, 164, 165, 170, 175, 180, 191, 192, 193, 195, 196, 201, 202, 203, 205, 206, 210, 224, 225, 237, 240, 244, 245, 246, 247, 255, 260, 261, 275, 276, 278, 281, 301, 307, 308, 310, 311, 313, 314], "table_remov": [22, 42, 47, 48, 50, 51, 52, 57, 92, 105, 110, 124, 137, 143, 149, 175, 275], "table_renam": [22, 40, 57, 92, 110, 124], "table_token": [22, 51, 57, 92, 262], "tablecursor": 50, "tablegroupflag": 50, "tablenam": 93, "table\u306ecolumn1\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore1\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059": 11, "table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059": 11, "table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059": 11, "tachikawa": 51, "tag": [12, 22, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 53, 54, 90, 91, 110, 111, 112, 132, 134, 135, 156, 191, 192, 193, 194, 195, 196, 205, 206, 219, 221, 225, 245, 246, 247, 254, 272, 273, 304], "tag1": [43, 205], "tag2": [43, 205], "tag_length": 135, "tagger": 0, "taggerd": 12, "tags2": 42, "tags_column": 42, "tags_nam": 44, "tahr": 49, "taht": 53, "tail": [12, 298], "tajima": 47, "takafumi": 56, "takagi01": 52, "takahiro\u3055\u3093": 37, "takahiro\u3055\u3093\u304c\u5831\u544a": 37, "takahiro\u3055\u3093\u304c\u63d0\u6848": 37, "takashi": [42, 43, 54, 121], "takashi\u3055\u3093": 39, "takashi\u3055\u3093\u304c\u5831\u544a": 39, "takatsugu": 49, "takayama": 50, "takayuki": 39, "take": [42, 43, 51, 53, 96, 107, 110, 111, 112, 114, 115, 116, 117, 118, 124, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 167, 168, 169, 170, 173, 186, 296, 308], "taken": 142, "takenaka": 56, "takenouchi": 56, "takiuchi": 48, "takoyaki": 45, "takuto\u3055\u3093": 37, "takuto\u3055\u3093\u304c\u5831\u544a": 37, "talk": [2, 12, 42, 48, 50, 52, 54], "tamano": [49, 51], "tanab": 48, "tanuma": 49, "tar": [12, 27, 31], "target": [18, 27, 31, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 61, 68, 74, 91, 103, 104, 105, 115, 116, 117, 123, 124, 125, 126, 127, 128, 131, 132, 134, 135, 137, 143, 149, 150, 152, 153, 156, 161, 168, 180, 183, 184, 191, 192, 193, 196, 201, 202, 203, 205, 206, 211, 224, 225, 231, 232, 233, 234, 235, 244, 246, 247, 258, 259, 275, 292, 305, 308, 310], "target_charact": 68, "target_class": [53, 231, 232, 233, 234, 235], "target_column": [43, 237], "target_nam": [41, 49], "taro": 307, "task": [0, 42, 47], "tasuku": [50, 55], "tatsuya": 47, "tauru": 41, "tcp": 180, "tcp_nodelai": 51, "te": [168, 277], "team": 53, "technic": 56, "techniqu": [245, 246, 247], "technolog": 56, "technologi": 56, "tel": 42, "tel_index": 42, "telephon": 42, "tell": 275, "tellist": 42, "telsindex": 42, "templ": 41, "temporari": [6, 22, 41, 42, 43, 44, 45, 47, 50, 51, 52, 53, 57, 163, 175, 188, 303], "temporarili": 53, "tend": [141, 156, 310], "tendenc": 111, "term": [0, 34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 108, 111, 123, 124, 132, 134, 135, 142, 155, 156, 163, 165, 175, 191, 192, 193, 202, 203, 205, 206, 224, 245, 246, 247, 255, 260, 261, 275, 281, 301, 308, 310, 314], "term_column": 42, "termexpans": 42, "termin": [47, 50, 68, 85, 175, 177, 308, 311], "terms_tabl": 156, "termux": 45, "teruya": 50, "test": [6, 14, 23, 28, 32, 33, 47, 49, 50, 51, 54, 133, 156, 176, 177, 277, 305, 308, 310, 311, 312], "test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059": 176, "test_loc": 176, "test_str": 14, "test_text_otoj": 14, "testdb": [176, 181], "tetsuharu": 49, "tex": 168, "text": [17, 22, 27, 31, 34, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 68, 74, 84, 90, 91, 95, 112, 125, 127, 132, 134, 135, 138, 141, 142, 152, 155, 156, 161, 163, 165, 168, 176, 186, 191, 192, 194, 202, 203, 205, 206, 219, 223, 225, 227, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 241, 244, 245, 246, 247, 254, 257, 258, 259, 262, 264, 265, 266, 267, 268, 272, 273, 274, 275, 276, 277, 278, 281, 292, 304, 305, 307, 311, 314], "text_column": 44, "textile\u30d1\u30fc\u30b5\u30fc": 12, "tf": [41, 74, 245, 246, 247], "tfidfmodel": 41, "th": [52, 138, 168], "tha": [44, 96], "than": [0, 18, 34, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 74, 91, 94, 99, 105, 111, 112, 118, 134, 135, 141, 142, 156, 159, 161, 173, 175, 177, 183, 186, 188, 195, 196, 197, 202, 205, 206, 208, 219, 223, 226, 228, 243, 244, 245, 246, 247, 253, 264, 274, 275, 277, 281, 282, 290, 296, 305, 306, 308, 310, 311, 315], "thank": 311, "the_number_of_charact": 156, "the_number_of_loaded_record": 125, "theater": 314, "theatr": 314, "thei": [17, 31, 41, 42, 43, 44, 45, 50, 58, 91, 94, 111, 124, 125, 132, 134, 135, 137, 142, 144, 145, 151, 156, 163, 168, 177, 191, 192, 193, 201, 202, 210, 223, 224, 225, 226, 228, 237, 241, 243, 245, 246, 247, 248, 250, 251, 252, 253, 254, 274, 281, 292], "them": [16, 17, 18, 24, 25, 27, 28, 31, 32, 41, 42, 43, 45, 50, 52, 53, 54, 60, 68, 91, 95, 111, 124, 134, 135, 137, 149, 156, 161, 163, 180, 183, 188, 195, 196, 203, 206, 219, 224, 225, 227, 244, 245, 264, 265, 266, 267, 268, 269, 270, 271, 273, 279, 280, 281, 286, 298, 305, 308, 315], "themselv": [17, 240, 243], "therefor": [18, 41, 42, 43, 44, 45, 54, 94, 122, 123, 156, 186, 272, 275], "therubyrac": 12, "thesauru": [43, 44, 156], "thi": [0, 3, 5, 6, 7, 8, 18, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 61, 64, 74, 85, 90, 91, 92, 94, 95, 96, 107, 110, 111, 112, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 172, 173, 175, 177, 179, 180, 182, 183, 186, 188, 191, 193, 195, 196, 197, 198, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 222, 224, 225, 227, 228, 231, 232, 233, 234, 235, 237, 238, 240, 241, 243, 244, 245, 246, 247, 248, 249, 250, 251, 253, 257, 258, 259, 264, 272, 274, 275, 276, 277, 278, 281, 282, 283, 286, 292, 298, 302, 303, 305, 306, 308, 310, 311, 312, 313, 314, 315], "thing": [42, 50], "think": [44, 156, 163, 225, 244, 245, 246, 247], "third": [56, 112, 156, 219, 225, 305], "thorsten": 51, "those": [0, 17, 18, 27, 31, 40, 44, 111, 156, 186, 188, 223, 224, 225, 230, 241, 252, 253, 254, 292, 305, 308], "though": [0, 43, 47, 48, 49, 51, 52, 74, 111, 173, 250, 276, 310], "thought": [42, 43], "thread": [0, 41, 42, 45, 48, 49, 50, 51, 52, 53, 54, 81, 85, 94, 105, 118, 127, 133, 156, 157, 158, 163, 166, 167, 175, 180, 203, 292], "thread_count": 50, "thread_dump": [22, 42, 57, 92], "thread_id": [53, 175], "thread_limit": [22, 50, 52, 53, 57, 92, 105, 118, 133, 143, 163], "thread_tabl": 176, "thread_title_column": 176, "threasd": 175, "three": [44, 48, 56, 90, 95, 114, 124, 138, 156, 183, 184, 188, 192, 195, 208, 219, 223, 246, 247, 250, 251, 296, 305, 306, 308, 310], "threshold": [37, 39, 41, 42, 43, 44, 45, 47, 49, 50, 52, 53, 54, 120, 156, 159, 171, 175, 186, 301], "threshold_1": 43, "threshold_2": [43, 186], "threshold_3": 43, "threshold_n": 43, "through": [0, 177, 180], "throughout": 56, "throughput": [39, 41, 292], "thu": [0, 43, 45, 49, 51, 52, 54, 111, 131, 134, 135, 156, 179, 181, 224, 309, 310, 314, 315], "thursdai": 212, "tim": 52, "time": [0, 6, 22, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 90, 94, 95, 96, 99, 106, 111, 123, 132, 134, 135, 136, 137, 140, 141, 142, 143, 149, 152, 153, 155, 156, 157, 158, 159, 161, 166, 173, 175, 176, 177, 180, 205, 206, 211, 212, 224, 226, 228, 243, 244, 248, 250, 251, 253, 272, 275, 281, 301, 304, 308, 315], "time_classify_": [41, 42], "time_classify_dai": [22, 41, 51, 57, 182], "time_classify_day_of_week": [22, 42, 53, 57, 182], "time_classify_hour": [22, 51, 57, 134, 182], "time_classify_minut": [22, 51, 57, 182], "time_classify_month": [22, 51, 57, 182], "time_classify_second": [22, 51, 57, 182], "time_classify_week": [22, 51, 57, 182], "time_classify_year": [22, 51, 57, 182], "time_column": 176, "time_format": 53, "time_format_iso8601": [41, 42, 43, 53], "time_loc": 177, "time_stamp": 53, "timeout": [22, 44, 45, 48, 51, 57, 92, 175], "timestamp": [41, 42, 44, 51, 53, 132, 134, 135, 136, 137, 140, 143, 152, 156, 173, 175, 180, 211, 311], "timestamp_text": [135, 156], "timev": 41, "timezon": 42, "timgates42": 41, "tini": 50, "titl": [12, 41, 42, 43, 44, 48, 49, 53, 90, 122, 125, 126, 127, 128, 132, 134, 135, 152, 156, 163, 185, 202, 210, 224, 225, 245, 246, 247, 305, 306, 307, 308, 310, 312], "title_html": 111, "title_index": 245, "title_index_column": 52, "title_term": 41, "title_text": 111, "tiwawan": 50, "tl": 51, "tld": 306, "tmp": [6, 12, 27, 31, 42, 48, 159, 175, 243, 244, 292, 298, 308, 312], "to_column": 110, "tobbi": [202, 203], "todai": 0, "todo": [6, 14, 52, 53, 62, 63, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 86, 88, 90, 91, 95, 111, 125, 134, 138, 148, 156, 179, 182, 205, 207, 220, 224, 225, 248, 281, 283, 292, 309], "togeth": [231, 235], "token": [22, 24, 25, 28, 30, 31, 32, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 92, 102, 110, 111, 123, 124, 132, 134, 135, 142, 156, 161, 165, 169, 176, 224, 225, 229, 231, 232, 233, 234, 235, 237, 244, 251, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 308], "token1": 224, "token2": 224, "token_column": 41, "token_filt": [42, 43, 44, 45, 51, 52, 122, 165, 255, 257, 258, 259, 260, 261], "token_filter_1": [142, 155], "token_filter_2": [142, 155], "token_filter_n": [142, 155], "token_filter_nam": 155, "token_filter_name_1": 155, "token_filter_name_2": 155, "token_filter_name_n": 155, "token_fitl": 155, "tokenbigram": [22, 41, 42, 43, 44, 45, 57, 111, 132, 134, 135, 142, 152, 155, 156, 161, 163, 165, 168, 169, 175, 180, 191, 192, 193, 202, 203, 205, 206, 210, 224, 225, 226, 245, 246, 247, 251, 254, 255, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271, 274, 275, 279, 280, 281, 301, 308, 310, 311, 314], "tokenbigramignoreblank": [22, 45, 57, 155, 169, 263, 301], "tokenbigramignoreblanksplitsymbol": [22, 57, 155, 169, 263, 301], "tokenbigramignoreblanksplitsymbolalpha": [22, 52, 57, 155, 169, 263, 301], "tokenbigramignoreblanksplitsymbolalphadigit": [22, 52, 57, 155, 169, 263, 301], "tokenbigramsplitsymbol": [22, 53, 57, 155, 169, 263, 275, 301], "tokenbigramsplitsymbolalpha": [22, 57, 155, 156, 168, 169, 263, 264, 301], "tokenbigramsplitsymbolalphadigit": [22, 42, 44, 57, 110, 155, 169, 202, 251, 263, 301], "tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u3082bigram\u3092\u751f\u6210\u3057": 299, "tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068": 301, "tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u5834\u5408\u3082\u91cd\u307f\u4ed8\u3051\u3092\u8003\u616e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u3053\u3068\u306f\u304b\u308f\u308a\u3042\u308a\u307e\u305b\u3093": 301, "tokenbigramsplitxxx": 264, "tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059": 301, "tokenbigram\u306a\u3069": 301, "tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059": 301, "tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f": 299, "tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f": 299, "tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528": 301, "tokenbigrm": 110, "tokendelimit": [22, 45, 53, 57, 155, 168, 169, 180, 253, 257, 258, 259, 263, 273], "tokendelimitnul": [22, 57, 155, 169, 263], "tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0": 38, "tokendelmit": 53, "tokendocumentvectorbm25": [41, 155, 169], "tokendocumentvectortfidf": [41, 155, 169], "tokenfilt": [41, 44, 54], "tokenfilternfkc": [22, 57, 256, 258, 259], "tokenfilternfkc100": [22, 53, 57, 155, 256], "tokenfilternfkc121": [54, 155], "tokenfilternfkc130": [41, 42, 43, 155], "tokenfilternfkc150": [22, 44, 45, 57, 155, 256], "tokenfilterstem": [22, 28, 32, 42, 43, 49, 52, 53, 57, 256], "tokenfilterstopword": [22, 42, 43, 45, 49, 50, 53, 57, 165, 255, 256], "tokenh3index": 45, "tokenizer_1": 155, "tokenizer_2": 155, "tokenizer_error": 298, "tokenizer_list": [22, 49, 57, 92], "tokenizer_n": 155, "tokenizer_nam": 155, "tokenizer_name_1": 155, "tokenizer_name_2": 155, "tokenizer_name_n": 155, "tokenkytea": 47, "tokenmecab": [22, 41, 44, 45, 47, 53, 54, 57, 103, 142, 155, 156, 169, 225, 232, 233, 234, 257, 258, 259, 263, 301], "tokenmecab\u3067\u306f": 301, "tokenmecab\u306e\u5834\u5408": 301, "tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f": 299, "tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u524d\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059": 299, "tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u5f8c\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059": 299, "tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u4e8b\u524d\u306b\u6e96\u5099\u3057\u305f\u8f9e\u66f8\u3092\u7528\u3044\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b\u305f\u3081": 301, "tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u3044\u308b\u5834\u5408\u306f\u3053\u306e\u30af\u30a8\u30ea\u306f\u30de\u30c3\u30c1\u3057\u307e\u305b\u3093": 301, "tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u306e\u65b9\u3092tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u3088\u308a\u3082\u91cd\u8996\u3059\u308b\u3088\u3046\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059": 301, "tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528": 301, "tokenngram": [22, 41, 42, 43, 44, 45, 53, 54, 57, 123, 155, 156, 169, 203, 224, 225, 263], "tokenpattern": [22, 54, 57, 155, 169, 263], "tokenregexp": [22, 50, 51, 57, 152, 155, 169, 244, 263], "tokenstopword": 53, "tokent": [22, 54, 57, 155, 169, 263], "tokentrigram": [22, 50, 57, 155, 168, 169, 263], "tokenunigram": [22, 57, 155, 169, 263], "tokyo": [188, 315], "tokyogeopoint": [39, 51, 90, 141, 142, 155, 188, 189, 190, 315], "told": 56, "toler": 44, "tom": [202, 203], "tomita": 37, "tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210": 37, "tomita\u3055\u3093\u304c\u5831\u544a": 37, "tomo": 307, "tomoatsu": [37, 47], "tomohiro": 54, "tomotaka_ito\u3055\u3093": 39, "tomotaka_ito\u3055\u3093\u304c\u5831\u544a": 39, "tomygx": 50, "too": [41, 42, 43, 44, 45, 48, 50, 51, 52, 53, 54, 74, 81, 91, 111, 149, 156, 175, 225, 227, 302, 305, 310], "too_large_offset": 298, "too_many_index_match_ratio": [42, 183, 196], "too_many_link": 298, "too_many_open_fil": 298, "too_many_open_files_in_system": 298, "too_many_symbolic_link": 298, "too_small_limit": 298, "too_small_offset": 298, "tood": [85, 160], "tool": [6, 15, 17, 18, 21, 22, 41, 42, 44, 50, 54, 96, 178, 227, 292, 296, 304, 308], "top": [27, 44, 306], "top_left": [39, 190], "top_left\u3068bottom_right\u304c\u306a\u3059\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059": 190, "topic": [3, 22], "torinki": 51, "tortoisegit": 8, "toshi": 45, "toshio": [45, 52], "totabl": 110, "total": [34, 41, 42, 43, 47, 50, 51, 52, 94, 104, 108, 141, 158, 161, 176, 254, 281, 298, 303], "total_chunk_s": 141, "total_s": 141, "touch": [50, 137], "tower": 41, "toybox": 305, "tpreleasecleanupgroupmemb": 166, "tr": 28, "trace": [22, 43, 44, 56, 57, 92], "trace_log": [44, 96], "tracker": [3, 22, 49], "trade": 262, "tradit": [0, 49], "tradition": 45, "trail": 53, "transfer": [0, 22, 290, 296, 298, 304], "translat": [3, 43, 44, 47, 49, 54], "transpos": 156, "transposit": [44, 51, 156], "travel": 311, "travi": [20, 22, 47, 48, 49], "treat": [43, 47, 48, 49, 50, 53, 56, 132, 134, 135, 137, 156, 168, 195, 224, 225, 239, 250, 251, 278], "tree": [49, 56, 96], "trend": 156, "tri": [52, 195, 275, 311], "trial": 0, "trie": [22, 39, 41, 43, 44, 47, 48, 50, 51, 54, 104, 120, 142, 155, 161, 224, 225, 254, 304, 308], "trigger": 149, "trigram": [53, 275, 279], "tritonn": [43, 44, 132, 134, 135, 156, 224, 225], "tritonn\u306e\u30b7\u30b9\u30c6\u30e0\u3082\u3059\u3079\u3066\u79fb\u884c\u3057\u307e\u3057\u305f": 156, "trixi": 44, "troubl": 17, "troubleshoot": [22, 37, 52], "troublesom": [43, 44], "true": [36, 41, 42, 43, 44, 45, 48, 49, 50, 51, 56, 58, 91, 94, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 170, 177, 180, 183, 184, 186, 188, 189, 190, 192, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 245, 246, 247, 255, 257, 258, 259, 260, 261, 274, 275, 276, 278, 282, 286, 298, 305, 306, 307, 308, 310, 312, 313, 314, 315], "truncat": [22, 39, 48, 49, 50, 51, 53, 57, 74, 92, 123, 124], "truncate_precision_1byt": 141, "truncate_precision_2byt": 141, "truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0": 39, "trust": 12, "trusti": 49, "try": [3, 41, 45, 50, 52, 111, 115, 175, 262, 291, 310, 311], "tsu_root": 50, "tsv": [50, 144, 145, 151, 241, 298], "tuesdai": 212, "tune": [22, 41, 43, 48, 50, 57, 91, 149, 156, 303], "tupl": [195, 205], "turn": [52, 177], "tutori": [22, 47, 49, 50, 85, 305, 308], "tweet": [2, 226], "twice": [50, 54, 156, 224], "twitter": [22, 47, 51, 311], "twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059": 10, "twitter\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u5b89\u5fc3\u611f\u304b\u3089groonga\u30e6\u30fc\u30b6\u30fc\u306e\u62e1\u5927\u306b\u7e4b\u3052\u308b": 10, "twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067": 10, "twitter\u7b49\u3067\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u969b\u306f\u3053\u3053\u3067\u7528\u610f\u3057\u305f\u30a2\u30ca\u30a6\u30f3\u30b9\u6587\u306e\u8981\u7d04\u3092\u4f7f\u7528\u3057\u307e\u3059": 12, "twitter\u7de8": 3, "two": [18, 19, 24, 25, 28, 32, 41, 42, 44, 48, 49, 50, 52, 54, 56, 68, 74, 94, 95, 111, 112, 117, 132, 133, 134, 135, 137, 143, 149, 150, 156, 160, 161, 163, 164, 167, 168, 177, 180, 181, 183, 188, 193, 196, 197, 201, 202, 203, 205, 206, 208, 209, 210, 219, 224, 228, 230, 239, 244, 246, 251, 253, 264, 272, 286, 291, 292, 296, 306, 307, 308, 310, 311, 315], "tx": 277, "txt": [16, 17, 18, 277], "type": [13, 22, 34, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 61, 64, 68, 71, 74, 81, 85, 87, 90, 91, 96, 100, 110, 114, 121, 123, 124, 125, 138, 140, 153, 154, 159, 161, 163, 168, 173, 176, 177, 178, 183, 184, 188, 196, 197, 208, 209, 210, 224, 225, 231, 232, 233, 234, 235, 237, 239, 241, 244, 245, 246, 247, 250, 251, 253, 254, 264, 286, 292, 298, 304, 306, 307, 308, 310, 313, 315], "type1": [159, 180], "type2": [159, 180], "type_1": 155, "type_2": 155, "type_in_hex": 74, "type_n": 155, "type_nam": 155, "type_name_1": 155, "type_name_2": 155, "type_name_n": 155, "type_of_the_column": 210, "typedef": 81, "typic": [50, 156], "typo": [39, 42, 44, 47, 48, 49, 50, 51, 52, 54, 243, 250, 251], "u": [16, 17, 19, 31, 45, 50, 53, 54, 123, 168, 230, 231, 232, 233, 234, 235, 243, 257, 258, 259, 272, 273, 275, 277], "u0000ful": 273, "u0000http": 273, "ubuntu": [12, 18, 21, 22, 23, 27, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 296], "ubuntu\u4ee5\u5916\u306eos\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306f\u5168\u3066github": 12, "ubuntu\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059": 12, "ubuntu\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306f": 12, "ubuntu\u5411\u3051\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f5c\u6210\u306b\u306f": 12, "ubuntu\u5411\u3051\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c6\u30b9\u30c8\u7528\u306b\u516c\u958b\u3059\u308b\u6642\u306f": 12, "uchiyama": 52, "ucrt": 54, "ud83c": 52, "udf7a": 52, "ueno": [39, 47], "ueno\u3055\u3093": [37, 38], "ueno\u3055\u3093\u304c\u5831\u544a": 38, "ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9": 37, "ui": 156, "uid": 12, "uint": [47, 51], "uint16": [41, 42, 44, 48, 90, 96, 111, 141, 142, 155], "uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528": 37, "uint32": [34, 41, 42, 43, 44, 45, 47, 48, 49, 58, 90, 91, 95, 96, 110, 111, 112, 114, 121, 132, 134, 135, 141, 142, 155, 156, 161, 162, 163, 164, 170, 180, 183, 186, 195, 201, 210, 211, 224, 225, 226, 229, 244, 260, 261, 276, 278, 281, 286, 301, 306, 307, 308, 310, 312, 313, 314, 315], "uint32_column": 50, "uint32_t": [41, 81], "uint64": [34, 41, 42, 44, 45, 48, 49, 52, 90, 96, 141, 142, 155, 180], "uint64_t": 41, "uint8": [37, 41, 42, 43, 48, 58, 90, 111, 112, 124, 141, 142, 149, 150, 155, 212], "ul": 168, "ull": 168, "ultim": 56, "ultra": 307, "umask": 49, "umemoto": 39, "unabl": [42, 43], "unari": 48, "unauthent": 47, "unbias": 41, "unchang": 85, "uncontinu": 47, "undefin": 305, "under": [31, 41, 42, 44, 45, 49, 52, 54, 177, 178, 180, 181, 208, 209, 292], "underflow": [53, 305], "underli": [0, 42], "underscor": [111, 161], "understand": [18, 49, 54, 122, 137, 156, 163, 308], "undocu": 156, "unexpect": [44, 45, 47, 49, 51, 52, 53], "unexpectedli": [41, 48, 50, 51, 52, 124], "unexpectedlli": 52, "unfinish": 53, "unhandl": 180, "uni": 275, "unicod": [41, 44, 45, 50, 53, 54, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259], "unicorn": 50, "unifi": 53, "unify_alphabet": [41, 44, 53, 203, 225], "unify_digit": [41, 44, 53], "unify_hyphen": [53, 257], "unify_hyphen_and_prolonged_sound_mark": [42, 53], "unify_kana": [42, 43, 44, 53, 54, 257], "unify_kana_cas": [44, 53], "unify_kana_hyphen": 44, "unify_kana_prolonged_sound_mark": 44, "unify_kana_voiced_sound_mark": 53, "unify_katakana_bu_sound": 53, "unify_katakana_di_sound": 44, "unify_katakana_du_small_sound": 44, "unify_katakana_du_sound": 44, "unify_katakana_gu_small_sound": 44, "unify_katakana_trailing_o": 44, "unify_katakana_v_sound": [44, 53], "unify_katakana_wo_sound": 44, "unify_katakana_zu_small_sound": 44, "unify_latin_alphabet_with": 45, "unify_middle_dot": 53, "unify_prolonged_sound_mark": 53, "unify_symbol": 53, "unify_to_katakana": 54, "unify_to_romaji": [53, 257], "unigram": [275, 280], "uniniti": [44, 45, 50], "uninstal": 47, "uniqu": [53, 111, 153, 180], "unit": [42, 45, 92, 96, 99, 121, 158, 173, 180, 188, 205, 206, 211, 225, 279, 280, 298], "unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066": 14, "univers": 32, "unix": [3, 5, 8, 23, 31, 42, 49, 158, 211], "unix_time_when_command_is_start": 95, "unknow": 49, "unknown": [40, 43, 54, 58, 74, 166, 278], "unknown_error": 298, "unless": [42, 123, 149, 150], "unlik": 191, "unlimit": [44, 51], "unlink": [41, 52, 68], "unload": 47, "unlock": [53, 85, 125], "unmanag": [108, 141], "unmap": [50, 52, 53, 118], "unmatch": [43, 54], "unnam": 52, "unnecessari": [41, 52, 281], "unpack": 41, "unpatch": 55, "unprocess": 158, "unregist": [144, 145], "unrel": [39, 41], "unreli": 173, "unresolv": 39, "unrestrict": 56, "unsaf": [50, 51], "unsign": [49, 50, 61, 68, 71, 74, 85, 100, 111, 141, 282, 298, 305], "unsort": 51, "unsplit": [11, 156], "unstabl": [40, 45], "unsupport": [50, 53], "unsupported_command_vers": 298, "untag": 194, "until": [17, 41, 42, 43, 44, 45, 49, 85, 99, 111, 118, 125, 156, 226, 275], "unus": [49, 54, 118], "unvendor": 45, "unwelcom": 45, "up": [41, 42, 43, 44, 45, 50, 52, 53, 54, 94, 175, 180, 241, 307, 308], "updag": 47, "updat": [3, 12, 18, 22, 28, 32, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 111, 123, 125, 141, 156, 177, 205, 206, 226, 249, 254, 274, 305, 307, 308, 310], "update_buffer_s": 71, "update_not_allow": 298, "updated_at": 301, "upgrad": [12, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 53, 54, 291], "upon": 56, "upper": [39, 49, 111, 161, 244, 308], "uppercas": 244, "upstream": [12, 18], "upstream\u306b\u672c\u5bb6\u306emingw": 12, "uptim": [41, 94, 97, 158, 177, 241, 298, 308, 312], "uptime\u306e\u8868\u793a\u5f62\u5f0f\u3092\u8aad\u307f\u3084\u3059\u3044\u5f62\u5f0f\u306b\u5909\u66f4": 36, "urgent": 56, "uri": [96, 177, 178, 180], "url": [33, 39, 41, 49, 122, 178, 292], "urlencod": [54, 178], "us": [0, 1, 3, 6, 7, 8, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 39, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 87, 90, 91, 95, 96, 98, 99, 100, 103, 107, 108, 109, 110, 111, 112, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 138, 140, 141, 142, 143, 144, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 165, 167, 168, 170, 173, 175, 177, 178, 181, 182, 183, 186, 191, 192, 193, 194, 195, 196, 197, 201, 202, 203, 205, 206, 208, 209, 210, 219, 223, 224, 225, 227, 228, 229, 230, 232, 233, 234, 236, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 249, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 286, 290, 291, 295, 296, 298, 303, 304, 305, 306, 307, 308, 309, 310, 312, 313, 314], "usa": 306, "usabl": [171, 180], "usag": [0, 22, 41, 42, 43, 44, 48, 49, 50, 51, 52, 54, 57, 224, 225, 310], "usage_typo_tolerance_japanes": 156, "use_base_form": 54, "use_offline_index": 40, "use_range_index": 50, "use_read": [53, 257, 258, 259], "usec": 41, "user": [3, 6, 7, 8, 18, 31, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 74, 81, 95, 98, 99, 110, 111, 112, 114, 121, 124, 137, 140, 141, 143, 149, 150, 153, 155, 156, 164, 166, 170, 173, 176, 177, 183, 186, 193, 195, 202, 203, 206, 210, 224, 225, 228, 237, 240, 250, 251, 252, 253, 281, 282, 292, 307, 312, 314], "user_ag": [149, 150, 183, 186], "user_column": 176, "user_data": 85, "user_input": 225, "user_pattern": 195, "userdefinedt": 237, "usernam": 307, "users_20160320": 137, "users_index": 311, "users_loc": 311, "users_memo": [202, 203], "users_nam": [42, 44, 124, 202, 203], "usr": [14, 27, 31, 144, 145, 151, 175, 177, 227], "usual": [45, 50, 51, 181, 305, 310], "utc": [95, 225], "utf": [47, 48, 53, 55, 74, 180, 225, 230, 236, 241, 277], "utf8": [31, 51, 175], "util": 177, "utop": 50, "uuid": 51, "uuuuuu": 225, "uvector": [41, 45], "uzulla": 39, "v": [12, 28, 29, 32, 41, 48, 302], "v0": [197, 227], "v1": 51, "v13": 44, "v14": 45, "v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d": 11, "v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u306e\u4e2d\u306b": 11, "v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b": 11, "v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b": 11, "v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b": 11, "v2": 51, "v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059": 11, "v2\u306e\u5024\u306e\u8981\u7d20\u304c\u63a5\u8fd1\u3057\u3066\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044": 11, "v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d": 11, "v6": 44, "va_list": 41, "valgrind\u3092\u7528\u3044\u3066\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u3084\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3057\u3064\u3064": 14, "valid": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 111, 132, 134, 135, 156, 224, 225, 253, 254, 305], "valu": [0, 31, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 64, 71, 74, 85, 87, 90, 91, 95, 96, 99, 100, 171, 173, 175, 177, 178, 224, 225, 226, 231, 232, 233, 234, 235, 237, 241, 243, 244, 245, 250, 251, 252, 253, 254, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280, 281, 282, 292, 296, 298, 303, 305, 306, 308, 313, 315], "value1": [110, 125, 177, 195, 196, 225], "value2": [125, 225], "value_1": [155, 308, 312], "value_2": [155, 308, 312], "value_n": 155, "value_s": [51, 142], "value_typ": 155, "value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059": 89, "valuen": [195, 196], "value\u304c\u5c5e\u3059\u308b\u578b": 162, "var": [11, 31, 50, 85, 112, 173, 175, 177, 296], "var_siz": [74, 124, 141, 142], "vari": [34, 85, 156], "variabl": [31, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 85, 112, 124, 141, 142, 149, 150, 156, 225, 243, 298, 305], "variant": [43, 53, 56, 274], "variantsa": 275, "variat": 56, "varieti": 307, "variou": [22, 27, 42, 56, 304, 308, 311], "vc": [41, 54], "vcruntim": [33, 42, 166], "vcruntime140_1": 41, "vcstartup": 166, "vctool": 166, "vdw": [306, 308, 315], "ve": 311, "vector": [22, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 87, 90, 112, 121, 132, 134, 135, 141, 142, 155, 156, 197, 220, 221, 222, 250, 304, 311], "vector_column": [44, 48, 51], "vector_find": [22, 53, 57, 182], "vector_join": [43, 44], "vector_new": [22, 52, 57, 132, 134, 135, 156, 182], "vector_s": [22, 50, 53, 57, 132, 182], "vector_slic": [22, 41, 51, 52, 57, 182], "vector_text_column": 50, "verb": 56, "verbos": 96, "veres": 292, "veri": [0, 41, 42, 43, 44, 47, 51, 52, 95, 106, 125, 132, 134, 135, 156, 191, 192, 193, 195, 206, 219, 224, 225, 244, 245, 250, 254, 292, 307], "version": [17, 22, 26, 27, 28, 29, 32, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 74, 85, 92, 94, 96, 97, 98, 99, 109, 110, 111, 112, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 146, 149, 150, 151, 152, 153, 155, 156, 157, 158, 160, 161, 163, 166, 167, 170, 171, 173, 175, 176, 177, 184, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 198, 203, 205, 206, 207, 208, 209, 211, 212, 219, 220, 221, 222, 224, 225, 227, 232, 233, 234, 235, 236, 241, 244, 246, 247, 248, 257, 258, 259, 277, 282, 283, 284, 285, 286, 287, 288, 291, 298, 308, 312], "version1": 93, "version2": 93, "version3": 93, "version4": 93, "version_major": [41, 94, 158, 177, 298, 308, 312], "version_minor": [41, 94, 158, 177, 298, 308, 312], "version_patch": [41, 94, 158, 177, 298, 308, 312], "version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f": 93, "version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059": 93, "version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0": 37, "version\u30d1\u30e9\u30e1\u30fc\u30bf\u306bstable\u6271\u3044\u3067\u306a\u3044\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f": 93, "version\u30d1\u30e9\u30e1\u30fc\u30bf\u3084command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u305b\u305a\u306bgroonga\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u305f\u969b\u306b\u306f": 93, "version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059": 93, "version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059": 93, "vertic": [111, 161], "vervet": [50, 51], "via": [17, 18, 27, 29, 31, 42, 47, 53, 54, 100, 122, 180, 253, 275], "video": 307, "view": [12, 22, 47, 56, 196, 303, 304, 312], "villag": 56, "violat": 52, "violin": 53, "virgo": 41, "virtual": [48, 50], "vision": 56, "visual": [0, 8, 27, 33, 39, 41, 42, 43, 44, 47, 48, 49, 50, 95, 155], "visut": 51, "vivid": [50, 51], "vm": [47, 228, 303], "vmstat": 303, "vnd": 44, "vocabulari": [44, 308], "voic": [53, 230, 231, 232, 233, 234, 235, 258, 259], "void": [40, 41, 74, 81, 84, 85], "void_t": 81, "vojtovich": 49, "volum": 29, "volunt": 56, "vowel": [44, 231, 232, 233, 234, 235], "vs2019": [33, 42, 166], "vulner": [49, 54], "w": [129, 173, 175, 228, 262, 264, 275, 303], "w64": 12, "wa": [41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 56, 96, 111, 123, 141, 188, 229, 230, 240, 302, 305, 308], "wai": [0, 3, 6, 7, 19, 47, 48, 49, 52, 53, 54, 91, 124, 156, 171, 173, 177, 180, 181, 202, 223, 241, 274, 306, 308, 310, 311, 314], "wait": [41, 42, 45, 85, 99, 106, 132, 134, 156], "wal": 42, "wanab": 48, "want": [6, 7, 8, 13, 16, 18, 24, 25, 27, 28, 30, 31, 32, 41, 42, 43, 44, 45, 49, 50, 52, 54, 58, 74, 81, 90, 96, 110, 111, 123, 125, 132, 133, 137, 138, 140, 141, 143, 149, 154, 155, 156, 161, 163, 165, 168, 173, 175, 177, 180, 188, 196, 201, 205, 206, 210, 224, 237, 243, 244, 248, 250, 251, 253, 260, 262, 264, 274, 275, 290, 296, 298, 303, 306, 308, 310, 314], "wareohji": 47, "warm": [175, 177], "warn": [6, 40, 42, 43, 47, 48, 49, 52, 53, 54, 111, 129, 130, 156, 175, 177, 228, 244, 247], "warp": 49, "warri": 23, "washida": 48, "wasn": [41, 42, 51, 53], "wast": [41, 45], "watch": 12, "watcom": 27, "watson": 45, "we": [2, 3, 15, 16, 17, 23, 24, 27, 28, 29, 31, 32, 33, 39, 41, 42, 43, 44, 45, 49, 50, 52, 53, 54, 56, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 96, 101, 102, 103, 104, 105, 106, 111, 122, 123, 132, 134, 135, 138, 156, 166, 177, 186, 198, 224, 225, 226, 227, 244, 260, 262, 275, 290, 296, 306, 311], "weak": [0, 42, 205, 206], "weather": 43, "web": [31, 156, 159, 177, 178, 205, 206, 224, 251, 253, 307], "webclip": 194, "webplu": 156, "web\u7ba1\u7406\u753b\u9762": 36, "wednesdai": 212, "week": [173, 212], "weight": [22, 41, 42, 43, 44, 47, 48, 49, 52, 54, 74, 112, 141, 155, 156, 180, 202, 224, 245, 304, 305], "weight1": [47, 52, 91, 156], "weight2": [47, 52, 91, 156], "weight3": 91, "weight_bfloat16": [44, 141, 155], "weight_float32": [41, 42, 43, 111, 141, 155], "weight_in_match_column": 91, "weight_in_weight_vector": 91, "welcom": [2, 3, 16, 17, 43, 44, 45, 132, 134, 135, 156, 224, 225, 311], "well": [0, 31, 42, 48, 52, 177, 205, 206, 312], "went": 56, "were": [41, 42, 43, 45, 51, 52, 54, 56, 188, 308], "werewolf": [50, 51], "western": 56, "wg": [282, 315], "wget": [27, 28, 31], "wgs84geopoint": [39, 41, 51, 90, 141, 142, 155, 188, 305, 306, 307, 311, 312, 315], "wgs84getpoint": 45, "what": [43, 52, 68, 96, 111, 124, 137, 149, 156, 159, 163, 180, 210, 224, 244, 314], "wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0": 39, "when": [0, 3, 27, 31, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 81, 91, 94, 95, 96, 97, 99, 101, 103, 105, 106, 110, 111, 112, 115, 118, 122, 123, 124, 125, 126, 131, 132, 133, 134, 135, 137, 141, 142, 143, 144, 149, 151, 152, 155, 156, 157, 158, 159, 161, 163, 167, 173, 175, 177, 180, 183, 184, 186, 188, 191, 194, 196, 202, 205, 208, 209, 210, 219, 224, 226, 229, 231, 232, 233, 234, 235, 237, 244, 248, 250, 261, 262, 264, 272, 275, 277, 281, 286, 290, 295, 298, 302, 307, 308, 311, 313], "where": [31, 45, 53, 100, 123, 208, 209, 302, 305], "whether": [41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 94, 100, 105, 106, 111, 115, 117, 122, 124, 125, 126, 127, 128, 129, 132, 134, 135, 137, 140, 141, 142, 143, 149, 150, 152, 155, 156, 159, 163, 170, 173, 177, 180, 183, 186, 188, 195, 196, 202, 203, 210, 223, 224, 248, 303, 305], "which": [0, 1, 18, 27, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 56, 74, 84, 85, 96, 121, 124, 129, 131, 132, 134, 135, 137, 138, 154, 156, 165, 168, 173, 175, 180, 181, 183, 188, 194, 196, 197, 198, 201, 202, 210, 221, 224, 225, 250, 276, 278, 296, 298, 302, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "while": [0, 18, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 56, 106, 114, 124, 125, 127, 133, 152, 156, 164, 168, 226], "white": [45, 54, 205, 224, 225, 262, 264, 265, 266, 267, 268, 275, 279, 280, 308], "whitespac": [45, 53, 54], "who": [42, 45, 48, 50, 52, 56, 173, 183, 262, 307], "whole": [41, 42, 48, 54, 125], "whombx": 48, "whose": [111, 225, 302, 308], "why": [43, 48, 156, 244, 296], "wi24rd": [42, 43], "wibowo": 48, "wide": [0, 31, 39, 42, 51, 240, 244, 308], "wider": 18, "width": [39, 41, 42, 45, 50, 53, 230, 231, 232, 233, 234, 235, 257, 258, 259], "wiedenroth": 49, "wiki": [41, 177], "wikipedia": [41, 240, 282], "wili": [50, 51], "window": [3, 5, 6, 7, 12, 22, 23, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 85, 105, 157, 158, 166, 286, 302], "window_count": [22, 41, 52, 57, 132, 134, 135, 283], "window_rank": [22, 42, 57, 283], "window_record_numb": [22, 42, 52, 57, 135, 283, 284, 286], "window_sum": [22, 52, 53, 57, 132, 134, 135, 156, 283], "windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f": 39, "windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a": 176, "windows\u7cfb": 12, "windymelt": 45, "wing": [47, 48], "wish": 18, "with_check": [43, 44, 49, 138], "with_command_vers": 50, "with_posit": [41, 42, 43, 44, 45, 51, 53, 111, 112, 123, 132, 134, 135, 141, 142, 152, 155, 156, 180, 191, 192, 193, 202, 203, 205, 206, 210, 224, 225, 226, 244, 245, 246, 247, 260, 261, 275, 281, 301, 308, 310, 311, 314], "with_sect": [42, 43, 44, 49, 50, 51, 53, 111, 112, 141, 155, 310, 311], "with_transposit": [41, 44], "with_typ": [42, 43, 44, 138, 231, 232, 233, 234, 235, 237], "with_weight": [41, 43, 49, 91, 111, 112, 141, 155], "within": [45, 111, 156, 173, 250, 251, 311, 315], "without": [0, 18, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 58, 91, 97, 107, 110, 123, 128, 132, 133, 134, 135, 137, 141, 143, 144, 149, 151, 156, 167, 177, 202, 205, 206, 210, 224, 225, 231, 232, 233, 234, 235, 244, 250, 253, 258, 259, 275, 291, 305, 314], "wmake": 27, "wno": 39, "wo": [262, 264, 275], "woker": 41, "wolfgang": 54, "woman": 42, "won": [53, 275], "wonderland": 111, "wor": 275, "word": [0, 42, 43, 44, 45, 47, 49, 50, 52, 53, 54, 81, 87, 132, 134, 135, 156, 163, 210, 223, 224, 225, 231, 232, 233, 234, 235, 243, 245, 250, 251, 252, 253, 258, 259, 261, 264, 272, 274, 278, 309, 311], "word1": [44, 47, 156, 224, 225], "word2": [44, 47, 156, 224, 225], "word3": 225, "work": [0, 3, 12, 18, 27, 31, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 85, 94, 111, 118, 131, 134, 135, 149, 156, 166, 167, 177, 202, 203, 224, 228, 244, 248, 249, 264, 281, 292, 308, 312], "workaround": [49, 50, 51, 163], "worker": [41, 48, 51, 52, 53, 54, 131, 175, 177], "worker_process": 292, "worker\u306f": 9, "worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc": 9, "worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570": 9, "world": [41, 42, 43, 48, 49, 54, 123, 156, 262, 264, 272, 275, 282, 310, 315], "worst": [51, 52], "would": [43, 45, 56, 111, 156], "writabl": [49, 50], "write": [14, 18, 31, 40, 41, 42, 49, 50, 56, 81, 101, 106, 127, 148, 156, 160, 175, 224, 225, 244, 309, 310, 311], "written": [18, 42, 45, 49, 131, 144, 151, 170, 248, 311], "wrong": [39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 123, 173, 251, 252], "wrongli": [39, 45, 51], "wsaenobuf": 302, "wsasend": 53, "www": [12, 54, 178], "x": [7, 8, 12, 35, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 125, 156, 177, 178, 224, 225, 231, 235, 240, 244, 254, 281, 282, 292, 305, 311, 315], "x64": [27, 33, 42, 43, 166], "x86": [33, 39, 42, 43, 50], "x86_64": [94, 158, 177, 298, 308, 312], "xcode": 27, "xenial": [42, 43, 51], "xeru": [42, 43, 51], "xml": [39, 40, 47, 48, 49, 64, 178, 241, 292, 298], "xt": [168, 277], "xvf": [27, 31], "xx": [12, 42], "xxhash": [41, 44, 94, 158, 177, 298, 308, 312], "xxx": [42, 43, 44, 45, 48, 49, 51, 52, 53, 54, 156, 175, 225, 231, 235], "xxx_201506": 50, "xxx_20150603": 50, "xxx_20150604": 50, "xxxx": 12, "xxxxx": 302, "xxxxxxx": 12, "xyzabc": 41, "x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066": 12, "x\u3067\u306frealloc": 37, "x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "y": [14, 18, 24, 25, 28, 32, 41, 42, 44, 47, 48, 52, 224, 282], "yagisumi": 54, "yahoo": 56, "yahppo": 48, "yai": 41, "yak": [51, 52], "yakketi": [51, 52], "yamada": [49, 231, 232, 233, 234, 235], "yamaguchi": 39, "yamamoto": 49, "yaman": [48, 49], "yappo": [48, 49, 55], "yasuhiro": 53, "ye": [14, 40, 41, 42, 43, 44, 45, 48, 50, 51, 52, 53, 54, 96, 97, 122, 124, 125, 132, 134, 135, 137, 143, 149, 150, 156, 159, 163, 174, 178, 250], "year": [41, 50, 56, 58, 173, 183, 225, 228, 311], "years_old": 58, "yen": 56, "yet": [0, 39, 41, 42, 45, 48, 51, 53, 54, 103, 111, 135, 154, 156, 180, 225, 227, 239, 245, 247, 248, 278, 292], "yito": [47, 48], "yml": [12, 21, 29], "yoji": 39, "yokoyama": [48, 49, 51], "yoku": [48, 49], "york": [74, 188, 311], "yoshida": 48, "yoshimura": [42, 43], "yoshioka": [47, 50], "you": [0, 1, 2, 3, 5, 6, 7, 8, 13, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 64, 68, 74, 81, 84, 85, 87, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100, 107, 110, 111, 112, 114, 115, 116, 117, 118, 120, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 161, 163, 164, 165, 167, 168, 170, 171, 173, 175, 177, 178, 179, 180, 181, 182, 183, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 223, 224, 225, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 272, 274, 276, 277, 278, 281, 282, 290, 292, 295, 296, 298, 302, 303, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "younger": 111, "your": [0, 3, 6, 12, 21, 27, 32, 39, 42, 44, 45, 46, 49, 50, 52, 53, 96, 111, 124, 125, 126, 127, 128, 144, 151, 152, 156, 161, 167, 173, 175, 177, 178, 198, 202, 203, 225, 229, 237, 243, 244, 248, 255, 274, 281, 292, 298, 314], "your_db": 39, "your_github_account": [17, 18], "your_new_db": 39, "yourself": [23, 111], "yssrku": 44, "yu": 54, "yuki": [39, 45, 49, 51], "yum": [12, 47], "yunqiang": 51, "yutaro": [50, 53, 54], "yuya": [49, 50, 51], "yy_syntax_error": [58, 156], "yyi": [17, 44, 54], "yyyi": [42, 43, 44, 225, 228], "yyyymm": 248, "yyyymmdd": [132, 134, 135, 248], "z": [28, 41, 42, 44, 49, 51, 111, 161, 224, 244, 277, 282], "z0": 44, "za": 44, "zangruochen": 44, "zapu": 52, "zcat": 51, "zenigata": 307, "zero": [41, 51, 52, 87, 90, 91, 111, 156, 201, 229, 243, 255, 262, 298, 305], "zeromq": 31, "zesti": 52, "zhanzhao": [43, 44], "zip": [12, 22, 23, 27, 42, 43, 47], "zlib": [37, 39, 41, 47, 48, 49, 53, 94, 111, 141, 155, 158, 177, 298, 308, 312], "zlib_error": 298, "zsh": 31, "zstandard": [31, 41, 51, 94, 111, 141, 158, 177, 298, 308, 312], "zstd": [53, 141], "zunda": 39, "zwgetcontextthread": 166, "zzz": 54, "\u0111\u01b0\u1eddng": 45, "\u1427": [231, 232, 233, 234, 235, 258, 259], "\u2170": 43, "\u2171": 43, "\u2171\u2171": 43, "\u2172": 43, "\u3041": [44, 231, 232, 233, 234, 235], "\u3041\u3042": [44, 231, 232, 233, 234, 235], "\u3041\u3042\u3043\u3044\u3045\u3046\u3047\u3048\u3049\u304a\u3083\u3084\u3085\u3086\u3087\u3088\u308e\u308f\u3095\u304b\u3096\u3051": [231, 232, 233, 234, 235, 258, 259], "\u3041\u30fc": [44, 231, 232, 233, 234, 235], "\u3042i\u3046": 44, "\u3042\u3042\u3042": 44, "\u3042\u3042\u3044\u3044\u3046\u3046\u3048\u3048\u304a\u304a\u3084\u3084\u3086\u3086\u3088\u3088\u308f\u308f\u304b\u304b\u3051\u3051": [231, 232, 233, 234, 235, 258, 259], "\u3042\u3044\u3046\u3047\u304a\u309d\u309e": [231, 232, 233, 234, 235, 257, 258, 259], "\u3042\u3046i": 44, "\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http": 12, "\u3042\u3089\u304b\u3058\u3081groonga\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304a\u304f\u3068\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u5186\u6ed1\u306b\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 12, "\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag": 12, "\u3042\u308a\u307e\u305b\u3093": [147, 162], "\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f": 189, "\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059": [189, 190], "\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059": 11, "\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u306f\u3058\u3081\u306bdevelop\u6271\u3044\u3068\u3057\u3066\u30ea\u30ea\u30fc\u30b9\u3055\u308c": 93, "\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u304c\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u3046\u3061": 93, "\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306b\u304a\u3044\u3066\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f": 93, "\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f": 93, "\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 282, "\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068": 10, "\u3042\u30a4\uff73\uff6a\u304a\u30fd\u30fe": [231, 232, 233, 234, 235, 257, 258, 259], "\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068": 10, "\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059": 89, "\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059": 93, "\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082": 11, "\u3044\u307e\u3059": 10, "\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63": 37, "\u304a\u3070\u305f\u3055\u3093": 36, "\u304a\u3088\u3073": 12, "\u304bwgs84geopoint": [189, 190], "\u304b\u304b\u304d\u304d\u304f\u304f\u3051\u3051\u3053\u3053\u3055\u3055\u3057\u3057\u3059\u3059\u305b\u305b\u305d\u305d\u305f\u305f\u3061\u3061\u3064\u3064\u3066\u3066\u3068\u3068\u306f\u306f\u306f\u3072\u3072\u3072\u3075\u3075\u3075\u3078\u3078\u3078\u307b\u307b\u307b": [231, 232, 233, 234, 235, 258, 259], "\u304b\u304c\u304d\u304e\u304f\u3050\u3051\u3052\u3053\u3054\u3055\u3056\u3057\u3058\u3059\u305a\u305b\u305c\u305d\u305e\u305f\u3060\u3061\u3062\u3064\u3065\u3066\u3067\u3068\u3069\u306f\u3070\u3071\u3072\u3073\u3074\u3075\u3076\u3077\u3078\u3079\u307a\u307b\u307c\u307d": [231, 232, 233, 234, 235, 258, 259], "\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8": 175, "\u304c\u3042\u308a\u307e\u3059": 12, "\u304c\u304e\u3052\u3054": [231, 235], "\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc": 37, "\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059": 12, "\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082": 299, "\u304c\u5fc5\u8981\u3067\u3059": 12, "\u304c\u6210\u529f\u3057\u3066\u3044\u308b\u306e\u3092\u78ba\u8a8d\u3057\u3066\u304b\u3089": 12, "\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059": 204, "\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059": 189, "\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u3050\u3041\u3050\u3043\u3050\u3047\u3050\u3049": [231, 235], "\u3050\u308b\u3093\u304c": [224, 225], "\u3050\u308b\u3093\u304c\u592a\u90ce": 307, "\u3050\u308b\u3093\u304c\u6b21\u90ce": 307, "\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059": 10, "\u3053\u3053\u3067\u306f": 301, "\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067": 301, "\u3053\u3053\u3067\u307e\u3068\u3081\u305f\u5185\u5bb9\u306b\u3064\u3044\u3066\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u3082\u4f7f\u7528\u3057\u307e\u3059": 12, "\u3053\u3053\u3067\u3082": 301, "\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u30b5\u30dd\u30fc\u30c8\u306e\u969b\u306b\u6c17\u3092\u3064\u3051\u308b\u3053\u3068\u3092\u307e\u3068\u3081\u307e\u3059": 10, "\u3053\u306e\u3068\u304d": [12, 299], "\u3053\u306e\u307e\u307e\u3067\u306f\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u8868\u793a\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059": 301, "\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u306e\u306f\u5168\u6587\u691c\u7d22\u6642\u306b\u8907\u6570\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3089\u3067\u3059": 301, "\u3053\u306e\u3088\u3046\u306bn": 301, "\u3053\u306e\u3088\u3046\u306btokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u91cd\u307f\u3092\u9ad8\u304f\u3059\u308b\u3053\u3068\u306b\u3088\u308a": 301, "\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408": 176, "\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068": 176, "\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408": 176, "\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f": 299, "\u3053\u306e\u30b1\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3059\u308b\u306e\u3067": 301, "\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document": 175, "\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e": 176, "\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408": 12, "\u3053\u306e\u4e2d\u3067\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308bgrn_expr\u306e\u3053\u3068\u3092\u7279\u306b\u6761\u4ef6\u5f0f\u3068\u3088\u3073\u307e\u3059": 11, "\u3053\u306e\u4f5c\u696d\u306f": 12, "\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248": 12, "\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059": 12, "\u3053\u306e\u4f5c\u696d\u306f\u4e00\u5ea6\u3060\u3051\u884c\u3044\u307e\u3059": 12, "\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga": 176, "\u3053\u306e\u4f8b\u306f\u65e5\u672c\u8a9e\u3060\u3063\u305f\u306e\u3067tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u3088\u304b\u3063\u305f\u306e\u3067\u3059\u304c": 301, "\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 301, "\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093": 301, "\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059": 301, "\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8": 301, "\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059": 301, "\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f": 301, "\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c": 301, "\u3053\u306e\u624b\u9806\u306f\u7701\u7565\u53ef\u80fd\u3067\u3059": 12, "\u3053\u306e\u65b9\u6cd5\u3067ppa\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u308b\u4e8b\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044": 12, "\u3053\u306e\u6bb5\u968e\u3067\u306f": 12, "\u3053\u306e\u72b6\u614b\u3067\u3082\u4ee5\u524d\u306f\u30de\u30c3\u30c1\u3057\u306a\u304b\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u30d2\u30c3\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 301, "\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066": 299, "\u3053\u306e\u7d50\u679c\u306f": 176, "\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f": 299, "\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059": 189, "\u3053\u308c\u304b\u3089groonga\u3092\u4f7f\u3046\u4eba\u3078\u30a2\u30d4\u30fc\u30eb\u3059\u308b\u70b9\u3084\u65e2\u5b58\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u4eba\u304c\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3059\u308b\u969b\u306b\u5fc5\u8981\u306a\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3059": 12, "\u3053\u308c\u304c\u6700\u521d\u306e\u6295\u7a3f\u3067\u3059": 156, "\u3053\u308c\u3067": 12, "\u3053\u308c\u3067\u6b63\u3057\u304f\u30d3\u30eb\u30c9\u3067\u304d\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u304c\u78ba\u8a8d\u3067\u304d\u307e\u3059": 12, "\u3053\u308c\u306b\u3088\u308a": 12, "\u3053\u308c\u306b\u5bfe\u3057\u3066": 299, "\u3053\u308c\u306f": 301, "\u3053\u308c\u306f\u30da\u30f3\u3067\u3059\u304b": 272, "\u3053\u308c\u3082\u3068\u3066\u3082\u901f\u3044\u3067\u3059\u306d": 156, "\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2": 89, "\u3053\u308c\u3089\u3082\u66f4\u65b0\u3057\u307e\u3059": 12, "\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 301, "\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059": 11, "\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059": 176, "\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068": 93, "\u3056\u3058\u305c\u305e": [231, 235], "\u3057\u304b\u3057": [282, 299, 301], "\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059": 12, "\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u3057\u308c\u307e\u305b\u3093": 10, "\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067": 12, "\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408": 176, "\u3059\u3067\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u305f\u3068\u3048\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059": 299, "\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059": 93, "\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059": 176, "\u3059\u3079\u3066\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u3067\u540c\u3058\u540d\u524d\u306e\u95a2\u6570\u3092\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 37, "\u3059\u3079\u3066\u306e\u95a2\u6570\u304c\u30c6\u30b9\u30c8\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u5fc3\u304c\u3051\u3066\u304f\u3060\u3055\u3044": 14, "\u3059\u308b\u3068": 14, "\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089": 37, "\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059": 10, "\u305a\u3041\u305a\u3043\u305a\u3047\u305a\u3049": [231, 235], "\u305d\u3053\u3067": 301, "\u305d\u3053\u306b\u5165\u308b\u60c5\u5831\u304c\u3069\u3093\u306a\u5185\u5bb9\u304b\u3092\u793a\u3059\u540d\u524d\u3092\u51fa\u529b\u3057\u307e\u3059": 162, "\u305d\u306e\u305f\u3081": [12, 176, 299, 301], "\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a": 12, "\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059": 282, "\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066": 93, "\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059": 12, "\u305d\u306e\u4e2d\u304b\u3089\u5fc5\u8981\u306a\u90e8\u5206\u3092\u9ad8\u901f\u306b\u53d6\u308a\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044": 12, "\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059": 176, "\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059": 301, "\u305d\u306e\u5f8c": 12, "\u305d\u306e\u5f8c\u4e8c\u4e16\u4ee3\u7d4c\u904e\u3059\u308b\u3068\u305d\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306fdeprecated\u6271\u3044\u3068\u306a\u308a\u307e\u3059": 93, "\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5": 175, "\u305d\u306e\u6642\u70b9\u3067stable\u3067\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059": 93, "\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059": 93, "\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback": 11, "\u305d\u306e\u9650\u3089\u308c\u305f\u30c4\u30a4\u30fc\u30c8\u304b\u3089\u89e3\u6c7a\u65b9\u6cd5\u304c\u898b\u3064\u304b\u308c\u3070\u30e6\u30fc\u30b6\u30fc\u306b\u3068\u3063\u3066\u4f59\u8a08\u306a\u624b\u9593\u304c\u5c11\u306a\u304f\u3066\u6e08\u307f\u307e\u3059": 10, "\u305d\u306e\u969b": 12, "\u305d\u308c\u305e\u308c": 14, "\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068": 175, "\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22": 299, "\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059": 299, "\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b": 11, "\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u306b\u5bfe\u3057\u3066\u4e8c\u3064\u76ee\u306e\u8981\u7d20\u304c\u4e00\u81f4\u3059\u308b\u305f\u3081\u306emode\u3068\u3057\u3066\u4e0b\u8a18\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059": 299, "\u305d\u308c\u305e\u308c\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5\u3068\u306a\u308b\u6761\u4ef6\u304c\u3042\u308b\u306e\u3067\u63a1\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u5341\u5206\u691c\u8a0e\u3057\u3066\u304f\u3060\u3055\u3044": 301, "\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059": 301, "\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059": 299, "\u305d\u308c\u306b\u691c\u7d22\u306b\u30de\u30c3\u30c1\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u306b\u3069\u306e\u3088\u3046\u306b\u53cd\u6620\u3059\u308b\u304b\u3092\u6307\u5b9a\u3059\u308b\u6f14\u7b97\u5b50\u3092\u6e21\u3057\u307e\u3059": 11, "\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059": 174, "\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059": 174, "\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059": 12, "\u305f\u3060\u3057": [89, 175, 299], "\u305f\u3060\u3057\u8907\u6570\u306e\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u4e00\u7dd2\u306b\u4f7f\u3046\u3053\u3068\u306f\u3067\u304d\u306a\u3044": 36, "\u305f\u3068\u3048\u3070": 299, "\u305f\u3068\u3048\u3070\u4e0b\u8a18\u306e\u3088\u3046\u306bgroonga\u306e\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u63a8\u79fb\u3057\u307e\u3059": 93, "\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u30671\u4ef6\u3082\u30d2\u30c3\u30c8\u3057\u306a\u3044\u5834\u5408\u3067\u3082\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306a\u3069\u3092\u884c\u3044\u307e\u305b\u3093": 301, "\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082": 301, "\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067": 12, "\u3060\u3068\u539f\u56e0\u306f": 10, "\u30671\u4ef6\u30d2\u30c3\u30c8\u3057": 301, "\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 39, "\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 12, "\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3059\u308b\u3068\u30c6\u30fc\u30d6\u30eb\u304c\u58ca\u308c\u308b": 37, "\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068": 11, "\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d": 11, "\u3067\u3042\u308c\u3070": 176, "\u3067\u3059\u306d": 10, "\u3067\u306f\u306a\u304ffree": 37, "\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093": 301, "\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059": 301, "\u3067\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u30ad\u30fc\u304c\u5e38\u306bgrn_nil\u306b\u306a\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63": 37, "\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a": 175, "\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 39, "\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 12, "\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710": 301, "\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673": 301, "\u3067\u4e0d\u6b63\u306ajson\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u305d\u308c\u4ee5\u964d\u30b3\u30de\u30f3\u30c9\u3092\u53d7\u3051\u4ed8\u3051\u306a\u304f\u306a\u308b": 37, "\u3067\u5024\u3092\u56f2\u307f\u307e\u3059": 175, "\u3067\u533a\u5207\u308a\u307e\u3059": 175, "\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059": 89, "\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059": 176, "\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092": 37, "\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059": 162, "\u3067\u914d\u5217\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30fc\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": 37, "\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059": 12, "\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408": 299, "\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642": 299, "\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c": 301, "\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u306710\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u6642\u306b\u5b9f\u884c\u3059\u308b": 176, "\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057": 176, "\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b": 176, "\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059": 176, "\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059": 299, "\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059": 299, "\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059": 299, "\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f": 10, "\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059": 299, "\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059": 299, "\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059": 299, "\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059": 299, "\u3068\u3044\u3046\u6587\u5b57\u5217\u306f": 299, "\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059": 282, "\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067": 299, "\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067": 299, "\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067": 299, "\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067": 299, "\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059": 176, "\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059": 12, "\u3068\u3066\u3082": 156, "\u3068\u3066\u3082\u901f\u3044\u3067\u3059\u306d": 156, "\u3068\u306a\u308a": 301, "\u3068\u3082\u3066": 156, "\u3068\u308a\u3068\u3093": [224, 225], "\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082": 176, "\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044": 176, "\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c": 301, "\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081": 301, "\u3068\u540c\u3058\u610f\u5473": 175, "\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63": 36, "\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": 176, "\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 189, "\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059": 301, "\u3069\u3046\u3057\u3066\u305d\u3046\u3059\u308b\u306e\u304b\u3068\u3044\u3046\u5171\u901a\u8a8d\u8b58\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u3068\u4e00\u8cab\u6027\u306e\u306a\u3044\u30b5\u30dd\u30fc\u30c8\u3068\u306a\u3063\u3066\u3057\u307e": 10, "\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c": 10, "\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3092\u8aac\u660e\u3059\u308b\u524d\u306b": 299, "\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e": 176, "\u306bgroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30fc\u3092": 12, "\u306brebas": 12, "\u306b\u3066\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u7f6e\u304d\u63db\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 12, "\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059": 12, "\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093": 299, "\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059": 108, "\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c": 162, "\u306b\u307e\u3068\u3081\u307e\u3059": 12, "\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059": 299, "\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a": 282, "\u306b\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u4f5c\u6210\u3057": 12, "\u306b\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057": 12, "\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c": 299, "\u306b\u524d\u56de\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092": 12, "\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 39, "\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093": 299, "\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c": 301, "\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c": 301, "\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f": 175, "\u306b\u66f8\u304d\u3060\u3057\u307e\u3059": 176, "\u306b\u6700\u65b0\u30ea\u30ea\u30fc\u30b9\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u756a\u53f7\u3068\u65e5\u4ed8\u3092\u8868\u3059\u60c5\u5831\u306e\u6307\u5b9a\u304c\u3042\u308b\u306e\u3067": 12, "\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8": 12, "\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059": 176, "\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059": 175, "\u306b\u8ffd\u52a0\u3057\u3066\u3082\u3089\u3063\u3066\u4e0b\u3055\u3044": 12, "\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059": 176, "\u306e2\u5358\u8a9e\u6271\u3044": 299, "\u306ebase_version\u306e\u66f4\u65b0": 12, "\u306edocker\u30a4\u30e1\u30fc\u30b8\u3092\u81ea\u52d5\u3067\u66f4\u65b0\u3057\u307e\u3059": 12, "\u306egroonga\u306edocker\u30a4\u30e1\u30fc\u30b8\u3092\u66f4\u65b0\u3057\u307e\u3059": 12, "\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059": 301, "\u306esha256sum": 12, "\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4": 37, "\u306exml\u51fa\u529b\u5bfe\u5fdc": 37, "\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059": [189, 190], "\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f": 175, "\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 37, "\u306e\u307b\u304b\u306b": 282, "\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 14, "\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 14, "\u306e\u3088\u3046\u306b\u5f15\u6570\u306e\u540d\u524d\u3092\u660e\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u4ee3\u308f\u308a\u306b": 175, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b": 175, "\u306e\u30ab\u30e9\u30e0": [109, 120], "\u306e\u30c8\u30c3\u30d7\u306b\u914d\u7f6e\u3057\u307e\u3059": 12, "\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63": [37, 39], "\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b": 120, "\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u3057\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059": 12, "\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b": 109, "\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3": 37, "\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0": 37, "\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b": 175, "\u306e\u52c9\u5f37": 279, "\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067": 10, "\u306e\u5834\u5408\u306e\u4f8b\u3067\u3059": 12, "\u306e\u5834\u5408\u306f": 10, "\u306e\u624b\u9806\u3067\u4e0d\u5b89\u5b9a\u7248\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u3088\u3046\u306b\u6307\u5b9a\u3057\u307e\u3059": 12, "\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b": 37, "\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044": 176, "\u306e\u7d50\u679c\u3092\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306bpush\u5f8c\u306bgithub": 12, "\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d": 175, "\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059": 204, "\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059": 204, "\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059": 162, "\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f": 301, "\u306f\u3068\u3066\u3082\u901f\u3044": 44, "\u306f\u306a\u304f": 36, "\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u66f4\u65b0\u3055\u308c\u307e\u3059": 12, "\u306f\u6700\u65b0\u306egroonga\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059": 12, "\u3070\u3044\u304a\u308a\u3093": [231, 235], "\u3070\u3073\u3076\u3079\u307c": [231, 235], "\u3072\u308d\u3042\u304d": 313, "\u3072\u308d\u3086\u304d": 313, "\u3078\u3068\u53cd\u6620\u3057\u307e\u3059": 12, "\u3078\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3057\u307e\u3059": 12, "\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044": 176, "\u307e\u305fgroonga": 176, "\u307e\u305f\u306f": 176, "\u307e\u305f\u306f\u30bd\u30b1\u30c3\u30c8\u7d4c\u7531\u3067groonga\u30b5\u30fc\u30d0\u306b\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u884c\u3057\u307e\u3059": [108, 109, 113, 119, 120, 130, 147, 162], "\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7": 175, "\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f": 175, "\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga": 176, "\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_host\u304c\u512a\u5148\u3055\u308c\u307e\u3059": 176, "\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_port\u304c\u512a\u5148\u3055\u308c\u307e\u3059": 176, "\u307e\u305f\u540c\u6642\u306b": 176, "\u307e\u3060\u81ea\u5206\u7528\u306b\u6697\u53f7\u5316\u3055\u308c\u305f\u9375\u304c\u7121\u3044\u5834\u5408\u306b\u306f": 12, "\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a": 93, "\u307e\u3068\u3081\u3066\u304a\u304f\u3068": 10, "\u307e\u308d\u3086\u304d": 313, "\u3080\u308b\u3093\u304c": [224, 225], "\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059": 185, "\u3082\u3057groonga": 176, "\u3082\u3057test": 176, "\u3082\u3057\u304f\u306f": 282, "\u3082\u3057\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u4e2d\u8eab\u306b\u95a2\u308f\u3089\u305a\u52d5\u4f5c\u3092\u7d9a\u3051\u3066\u3057\u307e\u3044": 176, "\u3082\u3057\u6307\u5b9a\u3055\u308c\u305fdb\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070\u81ea\u52d5\u7684\u306bdb\u3092\u4f5c\u6210\u3057\u307e\u3059\u304c": 176, "\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059": 299, "\u3084rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306espec\u30d5\u30a1\u30a4\u30eb\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u306a\u3069\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059": 12, "\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059": 93, "\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c": 10, "\u3086\u304d\u3072\u308d": 313, "\u3088\u3046\u3053\u305d": 156, "\u3088\u3063\u3066": 282, "\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c": 189, "\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059": 176, "\u308a\u3093\u3054": [257, 258, 259], "\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u308d\u3086\u304d": 313, "\u308f\u305f\u3057": [257, 258, 259], "\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059": 12, "\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f": 37, "\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068": 174, "\u3092\u3054\u89a7\u4e0b\u3055\u3044": 14, "\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 14, "\u3092\u30af\u30ed\u30fc\u30f3\u3057": 12, "\u3092\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 282, "\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63": 37, "\u3092\u4f7f\u7528\u3057\u3066\u6700\u65b0\u306esphinx\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3088\u3046\u306b\u3057\u3066\u4e0b\u3055\u3044": 12, "\u3092\u516c\u958b": 37, "\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081": 12, "\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044": [176, 282, 301], "\u3092\u6307\u5b9a\u3057": [109, 120], "\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089": 11, "\u3092\u6307\u5b9a\u3057\u307e\u3059": [12, 175, 176], "\u3092\u6700\u65b0\u306b\u3057\u3066": 12, "\u3092\u7528\u3044\u3066\u3044\u307e\u3059": 14, "\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059": 189, "\u3092\u8a08\u7b97\u3059\u308b": 36, "\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059": 176, "\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b": 10, "\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f": 36, "\u3092\u8ffd\u52a0": [37, 39], "\u3094": [44, 231, 232, 233, 234, 235], "\u3094\u3041\u3044\u304a\u308a\u3093": [231, 235], "\u3094\u3041\u3094\u3043\u3094\u3094\u3047\u3094\u3049": [54, 231, 235], "\u3094\u3046": [44, 231, 232, 233, 234, 235], "\u3094\u30fc": [44, 231, 232, 233, 234, 235], "\u3095": [44, 231, 232, 233, 234, 235], "\u3095\u3042": [44, 231, 232, 233, 234, 235], "\u3095\u30fc": [44, 231, 232, 233, 234, 235], "\u3096": [44, 231, 232, 233, 234, 235], "\u3096\u3048": [44, 231, 232, 233, 234, 235], "\u3096\u30fc": [44, 231, 232, 233, 234, 235], "\u30a1": [44, 231, 232, 233, 234, 235], "\u30a1\u30a2": [44, 231, 232, 233, 234, 235], "\u30a1\u30a2\u30a3\u30a4\u30a5\u30a6\u30a7\u30a8\u30a9\u30aa\u30e3\u30e4\u30e5\u30e6\u30e7\u30e8\u30ee\u30ef\u30f5\u30ab\u30f6\u30b1": [231, 232, 233, 234, 235, 258, 259], "\u30a1\u30fc": [44, 231, 232, 233, 234, 235], "\u30a2": [44, 231, 232, 233, 234, 235, 275], "\u30a2\u30a1\u30a4\u30a3\u30a6\u30a5\u30a8\u30a7\u30aa\u30a9": [231, 232, 233, 234, 235, 257, 258, 259], "\u30a2\u30a2": [44, 231, 232, 233, 234, 235], "\u30a2\u30a2\u30a4\u30a4\u30a6\u30a6\u30a8\u30a8\u30aa\u30aa\u30e4\u30e4\u30e6\u30e6\u30e8\u30e8\u30ef\u30ef\u30ab\u30ab\u30b1\u30b1": [231, 232, 233, 234, 235, 258, 259], "\u30a2\u30aa\u30c4\u30c5\u30e9\u30d5\u30b8": 44, "\u30a2\u30aa\u30cf\u30bf": 44, "\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068": 12, "\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u307e\u3067\u5b9f\u884c\u3067\u304d\u307e\u3059": 12, "\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u6e08\u307f\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664\u3067\u304d\u307e\u3059": 12, "\u30a2\u30c6\u30cd\u56fd\u969b\u7a7a\u6e2f": 44, "\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8": [299, 301], "\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u306e\u5834\u5408\u306ftokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306a\u3069\u3082\u5229\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 301, "\u30a2\u30f2\u30cf\u30bf": 44, "\u30a2\u30fc": [44, 231, 232, 233, 234, 235], "\u30a3": [44, 231, 232, 233, 234, 235], "\u30a3\u30a4": [44, 231, 232, 233, 234, 235], "\u30a3\u30fc": [44, 231, 232, 233, 234, 235], "\u30a4": [44, 231, 232, 233, 234, 235], "\u30a4\u30a4": [44, 231, 232, 233, 234, 235], "\u30a4\u30e9\u30af\u30ea\u30aa": 44, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059": 12, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044": 37, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63": 37, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af": 12, "\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b": 176, "\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3067\u304d\u308b\u74b0\u5883\u3067\u3042\u308c\u3070groonga\u30b3\u30de\u30f3\u30c9\u306e\u77e5\u8b58\u304c\u306a\u304f\u3066\u3082groonga\u306e\u52d5\u4f5c\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059": 176, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u3064\u3044\u305f\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u7d50\u679c\u304c\u304a\u304b\u3057\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059": 113, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b": 108, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u305f\u30b8\u30aa\u30b5\u30fc\u30c1\u306e\u4f8b\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306b\u8ffd\u52a0": 39, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408": 108, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49": 109, "\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust": 12, "\u30a4\u30fc": [44, 231, 232, 233, 234, 235], "\u30a5": [44, 231, 232, 233, 234, 235], "\u30a5\u30a6": [44, 231, 232, 233, 234, 235], "\u30a5\u30fc": [44, 231, 232, 233, 234, 235], "\u30a6": [44, 231, 232, 233, 234, 235], "\u30a6\u30a6": [44, 231, 232, 233, 234, 235], "\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http": 175, "\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059": 175, "\u30a6\u30fc": [44, 231, 232, 233, 234, 235], "\u30a7": [44, 231, 232, 233, 234, 235], "\u30a7\u30a8": [44, 231, 232, 233, 234, 235], "\u30a7\u30fc": [44, 231, 232, 233, 234, 235], "\u30a8": [44, 231, 232, 233, 234, 235], "\u30a8\u30a8": [44, 231, 232, 233, 234, 235], "\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059": [109, 113, 119, 130], "\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue": [109, 113, 119, 130], "\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f": 37, "\u30a8\u30fc": [44, 231, 232, 233, 234, 235], "\u30a9": [44, 231, 232, 233, 234, 235], "\u30a9\u30a6": [44, 231, 232, 233, 234, 235], "\u30a9\u30aa": [44, 231, 232, 233, 234, 235], "\u30a9\u30fc": [44, 231, 232, 233, 234, 235], "\u30aa": [44, 231, 232, 233, 234, 235], "\u30aa\u30a6": [44, 231, 232, 233, 234, 235], "\u30aa\u30a6\u30b3\u30a6\u30bd\u30a6\u30c8\u30a6\u30ce\u30a6": [231, 232, 233, 234, 235], "\u30aa\u30aa": [44, 231, 232, 233, 234, 235], "\u30aa\u30aa\u30b3\u30aa\u30bd\u30aa\u30c8\u30aa\u30ce\u30aa": [231, 232, 233, 234, 235], "\u30aa\u30aa\u30c4\u30c5\u30e9\u30d5\u30b8": 44, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059": 109, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b": 109, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7": 120, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a": 108, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 301, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a": 176, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059": 176, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068": 176, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0": 36, "\u30aa\u30fc": [44, 231, 232, 233, 234, 235], "\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316": 39, "\u30ab": [44, 231, 232, 233, 234, 235], "\u30ab\u30a2": [44, 231, 232, 233, 234, 235], "\u30ab\u30a2\u30ad\u30a4\u30af\u30a6\u30b1\u30a8\u30b3\u30aa": [231, 232, 233, 234, 235], "\u30ab\u30ab\u30ad\u30ad\u30af\u30af\u30b1\u30b1\u30b3\u30b3\u30b5\u30b5\u30b7\u30b7\u30b9\u30b9\u30bb\u30bb\u30bd\u30bd\u30bf\u30bf\u30c1\u30c1\u30c4\u30c4\u30c6\u30c6\u30c8\u30c8\u30cf\u30cf\u30cf\u30d2\u30d2\u30d2\u30d5\u30d5\u30d5\u30d8\u30d8\u30d8\u30db\u30db\u30db": [231, 232, 233, 234, 235], "\u30ab\u30ac\u30ad\u30ae\u30af\u30b0\u30b1\u30b2\u30b3\u30b4\u30b5\u30b6\u30b7\u30b8\u30b9\u30ba\u30bb\u30bc\u30bd\u30be\u30bf\u30c0\u30c1\u30c2\u30c4\u30c5\u30c6\u30c7\u30c8\u30c9\u30cf\u30d0\u30d1\u30d2\u30d3\u30d4\u30d5\u30d6\u30d7\u30d8\u30d9\u30da\u30db\u30dc\u30dd": [231, 232, 233, 234, 235, 258, 259], "\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f": 14, "\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831": 3, "\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059": 14, "\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f": 14, "\u30ab\u30ec": [231, 232, 233, 234, 235, 274], "\u30ab\u30ec\u30fc": 299, "\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9": 299, "\u30ab\u30f3\u30b8": 201, "\u30ab\u30f3\u30de": 122, "\u30ab\u30fc": [44, 231, 232, 233, 234, 235], "\u30ab\u30fc\u30ad\u30fc\u30af\u30fc\u30b1\u30fc\u30b3\u30fc": [231, 232, 233, 234, 235], "\u30ac": [44, 231, 232, 233, 234, 235], "\u30ac\u30a2": [44, 231, 232, 233, 234, 235], "\u30ac\u30ae\u30b2\u30b4": [231, 232, 233, 234, 235], "\u30ac\u30c6\u30de\u30e9\u5171\u548c\u56fd": 44, "\u30ac\u30fc": [44, 231, 232, 233, 234, 235], "\u30ac\u30fc\u30b8\u30e4\u30fc\u30d0\u30fc\u30c9": 44, "\u30ac\u30fc\u30ba\u30a3\u30e4\u30fc\u30d0\u30fc\u30c9": 44, "\u30ad": [44, 231, 232, 233, 234, 235], "\u30ad\u30a4": [44, 231, 232, 233, 234, 235], "\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0": 36, "\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u30ad\u30fc": [44, 175, 231, 232, 233, 234, 235], "\u30ad\u30fc\u304c": 175, "\u30ad\u30fc\u30ef\u30fc\u30c9": 38, "\u30ae": [44, 231, 232, 233, 234, 235], "\u30ae\u30a4": [44, 231, 232, 233, 234, 235], "\u30ae\u30fc": [44, 231, 232, 233, 234, 235], "\u30af": [44, 231, 232, 233, 234, 235], "\u30af\u30a6": [44, 231, 232, 233, 234, 235], "\u30af\u30a8\u30ea\u306e": 301, "\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059": 301, "\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 174, "\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b": [3, 4, 22], "\u30af\u30a8\u30ea\u306e\u5b9f\u73fe": [3, 4, 22], "\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr": 11, "\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528": 36, "\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": 3, "\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3082\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306e\u305d\u308c\u305e\u308c\u306b\u5bfe\u5fdc\u3059\u308b\u5f62\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059": 11, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8": 175, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9\u306a\u3089\u3070groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u63a5\u7d9a\u3092\u5207\u308a\u307e\u3059": 147, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e": 37, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a": 175, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u30af\u30fc": [44, 231, 232, 233, 234, 235], "\u30b0": [44, 231, 232, 233, 234, 235], "\u30b0\u30a1": 44, "\u30b0\u30a1\u30b0\u30a3\u30b0\u30a7\u30b0\u30a9": [231, 232, 233, 234, 235], "\u30b0\u30a1\u30c6\u30de\u30e9\u5171\u548c\u56fd": 44, "\u30b0\u30a3": 44, "\u30b0\u30a6": [44, 231, 232, 233, 234, 235], "\u30b0\u30a7": 44, "\u30b0\u30a9": 44, "\u30b0\u30e9\u30e0": 275, "\u30b0\u30eb\u30fc\u30d7\u5316": 89, "\u30b0\u30eb\u30fc\u30d7\u5316\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u304c": 89, "\u30b0\u30eb\u30fc\u30d7\u5316\u51e6\u7406\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e_nsubrecs\u306b\u8a18\u9332\u3055\u308c\u307e\u3059": 89, "\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066": 89, "\u30b0\u30fc": [44, 231, 232, 233, 234, 235], "\u30b1": [44, 231, 232, 233, 234, 235], "\u30b1\u30a8": [44, 231, 232, 233, 234, 235], "\u30b1\u30fc": [44, 231, 232, 233, 234, 235], "\u30b2": [44, 231, 232, 233, 234, 235], "\u30b2\u30a8": [44, 231, 232, 233, 234, 235], "\u30b2\u30fc": [44, 231, 232, 233, 234, 235], "\u30b3": [44, 231, 232, 233, 234, 235], "\u30b3\u30a6": [44, 231, 232, 233, 234, 235], "\u30b3\u30aa": [44, 231, 232, 233, 234, 235], "\u30b3\u30de\u30f3\u30c9\u304cquery\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u3063\u3066\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u3059\u308b\u306e\u304b\u3092\u8aac\u660e\u3057\u307e\u3059": 299, "\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4": 37, "\u30b3\u30de\u30f3\u30c9\u3067\u306f": 12, "\u30b3\u30de\u30f3\u30c9\u3067\u30ad\u30fc\u304cshorttext\u4ee5\u5916\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3067\u304d\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63": 37, "\u30b3\u30de\u30f3\u30c9\u3067\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u304c\u58ca\u308c\u308b\u5834\u5408\u306f\u30a8\u30e9\u30fc": 36, "\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f": 282, "\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059": 282, "\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0": 37, "\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e": 37, "\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059": 11, "\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c": 175, "\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0": 37, "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070": 93, "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5\u306fgroonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u3068\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u304c\u3042\u308a\u307e\u3059": 93, "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f": 93, "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a": 93, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059": 176, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f": 176, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga": 176, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057": 176, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059": 176, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057": 176, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059": 176, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059": 176, "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh": 12, "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9": 176, "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u3068set_port\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408": 176, "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f": 175, "\u30b3\u30de\u30f3\u30c9\u540d": 175, "\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f": 175, "\u30b3\u30df\u30c3\u30c8": 12, "\u30b3\u30e1\u30f3\u30c8\u884c": 176, "\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc": 37, "\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0": 12, "\u30b3\u30fc": [44, 231, 232, 233, 234, 235], "\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u6e21\u3055\u308c\u308barg\u3068\u3092\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "\u30b4": [44, 231, 232, 233, 234, 235], "\u30b4\u30a6": [44, 231, 232, 233, 234, 235], "\u30b4\u30aa": [44, 231, 232, 233, 234, 235], "\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059": 108, "\u30b4\u30fc": [44, 231, 232, 233, 234, 235], "\u30b5": [44, 231, 232, 233, 234, 235], "\u30b5\u30a2": [44, 231, 232, 233, 234, 235], "\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0": 37, "\u30b5\u30dd\u30fc\u30c8\u7bc4\u56f2\u5916\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a": 93, "\u30b5\u30f3": 274, "\u30b5\u30f3\u30d7\u30eb\u5185\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u5b9f\u884c\u5c5e\u6027\u304c\u3064\u304b\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": 38, "\u30b5\u30fc": [44, 231, 232, 233, 234, 235], "\u30b5\u30fc\u30d0": 175, "\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059": 176, "\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b": 176, "\u30b5\u30fc\u30d0\u304c\u81ea\u52d5\u7684\u306b\u306f\u8d77\u52d5\u3055\u308c\u306a\u3044\u306e\u3082\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u5834\u5408\u3068\u540c\u69d8\u3067\u3059": 176, "\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057": 175, "\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u30b5\u30fc\u30d0\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u5229\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f": 176, "\u30b5\u30fc\u30d0\u3092\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308b\u5834\u5408\u3082\u3053\u306e\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5229\u7528\u3055\u308c\u307e\u3059": 176, "\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059": 175, "\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u3084\u5b9f\u884c\u901f\u5ea6\u6e2c\u5b9a\u304c\u53ef\u80fd\u3067\u3059": 176, "\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d": 175, "\u30b6": [44, 231, 232, 233, 234, 235], "\u30b6\u30a2": [44, 231, 232, 233, 234, 235], "\u30b6\u30b8\u30bc\u30be": [231, 232, 233, 234, 235], "\u30b6\u30fc": [44, 231, 232, 233, 234, 235], "\u30b7": [44, 231, 232, 233, 234, 235], "\u30b7\u30a4": [44, 231, 232, 233, 234, 235], "\u30b7\u30a7\u30eb\u4e0a": 176, "\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8": 175, "\u30b7\u30fc": [44, 231, 232, 233, 234, 235], "\u30b8": [44, 231, 232, 233, 234, 235], "\u30b8\u30a4": [44, 231, 232, 233, 234, 235], "\u30b8\u30f3\u30d9\u30a4\u30b6\u30e1": 44, "\u30b8\u30fc": [44, 231, 232, 233, 234, 235], "\u30b9": [44, 231, 232, 233, 234, 235], "\u30b9\u3092\u9589\u3058\u308b\u3068\u95a2\u9023\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u9589\u3058\u3089\u308c\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63": 39, "\u30b9\u30a6": [44, 231, 232, 233, 234, 235], "\u30b9\u30af\u30ea\u30d7\u30c8\u306f\u4ee5\u4e0b\u306e\u51e6\u7406\u3092\u5b9f\u884c\u3057\u307e\u3059": 12, "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u306f\u7279\u6b8a\u30b3\u30de\u30f3\u30c9\u3092\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059": 176, "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059": 176, "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga": 176, "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f": 176, "\u30b9\u30af\u30ea\u30d7\u30c8\u540d": 176, "\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b": 175, "\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f": 175, "\u30b9\u30ec\u30c3\u30c9\u6570": 176, "\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408": 176, "\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068": 176, "\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059": 176, "\u30b9\u30fc": [44, 231, 232, 233, 234, 235], "\u30b9\u30fc\u30d7": 299, "\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc": 299, "\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc": 299, "\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9": 299, "\u30ba": [44, 231, 232, 233, 234, 235], "\u30ba\u30a1": 44, "\u30ba\u30a1\u30ba\u30a3\u30ba\u30a7\u30ba\u30a9": [231, 232, 233, 234, 235], "\u30ba\u30a3": 44, "\u30ba\u30a6": [44, 231, 232, 233, 234, 235], "\u30ba\u30a7": 44, "\u30ba\u30a9": 44, "\u30ba\u30fc": [44, 231, 232, 233, 234, 235], "\u30bb": [44, 231, 232, 233, 234, 235], "\u30bb\u30a8": [44, 231, 232, 233, 234, 235], "\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059": 108, "\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86": 147, "\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga": 176, "\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066": 176, "\u30bb\u30fc": [44, 231, 232, 233, 234, 235], "\u30bb\u30fc\u30d6\u30eb": 53, "\u30bb\u30fc\u30f4\u30a7\u30eb": 53, "\u30bb\u30fc\u30f4\u30eb": 53, "\u30bc": [44, 231, 232, 233, 234, 235], "\u30bc\u30a8": [44, 231, 232, 233, 234, 235], "\u30bc\u30fc": [44, 231, 232, 233, 234, 235], "\u30bd": [44, 231, 232, 233, 234, 235], "\u30bd\u30a6": [44, 231, 232, 233, 234, 235], "\u30bd\u30aa": [44, 231, 232, 233, 234, 235], "\u30bd\u30fc": [44, 231, 232, 233, 234, 235], "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 14, "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u305f\u3081\u306b\u306f": 14, "\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059": 156, "\u30be": [44, 231, 232, 233, 234, 235], "\u30be\u30a6": [44, 231, 232, 233, 234, 235], "\u30be\u30aa": [44, 231, 232, 233, 234, 235], "\u30be\u30fc": [44, 231, 232, 233, 234, 235], "\u30bf": [44, 231, 232, 233, 234, 235], "\u30bf\u30a2": [44, 231, 232, 233, 234, 235], "\u30bf\u30b0\u3092push\u3057\u307e\u3059": 12, "\u30bf\u30b0\u3092\u8a2d\u5b9a\u3057\u3066\u304b\u3089\u554f\u984c\u304c\u767a\u899a\u3059\u308b\u3068": 12, "\u30bf\u30b0\u3092\u8a2d\u5b9a\u3059\u308b\u3068": 12, "\u30bf\u30b0\u3092\u8a2d\u5b9a\u3059\u308b\u524d\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u78ba\u8a8d\u3057\u307e\u3059": 12, "\u30bf\u30fc": [44, 231, 232, 233, 234, 235], "\u30c0": [44, 231, 232, 233, 234, 235], "\u30c0\u30a2": [44, 231, 232, 233, 234, 235], "\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u3092": 12, "\u30c0\u30e1\u30fc\u30b8": 301, "\u30c0\u30fc": [44, 231, 232, 233, 234, 235], "\u30c1": [44, 231, 232, 233, 234, 235], "\u30c1\u30a4": [44, 231, 232, 233, 234, 235], "\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u3088\u308a\u8fd4\u3055\u308c\u308b\u5024\u304c\u5909\u308f\u308a\u307e\u3059": 108, "\u30c1\u30b8\u30df": 44, "\u30c1\u30c2\u30df": 44, "\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059": 108, "\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059": 108, "\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059": 108, "\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba": 108, "\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63": 39, "\u30c1\u30fc": [44, 231, 232, 233, 234, 235], "\u30c2": [44, 231, 232, 233, 234, 235], "\u30c2\u30a4": [44, 231, 232, 233, 234, 235], "\u30c2\u30fc": [44, 231, 232, 233, 234, 235], "\u30c4": [44, 231, 232, 233, 234, 235], "\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb": 12, "\u30c4\u30a6": [44, 231, 232, 233, 234, 235], "\u30c4\u30ba\u30e9": 44, "\u30c4\u30fc": [44, 231, 232, 233, 234, 235], "\u30c5": [44, 231, 232, 233, 234, 235], "\u30c5\u30a1": 44, "\u30c5\u30a1\u30c5\u30a3\u30c5\u30a7\u30c5\u30a9": [231, 232, 233, 234, 235], "\u30c5\u30a3": 44, "\u30c5\u30a6": [44, 231, 232, 233, 234, 235], "\u30c5\u30a7": 44, "\u30c5\u30a9": 44, "\u30c5\u30fc": [44, 231, 232, 233, 234, 235], "\u30c6": [44, 231, 232, 233, 234, 235], "\u30c6\u30a8": [44, 231, 232, 233, 234, 235], "\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316": 37, "\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u306a\u3044\u90e8\u5206\u306e\u7de8\u96c6\u306f\u614e\u91cd\u306b\u884c\u3063\u3066\u304f\u3060\u3055\u3044": 14, "\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059": 14, "\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63": 37, "\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059": 14, "\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066": 14, "\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c": 3, "\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059": 14, "\u30c6\u30b9\u30c8\u306f": 14, "\u30c6\u30b9\u30c8\u3084\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f5c\u6210\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u3089": 12, "\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 14, "\u30c6\u30b9\u30c8\u65b9\u6cd5": [3, 4, 6, 7, 8, 22], "\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9": 3, "\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059": 301, "\u30c6\u30fc": [44, 231, 232, 233, 234, 235], "\u30c6\u30fc\u30d6\u30eb": 109, "\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9": 119, "\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059": 108, "\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059": 175, "\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059": 175, "\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059": 175, "\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059": 175, "\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664": 113, "\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059": 175, "\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027": 162, "\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d": 162, "\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059": 89, "\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid": 162, "\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059": 175, "\u30c6\u30fc\u30d6\u30eb\u540d": [109, 120, 162], "\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059": 162, "\u30c6\u30fc\u30d6\u30eb\u578b\u306f": 282, "\u30c6\u30fc\u30d6\u30eb\u60c5\u58311": 162, "\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n": 162, "\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059": 162, "\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1": 162, "\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn": 162, "\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1": 162, "\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn": 162, "\u30c7": [44, 231, 232, 233, 234, 235], "\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528": 36, "\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059": 12, "\u30c7\u30a8": [44, 231, 232, 233, 234, 235], "\u30c7\u30b9": 274, "\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081": 108, "\u30c7\u30d5\u30a9\u30eb\u30c8": 11, "\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f": [175, 176], "\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093": 175, "\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093": 175, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059": 93, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0": 36, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306f": 175, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059": 175, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059": 175, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp": 175, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059": 175, "\u30c7\u30d5\u30a9\u30eb\u30c8\u5024": 282, "\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f": [174, 175], "\u30c7\u30ea\u30fc": 44, "\u30c7\u30fc": [44, 231, 232, 233, 234, 235], "\u30c7\u30fc\u30bf\u306b\u4e0d\u6574\u5408\u304c\u767a\u751f\u3059\u308b\u5834\u5408\u306f\u30c7\u30fc\u30bf\u3092\u524a\u9664\u3057\u306a\u3044\u3088\u3046\u306b\u5909\u66f4": 36, "\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0": 36, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9": 109, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0": 120, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059": 176, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059": 175, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092groonga\u306e\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u547c\u3073\u51fa\u3057\u5f62\u5f0f\u3067\u51fa\u529b\u3057\u307e\u3059": 122, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u7ba1\u7406\u3059\u308b\u305f\u3081\u306e\u6c4e\u7528\u7684\u306a\u30da\u30fc\u30b8\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u304c": 175, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u4e0a\u306b\u5b9a\u7fa9\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u3084\u7d22\u5f15\u306a\u3069\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u53ef\u80fd\u306a\u9650\u308a\u9ad8\u901f\u306b\u6307\u5b9a\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3057\u3088\u3046\u3068\u3057\u307e\u3059": 11, "\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0": 36, "\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc": 36, "\u30c7\u30fc\u30e2\u30f3": 175, "\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f": 36, "\u30c8": [44, 231, 232, 233, 234, 235], "\u30c8\u30a6": [44, 231, 232, 233, 234, 235], "\u30c8\u30aa": [44, 231, 232, 233, 234, 235], "\u30c8\u30e2\u3061\u3083\u3093": 307, "\u30c8\u30fc": [44, 231, 232, 233, 234, 235], "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b": [22, 300], "\u30c9": [44, 231, 232, 233, 234, 235], "\u30c9\u30a6": [44, 231, 232, 233, 234, 235], "\u30c9\u30aa": [44, 231, 232, 233, 234, 235], "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059": 12, "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63": 37, "\u30c9\u30fc": [44, 231, 232, 233, 234, 235], "\u30ca": [44, 231, 232, 233, 234, 235], "\u30ca\u30a2": [44, 231, 232, 233, 234, 235], "\u30ca\u30de\u30a8": [231, 232, 233, 234, 235, 274], "\u30ca\u30fc": [44, 231, 232, 233, 234, 235], "\u30cb": [44, 231, 232, 233, 234, 235], "\u30cb\u30a4": [44, 231, 232, 233, 234, 235], "\u30cb\u30b3\u30b9\u30ab\u30b6\u30f3\u30b6\u30ad\u30b9": 44, "\u30cb\u30b3\u30b9\u30ab\u30b6\u30f3\u30c5\u30a1\u30ad\u30b9\u56fd\u969b\u7a7a\u6e2f": 44, "\u30cb\u30c3\u30dd\u30f3": [201, 240, 250], "\u30cb\u30db\u30f3": [201, 240, 250], "\u30cb\u30db\u30f3\u30b4": 250, "\u30cb\u30db\u30f3\u30b8\u30f3": 250, "\u30cb\u30fc": [44, 231, 232, 233, 234, 235], "\u30cc": [44, 231, 232, 233, 234, 235], "\u30cc\u30a6": [44, 231, 232, 233, 234, 235], "\u30cc\u30fc": [44, 231, 232, 233, 234, 235], "\u30cd": [44, 231, 232, 233, 234, 235], "\u30cd\u30a8": [44, 231, 232, 233, 234, 235], "\u30cd\u30fc": [44, 231, 232, 233, 234, 235], "\u30ce": [44, 231, 232, 233, 234, 235, 274], "\u30ce\u30a6": [44, 231, 232, 233, 234, 235], "\u30ce\u30aa": [44, 231, 232, 233, 234, 235], "\u30ce\u30fc": [44, 231, 232, 233, 234, 235], "\u30cf": [44, 231, 232, 233, 234, 235, 274], "\u30cf\u30a2": [44, 231, 232, 233, 234, 235], "\u30cf\u30b9\u30ce\u30ab\u30c5\u30e9": 44, "\u30cf\u30ba": 274, "\u30cf\u30fc": [44, 231, 232, 233, 234, 235], "\u30d0": [44, 231, 232, 233, 234, 235], "\u30d0\u30a2": [44, 231, 232, 233, 234, 235], "\u30d0\u30a4\u30aa\u30ea\u30f3": [53, 231, 235], "\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b": 301, "\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u6587\u5b57\u81ea\u8eab\u3092\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f": 175, "\u30d0\u30c3\u30d5\u30a1id\u3067\u3059": 108, "\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid": 108, "\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059": 108, "\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b": 108, "\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1": 108, "\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2": 108, "\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059": 108, "\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059": 108, "\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059": 108, "\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba": 108, "\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061": 108, "\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059": 108, "\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059": 108, "\u30d0\u30d3\u30d6\u30d9\u30dc": [53, 231, 232, 233, 234, 235, 258, 259], "\u30d0\u30d3\u30d6\u30d9\u30dc\u30d6": [231, 232, 233, 234, 235, 258, 259], "\u30d0\u30fc": [44, 231, 232, 233, 234, 235], "\u30d0\u30fc\u30b8\u30e7\u30f3": 12, "\u30d0\u30fc\u30b8\u30e7\u30f30\u7cfb\u306e\u304a\u77e5\u3089\u305b": 35, "\u30d0\u30fc\u30b8\u30e7\u30f31": 35, "\u30d0\u30fc\u30b8\u30e7\u30f3\u4e00\u89a7\u306e\u4e0a\u306b\u3042\u308b": 12, "\u30d0\u30fc\u30c1\u30e4\u30eb": 44, "\u30d1": [44, 231, 232, 233, 234, 235], "\u30d1\u30a2": [44, 231, 232, 233, 234, 235], "\u30d1\u30b8\u30e7\u30f3": 44, "\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d": 12, "\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u306b\u5fc5\u8981\u306a\u79d8\u5bc6\u9375\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u306b\u3064\u3044\u3066\u306f": 12, "\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi": 37, "\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63": 37, "\u30d1\u30c3\u30b1\u30fc\u30b8\u30f3\u30b0\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059": 12, "\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a": 39, "\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059": 12, "\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059": 174, "\u30d1\u30fc": [44, 231, 232, 233, 234, 235], "\u30d2": [44, 231, 232, 233, 234, 235], "\u30d2\u30a4": [44, 231, 232, 233, 234, 235], "\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u8ffd\u52a0\u3057\u307e\u3059": 11, "\u30d2\u30fc": [44, 231, 232, 233, 234, 235], "\u30d3": [44, 231, 232, 233, 234, 235], "\u30d3\u30a4": [44, 231, 232, 233, 234, 235], "\u30d3\u30eb\u30c9\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u306f\u307e\u3060\u672a\u7f72\u540d\u306a\u306e\u3067": 12, "\u30d3\u30eb\u30c9\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u306f\u672a\u7f72\u540d\u306a\u306e\u3067": 12, "\u30d3\u30eb\u30c9\u306b\u6210\u529f\u3059\u308b\u3068": 12, "\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f": 12, "\u30d3\u30eb\u30c9\u74b0\u5883\u306f": 12, "\u30d3\u30eb\u30c9\u7d50\u679c\u304c\u30e1\u30fc\u30eb\u3067\u901a\u77e5\u3055\u308c\u307e\u3059": 12, "\u30d3\u30fc": [44, 231, 232, 233, 234, 235], "\u30d4": [44, 231, 232, 233, 234, 235], "\u30d4\u30a4": [44, 231, 232, 233, 234, 235], "\u30d4\u30fc": [44, 231, 232, 233, 234, 235], "\u30d5": [44, 231, 232, 233, 234, 235], "\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b": 39, "\u30d5\u30a6": [44, 231, 232, 233, 234, 235], "\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044": 108, "\u30d5\u30e9\u30b0\u3092\u6570\u5024\u3067\u306f\u306a\u304f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u5909\u66f4": 36, "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0": 36, "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570": 120, "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3059": 120, "\u30d5\u30fc": [44, 231, 232, 233, 234, 235], "\u30d6": [44, 53, 231, 232, 233, 234, 235, 258, 259], "\u30d6\u30a2\u30fc\u30c1\u30e4\u30eb": 44, "\u30d6\u30a6": [44, 231, 232, 233, 234, 235], "\u30d6\u30d6\u30d6\u30d6\u30d6\u30d6": [231, 232, 233, 234, 235, 258, 259], "\u30d6\u30e9\u30f3\u30c1\u304b\u3089": 12, "\u30d6\u30e9\u30f3\u30c1\u306e\u4f5c\u6210": 12, "\u30d6\u30e9\u30f3\u30c1\u3092push": 12, "\u30d6\u30e9\u30f3\u30c1\u3092\u672c\u5bb6\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u306e": 12, "\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea\u306a\u3069\u3092\u3082\u3068\u306b": 12, "\u30d6\u30fc": [44, 231, 232, 233, 234, 235], "\u30d7": [44, 231, 232, 233, 234, 235], "\u30d7\u30a6": [44, 231, 232, 233, 234, 235], "\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4": 37, "\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f": 38, "\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5": 14, "\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u304c\u30de\u30fc\u30b8\u3055\u308c\u308b\u3068": 12, "\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u4f5c\u6210\u3057\u307e\u3059": 12, "\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u7528\u306e\u30d6\u30e9\u30f3\u30c1\u306e\u4f5c\u6210\u3092\u3057\u307e\u3059": 12, "\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059": 93, "\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059": 93, "\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059": 175, "\u30d7\u30fc": [44, 231, 232, 233, 234, 235], "\u30d8": [44, 231, 232, 233, 234, 235], "\u30d8\u30a8": [44, 231, 232, 233, 234, 235], "\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059": 175, "\u30d8\u30fc": [44, 231, 232, 233, 234, 235], "\u30d9": [44, 231, 232, 233, 234, 235], "\u30d9\u30a8": [44, 231, 232, 233, 234, 235], "\u30d9\u30af\u30bf\u306egeopoint\u306e\u51fa\u529b\u306b\u5bfe\u5fdc": 36, "\u30d9\u30af\u30bf\u306e\u5024\u3092": 37, "\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63": 37, "\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 282, "\u30d9\u30fc": [44, 231, 232, 233, 234, 235], "\u30da": [44, 231, 232, 233, 234, 235], "\u30da\u30a8": [44, 231, 232, 233, 234, 235], "\u30da\u30fc": [44, 231, 232, 233, 234, 235], "\u30db": [44, 231, 232, 233, 234, 235], "\u30db\u30a6": [44, 231, 232, 233, 234, 235], "\u30db\u30a6\u30b8\u30ed\u30b6\u30e1": 44, "\u30db\u30aa": [44, 231, 232, 233, 234, 235], "\u30db\u30aa\u30b8\u30ed\u30b6\u30e1": 44, "\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408": 176, "\u30db\u30b9\u30c8\u540d\u3068": 176, "\u30db\u30fc": [44, 231, 232, 233, 234, 235], "\u30dc": [44, 231, 232, 233, 234, 235], "\u30dc\u30a6": [44, 231, 232, 233, 234, 235], "\u30dc\u30aa": [44, 231, 232, 233, 234, 235], "\u30dc\u30fc": [44, 231, 232, 233, 234, 235], "\u30dd": [44, 231, 232, 233, 234, 235], "\u30dd\u30a6": [44, 231, 232, 233, 234, 235], "\u30dd\u30aa": [44, 231, 232, 233, 234, 235], "\u30dd\u30fc": [44, 231, 232, 233, 234, 235], "\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f": [174, 175], "\u30de": [44, 231, 232, 233, 234, 235], "\u30de\u30a2": [44, 231, 232, 233, 234, 235], "\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082": 113, "\u30de\u30fc": [44, 231, 232, 233, 234, 235], "\u30df": [44, 231, 232, 233, 234, 235], "\u30df\u30a4": [44, 231, 232, 233, 234, 235], "\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6": 282, "\u30df\u30fc": [44, 231, 232, 233, 234, 235], "\u30e0": [44, 231, 232, 233, 234, 235], "\u30e0\u30a6": [44, 231, 232, 233, 234, 235], "\u30e0\u30fc": [44, 231, 232, 233, 234, 235], "\u30e1": [44, 231, 232, 233, 234, 235], "\u30e1\u30a8": [44, 231, 232, 233, 234, 235], "\u30e1\u30a8\u30e1\u30a8": 44, "\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3": 37, "\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u306e\u4fee\u6b63": 36, "\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63": [37, 39], "\u30e1\u30fc": [44, 231, 232, 233, 234, 235], "\u30e1\u30fc\u30c8\u30eb": 189, "\u30e1\u30fc\u30e1\u30fc": 44, "\u30e2": [44, 231, 232, 233, 234, 235], "\u30e2\u30a6": [44, 231, 232, 233, 234, 235], "\u30e2\u30aa": [44, 231, 232, 233, 234, 235], "\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u30e2\u30fc": [44, 231, 232, 233, 234, 235], "\u30e3": [44, 231, 232, 233, 234, 235], "\u30e3\u30a2": [44, 231, 232, 233, 234, 235], "\u30e3\u30fc": [44, 231, 232, 233, 234, 235], "\u30e4": [44, 231, 232, 233, 234, 235], "\u30e4\u30a2": [44, 231, 232, 233, 234, 235], "\u30e4\u30de\u30c0": [231, 232, 233, 234, 235, 274], "\u30e4\u30fc": [44, 231, 232, 233, 234, 235], "\u30e5": [44, 231, 232, 233, 234, 235], "\u30e5\u30a6": [44, 231, 232, 233, 234, 235], "\u30e5\u30fc": [44, 231, 232, 233, 234, 235], "\u30e6": [44, 231, 232, 233, 234, 235], "\u30e6\u30a6": [44, 231, 232, 233, 234, 235], "\u30e6\u30fc": [44, 231, 232, 233, 234, 235], "\u30e6\u30fc\u30b6\u304cc\u8a00\u8a9e\u3067\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u95a2\u4fc2\u5f0f\u3068\u3057\u3066\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 11, "\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4": 12, "\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd": [3, 4, 22, 51], "\u30e6\u30fc\u30b6\u30fc\u306b\u3042\u307e\u308a\u8ca0\u62c5\u3092\u611f\u3058\u3055\u305b\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u3068\u826f\u3044\u3067\u3059": 10, "\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 10, "\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059": 10, "\u30e6\u30fc\u30b6\u540d": 176, "\u30e7": [44, 231, 232, 233, 234, 235], "\u30e7\u30a6": 44, "\u30e7\u30aa": [44, 231, 232, 233, 234, 235], "\u30e7\u30fc": [44, 231, 232, 233, 234, 235], "\u30e8": [44, 231, 232, 233, 234, 235], "\u30e8\u30a6": [44, 231, 232, 233, 234, 235], "\u30e8\u30aa": [44, 231, 232, 233, 234, 235], "\u30e8\u30fc": [44, 231, 232, 233, 234, 235], "\u30e9": [44, 231, 232, 233, 234, 235], "\u30e9\u30a2": [44, 231, 232, 233, 234, 235], "\u30e9\u30f3\u30d7": 44, "\u30e9\u30fc": [44, 231, 232, 233, 234, 235], "\u30ea": [44, 231, 232, 233, 234, 235], "\u30ea\u30a4": [44, 231, 232, 233, 234, 235], "\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059": 174, "\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059": 174, "\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 174, "\u30ea\u30dd\u30b8\u30c8\u30ea\u306e": 12, "\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306e\u4e2d\u306edockerfile\u3092\u66f4\u65b0\u3057\u307e\u3059": 12, "\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306e\u540c\u671f": 12, "\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306e\u66f4\u65b0": 12, "\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb": 12, "\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f": 12, "\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f": 10, "\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a": 10, "\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066": 12, "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6295\u7a3f\u3057\u307e\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089": 12, "\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9": 12, "\u30ea\u30ea\u30fc\u30b9\u524d\u306bubuntu\u5411\u3051\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u3067\u304d\u308b\u304b\u4ee5\u4e0b\u306e\u624b\u9806\u3067\u78ba\u8a8d\u3057\u307e\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9": 12, "\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af": 12, "\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u304claunchpad": 12, "\u30ea\u30ea\u30fc\u30b9\u624b\u9806": [3, 4, 22, 51], "\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\u3055\u308c\u305f\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u5f8c\u306b\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u884c\u3044\u307e\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u5411\u3051\u306e\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u306e1\u884c\u76ee\u306b\u8a18\u8f09\u3057\u3066\u3042\u308a\u307e\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u65e5": 12, "\u30ea\u30ea\u30fc\u30b9\u6642\u3068\u958b\u767a\u6642\u3067\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u5206\u3051\u305a\u306b\u4f5c\u696d\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u304c": 12, "\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30af\u30ea\u30fc\u30f3\u306a\u72b6\u614b\u3067\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b": 12, "\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bf\u30b0\u3092\u6253\u3064\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bf\u30b0\u3092\u8a2d\u5b9a\u3059\u308b\u524d\u306b": 12, "\u30ea\u30f3\u30af\u306e\u5148\u3067": 12, "\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b": 12, "\u30ea\u30f3\u30af\u3092\u8fbf\u308b\u3068": 12, "\u30ea\u30f3\u30b4\u3067\u3059": 272, "\u30ea\u30f3\u30b4\u3067\u3059\u304b": 272, "\u30ea\u30fc": [44, 231, 232, 233, 234, 235], "\u30eb": [44, 231, 232, 233, 234, 235], "\u30eb\u30a6": [44, 231, 232, 233, 234, 235], "\u30eb\u30fc": [44, 231, 232, 233, 234, 235], "\u30ec": [44, 231, 232, 233, 234, 235], "\u30ec\u30a8": [44, 231, 232, 233, 234, 235], "\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059": 11, "\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059": 11, "\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093": 89, "\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059": 89, "\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059": 89, "\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059": 89, "\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0": 37, "\u30ec\u30fc": [44, 231, 232, 233, 234, 235], "\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2": 36, "\u30ed": [44, 231, 232, 233, 234, 235], "\u30ed\u30a6": [44, 231, 232, 233, 234, 235], "\u30ed\u30aa": [44, 231, 232, 233, 234, 235], "\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059": 130, "\u30ed\u30b0\u306b\u306f\u6b8b\u308b": 39, "\u30ed\u30b0\u306b\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7\u306e\u79d2\u3088\u308a\u5c0f\u3055\u3044\u5024\u304c\u5e38\u306b0\u306b\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63": 38, "\u30ed\u30b0\u3092": 12, "\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u30ed\u30b0\u30a4\u30f3\u53ef\u80fd\u3067\u3042\u308b\u304b\u306e\u78ba\u8a8d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u884c\u3044\u307e\u3059": 12, "\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b": 37, "\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059": 176, "\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp": 176, "\u30ed\u30b0\u51fa\u529b": 130, "\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059": 175, "\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 175, "\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059": 175, "\u30ed\u30fc": [44, 231, 232, 233, 234, 235], "\u30ed\u30fc\u30de\u30b8": [201, 240], "\u30ed\u30fc\u30de\u5b57": 201, "\u30ed\u30fc\u30de\u5b57\u5165\u529b": 240, "\u30ee": [44, 231, 232, 233, 234, 235], "\u30ee\u30a2": [44, 231, 232, 233, 234, 235], "\u30ee\u30fc": [44, 231, 232, 233, 234, 235], "\u30ef": [44, 231, 232, 233, 234, 235], "\u30ef\u30a2": [44, 231, 232, 233, 234, 235], "\u30ef\u30fc": [44, 231, 232, 233, 234, 235], "\u30f0": [44, 231, 232, 233, 234, 235], "\u30f0\u30a4": [44, 231, 232, 233, 234, 235], "\u30f0\u30fc": [44, 231, 232, 233, 234, 235], "\u30f1": [44, 231, 232, 233, 234, 235], "\u30f1\u30a6": [44, 231, 232, 233, 234, 235], "\u30f1\u30fc": [44, 231, 232, 233, 234, 235], "\u30f2": [44, 231, 232, 233, 234, 235], "\u30f2\u30aa": [44, 231, 232, 233, 234, 235], "\u30f2\u30fc": [44, 231, 232, 233, 234, 235], "\u30f3": [44, 231, 232, 233, 234, 235], "\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059": 120, "\u30f3\u30f3": [44, 231, 232, 233, 234, 235], "\u30f3\u30fc": [44, 231, 232, 233, 234, 235], "\u30f4": [44, 231, 232, 233, 234, 235], "\u30f4\u30a1": 44, "\u30f4\u30a1\u30a4\u30aa\u30ea\u30f3": [53, 231, 235], "\u30f4\u30a1\u30f4\u30a3\u30f4\u30a5\u30f4\u30a7\u30f4\u30a9": [53, 231, 232, 233, 234, 235, 258, 259], "\u30f4\u30a1\u30f4\u30a3\u30f4\u30f4\u30a7\u30f4\u30a9": [53, 54, 231, 232, 233, 234, 235, 258, 259], "\u30f4\u30a1\u30f4\u30a3\u30f4\u30f4\u30a7\u30f4\u30a9\u30f4": [231, 232, 233, 234, 235, 258, 259], "\u30f4\u30a1\u30fc\u30c1\u30e3\u30eb": 44, "\u30f4\u30a2": 44, "\u30f4\u30a6": [44, 231, 232, 233, 234, 235], "\u30f4\u30a7\u30eb\u30c7": 44, "\u30f4\u30fc": [44, 231, 232, 233, 234, 235], "\u30f5": [44, 231, 232, 233, 234, 235], "\u30f5\u30a2": [44, 231, 232, 233, 234, 235], "\u30f5\u30fc": [44, 231, 232, 233, 234, 235], "\u30f6": [44, 231, 232, 233, 234, 235], "\u30f6\u30a8": [44, 231, 232, 233, 234, 235], "\u30f6\u30fc": [44, 231, 232, 233, 234, 235], "\u30f7": [44, 231, 232, 233, 234, 235], "\u30f7\u30a2": [44, 231, 232, 233, 234, 235], "\u30f7\u30fc": [44, 231, 232, 233, 234, 235], "\u30f8": [44, 231, 232, 233, 234, 235], "\u30f8\u30a4": [44, 231, 232, 233, 234, 235], "\u30f8\u30fc": [44, 231, 232, 233, 234, 235], "\u30f9": [44, 231, 232, 233, 234, 235], "\u30f9\u30a8": [44, 231, 232, 233, 234, 235], "\u30f9\u30fc": [44, 231, 232, 233, 234, 235], "\u30fa": [44, 231, 232, 233, 234, 235], "\u30fa\u30a6": [44, 231, 232, 233, 234, 235], "\u30fa\u30aa": [44, 231, 232, 233, 234, 235], "\u30fa\u30fc": [44, 231, 232, 233, 234, 235], "\u30fc": [231, 232, 233, 234, 235, 258, 259], "\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc": [231, 232, 233, 234, 235, 258, 259], "\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059": 299, "\u4e00\u65b9": 301, "\u4e00\u822c": 274, "\u4e00\u884c\u306b\u8907\u6570\u306egroonga": 176, "\u4e0a\u8a18url\u3092\u53c2\u7167\u3059\u308b\u3068\u308f\u304b\u308b\u3088\u3046\u306b\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306eurl\u3068sha1\u30c1\u30a7\u30c3\u30af\u30b5\u30e0\u3092\u66f4\u65b0\u3057\u307e\u3059": 12, "\u4e0a\u8a18\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067": 12, "\u4e0a\u8a18\u306e\u4f8b\u3067\u306f": 301, "\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059": 176, "\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093": 37, "\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059": 11, "\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059": 108, "\u4e0d\u5b89\u5b9a\u7248\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3067\u30d3\u30eb\u30c9\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304b\u3089": 12, "\u4e0d\u5b89\u5b9a\u7248\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u524a\u9664\u7528\u306e\u30da\u30fc\u30b8": 12, "\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63": 36, "\u4e0d\u6b63\u306a\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u3068\u304d\u306bdump\u3059\u308b\u3068\u843d\u3061\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63": 37, "\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 36, "\u4e0d\u6b63\u306a\u540d\u524d\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d\u3082\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 37, "\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b": 36, "\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 37, "\u4e0e\u3048": 301, "\u4e16\u754c\u6e2c\u5730\u7cfb": 282, "\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19": [189, 190], "\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 11, "\u4e3b\u306b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u58ca\u308c\u305f\u5834\u5408\u306a\u3069\u7570\u5e38\u6642\u306e\u554f\u984c\u89e3\u6c7a\u306e\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059": 108, "\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057": 282, "\u4e3b\u30ad\u30fc\u304c\u6570\u5024\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3067\u306e\u6bd4\u8f03\u6f14\u7b97\u306b\u5bfe\u5fdc": 37, "\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059": 89, "\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059": 89, "\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b": 162, "\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a": 89, "\u4e71\u6570\u3092\u751f\u6210\u3059\u308b": 204, "\u4e8c": 240, "\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u540c\u6642\u306b\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 93, "\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4": 12, "\u4eac\u90fd": [44, 274, 299, 301], "\u4eba\u540d": [231, 232, 233, 234, 235, 274], "\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059": 93, "\u4ed6\u306e\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306b\u4f9d\u983c\u3057\u3066": 12, "\u4ed6\u306e\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306b\u4f9d\u983c\u3057\u3066\u7f72\u540d\u7528\u306e\u9375\u3092\u6697\u53f7\u5316\u3057\u3066\u3082\u3089\u3063\u3066\u4e0b\u3055\u3044": 12, "\u4ed8\u8d85\u7fa4": 52, "\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059": 113, "\u4ee3\u540d\u8a5e": [53, 274], "\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059": 12, "\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070": 176, "\u4ee5\u4e0b": 176, "\u4ee5\u4e0b\u3067": 301, "\u4ee5\u4e0b\u306bgroonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3092\u884c\u3046\u305f\u3081\u306b\u4e8b\u524d\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 12, "\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059": 11, "\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059": 12, "\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059": 11, "\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f": 299, "\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304a\u3044\u3066\u4e0b\u3055\u3044": 12, "\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u3092\u884c\u3046\u524d\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059": 299, "\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u524d\u306b\u3059\u3067\u306b\u95be\u5024\u304c\u8d8a\u3048\u3066\u3044\u308b\u5834\u5408": 301, "\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068": 301, "\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059": 12, "\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306f\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u4e88\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059": 175, "\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u304f\u3060\u3055\u3044": 12, "\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059": 12, "\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059": [12, 14], "\u4ee5\u4e0b\u306e\u30c6\u30b9\u30c8\u304c\u5168\u3066\u30d1\u30b9\u3057\u3066\u3044\u308b\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059": 12, "\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059": 12, "\u4ee5\u4e0b\u306e\u624b\u9806\u3067\u5fc5\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3068": 12, "\u4ee5\u4e0b\u306f": 12, "\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f": 12, "\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8": 175, "\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8": 175, "\u4ee5\u964d\u3092\u7121\u8996": 37, "\u4efb\u610f\u306edb\u540d": 176, "\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u51fa\u529b\u5148\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 176, "\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067": 175, "\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316": 39, "\u4f4d\u7f6e\u60c5\u5831\u306e\u5c0f\u6570\u8868\u8a18\u304b\u3089\u30df\u30ea\u79d2\u3078\u306e\u5909\u63db\u8aa4\u5dee\u304c\u5927\u304d\u3044\u554f\u984c\u3092\u4fee\u6b63": 39, "\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408": 176, "\u4f5c\u6210\u3057\u305f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8\u3078\u3068\u6d41\u3057\u307e\u3059": 12, "\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059": 175, "\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4f8b\u306f\u4ee5\u4e0b\u3092\u4f7f\u7528\u3057\u307e\u3059": 12, "\u4f5c\u696d\u30de\u30b7\u30f3\u4e0a\u306bgroonga\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u4f9d\u5b58\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u4e00\u5f0f\u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 12, "\u4f5c\u696d\u6642\u306b\u306f\u6700\u65b0\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": 12, "\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f": 93, "\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059": 108, "\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059": 108, "\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059": 93, "\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c": 93, "\u4f8b": [12, 22, 36, 300], "\u4f8b\u3048\u3070": [175, 176, 299, 301], "\u4fc2\u52a9\u8a5e": 274, "\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b": 93, "\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c": 301, "\u500b\u4eba\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u306f\u306a\u304f": 12, "\u5024": 175, "\u50241": 175, "\u50242": 175, "\u5024\u304c\u5b58\u5728\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f": 175, "\u5024\u306e\u7bc4\u56f2\u306f1": 89, "\u5065\u4f5c": 307, "\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059": 11, "\u5165\u529b\u30d5\u30a1\u30a4\u30eb": 176, "\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d": 176, "\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059": 89, "\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059": 119, "\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059": 301, "\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30d1\u30c3\u30b1\u30fc\u30b8\u306f\u4ee5\u4e0b\u306eurl\u3067\u78ba\u8a8d\u3067\u304d\u307e\u3059": 12, "\u5185\u8a33\u306f": 301, "\u5185\u90e8\u7684\u306a\u5909\u66f4": 12, "\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059": 189, "\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059": 189, "\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059": 189, "\u5186\u5468\u4e0a\u306e\u70b9\u306e\u4e00\u3064\u306e\u5ea7\u6a19\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059": 189, "\u518d\u5ea6\u30ea\u30ea\u30fc\u30b9\u3059\u308b\u3053\u3068\u306b\u306a\u3063\u3066\u3057\u307e\u3046\u306e\u3067": 12, "\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b": 10, "\u518d\u73fe\u7387\u3088\u308a\u3082\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059": 301, "\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068": 89, "\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408": 176, "\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059": 130, "\u51fa\u529b\u30d5\u30a1\u30a4\u30eb": 176, "\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d": 176, "\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092": 122, "\u5206\u5272": 299, "\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059": 14, "\u521d\u671f\u5024\u306f10\u3067\u3059": 174, "\u5225\u306e\u5f62\u5f0f\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066db_api\u3092\u4f7f\u3063\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u304b\u306f\u30b3\u30de\u30f3\u30c9\u6bce\u306b\u81ea\u7531\u306b\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "\u5229\u7528\u3067\u304d\u308b\u30d0\u30a4\u30b0\u30e9\u30e0\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u4e00\u89a7\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059": 301, "\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067": 10, "\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059": 89, "\u524a\u9664\u3057\u305f\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u304b\u3089id\u9806\u306b\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c": 37, "\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c": 37, "\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059": 113, "\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059": 113, "\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059": 12, "\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092": 12, "\u524d\u63d0\u6761\u4ef6": 3, "\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": 36, "\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059": 301, "\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 37, "\u52a9\u52d5\u8a5e": 274, "\u52a9\u8a5e": 274, "\u52c9": 280, "\u52c9\u5f37": [264, 279], "\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059": 93, "\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059": 122, "\u534a\u5f84": 189, "\u534a\u5f84\u304b\u3089\u306e\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u305f\u3081\u306b\u5730\u5f62\u3092\u3069\u306e\u3088\u3046\u306b\u8fd1\u4f3c\u3059\u308b\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059": 189, "\u5358\u4f4d": 189, "\u5358\u7d14\u306a\u8a08\u7b97\u5f0f\u3067\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u305f\u3081\u9ad8\u901f\u3067\u3059\u304c": 189, "\u539f\u56e0": [22, 300], "\u539f\u56e0\u3092\u7279\u5b9a\u3057\u3066\u4fee\u6b63\u3057\u307e\u3059": 12, "\u53c2\u8003\u307e\u3067\u306b\u904e\u53bb\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3078\u306e\u30ea\u30f3\u30af\u3092\u4ee5\u4e0b\u306b\u793a\u3057\u307e\u3059": 12, "\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059": 176, "\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3059": 10, "\u53e5\u70b9": 274, "\u53f3\u4e0a": 36, "\u53f3\u4e0b": 36, "\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8": 37, "\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066": 176, "\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u6bd4\u8f03\u3057\u307e\u3059": 176, "\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a": 11, "\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest": 176, "\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059": 108, "\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070": 156, "\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059": 89, "\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059": 176, "\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059": 108, "\u540c\u3058\u3067\u3059": 176, "\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082": 93, "\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u3082\u4e00\u7dd2\u306b\u6307\u5b9a\u3059\u308b\u30af\u30a8\u30ea\u306b\u3088\u3063\u3066\u306f\u5168\u6587\u691c\u7d22\u306e\u7d50\u679c\u304c\u7570\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 301, "\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b": [22, 300], "\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089": 93, "\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408": 176, "\u540c\u540d\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4e0a\u66f8\u3044\u3066\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u306a\u3044\u306e\u3067": 12, "\u540c\u6642\u306b": 9, "\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d": 39, "\u540d\u524d": [231, 232, 233, 234, 235, 274], "\u540d\u8a5e": [53, 231, 232, 233, 234, 235, 274], "\u5426\u5b9a": 11, "\u542b\u3081\u306a\u3044\u3082\u306e": 12, "\u542b\u3081\u308b\u3082\u306e": 12, "\u554f\u984c\u3042\u308a": 39, "\u554f\u984c\u306fgroonga": 176, "\u554f\u984c\u3092\u4fee\u6b63": 37, "\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059": 12, "\u56f0\u3063\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u8907\u6570\u56de\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u9650\u3089\u308c\u305f\u306a\u304b\u3067\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u3066\u304f\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 10, "\u56fa\u5b9a\u9577\u30ab\u30e9\u30e0\u306b\u30ab\u30e9\u30e0\u9577\u3088\u308a\u77ed\u3044\u30c7\u30fc\u30bf\u3092\u8a2d\u5b9a\u3059\u308b\u3068\u30b4\u30df\u304c\u6b8b\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63": 37, "\u56fa\u6709\u540d\u8a5e": 274, "\u57fa\u672c\u5f62": 274, "\u57fa\u672c\u7684\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u5185\u5bb9\u3092\u305d\u306e\u307e\u307e\u8a18\u8f09\u3057\u307e\u3059": 12, "\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0": 12, "\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093": 89, "\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046": 174, "\u592a": 45, "\u592a\u90ce": 45, "\u59d3": 274, "\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059": 122, "\u5b58\u5728\u3057\u306a\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6539\u5584": 36, "\u5b58\u5728\u3057\u306a\u3044\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53c2\u7167\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u5b89\u5b9a\u7248\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3078\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u3088\u3046\u306b\u3057\u3066\u304f\u3060\u3055\u3044": 12, "\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093": 301, "\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059": 299, "\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093": 299, "\u5b8c\u5168\u4e00\u81f4\u691c\u7d22": 301, "\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306b\u9650\u308a": 299, "\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093": 299, "\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059": 299, "\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a": 175, "\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f": 89, "\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u5b9f\u7a3c\u52d5\u74b0\u5883\u3067\u306e\u30af\u30a8\u30ea\u30d1\u30bf\u30f3\u306b\u8fd1\u3044\u30af\u30a8\u30ea\u3092\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066": 174, "\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 174, "\u5b9f\u884c\u3059\u308b\u30b3\u30de\u30f3\u30c9\u3068\u305d\u306e\u5f15\u6570\u3092\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059": 175, "\u5b9f\u884c\u4f8b": [14, 93], "\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059": 11, "\u5b9f\u884c\u958b\u59cb\u6642\u523b": 176, "\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059": 301, "\u5bfe\u5fdc": 38, "\u5bfe\u7b56\u65b9\u6cd51": [22, 300], "\u5bfe\u7b56\u65b9\u6cd52": [22, 300], "\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [109, 120], "\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059": [109, 120], "\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4": 174, "\u5c0f\u6570\u5f62\u5f0f\u306etime\u30ea\u30c6\u30e9\u30eb\u3092\u30ed\u30fc\u30c9\u3059\u308b\u3068\u30df\u30ea\u79d2\u60c5\u5831\u304c\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63": 39, "\u5c71": 45, "\u5c71\u7530": [45, 231, 232, 233, 234, 235, 274], "\u5c71\u7530\u592a\u90ce": 45, "\u5de6\u4e0a": 36, "\u5de6\u4e0b": 36, "\u5dee\u5206\u3092": 176, "\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084": 282, "\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6": 282, "\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059": 189, "\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059": 190, "\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093": 93, "\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093": 176, "\u5f15\u6570\u3068\u3057\u3066": 11, "\u5f15\u6570\u306f\u4ee5\u4e0b\u306e2\u7a2e\u985e\u306e\u65b9\u6cd5\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 175, "\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b": 11, "\u5f15\u6570\u540d": 175, "\u5f15\u6570\u540d1": 175, "\u5f15\u6570\u540d2": 175, "\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f": 175, "\u5f37": [264, 279, 280], "\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0": 36, "\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault": 93, "\u5f62\u5f0f1": 175, "\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f": 175, "\u5f62\u5f0f2": 175, "\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f": 175, "\u5f7c": [231, 232, 233, 234, 235, 274], "\u5f7c\u306e\u540d\u524d\u306f\u5c71\u7530\u3055\u3093\u306e\u306f\u305a\u3067\u3059": [231, 232, 233, 234, 235, 274], "\u5f8c\u8ff0\u3057\u307e\u3059\u304c": 12, "\u5f8c\u8ff0\u306e\u3059\u3079\u3066\u306e\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306fdb_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u73fe\u3055\u308c\u3066\u3044\u307e\u3059": 11, "\u5f93\u3063\u3066": 156, "\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092": 11, "\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f": 11, "\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb": 12, "\u5fc5\u8981\u306a\u6642\u4ee5\u5916\u306bmecab\u306e\u8f9e\u66f8\u30c1\u30a7\u30c3\u30af\u3092\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63": 37, "\u5fc5\u8981\u306a\u90e8\u5206\u3092groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u554f\u3044\u5408\u308f\u305b\u308b\u305f\u3081\u306e\u30af\u30a8\u30ea\u306e\u8868\u73fe\u3068\u5b9f\u884c\u306b\u95a2\u3057\u3066": 11, "\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b": 36, "\u60c5\u5831\u306e\u9806\u5e8f\u306f": 162, "\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059": 162, "\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0": [109, 113, 119, 130], "\u62c5\u5f53\u8005": 12, "\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093": 176, "\u62e1\u5f35\u5b50\u306f": 176, "\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f": 176, "\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cdevelop\u3042\u308b\u3044\u306fdeprecated\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f": 93, "\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cstable\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u306a\u3093\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3082\u8868\u793a\u3055\u308c\u305a\u305d\u306e\u307e\u307e\u8d77\u52d5\u3057\u307e\u3059": 93, "\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u304c\u8fd4\u3055\u308c\u307e\u3059": 93, "\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u6a19\u6e96\u30a8\u30e9\u30fc\u51fa\u529b\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057": 93, "\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059": 93, "\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408": 176, "\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059": 108, "\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b": 185, "\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059": 185, "\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b": 176, "\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c": 37, "\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080": 36, "\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059": 11, "\u6307\u5b9a\u3057\u305f\u6700\u65b0\u306egroonga\u30d0\u30fc\u30b8\u30e7\u30f3": 12, "\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059": 189, "\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408": 176, "\u63a5\u5c3e": [231, 232, 233, 234, 235, 274], "\u63a5\u7d9a\u3059\u308bgroonga": 176, "\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092": 176, "\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044": 176, "\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068": 176, "\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059": 174, "\u63a5\u7d9a\u5148\u30b5\u30fc\u30d0\u304c\u4f7f\u7528\u4e2d\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044": 176, "\u63d0\u6848\u3092\u884c\u3046": 37, "\u652f\u3048\u305f": 54, "\u652f\u3048\u308b": 54, "\u6539\u884c\u6587\u5b57\u306f": 175, "\u6570\u5024": 299, "\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8": 36, "\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f": 189, "\u6570\u5b57": 176, "\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046": 301, "\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b": 301, "\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059": 185, "\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059": 175, "\u65b0\u3057\u3044\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306b\u4efb\u547d\u3055\u308c\u305f\u3070\u304b\u308a\u3067": 12, "\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 10, "\u65b0\u4efb\u306e\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u5fc5\u305a": 12, "\u65b0\u898f\u306b\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u62c5\u5f53\u8005\u306e\u307f\u884c\u3044\u307e\u3059": 12, "\u65b0\u898f\u306b\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u62c5\u5f53\u8005\u3084\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u7f72\u540d\u3059\u308b\u9375\u306b\u5909\u66f4\u304c\u3042\u3063\u305f\u5834\u5408\u306a\u3069\u306b\u884c\u3044\u307e\u3059": 12, "\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059": 189, "\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f": 176, "\u65e5": [265, 266, 267, 268, 275, 280], "\u65e5\u3005": 10, "\u65e5\u672c": [44, 201, 240, 250, 264, 265, 266, 267, 268], "\u65e5\u672c\u4eba": 250, "\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19": [189, 190], "\u65e5\u672c\u8a9e": [250, 275, 279], "\u65e5\u672c\u8a9e\u306e\u52c9\u5f37": [264, 279, 280], "\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059": 12, "\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a": 282, "\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63": 37, "\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4": 37, "\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059": 93, "\u6700\u521d\u306b\u58f0\u3092\u304b\u3051\u308b\u3068\u304d\u306b\u89e3\u6c7a\u7b56\u30921\u3064\u304b2\u3064\u63d0\u6848\u3067\u304d\u308b\u3068\u671b\u307e\u3057\u3044\u3067\u3059": 10, "\u6700\u521d\u306e1\u56de\u3060\u3051\u884c\u3046\u624b\u9806": 3, "\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308b": 36, "\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0": 36, "\u6700\u5f8c\u306b": 301, "\u6700\u5f8c\u306e": 176, "\u6700\u65b0\u306e": 12, "\u672a\u6765\u306e\u65e5\u4ed8": 12, "\u672c": [265, 266, 267, 268, 275, 280], "\u672c\u5bb6\u306emingw": 12, "\u672c\u5f53\u306b\u901f\u3044": 156, "\u672c\u8a9e": [264, 265, 266, 267, 268], "\u672c\u8a9e\u306e": 279, "\u6761\u4ef6\u306e\u9806\u5e8f\u3092\u5909\u3048\u308b\u3068\u691c\u7d22\u7d50\u679c\u304c\u5909\u308f\u308b\u3068\u3044\u3046\u72b6\u6cc1\u304c\u767a\u751f\u3057\u307e\u3059": 301, "\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b": 11, "\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059": 11, "\u6771\u4eac": [44, 274, 299, 301], "\u6771\u4eac\u4eac\u90fd": 44, "\u6771\u4eac\u90fd": [44, 274, 299, 301], "\u6771\u4eac\u90fd\u6c11": [299, 301], "\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f": 301, "\u68ee\u7530": 307, "\u691c\u7d22": [22, 37, 43, 47, 156, 171, 186, 297, 301], "\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092": 11, "\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051": 22, "\u691c\u7d22\u306e\u6319\u52d5": 22, "\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a": 299, "\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059": 301, "\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059": 299, "\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u305f\u7d50\u679c\u5f97\u3089\u308c\u308b\u8a9e\u5f59\u306e\u914d\u5217\u3068\u540c\u4e00\u306e\u914d\u5217\u3092\u542b\u3080\u6587\u66f8\u3092\u691c\u7d22\u3059\u308b\u51e6\u7406\u3092\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3068\u547c\u3093\u3067\u3044\u307e\u3059": 299, "\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9": 119, "\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u304f\u308b\u3053\u3068\u3092\u6291\u3048\u3064\u3064\u518d\u73fe\u7387\u3092\u4e0a\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 301, "\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u73fe\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044": 301, "\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u591a\u304f\u306a\u3063\u305f\u5834\u5408\u306f\u6307\u5b9a\u3059\u308b\u5024\u3092\u4f4e\u304f\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 301, "\u691c\u7d22\u4f8b1": 3, "\u691c\u7d22\u4f8b2": 3, "\u691c\u7d22\u4f8b3": 3, "\u691c\u7d22\u4f8b4": 3, "\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057": 156, "\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c": 89, "\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb": 11, "\u691c\u7d22\u5bfe\u8c61\u306e": 301, "\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u691c\u7d22\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306b\u52a0\u3048\u307e\u3059": 11, "\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba": 299, "\u691c\u7d22\u6761\u4ef6\u306b\u30de\u30c3\u30c1\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u9069\u7528\u3059\u308bgrn_expr\u3092script\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059": 156, "\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093": 282, "\u691c\u7d22\u6761\u4ef6\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3057\u305f\u65b0\u305f\u306a\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059": [119, 175], "\u691c\u7d22\u7d50\u679c\u3068\u3057\u3066\u751f\u6210\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059": 89, "\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059": 299, "\u691c\u7d22\u7d50\u679c\u306e\u30bd\u30fc\u30c8\u9806\u5e8f\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 156, "\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb": 11, "\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u304c\u7a7a\u3067\u306a\u3044\u5834\u5408\u306b\u3060\u3051\u610f\u5473\u3092\u6301\u3061\u307e\u3059": 11, "\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 11, "\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 11, "\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u30b9\u30b3\u30a2\u5024\u306e\u66f4\u65b0\u306e\u307f\u3092\u884c\u3044\u307e\u3059": 11, "\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059": 189, "\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059": 189, "\u697d\u3057": [299, 301], "\u697d\u3057\u3044billiard": [299, 301], "\u69d8\u3005\u306a\u30c6\u30b9\u30c8": 3, "\u6a19\u6e96\u5165\u529b": [108, 109, 113, 119, 120, 130, 147, 162], "\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f": 175, "\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e00\u884c\u305a\u3064eof\u306b\u9054\u3059\u308b\u307e\u3067\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u8aad\u307f\u53d6\u308a": 175, "\u6b21\u306b": 11, "\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f": 93, "\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059": 12, "\u6b8b\u308a\u306e\u4e00\u3064\u306f": 93, "\u6bce\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u3067\u884c\u3046\u624b\u9806": 3, "\u6c11": 299, "\u6c17\u8efd\u306b\u3067\u304d\u306a\u3044\u3053\u3068\u3092\u76f8\u624b\u306b\u8981\u6c42\u3059\u308b\u3068\u840e\u7e2e\u3055\u308c\u3066\u3057\u307e\u3046\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059": 10, "\u6df1\u523b": 301, "\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057": 11, "\u6e2c\u5730\u7cfb": 282, "\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f": 282, "\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059": 11, "\u6f22\u5b57": 201, "\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059": 71, "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb": 14, "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570": 14, "\u7279\u6b8a": 274, "\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059": 176, "\u7279\u6b8a\u547d\u4ee4\u306f\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4efb\u610f\u306e\u5834\u6240\u306b\u66f8\u304d\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 176, "\u72b6\u614b\u3092\u8868\u793a\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059": 108, "\u73fe\u5728\u306f": [174, 176], "\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga": 176, "\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059": 176, "\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059": 199, "\u73fe\u5728\u6642\u523b\u3092\u8fd4\u3059": 199, "\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand": 93, "\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059": 189, "\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068": 14, "\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068": 14, "\u751f\u6210\u3055\u308c\u3066\u3044\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u554f\u984c\u306e\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u305f\u3089": 12, "\u751f\u6210\u3067\u304d\u6b21\u7b2c\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3057\u3066\u304a\u304f\u3068": 12, "\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid": 108, "\u7530": 45, "\u7530\u592a": 45, "\u7530\u592a\u90ce": 45, "\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b": 12, "\u7591\u4f3c\u30ab\u30e9\u30e0": 89, "\u7701\u7565\u3057\u305f\u5834\u5408\u306f": 204, "\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059": 190, "\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059": 190, "\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059": 190, "\u78ba\u8a8d\u5f8c": 12, "\u79c1\u306f\u6797\u6a8e\u3092\u98df\u3079\u307e\u3059": [257, 258, 259], "\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068segv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63": 36, "\u7a7a\u306e\u5834\u5408": [109, 120], "\u7a7a\u767d": 175, "\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b": 301, "\u7a7a\u767d\u3084": 175, "\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059": 108, "\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059": 301, "\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059": 301, "\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0": 36, "\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0": 36, "\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": 37, "\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f": [108, 109, 113, 119, 120, 130, 147, 162], "\u7d44\u8fbc\u95a2\u6570\u306f": [185, 189, 190, 199, 204], "\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f": 282, "\u7d4c\u5ea6\u3068\u7def\u5ea6\u3092\u30df\u30ea\u79d2\u5358\u4f4d\u3067\u8868\u73fe\u3057\u305f\u6574\u6570\u306e\u7d44\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059": 282, "\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18": 282, "\u7d50\u679c\u304c\u7570\u5e38\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059": 176, "\u7d9a\u3044\u3066": 301, "\u7de8\u96c6\u3057\u305f\u5185\u5bb9\u3092push\u3059\u308b\u524d\u306b\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306fjekyll\u304a\u3088\u3073redcloth": 12, "\u7de8\u96c6\u8ddd\u96e2": 36, "\u7def\u5ea6\u306f": 282, "\u7e70\u308a\u8fd4\u3057\u6570": 176, "\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408": 176, "\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059": 176, "\u7f8a": 44, "\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067": 12, "\u811a\u6ce8": [113, 189, 190], "\u81ea\u5206\u304c\u30c4\u30a4\u30fc\u30c8\u3057\u305f\u5185\u5bb9\u3092\u628a\u63e1\u3057\u3066\u3044\u306a\u3044\u8fd4\u4fe1\u3092\u3055\u308c\u305f\u3089\u666e\u901a\u3044\u3044\u6c17\u306f\u3057\u307e\u305b\u3093": 10, "\u81ea\u5206\u306e\u666e\u6bb5\u4f7f\u3044\u306e\u516c\u958b\u9375\u3092\u767b\u9332\u3057\u305f\u4e0a\u3067": 12, "\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059": 176, "\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059": 176, "\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0": 176, "\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059": 89, "\u826f\u3044\u306e\u304b": 10, "\u826f\u3044\u4f8b": 10, "\u82b1\u5b50": 307, "\u82f1\u8a9e": 12, "\u884c": 14, "\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u3058\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u307e\u3059": 176, "\u8907\u6570\u306e\u6761\u4ef6\u3092\u518d\u5e30\u7684\u306b\u7d44\u307f\u5408\u308f\u305b\u3066\u3088\u308a\u8907\u96d1\u306a\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b": 10, "\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f": 12, "\u8a18\u53f7": [175, 274, 301], "\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528": 37, "\u8a18\u53f7\u3068\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b": 301, "\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b": 301, "\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a": 299, "\u8a2d\u5b9a\u3059\u308b\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u5024\u3092\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3057\u307e\u3059": 130, "\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059": 175, "\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b": 36, "\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b": 36, "\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b": 176, "\u8a73\u7d30\u306f": [14, 301], "\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 36, "\u8a9e": [108, 265, 266, 267, 268, 275, 280], "\u8a9e\u306e": 264, "\u8a9e\u306e\u52c9": 279, "\u8aa4\u3063\u305f\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0\u3067\u30ea\u30ea\u30fc\u30b9\u3057\u3066\u3057\u307e\u3046\u5371\u967a\u304c\u3042\u308a\u307e\u3059": 12, "\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059": 189, "\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059": 189, "\u8ad6\u7406\u548c": 11, "\u8ad6\u7406\u6f14\u7b97\u5b50\u306f": 11, "\u8ad6\u7406\u7a4d": 11, "\u8b66\u544a\u3092\u9664\u53bb": 37, "\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059": 93, "\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068": 37, "\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059": 189, "\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0": 37, "\u8fd4\u5024\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5b89\u5b9a\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u4fdd\u8a3c\u3055\u308c\u307e\u305b\u3093": 108, "\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 204, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_limit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_offset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_output_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_sortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306ematch_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoutput_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093": 175, "\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 175, "\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565": 12, "\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": [3, 4, 22], "\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059": 89, "\u901f": 45, "\u901f\u3044": 44, "\u9023\u4f53\u5316": 274, "\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8": 301, "\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046": 301, "\u9023\u7d9a\u3059\u308b\u8a18\u53f7": 301, "\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057": 10, "\u904e\u53bb\u306e\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u4f8b\u306f\u4ee5\u4e0b\u3067\u3059": 12, "\u9069\u5408\u7387\u304c\u4e0b\u304c\u308a\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u542b\u307e\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059": 301, "\u90ce": 45, "\u90e8\u5206\u4e00\u81f4\u691c\u7d22": 301, "\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n": 299, "\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066": 299, "\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f": 301, "\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059": 301, "\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059": 299, "\u90fd": [274, 299, 301], "\u90fd\u6c11": [299, 301], "\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059": 108, "\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059": 108, "\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068": 12, "\u9375\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u3060\u3051\u3067\u306f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u305f\u3081": 12, "\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059": [109, 120], "\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b": 120, "\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b": 109, "\u958b\u3044\u3066\u3044\u308b\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u304c\u591a\u3059\u304e\u3066accept\u3067\u304d\u306a\u3044\u72b6\u614b\u306e\u8ca0\u8377\u3092\u4f4e\u6e1b": 37, "\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044": 10, "\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63": 39, "\u95a2\u4fc2\u5f0f": 3, "\u95a2\u4fc2\u5f0f\u306f": 11, "\u95a2\u6570": 14, "\u95a2\u6570\u304c\u5f15\u6570\u3092": 36, "\u95a2\u6570\u306e\u8ffd\u52a0": 36, "\u95a2\u6570\u306f": [11, 185, 189, 190, 204], "\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059": 199, "\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63": 37, "\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059": 11, "\u95a2\u9023\u30d7\u30ed\u30c0\u30af\u30c8\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u304c\u3057\u3084\u3059\u304f\u306a\u308a\u307e\u3059": 12, "\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059": 299, "\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059": 301, "\u95be\u5024\u3092\u3042\u3052\u308b": [22, 300], "\u95be\u5024\u3092\u8d8a\u3048\u308b": 301, "\u9759\u7684\u89e3\u6790": 3, "\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22": 301, "\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n": 299, "\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059": 299, "\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044": [299, 301], "\u975e\u4e92\u63db": 39, "\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070": 12, "\u975e\u81ea\u7acb": [231, 232, 233, 234, 235, 274], "\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059": 175, "\u99c4\u76ee\u306a\u4f8b": 10, "\u9ad8": 45, "\u9ad8\u6a5f\u80fd\u3067\u8907\u96d1\u306a\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u307e\u3067\u3044\u304f\u3064\u304b\u306e\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059": 11, "\u9ad8\u901f": [41, 45], "\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b": 9, "\uff41": 44, "\uff41z": 275, "\uff49": 44, "\uff4d\uff59\uff53\uff51\uff4c": [191, 192, 193], "\uff70": [231, 232, 233, 234, 235, 258, 259], "\uff71": 44}, "titles": ["1. Characteristics of Groonga", "6. Client", "3. Community", "12. How to contribute to groonga", "12.3. For Groonga developers", "12.3.2. How to build Groonga at the repository", "How to build Groonga at the repository by GNU Autotools", "12.3.2.1. How to build Groonga at the repository by CMake on GNU/Linux or Unix", "12.3.2.2. How to build Groonga at the repository by CMake on Windows", "12.3.3. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3", "12.3.4. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd", "12.3.5. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe", "12.3.7. \u30ea\u30ea\u30fc\u30b9\u624b\u9806", "12.3.1. Repository", "12.3.8. \u30c6\u30b9\u30c8\u65b9\u6cd5", "12.2. How to contribute in documentation topics", "12.2.3. C API", "12.2.2. I18N", "12.2.1. Introduction", "12.1. How to report a bug", "11. Development", "11.1. Travis CI", "Groonga documentation", "2. Install", "2.5. AlmaLinux", "2.6. Amazon Linux", "CentOS", "2.8. Others: Build with CMake", "2.3. Debian GNU/Linux", "2.7. Docker", "2.2. macOS", "Others", "2.4. Ubuntu", "2.1. Windows", "9. Limitations", "News", "\u30d0\u30fc\u30b8\u30e7\u30f30\u7cfb\u306e\u304a\u77e5\u3089\u305b", "\u30d0\u30fc\u30b8\u30e7\u30f31.0\u7cfb\u306e\u304a\u77e5\u3089\u305b", "\u30d0\u30fc\u30b8\u30e7\u30f31.1\u7cfb\u306e\u304a\u77e5\u3089\u305b", "News - 1.2.x", "News - 1.3 series", "News - 10 series", "News - 11 series", "News - 12 series", "News - 13 series", "News - 14 series", "News - 15 series", "News - 2 series", "News - 3 series", "News - 4 series", "News - 5 series", "News - 6 series", "News - 7 series", "News - 8 series", "News - 9 series", "News in Senna period", "13. The Pre-Groonga Era", "7. Reference manual", "7.19. Alias", "7.26. API", "7.26.2. Global configurations", "7.26.4. grn_cache
", "7.26.5. grn_column
", "7.26.6. grn_command_version
", "7.26.7. grn_content_type
", "7.26.8. grn_ctx
", "7.26.9. grn_db
", "7.26.10. grn_encoding
", "7.26.11. grn_expr", "7.26.12. grn_geo
", "7.26.13. grn_hook
", "7.26.14. grn_ii
", "7.26.15. grn_index_cursor
", "7.26.16. grn_info
", "7.26.17. grn_inspect
", "7.26.18. grn_match_escalation
", "7.26.19. grn_obj
", "7.26.20. grn_proc
", "7.26.21. grn_search
", "7.26.22. grn_table
", "7.26.23. grn_table_cursor
", "7.26.24. grn_thread_*
", "7.26.25. grn_type
", "7.26.26. grn_user_data
", "7.26.1. Overview", "7.26.3. Plugin", "7.12. Cast", "7.6. Column", "7.6.3.1. Index column", "7.6.2.3. Pseudo column", "7.6.2.1. Scalar column", "7.6.2.2. Vector column", "7.3. Command", "7.3.1. Command version", "7.3.2. Parallel execution", "7.3.3. Output format", "7.3.4. Output trace log", "7.3.5. Pretty print", "7.3.6. Request ID", "7.3.7. Request timeout", "7.3.8. Return code", "7.3.8.3.3. -6: GRN_INPUT_OUTPUT_ERROR
", "7.3.8.3.5. -22: GRN_INVALID_ARGUMENT
", "7.3.8.3.2. -3: GRN_NO_SUCH_FILE_OR_DIRECTORY
", "7.3.8.3.4. -13: GRN_NOT_ENOUGH_SPACE
", "7.3.8.3.1. -2: GRN_OPERATION_NOT_PERMITTED
", "7.3.8.3.6. -34: GRN_RESOURCE_DEADLOCK_AVOIDED
", "7.3.9. cache_limit
", "7.3.10. check
", "7.3.11. clearlock
", "7.3.12. column_copy
", "7.3.13. column_create
", "7.3.14. column_list
", "7.3.15. column_remove
", "7.3.16. column_rename
", "7.3.17. config_delete
", "7.3.18. config_get
", "7.3.19. config_set
", "7.3.20. database_unmap
", "7.3.21. define_selector
", "7.3.22. defrag
", "7.3.23. delete
", "7.3.24. dump
", "7.3.25. index_column_diff
", "7.3.26. io_flush
", "7.3.27. load
", "7.3.28. lock_acquire
", "7.3.29. lock_clear
", "7.3.30. lock_release
", "7.3.31. log_level
", "7.3.32. log_put
", "7.3.33. log_reopen
", "7.3.34. logical_count
", "7.3.35. logical_parameters
", "7.3.36. logical_range_filter
", "7.3.37. logical_select
", "7.3.38. logical_shard_list
", "7.3.39. logical_table_remove
", "7.3.40. normalize
", "7.3.41. normalizer_list
", "7.3.42. object_exist
", "7.3.43. object_inspect
", "7.3.44. object_list
", "7.3.45. object_remove
", "7.3.46. plugin_register
", "7.3.47. plugin_unregister
", "7.3.48. query_expand
", "7.3.49. quit
", "7.3.50. range_filter
", "7.3.51. reference_acquire
", "7.3.52. reference_release
", "7.3.53. register
", "7.3.54. reindex
", "7.3.55. request_cancel
", "7.3.56. ruby_eval
", "7.3.57. schema
", "7.3.58. select
", "7.3.59. shutdown
", "7.3.60. status
", "7.3.61. suggest
", "7.3.62. table_copy
", "7.3.63. table_create
", "7.3.64. table_list
", "7.3.65. table_remove
", "7.3.66. table_rename
", "7.3.67. table_tokenize
", "7.3.68. thread_dump
", "7.3.69. thread_limit
", "7.3.70. tokenize
", "7.3.71. tokenizer_list
", "7.3.72. truncate
", "7.18. Configuration", "7.1. Executables", "7.1.1. grndb
", "7.1.2. grnslap", "7.1.3. groonga
executable file", "7.1.4. groonga-benchmark", "7.1.5. groonga-httpd", "7.1.6. Groonga HTTP server", "7.1.7. groonga-suggest-create-dataset", "7.1.8. groonga-suggest-httpd
", "7.1.9. groonga-suggest-learner", "7.15. Function", "7.15.1. between
", "7.15.2. cast_loose
", "7.15.3. edit_distance", "7.15.4. escalate
", "7.15.5. fuzzy_search
", "7.15.6. geo_distance
", "7.15.7. geo_in_circle", "7.15.8. geo_in_rectangle", "7.15.9. highlight
", "7.15.10. highlight_full
", "7.15.11. highlight_html
", "7.15.12. html_untag
", "7.15.13. in_records
", "7.15.14. in_values
", "7.15.15. language_model_vectorize
", "7.15.16. math_abs
", "7.15.17. now", "7.15.18. number_classify
", "7.15.19. prefix_rk_search
", "7.15.20. query
", "7.15.21. query_parallel_or
", "7.15.22. rand", "7.15.23. snippet
", "7.15.24. snippet_html
", "7.15.25. string_length
", "7.15.26. string_slice
", "7.15.27. string_substring
", "7.15.28. sub_filter
", "7.15.29. time_classify_day
", "7.15.30. time_classify_day_of_week
", "7.15.31. time_classify_hour
", "7.15.32. time_classify_minute
", "7.15.33. time_classify_month
", "7.15.34. time_classify_second
", "7.15.35. time_classify_week
", "7.15.36. time_classify_year
", "7.15.37. vector_find
", "7.15.38. vector_new
", "7.15.39. vector_size
", "7.15.40. vector_slice
", "7.13. grn_expr", "7.13.1. Query syntax", "7.13.2. Script syntax", "7.21. Indexing", "7.23. Language model", "7.24. Log", "7.7. Normalizers", "7.7.2.1. NormalizerAuto
", "7.7.2.2. NormalizerNFKC
", "7.7.2.3. NormalizerNFKC100
", "7.7.2.4. NormalizerNFKC121
", "7.7.2.5. NormalizerNFKC130
", "7.7.2.6. NormalizerNFKC150
", "7.7.2.7. NormalizerNFKC51
", "7.7.2.8. NormalizerTable
", "7.17. Operations", "7.17.1. Geolocation search", "7.17.2. Prefix RK search", "7.2. Output", "7.10. Query expanders", "7.10.1. QueryExpanderTSV", "7.14. Regular expression", "7.11. Scorer", "7.11.3.1. scorer_tf_at_most
", "7.11.3.2. scorer_tf_idf
", "7.22. Sharding", "7.20. Suggest", "7.20.2. Completion", "7.20.3. Correction", "7.20.1. Introduction", "7.20.4. Suggestion", "7.5. Tables", "7.9.1. Summary", "7.9. Token filters", "7.9.2. TokenFilterNFKC
", "7.9.3. TokenFilterNFKC100
", "7.9.4. TokenFilterNFKC150
", "7.9.5. TokenFilterStem
", "7.9.6. TokenFilterStopWord
", "7.8.1. Summary", "7.8. Tokenizers", "7.8.2. TokenBigram
", "7.8.3. TokenBigramIgnoreBlank
", "7.8.4. TokenBigramIgnoreBlankSplitSymbol
", "7.8.5. TokenBigramIgnoreBlankSplitSymbolAlpha
", "7.8.6. TokenBigramIgnoreBlankSplitSymbolAlphaDigit
", "7.8.7. TokenBigramSplitSymbol
", "7.8.8. TokenBigramSplitSymbolAlpha
", "7.8.9. TokenBigramSplitSymbolAlphaDigit
", "7.8.10. TokenDelimit
", "7.8.11. TokenDelimitNull
", "7.8.12. TokenMecab
", "7.8.13. TokenNgram
", "7.8.14. TokenPattern
", "7.8.15. TokenRegexp
", "7.8.16. TokenTable
", "7.8.17. TokenTrigram
", "7.8.18. TokenUnigram
", "7.25. Tuning", "7.4. Data types", "7.16. Window function", "7.16.1. record_number
", "7.16.2. window_count
", "7.16.3. window_rank
", "7.16.4. window_record_number
", "7.16.5. window_sum
", "5. Server", "5.3. GQTP", "5.2. HTTP", "5.2.1. Comparison", "5.2.2. groonga", "5.2.3. groonga-httpd", "5.4. Memcached binary protocol", "5.1. Server packages", "8. Specification", "8.1. GQTP", "8.2. \u691c\u7d22", "10. Troubleshooting", "10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b", "10.2. How to analyze error messages", "10.3. How to avoid mmap Cannot allocate memory error", "4. Tutorial", "4.3. Various data types", "4.5. Drilldown", "4.6. Tag search and reverse resolution of reference relationships", "4.1. Basic operations", "4.9. Additional information about lexicon for full text search", "4.7. match_columns parameter", "4.10. Let\u2019s create micro-blog", "4.2. Remote access", "4.8. Prefix search with patricia trie", "4.11. Query expansion", "4.4. Various search conditions"], "titleterms": {"": [111, 311], "0": [36, 37, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "01": [37, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55], "02": [37, 38, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "03": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55], "04": [39, 41, 42, 43, 45, 47, 48, 50, 51, 52, 53, 54, 55], "05": [39, 41, 42, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55], "06": [37, 39, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 55], "07": [39, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55], "08": [36, 37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55], "09": [37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "0\u30ea\u30ea\u30fc\u30b9": [37, 38, 39], "0\u7cfb\u306e\u304a\u77e5\u3089\u305b": 37, "1": [37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "10": [37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55], "11": [37, 39, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54], "12": [37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 55], "13": [44, 104], "14": [45, 55], "15": 46, "16": 55, "17": 55, "18": 51, "19": 36, "1\u30ea\u30ea\u30fc\u30b9": [37, 39], "1\u7cfb\u306e\u304a\u77e5\u3089\u305b": 38, "2": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 105], "2005": 55, "2006": 55, "2009": 55, "2010": [36, 37], "2011": [37, 38, 39], "2012": [40, 47], "2013": [47, 48], "2014": [48, 49], "2015": [49, 50], "2016": [50, 51], "2017": [51, 52], "2018": [52, 53], "2019": [53, 54], "2020": [41, 54], "2021": [41, 42], "2022": [42, 43], "2023": [25, 43, 44, 45], "2024": [44, 45], "2025": [45, 46], "22": [55, 102], "23": [51, 55], "24": [44, 45], "25": [36, 41, 45], "26": 44, "27": [45, 54, 55], "28": [43, 48], "29": [37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "2\u30ea\u30ea\u30fc\u30b9": 37, "3": [39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 103], "30": [41, 54], "31": [37, 42, 44, 50, 51], "34": 106, "3\u30ea\u30ea\u30fc\u30b9": 37, "4": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "4\u30ea\u30ea\u30fc\u30b9": 37, "5": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "5\u30ea\u30ea\u30fc\u30b9": 37, "6": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 101], "6\u30ea\u30ea\u30fc\u30b9": [36, 37], "7": [36, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "7\u30ea\u30ea\u30fc\u30b9": [36, 37], "8": [24, 39, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "8\u30ea\u30ea\u30fc\u30b9": 37, "9": [24, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "AND": [224, 225], "For": [4, 94], "NOT": [224, 225], "Near": [224, 225], "Not": [224, 225], "OR": [224, 225], "The": [56, 111, 156, 281], "With": [29, 231, 235], "aarch64": 45, "about": [282, 309], "access": [292, 312], "access_log": 177, "action": [101, 102, 103, 104, 105, 106], "ad": [45, 46], "add": [17, 18], "addit": [225, 229, 309], "adjust": 156, "administr": [177, 312], "advanc": [135, 156, 231, 232, 233, 234, 235, 237, 257, 258, 259, 272, 274, 275], "after": 45, "against": 310, "aggreg": 0, "algorithm": 260, "alia": 58, "all": 254, "alloc": 303, "almalinux": 24, "also": [6, 7, 8, 58, 90, 95, 98, 99, 100, 107, 109, 111, 112, 115, 116, 117, 119, 121, 125, 126, 128, 129, 130, 131, 136, 138, 139, 142, 144, 145, 146, 148, 151, 153, 154, 155, 156, 159, 161, 165, 168, 169, 178, 179, 180, 184, 191, 192, 193, 201, 202, 203, 205, 206, 210, 223, 229, 230, 231, 232, 233, 234, 235, 237, 240, 243, 246, 247, 254, 255, 272, 274, 275, 276, 278, 286, 298], "amazon": [25, 45], "among": 310, "an": [45, 111, 308, 312], "analyz": 302, "anchor": 244, "apach": [31, 94, 96], "api": [16, 59], "appli": 91, "approximate_typ": 188, "ar": 45, "archiv": 32, "aren": 45, "arg": 11, "arithmet": 225, "arrai": 225, "arrow": [31, 94, 96], "assign": [98, 224, 225], "authent": 292, "auto_release_count": 149, "autotool": 6, "avail": [94, 177], "avoid": 303, "avx": 45, "basic": [137, 163, 225, 308], "benchmark": 176, "benchmark\u547d\u4ee4": 176, "benchmark\u5b9f\u884c\u7d50\u679c": 176, "between": 183, "bigram": 311, "binari": 295, "birth": 56, "bitwis": 225, "blog": 311, "blogroonga": 12, "bodi": 95, "bookworm": 28, "bool": 282, "boolean": [225, 305], "brazil": 56, "broken": [45, 137], "brows": 177, "browser": 18, "bug": [19, 45], "build": [5, 6, 7, 8, 24, 25, 27, 28, 30, 31, 32, 33], "built": [229, 245], "builtin": [175, 282], "c": 16, "cach": [132, 134, 135, 156, 177], "cache_limit": 107, "calc_target": 135, "calc_typ": 135, "call": 225, "callback": 11, "can": [45, 282], "candidate_n": 180, "cannot": 303, "cascad": 121, "case": [95, 137, 163], "cast": [45, 86], "cast_loos": 184, "caus": [101, 102, 103, 104, 105, 106], "cento": 26, "chang": [18, 43, 44, 45, 55, 110], "charact": 244, "characterist": [0, 254], "chat": 2, "check": [94, 108, 173], "checkout": [6, 7, 8], "choic": 244, "ci": 21, "clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 14, "class": 244, "clear": 173, "clearlock": 109, "client": [1, 175, 298], "clone": [17, 18], "close_tag": 191, "close_tagn": [191, 192], "cmake": [7, 8, 18, 27], "cmake\u306e\u5b9f\u884c": 12, "code": [45, 99, 100], "column": [0, 34, 45, 87, 88, 89, 90, 91, 110, 111, 125, 132, 134, 135, 141, 142, 155, 156, 163, 188, 191, 192, 201, 211, 224, 246, 247, 261, 306, 308, 310], "column_copi": 110, "column_cr": [45, 111], "column_full_nam": 141, "column_id": 141, "column_inform": 112, "column_list": 112, "column_list_head": 112, "column_nam": 141, "column_or_valu": 183, "column_remov": 113, "column_renam": 114, "column_t": 141, "column_type_nam": 141, "column_type_raw_id": 141, "column_type_raw_nam": 141, "column_value_typ": 141, "combin": 224, "command": [92, 93, 94, 155, 171, 173, 175, 180, 241, 248, 292, 308, 312], "command_version\u30d1\u30e9\u30e1\u30fc\u30bf": 93, "comment": 311, "common": 142, "commun": 2, "comparison": [225, 292], "complet": [250, 252], "compos": 29, "compress": 292, "condit": [156, 224, 315], "condition_1": 186, "condition_column_nam": 195, "condition_n": 186, "condition_t": 195, "config_delet": 115, "config_get": 116, "config_set": 117, "configur": [6, 21, 31, 60, 110, 171, 177, 292], "confirm": 17, "construct": [45, 226], "contain": 11, "context_id": [45, 228], "contribut": [3, 15], "control": 225, "convert": 240, "cooccurr": [250, 251, 253], "core": 292, "correct": [251, 252], "cpp": 45, "cpu": 292, "creat": [6, 90, 91, 111, 161, 179, 308, 310, 311], "custom": 292, "cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 14, "daemon": [94, 175, 298], "data": [87, 111, 161, 177, 181, 224, 225, 250, 253, 282, 305, 311], "data_column_value_compress_filt": 141, "data_column_value_compress_method": 141, "databas": [141, 292, 308], "database_name_t": 141, "database_path": [180, 181], "database_type_id": 141, "database_type_nam": 141, "database_unmap": 118, "dataset": 179, "date": 305, "db_api": 11, "dcmake_install_prefix": 27, "dcmake_prefix_path": 27, "deb": 45, "debian": 28, "debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": 12, "decreas": [137, 163], "default": [31, 93, 94, 99], "default_close_tag": 191, "default_mod": [202, 203], "default_open_tag": 191, "default_oper": [202, 203], "default_token": 161, "define_selector": 119, "defrag": [45, 120], "delet": [45, 121], "delimit": 272, "depend": [6, 8, 18, 27, 31, 137, 163], "descript": 282, "desctipion": 179, "detail": 100, "develop": [4, 20], "dgrn_with_apache_arrow": 27, "dgrn_with_mrubi": 27, "diff": 45, "differ": 135, "direct": 177, "disabl": 31, "divis": 225, "doc": 18, "docker": 29, "docker\u30a4\u30e1\u30fc\u30b8\u306e\u66f4\u65b0": 12, "document": [15, 18, 22], "domain": [112, 306], "don": 45, "done": 45, "down": [177, 315], "download": 27, "downtim": 292, "drilldown": [135, 156, 306], "drilldown_calc_target": [135, 156], "drilldown_calc_typ": [135, 156], "drilldown_filt": [135, 156], "drilldown_limit": [135, 156], "drilldown_max_n_target_record": 156, "drilldown_offset": [135, 156], "drilldown_output_column": [135, 156], "drilldown_sort_kei": [135, 156], "drilldown_sortbi": [135, 156], "drop": 43, "dump": 122, "dump_index": 122, "dump_plugin": 122, "dump_record": 122, "dump_schema": 122, "dynam": [132, 134, 135, 156], "each": [125, 310], "edit": [17, 18], "edit_dist": 185, "effici": 45, "elapsed_tim": 228, "ellipsoid": 188, "empti": 45, "enabl": [31, 99], "encod": 31, "engin": 0, "entri": 45, "environ": 94, "equal": [11, 224, 225], "era": 56, "error": [45, 95, 101, 102, 103, 104, 105, 106, 302, 303], "escal": [31, 186], "escap": [224, 244], "evolut": 56, "exampl": [21, 61, 62, 63, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 179, 298, 302, 303], "execut": [45, 94, 172, 175], "exist": 45, "exit": 179, "expand": 242, "expans": 314, "experiment": 45, "explicit": 224, "explicitli": 188, "express": [45, 208, 224, 225, 244], "extract": [208, 225, 253], "facebook": 2, "facebook\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b": 12, "fals": 45, "favorit": 311, "featur": [43, 45, 239], "file": [17, 18, 45, 94, 131, 175, 179, 181, 243, 281, 292], "filter": [132, 134, 135, 156, 256], "filter_str": 210, "fix": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 142], "flag": [45, 111, 112, 132, 134, 135, 138, 142, 156, 161, 165, 168, 173, 202, 203, 298], "float": [225, 282], "float32": [46, 282], "flow": 17, "follow": 311, "forc": [137, 143, 173], "fork": 18, "format": [45, 95, 96, 156, 228, 243, 308], "free": 0, "freebsd": 281, "from": [6, 7, 8, 24, 25, 28, 30, 31, 32, 33, 43, 44, 45, 135, 180, 181], "from_nam": [110, 160], "from_tabl": 110, "full": [0, 111, 224, 308, 309, 310, 315], "function": [132, 134, 135, 156, 182, 225, 227, 283], "fuzzi": 156, "fuzzy_max_dist": 156, "fuzzy_max_distance_ratio": 156, "fuzzy_max_expans": 156, "fuzzy_prefix_length": 156, "fuzzy_search": 187, "fuzzy_with_token": 156, "fuzzy_with_transposit": 156, "g": 27, "garbag": 45, "gener": [17, 18, 27, 45, 87, 90, 91, 111, 112], "generated_column_source_full_nam": 141, "generated_column_source_id": 141, "generated_column_source_nam": 141, "generated_column_source_t": 141, "generated_column_value_gener": 141, "geo": [0, 225, 307], "geo_dist": 188, "geo_in_circl": 189, "geo_in_rectangl": 190, "geoindex": 311, "geoloc": [239, 311], "geopoint": 311, "get": [180, 308], "global": 60, "glossari": 248, "gnu": [6, 7, 27, 28], "gqtp": [45, 290, 296, 298], "gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": 9, "greater": [11, 224, 225], "greater_equ": 11, "grn_cach": 61, "grn_column": 62, "grn_command_vers": 63, "grn_content_typ": 64, "grn_ctx": 65, "grn_db": 66, "grn_encod": 67, "grn_expr": [11, 68, 223], "grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea": 11, "grn_geo": 69, "grn_hook": 70, "grn_ii": 71, "grn_index_cursor": 72, "grn_info": 73, "grn_input_output_error": 101, "grn_inspect": 74, "grn_invalid_argu": 102, "grn_match_escal": 75, "grn_n_workers_default": 94, "grn_no_such_file_or_directori": 103, "grn_not_enough_spac": 104, "grn_obj": 76, "grn_operation_not_permit": 105, "grn_pat_siz": 45, "grn_proc": 77, "grn_resource_deadlock_avoid": 106, "grn_search": 78, "grn_tabl": 79, "grn_table_cursor": 80, "grn_table_select": 11, "grn_thread_": 81, "grn_type": 82, "grn_user_data": 83, "grndb": 173, "grnslap": 174, "groonga": [0, 3, 4, 5, 6, 7, 8, 9, 12, 17, 18, 22, 27, 43, 45, 55, 56, 94, 175, 176, 177, 178, 179, 180, 181, 293, 294, 296], "groonga_base_path": 177, "groonga_cache_base_path": 177, "groonga_cache_limit": 177, "groonga_databas": 177, "groonga_database_auto_cr": 177, "groonga_log_level": 177, "groonga_log_path": 177, "groonga_query_log_path": 177, "groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97": 12, "groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97": 12, "groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb": 11, "group": [224, 225, 244], "group_kei": [132, 134, 135, 156], "gzip": 292, "handl": 45, "handleabl": 111, "hash": 311, "hashtag": 311, "hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": 12, "have": 45, "header": [95, 112, 115, 116, 117, 126, 128, 142, 155, 298], "help": 31, "highlight": 191, "highlight_ful": 192, "highlight_html": 193, "higlight": 44, "homebrew": 30, "homebrew\u306e\u66f4\u65b0": 12, "how": [3, 5, 6, 7, 8, 15, 17, 18, 19, 58, 90, 91, 94, 98, 99, 110, 226, 227, 240, 250, 251, 253, 290, 298, 302, 303, 312], "html": [17, 18, 194], "html_escap": 191, "html_mode": 191, "html_untag": 194, "http": [178, 241, 291, 292, 296, 312], "httpd": [177, 180, 181, 294, 296], "hypertext": 312, "i": [45, 94], "i18n": 17, "id": [98, 112, 153, 254, 311], "ifexist": 125, "ignore_blank": 275, "imag": 29, "improv": [39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "in_record": 195, "in_valu": 196, "inc": 56, "include_class": 274, "include_form": 274, "include_read": 274, "index": [0, 34, 45, 87, 88, 111, 155, 161, 226, 244, 246, 247, 307, 308, 310], "index_column": 165, "index_column_diff": [45, 123], "index_column_source_full_nam": 141, "index_column_source_id": 141, "index_column_source_nam": 141, "index_column_source_t": 141, "index_column_value_posit": 141, "index_column_value_s": 141, "index_column_value_sect": 141, "index_column_value_statistics_max_array_segment_id": 141, "index_column_value_statistics_max_buffer_segment_id": 141, "index_column_value_statistics_max_in_use_chunk_id": 141, "index_column_value_statistics_max_in_use_physical_segment_id": 141, "index_column_value_statistics_max_section_id": 141, "index_column_value_statistics_n_array_seg": 141, "index_column_value_statistics_n_buffer_seg": 141, "index_column_value_statistics_n_garbage_chunk": 141, "index_column_value_statistics_n_garbage_seg": 141, "index_column_value_statistics_n_physical_seg": 141, "index_column_value_statistics_n_unmanaged_seg": 141, "index_column_value_statistics_next_physical_segment_id": 141, "index_column_value_statistics_total_chunk_s": 141, "index_column_value_weight": 141, "inform": [309, 315], "initi": 45, "input": 180, "input_typ": 125, "instal": [6, 8, 17, 18, 23, 27, 31, 243], "instant": 0, "int16": 282, "int32": 282, "int64": 282, "int8": 282, "integ": 225, "internet": 56, "introduct": [18, 252], "invalid": [45, 111], "invert": 0, "io_flush": 124, "issu": [19, 42, 43, 312], "javascript": 315, "json": [45, 95, 96], "just": 91, "kei": [45, 46, 115, 116, 117, 135, 156, 282, 313], "kern": 281, "key_typ": 161, "key_vector_expans": 156, "keyword": 311, "keywordn": [191, 192], "kind": 111, "known": [42, 43], "l": 228, "label": [135, 156], "landscap": 56, "languag": [17, 227], "language_model_vector": [45, 197], "larg": [111, 161], "later": 45, "latitud": [0, 305], "launch": 180, "lazi": 45, "lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 14, "learn": [180, 181, 250, 251, 252, 253], "learner": [180, 181], "left": 225, "length": [208, 209], "less": [11, 224, 225], "less_equ": 11, "let": 311, "level": [45, 129, 173], "lexicon": [161, 308, 309], "lgpl": 45, "libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 14, "librari": [0, 31], "like": 315, "limit": [34, 91, 134, 135, 156, 243, 254, 282, 306], "line": [175, 180, 241], "linux": [7, 25, 27, 28, 45, 281], "list": [2, 19, 100], "liter": 225, "llama": 45, "load": [45, 91, 125, 177, 308, 311], "load_column": [135, 156], "load_tabl": [135, 156], "load_valu": [135, 156], "localstatedir": 31, "locat": [0, 188, 243, 307, 315], "lock": [0, 173], "lock_acquir": 126, "lock_clear": 127, "lock_releas": 128, "lock_tabl": 125, "log": [31, 45, 96, 131, 173, 177, 181, 228, 292], "log_level": 129, "log_put": 130, "log_reopen": 131, "logic": [137, 224, 225], "logical_count": 132, "logical_paramet": 133, "logical_range_filt": [45, 134], "logical_select": 135, "logical_shard_list": 136, "logical_t": [132, 134, 135, 136, 137], "logical_table_remov": 137, "longitud": [0, 305], "longtext": 282, "loose_blank": 275, "loose_symbol": 275, "lotat": 131, "lz4": 31, "machin": 45, "maco": [27, 30], "macport": 30, "made": 45, "mai": 45, "mail": [2, 19], "major": [101, 102, 103, 104, 105, 106], "make": [6, 31], "manag": 227, "manual": 57, "match": [31, 224, 225], "match_column": [135, 156, 202, 203, 310], "match_escal": 156, "match_escalation_threshold": [135, 156], "math_ab": 198, "max": [107, 132, 134, 135, 137, 167, 183, 281], "max_bord": [132, 134, 135, 137, 183], "max_map_count": 281, "max_n_result": 205, "maxfileperproc": 281, "medium": 111, "memcach": 295, "memori": [281, 303], "messag": [31, 228, 302], "message_pack_install_prefix": 31, "messagepack": 95, "micro": 311, "min": [132, 134, 135, 137, 183], "min_bord": [132, 134, 135, 137, 183], "miss": [45, 111], "mix": 45, "mmap": 303, "mode": [11, 111, 157, 165, 168, 175, 219], "mode_nam": 195, "model": 227, "model_nam": 197, "modul": 177, "modulo": 225, "mroonga": 0, "much": 137, "multi": 292, "multipl": [111, 225, 306, 310], "munin": 31, "n": [94, 275], "n_worker": [94, 156], "name": [111, 112, 114, 123, 132, 134, 135, 140, 141, 143, 156, 161, 163, 164, 179, 208, 282, 310], "narrow": 315, "need": 45, "nest": 310, "new": [17, 18, 35, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "new_nam": [114, 164], "newli": 43, "nginx": 177, "nofil": 281, "none": 156, "normal": [90, 91, 138, 155, 161, 168, 191, 229, 237], "normalizer_list": 139, "normalizer_nam": 192, "normalizerauto": 230, "normalizernfkc": [45, 231], "normalizernfkc100": 232, "normalizernfkc121": 233, "normalizernfkc130": 234, "normalizernfkc150": 235, "normalizernfkc51": 236, "normalizert": 237, "normalizerxxx": 191, "not_equ": 11, "note": 94, "now": 199, "nth": [208, 209], "null": 225, "number": [31, 111, 156, 281], "number_classifi": 200, "numer": 305, "object": [142, 225], "object_exist": 140, "object_inspect": 141, "object_list": 142, "object_remov": 143, "object_typ": 142, "offlin": [45, 226], "offset": [134, 135, 156], "one": 310, "onli": 45, "onlin": 226, "only_open": 124, "open": 281, "open_tag": 191, "open_tagn": [191, 192], "oper": [225, 238, 308], "option": [18, 27, 94, 110, 111, 115, 116, 117, 118, 122, 124, 125, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 155, 157, 158, 160, 161, 163, 165, 166, 167, 168, 175, 179, 180, 181, 183, 188, 193, 195, 196, 202, 203, 205, 208, 209, 219, 231, 232, 233, 234, 235, 237, 246, 247, 258, 259, 260, 261, 272, 274, 275], "order": [134, 224, 225], "origin": 225, "os": 43, "other": [27, 31, 231, 235, 244], "output": [17, 95, 96, 134, 135, 156, 241, 308], "output_column": [134, 135, 156], "output_error": 125, "output_id": 125, "overcommit_memori": 281, "overview": [0, 84, 305], "pack": 31, "packag": [31, 32, 45, 296], "page": 156, "parallel": [45, 94], "paramet": [45, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 147, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 170, 175, 180, 181, 183, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 208, 209, 210, 211, 219, 220, 221, 231, 232, 233, 234, 235, 237, 246, 247, 257, 258, 259, 260, 261, 272, 274, 275, 281, 286, 310], "part": 137, "patch": [17, 18], "path": [27, 31, 111, 112, 161, 173, 292], "patricia": 313, "pattern": [45, 272], "per": [94, 281], "perform": [177, 292], "period": 55, "persist": 254, "person": 32, "phi": 45, "phrase": [224, 225], "pid": 228, "pkg_config_path": 31, "platform": 31, "plugin": [31, 85, 155], "plugin_regist": 144, "plugin_unregist": 145, "po": [17, 18], "point": 225, "point1": 188, "point2": 188, "posit": [45, 123, 208], "possibl": 137, "post": [177, 292, 311], "post_filt": [132, 134, 135], "power_set": 156, "ppa": 32, "ppa\u7528\u306e\u9375\u306e\u767b\u9332": 12, "pre": 56, "prefix": [11, 31, 224, 225, 240, 250, 292, 313], "prefix_rk_search": 201, "prepar": [18, 314], "preset": [18, 27], "pretti": 97, "preview": 18, "primari": [282, 313], "print": 97, "proc": 142, "process": [45, 94, 228, 281], "product": [224, 225], "progress": [45, 228], "progress_log_level": 123, "properti": 142, "protocol": [295, 298, 312], "proxi": 177, "proxy_cach": 177, "pseudo": 89, "pull": [17, 18, 29], "quantifi": 244, "queri": [0, 135, 156, 177, 201, 202, 224, 228, 242, 314], "query_expand": [135, 146, 156, 202, 203], "query_expans": 156, "query_flag": [135, 156], "query_parallel_or": 203, "query_statu": 228, "query_str": [202, 203], "query_typ": 298, "queryexpandertsv": 243, "quit": 147, "rake": 12, "rand": 204, "rang": [112, 142, 161, 308], "range_filt": 148, "range_index": 133, "rapidjson": 45, "read": [0, 240, 250], "record": [111, 156, 254, 308], "record_id": 123, "record_numb": 284, "recov": 173, "rectangl": 188, "recurs": [124, 149, 150], "red": 12, "refer": [45, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 90, 91, 111, 163, 305, 307], "reference_acquir": 149, "reference_releas": 150, "reflect": 18, "regexp": 208, "regist": 151, "regular": [45, 208, 224, 225, 244], "reindex": 152, "relat": [132, 134, 135, 137, 156, 177, 181, 310], "relationship": 307, "releas": [12, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "relicens": 45, "remot": 312, "remov": [137, 163], "remove_blank": 275, "remove_symbol": [45, 231, 234, 235], "report": [19, 45], "report_source_loc": 275, "repositori": [5, 6, 7, 8, 13, 17, 18], "request": [17, 18, 98, 99, 177], "request_cancel": [45, 153], "requir": [94, 110, 111, 112, 114, 115, 116, 117, 118, 124, 125, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 153, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 170, 180, 183, 188, 193, 194, 195, 197, 202, 203, 205, 209, 211, 219, 237, 246, 247], "resolut": 307, "resolv": 58, "resourc": [137, 163], "respons": [45, 180], "restart": 296, "result": [306, 308], "return": [45, 99, 100, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 180, 183, 184, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 246, 247, 284, 285, 286, 287, 288], "return_cod": 228, "reus": 45, "revers": [177, 307], "right": 225, "rk": [240, 250], "romaji": 240, "room": 2, "rpm": 45, "ruby_ev": 154, "rule": 248, "run": [6, 8, 18, 27, 290, 298, 312], "sampl": [224, 225], "scalar": [90, 111], "schema": 155, "scope": 210, "score": 156, "score_n": 180, "scorer": [135, 156, 245, 315], "scorer_tf_at_most": 246, "scorer_tf_idf": 247, "script": [154, 225], "search": [0, 91, 111, 132, 134, 135, 156, 224, 225, 239, 240, 250, 251, 253, 307, 308, 309, 310, 311, 313, 314, 315], "secur": [225, 312], "see": [6, 7, 8, 58, 90, 95, 98, 99, 100, 107, 109, 111, 112, 115, 116, 117, 119, 121, 125, 126, 128, 129, 130, 131, 136, 138, 139, 142, 144, 145, 146, 148, 151, 153, 154, 155, 156, 159, 161, 165, 168, 169, 178, 179, 180, 184, 191, 192, 193, 201, 202, 203, 205, 206, 210, 223, 229, 230, 231, 232, 233, 234, 235, 237, 240, 243, 246, 247, 254, 255, 272, 274, 275, 276, 278, 286, 298], "select": [135, 156], "send": [17, 18, 312], "senna": [55, 56], "sequential_class_tag_mod": [191, 193], "seri": [40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "server": [0, 175, 178, 289, 296, 298, 312], "set": [94, 99, 177], "setup": 180, "sharabl": 0, "shard": 248, "shard_kei": [132, 134, 135, 137], "shift": 225, "shorttext": 282, "shut": 177, "shutdown": 157, "sign": 225, "similar": [11, 224, 225, 251], "simpl": [134, 135, 156, 231, 232, 233, 234, 235, 237, 257, 258, 259, 272, 274, 275], "sinc": 173, "size": 298, "slice": 156, "small": 111, "snippet": 205, "snippet_html": 206, "socket": 302, "softwar": [6, 8, 18, 27], "solut": 303, "some": 45, "sort": [306, 308, 315], "sort_hash_t": 122, "sort_kei": [132, 134, 135, 156], "sortbi": [135, 156], "sourc": [24, 25, 27, 28, 30, 31, 32, 33, 111, 112, 142, 155], "space": 45, "specif": [142, 177, 297, 310, 311], "specifi": [94, 188, 282, 308], "sphere": 188, "sphinx": 17, "stage": [132, 134, 135, 156], "standalon": 175, "start": 296, "statu": [45, 158, 179, 298], "stop": [45, 296], "storag": 0, "store": [0, 87, 161], "string": [138, 165, 168, 225, 305], "string_length": 207, "string_slic": 208, "string_substr": 209, "style": 156, "sub_filt": 210, "submit": [18, 19], "subtract": 225, "succeeded_or_not": [115, 117, 126, 128], "success": 95, "suffix": [11, 224, 225, 313], "suggest": [159, 179, 180, 181, 249, 252, 253], "summari": [43, 44, 58, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 90, 91, 94, 95, 96, 97, 98, 99, 100, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 173, 175, 177, 178, 180, 181, 183, 184, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 227, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 243, 244, 245, 246, 247, 248, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 284, 285, 286, 287, 288, 290], "support": [43, 45, 46, 94, 239], "synopsi": 181, "synopsti": 179, "syntax": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 177, 178, 180, 183, 184, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 224, 225, 230, 231, 232, 233, 234, 235, 236, 237, 244, 246, 247, 257, 258, 259, 260, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 284, 285, 286, 287, 288, 315], "t": [45, 282], "tabl": [34, 110, 111, 112, 114, 122, 123, 125, 137, 141, 142, 155, 156, 161, 163, 165, 181, 254, 282, 308, 310, 311], "table_copi": 160, "table_cr": 161, "table_dat_kei": 254, "table_hash_kei": [45, 254], "table_id": 141, "table_key_max_total_s": 141, "table_key_total_s": 141, "table_key_typ": 141, "table_list": 162, "table_n_record": 141, "table_nam": 141, "table_no_kei": 254, "table_pat_kei": [45, 46, 254], "table_remov": 163, "table_renam": 164, "table_token": 165, "table_type_id": 141, "table_type_nam": 141, "table_value_typ": 141, "tag": [161, 307, 311], "target": [111, 163, 173, 198, 208, 209, 221, 237], "target_class": 274, "target_nam": [124, 126, 127, 128, 149, 150, 152, 170], "target_valu": 196, "temporari": 254, "term": 225, "termin": 298, "test": 134, "text": [0, 111, 193, 197, 224, 282, 308, 309, 310, 315], "than": [224, 225], "thank": [39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "thi": [101, 102, 103, 104, 105, 106], "thread_dump": 166, "thread_limit": 167, "threshold": 31, "threshold_n": 186, "time": [56, 225, 282, 305, 311], "time_classify_dai": 211, "time_classify_day_of_week": 212, "time_classify_hour": 213, "time_classify_minut": 214, "time_classify_month": 215, "time_classify_second": 216, "time_classify_week": 217, "time_classify_year": 218, "time_stamp": 228, "timeout": 99, "to_nam": [110, 160], "to_tabl": 110, "token": [0, 155, 168, 256, 263], "token_filt": [142, 155, 161, 168], "token_id": 123, "token_valu": 123, "tokenbigram": 264, "tokenbigramignoreblank": 265, "tokenbigramignoreblanksplitsymbol": 266, "tokenbigramignoreblanksplitsymbolalpha": 267, "tokenbigramignoreblanksplitsymbolalphadigit": 268, "tokenbigramsplitsymbol": 269, "tokenbigramsplitsymbolalpha": 270, "tokenbigramsplitsymbolalphadigit": 271, "tokendelimit": 272, "tokendelimitnul": 273, "tokenfilternfkc": [45, 257], "tokenfilternfkc100": 258, "tokenfilternfkc150": 259, "tokenfilterstem": 260, "tokenfilterstopword": 261, "tokenizer_list": 169, "tokenmecab": [231, 235, 274], "tokenngram": 275, "tokenpattern": 276, "tokenregexp": 277, "tokent": 278, "tokentrigram": 279, "tokenunigram": 280, "tokyogeopoint": 282, "toler": 156, "tool": [31, 177, 312], "topic": 15, "total": 156, "trace": 96, "tracker": 19, "transfer": 312, "translat": [17, 18], "travi": 21, "trie": 313, "troubleshoot": 300, "true": [191, 193], "truncat": [170, 173], "tsv": [95, 243], "tune": 281, "tutori": 304, "twitter": 2, "twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240": 10, "twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b": 12, "twitter\u7de8": 10, "type": [46, 111, 112, 132, 134, 135, 141, 142, 155, 156, 180, 282, 305, 311], "type_id": 141, "type_id_of_typ": 141, "type_nam": 141, "type_name_of_typ": 141, "type_s": 141, "typo": 156, "ubuntu": 32, "ubuntu\u5411\u3051\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u78ba\u8a8d": 12, "ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": 12, "ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u516c\u958b\u306e\u53d6\u308a\u6d88\u3057": 12, "uint16": 282, "uint32": 282, "uint64": 282, "uint8": 282, "unicod": 237, "unicode_vers": 237, "unify_alphabet": 275, "unify_digit": 275, "unify_hyphen": [231, 232, 233, 234, 235, 258, 259], "unify_hyphen_and_prolonged_sound_mark": [231, 232, 233, 234, 235, 258, 259], "unify_kana": [231, 232, 233, 234, 235, 258, 259], "unify_kana_cas": [231, 232, 233, 234, 235, 258, 259], "unify_kana_hyphen": [231, 232, 233, 234, 235], "unify_kana_prolonged_sound_mark": [231, 232, 233, 234, 235], "unify_kana_voiced_sound_mark": [231, 232, 233, 234, 235, 258, 259], "unify_katakana_bu_sound": [231, 232, 233, 234, 235, 258, 259], "unify_katakana_di_sound": [231, 232, 233, 234, 235], "unify_katakana_du_small_sound": [231, 232, 233, 234, 235], "unify_katakana_du_sound": [231, 232, 233, 234, 235], "unify_katakana_gu_small_sound": [231, 232, 233, 234, 235], "unify_katakana_trailing_o": [231, 232, 233, 234, 235], "unify_katakana_v_sound": [231, 232, 233, 234, 235, 258, 259], "unify_katakana_wo_sound": [231, 232, 233, 234, 235], "unify_katakana_zu_small_sound": [231, 232, 233, 234, 235], "unify_latin_alphabet_with": [231, 235], "unify_middle_dot": [45, 231, 232, 233, 234, 235, 258, 259], "unify_prolonged_sound_mark": [231, 232, 233, 234, 235, 258, 259], "unify_symbol": 275, "unify_to_katakana": [231, 235], "unify_to_romaji": [231, 232, 233, 234, 235, 258, 259], "unix": [7, 27], "unremov": [137, 163], "unsign": 225, "up": 177, "updat": [0, 17, 250], "update\u306e\u5b9f\u884c": 12, "upgrad": 292, "us": [45, 94, 137, 163, 180, 188, 226, 231, 235, 250, 251, 253, 292, 311, 315], "usag": [58, 88, 90, 91, 96, 97, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 177, 178, 180, 181, 183, 184, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 230, 231, 232, 233, 234, 235, 236, 237, 240, 241, 243, 244, 245, 246, 247, 257, 258, 259, 260, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 284, 285, 286, 287, 288], "use_html_escap": 192, "use_range_index": 134, "use_read": 274, "user": [180, 311], "v1": 11, "v2": 11, "valu": [94, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 180, 183, 184, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 246, 247, 284, 285, 286, 287, 288, 311], "value_typ": 161, "var": 142, "variabl": 94, "variou": [305, 315], "vector": [45, 91, 111, 219, 305], "vector_column_value_weight": 141, "vector_column_value_weight_bfloat16": 141, "vector_column_value_weight_float32": 141, "vector_find": 219, "vector_new": 220, "vector_s": 221, "vector_slic": 222, "vendor": 45, "version": [12, 93, 231, 237, 292], "version\u30d1\u30e9\u30e1\u30fc\u30bf": 93, "view": 308, "vm": 281, "wal": 45, "web": 18, "weight": [45, 91, 111, 310], "wgs84geopoint": 282, "who": 311, "width": 205, "window": [8, 27, 33, 132, 134, 135, 156, 283], "window_count": 285, "window_rank": 286, "window_record_numb": 287, "window_sum": 288, "windows\u306emsys2\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": 12, "windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": 12, "without": 292, "work": [17, 250, 251, 253], "worker": 94, "worker_process": 177, "wrong": 45, "x": 39, "xml": 95, "xor": 225, "your": [17, 18], "zip": 33, "zlib": 31, "\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b": 10, "\u306e\u66f4\u65b0": 12, "\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044": 10, "\u30aa\u30d7\u30b7\u30e7\u30f3": [174, 176], "\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831": 14, "\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b": 11, "\u30af\u30a8\u30ea\u306e\u5b9f\u73fe": 11, "\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": 11, "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5": 93, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb": 176, "\u30b5\u30f3\u30d7\u30eb": [174, 176], "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb": 176, "\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c": 14, "\u30c6\u30b9\u30c8\u65b9\u6cd5": 14, "\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9": 14, "\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c": 14, "\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0": 176, "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b": 301, "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": 12, "\u30d0\u30fc\u30b8\u30e7\u30f30\u7cfb\u306e\u304a\u77e5\u3089\u305b": 36, "\u30d0\u30fc\u30b8\u30e7\u30f31": [37, 38], "\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051": 93, "\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0": 12, "\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": 12, "\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044": 12, "\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8": 12, "\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099": 12, "\u30d6\u30ed\u30b0": 12, "\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b": 282, "\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa": 14, "\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd": 10, "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9": 12, "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210": 12, "\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a": 12, "\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210": 12, "\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068": 12, "\u30ea\u30ea\u30fc\u30b9\u624b\u9806": 12, "\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": 12, "\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9": 14, "\u4f7f\u3044\u65b9": 176, "\u4f8b": [185, 189, 190, 199, 204, 301], "\u4f8b\u3048\u3070redmin": 10, "\u4fee\u6b63": [36, 37, 38, 39], "\u5236\u9650\u4e8b\u9805": 176, "\u524d\u63d0\u6761\u4ef6": 12, "\u539f\u56e0": 301, "\u5404\u7a2e\u30c6\u30b9\u30c8\u306e\u78ba\u8a8d": 12, "\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b": 301, "\u540d\u524d": [89, 174, 176, 185, 189, 190, 199, 204], "\u5909\u66f4": 37, "\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081": 12, "\u5b8c\u5168\u4e00\u81f4\u691c\u7d22": 299, "\u5b9f\u9a13\u7684": 39, "\u5bfe\u5fdc": 10, "\u5bfe\u7b56\u65b9\u6cd51": 301, "\u5bfe\u7b56\u65b9\u6cd52": 301, "\u5f15\u6570": [174, 176, 185, 189, 190, 204], "\u611f\u8b1d": [36, 37, 38, 39], "\u6539\u826f": [36, 37, 38, 39], "\u66f8\u5f0f": [174, 176, 185, 189, 190, 199, 204], "\u6700\u521d\u306e1\u56de\u3060\u3051\u884c\u3046\u624b\u9806": 12, "\u691c\u7d22": 299, "\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051": 299, "\u691c\u7d22\u306e\u6319\u52d5": 299, "\u691c\u7d22\u4f8b1": 11, "\u691c\u7d22\u4f8b2": 11, "\u691c\u7d22\u4f8b3": 11, "\u691c\u7d22\u4f8b4": 11, "\u6982\u8981": 93, "\u69d8\u3005\u306a\u30c6\u30b9\u30c8": 14, "\u6bce\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u3067\u884c\u3046\u624b\u9806": 12, "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b": 14, "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b": 14, "\u7279\u6b8a\u547d\u4ee4": 176, "\u7406\u7531": 10, "\u8aac\u660e": [89, 174, 176, 185, 189, 190, 199, 204], "\u8fd4\u5024": [185, 189, 190, 199, 204], "\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": 9, "\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f": 10, "\u90e8\u5206\u4e00\u81f4\u691c\u7d22": 299, "\u95a2\u4fc2\u5f0f": 11, "\u95be\u5024\u3092\u3042\u3052\u308b": 301, "\u9759\u7684\u89e3\u6790": 14, "\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22": 299}})
\ No newline at end of file
+Search.setIndex({"alltitles": {"--enable-apache-arrow and --disable-apache-arrow": [[31, "enable-apache-arrow-and-disable-apache-arrow"]], "--force-lock-clear": [[173, "force-lock-clear"]], "--force-truncate": [[173, "force-truncate"]], "--help": [[31, "help"]], "--localstatedir=PATH": [[31, "localstatedir-path"]], "--log-flags": [[173, "log-flags"], [173, "id3"]], "--log-level": [[173, "log-level"], [173, "id1"]], "--log-path": [[173, "log-path"], [173, "id2"]], "--prefix=PATH": [[31, "prefix-path"]], "--since": [[173, "since"]], "--target": [[173, "target"]], "--with-default-encoding=ENCODING": [[31, "with-default-encoding-encoding"]], "--with-log-path=PATH": [[31, "with-log-path-path"]], "--with-lz4": [[31, "with-lz4"]], "--with-match-escalation-threshold=NUMBER": [[31, "with-match-escalation-threshold-number"]], "--with-message-pack=MESSAGE_PACK_INSTALL_PREFIX": [[31, "with-message-pack-message-pack-install-prefix"]], "--with-munin-plugins": [[31, "with-munin-plugins"]], "--with-package-platform=PLATFORM": [[31, "with-package-platform-platform"]], "--with-zlib": [[31, "with-zlib"]], "-13: GRN_NOT_ENOUGH_SPACE": [[104, null]], "-22: GRN_INVALID_ARGUMENT": [[102, null]], "-2: GRN_OPERATION_NOT_PERMITTED": [[105, null]], "-34: GRN_RESOURCE_DEADLOCK_AVOIDED": [[106, null]], "-3: GRN_NO_SUCH_FILE_OR_DIRECTORY": [[103, null]], "-6: GRN_INPUT_OUTPUT_ERROR": [[101, null]], "-DCMAKE_INSTALL_PREFIX": [[27, "dcmake-install-prefix"]], "-DCMAKE_PREFIX_PATH=PATHS": [[27, "dcmake-prefix-path-paths"]], "-DGRN_WITH_APACHE_ARROW": [[27, "dgrn-with-apache-arrow"]], "-DGRN_WITH_MRUBY": [[27, "dgrn-with-mruby"]], "-G GENERATOR": [[27, "g-generator"]], "0.7.6\u30ea\u30ea\u30fc\u30b9 - 2010-08-19": [[36, "id5"]], "0.7.7\u30ea\u30ea\u30fc\u30b9 - 2010-08-25": [[36, "id2"]], "1.0.0\u30ea\u30ea\u30fc\u30b9 - 2010-08-29": [[37, "id36"]], "1.0.1\u30ea\u30ea\u30fc\u30b9 - 2010-09-06": [[37, "id32"]], "1.0.2\u30ea\u30ea\u30fc\u30b9 - 2010-09-09": [[37, "id27"]], "1.0.3\u30ea\u30ea\u30fc\u30b9 - 2010-10-29": [[37, "id22"]], "1.0.4\u30ea\u30ea\u30fc\u30b9 - 2010-11-29": [[37, "id17"]], "1.0.5\u30ea\u30ea\u30fc\u30b9 - 2010-12-29": [[37, "id12"]], "1.0.6\u30ea\u30ea\u30fc\u30b9 - 2010-12-31": [[37, "id9"]], "1.0.7\u30ea\u30ea\u30fc\u30b9 - 2011-01-29": [[37, "id5"]], "1.0.8\u30ea\u30ea\u30fc\u30b9 - 2011-02-02": [[37, "id2"]], "1.1.0\u30ea\u30ea\u30fc\u30b9 - 2011-02-09": [[38, "id2"]], "1.2.0\u30ea\u30ea\u30fc\u30b9 - 2011-03-29": [[39, "id24"]], "1.2.1\u30ea\u30ea\u30fc\u30b9 - 2011-04-29": [[39, "id20"]], "2005-04-12": [[55, "id20"]], "2005-06-23": [[55, "id18"]], "2005-07-05": [[55, "id17"]], "2005-08-16": [[55, "id15"]], "2005-09-08": [[55, "id13"]], "2005-09-17": [[55, "id11"]], "2005-10-27": [[55, "id9"]], "2005-12-22": [[55, "id7"]], "2006-01-12": [[55, "id5"]], "2006-01-16": [[55, "id4"]], "2006-03-03": [[55, "id2"]], "2006-04-05": [[55, "id1"]], "API": [[59, null]], "Access log": [[292, "access-log"]], "Added NormalizerNFKC": [[45, "added-reference-normalizers-normalizer-nfkc"]], "Added TokenFilterNFKC": [[45, "added-reference-token-filters-token-filter-nfkc"]], "Addition assignment operator": [[225, "addition-assignment-operator"]], "Addition operator": [[225, "addition-operator"]], "Additional information about lexicon for full text search": [[309, null]], "Additional normalizers": [[229, "additional-normalizers"]], "Administration tool (HTTP)": [[312, "administration-tool-http"]], "Advanced drilldown related parameters": [[135, "advanced-drilldown-related-parameters"], [156, "advanced-drilldown-related-parameters"]], "Advanced search parameters": [[135, "advanced-search-parameters"], [156, "advanced-search-parameters"]], "Advanced usage": [[231, "advanced-usage"], [232, "advanced-usage"], [233, "advanced-usage"], [234, "advanced-usage"], [235, "advanced-usage"], [237, "advanced-usage"], [257, "advanced-usage"], [258, "advanced-usage"], [259, "advanced-usage"], [272, "advanced-usage"], [274, "advanced-usage"], [275, "advanced-usage"]], "Alias": [[58, null]], "AlmaLinux": [[24, null]], "AlmaLinux 8": [[24, "almalinux-8"]], "AlmaLinux 9": [[24, "almalinux-9"]], "Amazon Linux": [[25, null]], "Amazon Linux 2023": [[25, "amazon-linux-2023"]], "Amazon Linux: Added support for Amazon Linux 2023 aarch64": [[45, "install-amazon-linux-added-support-for-amazon-linux-2023-aarch64"]], "Anchor": [[244, "anchor"]], "Apache Arrow": [[96, "apache-arrow"]], "Apache Arrow is required": [[94, "apache-arrow-is-required"]], "Apache Arrow\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u53d6\u5f97": [[12, "apache-arrow"]], "Arithmetic operators": [[225, "arithmetic-operators"]], "Array": [[225, "array"]], "Assignment expression": [[224, "assignment-expression"]], "Assignment operators": [[225, "assignment-operators"]], "Authentication": [[292, "authentication"]], "Available Values": [[94, "available-values"]], "Available nginx modules": [[177, "available-nginx-modules"]], "BODY": [[95, "body"]], "Basic commands": [[308, "basic-commands"]], "Basic operations": [[308, null]], "Basic operators": [[225, "basic-operators"]], "Basic usage": [[137, "basic-usage"], [163, "basic-usage"]], "Bigram table": [[311, "bigram-table"]], "Bitwise AND assignment operator": [[225, "bitwise-and-assignment-operator"]], "Bitwise AND operator": [[225, "bitwise-and-operator"]], "Bitwise NOT operator": [[225, "bitwise-not-operator"]], "Bitwise OR assignment operator": [[225, "bitwise-or-assignment-operator"]], "Bitwise OR operator": [[225, "bitwise-or-operator"]], "Bitwise XOR assignment operator": [[225, "bitwise-xor-assignment-operator"]], "Bitwise XOR operator": [[225, "bitwise-xor-operator"]], "Bitwise left shift assignment operator": [[225, "bitwise-left-shift-assignment-operator"]], "Bitwise operators": [[225, "bitwise-operators"]], "Bitwise signed right shift assignment operator": [[225, "bitwise-signed-right-shift-assignment-operator"]], "Bitwise unsigned right shift assignment operator": [[225, "bitwise-unsigned-right-shift-assignment-operator"]], "Bool": [[282, "bool"]], "Boolean": [[225, "boolean"]], "Boolean type": [[305, "boolean-type"]], "Browse the administration tool": [[177, "browse-the-administration-tool"]], "Build Groonga": [[7, "build-groonga"], [8, "build-groonga"]], "Build and install Groonga": [[27, "build-and-install-groonga"]], "Build from source": [[24, "build-from-source"], [25, "build-from-source"], [28, "build-from-source"], [30, "build-from-source"], [31, "build-from-source"], [32, "build-from-source"], [33, "build-from-source"]], "Built-in normalizers": [[229, "built-in-normalizers"]], "Built-in scorers": [[245, "built-in-scorers"]], "Builtin command": [[175, "builtin-command"]], "Builtin types": [[282, "builtin-types"]], "C API": [[16, null]], "CANDIDATE_N": [[180, "candidate-n"]], "CMake options": [[27, "cmake-options"]], "CMake presets": [[27, "cmake-presets"]], "COLUMN": [[155, "column"]], "COLUMN_FULL_NAME": [[141, "column-full-name"]], "COLUMN_ID": [[141, "column-id"]], "COLUMN_INFORMATION": [[112, "column-information"]], "COLUMN_LIST_HEADER": [[112, "column-list-header"]], "COLUMN_NAME": [[141, "column-name"]], "COLUMN_TABLE": [[141, "column-table"]], "COLUMN_TYPE_NAME": [[141, "column-type-name"]], "COLUMN_TYPE_RAW_ID": [[141, "column-type-raw-id"]], "COLUMN_TYPE_RAW_NAME": [[141, "column-type-raw-name"]], "COLUMN_VALUE_TYPE": [[141, "column-value-type"]], "COMMAND": [[155, "command"]], "CONDITION_1": [[186, "condition-1"]], "CONDITION_N": [[186, "condition-n"]], "CONTEXT_ID": [[228, "context-id"]], "Cache related parameter": [[132, "cache-related-parameter"], [134, "cache-related-parameter"], [135, "cache-related-parameter"], [156, "cache-related-parameter"]], "Cascade delete": [[121, "cascade-delete"]], "Cast": [[86, null]], "CentOS": [[26, null]], "Changes": [[55, "changes"]], "Character class": [[244, "character-class"]], "Characteristics": [[254, "characteristics"]], "Characteristics of Groonga": [[0, null]], "Characteristics of all tables": [[254, "id5"]], "Chat room": [[2, "chat-room"]], "Check the settings": [[94, "check-the-settings"]], "Checkout Groonga from the repository": [[6, "checkout-groonga-from-the-repository"], [7, "checkout-groonga-from-the-repository"], [8, "checkout-groonga-from-the-repository"]], "Choice": [[244, "choice"]], "Client": [[1, null]], "Client mode": [[175, "client-mode"]], "Column": [[87, null], [141, "column"]], "Column store and aggregate query": [[0, "column-store-and-aggregate-query"]], "Combined expression": [[224, "combined-expression"]], "Command": [[92, null], [175, "command"]], "Command format": [[308, "command-format"]], "Command line": [[241, "command-line"]], "Command line parameters": [[175, "command-line-parameters"], [180, "command-line-parameters"]], "Command version": [[93, null]], "Commands": [[171, "commands"], [173, "commands"], [248, "commands"]], "Comments table": [[311, "comments-table"]], "Community": [[2, null]], "Comparison": [[292, null]], "Comparison operators": [[225, "comparison-operators"]], "Completion": [[250, null], [252, "completion"]], "Conditional expression": [[224, "conditional-expression"]], "Configuration": [[21, "configuration"], [171, null]], "Configuration directives": [[177, "configuration-directives"]], "Configuration file": [[292, "configuration-file"]], "Control syntaxes": [[225, "control-syntaxes"]], "Cooccurrence search": [[250, "cooccurrence-search"], [251, "cooccurrence-search"], [253, "cooccurrence-search"]], "Correction": [[251, null], [252, "correction"]], "Create a column": [[308, "create-a-column"]], "Create a column that refers a table\u2019s record": [[111, "create-a-column-that-refers-a-table-s-record"]], "Create a database": [[308, "create-a-database"]], "Create a generated column": [[111, "create-a-generated-column"]], "Create a large index column": [[111, "create-a-large-index-column"]], "Create a lexicon table for full text search": [[308, "create-a-lexicon-table-for-full-text-search"]], "Create a medium index column": [[111, "create-a-medium-index-column"]], "Create a multiple columns index column": [[111, "create-a-multiple-columns-index-column"]], "Create a scalar column": [[111, "create-a-scalar-column"]], "Create a small index column": [[111, "create-a-small-index-column"]], "Create a table": [[308, "create-a-table"], [311, "create-a-table"]], "Create a vector column": [[111, "create-a-vector-column"]], "Create a weight vector column": [[111, "create-a-weight-vector-column"]], "Create an index column": [[111, "create-an-index-column"]], "Create an index column for full text search": [[111, "create-an-index-column-for-full-text-search"], [308, "create-an-index-column-for-full-text-search"]], "Create configure": [[6, "create-configure"]], "Create data store table": [[161, "create-data-store-table"]], "Create large data store table": [[161, "create-large-data-store-table"]], "Create lexicon": [[161, "create-lexicon"]], "Create range index table": [[161, "create-range-index-table"]], "Create tag index table": [[161, "create-tag-index-table"]], "Creating column index against each column": [[310, "creating-column-index-against-each-column"]], "Creating one column index against multiple columns": [[310, "creating-one-column-index-against-multiple-columns"]], "Custom command version": [[292, "custom-command-version"]], "Custom prefix path": [[292, "custom-prefix-path"]], "Cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "cutter"]], "DATABASE_NAME_TABLE": [[141, "database-name-table"]], "DATABASE_PATH": [[180, "database-path"]], "DATABASE_TYPE_ID": [[141, "database-type-id"]], "DATABASE_TYPE_NAME": [[141, "database-type-name"]], "DATA_COLUMN_VALUE_COMPRESS_FILTER": [[141, "data-column-value-compress-filter"]], "DATA_COLUMN_VALUE_COMPRESS_METHOD": [[141, "data-column-value-compress-method"]], "DB_API": [[11, "db-api"]], "DESCTIPION": [[179, "desctipion"]], "DOMAIN": [[112, "domain"]], "Daemon mode": [[175, "daemon-mode"]], "Data store columns": [[87, "data-store-columns"]], "Data types": [[282, null]], "Database": [[141, "database"]], "Date and time type": [[305, "date-and-time-type"]], "Debian GNU/Linux": [[28, null]], "Decreases used resources": [[137, "decreases-used-resources"], [163, "decreases-used-resources"]], "Dependencies": [[31, "dependencies"]], "Description": [[282, "description"]], "Detail": [[100, "detail"]], "Development": [[20, null]], "Differences from select": [[135, "differences-from-select"]], "Division assignment operator": [[225, "division-assignment-operator"]], "Division operator": [[225, "division-operator"]], "Docker": [[29, null]], "Docker\u30a4\u30e1\u30fc\u30b8\u306e\u66f4\u65b0": [[12, "docker"]], "Download source": [[27, "download-source"]], "Drilldown": [[156, "drilldown"], [306, null]], "Drilldown by domain column": [[306, "id1"]], "Drilldown related parameters": [[135, "drilldown-related-parameters"], [156, "drilldown-related-parameters"]], "Drilldown with multiple column": [[306, "drilldown-with-multiple-column"]], "Dropped support OSes": [[43, "dropped-support-oses"]], "Dynamic column": [[156, "dynamic-column"]], "Dynamic column related parameters": [[132, "dynamic-column-related-parameters"], [134, "dynamic-column-related-parameters"], [135, "dynamic-column-related-parameters"], [156, "dynamic-column-related-parameters"]], "ELAPSED_TIME": [[228, "elapsed-time"]], "EXAMPLE": [[179, "example"]], "EXIT STATUS": [[179, "exit-status"]], "Enable request timeout by default": [[99, "enable-request-timeout-by-default"]], "Equal condition": [[224, "equal-condition"]], "Equal operator": [[225, "equal-operator"]], "Error case": [[95, "error-case"]], "Escape": [[224, "escape"], [244, "escape"]], "Example": [[61, "example"], [62, "example"], [63, "example"], [65, "example"], [66, "example"], [67, "example"], [68, "example"], [69, "example"], [70, "example"], [71, "example"], [72, "example"], [73, "example"], [74, "example"], [75, "example"], [76, "example"], [77, "example"], [78, "example"], [79, "example"], [80, "example"], [81, "example"], [82, "example"], [83, "example"], [84, "example"], [298, "example"], [302, "example"], [303, "example"]], "Examples": [[21, "examples"]], "Executables": [[172, null]], "Extraction by position": [[208, "extraction-by-position"], [208, "id1"]], "Extraction by regular expression": [[208, "extraction-by-regular-expression"], [208, "id2"]], "FILES": [[179, "files"]], "FLAGS": [[112, "flags"], [142, "flags"]], "Facebook": [[2, "facebook"]], "Facebook\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b": [[12, "facebook"]], "Fixed a bug that deb/rpm packages can\u2019t be used on machines that don\u2019t have AVX": [[45, "fixed-a-bug-that-deb-rpm-packages-can-t-be-used-on-machines-that-don-t-have-avx"]], "Fixes": [[39, "fixes"], [39, "id2"], [39, "id5"], [39, "id8"], [39, "id11"], [39, "id13"], [39, "id16"], [39, "id19"], [41, "fixes"], [41, "id2"], [41, "id5"], [41, "id8"], [41, "id11"], [41, "id13"], [41, "id16"], [41, "id19"], [41, "id22"], [41, "id25"], [41, "id27"], [42, "fixes"], [42, "id2"], [42, "id6"], [42, "id10"], [42, "id13"], [42, "id17"], [42, "id21"], [42, "id28"], [42, "id35"], [42, "id39"], [43, "fixes"], [43, "id3"], [43, "id5"], [43, "id7"], [43, "id9"], [43, "id11"], [43, "id15"], [43, "id17"], [43, "id24"], [43, "id26"], [44, "fixes"], [44, "id2"], [44, "id4"], [44, "id6"], [44, "id7"], [44, "id9"], [44, "id10"], [44, "id12"], [44, "id14"], [44, "id16"], [44, "id19"], [44, "id24"], [45, "fixes"], [45, "id2"], [45, "id4"], [45, "id6"], [45, "id7"], [45, "id9"], [45, "id12"], [45, "id16"], [45, "id17"], [45, "id19"], [45, "id22"], [45, "id25"], [47, "fixes"], [47, "id1"], [47, "id3"], [47, "id6"], [47, "id9"], [47, "id12"], [47, "id15"], [47, "id18"], [47, "id21"], [47, "id24"], [47, "id27"], [47, "id30"], [47, "id33"], [48, "fixes"], [48, "id2"], [48, "id5"], [48, "id8"], [48, "id11"], [48, "id14"], [48, "id17"], [48, "id20"], [48, "id23"], [48, "id27"], [48, "id30"], [48, "id32"], [49, "fixes"], [49, "id1"], [49, "id3"], [49, "id6"], [49, "id9"], [49, "id12"], [49, "id15"], [49, "id18"], [49, "id21"], [49, "id24"], [49, "id27"], [49, "id30"], [50, "fixes"], [50, "id2"], [50, "id5"], [50, "id8"], [50, "id11"], [50, "id14"], [50, "id17"], [50, "id20"], [50, "id23"], [50, "id26"], [50, "id29"], [50, "id32"], [50, "id35"], [51, "fixes"], [51, "id2"], [51, "id4"], [51, "id6"], [51, "id9"], [51, "id11"], [51, "id14"], [51, "id17"], [51, "id20"], [51, "id23"], [51, "id25"], [51, "id28"], [51, "id31"], [51, "id34"], [51, "id37"], [52, "fixes"], [52, "id2"], [52, "id5"], [52, "id8"], [52, "id10"], [52, "id12"], [52, "id15"], [52, "id18"], [52, "id21"], [52, "id24"], [52, "id26"], [52, "id29"], [53, "fixes"], [53, "id2"], [53, "id4"], [53, "id6"], [53, "id9"], [53, "id11"], [53, "id13"], [53, "id15"], [53, "id17"], [53, "id19"], [53, "id22"], [53, "id25"], [54, "fixes"], [54, "id4"], [54, "id7"], [54, "id9"], [54, "id12"], [54, "id15"], [54, "id18"], [54, "id21"], [54, "id24"], [54, "id27"], [55, "fixes"]], "Float": [[225, "float"], [282, "float"]], "Float32": [[282, "float32"]], "For Groonga developers": [[4, null]], "For use as a daemon process": [[94, "for-use-as-a-daemon-process"]], "Format": [[96, "format"], [228, "format"], [228, "id3"], [243, "format"]], "FreeBSD": [[281, "freebsd"]], "Full text search": [[308, "full-text-search"]], "Full text search and Instant update": [[0, "full-text-search-and-instant-update"]], "Full text search condition": [[224, "full-text-search-condition"]], "Full text search condition (with explicit match column)": [[224, "full-text-search-condition-with-explicit-match-column"]], "Full text search with specific index name": [[310, "full-text-search-with-specific-index-name"]], "Full-text search against multiple columns": [[310, "full-text-search-against-multiple-columns"]], "Function": [[182, null]], "Function call": [[225, "function-call"]], "Functions": [[227, "functions"]], "Fuzzy query related parameters": [[156, "fuzzy-query-related-parameters"]], "GENERATED_COLUMN_SOURCE_FULL_NAME": [[141, "generated-column-source-full-name"]], "GENERATED_COLUMN_SOURCE_ID": [[141, "generated-column-source-id"]], "GENERATED_COLUMN_SOURCE_NAME": [[141, "generated-column-source-name"]], "GENERATED_COLUMN_SOURCE_TABLE": [[141, "generated-column-source-table"]], "GENERATED_COLUMN_VALUE_GENERATOR": [[141, "generated-column-value-generator"]], "GENERATOR": [[112, "generator"]], "GET parameters": [[180, "get-parameters"]], "GNU/Linux or UNIX": [[27, "gnu-linux-or-unix"], [27, "id1"], [27, "id5"]], "GQTP": [[290, null], [298, null]], "GQTP header": [[298, "gqtp-header"]], "GQTP\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": [[9, "gqtp"]], "Generate HTML": [[18, "generate-html"]], "Generate the HTML files with your changes": [[18, "generate-the-html-files-with-your-changes"]], "Generated column": [[87, "generated-column"]], "Generated scalar column": [[90, "generated-scalar-column"]], "Generated vector column": [[91, "generated-vector-column"]], "Geo location search with index": [[307, "geo-location-search-with-index"]], "Geo point": [[225, "geo-point"]], "Geo-location (latitude and longitude) search": [[0, "geo-location-latitude-and-longitude-search"]], "GeoIndex table": [[311, "geoindex-table"]], "Geolocation search": [[239, null]], "Get a record": [[308, "get-a-record"]], "Global configurations": [[60, null]], "Glossary": [[248, "glossary"]], "Greater than condition": [[224, "greater-than-condition"]], "Greater than operator": [[225, "greater-than-operator"]], "Greater than or equal to condition": [[224, "greater-than-or-equal-to-condition"]], "Greater than or equal to operator": [[225, "greater-than-or-equal-to-operator"]], "Groonga HTTP server": [[178, null]], "Groonga documentation": [[22, null]], "Groonga library": [[0, "groonga-library"]], "Groonga overview": [[0, "groonga-overview"]], "Groonga server": [[0, "groonga-server"]], "Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": [[9, null]], "Groonga-httpd specific directives": [[177, "groonga-httpd-specific-directives"]], "Groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97": [[12, "id7"]], "Groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97": [[12, "groonga"]], "Groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb": [[11, "groonga"]], "Group": [[244, "group"]], "Grouping": [[224, "grouping"], [225, "grouping"]], "Gzip compression": [[292, "gzip-compression"]], "HEADER": [[95, "header"], [112, "header"], [115, "header"], [116, "header"], [117, "header"], [126, "header"], [128, "header"], [142, "header"], [155, "header"]], "HTTP": [[241, "http"], [291, null]], "HTTPS": [[292, "https"]], "HashTags table": [[311, "hashtags-table"]], "Higlight": [[44, "higlight"]], "Higlight and Summary of changes from 12.0.0 to 12.1.2": [[44, "higlight-and-summary-of-changes-from-12-0-0-to-12-1-2"]], "Homebrew": [[30, "homebrew"]], "Homebrew\u306e\u66f4\u65b0": [[12, "homebrew"]], "How it learns": [[250, "how-it-learns"], [251, "how-it-learns"], [253, "how-it-learns"]], "How it works": [[250, "how-it-works"], [251, "how-it-works"], [253, "how-it-works"]], "How to add a new documentation": [[18, "how-to-add-a-new-documentation"]], "How to add new language": [[17, "how-to-add-new-language"]], "How to analyze": [[302, "how-to-analyze"]], "How to analyze error messages": [[302, null]], "How to analyze socket errors": [[302, "how-to-analyze-socket-errors"]], "How to apply just weight": [[91, "how-to-apply-just-weight"]], "How to assign ID to request": [[98, "how-to-assign-id-to-request"]], "How to avoid mmap Cannot allocate memory error": [[303, null]], "How to build Groonga at the repository": [[5, null]], "How to build Groonga at the repository by CMake on GNU/Linux or Unix": [[7, null]], "How to build Groonga at the repository by CMake on Windows": [[8, null]], "How to build Groonga at the repository by GNU Autotools": [[6, null]], "How to change column configuration": [[110, "how-to-change-column-configuration"]], "How to change table configuration": [[110, "how-to-change-table-configuration"]], "How to clone Groonga repository": [[17, "how-to-clone-groonga-repository"]], "How to confirm HTML output": [[17, "how-to-confirm-html-output"]], "How to contribute in documentation topics": [[15, null]], "How to contribute to groonga": [[3, null]], "How to convert romaji to reading": [[240, "how-to-convert-romaji-to-reading"]], "How to create": [[90, "how-to-create"], [91, "how-to-create"], [91, "id3"], [91, "id7"], [91, "id11"]], "How to edit .edit": [[17, "how-to-edit-edit"]], "How to edit documentation": [[18, "how-to-edit-documentation"]], "How to extract learning data": [[253, "how-to-extract-learning-data"]], "How to fork and clone Groonga repository": [[18, "how-to-fork-and-clone-groonga-repository"]], "How to generate HTML files": [[17, "how-to-generate-html-files"]], "How to install Sphinx": [[17, "how-to-install-sphinx"]], "How to load": [[91, "how-to-load"], [91, "id4"], [91, "id8"]], "How to manage language models": [[227, "how-to-manage-language-models"]], "How to report a bug": [[19, null]], "How to resolve alias": [[58, "how-to-resolve-alias"]], "How to run": [[290, "how-to-run"]], "How to run a GQTP client": [[298, "how-to-run-a-gqtp-client"]], "How to run a GQTP daemon": [[298, "how-to-run-a-gqtp-daemon"]], "How to run a GQTP server": [[298, "how-to-run-a-gqtp-server"]], "How to run an HTTP server": [[312, "how-to-run-an-http-server"]], "How to search": [[91, "how-to-search"], [91, "id5"], [91, "id9"]], "How to send .po files": [[17, "how-to-send-po-files"]], "How to send a command to an HTTP server": [[312, "how-to-send-a-command-to-an-http-server"]], "How to send patch": [[17, "how-to-send-patch"]], "How to send pull request": [[17, "how-to-send-pull-request"]], "How to send your works": [[17, "how-to-send-your-works"]], "How to set timeout to request": [[99, "how-to-set-timeout-to-request"]], "How to terminate a GQTP server": [[298, "how-to-terminate-a-gqtp-server"]], "How to update .edit files": [[17, "how-to-update-edit-files"]], "How to update .po files": [[17, "how-to-update-po-files"]], "How to update reading data": [[250, "how-to-update-reading-data"]], "How to use": [[94, "how-to-use"], [226, "how-to-use"], [250, "how-to-use"], [251, "how-to-use"], [253, "how-to-use"]], "Hypertext transfer protocol (HTTP)": [[312, "hypertext-transfer-protocol-http"]], "I18N": [[17, null]], "ID": [[112, "id"]], "INDEX": [[155, "index"]], "INDEX_COLUMN_SOURCE_FULL_NAME": [[141, "index-column-source-full-name"]], "INDEX_COLUMN_SOURCE_ID": [[141, "index-column-source-id"]], "INDEX_COLUMN_SOURCE_NAME": [[141, "index-column-source-name"]], "INDEX_COLUMN_SOURCE_TABLE": [[141, "index-column-source-table"]], "INDEX_COLUMN_VALUE_POSITION": [[141, "index-column-value-position"]], "INDEX_COLUMN_VALUE_SECTION": [[141, "index-column-value-section"]], "INDEX_COLUMN_VALUE_SIZE": [[141, "index-column-value-size"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_ARRAY_SEGMENT_ID": [[141, "index-column-value-statistics-max-array-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_BUFFER_SEGMENT_ID": [[141, "index-column-value-statistics-max-buffer-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_IN_USE_CHUNK_ID": [[141, "index-column-value-statistics-max-in-use-chunk-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_IN_USE_PHYSICAL_SEGMENT_ID": [[141, "index-column-value-statistics-max-in-use-physical-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_SECTION_ID": [[141, "index-column-value-statistics-max-section-id"]], "INDEX_COLUMN_VALUE_STATISTICS_NEXT_PHYSICAL_SEGMENT_ID": [[141, "index-column-value-statistics-next-physical-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_N_ARRAY_SEGMENTS": [[141, "index-column-value-statistics-n-array-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_BUFFER_SEGMENTS": [[141, "index-column-value-statistics-n-buffer-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_GARBAGE_CHUNKS": [[141, "index-column-value-statistics-n-garbage-chunks"]], "INDEX_COLUMN_VALUE_STATISTICS_N_GARBAGE_SEGMENTS": [[141, "index-column-value-statistics-n-garbage-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_PHYSICAL_SEGMENTS": [[141, "index-column-value-statistics-n-physical-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_UNMANAGED_SEGMENTS": [[141, "index-column-value-statistics-n-unmanaged-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_TOTAL_CHUNK_SIZE": [[141, "index-column-value-statistics-total-chunk-size"]], "INDEX_COLUMN_VALUE_WEIGHT": [[141, "index-column-value-weight"]], "Improvements": [[39, "improvements"], [39, "id1"], [39, "id4"], [39, "id7"], [39, "id10"], [39, "id12"], [39, "id15"], [39, "id18"], [40, "improvements"], [41, "improvements"], [41, "id1"], [41, "id4"], [41, "id6"], [41, "id10"], [41, "id12"], [41, "id15"], [41, "id18"], [41, "id21"], [41, "id24"], [41, "id28"], [42, "improvements"], [42, "id1"], [42, "id5"], [42, "id9"], [42, "id12"], [42, "id16"], [42, "id20"], [42, "id24"], [42, "id27"], [42, "id31"], [42, "id34"], [42, "id38"], [43, "improvements"], [43, "id1"], [43, "id2"], [43, "id4"], [43, "id6"], [43, "id8"], [43, "id10"], [43, "id12"], [43, "id14"], [43, "id16"], [43, "id20"], [43, "id23"], [43, "id28"], [44, "improvements"], [44, "id1"], [44, "id3"], [44, "id5"], [44, "id8"], [44, "id11"], [44, "id13"], [44, "id15"], [44, "id18"], [44, "id21"], [44, "id23"], [45, "improvements"], [45, "id1"], [45, "id3"], [45, "id5"], [45, "id8"], [45, "id11"], [45, "id14"], [45, "id15"], [45, "id18"], [45, "id20"], [45, "id21"], [45, "id24"], [46, "improvements"], [47, "improvements"], [47, "id2"], [47, "id5"], [47, "id8"], [47, "id11"], [47, "id14"], [47, "id17"], [47, "id20"], [47, "id23"], [47, "id26"], [47, "id29"], [47, "id32"], [48, "improvements"], [48, "id1"], [48, "id4"], [48, "id7"], [48, "id10"], [48, "id13"], [48, "id16"], [48, "id19"], [48, "id22"], [48, "id25"], [48, "id26"], [48, "id29"], [49, "improvements"], [49, "id2"], [49, "id5"], [49, "id8"], [49, "id11"], [49, "id14"], [49, "id17"], [49, "id20"], [49, "id23"], [49, "id26"], [49, "id29"], [50, "improvements"], [50, "id1"], [50, "id4"], [50, "id7"], [50, "id10"], [50, "id13"], [50, "id16"], [50, "id19"], [50, "id22"], [50, "id25"], [50, "id28"], [50, "id31"], [50, "id34"], [51, "improvements"], [51, "id1"], [51, "id3"], [51, "id5"], [51, "id8"], [51, "id10"], [51, "id13"], [51, "id16"], [51, "id19"], [51, "id22"], [51, "id27"], [51, "id30"], [51, "id33"], [51, "id36"], [52, "improvements"], [52, "id1"], [52, "id4"], [52, "id7"], [52, "id9"], [52, "id11"], [52, "id14"], [52, "id17"], [52, "id20"], [52, "id23"], [52, "id25"], [52, "id28"], [53, "improvements"], [53, "id1"], [53, "id3"], [53, "id5"], [53, "id8"], [53, "id10"], [53, "id12"], [53, "id14"], [53, "id16"], [53, "id18"], [53, "id21"], [53, "id24"], [54, "improvements"], [54, "id1"], [54, "id2"], [54, "id3"], [54, "id6"], [54, "id8"], [54, "id11"], [54, "id14"], [54, "id17"], [54, "id20"], [54, "id23"], [54, "id26"], [54, "id29"], [55, "improvements"], [55, "id3"], [55, "id6"], [55, "id8"], [55, "id10"], [55, "id12"], [55, "id14"], [55, "id16"], [55, "id19"], [55, "id21"]], "Index": [[244, "index"]], "Index column": [[87, "index-column"], [88, null]], "Index column: Fixed an Offline index construction bug": [[45, "reference-columns-index-fixed-an-offline-index-construction-bug"]], "Indexes with Weight": [[310, "indexes-with-weight"]], "Indexing": [[226, null]], "Install": [[23, null], [243, "install"]], "Install depended software": [[6, "install-depended-software"], [8, "install-depended-software"], [27, "install-depended-software"]], "Install dependent software": [[18, "install-dependent-software"]], "Int16": [[282, "int16"]], "Int32": [[282, "int32"]], "Int64": [[282, "int64"]], "Int8": [[282, "int8"]], "Integer": [[225, "integer"]], "Introduction": [[18, null], [252, null]], "Invalid mode": [[111, "invalid-mode"]], "Inverted index and tokenizer": [[0, "inverted-index-and-tokenizer"]], "JSON": [[96, "json"]], "JSON and MessagePack": [[95, "json-and-messagepack"]], "Known Issues": [[42, "known-issues"], [42, "id3"], [42, "id7"], [42, "id11"], [42, "id14"], [42, "id18"], [42, "id22"], [42, "id25"], [42, "id29"], [42, "id32"], [42, "id36"], [43, "known-issues"], [43, "id18"], [43, "id21"], [43, "id25"]], "L": [[228, "l"]], "Language model": [[227, null]], "Launch groonga-suggest-httpd": [[180, "launch-groonga-suggest-httpd"]], "Launch groonga-suggest-learner": [[180, "launch-groonga-suggest-learner"]], "Learn from user inputs": [[180, "learn-from-user-inputs"]], "Learning": [[252, "learning"]], "Learning data from groonga-suggest-httpd": [[181, "learning-data-from-groonga-suggest-httpd"]], "Learning data from log files": [[181, "learning-data-from-log-files"]], "Left shift operator": [[225, "left-shift-operator"]], "Less than condition": [[224, "less-than-condition"]], "Less than operator": [[225, "less-than-operator"]], "Less than or equal to condition": [[224, "less-than-or-equal-to-condition"]], "Less than or equal to operator": [[225, "less-than-or-equal-to-operator"]], "Let\u2019s create micro-blog": [[311, null]], "Libraries": [[31, "libraries"]], "Limitation": [[243, "limitation"]], "Limitations": [[34, null], [91, "limitations"], [254, "limitations"]], "Limitations about types": [[282, "limitations-about-types"]], "Limitations of column": [[34, "limitations-of-column"]], "Limitations of indexing": [[34, "limitations-of-indexing"]], "Limitations of table": [[34, "limitations-of-table"]], "Linux": [[281, "linux"]], "List": [[100, "list"]], "Literals": [[225, "literals"]], "Load records": [[308, "load-records"]], "Loading data": [[311, "loading-data"]], "Loading data by POST": [[177, "loading-data-by-post"]], "Location": [[243, "location"]], "Log": [[228, null]], "Logical AND": [[224, "logical-and"]], "Logical AND NOT": [[224, "logical-and-not"]], "Logical AND NOT operator": [[225, "logical-and-not-operator"]], "Logical AND operator": [[225, "logical-and-operator"]], "Logical NOT operator": [[225, "logical-not-operator"]], "Logical OR": [[224, "logical-or"]], "Logical OR operator": [[225, "logical-or-operator"]], "Logical operators": [[225, "logical-operators"]], "LongText": [[282, "longtext"]], "Longitude and latitude types": [[305, "longitude-and-latitude-types"]], "Lotate log files with log_reopen": [[131, "lotate-log-files-with-log-reopen"]], "MESSAGE": [[228, "message"], [228, "id5"]], "MacPorts": [[30, "macports"]], "Made llama.cpp initialization lazy": [[45, "made-llama-cpp-initialization-lazy"]], "Mailing List": [[2, "mailing-list"]], "Major action on this error": [[101, "major-action-on-this-error"], [102, "major-action-on-this-error"], [103, "major-action-on-this-error"], [104, "major-action-on-this-error"], [105, "major-action-on-this-error"], [106, "major-action-on-this-error"]], "Major cause": [[101, "major-cause"], [102, "major-cause"], [103, "major-cause"], [104, "major-cause"], [105, "major-cause"], [106, "major-cause"]], "Match operator": [[225, "match-operator"]], "Memcached binary protocol": [[295, null]], "Memory usage": [[281, "memory-usage"]], "Missing mode": [[111, "missing-mode"]], "Modulo assignment operator": [[225, "modulo-assignment-operator"]], "Mroonga storage engine": [[0, "mroonga-storage-engine"]], "Multi databases": [[292, "multi-databases"]], "Multiplication assignment operator": [[225, "multiplication-assignment-operator"]], "Multiplication operator": [[225, "multiplication-operator"]], "NAME": [[112, "name"], [179, "name"]], "NONE": [[156, "none"]], "NORMALIZER": [[155, "normalizer"]], "NORMALIZERS": [[155, "normalizers"]], "Name": [[282, "name"]], "Narrow down & Full-text search by using syntax like JavaScript": [[315, "narrow-down-full-text-search-by-using-syntax-like-javascript"]], "Narrow down & sort by using location information": [[315, "narrow-down-sort-by-using-location-information"]], "Near phrase product search condition": [[224, "near-phrase-product-search-condition"]], "Near phrase product search operator": [[225, "near-phrase-product-search-operator"]], "Near phrase search condition": [[224, "near-phrase-search-condition"]], "Near phrase search operator": [[225, "near-phrase-search-operator"]], "Near search condition": [[224, "near-search-condition"]], "Near search operator": [[225, "near-search-operator"]], "Nested index search among related table by column index": [[310, "nested-index-search-among-related-table-by-column-index"]], "New Features and Improvements": [[43, "new-features-and-improvements"]], "Newly supported OSes": [[43, "newly-supported-oses"]], "News": [[35, null]], "News - 1.2.x": [[39, null]], "News - 1.3 series": [[40, null]], "News - 10 series": [[41, null]], "News - 11 series": [[42, null]], "News - 12 series": [[43, null]], "News - 13 series": [[44, null]], "News - 14 series": [[45, null]], "News - 15 series": [[46, null]], "News - 2 series": [[47, null]], "News - 3 series": [[48, null]], "News - 4 series": [[49, null]], "News - 5 series": [[50, null]], "News - 6 series": [[51, null]], "News - 7 series": [[52, null]], "News - 8 series": [[53, null]], "News - 9 series": [[54, null]], "News in Senna period": [[55, null]], "Normal scalar column": [[90, "normal-scalar-column"]], "Normal vector column": [[91, "normal-vector-column"]], "NormalizerAuto": [[230, null]], "NormalizerNFKC": [[231, null]], "NormalizerNFKC100": [[232, null]], "NormalizerNFKC121": [[233, null]], "NormalizerNFKC130": [[234, null]], "NormalizerNFKC150": [[235, null]], "NormalizerNFKC51": [[236, null]], "NormalizerNFKC: Added support for mixing unify_middle_dot and remove_symbol": [[45, "normalizernfkc-added-support-for-mixing-unify-middle-dot-and-remove-symbol"]], "NormalizerTable": [[237, null]], "Normalizers": [[229, null]], "Not equal condition": [[224, "not-equal-condition"]], "Not equal operator": [[225, "not-equal-operator"]], "Notes": [[94, "notes"]], "Null": [[225, "null"]], "Numeric types": [[305, "numeric-types"]], "OBJECT (\"column:*\" object types specific properties)": [[142, "object-column-object-types-specific-properties"]], "OBJECT (\"column:fix\" and \"column:var\" object types specific properties)": [[142, "object-column-fix-and-column-var-object-types-specific-properties"]], "OBJECT (\"proc\" object type specific properties)": [[142, "object-proc-object-type-specific-properties"]], "OBJECT (\"table:*\" object types specific properties)": [[142, "object-table-object-types-specific-properties"]], "OBJECT (\"type\" object type specific properties)": [[142, "object-type-object-type-specific-properties"]], "OBJECT (common properties)": [[142, "object-common-properties"]], "OBJECTS": [[142, "objects"]], "OBJECT_TYPE": [[142, "object-type"]], "OPTIONS": [[179, "options"]], "Object literal": [[225, "object-literal"]], "Offline index construction": [[226, "offline-index-construction"]], "Offline index construction: Added support for parallel execution": [[45, "offline-index-construction-added-support-for-parallel-execution"]], "Online index construction": [[226, "online-index-construction"]], "Operate a database": [[308, "operate-a-database"]], "Operations": [[238, null]], "Optional parameter": [[183, "optional-parameter"], [188, "optional-parameter"], [195, "optional-parameter"], [203, "optional-parameter"], [231, "optional-parameter"], [232, "optional-parameter"], [233, "optional-parameter"], [234, "optional-parameter"], [235, "optional-parameter"], [258, "optional-parameter"], [259, "optional-parameter"], [260, "optional-parameter"], [261, "optional-parameter"], [272, "optional-parameter"], [274, "optional-parameter"], [275, "optional-parameter"]], "Optional parameters": [[110, "optional-parameters"], [111, "optional-parameters"], [115, "optional-parameters"], [116, "optional-parameters"], [117, "optional-parameters"], [118, "optional-parameters"], [122, "optional-parameters"], [124, "optional-parameters"], [125, "optional-parameters"], [132, "optional-parameters"], [133, "optional-parameters"], [134, "optional-parameters"], [135, "optional-parameters"], [136, "optional-parameters"], [137, "optional-parameters"], [138, "optional-parameters"], [140, "optional-parameters"], [141, "optional-parameters"], [142, "optional-parameters"], [143, "optional-parameters"], [146, "optional-parameters"], [149, "optional-parameters"], [150, "optional-parameters"], [155, "optional-parameters"], [157, "optional-parameters"], [158, "optional-parameters"], [160, "optional-parameters"], [161, "optional-parameters"], [163, "optional-parameters"], [165, "optional-parameters"], [166, "optional-parameters"], [167, "optional-parameters"], [168, "optional-parameters"], [180, "optional-parameters"], [180, "groonga-suggest-httpd-optional-parameters"], [193, "optional-parameters"], [202, "optional-parameters"], [205, "optional-parameters"], [209, "optional-parameters"], [219, "optional-parameters"], [237, "optional-parameters"], [246, "optional-parameters"], [247, "optional-parameters"]], "Optional parameters for learning": [[180, "optional-parameters-for-learning"]], "Optional: Translate documentation": [[18, "optional-translate-documentation"]], "Options": [[175, "options"], [181, "options"]], "Ordered near phrase product search condition": [[224, "ordered-near-phrase-product-search-condition"]], "Ordered near phrase product search operator": [[225, "ordered-near-phrase-product-search-operator"]], "Ordered near phrase search condition": [[224, "ordered-near-phrase-search-condition"]], "Ordered near phrase search operator": [[225, "ordered-near-phrase-search-operator"]], "Original operators": [[225, "original-operators"]], "Others": [[31, null], [244, "others"]], "Others: Build with CMake": [[27, null]], "Output": [[241, null]], "Output format": [[95, null]], "Output format for drilldowns[${LABEL}] style": [[156, "output-format-for-drilldowns-label-style"]], "Output related parameters": [[134, "output-related-parameters"], [135, "output-related-parameters"], [156, "output-related-parameters"]], "Output trace log": [[96, null]], "Overview": [[84, null], [305, "overview"]], "PATH": [[112, "path"]], "PID": [[228, "pid"]], "PKG_CONFIG_PATH=PATHS": [[31, "pkg-config-path-paths"]], "PLUGIN": [[155, "plugin"]], "PLUGINS": [[155, "plugins"]], "POSITION": [[123, "position"]], "POST": [[292, "post"]], "POWER_SET": [[156, "power-set"]], "PPA (Personal Package Archive)": [[32, "ppa-personal-package-archive"]], "PPA\u7528\u306e\u9375\u306e\u767b\u9332": [[12, "ppa"]], "PROGRESS": [[228, "progress"]], "Paging": [[156, "paging"]], "Parallel execution": [[94, null]], "Parallel execution support": [[94, "parallel-execution-support"]], "Parameters": [[107, "parameters"], [108, "parameters"], [109, "parameters"], [110, "parameters"], [111, "parameters"], [112, "parameters"], [113, "parameters"], [114, "parameters"], [115, "parameters"], [116, "parameters"], [117, "parameters"], [118, "parameters"], [119, "parameters"], [120, "parameters"], [121, "parameters"], [122, "parameters"], [123, "parameters"], [124, "parameters"], [125, "parameters"], [126, "parameters"], [127, "parameters"], [128, "parameters"], [129, "parameters"], [130, "parameters"], [131, "parameters"], [132, "parameters"], [133, "parameters"], [134, "parameters"], [135, "parameters"], [136, "parameters"], [137, "parameters"], [138, "parameters"], [140, "parameters"], [141, "parameters"], [142, "parameters"], [143, "parameters"], [146, "parameters"], [147, "parameters"], [149, "parameters"], [150, "parameters"], [152, "parameters"], [153, "parameters"], [154, "parameters"], [155, "parameters"], [156, "parameters"], [157, "parameters"], [158, "parameters"], [159, "parameters"], [160, "parameters"], [161, "parameters"], [162, "parameters"], [163, "parameters"], [164, "parameters"], [165, "parameters"], [166, "parameters"], [167, "parameters"], [168, "parameters"], [170, "parameters"], [181, "parameters"], [183, "parameters"], [186, "parameters"], [188, "parameters"], [191, "parameters"], [192, "parameters"], [193, "parameters"], [194, "parameters"], [195, "parameters"], [196, "parameters"], [197, "parameters"], [198, "parameters"], [201, "parameters"], [202, "parameters"], [203, "parameters"], [205, "parameters"], [208, "parameters"], [209, "parameters"], [210, "parameters"], [211, "parameters"], [219, "parameters"], [220, "parameters"], [221, "parameters"], [231, "parameters"], [232, "parameters"], [233, "parameters"], [234, "parameters"], [235, "parameters"], [237, "parameters"], [246, "parameters"], [247, "parameters"], [257, "parameters"], [258, "parameters"], [259, "parameters"], [260, "parameters"], [261, "parameters"], [272, "parameters"], [274, "parameters"], [275, "parameters"], [281, "parameters"], [286, "parameters"]], "Performance": [[292, "performance"]], "Performance related directives": [[177, "performance-related-directives"]], "Persistent table": [[254, "persistent-table"]], "Persistent table and temporary table": [[254, "persistent-table-and-temporary-table"]], "Phrase search condition": [[224, "phrase-search-condition"]], "Phrase search condition (with explicit match column)": [[224, "phrase-search-condition-with-explicit-match-column"]], "Plugin": [[85, null]], "Prefix RK search": [[240, null], [250, "prefix-rk-search"]], "Prefix search": [[250, "prefix-search"]], "Prefix search by primary key": [[313, "prefix-search-by-primary-key"]], "Prefix search condition": [[224, "prefix-search-condition"]], "Prefix search operator": [[225, "prefix-search-operator"]], "Prefix search with patricia trie": [[313, null]], "Preparation": [[314, "preparation"]], "Prepare your pull request": [[18, "prepare-your-pull-request"]], "Pretty print": [[97, null]], "Preview changes on HTML files": [[18, "preview-changes-on-html-files"]], "Preview the generated HTML files in your Web browser": [[18, "preview-the-generated-html-files-in-your-web-browser"]], "Preview translations on HTML files": [[18, "preview-translations-on-html-files"]], "Process log": [[228, "process-log"]], "Protocol": [[298, "protocol"]], "Pseudo column": [[89, null]], "Pulling image": [[29, "pulling-image"]], "QUERY": [[228, "query"]], "QUERY_STATUS": [[228, "query-status"]], "Quantifier": [[244, "quantifier"]], "Query cache": [[177, "query-cache"]], "Query expanders": [[242, null]], "Query expansion": [[314, null]], "Query log": [[228, "query-log"]], "Query syntax": [[224, null]], "QueryExpanderTSV": [[243, null]], "RANGE": [[112, "range"], [142, "range"]], "RECORD_ID": [[123, "record-id"]], "RETURN_CODE": [[228, "return-code"]], "Record ID": [[254, "record-id"]], "Reference": [[60, "reference"], [61, "reference"], [62, "reference"], [63, "reference"], [64, "reference"], [65, "reference"], [66, "reference"], [67, "reference"], [68, "reference"], [69, "reference"], [70, "reference"], [71, "reference"], [72, "reference"], [73, "reference"], [74, "reference"], [75, "reference"], [76, "reference"], [77, "reference"], [78, "reference"], [79, "reference"], [80, "reference"], [81, "reference"], [82, "reference"], [83, "reference"], [84, "reference"], [85, "reference"]], "Reference manual": [[57, null]], "Reference scalar column": [[90, "reference-scalar-column"]], "Reference types": [[305, "reference-types"]], "Reference vector column": [[91, "reference-vector-column"]], "Reflect translations to .po files": [[18, "reflect-translations-to-po-files"]], "Regular expression": [[244, null]], "Regular expression condition": [[224, "regular-expression-condition"]], "Regular expression operator": [[225, "regular-expression-operator"]], "Regular expression: Fixed a bug with an empty pattern": [[45, "reference-regular-expression-fixed-a-bug-with-an-empty-pattern"]], "Related tables": [[181, "related-tables"]], "Release 1.2.2 - 2011-05-29": [[39, "release-1-2-2-2011-05-29"]], "Release 1.2.3 - 2011-06-29": [[39, "release-1-2-3-2011-06-29"]], "Release 1.2.4 - 2011-07-29": [[39, "release-1-2-4-2011-07-29"]], "Release 1.2.5 - 2011-08-29": [[39, "release-1-2-5-2011-08-29"]], "Release 1.2.6 - 2011-09-29": [[39, "release-1-2-6-2011-09-29"]], "Release 1.2.7 - 2011-10-29": [[39, "release-1-2-7-2011-10-29"]], "Release 1.2.8 - 2011-11-29": [[39, "release-1-2-8-2011-11-29"]], "Release 1.2.9 - 2011-12-29": [[39, "release-1-2-9-2011-12-29"]], "Release 1.3.0 - 2012-01-29": [[40, "release-1-3-0-2012-01-29"]], "Release 10.0.0 - 2020-03-29": [[41, "release-10-0-0-2020-03-29"]], "Release 10.0.1 - 2020-03-30": [[41, "release-10-0-1-2020-03-30"]], "Release 10.0.2 - 2020-04-29": [[41, "release-10-0-2-2020-04-29"]], "Release 10.0.3 - 2020-05-29": [[41, "release-10-0-3-2020-05-29"]], "Release 10.0.4 - 2020-06-29": [[41, "release-10-0-4-2020-06-29"]], "Release 10.0.5 - 2020-07-30": [[41, "release-10-0-5-2020-07-30"]], "Release 10.0.6 - 2020-08-29": [[41, "release-10-0-6-2020-08-29"]], "Release 10.0.7 - 2020-09-29": [[41, "release-10-0-7-2020-09-29"]], "Release 10.0.8 - 2020-10-29": [[41, "release-10-0-8-2020-10-29"]], "Release 10.0.9 - 2020-12-01": [[41, "release-10-0-9-2020-12-01"]], "Release 10.1.0 - 2020-12-29": [[41, "release-10-1-0-2020-12-29"]], "Release 10.1.1 - 2021-01-25": [[41, "release-10-1-1-2021-01-25"]], "Release 11.0.0 - 2021-02-09": [[42, "release-11-0-0-2021-02-09"]], "Release 11.0.1 - 2021-03-31": [[42, "release-11-0-1-2021-03-31"]], "Release 11.0.2 - 2021-05-10": [[42, "release-11-0-2-2021-05-10"]], "Release 11.0.3 - 2021-05-29": [[42, "release-11-0-3-2021-05-29"]], "Release 11.0.4 - 2021-06-29": [[42, "release-11-0-4-2021-06-29"]], "Release 11.0.5 - 2021-07-29": [[42, "release-11-0-5-2021-07-29"]], "Release 11.0.6 - 2021-08-29": [[42, "release-11-0-6-2021-08-29"]], "Release 11.0.7 - 2021-09-29": [[42, "release-11-0-7-2021-09-29"]], "Release 11.0.9 - 2021-11-04": [[42, "release-11-0-9-2021-11-04"]], "Release 11.1.0 - 2021-11-29": [[42, "release-11-1-0-2021-11-29"]], "Release 11.1.1 - 2021-12-29": [[42, "release-11-1-1-2021-12-29"]], "Release 11.1.3 - 2022-01-29": [[42, "release-11-1-3-2022-01-29"]], "Release 12.0.0 - 2022-02-09": [[43, "release-12-0-0-2022-02-09"]], "Release 12.0.1 - 2022-02-28": [[43, "release-12-0-1-2022-02-28"]], "Release 12.0.2 - 2022-03-29": [[43, "release-12-0-2-2022-03-29"]], "Release 12.0.3 - 2022-04-29": [[43, "release-12-0-3-2022-04-29"]], "Release 12.0.4 - 2022-06-06": [[43, "release-12-0-4-2022-06-06"]], "Release 12.0.5 - 2022-06-29": [[43, "release-12-0-5-2022-06-29"]], "Release 12.0.6 - 2022-08-04": [[43, "release-12-0-6-2022-08-04"]], "Release 12.0.7 - 2022-08-29": [[43, "release-12-0-7-2022-08-29"]], "Release 12.0.8 - 2022-10-03": [[43, "release-12-0-8-2022-10-03"]], "Release 12.0.9 - 2022-10-28": [[43, "release-12-0-9-2022-10-28"]], "Release 12.1.0 - 2022-11-29": [[43, "release-12-1-0-2022-11-29"]], "Release 12.1.1 - 2023-01-06": [[43, "release-12-1-1-2023-01-06"]], "Release 12.1.2 - 2023-01-29": [[43, "release-12-1-2-2023-01-29"]], "Release 13.0.0 - 2023-02-09": [[44, "release-13-0-0-2023-02-09"]], "Release 13.0.1 - 2023-03-24": [[44, "release-13-0-1-2023-03-24"]], "Release 13.0.2 - 2023-07-12": [[44, "release-13-0-2-2023-07-12"]], "Release 13.0.3 - 2023-07-24": [[44, "release-13-0-3-2023-07-24"]], "Release 13.0.4 - 2023-07-26": [[44, "release-13-0-4-2023-07-26"]], "Release 13.0.5 - 2023-08-02": [[44, "release-13-0-5-2023-08-02"]], "Release 13.0.6 - 2023-08-31": [[44, "release-13-0-6-2023-08-31"]], "Release 13.0.7 - 2023-09-12": [[44, "release-13-0-7-2023-09-12"]], "Release 13.0.8 - 2023-09-29": [[44, "release-13-0-8-2023-09-29"]], "Release 13.0.9 - 2023-10-29": [[44, "release-13-0-9-2023-10-29"]], "Release 13.1.0 - 2023-12-26": [[44, "release-13-1-0-2023-12-26"]], "Release 13.1.1 - 2024-01-09": [[44, "release-13-1-1-2024-01-09"]], "Release 14.0.0 - 2024-02-29": [[45, "release-14-0-0-2024-02-29"]], "Release 14.0.1 - 2024-03-14": [[45, "release-14-0-1-2024-03-14"]], "Release 14.0.2 - 2024-03-29": [[45, "release-14-0-2-2024-03-29"]], "Release 14.0.3 - 2024-05-09": [[45, "release-14-0-3-2024-05-09"]], "Release 14.0.4 - 2024-05-29": [[45, "release-14-0-4-2024-05-29"]], "Release 14.0.5 - 2024-07-04": [[45, "release-14-0-5-2024-07-04"]], "Release 14.0.6 - 2024-07-29": [[45, "release-14-0-6-2024-07-29"]], "Release 14.0.7 - 2024-09-03": [[45, "release-14-0-7-2024-09-03"]], "Release 14.0.8 - 2024-09-25": [[45, "release-14-0-8-2024-09-25"]], "Release 14.0.9 - 2024-09-27": [[45, "release-14-0-9-2024-09-27"]], "Release 14.1.0 - 2024-11-05": [[45, "release-14-1-0-2024-11-05"]], "Release 14.1.1 - 2024-12-03": [[45, "release-14-1-1-2024-12-03"]], "Release 14.1.2 - 2024-12-24": [[45, "release-14-1-2-2024-12-24"]], "Release 14.1.3 - 2025-01-29": [[45, "release-14-1-3-2025-01-29"]], "Release 15.0.0 - 2025-02-09": [[46, "release-15-0-0-2025-02-09"]], "Release 2.0.0 - 2012-02-29": [[47, "release-2-0-0-2012-02-29"]], "Release 2.0.1 - 2012-03-29": [[47, "release-2-0-1-2012-03-29"]], "Release 2.0.2 - 2012-04-29": [[47, "release-2-0-2-2012-04-29"]], "Release 2.0.3 - 2012-05-29": [[47, "release-2-0-3-2012-05-29"]], "Release 2.0.4 - 2012-06-29": [[47, "release-2-0-4-2012-06-29"]], "Release 2.0.5 - 2012-07-29": [[47, "release-2-0-5-2012-07-29"]], "Release 2.0.6 - 2012-08-29": [[47, "release-2-0-6-2012-08-29"]], "Release 2.0.7 - 2012-09-29": [[47, "release-2-0-7-2012-09-29"]], "Release 2.0.8 - 2012-10-29": [[47, "release-2-0-8-2012-10-29"]], "Release 2.0.9 - 2012-11-29": [[47, "release-2-0-9-2012-11-29"]], "Release 2.1.0 - 2012-12-29": [[47, "release-2-1-0-2012-12-29"]], "Release 2.1.1 - 2012-12-29": [[47, "release-2-1-1-2012-12-29"]], "Release 2.1.2 - 2013-01-29": [[47, "release-2-1-2-2013-01-29"]], "Release 3.0.0 - 2013-02-09": [[48, "release-3-0-0-2013-02-09"]], "Release 3.0.1 - 2013-02-28": [[48, "release-3-0-1-2013-02-28"]], "Release 3.0.2 - 2013-03-29": [[48, "release-3-0-2-2013-03-29"]], "Release 3.0.3 - 2013-04-29": [[48, "release-3-0-3-2013-04-29"]], "Release 3.0.4 - 2013-05-29": [[48, "release-3-0-4-2013-05-29"]], "Release 3.0.5 - 2013-06-29": [[48, "release-3-0-5-2013-06-29"]], "Release 3.0.6 - 2013-07-29": [[48, "release-3-0-6-2013-07-29"]], "Release 3.0.7 - 2013-08-29": [[48, "release-3-0-7-2013-08-29"]], "Release 3.0.8 - 2013-09-29": [[48, "release-3-0-8-2013-09-29"]], "Release 3.0.9 - 2013-10-29": [[48, "release-3-0-9-2013-10-29"]], "Release 3.1.0 - 2013-11-29": [[48, "release-3-1-0-2013-11-29"]], "Release 3.1.1 - 2013-12-29": [[48, "release-3-1-1-2013-12-29"]], "Release 3.1.2 - 2014-01-29": [[48, "release-3-1-2-2014-01-29"]], "Release 4.0.0 - 2014-02-09": [[49, "release-4-0-0-2014-02-09"]], "Release 4.0.1 - 2014-03-29": [[49, "release-4-0-1-2014-03-29"]], "Release 4.0.2 - 2014-05-29": [[49, "release-4-0-2-2014-05-29"]], "Release 4.0.3 - 2014-06-29": [[49, "release-4-0-3-2014-06-29"]], "Release 4.0.4 - 2014-07-29": [[49, "release-4-0-4-2014-07-29"]], "Release 4.0.5 - 2014-08-29": [[49, "release-4-0-5-2014-08-29"]], "Release 4.0.6 - 2014-09-29": [[49, "release-4-0-6-2014-09-29"]], "Release 4.0.7 - 2014-10-29": [[49, "release-4-0-7-2014-10-29"]], "Release 4.0.8 - 2014-11-29": [[49, "release-4-0-8-2014-11-29"]], "Release 4.0.9 - 2014-12-29": [[49, "release-4-0-9-2014-12-29"]], "Release 4.1.0 - 2015-01-09": [[49, "release-4-1-0-2015-01-09"]], "Release 4.1.1 - 2015-01-29": [[49, "release-4-1-1-2015-01-29"]], "Release 5.0.0 - 2015-02-09": [[50, "release-5-0-0-2015-02-09"]], "Release 5.0.1 - 2015-03-29": [[50, "release-5-0-1-2015-03-29"]], "Release 5.0.2 - 2015-03-31": [[50, "release-5-0-2-2015-03-31"]], "Release 5.0.3 - 2015-04-29": [[50, "release-5-0-3-2015-04-29"]], "Release 5.0.4 - 2015-05-29": [[50, "release-5-0-4-2015-05-29"]], "Release 5.0.5 - 2015-06-29": [[50, "release-5-0-5-2015-06-29"]], "Release 5.0.6 - 2015-07-29": [[50, "release-5-0-6-2015-07-29"]], "Release 5.0.7 - 2015-08-31": [[50, "release-5-0-7-2015-08-31"]], "Release 5.0.8 - 2015-09-29": [[50, "release-5-0-8-2015-09-29"]], "Release 5.0.9 - 2015-10-29": [[50, "release-5-0-9-2015-10-29"]], "Release 5.1.0 - 2015-11-29": [[50, "release-5-1-0-2015-11-29"]], "Release 5.1.1 - 2015-12-29": [[50, "release-5-1-1-2015-12-29"]], "Release 5.1.2 - 2016-01-29": [[50, "release-5-1-2-2016-01-29"]], "Release 6.0.0 - 2016-02-29": [[51, "release-6-0-0-2016-02-29"]], "Release 6.0.1 - 2016-03-29": [[51, "release-6-0-1-2016-03-29"]], "Release 6.0.2 - 2016-04-29": [[51, "release-6-0-2-2016-04-29"]], "Release 6.0.3 - 2016-05-29": [[51, "release-6-0-3-2016-05-29"]], "Release 6.0.4 - 2016-06-06": [[51, "release-6-0-4-2016-06-06"]], "Release 6.0.5 - 2016-06-29": [[51, "release-6-0-5-2016-06-29"]], "Release 6.0.7 - 2016-07-29": [[51, "release-6-0-7-2016-07-29"]], "Release 6.0.8 - 2016-08-29": [[51, "release-6-0-8-2016-08-29"]], "Release 6.0.9 - 2016-09-29": [[51, "release-6-0-9-2016-09-29"]], "Release 6.1.0 - 2016-10-29": [[51, "release-6-1-0-2016-10-29"]], "Release 6.1.1 - 2016-11-29": [[51, "release-6-1-1-2016-11-29"]], "Release 6.1.2 - 2016-12-31": [[51, "release-6-1-2-2016-12-31"]], "Release 6.1.3 - 2017-01-06": [[51, "release-6-1-3-2017-01-06"]], "Release 6.1.4 - 2017-01-18": [[51, "release-6-1-4-2017-01-18"]], "Release 6.1.5 - 2017-01-23": [[51, "release-6-1-5-2017-01-23"]], "Release 7.0.0 - 2017-02-09": [[52, "release-7-0-0-2017-02-09"]], "Release 7.0.1 - 2017-03-29": [[52, "release-7-0-1-2017-03-29"]], "Release 7.0.2 - 2017-04-29": [[52, "release-7-0-2-2017-04-29"]], "Release 7.0.3 - 2017-05-29": [[52, "release-7-0-3-2017-05-29"]], "Release 7.0.4 - 2017-06-29": [[52, "release-7-0-4-2017-06-29"]], "Release 7.0.5 - 2017-07-29": [[52, "release-7-0-5-2017-07-29"]], "Release 7.0.6 - 2017-08-29": [[52, "release-7-0-6-2017-08-29"]], "Release 7.0.7 - 2017-09-29": [[52, "release-7-0-7-2017-09-29"]], "Release 7.0.8 - 2017-10-29": [[52, "release-7-0-8-2017-10-29"]], "Release 7.0.9 - 2017-11-29": [[52, "release-7-0-9-2017-11-29"]], "Release 7.1.0 - 2017-12-29": [[52, "release-7-1-0-2017-12-29"]], "Release 7.1.1 - 2018-01-29": [[52, "release-7-1-1-2018-01-29"]], "Release 8.0.0 - 2018-02-09": [[53, "release-8-0-0-2018-02-09"]], "Release 8.0.1 - 2018-03-29": [[53, "release-8-0-1-2018-03-29"]], "Release 8.0.2 - 2018-04-29": [[53, "release-8-0-2-2018-04-29"]], "Release 8.0.3 - 2018-05-29": [[53, "release-8-0-3-2018-05-29"]], "Release 8.0.4 - 2018-06-29": [[53, "release-8-0-4-2018-06-29"]], "Release 8.0.5 - 2018-07-29": [[53, "release-8-0-5-2018-07-29"]], "Release 8.0.6 - 2018-08-29": [[53, "release-8-0-6-2018-08-29"]], "Release 8.0.7 - 2018-09-29": [[53, "release-8-0-7-2018-09-29"]], "Release 8.0.8 - 2018-10-29": [[53, "release-8-0-8-2018-10-29"]], "Release 8.0.9 - 2018-11-29": [[53, "release-8-0-9-2018-11-29"]], "Release 8.1.0 - 2018-12-29": [[53, "release-8-1-0-2018-12-29"]], "Release 8.1.1 - 2019-01-29": [[53, "release-8-1-1-2019-01-29"]], "Release 9.0.0 - 2019-02-09": [[54, "release-9-0-0-2019-02-09"]], "Release 9.0.1 - 2019-03-29": [[54, "release-9-0-1-2019-03-29"]], "Release 9.0.2 - 2019-04-29": [[54, "release-9-0-2-2019-04-29"]], "Release 9.0.3 - 2019-05-29": [[54, "release-9-0-3-2019-05-29"]], "Release 9.0.4 - 2019-06-29": [[54, "release-9-0-4-2019-06-29"]], "Release 9.0.5 - 2019-07-30": [[54, "release-9-0-5-2019-07-30"]], "Release 9.0.6 - 2019-08-05": [[54, "release-9-0-6-2019-08-05"]], "Release 9.0.7 - 2019-08-29": [[54, "release-9-0-7-2019-08-29"]], "Release 9.0.8 - 2019-09-27": [[54, "release-9-0-8-2019-09-27"]], "Release 9.0.9 - 2019-10-30": [[54, "release-9-0-9-2019-10-30"]], "Release 9.1.0 - 2019-11-29": [[54, "release-9-1-0-2019-11-29"]], "Release 9.1.1 - 2020-01-07": [[54, "release-9-1-1-2020-01-07"]], "Release 9.1.2 - 2020-01-29": [[54, "release-9-1-2-2020-01-29"]], "Relicensed to LGPL-2.1-or-later from LGPL-2.1-only": [[45, "relicensed-to-lgpl-2-1-or-later-from-lgpl-2-1-only"]], "Remote access": [[312, null]], "Removes a table with tables and columns that reference the target table": [[163, "removes-a-table-with-tables-and-columns-that-reference-the-target-table"]], "Removes broken tables as much as possible": [[137, "removes-broken-tables-as-much-as-possible"]], "Removes parts of a logical table": [[137, "removes-parts-of-a-logical-table"]], "Removes with related tables": [[137, "removes-with-related-tables"]], "Report a bug to the mailing list": [[19, "report-a-bug-to-the-mailing-list"]], "Repository": [[13, null]], "Request ID": [[98, null]], "Request queries": [[177, "request-queries"]], "Request timeout": [[99, null]], "Required parameter": [[237, "required-parameter"]], "Required parameters": [[110, "required-parameters"], [111, "required-parameters"], [112, "required-parameters"], [114, "required-parameters"], [115, "required-parameters"], [116, "required-parameters"], [117, "required-parameters"], [118, "required-parameters"], [124, "required-parameters"], [125, "required-parameters"], [132, "required-parameters"], [133, "required-parameters"], [134, "required-parameters"], [135, "required-parameters"], [136, "required-parameters"], [137, "required-parameters"], [138, "required-parameters"], [140, "required-parameters"], [141, "required-parameters"], [142, "required-parameters"], [143, "required-parameters"], [146, "required-parameters"], [149, "required-parameters"], [150, "required-parameters"], [153, "required-parameters"], [155, "required-parameters"], [156, "required-parameters"], [157, "required-parameters"], [158, "required-parameters"], [160, "required-parameters"], [161, "required-parameters"], [163, "required-parameters"], [164, "required-parameters"], [165, "required-parameters"], [166, "required-parameters"], [167, "required-parameters"], [168, "required-parameters"], [170, "required-parameters"], [180, "required-parameters"], [180, "groonga-suggest-httpd-required-parameters"], [183, "required-parameters"], [188, "required-parameters"], [193, "required-parameters"], [195, "required-parameters"], [202, "required-parameters"], [203, "required-parameters"], [205, "required-parameters"], [209, "required-parameters"], [211, "required-parameters"], [219, "required-parameters"], [246, "required-parameters"], [247, "required-parameters"]], "Required parameters for learning": [[180, "required-parameters-for-learning"]], "Required parameters for suggestion": [[180, "required-parameters-for-suggestion"]], "Requirements": [[194, "requirements"], [197, "requirements"]], "Restart GQTP server": [[296, "restart-gqtp-server"]], "Restart HTTP server": [[296, "restart-http-server"], [296, "id3"]], "Return code": [[100, null]], "Return code on timeout": [[99, "return-code-on-timeout"]], "Return value": [[107, "return-value"], [108, "return-value"], [109, "return-value"], [110, "return-value"], [111, "return-value"], [112, "return-value"], [113, "return-value"], [114, "return-value"], [115, "return-value"], [116, "return-value"], [117, "return-value"], [118, "return-value"], [119, "return-value"], [120, "return-value"], [121, "return-value"], [122, "return-value"], [123, "return-value"], [124, "return-value"], [125, "return-value"], [126, "return-value"], [127, "return-value"], [128, "return-value"], [129, "return-value"], [130, "return-value"], [131, "return-value"], [132, "return-value"], [133, "return-value"], [134, "return-value"], [135, "return-value"], [136, "return-value"], [137, "return-value"], [138, "return-value"], [139, "return-value"], [140, "return-value"], [141, "return-value"], [142, "return-value"], [143, "return-value"], [144, "return-value"], [145, "return-value"], [146, "return-value"], [147, "return-value"], [148, "return-value"], [149, "return-value"], [150, "return-value"], [151, "return-value"], [152, "return-value"], [153, "return-value"], [154, "return-value"], [155, "return-value"], [156, "return-value"], [157, "return-value"], [158, "return-value"], [159, "return-value"], [160, "return-value"], [161, "return-value"], [162, "return-value"], [163, "return-value"], [164, "return-value"], [165, "return-value"], [166, "return-value"], [167, "return-value"], [168, "return-value"], [169, "return-value"], [170, "return-value"], [180, "return-value"], [183, "return-value"], [184, "return-value"], [186, "return-value"], [187, "return-value"], [188, "return-value"], [191, "return-value"], [192, "return-value"], [193, "return-value"], [194, "return-value"], [195, "return-value"], [196, "return-value"], [197, "return-value"], [198, "return-value"], [200, "return-value"], [201, "return-value"], [202, "return-value"], [203, "return-value"], [205, "return-value"], [206, "return-value"], [207, "return-value"], [208, "return-value"], [209, "return-value"], [210, "return-value"], [211, "return-value"], [212, "return-value"], [213, "return-value"], [214, "return-value"], [215, "return-value"], [216, "return-value"], [217, "return-value"], [218, "return-value"], [219, "return-value"], [220, "return-value"], [221, "return-value"], [222, "return-value"], [246, "return-value"], [247, "return-value"], [284, "return-value"], [285, "return-value"], [286, "return-value"], [287, "return-value"], [288, "return-value"]], "Reverse proxy and cache": [[177, "reverse-proxy-and-cache"]], "Reverse resolution of reference relationships": [[307, "reverse-resolution-of-reference-relationships"]], "Rules": [[248, "rules"]], "Run cmake": [[8, "run-cmake"], [27, "run-cmake"]], "Run cmake with --preset=doc": [[18, "run-cmake-with-preset-doc"]], "Run configure": [[6, "run-configure"]], "Run make": [[6, "run-make"]], "SCHEMA": [[155, "id1"]], "SCORE_N": [[180, "score-n"]], "SEE ALSO": [[179, "see-also"]], "SOURCE": [[155, "source"]], "SOURCES": [[112, "sources"], [142, "sources"]], "SUCCEEDED_OR_NOT": [[115, "succeeded-or-not"], [117, "succeeded-or-not"], [126, "succeeded-or-not"], [128, "succeeded-or-not"]], "SYNOPSTIS": [[179, "synopstis"]], "Sample data": [[224, "sample-data"], [225, "sample-data"]], "Scalar column": [[90, null]], "Score related parameters": [[156, "score-related-parameters"]], "Scorer": [[245, null]], "Script syntax": [[225, null]], "Search": [[311, "search"], [314, "search"]], "Search comments by hash tags": [[311, "search-comments-by-hash-tags"]], "Search comments by keyword": [[311, "search-comments-by-keyword"]], "Search comments by keyword and geolocation": [[311, "search-comments-by-keyword-and-geolocation"]], "Search comments by posted time": [[311, "search-comments-by-posted-time"]], "Search comments by user id": [[311, "search-comments-by-user-id"]], "Search comments by using the value of GeoPoint type": [[311, "search-comments-by-using-the-value-of-geopoint-type"]], "Search condition: filter": [[156, "search-condition-filter"]], "Search condition: query": [[156, "search-condition-query"]], "Search conditions": [[156, "search-conditions"]], "Search related parameters": [[132, "search-related-parameters"], [134, "search-related-parameters"], [135, "search-related-parameters"], [156, "search-related-parameters"]], "Search users by geolocation data (GeoPoint)": [[311, "search-users-by-geolocation-data-geopoint"]], "Search users by keyword": [[311, "search-users-by-keyword"]], "Search users who follows specific user": [[311, "search-users-who-follows-specific-user"]], "Search user\u2019s favorite comments": [[311, "search-user-s-favorite-comments"]], "Security": [[225, "security"]], "Security issues": [[312, "security-issues"]], "See also": [[6, "see-also"], [7, "see-also"], [8, "see-also"], [58, "see-also"], [90, "see-also"], [95, "see-also"], [98, "see-also"], [99, "see-also"], [100, "see-also"], [107, "see-also"], [109, "see-also"], [111, "see-also"], [112, "see-also"], [115, "see-also"], [116, "see-also"], [117, "see-also"], [119, "see-also"], [121, "see-also"], [125, "see-also"], [126, "see-also"], [128, "see-also"], [129, "see-also"], [130, "see-also"], [131, "see-also"], [136, "see-also"], [138, "see-also"], [139, "see-also"], [142, "see-also"], [144, "see-also"], [145, "see-also"], [146, "see-also"], [148, "see-also"], [151, "see-also"], [153, "see-also"], [154, "see-also"], [155, "see-also"], [156, "see-also"], [159, "see-also"], [161, "see-also"], [165, "see-also"], [168, "see-also"], [169, "see-also"], [178, "see-also"], [180, "see-also"], [184, "see-also"], [191, "see-also"], [192, "see-also"], [193, "see-also"], [201, "see-also"], [202, "see-also"], [203, "see-also"], [205, "see-also"], [206, "see-also"], [210, "see-also"], [223, "see-also"], [229, "see-also"], [230, "see-also"], [231, "see-also"], [232, "see-also"], [233, "see-also"], [234, "see-also"], [235, "see-also"], [237, "see-also"], [240, "see-also"], [243, "see-also"], [246, "see-also"], [247, "see-also"], [254, "see-also"], [255, "see-also"], [272, "see-also"], [274, "see-also"], [275, "see-also"], [276, "see-also"], [278, "see-also"], [286, "see-also"], [298, "see-also"]], "Send patch": [[18, "send-patch"]], "Senna -> groonga - 2009-01-14": [[55, "senna-groonga-2009-01-14"]], "Server": [[289, null]], "Server mode": [[175, "server-mode"]], "Server packages": [[296, null]], "Set per Groonga command": [[94, "set-per-groonga-command"]], "Set the default value": [[94, "set-the-default-value"]], "Set up": [[177, "set-up"]], "Setup": [[180, "setup"]], "Sharable storage and read lock-free": [[0, "sharable-storage-and-read-lock-free"]], "Sharding": [[248, null]], "Shift operators": [[225, "shift-operators"]], "ShortText": [[282, "shorttext"]], "Shut down": [[177, "shut-down"]], "Signed right shift operator": [[225, "signed-right-shift-operator"]], "Similar search": [[251, "similar-search"]], "Similar search condition": [[224, "similar-search-condition"]], "Similar search operator": [[225, "similar-search-operator"]], "Simple usage": [[134, "simple-usage"], [135, "simple-usage"], [156, "simple-usage"], [231, "simple-usage"], [232, "simple-usage"], [233, "simple-usage"], [234, "simple-usage"], [235, "simple-usage"], [237, "simple-usage"], [257, "simple-usage"], [258, "simple-usage"], [259, "simple-usage"], [272, "simple-usage"], [274, "simple-usage"], [275, "simple-usage"]], "Slice related parameters": [[156, "slice-related-parameters"]], "Solution": [[303, "solution"]], "Sort a search result": [[308, "sort-a-search-result"]], "Sort by using scorer": [[315, "sort-by-using-scorer"]], "Sorting drilldown results": [[306, "sorting-drilldown-results"]], "Specification": [[297, null]], "Specified by --default-n-workers option of groonga executable file": [[94, "specified-by-default-n-workers-option-of-groonga-executable-file"]], "Specified by --n_workers option of Groonga command": [[94, "specified-by-n-workers-option-of-groonga-command"]], "Specified by environment variable GRN_N_WORKERS_DEFAULT": [[94, "specified-by-environment-variable-grn-n-workers-default"]], "Specify output columns": [[308, "specify-output-columns"]], "Specify output ranges": [[308, "specify-output-ranges"]], "Standalone mode": [[175, "standalone-mode"]], "Start GQTP server": [[296, "start-gqtp-server"]], "Start HTTP server": [[296, "start-http-server"], [296, "id1"]], "Stop GQTP server": [[296, "stop-gqtp-server"]], "Stop HTTP server": [[296, "stop-http-server"], [296, "id2"]], "Stopped vendoring RapidJSON": [[45, "stopped-vendoring-rapidjson"]], "String": [[225, "string"]], "String types": [[305, "string-types"]], "Submit a bug to the issue tracker": [[19, "submit-a-bug-to-the-issue-tracker"]], "Submit your pull request": [[18, "submit-your-pull-request"]], "Subtraction assignment operator": [[225, "subtraction-assignment-operator"]], "Subtraction operator": [[225, "subtraction-operator"]], "Success case": [[95, "success-case"]], "Suffix search by primary key": [[313, "suffix-search-by-primary-key"]], "Suffix search condition": [[224, "suffix-search-condition"]], "Suffix search operator": [[225, "suffix-search-operator"]], "Suggest": [[249, null]], "Suggestion": [[252, "suggestion"], [253, null]], "Summary": [[44, "summary"], [58, "summary"], [60, "summary"], [61, "summary"], [62, "summary"], [63, "summary"], [64, "summary"], [65, "summary"], [66, "summary"], [67, "summary"], [69, "summary"], [70, "summary"], [71, "summary"], [72, "summary"], [73, "summary"], [74, "summary"], [75, "summary"], [76, "summary"], [77, "summary"], [78, "summary"], [79, "summary"], [80, "summary"], [81, "summary"], [82, "summary"], [83, "summary"], [84, "summary"], [85, "summary"], [87, "summary"], [88, "summary"], [90, "summary"], [91, "summary"], [94, "summary"], [95, "summary"], [96, "summary"], [97, "summary"], [98, "summary"], [99, "summary"], [100, "summary"], [107, "summary"], [108, "summary"], [109, "summary"], [110, "summary"], [111, "summary"], [112, "summary"], [113, "summary"], [114, "summary"], [115, "summary"], [116, "summary"], [117, "summary"], [118, "summary"], [119, "summary"], [120, "summary"], [121, "summary"], [122, "summary"], [123, "summary"], [124, "summary"], [125, "summary"], [126, "summary"], [127, "summary"], [128, "summary"], [129, "summary"], [130, "summary"], [131, "summary"], [132, "summary"], [133, "summary"], [134, "summary"], [135, "summary"], [136, "summary"], [137, "summary"], [138, "summary"], [139, "summary"], [140, "summary"], [141, "summary"], [142, "summary"], [143, "summary"], [144, "summary"], [145, "summary"], [146, "summary"], [147, "summary"], [148, "summary"], [149, "summary"], [150, "summary"], [151, "summary"], [152, "summary"], [153, "summary"], [154, "summary"], [155, "summary"], [156, "summary"], [157, "summary"], [158, "summary"], [159, "summary"], [160, "summary"], [161, "summary"], [162, "summary"], [163, "summary"], [164, "summary"], [165, "summary"], [166, "summary"], [167, "summary"], [168, "summary"], [169, "summary"], [170, "summary"], [171, "summary"], [173, "summary"], [175, "summary"], [177, "summary"], [178, "summary"], [180, "summary"], [181, "summary"], [183, "summary"], [184, "summary"], [186, "summary"], [187, "summary"], [188, "summary"], [191, "summary"], [192, "summary"], [193, "summary"], [194, "summary"], [195, "summary"], [196, "summary"], [197, "summary"], [198, "summary"], [200, "summary"], [201, "summary"], [202, "summary"], [203, "summary"], [205, "summary"], [206, "summary"], [207, "summary"], [208, "summary"], [209, "summary"], [210, "summary"], [211, "summary"], [212, "summary"], [213, "summary"], [214, "summary"], [215, "summary"], [216, "summary"], [217, "summary"], [218, "summary"], [219, "summary"], [220, "summary"], [221, "summary"], [222, "summary"], [227, "summary"], [229, "summary"], [230, "summary"], [231, "summary"], [232, "summary"], [233, "summary"], [234, "summary"], [235, "summary"], [236, "summary"], [237, "summary"], [240, "summary"], [243, "summary"], [244, "summary"], [245, "summary"], [246, "summary"], [247, "summary"], [248, "summary"], [254, "summary"], [255, null], [257, "summary"], [258, "summary"], [259, "summary"], [260, "summary"], [261, "summary"], [262, null], [264, "summary"], [265, "summary"], [266, "summary"], [267, "summary"], [268, "summary"], [269, "summary"], [270, "summary"], [271, "summary"], [272, "summary"], [273, "summary"], [274, "summary"], [275, "summary"], [276, "summary"], [277, "summary"], [278, "summary"], [279, "summary"], [280, "summary"], [281, "summary"], [284, "summary"], [285, "summary"], [286, "summary"], [287, "summary"], [288, "summary"], [290, "summary"]], "Summary of changes from Groonga 11.0.0 to 11.1.3": [[43, "summary-of-changes-from-groonga-11-0-0-to-11-1-3"]], "Supported features": [[239, "supported-features"]], "Synopsis": [[181, "synopsis"]], "Syntax": [[107, "syntax"], [108, "syntax"], [109, "syntax"], [110, "syntax"], [111, "syntax"], [112, "syntax"], [113, "syntax"], [114, "syntax"], [115, "syntax"], [116, "syntax"], [117, "syntax"], [118, "syntax"], [119, "syntax"], [120, "syntax"], [121, "syntax"], [122, "syntax"], [123, "syntax"], [124, "syntax"], [125, "syntax"], [126, "syntax"], [127, "syntax"], [128, "syntax"], [129, "syntax"], [130, "syntax"], [131, "syntax"], [132, "syntax"], [133, "syntax"], [134, "syntax"], [135, "syntax"], [136, "syntax"], [137, "syntax"], [138, "syntax"], [139, "syntax"], [140, "syntax"], [141, "syntax"], [142, "syntax"], [143, "syntax"], [144, "syntax"], [145, "syntax"], [146, "syntax"], [147, "syntax"], [148, "syntax"], [149, "syntax"], [150, "syntax"], [151, "syntax"], [152, "syntax"], [153, "syntax"], [154, "syntax"], [155, "syntax"], [156, "syntax"], [157, "syntax"], [158, "syntax"], [159, "syntax"], [160, "syntax"], [161, "syntax"], [162, "syntax"], [163, "syntax"], [164, "syntax"], [165, "syntax"], [166, "syntax"], [167, "syntax"], [168, "syntax"], [169, "syntax"], [170, "syntax"], [173, "syntax"], [175, "syntax"], [177, "syntax"], [178, "syntax"], [180, "syntax"], [183, "syntax"], [184, "syntax"], [186, "syntax"], [187, "syntax"], [188, "syntax"], [191, "syntax"], [192, "syntax"], [193, "syntax"], [194, "syntax"], [195, "syntax"], [196, "syntax"], [197, "syntax"], [198, "syntax"], [200, "syntax"], [201, "syntax"], [202, "syntax"], [203, "syntax"], [205, "syntax"], [206, "syntax"], [207, "syntax"], [208, "syntax"], [209, "syntax"], [210, "syntax"], [211, "syntax"], [212, "syntax"], [213, "syntax"], [214, "syntax"], [215, "syntax"], [216, "syntax"], [217, "syntax"], [218, "syntax"], [219, "syntax"], [220, "syntax"], [221, "syntax"], [222, "syntax"], [230, "syntax"], [231, "syntax"], [232, "syntax"], [233, "syntax"], [234, "syntax"], [235, "syntax"], [236, "syntax"], [237, "syntax"], [244, "syntax"], [246, "syntax"], [247, "syntax"], [257, "syntax"], [258, "syntax"], [259, "syntax"], [260, "syntax"], [261, "syntax"], [264, "syntax"], [265, "syntax"], [266, "syntax"], [267, "syntax"], [268, "syntax"], [269, "syntax"], [270, "syntax"], [271, "syntax"], [272, "syntax"], [273, "syntax"], [274, "syntax"], [275, "syntax"], [276, "syntax"], [277, "syntax"], [278, "syntax"], [279, "syntax"], [280, "syntax"], [284, "syntax"], [285, "syntax"], [286, "syntax"], [287, "syntax"], [288, "syntax"]], "TABLE": [[155, "table"]], "TABLES": [[155, "tables"]], "TABLE_DAT_KEY": [[254, "table-dat-key"]], "TABLE_HASH_KEY": [[254, "table-hash-key"]], "TABLE_HASH_KEY: Fixed a bug that garbage entry may not be reused": [[45, "table-hash-key-fixed-a-bug-that-garbage-entry-may-not-be-reused"]], "TABLE_ID": [[141, "table-id"]], "TABLE_KEY_MAX_TOTAL_SIZE": [[141, "table-key-max-total-size"]], "TABLE_KEY_TOTAL_SIZE": [[141, "table-key-total-size"]], "TABLE_KEY_TYPE": [[141, "table-key-type"]], "TABLE_NAME": [[141, "table-name"]], "TABLE_NO_KEY": [[254, "table-no-key"]], "TABLE_N_RECORDS": [[141, "table-n-records"]], "TABLE_PAT_KEY": [[254, "table-pat-key"]], "TABLE_PAT_KEY: Added support for Float32 as key type": [[46, "table-pat-key-added-support-for-builtin-type-float32-as-key-type"]], "TABLE_PAT_KEY: Fixed a bug that existing key may be broken after defrag": [[45, "table-pat-key-fixed-a-bug-that-existing-key-may-be-broken-after-reference-commands-defrag"]], "TABLE_PAT_KEY: Fixed a bug that some WALs are missing for defrag": [[45, "table-pat-key-fixed-a-bug-that-some-wals-are-missing-for-reference-commands-defrag"]], "TABLE_PAT_KEY: Improved key space efficiency": [[45, "table-pat-key-improved-key-space-efficiency"]], "TABLE_TYPE_ID": [[141, "table-type-id"]], "TABLE_TYPE_NAME": [[141, "table-type-name"]], "TABLE_VALUE_TYPE": [[141, "table-value-type"]], "THRESHOLD_N": [[186, "threshold-n"]], "TIME_STAMP": [[228, "time-stamp"], [228, "id4"]], "TOKENIZER": [[155, "tokenizer"]], "TOKENIZERS": [[155, "tokenizers"]], "TOKEN_FILTER": [[155, "token-filter"]], "TOKEN_FILTERS": [[142, "token-filters"], [155, "token-filters"]], "TOKEN_ID": [[123, "token-id"]], "TOKEN_VALUE": [[123, "token-value"]], "TSV": [[95, "tsv"]], "TSV File": [[243, "tsv-file"]], "TYPE": [[112, "type"], [155, "type"], [180, "type"]], "TYPES": [[155, "types"]], "TYPE_ID": [[141, "type-id"]], "TYPE_ID_OF_TYPE": [[141, "type-id-of-type"]], "TYPE_NAME": [[141, "type-name"]], "TYPE_NAME_OF_TYPE": [[141, "type-name-of-type"]], "TYPE_SIZE": [[141, "type-size"]], "Table": [[141, "table"]], "Tables": [[254, null]], "Tag search": [[307, "tag-search"]], "Tag search and reverse resolution of reference relationships": [[307, null]], "Temporary table": [[254, "temporary-table"]], "Term extract operator": [[225, "term-extract-operator"]], "Test related parameters": [[134, "test-related-parameters"]], "Text": [[282, "text"]], "Thanks": [[39, "thanks"], [39, "id3"], [39, "id6"], [39, "id9"], [39, "id14"], [39, "id17"], [40, "thanks"], [41, "thanks"], [41, "id3"], [41, "id9"], [41, "id14"], [41, "id17"], [41, "id20"], [41, "id23"], [41, "id26"], [42, "thanks"], [42, "id4"], [42, "id8"], [42, "id15"], [42, "id19"], [42, "id23"], [42, "id26"], [42, "id30"], [42, "id33"], [42, "id37"], [43, "thanks"], [43, "id13"], [43, "id19"], [43, "id22"], [43, "id27"], [44, "thanks"], [44, "id17"], [44, "id20"], [44, "id22"], [45, "thanks"], [45, "id10"], [45, "id13"], [45, "id23"], [47, "thanks"], [47, "id4"], [47, "id7"], [47, "id10"], [47, "id13"], [47, "id16"], [47, "id19"], [47, "id22"], [47, "id25"], [47, "id28"], [47, "id31"], [47, "id34"], [48, "thanks"], [48, "id3"], [48, "id6"], [48, "id9"], [48, "id12"], [48, "id15"], [48, "id18"], [48, "id21"], [48, "id24"], [48, "id28"], [48, "id31"], [48, "id33"], [49, "thanks"], [49, "id4"], [49, "id7"], [49, "id10"], [49, "id13"], [49, "id16"], [49, "id19"], [49, "id22"], [49, "id25"], [49, "id28"], [49, "id31"], [50, "thanks"], [50, "id3"], [50, "id6"], [50, "id9"], [50, "id12"], [50, "id15"], [50, "id18"], [50, "id21"], [50, "id24"], [50, "id27"], [50, "id30"], [50, "id33"], [50, "id36"], [51, "thanks"], [51, "id7"], [51, "id12"], [51, "id15"], [51, "id18"], [51, "id21"], [51, "id24"], [51, "id26"], [51, "id29"], [51, "id32"], [51, "id35"], [51, "id38"], [52, "thanks"], [52, "id3"], [52, "id6"], [52, "id13"], [52, "id16"], [52, "id19"], [52, "id22"], [52, "id27"], [52, "id30"], [53, "thanks"], [53, "id7"], [53, "id20"], [53, "id23"], [53, "id26"], [54, "thanks"], [54, "id5"], [54, "id10"], [54, "id13"], [54, "id16"], [54, "id19"], [54, "id22"], [54, "id25"], [54, "id28"]], "The Birth of Brazil Inc. and Senna": [[56, "the-birth-of-brazil-inc-and-senna"]], "The Evolution to Groonga": [[56, "the-evolution-to-groonga"]], "The Internet Landscape at that time": [[56, "the-internet-landscape-at-that-time"]], "The Pre-Groonga Era": [[56, null]], "The max number of open files per process": [[281, "the-max-number-of-open-files-per-process"]], "The number of kinds of index target data and the number of handleable records in a small index column": [[111, "id4"]], "The total number of records": [[156, "the-total-number-of-records"]], "Time": [[225, "time"], [282, "time"]], "Token filters": [[256, null]], "TokenBigram": [[264, null]], "TokenBigramIgnoreBlank": [[265, null]], "TokenBigramIgnoreBlankSplitSymbol": [[266, null]], "TokenBigramIgnoreBlankSplitSymbolAlpha": [[267, null]], "TokenBigramIgnoreBlankSplitSymbolAlphaDigit": [[268, null]], "TokenBigramSplitSymbol": [[269, null]], "TokenBigramSplitSymbolAlpha": [[270, null]], "TokenBigramSplitSymbolAlphaDigit": [[271, null]], "TokenDelimit": [[272, null]], "TokenDelimitNull": [[273, null]], "TokenFilterNFKC": [[257, null]], "TokenFilterNFKC100": [[258, null]], "TokenFilterNFKC150": [[259, null]], "TokenFilterStem": [[260, null]], "TokenFilterStopWord": [[261, null]], "TokenMecab": [[274, null]], "TokenNgram": [[275, null]], "TokenPattern": [[276, null]], "TokenRegexp": [[277, null]], "TokenTable": [[278, null]], "TokenTrigram": [[279, null]], "TokenUnigram": [[280, null]], "Tokenizers": [[263, null]], "TokyoGeoPoint": [[282, "tokyogeopoint"]], "Tools": [[31, "tools"]], "Translate the documentation in .edit.po files": [[18, "translate-the-documentation-in-edit-po-files"]], "Translation flow": [[17, "translation-flow"]], "Travis CI": [[21, null]], "Troubleshooting": [[300, null]], "Tuning": [[281, null]], "Tutorial": [[304, null]], "Twitter": [[2, "twitter"]], "Twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240(\u4f8b\u3048\u3070Redmine)\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044": [[10, "twitter-redmine"]], "Twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b": [[12, "twitter"]], "Twitter\u7de8": [[10, "twitter"]], "Type": [[141, "type"]], "Types that can\u2019t be specified in primary key of table": [[282, "types-that-can-t-be-specified-in-primary-key-of-table"]], "Typo tolerance": [[156, "typo-tolerance"]], "UInt16": [[282, "uint16"]], "UInt32": [[282, "uint32"]], "UInt64": [[282, "uint64"]], "UInt8": [[282, "uint8"]], "Ubuntu": [[32, null]], "Ubuntu\u5411\u3051\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u78ba\u8a8d": [[12, "ubuntu"]], "Ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "id11"]], "Ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u516c\u958b\u306e\u53d6\u308a\u6d88\u3057": [[12, "id12"]], "Unicode version": [[237, "unicode-version"]], "Unremovable cases": [[137, "unremovable-cases"], [163, "unremovable-cases"]], "Unsigned right shift operator": [[225, "unsigned-right-shift-operator"]], "Upgrading without downtime": [[292, "upgrading-without-downtime"]], "Usage": [[58, "usage"], [88, "usage"], [90, "usage"], [91, "usage"], [96, "usage"], [97, "usage"], [107, "usage"], [108, "usage"], [109, "usage"], [110, "usage"], [111, "usage"], [112, "usage"], [113, "usage"], [114, "usage"], [115, "usage"], [116, "usage"], [117, "usage"], [118, "usage"], [119, "usage"], [120, "usage"], [121, "usage"], [122, "usage"], [123, "usage"], [124, "usage"], [125, "usage"], [126, "usage"], [127, "usage"], [128, "usage"], [129, "usage"], [130, "usage"], [131, "usage"], [132, "usage"], [133, "usage"], [134, "usage"], [135, "usage"], [136, "usage"], [137, "usage"], [138, "usage"], [139, "usage"], [140, "usage"], [141, "usage"], [142, "usage"], [143, "usage"], [144, "usage"], [145, "usage"], [146, "usage"], [147, "usage"], [148, "usage"], [149, "usage"], [150, "usage"], [151, "usage"], [152, "usage"], [153, "usage"], [154, "usage"], [155, "usage"], [156, "usage"], [157, "usage"], [158, "usage"], [159, "usage"], [160, "usage"], [161, "usage"], [162, "usage"], [163, "usage"], [164, "usage"], [165, "usage"], [166, "usage"], [167, "usage"], [168, "usage"], [169, "usage"], [170, "usage"], [173, "usage"], [175, "usage"], [177, "usage"], [178, "usage"], [180, "usage"], [181, "usage"], [183, "usage"], [184, "usage"], [186, "usage"], [187, "usage"], [188, "usage"], [191, "usage"], [192, "usage"], [193, "usage"], [194, "usage"], [195, "usage"], [196, "usage"], [197, "usage"], [198, "usage"], [200, "usage"], [201, "usage"], [202, "usage"], [203, "usage"], [205, "usage"], [206, "usage"], [207, "usage"], [208, "usage"], [209, "usage"], [210, "usage"], [211, "usage"], [212, "usage"], [213, "usage"], [214, "usage"], [215, "usage"], [216, "usage"], [217, "usage"], [218, "usage"], [219, "usage"], [220, "usage"], [221, "usage"], [222, "usage"], [230, "usage"], [231, "usage"], [232, "usage"], [233, "usage"], [234, "usage"], [235, "usage"], [236, "usage"], [237, "usage"], [240, "usage"], [241, "usage"], [243, "usage"], [244, "usage"], [245, "usage"], [246, "usage"], [247, "usage"], [257, "usage"], [258, "usage"], [259, "usage"], [260, "usage"], [261, "usage"], [264, "usage"], [265, "usage"], [266, "usage"], [267, "usage"], [268, "usage"], [269, "usage"], [270, "usage"], [271, "usage"], [272, "usage"], [273, "usage"], [274, "usage"], [275, "usage"], [276, "usage"], [277, "usage"], [278, "usage"], [279, "usage"], [280, "usage"], [284, "usage"], [285, "usage"], [286, "usage"], [287, "usage"], [288, "usage"]], "Use suggested response": [[180, "use-suggested-response"]], "Use unify_to_katakana with other options": [[231, "use-unify-to-katakana-with-other-options"], [235, "use-unify-to-katakana-with-other-options"]], "Users table": [[311, "users-table"]], "Using multi CPU cores": [[292, "using-multi-cpu-cores"]], "Using the column value of location": [[188, "using-the-column-value-of-location"]], "Using the explicitly specified value of location": [[188, "using-the-explicitly-specified-value-of-location"]], "VALUE": [[116, "value"]], "VECTOR_COLUMN_VALUE_WEIGHT": [[141, "vector-column-value-weight"]], "VECTOR_COLUMN_VALUE_WEIGHT_BFLOAT16": [[141, "vector-column-value-weight-bfloat16"]], "VECTOR_COLUMN_VALUE_WEIGHT_FLOAT32": [[141, "vector-column-value-weight-float32"]], "Various data types": [[305, null]], "Various search conditions": [[315, null]], "Vector column": [[91, null]], "Vector column: Fixed a bug that needed cast may not be done": [[45, "reference-columns-vector-fixed-a-bug-that-needed-cast-may-not-be-done"]], "Vector types": [[305, "vector-types"]], "View a table": [[308, "view-a-table"]], "WGS84GeoPoint": [[282, "wgs84geopoint"]], "Weight vector column": [[91, "weight-vector-column"]], "Window function": [[156, "window-function"], [283, null]], "Window function related parameters": [[132, "window-function-related-parameters"], [134, "window-function-related-parameters"], [135, "window-function-related-parameters"], [156, "window-function-related-parameters"]], "Windows": [[27, "windows"], [27, "id2"], [27, "id6"], [33, null]], "Windows\u306eMSYS2\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "windowsmsys2"]], "With TokenMecab": [[231, "with-tokenmecab"], [235, "with-tokenmecab"]], "With docker-compose": [[29, "with-docker-compose"]], "XML": [[95, "xml"]], "[GQTP] Fixed a bug that wrong return code is returned": [[45, "server-gqtp-fixed-a-bug-that-wrong-return-code-is-returned"]], "[column_create] Added the generator parameter": [[45, "reference-commands-column-create-added-the-column-create-generator-parameter"]], "[index_column_diff] Fixed a bug that false positive diff may be reported": [[45, "reference-commands-index-column-diff-fixed-a-bug-that-false-positive-diff-may-be-reported"]], "[language_model_vectorize] Added (Experimental)": [[45, "reference-functions-language-model-vectorize-added-experimental"]], "[logical_range_filter] Fixed a bug that invalid JSON format response may be returned": [[45, "reference-commands-logical-range-filter-fixed-a-bug-that-invalid-json-format-response-may-be-returned"]], "[request_cancel] Fixed a bug that invalid JSON format response may be returned": [[45, "reference-commands-request-cancel-fixed-a-bug-that-invalid-json-format-response-may-be-returned"]], "[status] Added .[\"features\"][\"llama.cpp\"] entry": [[45, "reference-commands-status-added-features-llama-cpp-entry"]], "access_log": [[177, "access-log"]], "adjuster": [[156, "adjuster"]], "algorithm": [[260, "algorithm"]], "approximate_type": [[188, "approximate-type"]], "auto_release_count": [[149, "auto-release-count"]], "between": [[183, null]], "bookworm": [[28, "bookworm"]], "cache": [[132, "cache"], [134, "cache"], [135, "cache"], [156, "cache"]], "cache_limit": [[107, null]], "cast_loose": [[184, null]], "check": [[108, null], [173, "check"]], "clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "clang"]], "clearlock": [[109, null]], "close_tagN": [[191, "close-tagn"], [192, "close-tagn"]], "column": [[191, "column"], [192, "column"], [201, "column"], [211, "column"], [246, "column"], [247, "column"]], "column_copy": [[110, null]], "column_create": [[111, null]], "column_list": [[112, null]], "column_or_value": [[183, "column-or-value"]], "column_remove": [[113, null]], "column_rename": [[114, null]], "columns": [[125, "columns"], [261, "columns"]], "columns[${NAME}].flags": [[132, "columns-name-flags"], [134, "columns-name-flags"], [135, "columns-name-flags"], [156, "columns-name-flags"]], "columns[${NAME}].stage": [[132, "columns-name-stage"], [134, "columns-name-stage"], [135, "columns-name-stage"], [156, "columns-name-stage"]], "columns[${NAME}].type": [[132, "columns-name-type"], [134, "columns-name-type"], [135, "columns-name-type"], [156, "columns-name-type"]], "columns[${NAME}].value": [[132, "columns-name-value"], [134, "columns-name-value"], [135, "columns-name-value"], [156, "columns-name-value"]], "columns[${NAME}].window.group_keys": [[132, "columns-name-window-group-keys"], [134, "columns-name-window-group-keys"], [135, "columns-name-window-group-keys"], [156, "columns-name-window-group-keys"]], "columns[${NAME}].window.sort_keys": [[132, "columns-name-window-sort-keys"], [134, "columns-name-window-sort-keys"], [135, "columns-name-window-sort-keys"], [156, "columns-name-window-sort-keys"]], "command_version\u30d1\u30e9\u30e1\u30fc\u30bf": [[93, "id4"]], "condition_column_name": [[195, "condition-column-name"]], "condition_table": [[195, "condition-table"]], "config_delete": [[115, null]], "config_get": [[116, null]], "config_set": [[117, null]], "configure": [[31, "configure"]], "contain(v1, v2, mode, arg, callback)": [[11, "contain-v1-v2-mode-arg-callback"]], "database_path": [[181, "database-path"]], "database_unmap": [[118, null]], "default-command-version\u30d1\u30e9\u30e1\u30fc\u30bf": [[93, "default-command-version"]], "default_mode": [[202, "default-mode"], [203, "default-mode"]], "default_operator": [[202, "default-operator"], [203, "default-operator"]], "default_tokenizer": [[161, "default-tokenizer"]], "define_selector": [[119, null]], "defrag": [[120, null]], "defrag: Added support for TABLE_PAT_KEY": [[45, "reference-commands-defrag-added-support-for-table-pat-key"]], "defrag: Fixed a bug that columns of TABLE_PAT_KEY aren\u2019t processed": [[45, "reference-commands-defrag-fixed-a-bug-that-columns-of-table-pat-key-aren-t-processed"]], "delete": [[121, null]], "delete: Added support for reference weight vector": [[45, "reference-commands-delete-added-support-for-reference-weight-vector"]], "delimiter": [[272, "delimiter"]], "dependent": [[137, "dependent"], [163, "dependent"]], "drilldown": [[135, "drilldown"], [156, "select-drilldown"]], "drilldown_calc_target": [[135, "drilldown-calc-target"], [156, "drilldown-calc-target"]], "drilldown_calc_types": [[135, "drilldown-calc-types"], [156, "drilldown-calc-types"]], "drilldown_filter": [[135, "drilldown-filter"], [156, "drilldown-filter"]], "drilldown_limit": [[135, "drilldown-limit"], [156, "drilldown-limit"]], "drilldown_max_n_target_records": [[156, "drilldown-max-n-target-records"]], "drilldown_offset": [[135, "drilldown-offset"], [156, "drilldown-offset"]], "drilldown_output_columns": [[135, "drilldown-output-columns"], [156, "drilldown-output-columns"]], "drilldown_sort_keys": [[135, "drilldown-sort-keys"], [156, "drilldown-sort-keys"]], "drilldown_sortby": [[135, "drilldown-sortby"], [156, "drilldown-sortby"]], "drilldowns[${LABEL}].calc_target": [[135, "drilldowns-label-calc-target"]], "drilldowns[${LABEL}].calc_types": [[135, "drilldowns-label-calc-types"]], "drilldowns[${LABEL}].columns[${NAME}].flags": [[135, "drilldowns-label-columns-name-flags"]], "drilldowns[${LABEL}].columns[${NAME}].stage": [[135, "drilldowns-label-columns-name-stage"], [156, "drilldowns-label-columns-name-stage"]], "drilldowns[${LABEL}].columns[${NAME}].type": [[135, "drilldowns-label-columns-name-type"]], "drilldowns[${LABEL}].columns[${NAME}].value": [[135, "drilldowns-label-columns-name-value"]], "drilldowns[${LABEL}].columns[${NAME}].window.group_keys": [[135, "drilldowns-label-columns-name-window-group-keys"]], "drilldowns[${LABEL}].columns[${NAME}].window.sort_keys": [[135, "drilldowns-label-columns-name-window-sort-keys"]], "drilldowns[${LABEL}].filter": [[135, "drilldowns-label-filter"]], "drilldowns[${LABEL}].key_vector_expansion": [[156, "drilldowns-label-key-vector-expansion"]], "drilldowns[${LABEL}].keys": [[135, "drilldowns-label-keys"], [156, "drilldowns-label-keys"]], "drilldowns[${LABEL}].limit": [[135, "drilldowns-label-limit"]], "drilldowns[${LABEL}].offset": [[135, "drilldowns-label-offset"]], "drilldowns[${LABEL}].output_columns": [[135, "drilldowns-label-output-columns"], [156, "drilldowns-label-output-columns"]], "drilldowns[${LABEL}].sort_keys": [[135, "drilldowns-label-sort-keys"]], "drilldowns[${LABEL}].sortby": [[135, "drilldowns-label-sortby"]], "drilldowns[${LABEL}].table": [[156, "drilldowns-label-table"]], "dump": [[122, null]], "dump_indexes": [[122, "dump-indexes"]], "dump_plugins": [[122, "dump-plugins"]], "dump_records": [[122, "dump-records"]], "dump_schema": [[122, "dump-schema"]], "each": [[125, "each"]], "edit_distance": [[185, null]], "ellipsoid": [[188, "ellipsoid"]], "equal(v1, v2, arg, callback)": [[11, "equal-v1-v2-arg-callback"]], "escalate": [[186, null]], "filter": [[132, "filter"], [134, "filter"], [135, "filter"], [156, "filter"]], "filter_string": [[210, "filter-string"]], "flags": [[111, "flags"], [138, "flags"], [161, "flags"], [165, "flags"], [168, "flags"], [202, "flags"], [203, "flags"], [298, "flags"]], "force": [[137, "force"], [143, "force"]], "from_name": [[110, "from-name"], [160, "from-name"]], "from_table": [[110, "from-table"]], "fuzzy_max_distance": [[156, "fuzzy-max-distance"]], "fuzzy_max_distance_ratio": [[156, "fuzzy-max-distance-ratio"]], "fuzzy_max_expansions": [[156, "fuzzy-max-expansions"]], "fuzzy_prefix_length": [[156, "fuzzy-prefix-length"]], "fuzzy_search": [[187, null]], "fuzzy_with_tokenize": [[156, "fuzzy-with-tokenize"]], "fuzzy_with_transposition": [[156, "fuzzy-with-transposition"]], "generator": [[111, "generator"]], "geo_distance": [[188, null]], "geo_in_circle": [[189, null]], "geo_in_rectangle": [[190, null]], "greater(v1, v2, arg, callback)": [[11, "greater-v1-v2-arg-callback"]], "greater_equal(v1, v2, arg, callback)": [[11, "greater-equal-v1-v2-arg-callback"]], "grn_cache": [[61, null]], "grn_column": [[62, null]], "grn_command_version": [[63, null]], "grn_content_type": [[64, null]], "grn_ctx": [[65, null]], "grn_db": [[66, null]], "grn_encoding": [[67, null]], "grn_expr": [[11, "grn-expr"], [68, null], [223, null]], "grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea": [[11, "id3"]], "grn_geo": [[69, null]], "grn_hook": [[70, null]], "grn_ii": [[71, null]], "grn_index_cursor": [[72, null]], "grn_info": [[73, null]], "grn_inspect": [[74, null]], "grn_match_escalation": [[75, null]], "grn_obj": [[76, null]], "grn_pat_size(): Fixed a bug that 0 may not be returned on error": [[45, "grn-pat-size-fixed-a-bug-that-0-may-not-be-returned-on-error"]], "grn_proc": [[77, null]], "grn_search": [[78, null]], "grn_table": [[79, null]], "grn_table_cursor": [[80, null]], "grn_table_select()": [[11, "grn-table-select"]], "grn_thread_*": [[81, null]], "grn_type": [[82, null]], "grn_user_data": [[83, null]], "grndb": [[173, null]], "grnslap": [[174, null]], "groonga": [[177, "groonga"], [293, null]], "groonga executable file": [[175, null]], "groonga executable file: Added context_id log flag": [[45, "reference-executables-groonga-added-context-id-log-flag"]], "groonga executable file: Improved error handling": [[45, "reference-executables-groonga-improved-error-handling"]], "groonga-benchmark": [[176, null]], "groonga-benchmark\u547d\u4ee4": [[176, "id8"]], "groonga-benchmark\u5b9f\u884c\u7d50\u679c": [[176, "id12"]], "groonga-httpd": [[177, null], [294, null], [296, "groonga-httpd"]], "groonga-server-gqtp": [[296, "groonga-server-gqtp"]], "groonga-server-http": [[296, "groonga-server-http"]], "groonga-suggest-create-dataset": [[179, null]], "groonga-suggest-httpd": [[180, null]], "groonga-suggest-learner": [[181, null]], "groonga_base_path": [[177, "groonga-base-path"]], "groonga_cache_base_path": [[177, "groonga-cache-base-path"]], "groonga_cache_limit": [[177, "groonga-cache-limit"]], "groonga_database": [[177, "groonga-database"]], "groonga_database_auto_create": [[177, "groonga-database-auto-create"]], "groonga_log_level": [[177, "groonga-log-level"]], "groonga_log_path": [[177, "groonga-log-path"]], "groonga_query_log_path": [[177, "groonga-query-log-path"]], "highlight": [[191, null]], "highlight_full": [[192, null]], "highlight_html": [[193, null]], "html": [[194, "html"]], "html_untag": [[194, null]], "id": [[153, "id"]], "ifexists": [[125, "ifexists"]], "ignore_blank": [[275, "ignore-blank"]], "in_records": [[195, null]], "in_values": [[196, null]], "include_class": [[274, "include-class"]], "include_form": [[274, "include-form"]], "include_reading": [[274, "include-reading"]], "index": [[246, "index"], [247, "index"]], "index_column": [[165, "index-column"]], "index_column_diff": [[123, null]], "index_column_diff: Added support for changing log level for progress logs": [[45, "reference-commands-index-column-diff-added-support-for-changing-log-level-for-progress-logs"]], "input_type": [[125, "input-type"]], "io_flush": [[124, null]], "kern.maxfileperproc": [[281, "kern-maxfileperproc"]], "key": [[115, "key"], [116, "key"], [117, "key"]], "key_type": [[161, "key-type"]], "keywordN": [[191, "keywordn"], [192, "keywordn"]], "language_model_vectorize": [[197, null]], "language_model_vectorize: Added support for Phi-4": [[45, "reference-functions-language-model-vectorize-added-support-for-phi-4"]], "lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "lcov"]], "length": [[208, "length"], [209, "length"]], "less(v1, v2, arg, callback)": [[11, "less-v1-v2-arg-callback"]], "less_equal(v1, v2, arg, callback)": [[11, "less-equal-v1-v2-arg-callback"]], "level": [[129, "level"]], "libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "libmemcached"]], "limit": [[134, "limit"], [135, "limit"], [156, "limit"]], "limits drilldown results": [[306, "limits-drilldown-results"]], "load": [[125, null]], "load: Improved error handling": [[45, "reference-commands-load-improved-error-handling"]], "load_columns": [[135, "load-columns"], [156, "load-columns"]], "load_table": [[135, "load-table"], [156, "load-table"]], "load_values": [[135, "load-values"], [156, "load-values"]], "lock_acquire": [[126, null]], "lock_clear": [[127, null]], "lock_release": [[128, null]], "lock_table": [[125, "lock-table"]], "log_level": [[129, null]], "log_put": [[130, null]], "log_reopen": [[131, null]], "logical_count": [[132, null]], "logical_parameters": [[133, null]], "logical_range_filter": [[134, null]], "logical_select": [[135, null]], "logical_shard_list": [[136, null]], "logical_table": [[132, "logical-table"], [134, "logical-table"], [135, "logical-table"], [136, "logical-table"], [137, "logical-table"]], "logical_table_remove": [[137, null]], "loose_blank": [[275, "loose-blank"]], "loose_symbol": [[275, "loose-symbol"]], "macOS": [[27, "macos"], [30, null]], "make": [[31, "make"]], "make install": [[31, "make-install"]], "match_columns": [[135, "match-columns"], [156, "match-columns"], [202, "match-columns"], [203, "match-columns"]], "match_columns parameter": [[310, null]], "match_escalation": [[156, "match-escalation"]], "match_escalation_threshold": [[135, "match-escalation-threshold"], [156, "match-escalation-threshold"]], "math_abs": [[198, null]], "max": [[107, "max"], [132, "max"], [134, "max"], [135, "max"], [137, "max"], [167, "max"], [183, "max"]], "max_border": [[132, "max-border"], [134, "max-border"], [135, "max-border"], [137, "max-border"], [183, "max-border"]], "max_n_results": [[205, "max-n-results"]], "min": [[132, "min"], [134, "min"], [135, "min"], [137, "min"], [183, "min"]], "min_border": [[132, "min-border"], [134, "min-border"], [135, "min-border"], [137, "min-border"], [183, "min-border"]], "mode": [[157, "mode"], [165, "mode"], [168, "mode"], [219, "mode"]], "mode_name": [[195, "mode-name"]], "model_name": [[197, "model-name"]], "n": [[275, "n"]], "n_workers": [[156, "n-workers"]], "name": [[111, "name"], [114, "name"], [123, "name"], [140, "name"], [141, "name"], [143, "name"], [161, "name"], [163, "name"], [164, "name"], [208, "name"]], "near(v1, v2, arg, callback)": [[11, "near-v1-v2-arg-callback"]], "new_name": [[114, "new-name"], [164, "new-name"]], "nginx log related directives": [[177, "nginx-log-related-directives"]], "nofile": [[281, "nofile"]], "normalize": [[138, null]], "normalized": [[237, "normalized"]], "normalizer": [[138, "normalizer"], [161, "normalizer"], [168, "normalizer"]], "normalizer_list": [[139, null]], "normalizer_name": [[192, "normalizer-name"]], "not_equal(v1, v2, arg, callback)": [[11, "not-equal-v1-v2-arg-callback"]], "now": [[199, null]], "nth": [[208, "nth"], [208, "id4"], [209, "nth"]], "number_classify": [[200, null]], "object_exist": [[140, null]], "object_inspect": [[141, null]], "object_list": [[142, null]], "object_remove": [[143, null]], "offset": [[134, "offset"], [135, "offset"], [156, "offset"]], "only_opened": [[124, "only-opened"]], "open_tagN": [[191, "open-tagn"], [192, "open-tagn"]], "options": [[208, "options"], [208, "id5"], [209, "options"]], "order": [[134, "order"]], "output_columns": [[134, "output-columns"], [135, "output-columns"], [156, "output-columns"]], "output_errors": [[125, "output-errors"]], "output_ids": [[125, "output-ids"]], "path": [[111, "path"], [161, "path"]], "pattern": [[272, "pattern"]], "plugin_register": [[144, null]], "plugin_unregister": [[145, null]], "point1": [[188, "point1"]], "point2": [[188, "point2"]], "post_filter": [[132, "post-filter"], [134, "post-filter"], [135, "post-filter"]], "prefix(v1, v2, arg, callback)": [[11, "prefix-v1-v2-arg-callback"]], "prefix_rk_search": [[201, null]], "progress_log_level": [[123, "progress-log-level"]], "protocol": [[298, "id1"]], "proxy_cache": [[177, "proxy-cache"]], "query": [[135, "query"], [156, "query"], [201, "query"], [202, null]], "query_expand": [[146, null]], "query_expander": [[135, "query-expander"], [156, "query-expander"], [202, "query-expander"], [203, "query-expander"]], "query_expansion": [[156, "query-expansion"]], "query_flags": [[135, "query-flags"], [156, "query-flags"]], "query_parallel_or": [[203, null]], "query_string": [[202, "query-string"], [203, "query-string"]], "query_type": [[298, "query-type"]], "quit": [[147, null]], "rake release \u306e\u5b9f\u884c": [[12, "rake-release"]], "rand": [[204, null]], "range_filter": [[148, null]], "range_index": [[133, "range-index"]], "record_number": [[284, null]], "recover": [[173, "recover"]], "rectangle": [[188, "rectangle"]], "recursive": [[124, "recursive"], [149, "recursive"], [150, "recursive"]], "reference_acquire": [[149, null]], "reference_release": [[150, null]], "regexp": [[208, "regexp"]], "register": [[151, null]], "reindex": [[152, null]], "remove_blank": [[275, "remove-blank"]], "remove_symbol": [[231, "remove-symbol"], [234, "remove-symbol"], [235, "remove-symbol"]], "report_source_location": [[275, "report-source-location"]], "request_cancel": [[153, null]], "ruby_eval": [[154, null]], "schema": [[155, null]], "scope": [[210, "scope"]], "scorer": [[135, "scorer"], [156, "scorer"]], "scorer_tf_at_most": [[246, null]], "scorer_tf_idf": [[247, null]], "script": [[154, "script"]], "select": [[156, null]], "shard_key": [[132, "shard-key"], [134, "shard-key"], [135, "shard-key"], [137, "shard-key"]], "shutdown": [[157, null]], "similar(v1, v2, arg, callback)": [[11, "similar-v1-v2-arg-callback"]], "size": [[298, "size"]], "slices[${LABEL}].filter": [[156, "slices-label-filter"]], "slices[${LABEL}].limit": [[156, "slices-label-limit"]], "slices[${LABEL}].match_columns": [[156, "slices-label-match-columns"]], "slices[${LABEL}].offset": [[156, "slices-label-offset"]], "slices[${LABEL}].output_columns": [[156, "slices-label-output-columns"]], "slices[${LABEL}].query": [[156, "slices-label-query"]], "slices[${LABEL}].query_expander": [[156, "slices-label-query-expander"]], "slices[${LABEL}].query_flags": [[156, "slices-label-query-flags"]], "slices[${LABEL}].sort_keys": [[156, "slices-label-sort-keys"]], "snippet": [[205, null]], "snippet_html": [[206, null]], "sort_hash_table": [[122, "sort-hash-table"]], "sort_keys": [[134, "sort-keys"], [135, "sort-keys"], [156, "sort-keys"]], "sortby": [[135, "sortby"], [156, "sortby"]], "source": [[111, "source"]], "sphere": [[188, "sphere"]], "status": [[158, null], [298, "status"]], "string": [[138, "string"], [165, "string"], [168, "string"]], "string_length": [[207, null]], "string_slice": [[208, null]], "string_substring": [[209, null]], "sub_filter": [[210, null]], "suffix(v1, v2, arg, callback)": [[11, "suffix-v1-v2-arg-callback"]], "suggest": [[159, null]], "table": [[111, "table"], [112, "table"], [114, "table"], [123, "table"], [125, "table"], [156, "table"], [165, "table"]], "table_copy": [[160, null]], "table_create": [[161, null]], "table_list": [[162, null]], "table_remove": [[163, null]], "table_rename": [[164, null]], "table_tokenize": [[165, null]], "tables": [[122, "tables"]], "target": [[198, "target"], [208, "target"], [208, "id3"], [209, "target"], [221, "target"], [237, "target"]], "target_class": [[274, "target-class"]], "target_name": [[124, "target-name"], [126, "target-name"], [127, "target-name"], [128, "target-name"], [149, "target-name"], [150, "target-name"], [152, "target-name"], [170, "target-name"]], "target_value": [[196, "target-value"]], "text": [[193, "text"], [197, "text"]], "thread_dump": [[166, null]], "thread_limit": [[167, null]], "time_classify_day": [[211, null]], "time_classify_day_of_week": [[212, null]], "time_classify_hour": [[213, null]], "time_classify_minute": [[214, null]], "time_classify_month": [[215, null]], "time_classify_second": [[216, null]], "time_classify_week": [[217, null]], "time_classify_year": [[218, null]], "to_name": [[110, "to-name"], [160, "to-name"]], "to_table": [[110, "to-table"]], "token_filters": [[161, "token-filters"], [168, "token-filters"]], "tokenize": [[168, null]], "tokenizer": [[168, "tokenizer"]], "tokenizer_list": [[169, null]], "truncate": [[170, null]], "type": [[111, "type"]], "unicode_version": [[237, "normalizer-table-unicode-version"]], "unify_alphabet": [[275, "unify-alphabet"]], "unify_digit": [[275, "unify-digit"]], "unify_hyphen": [[231, "unify-hyphen"], [232, "unify-hyphen"], [233, "unify-hyphen"], [234, "unify-hyphen"], [235, "unify-hyphen"], [258, "unify-hyphen"], [259, "unify-hyphen"]], "unify_hyphen_and_prolonged_sound_mark": [[231, "unify-hyphen-and-prolonged-sound-mark"], [232, "unify-hyphen-and-prolonged-sound-mark"], [233, "unify-hyphen-and-prolonged-sound-mark"], [234, "unify-hyphen-and-prolonged-sound-mark"], [235, "unify-hyphen-and-prolonged-sound-mark"], [258, "unify-hyphen-and-prolonged-sound-mark"], [259, "unify-hyphen-and-prolonged-sound-mark"]], "unify_kana": [[231, "unify-kana"], [232, "unify-kana"], [233, "unify-kana"], [234, "unify-kana"], [235, "unify-kana"], [258, "unify-kana"], [259, "unify-kana"]], "unify_kana_case": [[231, "unify-kana-case"], [232, "unify-kana-case"], [233, "unify-kana-case"], [234, "unify-kana-case"], [235, "unify-kana-case"], [258, "unify-kana-case"], [259, "unify-kana-case"]], "unify_kana_hyphen": [[231, "unify-kana-hyphen"], [232, "unify-kana-hyphen"], [233, "unify-kana-hyphen"], [234, "unify-kana-hyphen"], [235, "unify-kana-hyphen"]], "unify_kana_prolonged_sound_mark": [[231, "unify-kana-prolonged-sound-mark"], [232, "unify-kana-prolonged-sound-mark"], [233, "unify-kana-prolonged-sound-mark"], [234, "unify-kana-prolonged-sound-mark"], [235, "unify-kana-prolonged-sound-mark"]], "unify_kana_voiced_sound_mark": [[231, "unify-kana-voiced-sound-mark"], [232, "unify-kana-voiced-sound-mark"], [233, "unify-kana-voiced-sound-mark"], [234, "unify-kana-voiced-sound-mark"], [235, "unify-kana-voiced-sound-mark"], [258, "unify-kana-voiced-sound-mark"], [259, "unify-kana-voiced-sound-mark"]], "unify_katakana_bu_sound": [[231, "unify-katakana-bu-sound"], [232, "unify-katakana-bu-sound"], [233, "unify-katakana-bu-sound"], [234, "unify-katakana-bu-sound"], [235, "unify-katakana-bu-sound"], [258, "unify-katakana-bu-sound"], [259, "unify-katakana-bu-sound"]], "unify_katakana_di_sound": [[231, "unify-katakana-di-sound"], [232, "unify-katakana-di-sound"], [233, "unify-katakana-di-sound"], [234, "unify-katakana-di-sound"], [235, "unify-katakana-di-sound"]], "unify_katakana_du_small_sounds": [[231, "unify-katakana-du-small-sounds"], [232, "unify-katakana-du-small-sounds"], [233, "unify-katakana-du-small-sounds"], [234, "unify-katakana-du-small-sounds"], [235, "unify-katakana-du-small-sounds"]], "unify_katakana_du_sound": [[231, "unify-katakana-du-sound"], [232, "unify-katakana-du-sound"], [233, "unify-katakana-du-sound"], [234, "unify-katakana-du-sound"], [235, "unify-katakana-du-sound"]], "unify_katakana_gu_small_sounds": [[231, "unify-katakana-gu-small-sounds"], [232, "unify-katakana-gu-small-sounds"], [233, "unify-katakana-gu-small-sounds"], [234, "unify-katakana-gu-small-sounds"], [235, "unify-katakana-gu-small-sounds"]], "unify_katakana_trailing_o": [[231, "unify-katakana-trailing-o"], [232, "unify-katakana-trailing-o"], [233, "unify-katakana-trailing-o"], [234, "unify-katakana-trailing-o"], [235, "unify-katakana-trailing-o"]], "unify_katakana_v_sounds": [[231, "unify-katakana-v-sounds"], [232, "unify-katakana-v-sounds"], [233, "unify-katakana-v-sounds"], [234, "unify-katakana-v-sounds"], [235, "unify-katakana-v-sounds"], [258, "unify-katakana-v-sounds"], [259, "unify-katakana-v-sounds"]], "unify_katakana_wo_sound": [[231, "unify-katakana-wo-sound"], [232, "unify-katakana-wo-sound"], [233, "unify-katakana-wo-sound"], [234, "unify-katakana-wo-sound"], [235, "unify-katakana-wo-sound"]], "unify_katakana_zu_small_sounds": [[231, "unify-katakana-zu-small-sounds"], [232, "unify-katakana-zu-small-sounds"], [233, "unify-katakana-zu-small-sounds"], [234, "unify-katakana-zu-small-sounds"], [235, "unify-katakana-zu-small-sounds"]], "unify_latin_alphabet_with": [[231, "unify-latin-alphabet-with"], [235, "unify-latin-alphabet-with"]], "unify_middle_dot": [[231, "unify-middle-dot"], [232, "unify-middle-dot"], [233, "unify-middle-dot"], [234, "unify-middle-dot"], [235, "unify-middle-dot"], [258, "unify-middle-dot"], [259, "unify-middle-dot"]], "unify_prolonged_sound_mark": [[231, "unify-prolonged-sound-mark"], [232, "unify-prolonged-sound-mark"], [233, "unify-prolonged-sound-mark"], [234, "unify-prolonged-sound-mark"], [235, "unify-prolonged-sound-mark"], [258, "unify-prolonged-sound-mark"], [259, "unify-prolonged-sound-mark"]], "unify_symbol": [[275, "unify-symbol"]], "unify_to_katakana": [[231, "unify-to-katakana"], [235, "unify-to-katakana"]], "unify_to_romaji": [[231, "unify-to-romaji"], [232, "unify-to-romaji"], [233, "unify-to-romaji"], [234, "unify-to-romaji"], [235, "unify-to-romaji"], [258, "unify-to-romaji"], [259, "unify-to-romaji"]], "use_html_escape": [[192, "use-html-escape"]], "use_range_index": [[134, "use-range-index"]], "use_reading": [[274, "use-reading"]], "value": [[117, "value"], [195, "value"], [196, "value"], [219, "value"]], "value_type": [[161, "value-type"]], "values": [[125, "values"]], "vector": [[219, "vector"]], "vector_find": [[219, null]], "vector_new": [[220, null]], "vector_size": [[221, null]], "vector_slice": [[222, null]], "version": [[231, "version"]], "vm.max_map_count": [[281, "vm-max-map-count"]], "vm.overcommit_memory": [[281, "vm-overcommit-memory"]], "width": [[205, "width"]], "window_count": [[285, null]], "window_rank": [[286, null]], "window_record_number": [[287, null]], "window_sum": [[288, null]], "worker_processes": [[177, "worker-processes"]], "zip": [[33, "zip"]], "{\"default_close_tag\": \"close_tag\"}": [[191, "default-close-tag-close-tag"]], "{\"default_open_tag\": \"open_tag\"}": [[191, "default-open-tag-open-tag"]], "{\"html_escape\": true} or {\"html_mode\": true}": [[191, "html-escape-true-or-html-mode-true"]], "{\"normalizer\": \"Normalizerxxx\"}": [[191, "normalizer-normalizerxxx"]], "{\"normalizers\": \"Normalizerxxx\"}": [[191, "normalizers-normalizerxxx"]], "{\"option\": \"value of option\"}": [[183, "option-value-of-option"], [196, "option-value-of-option"]], "{\"sequential_class_tag_mode\": true}": [[191, "sequential-class-tag-mode-true"], [193, "sequential-class-tag-mode-true"]], "\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b": [[10, "id5"]], "\u30aa\u30d7\u30b7\u30e7\u30f3": [[174, "id4"], [176, "id4"]], "\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831": [[14, "id6"]], "\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b": [[11, "id5"]], "\u30af\u30a8\u30ea\u306e\u5b9f\u73fe": [[11, null]], "\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": [[11, "id2"]], "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5": [[93, "id3"]], "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb": [[176, "id9"]], "\u30b5\u30f3\u30d7\u30eb": [[174, "id6"], [176, "id10"]], "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb": [[176, "id7"]], "\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c": [[14, "id5"]], "\u30c6\u30b9\u30c8\u65b9\u6cd5": [[14, null]], "\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9": [[14, "id2"]], "\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c": [[14, "id11"]], "\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0": [[176, "id14"]], "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u66f4\u65b0": [[12, "id13"]], "\u30d0\u30fc\u30b8\u30e7\u30f30\u7cfb\u306e\u304a\u77e5\u3089\u305b": [[36, null]], "\u30d0\u30fc\u30b8\u30e7\u30f31.0\u7cfb\u306e\u304a\u77e5\u3089\u305b": [[37, null]], "\u30d0\u30fc\u30b8\u30e7\u30f31.1\u7cfb\u306e\u304a\u77e5\u3089\u305b": [[38, null]], "\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051": [[93, "id2"]], "\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099": [[12, "id4"]], "\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b": [[282, "id3"]], "\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd": [[10, null]], "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210": [[12, "id14"]], "\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210": [[12, "id5"]], "\u30ea\u30ea\u30fc\u30b9\u624b\u9806": [[12, null]], "\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa": [[14, "id10"]], "\u4e8b\u524d\u78ba\u8a8d": [[12, "id8"]], "\u4f7f\u3044\u65b9": [[176, "id6"]], "\u4f8b": [[185, "id6"], [189, "id7"], [190, "id7"], [199, "id5"], [204, "id6"], [301, "id2"]], "\u4fee\u6b63": [[36, "id4"], [36, "id7"], [37, "id3"], [37, "id7"], [37, "id10"], [37, "id15"], [37, "id20"], [37, "id25"], [37, "id30"], [37, "id34"], [37, "id38"], [38, "id4"], [39, "id22"], [39, "id26"]], "\u5236\u9650\u4e8b\u9805": [[176, "id13"]], "\u524d\u63d0\u6761\u4ef6": [[12, "id2"]], "\u539f\u56e0": [[301, "id3"]], "\u5404\u7a2e\u30c6\u30b9\u30c8\u306e\u78ba\u8a8d": [[12, "id10"]], "\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b": [[301, null]], "\u540d\u524d": [[89, "id1"], [174, "id1"], [176, "id1"], [185, "id1"], [189, "id1"], [190, "id1"], [199, "id1"], [204, "id1"]], "\u5909\u66f4": [[37, "id14"], [37, "id19"], [37, "id24"], [37, "id29"]], "\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081": [[12, "id9"]], "\u5b8c\u5168\u4e00\u81f4\u691c\u7d22": [[299, "id3"]], "\u5b9f\u9a13\u7684": [[39, "id27"]], "\u5bfe\u5fdc": [[10, "id4"], [10, "id7"], [10, "id9"]], "\u5bfe\u7b56\u65b9\u6cd51: \u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b": [[301, "id4"]], "\u5bfe\u7b56\u65b9\u6cd52: \u95be\u5024\u3092\u3042\u3052\u308b": [[301, "id5"]], "\u5f15\u6570": [[174, "id5"], [176, "id5"], [185, "id4"], [189, "id4"], [190, "id4"], [204, "id4"]], "\u611f\u8b1d": [[36, "id8"], [37, "id4"], [37, "id8"], [37, "id11"], [37, "id16"], [37, "id21"], [37, "id26"], [37, "id31"], [37, "id35"], [37, "id39"], [38, "id5"], [39, "id23"], [39, "id28"]], "\u6539\u826f": [[36, "id3"], [36, "id6"], [37, "id6"], [37, "id13"], [37, "id18"], [37, "id23"], [37, "id28"], [37, "id33"], [37, "id37"], [38, "id3"], [39, "id21"], [39, "id25"]], "\u66f8\u5f0f": [[174, "id2"], [176, "id2"], [185, "id2"], [189, "id2"], [190, "id2"], [199, "id2"], [204, "id2"]], "\u6700\u521d\u306e1\u56de\u3060\u3051\u884c\u3046\u624b\u9806": [[12, "id3"]], "\u691c\u7d22": [[299, null]], "\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051": [[299, "id6"]], "\u691c\u7d22\u306e\u6319\u52d5": [[299, "id2"]], "\u691c\u7d22\u4f8b1": [[11, "id6"]], "\u691c\u7d22\u4f8b2": [[11, "id7"]], "\u691c\u7d22\u4f8b3": [[11, "id8"]], "\u691c\u7d22\u4f8b4": [[11, "id9"]], "\u6982\u8981": [[93, "id1"]], "\u69d8\u3005\u306a\u30c6\u30b9\u30c8": [[14, "id7"]], "\u6bce\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u3067\u884c\u3046\u624b\u9806": [[12, "id6"]], "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b": [[14, "id9"]], "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b": [[14, "id8"]], "\u7279\u6b8a\u547d\u4ee4": [[176, "id11"]], "\u7406\u7531": [[10, "id3"], [10, "id6"], [10, "id8"]], "\u88dc\u8db3: dev:version:bump \u30bf\u30b9\u30af": [[12, "dev-version-bump"]], "\u8aac\u660e": [[89, "id2"], [174, "id3"], [176, "id3"], [185, "id3"], [189, "id3"], [190, "id3"], [199, "id3"], [204, "id3"]], "\u8fd4\u5024": [[185, "id5"], [189, "id6"], [190, "id6"], [199, "id4"], [204, "id5"]], "\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f": [[10, "id2"]], "\u90e8\u5206\u4e00\u81f4\u691c\u7d22": [[299, "id5"]], "\u95a2\u4fc2\u5f0f": [[11, "id4"]], "\u9759\u7684\u89e3\u6790": [[14, "id12"]], "\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22": [[299, "id4"]]}, "docnames": ["characteristic", "client", "community", "contribution", "contribution/development", "contribution/development/build", "contribution/development/build/unix_autotools", "contribution/development/build/unix_cmake", "contribution/development/build/windows_cmake", "contribution/development/com", "contribution/development/cooperation", "contribution/development/query", "contribution/development/release", "contribution/development/repository", "contribution/development/test", "contribution/documentation", "contribution/documentation/c-api", "contribution/documentation/i18n", "contribution/documentation/introduction", "contribution/report", "development", "development/travis-ci", "index", "install", "install/almalinux", "install/amazon_linux", "install/centos", "install/cmake", "install/debian", "install/docker", "install/mac_os_x", "install/others", "install/ubuntu", "install/windows", "limitations", "news", "news/0", "news/1.0", "news/1.1", "news/1.2", "news/1.3", "news/10", "news/11", "news/12", "news/13", "news/14", "news/15", "news/2", "news/3", "news/4", "news/5", "news/6", "news/7", "news/8", "news/9", "news/senna", "origin", "reference", "reference/alias", "reference/api", "reference/api/global_configurations", "reference/api/grn_cache", "reference/api/grn_column", "reference/api/grn_command_version", "reference/api/grn_content_type", "reference/api/grn_ctx", "reference/api/grn_db", "reference/api/grn_encoding", "reference/api/grn_expr", "reference/api/grn_geo", "reference/api/grn_hook", "reference/api/grn_ii", "reference/api/grn_index_cursor", "reference/api/grn_info", "reference/api/grn_inspect", "reference/api/grn_match_escalation", "reference/api/grn_obj", "reference/api/grn_proc", "reference/api/grn_search", "reference/api/grn_table", "reference/api/grn_table_cursor", "reference/api/grn_thread", "reference/api/grn_type", "reference/api/grn_user_data", "reference/api/overview", "reference/api/plugin", "reference/cast", "reference/column", "reference/columns/index", "reference/columns/pseudo", "reference/columns/scalar", "reference/columns/vector", "reference/command", "reference/command/command_version", "reference/command/n_workers", "reference/command/output_format", "reference/command/output_trace_log", "reference/command/pretty_print", "reference/command/request_id", "reference/command/request_timeout", "reference/command/return_code", "reference/command/return_codes/grn_input_output_error", "reference/command/return_codes/grn_invalid_argument", "reference/command/return_codes/grn_no_such_file_or_directory", "reference/command/return_codes/grn_not_enough_space", "reference/command/return_codes/grn_operation_not_permitted", "reference/command/return_codes/grn_resource_deadlock_avoided", "reference/commands/cache_limit", "reference/commands/check", "reference/commands/clearlock", "reference/commands/column_copy", "reference/commands/column_create", "reference/commands/column_list", "reference/commands/column_remove", "reference/commands/column_rename", "reference/commands/config_delete", "reference/commands/config_get", "reference/commands/config_set", "reference/commands/database_unmap", "reference/commands/define_selector", "reference/commands/defrag", "reference/commands/delete", "reference/commands/dump", "reference/commands/index_column_diff", "reference/commands/io_flush", "reference/commands/load", "reference/commands/lock_acquire", "reference/commands/lock_clear", "reference/commands/lock_release", "reference/commands/log_level", "reference/commands/log_put", "reference/commands/log_reopen", "reference/commands/logical_count", "reference/commands/logical_parameters", "reference/commands/logical_range_filter", "reference/commands/logical_select", "reference/commands/logical_shard_list", "reference/commands/logical_table_remove", "reference/commands/normalize", "reference/commands/normalizer_list", "reference/commands/object_exist", "reference/commands/object_inspect", "reference/commands/object_list", "reference/commands/object_remove", "reference/commands/plugin_register", "reference/commands/plugin_unregister", "reference/commands/query_expand", "reference/commands/quit", "reference/commands/range_filter", "reference/commands/reference_acquire", "reference/commands/reference_release", "reference/commands/register", "reference/commands/reindex", "reference/commands/request_cancel", "reference/commands/ruby_eval", "reference/commands/schema", "reference/commands/select", "reference/commands/shutdown", "reference/commands/status", "reference/commands/suggest", "reference/commands/table_copy", "reference/commands/table_create", "reference/commands/table_list", "reference/commands/table_remove", "reference/commands/table_rename", "reference/commands/table_tokenize", "reference/commands/thread_dump", "reference/commands/thread_limit", "reference/commands/tokenize", "reference/commands/tokenizer_list", "reference/commands/truncate", "reference/configuration", "reference/executables", "reference/executables/grndb", "reference/executables/grnslap", "reference/executables/groonga", "reference/executables/groonga-benchmark", "reference/executables/groonga-httpd", "reference/executables/groonga-server-http", "reference/executables/groonga-suggest-create-dataset", "reference/executables/groonga-suggest-httpd", "reference/executables/groonga-suggest-learner", "reference/function", "reference/functions/between", "reference/functions/cast_loose", "reference/functions/edit_distance", "reference/functions/escalate", "reference/functions/fuzzy_search", "reference/functions/geo_distance", "reference/functions/geo_in_circle", "reference/functions/geo_in_rectangle", "reference/functions/highlight", "reference/functions/highlight_full", "reference/functions/highlight_html", "reference/functions/html_untag", "reference/functions/in_records", "reference/functions/in_values", "reference/functions/language_model_vectorize", "reference/functions/math_abs", "reference/functions/now", "reference/functions/number_classify", "reference/functions/prefix_rk_search", "reference/functions/query", "reference/functions/query_parallel_or", "reference/functions/rand", "reference/functions/snippet", "reference/functions/snippet_html", "reference/functions/string_length", "reference/functions/string_slice", "reference/functions/string_substring", "reference/functions/sub_filter", "reference/functions/time_classify_day", "reference/functions/time_classify_day_of_week", "reference/functions/time_classify_hour", "reference/functions/time_classify_minute", "reference/functions/time_classify_month", "reference/functions/time_classify_second", "reference/functions/time_classify_week", "reference/functions/time_classify_year", "reference/functions/vector_find", "reference/functions/vector_new", "reference/functions/vector_size", "reference/functions/vector_slice", "reference/grn_expr", "reference/grn_expr/query_syntax", "reference/grn_expr/script_syntax", "reference/indexing", "reference/language_model", "reference/log", "reference/normalizers", "reference/normalizers/normalizer_auto", "reference/normalizers/normalizer_nfkc", "reference/normalizers/normalizer_nfkc100", "reference/normalizers/normalizer_nfkc121", "reference/normalizers/normalizer_nfkc130", "reference/normalizers/normalizer_nfkc150", "reference/normalizers/normalizer_nfkc51", "reference/normalizers/normalizer_table", "reference/operations", "reference/operations/geolocation_search", "reference/operations/prefix_rk_search", "reference/output", "reference/query_expanders", "reference/query_expanders/tsv", "reference/regular_expression", "reference/scorer", "reference/scorers/scorer_tf_at_most", "reference/scorers/scorer_tf_idf", "reference/sharding", "reference/suggest", "reference/suggest/completion", "reference/suggest/correction", "reference/suggest/introduction", "reference/suggest/suggestion", "reference/tables", "reference/token_filter/summary", "reference/token_filters", "reference/token_filters/token_filter_nfkc", "reference/token_filters/token_filter_nfkc100", "reference/token_filters/token_filter_nfkc150", "reference/token_filters/token_filter_stem", "reference/token_filters/token_filter_stop_word", "reference/tokenizer/summary", "reference/tokenizers", "reference/tokenizers/token_bigram", "reference/tokenizers/token_bigram_ignore_blank", "reference/tokenizers/token_bigram_ignore_blank_split_symbol", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit", "reference/tokenizers/token_bigram_split_symbol", "reference/tokenizers/token_bigram_split_symbol_alpha", "reference/tokenizers/token_bigram_split_symbol_alpha_digit", "reference/tokenizers/token_delimit", "reference/tokenizers/token_delimit_null", "reference/tokenizers/token_mecab", "reference/tokenizers/token_ngram", "reference/tokenizers/token_pattern", "reference/tokenizers/token_regexp", "reference/tokenizers/token_table", "reference/tokenizers/token_trigram", "reference/tokenizers/token_unigram", "reference/tuning", "reference/types", "reference/window_function", "reference/window_functions/record_number", "reference/window_functions/window_count", "reference/window_functions/window_rank", "reference/window_functions/window_record_number", "reference/window_functions/window_sum", "server", "server/gqtp", "server/http", "server/http/comparison", "server/http/groonga", "server/http/groonga-httpd", "server/memcached", "server/package", "spec", "spec/gqtp", "spec/search", "troubleshooting", "troubleshooting/different_results_with_the_same_keyword", "troubleshooting/how_to_analyze_error_message", "troubleshooting/mmap_cannot_allocate_memory", "tutorial", "tutorial/data", "tutorial/drilldown", "tutorial/index", "tutorial/introduction", "tutorial/lexicon", "tutorial/match_columns", "tutorial/micro_blog", "tutorial/network", "tutorial/patricia_trie", "tutorial/query_expansion", "tutorial/search"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["characteristic.rst", "client.rst", "community.rst", "contribution.rst", "contribution/development.rst", "contribution/development/build.rst", "contribution/development/build/unix_autotools.rst", "contribution/development/build/unix_cmake.rst", "contribution/development/build/windows_cmake.rst", "contribution/development/com.rst", "contribution/development/cooperation.rst", "contribution/development/query.rst", "contribution/development/release.rst", "contribution/development/repository.rst", "contribution/development/test.rst", "contribution/documentation.rst", "contribution/documentation/c-api.rst", "contribution/documentation/i18n.rst", "contribution/documentation/introduction.md", "contribution/report.rst", "development.rst", "development/travis-ci.rst", "index.rst", "install.rst", "install/almalinux.rst", "install/amazon_linux.rst", "install/centos.rst", "install/cmake.md", "install/debian.rst", "install/docker.rst", "install/mac_os_x.rst", "install/others.rst", "install/ubuntu.md", "install/windows.rst", "limitations.rst", "news.rst", "news/0.rst", "news/1.0.rst", "news/1.1.rst", "news/1.2.rst", "news/1.3.rst", "news/10.rst", "news/11.rst", "news/12.rst", "news/13.md", "news/14.md", "news/15.md", "news/2.rst", "news/3.rst", "news/4.rst", "news/5.rst", "news/6.rst", "news/7.rst", "news/8.rst", "news/9.rst", "news/senna.rst", "origin.md", "reference.rst", "reference/alias.rst", "reference/api.rst", "reference/api/global_configurations.rst", "reference/api/grn_cache.rst", "reference/api/grn_column.rst", "reference/api/grn_command_version.rst", "reference/api/grn_content_type.rst", "reference/api/grn_ctx.rst", "reference/api/grn_db.rst", "reference/api/grn_encoding.rst", "reference/api/grn_expr.rst", "reference/api/grn_geo.rst", "reference/api/grn_hook.rst", "reference/api/grn_ii.rst", "reference/api/grn_index_cursor.rst", "reference/api/grn_info.rst", "reference/api/grn_inspect.rst", "reference/api/grn_match_escalation.rst", "reference/api/grn_obj.rst", "reference/api/grn_proc.rst", "reference/api/grn_search.rst", "reference/api/grn_table.rst", "reference/api/grn_table_cursor.rst", "reference/api/grn_thread.rst", "reference/api/grn_type.rst", "reference/api/grn_user_data.rst", "reference/api/overview.rst", "reference/api/plugin.rst", "reference/cast.rst", "reference/column.rst", "reference/columns/index.rst", "reference/columns/pseudo.rst", "reference/columns/scalar.rst", "reference/columns/vector.rst", "reference/command.rst", "reference/command/command_version.rst", "reference/command/n_workers.md", "reference/command/output_format.rst", "reference/command/output_trace_log.md", "reference/command/pretty_print.rst", "reference/command/request_id.rst", "reference/command/request_timeout.rst", "reference/command/return_code.rst", "reference/command/return_codes/grn_input_output_error.rst", "reference/command/return_codes/grn_invalid_argument.rst", "reference/command/return_codes/grn_no_such_file_or_directory.rst", "reference/command/return_codes/grn_not_enough_space.rst", "reference/command/return_codes/grn_operation_not_permitted.rst", "reference/command/return_codes/grn_resource_deadlock_avoided.rst", "reference/commands/cache_limit.rst", "reference/commands/check.rst", "reference/commands/clearlock.rst", "reference/commands/column_copy.rst", "reference/commands/column_create.rst", "reference/commands/column_list.rst", "reference/commands/column_remove.rst", "reference/commands/column_rename.rst", "reference/commands/config_delete.rst", "reference/commands/config_get.rst", "reference/commands/config_set.rst", "reference/commands/database_unmap.rst", "reference/commands/define_selector.rst", "reference/commands/defrag.rst", "reference/commands/delete.rst", "reference/commands/dump.rst", "reference/commands/index_column_diff.rst", "reference/commands/io_flush.rst", "reference/commands/load.rst", "reference/commands/lock_acquire.rst", "reference/commands/lock_clear.rst", "reference/commands/lock_release.rst", "reference/commands/log_level.rst", "reference/commands/log_put.rst", "reference/commands/log_reopen.rst", "reference/commands/logical_count.rst", "reference/commands/logical_parameters.rst", "reference/commands/logical_range_filter.rst", "reference/commands/logical_select.rst", "reference/commands/logical_shard_list.rst", "reference/commands/logical_table_remove.rst", "reference/commands/normalize.rst", "reference/commands/normalizer_list.rst", "reference/commands/object_exist.rst", "reference/commands/object_inspect.rst", "reference/commands/object_list.rst", "reference/commands/object_remove.rst", "reference/commands/plugin_register.rst", "reference/commands/plugin_unregister.rst", "reference/commands/query_expand.rst", "reference/commands/quit.rst", "reference/commands/range_filter.rst", "reference/commands/reference_acquire.rst", "reference/commands/reference_release.rst", "reference/commands/register.rst", "reference/commands/reindex.rst", "reference/commands/request_cancel.rst", "reference/commands/ruby_eval.rst", "reference/commands/schema.rst", "reference/commands/select.rst", "reference/commands/shutdown.rst", "reference/commands/status.rst", "reference/commands/suggest.rst", "reference/commands/table_copy.rst", "reference/commands/table_create.rst", "reference/commands/table_list.rst", "reference/commands/table_remove.rst", "reference/commands/table_rename.rst", "reference/commands/table_tokenize.rst", "reference/commands/thread_dump.rst", "reference/commands/thread_limit.rst", "reference/commands/tokenize.rst", "reference/commands/tokenizer_list.rst", "reference/commands/truncate.rst", "reference/configuration.rst", "reference/executables.rst", "reference/executables/grndb.rst", "reference/executables/grnslap.rst", "reference/executables/groonga.rst", "reference/executables/groonga-benchmark.rst", "reference/executables/groonga-httpd.rst", "reference/executables/groonga-server-http.rst", "reference/executables/groonga-suggest-create-dataset.rst", "reference/executables/groonga-suggest-httpd.rst", "reference/executables/groonga-suggest-learner.rst", "reference/function.rst", "reference/functions/between.rst", "reference/functions/cast_loose.rst", "reference/functions/edit_distance.rst", "reference/functions/escalate.rst", "reference/functions/fuzzy_search.rst", "reference/functions/geo_distance.rst", "reference/functions/geo_in_circle.rst", "reference/functions/geo_in_rectangle.rst", "reference/functions/highlight.rst", "reference/functions/highlight_full.rst", "reference/functions/highlight_html.rst", "reference/functions/html_untag.rst", "reference/functions/in_records.rst", "reference/functions/in_values.rst", "reference/functions/language_model_vectorize.md", "reference/functions/math_abs.rst", "reference/functions/now.rst", "reference/functions/number_classify.rst", "reference/functions/prefix_rk_search.rst", "reference/functions/query.rst", "reference/functions/query_parallel_or.rst", "reference/functions/rand.rst", "reference/functions/snippet.rst", "reference/functions/snippet_html.rst", "reference/functions/string_length.rst", "reference/functions/string_slice.rst", "reference/functions/string_substring.rst", "reference/functions/sub_filter.rst", "reference/functions/time_classify_day.rst", "reference/functions/time_classify_day_of_week.rst", "reference/functions/time_classify_hour.rst", "reference/functions/time_classify_minute.rst", "reference/functions/time_classify_month.rst", "reference/functions/time_classify_second.rst", "reference/functions/time_classify_week.rst", "reference/functions/time_classify_year.rst", "reference/functions/vector_find.rst", "reference/functions/vector_new.rst", "reference/functions/vector_size.rst", "reference/functions/vector_slice.rst", "reference/grn_expr.rst", "reference/grn_expr/query_syntax.rst", "reference/grn_expr/script_syntax.rst", "reference/indexing.rst", "reference/language_model.md", "reference/log.rst", "reference/normalizers.rst", "reference/normalizers/normalizer_auto.rst", "reference/normalizers/normalizer_nfkc.md", "reference/normalizers/normalizer_nfkc100.rst", "reference/normalizers/normalizer_nfkc121.rst", "reference/normalizers/normalizer_nfkc130.rst", "reference/normalizers/normalizer_nfkc150.rst", "reference/normalizers/normalizer_nfkc51.rst", "reference/normalizers/normalizer_table.rst", "reference/operations.rst", "reference/operations/geolocation_search.rst", "reference/operations/prefix_rk_search.rst", "reference/output.rst", "reference/query_expanders.rst", "reference/query_expanders/tsv.rst", "reference/regular_expression.rst", "reference/scorer.rst", "reference/scorers/scorer_tf_at_most.rst", "reference/scorers/scorer_tf_idf.rst", "reference/sharding.rst", "reference/suggest.rst", "reference/suggest/completion.rst", "reference/suggest/correction.rst", "reference/suggest/introduction.rst", "reference/suggest/suggestion.rst", "reference/tables.rst", "reference/token_filter/summary.rst", "reference/token_filters.rst", "reference/token_filters/token_filter_nfkc.md", "reference/token_filters/token_filter_nfkc100.rst", "reference/token_filters/token_filter_nfkc150.rst", "reference/token_filters/token_filter_stem.rst", "reference/token_filters/token_filter_stop_word.rst", "reference/tokenizer/summary.rst", "reference/tokenizers.rst", "reference/tokenizers/token_bigram.rst", "reference/tokenizers/token_bigram_ignore_blank.rst", "reference/tokenizers/token_bigram_ignore_blank_split_symbol.rst", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.rst", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.rst", "reference/tokenizers/token_bigram_split_symbol.rst", "reference/tokenizers/token_bigram_split_symbol_alpha.rst", "reference/tokenizers/token_bigram_split_symbol_alpha_digit.rst", "reference/tokenizers/token_delimit.rst", "reference/tokenizers/token_delimit_null.rst", "reference/tokenizers/token_mecab.rst", "reference/tokenizers/token_ngram.rst", "reference/tokenizers/token_pattern.rst", "reference/tokenizers/token_regexp.rst", "reference/tokenizers/token_table.rst", "reference/tokenizers/token_trigram.rst", "reference/tokenizers/token_unigram.rst", "reference/tuning.rst", "reference/types.rst", "reference/window_function.rst", "reference/window_functions/record_number.rst", "reference/window_functions/window_count.rst", "reference/window_functions/window_rank.rst", "reference/window_functions/window_record_number.rst", "reference/window_functions/window_sum.rst", "server.rst", "server/gqtp.rst", "server/http.rst", "server/http/comparison.rst", "server/http/groonga.rst", "server/http/groonga-httpd.rst", "server/memcached.rst", "server/package.rst", "spec.rst", "spec/gqtp.rst", "spec/search.rst", "troubleshooting.rst", "troubleshooting/different_results_with_the_same_keyword.rst", "troubleshooting/how_to_analyze_error_message.rst", "troubleshooting/mmap_cannot_allocate_memory.rst", "tutorial.rst", "tutorial/data.rst", "tutorial/drilldown.rst", "tutorial/index.rst", "tutorial/introduction.rst", "tutorial/lexicon.rst", "tutorial/match_columns.rst", "tutorial/micro_blog.rst", "tutorial/network.rst", "tutorial/patricia_trie.rst", "tutorial/query_expansion.rst", "tutorial/search.rst"], "indexentries": {"--address": [[175, "cmdoption-groonga-a", false]], "--bind-address": [[175, "cmdoption-groonga-bind-address", false]], "--cache-base-path": [[175, "cmdoption-groonga-cache-base-path", false]], "--cache-limit": [[175, "cmdoption-groonga-cache-limit", false]], "--config-path": [[175, "cmdoption-groonga-config-path", false]], "--daemon": [[180, "cmdoption-groonga-suggest-httpd-d", false], [181, "cmdoption-groonga-suggest-learner-d", false]], "--default-match-escalation-threshold": [[175, "cmdoption-groonga-default-match-escalation-threshold", false]], "--default-n-workers": [[175, "cmdoption-groonga-default-n-workers", false]], "--default-request-timeout": [[175, "cmdoption-groonga-default-request-timeout", false]], "--dir": [[176, "cmdoption-groonga-benchmark-dir", false]], "--disable-max-fd-check": [[180, "cmdoption-groonga-suggest-httpd-disable-max-fd-check", false]], "--document-root": [[175, "cmdoption-groonga-document-root", false]], "--encoding": [[175, "cmdoption-groonga-e", false]], "--ftp": [[176, "cmdoption-groonga-benchmark-ftp", false]], "--groonga": [[176, "cmdoption-groonga-benchmark-groonga", false]], "--help": [[175, "cmdoption-groonga-h", false]], "--host": [[176, "cmdoption-groonga-benchmark-i", false]], "--log-base-path": [[180, "cmdoption-groonga-suggest-httpd-l", false], [181, "cmdoption-groonga-suggest-learner-l", false]], "--log-flags": [[175, "cmdoption-groonga-log-flags", false]], "--log-level": [[175, "cmdoption-groonga-l", false], [181, "cmdoption-groonga-suggest-learner-log-level", false]], "--log-output-dir": [[176, "cmdoption-groonga-benchmark-log-output-dir", false]], "--log-path": [[175, "cmdoption-groonga-log-path", false], [181, "cmdoption-groonga-suggest-learner-log-path", false]], "--log-rotate-threshold-size": [[175, "cmdoption-groonga-log-rotate-threshold-size", false]], "--max-threads": [[175, "cmdoption-groonga-t", false]], "--n-lines-per-log-file": [[180, "cmdoption-groonga-suggest-httpd-n-lines-per-log-file", false]], "--n-threads": [[180, "cmdoption-groonga-suggest-httpd-t", false]], "--pid-path": [[175, "cmdoption-groonga-pid-path", false]], "--port": [[175, "cmdoption-groonga-p", false], [176, "cmdoption-groonga-benchmark-p", false], [180, "cmdoption-groonga-suggest-httpd-p", false]], "--protocol": [[175, "cmdoption-groonga-protocol", false], [176, "cmdoption-groonga-benchmark-protocol", false]], "--query-log-path": [[175, "cmdoption-groonga-query-log-path", false]], "--query-log-rotate-threshold-size": [[175, "cmdoption-groonga-query-log-rotate-threshold-size", false]], "--receive-endpoint": [[180, "cmdoption-groonga-suggest-httpd-r", false], [181, "cmdoption-groonga-suggest-learner-r", false]], "--send-endpoint": [[180, "cmdoption-groonga-suggest-httpd-s", false], [181, "cmdoption-groonga-suggest-learner-s", false]], "--server-id": [[175, "cmdoption-groonga-i", false]], "-a": [[175, "cmdoption-groonga-a", false]], "-c": [[175, "cmdoption-groonga-c", false]], "-d": [[175, "cmdoption-groonga-d", false], [180, "cmdoption-groonga-suggest-httpd-d", false], [181, "cmdoption-groonga-suggest-learner-d", false]], "-e": [[175, "cmdoption-groonga-e", false]], "-h": [[175, "cmdoption-groonga-h", false]], "-i": [[175, "cmdoption-groonga-i", false], [176, "cmdoption-groonga-benchmark-i", false]], "-l": [[175, "cmdoption-groonga-l", false], [180, "cmdoption-groonga-suggest-httpd-l", false], [181, "cmdoption-groonga-suggest-learner-l", false]], "-m": [[174, "cmdoption-grnslap-m", false]], "-n": [[175, "cmdoption-groonga-n", false]], "-p": [[174, "cmdoption-grnslap-P", false], [175, "cmdoption-groonga-p", false], [176, "cmdoption-groonga-benchmark-p", false], [180, "cmdoption-groonga-suggest-httpd-p", false]], "-r": [[180, "cmdoption-groonga-suggest-httpd-r", false], [181, "cmdoption-groonga-suggest-learner-r", false]], "-s": [[175, "cmdoption-groonga-s", false], [180, "cmdoption-groonga-suggest-httpd-s", false], [181, "cmdoption-groonga-suggest-learner-s", false]], "-t": [[175, "cmdoption-groonga-t", false], [180, "cmdoption-groonga-suggest-httpd-t", false]], "command": [[175, "cmdoption-groonga-arg-command", false]], "db": [[176, "cmdoption-groonga-benchmark-arg-db", false]], "dest": [[174, "cmdoption-grnslap-arg-dest", false], [175, "cmdoption-groonga-arg-dest", false]], "grn_cache (c type)": [[61, "c.grn_cache", false]], "grn_cache_close (c function)": [[61, "c.grn_cache_close", false]], "grn_cache_current_get (c function)": [[61, "c.grn_cache_current_get", false]], "grn_cache_current_set (c function)": [[61, "c.grn_cache_current_set", false]], "grn_cache_get_max_n_entries (c function)": [[61, "c.grn_cache_get_max_n_entries", false]], "grn_cache_set_max_n_entries (c function)": [[61, "c.grn_cache_set_max_n_entries", false]], "grn_content_type (c type)": [[64, "c.grn_content_type", false]], "grn_expr_add_var (c function)": [[68, "c.grn_expr_add_var", false]], "grn_expr_alloc (c function)": [[68, "c.grn_expr_alloc", false]], "grn_expr_append_const (c function)": [[68, "c.grn_expr_append_const", false]], "grn_expr_append_const_int (c function)": [[68, "c.grn_expr_append_const_int", false]], "grn_expr_append_const_str (c function)": [[68, "c.grn_expr_append_const_str", false]], "grn_expr_append_obj (c function)": [[68, "c.grn_expr_append_obj", false]], "grn_expr_append_op (c function)": [[68, "c.grn_expr_append_op", false]], "grn_expr_close (c function)": [[68, "c.grn_expr_close", false]], "grn_expr_compile (c function)": [[68, "c.grn_expr_compile", false]], "grn_expr_create (c function)": [[68, "c.grn_expr_create", false]], "grn_expr_exec (c function)": [[68, "c.grn_expr_exec", false]], "grn_expr_get_keywords (c function)": [[68, "c.grn_expr_get_keywords", false]], "grn_expr_get_var_by_offset (c function)": [[68, "c.grn_expr_get_var_by_offset", false]], "grn_expr_syntax_escape (c function)": [[68, "c.grn_expr_syntax_escape", false]], "grn_expr_syntax_escape_query (c function)": [[68, "c.grn_expr_syntax_escape_query", false]], "grn_fin (c function)": [[84, "c.grn_fin", false]], "grn_ii (c type)": [[71, "c.grn_ii", false]], "grn_ii_buffer (c type)": [[71, "c.grn_ii_buffer", false]], "grn_ii_buffer_append (c function)": [[71, "c.grn_ii_buffer_append", false]], "grn_ii_buffer_close (c function)": [[71, "c.grn_ii_buffer_close", false]], "grn_ii_buffer_commit (c function)": [[71, "c.grn_ii_buffer_commit", false]], "grn_ii_buffer_open (c function)": [[71, "c.grn_ii_buffer_open", false]], "grn_init (c function)": [[84, "c.grn_init", false]], "grn_inspect (c function)": [[74, "c.grn_inspect", false]], "grn_inspect_encoding (c function)": [[74, "c.grn_inspect_encoding", false]], "grn_inspect_indented (c function)": [[74, "c.grn_inspect_indented", false]], "grn_inspect_limited (c function)": [[74, "c.grn_inspect_limited", false]], "grn_inspect_name (c function)": [[74, "c.grn_inspect_name", false]], "grn_inspect_query_log_flags (c function)": [[74, "c.grn_inspect_query_log_flags", false]], "grn_inspect_type (c function)": [[74, "c.grn_inspect_type", false]], "grn_p (c function)": [[74, "c.grn_p", false]], "grn_p_geo_point (c function)": [[74, "c.grn_p_geo_point", false]], "grn_p_ii_values (c function)": [[74, "c.grn_p_ii_values", false]], "grn_plugin_charlen (c function)": [[85, "c.grn_plugin_charlen", false]], "grn_plugin_command_create (c function)": [[85, "c.grn_plugin_command_create", false]], "grn_plugin_error (c macro)": [[85, "c.GRN_PLUGIN_ERROR", false]], "grn_plugin_expr_var_init (c function)": [[85, "c.grn_plugin_expr_var_init", false]], "grn_plugin_fin (c function)": [[85, "c.GRN_PLUGIN_FIN", false]], "grn_plugin_free (c macro)": [[85, "c.GRN_PLUGIN_FREE", false]], "grn_plugin_init (c function)": [[85, "c.GRN_PLUGIN_INIT", false]], "grn_plugin_isspace (c function)": [[85, "c.grn_plugin_isspace", false]], "grn_plugin_log (c macro)": [[85, "c.GRN_PLUGIN_LOG", false]], "grn_plugin_malloc (c macro)": [[85, "c.GRN_PLUGIN_MALLOC", false]], "grn_plugin_mutex (c type)": [[85, "c.grn_plugin_mutex", false]], "grn_plugin_mutex_close (c function)": [[85, "c.grn_plugin_mutex_close", false]], "grn_plugin_mutex_lock (c function)": [[85, "c.grn_plugin_mutex_lock", false]], "grn_plugin_mutex_open (c function)": [[85, "c.grn_plugin_mutex_open", false]], "grn_plugin_mutex_unlock (c function)": [[85, "c.grn_plugin_mutex_unlock", false]], "grn_plugin_proc_alloc (c function)": [[85, "c.grn_plugin_proc_alloc", false]], "grn_plugin_proc_get_var (c function)": [[85, "c.grn_plugin_proc_get_var", false]], "grn_plugin_proc_get_var_by_offset (c function)": [[85, "c.grn_plugin_proc_get_var_by_offset", false]], "grn_plugin_realloc (c macro)": [[85, "c.GRN_PLUGIN_REALLOC", false]], "grn_plugin_register (c function)": [[85, "c.GRN_PLUGIN_REGISTER", false]], "grn_plugin_win32_base_dir (c function)": [[85, "c.grn_plugin_win32_base_dir", false]], "grn_plugin_windows_base_dir (c function)": [[85, "c.grn_plugin_windows_base_dir", false]], "grn_thread_get_limit (c function)": [[81, "c.grn_thread_get_limit", false]], "grn_thread_get_limit_func (c type)": [[81, "c.grn_thread_get_limit_func", false]], "grn_thread_set_get_limit_func (c function)": [[81, "c.grn_thread_set_get_limit_func", false]], "grn_thread_set_limit (c function)": [[81, "c.grn_thread_set_limit", false]], "grn_thread_set_limit_func (c type)": [[81, "c.grn_thread_set_limit_func", false]], "grn_thread_set_set_limit_func (c function)": [[81, "c.grn_thread_set_set_limit_func", false]], "grnslap command line option": [[174, "cmdoption-grnslap-P", false], [174, "cmdoption-grnslap-arg-dest", false], [174, "cmdoption-grnslap-m", false]], "groonga command line option": [[175, "cmdoption-groonga-a", false], [175, "cmdoption-groonga-arg-command", false], [175, "cmdoption-groonga-arg-dest", false], [175, "cmdoption-groonga-bind-address", false], [175, "cmdoption-groonga-c", false], [175, "cmdoption-groonga-cache-base-path", false], [175, "cmdoption-groonga-cache-limit", false], [175, "cmdoption-groonga-config-path", false], [175, "cmdoption-groonga-d", false], [175, "cmdoption-groonga-default-match-escalation-threshold", false], [175, "cmdoption-groonga-default-n-workers", false], [175, "cmdoption-groonga-default-request-timeout", false], [175, "cmdoption-groonga-document-root", false], [175, "cmdoption-groonga-e", false], [175, "cmdoption-groonga-h", false], [175, "cmdoption-groonga-i", false], [175, "cmdoption-groonga-l", false], [175, "cmdoption-groonga-log-flags", false], [175, "cmdoption-groonga-log-path", false], [175, "cmdoption-groonga-log-rotate-threshold-size", false], [175, "cmdoption-groonga-n", false], [175, "cmdoption-groonga-p", false], [175, "cmdoption-groonga-pid-path", false], [175, "cmdoption-groonga-protocol", false], [175, "cmdoption-groonga-query-log-path", false], [175, "cmdoption-groonga-query-log-rotate-threshold-size", false], [175, "cmdoption-groonga-s", false], [175, "cmdoption-groonga-t", false]], "groonga-benchmark command line option": [[176, "cmdoption-groonga-benchmark-arg-db", false], [176, "cmdoption-groonga-benchmark-arg-script", false], [176, "cmdoption-groonga-benchmark-dir", false], [176, "cmdoption-groonga-benchmark-ftp", false], [176, "cmdoption-groonga-benchmark-groonga", false], [176, "cmdoption-groonga-benchmark-i", false], [176, "cmdoption-groonga-benchmark-log-output-dir", false], [176, "cmdoption-groonga-benchmark-p", false], [176, "cmdoption-groonga-benchmark-protocol", false]], "groonga-suggest-httpd command line option": [[180, "cmdoption-groonga-suggest-httpd-d", false], [180, "cmdoption-groonga-suggest-httpd-disable-max-fd-check", false], [180, "cmdoption-groonga-suggest-httpd-l", false], [180, "cmdoption-groonga-suggest-httpd-n-lines-per-log-file", false], [180, "cmdoption-groonga-suggest-httpd-p", false], [180, "cmdoption-groonga-suggest-httpd-r", false], [180, "cmdoption-groonga-suggest-httpd-s", false], [180, "cmdoption-groonga-suggest-httpd-t", false]], "groonga-suggest-learner command line option": [[181, "cmdoption-groonga-suggest-learner-d", false], [181, "cmdoption-groonga-suggest-learner-l", false], [181, "cmdoption-groonga-suggest-learner-log-level", false], [181, "cmdoption-groonga-suggest-learner-log-path", false], [181, "cmdoption-groonga-suggest-learner-r", false], [181, "cmdoption-groonga-suggest-learner-s", false]], "script": [[176, "cmdoption-groonga-benchmark-arg-script", false]]}, "objects": {"": [[85, 0, 1, "c.GRN_PLUGIN_ERROR", "GRN_PLUGIN_ERROR"], [85, 1, 1, "c.GRN_PLUGIN_FIN", "GRN_PLUGIN_FIN"], [85, 0, 1, "c.GRN_PLUGIN_FREE", "GRN_PLUGIN_FREE"], [85, 1, 1, "c.GRN_PLUGIN_INIT", "GRN_PLUGIN_INIT"], [85, 0, 1, "c.GRN_PLUGIN_LOG", "GRN_PLUGIN_LOG"], [85, 0, 1, "c.GRN_PLUGIN_MALLOC", "GRN_PLUGIN_MALLOC"], [85, 0, 1, "c.GRN_PLUGIN_REALLOC", "GRN_PLUGIN_REALLOC"], [85, 1, 1, "c.GRN_PLUGIN_REGISTER", "GRN_PLUGIN_REGISTER"], [61, 3, 1, "c.grn_cache", "grn_cache"], [61, 1, 1, "c.grn_cache_close", "grn_cache_close"], [61, 1, 1, "c.grn_cache_current_get", "grn_cache_current_get"], [61, 1, 1, "c.grn_cache_current_set", "grn_cache_current_set"], [61, 1, 1, "c.grn_cache_get_max_n_entries", "grn_cache_get_max_n_entries"], [61, 1, 1, "c.grn_cache_set_max_n_entries", "grn_cache_set_max_n_entries"], [64, 3, 1, "c.grn_content_type", "grn_content_type"], [68, 1, 1, "c.grn_expr_add_var", "grn_expr_add_var"], [68, 1, 1, "c.grn_expr_alloc", "grn_expr_alloc"], [68, 1, 1, "c.grn_expr_append_const", "grn_expr_append_const"], [68, 1, 1, "c.grn_expr_append_const_int", "grn_expr_append_const_int"], [68, 1, 1, "c.grn_expr_append_const_str", "grn_expr_append_const_str"], [68, 1, 1, "c.grn_expr_append_obj", "grn_expr_append_obj"], [68, 1, 1, "c.grn_expr_append_op", "grn_expr_append_op"], [68, 1, 1, "c.grn_expr_close", "grn_expr_close"], [68, 1, 1, "c.grn_expr_compile", "grn_expr_compile"], [68, 1, 1, "c.grn_expr_create", "grn_expr_create"], [68, 1, 1, "c.grn_expr_exec", "grn_expr_exec"], [68, 1, 1, "c.grn_expr_get_keywords", "grn_expr_get_keywords"], [68, 1, 1, "c.grn_expr_get_var_by_offset", "grn_expr_get_var_by_offset"], [68, 1, 1, "c.grn_expr_syntax_escape", "grn_expr_syntax_escape"], [68, 1, 1, "c.grn_expr_syntax_escape_query", "grn_expr_syntax_escape_query"], [84, 1, 1, "c.grn_fin", "grn_fin"], [71, 3, 1, "c.grn_ii", "grn_ii"], [71, 3, 1, "c.grn_ii_buffer", "grn_ii_buffer"], [71, 1, 1, "c.grn_ii_buffer_append", "grn_ii_buffer_append"], [71, 1, 1, "c.grn_ii_buffer_close", "grn_ii_buffer_close"], [71, 1, 1, "c.grn_ii_buffer_commit", "grn_ii_buffer_commit"], [71, 1, 1, "c.grn_ii_buffer_open", "grn_ii_buffer_open"], [84, 1, 1, "c.grn_init", "grn_init"], [74, 1, 1, "c.grn_inspect", "grn_inspect"], [74, 1, 1, "c.grn_inspect_encoding", "grn_inspect_encoding"], [74, 1, 1, "c.grn_inspect_indented", "grn_inspect_indented"], [74, 1, 1, "c.grn_inspect_limited", "grn_inspect_limited"], [74, 1, 1, "c.grn_inspect_name", "grn_inspect_name"], [74, 1, 1, "c.grn_inspect_query_log_flags", "grn_inspect_query_log_flags"], [74, 1, 1, "c.grn_inspect_type", "grn_inspect_type"], [74, 1, 1, "c.grn_p", "grn_p"], [74, 1, 1, "c.grn_p_geo_point", "grn_p_geo_point"], [74, 1, 1, "c.grn_p_ii_values", "grn_p_ii_values"], [85, 1, 1, "c.grn_plugin_charlen", "grn_plugin_charlen"], [85, 1, 1, "c.grn_plugin_command_create", "grn_plugin_command_create"], [85, 1, 1, "c.grn_plugin_expr_var_init", "grn_plugin_expr_var_init"], [85, 1, 1, "c.grn_plugin_isspace", "grn_plugin_isspace"], [85, 3, 1, "c.grn_plugin_mutex", "grn_plugin_mutex"], [85, 1, 1, "c.grn_plugin_mutex_close", "grn_plugin_mutex_close"], [85, 1, 1, "c.grn_plugin_mutex_lock", "grn_plugin_mutex_lock"], [85, 1, 1, "c.grn_plugin_mutex_open", "grn_plugin_mutex_open"], [85, 1, 1, "c.grn_plugin_mutex_unlock", "grn_plugin_mutex_unlock"], [85, 1, 1, "c.grn_plugin_proc_alloc", "grn_plugin_proc_alloc"], [85, 1, 1, "c.grn_plugin_proc_get_var", "grn_plugin_proc_get_var"], [85, 1, 1, "c.grn_plugin_proc_get_var_by_offset", "grn_plugin_proc_get_var_by_offset"], [85, 1, 1, "c.grn_plugin_win32_base_dir", "grn_plugin_win32_base_dir"], [85, 1, 1, "c.grn_plugin_windows_base_dir", "grn_plugin_windows_base_dir"], [81, 1, 1, "c.grn_thread_get_limit", "grn_thread_get_limit"], [81, 3, 1, "c.grn_thread_get_limit_func", "grn_thread_get_limit_func"], [81, 1, 1, "c.grn_thread_set_get_limit_func", "grn_thread_set_get_limit_func"], [81, 1, 1, "c.grn_thread_set_limit", "grn_thread_set_limit"], [81, 3, 1, "c.grn_thread_set_limit_func", "grn_thread_set_limit_func"], [81, 1, 1, "c.grn_thread_set_set_limit_func", "grn_thread_set_set_limit_func"]], "GRN_PLUGIN_FIN": [[85, 2, 1, "c.GRN_PLUGIN_FIN", "ctx"]], "GRN_PLUGIN_INIT": [[85, 2, 1, "c.GRN_PLUGIN_INIT", "ctx"]], "GRN_PLUGIN_REGISTER": [[85, 2, 1, "c.GRN_PLUGIN_REGISTER", "ctx"]], "grn_cache_close": [[61, 2, 1, "c.grn_cache_close", "cache"], [61, 2, 1, "c.grn_cache_close", "ctx"]], "grn_cache_current_get": [[61, 2, 1, "c.grn_cache_current_get", "ctx"]], "grn_cache_current_set": [[61, 2, 1, "c.grn_cache_current_set", "cache"], [61, 2, 1, "c.grn_cache_current_set", "ctx"]], "grn_cache_get_max_n_entries": [[61, 2, 1, "c.grn_cache_get_max_n_entries", "cache"], [61, 2, 1, "c.grn_cache_get_max_n_entries", "ctx"]], "grn_cache_set_max_n_entries": [[61, 2, 1, "c.grn_cache_set_max_n_entries", "cache"], [61, 2, 1, "c.grn_cache_set_max_n_entries", "ctx"], [61, 2, 1, "c.grn_cache_set_max_n_entries", "n"]], "grn_expr_add_var": [[68, 2, 1, "c.grn_expr_add_var", "ctx"], [68, 2, 1, "c.grn_expr_add_var", "expr"], [68, 2, 1, "c.grn_expr_add_var", "name"], [68, 2, 1, "c.grn_expr_add_var", "name_size"]], "grn_expr_alloc": [[68, 2, 1, "c.grn_expr_alloc", "ctx"], [68, 2, 1, "c.grn_expr_alloc", "domain"], [68, 2, 1, "c.grn_expr_alloc", "expr"], [68, 2, 1, "c.grn_expr_alloc", "flags"]], "grn_expr_append_const": [[68, 2, 1, "c.grn_expr_append_const", "ctx"], [68, 2, 1, "c.grn_expr_append_const", "expr"], [68, 2, 1, "c.grn_expr_append_const", "nargs"], [68, 2, 1, "c.grn_expr_append_const", "obj"], [68, 2, 1, "c.grn_expr_append_const", "op"]], "grn_expr_append_const_int": [[68, 2, 1, "c.grn_expr_append_const_int", "ctx"], [68, 2, 1, "c.grn_expr_append_const_int", "expr"], [68, 2, 1, "c.grn_expr_append_const_int", "i"], [68, 2, 1, "c.grn_expr_append_const_int", "nargs"], [68, 2, 1, "c.grn_expr_append_const_int", "op"]], "grn_expr_append_const_str": [[68, 2, 1, "c.grn_expr_append_const_str", "ctx"], [68, 2, 1, "c.grn_expr_append_const_str", "expr"], [68, 2, 1, "c.grn_expr_append_const_str", "nargs"], [68, 2, 1, "c.grn_expr_append_const_str", "op"], [68, 2, 1, "c.grn_expr_append_const_str", "str"], [68, 2, 1, "c.grn_expr_append_const_str", "str_size"]], "grn_expr_append_obj": [[68, 2, 1, "c.grn_expr_append_obj", "ctx"], [68, 2, 1, "c.grn_expr_append_obj", "expr"], [68, 2, 1, "c.grn_expr_append_obj", "nargs"], [68, 2, 1, "c.grn_expr_append_obj", "obj"], [68, 2, 1, "c.grn_expr_append_obj", "op"]], "grn_expr_append_op": [[68, 2, 1, "c.grn_expr_append_op", "ctx"], [68, 2, 1, "c.grn_expr_append_op", "expr"], [68, 2, 1, "c.grn_expr_append_op", "nargs"], [68, 2, 1, "c.grn_expr_append_op", "op"]], "grn_expr_close": [[68, 2, 1, "c.grn_expr_close", "ctx"], [68, 2, 1, "c.grn_expr_close", "expr"]], "grn_expr_compile": [[68, 2, 1, "c.grn_expr_compile", "ctx"], [68, 2, 1, "c.grn_expr_compile", "expr"]], "grn_expr_create": [[68, 2, 1, "c.grn_expr_create", "ctx"], [68, 2, 1, "c.grn_expr_create", "name"], [68, 2, 1, "c.grn_expr_create", "name_size"]], "grn_expr_exec": [[68, 2, 1, "c.grn_expr_exec", "ctx"], [68, 2, 1, "c.grn_expr_exec", "expr"], [68, 2, 1, "c.grn_expr_exec", "nargs"]], "grn_expr_get_keywords": [[68, 2, 1, "c.grn_expr_get_keywords", "ctx"], [68, 2, 1, "c.grn_expr_get_keywords", "expr"], [68, 2, 1, "c.grn_expr_get_keywords", "keywords"]], "grn_expr_get_var_by_offset": [[68, 2, 1, "c.grn_expr_get_var_by_offset", "ctx"], [68, 2, 1, "c.grn_expr_get_var_by_offset", "expr"], [68, 2, 1, "c.grn_expr_get_var_by_offset", "offset"]], "grn_expr_syntax_escape": [[68, 2, 1, "c.grn_expr_syntax_escape", "ctx"], [68, 2, 1, "c.grn_expr_syntax_escape", "escape_character"], [68, 2, 1, "c.grn_expr_syntax_escape", "escaped_string"], [68, 2, 1, "c.grn_expr_syntax_escape", "string"], [68, 2, 1, "c.grn_expr_syntax_escape", "string_size"], [68, 2, 1, "c.grn_expr_syntax_escape", "target_characters"]], "grn_expr_syntax_escape_query": [[68, 2, 1, "c.grn_expr_syntax_escape_query", "ctx"], [68, 2, 1, "c.grn_expr_syntax_escape_query", "escaped_query"], [68, 2, 1, "c.grn_expr_syntax_escape_query", "query"], [68, 2, 1, "c.grn_expr_syntax_escape_query", "query_size"]], "grn_ii_buffer_append": [[71, 2, 1, "c.grn_ii_buffer_append", "ctx"], [71, 2, 1, "c.grn_ii_buffer_append", "ii_buffer"], [71, 2, 1, "c.grn_ii_buffer_append", "rid"], [71, 2, 1, "c.grn_ii_buffer_append", "section"], [71, 2, 1, "c.grn_ii_buffer_append", "value"]], "grn_ii_buffer_close": [[71, 2, 1, "c.grn_ii_buffer_close", "ctx"], [71, 2, 1, "c.grn_ii_buffer_close", "ii_buffer"]], "grn_ii_buffer_commit": [[71, 2, 1, "c.grn_ii_buffer_commit", "ctx"], [71, 2, 1, "c.grn_ii_buffer_commit", "ii_buffer"]], "grn_ii_buffer_open": [[71, 2, 1, "c.grn_ii_buffer_open", "ctx"], [71, 2, 1, "c.grn_ii_buffer_open", "ii"], [71, 2, 1, "c.grn_ii_buffer_open", "update_buffer_size"]], "grn_inspect": [[74, 2, 1, "c.grn_inspect", "buffer"], [74, 2, 1, "c.grn_inspect", "ctx"], [74, 2, 1, "c.grn_inspect", "obj"]], "grn_inspect_encoding": [[74, 2, 1, "c.grn_inspect_encoding", "buffer"], [74, 2, 1, "c.grn_inspect_encoding", "ctx"], [74, 2, 1, "c.grn_inspect_encoding", "encoding"]], "grn_inspect_indented": [[74, 2, 1, "c.grn_inspect_indented", "buffer"], [74, 2, 1, "c.grn_inspect_indented", "ctx"], [74, 2, 1, "c.grn_inspect_indented", "indent"], [74, 2, 1, "c.grn_inspect_indented", "obj"]], "grn_inspect_limited": [[74, 2, 1, "c.grn_inspect_limited", "buffer"], [74, 2, 1, "c.grn_inspect_limited", "ctx"], [74, 2, 1, "c.grn_inspect_limited", "obj"]], "grn_inspect_name": [[74, 2, 1, "c.grn_inspect_name", "buffer"], [74, 2, 1, "c.grn_inspect_name", "ctx"], [74, 2, 1, "c.grn_inspect_name", "obj"]], "grn_inspect_query_log_flags": [[74, 2, 1, "c.grn_inspect_query_log_flags", "buffer"], [74, 2, 1, "c.grn_inspect_query_log_flags", "ctx"], [74, 2, 1, "c.grn_inspect_query_log_flags", "flags"]], "grn_inspect_type": [[74, 2, 1, "c.grn_inspect_type", "buffer"], [74, 2, 1, "c.grn_inspect_type", "ctx"], [74, 2, 1, "c.grn_inspect_type", "type"]], "grn_p": [[74, 2, 1, "c.grn_p", "ctx"], [74, 2, 1, "c.grn_p", "obj"]], "grn_p_geo_point": [[74, 2, 1, "c.grn_p_geo_point", "ctx"], [74, 2, 1, "c.grn_p_geo_point", "point"]], "grn_p_ii_values": [[74, 2, 1, "c.grn_p_ii_values", "ctx"], [74, 2, 1, "c.grn_p_ii_values", "obj"]], "grn_plugin_charlen": [[85, 2, 1, "c.grn_plugin_charlen", "ctx"], [85, 2, 1, "c.grn_plugin_charlen", "encoding"], [85, 2, 1, "c.grn_plugin_charlen", "str_length"], [85, 2, 1, "c.grn_plugin_charlen", "str_ptr"]], "grn_plugin_command_create": [[85, 2, 1, "c.grn_plugin_command_create", "ctx"], [85, 2, 1, "c.grn_plugin_command_create", "func"], [85, 2, 1, "c.grn_plugin_command_create", "n_vars"], [85, 2, 1, "c.grn_plugin_command_create", "name"], [85, 2, 1, "c.grn_plugin_command_create", "name_size"], [85, 2, 1, "c.grn_plugin_command_create", "vars"]], "grn_plugin_expr_var_init": [[85, 2, 1, "c.grn_plugin_expr_var_init", "ctx"], [85, 2, 1, "c.grn_plugin_expr_var_init", "name"], [85, 2, 1, "c.grn_plugin_expr_var_init", "name_size"], [85, 2, 1, "c.grn_plugin_expr_var_init", "var"]], "grn_plugin_isspace": [[85, 2, 1, "c.grn_plugin_isspace", "ctx"], [85, 2, 1, "c.grn_plugin_isspace", "encoding"], [85, 2, 1, "c.grn_plugin_isspace", "str_length"], [85, 2, 1, "c.grn_plugin_isspace", "str_ptr"]], "grn_plugin_mutex_close": [[85, 2, 1, "c.grn_plugin_mutex_close", "ctx"], [85, 2, 1, "c.grn_plugin_mutex_close", "mutex"]], "grn_plugin_mutex_lock": [[85, 2, 1, "c.grn_plugin_mutex_lock", "ctx"], [85, 2, 1, "c.grn_plugin_mutex_lock", "mutex"]], "grn_plugin_mutex_open": [[85, 2, 1, "c.grn_plugin_mutex_open", "ctx"]], "grn_plugin_mutex_unlock": [[85, 2, 1, "c.grn_plugin_mutex_unlock", "ctx"], [85, 2, 1, "c.grn_plugin_mutex_unlock", "mutex"]], "grn_plugin_proc_alloc": [[85, 2, 1, "c.grn_plugin_proc_alloc", "ctx"], [85, 2, 1, "c.grn_plugin_proc_alloc", "domain"], [85, 2, 1, "c.grn_plugin_proc_alloc", "flags"], [85, 2, 1, "c.grn_plugin_proc_alloc", "user_data"]], "grn_plugin_proc_get_var": [[85, 2, 1, "c.grn_plugin_proc_get_var", "ctx"], [85, 2, 1, "c.grn_plugin_proc_get_var", "name"], [85, 2, 1, "c.grn_plugin_proc_get_var", "name_size"], [85, 2, 1, "c.grn_plugin_proc_get_var", "user_data"]], "grn_plugin_proc_get_var_by_offset": [[85, 2, 1, "c.grn_plugin_proc_get_var_by_offset", "ctx"], [85, 2, 1, "c.grn_plugin_proc_get_var_by_offset", "offset"], [85, 2, 1, "c.grn_plugin_proc_get_var_by_offset", "user_data"]], "grn_thread_set_get_limit_func": [[81, 2, 1, "c.grn_thread_set_get_limit_func", "data"], [81, 2, 1, "c.grn_thread_set_get_limit_func", "func"]], "grn_thread_set_limit": [[81, 2, 1, "c.grn_thread_set_limit", "new_limit"]], "grn_thread_set_set_limit_func": [[81, 2, 1, "c.grn_thread_set_set_limit_func", "data"], [81, 2, 1, "c.grn_thread_set_set_limit_func", "func"]], "grnslap": [[174, 4, 1, "cmdoption-grnslap-P", "-P"], [174, 4, 1, "cmdoption-grnslap-m", "-m"], [174, 4, 1, "cmdoption-grnslap-arg-dest", "dest"]], "groonga": [[175, 4, 1, "cmdoption-groonga-a", "--address"], [175, 4, 1, "cmdoption-groonga-bind-address", "--bind-address"], [175, 4, 1, "cmdoption-groonga-cache-base-path", "--cache-base-path"], [175, 4, 1, "cmdoption-groonga-cache-limit", "--cache-limit"], [175, 4, 1, "cmdoption-groonga-config-path", "--config-path"], [175, 4, 1, "cmdoption-groonga-default-match-escalation-threshold", "--default-match-escalation-threshold"], [175, 4, 1, "cmdoption-groonga-default-n-workers", "--default-n-workers"], [175, 4, 1, "cmdoption-groonga-default-request-timeout", "--default-request-timeout"], [175, 4, 1, "cmdoption-groonga-document-root", "--document-root"], [175, 4, 1, "cmdoption-groonga-e", "--encoding"], [175, 4, 1, "cmdoption-groonga-h", "--help"], [175, 4, 1, "cmdoption-groonga-log-flags", "--log-flags"], [175, 4, 1, "cmdoption-groonga-l", "--log-level"], [175, 4, 1, "cmdoption-groonga-log-path", "--log-path"], [175, 4, 1, "cmdoption-groonga-log-rotate-threshold-size", "--log-rotate-threshold-size"], [175, 4, 1, "cmdoption-groonga-t", "--max-threads"], [175, 4, 1, "cmdoption-groonga-pid-path", "--pid-path"], [175, 4, 1, "cmdoption-groonga-p", "--port"], [175, 4, 1, "cmdoption-groonga-protocol", "--protocol"], [175, 4, 1, "cmdoption-groonga-query-log-path", "--query-log-path"], [175, 4, 1, "cmdoption-groonga-query-log-rotate-threshold-size", "--query-log-rotate-threshold-size"], [175, 4, 1, "cmdoption-groonga-i", "--server-id"], [175, 4, 1, "cmdoption-groonga-a", "-a"], [175, 4, 1, "cmdoption-groonga-c", "-c"], [175, 4, 1, "cmdoption-groonga-d", "-d"], [175, 4, 1, "cmdoption-groonga-e", "-e"], [175, 4, 1, "cmdoption-groonga-h", "-h"], [175, 4, 1, "cmdoption-groonga-i", "-i"], [175, 4, 1, "cmdoption-groonga-l", "-l"], [175, 4, 1, "cmdoption-groonga-n", "-n"], [175, 4, 1, "cmdoption-groonga-p", "-p"], [175, 4, 1, "cmdoption-groonga-s", "-s"], [175, 4, 1, "cmdoption-groonga-t", "-t"], [175, 4, 1, "cmdoption-groonga-arg-command", "command"], [175, 4, 1, "cmdoption-groonga-arg-dest", "dest"]], "groonga-benchmark": [[176, 4, 1, "cmdoption-groonga-benchmark-dir", "--dir"], [176, 4, 1, "cmdoption-groonga-benchmark-ftp", "--ftp"], [176, 4, 1, "cmdoption-groonga-benchmark-groonga", "--groonga"], [176, 4, 1, "cmdoption-groonga-benchmark-i", "--host"], [176, 4, 1, "cmdoption-groonga-benchmark-log-output-dir", "--log-output-dir"], [176, 4, 1, "cmdoption-groonga-benchmark-p", "--port"], [176, 4, 1, "cmdoption-groonga-benchmark-protocol", "--protocol"], [176, 4, 1, "cmdoption-groonga-benchmark-i", "-i"], [176, 4, 1, "cmdoption-groonga-benchmark-p", "-p"], [176, 4, 1, "cmdoption-groonga-benchmark-arg-db", "db"], [176, 4, 1, "cmdoption-groonga-benchmark-arg-script", "script"]], "groonga-suggest-httpd": [[180, 4, 1, "cmdoption-groonga-suggest-httpd-d", "--daemon"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-disable-max-fd-check", "--disable-max-fd-check"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-l", "--log-base-path"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-n-lines-per-log-file", "--n-lines-per-log-file"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-t", "--n-threads"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-p", "--port"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-r", "--receive-endpoint"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-s", "--send-endpoint"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-d", "-d"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-l", "-l"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-p", "-p"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-r", "-r"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-s", "-s"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-t", "-t"]], "groonga-suggest-learner": [[181, 4, 1, "cmdoption-groonga-suggest-learner-d", "--daemon"], [181, 4, 1, "cmdoption-groonga-suggest-learner-l", "--log-base-path"], [181, 4, 1, "cmdoption-groonga-suggest-learner-log-level", "--log-level"], [181, 4, 1, "cmdoption-groonga-suggest-learner-log-path", "--log-path"], [181, 4, 1, "cmdoption-groonga-suggest-learner-r", "--receive-endpoint"], [181, 4, 1, "cmdoption-groonga-suggest-learner-s", "--send-endpoint"], [181, 4, 1, "cmdoption-groonga-suggest-learner-d", "-d"], [181, 4, 1, "cmdoption-groonga-suggest-learner-l", "-l"], [181, 4, 1, "cmdoption-groonga-suggest-learner-r", "-r"], [181, 4, 1, "cmdoption-groonga-suggest-learner-s", "-s"]]}, "objnames": {"0": ["c", "macro", "C macro"], "1": ["c", "function", "C function"], "2": ["c", "functionParam", "C function parameter"], "3": ["c", "type", "C type"], "4": ["std", "cmdoption", "program option"]}, "objtypes": {"0": "c:macro", "1": "c:function", "2": "c:functionParam", "3": "c:type", "4": "std:cmdoption"}, "terms": {"": [6, 17, 18, 22, 23, 26, 27, 31, 39, 40, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 56, 74, 81, 87, 91, 95, 96, 106, 116, 121, 124, 125, 131, 132, 134, 135, 137, 140, 141, 142, 155, 156, 158, 159, 161, 163, 165, 166, 168, 173, 175, 177, 180, 181, 183, 186, 188, 191, 192, 193, 196, 197, 201, 202, 203, 205, 206, 210, 223, 224, 225, 226, 228, 237, 239, 241, 243, 244, 245, 246, 247, 248, 250, 251, 253, 262, 264, 270, 271, 272, 274, 276, 278, 282, 290, 292, 298, 302, 303, 304, 305, 306, 307, 308, 310, 314, 315], "0": [12, 26, 27, 28, 31, 35, 55, 58, 68, 74, 81, 85, 91, 94, 95, 96, 97, 98, 99, 100, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 173, 174, 175, 176, 177, 178, 180, 183, 184, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 219, 220, 221, 222, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 241, 244, 245, 246, 247, 248, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 282, 283, 284, 285, 286, 287, 288, 296, 298, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "00": [41, 42, 43, 44, 47, 54, 95, 132, 134, 135, 137, 156, 176, 180, 211, 212, 250, 251, 253, 271, 282, 305, 311], "000": [111, 183, 196], "0000": [111, 273], "000000": [41, 42, 43, 44, 211], "00000000": 74, "000000000000000": [54, 124], "000000000072779": 228, "000000000075770": 228, "000000000099998": 228, "000000000119062": 228, "000000000b123456": 52, "0000000012345678": 52, "00000001": 74, "000000ce63aff640": 43, "000001": [42, 211], "0000100": [142, 143, 164, 175], "0000101": [112, 114, 142], "0000102": [112, 142], "0000103": 142, "00001100": 74, "000020": 211, "00007860": 166, "00008052": 166, "00008202": 108, "0001": 111, "000113964080810547": 241, "000115633010864258": 175, "000126361846923828": 241, "000131845474243164": 241, "000133702000000": 43, "000133703000000": 43, "0001480579376220703": 43, "0001730918884277344": 42, "00019073486328125": 44, "0001978874206542969": [43, 44], "0002026557922363281": 42, "000220775604248047": 99, "0002346038818359375": [43, 44], "0002503395080566406": 41, "0003311634063720703": 42, "0003361701965332031": 43, "000355720520019531": [42, 43, 44, 58, 91, 94, 95, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 177, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 245, 246, 247, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 286, 298, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "000418127": 301, "0004854202270507812": 45, "0005342960357666016": 43, "0005414485931396484": 42, "0005481243133544922": [43, 44], "0005536079406738281": 45, "0005540847778320312": 42, "0005846023559570312": 43, "000647003": 301, "000647716": 301, "0006628036499023438": 41, "0007376670837402344": 45, "000743783": 301, "000794": 12, "00082087516784668": 241, "0009": 243, "0009913444519042969": 45, "000x": 17, "001": [42, 183, 196, 314], "0010": 111, "001013517379760742": 45, "001041412353515625": 45, "001147": 176, "001213": 176, "001319169998168945": 42, "00133": 43, "001366376876831055": 45, "001431": 176, "00144": 176, "001525487": 301, "001608610153198242": 45, "001833438873291016": 45, "001911401748657227": 45, "001977920532226562": 45, "002": [42, 176, 183, 196, 314], "0020": [272, 273], "002193": 45, "002481460571289062": 45, "002741": 176, "002784013748168945": 193, "002813816070556641": 41, "002861": 176, "002965450286865234": 42, "002d": [231, 232, 233, 234, 235, 257, 258, 259], "003": 42, "003981828689575195": 42, "004": 42, "005": 42, "006": 42, "0061": 53, "00612": 39, "006752": 49, "00686": 47, "0069": 45, "007": 42, "00703": 47, "00794": 12, "008": 42, "009": 42, "00b7": [231, 232, 233, 234, 235, 258, 259], "00n": 173, "00z": [42, 180], "01": [35, 95, 132, 134, 135, 137, 180, 183, 196, 211, 212, 228, 275, 282, 305], "010": [42, 111], "0101": 111, "01088": 47, "011": [42, 111], "01100001": 74, "0111": 111, "01174": 47, "01192": 48, "012": 42, "0123": 275, "012345": 275, "0123456789": 275, "01248": 48, "013": 42, "0130": 45, "01346": 48, "014": 42, "01418": 176, "01440": 48, "015": 42, "015119": 176, "01520": 48, "01571": 48, "01593": 48, "01596": 48, "01599": 48, "016": 42, "01621": 48, "01661": 48, "017": 42, "01729": 48, "01751": 48, "018": 42, "01800": 48, "01810": 48, "018364": 174, "01845": 48, "01890": 48, "019": 42, "01929": 241, "01930": 48, "01971983909606934": 44, "01t00": [43, 180], "01t08": 42, "01t09": [42, 44], "01t10": 42, "01t11": 42, "01t19": 42, "01t21": 42, "02": [35, 41, 132, 134, 135, 137, 156, 183, 196, 211, 212, 225], "020": 42, "02017": 48, "02052": 48, "02073": 49, "02097": 49, "021": 42, "02113": 49, "022": 42, "023": 42, "02398": 49, "024": 42, "02409": 49, "02454": 49, "025": 42, "026": 42, "02651": 49, "02673": 49, "02691": 49, "027": 42, "02731": 49, "02754": 49, "02796": 49, "028": 42, "02841": 176, "029": 42, "02902": 49, "02942": 49, "02970": 49, "02981": 49, "02d7": [231, 232, 233, 234, 235, 258, 259], "02t09": 42, "03": [35, 135, 137, 156, 212, 311], "030": 42, "03014": 49, "0307": 45, "031": 42, "03118": 50, "03131": 50, "03177": 50, "032": 42, "03255": 50, "033": 42, "034": 42, "03427": 50, "035": 42, "03515": 50, "03527212142944336": 43, "03562": 50, "036": [42, 282], "03632": 50, "037": 42, "03708": 50, "03761": 50, "03771400451660156": 43, "038": 42, "03825": 50, "03884": 51, "039": 42, "03948": 51, "03997230529785156": 41, "04": [21, 32, 35, 44, 49, 132, 134, 135, 156, 176, 212, 303], "040": 42, "04008": 51, "04012": 51, "04028": 51, "04040": 51, "04055": 51, "04058": 51, "041": 42, "04107": 51, "042": 42, "04219": 51, "043": 42, "0435875803232193": 41, "044": 42, "04449": 52, "045": 42, "04533": 52, "046": 42, "04609": 53, "04683": 53, "04688": 53, "047": 42, "04770": 54, "048": 42, "049": [42, 176], "04956": [43, 44], "05": [35, 97, 111, 174, 176, 211, 212, 228, 241, 311], "050": 42, "05005": 43, "050228": 45, "052517": 228, "058a": [231, 232, 233, 234, 235, 258, 259], "06": [35, 44, 173, 212, 228, 303], "06164214760065079": 41, "07": [35, 132, 134, 135, 212, 225, 228], "072": 45, "073": [34, 254, 282], "08": [35, 132, 134, 135, 156, 228, 250, 251, 253, 303], "08321": 241, "0871751606464386": 41, "09": [35, 132, 134, 135, 228, 250, 251, 253], "090": [53, 275], "09011112222": [53, 275], "095": 282, "096246": 45, "098612308502197": 42, "099782": [43, 44], "0c": 271, "0e": 176, "0garbag": 53, "0mq": 48, "0th": 111, "0x0": [40, 282, 305], "0x00": 111, "0x01": [111, 298], "0x02": [111, 298], "0x03": 111, "0x04": [111, 298], "0x08": 298, "0x10": 298, "0x11": 111, "0x12": 111, "0x13": 111, "0x14": 111, "0x19": 111, "0x1b": 111, "0x20": 224, "0x29": 111, "0x3f": 111, "0x40": 111, "0x45": 111, "0x46": 111, "0x47": 111, "0x48": 111, "0x55": 111, "0x55788b59dbe0": 228, "0x5c": 53, "0x6a": 111, "0x7fa0d5d7ed00": 99, "0x91": 111, "0x99": 111, "0x9a": 111, "0xa0": 111, "0xa7": 111, "0xc7": 298, "0xe1": 111, "0y": 44, "0yyi": 44, "0\u306e\u79d2\u8868\u8a18": 301, "0\u30ea\u30ea\u30fc\u30b9": 35, "0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059": 175, "0\u7cfb\u306e\u304a\u77e5\u3089\u305b": 35, "1": [0, 11, 12, 14, 31, 34, 35, 58, 68, 74, 91, 93, 94, 95, 96, 97, 98, 99, 100, 105, 108, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 121, 122, 123, 124, 125, 126, 128, 131, 132, 133, 134, 135, 137, 138, 141, 142, 143, 144, 145, 149, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 163, 164, 165, 166, 167, 168, 170, 171, 173, 175, 176, 177, 178, 180, 181, 183, 185, 186, 188, 189, 190, 191, 192, 193, 196, 197, 201, 202, 203, 205, 206, 208, 209, 210, 212, 220, 221, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 241, 243, 244, 245, 246, 247, 250, 251, 253, 254, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 274, 275, 276, 277, 278, 279, 280, 281, 286, 292, 298, 301, 302, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "10": [35, 45, 56, 91, 95, 96, 100, 107, 111, 132, 134, 135, 141, 142, 149, 150, 155, 156, 158, 159, 161, 166, 168, 173, 176, 184, 191, 192, 193, 202, 203, 204, 211, 224, 225, 231, 232, 234, 245, 258, 262, 264, 267, 268, 271, 275, 277, 282, 301, 306, 308, 310], "100": [41, 42, 43, 48, 49, 50, 91, 96, 99, 107, 110, 111, 132, 134, 135, 156, 159, 161, 173, 174, 175, 176, 177, 184, 189, 250, 264, 269, 270, 286, 301], "1000": [41, 42, 53, 54, 74, 111], "10000": [54, 174, 281], "100000": [42, 43], "1000000": 180, "10000000": 74, "1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059": 282, "1001": [54, 111], "10041": [29, 125, 153, 174, 175, 176, 177, 178, 241, 292, 296, 312], "10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059": 174, "10041\u756a": 175, "10043": [49, 175, 296, 298], "10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059": 175, "10043\u756a": 175, "10055": 302, "1007": 54, "1009": 54, "100abc": 184, "100cent": [264, 269, 270, 271], "100mb": 52, "100x": [51, 52], "100x100": 189, "100x150": 190, "100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070": 301, "101": [48, 91], "1010": [54, 176], "1011": 54, "102": 250, "1023": 54, "1024": [41, 45, 51, 54, 125, 141, 225, 312], "102400": 41, "1025202362": 315, "1030": [39, 54], "1035": 39, "10400": 176, "1042": 39, "1043": 39, "1044": 39, "1045": 54, "1047": 39, "10475660": 188, "1048": 39, "1051": [39, 111], "1051322": 188, "1052": 45, "1052672": 141, "1053": 39, "1054": 47, "10649": 42, "1065": 54, "1073741823": 254, "1073741824\u306e\u6574\u6570\u3067": 89, "10738": 241, "1087": 41, "1089": 41, "109": 48, "10900": 176, "10d": 173, "10h": 173, "10m": [173, 177], "10month": 173, "10t13": [250, 251, 253], "10t22": 251, "10w": 173, "10x": 45, "10z": 225, "11": [35, 41, 44, 91, 96, 100, 111, 132, 134, 135, 141, 142, 155, 156, 166, 168, 202, 203, 205, 208, 209, 211, 224, 225, 237, 268, 277, 281, 286, 310], "110": [41, 48, 108], "1100": 41, "1101": 41, "1102": 41, "1102520059": 315, "1106": 41, "11068624": 111, "111": [41, 48, 108], "1110": 111, "1111": [53, 111, 275], "1112": 41, "11155": 108, "112": [41, 48], "1120": 41, "1122": 41, "1126": 41, "1129": 228, "113": 48, "1139": 41, "114": [37, 48], "115": [48, 54], "1153": 41, "1155": 41, "1158": 41, "116": [48, 108], "1167": 39, "11675": 54, "1169": 42, "117": 48, "1171": 39, "1172": 42, "1173": 39, "1175": 39, "1177": 42, "118": 48, "1180": 39, "1186": 42, "1189641421": 315, "1191": 42, "11925": 176, "1194": 39, "11x1": 41, "11x11": 41, "11x13": 41, "12": [12, 35, 54, 100, 111, 135, 141, 142, 155, 156, 166, 168, 176, 183, 186, 211, 224, 225, 231, 233, 241, 244, 268, 275, 277, 311], "120": 48, "120000": 108, "12008": 176, "1209": [39, 42], "121": 108, "1215": [39, 40], "1216": 39, "122": [48, 174, 211], "1220": 39, "1224": 42, "1225": 39, "1226": 39, "1228": 42, "123": [42, 48, 138], "123000": 42, "1234": [40, 42, 180], "12345": 298, "123456": 52, "1234567890": [45, 225, 305], "1234569999": 305, "123457": 305, "1235": 180, "1238": 42, "124": 48, "1240": 42, "1242": 40, "1247": 47, "125": 48, "1251": 40, "1256791194": 199, "1258": 47, "126": [42, 48, 52], "1265": 42, "12670817": 111, "1268794800": 311, "1268795100": 311, "1268798400": 311, "1268802000": 311, "127": [42, 48, 108, 175, 178, 180, 282], "1271252824": 176, "128": [42, 48, 111, 180, 282], "128452975": 315, "128452975x503157902": [305, 307, 312, 315], "128487316x502920929": [307, 315], "1285031914": 301, "128515259x503187188": [307, 315], "1285858800": 301, "1285858800\u306f2010": 301, "1289": 47, "128mb": 47, "129": [42, 48, 176], "1298": 47, "1299": 47, "12gb": 303, "12x12": 41, "13": [28, 35, 41, 43, 47, 48, 49, 52, 53, 96, 100, 111, 141, 142, 155, 156, 158, 168, 176, 177, 183, 186, 191, 193, 231, 232, 233, 234, 235, 237, 241, 247, 259, 268, 277, 296, 301, 305, 311], "130": 48, "1301": 42, "1302": 47, "1303": 47, "13036498944": 303, "1305": 47, "1307627409696579": 41, "131": [45, 48], "131072": [141, 281], "1312950803": [159, 250, 251, 253], "1312950804": [159, 250, 251], "1312950805": [159, 250, 251], "1312950808": [159, 253], "1312950809": [159, 251], "1312950810": [159, 251], "1313": 42, "1316": 42, "1317": 42, "13192": 176, "132": 48, "1320": 47, "13214": 176, "1324": 47, "1325": 47, "1326": 47, "13277": 176, "1327721626": 241, "1327721628": 241, "1327721639": 241, "1327721649": 241, "1327721664": 241, "1327809282": 241, "1327809294": 241, "1327809319": 241, "1327809339": 241, "1327809366": 241, "1328": 47, "13289": 176, "1329": 47, "13291000": 188, "133": [43, 48], "1330": 47, "1337566253": [42, 43, 44, 58, 91, 94, 95, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 177, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 245, 246, 247, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 286, 298, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "134": 48, "1340": 47, "1342": 47, "1343011270": 225, "135": 97, "1350490027": 315, "135631": 176, "135960000x": 188, "136": [48, 108], "1363": 47, "1365180540": 315, "1366": 43, "1367": 43, "137": 48, "1372": 47, "138": 48, "1386": 47, "1387": 47, "1388": 47, "1389": 47, "139": [36, 48, 315], "139000": 43, "1393": 47, "13\u7528rpm\u306e\u63d0\u4f9b": 37, "14": [21, 26, 35, 41, 42, 43, 48, 49, 50, 52, 53, 54, 58, 100, 111, 112, 120, 123, 141, 142, 155, 158, 168, 175, 176, 183, 197, 225, 227, 228, 231, 232, 233, 234, 235, 236, 257, 258, 259, 277, 311], "140": 48, "1400": 158, "1405": 47, "1406": 47, "141": 48, "1416063600": 43, "1416150000": 43, "1418": 47, "1419": 47, "142": [48, 241], "1420": 47, "1421": 47, "1422928140": [135, 156], "1422928140000000": [135, 156], "1422935340": [41, 135, 156], "1422935340000000": [135, 156], "1422975600": [41, 135], "1422975600000000": 135, "1423": 47, "1427": [231, 232, 233, 234, 235, 258, 259], "1428": 47, "1429": 47, "1429687763": 175, "143": 48, "14320": 12, "1436281200": [134, 135], "1436284800": [134, 135], "1436288400": [134, 135], "1436313600": 45, "1436367600": [134, 135], "1436371200": [134, 135], "143660000x419009000": 188, "144": [48, 241], "1441761403": 158, "1448344437": 97, "1448344438": 97, "145": 48, "1451": 47, "1453": 44, "14541": 176, "1455": 47, "145508000x": 188, "14570": 176, "1458228600": 137, "1459846102": 99, "146": [48, 241], "1462": 45, "1462460400": 42, "146249000x": 311, "1462546799": 42, "1462546800": 42, "1462633200": 42, "1462719599": 42, "146566000x": [188, 311], "146607190x": 311, "146710080x": 311, "146741340x": 311, "146867000x": 311, "147": [48, 282], "148": [48, 166], "149": 48, "1490": 176, "14t00": 41, "14x14": 41, "15": [35, 39, 41, 43, 44, 45, 50, 51, 53, 100, 132, 134, 135, 141, 142, 155, 156, 168, 176, 183, 186, 224, 225, 231, 235, 259, 277, 305, 311], "150": [42, 48, 198, 286], "1500": 41, "150x100": 190, "151": 48, "15187": 176, "152489000x": 311, "152944": 108, "153": 91, "1531": 47, "1532": 47, "1534": 47, "1536": 44, "1538": 45, "154": 49, "1540383426": 315, "155": [41, 241], "1560": 44, "157": 241, "1573": 176, "158": 49, "1588258800": 211, "159": 241, "1590469700": 41, "1590647445": 41, "1594339851": 41, "15min": 51, "15t00": 41, "16": [35, 39, 41, 42, 43, 44, 45, 47, 50, 51, 52, 100, 111, 132, 134, 135, 141, 142, 155, 168, 173, 174, 183, 186, 225, 228, 231, 257, 277], "160": 49, "1601": 44, "1602724694": 41, "1604020694": 41, "1608087311": 41, "1608088617": 41, "1608088628": 41, "16114": 42, "1612504193": 42, "162": 49, "1624": [44, 166], "1624605205": 42, "1624686303": 42, "1625227424": 42, "163": 49, "16384": [141, 142], "1639037503": 42, "164": 49, "164097": 176, "1643165838": 42, "1643595008": 42, "1649760492": 315, "165": 42, "1650849001": 43, "16515": 42, "1654": 44, "1654237168": 43, "1655": 44, "1656473820": 43, "1656480220": 43, "166": 49, "1660": 166, "1663989875": 44, "1664781132": 43, "1666923364": [43, 44], "1666924069": [43, 44], "1666924357": [43, 44], "167": 49, "1672123380": 43, "1677829950": 44, "16779234": 111, "1678097412": 44, "168": [49, 175, 180], "1681692777": 315, "16842752": 141, "16843": 53, "16844": 53, "1686038572": 193, "169": 49, "1696558618": [94, 158, 177, 298, 308, 312], "16bit": 282, "16gb": 303, "16gib": 281, "16t00": 41, "16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059": 108, "17": [27, 35, 41, 43, 44, 47, 50, 52, 53, 54, 100, 111, 141, 142, 155, 168, 178, 277, 311], "170": 49, "171": 49, "1710401574": 45, "1714636915": 315, "1715155644": 45, "1715155680": 45, "1715155762": 45, "1715215640": 45, "1715220409": 45, "1715221627": 45, "1715222501": 45, "1715224057": 45, "1715224211": 45, "1716": 166, "1718": 176, "1719376617": 45, "1719377505": 45, "172": 49, "172310000": 188, "173": 49, "1738": 45, "17380": 176, "174": [49, 108], "17435": 176, "17480": 176, "17491": 176, "175": 49, "175904000x8464000": 188, "176": 49, "177": 49, "1774": 45, "178": 49, "179": 49, "17t00": 41, "18": [35, 41, 44, 47, 48, 50, 53, 74, 100, 137, 141, 142, 155, 156, 168, 174, 228, 277, 282, 301], "1800": 41, "1804289383": 315, "18149": 108, "182": 49, "1828": 166, "183": 49, "184": 49, "1845": 45, "185": 49, "18524211": 111, "185428000x": 188, "188": [49, 315], "189": 49, "18970": 176, "18998": 176, "19": [35, 41, 42, 47, 48, 50, 53, 54, 100, 137, 142, 155, 156, 168, 174, 211, 228, 277, 303], "190": [49, 53], "191": 49, "192": [49, 175, 180], "193": [49, 166], "194": 49, "195": 175, "1957747793": 315, "196": 49, "1964": 48, "1967": 176, "1967513926": 315, "197": 49, "1970": [42, 44, 95, 180, 225, 282, 305, 311], "198": 49, "19801": 176, "1988": 47, "1999": [42, 43, 48], "1b": 42, "1bit": 111, "1byte": [111, 298], "1cpu": 156, "1g": 49, "1gb": 50, "1o": 244, "1st": [111, 183], "1tib": [34, 161, 254], "1usec": 51, "1x139": 305, "1year": 173, "1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059": 93, "1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc": 39, "1\u3068command": 93, "1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059": 93, "1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f": 176, "1\u30ea\u30ea\u30fc\u30b9": 35, "1\u5358\u8a9e\u6271\u3044": 299, "1\u7cfb\u306e\u304a\u77e5\u3089\u305b": 35, "1\u884c\u76ee": 176, "2": [0, 12, 27, 28, 34, 35, 58, 74, 91, 93, 94, 95, 96, 97, 98, 99, 100, 108, 111, 114, 115, 116, 117, 118, 121, 122, 123, 124, 126, 128, 131, 132, 134, 135, 137, 141, 142, 149, 154, 155, 156, 157, 158, 159, 161, 163, 164, 168, 170, 171, 173, 175, 176, 177, 183, 184, 186, 188, 191, 192, 193, 194, 195, 201, 202, 203, 205, 206, 208, 209, 210, 212, 221, 224, 225, 226, 229, 230, 231, 232, 233, 234, 235, 237, 241, 243, 244, 245, 246, 247, 250, 253, 254, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 274, 275, 277, 279, 280, 281, 282, 286, 292, 298, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "20": [41, 42, 43, 44, 45, 47, 48, 50, 52, 58, 100, 142, 155, 156, 168, 176, 183, 186, 195, 202, 211, 225, 251, 277, 311], "200": [41, 42, 43, 49, 50, 96, 111, 132, 134, 135, 156, 198, 205, 286, 305], "2000": [42, 43, 240], "20000": 311, "20010": 176, "2003": 56, "20041": 177, "2005": [35, 56], "2006": [35, 56], "2008": [39, 48], "2009": 35, "200byte": [205, 206], "201": 49, "2010": [35, 47, 49, 50, 176, 231, 232, 233, 234, 235, 258, 259, 301, 307, 311], "2011": [35, 228, 250, 251, 253], "2012": [12, 35, 41, 225], "2013": [35, 41, 303], "2014": [35, 42, 43, 231, 232, 233, 234, 235, 258, 259], "2015": [35, 41, 132, 134, 135, 156, 231, 232, 233, 234, 235, 258, 259], "20150708": [132, 134, 135], "20150709": [132, 134, 135], "20150814": 248, "2016": [35, 42, 43, 137], "2017": [35, 41, 43, 44, 132, 134, 135], "2018": [35, 54, 212], "2019": [35, 41, 173], "202": [49, 176], "2020": [35, 211], "2021": [35, 45, 166], "2022": [27, 35, 44, 231, 232, 233, 234, 235, 258, 259], "2023": [22, 23, 27, 35, 111, 174], "2024": [35, 56], "2025": [35, 228], "203": 49, "2043": [231, 232, 233, 234, 235, 258, 259], "2044897763": 315, "2048": [42, 49], "204835": 174, "2054": [48, 307, 315], "206": 49, "2078": 45, "207b": [231, 232, 233, 234, 235, 258, 259], "208": 49, "208b": [231, 232, 233, 234, 235, 258, 259], "209": 43, "2097": 45, "20km": 311, "21": [27, 42, 43, 44, 45, 47, 100, 111, 168, 174, 183, 186, 202, 211, 277, 301], "210": [49, 96], "2104": 45, "212": 49, "2121": 45, "21252": 45, "2147483643": 225, "2147483648": [44, 142, 155, 225], "215": 49, "216": [49, 108], "216639": 158, "2168": 45, "217": 49, "218": 176, "21th": 48, "21x21": 41, "21x9": 41, "22": [32, 35, 41, 42, 43, 44, 45, 47, 74, 100, 111, 115, 132, 134, 135, 141, 143, 156, 166, 168, 173, 176, 211, 245], "220": [42, 44, 49], "221": 49, "2211": 46, "2212": [231, 232, 233, 234, 235, 258, 259], "2219": [231, 232, 233, 234, 235, 258, 259], "2222": [53, 275], "223": [49, 282], "225": 37, "227": 49, "22c5": [231, 232, 233, 234, 235, 258, 259], "22x10": 41, "23": [35, 42, 43, 44, 45, 50, 100, 132, 135, 168, 211, 225, 241, 250, 251, 253, 275], "230": 155, "23017": 42, "2307": 49, "231": 155, "232": 155, "233": [97, 155], "237": [50, 108], "239": 49, "23bit": 111, "23t02": 225, "24": [32, 35, 42, 50, 100, 111, 142, 158, 168, 176, 250, 251], "240": 49, "242": 49, "2438": 49, "24byte": 298, "24t18": 173, "25": [35, 42, 48, 100, 108, 111, 134, 135, 156, 168, 228, 250, 251, 305], "250": [41, 42, 198], "2500": [231, 232, 233, 234, 235, 258, 259], "2501": [231, 232, 233, 234, 235, 258, 259], "253": 49, "254": 42, "2546": 49, "255": [42, 111, 282], "255829000": 311, "256": [51, 91, 111, 112, 114, 141, 142, 155, 164, 175, 211], "256gib": 34, "256kb": 303, "256kib": 281, "257": [41, 112, 114, 142, 155], "257662232kbyte": 176, "258": [112, 142, 155], "25846": 176, "259": [49, 142, 155, 315], "26": [35, 42, 100, 111, 168, 225], "2601": 176, "26057": [159, 250, 251], "262144": 141, "26298": 176, "264": 49, "26542080": 141, "26568": 108, "26595": 176, "266": 52, "266228000": 311, "266280000": 311, "266315480": 311, "266319590": 311, "266422000": [188, 311], "267021260": 311, "268": [34, 248, 254], "268052438": 301, "268435455": 254, "268435456": 254, "26897": 176, "27": [35, 42, 43, 44, 100, 168, 228, 315], "270": 49, "27018": 176, "27025": 176, "271": 49, "27153": 176, "272": 176, "273053": 176, "2744": 176, "27446": 176, "27596": 176, "276": 50, "276421": 228, "276553": 228, "278549": [43, 44], "279": 43, "28": [34, 35, 42, 44, 45, 100, 134, 135, 156, 168, 253, 254], "283": 50, "288": 166, "29": [34, 35, 58, 91, 94, 100, 111, 132, 134, 135, 156, 158, 168, 177, 186, 225, 251, 254, 298, 308, 312], "290": [53, 74], "29025": 176, "29195195": 12, "292570838": 301, "29289245605469e": 97, "2929": [58, 94, 111, 115, 118, 132, 134, 135, 137, 143, 156, 158, 163, 177, 180, 298, 308, 312], "294": [41, 282], "295": 282, "296": 50, "2a": 166, "2byte": [100, 298], "2ch": 56, "2channel": 56, "2e31": [231, 232, 233, 234, 235, 258, 259], "2groonga": 166, "2lib": 166, "2nd": [43, 53, 156], "2rd": 156, "2rroonga": 42, "2st": 156, "2thread": 166, "2x": 39, "2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059": 93, "2\u30ea\u30ea\u30fc\u30b9": 35, "2\u884c\u76ee": 176, "3": [0, 11, 12, 17, 27, 29, 35, 56, 91, 93, 94, 96, 99, 100, 106, 111, 114, 121, 122, 123, 125, 132, 134, 135, 137, 138, 141, 142, 154, 155, 156, 158, 159, 164, 166, 167, 168, 170, 173, 175, 176, 177, 178, 183, 193, 194, 197, 198, 201, 203, 204, 205, 206, 208, 209, 210, 211, 212, 221, 224, 225, 226, 229, 231, 232, 233, 234, 235, 236, 240, 244, 245, 246, 247, 250, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 274, 275, 276, 277, 278, 279, 280, 281, 283, 286, 296, 298, 299, 301, 305, 306, 307, 308, 310, 311, 312, 313, 315], "30": [34, 35, 42, 47, 100, 120, 137, 168, 174, 186, 211, 244, 251, 254], "300": [41, 42, 120, 132, 134, 135], "3000": [42, 50], "3001": 50, "3002": 50, "303": 91, "304533": 43, "30547": 176, "3086": 176, "30ac": 230, "30fb": [231, 232, 233, 234, 235, 258, 259], "30fc": [231, 232, 233, 234, 235, 258, 259], "31": [35, 47, 100, 111, 134, 135, 156, 168], "313": 228, "313401": 228, "3137": 176, "314e": 225, "316": 315, "317": 50, "317582": 45, "31st": 111, "31t22": 42, "32": [23, 28, 32, 33, 42, 43, 44, 45, 47, 53, 54, 100, 111, 141, 142, 168, 176, 225, 282], "3231": 53, "323451": 45, "327": 41, "32768": 225, "32bit": [41, 48, 50, 51, 111, 282], "32byte": 50, "32gib": 281, "32nd": 111, "33": [42, 47, 91, 100, 142, 166, 168, 250, 251, 253], "330": 51, "332": 51, "332274": 45, "33248": 176, "3326656": 41, "33282": 142, "33285": 176, "336": 50, "338": 50, "33x12": 41, "34": [42, 47, 52, 100, 156, 166, 168, 211, 275, 301, 303], "3405": 43, "340685": 45, "345734": 228, "348": 50, "35": [36, 41, 42, 100, 134, 135, 156, 168, 178, 228, 305, 315], "351": 50, "353": 50, "354": 50, "355": 50, "355064": 193, "357": 50, "358": 50, "359464": 176, "36": [42, 100, 156, 168], "360": 41, "361": 41, "3616": 49, "363": 50, "364602632": 301, "368": 50, "37": [42, 100, 168, 241], "372": 282, "375": 50, "378": 50, "379": 50, "38": [42, 43, 44, 49, 100, 168, 241], "380": 50, "380738": 42, "38095511": 111, "381": 50, "382": 50, "385": 52, "39": [41, 42, 100, 168, 228], "3901936": 228, "3920288775949": 41, "393": 50, "396": 50, "39600000000": 41, "397": 50, "399": [42, 50], "3dai": 173, "3rd": [48, 51, 53, 156], "3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408": 299, "3\u30ea\u30ea\u30fc\u30b9": 35, "3\u884c\u76ee": 176, "4": [27, 31, 35, 74, 93, 94, 96, 98, 100, 109, 111, 121, 124, 127, 132, 135, 141, 142, 149, 150, 153, 155, 156, 158, 167, 168, 170, 173, 175, 176, 183, 192, 193, 196, 198, 201, 202, 206, 210, 212, 219, 224, 225, 226, 237, 244, 245, 247, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 274, 275, 277, 278, 279, 280, 281, 282, 286, 298, 307, 308, 310, 311, 313, 315], "40": [42, 43, 74, 100, 132, 176, 186, 228, 315], "400": [41, 42, 48, 49, 51, 198, 286], "400m": 41, "401": 228, "403": 50, "405": 50, "406": 50, "406149": 41, "4063": 240, "407": 50, "408": 51, "409": 50, "4091b": [117, 171], "4096": [43, 47, 48, 74, 98, 141, 142, 155, 228], "4096byte": [50, 254], "4097byte": 254, "41": [42, 43, 52, 100, 111, 134, 135, 156, 225, 315], "410": 41, "4102": 301, "415": 50, "417": 50, "41741": 43, "41742": 43, "418": 45, "419": 50, "4194304": 303, "42": [42, 74, 100, 228, 315], "420": 50, "424238335": 315, "4281": 176, "429": 54, "4294967185": 108, "4294967295": 141, "43": [42, 43, 100], "431": 37, "432017408": 303, "435": [34, 248, 254], "436218": 225, "436218z": 225, "437": 44, "43783": 97, "438": [39, 44], "4387": 301, "43x12": 41, "44": [42, 74, 100, 211], "4400": 301, "44001770019531e": 241, "440753": 41, "440760000": 188, "446": 282, "447": 50, "448": 50, "448064902": 301, "45": [42, 100, 176, 275, 315], "450": 50, "4505": 108, "452": 50, "4526677": 111, "454": 50, "455": [34, 248, 254], "456": 50, "457": 50, "458": 50, "458756": 228, "458829": 228, "458856": 228, "458875": 228, "458986": 228, "459": 51, "4592401": 111, "45ea3034": 228, "46": [42, 43, 74, 100, 315], "460": [37, 51], "461000": 188, "463": 51, "464": 51, "4648070": 111, "4652": 166, "4658217": 111, "47": [41, 42, 47, 100, 176], "472": 51, "4723879": 111, "476": 51, "47719": 176, "479": 51, "48": [42, 100, 141, 142], "481": 51, "483": 282, "484": 51, "48472": 176, "485": [108, 174], "48509": 176, "48554": 176, "48607": 176, "487": 51, "49": [41, 42, 100, 135, 141, 142, 156], "490": 51, "49152": [142, 175], "49153": 142, "493": 51, "494": 52, "495": 51, "496": 51, "496007": 45, "497": 51, "4byte": 298, "4e86e700": 303, "4gib": [34, 42, 43, 51, 161, 254, 298], "4kib": [34, 41, 45, 50, 58, 115, 116, 117, 171, 254], "4mib": 141, "4th": 156, "4\u30ea\u30ea\u30fc\u30b9": 35, "4\u884c\u76ee": 176, "5": [11, 26, 35, 37, 55, 58, 74, 85, 91, 93, 96, 97, 99, 100, 110, 111, 115, 116, 117, 118, 122, 124, 126, 128, 132, 133, 134, 135, 136, 137, 140, 141, 142, 144, 145, 146, 151, 152, 153, 155, 156, 158, 167, 168, 171, 173, 175, 183, 186, 192, 193, 194, 195, 196, 202, 203, 212, 219, 221, 224, 225, 231, 236, 237, 244, 246, 247, 248, 257, 258, 259, 262, 264, 265, 266, 267, 268, 270, 271, 274, 275, 277, 279, 280, 305, 306, 307, 308, 311, 313, 315], "50": [42, 52, 91, 100, 141, 183, 186, 195, 196, 198, 205, 209, 211, 251], "500": [41, 49, 183, 196], "5000": [307, 315], "50000": 307, "502": 74, "503157902": 315, "504": 51, "506": 91, "507": [51, 158], "508": [37, 51], "5095787": 41, "51": [42, 91, 100, 141, 202], "510": 91, "511": 51, "512": 141, "51265384": 111, "514": [37, 176], "515": [37, 51, 111], "517": 51, "518": 51, "518000": 166, "519": 51, "52": [42, 100, 251, 315], "520": 41, "522": 51, "523": 51, "524": 51, "524027": 43, "524084839": 301, "524290": 74, "526": 51, "527": 51, "528": 51, "529": 51, "53": [42, 48, 100], "530": 41, "531": 51, "532": 51, "533": 51, "534": 51, "535": 282, "536": [34, 254], "5367431640625e": 241, "537505": 45, "538": 37, "538532": 42, "539": 51, "54": [42, 100, 176], "540": [37, 42], "541": [37, 51], "542": 51, "54311": 241, "544": 51, "545": 51, "5453": 176, "546": 51, "548": 51, "549": 51, "55": [42, 91, 100, 111, 137, 141, 315], "550": 51, "551": [51, 282, 303], "5513765": 41, "553": 51, "555": 37, "55541": 199, "5558225": 188, "559": 51, "55x11": 41, "56": [42, 100, 305], "560": 51, "560146": 42, "56057": [159, 250, 251], "56058502197266e": 241, "563": 37, "564": 51, "564207350021": 36, "565": 91, "566": 91, "567": 37, "56880000x": 188, "57": [42, 100, 241, 315], "571": 37, "574": 166, "576": 51, "578": 37, "5782": 241, "579": 51, "57f2ff87d45d7f0f525e2216": 51, "58": [42, 100], "580": 51, "58043f77614116a2568d529c": 51, "5807750": 188, "581": 51, "582": 51, "582000": 166, "583": 51, "5836138": 188, "584": 51, "586": 51, "587": 51, "589": 51, "59": [42, 100, 132, 135], "590": 51, "591": 51, "591000": 166, "591901": 43, "592": 51, "592000": 166, "593": 51, "593000": 166, "594000": 166, "5956": 176, "596": [37, 108], "596516649": 315, "597000": 166, "59777": 108, "599": 51, "59\u74b0\u5883\u306b\u304a\u3044\u3066": 39, "5b": [117, 171], "5th": 156, "5week": 173, "5\u30ea\u30ea\u30fc\u30b9": 35, "6": [35, 74, 94, 96, 99, 100, 108, 111, 125, 132, 133, 134, 135, 137, 140, 141, 142, 143, 146, 153, 155, 156, 157, 159, 160, 163, 166, 168, 175, 183, 186, 187, 191, 192, 193, 207, 209, 211, 212, 222, 224, 225, 244, 257, 258, 259, 262, 264, 267, 268, 270, 271, 274, 275, 277, 283, 285, 307, 308, 313, 315], "60": [74, 100, 158, 186, 282], "601": 51, "601000": 166, "6020": 176, "603000": 166, "607": 51, "607000": 166, "608": 37, "6084117": 41, "61": [48, 100], "610000": 166, "61095": 241, "611000": 166, "612": 37, "613": 37, "615": 282, "617": [37, 51], "618": 51, "619": 51, "61eaaa306d9ba23328d23ce1": 42, "62": [48, 100], "620": 51, "622": 51, "623": 52, "624": [37, 51], "625": 52, "626": 51, "627": 52, "628": [37, 51], "628048": 45, "629": 52, "63": [48, 58, 100, 156, 225], "630": 37, "633": 52, "63304": 99, "634": 52, "64": [21, 23, 24, 28, 32, 33, 51, 74, 100, 111, 134, 135, 141, 142, 155, 156, 282], "641078": 42, "642": 45, "64263": 45, "6449499130249023": 197, "646": 52, "647": 282, "648": 282, "64bit": [50, 141, 282], "64kib": 50, "65": [100, 141, 142, 155, 186, 282], "652696": 44, "653039": 43, "6540993452072144": 197, "65465": 298, "65466": 298, "65467": 298, "65468": 298, "65469": 298, "65470": 298, "65471": 298, "65472": 298, "65473": 298, "65474": 298, "65475": 298, "65476": 298, "65477": 298, "65478": 298, "65479": 298, "65480": 298, "65481": 298, "65482": 298, "65483": 298, "65484": 298, "65485": 298, "65486": 298, "65487": 298, "65488": 298, "65489": 298, "65490": 298, "65491": 298, "65492": 298, "65493": 298, "65494": 298, "65495": 298, "65496": 298, "65497": 298, "65498": 298, "65499": 298, "65500": 298, "65501": 298, "65502": 298, "65503": 298, "65504": 298, "65505": 298, "65506": 298, "65507": 298, "65508": 298, "65509": 298, "65510": 298, "65511": 298, "65512": 298, "65513": 298, "65514": [45, 298], "65515": 298, "65516": 298, "65517": 298, "65518": 298, "65519": 298, "65520": 298, "65521": 298, "65522": 298, "65523": 298, "65524": 298, "65525": 298, "65526": 298, "65527": 298, "65528": 298, "65529": 298, "65530": [281, 298], "65531": 298, "65532": 298, "65533": 298, "65534": 298, "65535": 298, "65535byte": 50, "65536": [141, 142, 155, 281, 303], "65662": 111, "65724": 111, "65816": 111, "6581704020500183": 197, "66": [100, 155], "660": 37, "661": 39, "669": 37, "67": [100, 111, 155, 275], "6720": [307, 315], "6789": 275, "68": [45, 100, 155, 156], "6813819": 315, "6813819x139": [305, 315], "683": 54, "685": 53, "686": 37, "68693": 176, "6880439": 188, "689": 37, "69": [100, 155], "690": 37, "6909211x139": 315, "691": 52, "691991": 42, "695": 52, "6954581363924": 36, "696": 52, "698": 52, "699": 52, "6elz": 49, "6gib": 281, "6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 37, "6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull": 12, "6\u30ea\u30ea\u30fc\u30b9": 35, "6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059": 14, "7": [17, 26, 35, 74, 96, 100, 110, 111, 118, 122, 124, 132, 134, 135, 136, 141, 142, 155, 156, 158, 161, 167, 168, 173, 175, 176, 195, 196, 198, 209, 212, 220, 222, 224, 225, 235, 241, 244, 245, 262, 264, 267, 268, 270, 271, 274, 275, 277, 284, 285, 287, 288, 305, 307, 308, 315], "70": [41, 54, 100, 155, 158], "700": 52, "7002581": 315, "70098944": 43, "701": 52, "702": 52, "703": [37, 52], "706": 52, "708": 52, "70845": 175, "709": 282, "709869": 228, "71": [100, 155], "710": 41, "710013": 228, "71236": 108, "71252824": 176, "713": 37, "715882": 41, "7163": 301, "719885386": 315, "72": [100, 141, 142, 155], "7209": 51, "721": 52, "723": 37, "7238996": 111, "725": 52, "7293": 50, "729597": 42, "73": [100, 155, 176], "730": 52, "733": 52, "734894": 43, "735": 52, "7361": 108, "737014": 176, "74": [74, 100, 155], "740": 52, "741": [34, 176, 254], "743": 52, "744": 282, "7470239": 108, "748": 37, "75": [100, 155, 228], "750": 37, "751": [37, 52], "7529": 52, "754": [111, 282], "757": 37, "758": 39, "76": [100, 108, 155], "760": 52, "76057": [159, 250, 251], "762519": 176, "766": 39, "7660839": [305, 315], "767": [52, 282], "768": 282, "77": [48, 99, 100, 153, 155, 268], "770": 228, "770243": 51, "775": [52, 282], "776": 37, "777": 268, "78": [100, 155, 275], "780": 52, "781": 52, "783368690": 315, "787": 52, "79": [48, 100, 155], "790": 37, "794": 37, "799167": 50, "7b": [197, 227], "7d": 173, "7e": 176, "7h": 51, "7\u30ea\u30ea\u30fc\u30b9": 35, "8": [6, 22, 23, 34, 35, 42, 55, 74, 96, 100, 111, 124, 125, 132, 134, 135, 141, 142, 155, 156, 158, 159, 160, 168, 170, 175, 176, 180, 184, 186, 212, 219, 224, 225, 230, 232, 236, 241, 244, 258, 262, 264, 267, 268, 270, 271, 274, 275, 277, 286, 292, 307, 308, 315], "80": [43, 48, 100, 155, 175, 312], "800": 41, "802": 37, "805990": 176, "806": 52, "807": [37, 282], "808": 282, "8080": 180, "80ghz": 176, "81": [48, 55, 155], "813529": 174, "815": [34, 254], "8167": 301, "8192": 50, "82": [48, 155], "820": 53, "823": [34, 254], "82675": 241, "82pre": 55, "83": [48, 155], "8308622": 111, "831495": 176, "833": 39, "834": 38, "8342565": 41, "835218": 303, "837": 38, "84": [48, 155, 241, 282], "841000": 43, "84187": 241, "842000": 43, "846930886": 315, "85": [48, 53, 155, 302], "854": 282, "858": 53, "86": [48, 155], "8601": [42, 43, 173, 225], "86057": [159, 250, 251, 253], "86058": 250, "86059": 250, "86060": 250, "87": [48, 155, 166], "870": [34, 254], "878": 39, "88": [48, 155, 211], "880": 39, "883798": [43, 44], "8868": 53, "887": 39, "888": 39, "89": [48, 155, 275], "890": 39, "890356": 111, "892": 39, "892326": 43, "893": 39, "8935": 176, "894": 39, "895": 39, "89858": [42, 43, 44, 58, 91, 94, 95, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 177, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 245, 246, 247, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 286, 298, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "8988854": 166, "899": 39, "8990": 176, "8bit": [111, 282], "8byte": [34, 298], "8x8": 41, "8\u306b\u5bfe\u5fdc": 37, "8\u30ea\u30ea\u30fc\u30b9": [12, 35], "9": [12, 22, 23, 34, 35, 37, 85, 94, 96, 97, 98, 100, 108, 109, 111, 123, 124, 125, 127, 132, 134, 135, 137, 141, 142, 149, 153, 155, 156, 157, 158, 161, 166, 168, 170, 173, 175, 177, 181, 188, 205, 224, 225, 228, 229, 230, 232, 233, 234, 241, 244, 254, 258, 262, 264, 267, 268, 271, 274, 275, 277, 282, 286, 298, 301, 305, 306, 308, 312, 315], "90": [48, 55, 155, 156], "900": 41, "902": 315, "904": 54, "909": [39, 54], "91": [48, 156], "911": 54, "912": [34, 39, 54, 254], "913": 54, "913053": 44, "915408": 176, "92": [48, 241], "921248": 174, "9223372036854775807": 225, "9223372036854775808": 225, "924836": 41, "92619": 180, "929": 315, "93": [48, 54], "934": 39, "935": 39, "936": 54, "93850": 180, "93933868408203e": 241, "94293": 180, "9430448": 41, "94392": 108, "944": 39, "94734": 180, "95": 48, "951": 54, "9511": 54, "9513": 54, "95147": 180, "9516": 54, "952": 39, "95553": 180, "958": 54, "95959": 180, "96": [48, 54], "96000": 180, "9605": 42, "967": 282, "96857": [159, 250, 251], "97": [48, 174], "975": 315, "975mbyte": 176, "979517": 45, "98": [48, 50], "986": 39, "9876": 42, "99": 48, "993": [47, 49], "994": 47, "995": 48, "996": 50, "997": 176, "999": [53, 156], "9999": 156, "99999": 53, "999999": 42, "9x10": 41, "9x9": 41, "A": [0, 21, 27, 28, 34, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 74, 85, 87, 91, 98, 111, 124, 129, 138, 149, 156, 159, 161, 163, 171, 175, 179, 180, 186, 205, 206, 208, 210, 224, 225, 228, 229, 237, 239, 243, 244, 255, 262, 277, 282, 298, 303, 305, 308], "AND": [42, 45, 48, 49, 51, 52, 54, 156, 183, 195, 196, 202, 223, 315], "AS": 156, "And": [18, 31, 42, 49, 110, 111, 124, 153, 156, 168, 178, 203, 231, 232, 233, 234, 235, 243, 254, 282, 310, 311, 313], "As": [1, 3, 43, 44, 45, 52, 56, 111, 202, 276, 278, 296, 303, 306, 307, 308, 310, 311, 315], "At": [41, 42, 56, 106, 310], "BY": 306, "Be": [156, 298], "But": [6, 7, 8, 16, 17, 23, 39, 42, 43, 44, 45, 49, 50, 52, 53, 54, 58, 91, 111, 114, 135, 137, 141, 143, 149, 156, 164, 170, 188, 224, 225, 226, 227, 229, 243, 244, 245, 247, 262, 264, 272, 277, 281, 292, 296, 310], "By": [0, 18, 41, 42, 43, 45, 48, 49, 50, 51, 56, 177, 198, 244, 253, 311, 313], "For": [0, 2, 3, 8, 18, 22, 27, 31, 33, 34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 68, 91, 95, 103, 110, 111, 121, 124, 125, 132, 134, 135, 137, 138, 141, 142, 143, 155, 156, 157, 158, 159, 161, 166, 168, 170, 173, 175, 177, 182, 183, 193, 196, 203, 206, 210, 219, 223, 224, 225, 226, 227, 229, 231, 235, 237, 240, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 260, 262, 264, 272, 274, 275, 276, 278, 281, 292, 305, 306, 307, 308, 309, 310, 313, 314, 315], "IN": 55, "IT": 307, "If": [3, 6, 7, 8, 13, 17, 18, 21, 24, 25, 27, 28, 30, 31, 32, 33, 34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 64, 74, 81, 85, 90, 91, 94, 95, 96, 98, 99, 100, 102, 103, 104, 105, 106, 107, 110, 111, 112, 114, 115, 117, 118, 121, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 137, 138, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 155, 156, 157, 158, 160, 161, 163, 164, 166, 167, 168, 170, 173, 175, 177, 178, 179, 180, 181, 183, 184, 186, 188, 191, 192, 193, 195, 196, 197, 198, 205, 206, 208, 209, 210, 219, 224, 225, 226, 228, 229, 231, 232, 233, 234, 235, 237, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 262, 264, 274, 275, 279, 280, 281, 282, 286, 290, 292, 296, 298, 303, 305, 306, 308, 310, 312, 313, 315], "In": [0, 17, 27, 31, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 58, 84, 87, 91, 95, 111, 121, 124, 132, 134, 135, 143, 149, 156, 161, 163, 173, 175, 177, 180, 181, 183, 186, 193, 196, 202, 205, 206, 208, 209, 210, 224, 225, 226, 231, 237, 241, 244, 253, 262, 264, 272, 274, 276, 277, 278, 298, 305, 306, 307, 308, 310, 311, 313, 314, 315], "It": [6, 17, 19, 23, 27, 31, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 64, 68, 74, 81, 84, 85, 87, 90, 91, 94, 95, 96, 99, 100, 107, 111, 112, 114, 116, 118, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 149, 152, 153, 155, 156, 158, 159, 161, 164, 165, 167, 168, 169, 171, 173, 175, 177, 180, 181, 183, 186, 188, 191, 192, 193, 194, 196, 197, 201, 202, 203, 205, 207, 210, 211, 212, 219, 220, 223, 224, 225, 228, 229, 230, 231, 235, 236, 239, 243, 244, 245, 246, 247, 248, 250, 251, 253, 254, 260, 262, 264, 268, 271, 274, 275, 281, 282, 290, 291, 292, 302, 306, 308, 310, 311, 314], "Its": [68, 85, 111, 155, 175, 224, 225], "NEAR": [195, 202, 219], "NOT": [42, 50, 156, 202, 223], "Near": [44, 51, 202], "No": [45, 47, 50, 53, 156, 175, 231, 232, 233, 234, 235, 244, 257, 258, 259, 272, 274, 275, 302], "Not": [135, 156, 202, 251, 298], "ON": 27, "OR": [42, 43, 44, 45, 47, 49, 132, 156, 193, 196, 202, 203, 223, 243, 247, 298, 314, 315], "Of": 306, "On": [0, 31, 43, 51, 111, 156, 175, 177, 183, 196, 202, 210, 305, 310], "One": [0, 42, 56, 74, 91, 156, 163, 178, 180, 181, 205, 206, 248, 276, 310, 315], "TO": 292, "That": [44, 96, 308], "The": [0, 6, 7, 8, 17, 18, 22, 27, 31, 32, 34, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 68, 74, 81, 85, 91, 94, 95, 96, 98, 107, 110, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 149, 150, 152, 153, 155, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 171, 173, 175, 177, 180, 183, 184, 186, 188, 191, 192, 193, 195, 196, 197, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 224, 225, 228, 230, 231, 237, 239, 240, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 277, 278, 279, 280, 282, 286, 292, 295, 296, 298, 302, 305, 306, 307, 308, 310, 311, 312, 315], "Then": [0, 17, 27, 29, 30, 33, 42, 43, 44, 91, 111, 156, 177, 183, 196, 250, 276, 278, 298, 302, 303, 305, 306, 307, 310, 311, 314, 315], "There": [1, 2, 3, 8, 13, 19, 23, 24, 25, 28, 32, 41, 45, 47, 49, 52, 54, 68, 74, 90, 91, 110, 111, 115, 116, 117, 118, 121, 122, 124, 125, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 149, 150, 153, 155, 156, 157, 158, 160, 161, 163, 165, 166, 167, 168, 170, 175, 177, 180, 181, 183, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 208, 210, 211, 219, 221, 223, 224, 225, 229, 231, 232, 233, 234, 235, 237, 244, 245, 246, 247, 258, 259, 260, 261, 262, 272, 274, 275, 276, 281, 292, 296, 298, 303, 308, 310, 311, 312, 315], "These": [0, 18, 39, 41, 42, 43, 45, 111, 156, 171, 175, 205, 206, 307, 308], "To": [18, 31, 39, 42, 49, 53, 56, 94, 111, 122, 124, 133, 156, 177, 197, 198, 208, 209, 211, 212, 219, 221, 222, 223, 224, 247, 250, 251, 253, 282, 292, 303, 305, 306, 314], "WITH": [45, 231, 235], "With": [21, 22, 23, 41, 43, 45, 52, 91, 156, 243, 311], "_": [39, 44, 89, 111, 132, 134, 135, 156, 161, 248, 262, 275], "_0ba": 166, "_0bg": 166, "_0cc": 166, "_20160320": 137, "__": 275, "___": 275, "__scrt_common_main_seh": 166, "__uint32_t": 50, "_avg": [135, 156], "_c": 166, "_column": 237, "_dataset": [179, 181], "_id": [41, 42, 43, 44, 45, 49, 50, 52, 58, 89, 91, 95, 110, 111, 114, 121, 122, 134, 135, 137, 156, 159, 164, 170, 183, 186, 195, 196, 201, 224, 225, 226, 229, 244, 250, 251, 253, 260, 261, 276, 278, 301, 306, 307, 308, 310, 312, 313, 314, 315], "_id\u306e\u5024\u306f\u4e0d\u5909\u3067": 89, "_kei": [41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 58, 89, 91, 94, 95, 110, 111, 112, 114, 121, 122, 123, 125, 132, 134, 135, 141, 152, 155, 156, 159, 163, 164, 165, 170, 177, 180, 183, 184, 186, 188, 194, 195, 196, 198, 201, 208, 209, 210, 212, 219, 221, 224, 225, 229, 237, 240, 245, 250, 251, 253, 261, 278, 281, 292, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "_key\u30ab\u30e9\u30e0\u306e\u51fa\u529b\u306b\u5bfe\u5fdc": 36, "_max": [135, 156], "_min": [135, 156], "_name": [111, 161], "_nsubrec": [41, 43, 44, 49, 89, 135, 156, 306, 307, 311], "_score": [39, 41, 42, 43, 44, 45, 47, 48, 50, 53, 54, 89, 91, 96, 132, 134, 135, 156, 159, 180, 188, 202, 203, 225, 245, 246, 247, 250, 251, 253, 301, 307, 308, 310, 311, 315], "_set_valu": 40, "_socr": 41, "_sum": [52, 135, 156], "_valu": [41, 48, 49, 89, 135, 156], "_w": 262, "_work": 166, "_yyyymmdd": [132, 134, 135, 137], "a01": 166, "a1b2c3d": 224, "a9zawa": 54, "a_part_of_speech": 274, "aaa": [44, 54, 166], "aaaxxxbbbcdefghi": 44, "aardvark": [52, 53], "aa\u3042": 44, "ab": [44, 252], "aba": [306, 308, 315], "abandon": 56, "abbrev": 188, "abc": [41, 44, 50], "abc123456789def": [41, 44], "abc123456789defg": 44, "abc12345678def": [41, 44], "abc1de2def": [41, 44], "abcd": [44, 138], "abcdef": [41, 44], "abcxyzdef": [41, 44], "abebcdxyzdef": 41, "abi": 50, "abl": [41, 42, 43, 44, 45, 96, 111, 141, 156, 161, 195, 244, 245, 246, 247, 248, 276], "abort": 49, "about": [2, 7, 14, 17, 18, 19, 20, 21, 22, 23, 24, 25, 28, 31, 32, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 85, 91, 92, 95, 98, 100, 106, 107, 111, 112, 114, 115, 116, 117, 121, 122, 123, 124, 126, 127, 128, 129, 132, 134, 135, 137, 138, 139, 142, 149, 152, 153, 154, 155, 156, 158, 159, 161, 163, 165, 168, 169, 170, 173, 175, 177, 180, 182, 186, 188, 196, 202, 203, 210, 224, 225, 228, 238, 239, 243, 244, 245, 246, 247, 250, 251, 253, 262, 281, 283, 292, 303, 304, 310, 311, 312, 315], "abov": [17, 18, 21, 31, 41, 42, 43, 44, 45, 47, 50, 51, 54, 111, 124, 135, 153, 156, 161, 173, 177, 180, 183, 194, 195, 196, 202, 210, 229, 231, 232, 233, 234, 235, 237, 243, 250, 251, 253, 262, 272, 274, 275, 276, 278, 302, 306, 308, 310, 311, 314, 315], "absent": 56, "absolut": [41, 52, 111, 144, 145, 151, 161, 198], "ac": [31, 237], "acccept": 54, "acccess": 296, "accept": [0, 39, 42, 44, 45, 47, 49, 50, 51, 53, 54, 98, 99, 111, 125, 153, 156, 157, 170, 173, 175, 180, 183, 188, 224, 225, 276, 292, 298, 302, 308, 310, 311, 314, 315], "access": [0, 17, 18, 22, 39, 47, 48, 49, 50, 51, 52, 58, 60, 105, 114, 156, 164, 177, 178, 250, 251, 253, 281, 291, 296, 298, 304, 305], "accessor": [41, 50, 51, 53, 54], "accident": 48, "accord": [41, 188, 305], "accordingli": 177, "account": [2, 49], "accross": 47, "accuml": 48, "accumul": [56, 156], "accur": [0, 42, 205, 206], "accuraci": [41, 56], "achiev": 56, "acquir": [41, 42, 50, 124, 126, 128, 149, 150], "acquisit": 44, "acronym": [290, 298], "across": 188, "action": [12, 18, 43, 48, 111], "actions\u304c\u6210\u529f\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059": 12, "actions\u3067\u751f\u6210\u3055\u308c\u308b\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059": 12, "actions\u3092\u6709\u52b9\u306b\u3057\u3066\u304a\u304d\u307e\u3059": 12, "activ": [42, 53, 123], "actual": [17, 18, 44, 45, 48, 49, 51, 52, 94, 96, 132, 134, 135, 137, 156, 173, 177, 245, 305, 308], "ad": [0, 18, 28, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 74, 85, 96, 97, 98, 99, 110, 111, 112, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 146, 149, 150, 152, 153, 155, 156, 157, 158, 160, 161, 163, 166, 167, 168, 170, 171, 173, 175, 184, 186, 187, 191, 192, 193, 195, 196, 197, 198, 203, 205, 207, 208, 209, 211, 212, 219, 220, 221, 222, 224, 225, 226, 227, 229, 231, 232, 233, 234, 235, 237, 244, 246, 247, 248, 255, 257, 258, 259, 261, 277, 282, 283, 285, 286, 287, 288, 298, 306, 310, 313], "adachi": 56, "adag": 56, "add": [3, 6, 12, 21, 27, 31, 32, 34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 111, 125, 134, 155, 156, 168, 175, 177, 182, 201, 225, 243, 248, 254, 274, 277, 283, 305, 306, 307, 308, 310, 313], "addit": [0, 22, 24, 25, 27, 28, 31, 32, 41, 42, 43, 44, 57, 111, 138, 156, 168, 186, 224, 231, 252, 260, 274, 296, 304, 305, 308, 313], "addition": [50, 52, 315], "additional_configure_opt": [48, 52], "additional_last_interv": [44, 225], "address": [39, 47, 50, 53, 175, 180, 298, 312], "address_is_in_us": 298, "address_is_not_avail": 298, "adisk": 244, "adjac": [224, 264], "adject": 156, "adjust": [42, 44, 48, 49, 52, 53, 91, 111, 135], "admin": [37, 39, 47, 48, 49, 50, 51], "admin_html": [39, 175], "admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059": 175, "administr": [22, 41, 42, 47, 49, 56, 178, 304], "adopt": [56, 141], "adult": 41, "advanc": [41, 42, 45, 50, 55, 123, 137, 154, 223, 224, 254], "advantag": [0, 42, 205, 206, 296], "adventur": 111, "adverb": 156, "advis": 111, "affect": [43, 45, 47, 48, 49, 50, 51, 52, 54], "afr": [306, 308, 315], "africa": 56, "after": [17, 18, 31, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 84, 99, 111, 118, 122, 124, 132, 134, 135, 137, 140, 143, 149, 156, 157, 163, 171, 173, 175, 177, 180, 184, 191, 192, 193, 224, 225, 229, 254, 257, 258, 259, 261, 272, 281, 286, 305, 307, 308, 312], "ag": [41, 45, 58, 111, 112, 124, 149, 150, 155, 156, 161, 183, 186], "again": [41, 42, 43, 44, 45, 49, 50, 52, 156, 173, 177, 186, 226], "against": [0, 22, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 68, 91, 106, 111, 134, 136, 137, 138, 142, 149, 155, 156, 163, 170, 173, 175, 203, 224, 225, 244, 248, 250, 251, 253, 304, 307, 311, 313, 314], "againt": 45, "agaist": 47, "aggreg": [22, 41, 42, 43, 44, 156, 205, 206], "aggregate_sd": 41, "aggregator_": [41, 44], "aggregator_mean": 41, "aggregator_sd": 41, "aggregator_sum": 41, "ago": 250, "ahead": 42, "ahello": 50, "ahost1": 244, "ai": 44, "aim": 48, "aio": 48, "airport": 44, "airport_nam": 44, "aki": 49, "akihabara": 315, "akinori": 50, "akio": [39, 47, 48, 50, 51, 53, 54], "akio\u3055\u3093": 37, "akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210": 37, "akio\u3055\u3093\u304c\u5831\u544a": 37, "akio\u3055\u3093\u304c\u63d0\u6848": 37, "akira": 49, "al": [42, 45, 277], "alan": 42, "albert": 54, "alert": [49, 129, 130, 175, 177, 228], "algolithm": 223, "algorithm": [39, 53, 107, 111, 188, 247], "ali": [42, 110], "ali_scor": 42, "alia": [22, 50, 53, 57, 115, 116, 117, 129, 175], "alias": [50, 58, 115, 116, 117, 202], "aliased_column": 58, "alic": [41, 42, 44, 45, 58, 110, 111, 114, 141, 156, 164, 170, 177, 183, 186, 195, 202, 203, 224, 277, 292, 311], "align": [132, 134, 135], "alisa": [42, 44, 202, 203], "all": [0, 17, 27, 31, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 53, 54, 58, 74, 91, 94, 98, 99, 107, 110, 111, 112, 114, 115, 116, 117, 118, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 146, 149, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 170, 171, 173, 175, 177, 183, 193, 195, 197, 202, 203, 205, 208, 209, 219, 223, 224, 225, 226, 228, 230, 231, 232, 233, 234, 235, 244, 246, 247, 250, 253, 257, 258, 259, 260, 264, 268, 271, 281, 282, 292, 298, 308, 311, 314], "all_record": 47, "alloc": [22, 43, 47, 49, 50, 51, 53, 54, 68, 85, 94, 141, 156, 158, 300, 305, 308], "alloc_count": [41, 94, 97, 158, 175, 177, 241, 298, 308, 312], "alloc_info": 51, "allow": [0, 41, 42, 43, 47, 50, 53, 156, 181, 205, 206, 308, 312], "allow_column": [41, 42, 44, 156, 202, 224], "allow_leading_not": [41, 156, 202], "allow_pragma": [44, 156], "allow_upd": [156, 224], "almalinux": [18, 22, 23, 26, 27, 31, 42, 43, 44, 296], "almost": [39, 41, 54, 156, 225, 281, 290, 303], "alnum": 44, "alogolizm": 111, "alon": [43, 50], "alpha": [42, 43, 44, 231, 232, 233, 234, 235, 237], "alphabet": [45, 49, 111, 132, 134, 135, 156, 161, 168, 231, 235, 244, 251, 264, 267, 268, 270, 271], "alpin": [29, 45], "alreadi": [41, 42, 43, 44, 45, 49, 52, 85, 94, 106, 118, 123, 125, 135, 140, 156, 168, 181, 226, 281, 308, 310], "also": [0, 3, 17, 18, 22, 26, 27, 31, 41, 42, 43, 44, 45, 47, 51, 52, 53, 54, 56, 57, 91, 96, 110, 123, 124, 132, 134, 135, 137, 149, 150, 163, 173, 177, 183, 188, 196, 197, 208, 219, 224, 225, 226, 227, 228, 244, 245, 250, 252, 273, 290, 291, 292, 296, 305, 307, 308, 310, 311, 313, 315], "alter": 56, "although": 177, "alwai": [0, 41, 42, 43, 45, 49, 50, 51, 52, 53, 54, 81, 95, 133, 141, 156, 159, 167, 177, 186, 201, 224, 225, 250, 275, 281, 286, 298], "alx": 156, "am": [18, 193, 206, 311], "amazon": [22, 23, 27, 43, 44, 52, 54, 156], "america": 45, "among": [22, 47, 56, 134, 135, 304, 305, 307], "amount": [41, 45, 47, 51, 173], "amp": [43, 44], "an": [0, 18, 20, 22, 23, 27, 28, 31, 32, 33, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 68, 74, 81, 84, 85, 87, 91, 95, 96, 98, 99, 107, 110, 112, 114, 115, 116, 117, 123, 124, 125, 126, 127, 128, 132, 134, 135, 137, 138, 139, 141, 142, 143, 145, 149, 152, 153, 154, 155, 156, 158, 161, 163, 164, 165, 168, 169, 173, 175, 177, 178, 180, 183, 186, 195, 196, 197, 201, 203, 205, 206, 208, 209, 219, 223, 224, 225, 226, 227, 229, 230, 231, 232, 233, 234, 235, 236, 237, 243, 244, 245, 246, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 264, 272, 273, 274, 275, 276, 278, 281, 286, 292, 302, 304, 305, 307, 310, 311], "analysi": [0, 31, 54, 156, 225], "analyz": [0, 22, 39, 42, 47, 52, 96, 156, 177, 274, 300], "anchor": 50, "and_not": 202, "ani": [0, 31, 41, 42, 43, 44, 45, 46, 50, 51, 53, 58, 110, 111, 125, 132, 135, 138, 142, 143, 149, 154, 155, 156, 159, 163, 165, 167, 168, 175, 177, 191, 192, 193, 205, 206, 210, 224, 237, 243, 245, 264, 275, 286, 292], "anim": [44, 307], "animals_sound": 44, "ann": 12, "annot": 48, "announc": 43, "annual": 46, "anonym": [43, 44, 124, 254], "anonymous": 74, "anoth": [0, 42, 47, 50, 52, 68, 110, 126, 156, 173, 243], "anthoni": [42, 43], "anymor": 45, "anyth": [41, 44, 45, 278], "anywher": 43, "aomi": 52, "apach": [24, 25, 27, 28, 41, 42, 43, 44, 45, 52, 54, 125, 156, 158, 178], "apache_arrow": [41, 94, 156, 158, 177, 298, 308, 312], "apache_arrow_inform": 158, "apache_arrow_repositori": 12, "api": [1, 3, 15, 22, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 60, 61, 81, 84, 85, 92, 100, 223, 292], "appear": [0, 42, 43, 44, 49, 100, 111, 123, 142, 156, 168, 205, 206, 224, 225, 243, 245, 308], "append": [42, 44, 47, 68, 224, 225], "appl": [41, 42, 211, 229, 272, 276, 278], "appli": [42, 43, 45, 52, 53, 54, 55, 56, 68, 111, 132, 134, 135, 156, 167, 180, 205, 281], "applic": [0, 20, 39, 42, 44, 45, 49, 52, 54, 125, 156, 175, 177, 178, 205, 206, 225, 228, 243, 292], "approach": [56, 186, 188], "appropri": 302, "approv": 49, "approxim": [39, 47, 188], "approximate_typ": 189, "appveyor": 49, "april": 12, "apt": [12, 21, 28, 32, 41, 47, 54], "aptitud": 14, "aquariu": 41, "ar": [0, 1, 2, 3, 6, 8, 17, 18, 19, 21, 23, 24, 25, 27, 28, 31, 32, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 82, 83, 84, 85, 90, 91, 94, 95, 96, 100, 106, 107, 110, 111, 112, 114, 117, 118, 121, 122, 123, 124, 125, 126, 127, 131, 132, 133, 134, 135, 136, 137, 138, 141, 142, 144, 145, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 163, 164, 165, 166, 168, 171, 173, 175, 177, 178, 179, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 223, 224, 225, 226, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 240, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 257, 258, 259, 260, 262, 264, 266, 267, 268, 271, 272, 274, 275, 276, 281, 282, 286, 290, 292, 296, 298, 299, 301, 302, 303, 305, 306, 307, 308, 310, 311, 312, 313, 315], "arai": 50, "aramaki": 39, "aramaki\u3055\u3093": 37, "aramaki\u3055\u3093\u304c\u5831\u544a": 37, "arbitrari": 302, "arc": 168, "architectur": [0, 27, 49, 50, 158, 175], "archiv": [6, 7, 8, 12, 17, 22, 23, 27, 31, 33, 41, 44, 47, 54], "area": [0, 41, 43, 52, 54], "aren": [42, 43, 44, 47, 49, 50, 51, 52, 53, 90, 111, 124, 132, 134, 135, 137, 142, 156, 157, 158, 161, 163, 177, 180, 205, 206, 224, 239, 254, 281, 292], "arg": [41, 175], "arg1_nam": 244, "arg1_valu": 244, "arg2_nam": 244, "arg2_valu": 244, "arg3_valu": 244, "arg_list_too_long": 298, "argc": 81, "argument": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 85, 102, 122, 124, 135, 149, 150, 155, 156, 175, 184, 186, 188, 192, 193, 194, 196, 198, 201, 202, 205, 206, 208, 210, 219, 220, 221, 225, 244, 245, 248, 295, 298, 302, 308, 310, 312], "argument1": [225, 245], "argument2": [225, 245], "argv": 81, "arg\u306e\u307f\u304c\u6570\u5024\u3067\u4e0e\u3048\u3089\u308c\u305f\u5834\u5408\u306f\u30b9\u30b3\u30a2\u5024\u306e\u4fc2\u6570\u3068\u307f\u306a\u3055\u308c\u307e\u3059": 11, "ari": 41, "arithmet": [41, 44, 48], "arm64": [42, 43, 158], "armenian": [231, 232, 233, 234, 235, 258, 259], "armhf": 49, "arnaud": 39, "around": [42, 43, 44, 53, 56, 205, 206, 239, 302], "arrai": [39, 41, 42, 45, 47, 49, 51, 52, 53, 54, 91, 95, 96, 108, 112, 134, 138, 139, 141, 142, 155, 156, 161, 168, 169, 205, 206, 224, 254, 305, 307, 308, 311], "arrang": 308, "arrow": [12, 24, 25, 27, 28, 41, 42, 43, 44, 45, 52, 54, 125, 156, 158, 178], "arrowconfig": 27, "arrow\u306erake\u30bf\u30b9\u30af\u3092\u5229\u7528\u3059\u308b\u305f\u3081\u3067\u3059": 12, "arrow\u306e\u30bd\u30fc\u30b9\u3082\u53d6\u5f97\u3057\u307e\u3059": 12, "art": [52, 53, 225, 311], "articl": [42, 52, 310], "articles2": 310, "articles_cont": [42, 310], "artifactori": [24, 25, 28], "artist": 43, "arugment1": 225, "asami": 48, "ascend": [122, 134, 135, 136, 156, 198, 239, 306, 308, 315], "ascii": [44, 53, 224, 225, 264, 265, 266, 267, 268, 275, 279, 280], "askdkc": 44, "askmonti": 49, "aspect": 56, "aspx": 302, "assigend": 224, "assign": [48, 50, 153, 168, 254, 302, 315], "associ": [39, 45, 85, 121, 125, 156, 175, 197, 228, 302, 305, 307, 308], "assum": [52, 153], "ath": 44, "atsushi": [43, 44, 49, 50, 51], "attach": [17, 229, 255], "attent": [111, 156, 313], "attr_setpshar": 48, "attribut": [138, 139, 168, 169, 194], "atv": [306, 308, 315], "august": 43, "auth_bas": [177, 292], "auth_basic_user_fil": [177, 292], "authent": [291, 312], "author": 177, "auto": [31, 41, 42, 47, 49, 53, 133, 149, 156, 159, 186], "auto_release_count": 41, "autocomplet": [43, 44], "autoconf": [6, 39], "autogen": [6, 17, 47], "autom": 197, "automak": [6, 37], "automat": [12, 17, 31, 41, 42, 43, 45, 50, 52, 54, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 87, 111, 124, 132, 134, 135, 144, 145, 149, 150, 151, 156, 173, 177, 186, 197, 205, 224, 225, 254, 295, 307, 308, 313], "autoreconf": 12, "autotool": [5, 7, 31, 43, 44], "avail": [0, 17, 27, 31, 41, 43, 44, 48, 50, 51, 52, 53, 55, 64, 74, 85, 95, 96, 111, 112, 123, 124, 125, 132, 133, 134, 135, 137, 138, 156, 157, 159, 161, 168, 173, 175, 178, 180, 195, 202, 212, 219, 224, 225, 231, 257, 290, 298, 302, 305, 308], "averag": [43, 49, 94, 156], "avg": [49, 135, 156, 174], "avoid": [22, 41, 43, 48, 49, 53, 137, 149, 156, 163, 300], "awar": 85, "ax1": 45, "axaixiuxuexeoxo": [231, 232, 233, 234, 235, 257, 258, 259], "axx1": 45, "ayumu": [49, 50], "b": [18, 27, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 74, 135, 138, 156, 191, 192, 193, 210, 224, 225, 244, 262], "ba": 42, "back": [43, 52, 177, 225, 244, 310], "back_trac": [43, 44, 94, 158, 177, 298, 308, 312], "background": [56, 175, 191, 193], "backlog": 52, "backslash": [48, 68, 224], "backtrac": [41, 42, 43, 44, 51, 52, 166], "backup": [106, 122], "backward": [42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 170, 246, 247, 292], "bad": [0, 43, 44, 48, 49, 51], "bad_address": 298, "bad_file_descriptor": 298, "balanc": 44, "banana": [42, 211], "band": 56, "bar": [111, 161, 231, 232, 233, 234, 235, 258, 259], "base": [0, 17, 24, 25, 28, 31, 32, 41, 42, 43, 44, 45, 47, 48, 49, 51, 52, 53, 54, 96, 111, 134, 153, 156, 168, 175, 177, 178, 180, 181, 191, 192, 193, 205, 206, 208, 209, 224, 225, 228, 237, 240, 244, 245, 246, 247, 248, 250, 251, 253, 264, 274, 277, 291, 296, 311, 312], "base_form": [53, 274], "base_version\u306ftar": 12, "basebal": [307, 310], "basethreadinitthunk": 166, "bash": [31, 50], "basi": 308, "basic": [0, 22, 27, 42, 47, 49, 110, 156, 292, 304, 305], "batch": [47, 96, 125], "bbb": 44, "bc": 44, "bcde": 44, "beaver": [44, 53], "becam": [42, 49, 56], "becaus": [0, 6, 7, 8, 17, 21, 26, 27, 31, 34, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 58, 94, 95, 96, 110, 111, 114, 118, 122, 124, 132, 134, 135, 137, 141, 142, 143, 144, 149, 151, 156, 161, 164, 167, 173, 175, 177, 180, 183, 184, 186, 196, 197, 201, 202, 205, 210, 219, 224, 225, 226, 229, 240, 241, 243, 244, 245, 246, 247, 250, 251, 252, 253, 254, 257, 258, 259, 261, 262, 264, 265, 266, 267, 268, 272, 274, 275, 276, 278, 281, 286, 290, 291, 292, 296, 298, 302, 305, 307, 308, 310, 313, 314], "becom": [0, 43, 44, 45, 50, 53, 54, 55, 111, 188, 282, 305], "been": [41, 42, 43, 45, 50, 53, 54, 106, 114, 123, 164, 177, 296], "befor": [31, 34, 40, 41, 42, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 84, 91, 94, 107, 111, 132, 133, 134, 135, 138, 140, 143, 144, 149, 151, 153, 156, 163, 167, 177, 186, 191, 192, 193, 219, 224, 225, 243, 244, 250, 251, 252, 257, 258, 259, 272, 305, 308], "before_instal": 21, "beforehand": [31, 42], "beg": [244, 277], "began": 56, "begin": [18, 43, 174, 244, 272, 277], "beginn": 42, "behav": [156, 188], "behavior": [41, 42, 43, 45, 47, 49, 50, 52, 53, 54, 56, 74, 94, 137, 156, 171, 183, 202, 205, 231, 232, 233, 234, 235, 244, 264, 275], "behaviour": [31, 48, 122], "behind": 42, "beijin": 188, "being": [54, 56, 111, 156], "believ": 56, "bellefleur": 52, "belong": [52, 87, 282, 306], "below": [13, 18, 41, 42, 43, 44, 45, 52, 53, 54, 111, 114, 122, 123, 125, 132, 134, 135, 153, 156, 164, 166, 177, 224, 231, 232, 233, 234, 235, 257, 258, 259, 260, 261, 264, 272, 274, 275, 279, 280], "benchmark": [22, 27, 43, 44, 47, 48, 49, 57, 172], "benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059": 176, "benchmark\u304c\u5229\u7528\u3059\u308bgroonga": 176, "benchmark\u304c\u52d5\u4f5c\u3057": 176, "benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059": 176, "benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408": 176, "benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070": 176, "benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068": 176, "benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916": 176, "benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5": 176, "benchmark\u306f": 176, "benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp": 176, "benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059": 176, "benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093": 176, "benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059": 176, "benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057": 176, "benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059": 176, "benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408": 176, "benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059": 176, "benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059": 176, "benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093": 176, "benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059": 176, "benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 176, "benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c": 176, "benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c": 176, "benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059": 176, "benchmark\u7528\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u5206\u3067\u4f5c\u6210\u3059\u308b\u3053\u3068\u3082\u65e2\u5b58\u306e\u3082\u306e\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 176, "benchmark\u7d42\u4e86\u5f8c\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u529b\u5148\u306f\u306f\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u3059": 176, "benefit": 296, "bernard": 50, "best": 0, "beta": 55, "better": [0, 43, 49, 111, 124, 156, 225, 310], "between": [22, 39, 41, 42, 43, 44, 45, 47, 48, 49, 51, 52, 53, 54, 57, 111, 114, 123, 124, 137, 149, 156, 161, 164, 173, 181, 182, 188, 202, 224, 225, 239, 244, 251, 254, 262, 264, 265, 266, 267, 268, 269, 270, 271, 273, 279, 280, 292, 310, 313, 315], "bfloat16": [44, 90, 94, 142, 155, 158, 177, 298, 308, 312], "bfloat16_valu": 44, "bi": [275, 299, 301], "big": [49, 54, 122, 177], "bigger": [54, 111], "bigram": [44, 53, 176, 179, 180, 262, 264, 266, 267, 268, 269, 270, 271, 275, 277, 301], "bigramlexicon": 152, "bigram\u306e\u5834\u5408\u306f\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059": 299, "bill": [50, 299, 301], "billiard": [299, 301], "billion": 111, "bin": [18, 31, 33, 166], "binari": [0, 1, 22, 47, 48, 49, 50, 51, 54, 95, 177, 225, 241, 282, 289, 292, 312], "bind": [20, 21, 39, 42, 47, 50, 55, 175, 191, 192, 193, 223], "bionic": [44, 53], "birth": 22, "bison": 12, "biswapriyo": 45, "bit": [21, 23, 24, 28, 32, 33, 41, 43, 44, 45, 54, 111, 156, 175, 176, 177, 224, 225, 282, 305], "bitwis": [45, 50, 298], "black": [229, 239], "blank": [43, 44, 50, 53, 265, 266, 267, 268, 275], "block": [48, 52, 106, 158, 161, 163, 177, 225, 305], "blog": [22, 41, 54, 132, 134, 135, 156, 210, 224, 225, 226, 301, 304, 310], "blog1": 310, "blog2": 310, "blog_bodi": 301, "blog_body\u7d22\u5f15": 301, "blog_comment_index": 210, "blog_cont": 210, "blog_titl": 308, "blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f": 12, "blogs\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u3092tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u3066\u304b\u3089\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059": 301, "blosc": [44, 94, 111, 158, 177, 298, 308, 312], "blosclz": 111, "blue": 56, "bm25": [41, 245, 247], "bo": 45, "board": 56, "bob": [41, 42, 44, 45, 58, 114, 156, 164, 170, 177, 183, 186, 202, 203, 292, 311], "bodi": [41, 42, 43, 44, 45, 48, 51, 54, 96, 109, 110, 111, 113, 118, 120, 124, 125, 127, 131, 137, 140, 141, 143, 144, 145, 149, 150, 151, 152, 157, 160, 161, 163, 164, 166, 167, 178, 180, 191, 192, 193, 275, 292, 298, 301, 310, 314], "body_bytes_s": 177, "body_index_column": 52, "bom\u4ed8\u304dutf": 37, "book": [41, 111, 225], "bookmark": [91, 122, 125, 137], "bookmark_index": 91, "bookmark_titl": 122, "bookworm": [22, 23, 44], "bool": [41, 42, 43, 45, 48, 50, 51, 53, 54, 90, 110, 132, 134, 135, 141, 142, 155, 156, 165, 224, 261, 305, 313], "boolean": [22, 43, 48, 51, 55, 155, 186, 202, 203, 224, 282, 304], "boost": [180, 250], "border": [47, 53, 168, 183], "borderlin": 134, "boston": 311, "both": [0, 17, 23, 28, 32, 33, 41, 42, 43, 44, 50, 51, 52, 53, 87, 91, 95, 111, 132, 134, 135, 141, 156, 163, 171, 180, 202, 203, 206, 224, 225, 226, 244, 247, 250, 254, 275, 276, 292, 298, 311, 315], "bottom_right": [39, 190], "bound": 49, "box": [41, 156, 231, 232, 233, 234, 235, 258, 259], "brace": 125, "bracket": 125, "brad": 51, "branch": [18, 44], "branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059": 14, "brand": 50, "brasil": 188, "brasillia": 188, "brazil": [22, 306], "break": [39, 45, 47, 49, 50, 51, 123, 125, 173], "brew": [18, 30], "bring": 308, "british": 314, "broadcast": 311, "broke": 45, "broken": [39, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 123, 126, 127, 128, 142, 143, 152, 163, 173], "broken_pip": 298, "brooklyn": 311, "browser": [17, 31, 41, 42, 178, 312], "bsd": [7, 8, 31, 39, 49, 50], "bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": 37, "buffer": [48, 50, 51, 53, 54, 68, 71, 74, 108, 141, 302, 310], "bug": [3, 22, 31, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55], "buggi": 53, "bugs_tags_index": 45, "build": [0, 3, 4, 12, 14, 18, 21, 22, 23, 40, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 64, 111, 156, 171, 243, 248], "buildabl": 39, "builder": 71, "build\u3092\u7528\u3044\u3066": 14, "built": [0, 22, 31, 41, 43, 44, 48, 50, 53, 54, 56, 57, 92, 122, 138, 168, 177, 182, 188, 283], "builtin": [22, 57, 74, 111, 124, 141, 142, 188], "bulk": [41, 50, 51, 52, 68], "bullet": [231, 232, 233, 234, 235, 258, 259], "bullsey": [42, 43, 45], "bump": [48, 49, 50], "bundl": [17, 18, 27, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56], "busi": 56, "buster": [43, 44, 54], "button": [17, 18, 47, 48], "buzz": 180, "bye": [41, 42, 43, 44, 45, 132, 134, 135, 156, 165, 224, 225, 261, 310], "byte": [39, 42, 43, 44, 47, 48, 49, 50, 51, 52, 68, 85, 98, 111, 141, 142, 155, 156, 158, 205, 206, 282, 298], "byte1": 111, "byte_delta": 141, "c": [0, 3, 6, 15, 18, 22, 27, 31, 33, 39, 40, 41, 42, 43, 44, 45, 49, 50, 51, 52, 54, 55, 74, 100, 111, 115, 118, 129, 135, 138, 143, 156, 163, 166, 175, 210, 224, 225, 228, 241, 290, 298, 302, 308], "c1": 203, "c2": 203, "c3": 203, "ca": [28, 298], "cab": 42, "cabrera": 44, "cacao": 42, "cach": [0, 36, 41, 42, 43, 44, 47, 48, 50, 51, 52, 53, 61, 74, 107, 158, 175], "cache_hit_r": [41, 94, 97, 158, 177, 241, 298, 308, 312], "cache_limit": [22, 42, 43, 50, 57, 92, 177], "cache_previ": 61, "cafedomanc": 51, "cake": 198, "calc": 52, "calc_target": [50, 156], "calc_typ": [50, 52, 156], "calcul": [41, 42, 44, 45, 47, 48, 49, 52, 53, 111, 154, 156, 188, 198, 239, 311, 315], "calicul": 43, "call": [41, 42, 43, 47, 48, 49, 50, 52, 53, 81, 84, 85, 87, 91, 111, 114, 133, 134, 141, 149, 150, 154, 156, 164, 167, 188, 223, 231, 236, 306, 308], "callback": 180, "callback\u304c\u4e0e\u3048\u3089\u308c\u305a": 11, "caller": 54, "calloc": 51, "callum": 45, "calro": [183, 186], "came": 41, "camp": 311, "can": [0, 1, 6, 7, 17, 18, 19, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 64, 68, 84, 85, 87, 90, 91, 94, 95, 96, 98, 99, 100, 101, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 161, 163, 164, 165, 166, 167, 168, 170, 171, 173, 175, 177, 178, 180, 182, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 219, 223, 224, 225, 226, 227, 228, 229, 231, 232, 233, 234, 235, 236, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 272, 274, 275, 276, 277, 278, 281, 283, 290, 292, 296, 298, 302, 303, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315], "can_be_key_typ": 155, "can_be_value_typ": 155, "canadian": [231, 232, 233, 234, 235, 258, 259], "cancel": [45, 49, 51, 52, 98, 99, 153], "cancel_request_is_accepted_or_not": 153, "cancer": 41, "candid": [43, 44, 156, 159, 180, 201, 250], "candidate1": 159, "candidate2": 159, "candidate_1": 180, "candidate_2": 180, "cannot": [22, 53, 111, 156, 161, 224, 225, 226, 229, 254, 292, 300], "capabl": 56, "capac": [41, 101], "capit": [45, 53, 56, 231, 235, 308], "caplit": [48, 49], "capricorn": 41, "captur": 208, "care": [17, 52, 112, 149, 156, 224, 247, 250], "carefulli": [91, 137, 143, 163], "carlier": [43, 44], "carlo": [44, 114, 164, 170], "cas_error": 298, "cascad": [48, 49], "case": [18, 27, 31, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 58, 61, 81, 85, 91, 96, 110, 111, 114, 121, 123, 124, 132, 133, 134, 135, 143, 149, 151, 156, 161, 164, 168, 177, 180, 181, 183, 193, 196, 201, 202, 205, 206, 224, 225, 237, 239, 244, 245, 246, 247, 250, 262, 264, 277, 281, 290, 303, 305, 306, 308, 310, 311, 314, 315], "cast": [22, 39, 40, 41, 42, 43, 44, 47, 48, 51, 52, 53, 54, 57, 111, 132, 134, 135, 156, 184, 224, 246, 247, 311], "cast_loos": [22, 53, 57, 182], "casual": 56, "cat": 42, "categor": [125, 156, 165, 168], "categori": [41, 53, 156], "caus": [39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 156, 161, 224, 225, 302, 305], "cd": [12, 17, 18, 31, 44], "cdt": 27, "cdt4": 27, "ce": [270, 271, 277], "ceekz": 48, "cent": [264, 269], "center": [0, 189], "center\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u3092\u4e2d\u5fc3\u3068\u3059\u308b\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059": 189, "cento": [37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54], "centos6": 47, "central": [41, 311], "ceo": 56, "certain": 315, "certif": 28, "ch": 168, "chain": 210, "challeng": 56, "chang": [0, 3, 12, 31, 39, 40, 41, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 91, 107, 111, 114, 118, 124, 132, 138, 153, 154, 156, 159, 163, 164, 171, 177, 183, 191, 192, 196, 202, 205, 225, 231, 232, 233, 234, 235, 237, 241, 243, 260, 262, 264, 275, 277, 292], "channel": 53, "chapter": 308, "char": [41, 49, 68, 74, 81, 85], "charact": [0, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 56, 68, 74, 85, 111, 129, 132, 134, 135, 138, 156, 161, 168, 175, 191, 192, 193, 195, 205, 206, 207, 208, 209, 224, 225, 228, 229, 230, 231, 232, 233, 234, 235, 237, 243, 251, 257, 258, 259, 264, 265, 266, 267, 268, 271, 272, 273, 275, 279, 280, 308], "characterist": [22, 42, 57, 205, 206, 244, 247, 278], "charactor": [208, 209, 279, 280], "charli": 311, "chart": [39, 41], "chat": [22, 50], "check": [13, 14, 22, 27, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 92, 95, 96, 100, 106, 122, 123, 124, 137, 138, 140, 156, 163, 165, 177, 180, 183, 224, 225, 231, 232, 233, 234, 235, 237, 303], "check_result": 123, "checkbox": 42, "check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059": 14, "check\u30b3\u30de\u30f3\u30c9\u306f": 108, "child": [42, 54, 124, 149, 150], "china": [188, 306], "choic": 0, "choos": [6, 7, 34, 44, 49, 51, 97, 125, 156, 157, 161, 175, 177, 180, 244, 262, 305], "chracterist": 254, "chri": [42, 45], "christian": 50, "chunk": [41, 50, 51, 53, 108, 141, 281, 303], "chunk_size_threshold": 53, "chunked_token": 53, "ci": [20, 22, 47, 48, 49], "cimbin": [257, 258, 259], "circl": [0, 239], "cirit": 177, "citi": [44, 74, 188, 239, 311], "city_nam": 44, "cjk": 53, "clang": [14, 45, 47, 48, 49, 50], "clarifi": [49, 54], "class": [41, 43, 44, 45, 53, 156, 191, 192, 193, 194, 206, 274, 275], "classif": [156, 306], "classifi": [51, 156], "clean": [6, 12, 14, 50, 52], "cleanup": 52, "clear": [39, 41, 42, 43, 47, 49, 51, 52, 53, 54, 56, 127, 177, 302], "clearcod": 56, "clearli": 50, "clearlock": [22, 47, 49, 57, 92, 175], "clearlock\u306f": 109, "cleverli": 118, "click": [18, 156], "client": [8, 22, 41, 45, 47, 49, 52, 53, 58, 99, 177, 180, 245, 290, 296], "clone": [3, 6, 7, 8, 12, 13, 31], "close": [41, 42, 44, 50, 51, 53, 54, 149, 150, 163, 186, 191, 192, 205, 206, 254], "close_tag1": [191, 192], "clumn": 281, "cmake": [3, 5, 6, 22, 23, 24, 25, 28, 30, 31, 32, 33, 43, 44, 47, 48, 50, 51, 52], "cmp0014": 49, "co": [55, 180, 252], "code": [3, 6, 7, 8, 17, 22, 27, 41, 42, 47, 48, 49, 50, 51, 52, 54, 57, 68, 84, 92, 95, 111, 153, 156, 170, 228, 241, 298, 302, 308], "codeblock": 27, "codelit": 27, "codenam": 28, "coffe": 198, "collaps": 47, "colleagu": 3, "collect": [0, 31, 42, 54, 95, 311], "color": [191, 193, 229], "colum": 310, "column": [11, 22, 31, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 74, 96, 105, 112, 114, 115, 116, 117, 118, 121, 123, 124, 126, 127, 128, 137, 140, 143, 149, 150, 152, 159, 161, 164, 165, 170, 173, 179, 180, 183, 193, 194, 195, 196, 197, 198, 202, 203, 205, 206, 208, 209, 210, 219, 221, 225, 226, 237, 239, 243, 244, 245, 248, 250, 251, 252, 253, 254, 281, 282, 286, 304, 305, 307, 311, 313, 314, 315], "column1": [11, 41, 47, 48, 49, 132, 134, 135, 156, 225, 245], "column2": [11, 41, 47, 48, 49, 135, 156, 225, 245], "column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f": 11, "column3": 245, "column_": 111, "column_1": [155, 210], "column_2": [155, 210], "column_3": [155, 210], "column_copi": [22, 43, 44, 50, 51, 57, 58, 92], "column_cr": [22, 39, 41, 42, 43, 44, 49, 50, 51, 53, 54, 57, 58, 90, 91, 92, 110, 112, 114, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 142, 143, 149, 150, 152, 155, 156, 161, 163, 164, 165, 170, 175, 176, 180, 183, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 210, 211, 212, 219, 221, 224, 225, 226, 237, 244, 245, 246, 247, 248, 260, 261, 275, 276, 278, 281, 286, 301, 305, 306, 307, 308, 310, 311, 313, 314, 315], "column_filter_byte_delta": 44, "column_filter_shuffl": [44, 111], "column_index": [41, 42, 43, 44, 45, 49, 50, 91, 111, 112, 122, 123, 132, 134, 135, 137, 142, 149, 150, 152, 155, 156, 163, 180, 183, 186, 191, 192, 193, 196, 201, 202, 203, 205, 206, 210, 224, 225, 226, 237, 244, 245, 246, 247, 260, 261, 275, 276, 278, 281, 301, 307, 308, 310, 311, 314], "column_information1": 112, "column_information2": 112, "column_list": [22, 37, 39, 43, 44, 47, 49, 57, 92, 114, 175, 308], "column_list\u30b3\u30de\u30f3\u30c9": 36, "column_n": 210, "column_nam": [42, 124, 125, 140, 143, 155], "column_name1": 125, "column_name2": 125, "column_name_1": [134, 155, 156], "column_name_2": [134, 155, 156], "column_name_3": 155, "column_name_n": [134, 156], "column_name_with_t": 155, "column_name_with_table_nam": 155, "column_normalizations_target_column": [43, 237], "column_remov": [22, 49, 57, 92, 110, 124, 143, 149, 163, 175], "column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059": 113, "column_renam": [22, 40, 48, 49, 51, 57, 58, 92, 110, 124], "column_scalar": [41, 42, 43, 44, 45, 51, 58, 110, 111, 112, 114, 121, 122, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 142, 143, 149, 150, 152, 155, 156, 163, 164, 165, 170, 180, 183, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 210, 211, 212, 224, 225, 226, 237, 244, 245, 246, 247, 260, 261, 275, 276, 278, 281, 286, 301, 306, 307, 310, 311, 314], "column_type_1": [134, 156], "column_type_2": [134, 156], "column_type_n": [134, 156], "column_vector": [41, 42, 43, 44, 45, 48, 49, 50, 54, 91, 110, 111, 112, 121, 132, 134, 135, 156, 180, 197, 201, 210, 219, 221, 305, 307, 311, 314], "column_with_index": 51, "columnn": 47, "columnnorm": [43, 237], "columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "column\u306e\u5024\u304c": 11, "com": [6, 7, 8, 12, 13, 17, 18, 21, 41, 44, 156, 302, 305, 306, 308, 310, 312, 315], "comamnd": 292, "combin": [0, 27, 42, 43, 44, 45, 47, 49, 51, 56, 111, 156, 161, 177, 180, 183, 191, 201, 202, 203, 231, 232, 233, 234, 235, 243, 264, 272, 305, 308], "come": [41, 54, 239, 311], "comma": [50, 111, 125, 225, 305, 306, 308], "command": [0, 6, 13, 14, 17, 18, 21, 22, 27, 29, 31, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 61, 74, 85, 91, 95, 96, 98, 99, 102, 107, 110, 111, 112, 114, 115, 116, 117, 118, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 176, 177, 178, 179, 182, 191, 192, 193, 194, 197, 198, 203, 208, 209, 211, 212, 219, 221, 222, 224, 243, 244, 245, 250, 251, 252, 253, 254, 281, 282, 290, 291, 298, 303, 304, 305, 310, 313, 314, 315], "command_lin": 155, "command_nam": [155, 178, 312], "command_object_remov": 143, "command_thread_dump": 166, "command_vers": [41, 42, 43, 44, 45, 50, 51, 54, 93, 94, 96, 97, 158, 177, 178, 191, 192, 193, 194, 206, 241, 298, 308, 312], "command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 93, "commandinput": 50, "comment": [42, 44, 48, 50, 210, 243, 310], "comment_cont": 210, "comment_index": 311, "comment_nam": 210, "comments2": 310, "comments_cont": [42, 310], "comments_loc": 311, "commentt": 42, "commit": [6, 12, 17, 18, 49, 56], "commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089": 12, "commnad": [42, 93], "commod": 56, "common": [32, 39, 41, 43, 47, 156, 161, 175, 186, 223, 224, 225, 254, 282, 310], "commonli": [0, 42, 244], "commun": [8, 17, 18, 19, 21, 22, 27, 56, 177, 178, 180], "compani": 56, "compar": [0, 18, 41, 42, 47, 49, 50, 51, 53, 156, 195, 205, 206, 219, 224, 276], "comparison": [22, 44, 47, 51, 53, 111, 219, 289, 291], "compat": [24, 25, 28, 32, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 132, 134, 135, 138, 170, 177, 230, 231, 232, 233, 234, 235, 236, 246, 247, 257, 258, 259, 292], "compet": 56, "compil": [6, 27, 31, 39, 42, 43, 48, 49, 50, 54], "complementari": 53, "complet": [22, 39, 40, 41, 45, 48, 51, 53, 56, 57, 99, 144, 145, 151, 159, 180, 201, 240, 249, 253, 314], "complex": [42, 43, 47, 48, 50, 56, 156, 225, 244, 272], "complianc": 177, "compon": 56, "compos": [22, 23, 42, 43], "composit": [41, 44, 53, 54, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259], "comprehens": 56, "compress": [31, 39, 41, 47, 48, 49, 51, 53, 111, 123, 141, 155, 291], "compress_filt": 141, "compress_filter_byte_delta": [111, 141], "compress_filter_shuffl": [111, 141], "compress_filter_truncate_precision_1byt": [44, 111, 141], "compress_filter_truncate_precision_2byt": [44, 111, 141], "compress_lz4": [51, 111], "compress_zlib": [51, 111], "compress_zstd": [51, 111], "comput": [47, 56, 85, 111, 132, 134, 135, 156, 158, 180, 197, 224, 225, 240, 245, 246, 247, 250, 251, 253, 281, 286], "com\u304cedge\u3092\u4f5c\u308b": 9, "com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b": 9, "com\u306f1\u30b9\u30ec\u30c3\u30c9": 9, "con": 45, "conbin": 223, "conbind": 224, "concaten": [43, 310], "concatin": [47, 48], "concept": 49, "conceptu": 56, "conclus": 272, "concret": [110, 156, 306, 307, 310], "concurr": [94, 125, 156, 228], "cond": 48, "cond_sign": 81, "condit": [22, 34, 41, 42, 43, 44, 45, 47, 48, 50, 52, 53, 54, 68, 137, 149, 159, 186, 195, 202, 203, 205, 208, 209, 210, 219, 223, 225, 237, 272, 304, 308, 311, 313], "condition1": [43, 225], "condition2": 225, "condition_1": 43, "condition_2": [43, 186], "condition_column_name1": 195, "condition_column_namen": 195, "condition_n": 43, "conditional_probability_threshold": [39, 159], "conditionin": 41, "conditon": [42, 43], "condtion": 224, "conf": [50, 51, 177, 281, 296, 303], "config": [8, 27, 31, 36, 39, 47, 50, 115, 175], "config_delet": [22, 50, 57, 92, 116, 117, 171], "config_get": [22, 50, 57, 92, 115, 117, 171], "config_set": [22, 50, 57, 58, 92, 115, 116, 124, 171], "configur": [14, 17, 20, 22, 27, 30, 40, 41, 44, 47, 48, 49, 50, 51, 52, 54, 57, 58, 59, 115, 116, 117, 124, 129, 156, 179, 180, 225, 243, 244, 248, 281, 291, 296, 303], "configure\u306e": 39, "configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 37, "configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 14, "config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f": 37, "config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059": 93, "confirm": [3, 42, 43, 44, 45, 54, 101, 102, 105, 106, 111, 117, 124, 137, 141, 163, 171, 180, 224, 244, 248, 264, 302, 303, 305], "conflict": [51, 52, 53, 125], "confus": [51, 54, 244, 264], "conifugr": 21, "conjug": 56, "conjunct": 156, "connect": [1, 41, 47, 50, 53, 56, 94, 156, 175, 298, 302, 308], "connection_refus": 298, "consciou": 54, "consid": [43, 44, 49, 94, 132, 141, 156, 161, 292, 296, 307, 310, 314], "consist": [42, 49, 50, 51, 142, 155, 156, 171, 180, 224, 248, 253, 264, 298, 308], "consol": [74, 177], "const": [40, 41, 68, 74, 85], "constant": [50, 52, 53, 111], "constant_pattern": 50, "construct": [22, 41, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 94, 225], "construnct": 50, "consum": [45, 49, 52], "consumpt": 44, "contact": 17, "contain": [0, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 68, 74, 122, 125, 139, 142, 156, 169, 183, 191, 192, 193, 224, 225, 245, 246, 247, 262, 276, 278, 302, 307, 308, 310, 311], "container_nam": 42, "content": [39, 41, 42, 43, 44, 45, 48, 49, 50, 53, 54, 56, 85, 87, 95, 96, 112, 125, 131, 132, 134, 135, 142, 155, 156, 163, 173, 177, 178, 194, 197, 202, 203, 205, 206, 210, 224, 225, 226, 237, 245, 260, 261, 278, 281, 292, 298, 307, 310, 311], "content_embed": 197, "content_featur": 41, "content_index": [163, 245], "content_length": [132, 134, 135, 156], "content_token": 41, "content_type_len": 47, "context": [39, 41, 45, 50, 53, 61, 68, 74, 158, 163, 175, 177, 205, 206, 210, 228], "context_id": 175, "continu": [21, 26, 41, 47, 48, 49, 50, 56, 111, 158, 168, 175, 251, 265, 266, 267, 268, 275, 278], "contrast": [0, 42, 49, 51, 84, 175, 183, 196, 202, 308, 310], "contribut": [18, 22, 48, 51, 111], "contributor": 56, "control": [41, 43, 47, 49, 52, 56, 111, 132, 133, 134, 135, 156, 177, 183, 202, 223, 237], "contry_nam": 44, "conveni": [0, 1, 31, 39, 52, 250, 291], "convens": 47, "convent": 47, "convers": [39, 177], "convert": [41, 43, 45, 49, 50, 51, 52, 53, 100, 225, 227, 229, 254, 305, 311], "cook": [42, 43], "coordin": [41, 188, 305], "copa": 50, "copi": [18, 41, 42, 43, 47, 50, 51, 54, 58, 85, 110, 114, 122, 164], "copyfloat32valu": 43, "copyright": 49, "core": [0, 6, 12, 31, 45, 94, 156, 176, 177, 180, 291], "coremodul": 177, "corpor": 54, "correct": [18, 22, 42, 43, 47, 49, 50, 51, 52, 54, 56, 57, 102, 156, 159, 180, 243, 249, 250], "correctli": [41, 42, 44, 47, 50, 51, 52, 54, 101, 124, 224, 308], "correl": [134, 135, 156], "correspond": [18, 43, 54, 111, 124, 132, 134, 135, 149, 150, 156, 159, 178, 237, 250, 251, 252, 253], "corrupt": [42, 43, 45, 51, 52, 53, 106, 137, 173], "cosin": 45, "cosmic": 53, "cosmo0920": [48, 49], "cost": [54, 226, 274], "costli": 45, "could": [42, 43, 44, 45, 47, 56, 111, 302, 305], "couldn": [41, 45, 47, 50], "count": [0, 41, 43, 44, 50, 52, 54, 132, 134, 135, 149, 150, 156, 158, 208, 209, 224, 307, 311], "counter": [51, 56], "countermeasur": [53, 274], "countri": [44, 121, 306, 312], "cours": [56, 306], "cover": [0, 42, 137, 205, 206], "coverag": 14, "coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b": 14, "cp932": 53, "cpe": 25, "cpp": [94, 156, 158, 177, 197, 227, 298, 308, 312], "cpu": [6, 31, 43, 45, 94, 156, 158, 176, 177, 180, 197, 291, 298, 308, 312], "cpu_n_work": 158, "crach": 52, "crash": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 114, 123, 124, 127, 164, 173], "crawler": 56, "crb": 24, "crch": 168, "creat": [12, 17, 18, 22, 29, 38, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 61, 68, 85, 87, 110, 122, 126, 131, 132, 134, 135, 137, 138, 140, 141, 143, 155, 156, 158, 159, 163, 172, 173, 175, 177, 180, 188, 197, 201, 220, 223, 225, 226, 228, 229, 237, 244, 250, 251, 253, 254, 274, 278, 281, 295, 304, 305, 306, 307, 313, 314], "created_at": [42, 43, 132, 134, 135, 212], "created_at_text": [42, 43], "createfilemap": 50, "createrepo": 12, "creation": [39, 44, 45, 48, 50, 156, 308], "creteria": 308, "crisi": 56, "crit": [129, 130, 175], "criteria": [54, 308], "critic": [31, 45, 47, 51, 52, 54, 56, 85, 129, 175, 228], "cross": [42, 43, 56], "crt": 166, "crush": [43, 44], "ctor": 43, "ctrl": [175, 298, 308], "ctx": [11, 41, 45, 52, 61, 68, 71, 74, 85, 166, 302], "ctx_new\u3068\u3044\u3046queue\u306b": 9, "culcul": 44, "cullent": 53, "cultur": 56, "cumul": [132, 134, 135, 156], "curl": [21, 31, 47, 125, 153, 175, 177, 180, 241, 292], "current": [17, 39, 41, 42, 43, 44, 45, 50, 52, 53, 54, 56, 58, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 96, 107, 110, 111, 114, 123, 125, 133, 156, 158, 161, 163, 164, 166, 175, 177, 183, 196, 197, 205, 227, 239, 308, 311], "current_column": 58, "current_flag": 74, "current_nfthread": 81, "cursor": [39, 41, 50], "custom": [6, 21, 27, 31, 39, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 81, 111, 122, 138, 156, 161, 165, 167, 168, 177, 202, 206, 219, 223, 224, 225, 228, 229, 245, 250, 255, 291, 306], "custom_nam": 142, "customers_a": 41, "customers_b": 41, "customiz": 206, "cut": 25, "cutter": [6, 14], "cutter_check_leak": 14, "cutter_debug": 14, "cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076": 14, "cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076": 14, "cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f": 14, "cuttlefish": 53, "cve": [42, 43, 49, 52, 53, 54], "cxx": 44, "cycl": 51, "d": [12, 25, 41, 42, 44, 48, 49, 51, 53, 54, 74, 96, 125, 129, 153, 156, 166, 173, 174, 175, 177, 178, 180, 181, 191, 193, 224, 225, 228, 241, 244, 262, 264, 275, 281, 290, 292, 295, 298, 299, 301, 303, 308, 312], "daemoinz": 47, "daemon": [47, 48, 49, 50, 177, 180, 181, 290, 295, 312], "dai": [50, 52, 56, 158, 173, 211, 212, 225, 226, 228, 248, 311], "daijiro": 56, "daiki": [37, 38, 39, 47], "danger": [114, 126, 127, 128, 137, 143, 163, 164, 292], "dangl": [137, 163], "danish": [53, 260], "darwin": 158, "dash": [31, 231, 232, 233, 234, 235, 258, 259], "dat": [40, 41, 47, 48, 51, 52], "dat_kei": [124, 141, 254], "data": [0, 21, 22, 23, 28, 29, 32, 33, 34, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 61, 81, 90, 91, 94, 106, 110, 112, 121, 122, 123, 124, 125, 132, 134, 135, 141, 142, 149, 152, 156, 159, 173, 178, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 226, 237, 239, 241, 244, 245, 246, 247, 248, 249, 251, 252, 254, 276, 278, 281, 286, 292, 298, 304, 307, 308, 310, 313], "data_column": 156, "data_index": 123, "data_numb": 42, "data_set_nam": 159, "data_str": 42, "data_tag": 41, "data_typ": [42, 44, 96], "databas": [0, 20, 22, 31, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 61, 106, 112, 118, 122, 123, 124, 125, 126, 127, 128, 139, 140, 142, 143, 144, 149, 150, 151, 152, 155, 156, 161, 163, 169, 171, 173, 175, 177, 179, 180, 181, 205, 206, 223, 224, 225, 229, 248, 254, 281, 282, 291, 296, 298, 303, 304, 312], "database_path": [106, 173], "database_unmap": [22, 50, 52, 57, 92, 105, 143, 149, 152], "dataset": [22, 48, 50, 51, 57, 159, 172, 180, 181, 250, 251], "dataset1": 180, "dataset2": 180, "dataset3": 180, "dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b": 38, "date": [0, 12, 22, 42, 43, 111, 176, 188, 282, 304, 311], "dav": 195, "dave": [183, 186], "david": [43, 44, 195], "daylight": 49, "db": [29, 39, 40, 42, 44, 48, 50, 51, 52, 53, 122, 124, 141, 159, 163, 173, 175, 176, 177, 181, 244, 281, 296, 298, 308, 312], "db1": 292, "db2": 292, "db_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u8907\u96d1\u306a\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "db_api\u306f": 11, "db_api\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u90e8\u5206\u306b\u5bfe\u3059\u308b\u5358\u7d14\u306a\u64cd\u4f5c\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059": 11, "db_path": [50, 94, 112, 114, 142, 143, 164, 175, 177, 178, 180, 241, 290, 295, 298, 308, 312], "dbm": [0, 42, 205, 206], "dbmss": [0, 42], "db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059": 175, "db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059": [162, 175], "db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a": 162, "db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059": 175, "dcb314": 49, "dcmake_install_prefix": 23, "dcmake_prefix_path": 23, "dd": [43, 44, 225, 228, 244], "ddl": [45, 49, 176], "ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059": 301, "ddthh": 42, "de": [17, 44, 74], "deadlock": 52, "deafult": 39, "deal": 275, "deb": [28, 32, 39, 47, 48, 49, 50, 51, 54], "debian": [12, 18, 22, 23, 27, 31, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 296], "debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059": 14, "debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c": 39, "debootstrap": 12, "debug": [6, 8, 27, 41, 43, 45, 49, 50, 51, 52, 54, 56, 123, 129, 130, 168, 175, 177, 228], "debugg": 6, "debug\u3092\u8ffd\u52a0": 37, "debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c": 37, "decemb": 56, "decid": [43, 44, 56, 183, 196, 243], "decim": [42, 43, 99, 175, 225, 282, 305], "decis": [41, 56], "decod": 46, "decreas": [6, 34, 41, 42, 44, 50, 52, 54, 81, 111, 262], "decrement": [42, 52], "dededed": 44, "def": [41, 44], "defalt": 37, "defaul_valu": 184, "default": [0, 6, 18, 27, 34, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 91, 96, 110, 111, 122, 123, 125, 126, 127, 128, 132, 133, 134, 135, 137, 141, 143, 152, 156, 157, 158, 159, 161, 163, 165, 168, 173, 175, 177, 180, 183, 184, 186, 188, 191, 193, 196, 202, 203, 205, 208, 209, 219, 224, 225, 226, 228, 231, 237, 241, 245, 247, 251, 275, 281, 282, 292, 296, 298, 301, 305, 306, 308, 310, 312], "default_close_tag": [42, 205], "default_command_vers": [41, 45, 94, 97, 158, 177, 241, 298, 308, 312], "default_mod": [195, 219], "default_n_work": [94, 158, 177, 298, 308, 312], "default_open_tag": [42, 205], "default_oper": [41, 42, 54], "default_token": [41, 42, 43, 44, 45, 51, 74, 111, 123, 132, 134, 135, 142, 152, 155, 156, 162, 163, 164, 165, 175, 176, 180, 191, 192, 193, 202, 203, 205, 206, 210, 224, 225, 226, 244, 245, 246, 247, 255, 260, 261, 275, 276, 278, 281, 301, 308, 310, 311, 314], "default_valu": [41, 184, 208, 209], "defer": 45, "defg": 44, "defin": [42, 43, 44, 50, 53, 111, 142, 156, 179, 180, 201, 225, 226, 237, 243, 248, 250, 275, 282, 298, 308], "define_selector": [22, 57, 92, 175], "define_selector\u306f": 119, "definion": 225, "definit": [43, 44, 47, 58, 111, 121, 125, 132, 134, 135, 149, 150, 156, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 244, 245, 246, 247, 286], "defrag": [22, 39, 48, 57, 92], "defrag\u306f": 120, "defxyzabc": 41, "degrad": [41, 43, 50, 54, 149], "degre": [39, 91, 94, 156, 203, 225, 305, 315], "dejan": 51, "delai": 51, "delet": [12, 22, 36, 37, 39, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 57, 92, 106, 115, 123, 124, 125, 137, 156, 170, 171, 254], "delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "delete\u30b3\u30de\u30f3\u30c9": 36, "delimit": [0, 42, 43, 48, 50, 53, 168, 205, 253, 264, 305], "delimiter1": 272, "delimiter2": 272, "delimiter_pattern": 205, "delimiter_regexp": [42, 43, 205], "delta": [43, 44], "demerit": [52, 254], "demo": 307, "deni": 105, "dense_union": [44, 96], "deo": [43, 44], "dep": 12, "depend": [0, 3, 7, 22, 23, 34, 40, 41, 42, 43, 44, 45, 47, 49, 51, 52, 54, 55, 94, 95, 111, 123, 124, 125, 141, 149, 150, 156, 180, 203, 208, 237, 245, 246, 247, 274, 310], "deprec": [5, 6, 31, 39, 41, 44, 45, 47, 48, 49, 50, 51, 52, 85, 93, 109, 135, 151, 156, 158, 161, 175, 188, 232, 233, 234, 235, 236, 258, 259, 284], "deprecated\u3060\u3063\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3068\u306a\u308a\u307e\u3059": 93, "deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059": 93, "depth": [44, 96], "derail": 56, "dereferenc": 51, "deriv": [181, 296], "descend": [50, 134, 156, 159, 180, 286], "describ": [3, 5, 6, 7, 8, 17, 18, 19, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 41, 42, 45, 49, 50, 58, 59, 85, 90, 91, 92, 95, 107, 110, 111, 112, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 170, 172, 173, 175, 177, 180, 182, 193, 194, 210, 224, 225, 229, 237, 238, 239, 243, 244, 245, 246, 247, 248, 249, 250, 251, 253, 264, 281, 283, 298, 302, 308, 310, 311], "descript": [6, 22, 43, 44, 47, 48, 49, 50, 51, 54, 57, 96, 111, 112, 124, 125, 132, 134, 135, 138, 139, 142, 155, 156, 157, 158, 161, 168, 169, 173, 175, 177, 178, 180, 202, 224, 228, 244, 248, 250, 298, 299, 302, 311], "description\u306b": 299, "descriptor": 180, "design": [45, 47, 156, 290, 305], "desin": 296, "desir": 56, "desktop": [8, 302], "despit": [45, 54], "dest": [41, 174, 175, 305], "destin": [41, 42, 43, 50, 54, 74, 110, 160], "destination_tag": 43, "destruct": [125, 173], "detail": [0, 1, 3, 7, 12, 17, 24, 25, 27, 28, 31, 32, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 74, 85, 87, 90, 91, 98, 104, 110, 111, 118, 124, 132, 134, 135, 137, 141, 142, 144, 145, 149, 150, 151, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 168, 176, 177, 180, 202, 203, 224, 225, 228, 244, 257, 260, 274, 281, 282, 283, 296, 305, 306, 308, 315], "detect": [6, 31, 39, 41, 42, 43, 44, 45, 47, 50, 51, 52, 53, 54, 96, 168, 177, 198, 205], "determin": [43, 134, 156, 223, 237, 302, 308], "dev": [2, 6, 14, 31, 39, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 177], "devel": 31, "develop": [0, 3, 6, 7, 8, 22, 23, 24, 25, 28, 30, 32, 33, 42, 47, 48, 49, 50, 54, 56, 93, 95, 260, 311], "develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059": 93, "deviat": 41, "devic": 0, "dewangga": 50, "df": [41, 247], "df_column": 41, "dgrn_with_apache_arrow": 23, "dgrn_with_mrubi": 23, "dh": 12, "diacrit": [45, 231, 235], "dialog": 48, "diana": 45, "dict": 44, "dictionari": [30, 37, 47, 48, 49, 50, 51, 96, 156, 229, 274], "did": [41, 43, 44, 96, 111], "didn": [41, 43, 44, 45, 46, 49, 50, 51, 54, 103], "diff": 54, "differ": [18, 19, 41, 42, 43, 45, 47, 49, 50, 52, 53, 56, 111, 124, 134, 141, 156, 161, 175, 177, 180, 188, 191, 193, 195, 202, 208, 224, 225, 241, 244, 245, 264, 265, 266, 267, 268, 269, 270, 271, 273, 275, 279, 280, 292, 305, 310, 315], "difficult": [0, 42, 54], "diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059": 176, "dig": 302, "digest": 292, "digit": [41, 49, 53, 111, 132, 134, 135, 156, 161, 228, 244, 251, 264, 268, 271, 275], "dimens": 45, "dinam": 223, "dingo": 41, "dinner": 0, "dir": 176, "direct": [47, 48, 54, 292], "directli": [42, 52, 54, 122, 156, 225, 311], "directori": [6, 17, 27, 31, 39, 41, 47, 48, 49, 50, 53, 85, 111, 161, 177, 180, 181, 197, 243], "directory_not_empti": 298, "disabl": [18, 37, 39, 40, 41, 43, 44, 45, 47, 48, 49, 50, 52, 53, 132, 134, 135, 143, 149, 156, 158, 175, 177, 180, 224, 228, 250, 302], "disable_and_not": 42, "disable_prefix_search": 42, "discard": [48, 56], "disco": 41, "discuss": [2, 19, 44], "disk": [50, 52, 118, 124, 140, 161, 175, 177, 244, 310], "disk_usag": 141, "displai": [41, 43, 44, 47, 51, 52, 54, 158, 201], "distanc": [0, 41, 44, 45, 47, 51, 156, 188, 198, 224, 225, 239, 315], "distance_cosin": [45, 197], "distance_inner_product": [45, 197], "distance_l1_norm": 45, "distance_l2_norm_squar": 45, "distinct": [34, 51, 180, 237, 313], "distribut": [23, 24, 28, 29, 31, 32, 33, 44, 45, 47, 49, 56, 132, 135, 248], "divid": [0, 42, 43, 225, 247, 305], "divis": [49, 52, 53], "dll": [39, 41, 47, 49, 51, 53, 85, 166], "dnf": [18, 24, 25], "do": [0, 6, 17, 18, 27, 31, 39, 41, 42, 43, 44, 49, 50, 54, 68, 74, 91, 94, 96, 111, 127, 137, 156, 163, 224, 298, 306, 307, 308, 310, 311, 313], "do_alon": 166, "do_gqpt": 176, "do_gqtp": 176, "do_http": 176, "do_loc": 176, "do_map": 52, "doc": [3, 12, 16, 17, 27, 39, 40, 41, 47, 48, 49, 50, 51, 53, 106, 177, 314], "doc_bodi": 314, "doc_update_fil": 18, "docker": [12, 22, 23, 42, 43], "dockerfil": 12, "dockerhub": 29, "documenataion": 95, "document": [0, 3, 5, 6, 7, 8, 16, 17, 21, 23, 27, 31, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 87, 102, 111, 137, 156, 168, 175, 177, 178, 180, 182, 202, 203, 205, 206, 224, 225, 226, 244, 245, 246, 247, 252, 261, 262, 281, 283, 303, 309, 314], "document_index": [41, 44, 45, 191, 192, 193, 275], "documents_content_index": [42, 202, 203, 205, 206], "documentvectorbm25": 41, "docutil": 12, "dodaisuk": [53, 54], "doe": [0, 42, 43, 44, 45, 47, 48, 50, 51, 81, 91, 156, 159, 173, 177, 202, 208, 210, 224, 225, 296, 305, 308], "doesn": [31, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 85, 95, 110, 111, 112, 114, 118, 132, 134, 135, 137, 140, 141, 142, 143, 149, 153, 155, 156, 157, 161, 164, 167, 168, 173, 177, 180, 183, 186, 195, 205, 206, 219, 224, 225, 226, 227, 229, 231, 235, 239, 240, 243, 244, 245, 247, 248, 250, 251, 254, 261, 262, 264, 272, 274, 276, 278, 281, 286, 291, 292, 314], "domain": [16, 47, 49, 50, 51, 68, 85, 114, 162, 164, 175, 312], "domain_error": 298, "domin": 56, "don": [17, 23, 31, 33, 39, 41, 42, 43, 44, 49, 50, 52, 53, 54, 61, 64, 68, 81, 91, 96, 99, 111, 112, 118, 123, 124, 126, 127, 128, 132, 133, 134, 135, 137, 149, 152, 156, 157, 161, 175, 177, 178, 180, 201, 205, 224, 225, 226, 227, 236, 237, 241, 243, 244, 245, 246, 247, 253, 261, 262, 264, 274, 275, 292, 295, 298, 308, 312], "done": [49, 52, 61, 111, 124, 156, 177, 186], "donut": 198, "dot": [45, 47, 53, 231, 232, 233, 234, 235, 258, 259], "doubl": [39, 41, 42, 44, 47, 48, 49, 50, 138, 155, 156, 161, 168, 183, 196, 224, 225, 254, 282, 308], "doubt": 306, "down": [22, 42, 43, 44, 48, 49, 53, 94, 135, 156, 183, 186, 196, 302, 304, 311], "downcas": 229, "download": [22, 23, 31, 33, 227], "downtim": [58, 291], "doxygen": [60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83], "dput_configuration_nam": 12, "dput_incom": 12, "dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc": 37, "drastic": 51, "draw": [231, 232, 233, 234, 235, 258, 259, 307], "drill": [135, 156, 311], "drilldown": [22, 39, 41, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 89, 119, 134, 254, 304, 307, 311], "drilldown_adjust": 53, "drilldown_calc_target": 49, "drilldown_calc_typ": 49, "drilldown_filt": [51, 52], "drilldown_limit": [50, 119, 306], "drilldown_max_n_target_record": [43, 44], "drilldown_offset": [50, 119, 306], "drilldown_output_column": [49, 119, 306], "drilldown_result": 156, "drilldown_result1": 156, "drilldown_result2": 156, "drilldown_result_1": 156, "drilldown_result_2": 156, "drilldown_result_for_column1": 156, "drilldown_result_for_column2": 156, "drilldown_result_for_kei": 156, "drilldown_result_for_labeled_drilldown": 156, "drilldown_result_n": 156, "drilldown_sort_kei": [51, 306], "drilldown_sortbi": [50, 51, 119], "drilldown_xxx": 156, "drilldown\u6642\u306b\u53c2\u7167\u5148\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306bsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63": 36, "drink": 41, "droonga": [195, 196, 219, 248], "drop": [39, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 111], "due": [0, 42, 45, 53, 56, 205, 206, 302], "dump": [22, 37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 64, 92, 129, 137, 163, 171, 175, 177, 228, 281], "dump_config": 122, "dump_index": 50, "dump_path": 41, "dump_plugin": [42, 50], "dump_record": 50, "dump_schema": [42, 50], "dump\u30b3\u30de\u30f3\u30c9": 36, "duplic": [41, 43, 49, 51, 54], "dure": [47, 52, 53, 54, 56, 124, 308], "dutch": [53, 260], "dylan": 44, "dynam": [0, 40, 41, 42, 43, 44, 45, 51, 52, 53, 54, 111, 177, 275, 308], "e": [17, 27, 31, 34, 41, 42, 43, 44, 49, 50, 52, 54, 74, 105, 111, 129, 156, 159, 161, 168, 175, 191, 193, 224, 225, 228, 231, 234, 235, 244, 250, 253, 275, 277, 305, 315], "ea": 168, "each": [0, 5, 18, 23, 31, 39, 41, 42, 43, 44, 45, 48, 50, 51, 52, 53, 56, 68, 91, 94, 96, 98, 99, 111, 112, 132, 133, 134, 135, 137, 139, 141, 142, 153, 156, 158, 159, 168, 169, 171, 175, 177, 180, 191, 192, 193, 195, 201, 202, 203, 205, 219, 224, 225, 228, 245, 250, 251, 253, 254, 260, 286, 298, 303, 305, 306, 307, 308, 309, 315], "each_nam": 50, "ealier": 47, "eanbl": 6, "ear": 168, "earch": 168, "earli": 52, "earlier": [39, 50, 51, 53, 124, 170, 229, 230], "easi": [0, 42, 43, 49, 51, 54, 175, 180, 223, 237, 243, 245, 292, 312], "easier": [42, 43, 44, 52, 245], "easili": [41, 42, 45, 49, 51, 228], "east": 56, "ec": 156, "echo": 143, "eclips": [17, 27], "ecmascript": [47, 48, 156, 223, 225], "ed": [44, 51, 156], "edg": 53, "edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f": 9, "edge\u3054\u3068\u306bqueue\u3092\u6301\u3064": 9, "edge\u306equeue\u306benqueue\u3055\u308c\u308b": 9, "edge\u306fctx\u3092\u542b\u3080": 9, "edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc": 9, "edict": 51, "edict2grn": 49, "edit": [3, 21, 31, 43, 44, 47, 51, 156, 177, 225, 243], "edit_dist": [22, 36, 51, 57, 182, 225], "editor": 17, "editorconfig": 42, "editrc": 39, "ef": 44, "effect": [41, 42, 43, 45, 47, 50, 53, 111, 124, 125, 141, 175, 202, 203, 224, 225, 246, 311], "effici": [0, 41, 51, 91, 111, 133, 177, 310], "effort": 56, "efghi": 44, "egg": 310, "ehllo": 156, "eight": [275, 308], "either": [19, 48, 135, 156, 183, 208, 224, 225, 244, 310], "eito": 48, "el": [262, 264, 267, 268, 275], "elaps": [39, 44, 95, 96, 158, 180, 225, 228, 241, 282], "elapsed_tim": [42, 43, 44, 53, 95, 96], "element": [41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 74, 91, 95, 96, 100, 111, 142, 155, 156, 205, 206, 219, 305, 308], "element1": [91, 225], "element2": [91, 225], "element3": 91, "elfr": 47, "elimin": 48, "ell": 275, "elli": 45, "ellip": [188, 189], "ellipsoid": 189, "ello": 50, "els": [49, 50, 302], "em": [111, 231, 232, 233, 234, 235, 258, 259], "emac": 17, "embed": [0, 45, 50, 52, 175, 177, 193, 197, 206, 243], "embedd": [50, 197], "emerg": [129, 130, 175, 177, 228], "emfil": 302, "emili": 45, "emit": 47, "emoji": [231, 232, 233, 234, 235], "emphas": 194, "emphasi": 56, "empti": [39, 41, 42, 43, 44, 48, 49, 50, 52, 54, 74, 111, 112, 115, 116, 117, 141, 142, 155, 156, 208, 209, 224, 282], "en": [2, 18, 41, 43, 54, 159, 168, 177, 205, 250, 270, 271], "enabl": [6, 17, 18, 27, 32, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 56, 94, 111, 134, 143, 149, 150, 156, 158, 161, 168, 175, 177, 180, 196, 197, 198, 208, 209, 211, 212, 219, 221, 222, 224, 228, 231, 232, 233, 234, 235, 248, 257, 258, 259, 305, 306, 312, 314], "enable_tokenized_delimit": 168, "enablerepo": 24, "enci": 176, "enclos": 308, "encod": [46, 48, 49, 50, 51, 53, 68, 74, 85, 175, 180, 225, 230, 236, 241, 292, 298], "encoding\u306e\u5024\u304c": 39, "encodiong": 225, "encount": [23, 28, 32, 33], "encyclopedia": 282, "end": [26, 43, 44, 45, 50, 56, 174, 188, 208, 209, 224, 225, 241, 244, 272, 277], "end_of_data": 298, "end_tagn": 192, "end_tim": 42, "endian": 49, "endien": 111, "endpoint": [180, 181], "eng": [159, 250], "engi": [159, 250], "engin": [22, 24, 25, 28, 32, 42, 43, 44, 56, 156, 159, 168, 191, 192, 193, 197, 205, 206, 244, 245, 246, 247, 250, 251, 252, 253, 296, 305, 307], "enginen": 250, "english": [2, 14, 17, 18, 19, 39, 48, 49, 51, 52, 53, 54, 156, 225, 250, 260, 264], "enhanc": [18, 55, 56], "enorm": [51, 253, 307], "enough": [0, 41, 42, 43, 49, 50, 51, 52, 53, 54, 56, 101, 104, 111, 134, 183, 196, 197, 206, 303, 310], "enough_filtered_ratio": 42, "enourm": 54, "ensur": [18, 50, 51, 52, 53, 251], "enter": [48, 50, 298, 308], "enterpris": 31, "entir": [56, 208], "entiti": 0, "entranc": 308, "entri": [41, 42, 43, 44, 48, 50, 51, 61, 96, 107, 109, 110, 113, 119, 120, 121, 125, 126, 127, 128, 132, 134, 135, 152, 156, 163, 173, 191, 192, 193, 210, 224, 225, 275, 281, 310, 311], "entries_20150708": [132, 134, 135], "entries_20150709": [132, 134, 135], "entries_bodi": 310, "entries_cont": [41, 43, 44, 45], "entries_content_index": [43, 44, 156, 224, 225, 281], "entries_content_index_20150708": [132, 134, 135], "entries_content_index_20150709": [132, 134, 135], "entries_key_index": [41, 43, 44, 156, 224, 225, 281], "entries_key_index_20150708": [132, 134, 135], "entries_key_index_20150709": [132, 134, 135], "entries_numb": 50, "entries_titl": [43, 44, 310], "entries_whol": 310, "entries_yyyymmdd": [132, 134, 135], "entrust": 56, "entry1": [110, 310], "entry2": 310, "entry3": 310, "entry4": 310, "entry_20150708": [132, 135], "entry_20150709": [132, 135], "entry_bodi": 152, "entry_kei": 152, "entry_selector": 119, "entrykei": 163, "enumer": 308, "env": 243, "envelop": 51, "enviro": 41, "enviromn": 50, "environ": [6, 21, 23, 27, 31, 33, 39, 40, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 149, 150, 156, 177, 243], "envoron": 43, "eoan": [41, 54], "eol": [26, 41, 42, 43, 45, 52, 53], "epel": [24, 47, 52], "epoch": [42, 305, 311], "epol": [41, 94, 158, 177, 298, 308, 312], "equal": [43, 44, 45, 49, 50, 51, 54, 111, 131, 156, 159, 175, 177, 186, 195, 202, 205, 206, 219, 223, 230, 232, 233, 234, 235, 236, 243, 258, 259, 314, 315], "equat": [188, 231, 235], "equival": [44, 54, 74, 124, 231, 235], "er": [43, 44, 96, 244], "era": [0, 22], "eric": [183, 186], "ermin": [41, 54], "errbuf": 53, "errno": [49, 50, 302], "error": [0, 6, 22, 23, 28, 31, 32, 33, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 58, 68, 84, 85, 100, 110, 111, 115, 117, 118, 121, 124, 125, 126, 127, 128, 129, 130, 132, 134, 135, 137, 143, 144, 145, 149, 150, 151, 152, 155, 156, 157, 160, 161, 163, 164, 166, 170, 175, 177, 188, 224, 228, 244, 247, 296, 300, 308], "error_cod": 85, "error_fil": 44, "error_funct": 44, "error_input_command": 44, "error_input_fil": 44, "error_input_lin": 44, "error_lin": 44, "error_loc": 95, "error_messag": [44, 95], "error_no_system_resourc": 52, "errror": 244, "escal": [22, 37, 43, 44, 45, 47, 53, 54, 57, 156, 171, 175, 182, 301], "escap": [42, 43, 47, 48, 49, 52, 68, 191, 192, 205, 225], "escape_charact": 68, "escaped_charact": 68, "escaped_queri": 68, "escaped_str": 68, "escaps": [191, 192, 193, 206], "especi": [43, 50], "essenti": [18, 177], "establish": [44, 56, 298, 308], "estim": [41, 50, 51, 52, 53, 54, 165, 303], "estimate_s": 50, "estimated_s": [51, 165], "etc": [3, 25, 41, 47, 53, 54, 177, 243, 281, 292, 296, 303, 305, 308], "etim": 174, "euc": [48, 175, 277], "euc_jp": 31, "euclidean": 45, "ev": 302, "eva": 56, "eval": 154, "evalu": [41, 42, 43, 45, 48, 50, 52, 53, 111, 154, 155, 156, 186, 210, 224, 225, 244, 277], "evaluated_valu": 154, "even": [0, 23, 28, 31, 32, 33, 41, 42, 43, 44, 45, 47, 48, 49, 51, 52, 53, 54, 74, 111, 124, 134, 137, 143, 156, 157, 173, 225, 247, 250, 276, 310], "event": [50, 180, 292], "event_dataset": [179, 181], "event_queri": [159, 179, 180, 181, 250, 251, 253], "event_typ": [179, 180], "eventu": 44, "ever": 48, "everi": [41, 42, 52, 111, 306], "everyon": 312, "evil": [180, 225], "evn": 43, "evolut": 22, "evolutionari": 56, "ex": [42, 43, 53, 166, 168], "exact": [11, 42, 44, 58, 96, 111, 133, 156, 161, 254], "exactli": [43, 54, 303], "exampl": [0, 3, 8, 18, 20, 22, 27, 31, 34, 37, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 91, 94, 95, 96, 98, 99, 103, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 177, 178, 180, 182, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 286, 292, 300, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "exapml": 111, "exce": [47, 48, 50, 51, 141], "exceed": [34, 303], "excel": 243, "except": [39, 41, 42, 43, 47, 49, 50, 52, 53, 54, 58, 91, 110, 134, 135, 141, 152, 154, 156, 161, 168, 175, 177, 195, 196, 205, 206, 208, 209, 219, 224, 231, 232, 233, 234, 235, 239, 244, 254, 260, 261, 264, 272, 274, 275, 281], "except_source_column": 42, "exclam": 50, "exclud": [42, 43, 47, 48, 49, 53, 122, 125, 132, 134, 135, 137, 183, 231, 232, 233, 234, 235, 274], "exclude_t": 48, "exclus": [43, 51, 111, 191, 192, 193], "excut": 48, "exe_common": 166, "exec_format_error": 298, "execut": [0, 18, 22, 27, 31, 33, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 81, 91, 92, 95, 96, 99, 103, 105, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 173, 177, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 226, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 245, 246, 247, 248, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 286, 290, 298, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "execute_search": 135, "exemplifi": 56, "exist": [1, 27, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 58, 111, 124, 125, 131, 132, 134, 135, 136, 137, 140, 143, 153, 156, 163, 173, 175, 177, 181, 183, 186, 195, 196, 197, 225, 227, 245, 248, 264, 296, 298, 305, 308, 310, 315], "existent1": [43, 111], "existent2": [43, 111], "exit": [47, 48, 50, 171, 173, 175, 225], "exit_failur": 84, "exit_success": 84, "exmapl": 44, "expand": [22, 41, 42, 43, 44, 47, 48, 51, 57, 144, 145, 151, 156, 161, 202, 203, 243, 248], "expand_character_refer": [43, 44], "expanded_term_column": 42, "expans": [22, 39, 42, 45, 47, 51, 52, 56, 156, 202, 243, 304], "expect": [42, 43, 45, 49, 54, 111, 156, 183, 196, 224, 240, 244, 246, 274, 278, 305], "expens": 42, "experiment": [18, 27, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 61, 96, 132, 138, 145, 154, 156, 186, 197, 227, 244, 246, 277], "expert": 42, "expertis": 56, "expir": [50, 52, 107, 177], "explain": [50, 53, 54, 96, 111, 122, 156, 180, 305, 308], "explan": [54, 111, 237], "explicitli": [18, 31, 44, 45, 47, 50, 96, 111, 124, 156, 157, 177, 205, 236, 241, 250, 292, 310], "exploit": 0, "explos": 56, "expnas": 243, "expon": 111, "expornenti": 225, "export": [18, 39, 41, 48, 49, 50, 51, 52, 53], "expr": [58, 68, 166], "express": [22, 39, 41, 42, 43, 44, 47, 48, 50, 51, 53, 54, 56, 57, 68, 111, 112, 121, 125, 141, 142, 155, 156, 177, 188, 202, 205, 223, 272, 276, 277, 281, 310], "expression_rewrit": [51, 53], "ext": 168, "extend": [49, 54, 56, 244, 310, 314], "extens": [41, 178, 197, 241], "extern": 31, "extra": [43, 45, 224, 225], "extract": [0, 17, 27, 31, 33, 42, 43, 44, 47, 49, 50, 51, 52, 54, 68, 134, 156, 161, 177, 193, 205, 206, 209, 210, 228, 231, 232, 233, 234, 235, 249, 260, 262, 272, 276, 296, 302], "extrct": 225, "ey": 156, "f": [43, 54, 74, 168], "f6": 25, "fa": 168, "face": 227, "facebook": [12, 22, 47], "facebook\u306bgroonga\u30b0\u30eb\u30fc\u30d7\u304c\u3042\u308a\u307e\u3059": 12, "facet": 156, "fact": [156, 307], "faction": 311, "factor": [49, 156], "fail": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 85, 110, 111, 115, 118, 124, 132, 134, 137, 143, 144, 145, 149, 150, 151, 156, 160, 161, 163, 164, 166, 184, 224, 308], "failur": [47, 49, 50, 51, 52], "fall": 52, "fallback": [50, 51], "fals": [36, 41, 42, 43, 44, 48, 49, 51, 53, 94, 110, 111, 114, 115, 117, 118, 121, 126, 127, 128, 129, 131, 135, 137, 140, 141, 142, 143, 152, 153, 155, 158, 163, 168, 170, 177, 183, 191, 192, 193, 195, 196, 203, 205, 210, 224, 225, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280, 282, 298, 305, 308, 312, 313], "famili": [43, 44, 45, 52, 53, 111, 156, 168, 225], "familiar": 306, "farther": 44, "fast": [0, 41, 42, 43, 44, 45, 46, 50, 87, 95, 111, 125, 132, 134, 135, 156, 161, 168, 188, 191, 192, 193, 194, 195, 196, 197, 205, 206, 219, 224, 225, 239, 244, 245, 247, 254, 291, 292, 307, 308, 310], "faster": [31, 39, 41, 42, 45, 48, 49, 51, 52, 53, 54, 111, 134, 183, 196, 277, 290], "fastest": 58, "fastli": [94, 156], "fatal": 49, "fault": [47, 54], "favor": 56, "favorit": 17, "favorited_bi": 311, "fbnteqr": 50, "fd": [39, 180, 302], "featur": [0, 6, 17, 27, 39, 41, 42, 44, 47, 49, 50, 51, 52, 53, 54, 56, 58, 91, 94, 96, 99, 110, 111, 132, 133, 134, 135, 138, 139, 145, 156, 157, 158, 159, 161, 163, 166, 167, 168, 169, 173, 175, 177, 180, 188, 197, 201, 202, 223, 224, 225, 227, 231, 235, 240, 243, 244, 245, 246, 248, 249, 250, 251, 252, 253, 254, 291, 298, 306, 308, 310, 312], "fedora": [18, 37, 39, 47, 48, 49, 296], "fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332": 37, "fedora\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30eb\u30fc\u30eb\u306b\u5f93\u3046\u3088\u3046\u306b\u6539\u826f": 37, "feel": [18, 43, 44, 49, 244], "felt": 56, "fetch": [42, 49, 253, 310], "few": [41, 43, 45, 56, 156, 257, 291, 292], "fewer": [52, 111], "ff01": 50, "ff1f": 50, "ff21": 53, "ff65": [231, 232, 233, 234, 235, 258, 259], "ff70": [231, 232, 233, 234, 235, 258, 259], "ff76": 230, "ff9e": 230, "ffef": 277, "fff0": 277, "fffe": 168, "fg": 44, "fget": 50, "field": [50, 112], "figur": 239, "file": [3, 12, 22, 27, 31, 33, 36, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 81, 95, 99, 101, 122, 125, 153, 156, 167, 172, 173, 177, 178, 180, 197, 225, 228, 248, 250, 290, 291, 296, 298, 302, 303, 308], "file_corrupt": 298, "file_exist": 298, "file_too_larg": 298, "filenam": 52, "filename_too_long": 298, "file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8": 37, "fill": [41, 42, 156, 225], "filter": [22, 28, 32, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 91, 110, 111, 119, 121, 124, 141, 142, 153, 155, 161, 165, 168, 182, 183, 186, 188, 193, 195, 196, 197, 198, 201, 202, 203, 205, 206, 210, 223, 225, 240, 244, 252, 253, 255, 257, 258, 259, 260, 261, 276, 286, 299, 301, 306, 307, 311, 313, 315], "filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8": 37, "final": [18, 43, 84, 85, 91, 156, 177, 231, 232, 233, 234, 235, 258, 259, 302], "find": [0, 3, 17, 18, 31, 33, 42, 45, 50, 51, 53, 56, 110, 111, 114, 134, 135, 156, 159, 164, 191, 192, 193, 201, 205, 206, 219, 229, 240, 248, 250, 251, 253, 260, 262, 264, 265, 266, 267, 268, 274, 275, 302, 308], "find_packag": 44, "finish": [17, 41, 43, 50, 53, 54, 84, 111, 132, 149, 153, 156, 157, 173, 228], "finnish": [53, 260], "firefox": 17, "firewal": 105, "firewood": [47, 48], "first": [17, 18, 31, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 53, 54, 85, 95, 111, 112, 124, 132, 134, 135, 153, 156, 161, 175, 177, 191, 192, 193, 195, 197, 205, 206, 211, 212, 219, 224, 225, 231, 232, 233, 234, 235, 243, 244, 245, 292, 296, 302, 305, 307, 308, 310, 311, 314], "fitler": [258, 259], "five": [95, 308], "fix": [111, 112, 114, 141, 156, 161, 188, 251, 298, 303], "fix_siz": 141, "fixed_size_column": 52, "fixed_size_type_vector_column": 50, "flag": [31, 34, 39, 40, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 68, 74, 85, 91, 108, 114, 123, 141, 155, 162, 164, 175, 176, 197, 224, 225, 228, 229, 230, 244, 254, 305, 306, 307, 308, 309, 310, 311, 313], "flanc": 188, "flat": 96, "flexibl": [0, 42, 111, 202, 223], "flexibli": 42, "float": [41, 42, 43, 44, 45, 46, 47, 50, 51, 90, 95, 96, 111, 132, 134, 135, 141, 142, 155, 156, 188, 241, 246, 247, 305], "float32": [41, 42, 43, 44, 90, 111, 142, 155, 197], "floor": 156, "floow": 42, "flow": [3, 51, 156, 292], "flower": 305, "fluent": 13, "flush": [50, 51, 52, 53, 54, 124], "flushviewoffil": 50, "fo": 41, "focal": 41, "focu": [45, 231, 235], "focus": 308, "folder": 33, "follow": [2, 17, 18, 21, 27, 29, 31, 33, 34, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 58, 74, 84, 85, 90, 91, 95, 96, 110, 111, 112, 114, 124, 125, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 149, 155, 156, 159, 161, 163, 164, 166, 167, 168, 169, 173, 175, 177, 179, 180, 181, 183, 184, 188, 191, 192, 193, 195, 196, 197, 198, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 222, 224, 225, 228, 231, 235, 237, 239, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 262, 264, 266, 267, 268, 277, 281, 282, 290, 292, 295, 298, 302, 303, 305, 306, 307, 308, 312, 315], "followe": 311, "fontain": 39, "foo": 52, "food": [41, 44, 276], "food_nam": 44, "footnot": [188, 308], "forc": [47, 51, 52, 53], "force_match_escal": 45, "force_prefix": [45, 50, 53, 168, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280], "force_prefix_search": [45, 53, 168, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280], "forcibli": 41, "foreground": 175, "foreign": 56, "forget": [91, 124, 126, 150, 201], "fork": [3, 12, 17, 175], "fork\u3057\u305f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b": 12, "fork\u3057\u305f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u3066": 12, "fork\u3057\u305f\u30ea\u30dd\u30b8\u30c8\u30ea\u306egithub": 12, "fork\u3057\u305f\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u66f4\u65b0": 12, "fork\u3057\u305f\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u30ed\u30fc\u30ab\u30eb\u306bclone\u3057": 12, "form": [39, 41, 42, 44, 48, 51, 53, 54, 156, 177, 178, 223, 224, 225, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259, 295, 298, 308, 311, 312], "form_1": 308, "form_2": 308, "format": [17, 18, 22, 27, 31, 40, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 55, 57, 64, 85, 92, 97, 99, 100, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 166, 167, 168, 169, 170, 173, 177, 178, 180, 202, 203, 208, 209, 225, 227, 241, 244, 248, 282, 292, 298, 304, 305, 311, 312], "former": [58, 180, 224, 225, 230, 243], "formula": [188, 303], "forth": 225, "fossa": 41, "fot": 41, "found": [31, 44, 47, 48, 52, 53, 54, 56, 123, 134, 156, 219, 240, 252, 262, 275], "founder": 56, "four": [91, 95, 110, 175, 195, 208, 209, 228, 254, 274, 308], "fraction": [0, 111, 305, 311], "fragment": 120, "francisco": 188, "frank": [183, 186], "free": [18, 22, 39, 41, 45, 49, 50, 53, 54, 61, 85, 94, 108, 156, 228, 282, 298, 303], "freebsd": [22, 50, 57], "freed": [41, 49, 51, 61, 158], "french": [53, 260], "french_memos_cont": 260, "frenchmemo": 260, "frenchterm": 260, "freq": 180, "freq0": [180, 253], "freq1": [180, 253], "freq2": [180, 253], "frequenc": [41, 49, 50, 159, 165, 245, 246, 247, 309], "frequency_threshold": [39, 159, 180, 250, 251, 253], "frequent": [27, 42, 52, 245], "fresh": 226, "fridai": 212, "friend": [3, 307], "friendli": 47, "friendship": 307, "from": [0, 18, 22, 23, 26, 27, 39, 40, 41, 42, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 68, 81, 85, 87, 105, 106, 110, 111, 118, 121, 122, 123, 125, 132, 134, 137, 140, 142, 152, 153, 156, 158, 161, 163, 170, 175, 177, 183, 188, 193, 194, 197, 198, 205, 206, 208, 209, 219, 220, 223, 224, 225, 227, 231, 234, 235, 239, 240, 243, 244, 246, 247, 250, 251, 252, 253, 261, 262, 272, 278, 292, 296, 298, 302, 305, 308, 310, 311, 315], "from_column": 110, "from_offic": 198, "from_stat": 198, "fromtabl": 110, "front": 45, "fruit": 41, "fsf": 47, "fstack": 53, "ft": 197, "ftb": 55, "ftp": 176, "fu": 168, "fuku1": 53, "fukuoka": 56, "ful": 168, "fulfil": 296, "full": [12, 22, 31, 34, 39, 41, 42, 43, 44, 45, 47, 49, 50, 52, 53, 54, 84, 91, 112, 141, 156, 167, 168, 177, 186, 197, 202, 203, 205, 206, 219, 223, 225, 227, 230, 231, 232, 233, 234, 235, 244, 245, 257, 258, 259, 262, 272, 302, 304, 305, 307, 311, 314], "full_nam": [141, 155], "fulli": [47, 177], "fulltext": [24, 25, 28, 32, 52, 59, 132, 134, 135, 156, 161, 168, 175, 191, 192, 193, 206, 224, 225, 229, 239, 254, 296, 310], "fullwidth": [50, 53], "fumiyasu": 39, "funa": 49, "func": [41, 53, 81, 85], "functin": 225, "function": [0, 6, 14, 22, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 74, 81, 85, 95, 102, 111, 140, 141, 142, 167, 175, 177, 180, 183, 186, 188, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 222, 245, 246, 247, 254, 286, 296, 306, 315], "function_nam": 95, "function_not_impl": 298, "functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059": 14, "fundament": 56, "furigana": 159, "further": 305, "futur": [39, 41, 43, 44, 48, 54, 56, 91, 96, 132, 138, 141, 154, 188, 244, 292, 298], "fuzzi": [44, 51, 96, 161], "fuzzy_max_dist": 44, "fuzzy_max_distance_ratio": 44, "fuzzy_max_expans": 44, "fuzzy_prefix_length": 44, "fuzzy_search": [22, 41, 44, 51, 57, 182], "fuzzy_token": [44, 156], "fuzzy_with_transposit": 44, "g": [12, 23, 31, 34, 41, 42, 43, 44, 50, 52, 54, 74, 105, 111, 156, 161, 180, 191, 193, 208, 231, 234, 235, 250, 253, 305, 315], "g0763d91": 97, "g5a4c6f3": 41, "ga": [156, 168, 230], "ga54c5f8": 176, "gaeeyo": 41, "game": [42, 286], "game1": [42, 286], "game2": [42, 286], "gap": [42, 286], "garbag": [39, 41, 44, 48, 49, 53, 108, 141, 180], "gat": [306, 308, 315], "gather": 111, "ga\u306f\u3068\u3066\u3082": 44, "gb87d9f8": 241, "gc": 51, "gcc": [31, 39, 47, 48], "gd6cd635": 228, "gdb": 6, "gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068": 14, "gem": 12, "gemfil": 47, "gemini": 41, "gener": [3, 6, 21, 22, 23, 31, 41, 42, 43, 44, 48, 50, 52, 53, 54, 57, 60, 61, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 85, 114, 132, 134, 135, 141, 142, 155, 156, 165, 168, 179, 197, 206, 231, 235, 237, 244, 262, 264, 277, 308, 310], "genki": 48, "gensim": 41, "geo": [22, 39, 40, 48, 74, 188, 304, 311, 315], "geo_dist": [22, 39, 47, 48, 57, 182, 307, 315], "geo_distance2": [39, 188], "geo_distance3": [39, 188], "geo_distance_location_rectangl": 54, "geo_in_circl": [22, 39, 41, 48, 51, 57, 182, 307, 311, 315], "geo_in_rectangl": [22, 36, 37, 39, 41, 48, 51, 57, 182, 315], "geodet": [282, 315], "geograph": [188, 305], "geoindex": 307, "geoloc": [22, 49, 57, 238, 245, 246, 247], "geometri": [39, 50], "geopoint": 188, "geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc": 37, "geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8": 36, "geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63": 37, "geosit": 307, "german": [53, 260], "get": [0, 2, 12, 22, 27, 31, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 61, 85, 96, 106, 107, 116, 132, 133, 136, 143, 156, 165, 166, 167, 168, 171, 175, 178, 186, 196, 225, 226, 240, 241, 250, 251, 253, 274, 304, 306, 310, 311, 312, 315], "getaddrinfo": 47, "getenv": 50, "getter": 52, "gettext": [17, 18], "get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080": 174, "gguf": [197, 227], "gh": [44, 45, 46], "gi": 168, "git": [6, 7, 8, 12, 13, 17, 18], "github": [6, 7, 8, 12, 13, 17, 18, 19, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 96], "githubusercont": 21, "gitter": [2, 42, 50, 51], "gituub": 51, "give": [0, 41, 42, 43], "given": [45, 47, 48, 51, 56, 74, 111, 156, 197, 207, 212, 219, 224, 225, 302, 307], "glaser": 51, "glib": 48, "global": [22, 47, 48, 50, 54, 57, 59, 61], "glossari": [21, 22, 57], "gmbijecc": 166, "gmo": 49, "gnoonag": 156, "gnu": [3, 5, 8, 12, 18, 22, 23, 31, 39, 41, 42, 43, 44, 45, 52, 53, 54], "gnupg2": 12, "go": [0, 18, 111, 226, 290, 308], "gobject": 50, "golow": 44, "golubchik": [50, 52], "gone": 307, "goo": [56, 224, 225], "good": [0, 31, 41, 42, 43, 44, 45, 56, 123, 132, 134, 135, 156, 165, 168, 195, 219, 224, 225, 226, 261, 264, 274, 310], "googl": [56, 156, 224, 245, 246, 247, 252], "gorilla": [41, 42, 43], "goroo": 290, "got": [42, 48, 49, 106], "gp": 0, "gpl": [45, 55], "gpu": 197, "gqtp": [0, 1, 22, 24, 25, 28, 32, 47, 48, 49, 50, 53, 100, 174, 175, 176, 289, 297, 312], "gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": 3, "gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059": 174, "gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068": 174, "gqtp\u306e\u5834\u5408": 175, "gr": [156, 161, 168, 180, 208], "gr00nga": 156, "grab": 53, "grace": [50, 157], "gram": [0, 51, 53, 168, 225, 275, 308], "gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u8a9e\u306e\u30d2\u30c3\u30c8\u6570\u304c\u591a\u3044\u305f\u3081": 301, "gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u9069\u5408\u7387\u306e\u4f4e\u3044\u5834\u5408\u304c\u591a\u3044\u306e\u3067": 301, "gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059": 301, "gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3068tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3067\u6319\u52d5\u304c\u5909\u308f\u308a\u307e\u3059": 299, "gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u306f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059": 299, "gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u518d\u73fe\u7387\u3092\u3042\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c": 301, "gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059": 301, "grand": 311, "graph": 0, "greas": 305, "greater": [43, 44, 45, 94, 105, 149, 156, 159, 202, 208], "greater_equ": 202, "greatli": 54, "green": 27, "gregex": 48, "grep": 302, "grew": 141, "grmdb": 173, "grn": [42, 43, 122, 177], "grn1": 310, "grn2": 310, "grn3": 310, "grn_address_is_in_us": 100, "grn_address_is_not_avail": 100, "grn_arg_list_too_long": 100, "grn_back_trace_en": 43, "grn_bad_address": 100, "grn_bad_file_descriptor": 100, "grn_between_too_many_index_match_ratio": [42, 49, 183], "grn_bool\u578b\u3092\u8ffd\u52a0": 37, "grn_broken_pip": 100, "grn_bulk": [51, 68], "grn_bulk_": 52, "grn_bulk_vsiz": 68, "grn_cach": [22, 50, 57, 59], "grn_cache_clos": 61, "grn_cache_current_get": 61, "grn_cache_current_set": 61, "grn_cache_default_open": 52, "grn_cache_get_max_n_entri": 61, "grn_cache_open": 61, "grn_cache_set_max_n_entri": 61, "grn_cancel": [99, 100, 153], "grn_cas_error": 100, "grn_column": [22, 57, 59], "grn_column_cach": 52, "grn_column_get_all_index_data": 50, "grn_column_trunc": 49, "grn_com_event_stop_accept": 302, "grn_command_error": 100, "grn_command_input_get_argu": 50, "grn_command_run": 166, "grn_command_vers": [22, 57, 59], "grn_command_version_default": 50, "grn_cond": 81, "grn_conf_get": 50, "grn_conf_set": 50, "grn_config_cursor_get_kei": 50, "grn_config_cursor_get_valu": 50, "grn_config_cursor_next": 50, "grn_config_cursor_open": 50, "grn_config_delet": [50, 115], "grn_config_get": 50, "grn_config_set": 50, "grn_connection_refus": 100, "grn_connection_reset": [41, 100], "grn_content_json": 64, "grn_content_msgpack": 64, "grn_content_non": 64, "grn_content_tsv": 64, "grn_content_typ": [22, 57, 59], "grn_content_xml": 64, "grn_ctx": [22, 41, 47, 50, 53, 57, 59, 61, 68, 71, 74, 85, 133], "grn_ctx_at": [47, 51], "grn_ctx_batch_mod": 49, "grn_ctx_close": [39, 49], "grn_ctx_fin": 47, "grn_ctx_get_all_norm": 50, "grn_ctx_get_all_t": 50, "grn_ctx_get_all_token": 50, "grn_ctx_get_all_token_filt": 50, "grn_ctx_get_all_typ": 50, "grn_ctx_init": 39, "grn_ctx_is_open": 50, "grn_ctx_open": 39, "grn_ctx_output_nul": 50, "grn_ctx_output_uint64": 50, "grn_ctx_per_db": 39, "grn_ctx_qe_exec": 166, "grn_ctx_recv": 49, "grn_ctx_send": [51, 61, 64, 166], "grn_ctx_t": 100, "grn_ctx_use_ql": 49, "grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": 37, "grn_dat": 39, "grn_dat_cursor": 41, "grn_dat_cursor_get_max_n_record": 41, "grn_dat_repair": 40, "grn_db": [22, 40, 57, 59], "grn_db_float": [41, 50], "grn_db_float32": 41, "grn_db_kei": [40, 124], "grn_db_recov": [49, 50, 51], "grn_db_register_by_nam": 38, "grn_db_text": 68, "grn_db_touch": 37, "grn_db_unmap": 50, "grn_default_logger_get_path": 47, "grn_default_logger_get_rotate_threshold_s": 50, "grn_default_logger_set_path": [47, 52], "grn_default_logger_set_rotate_threshold_s": 50, "grn_default_query_logger_get_path": 47, "grn_default_query_logger_get_rotate_threshold_s": 50, "grn_default_query_logger_set_path": [47, 52], "grn_default_query_logger_set_rotate_threshold_s": 50, "grn_directory_not_empti": 100, "grn_domain_error": 100, "grn_dump_column_create_flag": 50, "grn_dump_table_create_flag": 50, "grn_ecmascript": [58, 156], "grn_enable_reference_count": [41, 43, 54, 149, 150], "grn_enc_default": 74, "grn_enc_euc_jp": 74, "grn_enc_koi8r": 74, "grn_enc_latin1": 74, "grn_enc_non": 74, "grn_enc_sji": 74, "grn_enc_utf8": 74, "grn_encod": [22, 53, 57, 59, 74, 85], "grn_end_of_data": 100, "grn_exec_format_error": 100, "grn_expr": [22, 47, 49, 57, 59, 119, 121, 188, 244], "grn_expr_add_var": 68, "grn_expr_alloc": 68, "grn_expr_append_const": [11, 52, 68], "grn_expr_append_const_int": 68, "grn_expr_append_const_str": 68, "grn_expr_append_obj": [11, 68], "grn_expr_append_op": [11, 52, 68], "grn_expr_clos": 68, "grn_expr_compil": 68, "grn_expr_creat": 68, "grn_expr_create_for_queri": 11, "grn_expr_estimate_s": 50, "grn_expr_exec": [50, 68, 166], "grn_expr_get_keyword": 68, "grn_expr_get_var_by_offset": 68, "grn_expr_optim": [42, 43, 53], "grn_expr_pars": [52, 68], "grn_expr_query_no_syntax_error": 52, "grn_expr_syntax_escap": 68, "grn_expr_syntax_escape_queri": 68, "grn_expr_syntax_expand_queri": 51, "grn_expr_syntax_expand_query_by_t": 52, "grn_expr_take_obj": 51, "grn_expr_var": 85, "grn_expr\u3067\u8868\u73fe\u3055\u308c\u305f\u691c\u7d22\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3068\u304d\u306b\u4f7f\u3044\u307e\u3059": 11, "grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea": 3, "grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f": 11, "grn_expr\u306f": 11, "grn_expr\u306f\u4ee3\u5165\u3084\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u3088\u3046\u306a\u69d8\u3005\u306a\u64cd\u4f5c\u3092\u8868\u73fe\u3067\u304d\u307e\u3059\u304c": 11, "grn_expr\u3092\u4f7f\u3063\u3066\u69d8\u3005\u306a\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "grn_fals": 52, "grn_file_corrupt": 100, "grn_file_exist": 100, "grn_file_read": 50, "grn_file_too_larg": 100, "grn_fileinfo_open": 52, "grn_filename_too_long": 100, "grn_fin": [50, 84, 228], "grn_float_valu": 50, "grn_function_not_impl": 100, "grn_geo": [22, 57, 59], "grn_geo_estimate_in_rectangl": 39, "grn_geo_point": 74, "grn_geo_point_set": 74, "grn_geo_select_in_circl": 39, "grn_geo_select_in_rectangl": 39, "grn_geo_table_sort": 50, "grn_get_default_cache_base_path": 52, "grn_get_global_error_messag": 50, "grn_get_package_label": 50, "grn_get_version_major": 41, "grn_get_version_micro": 41, "grn_get_version_minor": 41, "grn_hash": 41, "grn_hash_add": 43, "grn_hash_add_table_cursor": 41, "grn_hash_siz": 50, "grn_hash_tini": 50, "grn_highlight": 44, "grn_highlighter_clear_keyword": 53, "grn_hook": [22, 57, 59], "grn_id": [41, 68, 71, 85], "grn_id_nil": [43, 45, 68, 111], "grn_ii": [22, 57, 59], "grn_ii_buff": 71, "grn_ii_buffer_append": 71, "grn_ii_buffer_clos": 71, "grn_ii_buffer_commit": 71, "grn_ii_buffer_open": 71, "grn_ii_cursor": 50, "grn_ii_cursor_clos": 50, "grn_ii_cursor_next": 50, "grn_ii_cursor_next_po": 52, "grn_ii_cursor_open": 50, "grn_ii_cursor_set_min": 50, "grn_ii_cursor_set_min_en": [42, 43, 50, 51], "grn_ii_estimate_size_for_lexicon_cursor": 50, "grn_ii_estimate_size_for_queri": 50, "grn_ii_get_flag": 54, "grn_ii_max_n_chunks_tini": 51, "grn_ii_max_n_segments_tini": 51, "grn_ii_overlap_token_skip_en": [51, 52], "grn_ii_posting_add": [41, 51, 54], "grn_ii_posting_add_float": 41, "grn_ii_reduce_expire_en": 53, "grn_ii_reduce_expire_threshold": [52, 53], "grn_ii_sel": 111, "grn_ii_select_too_many_index_match_ratio_refer": 41, "grn_illegal_byte_sequ": 100, "grn_improper_link": 100, "grn_in_values_too_many_index_match_ratio": [42, 49, 196], "grn_inappropriate_i_o_control_oper": 100, "grn_incompatible_file_format": 100, "grn_index_chunk_split_en": 51, "grn_index_column_diff": 54, "grn_index_cursor": [22, 57, 59], "grn_index_cursor_next": 48, "grn_info": [22, 57, 59], "grn_info_sourc": 42, "grn_init": [47, 50, 81, 84, 228], "grn_input_output_error": 100, "grn_inspect": [22, 57, 59], "grn_inspect_encod": 74, "grn_inspect_ind": 74, "grn_inspect_limit": 74, "grn_inspect_nam": 74, "grn_inspect_query_log_flag": 74, "grn_inspect_typ": 74, "grn_int32_value_float_valu": 50, "grn_interrupted_function_cal": [100, 153], "grn_invalid_argu": 100, "grn_invalid_format": 100, "grn_invalid_seek": 100, "grn_io_expir": 52, "grn_io_flush": 52, "grn_io_use_spars": 50, "grn_io_vers": 49, "grn_is_a_directori": 100, "grn_is_back_trace_en": 43, "grn_is_reference_count_en": [43, 44], "grn_itoh": 39, "grn_ja_skip_same_value_put": 48, "grn_lock_set_timeout": 54, "grn_log_level": 85, "grn_log_level_pars": 50, "grn_log_level_to_str": 50, "grn_log_path": 47, "grn_logger": 47, "grn_logger_info": 47, "grn_logger_put": 53, "grn_logger_reopen": 47, "grn_logical_range_filter_en": 50, "grn_logical_range_filter_threshold": 50, "grn_lzo_error": 100, "grn_match_escal": [22, 57, 59], "grn_mecab_chunk_size_threshold": 50, "grn_mecab_chunked_tokenize_en": 50, "grn_memory_get_usag": 54, "grn_mutex": 81, "grn_network_is_down": 100, "grn_ngram_tokenizer_remove_blank_dis": [51, 52], "grn_ngram_tokenizer_remove_blank_en": 52, "grn_no_buff": 100, "grn_no_child_process": 100, "grn_no_locks_avail": 100, "grn_no_memory_avail": 100, "grn_no_space_left_on_devic": 100, "grn_no_such_devic": 100, "grn_no_such_device_or_address": 100, "grn_no_such_file_or_directori": 100, "grn_no_such_process": 100, "grn_normalizer_error": 100, "grn_not_a_directori": 100, "grn_not_enough_spac": 100, "grn_not_socket": 100, "grn_obj": [22, 41, 47, 49, 50, 53, 57, 59, 68, 71, 74, 85], "grn_obj_": 44, "grn_obj_cast": 50, "grn_obj_clear_lock": 39, "grn_obj_clear_option_valu": 53, "grn_obj_clos": [11, 49, 50], "grn_obj_compress_zlib": 51, "grn_obj_delete_by_id": 39, "grn_obj_fin": 68, "grn_obj_flag": [68, 85], "grn_obj_flush": 50, "grn_obj_flush_recurs": 50, "grn_obj_format": 41, "grn_obj_format_fin": 41, "grn_obj_get_disk_usag": 52, "grn_obj_get_valu": 39, "grn_obj_have_sourc": 41, "grn_obj_is_accessor": 50, "grn_obj_is_builtin": 39, "grn_obj_is_corrupt": 52, "grn_obj_is_data_column": 52, "grn_obj_is_expr": 52, "grn_obj_is_function_proc": 50, "grn_obj_is_index_column": 53, "grn_obj_is_key_accessor": 50, "grn_obj_is_normalizer_proc": 50, "grn_obj_is_number_family_bulk": 53, "grn_obj_is_proc_proc": 50, "grn_obj_is_scalar_column": 52, "grn_obj_is_scorer_proc": 50, "grn_obj_is_selector_proc": 50, "grn_obj_is_t": 50, "grn_obj_is_text_family_typ": 51, "grn_obj_is_token_column": 41, "grn_obj_is_token_filter_proc": 50, "grn_obj_is_tokenizer_proc": 50, "grn_obj_is_tru": 50, "grn_obj_is_typ": 50, "grn_obj_is_uvector": 41, "grn_obj_is_vector_column": 53, "grn_obj_is_weight_uvector": 41, "grn_obj_is_weight_vector": 41, "grn_obj_is_xxx": 41, "grn_obj_own": 50, "grn_obj_path": 48, "grn_obj_path_by_id": 40, "grn_obj_reindex": 50, "grn_obj_remov": [39, 50], "grn_obj_remove_depend": 51, "grn_obj_search": 51, "grn_obj_set_info": 42, "grn_obj_set_info_source_valid": 42, "grn_obj_table_dat_kei": 39, "grn_obj_type_to_str": 51, "grn_obj_ubref": 41, "grn_obj_unlink": 41, "grn_obj_unref": 41, "grn_obj_vector": 68, "grn_object_corrupt": 100, "grn_op_adjust": [11, 51], "grn_op_adjust\u306f": 11, "grn_op_and": [11, 41], "grn_op_and\u306f": 11, "grn_op_but": 11, "grn_op_but\u306f": 11, "grn_op_cal": 11, "grn_op_fuzzi": 51, "grn_op_get_valu": 52, "grn_op_or": 11, "grn_op_or\u306f": 11, "grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f": 11, "grn_op_push": 11, "grn_op_term_extract": 50, "grn_oper": [41, 68], "grn_operation_not_permit": 100, "grn_operation_not_support": 100, "grn_operation_timeout": 100, "grn_operation_would_block": 100, "grn_operator_to_exec_func": 52, "grn_order_by_estimated_size_en": [41, 52], "grn_output_range_norm": 45, "grn_p": 74, "grn_p_geo_point": 74, "grn_p_ii_valu": 74, "grn_parse_query_flag": 50, "grn_pat_at": 37, "grn_pat_cursor_next": 50, "grn_pat_del": 50, "grn_pat_fuzzy_search": 51, "grn_permission_deni": 100, "grn_persistent_cache_open": 52, "grn_plugin_calloc": 51, "grn_plugin_charlen": 85, "grn_plugin_command_cr": [49, 85], "grn_plugin_error": [85, 100], "grn_plugin_expr_var_init": [49, 85], "grn_plugin_fin": 85, "grn_plugin_fre": 85, "grn_plugin_get_nam": 50, "grn_plugin_get_ruby_suffix": 50, "grn_plugin_get_suffix": 39, "grn_plugin_get_system_plugins_dir": 39, "grn_plugin_init": 85, "grn_plugin_isspac": 85, "grn_plugin_log": 85, "grn_plugin_malloc": 85, "grn_plugin_mutex": 85, "grn_plugin_mutex_clos": 85, "grn_plugin_mutex_lock": 85, "grn_plugin_mutex_open": 85, "grn_plugin_mutex_unlock": 85, "grn_plugin_proc_alloc": 85, "grn_plugin_proc_get_cal": 52, "grn_plugin_proc_get_value_bool": 41, "grn_plugin_proc_get_value_mod": 53, "grn_plugin_proc_get_value_oper": 41, "grn_plugin_proc_get_var": [49, 85], "grn_plugin_proc_get_var_bool": 51, "grn_plugin_proc_get_var_by_offset": [49, 85], "grn_plugin_proc_get_var_int32": 51, "grn_plugin_proc_get_var_str": 51, "grn_plugin_proc_xxx": 41, "grn_plugin_realloc": 85, "grn_plugin_regist": [38, 85], "grn_plugin_win32_base_dir": [50, 85], "grn_plugin_windows_base_dir": [50, 85], "grn_plugins_dir": [50, 53], "grn_plugins_path": 53, "grn_post": 41, "grn_posting_get_posit": 41, "grn_posting_get_record_id": 41, "grn_posting_get_rest": 41, "grn_posting_get_section_id": 41, "grn_posting_get_tf": 41, "grn_posting_get_weight": 41, "grn_posting_get_weight_float": 41, "grn_proc": [22, 57, 59], "grn_proc_cal": 166, "grn_proc_func": 85, "grn_proc_funct": 85, "grn_proc_get_typ": 49, "grn_proc_is_st": 52, "grn_proc_options_pars": 41, "grn_proc_options_parsev": 41, "grn_proc_options_xxx": 41, "grn_proc_set_is_st": 52, "grn_proc_set_selector": 49, "grn_ptr": 50, "grn_ptr_init": 68, "grn_ptr_value_at": 68, "grn_pvector": [50, 68], "grn_qlog_path": 47, "grn_queri": 47, "grn_query_expander_tsv_synonyms_fil": 243, "grn_query_log_show_condit": 53, "grn_query_logger_get_flag": 74, "grn_ra_cast_valu": 111, "grn_range_error": 100, "grn_raw_str": 53, "grn_rc": [61, 68, 71, 84, 85], "grn_read_only_file_system": 100, "grn_request_canceler_cancel_al": 51, "grn_resource_busi": 100, "grn_resource_deadlock_avoid": 100, "grn_resource_temporarily_unavail": [52, 100], "grn_result_set_add_record": 41, "grn_result_set_add_t": 41, "grn_result_set_add_table_cursor": 41, "grn_result_set_add_xxx": 41, "grn_result_too_larg": 100, "grn_retry_max": 100, "grn_rset_add_record": 41, "grn_scan_info_regexp_dot_asterisk_en": 52, "grn_scorer_error": 100, "grn_search": [22, 57, 59], "grn_search_optarg": 50, "grn_select_n_workers_default": 156, "grn_selector_data": 41, "grn_selector_data_get": 41, "grn_selector_data_get_arg": 41, "grn_selector_data_get_expr": 41, "grn_selector_data_get_index": 41, "grn_selector_data_get_op": 41, "grn_selector_data_get_result_set": 41, "grn_selector_data_get_selector": 41, "grn_selector_data_get_t": 41, "grn_selector_data_get_xxx": 41, "grn_selector_func": 49, "grn_set_back_trace_en": 43, "grn_set_default_cache_base_path": 52, "grn_set_reference_count_en": 43, "grn_slow_log_threshold": 43, "grn_snip": [47, 49], "grn_snip_clos": 49, "grn_sock": 302, "grn_socket_is_already_connect": 100, "grn_socket_is_already_shutdown": 100, "grn_socket_is_not_connect": 100, "grn_socket_not_initi": 100, "grn_stack_over_flow": 100, "grn_sub_filter_pre_filter_threshold": 43, "grn_success": [61, 68, 84, 85, 100, 228], "grn_syntax_error": 100, "grn_t": 50, "grn_tabl": [22, 57, 59], "grn_table_apply_expr": 52, "grn_table_at": [37, 40], "grn_table_cursor": [22, 41, 57, 59], "grn_table_cursor_get_max_n_record": 41, "grn_table_cursor_next": 37, "grn_table_cursor_open": 37, "grn_table_delet": 50, "grn_table_delete_by_id": 50, "grn_table_find_reference_object": 52, "grn_table_fuzzy_search": 51, "grn_table_fuzzy_search_with_transposit": 51, "grn_table_get": 40, "grn_table_group": 50, "grn_table_group_flag": 50, "grn_table_s": 11, "grn_table_select": [3, 68], "grn_table_select_and_min_skip_en": 52, "grn_table_select_enough_filtered_ratio": [51, 53, 54], "grn_table_select_sequenti": 51, "grn_table_setoper": [51, 52], "grn_table_sort": 45, "grn_table_trunc": 39, "grn_text_init": 74, "grn_text_len": [68, 74], "grn_text_printf": 49, "grn_text_printfv": 41, "grn_text_valu": [68, 74], "grn_text_vprintf": [41, 49], "grn_thread_": [22, 57, 59], "grn_thread_dump": 166, "grn_thread_get_limit": [50, 81], "grn_thread_get_limit_func": 81, "grn_thread_set_get_limit_func": [81, 167], "grn_thread_set_limit": 81, "grn_thread_set_limit_func": 81, "grn_thread_set_set_limit_func": [81, 167], "grn_time_usec_to_sec": 41, "grn_timev": 41, "grn_timeval_from_doubl": 41, "grn_timeval_to_nsec": 41, "grn_token_column_parallel_chunk_s": 41, "grn_token_column_parallel_table_size_threshold": 41, "grn_token_filter_error": 100, "grn_tokenize_onli": 51, "grn_tokenizer_error": 100, "grn_tokenizer_query_open": 47, "grn_too_large_offset": 100, "grn_too_many_link": 100, "grn_too_many_open_fil": 100, "grn_too_many_open_files_in_system": 100, "grn_too_many_symbolic_link": 100, "grn_too_small_limit": 100, "grn_too_small_offset": 100, "grn_type": [22, 57, 59, 74], "grn_type_id": 41, "grn_type_id_is_float_famili": 41, "grn_type_id_s": 41, "grn_unknown_error": 100, "grn_unsupported_command_vers": 100, "grn_update_not_allow": 100, "grn_user_data": [22, 57, 59, 85], "grn_vector_copi": 41, "grn_vector_pop_el": 50, "grn_void": 51, "grn_wgs84_geo_point_init": 74, "grn_window_function_error": 100, "grn_window_get_s": 52, "grn_with_bundled_onigmo": 45, "grn_zlib_error": 100, "grn_zstd_error": 100, "grndb": [22, 41, 42, 49, 50, 51, 52, 53, 54, 57, 106, 143, 172], "grnline": 308, "grnslap": [22, 57, 172], "grnslap\u306f": 174, "grntest": [13, 37, 39, 47, 51], "grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc": 37, "grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63": 37, "grnwrap": 308, "gro": [42, 180, 205, 206, 208], "gronga": [243, 252], "gronnga": 252, "groo": [156, 180], "groon": 44, "groonag": 156, "groong": [44, 237], "groonga": [1, 2, 12, 13, 16, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 59, 60, 61, 64, 81, 84, 85, 87, 91, 92, 93, 95, 96, 97, 99, 101, 102, 103, 106, 110, 111, 112, 114, 118, 122, 123, 124, 125, 129, 131, 132, 134, 135, 137, 138, 144, 145, 151, 153, 155, 156, 157, 158, 159, 161, 164, 166, 167, 168, 171, 172, 173, 188, 191, 192, 193, 194, 195, 196, 197, 202, 203, 205, 206, 208, 209, 210, 219, 221, 223, 224, 225, 226, 227, 228, 229, 230, 237, 238, 239, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 260, 262, 264, 272, 273, 275, 281, 282, 289, 290, 291, 292, 295, 298, 301, 302, 303, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "groonga1": 93, "groonga_cache_base_path": 52, "groonga_cache_limit": 48, "groonga_cli": 225, "groonga_clone_dir": 12, "groonga_databas": 292, "groonga_database_auto_cr": [47, 48], "groonga_default_command_vers": 292, "groonga_dir": 12, "groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059": 12, "groonga_dir\u4ee5\u4e0b\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 12, "groonga_dist": 47, "groonga_get_thread_limit": 81, "groonga_log_level": 48, "groonga_log_path": 48, "groonga_n_record": 48, "groonga_org_path": 12, "groonga_org_path\u306bgroonga": 12, "groonga_path": 176, "groonga_query_log_path": [48, 49], "groonga_set_thread_limit": 81, "groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0": 38, "groonga_vers": 39, "groongau0000ful": 273, "groonga\u3068mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba": 36, "groonga\u306edocker\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc": 12, "groonga\u306edocker\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306egithub": 12, "groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306fgroonga\u540c\u69d8\u306bgithub\u306b\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u7f6e\u3044\u3066\u3044\u307e\u3059": 12, "groonga\u306e\u30ab\u30e9\u30e0\u306f": 282, "groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f": 89, "groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057": 11, "groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067": 14, "groonga\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c": 12, "groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb": 37, "groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b": 12, "groonga\u306f": 14, "groonga\u306f\u3068\u3066\u3082\u901f\u3044": 44, "groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089": 11, "groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059": [299, 301], "groonga\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3057\u305f\u7d50\u679c\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306b\u9650\u308a": 301, "groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059": 11, "groonga\u3092\u4f7f\u3044\u59cb\u3081\u307e\u3057\u305f": 156, "groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066": 10, "groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066": 10, "groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093": 176, "groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059": 12, "groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b": 12, "groonga\u3092\u8d77\u52d5\u3059\u308b\u969b\u306e\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306a\u3044\u3057\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb\u306bdefault": 93, "groonga\u30b0\u30eb\u30fc\u30d7\u306e\u30e1\u30f3\u30d0\u30fc\u3068\u3057\u3066\u6295\u7a3f\u3067\u304d\u307e\u3059": 12, "groonga\u30b0\u30eb\u30fc\u30d7\u306e\u30e1\u30f3\u30d0\u30fc\u306b\u306a\u308b\u3068": 12, "groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066": 176, "groonga\u30b3\u30de\u30f3\u30c9\u306b": 37, "groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 176, "groonga\u30b3\u30de\u30f3\u30c9\u3092\u901a\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u547d\u4ee4\u3092\u30b3\u30de\u30f3\u30c9\u3068\u547c\u3073\u307e\u3059": 175, "groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc": 37, "groonga\u30c1\u30fc\u30e0": 12, "groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0": 176, "groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 39, "groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5bfe\u3059\u308b\u691c\u7d22\u51e6\u7406\u3084\u66f4\u65b0\u51e6\u7406\u306e\u305f\u3081\u306e\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u305f\u3081\u306e\u30c7\u30fc\u30bf\u69cb\u9020\u3067": 11, "groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf\u3067\u3059": 11, "groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u4e00\u7fa4\u306ec\u8a00\u8a9e\u5411\u3051api\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059": 11, "groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082": 93, "groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059": 147, "groonga\u30d7\u30ed\u30bb\u30b9\u306b\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 175, "groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044": 174, "groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059": 175, "groonga\u30d7\u30ed\u30bb\u30b9\u306e\u901a\u4fe1\u5c64\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30c4\u30fc\u30eb": 174, "groonga\u30d7\u30ed\u30bb\u30b9\u5185\u306e\u6307\u5b9a\u3057\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059": 108, "groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b": 93, "groonga\u5358\u4f53\u3067test": 176, "groonga\u53ca\u3073groonga": 176, "groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570": [108, 109, 113, 119, 120, 130, 147, 162], "groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default": 93, "groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059": 176, "groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068": 174, "groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f": 176, "groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u30921\u884c\u306b1\u3064\u305a\u3064\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059": 176, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 108, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 109, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 113, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 119, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 120, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 130, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 147, "groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 162, "groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 185, "groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 189, "groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 190, "groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 199, "groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 204, "groonga\u95a2\u9023\u3067\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u306a\u3044\u3068\u306a\u308b\u3068\u958b\u767a\u8005\u306f\u56f0\u3063\u3066\u3044\u308b\u4eba\u3092\u898b\u3064\u3051\u3089\u308c\u306a\u3044\u3057": 10, "grooon": 180, "grooonga": 52, "groovi": [41, 42, 43], "group": [0, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 54, 132, 134, 135, 156, 208, 210, 254, 305, 306, 311], "group_kei": [41, 52, 286], "grow": [54, 56], "grroonga": 252, "grunga": 56, "gt": [44, 191, 192, 193, 206], "gted": 17, "gtihub": [39, 41], "guard": [50, 125, 247], "guess": 43, "gui": 155, "guid": 27, "gurun": 223, "gurunavi": [50, 51, 52], "guthub": 54, "gz": [12, 27, 31], "gzcat": 51, "gzip": [31, 47, 291], "gzip_typ": 292, "gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059": 12, "h": [16, 50, 85, 156, 168, 173, 174, 175, 177, 237, 275, 277, 292], "h3": [45, 94, 158, 177, 298, 308, 312], "ha": [0, 19, 26, 31, 34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 60, 85, 87, 91, 95, 96, 105, 106, 111, 112, 114, 121, 123, 132, 134, 135, 137, 138, 139, 141, 142, 143, 153, 155, 156, 159, 161, 163, 164, 166, 167, 168, 169, 173, 175, 177, 178, 179, 180, 183, 184, 188, 191, 192, 193, 195, 201, 203, 206, 210, 211, 212, 219, 223, 224, 225, 226, 228, 229, 231, 232, 233, 234, 235, 237, 238, 239, 241, 243, 244, 245, 246, 247, 248, 249, 251, 252, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 272, 274, 275, 276, 278, 281, 286, 291, 292, 296, 298, 305, 306, 307, 308, 310], "hack": 237, "had": [17, 41, 42, 43, 44, 45, 50, 51, 53, 54, 56, 245], "hai": 11, "half": [42, 53, 56, 230, 231, 232, 233, 234, 235, 257, 258, 259], "halfwidth": [230, 231, 232, 233, 234, 235, 258, 259], "halt": 41, "hana": 307, "hanako": 121, "hand": [0, 31, 43, 50, 51, 111, 156, 177, 180, 183, 196, 202, 210, 305, 310], "handl": [41, 42, 43, 48, 49, 50, 51, 52, 53, 54, 100, 111, 177, 254, 265, 266, 267, 268, 269, 270, 271, 281, 303, 305], "handwritten": 42, "hang": 48, "hanleabl": 111, "happen": [42, 44, 45, 52], "hard": 281, "hash": [39, 41, 42, 43, 47, 48, 50, 51, 52, 53, 54, 104, 111, 122, 142, 155, 161, 225, 254], "hash_index": 311, "hash_kei": [53, 124, 141, 142, 254], "hash_tag": 311, "hashida": [42, 43, 54], "hashidatk": 54, "hasn": [41, 54, 230, 236, 264, 265, 266, 267, 268, 269, 270, 271, 273, 277, 279, 280], "hat": 31, "hatak": [49, 50], "have": [0, 6, 16, 17, 18, 21, 27, 31, 41, 42, 43, 44, 46, 49, 50, 52, 53, 54, 56, 64, 87, 95, 96, 100, 110, 111, 112, 132, 134, 135, 137, 141, 142, 149, 156, 157, 159, 161, 163, 173, 177, 180, 186, 201, 205, 224, 225, 226, 229, 237, 239, 243, 244, 248, 251, 253, 255, 261, 264, 281, 282, 291, 292, 296, 305, 308, 312], "haven": [43, 123], "haystack": 11, "hdd": [41, 111, 161, 176], "he": [42, 156, 262, 264, 267, 268, 275], "he11o": 156, "head": [21, 49, 156, 174, 177, 298], "header": [41, 42, 43, 45, 47, 48, 49, 50, 74, 96, 99, 100, 107, 110, 111, 114, 118, 121, 123, 124, 125, 127, 129, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 143, 144, 145, 149, 150, 151, 152, 153, 154, 156, 157, 158, 160, 161, 163, 164, 166, 167, 168, 169, 170, 178, 292], "heart": 56, "heavi": [52, 124, 156, 231, 232, 233, 234, 235, 258, 259, 290], "hei": [42, 156], "hel": 275, "held": 50, "hello": [41, 42, 43, 44, 45, 50, 96, 111, 123, 132, 134, 135, 156, 165, 224, 225, 226, 261, 262, 264, 267, 268, 272, 275, 277, 310], "help": [16, 17, 27, 44, 48, 52, 54, 156, 173, 175, 240, 244, 245, 252, 274], "help\u3067\u51fa\u529b\u3055\u308c\u308b": 39, "help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044": 14, "hemispher": 47, "hendro": 48, "her": 44, "here": [6, 17, 18, 21, 27, 31, 32, 43, 44, 45, 52, 53, 58, 61, 64, 68, 74, 81, 84, 85, 91, 96, 97, 98, 99, 100, 107, 110, 111, 112, 114, 115, 116, 117, 121, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 139, 141, 142, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 163, 164, 165, 168, 169, 170, 173, 175, 177, 178, 179, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 243, 244, 245, 246, 247, 250, 251, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 272, 273, 274, 275, 276, 278, 281, 286, 292, 298, 306, 310, 315], "hereaft": 0, "hereinaft": 56, "hex": [225, 307], "hh": [50, 225, 228], "hi": [56, 156], "hi12x": 156, "hidden": [0, 53], "hide": 48, "hideki": [48, 49, 50], "hideya": 56, "higchi": [42, 43], "high": [0, 41, 53, 91, 106, 156, 197, 223, 246], "high_scor": 110, "higher": [27, 94, 111, 156, 159], "highest": 111, "highight": 191, "highight_ful": 192, "highli": [42, 44, 245, 246, 247], "highlight": [22, 41, 44, 45, 51, 53, 54, 57, 182, 192, 193, 237, 275], "highlight_ful": [22, 41, 49, 51, 52, 57, 182, 193], "highlight_html": [22, 41, 44, 45, 49, 50, 51, 52, 53, 54, 57, 182, 191, 192, 275], "hilight": 44, "hill": 27, "hino": 48, "hint": 302, "hippo": [42, 43], "hiragana": [44, 53, 54, 201, 224, 225, 231, 232, 233, 234, 235, 240, 250, 257, 258, 259, 264], "hiro": 50, "hiroaki": [50, 51], "hiroshi": [39, 49, 50, 51], "hiroshi\u3055\u3093": 37, "hiroshi\u3055\u3093\u304c\u5831\u544a": 37, "hirotaka": 50, "hiroyuki": [50, 51, 56], "hirsut": [42, 43], "histori": [39, 45, 52, 56], "hit": [41, 43, 44, 45, 48, 53, 54, 111, 156, 223, 313], "hmm": 311, "ho": 277, "hoang": 45, "hobbi": 228, "hoge": [175, 185], "hold": [305, 309], "home": [12, 31, 45, 277], "homebrew": [12, 22, 23, 49, 51], "homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0": 39, "homebrew\u306e\u66f4\u65b0\u306fgroonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u672c\u4f53\u306e\u30ea\u30ea\u30fc\u30b9\u8981\u4ef6\u306b\u306f\u542b\u307e\u308c\u307e\u305b\u3093": 12, "homebrew\u3078pul": 12, "homepag": 176, "hook": [21, 137, 149], "hope": 56, "hori": 56, "horikoshi": 39, "horimoto": [45, 53], "horizont": [231, 232, 233, 234, 235, 258, 259], "host": [6, 7, 8, 21, 39, 41, 176, 178, 180, 244, 248, 298, 312], "host1": 244, "host2": 244, "host_name_or_ip_address": [298, 312], "hostnam": [47, 175, 176, 177, 178, 298], "host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059": 176, "hottolink": 55, "hotwagn": 54, "hour": [42, 106, 173, 225, 228, 311], "hour2": 134, "how": [4, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 41, 43, 44, 45, 46, 47, 49, 50, 51, 52, 54, 56, 57, 85, 96, 111, 132, 133, 135, 137, 155, 156, 163, 180, 188, 195, 197, 202, 203, 219, 225, 228, 239, 244, 245, 246, 247, 249, 257, 260, 274, 281, 289, 295, 300, 305, 306, 307, 308, 310, 311], "how_to_use_range_index": 133, "howev": [0, 41, 42, 43, 44, 45, 54, 94, 111, 123, 132, 134, 135, 156, 186, 191, 192, 193, 225, 231, 235, 272], "howto": [51, 52], "html": [3, 12, 37, 39, 41, 43, 44, 47, 49, 51, 54, 106, 111, 177, 178, 191, 192, 193, 205, 206, 292], "html_escap": 205, "html_untag": [22, 48, 57, 111, 182], "html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068": 175, "htpasswd": [177, 292], "http": [0, 1, 12, 13, 17, 21, 22, 24, 25, 27, 28, 31, 32, 33, 41, 43, 44, 47, 48, 49, 50, 51, 52, 54, 57, 91, 94, 122, 125, 153, 156, 157, 172, 174, 175, 176, 177, 180, 194, 195, 196, 219, 244, 253, 272, 289, 290, 293, 302, 304, 305, 306, 307, 308, 310, 315], "http_refer": 177, "http_user_ag": 177, "http_x_forwarded_for": 177, "httpd": [22, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 61, 131, 153, 167, 172, 178, 179, 228, 252, 289, 291, 292], "httprewritemodul": 177, "http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059": 174, "http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b": 37, "http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 174, "http\u306e\u5834\u5408": 175, "http\u30b5\u30fc\u30d0\u3068\u3057\u3066groonga\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306b\u9759\u7684\u30da\u30fc\u30b8\u3092\u683c\u7d0d\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059": 175, "http\u7d4c\u7531\u3067\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u6642\u306b\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b": 37, "hub": 12, "hubeni": 188, "hub\u306egroonga": 12, "hug": 227, "huge": [41, 42, 43, 54], "human": [112, 161], "hung": 41, "hye": 156, "hypehn": 156, "hyper": 156, "hypertext": [22, 304], "hyphen": [44, 53, 111, 156, 161, 231, 232, 233, 234, 235, 257, 258, 259, 308], "i": [0, 1, 5, 6, 7, 8, 13, 17, 18, 21, 23, 24, 25, 27, 28, 30, 31, 32, 33, 34, 39, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 64, 68, 74, 81, 84, 85, 87, 90, 91, 92, 95, 96, 97, 98, 99, 100, 101, 104, 105, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 173, 175, 176, 177, 178, 179, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 284, 286, 290, 291, 292, 296, 298, 302, 303, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "i1": 52, "i10a": [43, 44], "i18n": [3, 15, 22, 43, 44, 51], "i386": 39, "i686": 176, "ia": [299, 301], "ic": 277, "ichii": 39, "id": [22, 28, 39, 41, 45, 47, 49, 50, 51, 53, 54, 57, 74, 91, 92, 108, 110, 111, 114, 121, 123, 141, 142, 155, 157, 162, 164, 175, 180, 228, 298, 305, 308], "idea": 156, "idempot": [43, 44], "identifi": [52, 58, 110, 121, 282], "ideograph": [50, 53], "idf": [41, 49, 245, 246, 247], "idx_airport_nam": 44, "idx_animals_sound": 44, "idx_city_nam": 44, "idx_contry_nam": 44, "idx_food_nam": 44, "idx_plant_nam": 44, "idx_shark_nam": 44, "ieee": [111, 282], "ifexist": 44, "iff": 308, "ignor": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 111, 121, 124, 138, 153, 156, 168, 224, 225, 243, 254, 261, 265, 266, 267, 268, 275, 278], "ignore_blank": 45, "ii": [43, 44, 51, 53, 71, 96, 111, 244], "ii_buff": 71, "iii": 43, "iiii": 43, "il": [299, 301], "ill": 299, "illegal_byte_sequ": 298, "illustr": 306, "imag": [22, 23, 43, 53], "imagin": [156, 306], "immedi": [0, 41, 42, 43, 44, 50, 51, 54, 153, 157, 177, 180], "immut": 141, "impact": [41, 149], "impish": [42, 43, 44], "implement": [17, 39, 41, 42, 44, 45, 47, 49, 50, 51, 55, 56, 99, 110, 111, 132, 135, 154, 156, 177, 178, 188, 201, 224, 225, 247, 248, 254, 290, 291], "implemnt": 291, "implicitli": 310, "import": [0, 27, 31, 39, 42, 43, 47, 48, 50, 53, 61, 91, 92, 106, 111, 156, 161, 168, 177, 224, 243, 245, 246, 247, 262, 292, 309, 310], "impress": 56, "improper_link": 298, "improv": [124, 156, 177, 196, 223, 225, 296], "in_record": [22, 52, 57, 182], "in_valu": [22, 42, 49, 50, 51, 52, 57, 182], "inaccur": [47, 111], "inada": 48, "inappropriate_i_o_control_oper": 298, "inc": [22, 49, 50, 51, 52], "incid": 56, "includ": [6, 16, 27, 41, 42, 43, 44, 45, 48, 49, 50, 51, 53, 54, 56, 94, 95, 96, 110, 111, 112, 114, 123, 125, 132, 134, 135, 137, 138, 141, 143, 144, 145, 151, 154, 156, 164, 165, 168, 180, 183, 202, 205, 206, 219, 224, 225, 243, 246, 247, 264, 272, 274, 275, 292, 308, 310], "include_class": 53, "include_form": 53, "include_read": [53, 231, 232, 233, 234, 235], "inclus": [53, 183], "incompat": [42, 43, 46, 47, 48, 49, 50, 51, 52, 54, 111], "incompatible_file_format": 298, "incomplet": 51, "inconsist": 45, "inconveni": 43, "incorrect": [42, 43, 44, 45, 49, 54, 208], "incorrectli": [45, 54], "incoveni": 43, "increas": [0, 6, 43, 44, 45, 50, 52, 54, 81, 91, 111, 139, 154, 156, 158, 168, 169, 180, 188, 244, 247, 262, 281], "increment": [42, 43, 52, 96, 98, 111, 125, 173, 286], "incres": 49, "indent": 74, "independ": [0, 133, 156, 177, 231, 232, 233, 234, 235, 274], "index": [17, 22, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 71, 74, 91, 94, 96, 104, 106, 112, 122, 123, 124, 132, 133, 134, 135, 137, 141, 142, 149, 152, 156, 163, 165, 173, 175, 183, 186, 195, 196, 201, 205, 206, 208, 209, 224, 225, 237, 239, 254, 262, 276, 277, 278, 281, 304, 311], "index_1": 155, "index_2": 155, "index_blog": 310, "index_column": [41, 42, 49, 50, 51, 123, 124, 156], "index_column_df_ratio": 52, "index_column_df_ratio_between": 52, "index_column_diff": [22, 42, 54, 57, 92], "index_column_have_source_record": [43, 44], "index_column_nam": 155, "index_column_name_with_table_nam": 155, "index_column_source_record": 52, "index_column_value_statistics_n_physical_seg": 54, "index_column_value_statistics_next_physical_segment_id": 54, "index_cont": 45, "index_friend": 307, "index_larg": [54, 111, 141], "index_medium": [111, 141], "index_messag": 310, "index_n": 155, "index_nam": 42, "index_point": 307, "index_smal": [111, 141], "index_tag": 307, "index_titl": 310, "index_xxx": 141, "indexblog1": 310, "indexblog2": 310, "indic": [43, 48, 74, 96, 168, 188, 228, 308, 313], "indispens": 56, "individu": [43, 156], "indri": [42, 43, 44], "ineffect": 41, "infin": [41, 52], "infinit": [39, 44, 47, 49, 50, 161], "inflected_form": [53, 274], "inflected_typ": [53, 274], "influenc": [43, 175, 177], "info": [27, 50, 51, 52, 111, 129, 130, 173, 175, 177, 228, 244, 247], "inform": [0, 2, 17, 18, 22, 40, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 56, 96, 112, 134, 141, 142, 144, 151, 154, 155, 156, 158, 173, 175, 228, 229, 304, 307, 311], "inherit": 48, "inhibit": 40, "init": [31, 47, 48, 49], "initi": [39, 41, 43, 47, 49, 50, 51, 52, 53, 54, 56, 84, 85, 111, 132, 134, 135, 156], "inl": 166, "inlin": 42, "inner": 45, "innodb": 0, "input": [39, 42, 43, 44, 48, 51, 52, 53, 54, 64, 95, 96, 122, 125, 156, 197, 225, 240, 250, 251, 252, 253, 257, 258, 259, 298, 308], "input_file_nam": 95, "input_output_error": 298, "input_typ": [42, 43, 44, 45, 178], "insensit": [156, 201, 244], "insert": [41, 47, 156, 205, 206, 308], "inspect": [48, 49, 50, 51, 52, 54, 74, 141, 155], "inst": 48, "instal": [0, 3, 7, 12, 14, 21, 22, 24, 25, 28, 29, 30, 32, 33, 39, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 85, 103, 156, 178, 260, 274, 296], "install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044": 174, "install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093": 176, "instanc": 45, "instant": [22, 42], "instantli": [0, 42, 205, 206], "instead": [21, 23, 27, 31, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 74, 85, 109, 111, 124, 131, 135, 141, 149, 151, 156, 158, 161, 173, 175, 177, 188, 191, 192, 193, 197, 202, 205, 206, 208, 209, 223, 224, 225, 229, 232, 233, 234, 235, 236, 237, 239, 244, 254, 258, 259, 284, 298, 314], "instroduc": 48, "instruct": [51, 52, 180], "insuffici": [51, 96, 305], "int": [42, 47, 50, 51, 61, 68, 71, 74, 81, 85, 241], "int16": [37, 41, 42, 48, 90, 96, 141, 142, 155], "int32": [41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 54, 90, 91, 110, 111, 114, 135, 141, 142, 155, 156, 159, 161, 164, 170, 180, 183, 186, 188, 198, 202, 203, 224, 225, 245, 246, 247, 250, 251, 253, 301, 306, 307, 308, 310, 311, 315], "int32_min": 44, "int64": [41, 42, 45, 48, 49, 90, 135, 141, 142, 155, 156, 184], "int8": [37, 41, 42, 48, 49, 90, 111, 141, 142, 155, 305], "integ": [42, 43, 44, 50, 51, 91, 96, 100, 111, 141, 142, 156, 167, 175, 186, 282, 298, 305, 308], "integr": [21, 47, 48, 227, 305], "intel": 176, "intend": [43, 44, 47, 49, 210, 224, 310], "intens": 177, "intent": 205, "interact": [298, 308], "interest": [3, 50, 244, 308], "interfac": [41, 47, 54, 125, 180, 241, 308], "intern": [40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 51, 56, 61, 64, 74, 96, 124, 141, 142, 149, 227, 237, 305], "internet": [0, 22, 223], "interpret": [40, 224, 272], "interrupt": 53, "interrupted_function_cal": 298, "interv": [43, 44, 51, 54, 111, 224, 225], "introduc": [3, 18, 43, 44, 45, 49, 50, 51, 52], "introduct": [3, 15, 17, 22, 49, 57, 122, 149, 150, 159, 249, 298, 308, 312], "introspect": 47, "intuit": 313, "inv_res_column": 176, "inv_thread_column": 176, "invalid": [39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 74, 85, 102, 124, 149, 155, 156, 161], "invalid_": [43, 44, 111], "invalid_argu": [45, 298], "invalid_error": [43, 111], "invalid_format": 298, "invalid_ignor": [43, 111], "invalid_seek": 298, "invalid_warn": [43, 111], "invalidmodescalar": 111, "invalidmodevector": 111, "invers": [49, 245, 247], "invert": [22, 39, 41, 42, 43, 47, 49, 50, 51, 111, 186, 205, 206, 225, 307, 308], "investig": [48, 51, 52, 302, 303, 306], "invis": 111, "involuntari": 42, "io": [24, 25, 28, 50, 52, 55], "io_flush": [22, 41, 50, 51, 52, 53, 54, 57, 92], "ip": [175, 176, 180, 298, 312], "ipad": [30, 274], "ipc": [27, 31, 125], "iptabl": [292, 312], "ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059": 176, "is_a_directori": 298, "is_anim": 305, "is_popular": [132, 134, 135, 156], "is_removable_table_raw": 163, "is_stop_column": 261, "is_stop_word": [42, 45, 49, 50, 53, 165, 261], "isn": [6, 31, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 81, 95, 99, 107, 111, 112, 124, 125, 132, 133, 134, 135, 137, 141, 149, 154, 155, 156, 159, 161, 163, 175, 177, 205, 206, 219, 224, 225, 243, 248, 250, 251, 252, 262, 264, 274, 286, 298], "iso": [42, 43, 173, 225], "isob": 48, "isssu": 48, "issu": [3, 22, 44, 48, 49, 50, 51, 54, 96, 156, 296, 303, 304], "itagaki": 37, "italian": [53, 260], "item": [41, 42, 43, 44, 50, 52, 53, 54, 58, 115, 116, 117, 156, 159, 161, 171, 177, 180, 201, 250, 251, 253, 254, 292, 296], "item_": 159, "item_dataset": [179, 253], "item_queri": [159, 179, 180, 250, 251, 253], "item_query_kana": 180, "item_query_kei": 180, "itemlog": 135, "itemlogs_20170415": 135, "itemlogs_20170416": 135, "items_index": 201, "iter": [50, 56, 225], "its": [3, 20, 43, 45, 47, 50, 52, 53, 56, 68, 81, 85, 91, 111, 112, 124, 125, 132, 135, 137, 149, 155, 156, 163, 164, 173, 195, 225, 228, 237, 246, 250, 275, 295, 298, 302, 305, 308, 310, 311, 312], "itself": [41, 48, 49, 52, 91, 168, 224, 243, 244], "iwai": [40, 47, 48, 51], "iwamatsu": 51, "i\u3046": 44, "j": [21, 31], "j4": [14, 31], "j8": 6, "ja": [2, 17, 18, 47, 51, 302], "jacob16bit": 50, "jame": 313, "jammi": [32, 43, 44], "jan": [52, 311], "januari": [42, 225], "japan": [42, 56, 121, 250, 306, 312, 315], "japanes": [0, 2, 17, 18, 19, 41, 44, 47, 49, 53, 56, 156, 224, 225, 240, 250, 264, 274], "japanese_entries_cont": 156, "japaneseentri": 156, "japaneseterm": 156, "jason": 313, "javascript": [22, 39, 177, 178, 304, 312], "je": 313, "jeff": 313, "jellyfish": [32, 43, 44], "jemalloc": 49, "jennif": 313, "jersei": 311, "jessi": [48, 49, 50, 53], "jfrog": [24, 25, 28], "ji": 240, "jinja2": 12, "jira": 51, "jiro": 307, "job": [54, 158, 176], "john": [121, 313], "join": 2, "josep": [42, 43, 54], "joseph": 313, "jp": [12, 44, 48, 50, 55, 156, 277, 302], "jq": 308, "jqueri": 49, "jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63": 37, "json": [37, 39, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 64, 91, 97, 125, 159, 177, 178, 241, 292, 298, 308], "jsonp": [50, 180], "jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63": 39, "juli": [42, 43, 45, 50, 52, 53], "jun": [49, 50], "just": [6, 17, 21, 23, 28, 31, 32, 33, 39, 41, 42, 43, 44, 47, 48, 49, 50, 52, 56, 61, 84, 95, 97, 107, 111, 114, 121, 132, 137, 138, 140, 141, 144, 149, 151, 153, 154, 156, 161, 163, 164, 168, 173, 175, 179, 180, 186, 202, 224, 225, 226, 228, 237, 243, 245, 248, 250, 262, 272, 291, 292, 311], "k": [237, 307], "ka": 230, "kagami": 50, "kakesa": 50, "kamicup": 54, "kana": [53, 159, 179, 180, 231, 232, 233, 234, 235, 240, 250, 251, 253, 274], "kanako": 48, "kanji": [56, 240, 264], "kare": [231, 232, 233, 234, 235], "kashihara": 49, "katagiri": 48, "katakana": [53, 54, 159, 201, 230, 231, 232, 233, 234, 235, 240, 250, 257, 258, 259, 264], "kate": 27, "kato": 54, "kawada": 49, "kawaji": 47, "kazuhiko": [47, 49, 51], "kazuhiro": [42, 43, 48], "keep": [34, 39, 42, 43, 44, 45, 51, 52, 53, 54, 61, 91, 99, 149, 173, 177, 226, 246, 247, 274], "keep_origin": 42, "kei": [0, 22, 34, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 58, 74, 91, 96, 104, 110, 111, 120, 121, 125, 132, 134, 137, 141, 153, 155, 158, 159, 161, 163, 171, 173, 180, 202, 203, 208, 209, 224, 225, 229, 237, 240, 254, 262, 278, 286, 304, 305, 306, 307, 308, 314], "keitaro": [42, 43], "ken": 307, "kenichi": [37, 39], "kensaku": 56, "kentaro": 48, "kept": [53, 134, 135, 156], "kernel": [47, 228, 281], "kernel32": 166, "key1": [52, 110], "key2": 52, "key_1": 155, "key_2": 155, "key_float": 142, "key_geo_point": 142, "key_index": 163, "key_int": 142, "key_larg": [34, 51, 161, 254], "key_length": 298, "key_n": 155, "key_nam": [135, 156], "key_norm": [47, 50, 161, 229, 230], "key_typ": [44, 45, 111, 155, 156, 175, 176, 305, 306, 307, 308, 310, 311, 313], "key_uint": 142, "key_valu": 53, "key_var_s": 142, "key_vector_expans": 43, "key_with_si": [161, 224, 225, 313], "key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3068\u540c\u7b49\u3067\u3059": 299, "key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059": 299, "keyboard": 156, "keyr": [41, 47, 54], "keys_zon": 177, "keyword": [41, 42, 43, 44, 45, 47, 48, 51, 52, 53, 54, 68, 133, 156, 161, 191, 192, 193, 202, 205, 206, 224, 244, 245, 246, 247, 252, 275, 276, 278, 307, 308, 310], "keyword1": [47, 54, 191, 192, 202, 205], "keyword2": [47, 54, 191, 192, 202, 205], "keyword_cont": 68, "keyword_s": 68, "kfc": 239, "kill": 157, "kind": [0, 41, 43, 74, 282, 306, 308, 314, 315], "kinjir": 307, "kisk": 47, "kitaiti": 51, "kiyokawa": 51, "kk": 244, "klose": 50, "km": 311, "know": [43, 44, 45, 46, 50, 54, 111, 124, 149, 156, 173, 262, 306, 307, 311], "knowledg": 0, "known": [0, 41, 48, 156, 205, 206, 225, 245, 278, 308, 312], "ko": 55, "koi8r": [31, 47, 175], "koji": 47, "konishi": 48, "korea": 306, "kosuk": 48, "kouhei": 48, "kqueue": [41, 94, 158, 177, 298, 308, 312], "kuriyama": [49, 50], "kwic": [205, 206], "kytea": [31, 47, 48, 53, 168], "l": [74, 175, 180, 181, 264, 275], "label": [41, 43, 44, 48, 49, 50, 51, 52, 53, 54, 110, 201], "label1": [49, 135, 156], "label2": [135, 156], "label_1": 156, "label_2": 156, "label_n": 156, "labeledargu": 52, "lack": [54, 56, 302], "lager": [41, 48], "lake": 239, "land_mark_index": 41, "landmark": 41, "landscap": 22, "langasek": 51, "languag": [0, 1, 3, 18, 20, 21, 22, 41, 42, 45, 48, 49, 51, 52, 53, 56, 57, 156, 197, 260, 264, 274], "language_model": [197, 227], "language_model_vector": [22, 57, 182, 227], "larg": [0, 41, 42, 43, 44, 45, 47, 50, 51, 52, 53, 54, 56, 125, 141, 149, 156, 173, 224, 225, 231, 232, 233, 234, 235, 248, 254, 258, 259, 262, 281, 292, 305], "larger": [41, 42, 43, 44, 49, 50, 52, 91, 99, 111, 118, 134, 135, 141, 142, 156, 161, 175, 181, 205, 206, 224, 225, 253, 254, 281, 298], "larget": 153, "largetext": 254, "last": [41, 42, 43, 44, 47, 50, 52, 156, 168, 180, 205, 224, 225, 264, 286, 302], "last_modifi": 311, "lat": 176, "late": 156, "latenc": 176, "later": [39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 96, 110, 124, 125, 132, 134, 135, 153, 156, 175, 191, 192, 193, 194, 210, 224, 225, 229, 230, 237, 244, 248, 308], "latest": [2, 6, 7, 8, 24, 25, 27, 28, 29, 31, 33, 42, 49, 50, 51, 156], "latin": [45, 53, 175, 231, 235], "latin1": [31, 47], "latinov": 51, "latitud": [22, 74, 225, 304, 311, 315], "latitude_in_degre": 225, "latitude_in_degreexlongitude_in_degre": 225, "latitude_in_msec": 225, "latitude_in_msecxlongitude_in_msec": 225, "latter": [58, 180, 224, 225, 230, 243], "launch": 181, "launchpad": [12, 32, 49], "launchpad_uploader_pgp_kei": 12, "launchpad\u3067\u30d3\u30eb\u30c9\u3057\u3066\u3044\u307e\u3059": 12, "launchpad\u306egroonga\u30c1\u30fc\u30e0\u306e\u30da\u30fc\u30b8\u3067\u5bfe\u8c61\u306eppa\u3092\u9078\u629e\u3057": 12, "layer": 50, "lc_messag": [17, 18], "lcov": 14, "ld": [262, 264, 275], "lead": [41, 56, 132, 134, 135, 156, 206, 308], "leak": [37, 39, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 158], "leakag": 314, "leaner": 181, "lear": 253, "learn": [48, 132, 134, 135, 156, 159, 188, 249, 306, 310], "learner": [22, 49, 51, 57, 172, 179, 252], "learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63": 37, "least": [41, 44, 47, 50, 54, 107, 111, 149, 156, 195, 203, 205, 210, 224, 237, 281, 303], "led": 56, "left": [44, 51, 53], "left_hand_side_el": 51, "leftmost": 225, "legal": 56, "lemon": [58, 156], "length": [47, 51, 53, 85, 178, 305], "lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664": 39, "leo": 41, "less": [41, 43, 49, 50, 51, 52, 53, 99, 156, 161, 175, 186, 195, 202, 205, 206, 219, 223, 226, 244, 246, 247, 281, 282, 296, 315], "less_equ": 202, "let": [22, 44, 54, 91, 111, 132, 134, 135, 156, 163, 188, 226, 264, 276, 278, 302, 304, 305, 307, 308, 310, 314, 315], "letter": [44, 45, 53, 230, 231, 232, 233, 234, 235, 258, 259], "level": [41, 42, 43, 47, 48, 49, 50, 51, 52, 54, 85, 96, 111, 123, 130, 166, 175, 177, 181, 228, 298, 306], "lexcon": 308, "lexicon": [22, 42, 43, 44, 45, 50, 51, 53, 111, 122, 124, 149, 152, 156, 163, 165, 202, 203, 210, 226, 229, 237, 244, 254, 261, 304, 310], "lexicon2": 310, "lexicon_t": 176, "lgpl": 55, "li": [42, 45, 277, 299, 301], "li_scor": 42, "liang": [43, 44], "lib": [27, 31, 37, 42, 43, 45, 48, 111, 115, 118, 132, 134, 135, 137, 143, 144, 145, 151, 156, 163, 166, 173, 177, 296, 302], "libarrow": 31, "libedit": [31, 39, 45, 47, 50, 54], "libedit\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u9055\u3046\u554f\u984c\u306e\u4fee\u6b63": 37, "libedit\u5bfe\u5fdc": 36, "libev": [31, 40], "libgcc_s_sjlj": 49, "libgroonga": [20, 52, 166, 308], "libmecab": 12, "libmemcach": 14, "libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059": 14, "libnginx": 44, "libra": 41, "librari": [1, 20, 22, 27, 33, 42, 44, 47, 48, 49, 50, 51, 52, 59, 64, 84, 167, 175, 223, 245, 290, 296, 302, 308], "libstemm": 49, "libtool": [6, 50], "libwinpthread": 49, "lic": 195, "licens": [45, 47, 49, 54, 55, 56], "life": 50, "lifecycl": 21, "lifetim": 56, "light": [114, 140, 142, 164, 231, 232, 233, 234, 235, 258, 259, 290], "lighthous": 41, "like": [2, 22, 27, 31, 41, 42, 43, 44, 45, 46, 49, 50, 53, 54, 74, 91, 96, 112, 114, 125, 132, 134, 135, 140, 141, 143, 156, 159, 164, 175, 177, 180, 188, 201, 202, 205, 210, 223, 224, 225, 231, 235, 239, 244, 246, 247, 250, 264, 275, 279, 280, 290, 292, 304, 306, 311], "likewis": 156, "limit": [22, 36, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 104, 119, 153, 159, 175, 177, 188, 210, 223, 224, 225, 228, 245, 246, 248, 253, 281, 304, 307, 308, 310, 312], "line": [6, 14, 17, 18, 21, 27, 31, 39, 41, 42, 47, 49, 50, 52, 53, 54, 74, 95, 96, 122, 125, 155, 177, 188, 224, 239, 243, 244, 248, 290, 291, 292, 302, 308], "line_cont": 95, "line_numb": 95, "link": [47, 49, 50, 52, 56, 156, 224, 225, 305, 306, 312], "lintian": 41, "linux": [3, 5, 8, 12, 18, 22, 23, 29, 31, 39, 41, 42, 43, 44, 47, 52, 53, 54, 57, 94, 158, 176, 177, 298, 308, 312], "lion": 47, "lisp": 52, "list": [3, 12, 13, 17, 22, 27, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 68, 74, 111, 112, 124, 133, 136, 139, 141, 142, 156, 158, 161, 169, 175, 177, 179, 181, 224, 225, 229, 239, 276, 302, 305, 307, 308, 310, 311], "listen": [47, 52, 177, 292, 298, 302, 312], "listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "liter": [39, 41, 42, 44, 45, 47, 48, 51, 54, 191, 192, 193, 206, 208, 209, 224, 244, 277], "littl": [41, 43, 44, 54, 56, 111, 156, 175, 177], "live": [161, 311], "livedoor": 56, "ll": [6, 17, 44, 45, 49, 52, 53, 56, 133, 137, 163, 168, 177, 227, 244, 248, 262, 264, 267, 268, 275, 299, 301], "llama": [94, 158, 177, 197, 227, 298, 308, 312], "llc": 56, "lldb": 6, "llo": 275, "llt": 168, "lo": [262, 264, 267, 268, 275], "loack": 106, "load": [22, 37, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 92, 94, 106, 109, 110, 111, 114, 118, 121, 122, 123, 124, 132, 134, 135, 137, 140, 141, 144, 149, 150, 151, 156, 159, 161, 164, 165, 170, 173, 175, 176, 178, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 237, 240, 243, 244, 245, 246, 247, 248, 250, 251, 253, 260, 261, 275, 276, 278, 282, 286, 292, 301, 304, 305, 306, 307, 310, 313, 314, 315], "load_column": [41, 53, 54], "load_tabl": [41, 53, 54], "load_valu": [41, 53, 54], "loaded_id": [51, 125], "loaded_record": 125, "loadedlog": [41, 54], "load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059": 93, "load\u30b3\u30de\u30f3\u30c9": 36, "lobster": 44, "local": [0, 6, 17, 18, 27, 31, 42, 43, 53, 175, 177, 225, 227], "localeoutput": 53, "localhost": [125, 153, 174, 175, 176, 177, 180, 241, 292, 298], "localstatedir\u3092\u4f7f\u7528": 37, "localtim": 42, "locat": [18, 21, 22, 41, 47, 48, 49, 51, 53, 90, 95, 175, 177, 239, 275, 292, 304, 305, 306, 311, 312], "location_in_groonga": 95, "location_in_input": 95, "location_str": 311, "lock": [22, 39, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 85, 106, 124, 125, 126, 127, 128, 205, 206], "lock_acquir": [22, 50, 57, 92, 128], "lock_clear": [22, 49, 50, 52, 57, 92, 109, 126, 128], "lock_releas": [22, 50, 57, 92, 126], "lock_tabl": 53, "log": [12, 22, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 85, 92, 106, 110, 111, 123, 124, 129, 132, 134, 135, 136, 137, 140, 143, 152, 156, 161, 166, 175, 176, 180, 244, 246, 247, 248, 250, 251, 253, 254, 291, 296, 303], "log1": 110, "log_20160320": 137, "log_format": [54, 177], "log_level": [22, 43, 50, 52, 57, 92, 111, 130, 131, 173, 175, 228], "log_put": [22, 50, 57, 92, 129, 131, 175], "log_put\u306f": 130, "log_reopen": [22, 51, 54, 57, 92, 129, 130], "log_repoen": 47, "log_typ": 45, "logal": 21, "logger": [47, 50, 74], "logic": [42, 43, 44, 47, 50, 51, 132, 134, 135, 136, 156, 195, 202, 248, 262], "logical_": [133, 248], "logical_count": [22, 41, 43, 44, 50, 52, 53, 54, 57, 92, 158, 248], "logical_paramet": [22, 50, 57, 92, 248], "logical_range_filt": [22, 41, 43, 44, 50, 52, 53, 54, 57, 92, 132, 133, 158, 248], "logical_select": [22, 41, 50, 51, 52, 53, 54, 57, 92, 132, 134, 137, 158, 191, 192, 193, 248, 283], "logical_shard_list": [22, 50, 57, 92, 137, 248], "logical_table_nam": [132, 134, 135, 248], "logical_table_remov": [22, 41, 50, 51, 52, 57, 92, 124, 248], "login": [42, 43, 281], "logo": [41, 47], "logrot": [47, 49, 50], "logs_20150203": [132, 135, 137, 156], "logs_20150204": 135, "logs_20150801": 136, "logs_20150802": 136, "logs_20150814": 248, "logs_20150815": 248, "logs_20150930": 136, "logs_20160318": 137, "logs_20160319": 137, "logs_20160320": 137, "logs_20160320_timestamp": 137, "logs_20170315": 41, "logs_20170316": 41, "logs_20170317": 41, "logs_20170415": [132, 134], "logs_20170416": [132, 134], "logs_message_index": 244, "logs_timestamp": [41, 152], "logyyyymmddhhmmss": 180, "log\u3067\u3059": 175, "log\u3068\u3044\u3046\u5f62\u5f0f\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u4f5c\u3089\u308c\u307e\u3059": 176, "log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059": 93, "london": 188, "long": [43, 44, 45, 48, 49, 50, 51, 54, 71, 74, 96, 111, 153, 156, 157, 161, 173, 224, 225], "longer": [43, 44, 45, 53, 55, 74, 126, 141], "longest": [39, 43, 225], "longitud": [22, 74, 225, 304, 311, 315], "longitude_in_degre": 225, "longitude_in_msec": 225, "longitudexlatitud": 48, "longtext": [41, 45, 58, 90, 111, 141, 142, 155, 237], "longtext\u306e\uff13\u3064\u306e\u578b\u306b\u3064\u3044\u3066\u306f\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u4fdd\u5b58\u3057\u305f\u308a\u51fa\u529b\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u3059\u304c": 282, "look": [41, 45, 100, 111], "lookahead": 272, "loop": [44, 47, 49, 50, 51], "loos": [53, 184, 186], "loose_blank": [42, 45, 53], "loose_items_index": 201, "loose_symbol": [42, 44, 53], "looseitem": 201, "loss": 18, "lost": [51, 52, 257, 258, 259], "lot": [42, 43, 44, 48, 156], "love": 310, "lower": [111, 156, 161, 168, 244, 308], "lowercas": [45, 244], "lowest": 156, "lru": 107, "lsb": 28, "lsb_releas": 28, "lt": [21, 32, 42, 43, 45, 168, 191, 192, 193, 206], "lte": 168, "lucid": [37, 48], "lucid\u304b\u3089": 37, "lunar": 44, "lunch": 0, "lz4": [41, 49, 51, 52, 53, 94, 111, 141, 155, 158, 177, 298, 308, 312], "lzo": [39, 47, 48, 49], "lzo_error": 298, "lzo\u30b5\u30dd\u30fc\u30c8\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u308b\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308bapi\u3092\u8ffd\u52a0": 37, "m": [12, 18, 42, 43, 156, 173, 174, 226, 260, 310, 311], "mac": [37, 47], "machin": [49, 175], "maco": [18, 22, 23, 49, 51, 54], "macport": [22, 23, 39], "macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0": 39, "macro": [39, 41, 48, 49, 50, 52, 302], "made": [39, 43, 47, 50, 53, 54, 56, 308], "madrid": 188, "magazin": 156, "magnitud": [134, 135], "mai": [0, 20, 27, 31, 34, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 61, 81, 94, 95, 96, 111, 112, 114, 123, 124, 125, 126, 127, 128, 132, 134, 138, 140, 153, 154, 155, 156, 158, 159, 161, 163, 164, 173, 177, 180, 195, 205, 224, 225, 243, 244, 245, 246, 247, 254, 257, 258, 259, 264, 274, 277, 281, 292, 307, 310], "mail": [3, 17, 22, 50], "mail_column": 176, "mailarch": 12, "main": [17, 43, 44, 81, 135, 166], "mainli": [45, 49, 122, 311], "mainlin": [49, 50], "mainstream": 0, "maintain": [43, 45, 54, 56, 274, 278], "mainten": [45, 260, 274], "maintenait": 260, "maintenir": 260, "major": [23, 41, 42, 43, 44, 45, 46, 53, 54, 56], "make": [0, 14, 17, 18, 19, 27, 41, 42, 43, 44, 45, 49, 51, 52, 54, 56, 85, 105, 111, 123, 174, 175, 176, 177, 226, 308, 312, 313], "makecach": 47, "makefil": 27, "makoto": 51, "malfunct": 50, "malloc": 49, "man": [42, 45, 51], "manag": [0, 18, 21, 22, 27, 31, 42, 45, 57, 58, 98, 118, 141, 153, 171, 173, 175, 177, 205, 206, 243, 254, 292, 312], "mandat": 56, "manhattan": 45, "mani": [0, 3, 17, 31, 34, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 56, 81, 91, 111, 123, 124, 132, 134, 135, 137, 142, 156, 161, 163, 165, 168, 177, 179, 224, 225, 244, 245, 246, 247, 252, 254, 281, 290, 291, 292, 296, 302, 305, 306, 308], "manipul": 223, "manner": [156, 308], "mantic": [44, 45], "manual": [22, 27, 31, 42, 45, 49, 226, 227], "man\u3092\u8ffd\u52a0": 36, "map": [39, 43, 50, 52, 58, 110, 118, 156, 158, 228, 250, 281, 303], "map_hugetlb": 39, "mariadb": [43, 48, 49, 51], "mark": [27, 40, 45, 49, 50, 51, 52, 53, 111, 161, 191, 193, 230, 231, 232, 233, 234, 235, 258, 259, 261, 277, 311], "markdown": 18, "market": 42, "marku": 47, "markup": [16, 50], "marshal": 45, "marverick\u306b\u5909\u66f4": 37, "masafumi": [48, 49, 51], "masaharu": [40, 47, 48, 51], "masahiro": [37, 48, 49], "masahiro\u3055\u3093": 37, "masanori": 51, "masatoshi": [50, 53], "massachusett": 311, "master": [12, 44, 177], "masuda": [42, 43], "match": [37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 68, 91, 121, 132, 134, 135, 156, 161, 171, 175, 177, 183, 186, 191, 192, 193, 195, 196, 197, 201, 202, 203, 205, 206, 208, 210, 219, 223, 226, 244, 245, 246, 247, 261, 272, 276, 278, 301, 308, 310, 311], "match_column": [22, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 91, 111, 119, 191, 192, 193, 205, 206, 224, 226, 228, 245, 246, 247, 260, 261, 275, 276, 278, 299, 301, 304, 308, 311, 314], "match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059": 301, "match_escal": 53, "match_escalation_threshold": [31, 37, 42, 44, 45, 53, 171, 186], "math": 198, "math_ab": [22, 52, 57, 182], "matsuu": 37, "matthia": 50, "matur": [1, 296], "maverick": 39, "max": [39, 41, 43, 44, 47, 48, 49, 50, 51, 52, 54, 58, 61, 81, 105, 108, 115, 116, 117, 118, 133, 141, 156, 158, 163, 171, 174, 175, 176, 180, 203, 204, 205, 206, 224, 225, 246, 254, 292], "max_array_segment_id": 141, "max_buffer_segment_id": 141, "max_command_vers": [41, 94, 97, 158, 177, 241, 298, 308, 312], "max_concurr": 174, "max_dist": [41, 44, 51], "max_element_interv": 44, "max_expans": [41, 44], "max_in_use_chunk_id": 141, "max_in_use_physical_segment_id": 141, "max_interv": [44, 225], "max_length": 195, "max_map_count": 303, "max_map_seg": 53, "max_n_enough_filtered_record": 42, "max_n_physical_seg": [54, 141], "max_n_target_record": [43, 44, 156], "max_nfthread": 81, "max_phrase_interv": 44, "max_phrase_interval_1": [44, 225], "max_phrase_interval_2": [44, 225], "max_section_id": 141, "max_token_interval_1": [44, 225], "max_token_interval_2": [44, 225], "max_total_s": 141, "max_tp": 174, "max_valu": 281, "maximum": [27, 34, 41, 42, 43, 50, 98, 111, 132, 135, 137, 141, 142, 156, 161, 183, 225, 245, 246, 254, 298, 303, 305, 308], "mayb": [53, 54], "mcdonald": 239, "md": [12, 18], "mdev": [50, 51], "me": [2, 50, 56, 148, 160, 277], "mean": [31, 41, 42, 45, 47, 48, 49, 50, 51, 52, 53, 56, 58, 64, 68, 85, 91, 99, 100, 111, 112, 118, 124, 126, 127, 128, 129, 131, 132, 134, 135, 137, 141, 143, 149, 152, 153, 156, 158, 159, 168, 171, 173, 175, 177, 180, 202, 203, 210, 224, 225, 228, 229, 239, 240, 243, 244, 246, 247, 248, 250, 257, 258, 259, 262, 268, 271, 281, 303, 305, 306, 308, 310, 315], "meaning": [50, 111], "meaningless": [41, 58, 149, 150, 244], "measur": [0, 39, 44], "mecab": [0, 12, 24, 25, 28, 30, 31, 32, 39, 41, 45, 47, 48, 49, 50, 51, 53, 55, 94, 103, 142, 158, 177, 274, 298, 308, 312], "mecab_new2": 47, "mecab_strerror": 49, "mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u691c\u51fa\u51e6\u7406\u3092\u6539\u5584": 36, "mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u6642\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u3088\u308a\u89aa\u5207\u306b\u3057\u305f": 37, "mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u305f\u3068\u304d\u306b\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 39, "mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 39, "mechan": [47, 50, 177, 186, 292], "media": 49, "median": 49, "medium": [23, 28, 32, 33, 51, 141, 311], "meerkat": 39, "meet": [42, 43, 49, 311, 315], "meetup": 50, "memcach": [0, 1, 22, 50, 51, 289, 312], "memcached\u306e\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u305f\u3081\u306b\u306f": 14, "memcpi": 53, "memo": [41, 42, 43, 44, 45, 50, 142, 155, 195, 196, 197, 202, 203, 208, 209, 212, 219, 221, 245, 246, 247, 260, 261], "memo1": 245, "memo2": 245, "memo3": 245, "memo4": 245, "memo5": 245, "memo6": 245, "memo7": 245, "memo_index": [43, 49], "memor": 18, "memori": [22, 23, 27, 28, 32, 33, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 85, 111, 118, 123, 124, 156, 158, 161, 175, 177, 197, 244, 300, 302], "memory_map_s": [43, 44, 94, 158, 177, 298, 308, 312], "memos_cont": [41, 42, 43, 44, 45, 260, 261], "memos_content_index": [142, 155], "memos_tag": [41, 42, 196], "memos_timestamp": 42, "memset": 50, "mention": [45, 210], "menu": [156, 276], "mercuri": 12, "mere": 56, "merg": [0, 17, 42, 47, 53], "meridian": 188, "merit": [45, 134, 156, 175, 177], "messag": [6, 12, 22, 39, 40, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 85, 95, 111, 125, 130, 173, 175, 244, 246, 247, 300, 310, 311], "message_for_1st_record": 125, "message_for_2nd_record": 125, "message_index": [246, 247], "message_pack": [41, 94, 158, 177, 298, 308, 312], "messagepack": [31, 39, 40, 41, 44, 47, 50, 52, 54, 64, 241, 292, 298], "met": [45, 210], "meta": [47, 112, 173], "metadata": [41, 42, 44, 47, 51, 52, 53, 96, 111, 124, 142, 154, 231, 232, 233, 234, 235, 245, 246, 247, 274, 311], "meter": [188, 198, 315], "method": [18, 42, 43, 48, 50, 52, 53, 56, 141, 155, 156, 208, 225, 240, 250, 262, 264, 266, 267, 268, 269, 270, 271, 275, 277, 279, 280, 308], "micor": 41, "micro": [22, 54, 225, 304, 305], "microsecond": [41, 44, 228, 305], "microsoft": [8, 27, 33, 42, 50, 302], "middl": [44, 53, 123, 156, 231, 232, 233, 234, 235, 258, 259], "midnight": 225, "might": [41, 43, 45, 54, 56, 111], "migrat": [43, 44, 46, 49, 132, 134, 135, 156, 224, 225], "mike": 121, "milk": 42, "million": [34, 54, 56, 111], "millisecond": [99, 175, 180, 225, 305, 315], "mime": [50, 292], "min": [41, 47, 49, 50, 52, 53, 156, 173, 174, 176], "min_interv": 44, "minagawa": [48, 49, 51], "mind": [34, 248], "mine": 0, "mingl": [231, 232, 233, 234, 235, 274], "mingw": [12, 41, 42, 43, 54], "mingw32": 44, "minim": [177, 183], "minimum": [24, 25, 28, 32, 44, 56, 85, 132, 135, 137, 156, 225, 296], "minor": 41, "minotaur": [44, 45], "minu": [42, 231, 232, 233, 234, 235, 257, 258, 259], "minut": [42, 43, 173, 225, 228, 250, 251, 311, 315], "mip": 51, "mipsel": 51, "mirai": 56, "mismatch": [49, 51, 52, 173, 208], "miss": [39, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 123, 155, 243], "missing_": [43, 44, 111], "missing_add": [43, 111], "missing_and": 43, "missing_ignor": [43, 44, 111], "missing_nil": [43, 44, 111], "missingmodescalar": 111, "missingmodescalarref": 111, "missingmodevector": 111, "missingmodevectorref": 111, "mistaken": 41, "mistral": [197, 227], "misunderstand": 42, "mitani": 49, "mitsuhiro": 37, "mitsuo": 48, "mix": [41, 50, 53, 56, 91, 159, 178, 264], "miyashita": 51, "mizuhara": 50, "mkdir": [12, 122], "mkostemp": 49, "mktime": 50, "mm": [42, 43, 44, 225, 228], "mmap": [22, 43, 44, 48, 300], "mnt": 29, "mo": 17, "mobil": 0, "mod": 44, "mode": [17, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 143, 149, 150, 195, 197, 202, 244, 277, 298, 308], "mode1": 195, "mode_nam": 197, "model": [22, 41, 45, 49, 57, 167, 175, 197, 298], "moden": 195, "modern": 311, "modif": [18, 42, 45, 50, 54], "modifi": [18, 31, 41, 51, 52, 173, 231, 232, 233, 234, 235, 258, 259, 303, 312, 314], "modified_at": 44, "modul": [0, 22, 37, 41, 49, 50, 229, 245, 255, 262, 292], "moero": 307, "moment": 41, "mondai": 212, "monei": 307, "monitor": [28, 32, 43, 48], "monkei": 305, "month": [50, 52, 173, 225, 228, 248, 307, 311], "montywi": 40, "mooz\u3055\u3093": 39, "mooz\u3055\u3093\u304c\u4fee\u6b63": 39, "more": [0, 6, 18, 27, 31, 34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 85, 87, 90, 91, 94, 96, 111, 112, 124, 131, 132, 134, 135, 137, 141, 142, 152, 155, 156, 159, 161, 163, 173, 175, 177, 180, 181, 186, 195, 196, 197, 201, 202, 203, 205, 206, 210, 224, 225, 226, 227, 240, 243, 244, 245, 246, 247, 248, 251, 252, 254, 255, 260, 262, 264, 272, 274, 281, 282, 292, 298, 305, 308, 311, 313], "moreov": 315, "mori": 56, "moritapo": 307, "moritar": 310, "morn": 226, "moronga": 156, "morpholog": [0, 31, 156, 225, 274], "most": [42, 49, 50, 52, 91, 92, 94, 111, 135, 142, 156, 186, 224, 225, 227, 244, 246, 264, 277, 292, 305, 308], "motoi": 48, "mountain": 41, "move": [16, 39, 44, 47, 50, 110, 118, 131, 141], "movi": 307, "mpaa": 183, "mrb": [50, 53], "mrb_valu": 51, "mroonag": 156, "mroonaga": 156, "mroonga": [22, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 91, 122, 125, 132, 134, 135, 156, 191, 192, 193, 194, 195, 196, 202, 203, 210, 219, 224, 225, 243, 245, 248, 310], "mroonga_oper": 41, "mroonga\u3082\u4f7f\u3044\u59cb\u3081\u307e\u3057\u305f": 156, "mrubi": [6, 27, 41, 48, 49, 50, 51, 53, 54, 94, 154, 158, 177, 248, 298, 308, 312], "ms740668": 302, "msdn": 302, "msec": 39, "msg_control": 50, "msg_controllen": 50, "msg_flag": 50, "msg_id": 12, "msghdr": 50, "msgpack": [44, 50, 51, 52, 53, 241, 292, 298], "msgpackc": 44, "msg\u306fcom\u306b\u3088\u3063\u3066": 9, "msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b": 9, "msvc": 50, "msyql": 91, "msys2": 12, "msys2\u7528\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u307e\u3059": 12, "mte": 55, "much": [41, 43, 44, 45, 52, 53, 54, 262], "mulitipl": 42, "multi": [0, 27, 31, 39, 41, 42, 43, 44, 49, 50, 51, 53, 54, 156, 177, 228, 237, 291], "multibyt": [39, 44, 51], "multifacet": 56, "multilin": [54, 244], "multilingu": 56, "multipl": [0, 22, 27, 31, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 74, 90, 91, 96, 112, 121, 132, 134, 135, 138, 149, 152, 153, 155, 156, 165, 168, 175, 177, 178, 180, 186, 191, 192, 195, 196, 202, 203, 224, 231, 232, 233, 234, 235, 238, 244, 245, 248, 250, 272, 274, 275, 276, 286, 290, 304, 307, 309, 311], "multipli": [42, 225, 310], "multithread": [27, 31, 50, 118, 153], "munin": [28, 32, 39, 40, 43, 44, 47, 48, 49], "munin\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8ffd\u52a0": 36, "murakami": [48, 49, 50, 51, 52, 53], "murata": 52, "museum": 311, "musha": 50, "music": [228, 307], "must": [6, 7, 8, 27, 31, 41, 42, 44, 45, 46, 49, 50, 51, 52, 53, 54, 58, 68, 74, 84, 85, 87, 96, 106, 110, 111, 112, 114, 118, 121, 124, 125, 126, 127, 128, 131, 132, 134, 135, 141, 143, 149, 150, 153, 156, 159, 161, 164, 167, 173, 175, 177, 178, 180, 181, 183, 194, 201, 203, 208, 210, 224, 225, 237, 244, 246, 247, 248, 253, 278, 281, 292, 298, 303, 305, 308, 310, 312], "mutabl": 141, "mutex": [48, 85], "mutex_lock": 81, "mutex_unlock": 81, "mv": 131, "mxcl": 12, "my": [43, 44, 45, 132, 134, 135, 156, 224, 225, 227, 310], "myamanishi3": 52, "myisam": 0, "mysql": [0, 24, 25, 28, 32, 41, 42, 43, 44, 45, 49, 50, 51, 53, 55, 91, 103, 138, 156, 191, 192, 193, 205, 206, 229, 243, 245, 248, 252], "n": [0, 14, 29, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 61, 74, 96, 111, 122, 129, 132, 138, 156, 166, 168, 173, 174, 175, 180, 202, 224, 225, 228, 244, 272, 281, 299, 301, 308], "n10": [224, 225], "n11": [224, 225], "n2": 224, "n29": 225, "n_arg": 41, "n_array_seg": 141, "n_buffer_seg": 141, "n_byte": 142, "n_cpu_thread": 203, "n_element": [51, 142], "n_entri": 107, "n_garbage_chunk": 141, "n_garbage_chunks_in_space0": 141, "n_garbage_chunks_in_space1": 141, "n_garbage_chunks_in_space13": 141, "n_garbage_seg": 141, "n_hit": [42, 43, 44, 96, 132, 156], "n_job": [41, 94, 158, 177, 298, 308, 312], "n_keyword": 68, "n_like": [41, 43, 44, 95, 132, 134, 135, 156, 224, 225, 281], "n_likes_class": 156, "n_likes_cumulative_sum_per_tag": [132, 134, 135, 156], "n_likes_str": [132, 134, 135, 156], "n_likes_sum_per_tag": [132, 134, 135, 156], "n_loaded_record": [51, 125], "n_max_thread": 167, "n_queri": [41, 94, 97, 158, 177, 241, 298, 308, 312], "n_record": 141, "n_records_per_day_and_item": 41, "n_unmanaged_seg": 141, "n_var": 85, "n_worker": [27, 31, 43, 44, 45, 158, 175, 177, 226, 298, 308, 312], "na": 56, "nagano": 49, "naist": 274, "naiv": 306, "nakai": 48, "nakamura": 50, "nama": [231, 232, 233, 234, 235], "name": [0, 17, 22, 27, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 68, 74, 85, 95, 96, 108, 110, 113, 119, 121, 124, 125, 126, 127, 128, 131, 136, 137, 138, 139, 142, 144, 145, 149, 150, 152, 155, 158, 159, 160, 162, 168, 169, 170, 173, 175, 177, 180, 181, 188, 191, 192, 195, 197, 202, 203, 210, 211, 219, 225, 231, 232, 233, 234, 235, 237, 243, 248, 250, 254, 274, 276, 278, 292, 295, 298, 302, 304, 305, 306, 307, 308, 311, 313, 315], "name1": [132, 134, 135, 156, 208, 225], "name2": [132, 134, 135, 156, 208, 225], "name_1": [308, 312], "name_2": [308, 312], "name_s": [68, 85], "name_t": 141, "names_kei": 44, "nan": [41, 52], "nano": 96, "nanosecond": [41, 95, 228], "naoa": [41, 42, 43, 44], "naoina": [47, 48], "naoya": [48, 49, 50, 51, 52, 53], "naozumi": 56, "narg": 68, "narrow": [22, 42, 43, 48, 49, 53, 124, 149, 156, 183, 186, 196, 302, 304], "narwhal": 39, "natanael": 50, "nath": 45, "natti": 39, "natur": [51, 52], "ne": [55, 168], "nearbi": 0, "nearest": 198, "neartoken": 224, "neartokenterm": 224, "necesarri": 43, "necessari": [39, 43, 45, 173, 308], "necessarili": 45, "need": [0, 6, 17, 18, 21, 27, 31, 33, 34, 39, 41, 42, 43, 44, 47, 49, 50, 52, 53, 54, 58, 61, 64, 68, 81, 84, 91, 94, 95, 96, 111, 118, 123, 124, 125, 126, 132, 133, 134, 135, 136, 137, 138, 141, 144, 149, 151, 153, 156, 157, 161, 163, 168, 170, 173, 175, 177, 180, 186, 193, 197, 198, 201, 203, 205, 206, 211, 212, 219, 224, 225, 227, 236, 237, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 253, 254, 260, 274, 278, 281, 292, 295, 298, 303, 308, 310, 313, 314, 315], "needl": 11, "needleess": 47, "needless": [40, 41, 42, 43, 44, 47, 48, 50, 51, 52, 99, 124, 272, 274], "neg": [41, 42, 47, 50, 52, 85, 100, 156, 208, 209, 224, 225, 272], "neglig": [49, 53], "neighbor": 0, "neither": [124, 149], "neolog": 274, "neologd": 274, "nest": [22, 42, 47, 48, 49, 50, 53, 54, 141, 156, 304], "nested_reference_column": 156, "nesteddrilldownmemo": 156, "nesteddrilldowntag": 156, "net": [2, 12, 305, 306, 307, 308, 312, 315], "netbsd": 48, "netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc": 37, "netinet": 50, "network": [47, 105, 292, 298, 307], "network_is_down": 298, "net\u306egroonga\u30c1\u30fc\u30e0\u306eppa\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059": 12, "net\u4e0a\u3067\u30d3\u30eb\u30c9\u304c\u5b9f\u884c\u3055\u308c": 12, "never": [31, 41, 42, 43, 44, 45, 50, 52, 111, 133, 150, 156, 159, 244], "new": [0, 3, 6, 12, 22, 56, 58, 61, 74, 81, 85, 96, 110, 111, 114, 126, 131, 132, 133, 134, 135, 156, 157, 161, 164, 167, 175, 177, 180, 188, 220, 226, 252, 278, 298, 305, 308, 311], "new_column": 58, "new_limit": 81, "new_release_d": 12, "new_seri": 110, "new_tag": 110, "new_valu": 156, "new_vers": 12, "newark": 311, "newer": [44, 49, 50, 52, 131, 173], "newid": 110, "newli": [0, 42, 44, 45, 49, 111, 170, 205, 206, 226], "newlin": [39, 40, 50, 74, 272], "newnam": 110, "next": [0, 18, 42, 43, 45, 49, 50, 94, 111, 132, 134, 135, 141, 156, 180, 231, 232, 233, 234, 235, 278, 286, 307, 308], "next_physical_segment_id": [54, 141], "nf": 31, "nfkc": [41, 44, 45, 53, 54, 94, 158, 177, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259, 298, 308, 312], "nfkc51lexicon": 236, "nfthread": 81, "ng": [156, 168, 209], "nga": [42, 156, 208], "ngho\u00e8o": 45, "nginx": [41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 291, 296], "nginxhttpstubstatusmodul": 49, "ngoan": [45, 231, 235], "ngo\u1eb1n": [45, 231, 235], "ngram": [53, 275], "ngroonga": 42, "nguyen": 41, "ngx_http_log_modul": 177, "ngx_http_proxy_modul": 177, "nhamhjpm": 166, "ni": [201, 240], "nice": 226, "night": [226, 314], "nightli": 12, "niho": 201, "nihon": [201, 250], "niku": 49, "nil": 74, "nine": 308, "ninja": [18, 27], "nippon": 250, "nise_nab": 49, "nishimura": 56, "nmroonga": 43, "nmysql": 43, "no_buff": 298, "no_child_process": 298, "no_kei": [141, 254], "no_key\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u5024\u3092\u30b5\u30dd\u30fc\u30c8": 36, "no_locks_avail": 298, "no_memory_avail": 298, "no_space_left_on_devic": 298, "no_such_devic": 298, "no_such_device_or_address": 298, "no_such_file_or_directori": 298, "no_such_process": 298, "noarch": [24, 25], "nobl": [32, 45], "nobodi": 43, "nobuhiro": 51, "node": [21, 45, 47, 50, 51, 74], "nogpgcheck": 47, "nois": [42, 45, 180, 251, 262, 274], "noisi": 156, "nokubi": 49, "nomal": [47, 177], "non": [18, 27, 31, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 95, 111, 141, 156, 173, 224, 225, 231, 232, 233, 234, 235, 264, 265, 266, 267, 268, 274, 275, 279, 280], "noncompress": 111, "none": [31, 43, 53, 74, 111, 126, 127, 128, 135, 138, 141, 152, 161, 165, 168, 175, 177, 179, 180, 298, 310], "none_expant": 156, "noneexpantiondrilldownmemo": 156, "nonexist": [42, 43, 44, 49, 50, 51, 52, 58, 111, 115, 116, 132, 134, 135, 156], "nonexistent1": 111, "nonexistent2": 111, "nonexistent3": 111, "nonexistent_command": 50, "nor": [31, 156, 161], "noraml": 168, "normal": [22, 24, 25, 28, 32, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 64, 74, 81, 92, 95, 102, 103, 110, 111, 112, 118, 123, 124, 132, 133, 134, 135, 137, 139, 141, 142, 143, 152, 156, 158, 162, 163, 164, 165, 173, 175, 177, 180, 186, 192, 193, 197, 201, 202, 203, 205, 206, 224, 225, 226, 230, 231, 232, 233, 234, 235, 236, 240, 243, 244, 245, 246, 247, 255, 257, 258, 259, 260, 261, 262, 264, 272, 275, 279, 280, 281, 282, 301, 308, 310, 311, 314], "normalizationsindex": 45, "normalizeauto": [191, 192], "normalized_column": 237, "normalized_text": 138, "normalizer_1": 155, "normalizer_2": 155, "normalizer_list": [22, 49, 57, 92], "normalizer_n": 155, "normalizer_nam": 155, "normalizer_name_1": 155, "normalizer_name_2": 155, "normalizer_name_n": 155, "normalizerauto": [41, 42, 43, 44, 45, 50, 53, 111, 132, 134, 135, 138, 139, 142, 152, 155, 156, 161, 163, 165, 168, 180, 191, 192, 193, 201, 202, 203, 205, 206, 224, 225, 226, 229, 236, 240, 244, 245, 246, 247, 255, 260, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 275, 277, 279, 280, 281, 301, 308, 310, 311, 314], "normalizerhtml": [43, 44, 139, 155], "normalizernfkc": [42, 44, 229, 232, 233, 234, 235, 236, 257], "normalizernfkc100": [53, 54, 139, 155, 229, 231, 258, 275], "normalizernfkc121": [41, 42, 43, 44, 54, 139, 155, 229, 231], "normalizernfkc130": [41, 42, 43, 44, 123, 139, 155, 203, 224, 229, 231], "normalizernfkc150": [44, 45, 139, 155, 156, 229, 231, 259], "normalizernfkc160": 45, "normalizernfkc51": [53, 139, 155, 229, 231], "normalizert": [42, 43, 44, 45, 139, 155, 191, 229], "normalizs": 161, "normallexicon": 230, "normalzi": [191, 192], "northern": 47, "norwegian": [53, 260], "nosuchfileordirectori": 50, "not_a_directori": 298, "not_enough_spac": 298, "not_equ": 202, "not_socket": 298, "notat": [47, 48, 225], "note": [0, 18, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 85, 111, 121, 124, 125, 132, 134, 138, 143, 153, 154, 156, 161, 175, 177, 180, 194, 205, 219, 224, 225, 231, 275, 281, 292, 303, 305, 306, 308, 312], "noth": [45, 50, 53, 64, 81, 123, 124, 149, 156, 173, 175, 177, 221, 250, 252, 275, 286], "notic": [42, 44, 45, 50, 51, 111, 123, 129, 130, 166, 175, 177, 246, 247], "notif": [48, 228], "notifi": 153, "notmal": 42, "notrelated_20160320": 137, "noun": [53, 231, 232, 233, 234, 235, 274], "now": [6, 17, 18, 22, 27, 31, 40, 41, 42, 43, 44, 45, 46, 49, 50, 52, 53, 57, 58, 91, 96, 111, 132, 135, 154, 182, 191, 193, 201, 227, 244, 275, 306, 310, 311], "np": [41, 42, 44, 224, 225], "np1": [224, 225], "np10": [44, 224, 225], "np11": 224, "np14": 225, "np2": [41, 224], "np29": 225, "np3": 44, "npp": [42, 44, 45, 224, 225], "npp1": [44, 45], "npp10": 225, "npp11": 224, "npp2": [44, 224, 225], "npp29": 225, "nromal": 42, "nroonga": [21, 202, 203, 310], "nsi": 12, "nsubrecs_str": 135, "nt": [270, 271], "ntdll": 166, "nterm": 108, "nth": [111, 135], "nthe": 42, "ntt": 56, "ntwaitforworkviaworkerfactori": 166, "nul": [39, 85, 273], "null": [6, 11, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 61, 68, 81, 85, 107, 111, 122, 124, 125, 126, 127, 128, 132, 133, 134, 135, 137, 141, 142, 149, 150, 152, 155, 156, 161, 164, 165, 167, 168, 184, 191, 192, 193, 194, 205, 206, 208, 209, 211, 212, 219, 221, 231, 232, 233, 234, 235, 237, 275, 302], "null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8": 36, "numbat": [32, 45], "number": [0, 34, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 61, 81, 85, 91, 94, 95, 96, 98, 104, 105, 107, 108, 118, 131, 132, 133, 134, 135, 141, 142, 149, 154, 155, 158, 159, 161, 163, 167, 171, 175, 176, 177, 180, 183, 186, 195, 196, 203, 205, 206, 207, 208, 209, 223, 224, 225, 244, 245, 247, 253, 254, 275, 282, 286, 292, 296, 298, 302, 303, 305, 306, 307, 308, 312], "number1": 225, "number2": 225, "number_classifi": [22, 51, 57, 156, 182], "number_column": [43, 186], "number_liter": 50, "number_round": 45, "numer": [22, 44, 46, 50, 53, 56, 224, 225, 304], "numeric_dynamic_column": 44, "nunit": 173, "ny": 311, "nyokki": 45, "o": [7, 8, 12, 14, 24, 37, 42, 43, 44, 45, 47, 48, 49, 50, 94, 118, 124, 156, 158, 161, 176, 177, 208, 243, 244, 254, 262, 264, 275, 292, 298, 307, 308, 312], "o_": 262, "o_binari": 47, "o_creat": 52, "obata": [37, 39, 48, 50, 51, 53, 54], "obj": [41, 68, 74, 108], "object": [39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 58, 61, 74, 85, 87, 90, 91, 106, 111, 114, 120, 124, 126, 127, 128, 137, 138, 139, 140, 141, 143, 149, 150, 152, 155, 156, 158, 164, 168, 169, 173, 223, 254], "object1": 225, "object2": 225, "object_1": 142, "object_2": 142, "object_corrupt": 298, "object_exist": [22, 50, 57, 92, 137, 143], "object_inspect": [22, 51, 52, 54, 57, 92], "object_list": [22, 51, 57, 92], "object_n": 142, "object_remov": [22, 51, 57, 92, 124], "object_warm": 42, "objnam": [109, 120], "obsolet": [50, 240], "obtain": 85, "obvious": 305, "occas": 43, "occur": [41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 95, 106, 114, 135, 156, 159, 164, 180, 243, 281, 302, 314], "occurr": [41, 43, 45, 156, 247], "ocelot": [39, 48], "ocr": 42, "octal": 225, "octob": 49, "odd": 225, "off": [27, 39, 45, 49, 177, 262], "offer": [54, 56], "offic": 198, "offici": [8, 27, 31, 39, 45, 102, 197, 227], "offlin": [22, 40, 41, 47, 48, 49, 50, 51, 52, 53, 57, 94], "offset": [43, 44, 45, 47, 50, 52, 54, 68, 85, 119, 159, 308], "offsetted_dai": 41, "offsetted_timestamp": 41, "often": [41, 42, 111, 124, 156, 161, 183], "ohkubo": 51, "ohter": 231, "ohzeki": 49, "ok": [121, 132, 134, 135, 156, 224, 225], "okapi": [41, 245, 247], "okapi_bm25": 41, "oknj": 54, "old": [39, 41, 44, 45, 47, 50, 51, 52, 85, 114, 164, 183, 229], "older": [50, 311], "om": 277, "omit": [39, 42, 43, 44, 95, 124, 126, 127, 128, 144, 145, 149, 150, 151, 152, 156, 168, 180, 188, 205, 209, 219, 224, 225, 241, 250, 254, 308], "onc": [39, 41, 43, 47, 49, 52, 56, 84, 124, 132, 135, 156, 177, 180, 186, 229, 306, 310, 311], "one": [0, 18, 24, 25, 28, 32, 34, 39, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 56, 61, 85, 90, 91, 95, 96, 105, 107, 110, 111, 112, 115, 116, 121, 122, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 161, 163, 167, 168, 170, 171, 173, 175, 177, 178, 180, 181, 186, 188, 193, 194, 195, 198, 201, 203, 205, 206, 208, 210, 211, 212, 219, 221, 224, 225, 227, 229, 230, 237, 240, 244, 245, 246, 247, 248, 251, 254, 262, 264, 272, 276, 281, 282, 290, 292, 298, 302, 305, 307, 308, 311, 315], "one_charact": 51, "oneir": [39, 48], "oneself": 49, "onga": [205, 206], "ongaeshi": [47, 48, 50], "ongaeshi\u3055\u3093": 37, "ongaeshi\u3055\u3093\u304c\u5831\u544a": 37, "onigmo": [41, 45, 49, 50, 51, 52, 54, 94, 158, 177, 244, 298, 308, 312], "oniguruma": 50, "onli": [0, 6, 7, 17, 18, 21, 23, 24, 27, 28, 31, 32, 33, 34, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 56, 58, 61, 64, 74, 84, 85, 94, 96, 99, 100, 105, 107, 111, 112, 115, 116, 118, 121, 122, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 149, 151, 152, 153, 154, 156, 157, 158, 159, 161, 163, 166, 167, 168, 170, 173, 175, 177, 178, 180, 181, 183, 191, 192, 193, 194, 195, 196, 198, 201, 202, 205, 206, 210, 211, 212, 219, 221, 224, 225, 226, 227, 231, 235, 236, 237, 239, 243, 244, 245, 246, 247, 248, 254, 262, 264, 274, 275, 276, 277, 278, 286, 292, 296, 302, 305, 308, 310, 313, 315], "onlin": [22, 43, 44, 45, 50, 52, 53, 56, 57], "only_open": 52, "onp": [41, 42, 44, 224, 225], "onp10": 225, "onp29": 225, "onpp": [42, 44, 224, 225], "onpp1": 44, "onpp10": 225, "onpp29": 225, "onto": 281, "oo": [156, 168, 208, 254], "oon": [42, 208, 209], "ooo": 254, "op": [41, 44, 51, 52, 68], "opaqu": [61, 298], "opear": 225, "open": [18, 21, 39, 41, 42, 43, 45, 47, 48, 50, 51, 52, 53, 56, 61, 124, 142, 143, 163, 173, 180, 191, 192, 205, 206, 228, 229, 298, 308], "open_tag1": [191, 192], "openbsd": [50, 51], "oper": [22, 31, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 56, 57, 68, 96, 110, 114, 127, 137, 140, 149, 156, 164, 183, 195, 196, 201, 202, 223, 231, 232, 233, 234, 235, 240, 258, 259, 298, 302, 304], "operation_not_permit": 298, "operation_not_support": 298, "operation_timeout": 298, "operation_would_block": 298, "ophiuchu": 41, "opportun": 56, "opposit": 111, "oprtat": 42, "opt": 56, "optim": [41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 56], "optima": 45, "optimum": 177, "option": [3, 6, 23, 30, 31, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 95, 96, 102, 107, 112, 126, 127, 128, 131, 152, 156, 159, 173, 174, 176, 177, 178, 182, 186, 191, 192, 223, 224, 225, 228, 229, 230, 241, 244, 248, 250, 251, 253, 255, 257, 276, 290, 291, 292, 295, 298, 308, 310, 311, 312, 313], "oracl": [39, 44], "orang": [211, 276, 278], "orangain": 48, "order": [0, 17, 27, 41, 42, 43, 44, 45, 47, 48, 50, 51, 53, 54, 96, 132, 135, 136, 156, 198, 203, 239, 286, 298, 306, 308, 313, 315], "ordinari": 43, "ore": [156, 205, 224, 225], "org": [12, 17, 24, 25, 27, 28, 31, 33, 41, 43, 49, 50, 54, 91, 122, 125, 176, 177, 194, 305, 306, 307, 308, 312, 315], "org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059": 176, "org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044": 176, "org\u3068\u901a\u4fe1\u3057\u307e\u3059": 176, "org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408": 176, "org\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059": 12, "orient": [0, 42, 205, 206, 305], "origin": [1, 17, 18, 41, 42, 43, 48, 49, 52, 56, 64, 95, 122, 156, 230, 253, 298, 312, 313, 314], "original_id": [135, 156], "orilldown": 306, "orl": 275, "orphan": [48, 52], "orthograph": [43, 53, 274], "osanai": [49, 50], "osdn": [2, 12, 50], "otehr": 161, "other": [0, 3, 6, 7, 17, 18, 22, 23, 24, 25, 28, 30, 32, 33, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 74, 84, 85, 87, 95, 101, 105, 110, 111, 112, 121, 123, 124, 125, 127, 132, 134, 135, 138, 149, 156, 159, 163, 165, 168, 173, 175, 177, 181, 183, 196, 197, 202, 210, 224, 225, 230, 232, 233, 234, 257, 264, 272, 274, 275, 276, 278, 282, 292, 305, 306, 307, 308, 310, 315], "other_t": 50, "otherhand": 156, "otherwis": [21, 31, 44, 61, 74, 85, 111, 112, 114, 115, 117, 121, 124, 126, 127, 128, 129, 131, 137, 140, 141, 142, 152, 153, 155, 156, 163, 170, 183, 195, 196, 210, 219, 225, 308], "ouput": 48, "our": [2, 17, 42, 43, 44, 46, 54, 56, 248], "ourselv": 41, "out": [13, 23, 28, 32, 33, 42, 43, 45, 49, 52, 54, 99, 210, 310], "out_gqtp": 176, "out_http": 176, "out_loc": 176, "outdat": [49, 51], "outlin": 18, "output": [3, 22, 27, 31, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 64, 68, 91, 92, 97, 99, 100, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 126, 127, 128, 129, 132, 133, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 166, 167, 168, 169, 170, 175, 176, 177, 178, 180, 181, 194, 228, 231, 232, 233, 234, 235, 257, 258, 259, 274, 302, 304, 305], "output_column": [41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 91, 110, 111, 119, 132, 159, 182, 184, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 225, 245, 246, 247, 275, 286, 301, 305, 307, 308, 310, 311, 315], "output_columns\u304b\u3089_value\u3092\u524a\u9664": 37, "output_error": 52, "output_format": 96, "output_id": 51, "output_pretti": [41, 43, 44, 45, 97, 178], "output_trace_log": [44, 96], "output_typ": [41, 42, 44, 45, 241], "output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059": 122, "outsid": [27, 49], "over": [0, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 54, 104, 132, 134, 135, 192, 303, 312], "overcommit": 281, "overcommit_memori": [47, 228], "overflow": [39, 48, 49, 50, 51, 52, 53, 54, 305], "overhead": [49, 53, 125, 141, 186, 296], "overlap": 44, "overrid": [31, 45, 58], "overview": [22, 50, 57, 59, 304], "overwrit": [51, 99], "overwritten": 315, "own": [0, 43, 47, 50, 52, 68, 225, 305], "owner": [48, 50, 177], "o\u65e5": [267, 268], "p": [12, 39, 42, 174, 175, 176, 180, 281, 295, 298, 312], "pack": 41, "packag": [8, 12, 17, 22, 23, 24, 25, 27, 28, 33, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 54, 94, 111, 156, 172, 177, 197, 260, 274, 289, 308], "packages\u306b\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u4f5c\u6210\u3057\u307e\u3059": 12, "packages\u306ffork\u3057\u3066\u81ea\u5206\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3066\u304a\u304d\u307e\u3059": 12, "packages\u3092\u767b\u9332\u3057\u3066\u304a\u304d\u307e\u3059": 12, "page": [2, 17, 18, 22, 41, 42, 47, 48, 50, 178, 302, 308], "pagerank": [245, 246, 247], "pagin": 308, "pai": [111, 156], "pair": [44, 50, 52, 96, 141, 142, 156, 186, 202, 203, 208, 209, 243, 250, 251, 252, 253, 305], "pair_dataset": [179, 253], "pair_queri": [159, 179, 180, 250, 251, 253], "pangolin": [47, 52], "paragraph": 308, "parallel": [0, 6, 22, 41, 42, 43, 44, 51, 57, 92, 156, 203, 226], "paramet": [22, 27, 31, 39, 40, 41, 42, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 61, 68, 74, 81, 85, 97, 98, 99, 139, 144, 145, 151, 169, 171, 177, 178, 184, 206, 212, 225, 228, 230, 236, 243, 245, 264, 265, 266, 267, 268, 269, 270, 271, 273, 276, 277, 278, 279, 280, 283, 292, 303, 304, 305, 306, 308, 311, 312, 314, 315], "parametar": 208, "parameter1": 177, "parent": [135, 156, 177], "parenthes": [53, 308], "parenthesi": 44, "pari": 188, "park": 311, "parker": 50, "pars": [41, 42, 44, 49, 51, 52, 54, 58, 68, 202, 223], "parser": [54, 156, 244], "part": [0, 31, 42, 53, 54, 95, 111, 134, 156, 205, 206, 231, 232, 233, 234, 235, 274, 305, 308, 311], "partial": [11, 50, 52, 248, 250, 252, 298], "partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057": 11, "particl": 156, "particular": [42, 56, 111], "partli": 54, "pass": [6, 27, 39, 40, 43, 50, 51, 52, 53, 81, 125, 153, 167, 177, 180, 188, 202, 224, 225, 244, 308, 312], "passiv": 42, "past": [47, 54], "pat": [40, 45, 47, 51, 74, 124], "pat_kei": [141, 142, 254], "patch": [3, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55], "path": [18, 23, 29, 36, 39, 41, 42, 44, 45, 47, 48, 49, 50, 52, 53, 54, 85, 114, 131, 142, 144, 145, 151, 159, 162, 164, 175, 177, 178, 180, 181, 228, 244, 291, 296, 298, 308], "pathch": 42, "path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059": 176, "path\u3092": 37, "patiricia": 50, "patprefix": 313, "patricia": [22, 39, 41, 43, 44, 47, 48, 50, 51, 54, 104, 120, 142, 155, 161, 224, 225, 254, 304, 308], "patsuffix": 313, "pattern": [0, 50, 52, 53, 54, 95, 111, 195, 224, 225, 244, 276], "pattern_1": 276, "pattern_2": 276, "pattern_n": 276, "pc": [31, 39], "pcre": [47, 52, 177], "pc\u306bgroonga": 38, "pdb": 53, "peak": 56, "pen": [41, 42, 44, 96, 231, 234, 235, 272], "penalti": 48, "pend": [50, 74], "pentium": 176, "peopl": [0, 42, 111, 262], "people_age_index": 111, "people_age_medium_index": 111, "people_age_small_index": 111, "people_key_index": 111, "people_key_roles_index": 111, "people_roles_large_index": 111, "per": [0, 39, 41, 43, 45, 47, 51, 90, 91, 125, 132, 134, 135, 156, 171, 177, 180, 279, 280], "percentag": [42, 158], "perfect": [0, 247], "perfectli": 133, "perform": [0, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 56, 124, 125, 134, 149, 156, 175, 180, 196, 197, 205, 206, 225, 290, 291, 296, 302, 308, 310], "perhap": 56, "period": [35, 56, 310], "perl": 177, "permiss": [31, 49], "permission_deni": 298, "permit": [53, 137], "persist": [22, 52, 53, 57, 112, 114, 142, 164, 171, 175, 177], "person": [18, 22, 23, 56, 111, 231, 232, 233, 234, 235, 274, 311], "perspect": 56, "pg": 183, "pgp": 54, "pgroonga": [41, 42, 43, 45, 50, 53, 54, 122, 156, 197, 224, 225, 228, 237, 245, 248], "phase": 54, "phenomenon": 56, "phone": 275, "php": [12, 47, 49, 50, 290], "phrase": [41, 42, 43, 44, 45, 47, 51, 111], "phrase1": [41, 44, 224, 225], "phrase1_1": [224, 225], "phrase1_2": [224, 225], "phrase2": [41, 44, 224, 225], "phrase2_1": [224, 225], "phrase2_2": [224, 225], "phrase3": 225, "physic": [43, 52, 54, 108], "pi": 278, "pid": [31, 36, 39, 41, 50, 51, 52, 53, 173, 175], "pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b": 36, "pie": [276, 278], "piikbmgh": 166, "pikonyan": 307, "pinu": 52, "pip": 18, "pipermail": 49, "piro": 49, "pisc": 41, "pkg": [31, 37, 39, 47, 50], "pkgbuild": 12, "pkgconfig": 31, "pkgrel": 12, "pkgver": 12, "place": [2, 31, 45, 111, 311], "placehold": 48, "plai": [0, 314], "plain": [50, 52, 194], "plan": [41, 53, 56, 313], "plant": 44, "plant_nam": 44, "platform": [17, 23, 27, 39, 85], "platorm": 51, "player": [110, 164], "player1": 110, "pleas": [2, 3, 17, 18, 19, 31, 41, 43, 44, 49, 50, 51, 54, 94, 96, 104, 106, 111, 156, 186, 245, 246, 247, 308], "plu": 42, "plug": 53, "pluggabl": 0, "plugin": [13, 17, 22, 24, 25, 27, 28, 32, 37, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 53, 54, 57, 59, 103, 122, 132, 133, 134, 135, 136, 137, 138, 142, 144, 145, 151, 154, 156, 168, 197, 198, 208, 209, 211, 212, 219, 221, 222, 229, 243, 248, 255, 281], "plugin_1": 155, "plugin_2": 155, "plugin_id": 142, "plugin_n": 155, "plugin_nam": 155, "plugin_name_1": 155, "plugin_name_2": 155, "plugin_name_n": 155, "plugin_regist": [22, 41, 42, 43, 45, 57, 92, 103, 122, 124, 132, 133, 134, 135, 136, 137, 145, 151, 154, 155, 156, 165, 180, 195, 197, 198, 208, 209, 211, 212, 219, 221, 222, 243, 255, 260, 261], "plugin_unregist": [22, 50, 54, 57, 92, 124, 144, 151], "po": [3, 51, 74, 189, 190], "poedit": 17, "point": [0, 39, 40, 41, 42, 43, 48, 50, 56, 74, 85, 91, 111, 114, 153, 156, 188, 189, 190, 196, 224, 239, 282, 286, 299, 303, 305, 308, 315], "pointer": [51, 85], "point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c": [189, 190], "point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059": 189, "point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059": 190, "point\u578b\u306e\u5024": [189, 190], "point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059": [189, 190], "pole": 188, "polici": 48, "poll": [41, 94, 158, 177, 298, 308, 312], "pool": 81, "poor": 243, "popular": [50, 91, 132, 134, 135, 156, 175], "port": [29, 30, 48, 49, 55, 175, 176, 177, 178, 180, 241, 292, 296, 298, 312], "port_numb": [295, 298, 312], "portabl": [39, 48, 54, 177], "portugues": [53, 260], "posit": [42, 43, 44, 49, 51, 53, 85, 91, 100, 111, 112, 138, 141, 155, 156, 167, 168, 209, 224, 225, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280, 308], "posix": [50, 225], "possibl": [39, 41, 42, 43, 45, 50, 51, 52, 54, 111, 123, 156, 282, 302], "post": [12, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 111, 125, 132, 134, 135, 141, 156, 178, 180, 224, 225, 226, 291, 308], "post_filt": [42, 43, 44, 45, 52, 53], "posted_bi": 311, "postfix": [132, 134, 135, 137], "postgresql": [0, 42, 52, 96, 197, 205, 206, 248], "potenti": [48, 56], "poti": [42, 43], "power": [43, 44, 156, 244], "power8": 49, "power_set": [43, 44], "powersetdrilldownmemo": [43, 156], "powertool": 24, "poyonga": 290, "pp": 49, "ppa": [12, 22, 23, 49], "ppa\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u306f": 12, "practic": [0, 49, 305], "pragma": 156, "pre": [22, 74, 180], "pre_filter_threshold": [43, 44], "preciou": 224, "precis": [0, 41, 47, 50, 51, 52, 95, 111, 225, 250, 262, 264, 274, 282, 308], "preconfigur": [24, 25, 28, 32, 296], "predic": [50, 53], "predict": [161, 254, 264], "prefer": [50, 156], "preferenti": 118, "prefix": [6, 14, 18, 22, 39, 40, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 57, 81, 110, 111, 144, 145, 151, 156, 159, 161, 175, 177, 180, 197, 201, 202, 205, 219, 227, 238, 248, 254, 291, 304, 308], "prefix_length": 41, "prefix_match_s": 51, "prefix_rk_search": [22, 50, 57, 182, 240], "prefix_search": [39, 159], "prepar": [22, 41, 45, 54, 177, 193, 197, 206, 260, 304], "prepend": [44, 177, 224, 225], "present": [42, 56, 111], "preserv": 56, "preset": [3, 23], "press": 17, "pretti": [22, 49, 50, 51, 57, 92], "prevent": [41, 43, 48, 51], "preview": 3, "previou": [41, 43, 44, 47, 48, 49, 51, 52, 54, 138, 167, 180, 231, 232, 233, 234, 235, 244, 245, 305, 306, 310], "previous": 156, "price": [41, 42, 132, 134, 135, 211, 305], "price_sd": 41, "price_sum": 41, "price_with_tax": 42, "primari": [22, 125, 304, 305, 306, 307, 308, 314], "print": [22, 49, 50, 51, 57, 74, 92, 298], "printf": [53, 74], "prioriti": [0, 53, 156, 250], "privileg": [48, 312], "probabl": [42, 106, 159], "problem": [39, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 61, 137, 143, 177, 224, 225, 246, 264, 305], "problrm": 45, "proc": [48, 50, 52, 85, 118, 143, 156, 166], "proc_database_unmap": 118, "proc_object": 143, "proc_select": 156, "proc_thread": 166, "procedur": [18, 27, 31, 41, 43, 44, 47, 48, 51, 106, 201], "process": [0, 17, 18, 22, 23, 27, 28, 31, 32, 33, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 92, 95, 99, 100, 101, 105, 111, 114, 124, 127, 131, 132, 134, 135, 144, 149, 151, 152, 156, 157, 158, 161, 164, 171, 175, 177, 180, 186, 203, 224, 225, 229, 237, 255, 262, 292, 296, 298, 308, 315], "process_id": [45, 53, 175], "processor": 0, "produc": [53, 111], "product": [42, 44, 45, 50, 51, 134, 177, 180], "products_nam": 42, "profil": 311, "program": [1, 27, 47, 48, 52, 56, 112, 175, 177, 180, 181, 225], "progress": [27, 53, 54, 56, 123], "progress_log_level": 45, "project": [0, 3, 12, 13, 19, 21, 27, 42, 49, 225, 296], "prolong": [53, 231, 232, 233, 234, 235, 258, 259], "prolonged_sound_mark": 44, "promot": 48, "prompt": [47, 241, 308], "pronoun": 53, "pronounc": [53, 56, 223, 231, 232, 233, 234, 235, 257, 258, 259], "pronunci": 56, "proonga": 290, "propag": 53, "proper": [49, 95, 156, 311], "properli": [43, 47, 50, 224, 312], "properti": [32, 51, 155, 228], "propos": [156, 180, 252], "proprietari": 56, "protector": 53, "protocol": [0, 1, 22, 47, 49, 50, 51, 100, 174, 175, 176, 177, 178, 241, 289, 290, 292, 296, 304], "provid": [0, 1, 21, 24, 25, 27, 28, 32, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 56, 59, 81, 84, 94, 96, 111, 112, 132, 133, 134, 135, 156, 172, 173, 175, 177, 180, 188, 202, 227, 237, 241, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 291, 292, 296, 302, 306, 308, 312], "proxi": 292, "proxy_cache_path": 177, "proxy_cache_valid": 177, "proxy_pass": 177, "pseudo": [41, 44, 47, 48, 49, 50, 87, 111, 112, 125, 155, 156, 224, 225, 306, 315], "pthread_": 48, "ptr": [37, 85], "public": 49, "publicli": 56, "publish": [49, 51], "pull": [22, 23], "purchas": 42, "pure": [56, 264], "puropos": 168, "purpos": [43, 48, 51, 91, 202, 308, 310, 312], "push": [12, 17, 18], "push\u3055\u308c\u305f\u30d6\u30e9\u30f3\u30c1\u306egithub": 12, "push\u3059\u308b\u3068": 12, "put": [17, 41, 42, 45, 49, 50, 156, 166, 178, 224, 227, 237, 240, 244, 247, 281], "python": [12, 18, 290], "q": 180, "q1": 203, "q2": 203, "q4_k_m": [197, 227], "q_cond": 81, "q_mutex": 81, "qp": [174, 176], "quantal": 47, "quantiti": [41, 42], "quantity_sum": 41, "quartet": 56, "queri": [11, 22, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 68, 74, 91, 92, 100, 107, 111, 119, 124, 131, 132, 134, 144, 145, 151, 159, 175, 176, 178, 179, 180, 181, 182, 183, 186, 191, 192, 193, 194, 195, 196, 203, 205, 206, 210, 223, 225, 226, 240, 241, 243, 244, 245, 246, 247, 250, 251, 252, 253, 260, 261, 262, 264, 274, 275, 276, 278, 290, 292, 296, 298, 299, 301, 304, 305, 306, 307, 308, 310, 311, 312, 313, 315], "query_expand": [22, 42, 43, 44, 48, 51, 57, 92, 144, 145, 151, 243, 314], "query_expans": [39, 48, 243], "query_flag": [42, 44, 47, 51, 52, 202, 224], "query_no_syntax_error": [44, 52, 156], "query_opt": 42, "query_parallel_or": [22, 27, 31, 42, 43, 45, 57, 182, 202], "query_s": 68, "query_str": [42, 48], "query_string0": 203, "query_string1": [42, 203], "query_string2": 42, "query_stringn": [42, 203], "queryexpandertsv": [22, 41, 44, 47, 48, 57, 144, 145, 151, 242], "query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587": 38, "question": [50, 310], "quetzal": 47, "queue": 302, "quickli": [132, 134, 135, 156, 226], "quiet": 298, "quit": [22, 42, 52, 53, 57, 92, 175, 228, 298], "quit\u306f": 147, "quiz": 307, "quorum": 52, "quot": [48, 138, 168, 224, 225, 308], "quotat": [138, 168], "quotient": 225, "r": [18, 42, 47, 74, 176, 180, 181, 240, 244, 272, 275], "rab": [306, 308, 315], "raccoon": 307, "radimrehurek": 41, "radious_or_point": 189, "radix": 225, "rais": [45, 53, 310], "rakutan": 310, "ram": 176, "ran": 250, "rand": [22, 52, 57, 182, 315], "rand_max": 204, "random": 315, "rang": [18, 22, 45, 47, 48, 49, 50, 51, 52, 87, 111, 114, 133, 137, 156, 162, 164, 183, 244, 254, 304, 311], "range_error": 298, "range_filt": [22, 49, 57, 92, 134], "range_index": [50, 134], "ranguba": [44, 49, 52, 91], "rank": [42, 49, 197, 286, 308], "rapidjson": [41, 54, 94, 158, 177, 298, 308, 312], "rare": [42, 48, 50], "raspberri": [276, 278], "rate": [48, 111, 183], "rather": [50, 91, 112, 156, 226, 244, 245, 246, 247, 264, 274, 290], "raw": [21, 48, 51, 125, 141], "rb": [42, 49, 54, 132, 134, 135, 137], "rb\u3092\u8ffd\u52a0": 37, "rc": [43, 45, 52, 84, 100, 124, 168, 228], "rch": 168, "rd": [299, 301], "rdbm": [43, 44, 50, 175, 197], "re": [18, 31, 39, 44, 45, 49, 50, 124, 125, 133, 167, 197, 223, 237, 244, 281], "reach": [41, 42, 43, 45, 52, 53, 281], "read": [3, 22, 39, 41, 42, 47, 53, 54, 94, 114, 122, 125, 156, 164, 181, 201, 205, 206, 231, 232, 233, 234, 235, 243, 249, 274, 298, 308], "read_only_file_system": 298, "readabl": [40, 49], "readi": [18, 31, 47, 132, 134, 135, 156, 224, 225, 244], "readm": [44, 48, 227], "real": [0, 42, 44, 53, 54, 58, 81, 134, 156, 158, 205, 206, 281, 282], "real_nam": [58, 115, 116, 117], "realli": [41, 43, 44, 132, 134, 135, 156, 224, 225, 314], "realloc": [52, 54], "realtim": [159, 253], "reason": [31, 43, 47, 156, 161, 173, 225, 244, 250, 264, 292, 296, 303, 306], "rebuild": [42, 43, 44, 45, 50, 52, 53, 54], "recal": [0, 223, 262, 264, 274], "receiv": [0, 17, 45, 125, 175, 177, 180, 181, 225, 295, 298], "recent": [45, 51, 107, 173], "recogn": [0, 42], "recommend": [6, 8, 23, 28, 31, 32, 33, 41, 42, 43, 44, 45, 49, 50, 51, 52, 54, 58, 95, 124, 156, 177, 180, 196, 224, 225, 244, 262, 264, 281, 290, 292, 296, 308, 312], "reconstruct": [42, 49], "record": [0, 22, 34, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 68, 90, 91, 96, 104, 110, 121, 122, 123, 125, 132, 134, 135, 137, 141, 159, 161, 170, 183, 186, 188, 191, 192, 193, 195, 196, 197, 201, 202, 203, 205, 206, 210, 223, 224, 225, 226, 228, 239, 244, 245, 246, 247, 248, 253, 276, 278, 282, 286, 304, 305, 306, 307, 310, 311, 312, 313, 314, 315], "record1": 137, "record2": 137, "record3": 137, "record_1_column_1": [134, 156], "record_1_column_2": [134, 156], "record_1_column_n": [134, 156], "record_2_column_1": [134, 156], "record_2_column_2": [134, 156], "record_2_column_n": [134, 156], "record_id": 50, "record_n_column_1": [134, 156], "record_n_column_2": [134, 156], "record_n_column_n": [134, 156], "record_numb": [22, 51, 52, 57, 135, 283], "recov": [41, 42, 43, 44, 45, 50, 53, 106], "recover": 173, "recreat": [50, 51, 53, 152, 173], "rect": [47, 188, 189], "rectangl": [0, 39, 47, 189, 239], "recurs": [6, 7, 8, 12, 13, 18, 41, 44, 54, 58, 127, 156, 173, 177, 243], "recycl": [41, 49], "red": 31, "redhat": 39, "redmin": 49, "redmine_full_text_search": 54, "reduc": [0, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 104, 111, 118, 125, 133, 156, 173, 186, 195, 240, 244, 251, 254, 275, 292, 296, 314], "redund": [52, 237], "refer": [0, 22, 39, 41, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 58, 105, 106, 121, 123, 124, 125, 137, 149, 150, 155, 156, 180, 186, 195, 197, 210, 226, 244, 282, 304, 306, 310, 311], "referec": 41, "referenc": [43, 47, 48, 52, 111, 121, 124, 137, 149, 156, 161, 163, 306], "reference_acquir": [22, 41, 42, 44, 57, 92, 150], "reference_column": [41, 49, 50, 53, 156, 163], "reference_count": [43, 44, 94, 158, 177, 298, 308, 312], "reference_releas": [22, 41, 57, 92, 149], "reference_vector_column": 48, "referenced_table_nam": 124, "referencedbycolumn": 163, "referencedbyt": 163, "referencedt": 163, "referencet": 163, "refin": [0, 48], "refresh": 307, "regard": [44, 45, 48, 53, 56, 178, 224, 231, 232, 233, 234, 235, 257, 258, 259], "regardless": [50, 53, 111], "regener": 31, "regexp": [49, 50, 52, 202], "regexplexicon": [152, 244], "region": [239, 315], "regist": [0, 22, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 57, 58, 85, 92, 103, 122, 132, 133, 134, 135, 136, 137, 138, 144, 149, 154, 156, 168, 197, 198, 205, 206, 208, 209, 211, 212, 219, 221, 222, 224, 225, 226, 229, 240, 243, 250, 251, 252, 254, 255, 278, 305, 311, 315], "regress": [41, 45, 48, 49, 50], "regular": [22, 42, 43, 50, 51, 53, 54, 57, 177, 202, 205, 272, 276, 277, 305, 308], "regular_express": 244, "rehash": [45, 54], "reindex": [22, 50, 51, 52, 53, 57, 92], "rel": [39, 41, 49, 111, 138, 156, 161], "relat": [0, 2, 3, 13, 21, 22, 24, 25, 28, 31, 32, 39, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 54, 81, 90, 124, 149, 173, 175, 197, 223, 228, 244, 252, 253, 254, 281, 283, 296, 303, 304], "relationship": [22, 47, 111, 114, 164, 304, 305, 310, 311], "relax": 281, "releas": [6, 7, 8, 24, 25, 27, 28, 35, 55, 84, 106, 118, 126, 128, 149, 150, 188, 226], "relev": [0, 56, 308], "reload": [131, 243], "remain": [42, 43, 48, 51, 52, 53, 54, 118, 123, 173, 228, 244], "remaind": 225, "rememb": 156, "remot": [12, 22, 41, 175, 298, 304], "remote_addr": 177, "remote_us": 177, "remov": [6, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 105, 110, 111, 121, 143, 149, 151, 156, 165, 173, 175, 177, 197, 231, 234, 235, 244, 261, 305], "remove_blank": [44, 53, 54, 138], "remove_blank_forc": 44, "remove_column": 42, "remove_new_lin": 42, "remove_symbol": [42, 43], "remove_tag": [43, 44], "remove_tokenized_delimit": 138, "renam": [39, 44, 47, 48, 50, 52, 56, 58, 110, 114, 131, 164, 254, 308], "reopen": [39, 51, 131, 152], "reorder": 41, "reorgan": 111, "rep_gqpt": 176, "rep_gqtp": 176, "rep_http": 176, "rep_loc": 176, "repair": [40, 42], "repeat": [0, 17, 41, 42, 54], "repeatedli": [43, 44, 111], "repl": 45, "replac": [17, 21, 45, 49, 50, 53, 58, 111, 175, 179, 181, 225, 244, 314], "replai": 177, "repli": [310, 311], "replic": [45, 245], "replied_to": 311, "replied_us": 311, "replies2": 310, "replies_cont": 310, "reply_to": 310, "repo": [54, 227], "repoforg": 47, "report": [3, 22, 31, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 85, 96, 111, 143, 156, 173, 302], "report_source_loc": [44, 45, 53], "report_source_offset": [42, 43, 44, 45], "repositori": [3, 4, 22, 32, 39, 47, 48, 50, 54], "repres": [43, 44, 45, 68, 111, 142, 175, 223, 225, 244, 305, 307, 314], "represent": [17, 41, 45, 52, 68, 91], "reproduc": [42, 43, 48, 52, 54], "repurpos": 56, "request": [22, 41, 45, 48, 49, 50, 51, 52, 53, 54, 57, 58, 92, 94, 122, 125, 134, 153, 156, 157, 158, 171, 175, 178, 180, 225, 228, 250, 251, 253, 292, 295, 298, 312], "request_cancel": [22, 42, 43, 44, 49, 51, 52, 57, 92, 98, 99], "request_id": [50, 51, 98, 153], "request_tim": [54, 177], "request_timeout": [51, 99], "request\u3092\u9001\u308a\u307e\u3057\u305f": 12, "request\u3092\u9001\u308a\u307e\u3059": 12, "requir": [0, 18, 21, 27, 31, 39, 41, 42, 43, 44, 45, 47, 48, 50, 52, 54, 56, 96, 131, 144, 145, 151, 154, 173, 177, 181, 186, 191, 192, 196, 198, 201, 208, 210, 221, 224, 225, 226, 244, 245, 248, 250, 252, 274, 278, 286, 291, 292, 305], "res_column": 176, "res_tabl": 176, "rescord": 223, "reset": [41, 50], "resiz": 85, "resolut": [22, 41, 304, 311], "resolv": [22, 39, 41, 42, 43, 45, 47, 51, 52, 57, 91, 111, 120, 143, 161, 228, 245, 246, 247, 248], "resourc": [42, 43, 45, 49, 52, 56, 84, 94, 99, 156, 197, 226], "resource_busi": 298, "resource_deadlock_avoid": 298, "resource_temporarily_unavail": 298, "resours": 61, "respect": [43, 47, 305, 311, 315], "responc": 44, "respons": [0, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 54, 61, 99, 100, 110, 125, 132, 134, 135, 153, 156, 158, 177, 178, 292, 298], "rest": [52, 74, 85, 134, 243], "restart": [42, 43, 50, 51, 52, 144, 151, 175, 177, 243, 281], "restaur": 0, "restor": [41, 51, 106], "restrict": [47, 48, 134, 292, 312], "restructuredtext": 18, "result": [0, 11, 18, 22, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 74, 94, 95, 97, 122, 123, 132, 134, 135, 138, 153, 154, 156, 173, 180, 181, 186, 188, 195, 202, 203, 205, 206, 210, 225, 230, 240, 241, 243, 244, 250, 251, 253, 254, 265, 266, 267, 268, 276, 304, 305, 307, 310, 311, 314, 315], "result_cod": 74, "result_set": [41, 42, 44], "result_too_larg": 298, "result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061": 11, "retriev": [0, 111, 142, 156, 180, 225], "retry_max": 298, "return": [22, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 61, 68, 74, 81, 84, 85, 92, 95, 177, 224, 225, 228, 250, 251, 252, 253, 292, 298, 302, 306, 308, 311, 314, 315], "return_cod": [42, 43, 44, 53, 95, 96, 125], "return_code_for_1st_record": 125, "return_code_for_2nd_record": 125, "reus": [50, 53, 141, 156, 175, 254], "reusabl": 45, "reveal": 0, "revers": [12, 22, 42, 292, 304, 308, 311], "revert": 51, "review": 18, "revis": 51, "rewrit": [50, 55], "rf": [12, 177], "rhel": [31, 44], "rid": [71, 74], "right": [42, 43, 49, 50, 224], "right_hand_sid": 51, "ring_buff": 180, "ringtail": 48, "risk": [49, 173], "riski": 52, "rk": [22, 50, 57, 201, 238], "rl": [262, 264, 275], "rld": 275, "rlimit_nofil": [48, 228], "rm": [12, 177], "ro": [156, 168], "role": [0, 111, 202, 203], "romaji": [53, 201, 231, 232, 233, 234, 235, 250, 257, 258, 259], "romanian": [53, 260], "room": [22, 50], "roon": [44, 208], "roonga": [219, 224, 225, 252], "root": [48, 50, 175, 177, 178, 312], "root\u306b\u5909\u66f4": 37, "root\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5024\u306b\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305f\u5834\u5408": 175, "rose": 305, "rotat": [45, 50, 175], "roughli": 305, "round": [39, 211], "row": [0, 42, 156, 205, 206], "rpm": [12, 24, 25, 39, 40, 43, 44, 47, 48, 49, 50, 51, 52], "rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306espec\u30d5\u30a1\u30a4\u30eb\u306b\u65b0\u3057\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u30c1\u30a7\u30f3\u30b8\u30ed\u30b0\u3092\u8ffd\u8a18\u3057\u305f\u308a\u306a\u3069\u3057\u307e\u3059": 12, "rroonga": [21, 41, 42, 43, 44, 45, 48, 49, 50, 61, 156, 191, 192, 193, 196, 202, 203, 210, 221, 223, 224, 225, 245, 310], "rst": 18, "rst\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c": 12, "rst\u306e\u5185\u5bb9": 12, "rtluserthreadstart": 166, "rubi": [0, 6, 8, 12, 21, 41, 42, 43, 47, 49, 50, 55, 91, 154, 156, 191, 192, 193, 208, 221, 223, 244, 245, 290], "ruby19": 47, "ruby_ev": [22, 27, 42, 48, 52, 57, 92], "ruby_load": [42, 48], "ruby_script": 154, "rubygem": 47, "rubyinstal": 8, "ruby\u306erake\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3088\u308a\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059": 12, "rule": [22, 49, 53, 57, 132, 134, 135, 156, 168, 292], "run": [3, 14, 17, 21, 22, 23, 29, 31, 42, 45, 49, 50, 52, 56, 98, 114, 124, 125, 134, 152, 153, 157, 163, 164, 166, 175, 177, 178, 180, 181, 243, 281, 289, 291, 292, 295], "runtim": [33, 41, 42, 50, 54], "rurema": 49, "russian": [53, 260], "ryo": [50, 52], "ryoji": 49, "ryunosuk": 51, "s10": 49, "s3ki\u3055\u3093": 37, "s3ki\u3055\u3093\u304c\u5831\u544a": 37, "s_id1": 125, "s_id2": 125, "sa": [42, 159, 251], "sae": [159, 251], "saer": [159, 251], "saerc": [159, 251], "saerch": [159, 251], "safe": [45, 52, 111, 149], "safeti": 51, "sagittariu": 41, "sai": [111, 219, 224, 225, 308, 310], "sako": 50, "salamand": [48, 49], "sale": 211, "same": [18, 31, 41, 42, 43, 44, 45, 48, 50, 51, 52, 53, 54, 56, 68, 90, 91, 94, 95, 96, 98, 110, 111, 125, 131, 132, 134, 135, 137, 144, 149, 150, 151, 152, 153, 156, 175, 177, 180, 202, 203, 208, 224, 225, 229, 231, 232, 233, 234, 235, 244, 245, 246, 247, 248, 251, 257, 258, 259, 272, 275, 286, 290, 292, 305, 308, 310, 315], "sampl": [41, 43, 44, 47, 111, 121, 122, 132, 134, 135, 136, 137, 144, 145, 151, 156, 176, 177, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 243, 244, 245, 246, 247, 276, 278, 286, 292, 310], "san": 188, "sanz": [42, 43, 54], "satisfi": [41, 43, 44, 48, 50, 51, 125, 137, 163, 224, 225, 237], "sato": [45, 50, 51], "satoh": 39, "satoshi": [49, 52], "satouyuzh": 53, "saturdai": 212, "sauci": [48, 49], "save": [49, 111, 180, 303, 310], "saw": 56, "scalar": [42, 43, 50, 51, 52, 53, 58, 87, 91, 112, 134, 141, 155, 156], "scale": [0, 56, 292], "scan": [14, 50, 191, 192, 193, 201, 224, 225], "scan_build": 14, "scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059": 14, "schema": [22, 41, 42, 43, 44, 50, 52, 53, 57, 58, 92, 96, 110, 121, 122, 125, 132, 134, 135, 137, 142, 149, 150, 156, 163, 179, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 237, 244, 245, 246, 247, 248, 251, 276, 278, 281, 286, 310], "scope": [50, 54, 244], "score": [41, 42, 47, 50, 51, 52, 53, 54, 74, 91, 111, 114, 159, 164, 170, 180, 202, 223, 245, 246, 247, 286, 308, 310, 315], "score1": 11, "score2": 11, "score_1": 180, "score_2": 180, "score_adjust_express": 156, "score_adjust_expression1": 156, "score_adjust_expression2": 156, "score_column": [41, 42], "score_funct": 245, "score_function1": 245, "score_function2": 245, "score_function3": 245, "score_mean": 41, "score_quant": 42, "score_valu": 50, "scorer": [22, 41, 50, 53, 57, 119, 124, 182, 188, 198, 223, 225, 246, 247, 304, 307], "scorer_tf_at_most": [50, 53, 245, 247], "scorer_tf_idf": [42, 245], "scorer\u306f": 156, "scorpio": 41, "scr": 176, "script": [21, 22, 31, 41, 43, 47, 48, 49, 50, 51, 52, 53, 54, 57, 68, 111, 112, 125, 141, 142, 155, 156, 176, 186, 210, 223, 224, 244], "script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059": 176, "script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059": [185, 189, 190, 199, 204], "scritp": 42, "scr\u3067\u3059": 176, "scr\u306e\u4e2d\u8eab\u304c": 176, "se": [56, 168, 250], "sea": [168, 250], "sear": 250, "searc": 250, "search": [22, 24, 25, 27, 28, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 68, 84, 87, 110, 112, 123, 159, 161, 168, 175, 183, 186, 191, 192, 193, 195, 196, 197, 201, 202, 203, 205, 206, 210, 219, 223, 226, 227, 229, 231, 235, 238, 243, 244, 245, 246, 247, 248, 252, 254, 261, 262, 264, 272, 273, 274, 275, 276, 277, 278, 292, 296, 304, 305, 306], "search_result": 156, "searchabl": [50, 53, 226], "searchu0000http": 273, "sebastian": 49, "sec": 173, "second": [41, 42, 43, 44, 45, 95, 96, 99, 112, 124, 149, 153, 156, 158, 173, 175, 180, 188, 195, 205, 219, 224, 225, 228, 245, 282, 292, 305, 308, 310, 311, 315], "secsion": 95, "section": [3, 17, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 41, 42, 48, 49, 50, 51, 52, 53, 56, 58, 59, 71, 85, 90, 91, 92, 94, 107, 110, 111, 112, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 170, 172, 173, 175, 177, 180, 182, 188, 193, 224, 227, 238, 243, 244, 245, 246, 247, 249, 250, 251, 253, 281, 283, 298, 302, 306, 310, 311], "secur": [22, 42, 43, 49, 50, 52, 53, 54, 281, 304], "sed": [39, 47, 50], "see": [0, 1, 17, 18, 21, 22, 24, 25, 26, 27, 28, 30, 31, 32, 33, 42, 43, 44, 45, 47, 48, 49, 50, 54, 56, 57, 85, 87, 91, 104, 106, 110, 114, 118, 123, 124, 127, 132, 133, 134, 135, 137, 140, 141, 143, 149, 150, 152, 157, 158, 160, 163, 164, 166, 167, 170, 173, 175, 177, 188, 194, 195, 197, 219, 224, 225, 227, 228, 244, 250, 257, 260, 264, 281, 282, 283, 290, 293, 294, 296, 303, 305, 306, 307, 308, 311, 315], "seem": [18, 42], "segment": [47, 49, 51, 54, 108, 141], "segv": [42, 48], "seki": 53, "select": [22, 37, 38, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 61, 68, 91, 92, 93, 94, 96, 98, 99, 107, 110, 111, 114, 121, 124, 132, 134, 148, 149, 150, 153, 158, 164, 170, 175, 176, 177, 182, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 226, 228, 229, 243, 244, 245, 246, 247, 253, 260, 261, 275, 276, 278, 283, 286, 290, 299, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "select_al": 52, "select_opt": 225, "selector": [41, 47, 50, 51, 52, 111, 201, 202, 203], "select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059": 176, "select\u306e\u51fa\u529b\u306b\u4e0d\u6b63\u306a\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3055\u308c\u305f\u6642\u306bsegv\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 36, "select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059": 93, "select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0": 37, "select\u30b3\u30de\u30f3\u30c9": 36, "self": 176, "semant": 45, "semi": [39, 53, 161, 231, 232, 233, 234, 235, 258, 259], "sen": 56, "sen_index_delimit": 55, "sen_index_norm": 55, "sen_sel_term_extract": 55, "senario": 52, "senboku": 48, "send": [3, 19, 41, 43, 45, 54, 122, 153, 178, 180, 181, 290, 298], "sender": 181, "senna": [22, 35, 43, 44, 132, 134, 135, 156, 224, 225, 243], "senna\u306e\u30b7\u30b9\u30c6\u30e0\u3092\u3059\u3079\u3066\u79fb\u884c\u3057\u307e\u3057\u305f": 156, "sens": [56, 175, 177], "sensit": 264, "sent": [42, 43, 44, 292], "sentenc": [41, 42, 43, 205, 224, 225], "sentens": 50, "separ": [27, 31, 45, 47, 50, 53, 64, 111, 112, 125, 138, 141, 142, 156, 159, 161, 165, 168, 175, 177, 180, 202, 224, 225, 231, 232, 233, 234, 235, 241, 243, 258, 259, 262, 264, 273, 279, 280, 298, 306, 308], "sequenc": [39, 42, 44, 48, 96, 98, 125, 156, 159, 180, 224, 225, 228, 250, 251, 253, 298], "sequence_dataset": 179, "sequence_queri": [179, 180], "sequenti": [41, 42, 45, 49, 50, 51, 52, 53, 54, 183, 195, 196, 201, 203, 224, 225, 226, 244, 277], "sequential_class_tag_mod": 44, "serach": 251, "serch": [159, 251], "sergei": [49, 50, 52], "seri": [35, 74, 308], "serial": [94, 110, 156], "serihiro": 47, "seriou": [47, 49], "serv": [49, 305], "server": [1, 21, 22, 23, 24, 25, 28, 32, 33, 39, 40, 41, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 56, 57, 81, 94, 105, 122, 137, 153, 156, 157, 167, 172, 177, 180, 195, 196, 219, 241, 290, 291, 292, 293, 295, 307, 308], "servic": [0, 21, 29, 47, 48, 49, 50, 56, 157, 251, 281, 296], "session": [180, 290, 298], "set": [24, 25, 27, 28, 32, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 61, 74, 81, 87, 91, 102, 104, 105, 107, 111, 116, 117, 124, 125, 129, 133, 134, 137, 156, 157, 158, 165, 167, 171, 180, 183, 184, 196, 202, 203, 223, 225, 250, 275, 281, 292, 296, 313], "set_host": 176, "set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9": 176, "set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408": 176, "set_norm": 45, "set_port": 176, "set_token_filt": 49, "settlement": 42, "settlements_purchas": 42, "setup": [17, 18, 21, 27, 48, 51], "seven": 308, "severalfold": 41, "sh": [6, 12, 14, 17, 18, 21, 27, 47, 54], "sha256sum": 12, "shape": 239, "sharabl": 22, "shard": [22, 27, 41, 43, 44, 50, 52, 54, 57, 132, 133, 134, 135, 136, 137, 254], "shard_kei": 41, "shard_name_1": 136, "shard_name_2": 136, "shard_name_n": 136, "share": [0, 2, 31, 39, 45, 47, 48, 61, 132, 134, 135, 137, 175, 177, 197, 227, 307, 310], "shared_kei": 134, "shark": 44, "shark_nam": 44, "shell": [31, 50, 175, 224, 244], "shibanao4870": [42, 43], "shibuya\u3055\u3093": 37, "shibuya\u3055\u3093\u304c\u5831\u544a": 37, "shidara": 39, "shift": 275, "shift_ji": [31, 277], "shimada": 47, "shimada\u3055\u3093": 37, "shimada\u3055\u3093\u304c\u5831\u544a": 37, "shimadzu": 54, "shimamura": [50, 53, 54], "shimoda": 37, "shimomura": 47, "shinjyuku": 315, "shinoda": [43, 44, 49, 50, 51], "shinonon": [43, 44], "shinya": 47, "ship": 42, "shira": 45, "shiro615": 54, "shm": 177, "sho": [48, 49, 51], "shoe": 42, "shop": [42, 198, 226, 299], "short": [28, 41, 42, 43, 52, 91, 149, 156, 177], "shortcut": 42, "shorten": [41, 54], "shorter": [43, 44, 50, 226], "shortli": 56, "shorttext": [41, 42, 43, 44, 45, 49, 51, 52, 53, 58, 74, 90, 91, 95, 96, 110, 111, 112, 114, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 141, 142, 143, 149, 150, 152, 155, 156, 159, 161, 162, 163, 164, 165, 170, 175, 176, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 236, 237, 240, 244, 245, 246, 247, 250, 251, 253, 254, 255, 260, 261, 275, 276, 278, 281, 286, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "shorttext\u306e\u30d9\u30af\u30bf\u30fc\u3092\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u4f7f\u7528\u3057\u305f\u3044\u5834\u5408\u306b\u306f": 282, "shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0": 37, "should": [5, 6, 8, 18, 21, 23, 27, 28, 31, 32, 33, 42, 43, 44, 45, 47, 50, 51, 52, 53, 56, 68, 85, 91, 98, 111, 125, 133, 134, 137, 143, 149, 152, 156, 161, 163, 170, 173, 180, 224, 225, 228, 230, 243, 251, 298], "shouldn": [6, 49], "shourtend": 156, "show": [0, 31, 36, 39, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 58, 64, 94, 95, 96, 100, 110, 111, 121, 125, 126, 132, 134, 135, 137, 138, 141, 142, 149, 150, 155, 156, 183, 184, 186, 188, 191, 192, 193, 194, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 224, 225, 228, 239, 241, 244, 245, 246, 247, 264, 275, 286, 295, 298, 305, 306, 307, 308, 311, 312, 315], "showen": 100, "shown": [43, 45, 74, 135, 156, 225, 308], "shuffl": [111, 141], "shuhei": 49, "shutdown": [22, 41, 51, 52, 54, 57, 92, 124, 175, 177, 244, 292, 298], "shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": 37, "sh\u306e\u307f\u306a\u3089\u305a": 14, "sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059": 14, "sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059": 14, "si": 39, "sid": [12, 39, 49, 74, 108], "side": [0, 42, 43, 45, 47, 50, 51, 99, 156], "sigabrt": 44, "sigcont": 48, "sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc": 39, "sign": [42, 47, 100, 111, 231, 232, 233, 234, 235, 258, 259, 282, 305], "signal": 49, "signific": 45, "significantli": 0, "sigstop": 48, "sigusr1": 39, "silent": [21, 51], "simd": 45, "simdjson": [45, 94, 158, 177, 298, 308, 312], "simil": [54, 225], "similar": [42, 43, 44, 45, 47, 48, 49, 52, 53, 54, 91, 96, 134, 141, 156, 159, 175, 186, 195, 197, 202, 203, 205, 219, 223, 230, 265, 266, 267, 268, 269, 270, 271, 273, 279, 280, 286, 306, 310, 312], "similar_search": [47, 159], "similarli": 43, "simpl": [49, 50, 112, 114, 132, 138, 139, 158, 164, 165, 168, 169, 170, 177, 186, 188, 194, 195, 196, 198, 201, 202, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 291, 292, 296, 306], "simplest": [0, 31, 98, 245], "simpli": [42, 54, 197, 247, 313], "simplifi": [48, 196], "simultan": [45, 52, 56], "sinc": [41, 42, 43, 44, 45, 47, 50, 51, 52, 54, 56, 85, 95, 96, 109, 111, 124, 132, 134, 135, 151, 156, 158, 161, 170, 175, 177, 180, 188, 191, 192, 193, 225, 226, 228, 232, 233, 234, 235, 236, 244, 258, 259, 282, 284, 296, 305, 311], "singl": [41, 45, 48, 49, 91, 111, 138, 156, 167, 168, 237, 282, 308], "sister": 111, "site": [49, 122, 126, 127, 128, 152, 156, 223, 305, 306, 307, 308, 310, 312, 315], "site_titl": 152, "sitecountri": [306, 312], "sitedomain": [306, 312], "situat": [45, 54, 56, 156, 302], "six": [183, 228, 308], "size": [23, 28, 32, 33, 34, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 68, 74, 81, 85, 98, 104, 108, 111, 112, 115, 116, 117, 123, 124, 125, 141, 142, 155, 156, 158, 161, 171, 175, 177, 205, 206, 221, 248, 254, 281, 303], "size_of_one_value_in_byt": 155, "size_t": 41, "sizeof": [50, 68], "sji": [31, 55, 175], "skip": [48, 49, 50, 51, 124, 308], "skip_leading_spac": 205, "slash": 225, "sleepi": 226, "slice": [41, 42, 43, 44, 51, 52, 53, 54], "slip": 45, "slow": [41, 42, 43, 44, 50, 54, 94, 111, 156, 161, 175, 177, 224, 225, 244, 254], "slower": [41, 111, 175, 177, 188, 245, 247, 306], "slowlog": 43, "small": [34, 41, 44, 45, 48, 49, 50, 51, 53, 125, 134, 141, 149, 161, 183, 196, 224, 225, 231, 232, 233, 234, 235, 254, 258, 259, 262, 311], "smaller": [0, 41, 42, 44, 52, 91, 111, 161, 188, 226, 228], "smith": 51, "snake_cas": 50, "sneaker": 42, "snippet": [22, 41, 42, 43, 44, 47, 48, 51, 55, 57, 182, 206], "snippet1": [205, 206], "snippet2": [205, 206], "snippet3": 206, "snippet_html": [22, 43, 44, 47, 48, 49, 50, 51, 52, 54, 57, 134, 156, 182, 205], "so": [7, 8, 13, 17, 20, 26, 27, 31, 41, 42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 58, 91, 94, 100, 102, 105, 106, 111, 112, 123, 124, 125, 132, 134, 135, 137, 140, 141, 142, 143, 144, 145, 151, 155, 156, 158, 161, 168, 175, 177, 178, 180, 195, 202, 205, 219, 224, 225, 226, 228, 229, 239, 244, 245, 246, 247, 250, 251, 253, 254, 257, 260, 274, 277, 281, 303, 305, 308, 309, 310, 311, 313], "soccer": 307, "social": 307, "socket": [22, 47, 122, 300], "socket_is_already_connect": 298, "socket_is_already_shutdown": 298, "socket_is_not_connect": 298, "socket_not_initi": 298, "socr": 42, "soerr": 302, "soft": 281, "softwar": [3, 7, 21, 22, 23, 32, 45, 50, 56], "soichiro": 51, "solari": [7, 8, 39, 47, 50], "solr": 225, "solut": [22, 264, 300, 306, 310], "solv": [42, 51, 52, 245, 246, 247, 305], "some": [0, 1, 2, 8, 17, 27, 31, 34, 41, 42, 43, 44, 47, 48, 49, 50, 51, 53, 54, 58, 68, 84, 91, 95, 98, 111, 125, 132, 134, 135, 137, 141, 142, 153, 156, 157, 161, 163, 168, 171, 173, 179, 180, 182, 183, 202, 203, 224, 225, 227, 228, 237, 244, 245, 248, 255, 262, 281, 282], "some_condit": 53, "someon": 311, "someth": [45, 49, 56, 123], "sometim": [41, 42, 43, 49, 51, 275], "song": [42, 43, 54], "soon": [56, 99, 239, 248, 292], "sooner": 54, "sort": [0, 12, 22, 39, 41, 42, 45, 48, 50, 51, 52, 54, 122, 132, 134, 135, 136, 156, 159, 180, 239, 254, 286, 304, 307], "sort_bi": 195, "sort_hash_t": 52, "sort_kei": [41, 42, 43, 45, 51, 52, 53, 54, 196, 197, 198, 202, 245, 246, 247, 286, 307, 308, 315], "sortbi": [39, 42, 48, 51, 119, 159], "sound": [44, 53, 230, 231, 232, 233, 234, 235, 251, 258, 259], "soundkitchen": [39, 47], "sourc": [6, 7, 8, 12, 16, 17, 18, 21, 22, 23, 39, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 95, 105, 110, 114, 123, 124, 141, 149, 156, 160, 173, 197, 302, 307, 308, 310, 311], "source_1": [142, 155], "source_2": [142, 155], "source_column_nam": 50, "source_file_nam": 95, "source_n": [142, 155], "source_offset": 53, "source_tag": 43, "sourceforg": [2, 12, 50], "southern": 47, "sozaki": 52, "space": [0, 39, 41, 42, 43, 44, 48, 50, 51, 52, 53, 54, 85, 91, 104, 111, 138, 141, 156, 168, 205, 224, 225, 244, 253, 262, 264, 265, 266, 267, 268, 272, 273, 275, 279, 280, 302, 308], "spain": 188, "spammer": [245, 246, 247], "span": [41, 43, 44, 45, 54, 191, 192, 193, 194, 206, 275], "spanish": [53, 260], "spars": [50, 52], "speak": 310, "speaker": [2, 18], "spec": [39, 47, 48, 52, 156], "special": [17, 31, 41, 48, 68, 95, 100, 111, 125, 156, 168, 191, 192, 193, 206, 224, 231, 235, 244, 298, 308], "specif": [0, 22, 31, 41, 42, 43, 44, 45, 47, 48, 49, 51, 52, 53, 54, 91, 122, 132, 143, 154, 156, 159, 183, 205, 206, 225, 230, 231, 232, 233, 234, 235, 240, 257, 274, 276, 277, 304, 305, 306, 307], "specifi": [0, 6, 8, 17, 22, 27, 30, 31, 34, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 74, 85, 87, 91, 95, 96, 97, 99, 107, 110, 111, 112, 114, 115, 116, 117, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 161, 163, 164, 165, 167, 168, 170, 173, 175, 177, 178, 179, 180, 181, 183, 184, 186, 191, 192, 193, 194, 195, 196, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 219, 221, 223, 224, 225, 231, 232, 233, 234, 235, 237, 239, 241, 244, 245, 246, 247, 254, 257, 258, 259, 260, 261, 272, 274, 275, 276, 278, 286, 292, 295, 298, 303, 304, 305, 306, 307, 310, 311, 312, 313, 315], "specifii": 44, "speech": [0, 53, 231, 232, 233, 234, 235, 274], "speed": [39, 41, 43, 54, 56, 252, 254], "spefici": 184, "spell": [45, 243, 314], "spend": [224, 225], "sphere": [56, 189], "spheric": 188, "sphinx": [3, 15, 16, 18, 49, 50, 51], "sphr": [188, 189], "spil": 50, "split": [39, 50, 51, 104, 225, 254, 272], "spokesman": 3, "sport": 307, "spreadsheet": 243, "sql": [42, 44, 156, 245, 306], "squar": 188, "squeez": 48, "squeeze\u4ee5\u964d\u306edebian\u3084karmic\u4ee5\u964d\u306euubntu\u3067\u306f\u4ee5\u4e0b\u306e\u7528\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059": 14, "src": [41, 166, 305], "srpm": 52, "ss": [42, 225, 228, 244], "ssd": [41, 111, 161], "ssssss": 228, "st": [168, 225, 277], "stabil": [43, 44], "stabl": [42, 49, 51, 53, 93, 96, 156, 159, 197, 227], "stack": [43, 44, 48, 51], "stack_over_flow": 298, "stage": [41, 42, 43, 44, 45, 49, 51, 52, 53, 54, 197, 286], "stamp": [43, 228, 250, 251, 253], "stand": [50, 290], "standalon": [41, 181], "standard": [27, 31, 41, 42, 43, 50, 122, 125, 177, 282, 298, 308], "standbi": [45, 123], "stargazi": 278, "start": [17, 39, 41, 42, 43, 44, 45, 47, 48, 49, 51, 52, 85, 95, 96, 105, 114, 125, 132, 134, 135, 156, 158, 164, 180, 188, 208, 209, 224, 225, 226, 228, 240, 241, 243, 250, 252, 264, 292, 302, 308, 312], "start_tim": [41, 42, 43, 44, 50, 94, 96, 97, 158, 177, 298, 308, 312], "starttim": [41, 50, 94, 97, 158, 177, 241, 298, 308, 312], "startup": [42, 47, 166], "state": [41, 43, 45, 47, 53, 121, 188, 290, 298], "stateless": 53, "statement": 225, "static": [39, 41, 43, 44, 49, 50, 51, 52, 81, 178, 308], "station": [198, 239, 311, 315], "statist": [52, 54, 141], "statu": [22, 28, 32, 41, 43, 44, 47, 48, 49, 50, 51, 54, 57, 74, 92, 94, 97, 100, 105, 121, 149, 156, 173, 174, 175, 176, 177, 178, 188, 241, 290, 292, 308, 312], "status": [42, 100, 298], "status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b": 176, "status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0": 37, "status\u30b3\u30de\u30f3\u30c9": 36, "stderr": [42, 43], "stdin": 40, "stdout": [42, 43], "stem": [28, 32, 42, 43, 49, 52, 53, 260], "steme": 260, "steming_algorithm": 260, "step": [17, 18, 31, 42, 43, 51, 54, 110, 156, 244, 253, 305, 308], "steve": 51, "sticker": [41, 42, 43, 156], "still": [16, 17, 41, 42, 45, 46, 48, 49, 52, 96, 114, 131, 134, 149, 153, 156, 164, 173, 197, 227], "stock": [53, 56], "stop": [39, 42, 44, 47, 48, 49, 50, 51, 52, 53, 54, 58, 81, 99, 106, 114, 123, 134, 156, 157, 164, 175, 177, 245, 246, 247, 261, 309], "stop_word": [42, 45, 122, 165, 255, 261], "stopword": [43, 45], "storag": [22, 41, 42, 43, 44, 48, 101, 111, 161, 191, 192, 193], "storategi": 186, "store": [22, 34, 41, 42, 43, 45, 47, 48, 50, 53, 54, 57, 58, 61, 68, 74, 90, 91, 104, 110, 111, 112, 124, 132, 134, 135, 141, 155, 156, 181, 188, 201, 225, 229, 239, 244, 253, 254, 282, 298, 305, 306, 307, 308, 310, 311, 314, 315], "store_a": 41, "store_b": 41, "stori": 56, "str": 68, "str_length": 85, "str_ptr": 85, "str_size": 68, "straddl": 41, "strang": 244, "strategi": 156, "stream": [27, 31, 41, 44, 49, 51, 96, 125, 178], "strengthen": 56, "strerror": 49, "stretch": 41, "strftime": 53, "strict": [49, 50], "strictli": 186, "stridden": 41, "string": [11, 22, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 68, 74, 85, 90, 91, 95, 96, 98, 111, 112, 115, 116, 117, 129, 132, 134, 135, 142, 155, 156, 161, 171, 180, 184, 186, 188, 191, 192, 193, 195, 201, 203, 205, 206, 207, 208, 209, 223, 224, 231, 234, 235, 237, 244, 257, 258, 259, 275, 282, 304, 306, 307, 308, 310, 311, 314], "string1": 185, "string1\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u3068string2\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u306e\u9593\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u6c42\u3081\u307e\u3059": 185, "string2": 185, "string_length": [22, 51, 57, 132, 134, 135, 156, 182, 195], "string_liter": 49, "string_siz": 68, "string_slic": [22, 42, 43, 57, 182], "string_substr": [22, 42, 51, 57, 182], "string_tokn": 41, "stringifi": 51, "string\u306b": 11, "strip": [43, 44, 194], "strlen": 85, "stronger": [53, 156], "strongli": [23, 28, 32, 33, 56], "struct": 53, "structur": [0, 41, 42, 49, 51, 56, 95, 96, 111, 254, 307], "stub": 49, "studio": [8, 27, 41, 42, 43, 44, 47, 48, 50, 51], "style": [49, 50, 52, 96, 125, 141, 191, 193, 244], "su": 51, "sub": [0, 52, 53, 135, 180, 274], "sub1": [135, 156], "sub_filt": [22, 41, 43, 44, 48, 50, 53, 54, 57, 182, 195, 201], "subclass": [53, 274], "subclass0": 274, "subclass1": 274, "subclass2": 274, "subexp": 208, "subject": [41, 48], "sublim": 27, "submiss": [159, 250, 251, 253], "submit": [3, 22, 48, 159, 180, 250, 251, 253], "subrec": 74, "subrecord": 48, "subscript": [231, 232, 233, 234, 235, 258, 259], "subsect": 302, "subsequ": 56, "subset": [156, 282], "substitut": [17, 42, 156, 202, 224, 225], "substr": [42, 43, 51, 195, 208, 209, 224, 225], "succe": [52, 131], "succeed": [31, 50, 100, 115, 117, 121, 126, 127, 128, 129, 152, 170, 308], "succeeded_or_not": [114, 121, 127, 129, 152, 170], "success": [41, 51, 61, 68, 84, 85, 110, 111, 114, 118, 124, 137, 144, 145, 149, 150, 151, 160, 161, 163, 164, 166, 298], "successfulli": [51, 85, 127, 128, 308], "successor": 225, "suddenli": 48, "sudo": [12, 14, 18, 21, 24, 25, 27, 28, 30, 31, 32, 47, 281, 296, 303, 312], "suenaga": 50, "suet": 111, "suffici": [85, 111, 302], "suffix": [22, 44, 47, 52, 54, 144, 145, 151, 173, 179, 181, 195, 202, 205, 219, 231, 232, 233, 234, 235, 274, 304, 310], "suffixsearchterm": [224, 225], "sug": 252, "suggest": [22, 31, 37, 38, 39, 40, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 57, 92, 123, 172, 244, 250, 251], "suggest_prepar": [159, 250, 251, 253], "suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0": 39, "suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0": 39, "sugimoto": 50, "suit": [0, 42, 49, 205, 206], "suitabl": [41, 44, 49, 54, 90, 111, 125, 132, 135, 149, 156, 161, 175, 178, 205, 226, 245, 247, 254, 262, 264, 272, 273], "sum": [41, 49, 52, 132, 134, 135, 156, 245], "summar": 306, "summari": [22, 48, 57, 176, 256, 263, 289, 306], "sundai": 212, "suno": 49, "super": 42, "superior": [0, 42, 205, 206], "superscript": [231, 232, 233, 234, 235, 258, 259], "supoort": 54, "supplementari": 54, "support": [0, 1, 6, 7, 17, 21, 26, 27, 31, 32, 39, 40, 41, 42, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 85, 97, 99, 111, 132, 134, 135, 153, 154, 156, 158, 161, 167, 168, 173, 177, 181, 195, 201, 219, 224, 225, 226, 227, 230, 231, 235, 236, 240, 241, 243, 244, 248, 254, 260, 274, 277, 292, 295, 296, 305, 306, 307, 308, 310, 312, 313, 315], "suppos": [41, 123, 183, 196], "suppport": 51, "suppress": [40, 43, 44, 47, 49, 53, 135, 156], "sure": [18, 308], "surfac": 239, "surplu": 41, "surrog": 52, "surround": [41, 47, 191, 192, 193, 205, 206, 225], "sutamin": 41, "suzuki": 47, "swap": [43, 281], "swedish": [53, 260], "swig": 55, "switch": [18, 26, 41, 42, 43, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83], "syllab": [231, 232, 233, 234, 235, 258, 259], "symbol": [42, 43, 44, 53, 231, 232, 233, 234, 235, 237, 264, 265, 266, 267, 268, 269, 270, 271, 275], "synonym": [43, 44, 45, 51, 156, 243, 314], "synonymgroup": 43, "syntax": [22, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 57, 58, 68, 91, 223, 245, 304, 310], "syntax_error": 298, "syscal": [49, 308], "sysconfig": 296, "sysctl": [50, 281, 303], "system": [0, 5, 6, 7, 25, 27, 31, 32, 39, 42, 43, 44, 48, 49, 50, 51, 53, 54, 56, 94, 111, 118, 123, 124, 125, 132, 134, 135, 156, 175, 177, 203, 205, 206, 224, 225, 226, 281, 282, 302, 305, 315], "system32": 166, "systemctl": 296, "systemd": [47, 50, 51], "sytax": 42, "sz": 42, "t": [6, 7, 14, 17, 23, 31, 33, 34, 39, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 64, 68, 81, 84, 85, 90, 91, 95, 96, 98, 99, 101, 103, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 137, 140, 141, 142, 143, 149, 152, 153, 154, 155, 156, 157, 158, 159, 161, 163, 164, 167, 168, 173, 175, 177, 178, 180, 183, 184, 186, 191, 192, 193, 195, 201, 202, 205, 206, 219, 224, 225, 226, 227, 229, 230, 231, 235, 236, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 286, 291, 292, 295, 298, 308, 310, 312, 314], "t1": 11, "tab": [50, 64, 241, 243, 298], "tabel": 53, "tabl": [11, 22, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 74, 87, 91, 93, 94, 104, 105, 113, 118, 119, 120, 121, 124, 126, 127, 128, 132, 134, 135, 136, 138, 140, 143, 149, 150, 152, 153, 159, 160, 164, 170, 173, 175, 177, 179, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 237, 240, 243, 244, 245, 246, 247, 248, 250, 251, 253, 255, 260, 261, 275, 276, 278, 281, 286, 292, 295, 301, 304, 305, 306, 307, 309, 312, 313, 314, 315], "table1": 163, "table2": 163, "table_": [161, 254], "table_1": 155, "table_2": 155, "table_copi": [22, 51, 57, 92], "table_cr": [22, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 54, 57, 58, 91, 92, 110, 111, 112, 114, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 141, 142, 143, 149, 150, 152, 155, 156, 163, 164, 165, 170, 175, 176, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 236, 237, 240, 244, 245, 246, 247, 248, 254, 255, 260, 261, 275, 276, 278, 281, 286, 301, 305, 306, 307, 308, 310, 311, 313, 314], "table_dat_kei": [34, 41, 48, 49, 51, 52, 110, 141, 155, 161, 224, 225], "table_hash_kei": [34, 41, 42, 43, 44, 51, 58, 91, 110, 111, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 141, 142, 143, 149, 150, 152, 155, 156, 161, 163, 180, 183, 184, 186, 188, 194, 195, 196, 198, 201, 202, 203, 208, 209, 212, 219, 221, 225, 226, 229, 230, 236, 245, 281, 305, 306, 307, 308, 310, 311], "table_list": [22, 37, 39, 47, 53, 57, 92, 164, 175, 308], "table_list\u306f": 162, "table_n": 155, "table_nam": [42, 124, 140, 143, 149, 155], "table_name_1": 155, "table_name_2": 155, "table_name_n": 155, "table_name_of_index_column": 124, "table_no_kei": [34, 41, 42, 43, 44, 45, 49, 50, 58, 110, 111, 121, 122, 126, 127, 128, 132, 134, 135, 137, 140, 141, 143, 152, 155, 156, 161, 163, 180, 191, 192, 193, 197, 202, 203, 205, 206, 211, 224, 225, 226, 237, 244, 246, 247, 260, 261, 275, 276, 278, 286, 301, 310], "table_pat_kei": [34, 41, 42, 43, 44, 48, 50, 51, 74, 91, 110, 111, 112, 114, 122, 123, 124, 132, 134, 135, 137, 141, 142, 149, 150, 152, 155, 156, 161, 163, 164, 165, 170, 175, 180, 191, 192, 193, 195, 196, 201, 202, 203, 205, 206, 210, 224, 225, 237, 240, 244, 245, 246, 247, 255, 260, 261, 275, 276, 278, 281, 301, 307, 308, 310, 311, 313, 314], "table_remov": [22, 42, 47, 48, 50, 51, 52, 57, 92, 105, 110, 124, 137, 143, 149, 175, 275], "table_renam": [22, 40, 57, 92, 110, 124], "table_token": [22, 51, 57, 92, 262], "tablecursor": 50, "tablegroupflag": 50, "tablenam": 93, "table\u306ecolumn1\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore1\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059": 11, "table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059": 11, "table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059": 11, "tachikawa": 51, "tag": [12, 22, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 53, 54, 90, 91, 110, 111, 112, 132, 134, 135, 156, 191, 192, 193, 194, 195, 196, 205, 206, 219, 221, 225, 245, 246, 247, 254, 272, 273, 304], "tag1": [43, 205], "tag2": [43, 205], "tag_length": 135, "tagger": 0, "taggerd": 12, "tags2": 42, "tags_column": 42, "tags_nam": 44, "tahr": 49, "taht": 53, "tail": [12, 298], "tajima": 47, "takafumi": 56, "takagi01": 52, "takahiro\u3055\u3093": 37, "takahiro\u3055\u3093\u304c\u5831\u544a": 37, "takahiro\u3055\u3093\u304c\u63d0\u6848": 37, "takashi": [42, 43, 54, 121], "takashi\u3055\u3093": 39, "takashi\u3055\u3093\u304c\u5831\u544a": 39, "takatsugu": 49, "takayama": 50, "takayuki": 39, "take": [42, 43, 51, 53, 96, 107, 110, 111, 112, 114, 115, 116, 117, 118, 124, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 167, 168, 169, 170, 173, 186, 296, 308], "taken": 142, "takenaka": 56, "takenouchi": 56, "takiuchi": 48, "takoyaki": 45, "takuto\u3055\u3093": 37, "takuto\u3055\u3093\u304c\u5831\u544a": 37, "talk": [2, 12, 42, 48, 50, 52, 54], "tamano": [49, 51], "tanab": 48, "tanuma": 49, "tar": [12, 27, 31], "target": [18, 27, 31, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 61, 68, 74, 91, 103, 104, 105, 115, 116, 117, 123, 124, 125, 126, 127, 128, 131, 132, 134, 135, 137, 143, 149, 150, 152, 153, 156, 161, 168, 180, 183, 184, 191, 192, 193, 196, 201, 202, 203, 205, 206, 211, 224, 225, 231, 232, 233, 234, 235, 244, 246, 247, 258, 259, 275, 292, 305, 308, 310], "target_charact": 68, "target_class": [53, 231, 232, 233, 234, 235], "target_column": [43, 237], "target_nam": [41, 49], "taro": 307, "task": [0, 42, 47], "tasuku": [50, 55], "tatsuya": 47, "tauru": 41, "tcp": 180, "tcp_nodelai": 51, "te": [168, 277], "team": 53, "technic": 56, "techniqu": [245, 246, 247], "technolog": 56, "technologi": 56, "tel": 42, "tel_index": 42, "telephon": 42, "tell": 275, "tellist": 42, "telsindex": 42, "templ": 41, "temporari": [6, 22, 41, 42, 43, 44, 45, 47, 50, 51, 52, 53, 57, 163, 175, 188, 303], "temporarili": 53, "tend": [141, 156, 310], "tendenc": 111, "term": [0, 34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 108, 111, 123, 124, 132, 134, 135, 142, 155, 156, 163, 165, 175, 191, 192, 193, 202, 203, 205, 206, 224, 245, 246, 247, 255, 260, 261, 275, 281, 301, 308, 310, 314], "term_column": 42, "termexpans": 42, "termin": [47, 50, 68, 85, 175, 177, 308, 311], "terms_tabl": 156, "termux": 45, "teruya": 50, "test": [6, 14, 23, 28, 32, 33, 47, 49, 50, 51, 54, 133, 156, 176, 177, 277, 305, 308, 310, 311, 312], "test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059": 176, "test_loc": 176, "test_str": 14, "test_text_otoj": 14, "testdb": [176, 181], "tetsuharu": 49, "tex": 168, "text": [17, 22, 27, 31, 34, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 68, 74, 84, 90, 91, 95, 112, 125, 127, 132, 134, 135, 138, 141, 142, 152, 155, 156, 161, 163, 165, 168, 176, 186, 191, 192, 194, 202, 203, 205, 206, 219, 223, 225, 227, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 241, 244, 245, 246, 247, 254, 257, 258, 259, 262, 264, 265, 266, 267, 268, 272, 273, 274, 275, 276, 277, 278, 281, 292, 304, 305, 307, 311, 314], "text_column": 44, "tf": [41, 74, 245, 246, 247], "tfidfmodel": 41, "th": [52, 138, 168], "tha": [44, 96], "than": [0, 18, 34, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 74, 91, 94, 99, 105, 111, 112, 118, 134, 135, 141, 142, 156, 159, 161, 173, 175, 177, 183, 186, 188, 195, 196, 197, 202, 205, 206, 208, 219, 223, 226, 228, 243, 244, 245, 246, 247, 253, 264, 274, 275, 277, 281, 282, 290, 296, 305, 306, 308, 310, 311, 315], "thank": 311, "the_number_of_charact": 156, "the_number_of_loaded_record": 125, "theater": 314, "theatr": 314, "thei": [17, 31, 41, 42, 43, 44, 45, 50, 58, 91, 94, 111, 124, 125, 132, 134, 135, 137, 142, 144, 145, 151, 156, 163, 168, 177, 191, 192, 193, 201, 202, 210, 223, 224, 225, 226, 228, 237, 241, 243, 245, 246, 247, 248, 250, 251, 252, 253, 254, 274, 281, 292], "them": [16, 17, 18, 24, 25, 27, 28, 31, 32, 41, 42, 43, 45, 50, 52, 53, 54, 60, 68, 91, 95, 111, 124, 134, 135, 137, 149, 156, 161, 163, 180, 183, 188, 195, 196, 203, 206, 219, 224, 225, 227, 244, 245, 264, 265, 266, 267, 268, 269, 270, 271, 273, 279, 280, 281, 286, 298, 305, 308, 315], "themselv": [17, 240, 243], "therefor": [18, 41, 42, 43, 44, 45, 54, 94, 122, 123, 156, 186, 272, 275], "thesauru": [43, 44, 156], "thi": [0, 3, 5, 6, 7, 8, 18, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 61, 64, 74, 85, 90, 91, 92, 94, 95, 96, 107, 110, 111, 112, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 172, 173, 175, 177, 179, 180, 182, 183, 186, 188, 191, 193, 195, 196, 197, 198, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 222, 224, 225, 227, 228, 231, 232, 233, 234, 235, 237, 238, 240, 241, 243, 244, 245, 246, 247, 248, 249, 250, 251, 253, 257, 258, 259, 264, 272, 274, 275, 276, 277, 278, 281, 282, 283, 286, 292, 298, 302, 303, 305, 306, 308, 310, 311, 312, 313, 314, 315], "thing": [42, 50], "think": [44, 156, 163, 225, 244, 245, 246, 247], "third": [56, 112, 156, 219, 225, 305], "thorsten": 51, "those": [0, 17, 18, 27, 31, 40, 44, 111, 156, 186, 188, 223, 224, 225, 230, 241, 252, 253, 254, 292, 305, 308], "though": [0, 43, 47, 48, 49, 51, 52, 74, 111, 173, 250, 276, 310], "thought": [42, 43], "thread": [0, 41, 42, 45, 48, 49, 50, 51, 52, 53, 54, 81, 85, 94, 105, 118, 127, 133, 156, 157, 158, 163, 166, 167, 175, 180, 203, 292], "thread_count": 50, "thread_dump": [22, 42, 57, 92], "thread_id": [53, 175], "thread_limit": [22, 50, 52, 53, 57, 92, 105, 118, 133, 143, 163], "thread_tabl": 176, "thread_title_column": 176, "threasd": 175, "three": [44, 48, 56, 90, 95, 114, 124, 138, 156, 183, 184, 188, 192, 195, 208, 219, 223, 246, 247, 250, 251, 296, 305, 306, 308, 310], "threshold": [37, 39, 41, 42, 43, 44, 45, 47, 49, 50, 52, 53, 54, 120, 156, 159, 171, 175, 186, 301], "threshold_1": 43, "threshold_2": [43, 186], "threshold_3": 43, "threshold_n": 43, "through": [0, 177, 180], "throughout": 56, "throughput": [39, 41, 292], "thu": [0, 43, 45, 49, 51, 52, 54, 111, 131, 134, 135, 156, 179, 181, 224, 309, 310, 314, 315], "thursdai": 212, "tim": 52, "time": [0, 6, 22, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 90, 94, 95, 96, 99, 106, 111, 123, 132, 134, 135, 136, 137, 140, 141, 142, 143, 149, 152, 153, 155, 156, 157, 158, 159, 161, 166, 173, 175, 176, 177, 180, 205, 206, 211, 212, 224, 226, 228, 243, 244, 248, 250, 251, 253, 272, 275, 281, 301, 304, 308, 315], "time_classify_": [41, 42], "time_classify_dai": [22, 41, 51, 57, 182], "time_classify_day_of_week": [22, 42, 53, 57, 182], "time_classify_hour": [22, 51, 57, 134, 182], "time_classify_minut": [22, 51, 57, 182], "time_classify_month": [22, 51, 57, 182], "time_classify_second": [22, 51, 57, 182], "time_classify_week": [22, 51, 57, 182], "time_classify_year": [22, 51, 57, 182], "time_column": 176, "time_format": 53, "time_format_iso8601": [41, 42, 43, 53], "time_loc": 177, "time_stamp": 53, "timeout": [22, 44, 45, 48, 51, 57, 92, 175], "timestamp": [41, 42, 44, 51, 53, 132, 134, 135, 136, 137, 140, 143, 152, 156, 173, 175, 180, 211, 311], "timestamp_text": [135, 156], "timev": 41, "timezon": 42, "timgates42": 41, "tini": 50, "titl": [41, 42, 43, 44, 48, 49, 53, 90, 122, 125, 126, 127, 128, 132, 134, 135, 152, 156, 163, 185, 202, 210, 224, 225, 245, 246, 247, 305, 306, 307, 308, 310, 312], "title_html": 111, "title_index": 245, "title_index_column": 52, "title_term": 41, "title_text": 111, "tiwawan": 50, "tl": 51, "tld": 306, "tmp": [6, 27, 31, 42, 48, 159, 175, 243, 244, 292, 298, 308, 312], "to_column": 110, "tobbi": [202, 203], "todai": 0, "todo": [6, 14, 52, 53, 62, 63, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 86, 88, 90, 91, 95, 111, 125, 134, 138, 148, 156, 179, 182, 205, 207, 220, 224, 225, 248, 281, 283, 292, 309], "togeth": [231, 235], "token": [22, 24, 25, 28, 30, 31, 32, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 92, 102, 110, 111, 123, 124, 132, 134, 135, 142, 156, 161, 165, 169, 176, 224, 225, 229, 231, 232, 233, 234, 235, 237, 244, 251, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 308], "token1": 224, "token2": 224, "token_column": 41, "token_filt": [42, 43, 44, 45, 51, 52, 122, 165, 255, 257, 258, 259, 260, 261], "token_filter_1": [142, 155], "token_filter_2": [142, 155], "token_filter_n": [142, 155], "token_filter_nam": 155, "token_filter_name_1": 155, "token_filter_name_2": 155, "token_filter_name_n": 155, "token_fitl": 155, "tokenbigram": [22, 41, 42, 43, 44, 45, 57, 111, 132, 134, 135, 142, 152, 155, 156, 161, 163, 165, 168, 169, 175, 180, 191, 192, 193, 202, 203, 205, 206, 210, 224, 225, 226, 245, 246, 247, 251, 254, 255, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271, 274, 275, 279, 280, 281, 301, 308, 310, 311, 314], "tokenbigramignoreblank": [22, 45, 57, 155, 169, 263, 301], "tokenbigramignoreblanksplitsymbol": [22, 57, 155, 169, 263, 301], "tokenbigramignoreblanksplitsymbolalpha": [22, 52, 57, 155, 169, 263, 301], "tokenbigramignoreblanksplitsymbolalphadigit": [22, 52, 57, 155, 169, 263, 301], "tokenbigramsplitsymbol": [22, 53, 57, 155, 169, 263, 275, 301], "tokenbigramsplitsymbolalpha": [22, 57, 155, 156, 168, 169, 263, 264, 301], "tokenbigramsplitsymbolalphadigit": [22, 42, 44, 57, 110, 155, 169, 202, 251, 263, 301], "tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u3082bigram\u3092\u751f\u6210\u3057": 299, "tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068": 301, "tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u5834\u5408\u3082\u91cd\u307f\u4ed8\u3051\u3092\u8003\u616e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u3053\u3068\u306f\u304b\u308f\u308a\u3042\u308a\u307e\u305b\u3093": 301, "tokenbigramsplitxxx": 264, "tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059": 301, "tokenbigram\u306a\u3069": 301, "tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059": 301, "tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f": 299, "tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f": 299, "tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528": 301, "tokenbigrm": 110, "tokendelimit": [22, 45, 53, 57, 155, 168, 169, 180, 253, 257, 258, 259, 263, 273], "tokendelimitnul": [22, 57, 155, 169, 263], "tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0": 38, "tokendelmit": 53, "tokendocumentvectorbm25": [41, 155, 169], "tokendocumentvectortfidf": [41, 155, 169], "tokenfilt": [41, 44, 54], "tokenfilternfkc": [22, 57, 256, 258, 259], "tokenfilternfkc100": [22, 53, 57, 155, 256], "tokenfilternfkc121": [54, 155], "tokenfilternfkc130": [41, 42, 43, 155], "tokenfilternfkc150": [22, 44, 45, 57, 155, 256], "tokenfilterstem": [22, 28, 32, 42, 43, 49, 52, 53, 57, 256], "tokenfilterstopword": [22, 42, 43, 45, 49, 50, 53, 57, 165, 255, 256], "tokenh3index": 45, "tokenizer_1": 155, "tokenizer_2": 155, "tokenizer_error": 298, "tokenizer_list": [22, 49, 57, 92], "tokenizer_n": 155, "tokenizer_nam": 155, "tokenizer_name_1": 155, "tokenizer_name_2": 155, "tokenizer_name_n": 155, "tokenkytea": 47, "tokenmecab": [22, 41, 44, 45, 47, 53, 54, 57, 103, 142, 155, 156, 169, 225, 232, 233, 234, 257, 258, 259, 263, 301], "tokenmecab\u3067\u306f": 301, "tokenmecab\u306e\u5834\u5408": 301, "tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f": 299, "tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u524d\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059": 299, "tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u5f8c\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059": 299, "tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u4e8b\u524d\u306b\u6e96\u5099\u3057\u305f\u8f9e\u66f8\u3092\u7528\u3044\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b\u305f\u3081": 301, "tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u3044\u308b\u5834\u5408\u306f\u3053\u306e\u30af\u30a8\u30ea\u306f\u30de\u30c3\u30c1\u3057\u307e\u305b\u3093": 301, "tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u306e\u65b9\u3092tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u3088\u308a\u3082\u91cd\u8996\u3059\u308b\u3088\u3046\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059": 301, "tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528": 301, "tokenngram": [22, 41, 42, 43, 44, 45, 53, 54, 57, 123, 155, 156, 169, 203, 224, 225, 263], "tokenpattern": [22, 54, 57, 155, 169, 263], "tokenregexp": [22, 50, 51, 57, 152, 155, 169, 244, 263], "tokenstopword": 53, "tokent": [22, 54, 57, 155, 169, 263], "tokentrigram": [22, 50, 57, 155, 168, 169, 263], "tokenunigram": [22, 57, 155, 169, 263], "tokyo": [188, 315], "tokyogeopoint": [39, 51, 90, 141, 142, 155, 188, 189, 190, 315], "told": 56, "toler": 44, "tom": [202, 203], "tomita": 37, "tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210": 37, "tomita\u3055\u3093\u304c\u5831\u544a": 37, "tomo": 307, "tomoatsu": [37, 47], "tomohiro": 54, "tomotaka_ito\u3055\u3093": 39, "tomotaka_ito\u3055\u3093\u304c\u5831\u544a": 39, "tomygx": 50, "too": [41, 42, 43, 44, 45, 48, 50, 51, 52, 53, 54, 74, 81, 91, 111, 149, 156, 175, 225, 227, 302, 305, 310], "too_large_offset": 298, "too_many_index_match_ratio": [42, 183, 196], "too_many_link": 298, "too_many_open_fil": 298, "too_many_open_files_in_system": 298, "too_many_symbolic_link": 298, "too_small_limit": 298, "too_small_offset": 298, "tood": [85, 160], "tool": [6, 15, 17, 18, 21, 22, 41, 42, 44, 50, 54, 96, 178, 227, 292, 296, 304, 308], "top": [27, 44, 306], "top_left": [39, 190], "top_left\u3068bottom_right\u304c\u306a\u3059\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059": 190, "topic": [3, 22], "torinki": 51, "tortoisegit": 8, "toshi": 45, "toshio": [45, 52], "totabl": 110, "total": [34, 41, 42, 43, 47, 50, 51, 52, 94, 104, 108, 141, 158, 161, 176, 254, 281, 298, 303], "total_chunk_s": 141, "total_s": 141, "touch": [50, 137], "tower": 41, "toybox": 305, "tpreleasecleanupgroupmemb": 166, "tr": 28, "trace": [22, 43, 44, 56, 57, 92], "trace_log": [44, 96], "tracker": [3, 22, 49], "trade": 262, "tradit": [0, 49], "tradition": 45, "trail": 53, "transfer": [0, 22, 290, 296, 298, 304], "translat": [3, 43, 44, 47, 49, 54], "transpos": 156, "transposit": [44, 51, 156], "travel": 311, "travi": [20, 22, 47, 48, 49], "treat": [43, 47, 48, 49, 50, 53, 56, 132, 134, 135, 137, 156, 168, 195, 224, 225, 239, 250, 251, 278], "tree": [49, 56, 96], "trend": 156, "tri": [52, 195, 275, 311], "trial": 0, "trie": [22, 39, 41, 43, 44, 47, 48, 50, 51, 54, 104, 120, 142, 155, 161, 224, 225, 254, 304, 308], "trigger": 149, "trigram": [53, 275, 279], "tritonn": [43, 44, 132, 134, 135, 156, 224, 225], "tritonn\u306e\u30b7\u30b9\u30c6\u30e0\u3082\u3059\u3079\u3066\u79fb\u884c\u3057\u307e\u3057\u305f": 156, "trixi": 44, "troubl": 17, "troubleshoot": [22, 37, 52], "troublesom": [43, 44], "true": [36, 41, 42, 43, 44, 45, 48, 49, 50, 51, 56, 58, 91, 94, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 170, 177, 180, 183, 184, 186, 188, 189, 190, 192, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 245, 246, 247, 255, 257, 258, 259, 260, 261, 274, 275, 276, 278, 282, 286, 298, 305, 306, 307, 308, 310, 312, 313, 314, 315], "truncat": [22, 39, 48, 49, 50, 51, 53, 57, 74, 92, 123, 124], "truncate_precision_1byt": 141, "truncate_precision_2byt": 141, "truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0": 39, "trusti": 49, "try": [3, 41, 45, 50, 52, 111, 115, 175, 262, 291, 310, 311], "tsu_root": 50, "tsv": [50, 144, 145, 151, 241, 298], "tuesdai": 212, "tune": [22, 41, 43, 48, 50, 57, 91, 149, 156, 303], "tupl": [195, 205], "turn": [52, 177], "tutori": [22, 47, 49, 50, 85, 305, 308], "tweet": [2, 226], "twice": [50, 54, 156, 224], "twitter": [22, 47, 51, 311], "twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059": 10, "twitter\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u5b89\u5fc3\u611f\u304b\u3089groonga\u30e6\u30fc\u30b6\u30fc\u306e\u62e1\u5927\u306b\u7e4b\u3052\u308b": 10, "twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067": 10, "twitter\u7b49\u3067\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u969b\u306f\u3053\u3053\u3067\u7528\u610f\u3057\u305f\u30a2\u30ca\u30a6\u30f3\u30b9\u6587\u306e\u8981\u7d04\u3092\u4f7f\u7528\u3057\u307e\u3059": 12, "twitter\u7de8": 3, "two": [18, 19, 24, 25, 28, 32, 41, 42, 44, 48, 49, 50, 52, 54, 56, 68, 74, 94, 95, 111, 112, 117, 132, 133, 134, 135, 137, 143, 149, 150, 156, 160, 161, 163, 164, 167, 168, 177, 180, 181, 183, 188, 193, 196, 197, 201, 202, 203, 205, 206, 208, 209, 210, 219, 224, 228, 230, 239, 244, 246, 251, 253, 264, 272, 286, 291, 292, 296, 306, 307, 308, 310, 311, 315], "tx": 277, "txt": [16, 17, 18, 277], "type": [13, 22, 34, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 61, 64, 68, 71, 74, 81, 85, 87, 90, 91, 96, 100, 110, 114, 121, 123, 124, 125, 138, 140, 153, 154, 159, 161, 163, 168, 173, 176, 177, 178, 183, 184, 188, 196, 197, 208, 209, 210, 224, 225, 231, 232, 233, 234, 235, 237, 239, 241, 244, 245, 246, 247, 250, 251, 253, 254, 264, 286, 292, 298, 304, 306, 307, 308, 310, 313, 315], "type1": [159, 180], "type2": [159, 180], "type_1": 155, "type_2": 155, "type_in_hex": 74, "type_n": 155, "type_nam": 155, "type_name_1": 155, "type_name_2": 155, "type_name_n": 155, "type_of_the_column": 210, "typedef": 81, "typic": [50, 156], "typo": [39, 42, 44, 47, 48, 49, 50, 51, 52, 54, 243, 250, 251], "u": [16, 17, 19, 31, 45, 50, 53, 54, 123, 168, 230, 231, 232, 233, 234, 235, 243, 257, 258, 259, 272, 273, 275, 277], "u0000ful": 273, "u0000http": 273, "ubuntu": [12, 18, 21, 22, 23, 27, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 296], "ubuntu\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059": 12, "ubuntu\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306f": 12, "ubuntu\u5411\u3051\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f5c\u6210\u306b\u306f": 12, "ubuntu\u5411\u3051\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c6\u30b9\u30c8\u7528\u306b\u516c\u958b\u3059\u308b\u6642\u306f": 12, "uchiyama": 52, "ucrt": 54, "ud83c": 52, "udf7a": 52, "ueno": [39, 47], "ueno\u3055\u3093": [37, 38], "ueno\u3055\u3093\u304c\u5831\u544a": 38, "ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9": 37, "ui": 156, "uint": [47, 51], "uint16": [41, 42, 44, 48, 90, 96, 111, 141, 142, 155], "uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528": 37, "uint32": [34, 41, 42, 43, 44, 45, 47, 48, 49, 58, 90, 91, 95, 96, 110, 111, 112, 114, 121, 132, 134, 135, 141, 142, 155, 156, 161, 162, 163, 164, 170, 180, 183, 186, 195, 201, 210, 211, 224, 225, 226, 229, 244, 260, 261, 276, 278, 281, 286, 301, 306, 307, 308, 310, 312, 313, 314, 315], "uint32_column": 50, "uint32_t": [41, 81], "uint64": [34, 41, 42, 44, 45, 48, 49, 52, 90, 96, 141, 142, 155, 180], "uint64_t": 41, "uint8": [37, 41, 42, 43, 48, 58, 90, 111, 112, 124, 141, 142, 149, 150, 155, 212], "ul": 168, "ull": 168, "ultim": 56, "ultra": 307, "umask": 49, "umemoto": 39, "unabl": [42, 43], "unari": 48, "unauthent": 47, "unbias": 41, "unchang": 85, "uncontinu": 47, "undefin": 305, "under": [31, 41, 42, 44, 45, 49, 52, 54, 177, 178, 180, 181, 208, 209, 292], "underflow": [53, 305], "underli": [0, 42], "underscor": [111, 161], "understand": [18, 49, 54, 122, 137, 156, 163, 308], "undocu": 156, "unexpect": [44, 45, 47, 49, 51, 52, 53], "unexpectedli": [41, 48, 50, 51, 52, 124], "unexpectedlli": 52, "unfinish": 53, "unhandl": 180, "uni": 275, "unicod": [41, 44, 45, 50, 53, 54, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259], "unicorn": 50, "unifi": 53, "unify_alphabet": [41, 44, 53, 203, 225], "unify_digit": [41, 44, 53], "unify_hyphen": [53, 257], "unify_hyphen_and_prolonged_sound_mark": [42, 53], "unify_kana": [42, 43, 44, 53, 54, 257], "unify_kana_cas": [44, 53], "unify_kana_hyphen": 44, "unify_kana_prolonged_sound_mark": 44, "unify_kana_voiced_sound_mark": 53, "unify_katakana_bu_sound": 53, "unify_katakana_di_sound": 44, "unify_katakana_du_small_sound": 44, "unify_katakana_du_sound": 44, "unify_katakana_gu_small_sound": 44, "unify_katakana_trailing_o": 44, "unify_katakana_v_sound": [44, 53], "unify_katakana_wo_sound": 44, "unify_katakana_zu_small_sound": 44, "unify_latin_alphabet_with": 45, "unify_middle_dot": 53, "unify_prolonged_sound_mark": 53, "unify_symbol": 53, "unify_to_katakana": 54, "unify_to_romaji": [53, 257], "unigram": [275, 280], "uniniti": [44, 45, 50], "uninstal": 47, "uniqu": [53, 111, 153, 180], "unit": [42, 45, 92, 96, 99, 121, 158, 173, 180, 188, 205, 206, 211, 225, 279, 280, 298], "unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066": 14, "univers": 32, "unix": [3, 5, 8, 23, 31, 42, 49, 158, 211], "unix_time_when_command_is_start": 95, "unknow": 49, "unknown": [40, 43, 54, 58, 74, 166, 278], "unknown_error": 298, "unless": [42, 123, 149, 150], "unlik": 191, "unlimit": [44, 51], "unlink": [41, 52, 68], "unload": 47, "unlock": [53, 85, 125], "unmanag": [108, 141], "unmap": [50, 52, 53, 118], "unmatch": [43, 54], "unnam": 52, "unnecessari": [41, 52, 281], "unpack": 41, "unpatch": 55, "unprocess": 158, "unregist": [144, 145], "unrel": [39, 41], "unreli": 173, "unresolv": 39, "unrestrict": 56, "unsaf": [50, 51], "unsign": [49, 50, 61, 68, 71, 74, 85, 100, 111, 141, 282, 298, 305], "unsort": 51, "unsplit": [11, 156], "unstabl": [40, 45], "unsupport": [50, 53], "unsupported_command_vers": 298, "untag": 194, "until": [17, 41, 42, 43, 44, 45, 49, 85, 99, 111, 118, 125, 156, 226, 275], "unus": [49, 54, 118], "unvendor": 45, "unwelcom": 45, "up": [41, 42, 43, 44, 45, 50, 52, 53, 54, 94, 175, 180, 241, 307, 308], "updag": 47, "updat": [3, 12, 18, 22, 28, 32, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 111, 123, 125, 141, 156, 177, 205, 206, 226, 249, 254, 274, 305, 307, 308, 310], "update_buffer_s": 71, "update_not_allow": 298, "updated_at": 301, "upgrad": [41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 53, 54, 291], "upon": 56, "upper": [39, 49, 111, 161, 244, 308], "uppercas": 244, "upstream": [12, 18], "upstream\u306b\u672c\u5bb6\u306emingw": 12, "uptim": [41, 94, 97, 158, 177, 241, 298, 308, 312], "uptime\u306e\u8868\u793a\u5f62\u5f0f\u3092\u8aad\u307f\u3084\u3059\u3044\u5f62\u5f0f\u306b\u5909\u66f4": 36, "urgent": 56, "uri": [96, 177, 178, 180], "url": [33, 39, 41, 49, 122, 178, 292], "urlencod": [54, 178], "us": [0, 1, 3, 6, 7, 8, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 39, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 87, 90, 91, 95, 96, 98, 99, 100, 103, 107, 108, 109, 110, 111, 112, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 138, 140, 141, 142, 143, 144, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 165, 167, 168, 170, 173, 175, 177, 178, 181, 182, 183, 186, 191, 192, 193, 194, 195, 196, 197, 201, 202, 203, 205, 206, 208, 209, 210, 219, 223, 224, 225, 227, 228, 229, 230, 232, 233, 234, 236, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 249, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 286, 290, 291, 295, 296, 298, 303, 304, 305, 306, 307, 308, 309, 310, 312, 313, 314], "usa": 306, "usabl": [171, 180], "usag": [0, 22, 41, 42, 43, 44, 48, 49, 50, 51, 52, 54, 57, 224, 225, 310], "usage_typo_tolerance_japanes": 156, "use_base_form": 54, "use_offline_index": 40, "use_range_index": 50, "use_read": [53, 257, 258, 259], "usec": 41, "user": [3, 6, 7, 8, 18, 31, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 74, 81, 95, 98, 99, 110, 111, 112, 114, 121, 124, 137, 140, 141, 143, 149, 150, 153, 155, 156, 164, 166, 170, 173, 176, 177, 183, 186, 193, 195, 202, 203, 206, 210, 224, 225, 228, 237, 240, 250, 251, 252, 253, 281, 282, 292, 307, 312, 314], "user_ag": [149, 150, 183, 186], "user_column": 176, "user_data": 85, "user_input": 225, "user_pattern": 195, "userdefinedt": 237, "usernam": 307, "users_20160320": 137, "users_index": 311, "users_loc": 311, "users_memo": [202, 203], "users_nam": [42, 44, 124, 202, 203], "usr": [14, 27, 31, 144, 145, 151, 175, 177, 227], "usual": [45, 50, 51, 181, 305, 310], "utc": [95, 225], "utf": [47, 48, 53, 55, 74, 180, 225, 230, 236, 241, 277], "utf8": [31, 51, 175], "util": 177, "utop": 50, "uuid": 51, "uuuuuu": 225, "uvector": [41, 45], "uzulla": 39, "v": [12, 28, 29, 32, 41, 48, 302], "v0": [197, 227], "v1": 51, "v13": 44, "v14": 45, "v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d": 11, "v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v1\u306e\u5024\u306e\u4e2d\u306b": 11, "v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b": 11, "v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b": 11, "v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b": 11, "v2": 51, "v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059": 11, "v2\u306e\u5024\u306e\u8981\u7d20\u304c\u63a5\u8fd1\u3057\u3066\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059": 11, "v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044": 11, "v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d": 11, "v6": 44, "va_list": 41, "valgrind\u3092\u7528\u3044\u3066\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u3084\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3057\u3064\u3064": 14, "valid": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 111, 132, 134, 135, 156, 224, 225, 253, 254, 305], "valu": [0, 31, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 64, 71, 74, 85, 87, 90, 91, 95, 96, 99, 100, 171, 173, 175, 177, 178, 224, 225, 226, 231, 232, 233, 234, 235, 237, 241, 243, 244, 245, 250, 251, 252, 253, 254, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280, 281, 282, 292, 296, 298, 303, 305, 306, 308, 313, 315], "value1": [110, 125, 177, 195, 196, 225], "value2": [125, 225], "value_1": [155, 308, 312], "value_2": [155, 308, 312], "value_n": 155, "value_s": [51, 142], "value_typ": 155, "value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059": 89, "valuen": [195, 196], "value\u304c\u5c5e\u3059\u308b\u578b": 162, "var": [11, 31, 50, 85, 112, 173, 175, 177, 296], "var_siz": [74, 124, 141, 142], "vari": [34, 85, 156], "variabl": [31, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 85, 112, 124, 141, 142, 149, 150, 156, 225, 243, 298, 305], "variant": [43, 53, 56, 274], "variantsa": 275, "variat": 56, "varieti": 307, "variou": [22, 27, 42, 56, 304, 308, 311], "vc": [41, 54], "vcruntim": [33, 42, 166], "vcruntime140_1": 41, "vcstartup": 166, "vctool": 166, "vdw": [306, 308, 315], "ve": 311, "vector": [22, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 87, 90, 112, 121, 132, 134, 135, 141, 142, 155, 156, 197, 220, 221, 222, 250, 304, 311], "vector_column": [44, 48, 51], "vector_find": [22, 53, 57, 182], "vector_join": [43, 44], "vector_new": [22, 52, 57, 132, 134, 135, 156, 182], "vector_s": [22, 50, 53, 57, 132, 182], "vector_slic": [22, 41, 51, 52, 57, 182], "vector_text_column": 50, "verb": 56, "verbos": 96, "veres": 292, "veri": [0, 41, 42, 43, 44, 47, 51, 52, 95, 106, 125, 132, 134, 135, 156, 191, 192, 193, 195, 206, 219, 224, 225, 244, 245, 250, 254, 292, 307], "version": [17, 22, 26, 27, 28, 29, 32, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 74, 85, 92, 94, 96, 97, 98, 99, 109, 110, 111, 112, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 146, 149, 150, 151, 152, 153, 155, 156, 157, 158, 160, 161, 163, 166, 167, 170, 171, 173, 175, 176, 177, 184, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 198, 203, 205, 206, 207, 208, 209, 211, 212, 219, 220, 221, 222, 224, 225, 227, 232, 233, 234, 235, 236, 241, 244, 246, 247, 248, 257, 258, 259, 277, 282, 283, 284, 285, 286, 287, 288, 291, 298, 308, 312], "version1": 93, "version2": 93, "version3": 93, "version4": 93, "version_major": [41, 94, 158, 177, 298, 308, 312], "version_minor": [41, 94, 158, 177, 298, 308, 312], "version_patch": [41, 94, 158, 177, 298, 308, 312], "version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f": 93, "version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059": 93, "version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0": 37, "version\u30d1\u30e9\u30e1\u30fc\u30bf\u306bstable\u6271\u3044\u3067\u306a\u3044\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f": 93, "version\u30d1\u30e9\u30e1\u30fc\u30bf\u3084command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u305b\u305a\u306bgroonga\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u305f\u969b\u306b\u306f": 93, "version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059": 93, "version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059": 93, "vertic": [111, 161], "vervet": [50, 51], "via": [17, 18, 27, 29, 31, 42, 47, 53, 54, 100, 122, 180, 253, 275], "video": 307, "view": [12, 22, 47, 56, 196, 303, 304, 312], "villag": 56, "violat": 52, "violin": 53, "virgo": 41, "virtual": [48, 50], "vision": 56, "visual": [0, 8, 27, 33, 39, 41, 42, 43, 44, 47, 48, 49, 50, 95, 155], "visut": 51, "vivid": [50, 51], "vm": [47, 228, 303], "vmstat": 303, "vnd": 44, "vocabulari": [44, 308], "voic": [53, 230, 231, 232, 233, 234, 235, 258, 259], "void": [40, 41, 74, 81, 84, 85], "void_t": 81, "vojtovich": 49, "volum": 29, "volunt": 56, "vowel": [44, 231, 232, 233, 234, 235], "vs2019": [33, 42, 166], "vulner": [49, 54], "w": [129, 173, 175, 228, 262, 264, 275, 303], "w64": 12, "wa": [41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 56, 96, 111, 123, 141, 188, 229, 230, 240, 302, 305, 308], "wai": [0, 3, 6, 7, 19, 47, 48, 49, 52, 53, 54, 91, 124, 156, 171, 173, 177, 180, 181, 202, 223, 241, 274, 306, 308, 310, 311, 314], "wait": [41, 42, 45, 85, 99, 106, 132, 134, 156], "wal": 42, "wanab": 48, "want": [6, 7, 8, 13, 16, 18, 24, 25, 27, 28, 30, 31, 32, 41, 42, 43, 44, 45, 49, 50, 52, 54, 58, 74, 81, 90, 96, 110, 111, 123, 125, 132, 133, 137, 138, 140, 141, 143, 149, 154, 155, 156, 161, 163, 165, 168, 173, 175, 177, 180, 188, 196, 201, 205, 206, 210, 224, 237, 243, 244, 248, 250, 251, 253, 260, 262, 264, 274, 275, 290, 296, 298, 303, 306, 308, 310, 314], "wareohji": 47, "warm": [175, 177], "warn": [6, 40, 42, 43, 47, 48, 49, 52, 53, 54, 111, 129, 130, 156, 175, 177, 228, 244, 247], "warp": 49, "warri": 23, "washida": 48, "wasn": [41, 42, 51, 53], "wast": [41, 45], "watcom": 27, "watson": 45, "we": [2, 3, 15, 16, 17, 23, 24, 27, 28, 29, 31, 32, 33, 39, 41, 42, 43, 44, 45, 49, 50, 52, 53, 54, 56, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 96, 101, 102, 103, 104, 105, 106, 111, 122, 123, 132, 134, 135, 138, 156, 166, 177, 186, 198, 224, 225, 226, 227, 244, 260, 262, 275, 290, 296, 306, 311], "weak": [0, 42, 205, 206], "weather": 43, "web": [31, 156, 159, 177, 178, 205, 206, 224, 251, 253, 307], "webclip": 194, "webplu": 156, "web\u7ba1\u7406\u753b\u9762": 36, "wednesdai": 212, "week": [173, 212], "weight": [22, 41, 42, 43, 44, 47, 48, 49, 52, 54, 74, 112, 141, 155, 156, 180, 202, 224, 245, 304, 305], "weight1": [47, 52, 91, 156], "weight2": [47, 52, 91, 156], "weight3": 91, "weight_bfloat16": [44, 141, 155], "weight_float32": [41, 42, 43, 111, 141, 155], "weight_in_match_column": 91, "weight_in_weight_vector": 91, "welcom": [2, 3, 16, 17, 43, 44, 45, 132, 134, 135, 156, 224, 225, 311], "well": [0, 31, 42, 48, 52, 177, 205, 206, 312], "went": 56, "were": [41, 42, 43, 45, 51, 52, 54, 56, 188, 308], "werewolf": [50, 51], "western": 56, "wg": [282, 315], "wget": [27, 28, 31], "wgs84geopoint": [39, 41, 51, 90, 141, 142, 155, 188, 305, 306, 307, 311, 312, 315], "wgs84getpoint": 45, "what": [43, 52, 68, 96, 111, 124, 137, 149, 156, 159, 163, 180, 210, 224, 244, 314], "wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0": 39, "when": [0, 3, 27, 31, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 81, 91, 94, 95, 96, 97, 99, 101, 103, 105, 106, 110, 111, 112, 115, 118, 122, 123, 124, 125, 126, 131, 132, 133, 134, 135, 137, 141, 142, 143, 144, 149, 151, 152, 155, 156, 157, 158, 159, 161, 163, 167, 173, 175, 177, 180, 183, 184, 186, 188, 191, 194, 196, 202, 205, 208, 209, 210, 219, 224, 226, 229, 231, 232, 233, 234, 235, 237, 244, 248, 250, 261, 262, 264, 272, 275, 277, 281, 286, 290, 295, 298, 302, 307, 308, 311, 313], "where": [31, 45, 53, 100, 123, 208, 209, 302, 305], "whether": [41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 94, 100, 105, 106, 111, 115, 117, 122, 124, 125, 126, 127, 128, 129, 132, 134, 135, 137, 140, 141, 142, 143, 149, 150, 152, 155, 156, 159, 163, 170, 173, 177, 180, 183, 186, 188, 195, 196, 202, 203, 210, 223, 224, 248, 303, 305], "which": [0, 1, 18, 27, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 56, 74, 84, 85, 96, 121, 124, 129, 131, 132, 134, 135, 137, 138, 154, 156, 165, 168, 173, 175, 180, 181, 183, 188, 194, 196, 197, 198, 201, 202, 210, 221, 224, 225, 250, 276, 278, 296, 298, 302, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "while": [0, 18, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 56, 106, 114, 124, 125, 127, 133, 152, 156, 164, 168, 226], "white": [45, 54, 205, 224, 225, 262, 264, 265, 266, 267, 268, 275, 279, 280, 308], "whitespac": [45, 53, 54], "who": [42, 45, 48, 50, 52, 56, 173, 183, 262, 307], "whole": [41, 42, 48, 54, 125], "whombx": 48, "whose": [111, 225, 302, 308], "why": [43, 48, 156, 244, 296], "wi24rd": [42, 43], "wibowo": 48, "wide": [0, 31, 39, 42, 51, 240, 244, 308], "wider": 18, "width": [39, 41, 42, 45, 50, 53, 230, 231, 232, 233, 234, 235, 257, 258, 259], "wiedenroth": 49, "wiki": [41, 177], "wikipedia": [41, 240, 282], "wili": [50, 51], "window": [3, 5, 6, 7, 22, 23, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 85, 105, 157, 158, 166, 286, 302], "window_count": [22, 41, 52, 57, 132, 134, 135, 283], "window_rank": [22, 42, 57, 283], "window_record_numb": [22, 42, 52, 57, 135, 283, 284, 286], "window_sum": [22, 52, 53, 57, 132, 134, 135, 156, 283], "windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f": 39, "windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a": 176, "windymelt": 45, "wing": [47, 48], "wish": 18, "with_check": [43, 44, 49, 138], "with_command_vers": 50, "with_posit": [41, 42, 43, 44, 45, 51, 53, 111, 112, 123, 132, 134, 135, 141, 142, 152, 155, 156, 180, 191, 192, 193, 202, 203, 205, 206, 210, 224, 225, 226, 244, 245, 246, 247, 260, 261, 275, 281, 301, 308, 310, 311, 314], "with_sect": [42, 43, 44, 49, 50, 51, 53, 111, 112, 141, 155, 310, 311], "with_transposit": [41, 44], "with_typ": [42, 43, 44, 138, 231, 232, 233, 234, 235, 237], "with_weight": [41, 43, 49, 91, 111, 112, 141, 155], "within": [45, 111, 156, 173, 250, 251, 311, 315], "without": [0, 18, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 58, 91, 97, 107, 110, 123, 128, 132, 133, 134, 135, 137, 141, 143, 144, 149, 151, 156, 167, 177, 202, 205, 206, 210, 224, 225, 231, 232, 233, 234, 235, 244, 250, 253, 258, 259, 275, 291, 305, 314], "wmake": 27, "wno": 39, "wo": [262, 264, 275], "woker": 41, "wolfgang": 54, "woman": 42, "won": [53, 275], "wonderland": 111, "wor": 275, "word": [0, 42, 43, 44, 45, 47, 49, 50, 52, 53, 54, 81, 87, 132, 134, 135, 156, 163, 210, 223, 224, 225, 231, 232, 233, 234, 235, 243, 245, 250, 251, 252, 253, 258, 259, 261, 264, 272, 274, 278, 309, 311], "word1": [44, 47, 156, 224, 225], "word2": [44, 47, 156, 224, 225], "word3": 225, "work": [0, 3, 12, 18, 27, 31, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 85, 94, 111, 118, 131, 134, 135, 149, 156, 166, 167, 177, 202, 203, 224, 228, 244, 248, 249, 264, 281, 292, 308, 312], "workaround": [49, 50, 51, 163], "worker": [41, 48, 51, 52, 53, 54, 131, 175, 177], "worker_process": 292, "worker\u306f": 9, "worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc": 9, "worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570": 9, "world": [41, 42, 43, 48, 49, 54, 123, 156, 262, 264, 272, 275, 282, 310, 315], "worst": [51, 52], "would": [43, 45, 56, 111, 156], "writabl": [49, 50], "write": [14, 18, 31, 40, 41, 42, 49, 50, 56, 81, 101, 106, 127, 148, 156, 160, 175, 224, 225, 244, 309, 310, 311], "written": [18, 42, 45, 49, 131, 144, 151, 170, 248, 311], "wrong": [39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 123, 173, 251, 252], "wrongli": [39, 45, 51], "wsaenobuf": 302, "wsasend": 53, "www": [12, 54, 178], "x": [7, 8, 12, 35, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 125, 156, 177, 178, 224, 225, 231, 235, 240, 244, 254, 281, 282, 292, 305, 311, 315], "x64": [27, 33, 42, 43, 166], "x86": [33, 39, 42, 43, 50], "x86_64": [94, 158, 177, 298, 308, 312], "xcode": 27, "xenial": [42, 43, 51], "xeru": [42, 43, 51], "xml": [39, 40, 47, 48, 49, 64, 178, 241, 292, 298], "xt": [168, 277], "xvf": [27, 31], "xx": [12, 42], "xxhash": [41, 44, 94, 158, 177, 298, 308, 312], "xxx": [42, 43, 44, 45, 48, 49, 51, 52, 53, 54, 156, 175, 225, 231, 235], "xxx_201506": 50, "xxx_20150603": 50, "xxx_20150604": 50, "xxxxx": 302, "xxxxxxx": 12, "xyzabc": 41, "x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066": 12, "x\u3067\u306frealloc": 37, "x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "y": [12, 14, 18, 24, 25, 28, 32, 41, 42, 44, 47, 48, 52, 224, 282], "yagisumi": 54, "yahoo": 56, "yahppo": 48, "yai": 41, "yak": [51, 52], "yakketi": [51, 52], "yamada": [49, 231, 232, 233, 234, 235], "yamaguchi": 39, "yamamoto": 49, "yaman": [48, 49], "yappo": [48, 49, 55], "yasuhiro": 53, "ye": [14, 40, 41, 42, 43, 44, 45, 48, 50, 51, 52, 53, 54, 96, 97, 122, 124, 125, 132, 134, 135, 137, 143, 149, 150, 156, 159, 163, 174, 178, 250], "year": [41, 50, 56, 58, 173, 183, 225, 228, 311], "years_old": 58, "yen": 56, "yet": [0, 39, 41, 42, 45, 48, 51, 53, 54, 103, 111, 135, 154, 156, 180, 225, 227, 239, 245, 247, 248, 278, 292], "yito": [47, 48], "yml": [21, 29], "yoji": 39, "yokoyama": [48, 49, 51], "yoku": [48, 49], "york": [74, 188, 311], "yoshida": 48, "yoshimura": [42, 43], "yoshioka": [47, 50], "you": [0, 1, 2, 3, 5, 6, 7, 8, 13, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 64, 68, 74, 81, 84, 85, 87, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100, 107, 110, 111, 112, 114, 115, 116, 117, 118, 120, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 161, 163, 164, 165, 167, 168, 170, 171, 173, 175, 177, 178, 179, 180, 181, 182, 183, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 223, 224, 225, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 272, 274, 276, 277, 278, 281, 282, 290, 292, 295, 296, 298, 302, 303, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "younger": 111, "your": [0, 3, 6, 12, 21, 27, 32, 39, 42, 44, 45, 46, 49, 50, 52, 53, 96, 111, 124, 125, 126, 127, 128, 144, 151, 152, 156, 161, 167, 173, 175, 177, 178, 198, 202, 203, 225, 229, 237, 243, 244, 248, 255, 274, 281, 292, 298, 314], "your_db": 39, "your_github_account": [17, 18], "your_new_db": 39, "yourself": [23, 111], "yssrku": 44, "yu": 54, "yuki": [39, 45, 49, 51], "yum": 47, "yunqiang": 51, "yutaro": [50, 53, 54], "yuya": [49, 50, 51], "yy_syntax_error": [58, 156], "yyi": [17, 44, 54], "yyyi": [42, 43, 44, 225, 228], "yyyymm": 248, "yyyymmdd": [132, 134, 135, 248], "z": [28, 41, 42, 44, 49, 51, 111, 161, 224, 244, 277, 282], "z0": 44, "za": 44, "zangruochen": 44, "zapu": 52, "zcat": 51, "zenigata": 307, "zero": [41, 51, 52, 87, 90, 91, 111, 156, 201, 229, 243, 255, 262, 298, 305], "zeromq": 31, "zesti": 52, "zhanzhao": [43, 44], "zip": [22, 23, 27, 42, 43, 47], "zlib": [37, 39, 41, 47, 48, 49, 53, 94, 111, 141, 155, 158, 177, 298, 308, 312], "zlib_error": 298, "zsh": 31, "zstandard": [31, 41, 51, 94, 111, 141, 158, 177, 298, 308, 312], "zstd": [53, 141], "zunda": 39, "zwgetcontextthread": 166, "zzz": 54, "\u0111\u01b0\u1eddng": 45, "\u1427": [231, 232, 233, 234, 235, 258, 259], "\u2170": 43, "\u2171": 43, "\u2171\u2171": 43, "\u2172": 43, "\u3041": [44, 231, 232, 233, 234, 235], "\u3041\u3042": [44, 231, 232, 233, 234, 235], "\u3041\u3042\u3043\u3044\u3045\u3046\u3047\u3048\u3049\u304a\u3083\u3084\u3085\u3086\u3087\u3088\u308e\u308f\u3095\u304b\u3096\u3051": [231, 232, 233, 234, 235, 258, 259], "\u3041\u30fc": [44, 231, 232, 233, 234, 235], "\u3042i\u3046": 44, "\u3042\u3042\u3042": 44, "\u3042\u3042\u3044\u3044\u3046\u3046\u3048\u3048\u304a\u304a\u3084\u3084\u3086\u3086\u3088\u3088\u308f\u308f\u304b\u304b\u3051\u3051": [231, 232, 233, 234, 235, 258, 259], "\u3042\u3044\u3046\u3047\u304a\u309d\u309e": [231, 232, 233, 234, 235, 257, 258, 259], "\u3042\u3046i": 44, "\u3042\u3089\u304b\u3058\u3081groonga\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304a\u304f\u3068\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u5186\u6ed1\u306b\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 12, "\u3042\u308a\u307e\u305b\u3093": [147, 162], "\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f": 189, "\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059": [189, 190], "\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059": 11, "\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u306f\u3058\u3081\u306bdevelop\u6271\u3044\u3068\u3057\u3066\u30ea\u30ea\u30fc\u30b9\u3055\u308c": 93, "\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u304c\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u3046\u3061": 93, "\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306b\u304a\u3044\u3066\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f": 93, "\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f": 93, "\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 282, "\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068": 10, "\u3042\u30a4\uff73\uff6a\u304a\u30fd\u30fe": [231, 232, 233, 234, 235, 257, 258, 259], "\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068": 10, "\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059": 89, "\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059": 93, "\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082": 11, "\u3044\u307e\u3059": 10, "\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63": 37, "\u304a\u3070\u305f\u3055\u3093": 36, "\u304bwgs84geopoint": [189, 190], "\u304b\u304b\u304d\u304d\u304f\u304f\u3051\u3051\u3053\u3053\u3055\u3055\u3057\u3057\u3059\u3059\u305b\u305b\u305d\u305d\u305f\u305f\u3061\u3061\u3064\u3064\u3066\u3066\u3068\u3068\u306f\u306f\u306f\u3072\u3072\u3072\u3075\u3075\u3075\u3078\u3078\u3078\u307b\u307b\u307b": [231, 232, 233, 234, 235, 258, 259], "\u304b\u304c\u304d\u304e\u304f\u3050\u3051\u3052\u3053\u3054\u3055\u3056\u3057\u3058\u3059\u305a\u305b\u305c\u305d\u305e\u305f\u3060\u3061\u3062\u3064\u3065\u3066\u3067\u3068\u3069\u306f\u3070\u3071\u3072\u3073\u3074\u3075\u3076\u3077\u3078\u3079\u307a\u307b\u307c\u307d": [231, 232, 233, 234, 235, 258, 259], "\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8": 175, "\u304c\u3042\u308a\u307e\u3059": 12, "\u304c\u304e\u3052\u3054": [231, 235], "\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc": 37, "\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082": 299, "\u304c\u6210\u529f\u3057\u3066\u3044\u308b\u306e\u3092\u78ba\u8a8d\u3057\u3066\u304b\u3089": 12, "\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059": 204, "\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059": 189, "\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u3050\u3041\u3050\u3043\u3050\u3047\u3050\u3049": [231, 235], "\u3050\u308b\u3093\u304c": [224, 225], "\u3050\u308b\u3093\u304c\u592a\u90ce": 307, "\u3050\u308b\u3093\u304c\u6b21\u90ce": 307, "\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059": 10, "\u3053\u3053\u3067\u306f": 301, "\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067": 301, "\u3053\u3053\u3067\u307e\u3068\u3081\u305f\u5185\u5bb9\u306b\u3064\u3044\u3066\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u3082\u4f7f\u7528\u3057\u307e\u3059": 12, "\u3053\u3053\u3067\u3082": 301, "\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u30b5\u30dd\u30fc\u30c8\u306e\u969b\u306b\u6c17\u3092\u3064\u3051\u308b\u3053\u3068\u3092\u307e\u3068\u3081\u307e\u3059": 10, "\u3053\u306e\u3068\u304d": [12, 299], "\u3053\u306e\u307e\u307e\u3067\u306f\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u8868\u793a\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059": 301, "\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u306e\u306f\u5168\u6587\u691c\u7d22\u6642\u306b\u8907\u6570\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3089\u3067\u3059": 301, "\u3053\u306e\u3088\u3046\u306bn": 301, "\u3053\u306e\u3088\u3046\u306btokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u91cd\u307f\u3092\u9ad8\u304f\u3059\u308b\u3053\u3068\u306b\u3088\u308a": 301, "\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408": 176, "\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068": 176, "\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408": 176, "\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f": 299, "\u3053\u306e\u30b1\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3059\u308b\u306e\u3067": 301, "\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document": 175, "\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e": 176, "\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408": 12, "\u3053\u306e\u4e2d\u3067\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308bgrn_expr\u306e\u3053\u3068\u3092\u7279\u306b\u6761\u4ef6\u5f0f\u3068\u3088\u3073\u307e\u3059": 11, "\u3053\u306e\u4f5c\u696d\u306f": 12, "\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248": 12, "\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059": 12, "\u3053\u306e\u4f5c\u696d\u306f\u4e00\u5ea6\u3060\u3051\u884c\u3044\u307e\u3059": 12, "\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga": 176, "\u3053\u306e\u4f8b\u306f\u65e5\u672c\u8a9e\u3060\u3063\u305f\u306e\u3067tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u3088\u304b\u3063\u305f\u306e\u3067\u3059\u304c": 301, "\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 301, "\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093": 301, "\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059": 301, "\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8": 301, "\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059": 301, "\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f": 301, "\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c": 301, "\u3053\u306e\u624b\u9806\u306f\u7701\u7565\u53ef\u80fd\u3067\u3059": 12, "\u3053\u306e\u65b9\u6cd5\u3067ppa\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u308b\u4e8b\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044": 12, "\u3053\u306e\u72b6\u614b\u3067\u3082\u4ee5\u524d\u306f\u30de\u30c3\u30c1\u3057\u306a\u304b\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u30d2\u30c3\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 301, "\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066": 299, "\u3053\u306e\u7d50\u679c\u306f": 176, "\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f": 299, "\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059": 189, "\u3053\u308c\u304b\u3089groonga\u3092\u4f7f\u3046\u4eba\u3078\u30a2\u30d4\u30fc\u30eb\u3059\u308b\u70b9\u3084\u65e2\u5b58\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u4eba\u304c\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3059\u308b\u969b\u306b\u5fc5\u8981\u306a\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3059": 12, "\u3053\u308c\u304c\u6700\u521d\u306e\u6295\u7a3f\u3067\u3059": 156, "\u3053\u308c\u3067": 12, "\u3053\u308c\u3067\u6b63\u3057\u304f\u30d3\u30eb\u30c9\u3067\u304d\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u304c\u78ba\u8a8d\u3067\u304d\u307e\u3059": 12, "\u3053\u308c\u306b\u3088\u308a\u30bf\u30b0\u304c\u30d7\u30c3\u30b7\u30e5\u3055\u308c\u81ea\u52d5\u30ea\u30ea\u30fc\u30b9\u304c\u52d5\u304d\u51fa\u3057\u307e\u3059": 12, "\u3053\u308c\u306b\u5bfe\u3057\u3066": 299, "\u3053\u308c\u306f": 301, "\u3053\u308c\u306f\u30da\u30f3\u3067\u3059\u304b": 272, "\u3053\u308c\u3082\u3068\u3066\u3082\u901f\u3044\u3067\u3059\u306d": 156, "\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2": 89, "\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059": 301, "\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059": 11, "\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059": 176, "\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068": 93, "\u3056\u3058\u305c\u305e": [231, 235], "\u3057\u304b\u3057": [282, 299, 301], "\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059": 12, "\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u3057\u308c\u307e\u305b\u3093": 10, "\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067": 12, "\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408": 176, "\u3059\u3067\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u305f\u3068\u3048\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059": 299, "\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059": 93, "\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059": 176, "\u3059\u3079\u3066\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u3067\u540c\u3058\u540d\u524d\u306e\u95a2\u6570\u3092\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 37, "\u3059\u3079\u3066\u306e\u95a2\u6570\u304c\u30c6\u30b9\u30c8\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u5fc3\u304c\u3051\u3066\u304f\u3060\u3055\u3044": 14, "\u3059\u308b\u3068": 14, "\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089": 37, "\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059": 10, "\u305a\u3041\u305a\u3043\u305a\u3047\u305a\u3049": [231, 235], "\u305d\u3046\u3059\u308b\u3053\u3068\u3067\u30bf\u30b0\u304c\u30d7\u30c3\u30b7\u30e5\u3055\u308cci\u306b\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059": 12, "\u305d\u3053\u3067": 301, "\u305d\u3053\u306b\u5165\u308b\u60c5\u5831\u304c\u3069\u3093\u306a\u5185\u5bb9\u304b\u3092\u793a\u3059\u540d\u524d\u3092\u51fa\u529b\u3057\u307e\u3059": 162, "\u305d\u306e\u305f\u3081": [12, 176, 299, 301], "\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059": 282, "\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066": 93, "\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059": 12, "\u305d\u306e\u4e2d\u304b\u3089\u5fc5\u8981\u306a\u90e8\u5206\u3092\u9ad8\u901f\u306b\u53d6\u308a\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044": 12, "\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059": 176, "\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059": 301, "\u305d\u306e\u5f8c": 12, "\u305d\u306e\u5f8c\u4e8c\u4e16\u4ee3\u7d4c\u904e\u3059\u308b\u3068\u305d\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306fdeprecated\u6271\u3044\u3068\u306a\u308a\u307e\u3059": 93, "\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5": 175, "\u305d\u306e\u6642\u70b9\u3067stable\u3067\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059": 93, "\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059": 93, "\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback": 11, "\u305d\u306e\u9650\u3089\u308c\u305f\u30c4\u30a4\u30fc\u30c8\u304b\u3089\u89e3\u6c7a\u65b9\u6cd5\u304c\u898b\u3064\u304b\u308c\u3070\u30e6\u30fc\u30b6\u30fc\u306b\u3068\u3063\u3066\u4f59\u8a08\u306a\u624b\u9593\u304c\u5c11\u306a\u304f\u3066\u6e08\u307f\u307e\u3059": 10, "\u305d\u308c\u305e\u308c": 14, "\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068": 175, "\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22": 299, "\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059": 299, "\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b": 11, "\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u306b\u5bfe\u3057\u3066\u4e8c\u3064\u76ee\u306e\u8981\u7d20\u304c\u4e00\u81f4\u3059\u308b\u305f\u3081\u306emode\u3068\u3057\u3066\u4e0b\u8a18\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059": 299, "\u305d\u308c\u305e\u308c\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5\u3068\u306a\u308b\u6761\u4ef6\u304c\u3042\u308b\u306e\u3067\u63a1\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u5341\u5206\u691c\u8a0e\u3057\u3066\u304f\u3060\u3055\u3044": 301, "\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059": 301, "\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059": 299, "\u305d\u308c\u306b\u691c\u7d22\u306b\u30de\u30c3\u30c1\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u306b\u3069\u306e\u3088\u3046\u306b\u53cd\u6620\u3059\u308b\u304b\u3092\u6307\u5b9a\u3059\u308b\u6f14\u7b97\u5b50\u3092\u6e21\u3057\u307e\u3059": 11, "\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059": 174, "\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059": 174, "\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059": 12, "\u305f\u3060\u3057": [89, 175, 299], "\u305f\u3060\u3057\u8907\u6570\u306e\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u4e00\u7dd2\u306b\u4f7f\u3046\u3053\u3068\u306f\u3067\u304d\u306a\u3044": 36, "\u305f\u3068\u3048\u3070": 299, "\u305f\u3068\u3048\u3070\u4e0b\u8a18\u306e\u3088\u3046\u306bgroonga\u306e\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u63a8\u79fb\u3057\u307e\u3059": 93, "\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u30671\u4ef6\u3082\u30d2\u30c3\u30c8\u3057\u306a\u3044\u5834\u5408\u3067\u3082\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306a\u3069\u3092\u884c\u3044\u307e\u305b\u3093": 301, "\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082": 301, "\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067": 12, "\u3060\u3068\u539f\u56e0\u306f": 10, "\u30671\u4ef6\u30d2\u30c3\u30c8\u3057": 301, "\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 39, "\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3059\u308b\u3068\u30c6\u30fc\u30d6\u30eb\u304c\u58ca\u308c\u308b": 37, "\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068": 11, "\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d": 11, "\u3067\u3042\u308c\u3070": 176, "\u3067\u3059\u306d": 10, "\u3067\u306f\u306a\u304ffree": 37, "\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093": 301, "\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059": 301, "\u3067\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u30ad\u30fc\u304c\u5e38\u306bgrn_nil\u306b\u306a\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63": 37, "\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a": 175, "\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 39, "\u3067\u30bf\u30b0\u3092\u30d7\u30c3\u30b7\u30e5\u3057\u3066ci\u304c\u52d5\u304d\u51fa\u3059\u30c8\u30ea\u30ac\u30fc\u3068\u3057\u307e\u3059": 12, "\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 12, "\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710": 301, "\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673": 301, "\u3067\u4e0d\u6b63\u306ajson\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u305d\u308c\u4ee5\u964d\u30b3\u30de\u30f3\u30c9\u3092\u53d7\u3051\u4ed8\u3051\u306a\u304f\u306a\u308b": 37, "\u3067\u5024\u3092\u56f2\u307f\u307e\u3059": 175, "\u3067\u533a\u5207\u308a\u307e\u3059": 175, "\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059": 89, "\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059": 176, "\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092": 37, "\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059": 162, "\u3067\u914d\u5217\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30fc\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": 37, "\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059": 12, "\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408": 299, "\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642": 299, "\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c": 301, "\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u306710\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u6642\u306b\u5b9f\u884c\u3059\u308b": 176, "\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057": 176, "\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b": 176, "\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059": 176, "\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059": 299, "\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059": 299, "\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059": 299, "\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f": 10, "\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059": 299, "\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059": 299, "\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059": 299, "\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059": 299, "\u3068\u3044\u3046\u6587\u5b57\u5217\u306f": 299, "\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059": 282, "\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067": 299, "\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067": 299, "\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067": 299, "\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067": 299, "\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059": 176, "\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059": 12, "\u3068\u3066\u3082": 156, "\u3068\u3066\u3082\u901f\u3044\u3067\u3059\u306d": 156, "\u3068\u306a\u308a": 301, "\u3068\u3082\u3066": 156, "\u3068\u308a\u3068\u3093": [224, 225], "\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082": 176, "\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044": 176, "\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c": 301, "\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081": 301, "\u3068\u540c\u3058\u610f\u5473": 175, "\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63": 36, "\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": 176, "\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 189, "\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059": 301, "\u3069\u3046\u3057\u3066\u305d\u3046\u3059\u308b\u306e\u304b\u3068\u3044\u3046\u5171\u901a\u8a8d\u8b58\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u3068\u4e00\u8cab\u6027\u306e\u306a\u3044\u30b5\u30dd\u30fc\u30c8\u3068\u306a\u3063\u3066\u3057\u307e": 10, "\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c": 10, "\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3092\u8aac\u660e\u3059\u308b\u524d\u306b": 299, "\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e": 176, "\u306brebas": 12, "\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093": 299, "\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059": 108, "\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c": 162, "\u306b\u307e\u3068\u3081\u307e\u3059": 12, "\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059": 299, "\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a": 282, "\u306b\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u4f5c\u6210\u3057": 12, "\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c": 299, "\u306b\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8": 12, "\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63": 39, "\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093": 299, "\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c": 301, "\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c": 301, "\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f": 175, "\u306b\u66f8\u304d\u3060\u3057\u307e\u3059": 176, "\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059": 176, "\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059": 175, "\u306b\u8ffd\u52a0\u3057\u3066\u3082\u3089\u3063\u3066\u4e0b\u3055\u3044": 12, "\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059": 176, "\u306e2\u5358\u8a9e\u6271\u3044": 299, "\u306edocker\u30a4\u30e1\u30fc\u30b8\u3092\u81ea\u52d5\u3067\u66f4\u65b0\u3057\u307e\u3059": 12, "\u306egroonga\u306edocker\u30a4\u30e1\u30fc\u30b8\u3092\u66f4\u65b0\u3057\u307e\u3059": 12, "\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059": 301, "\u306esha256sum": 12, "\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4": 37, "\u306exml\u51fa\u529b\u5bfe\u5fdc": 37, "\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059": [189, 190], "\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f": 175, "\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 37, "\u306e\u307b\u304b\u306b": 282, "\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 14, "\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 14, "\u306e\u3088\u3046\u306b\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u66f4\u65b0\u3067\u304d\u307e\u3059": 12, "\u306e\u3088\u3046\u306b\u5f15\u6570\u306e\u540d\u524d\u3092\u660e\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u4ee3\u308f\u308a\u306b": 175, "\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b": 175, "\u306e\u30ab\u30e9\u30e0": [109, 120], "\u306e\u30c8\u30c3\u30d7\u306b\u914d\u7f6e\u3057\u307e\u3059": 12, "\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63": [37, 39], "\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b": 120, "\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b": 109, "\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3": 37, "\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0": 37, "\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b": 175, "\u306e\u52c9\u5f37": 279, "\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067": 10, "\u306e\u5834\u5408\u306e\u4f8b\u3067\u3059": 12, "\u306e\u5834\u5408\u306f": 10, "\u306e\u624b\u9806\u3067\u4e0d\u5b89\u5b9a\u7248\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u3088\u3046\u306b\u6307\u5b9a\u3057\u307e\u3059": 12, "\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b": 37, "\u306e\u66f4\u65b0": 12, "\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044": 176, "\u306e\u7d50\u679c\u3092\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306bpush\u5f8c\u306bgithub": 12, "\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d": 175, "\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059": 204, "\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059": 204, "\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059": 162, "\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f": 301, "\u306f\u3068\u3066\u3082\u901f\u3044": 44, "\u306f\u306a\u304f": 36, "\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u66f4\u65b0\u3055\u308c\u307e\u3059": 12, "\u306f\u6700\u65b0\u306egroonga\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059": 12, "\u3070\u3044\u304a\u308a\u3093": [231, 235], "\u3070\u3073\u3076\u3079\u307c": [231, 235], "\u3072\u308d\u3042\u304d": 313, "\u3072\u308d\u3086\u304d": 313, "\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044": 176, "\u307e\u305fgroonga": 176, "\u307e\u305f\u306f": 176, "\u307e\u305f\u306f\u30bd\u30b1\u30c3\u30c8\u7d4c\u7531\u3067groonga\u30b5\u30fc\u30d0\u306b\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u884c\u3057\u307e\u3059": [108, 109, 113, 119, 120, 130, 147, 162], "\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7": 175, "\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f": 175, "\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga": 176, "\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_host\u304c\u512a\u5148\u3055\u308c\u307e\u3059": 176, "\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_port\u304c\u512a\u5148\u3055\u308c\u307e\u3059": 176, "\u307e\u305f\u540c\u6642\u306b": 176, "\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a": 93, "\u307e\u3068\u3081\u3066\u304a\u304f\u3068": 10, "\u307e\u308d\u3086\u304d": 313, "\u3080\u308b\u3093\u304c": [224, 225], "\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059": 185, "\u3082\u3057groonga": 176, "\u3082\u3057test": 176, "\u3082\u3057\u304f\u306f": 282, "\u3082\u3057\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u4e2d\u8eab\u306b\u95a2\u308f\u3089\u305a\u52d5\u4f5c\u3092\u7d9a\u3051\u3066\u3057\u307e\u3044": 176, "\u3082\u3057\u6307\u5b9a\u3055\u308c\u305fdb\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070\u81ea\u52d5\u7684\u306bdb\u3092\u4f5c\u6210\u3057\u307e\u3059\u304c": 176, "\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059": 299, "\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059": 93, "\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c": 10, "\u3086\u304d\u3072\u308d": 313, "\u3088\u3046\u3053\u305d": 156, "\u3088\u3063\u3066": 282, "\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c": 189, "\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059": 176, "\u308a\u3093\u3054": [257, 258, 259], "\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u308d\u3086\u304d": 313, "\u308f\u305f\u3057": [257, 258, 259], "\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f": 37, "\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068": 174, "\u3092\u3054\u89a7\u4e0b\u3055\u3044": 14, "\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 14, "\u3092\u30af\u30ed\u30fc\u30f3\u3057": 12, "\u3092\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 282, "\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63": 37, "\u3092\u516c\u958b": 37, "\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081": 12, "\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044": [176, 282, 301], "\u3092\u6307\u5b9a\u3057": [109, 120], "\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089": 11, "\u3092\u6307\u5b9a\u3057\u307e\u3059": [12, 175, 176], "\u3092\u6700\u65b0\u306b\u3057\u3066": 12, "\u3092\u7528\u3044\u3066\u3044\u307e\u3059": 14, "\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059": 189, "\u3092\u8a08\u7b97\u3059\u308b": 36, "\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059": 176, "\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b": 10, "\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f": 36, "\u3092\u8ffd\u52a0": [37, 39], "\u3094": [44, 231, 232, 233, 234, 235], "\u3094\u3041\u3044\u304a\u308a\u3093": [231, 235], "\u3094\u3041\u3094\u3043\u3094\u3094\u3047\u3094\u3049": [54, 231, 235], "\u3094\u3046": [44, 231, 232, 233, 234, 235], "\u3094\u30fc": [44, 231, 232, 233, 234, 235], "\u3095": [44, 231, 232, 233, 234, 235], "\u3095\u3042": [44, 231, 232, 233, 234, 235], "\u3095\u30fc": [44, 231, 232, 233, 234, 235], "\u3096": [44, 231, 232, 233, 234, 235], "\u3096\u3048": [44, 231, 232, 233, 234, 235], "\u3096\u30fc": [44, 231, 232, 233, 234, 235], "\u30a1": [44, 231, 232, 233, 234, 235], "\u30a1\u30a2": [44, 231, 232, 233, 234, 235], "\u30a1\u30a2\u30a3\u30a4\u30a5\u30a6\u30a7\u30a8\u30a9\u30aa\u30e3\u30e4\u30e5\u30e6\u30e7\u30e8\u30ee\u30ef\u30f5\u30ab\u30f6\u30b1": [231, 232, 233, 234, 235, 258, 259], "\u30a1\u30fc": [44, 231, 232, 233, 234, 235], "\u30a2": [44, 231, 232, 233, 234, 235, 275], "\u30a2\u30a1\u30a4\u30a3\u30a6\u30a5\u30a8\u30a7\u30aa\u30a9": [231, 232, 233, 234, 235, 257, 258, 259], "\u30a2\u30a2": [44, 231, 232, 233, 234, 235], "\u30a2\u30a2\u30a4\u30a4\u30a6\u30a6\u30a8\u30a8\u30aa\u30aa\u30e4\u30e4\u30e6\u30e6\u30e8\u30e8\u30ef\u30ef\u30ab\u30ab\u30b1\u30b1": [231, 232, 233, 234, 235, 258, 259], "\u30a2\u30aa\u30c4\u30c5\u30e9\u30d5\u30b8": 44, "\u30a2\u30aa\u30cf\u30bf": 44, "\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068": 12, "\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u6e08\u307f\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664\u3067\u304d\u307e\u3059": 12, "\u30a2\u30c6\u30cd\u56fd\u969b\u7a7a\u6e2f": 44, "\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8": [299, 301], "\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u306e\u5834\u5408\u306ftokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306a\u3069\u3082\u5229\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 301, "\u30a2\u30f2\u30cf\u30bf": 44, "\u30a2\u30fc": [44, 231, 232, 233, 234, 235], "\u30a3": [44, 231, 232, 233, 234, 235], "\u30a3\u30a4": [44, 231, 232, 233, 234, 235], "\u30a3\u30fc": [44, 231, 232, 233, 234, 235], "\u30a4": [44, 231, 232, 233, 234, 235], "\u30a4\u30a4": [44, 231, 232, 233, 234, 235], "\u30a4\u30e9\u30af\u30ea\u30aa": 44, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044": 37, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63": 37, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af": 12, "\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b": 176, "\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3067\u304d\u308b\u74b0\u5883\u3067\u3042\u308c\u3070groonga\u30b3\u30de\u30f3\u30c9\u306e\u77e5\u8b58\u304c\u306a\u304f\u3066\u3082groonga\u306e\u52d5\u4f5c\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059": 176, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u3064\u3044\u305f\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u7d50\u679c\u304c\u304a\u304b\u3057\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059": 113, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b": 108, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u305f\u30b8\u30aa\u30b5\u30fc\u30c1\u306e\u4f8b\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306b\u8ffd\u52a0": 39, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408": 108, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49": 109, "\u30a4\u30fc": [44, 231, 232, 233, 234, 235], "\u30a5": [44, 231, 232, 233, 234, 235], "\u30a5\u30a6": [44, 231, 232, 233, 234, 235], "\u30a5\u30fc": [44, 231, 232, 233, 234, 235], "\u30a6": [44, 231, 232, 233, 234, 235], "\u30a6\u30a6": [44, 231, 232, 233, 234, 235], "\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http": 175, "\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059": 175, "\u30a6\u30fc": [44, 231, 232, 233, 234, 235], "\u30a7": [44, 231, 232, 233, 234, 235], "\u30a7\u30a8": [44, 231, 232, 233, 234, 235], "\u30a7\u30fc": [44, 231, 232, 233, 234, 235], "\u30a8": [44, 231, 232, 233, 234, 235], "\u30a8\u30a8": [44, 231, 232, 233, 234, 235], "\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059": [109, 113, 119, 130], "\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue": [109, 113, 119, 130], "\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f": 37, "\u30a8\u30fc": [44, 231, 232, 233, 234, 235], "\u30a9": [44, 231, 232, 233, 234, 235], "\u30a9\u30a6": [44, 231, 232, 233, 234, 235], "\u30a9\u30aa": [44, 231, 232, 233, 234, 235], "\u30a9\u30fc": [44, 231, 232, 233, 234, 235], "\u30aa": [44, 231, 232, 233, 234, 235], "\u30aa\u30a6": [44, 231, 232, 233, 234, 235], "\u30aa\u30a6\u30b3\u30a6\u30bd\u30a6\u30c8\u30a6\u30ce\u30a6": [231, 232, 233, 234, 235], "\u30aa\u30aa": [44, 231, 232, 233, 234, 235], "\u30aa\u30aa\u30b3\u30aa\u30bd\u30aa\u30c8\u30aa\u30ce\u30aa": [231, 232, 233, 234, 235], "\u30aa\u30aa\u30c4\u30c5\u30e9\u30d5\u30b8": 44, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059": 109, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b": 109, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7": 120, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a": 108, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 301, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a": 176, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059": 176, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068": 176, "\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0": 36, "\u30aa\u30fc": [44, 231, 232, 233, 234, 235], "\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316": 39, "\u30ab": [44, 231, 232, 233, 234, 235], "\u30ab\u30a2": [44, 231, 232, 233, 234, 235], "\u30ab\u30a2\u30ad\u30a4\u30af\u30a6\u30b1\u30a8\u30b3\u30aa": [231, 232, 233, 234, 235], "\u30ab\u30ab\u30ad\u30ad\u30af\u30af\u30b1\u30b1\u30b3\u30b3\u30b5\u30b5\u30b7\u30b7\u30b9\u30b9\u30bb\u30bb\u30bd\u30bd\u30bf\u30bf\u30c1\u30c1\u30c4\u30c4\u30c6\u30c6\u30c8\u30c8\u30cf\u30cf\u30cf\u30d2\u30d2\u30d2\u30d5\u30d5\u30d5\u30d8\u30d8\u30d8\u30db\u30db\u30db": [231, 232, 233, 234, 235], "\u30ab\u30ac\u30ad\u30ae\u30af\u30b0\u30b1\u30b2\u30b3\u30b4\u30b5\u30b6\u30b7\u30b8\u30b9\u30ba\u30bb\u30bc\u30bd\u30be\u30bf\u30c0\u30c1\u30c2\u30c4\u30c5\u30c6\u30c7\u30c8\u30c9\u30cf\u30d0\u30d1\u30d2\u30d3\u30d4\u30d5\u30d6\u30d7\u30d8\u30d9\u30da\u30db\u30dc\u30dd": [231, 232, 233, 234, 235, 258, 259], "\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f": 14, "\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831": 3, "\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059": 14, "\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f": 14, "\u30ab\u30ec": [231, 232, 233, 234, 235, 274], "\u30ab\u30ec\u30fc": 299, "\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9": 299, "\u30ab\u30f3\u30b8": 201, "\u30ab\u30f3\u30de": 122, "\u30ab\u30fc": [44, 231, 232, 233, 234, 235], "\u30ab\u30fc\u30ad\u30fc\u30af\u30fc\u30b1\u30fc\u30b3\u30fc": [231, 232, 233, 234, 235], "\u30ac": [44, 231, 232, 233, 234, 235], "\u30ac\u30a2": [44, 231, 232, 233, 234, 235], "\u30ac\u30ae\u30b2\u30b4": [231, 232, 233, 234, 235], "\u30ac\u30c6\u30de\u30e9\u5171\u548c\u56fd": 44, "\u30ac\u30fc": [44, 231, 232, 233, 234, 235], "\u30ac\u30fc\u30b8\u30e4\u30fc\u30d0\u30fc\u30c9": 44, "\u30ac\u30fc\u30ba\u30a3\u30e4\u30fc\u30d0\u30fc\u30c9": 44, "\u30ad": [44, 231, 232, 233, 234, 235], "\u30ad\u30a4": [44, 231, 232, 233, 234, 235], "\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0": 36, "\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u30ad\u30fc": [44, 175, 231, 232, 233, 234, 235], "\u30ad\u30fc\u304c": 175, "\u30ad\u30fc\u30ef\u30fc\u30c9": 38, "\u30ae": [44, 231, 232, 233, 234, 235], "\u30ae\u30a4": [44, 231, 232, 233, 234, 235], "\u30ae\u30fc": [44, 231, 232, 233, 234, 235], "\u30af": [44, 231, 232, 233, 234, 235], "\u30af\u30a6": [44, 231, 232, 233, 234, 235], "\u30af\u30a8\u30ea\u306e": 301, "\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059": 301, "\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 174, "\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b": [3, 4, 22], "\u30af\u30a8\u30ea\u306e\u5b9f\u73fe": [3, 4, 22], "\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr": 11, "\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528": 36, "\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": 3, "\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3082\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306e\u305d\u308c\u305e\u308c\u306b\u5bfe\u5fdc\u3059\u308b\u5f62\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059": 11, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8": 175, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9\u306a\u3089\u3070groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u63a5\u7d9a\u3092\u5207\u308a\u307e\u3059": 147, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e": 37, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a": 175, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u30af\u30fc": [44, 231, 232, 233, 234, 235], "\u30b0": [44, 231, 232, 233, 234, 235], "\u30b0\u30a1": 44, "\u30b0\u30a1\u30b0\u30a3\u30b0\u30a7\u30b0\u30a9": [231, 232, 233, 234, 235], "\u30b0\u30a1\u30c6\u30de\u30e9\u5171\u548c\u56fd": 44, "\u30b0\u30a3": 44, "\u30b0\u30a6": [44, 231, 232, 233, 234, 235], "\u30b0\u30a7": 44, "\u30b0\u30a9": 44, "\u30b0\u30e9\u30e0": 275, "\u30b0\u30eb\u30fc\u30d7\u5316": 89, "\u30b0\u30eb\u30fc\u30d7\u5316\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u304c": 89, "\u30b0\u30eb\u30fc\u30d7\u5316\u51e6\u7406\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e_nsubrecs\u306b\u8a18\u9332\u3055\u308c\u307e\u3059": 89, "\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066": 89, "\u30b0\u30fc": [44, 231, 232, 233, 234, 235], "\u30b1": [44, 231, 232, 233, 234, 235], "\u30b1\u30a8": [44, 231, 232, 233, 234, 235], "\u30b1\u30fc": [44, 231, 232, 233, 234, 235], "\u30b2": [44, 231, 232, 233, 234, 235], "\u30b2\u30a8": [44, 231, 232, 233, 234, 235], "\u30b2\u30fc": [44, 231, 232, 233, 234, 235], "\u30b3": [44, 231, 232, 233, 234, 235], "\u30b3\u30a6": [44, 231, 232, 233, 234, 235], "\u30b3\u30aa": [44, 231, 232, 233, 234, 235], "\u30b3\u30de\u30f3\u30c9\u304cquery\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u3063\u3066\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u3059\u308b\u306e\u304b\u3092\u8aac\u660e\u3057\u307e\u3059": 299, "\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4": 37, "\u30b3\u30de\u30f3\u30c9\u3067\u306f": 12, "\u30b3\u30de\u30f3\u30c9\u3067\u30ad\u30fc\u304cshorttext\u4ee5\u5916\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3067\u304d\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63": 37, "\u30b3\u30de\u30f3\u30c9\u3067\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u304c\u58ca\u308c\u308b\u5834\u5408\u306f\u30a8\u30e9\u30fc": 36, "\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f": 282, "\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059": 282, "\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0": 37, "\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e": 37, "\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059": 11, "\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c": 175, "\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0": 37, "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070": 93, "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5\u306fgroonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u3068\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u304c\u3042\u308a\u307e\u3059": 93, "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f": 93, "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a": 93, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059": 176, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f": 176, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga": 176, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057": 176, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059": 176, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057": 176, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059": 176, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059": 176, "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh": 12, "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9": 176, "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u3068set_port\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408": 176, "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f": 175, "\u30b3\u30de\u30f3\u30c9\u540d": 175, "\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f": 175, "\u30b3\u30e1\u30f3\u30c8\u884c": 176, "\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc": 37, "\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0": 12, "\u30b3\u30fc": [44, 231, 232, 233, 234, 235], "\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u6e21\u3055\u308c\u308barg\u3068\u3092\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "\u30b4": [44, 231, 232, 233, 234, 235], "\u30b4\u30a6": [44, 231, 232, 233, 234, 235], "\u30b4\u30aa": [44, 231, 232, 233, 234, 235], "\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059": 108, "\u30b4\u30fc": [44, 231, 232, 233, 234, 235], "\u30b5": [44, 231, 232, 233, 234, 235], "\u30b5\u30a2": [44, 231, 232, 233, 234, 235], "\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0": 37, "\u30b5\u30dd\u30fc\u30c8\u7bc4\u56f2\u5916\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a": 93, "\u30b5\u30f3": 274, "\u30b5\u30f3\u30d7\u30eb\u5185\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u5b9f\u884c\u5c5e\u6027\u304c\u3064\u304b\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": 38, "\u30b5\u30fc": [44, 231, 232, 233, 234, 235], "\u30b5\u30fc\u30d0": 175, "\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059": 176, "\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b": 176, "\u30b5\u30fc\u30d0\u304c\u81ea\u52d5\u7684\u306b\u306f\u8d77\u52d5\u3055\u308c\u306a\u3044\u306e\u3082\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u5834\u5408\u3068\u540c\u69d8\u3067\u3059": 176, "\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057": 175, "\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u30b5\u30fc\u30d0\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u5229\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f": 176, "\u30b5\u30fc\u30d0\u3092\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308b\u5834\u5408\u3082\u3053\u306e\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5229\u7528\u3055\u308c\u307e\u3059": 176, "\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059": 175, "\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u3084\u5b9f\u884c\u901f\u5ea6\u6e2c\u5b9a\u304c\u53ef\u80fd\u3067\u3059": 176, "\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d": 175, "\u30b6": [44, 231, 232, 233, 234, 235], "\u30b6\u30a2": [44, 231, 232, 233, 234, 235], "\u30b6\u30b8\u30bc\u30be": [231, 232, 233, 234, 235], "\u30b6\u30fc": [44, 231, 232, 233, 234, 235], "\u30b7": [44, 231, 232, 233, 234, 235], "\u30b7\u30a4": [44, 231, 232, 233, 234, 235], "\u30b7\u30a7\u30eb\u4e0a": 176, "\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8": 175, "\u30b7\u30fc": [44, 231, 232, 233, 234, 235], "\u30b8": [44, 231, 232, 233, 234, 235], "\u30b8\u30a4": [44, 231, 232, 233, 234, 235], "\u30b8\u30f3\u30d9\u30a4\u30b6\u30e1": 44, "\u30b8\u30fc": [44, 231, 232, 233, 234, 235], "\u30b9": [44, 231, 232, 233, 234, 235], "\u30b9\u3092\u9589\u3058\u308b\u3068\u95a2\u9023\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u9589\u3058\u3089\u308c\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63": 39, "\u30b9\u30a6": [44, 231, 232, 233, 234, 235], "\u30b9\u30af\u30ea\u30d7\u30c8\u306f\u4ee5\u4e0b\u306e\u51e6\u7406\u3092\u5b9f\u884c\u3057\u307e\u3059": 12, "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u306f\u7279\u6b8a\u30b3\u30de\u30f3\u30c9\u3092\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059": 176, "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059": 176, "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga": 176, "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f": 176, "\u30b9\u30af\u30ea\u30d7\u30c8\u540d": 176, "\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b": 175, "\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f": 175, "\u30b9\u30ec\u30c3\u30c9\u6570": 176, "\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408": 176, "\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068": 176, "\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059": 176, "\u30b9\u30fc": [44, 231, 232, 233, 234, 235], "\u30b9\u30fc\u30d7": 299, "\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc": 299, "\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc": 299, "\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9": 299, "\u30ba": [44, 231, 232, 233, 234, 235], "\u30ba\u30a1": 44, "\u30ba\u30a1\u30ba\u30a3\u30ba\u30a7\u30ba\u30a9": [231, 232, 233, 234, 235], "\u30ba\u30a3": 44, "\u30ba\u30a6": [44, 231, 232, 233, 234, 235], "\u30ba\u30a7": 44, "\u30ba\u30a9": 44, "\u30ba\u30fc": [44, 231, 232, 233, 234, 235], "\u30bb": [44, 231, 232, 233, 234, 235], "\u30bb\u30a8": [44, 231, 232, 233, 234, 235], "\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059": 108, "\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86": 147, "\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga": 176, "\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066": 176, "\u30bb\u30fc": [44, 231, 232, 233, 234, 235], "\u30bb\u30fc\u30d6\u30eb": 53, "\u30bb\u30fc\u30f4\u30a7\u30eb": 53, "\u30bb\u30fc\u30f4\u30eb": 53, "\u30bc": [44, 231, 232, 233, 234, 235], "\u30bc\u30a8": [44, 231, 232, 233, 234, 235], "\u30bc\u30fc": [44, 231, 232, 233, 234, 235], "\u30bd": [44, 231, 232, 233, 234, 235], "\u30bd\u30a6": [44, 231, 232, 233, 234, 235], "\u30bd\u30aa": [44, 231, 232, 233, 234, 235], "\u30bd\u30fc": [44, 231, 232, 233, 234, 235], "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 14, "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u305f\u3081\u306b\u306f": 14, "\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059": 156, "\u30be": [44, 231, 232, 233, 234, 235], "\u30be\u30a6": [44, 231, 232, 233, 234, 235], "\u30be\u30aa": [44, 231, 232, 233, 234, 235], "\u30be\u30fc": [44, 231, 232, 233, 234, 235], "\u30bf": [44, 231, 232, 233, 234, 235], "\u30bf\u30a2": [44, 231, 232, 233, 234, 235], "\u30bf\u30b0\u3092push\u3057\u307e\u3059": 12, "\u30bf\u30b0\u3092\u8a2d\u5b9a\u3057\u3066\u304b\u3089\u554f\u984c\u304c\u767a\u899a\u3059\u308b\u3068": 12, "\u30bf\u30b0\u3092\u8a2d\u5b9a\u3059\u308b\u524d\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u78ba\u8a8d\u3057\u307e\u3059": 12, "\u30bf\u30b9\u30af\u306f\u6b21\u306e3\u3064\u306e\u30bf\u30b9\u30af\u3092\u5b9f\u884c\u3057\u307e\u3059": 12, "\u30bf\u30fc": [44, 231, 232, 233, 234, 235], "\u30c0": [44, 231, 232, 233, 234, 235], "\u30c0\u30a2": [44, 231, 232, 233, 234, 235], "\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u3092": 12, "\u30c0\u30e1\u30fc\u30b8": 301, "\u30c0\u30fc": [44, 231, 232, 233, 234, 235], "\u30c1": [44, 231, 232, 233, 234, 235], "\u30c1\u30a4": [44, 231, 232, 233, 234, 235], "\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u3088\u308a\u8fd4\u3055\u308c\u308b\u5024\u304c\u5909\u308f\u308a\u307e\u3059": 108, "\u30c1\u30b8\u30df": 44, "\u30c1\u30c2\u30df": 44, "\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059": 108, "\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059": 108, "\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059": 108, "\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba": 108, "\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63": 39, "\u30c1\u30fc": [44, 231, 232, 233, 234, 235], "\u30c2": [44, 231, 232, 233, 234, 235], "\u30c2\u30a4": [44, 231, 232, 233, 234, 235], "\u30c2\u30fc": [44, 231, 232, 233, 234, 235], "\u30c4": [44, 231, 232, 233, 234, 235], "\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb": 12, "\u30c4\u30a6": [44, 231, 232, 233, 234, 235], "\u30c4\u30ba\u30e9": 44, "\u30c4\u30fc": [44, 231, 232, 233, 234, 235], "\u30c5": [44, 231, 232, 233, 234, 235], "\u30c5\u30a1": 44, "\u30c5\u30a1\u30c5\u30a3\u30c5\u30a7\u30c5\u30a9": [231, 232, 233, 234, 235], "\u30c5\u30a3": 44, "\u30c5\u30a6": [44, 231, 232, 233, 234, 235], "\u30c5\u30a7": 44, "\u30c5\u30a9": 44, "\u30c5\u30fc": [44, 231, 232, 233, 234, 235], "\u30c6": [44, 231, 232, 233, 234, 235], "\u30c6\u30a8": [44, 231, 232, 233, 234, 235], "\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316": 37, "\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u306a\u3044\u90e8\u5206\u306e\u7de8\u96c6\u306f\u614e\u91cd\u306b\u884c\u3063\u3066\u304f\u3060\u3055\u3044": 14, "\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059": 14, "\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63": 37, "\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059": 14, "\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066": 14, "\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c": 3, "\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059": 14, "\u30c6\u30b9\u30c8\u306f": 14, "\u30c6\u30b9\u30c8\u3084\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f5c\u6210\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u3089": 12, "\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 14, "\u30c6\u30b9\u30c8\u65b9\u6cd5": [3, 4, 6, 7, 8, 22], "\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9": 3, "\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059": 301, "\u30c6\u30fc": [44, 231, 232, 233, 234, 235], "\u30c6\u30fc\u30d6\u30eb": 109, "\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9": 119, "\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059": 108, "\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059": 175, "\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059": 175, "\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059": 175, "\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059": 175, "\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664": 113, "\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059": 175, "\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027": 162, "\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d": 162, "\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059": 89, "\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid": 162, "\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059": 175, "\u30c6\u30fc\u30d6\u30eb\u540d": [109, 120, 162], "\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059": 162, "\u30c6\u30fc\u30d6\u30eb\u578b\u306f": 282, "\u30c6\u30fc\u30d6\u30eb\u60c5\u58311": 162, "\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n": 162, "\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059": 162, "\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1": 162, "\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn": 162, "\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1": 162, "\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn": 162, "\u30c7": [44, 231, 232, 233, 234, 235], "\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528": 36, "\u30c7\u30a8": [44, 231, 232, 233, 234, 235], "\u30c7\u30b9": 274, "\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081": 108, "\u30c7\u30d5\u30a9\u30eb\u30c8": 11, "\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f": [175, 176], "\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093": 175, "\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093": 175, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059": 93, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0": 36, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306f": 175, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059": 175, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059": 175, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp": 175, "\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059": 175, "\u30c7\u30d5\u30a9\u30eb\u30c8\u5024": 282, "\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f": [174, 175], "\u30c7\u30ea\u30fc": 44, "\u30c7\u30fc": [44, 231, 232, 233, 234, 235], "\u30c7\u30fc\u30bf\u306b\u4e0d\u6574\u5408\u304c\u767a\u751f\u3059\u308b\u5834\u5408\u306f\u30c7\u30fc\u30bf\u3092\u524a\u9664\u3057\u306a\u3044\u3088\u3046\u306b\u5909\u66f4": 36, "\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0": 36, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9": 109, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0": 120, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059": 176, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059": 175, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092groonga\u306e\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u547c\u3073\u51fa\u3057\u5f62\u5f0f\u3067\u51fa\u529b\u3057\u307e\u3059": 122, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u7ba1\u7406\u3059\u308b\u305f\u3081\u306e\u6c4e\u7528\u7684\u306a\u30da\u30fc\u30b8\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u304c": 175, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u4e0a\u306b\u5b9a\u7fa9\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u3084\u7d22\u5f15\u306a\u3069\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u53ef\u80fd\u306a\u9650\u308a\u9ad8\u901f\u306b\u6307\u5b9a\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3057\u3088\u3046\u3068\u3057\u307e\u3059": 11, "\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0": 36, "\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc": 36, "\u30c7\u30fc\u30e2\u30f3": 175, "\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f": 36, "\u30c8": [44, 231, 232, 233, 234, 235], "\u30c8\u30a6": [44, 231, 232, 233, 234, 235], "\u30c8\u30aa": [44, 231, 232, 233, 234, 235], "\u30c8\u30e2\u3061\u3083\u3093": 307, "\u30c8\u30fc": [44, 231, 232, 233, 234, 235], "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b": [22, 300], "\u30c9": [44, 231, 232, 233, 234, 235], "\u30c9\u30a6": [44, 231, 232, 233, 234, 235], "\u30c9\u30aa": [44, 231, 232, 233, 234, 235], "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63": 37, "\u30c9\u30fc": [44, 231, 232, 233, 234, 235], "\u30ca": [44, 231, 232, 233, 234, 235], "\u30ca\u30a2": [44, 231, 232, 233, 234, 235], "\u30ca\u30de\u30a8": [231, 232, 233, 234, 235, 274], "\u30ca\u30fc": [44, 231, 232, 233, 234, 235], "\u30cb": [44, 231, 232, 233, 234, 235], "\u30cb\u30a4": [44, 231, 232, 233, 234, 235], "\u30cb\u30b3\u30b9\u30ab\u30b6\u30f3\u30b6\u30ad\u30b9": 44, "\u30cb\u30b3\u30b9\u30ab\u30b6\u30f3\u30c5\u30a1\u30ad\u30b9\u56fd\u969b\u7a7a\u6e2f": 44, "\u30cb\u30c3\u30dd\u30f3": [201, 240, 250], "\u30cb\u30db\u30f3": [201, 240, 250], "\u30cb\u30db\u30f3\u30b4": 250, "\u30cb\u30db\u30f3\u30b8\u30f3": 250, "\u30cb\u30fc": [44, 231, 232, 233, 234, 235], "\u30cc": [44, 231, 232, 233, 234, 235], "\u30cc\u30a6": [44, 231, 232, 233, 234, 235], "\u30cc\u30fc": [44, 231, 232, 233, 234, 235], "\u30cd": [44, 231, 232, 233, 234, 235], "\u30cd\u30a8": [44, 231, 232, 233, 234, 235], "\u30cd\u30fc": [44, 231, 232, 233, 234, 235], "\u30ce": [44, 231, 232, 233, 234, 235, 274], "\u30ce\u30a6": [44, 231, 232, 233, 234, 235], "\u30ce\u30aa": [44, 231, 232, 233, 234, 235], "\u30ce\u30fc": [44, 231, 232, 233, 234, 235], "\u30cf": [44, 231, 232, 233, 234, 235, 274], "\u30cf\u30a2": [44, 231, 232, 233, 234, 235], "\u30cf\u30b9\u30ce\u30ab\u30c5\u30e9": 44, "\u30cf\u30ba": 274, "\u30cf\u30fc": [44, 231, 232, 233, 234, 235], "\u30d0": [44, 231, 232, 233, 234, 235], "\u30d0\u30a2": [44, 231, 232, 233, 234, 235], "\u30d0\u30a4\u30aa\u30ea\u30f3": [53, 231, 235], "\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b": 301, "\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u6587\u5b57\u81ea\u8eab\u3092\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f": 175, "\u30d0\u30c3\u30d5\u30a1id\u3067\u3059": 108, "\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid": 108, "\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059": 108, "\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b": 108, "\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1": 108, "\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2": 108, "\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059": 108, "\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059": 108, "\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059": 108, "\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba": 108, "\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061": 108, "\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059": 108, "\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059": 108, "\u30d0\u30d3\u30d6\u30d9\u30dc": [53, 231, 232, 233, 234, 235, 258, 259], "\u30d0\u30d3\u30d6\u30d9\u30dc\u30d6": [231, 232, 233, 234, 235, 258, 259], "\u30d0\u30fc": [44, 231, 232, 233, 234, 235], "\u30d0\u30fc\u30b8\u30e7\u30f30\u7cfb\u306e\u304a\u77e5\u3089\u305b": 35, "\u30d0\u30fc\u30b8\u30e7\u30f31": 35, "\u30d0\u30fc\u30b8\u30e7\u30f3\u4e00\u89a7\u306e\u4e0a\u306b\u3042\u308b": 12, "\u30d0\u30fc\u30c1\u30e4\u30eb": 44, "\u30d1": [44, 231, 232, 233, 234, 235], "\u30d1\u30a2": [44, 231, 232, 233, 234, 235], "\u30d1\u30b8\u30e7\u30f3": 44, "\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi": 37, "\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63": 37, "\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a": 39, "\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059": 174, "\u30d1\u30fc": [44, 231, 232, 233, 234, 235], "\u30d2": [44, 231, 232, 233, 234, 235], "\u30d2\u30a4": [44, 231, 232, 233, 234, 235], "\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u8ffd\u52a0\u3057\u307e\u3059": 11, "\u30d2\u30fc": [44, 231, 232, 233, 234, 235], "\u30d3": [44, 231, 232, 233, 234, 235], "\u30d3\u30a4": [44, 231, 232, 233, 234, 235], "\u30d3\u30eb\u30c9\u306b\u6210\u529f\u3059\u308b\u3068": 12, "\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f": 12, "\u30d3\u30eb\u30c9\u74b0\u5883\u306f": 12, "\u30d3\u30eb\u30c9\u7d50\u679c\u304c\u30e1\u30fc\u30eb\u3067\u901a\u77e5\u3055\u308c\u307e\u3059": 12, "\u30d3\u30fc": [44, 231, 232, 233, 234, 235], "\u30d4": [44, 231, 232, 233, 234, 235], "\u30d4\u30a4": [44, 231, 232, 233, 234, 235], "\u30d4\u30fc": [44, 231, 232, 233, 234, 235], "\u30d5": [44, 231, 232, 233, 234, 235], "\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b": 39, "\u30d5\u30a6": [44, 231, 232, 233, 234, 235], "\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044": 108, "\u30d5\u30e9\u30b0\u3092\u6570\u5024\u3067\u306f\u306a\u304f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u5909\u66f4": 36, "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0": 36, "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570": 120, "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3059": 120, "\u30d5\u30fc": [44, 231, 232, 233, 234, 235], "\u30d6": [44, 53, 231, 232, 233, 234, 235, 258, 259], "\u30d6\u30a2\u30fc\u30c1\u30e4\u30eb": 44, "\u30d6\u30a6": [44, 231, 232, 233, 234, 235], "\u30d6\u30d6\u30d6\u30d6\u30d6\u30d6": [231, 232, 233, 234, 235, 258, 259], "\u30d6\u30e9\u30f3\u30c1\u304b\u3089": 12, "\u30d6\u30e9\u30f3\u30c1\u306e\u4f5c\u6210": 12, "\u30d6\u30e9\u30f3\u30c1\u3092push": 12, "\u30d6\u30e9\u30f3\u30c1\u3092\u672c\u5bb6\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u306e": 12, "\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea\u306a\u3069\u3092\u3082\u3068\u306b": 12, "\u30d6\u30fc": [44, 231, 232, 233, 234, 235], "\u30d7": [44, 231, 232, 233, 234, 235], "\u30d7\u30a6": [44, 231, 232, 233, 234, 235], "\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4": 37, "\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f": 38, "\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5": 14, "\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u304c\u30de\u30fc\u30b8\u3055\u308c\u308b\u3068": 12, "\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u4f5c\u6210\u3057\u307e\u3059": 12, "\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u7528\u306e\u30d6\u30e9\u30f3\u30c1\u306e\u4f5c\u6210\u3092\u3057\u307e\u3059": 12, "\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059": 93, "\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059": 93, "\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059": 175, "\u30d7\u30fc": [44, 231, 232, 233, 234, 235], "\u30d8": [44, 231, 232, 233, 234, 235], "\u30d8\u30a8": [44, 231, 232, 233, 234, 235], "\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059": 175, "\u30d8\u30fc": [44, 231, 232, 233, 234, 235], "\u30d9": [44, 231, 232, 233, 234, 235], "\u30d9\u30a8": [44, 231, 232, 233, 234, 235], "\u30d9\u30af\u30bf\u306egeopoint\u306e\u51fa\u529b\u306b\u5bfe\u5fdc": 36, "\u30d9\u30af\u30bf\u306e\u5024\u3092": 37, "\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63": 37, "\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 282, "\u30d9\u30fc": [44, 231, 232, 233, 234, 235], "\u30da": [44, 231, 232, 233, 234, 235], "\u30da\u30a8": [44, 231, 232, 233, 234, 235], "\u30da\u30fc": [44, 231, 232, 233, 234, 235], "\u30db": [44, 231, 232, 233, 234, 235], "\u30db\u30a6": [44, 231, 232, 233, 234, 235], "\u30db\u30a6\u30b8\u30ed\u30b6\u30e1": 44, "\u30db\u30aa": [44, 231, 232, 233, 234, 235], "\u30db\u30aa\u30b8\u30ed\u30b6\u30e1": 44, "\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408": 176, "\u30db\u30b9\u30c8\u540d\u3068": 176, "\u30db\u30fc": [44, 231, 232, 233, 234, 235], "\u30dc": [44, 231, 232, 233, 234, 235], "\u30dc\u30a6": [44, 231, 232, 233, 234, 235], "\u30dc\u30aa": [44, 231, 232, 233, 234, 235], "\u30dc\u30fc": [44, 231, 232, 233, 234, 235], "\u30dd": [44, 231, 232, 233, 234, 235], "\u30dd\u30a6": [44, 231, 232, 233, 234, 235], "\u30dd\u30aa": [44, 231, 232, 233, 234, 235], "\u30dd\u30fc": [44, 231, 232, 233, 234, 235], "\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f": [174, 175], "\u30de": [44, 231, 232, 233, 234, 235], "\u30de\u30a2": [44, 231, 232, 233, 234, 235], "\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082": 113, "\u30de\u30fc": [44, 231, 232, 233, 234, 235], "\u30df": [44, 231, 232, 233, 234, 235], "\u30df\u30a4": [44, 231, 232, 233, 234, 235], "\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6": 282, "\u30df\u30fc": [44, 231, 232, 233, 234, 235], "\u30e0": [44, 231, 232, 233, 234, 235], "\u30e0\u30a6": [44, 231, 232, 233, 234, 235], "\u30e0\u30fc": [44, 231, 232, 233, 234, 235], "\u30e1": [44, 231, 232, 233, 234, 235], "\u30e1\u30a8": [44, 231, 232, 233, 234, 235], "\u30e1\u30a8\u30e1\u30a8": 44, "\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3": 37, "\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u306e\u4fee\u6b63": 36, "\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63": [37, 39], "\u30e1\u30fc": [44, 231, 232, 233, 234, 235], "\u30e1\u30fc\u30c8\u30eb": 189, "\u30e1\u30fc\u30e1\u30fc": 44, "\u30e2": [44, 231, 232, 233, 234, 235], "\u30e2\u30a6": [44, 231, 232, 233, 234, 235], "\u30e2\u30aa": [44, 231, 232, 233, 234, 235], "\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u30e2\u30fc": [44, 231, 232, 233, 234, 235], "\u30e3": [44, 231, 232, 233, 234, 235], "\u30e3\u30a2": [44, 231, 232, 233, 234, 235], "\u30e3\u30fc": [44, 231, 232, 233, 234, 235], "\u30e4": [44, 231, 232, 233, 234, 235], "\u30e4\u30a2": [44, 231, 232, 233, 234, 235], "\u30e4\u30de\u30c0": [231, 232, 233, 234, 235, 274], "\u30e4\u30fc": [44, 231, 232, 233, 234, 235], "\u30e5": [44, 231, 232, 233, 234, 235], "\u30e5\u30a6": [44, 231, 232, 233, 234, 235], "\u30e5\u30fc": [44, 231, 232, 233, 234, 235], "\u30e6": [44, 231, 232, 233, 234, 235], "\u30e6\u30a6": [44, 231, 232, 233, 234, 235], "\u30e6\u30fc": [44, 231, 232, 233, 234, 235], "\u30e6\u30fc\u30b6\u304cc\u8a00\u8a9e\u3067\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u95a2\u4fc2\u5f0f\u3068\u3057\u3066\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 11, "\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4": 12, "\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd": [3, 4, 22, 51], "\u30e6\u30fc\u30b6\u30fc\u306b\u3042\u307e\u308a\u8ca0\u62c5\u3092\u611f\u3058\u3055\u305b\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u3068\u826f\u3044\u3067\u3059": 10, "\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059": 10, "\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059": 10, "\u30e6\u30fc\u30b6\u540d": 176, "\u30e7": [44, 231, 232, 233, 234, 235], "\u30e7\u30a6": 44, "\u30e7\u30aa": [44, 231, 232, 233, 234, 235], "\u30e7\u30fc": [44, 231, 232, 233, 234, 235], "\u30e8": [44, 231, 232, 233, 234, 235], "\u30e8\u30a6": [44, 231, 232, 233, 234, 235], "\u30e8\u30aa": [44, 231, 232, 233, 234, 235], "\u30e8\u30fc": [44, 231, 232, 233, 234, 235], "\u30e9": [44, 231, 232, 233, 234, 235], "\u30e9\u30a2": [44, 231, 232, 233, 234, 235], "\u30e9\u30f3\u30d7": 44, "\u30e9\u30fc": [44, 231, 232, 233, 234, 235], "\u30ea": [44, 231, 232, 233, 234, 235], "\u30ea\u30a4": [44, 231, 232, 233, 234, 235], "\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059": 174, "\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059": 174, "\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 174, "\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u3066\u6b21\u306e\u30bf\u30b9\u30af\u3092\u5b9f\u884c\u3057\u307e\u3059": 12, "\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306e\u4e2d\u306edockerfile\u3092\u66f4\u65b0\u3057\u307e\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb": 12, "\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f": 12, "\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f": 10, "\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a": 10, "\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066": 12, "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6295\u7a3f\u3057\u307e\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9": 12, "\u30ea\u30ea\u30fc\u30b9\u524d\u306bubuntu\u5411\u3051\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u3067\u304d\u308b\u304b\u4ee5\u4e0b\u306e\u624b\u9806\u3067\u78ba\u8a8d\u3057\u307e\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9": 12, "\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af": 12, "\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u304claunchpad": 12, "\u30ea\u30ea\u30fc\u30b9\u624b\u9806": [3, 4, 22, 51], "\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u6642\u3068\u958b\u767a\u6642\u3067\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u5206\u3051\u305a\u306b\u4f5c\u696d\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u304c": 12, "\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30af\u30ea\u30fc\u30f3\u306a\u72b6\u614b\u3067\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b": 12, "\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bf\u30b0\u3092\u6253\u3061\u307e\u3059": 12, "\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bf\u30b0\u3092\u8a2d\u5b9a\u3059\u308b\u524d\u306b": 12, "\u30ea\u30f3\u30af\u306e\u5148\u3067": 12, "\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b": 12, "\u30ea\u30f3\u30af\u3092\u8fbf\u308b\u3068": 12, "\u30ea\u30f3\u30b4\u3067\u3059": 272, "\u30ea\u30f3\u30b4\u3067\u3059\u304b": 272, "\u30ea\u30fc": [44, 231, 232, 233, 234, 235], "\u30eb": [44, 231, 232, 233, 234, 235], "\u30eb\u30a6": [44, 231, 232, 233, 234, 235], "\u30eb\u30fc": [44, 231, 232, 233, 234, 235], "\u30ec": [44, 231, 232, 233, 234, 235], "\u30ec\u30a8": [44, 231, 232, 233, 234, 235], "\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059": 11, "\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059": 11, "\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093": 89, "\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059": 89, "\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059": 89, "\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059": 89, "\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0": 37, "\u30ec\u30fc": [44, 231, 232, 233, 234, 235], "\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2": 36, "\u30ed": [44, 231, 232, 233, 234, 235], "\u30ed\u30a6": [44, 231, 232, 233, 234, 235], "\u30ed\u30aa": [44, 231, 232, 233, 234, 235], "\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059": 130, "\u30ed\u30b0\u306b\u306f\u6b8b\u308b": 39, "\u30ed\u30b0\u306b\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7\u306e\u79d2\u3088\u308a\u5c0f\u3055\u3044\u5024\u304c\u5e38\u306b0\u306b\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63": 38, "\u30ed\u30b0\u3092": 12, "\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b": 37, "\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059": 176, "\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp": 176, "\u30ed\u30b0\u51fa\u529b": 130, "\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059": 175, "\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059": 175, "\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059": 175, "\u30ed\u30fc": [44, 231, 232, 233, 234, 235], "\u30ed\u30fc\u30de\u30b8": [201, 240], "\u30ed\u30fc\u30de\u5b57": 201, "\u30ed\u30fc\u30de\u5b57\u5165\u529b": 240, "\u30ee": [44, 231, 232, 233, 234, 235], "\u30ee\u30a2": [44, 231, 232, 233, 234, 235], "\u30ee\u30fc": [44, 231, 232, 233, 234, 235], "\u30ef": [44, 231, 232, 233, 234, 235], "\u30ef\u30a2": [44, 231, 232, 233, 234, 235], "\u30ef\u30fc": [44, 231, 232, 233, 234, 235], "\u30f0": [44, 231, 232, 233, 234, 235], "\u30f0\u30a4": [44, 231, 232, 233, 234, 235], "\u30f0\u30fc": [44, 231, 232, 233, 234, 235], "\u30f1": [44, 231, 232, 233, 234, 235], "\u30f1\u30a6": [44, 231, 232, 233, 234, 235], "\u30f1\u30fc": [44, 231, 232, 233, 234, 235], "\u30f2": [44, 231, 232, 233, 234, 235], "\u30f2\u30aa": [44, 231, 232, 233, 234, 235], "\u30f2\u30fc": [44, 231, 232, 233, 234, 235], "\u30f3": [44, 231, 232, 233, 234, 235], "\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059": 120, "\u30f3\u30f3": [44, 231, 232, 233, 234, 235], "\u30f3\u30fc": [44, 231, 232, 233, 234, 235], "\u30f4": [44, 231, 232, 233, 234, 235], "\u30f4\u30a1": 44, "\u30f4\u30a1\u30a4\u30aa\u30ea\u30f3": [53, 231, 235], "\u30f4\u30a1\u30f4\u30a3\u30f4\u30a5\u30f4\u30a7\u30f4\u30a9": [53, 231, 232, 233, 234, 235, 258, 259], "\u30f4\u30a1\u30f4\u30a3\u30f4\u30f4\u30a7\u30f4\u30a9": [53, 54, 231, 232, 233, 234, 235, 258, 259], "\u30f4\u30a1\u30f4\u30a3\u30f4\u30f4\u30a7\u30f4\u30a9\u30f4": [231, 232, 233, 234, 235, 258, 259], "\u30f4\u30a1\u30fc\u30c1\u30e3\u30eb": 44, "\u30f4\u30a2": 44, "\u30f4\u30a6": [44, 231, 232, 233, 234, 235], "\u30f4\u30a7\u30eb\u30c7": 44, "\u30f4\u30fc": [44, 231, 232, 233, 234, 235], "\u30f5": [44, 231, 232, 233, 234, 235], "\u30f5\u30a2": [44, 231, 232, 233, 234, 235], "\u30f5\u30fc": [44, 231, 232, 233, 234, 235], "\u30f6": [44, 231, 232, 233, 234, 235], "\u30f6\u30a8": [44, 231, 232, 233, 234, 235], "\u30f6\u30fc": [44, 231, 232, 233, 234, 235], "\u30f7": [44, 231, 232, 233, 234, 235], "\u30f7\u30a2": [44, 231, 232, 233, 234, 235], "\u30f7\u30fc": [44, 231, 232, 233, 234, 235], "\u30f8": [44, 231, 232, 233, 234, 235], "\u30f8\u30a4": [44, 231, 232, 233, 234, 235], "\u30f8\u30fc": [44, 231, 232, 233, 234, 235], "\u30f9": [44, 231, 232, 233, 234, 235], "\u30f9\u30a8": [44, 231, 232, 233, 234, 235], "\u30f9\u30fc": [44, 231, 232, 233, 234, 235], "\u30fa": [44, 231, 232, 233, 234, 235], "\u30fa\u30a6": [44, 231, 232, 233, 234, 235], "\u30fa\u30aa": [44, 231, 232, 233, 234, 235], "\u30fa\u30fc": [44, 231, 232, 233, 234, 235], "\u30fc": [231, 232, 233, 234, 235, 258, 259], "\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc": [231, 232, 233, 234, 235, 258, 259], "\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059": 299, "\u4e00\u65b9": 301, "\u4e00\u822c": 274, "\u4e00\u884c\u306b\u8907\u6570\u306egroonga": 176, "\u4e0a\u8a18url\u3092\u53c2\u7167\u3059\u308b\u3068\u308f\u304b\u308b\u3088\u3046\u306b\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306eurl\u3068sha1\u30c1\u30a7\u30c3\u30af\u30b5\u30e0\u3092\u66f4\u65b0\u3057\u307e\u3059": 12, "\u4e0a\u8a18\u306e\u4f8b\u3067\u306f": 301, "\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059": 176, "\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093": 37, "\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059": 11, "\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059": 108, "\u4e0d\u5b89\u5b9a\u7248\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3067\u30d3\u30eb\u30c9\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304b\u3089": 12, "\u4e0d\u5b89\u5b9a\u7248\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u524a\u9664\u7528\u306e\u30da\u30fc\u30b8": 12, "\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63": 36, "\u4e0d\u6b63\u306a\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u3068\u304d\u306bdump\u3059\u308b\u3068\u843d\u3061\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63": 37, "\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 36, "\u4e0d\u6b63\u306a\u540d\u524d\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d\u3082\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 37, "\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b": 36, "\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 37, "\u4e0e\u3048": 301, "\u4e16\u754c\u6e2c\u5730\u7cfb": 282, "\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19": [189, 190], "\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059": 11, "\u4e3b\u306b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u58ca\u308c\u305f\u5834\u5408\u306a\u3069\u7570\u5e38\u6642\u306e\u554f\u984c\u89e3\u6c7a\u306e\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059": 108, "\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057": 282, "\u4e3b\u30ad\u30fc\u304c\u6570\u5024\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3067\u306e\u6bd4\u8f03\u6f14\u7b97\u306b\u5bfe\u5fdc": 37, "\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059": 89, "\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059": 89, "\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b": 162, "\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a": 89, "\u4e71\u6570\u3092\u751f\u6210\u3059\u308b": 204, "\u4e8c": 240, "\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u540c\u6642\u306b\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 93, "\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4": 12, "\u4eac\u90fd": [44, 274, 299, 301], "\u4eba\u540d": [231, 232, 233, 234, 235, 274], "\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059": 93, "\u4ed6\u306e\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306b\u4f9d\u983c\u3057\u3066": 12, "\u4ed8\u8d85\u7fa4": 52, "\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059": 113, "\u4ee3\u540d\u8a5e": [53, 274], "\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059": 12, "\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070": 176, "\u4ee5\u4e0b": 176, "\u4ee5\u4e0b\u3067": 301, "\u4ee5\u4e0b\u306bgroonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3092\u884c\u3046\u305f\u3081\u306b\u4e8b\u524d\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 12, "\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059": 11, "\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059": 11, "\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f": 299, "\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304a\u3044\u3066\u4e0b\u3055\u3044": 12, "\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u3092\u884c\u3046\u524d\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059": 299, "\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u524d\u306b\u3059\u3067\u306b\u95be\u5024\u304c\u8d8a\u3048\u3066\u3044\u308b\u5834\u5408": 301, "\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068": 301, "\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306f\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u4e88\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059": 175, "\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u304f\u3060\u3055\u3044": 12, "\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059": 14, "\u4ee5\u4e0b\u306e\u30c6\u30b9\u30c8\u304c\u5168\u3066\u30d1\u30b9\u3057\u3066\u3044\u308b\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059": 12, "\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059": 12, "\u4ee5\u4e0b\u306e\u624b\u9806\u3067\u5fc5\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3068": 12, "\u4ee5\u4e0b\u306f": 12, "\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f": 12, "\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8": 175, "\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8": 175, "\u4ee5\u964d\u3092\u7121\u8996": 37, "\u4efb\u610f\u306edb\u540d": 176, "\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u51fa\u529b\u5148\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 176, "\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067": 175, "\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316": 39, "\u4f4d\u7f6e\u60c5\u5831\u306e\u5c0f\u6570\u8868\u8a18\u304b\u3089\u30df\u30ea\u79d2\u3078\u306e\u5909\u63db\u8aa4\u5dee\u304c\u5927\u304d\u3044\u554f\u984c\u3092\u4fee\u6b63": 39, "\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408": 176, "\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059": 175, "\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4f8b\u306f\u4ee5\u4e0b\u3092\u4f7f\u7528\u3057\u307e\u3059": 12, "\u4f5c\u696d\u30de\u30b7\u30f3\u4e0a\u306bgroonga\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u4f9d\u5b58\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u4e00\u5f0f\u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 12, "\u4f5c\u696d\u6642\u306b\u306f\u6700\u65b0\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044": 12, "\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f": 93, "\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059": 108, "\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059": 108, "\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059": 93, "\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c": 93, "\u4f8b": [12, 22, 36, 300], "\u4f8b\u3048\u3070": [175, 176, 299, 301], "\u4fc2\u52a9\u8a5e": 274, "\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b": 93, "\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c": 301, "\u500b\u4eba\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u306f\u306a\u304f": 12, "\u5024": 175, "\u50241": 175, "\u50242": 175, "\u5024\u304c\u5b58\u5728\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f": 175, "\u5024\u306e\u7bc4\u56f2\u306f1": 89, "\u5065\u4f5c": 307, "\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059": 11, "\u5165\u529b\u30d5\u30a1\u30a4\u30eb": 176, "\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d": 176, "\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059": 89, "\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059": 119, "\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059": 301, "\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30d1\u30c3\u30b1\u30fc\u30b8\u306f\u4ee5\u4e0b\u306eurl\u3067\u78ba\u8a8d\u3067\u304d\u307e\u3059": 12, "\u5185\u8a33\u306f": 301, "\u5185\u90e8\u7684\u306a\u5909\u66f4": 12, "\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059": 189, "\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059": 189, "\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059": 189, "\u5186\u5468\u4e0a\u306e\u70b9\u306e\u4e00\u3064\u306e\u5ea7\u6a19\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059": 189, "\u518d\u5ea6\u30ea\u30ea\u30fc\u30b9\u3059\u308b\u3053\u3068\u306b\u306a\u3063\u3066\u3057\u307e\u3046\u306e\u3067": 12, "\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b": 10, "\u518d\u73fe\u7387\u3088\u308a\u3082\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059": 301, "\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068": 89, "\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408": 176, "\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059": 130, "\u51fa\u529b\u30d5\u30a1\u30a4\u30eb": 176, "\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d": 176, "\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092": 122, "\u5206\u5272": 299, "\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059": 14, "\u521d\u671f\u5024\u306f10\u3067\u3059": 174, "\u5225\u306e\u5f62\u5f0f\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066db_api\u3092\u4f7f\u3063\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u304b\u306f\u30b3\u30de\u30f3\u30c9\u6bce\u306b\u81ea\u7531\u306b\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "\u5229\u7528\u3067\u304d\u308b\u30d0\u30a4\u30b0\u30e9\u30e0\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u4e00\u89a7\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059": 301, "\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067": 10, "\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059": 89, "\u524a\u9664\u3057\u305f\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u304b\u3089id\u9806\u306b\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c": 37, "\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c": 37, "\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059": 113, "\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059": 113, "\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059": 12, "\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092": 12, "\u524d\u63d0\u6761\u4ef6": 3, "\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": 36, "\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059": 301, "\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 37, "\u52a9\u52d5\u8a5e": 274, "\u52a9\u8a5e": 274, "\u52c9": 280, "\u52c9\u5f37": [264, 279], "\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059": 93, "\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059": 122, "\u534a\u5f84": 189, "\u534a\u5f84\u304b\u3089\u306e\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u305f\u3081\u306b\u5730\u5f62\u3092\u3069\u306e\u3088\u3046\u306b\u8fd1\u4f3c\u3059\u308b\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059": 189, "\u5358\u4f4d": 189, "\u5358\u7d14\u306a\u8a08\u7b97\u5f0f\u3067\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u305f\u3081\u9ad8\u901f\u3067\u3059\u304c": 189, "\u539f\u56e0": [22, 300], "\u539f\u56e0\u3092\u7279\u5b9a\u3057\u3066\u4fee\u6b63\u3057\u307e\u3059": 12, "\u53c2\u8003\u307e\u3067\u306b\u904e\u53bb\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3078\u306e\u30ea\u30f3\u30af\u3092\u4ee5\u4e0b\u306b\u793a\u3057\u307e\u3059": 12, "\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059": 176, "\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3059": 10, "\u53e5\u70b9": 274, "\u53f3\u4e0a": 36, "\u53f3\u4e0b": 36, "\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8": 37, "\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066": 176, "\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u6bd4\u8f03\u3057\u307e\u3059": 176, "\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a": 11, "\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest": 176, "\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059": 108, "\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070": 156, "\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059": 89, "\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059": 176, "\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059": 108, "\u540c\u3058\u3067\u3059": 176, "\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082": 93, "\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u3082\u4e00\u7dd2\u306b\u6307\u5b9a\u3059\u308b\u30af\u30a8\u30ea\u306b\u3088\u3063\u3066\u306f\u5168\u6587\u691c\u7d22\u306e\u7d50\u679c\u304c\u7570\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 301, "\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b": [22, 300], "\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089": 93, "\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408": 176, "\u540c\u540d\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4e0a\u66f8\u3044\u3066\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u306a\u3044\u306e\u3067": 12, "\u540c\u6642\u306b": 9, "\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d": 39, "\u540d\u524d": [231, 232, 233, 234, 235, 274], "\u540d\u8a5e": [53, 231, 232, 233, 234, 235, 274], "\u5426\u5b9a": 11, "\u542b\u3081\u306a\u3044\u3082\u306e": 12, "\u542b\u3081\u308b\u3082\u306e": 12, "\u554f\u984c\u3042\u308a": 39, "\u554f\u984c\u306fgroonga": 176, "\u554f\u984c\u3092\u4fee\u6b63": 37, "\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059": 12, "\u56f0\u3063\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u8907\u6570\u56de\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u9650\u3089\u308c\u305f\u306a\u304b\u3067\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u3066\u304f\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059": 10, "\u56fa\u5b9a\u9577\u30ab\u30e9\u30e0\u306b\u30ab\u30e9\u30e0\u9577\u3088\u308a\u77ed\u3044\u30c7\u30fc\u30bf\u3092\u8a2d\u5b9a\u3059\u308b\u3068\u30b4\u30df\u304c\u6b8b\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63": 37, "\u56fa\u6709\u540d\u8a5e": 274, "\u57fa\u672c\u5f62": 274, "\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0": 12, "\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093": 89, "\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046": 174, "\u592a": 45, "\u592a\u90ce": 45, "\u59d3": 274, "\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059": 122, "\u5b58\u5728\u3057\u306a\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6539\u5584": 36, "\u5b58\u5728\u3057\u306a\u3044\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53c2\u7167\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u5b89\u5b9a\u7248\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3078\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u3088\u3046\u306b\u3057\u3066\u304f\u3060\u3055\u3044": 12, "\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093": 301, "\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059": 299, "\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093": 299, "\u5b8c\u5168\u4e00\u81f4\u691c\u7d22": 301, "\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306b\u9650\u308a": 299, "\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093": 299, "\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059": 299, "\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a": 175, "\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f": 89, "\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u5b9f\u7a3c\u52d5\u74b0\u5883\u3067\u306e\u30af\u30a8\u30ea\u30d1\u30bf\u30f3\u306b\u8fd1\u3044\u30af\u30a8\u30ea\u3092\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066": 174, "\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 174, "\u5b9f\u884c\u3059\u308b\u30b3\u30de\u30f3\u30c9\u3068\u305d\u306e\u5f15\u6570\u3092\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059": 175, "\u5b9f\u884c\u4f8b": [14, 93], "\u5b9f\u884c\u65e5": 12, "\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059": 11, "\u5b9f\u884c\u958b\u59cb\u6642\u523b": 176, "\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059": 301, "\u5bfe\u5fdc": 38, "\u5bfe\u7b56\u65b9\u6cd51": [22, 300], "\u5bfe\u7b56\u65b9\u6cd52": [22, 300], "\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [109, 120], "\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059": [109, 120], "\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4": 174, "\u5c0f\u6570\u5f62\u5f0f\u306etime\u30ea\u30c6\u30e9\u30eb\u3092\u30ed\u30fc\u30c9\u3059\u308b\u3068\u30df\u30ea\u79d2\u60c5\u5831\u304c\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63": 39, "\u5c71": 45, "\u5c71\u7530": [45, 231, 232, 233, 234, 235, 274], "\u5c71\u7530\u592a\u90ce": 45, "\u5de6\u4e0a": 36, "\u5de6\u4e0b": 36, "\u5dee\u5206\u3092": 176, "\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084": 282, "\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6": 282, "\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059": 189, "\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059": 190, "\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093": 93, "\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093": 176, "\u5f15\u6570\u3068\u3057\u3066": 11, "\u5f15\u6570\u306f\u4ee5\u4e0b\u306e2\u7a2e\u985e\u306e\u65b9\u6cd5\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 175, "\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b": 11, "\u5f15\u6570\u540d": 175, "\u5f15\u6570\u540d1": 175, "\u5f15\u6570\u540d2": 175, "\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f": 175, "\u5f37": [264, 279, 280], "\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0": 36, "\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault": 93, "\u5f62\u5f0f1": 175, "\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f": 175, "\u5f62\u5f0f2": 175, "\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f": 175, "\u5f7c": [231, 232, 233, 234, 235, 274], "\u5f7c\u306e\u540d\u524d\u306f\u5c71\u7530\u3055\u3093\u306e\u306f\u305a\u3067\u3059": [231, 232, 233, 234, 235, 274], "\u5f8c\u8ff0\u3057\u307e\u3059\u304c": 12, "\u5f8c\u8ff0\u306e\u3059\u3079\u3066\u306e\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306fdb_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u73fe\u3055\u308c\u3066\u3044\u307e\u3059": 11, "\u5f93\u3063\u3066": 156, "\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092": 11, "\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f": 11, "\u5fc5\u8981\u306a\u6642\u4ee5\u5916\u306bmecab\u306e\u8f9e\u66f8\u30c1\u30a7\u30c3\u30af\u3092\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63": 37, "\u5fc5\u8981\u306a\u90e8\u5206\u3092groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u554f\u3044\u5408\u308f\u305b\u308b\u305f\u3081\u306e\u30af\u30a8\u30ea\u306e\u8868\u73fe\u3068\u5b9f\u884c\u306b\u95a2\u3057\u3066": 11, "\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b": 36, "\u60c5\u5831\u306e\u9806\u5e8f\u306f": 162, "\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059": 162, "\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0": [109, 113, 119, 130], "\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093": 176, "\u62e1\u5f35\u5b50\u306f": 176, "\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f": 176, "\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cdevelop\u3042\u308b\u3044\u306fdeprecated\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f": 93, "\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cstable\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u306a\u3093\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3082\u8868\u793a\u3055\u308c\u305a\u305d\u306e\u307e\u307e\u8d77\u52d5\u3057\u307e\u3059": 93, "\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u304c\u8fd4\u3055\u308c\u307e\u3059": 93, "\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u6a19\u6e96\u30a8\u30e9\u30fc\u51fa\u529b\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057": 93, "\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059": 93, "\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408": 176, "\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059": 108, "\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b": 185, "\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059": 185, "\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b": 176, "\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c": 37, "\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080": 36, "\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059": 11, "\u6307\u5b9a\u3057\u305f\u6700\u65b0\u306egroonga\u30d0\u30fc\u30b8\u30e7\u30f3": 12, "\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059": 189, "\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408": 176, "\u63a5\u5c3e": [231, 232, 233, 234, 235, 274], "\u63a5\u7d9a\u3059\u308bgroonga": 176, "\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092": 176, "\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044": 176, "\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068": 176, "\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059": 174, "\u63a5\u7d9a\u5148\u30b5\u30fc\u30d0\u304c\u4f7f\u7528\u4e2d\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044": 176, "\u63d0\u6848\u3092\u884c\u3046": 37, "\u652f\u3048\u305f": 54, "\u652f\u3048\u308b": 54, "\u6539\u884c\u6587\u5b57\u306f": 175, "\u6570\u5024": 299, "\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8": 36, "\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f": 189, "\u6570\u5b57": 176, "\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046": 301, "\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b": 301, "\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059": 185, "\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059": 175, "\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 10, "\u65b0\u4efb\u306e\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u5fc5\u305a": 12, "\u65b0\u898f\u306b\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u62c5\u5f53\u8005\u306e\u307f\u884c\u3044\u307e\u3059": 12, "\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059": 189, "\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f": 176, "\u65e5": [265, 266, 267, 268, 275, 280], "\u65e5\u3005": 10, "\u65e5\u672c": [44, 201, 240, 250, 264, 265, 266, 267, 268], "\u65e5\u672c\u4eba": 250, "\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19": [189, 190], "\u65e5\u672c\u8a9e": [250, 275, 279], "\u65e5\u672c\u8a9e\u306e\u52c9\u5f37": [264, 279, 280], "\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059": 12, "\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a": 282, "\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63": 37, "\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4": 37, "\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059": 93, "\u6700\u521d\u306b\u58f0\u3092\u304b\u3051\u308b\u3068\u304d\u306b\u89e3\u6c7a\u7b56\u30921\u3064\u304b2\u3064\u63d0\u6848\u3067\u304d\u308b\u3068\u671b\u307e\u3057\u3044\u3067\u3059": 10, "\u6700\u521d\u306e1\u56de\u3060\u3051\u884c\u3046\u624b\u9806": 3, "\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308b": 36, "\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0": 36, "\u6700\u5f8c\u306b": 301, "\u6700\u5f8c\u306e": 176, "\u6700\u65b0\u306e": 12, "\u672c": [265, 266, 267, 268, 275, 280], "\u672c\u5bb6\u306emingw": 12, "\u672c\u5f53\u306b\u901f\u3044": 156, "\u672c\u8a9e": [264, 265, 266, 267, 268], "\u672c\u8a9e\u306e": 279, "\u6761\u4ef6\u306e\u9806\u5e8f\u3092\u5909\u3048\u308b\u3068\u691c\u7d22\u7d50\u679c\u304c\u5909\u308f\u308b\u3068\u3044\u3046\u72b6\u6cc1\u304c\u767a\u751f\u3057\u307e\u3059": 301, "\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b": 11, "\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059": 11, "\u6771\u4eac": [44, 274, 299, 301], "\u6771\u4eac\u4eac\u90fd": 44, "\u6771\u4eac\u90fd": [44, 274, 299, 301], "\u6771\u4eac\u90fd\u6c11": [299, 301], "\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f": 301, "\u68ee\u7530": 307, "\u691c\u7d22": [22, 37, 43, 47, 156, 171, 186, 297, 301], "\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092": 11, "\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051": 22, "\u691c\u7d22\u306e\u6319\u52d5": 22, "\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a": 299, "\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059": 301, "\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059": 299, "\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u305f\u7d50\u679c\u5f97\u3089\u308c\u308b\u8a9e\u5f59\u306e\u914d\u5217\u3068\u540c\u4e00\u306e\u914d\u5217\u3092\u542b\u3080\u6587\u66f8\u3092\u691c\u7d22\u3059\u308b\u51e6\u7406\u3092\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3068\u547c\u3093\u3067\u3044\u307e\u3059": 299, "\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9": 119, "\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u304f\u308b\u3053\u3068\u3092\u6291\u3048\u3064\u3064\u518d\u73fe\u7387\u3092\u4e0a\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 301, "\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u73fe\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044": 301, "\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u591a\u304f\u306a\u3063\u305f\u5834\u5408\u306f\u6307\u5b9a\u3059\u308b\u5024\u3092\u4f4e\u304f\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059": 301, "\u691c\u7d22\u4f8b1": 3, "\u691c\u7d22\u4f8b2": 3, "\u691c\u7d22\u4f8b3": 3, "\u691c\u7d22\u4f8b4": 3, "\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057": 156, "\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c": 89, "\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb": 11, "\u691c\u7d22\u5bfe\u8c61\u306e": 301, "\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u691c\u7d22\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306b\u52a0\u3048\u307e\u3059": 11, "\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba": 299, "\u691c\u7d22\u6761\u4ef6\u306b\u30de\u30c3\u30c1\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u9069\u7528\u3059\u308bgrn_expr\u3092script\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059": 156, "\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093": 282, "\u691c\u7d22\u6761\u4ef6\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3057\u305f\u65b0\u305f\u306a\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059": [119, 175], "\u691c\u7d22\u7d50\u679c\u3068\u3057\u3066\u751f\u6210\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059": 89, "\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059": 299, "\u691c\u7d22\u7d50\u679c\u306e\u30bd\u30fc\u30c8\u9806\u5e8f\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059": 156, "\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb": 11, "\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u304c\u7a7a\u3067\u306a\u3044\u5834\u5408\u306b\u3060\u3051\u610f\u5473\u3092\u6301\u3061\u307e\u3059": 11, "\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 11, "\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059": 11, "\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u30b9\u30b3\u30a2\u5024\u306e\u66f4\u65b0\u306e\u307f\u3092\u884c\u3044\u307e\u3059": 11, "\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059": 189, "\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059": 189, "\u697d\u3057": [299, 301], "\u697d\u3057\u3044billiard": [299, 301], "\u69d8\u3005\u306a\u30c6\u30b9\u30c8": 3, "\u6a19\u6e96\u5165\u529b": [108, 109, 113, 119, 120, 130, 147, 162], "\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f": 175, "\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e00\u884c\u305a\u3064eof\u306b\u9054\u3059\u308b\u307e\u3067\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u8aad\u307f\u53d6\u308a": 175, "\u6b21\u306b": 11, "\u6b21\u306e\u30ea\u30ea\u30fc\u30b9\u306b\u5411\u3051\u3066\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u66f4\u65b0\u3057\u307e\u3059": 12, "\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f": 93, "\u6b8b\u308a\u306e\u4e00\u3064\u306f": 93, "\u6bce\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u3067\u884c\u3046\u624b\u9806": 3, "\u6c11": 299, "\u6c17\u8efd\u306b\u3067\u304d\u306a\u3044\u3053\u3068\u3092\u76f8\u624b\u306b\u8981\u6c42\u3059\u308b\u3068\u840e\u7e2e\u3055\u308c\u3066\u3057\u307e\u3046\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059": 10, "\u6df1\u523b": 301, "\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057": 11, "\u6e2c\u5730\u7cfb": 282, "\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f": 282, "\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059": 11, "\u6f22\u5b57": 201, "\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059": 71, "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb": 14, "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570": 14, "\u7279\u6b8a": 274, "\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059": 176, "\u7279\u6b8a\u547d\u4ee4\u306f\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4efb\u610f\u306e\u5834\u6240\u306b\u66f8\u304d\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 176, "\u72b6\u614b\u3092\u8868\u793a\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059": 108, "\u73fe\u5728\u306f": [174, 176], "\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga": 176, "\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059": 176, "\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059": 199, "\u73fe\u5728\u6642\u523b\u3092\u8fd4\u3059": 199, "\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand": 93, "\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059": 189, "\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068": 14, "\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068": 14, "\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid": 108, "\u7530": 45, "\u7530\u592a": 45, "\u7530\u592a\u90ce": 45, "\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b": 12, "\u7591\u4f3c\u30ab\u30e9\u30e0": 89, "\u7701\u7565\u3057\u305f\u5834\u5408\u306f": 204, "\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059": 190, "\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059": 190, "\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059": 190, "\u78ba\u8a8d\u5f8c": 12, "\u79c1\u306f\u6797\u6a8e\u3092\u98df\u3079\u307e\u3059": [257, 258, 259], "\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068segv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63": 36, "\u7a7a\u306e\u5834\u5408": [109, 120], "\u7a7a\u767d": 175, "\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b": 301, "\u7a7a\u767d\u3084": 175, "\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059": 108, "\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059": 301, "\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059": 301, "\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63": 37, "\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0": 36, "\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0": 36, "\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": 37, "\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f": [108, 109, 113, 119, 120, 130, 147, 162], "\u7d44\u8fbc\u95a2\u6570\u306f": [185, 189, 190, 199, 204], "\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f": 282, "\u7d4c\u5ea6\u3068\u7def\u5ea6\u3092\u30df\u30ea\u79d2\u5358\u4f4d\u3067\u8868\u73fe\u3057\u305f\u6574\u6570\u306e\u7d44\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059": 282, "\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18": 282, "\u7d50\u679c\u304c\u7570\u5e38\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059": 176, "\u7d9a\u3044\u3066": 301, "\u7de8\u96c6\u8ddd\u96e2": 36, "\u7def\u5ea6\u306f": 282, "\u7e70\u308a\u8fd4\u3057\u6570": 176, "\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408": 176, "\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059": 176, "\u7f8a": 44, "\u811a\u6ce8": [113, 189, 190], "\u81ea\u5206\u304c\u30c4\u30a4\u30fc\u30c8\u3057\u305f\u5185\u5bb9\u3092\u628a\u63e1\u3057\u3066\u3044\u306a\u3044\u8fd4\u4fe1\u3092\u3055\u308c\u305f\u3089\u666e\u901a\u3044\u3044\u6c17\u306f\u3057\u307e\u305b\u3093": 10, "\u81ea\u5206\u306e\u666e\u6bb5\u4f7f\u3044\u306e\u516c\u958b\u9375\u3092\u767b\u9332\u3057\u305f\u4e0a\u3067": 12, "\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059": 176, "\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059": 176, "\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0": 176, "\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059": 89, "\u826f\u3044\u306e\u304b": 10, "\u826f\u3044\u4f8b": 10, "\u82b1\u5b50": 307, "\u82f1\u8a9e": 12, "\u884c": 14, "\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u3058\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u307e\u3059": 176, "\u8907\u6570\u306e\u6761\u4ef6\u3092\u518d\u5e30\u7684\u306b\u7d44\u307f\u5408\u308f\u305b\u3066\u3088\u308a\u8907\u96d1\u306a\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059": 11, "\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b": 10, "\u8a18\u53f7": [175, 274, 301], "\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528": 37, "\u8a18\u53f7\u3068\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b": 301, "\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b": 301, "\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a": 299, "\u8a2d\u5b9a\u3059\u308b\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u5024\u3092\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3057\u307e\u3059": 130, "\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059": 175, "\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059": 175, "\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b": 36, "\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b": 36, "\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b": 176, "\u8a73\u7d30\u306f": [14, 301], "\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u305f": 36, "\u8a9e": [108, 265, 266, 267, 268, 275, 280], "\u8a9e\u306e": 264, "\u8a9e\u306e\u52c9": 279, "\u8aa4\u3063\u305f\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0\u3067\u30ea\u30ea\u30fc\u30b9\u3057\u3066\u3057\u307e\u3046\u5371\u967a\u304c\u3042\u308a\u307e\u3059": 12, "\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059": 189, "\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059": 189, "\u8ad6\u7406\u548c": 11, "\u8ad6\u7406\u6f14\u7b97\u5b50\u306f": 11, "\u8ad6\u7406\u7a4d": 11, "\u8b66\u544a\u3092\u9664\u53bb": 37, "\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059": 93, "\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068": 37, "\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059": 189, "\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0": 37, "\u8fd4\u5024\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5b89\u5b9a\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u4fdd\u8a3c\u3055\u308c\u307e\u305b\u3093": 108, "\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 204, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_limit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_offset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_output_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_sortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306ematch_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoutput_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059": 119, "\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093": 175, "\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059": 175, "\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": [3, 4, 22], "\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059": 89, "\u901f": 45, "\u901f\u3044": 44, "\u9023\u4f53\u5316": 274, "\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8": 301, "\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046": 301, "\u9023\u7d9a\u3059\u308b\u8a18\u53f7": 301, "\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057": 10, "\u904e\u53bb\u306e\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u4f8b\u306f\u4ee5\u4e0b\u3067\u3059": 12, "\u9069\u5408\u7387\u304c\u4e0b\u304c\u308a\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u542b\u307e\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059": 301, "\u90ce": 45, "\u90e8\u5206\u4e00\u81f4\u691c\u7d22": 301, "\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n": 299, "\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066": 299, "\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f": 301, "\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059": 301, "\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059": 299, "\u90fd": [274, 299, 301], "\u90fd\u6c11": [299, 301], "\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059": 108, "\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059": 108, "\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059": [109, 120], "\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b": 120, "\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b": 109, "\u958b\u3044\u3066\u3044\u308b\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u304c\u591a\u3059\u304e\u3066accept\u3067\u304d\u306a\u3044\u72b6\u614b\u306e\u8ca0\u8377\u3092\u4f4e\u6e1b": 37, "\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044": 10, "\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63": 39, "\u95a2\u4fc2\u5f0f": 3, "\u95a2\u4fc2\u5f0f\u306f": 11, "\u95a2\u6570": 14, "\u95a2\u6570\u304c\u5f15\u6570\u3092": 36, "\u95a2\u6570\u306e\u8ffd\u52a0": 36, "\u95a2\u6570\u306f": [11, 185, 189, 190, 204], "\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059": 199, "\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63": 37, "\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059": 11, "\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059": 299, "\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059": 301, "\u95be\u5024\u3092\u3042\u3052\u308b": [22, 300], "\u95be\u5024\u3092\u8d8a\u3048\u308b": 301, "\u9759\u7684\u89e3\u6790": 3, "\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22": 301, "\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n": 299, "\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059": 299, "\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044": [299, 301], "\u975e\u4e92\u63db": 39, "\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070": 12, "\u975e\u81ea\u7acb": [231, 232, 233, 234, 235, 274], "\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059": 175, "\u99c4\u76ee\u306a\u4f8b": 10, "\u9ad8": 45, "\u9ad8\u6a5f\u80fd\u3067\u8907\u96d1\u306a\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u307e\u3067\u3044\u304f\u3064\u304b\u306e\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059": 11, "\u9ad8\u901f": [41, 45], "\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b": 9, "\uff41": 44, "\uff41z": 275, "\uff49": 44, "\uff4d\uff59\uff53\uff51\uff4c": [191, 192, 193], "\uff70": [231, 232, 233, 234, 235, 258, 259], "\uff71": 44}, "titles": ["1. Characteristics of Groonga", "6. Client", "3. Community", "12. How to contribute to groonga", "12.3. For Groonga developers", "12.3.2. How to build Groonga at the repository", "How to build Groonga at the repository by GNU Autotools", "12.3.2.1. How to build Groonga at the repository by CMake on GNU/Linux or Unix", "12.3.2.2. How to build Groonga at the repository by CMake on Windows", "12.3.3. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3", "12.3.4. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd", "12.3.5. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe", "12.3.7. \u30ea\u30ea\u30fc\u30b9\u624b\u9806", "12.3.1. Repository", "12.3.8. \u30c6\u30b9\u30c8\u65b9\u6cd5", "12.2. How to contribute in documentation topics", "12.2.3. C API", "12.2.2. I18N", "12.2.1. Introduction", "12.1. How to report a bug", "11. Development", "11.1. Travis CI", "Groonga documentation", "2. Install", "2.5. AlmaLinux", "2.6. Amazon Linux", "CentOS", "2.8. Others: Build with CMake", "2.3. Debian GNU/Linux", "2.7. Docker", "2.2. macOS", "Others", "2.4. Ubuntu", "2.1. Windows", "9. Limitations", "News", "\u30d0\u30fc\u30b8\u30e7\u30f30\u7cfb\u306e\u304a\u77e5\u3089\u305b", "\u30d0\u30fc\u30b8\u30e7\u30f31.0\u7cfb\u306e\u304a\u77e5\u3089\u305b", "\u30d0\u30fc\u30b8\u30e7\u30f31.1\u7cfb\u306e\u304a\u77e5\u3089\u305b", "News - 1.2.x", "News - 1.3 series", "News - 10 series", "News - 11 series", "News - 12 series", "News - 13 series", "News - 14 series", "News - 15 series", "News - 2 series", "News - 3 series", "News - 4 series", "News - 5 series", "News - 6 series", "News - 7 series", "News - 8 series", "News - 9 series", "News in Senna period", "13. The Pre-Groonga Era", "7. Reference manual", "7.19. Alias", "7.26. API", "7.26.2. Global configurations", "7.26.4. grn_cache
", "7.26.5. grn_column
", "7.26.6. grn_command_version
", "7.26.7. grn_content_type
", "7.26.8. grn_ctx
", "7.26.9. grn_db
", "7.26.10. grn_encoding
", "7.26.11. grn_expr", "7.26.12. grn_geo
", "7.26.13. grn_hook
", "7.26.14. grn_ii
", "7.26.15. grn_index_cursor
", "7.26.16. grn_info
", "7.26.17. grn_inspect
", "7.26.18. grn_match_escalation
", "7.26.19. grn_obj
", "7.26.20. grn_proc
", "7.26.21. grn_search
", "7.26.22. grn_table
", "7.26.23. grn_table_cursor
", "7.26.24. grn_thread_*
", "7.26.25. grn_type
", "7.26.26. grn_user_data
", "7.26.1. Overview", "7.26.3. Plugin", "7.12. Cast", "7.6. Column", "7.6.3.1. Index column", "7.6.2.3. Pseudo column", "7.6.2.1. Scalar column", "7.6.2.2. Vector column", "7.3. Command", "7.3.1. Command version", "7.3.2. Parallel execution", "7.3.3. Output format", "7.3.4. Output trace log", "7.3.5. Pretty print", "7.3.6. Request ID", "7.3.7. Request timeout", "7.3.8. Return code", "7.3.8.3.3. -6: GRN_INPUT_OUTPUT_ERROR
", "7.3.8.3.5. -22: GRN_INVALID_ARGUMENT
", "7.3.8.3.2. -3: GRN_NO_SUCH_FILE_OR_DIRECTORY
", "7.3.8.3.4. -13: GRN_NOT_ENOUGH_SPACE
", "7.3.8.3.1. -2: GRN_OPERATION_NOT_PERMITTED
", "7.3.8.3.6. -34: GRN_RESOURCE_DEADLOCK_AVOIDED
", "7.3.9. cache_limit
", "7.3.10. check
", "7.3.11. clearlock
", "7.3.12. column_copy
", "7.3.13. column_create
", "7.3.14. column_list
", "7.3.15. column_remove
", "7.3.16. column_rename
", "7.3.17. config_delete
", "7.3.18. config_get
", "7.3.19. config_set
", "7.3.20. database_unmap
", "7.3.21. define_selector
", "7.3.22. defrag
", "7.3.23. delete
", "7.3.24. dump
", "7.3.25. index_column_diff
", "7.3.26. io_flush
", "7.3.27. load
", "7.3.28. lock_acquire
", "7.3.29. lock_clear
", "7.3.30. lock_release
", "7.3.31. log_level
", "7.3.32. log_put
", "7.3.33. log_reopen
", "7.3.34. logical_count
", "7.3.35. logical_parameters
", "7.3.36. logical_range_filter
", "7.3.37. logical_select
", "7.3.38. logical_shard_list
", "7.3.39. logical_table_remove
", "7.3.40. normalize
", "7.3.41. normalizer_list
", "7.3.42. object_exist
", "7.3.43. object_inspect
", "7.3.44. object_list
", "7.3.45. object_remove
", "7.3.46. plugin_register
", "7.3.47. plugin_unregister
", "7.3.48. query_expand
", "7.3.49. quit
", "7.3.50. range_filter
", "7.3.51. reference_acquire
", "7.3.52. reference_release
", "7.3.53. register
", "7.3.54. reindex
", "7.3.55. request_cancel
", "7.3.56. ruby_eval
", "7.3.57. schema
", "7.3.58. select
", "7.3.59. shutdown
", "7.3.60. status
", "7.3.61. suggest
", "7.3.62. table_copy
", "7.3.63. table_create
", "7.3.64. table_list
", "7.3.65. table_remove
", "7.3.66. table_rename
", "7.3.67. table_tokenize
", "7.3.68. thread_dump
", "7.3.69. thread_limit
", "7.3.70. tokenize
", "7.3.71. tokenizer_list
", "7.3.72. truncate
", "7.18. Configuration", "7.1. Executables", "7.1.1. grndb
", "7.1.2. grnslap", "7.1.3. groonga
executable file", "7.1.4. groonga-benchmark", "7.1.5. groonga-httpd", "7.1.6. Groonga HTTP server", "7.1.7. groonga-suggest-create-dataset", "7.1.8. groonga-suggest-httpd
", "7.1.9. groonga-suggest-learner", "7.15. Function", "7.15.1. between
", "7.15.2. cast_loose
", "7.15.3. edit_distance", "7.15.4. escalate
", "7.15.5. fuzzy_search
", "7.15.6. geo_distance
", "7.15.7. geo_in_circle", "7.15.8. geo_in_rectangle", "7.15.9. highlight
", "7.15.10. highlight_full
", "7.15.11. highlight_html
", "7.15.12. html_untag
", "7.15.13. in_records
", "7.15.14. in_values
", "7.15.15. language_model_vectorize
", "7.15.16. math_abs
", "7.15.17. now", "7.15.18. number_classify
", "7.15.19. prefix_rk_search
", "7.15.20. query
", "7.15.21. query_parallel_or
", "7.15.22. rand", "7.15.23. snippet
", "7.15.24. snippet_html
", "7.15.25. string_length
", "7.15.26. string_slice
", "7.15.27. string_substring
", "7.15.28. sub_filter
", "7.15.29. time_classify_day
", "7.15.30. time_classify_day_of_week
", "7.15.31. time_classify_hour
", "7.15.32. time_classify_minute
", "7.15.33. time_classify_month
", "7.15.34. time_classify_second
", "7.15.35. time_classify_week
", "7.15.36. time_classify_year
", "7.15.37. vector_find
", "7.15.38. vector_new
", "7.15.39. vector_size
", "7.15.40. vector_slice
", "7.13. grn_expr", "7.13.1. Query syntax", "7.13.2. Script syntax", "7.21. Indexing", "7.23. Language model", "7.24. Log", "7.7. Normalizers", "7.7.2.1. NormalizerAuto
", "7.7.2.2. NormalizerNFKC
", "7.7.2.3. NormalizerNFKC100
", "7.7.2.4. NormalizerNFKC121
", "7.7.2.5. NormalizerNFKC130
", "7.7.2.6. NormalizerNFKC150
", "7.7.2.7. NormalizerNFKC51
", "7.7.2.8. NormalizerTable
", "7.17. Operations", "7.17.1. Geolocation search", "7.17.2. Prefix RK search", "7.2. Output", "7.10. Query expanders", "7.10.1. QueryExpanderTSV", "7.14. Regular expression", "7.11. Scorer", "7.11.3.1. scorer_tf_at_most
", "7.11.3.2. scorer_tf_idf
", "7.22. Sharding", "7.20. Suggest", "7.20.2. Completion", "7.20.3. Correction", "7.20.1. Introduction", "7.20.4. Suggestion", "7.5. Tables", "7.9.1. Summary", "7.9. Token filters", "7.9.2. TokenFilterNFKC
", "7.9.3. TokenFilterNFKC100
", "7.9.4. TokenFilterNFKC150
", "7.9.5. TokenFilterStem
", "7.9.6. TokenFilterStopWord
", "7.8.1. Summary", "7.8. Tokenizers", "7.8.2. TokenBigram
", "7.8.3. TokenBigramIgnoreBlank
", "7.8.4. TokenBigramIgnoreBlankSplitSymbol
", "7.8.5. TokenBigramIgnoreBlankSplitSymbolAlpha
", "7.8.6. TokenBigramIgnoreBlankSplitSymbolAlphaDigit
", "7.8.7. TokenBigramSplitSymbol
", "7.8.8. TokenBigramSplitSymbolAlpha
", "7.8.9. TokenBigramSplitSymbolAlphaDigit
", "7.8.10. TokenDelimit
", "7.8.11. TokenDelimitNull
", "7.8.12. TokenMecab
", "7.8.13. TokenNgram
", "7.8.14. TokenPattern
", "7.8.15. TokenRegexp
", "7.8.16. TokenTable
", "7.8.17. TokenTrigram
", "7.8.18. TokenUnigram
", "7.25. Tuning", "7.4. Data types", "7.16. Window function", "7.16.1. record_number
", "7.16.2. window_count
", "7.16.3. window_rank
", "7.16.4. window_record_number
", "7.16.5. window_sum
", "5. Server", "5.3. GQTP", "5.2. HTTP", "5.2.1. Comparison", "5.2.2. groonga", "5.2.3. groonga-httpd", "5.4. Memcached binary protocol", "5.1. Server packages", "8. Specification", "8.1. GQTP", "8.2. \u691c\u7d22", "10. Troubleshooting", "10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b", "10.2. How to analyze error messages", "10.3. How to avoid mmap Cannot allocate memory error", "4. Tutorial", "4.3. Various data types", "4.5. Drilldown", "4.6. Tag search and reverse resolution of reference relationships", "4.1. Basic operations", "4.9. Additional information about lexicon for full text search", "4.7. match_columns parameter", "4.10. Let\u2019s create micro-blog", "4.2. Remote access", "4.8. Prefix search with patricia trie", "4.11. Query expansion", "4.4. Various search conditions"], "titleterms": {"": [111, 311], "0": [36, 37, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "01": [37, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55], "02": [37, 38, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "03": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55], "04": [39, 41, 42, 43, 45, 47, 48, 50, 51, 52, 53, 54, 55], "05": [39, 41, 42, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55], "06": [37, 39, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 55], "07": [39, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55], "08": [36, 37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55], "09": [37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "0\u30ea\u30ea\u30fc\u30b9": [37, 38, 39], "0\u7cfb\u306e\u304a\u77e5\u3089\u305b": 37, "1": [37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "10": [37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55], "11": [37, 39, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54], "12": [37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 55], "13": [44, 104], "14": [45, 55], "15": 46, "16": 55, "17": 55, "18": 51, "19": 36, "1\u30ea\u30ea\u30fc\u30b9": [37, 39], "1\u7cfb\u306e\u304a\u77e5\u3089\u305b": 38, "2": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 105], "2005": 55, "2006": 55, "2009": 55, "2010": [36, 37], "2011": [37, 38, 39], "2012": [40, 47], "2013": [47, 48], "2014": [48, 49], "2015": [49, 50], "2016": [50, 51], "2017": [51, 52], "2018": [52, 53], "2019": [53, 54], "2020": [41, 54], "2021": [41, 42], "2022": [42, 43], "2023": [25, 43, 44, 45], "2024": [44, 45], "2025": [45, 46], "22": [55, 102], "23": [51, 55], "24": [44, 45], "25": [36, 41, 45], "26": 44, "27": [45, 54, 55], "28": [43, 48], "29": [37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "2\u30ea\u30ea\u30fc\u30b9": 37, "3": [39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 103], "30": [41, 54], "31": [37, 42, 44, 50, 51], "34": 106, "3\u30ea\u30ea\u30fc\u30b9": 37, "4": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "4\u30ea\u30ea\u30fc\u30b9": 37, "5": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "5\u30ea\u30ea\u30fc\u30b9": 37, "6": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 101], "6\u30ea\u30ea\u30fc\u30b9": [36, 37], "7": [36, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "7\u30ea\u30ea\u30fc\u30b9": [36, 37], "8": [24, 39, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "8\u30ea\u30ea\u30fc\u30b9": 37, "9": [24, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "AND": [224, 225], "For": [4, 94], "NOT": [224, 225], "Near": [224, 225], "Not": [224, 225], "OR": [224, 225], "The": [56, 111, 156, 281], "With": [29, 231, 235], "aarch64": 45, "about": [282, 309], "access": [292, 312], "access_log": 177, "action": [101, 102, 103, 104, 105, 106], "ad": [45, 46], "add": [17, 18], "addit": [225, 229, 309], "adjust": 156, "administr": [177, 312], "advanc": [135, 156, 231, 232, 233, 234, 235, 237, 257, 258, 259, 272, 274, 275], "after": 45, "against": 310, "aggreg": 0, "algorithm": 260, "alia": 58, "all": 254, "alloc": 303, "almalinux": 24, "also": [6, 7, 8, 58, 90, 95, 98, 99, 100, 107, 109, 111, 112, 115, 116, 117, 119, 121, 125, 126, 128, 129, 130, 131, 136, 138, 139, 142, 144, 145, 146, 148, 151, 153, 154, 155, 156, 159, 161, 165, 168, 169, 178, 179, 180, 184, 191, 192, 193, 201, 202, 203, 205, 206, 210, 223, 229, 230, 231, 232, 233, 234, 235, 237, 240, 243, 246, 247, 254, 255, 272, 274, 275, 276, 278, 286, 298], "amazon": [25, 45], "among": 310, "an": [45, 111, 308, 312], "analyz": 302, "anchor": 244, "apach": [12, 31, 94, 96], "api": [16, 59], "appli": 91, "approximate_typ": 188, "ar": 45, "archiv": 32, "aren": 45, "arg": 11, "arithmet": 225, "arrai": 225, "arrow": [31, 94, 96], "arrow\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u53d6\u5f97": 12, "assign": [98, 224, 225], "authent": 292, "auto_release_count": 149, "autotool": 6, "avail": [94, 177], "avoid": 303, "avx": 45, "basic": [137, 163, 225, 308], "benchmark": 176, "benchmark\u547d\u4ee4": 176, "benchmark\u5b9f\u884c\u7d50\u679c": 176, "between": 183, "bigram": 311, "binari": 295, "birth": 56, "bitwis": 225, "blog": 311, "bodi": 95, "bookworm": 28, "bool": 282, "boolean": [225, 305], "brazil": 56, "broken": [45, 137], "brows": 177, "browser": 18, "bug": [19, 45], "build": [5, 6, 7, 8, 24, 25, 27, 28, 30, 31, 32, 33], "built": [229, 245], "builtin": [175, 282], "bump": 12, "c": 16, "cach": [132, 134, 135, 156, 177], "cache_limit": 107, "calc_target": 135, "calc_typ": 135, "call": 225, "callback": 11, "can": [45, 282], "candidate_n": 180, "cannot": 303, "cascad": 121, "case": [95, 137, 163], "cast": [45, 86], "cast_loos": 184, "caus": [101, 102, 103, 104, 105, 106], "cento": 26, "chang": [18, 43, 44, 45, 55, 110], "charact": 244, "characterist": [0, 254], "chat": 2, "check": [94, 108, 173], "checkout": [6, 7, 8], "choic": 244, "ci": 21, "clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 14, "class": 244, "clear": 173, "clearlock": 109, "client": [1, 175, 298], "clone": [17, 18], "close_tag": 191, "close_tagn": [191, 192], "cmake": [7, 8, 18, 27], "code": [45, 99, 100], "column": [0, 34, 45, 87, 88, 89, 90, 91, 110, 111, 125, 132, 134, 135, 141, 142, 155, 156, 163, 188, 191, 192, 201, 211, 224, 246, 247, 261, 306, 308, 310], "column_copi": 110, "column_cr": [45, 111], "column_full_nam": 141, "column_id": 141, "column_inform": 112, "column_list": 112, "column_list_head": 112, "column_nam": 141, "column_or_valu": 183, "column_remov": 113, "column_renam": 114, "column_t": 141, "column_type_nam": 141, "column_type_raw_id": 141, "column_type_raw_nam": 141, "column_value_typ": 141, "combin": 224, "command": [92, 93, 94, 155, 171, 173, 175, 180, 241, 248, 292, 308, 312], "command_version\u30d1\u30e9\u30e1\u30fc\u30bf": 93, "comment": 311, "common": 142, "commun": 2, "comparison": [225, 292], "complet": [250, 252], "compos": 29, "compress": 292, "condit": [156, 224, 315], "condition_1": 186, "condition_column_nam": 195, "condition_n": 186, "condition_t": 195, "config_delet": 115, "config_get": 116, "config_set": 117, "configur": [6, 21, 31, 60, 110, 171, 177, 292], "confirm": 17, "construct": [45, 226], "contain": 11, "context_id": [45, 228], "contribut": [3, 15], "control": 225, "convert": 240, "cooccurr": [250, 251, 253], "core": 292, "correct": [251, 252], "cpp": 45, "cpu": 292, "creat": [6, 90, 91, 111, 161, 179, 308, 310, 311], "custom": 292, "cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 14, "daemon": [94, 175, 298], "data": [87, 111, 161, 177, 181, 224, 225, 250, 253, 282, 305, 311], "data_column_value_compress_filt": 141, "data_column_value_compress_method": 141, "databas": [141, 292, 308], "database_name_t": 141, "database_path": [180, 181], "database_type_id": 141, "database_type_nam": 141, "database_unmap": 118, "dataset": 179, "date": 305, "db_api": 11, "dcmake_install_prefix": 27, "dcmake_prefix_path": 27, "deb": 45, "debian": 28, "decreas": [137, 163], "default": [31, 93, 94, 99], "default_close_tag": 191, "default_mod": [202, 203], "default_open_tag": 191, "default_oper": [202, 203], "default_token": 161, "define_selector": 119, "defrag": [45, 120], "delet": [45, 121], "delimit": 272, "depend": [6, 8, 18, 27, 31, 137, 163], "descript": 282, "desctipion": 179, "detail": 100, "dev": 12, "develop": [4, 20], "dgrn_with_apache_arrow": 27, "dgrn_with_mrubi": 27, "diff": 45, "differ": 135, "direct": 177, "disabl": 31, "divis": 225, "doc": 18, "docker": 29, "docker\u30a4\u30e1\u30fc\u30b8\u306e\u66f4\u65b0": 12, "document": [15, 18, 22], "domain": [112, 306], "don": 45, "done": 45, "down": [177, 315], "download": 27, "downtim": 292, "drilldown": [135, 156, 306], "drilldown_calc_target": [135, 156], "drilldown_calc_typ": [135, 156], "drilldown_filt": [135, 156], "drilldown_limit": [135, 156], "drilldown_max_n_target_record": 156, "drilldown_offset": [135, 156], "drilldown_output_column": [135, 156], "drilldown_sort_kei": [135, 156], "drilldown_sortbi": [135, 156], "drop": 43, "dump": 122, "dump_index": 122, "dump_plugin": 122, "dump_record": 122, "dump_schema": 122, "dynam": [132, 134, 135, 156], "each": [125, 310], "edit": [17, 18], "edit_dist": 185, "effici": 45, "elapsed_tim": 228, "ellipsoid": 188, "empti": 45, "enabl": [31, 99], "encod": 31, "engin": 0, "entri": 45, "environ": 94, "equal": [11, 224, 225], "era": 56, "error": [45, 95, 101, 102, 103, 104, 105, 106, 302, 303], "escal": [31, 186], "escap": [224, 244], "evolut": 56, "exampl": [21, 61, 62, 63, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 179, 298, 302, 303], "execut": [45, 94, 172, 175], "exist": 45, "exit": 179, "expand": 242, "expans": 314, "experiment": 45, "explicit": 224, "explicitli": 188, "express": [45, 208, 224, 225, 244], "extract": [208, 225, 253], "facebook": 2, "facebook\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b": 12, "fals": 45, "favorit": 311, "featur": [43, 45, 239], "file": [17, 18, 45, 94, 131, 175, 179, 181, 243, 281, 292], "filter": [132, 134, 135, 156, 256], "filter_str": 210, "fix": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 142], "flag": [45, 111, 112, 132, 134, 135, 138, 142, 156, 161, 165, 168, 173, 202, 203, 298], "float": [225, 282], "float32": [46, 282], "flow": 17, "follow": 311, "forc": [137, 143, 173], "fork": 18, "format": [45, 95, 96, 156, 228, 243, 308], "free": 0, "freebsd": 281, "from": [6, 7, 8, 24, 25, 28, 30, 31, 32, 33, 43, 44, 45, 135, 180, 181], "from_nam": [110, 160], "from_tabl": 110, "full": [0, 111, 224, 308, 309, 310, 315], "function": [132, 134, 135, 156, 182, 225, 227, 283], "fuzzi": 156, "fuzzy_max_dist": 156, "fuzzy_max_distance_ratio": 156, "fuzzy_max_expans": 156, "fuzzy_prefix_length": 156, "fuzzy_search": 187, "fuzzy_with_token": 156, "fuzzy_with_transposit": 156, "g": 27, "garbag": 45, "gener": [17, 18, 27, 45, 87, 90, 91, 111, 112], "generated_column_source_full_nam": 141, "generated_column_source_id": 141, "generated_column_source_nam": 141, "generated_column_source_t": 141, "generated_column_value_gener": 141, "geo": [0, 225, 307], "geo_dist": 188, "geo_in_circl": 189, "geo_in_rectangl": 190, "geoindex": 311, "geoloc": [239, 311], "geopoint": 311, "get": [180, 308], "global": 60, "glossari": 248, "gnu": [6, 7, 27, 28], "gqtp": [45, 290, 296, 298], "gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": 9, "greater": [11, 224, 225], "greater_equ": 11, "grn_cach": 61, "grn_column": 62, "grn_command_vers": 63, "grn_content_typ": 64, "grn_ctx": 65, "grn_db": 66, "grn_encod": 67, "grn_expr": [11, 68, 223], "grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea": 11, "grn_geo": 69, "grn_hook": 70, "grn_ii": 71, "grn_index_cursor": 72, "grn_info": 73, "grn_input_output_error": 101, "grn_inspect": 74, "grn_invalid_argu": 102, "grn_match_escal": 75, "grn_n_workers_default": 94, "grn_no_such_file_or_directori": 103, "grn_not_enough_spac": 104, "grn_obj": 76, "grn_operation_not_permit": 105, "grn_pat_siz": 45, "grn_proc": 77, "grn_resource_deadlock_avoid": 106, "grn_search": 78, "grn_tabl": 79, "grn_table_cursor": 80, "grn_table_select": 11, "grn_thread_": 81, "grn_type": 82, "grn_user_data": 83, "grndb": 173, "grnslap": 174, "groonga": [0, 3, 4, 5, 6, 7, 8, 9, 17, 18, 22, 27, 43, 45, 55, 56, 94, 175, 176, 177, 178, 179, 180, 181, 293, 294, 296], "groonga_base_path": 177, "groonga_cache_base_path": 177, "groonga_cache_limit": 177, "groonga_databas": 177, "groonga_database_auto_cr": 177, "groonga_log_level": 177, "groonga_log_path": 177, "groonga_query_log_path": 177, "groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97": 12, "groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97": 12, "groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb": 11, "group": [224, 225, 244], "group_kei": [132, 134, 135, 156], "gzip": 292, "handl": 45, "handleabl": 111, "hash": 311, "hashtag": 311, "have": 45, "header": [95, 112, 115, 116, 117, 126, 128, 142, 155, 298], "help": 31, "highlight": 191, "highlight_ful": 192, "highlight_html": 193, "higlight": 44, "homebrew": 30, "homebrew\u306e\u66f4\u65b0": 12, "how": [3, 5, 6, 7, 8, 15, 17, 18, 19, 58, 90, 91, 94, 98, 99, 110, 226, 227, 240, 250, 251, 253, 290, 298, 302, 303, 312], "html": [17, 18, 194], "html_escap": 191, "html_mode": 191, "html_untag": 194, "http": [178, 241, 291, 292, 296, 312], "httpd": [177, 180, 181, 294, 296], "hypertext": 312, "i": [45, 94], "i18n": 17, "id": [98, 112, 153, 254, 311], "ifexist": 125, "ignore_blank": 275, "imag": 29, "improv": [39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "in_record": 195, "in_valu": 196, "inc": 56, "include_class": 274, "include_form": 274, "include_read": 274, "index": [0, 34, 45, 87, 88, 111, 155, 161, 226, 244, 246, 247, 307, 308, 310], "index_column": 165, "index_column_diff": [45, 123], "index_column_source_full_nam": 141, "index_column_source_id": 141, "index_column_source_nam": 141, "index_column_source_t": 141, "index_column_value_posit": 141, "index_column_value_s": 141, "index_column_value_sect": 141, "index_column_value_statistics_max_array_segment_id": 141, "index_column_value_statistics_max_buffer_segment_id": 141, "index_column_value_statistics_max_in_use_chunk_id": 141, "index_column_value_statistics_max_in_use_physical_segment_id": 141, "index_column_value_statistics_max_section_id": 141, "index_column_value_statistics_n_array_seg": 141, "index_column_value_statistics_n_buffer_seg": 141, "index_column_value_statistics_n_garbage_chunk": 141, "index_column_value_statistics_n_garbage_seg": 141, "index_column_value_statistics_n_physical_seg": 141, "index_column_value_statistics_n_unmanaged_seg": 141, "index_column_value_statistics_next_physical_segment_id": 141, "index_column_value_statistics_total_chunk_s": 141, "index_column_value_weight": 141, "inform": [309, 315], "initi": 45, "input": 180, "input_typ": 125, "instal": [6, 8, 17, 18, 23, 27, 31, 243], "instant": 0, "int16": 282, "int32": 282, "int64": 282, "int8": 282, "integ": 225, "internet": 56, "introduct": [18, 252], "invalid": [45, 111], "invert": 0, "io_flush": 124, "issu": [19, 42, 43, 312], "javascript": 315, "json": [45, 95, 96], "just": 91, "kei": [45, 46, 115, 116, 117, 135, 156, 282, 313], "kern": 281, "key_typ": 161, "key_vector_expans": 156, "keyword": 311, "keywordn": [191, 192], "kind": 111, "known": [42, 43], "l": 228, "label": [135, 156], "landscap": 56, "languag": [17, 227], "language_model_vector": [45, 197], "larg": [111, 161], "later": 45, "latitud": [0, 305], "launch": 180, "lazi": 45, "lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 14, "learn": [180, 181, 250, 251, 252, 253], "learner": [180, 181], "left": 225, "length": [208, 209], "less": [11, 224, 225], "less_equ": 11, "let": 311, "level": [45, 129, 173], "lexicon": [161, 308, 309], "lgpl": 45, "libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 14, "librari": [0, 31], "like": 315, "limit": [34, 91, 134, 135, 156, 243, 254, 282, 306], "line": [175, 180, 241], "linux": [7, 25, 27, 28, 45, 281], "list": [2, 19, 100], "liter": 225, "llama": 45, "load": [45, 91, 125, 177, 308, 311], "load_column": [135, 156], "load_tabl": [135, 156], "load_valu": [135, 156], "localstatedir": 31, "locat": [0, 188, 243, 307, 315], "lock": [0, 173], "lock_acquir": 126, "lock_clear": 127, "lock_releas": 128, "lock_tabl": 125, "log": [31, 45, 96, 131, 173, 177, 181, 228, 292], "log_level": 129, "log_put": 130, "log_reopen": 131, "logic": [137, 224, 225], "logical_count": 132, "logical_paramet": 133, "logical_range_filt": [45, 134], "logical_select": 135, "logical_shard_list": 136, "logical_t": [132, 134, 135, 136, 137], "logical_table_remov": 137, "longitud": [0, 305], "longtext": 282, "loose_blank": 275, "loose_symbol": 275, "lotat": 131, "lz4": 31, "machin": 45, "maco": [27, 30], "macport": 30, "made": 45, "mai": 45, "mail": [2, 19], "major": [101, 102, 103, 104, 105, 106], "make": [6, 31], "manag": 227, "manual": 57, "match": [31, 224, 225], "match_column": [135, 156, 202, 203, 310], "match_escal": 156, "match_escalation_threshold": [135, 156], "math_ab": 198, "max": [107, 132, 134, 135, 137, 167, 183, 281], "max_bord": [132, 134, 135, 137, 183], "max_map_count": 281, "max_n_result": 205, "maxfileperproc": 281, "medium": 111, "memcach": 295, "memori": [281, 303], "messag": [31, 228, 302], "message_pack_install_prefix": 31, "messagepack": 95, "micro": 311, "min": [132, 134, 135, 137, 183], "min_bord": [132, 134, 135, 137, 183], "miss": [45, 111], "mix": 45, "mmap": 303, "mode": [11, 111, 157, 165, 168, 175, 219], "mode_nam": 195, "model": 227, "model_nam": 197, "modul": 177, "modulo": 225, "mroonga": 0, "much": 137, "multi": 292, "multipl": [111, 225, 306, 310], "munin": 31, "n": [94, 275], "n_worker": [94, 156], "name": [111, 112, 114, 123, 132, 134, 135, 140, 141, 143, 156, 161, 163, 164, 179, 208, 282, 310], "narrow": 315, "need": 45, "nest": 310, "new": [17, 18, 35, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "new_nam": [114, 164], "newli": 43, "nginx": 177, "nofil": 281, "none": 156, "normal": [90, 91, 138, 155, 161, 168, 191, 229, 237], "normalizer_list": 139, "normalizer_nam": 192, "normalizerauto": 230, "normalizernfkc": [45, 231], "normalizernfkc100": 232, "normalizernfkc121": 233, "normalizernfkc130": 234, "normalizernfkc150": 235, "normalizernfkc51": 236, "normalizert": 237, "normalizerxxx": 191, "not_equ": 11, "note": 94, "now": 199, "nth": [208, 209], "null": 225, "number": [31, 111, 156, 281], "number_classifi": 200, "numer": 305, "object": [142, 225], "object_exist": 140, "object_inspect": 141, "object_list": 142, "object_remov": 143, "object_typ": 142, "offlin": [45, 226], "offset": [134, 135, 156], "one": 310, "onli": 45, "onlin": 226, "only_open": 124, "open": 281, "open_tag": 191, "open_tagn": [191, 192], "oper": [225, 238, 308], "option": [18, 27, 94, 110, 111, 115, 116, 117, 118, 122, 124, 125, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 155, 157, 158, 160, 161, 163, 165, 166, 167, 168, 175, 179, 180, 181, 183, 188, 193, 195, 196, 202, 203, 205, 208, 209, 219, 231, 232, 233, 234, 235, 237, 246, 247, 258, 259, 260, 261, 272, 274, 275], "order": [134, 224, 225], "origin": 225, "os": 43, "other": [27, 31, 231, 235, 244], "output": [17, 95, 96, 134, 135, 156, 241, 308], "output_column": [134, 135, 156], "output_error": 125, "output_id": 125, "overcommit_memori": 281, "overview": [0, 84, 305], "pack": 31, "packag": [31, 32, 45, 296], "page": 156, "parallel": [45, 94], "paramet": [45, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 147, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 170, 175, 180, 181, 183, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 208, 209, 210, 211, 219, 220, 221, 231, 232, 233, 234, 235, 237, 246, 247, 257, 258, 259, 260, 261, 272, 274, 275, 281, 286, 310], "part": 137, "patch": [17, 18], "path": [27, 31, 111, 112, 161, 173, 292], "patricia": 313, "pattern": [45, 272], "per": [94, 281], "perform": [177, 292], "period": 55, "persist": 254, "person": 32, "phi": 45, "phrase": [224, 225], "pid": 228, "pkg_config_path": 31, "platform": 31, "plugin": [31, 85, 155], "plugin_regist": 144, "plugin_unregist": 145, "po": [17, 18], "point": 225, "point1": 188, "point2": 188, "posit": [45, 123, 208], "possibl": 137, "post": [177, 292, 311], "post_filt": [132, 134, 135], "power_set": 156, "ppa": 32, "ppa\u7528\u306e\u9375\u306e\u767b\u9332": 12, "pre": 56, "prefix": [11, 31, 224, 225, 240, 250, 292, 313], "prefix_rk_search": 201, "prepar": [18, 314], "preset": [18, 27], "pretti": 97, "preview": 18, "primari": [282, 313], "print": 97, "proc": 142, "process": [45, 94, 228, 281], "product": [224, 225], "progress": [45, 228], "progress_log_level": 123, "properti": 142, "protocol": [295, 298, 312], "proxi": 177, "proxy_cach": 177, "pseudo": 89, "pull": [17, 18, 29], "quantifi": 244, "queri": [0, 135, 156, 177, 201, 202, 224, 228, 242, 314], "query_expand": [135, 146, 156, 202, 203], "query_expans": 156, "query_flag": [135, 156], "query_parallel_or": 203, "query_statu": 228, "query_str": [202, 203], "query_typ": 298, "queryexpandertsv": 243, "quit": 147, "rake": 12, "rand": 204, "rang": [112, 142, 161, 308], "range_filt": 148, "range_index": 133, "rapidjson": 45, "read": [0, 240, 250], "record": [111, 156, 254, 308], "record_id": 123, "record_numb": 284, "recov": 173, "rectangl": 188, "recurs": [124, 149, 150], "refer": [45, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 90, 91, 111, 163, 305, 307], "reference_acquir": 149, "reference_releas": 150, "reflect": 18, "regexp": 208, "regist": 151, "regular": [45, 208, 224, 225, 244], "reindex": 152, "relat": [132, 134, 135, 137, 156, 177, 181, 310], "relationship": 307, "releas": [12, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "relicens": 45, "remot": 312, "remov": [137, 163], "remove_blank": 275, "remove_symbol": [45, 231, 234, 235], "report": [19, 45], "report_source_loc": 275, "repositori": [5, 6, 7, 8, 13, 17, 18], "request": [17, 18, 98, 99, 177], "request_cancel": [45, 153], "requir": [94, 110, 111, 112, 114, 115, 116, 117, 118, 124, 125, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 153, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 170, 180, 183, 188, 193, 194, 195, 197, 202, 203, 205, 209, 211, 219, 237, 246, 247], "resolut": 307, "resolv": 58, "resourc": [137, 163], "respons": [45, 180], "restart": 296, "result": [306, 308], "return": [45, 99, 100, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 180, 183, 184, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 246, 247, 284, 285, 286, 287, 288], "return_cod": 228, "reus": 45, "revers": [177, 307], "right": 225, "rk": [240, 250], "romaji": 240, "room": 2, "rpm": 45, "ruby_ev": 154, "rule": 248, "run": [6, 8, 18, 27, 290, 298, 312], "sampl": [224, 225], "scalar": [90, 111], "schema": 155, "scope": 210, "score": 156, "score_n": 180, "scorer": [135, 156, 245, 315], "scorer_tf_at_most": 246, "scorer_tf_idf": 247, "script": [154, 225], "search": [0, 91, 111, 132, 134, 135, 156, 224, 225, 239, 240, 250, 251, 253, 307, 308, 309, 310, 311, 313, 314, 315], "secur": [225, 312], "see": [6, 7, 8, 58, 90, 95, 98, 99, 100, 107, 109, 111, 112, 115, 116, 117, 119, 121, 125, 126, 128, 129, 130, 131, 136, 138, 139, 142, 144, 145, 146, 148, 151, 153, 154, 155, 156, 159, 161, 165, 168, 169, 178, 179, 180, 184, 191, 192, 193, 201, 202, 203, 205, 206, 210, 223, 229, 230, 231, 232, 233, 234, 235, 237, 240, 243, 246, 247, 254, 255, 272, 274, 275, 276, 278, 286, 298], "select": [135, 156], "send": [17, 18, 312], "senna": [55, 56], "sequential_class_tag_mod": [191, 193], "seri": [40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "server": [0, 175, 178, 289, 296, 298, 312], "set": [94, 99, 177], "setup": 180, "sharabl": 0, "shard": 248, "shard_kei": [132, 134, 135, 137], "shift": 225, "shorttext": 282, "shut": 177, "shutdown": 157, "sign": 225, "similar": [11, 224, 225, 251], "simpl": [134, 135, 156, 231, 232, 233, 234, 235, 237, 257, 258, 259, 272, 274, 275], "sinc": 173, "size": 298, "slice": 156, "small": 111, "snippet": 205, "snippet_html": 206, "socket": 302, "softwar": [6, 8, 18, 27], "solut": 303, "some": 45, "sort": [306, 308, 315], "sort_hash_t": 122, "sort_kei": [132, 134, 135, 156], "sortbi": [135, 156], "sourc": [24, 25, 27, 28, 30, 31, 32, 33, 111, 112, 142, 155], "space": 45, "specif": [142, 177, 297, 310, 311], "specifi": [94, 188, 282, 308], "sphere": 188, "sphinx": 17, "stage": [132, 134, 135, 156], "standalon": 175, "start": 296, "statu": [45, 158, 179, 298], "stop": [45, 296], "storag": 0, "store": [0, 87, 161], "string": [138, 165, 168, 225, 305], "string_length": 207, "string_slic": 208, "string_substr": 209, "style": 156, "sub_filt": 210, "submit": [18, 19], "subtract": 225, "succeeded_or_not": [115, 117, 126, 128], "success": 95, "suffix": [11, 224, 225, 313], "suggest": [159, 179, 180, 181, 249, 252, 253], "summari": [43, 44, 58, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 90, 91, 94, 95, 96, 97, 98, 99, 100, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 173, 175, 177, 178, 180, 181, 183, 184, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 227, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 243, 244, 245, 246, 247, 248, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 284, 285, 286, 287, 288, 290], "support": [43, 45, 46, 94, 239], "synopsi": 181, "synopsti": 179, "syntax": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 177, 178, 180, 183, 184, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 224, 225, 230, 231, 232, 233, 234, 235, 236, 237, 244, 246, 247, 257, 258, 259, 260, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 284, 285, 286, 287, 288, 315], "t": [45, 282], "tabl": [34, 110, 111, 112, 114, 122, 123, 125, 137, 141, 142, 155, 156, 161, 163, 165, 181, 254, 282, 308, 310, 311], "table_copi": 160, "table_cr": 161, "table_dat_kei": 254, "table_hash_kei": [45, 254], "table_id": 141, "table_key_max_total_s": 141, "table_key_total_s": 141, "table_key_typ": 141, "table_list": 162, "table_n_record": 141, "table_nam": 141, "table_no_kei": 254, "table_pat_kei": [45, 46, 254], "table_remov": 163, "table_renam": 164, "table_token": 165, "table_type_id": 141, "table_type_nam": 141, "table_value_typ": 141, "tag": [161, 307, 311], "target": [111, 163, 173, 198, 208, 209, 221, 237], "target_class": 274, "target_nam": [124, 126, 127, 128, 149, 150, 152, 170], "target_valu": 196, "temporari": 254, "term": 225, "termin": 298, "test": 134, "text": [0, 111, 193, 197, 224, 282, 308, 309, 310, 315], "than": [224, 225], "thank": [39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "thi": [101, 102, 103, 104, 105, 106], "thread_dump": 166, "thread_limit": 167, "threshold": 31, "threshold_n": 186, "time": [56, 225, 282, 305, 311], "time_classify_dai": 211, "time_classify_day_of_week": 212, "time_classify_hour": 213, "time_classify_minut": 214, "time_classify_month": 215, "time_classify_second": 216, "time_classify_week": 217, "time_classify_year": 218, "time_stamp": 228, "timeout": 99, "to_nam": [110, 160], "to_tabl": 110, "token": [0, 155, 168, 256, 263], "token_filt": [142, 155, 161, 168], "token_id": 123, "token_valu": 123, "tokenbigram": 264, "tokenbigramignoreblank": 265, "tokenbigramignoreblanksplitsymbol": 266, "tokenbigramignoreblanksplitsymbolalpha": 267, "tokenbigramignoreblanksplitsymbolalphadigit": 268, "tokenbigramsplitsymbol": 269, "tokenbigramsplitsymbolalpha": 270, "tokenbigramsplitsymbolalphadigit": 271, "tokendelimit": 272, "tokendelimitnul": 273, "tokenfilternfkc": [45, 257], "tokenfilternfkc100": 258, "tokenfilternfkc150": 259, "tokenfilterstem": 260, "tokenfilterstopword": 261, "tokenizer_list": 169, "tokenmecab": [231, 235, 274], "tokenngram": 275, "tokenpattern": 276, "tokenregexp": 277, "tokent": 278, "tokentrigram": 279, "tokenunigram": 280, "tokyogeopoint": 282, "toler": 156, "tool": [31, 177, 312], "topic": 15, "total": 156, "trace": 96, "tracker": 19, "transfer": 312, "translat": [17, 18], "travi": 21, "trie": 313, "troubleshoot": 300, "true": [191, 193], "truncat": [170, 173], "tsv": [95, 243], "tune": 281, "tutori": 304, "twitter": 2, "twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240": 10, "twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b": 12, "twitter\u7de8": 10, "type": [46, 111, 112, 132, 134, 135, 141, 142, 155, 156, 180, 282, 305, 311], "type_id": 141, "type_id_of_typ": 141, "type_nam": 141, "type_name_of_typ": 141, "type_s": 141, "typo": 156, "ubuntu": 32, "ubuntu\u5411\u3051\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u78ba\u8a8d": 12, "ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": 12, "ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u516c\u958b\u306e\u53d6\u308a\u6d88\u3057": 12, "uint16": 282, "uint32": 282, "uint64": 282, "uint8": 282, "unicod": 237, "unicode_vers": 237, "unify_alphabet": 275, "unify_digit": 275, "unify_hyphen": [231, 232, 233, 234, 235, 258, 259], "unify_hyphen_and_prolonged_sound_mark": [231, 232, 233, 234, 235, 258, 259], "unify_kana": [231, 232, 233, 234, 235, 258, 259], "unify_kana_cas": [231, 232, 233, 234, 235, 258, 259], "unify_kana_hyphen": [231, 232, 233, 234, 235], "unify_kana_prolonged_sound_mark": [231, 232, 233, 234, 235], "unify_kana_voiced_sound_mark": [231, 232, 233, 234, 235, 258, 259], "unify_katakana_bu_sound": [231, 232, 233, 234, 235, 258, 259], "unify_katakana_di_sound": [231, 232, 233, 234, 235], "unify_katakana_du_small_sound": [231, 232, 233, 234, 235], "unify_katakana_du_sound": [231, 232, 233, 234, 235], "unify_katakana_gu_small_sound": [231, 232, 233, 234, 235], "unify_katakana_trailing_o": [231, 232, 233, 234, 235], "unify_katakana_v_sound": [231, 232, 233, 234, 235, 258, 259], "unify_katakana_wo_sound": [231, 232, 233, 234, 235], "unify_katakana_zu_small_sound": [231, 232, 233, 234, 235], "unify_latin_alphabet_with": [231, 235], "unify_middle_dot": [45, 231, 232, 233, 234, 235, 258, 259], "unify_prolonged_sound_mark": [231, 232, 233, 234, 235, 258, 259], "unify_symbol": 275, "unify_to_katakana": [231, 235], "unify_to_romaji": [231, 232, 233, 234, 235, 258, 259], "unix": [7, 27], "unremov": [137, 163], "unsign": 225, "up": 177, "updat": [0, 17, 250], "upgrad": 292, "us": [45, 94, 137, 163, 180, 188, 226, 231, 235, 250, 251, 253, 292, 311, 315], "usag": [58, 88, 90, 91, 96, 97, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 177, 178, 180, 181, 183, 184, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 230, 231, 232, 233, 234, 235, 236, 237, 240, 241, 243, 244, 245, 246, 247, 257, 258, 259, 260, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 284, 285, 286, 287, 288], "use_html_escap": 192, "use_range_index": 134, "use_read": 274, "user": [180, 311], "v1": 11, "v2": 11, "valu": [94, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 180, 183, 184, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 246, 247, 284, 285, 286, 287, 288, 311], "value_typ": 161, "var": 142, "variabl": 94, "variou": [305, 315], "vector": [45, 91, 111, 219, 305], "vector_column_value_weight": 141, "vector_column_value_weight_bfloat16": 141, "vector_column_value_weight_float32": 141, "vector_find": 219, "vector_new": 220, "vector_s": 221, "vector_slic": 222, "vendor": 45, "version": [12, 93, 231, 237, 292], "version\u30d1\u30e9\u30e1\u30fc\u30bf": 93, "view": 308, "vm": 281, "wal": 45, "web": 18, "weight": [45, 91, 111, 310], "wgs84geopoint": 282, "who": 311, "width": 205, "window": [8, 27, 33, 132, 134, 135, 156, 283], "window_count": 285, "window_rank": 286, "window_record_numb": 287, "window_sum": 288, "windows\u306emsys2\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": 12, "without": 292, "work": [17, 250, 251, 253], "worker": 94, "worker_process": 177, "wrong": 45, "x": 39, "xml": 95, "xor": 225, "your": [17, 18], "zip": 33, "zlib": 31, "\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b": 10, "\u306e\u5b9f\u884c": 12, "\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044": 10, "\u30aa\u30d7\u30b7\u30e7\u30f3": [174, 176], "\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831": 14, "\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b": 11, "\u30af\u30a8\u30ea\u306e\u5b9f\u73fe": 11, "\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": 11, "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5": 93, "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb": 176, "\u30b5\u30f3\u30d7\u30eb": [174, 176], "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb": 176, "\u30bf\u30b9\u30af": 12, "\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c": 14, "\u30c6\u30b9\u30c8\u65b9\u6cd5": 14, "\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9": 14, "\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c": 14, "\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0": 176, "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b": 301, "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u66f4\u65b0": 12, "\u30d0\u30fc\u30b8\u30e7\u30f30\u7cfb\u306e\u304a\u77e5\u3089\u305b": 36, "\u30d0\u30fc\u30b8\u30e7\u30f31": [37, 38], "\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051": 93, "\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099": 12, "\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b": 282, "\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa": 14, "\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd": 10, "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210": 12, "\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210": 12, "\u30ea\u30ea\u30fc\u30b9\u624b\u9806": 12, "\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9": 14, "\u4e8b\u524d\u78ba\u8a8d": 12, "\u4f7f\u3044\u65b9": 176, "\u4f8b": [185, 189, 190, 199, 204, 301], "\u4f8b\u3048\u3070redmin": 10, "\u4fee\u6b63": [36, 37, 38, 39], "\u5236\u9650\u4e8b\u9805": 176, "\u524d\u63d0\u6761\u4ef6": 12, "\u539f\u56e0": 301, "\u5404\u7a2e\u30c6\u30b9\u30c8\u306e\u78ba\u8a8d": 12, "\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b": 301, "\u540d\u524d": [89, 174, 176, 185, 189, 190, 199, 204], "\u5909\u66f4": 37, "\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081": 12, "\u5b8c\u5168\u4e00\u81f4\u691c\u7d22": 299, "\u5b9f\u9a13\u7684": 39, "\u5bfe\u5fdc": 10, "\u5bfe\u7b56\u65b9\u6cd51": 301, "\u5bfe\u7b56\u65b9\u6cd52": 301, "\u5f15\u6570": [174, 176, 185, 189, 190, 204], "\u611f\u8b1d": [36, 37, 38, 39], "\u6539\u826f": [36, 37, 38, 39], "\u66f8\u5f0f": [174, 176, 185, 189, 190, 199, 204], "\u6700\u521d\u306e1\u56de\u3060\u3051\u884c\u3046\u624b\u9806": 12, "\u691c\u7d22": 299, "\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051": 299, "\u691c\u7d22\u306e\u6319\u52d5": 299, "\u691c\u7d22\u4f8b1": 11, "\u691c\u7d22\u4f8b2": 11, "\u691c\u7d22\u4f8b3": 11, "\u691c\u7d22\u4f8b4": 11, "\u6982\u8981": 93, "\u69d8\u3005\u306a\u30c6\u30b9\u30c8": 14, "\u6bce\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u3067\u884c\u3046\u624b\u9806": 12, "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b": 14, "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b": 14, "\u7279\u6b8a\u547d\u4ee4": 176, "\u7406\u7531": 10, "\u88dc\u8db3": 12, "\u8aac\u660e": [89, 174, 176, 185, 189, 190, 199, 204], "\u8fd4\u5024": [185, 189, 190, 199, 204], "\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": 9, "\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f": 10, "\u90e8\u5206\u4e00\u81f4\u691c\u7d22": 299, "\u95a2\u4fc2\u5f0f": 11, "\u95be\u5024\u3092\u3042\u3052\u308b": 301, "\u9759\u7684\u89e3\u6790": 14, "\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22": 299}})
\ No newline at end of file
diff --git a/dev/ja/docs/contribution.html b/dev/ja/docs/contribution.html
index e12f5b8b4d..1f99247b39 100644
--- a/dev/ja/docs/contribution.html
+++ b/dev/ja/docs/contribution.html
@@ -502,7 +502,7 @@ 12. Groongaへのコントリビュー
- 12.3.7. リリース手順
- 12.3.8. テスト方法
diff --git a/dev/ja/docs/contribution/development/release.html b/dev/ja/docs/contribution/development/release.html
index a7e6bfcfd9..7bc3bd5826 100644
--- a/dev/ja/docs/contribution/development/release.html
+++ b/dev/ja/docs/contribution/development/release.html
@@ -447,10 +447,7 @@ 12.3.7.1. 前提条件
@@ -463,59 +460,25 @@ 12.3.7.2.1. ビルド環境の準備$ sudo apt-get install -V debootstrap createrepo rpm mercurial python-docutils python-jinja2 ruby-full mingw-w64 g++-mingw-w64 mecab libmecab-dev nsis gnupg2 dh-autoreconf bison
-また、Sphinxは常に最新のバージョンを使う事を推奨します。 pip3
を使用して最新のSphinxをインストールするようにして下さい。
-$ pip3 install --upgrade sphinx
-
-
また、rubyのrakeパッケージを以下のコマンドによりインストールします。
$ sudo gem install rake
-
-12.3.7.2.2. パッケージ署名用秘密鍵のインポート#
-リリース作業ではRPMパッケージに対する署名を行います。
-その際、パッケージ署名用の鍵が必要です。
-Groongaプロジェクトでは署名用の鍵をリリース担当者の公開鍵で暗号化してリポジトリのpackages/ディレクトリ以下へと登録しています。新しいリリース担当者に任命されたばかりで、まだ自分用に暗号化された鍵が無い場合には、他のリリース担当者に依頼して署名用の鍵を暗号化してもらって下さい。
-リリース担当者はリポジトリに登録された秘密鍵を復号した後に鍵のインポートを以下のコマンドにて行います。
-$ cd packages
-$ gpg --decrypt release-key-secret.asc.gpg.(担当者) > (復号した鍵ファイル)
-$ gpg --import (復号した鍵ファイル)
-
-
-鍵のインポートが正常終了すると gpg --list-keys でGroongaの署名用の鍵を確認することができます。
-$ gpg --list-keys
-pub 1024R/F10399C0 2012-04-24
-uid groonga Key (groonga Official Signing Key)
-<packages@groonga.org>
-sub 1024R/BC009774 2012-04-24
-
-
-鍵をインポートしただけでは使用することができないため、インポートした鍵に対してtrust,signを行う必要があります。
-以下のコマンドを実行して署名を行います。(途中の選択肢は省略)
-$ gpg --edit-key packages@groonga.org
-gpg> trust
-gpg> sign
-gpg> save
-gpg> quit
-
-
-この作業は、新規にリリースを行うことになった担当者やパッケージに署名する鍵に変更があった場合などに行います。
-
-12.3.7.2.3. PPA用の鍵の登録#
+12.3.7.2.2. PPA用の鍵の登録#
この作業は、新規にリリースを行うことになった担当者のみ行います。
[Launchpad](https://launchpad.net/)にアカウントを作成し、自分の普段使いの公開鍵を登録した上で、他のリリース担当者に依頼して[Groongaチーム](https://launchpad.net/~groonga)に追加してもらって下さい。
-
-12.3.7.2.4. リリース作業用ディレクトリの作成#
+
+12.3.7.2.3. リリース作業用ディレクトリの作成#
Groongaのリリース作業ではリリース専用の環境下(コンパイルフラグ)でビルドする必要があります。
リリース時と開発時でディレクトリを分けずに作業することもできますが、誤ったコンパイルフラグでリリースしてしまう危険があります。
そのため、以降の説明では$GROONGA_DIR以下のディレクトリにリリース用の作業ディレクトリ(groonga.clean)としてソースコードをcloneしたものとして説明します。
-
-12.3.7.3. 毎回のリリースで行う手順#
+
+12.3.7.3. 毎回のリリースで行う手順#
12.3.7.3.1. Groongaのソースコード取得#
リリース用のクリーンな状態でソースコードを取得するために$GROONGA_DIRにて以下のコマンドを実行します。
@@ -524,34 +487,30 @@ 12.3.7.3.1. Groongaのソースコード
この作業はリリース作業ごとに行います。
-
-12.3.7.3.2. Groongaのウェブサイトの取得#
+
+12.3.7.3.2. Groongaのウェブサイトの取得#
GroongaのウェブサイトのソースはGroonga同様にGitHubにリポジトリを置いています。
-リリース作業では後述するコマンド(make update-latest-release)にてトップページのバージョンを置き換えることができるようになっています。
-Groongaのウェブサイトのソースコードを$GROONGA_ORG_PATHとして取得するためには、$GROONGA_DIRにて以下のコマンドを実行します。
-$ git clone git@github.com:groonga/groonga.org.git
+リリース作業では後述するコマンド( rake release:version:update
)でタグをプッシュしてCIが動き出すトリガーとします。
+$ git clone git@github.com:groonga/groonga.org.git ${GROONGA_ORG_PATH}
これで、$GROONGA_ORG_PATHにgroonga.orgのソースを取得できます。
-
-12.3.7.3.3. CMakeの実行#
-$ mkdir -p build-dir/groonga
-$ cmake -S $GROONGA_CLONE_DIR -B build-dir/groonga --preset=doc --fresh -DCMAKE_INSTALL_PREFIX="/tmp/local"
-$ cmake --build build-dir/groonga
-
-
-また、あらかじめpackagesユーザでpackages.groonga.orgにsshログインできることを確認しておいてください。
-ログイン可能であるかの確認は以下のようにコマンドを実行して行います。
-$ ssh packages@packages.groonga.org
+
+12.3.7.3.3. Apache Arrowリポジトリの取得#
+Apache Arrowのソースも取得します。Apache ArrowのRakeタスクを利用するためです。
+$ git clone https://github.com/apache/arrow.git ${APACHE_ARROW_REPOSITORY}
+
+
+12.3.7.3.4. 事前確認#
Ubuntu向けパッケージをテスト用に公開する時は、 Ubuntu向けパッケージのビルド確認 の手順で不安定版のリポジトリにアップロードするように指定します。
新任のリリース担当者は必ず、この方法でPPAのリポジトリにパッケージをアップロードできる事を確認しておいてください。
PPAのリポジトリは、同名のパッケージを上書いてアップロードできないので、不安定版のリポジトリでビルドできることを確認してから、安定版のリポジトリへアップロードするようにしてください。
-12.3.7.3.4. 変更点のまとめ#
+12.3.7.3.5. 変更点のまとめ#
前回リリース時からの変更点を $GROONGA_CLONE_DIR/doc/source/news/*.md
(英語)にまとめます。
ここでまとめた内容についてはリリースアナウンスにも使用します。
前回リリースからの変更履歴を参照するには以下のコマンドを実行します。
@@ -569,18 +528,44 @@ 12.3.7.3.4. 変更点のまとめ内部的な変更(変数名の変更やらリファクタリング)
-
-12.3.7.3.5. rake release:version:updateの実行#
-rake release:version:update
コマンドでは、 OLD_RELEASE
に前回のバージョンを、 GROONGA_ORG_DIR
にGroongaのWebサイトのディレクトリーを、 NEW_RELEASE_DATE
に次回リリースの日付(未来の日付)を指定します。
-$ cd $GROONGA_CLONE_DIR
-$ rake release:version:update OLD_RELEASE=14.0.9 GROONGA_ORG_DIR=../groonga.org OLD_RELEASE_DATE=2024-09-27 NEW_RELEASE_DATE=2024-11-05
+
+12.3.7.3.6. rake release
の実行#
+rake release
コマンドでは、 NEW_RELEASE_DATE
にリリースの日付(≒ 実行日)を指定します。
+$ cd ${GROONGA_CLONE_DIR}
+$ rake release NEW_RELEASE_DATE=$(date +%Y-%m-%d)
-これにより、clone済みのGroongaのWebサイトのトップページのソース(index.html,ja/index.html)やRPMパッケージのspecファイルのバージョン表記などが更新されます。
+release
タスクは次の3つのタスクを実行します。
+
+release:version:update
+
+RPMパッケージのspecファイルに新しいバージョンのチェンジログを追記したりなどします。
+
+
+release:tag
+
+リリース用のタグを打ちます。
+これによりタグがプッシュされ自動リリースが動き出します。
+
+
+dev:version:bump
+
+次のリリースに向けてバージョンを更新します。
+
+
+
+
+12.3.7.3.6.1. 補足: dev:version:bump
タスク#
+rake dev:version:bump NEW_VERSION=x.x.x
のようにバージョンを指定して更新できます。
+
+注釈
+base_versionはtar.gzなどのリリース用のファイル名で使用します。
+
+
-12.3.7.3.6. Ubuntu向けパッケージのビルド確認#
-Ubuntu向けのパッケージは、LaunchPadでビルドしています。
+
12.3.7.3.7. Ubuntu向けパッケージのビルド確認#
+Ubuntu向けのパッケージは、Launchpadでビルドしています。
リリース前にUbuntu向けパッケージが正常にビルドできるか以下の手順で確認します。
rake release:version:update
の結果をリポジトリーにpush後にGitHub Actionsで生成されるソースアーカイブをダウンロードします。
ダウンロードしたソースアーカイブを $GROONGA_CLONE_DIR
のトップに配置します。その後、以下のコマンドを実行してください。
@@ -590,61 +575,17 @@ 12.3.7.3.5. rake release:version:update
-12.3.7.3.7. 各種テストの確認#
+12.3.7.3.8. 各種テストの確認#
リリース用のタグを設定する前に、以下のテストが全てパスしているかを確認します。
タグを設定してから問題が発覚すると、再度リリースすることになってしまうので、タグを設定する前に問題がないか確認します。
テストやパッケージの作成に失敗していたら、原因を特定して修正します。
-12.3.7.3.8. リリースタグの設定#
-リリース用のタグを打つには以下のコマンドを実行します。
-$ rake release:tag
-
-
-
-
-12.3.7.3.9. リリース用アーカイブファイルの作成とアップロード#
-Groongaのリリース用アーカイブファイルは、MroongaやPGroonga、Rroonga等関連プロダクトのリリースにも使用します。
-生成でき次第アップロードしておくと、関連プロダクトのリリース作業がしやすくなります。
-タグを設定すると、GitHub Actionsで自動生成されます。
-GitHub Actionsでソースアーカイブが自動生成されたのを確認したら以下の手順でアップロードします。
-$ cd packages
-$ rake source GITHUB_ACCESS_TOKEN=...
-
-
-これにより、GitHub Actionsで生成したソースアーカイブを $GROONGA_CLONE_DIR/groonga-(バージョン).tar.gz
-にダウンロードし packages.groonga.org へアップロードします。
-
-
-12.3.7.3.10. パッケージのビルドとアップロード#
-パッケージングは以下の3種類を対象に行います。
-Ubuntu以外のOS向けのパッケージは全てGitHub Actionsで生成されます。
-
-Debian系(.deb)
-Red Hat系(.rpm)
-Windows系(.exe,.zip)
-
-
-
-12.3.7.3.11. Debian系パッケージのビルドとアップロード#
-タグを設定すると、GitHub Actionsで自動生成されます。
-GitHub Actionsでパッケージが自動生成されたのを確認したら以下の手順で、packages.groonga.orgへアップロードします。
-$ cd packages
-$ rake apt
-
-
-この段階では、ビルドしたパッケージは未署名なので、$PACKAGES_GROONGA_ORG_REPOSITORYに移動し、以下のコマンドを実行します。
-$ rake apt
-
-
-上記のコマンドを実行することで、リポジトリーの同期、パッケージの署名、リポジトリーの更新、アップロードまで実行できます。
-
-
-12.3.7.3.12. Ubuntu用パッケージのアップロード#
+12.3.7.3.9. Ubuntu用パッケージのアップロード#
Ubuntu向けパッケージの作成には、作業マシン上にGroongaのビルドに必要な依存ソフトウェア一式がインストールされている必要があります。以下のようにしてインストールしておいて下さい。
$ sudo apt build-dep groonga
@@ -658,38 +599,14 @@ 12.3.7.3.12. Ubuntu用パッケージの
-
-12.3.7.3.12.1. Ubuntu用パッケージの公開の取り消し#
+
+12.3.7.3.9.1. Ubuntu用パッケージの公開の取り消し#
LaunchpadのGroongaチームのページで対象のPPAを選択し、バージョン一覧の上にある「View package details」リンクの先で「Delete packages」リンクを辿ると、アップロード済みパッケージを削除できます。
例;[不安定版リポジトリのパッケージの削除用のページ](https://launchpad.net/~groonga/+archive/ubuntu/nightly/+delete-packages)。
-
-12.3.7.3.13. Red Hat系パッケージのビルドとアップロード#
-タグを設定すると、GitHub Actionsで自動生成されます。
-GitHub Actionsでパッケージが自動生成されたのを確認したら以下の手順で、packages.groonga.orgへアップロードします。
-$ cd packages
-$ rake yum
-
-
-この段階では、ビルドしたパッケージはまだ未署名なので、$PACKAGES_GROONGA_ORG_REPOSITORYに移動し、以下のコマンドを実行します。
-$ rake yum
-
-
-上記のコマンドを実行することで、リポジトリーの同期、パッケージの署名、リポジトリーの更新、アップロードまで実行できます。
-
-
-12.3.7.3.14. Windows用パッケージのビルドとアップロード#
-タグを設定すると、GitHub Actionsで自動生成されます。
-GitHub Actionsでパッケージが自動生成されたのを確認したら以下の手順で、packages.groonga.orgからGitHub Actionsへのリンクを作成します。
-$ cd packages
-$ rake windows
-
-
-packages.groonga.org上にWindows版の最新パッケージへリダイレクトする .htaccess
が作成されます。
-
-12.3.7.3.15. WindowsのMSYS2用パッケージのアップロード#
+12.3.7.3.10. WindowsのMSYS2用パッケージのアップロード#
MINGW-packages の、 mingw-w64-groonga/PKGBUILD
を最新にして、プルリクエストを作成します。
MINGW-packagesはforkして自分のリポジトリを作成しておきます。
また、forkしたリポジトリのGitHub Actionsを有効にしておきます。
@@ -727,8 +644,16 @@ 12.3.7.3.15. WindowsのMSYS2用パッケ
プルリクエストがマージされると、MSYS2用のパッケージがリリースされます。
+
+12.3.7.3.11. ドキュメントの更新#
+groonga.org
リポジトリにて次のタスクを実行します。そうすることでタグがプッシュされCIにてドキュメントが更新されます。
+$ cd ${GROONGA_ORG_PATH}
+$ rake release:version:update
+
+
+
-12.3.7.3.16. Dockerイメージの更新#
+12.3.7.3.12. Dockerイメージの更新#
Docker Hub のGroongaのDockerイメージを更新します。
GroongaのDockerリポジトリー をクローンし、リポジトリーの中のDockerfileを更新します。
以下は、Groongaのバージョンが 12.0.9
の場合の例です。作業時には最新のバージョンを指定してください。
@@ -746,8 +671,8 @@ 12.3.7.3.16. Dockerイメージの更新
pushすると、 GroongaのDockerリポジトリーのGithub Actions が Docker HubのGroonga のDockerイメージを自動で更新します。
-
-12.3.7.3.17. リリースアナウンスの作成#
+
+12.3.7.3.13. リリースアナウンスの作成#
リリースの際にはリリースアナウンスを流して、Groongaを広く通知します。
news.rstに変更点をまとめましたが、それを元にリリースアナウンスを作成します。
リリースアナウンスには以下を含めます。
@@ -778,55 +703,8 @@ 12.3.7.3.17. リリースアナウンス
後述しますが、Twitter等でのリリースアナウンスの際はここで用意したアナウンス文の要約を使用します。
-
-12.3.7.3.18. BloGroonga(ブログ)の更新#
-https://groonga.org/blog/ および https://groonga.org/blog/ にて公開されているリリース案内を作成します。
-基本的にはリリースアナウンスの内容をそのまま記載します。
-cloneしたWebサイトのソースに対して以下のファイルを新規追加します。
-
-groonga.org/en/_post/(リリース日)-release.md
-groonga.org/ja/_post/(リリース日)-release.md
-
-編集した内容をpushする前に確認したい場合にはJekyllおよびRedCloth(Textileパーサー)、RDiscount(Markdownパーサー)、JavaScript interpreter(therubyracer、Node.jsなど)が必要です。
-インストールするには以下のコマンドを実行します。
-$ sudo gem install jekyll jekyll-paginate RedCloth rdiscount therubyracer
-
-
-jekyllのインストールを行ったら、以下のコマンドでローカルにwebサーバを起動します。
-$ jekyll serve --watch
-
-
-あとはブラウザにてhttp://localhost:4000にアクセスして内容に問題がないかを確認します。
-
-注釈
-記事を非公開の状態でアップロードするには.mdファイルのpublished:をfalseに設定します。
----
-layout: post.en
-title: Groonga 2.0.5 has been released
-published: false
----
-
-
-
-
-
-12.3.7.3.19. ドキュメントのアップロード#
-doc/source以下のドキュメントを更新、翻訳まで完了している状態で、ドキュメントのアップロード作業を行います。
-そのためにはまず groonga
のリポジトリをカレントディレクトリにして以下のコマンドを実行します。
-$ cmake -S . -B ../groonga.doc --preset=doc --fresh
-$ rake release:document:update BUILD_DIR=../groonga.doc GROONGA_ORG_DIR=../groonga.org
-
-
-これで、 groonga.org
の docs/
と ja/docs
以下に更新したドキュメントがコピーされます。
-生成されているドキュメントに問題のないことを確認できたら、コミット、pushして groonga.org
へと反映します。
-また、 groonga.org
リポジトリの _config.yml
に最新リリースのバージョン番号と日付を表す情報の指定があるので、これらも更新します。
-groonga_version: x.x.x
-groonga_release_date: xxxx-xx-xx
-
-
-
-12.3.7.3.20. Homebrewの更新#
+12.3.7.3.14. Homebrewの更新#
この手順は省略可能です(Homebrewの更新はGroongaプロジェクト本体のリリース要件には含まれません)。
OS Xでのパッケージ管理方法として Homebrew があります。
Groongaを簡単にインストールできるようにするために、Homebrewへpull requestを送ります。
@@ -840,53 +718,21 @@ 12.3.7.3.20. Homebrewの更新
-12.3.7.3.21. リリースアナウンス#
-作成したリリースアナウンスをメーリングリストへと流します。
-
-groonga-dev groonga-dev@lists.osdn.me
-Groonga-talk groonga-talk@lists.sourceforge.net
-
-
-12.3.7.3.22. Twitterでリリースアナウンスをする#
+12.3.7.3.15. Twitterでリリースアナウンスをする#
BloGroongaのリリースエントリには「リンクをあなたのフォロワーに共有する」ためのツイートボタンがあるので、そのボタンを使ってリリースアナウンスします。(画面下部に配置されている)
このボタンを経由する場合、ツイート内容に自動的にリリースタイトル(「groonga 2.0.8リリース」など)とBloGroongaのリリースエントリのURLが挿入されます。
この作業はBloGroongaの英語版、日本語版それぞれで行います。
あらかじめgroongaアカウントでログインしておくとアナウンスを円滑に行うことができます。
-12.3.7.3.23. Facebookでリリースアナウンスをする#
+12.3.7.3.16. Facebookでリリースアナウンスをする#
FacebookにGroongaグループがあります。
https://www.facebook.com/groonga/
Groongaグループのメンバーになると、個人のアカウントではなく、Groongaグループのメンバーとして投稿できます。
ブログエントリなどをもとに、リリースアナウンスを投稿します。
以上でリリース作業は終了です。
-
-12.3.7.3.24. リリース後にやること#
-リリースアナウンスを流し終えたら、次期バージョンの開発が始まります。
-
-Groonga のbase_versionの更新
-
-
-12.3.7.3.24.1. Groonga バージョン更新#
-$GROONGA_CLONE_DIRにて以下のコマンドを実行します。
-$ rake dev:version:bump NEW_VERSION=x.x.x
-
-
-これにより$GROONGA_CLONE_DIR/base_versionが更新されるのでコミットしておきます。
-
-注釈
-base_versionはtar.gzなどのリリース用のファイル名で使用します。
-
-
-
-12.3.7.3.24.2. パッケージの署名用のパスフレーズを知りたい#
-パッケージの署名に必要な秘密鍵のパスフレーズについては
-リリース担当者向けの秘密鍵を復号したテキストの1行目に記載してあります。
-
-
@@ -940,43 +786,33 @@ 12.3.7.3.24.2. パッケージの署名
- 12.3.7.1. 前提条件
- 12.3.7.2. 最初の1回だけ行う手順
-- 12.3.7.3. 毎回のリリースで行う手順
+- 12.3.7.3. 毎回のリリースで行う手順
- 12.3.7.3.1. Groongaのソースコード取得
-- 12.3.7.3.2. Groongaのウェブサイトの取得
-- 12.3.7.3.3. CMakeの実行
-- 12.3.7.3.4. 変更点のまとめ
-- 12.3.7.3.5. rake release:version:updateの実行
-- 12.3.7.3.6. Ubuntu向けパッケージのビルド確認
-- 12.3.7.3.7. 各種テストの確認
-- 12.3.7.3.8. リリースタグの設定
-- 12.3.7.3.9. リリース用アーカイブファイルの作成とアップロード
-- 12.3.7.3.10. パッケージのビルドとアップロード
-- 12.3.7.3.11. Debian系パッケージのビルドとアップロード
-- 12.3.7.3.12. Ubuntu用パッケージのアップロード
-- 12.3.7.3.12.1. Ubuntu用パッケージの公開の取り消し
+- 12.3.7.3.2. Groongaのウェブサイトの取得
+- 12.3.7.3.3. Apache Arrowリポジトリの取得
+- 12.3.7.3.4. 事前確認
+- 12.3.7.3.5. 変更点のまとめ
+- 12.3.7.3.6.
rake release
の実行
-- 12.3.7.3.13. Red Hat系パッケージのビルドとアップロード
-- 12.3.7.3.14. Windows用パッケージのビルドとアップロード
-- 12.3.7.3.15. WindowsのMSYS2用パッケージのアップロード
-- 12.3.7.3.16. Dockerイメージの更新
-- 12.3.7.3.17. リリースアナウンスの作成
-- 12.3.7.3.18. BloGroonga(ブログ)の更新
-- 12.3.7.3.19. ドキュメントのアップロード
-- 12.3.7.3.20. Homebrewの更新
-- 12.3.7.3.21. リリースアナウンス
-- 12.3.7.3.22. Twitterでリリースアナウンスをする
-- 12.3.7.3.23. Facebookでリリースアナウンスをする
-- 12.3.7.3.24. リリース後にやること
-- 12.3.7.3.24.1. Groonga バージョン更新
-- 12.3.7.3.24.2. パッケージの署名用のパスフレーズを知りたい
+- 12.3.7.3.7. Ubuntu向けパッケージのビルド確認
+- 12.3.7.3.8. 各種テストの確認
+- 12.3.7.3.9. Ubuntu用パッケージのアップロード
+- 12.3.7.3.10. WindowsのMSYS2用パッケージのアップロード
+- 12.3.7.3.11. ドキュメントの更新
+- 12.3.7.3.12. Dockerイメージの更新
+- 12.3.7.3.13. リリースアナウンスの作成
+- 12.3.7.3.14. Homebrewの更新
+- 12.3.7.3.15. Twitterでリリースアナウンスをする
+- 12.3.7.3.16. Facebookでリリースアナウンスをする
diff --git a/dev/ja/docs/install/ubuntu.html b/dev/ja/docs/install/ubuntu.html
index 7270fd72b4..c44aaba324 100644
--- a/dev/ja/docs/install/ubuntu.html
+++ b/dev/ja/docs/install/ubuntu.html
@@ -425,9 +425,8 @@ 2.4.1. PPA(Personal Package Archive)
Ubuntu用のGroongaのAPTリポジトリーはLaunchpad上のPPA(Personal Package Archive)を使っています。このPPAからAPTでGroongaをインストールできます。
サポートしているUbuntuのバージョンは次の通りです。
-20.04 LTS Focal Fossa
22.04 LTS Jammy Jellyfish
-23.04 Lunar Lobster
+24.04 LTS Noble Numbat
Groongaをインストールするためにuniverseリポジトリを有効にしてください。
sudo apt -V -y install software-properties-common
diff --git a/dev/ja/docs/searchindex.js b/dev/ja/docs/searchindex.js
index b2775f683b..c98d5e5154 100644
--- a/dev/ja/docs/searchindex.js
+++ b/dev/ja/docs/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"--enable-apache-arrow \u304a\u3088\u3073 --disable-apache-arrow": [[31, "enable-apache-arrow-and-disable-apache-arrow"]], "--force-lock-clear": [[173, "force-lock-clear"]], "--force-truncate": [[173, "force-truncate"]], "--help": [[31, "help"]], "--localstatedir=PATH": [[31, "localstatedir-path"]], "--log-flags": [[173, "log-flags"], [173, "id3"]], "--log-level": [[173, "log-level"], [173, "id1"]], "--log-path": [[173, "log-path"], [173, "id2"]], "--prefix=PATH": [[31, "prefix-path"]], "--since": [[173, "since"]], "--target": [[173, "target"]], "--with-default-encoding=ENCODING": [[31, "with-default-encoding-encoding"]], "--with-log-path=PATH": [[31, "with-log-path-path"]], "--with-lz4": [[31, "with-lz4"]], "--with-match-escalation-threshold=NUMBER": [[31, "with-match-escalation-threshold-number"]], "--with-message-pack=MESSAGE_PACK_INSTALL_PREFIX": [[31, "with-message-pack-message-pack-install-prefix"]], "--with-munin-plugins": [[31, "with-munin-plugins"]], "--with-package-platform=PLATFORM": [[31, "with-package-platform-platform"]], "--with-zlib": [[31, "with-zlib"]], "-13: GRN_NOT_ENOUGH_SPACE": [[104, null]], "-22: GRN_INVALID_ARGUMENT": [[102, null]], "-2: GRN_OPERATION_NOT_PERMITTED": [[105, null]], "-34: GRN_RESOURCE_DEADLOCK_AVOIDED": [[106, null]], "-3: GRN_NO_SUCH_FILE_OR_DIRECTORY": [[103, null]], "-6: GRN_INPUT_OUTPUT_ERROR": [[101, null]], "-DCMAKE_INSTALL_PREFIX": [[27, "dcmake-install-prefix"]], "-DCMAKE_PREFIX_PATH=PATHS": [[27, "dcmake-prefix-path-paths"]], "-DGRN_WITH_APACHE_ARROW": [[27, "dgrn-with-apache-arrow"]], "-DGRN_WITH_MRUBY": [[27, "dgrn-with-mruby"]], "-G GENERATOR": [[27, "g-generator"]], ".edit \u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u306e\u4ed5\u65b9": [[17, "how-to-update-edit-files"]], ".edit \u30d5\u30a1\u30a4\u30eb\u306e\u7de8\u96c6\u306e\u4ed5\u65b9": [[17, "how-to-edit-edit"]], ".edit.po \u30d5\u30a1\u30a4\u30eb\u5185\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u7ffb\u8a33\u3059\u308b": [[18, "translate-the-documentation-in-edit-po-files"]], ".po \u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u306e\u4ed5\u65b9": [[17, "how-to-update-po-files"]], ".po \u30d5\u30a1\u30a4\u30eb\u306e\u9001\u308a\u65b9": [[17, "how-to-send-po-files"]], "0.7.6\u30ea\u30ea\u30fc\u30b9 - 2010-08-19": [[36, "id5"]], "0.7.7\u30ea\u30ea\u30fc\u30b9 - 2010-08-25": [[36, "id2"]], "1.0.0\u30ea\u30ea\u30fc\u30b9 - 2010-08-29": [[37, "id36"]], "1.0.1\u30ea\u30ea\u30fc\u30b9 - 2010-09-06": [[37, "id32"]], "1.0.2\u30ea\u30ea\u30fc\u30b9 - 2010-09-09": [[37, "id27"]], "1.0.3\u30ea\u30ea\u30fc\u30b9 - 2010-10-29": [[37, "id22"]], "1.0.4\u30ea\u30ea\u30fc\u30b9 - 2010-11-29": [[37, "id17"]], "1.0.5\u30ea\u30ea\u30fc\u30b9 - 2010-12-29": [[37, "id12"]], "1.0.6\u30ea\u30ea\u30fc\u30b9 - 2010-12-31": [[37, "id9"]], "1.0.7\u30ea\u30ea\u30fc\u30b9 - 2011-01-29": [[37, "id5"]], "1.0.8\u30ea\u30ea\u30fc\u30b9 - 2011-02-02": [[37, "id2"]], "1.1.0\u30ea\u30ea\u30fc\u30b9 - 2011-02-09": [[38, "id2"]], "1.2.0\u30ea\u30ea\u30fc\u30b9 - 2011-03-29": [[39, "id24"]], "1.2.1\u30ea\u30ea\u30fc\u30b9 - 2011-04-29": [[39, "id20"]], "1.2.2\u30ea\u30ea\u30fc\u30b9 - 2011-05-29": [[39, "release-1-2-2-2011-05-29"]], "1.2.3\u30ea\u30ea\u30fc\u30b9 - 2011-06-29": [[39, "release-1-2-3-2011-06-29"]], "1.2.4\u30ea\u30ea\u30fc\u30b9 - 2011-07-29": [[39, "release-1-2-4-2011-07-29"]], "1.2.5\u30ea\u30ea\u30fc\u30b9 - 2011-08-29": [[39, "release-1-2-5-2011-08-29"]], "1.2.6\u30ea\u30ea\u30fc\u30b9 - 2011-09-29": [[39, "release-1-2-6-2011-09-29"]], "1.2.7\u30ea\u30ea\u30fc\u30b9 - 2011-10-29": [[39, "release-1-2-7-2011-10-29"]], "1.2.8\u30ea\u30ea\u30fc\u30b9 - 2011-11-29": [[39, "release-1-2-8-2011-11-29"]], "1.2.9\u30ea\u30ea\u30fc\u30b9 - 2011-12-29": [[39, "release-1-2-9-2011-12-29"]], "1.3.0\u30ea\u30ea\u30fc\u30b9 - 2012-01-29": [[40, "release-1-3-0-2012-01-29"]], "10.0.0\u30ea\u30ea\u30fc\u30b9 - 2020-03-29": [[41, "release-10-0-0-2020-03-29"]], "10.0.1\u30ea\u30ea\u30fc\u30b9 - 2020-03-30": [[41, "release-10-0-1-2020-03-30"]], "10.0.2\u30ea\u30ea\u30fc\u30b9 - 2020-04-29": [[41, "release-10-0-2-2020-04-29"]], "10.0.3\u30ea\u30ea\u30fc\u30b9 - 2020-05-29": [[41, "release-10-0-3-2020-05-29"]], "10.0.4\u30ea\u30ea\u30fc\u30b9 - 2020-06-29": [[41, "release-10-0-4-2020-06-29"]], "10.0.5\u30ea\u30ea\u30fc\u30b9 - 2020-07-30": [[41, "release-10-0-5-2020-07-30"]], "10.0.6\u30ea\u30ea\u30fc\u30b9 - 2020-08-29": [[41, "release-10-0-6-2020-08-29"]], "10.0.7\u30ea\u30ea\u30fc\u30b9 - 2020-09-29": [[41, "release-10-0-7-2020-09-29"]], "10.0.8\u30ea\u30ea\u30fc\u30b9 - 2020-10-29": [[41, "release-10-0-8-2020-10-29"]], "10.0.9\u30ea\u30ea\u30fc\u30b9 - 2020-12-01": [[41, "release-10-0-9-2020-12-01"]], "10.1.0\u30ea\u30ea\u30fc\u30b9 - 2020-12-29": [[41, "release-10-1-0-2020-12-29"]], "10.1.1\u30ea\u30ea\u30fc\u30b9 - 2021-01-25": [[41, "release-10-1-1-2021-01-25"]], "11.0.0\u30ea\u30ea\u30fc\u30b9 - 2021-02-09": [[42, "release-11-0-0-2021-02-09"]], "11.0.1\u30ea\u30ea\u30fc\u30b9 - 2021-03-31": [[42, "release-11-0-1-2021-03-31"]], "11.0.2\u30ea\u30ea\u30fc\u30b9 - 2021-05-10": [[42, "release-11-0-2-2021-05-10"]], "11.0.3\u30ea\u30ea\u30fc\u30b9 - 2021-05-29": [[42, "release-11-0-3-2021-05-29"]], "11.0.4\u30ea\u30ea\u30fc\u30b9 - 2021-06-29": [[42, "release-11-0-4-2021-06-29"]], "11.0.5\u30ea\u30ea\u30fc\u30b9 - 2021-07-29": [[42, "release-11-0-5-2021-07-29"]], "11.0.6\u30ea\u30ea\u30fc\u30b9 - 2021-08-29": [[42, "release-11-0-6-2021-08-29"]], "11.0.7\u30ea\u30ea\u30fc\u30b9 - 2021-09-29": [[42, "release-11-0-7-2021-09-29"]], "11.0.9\u30ea\u30ea\u30fc\u30b9 - 2021-11-04": [[42, "release-11-0-9-2021-11-04"]], "11.1.0\u30ea\u30ea\u30fc\u30b9 - 2021-11-29": [[42, "release-11-1-0-2021-11-29"]], "11.1.1\u30ea\u30ea\u30fc\u30b9 - 2021-12-29": [[42, "release-11-1-1-2021-12-29"]], "11.1.3\u30ea\u30ea\u30fc\u30b9 - 2022-01-29": [[42, "release-11-1-3-2022-01-29"]], "12.0.0\u30ea\u30ea\u30fc\u30b9 - 2022-02-09": [[43, "release-12-0-0-2022-02-09"]], "12.0.1\u30ea\u30ea\u30fc\u30b9 - 2022-02-28": [[43, "release-12-0-1-2022-02-28"]], "12.0.2\u30ea\u30ea\u30fc\u30b9 - 2022-03-29": [[43, "release-12-0-2-2022-03-29"]], "12.0.3\u30ea\u30ea\u30fc\u30b9 - 2022-04-29": [[43, "release-12-0-3-2022-04-29"]], "12.0.4\u30ea\u30ea\u30fc\u30b9 - 2022-06-06": [[43, "release-12-0-4-2022-06-06"]], "12.0.5\u30ea\u30ea\u30fc\u30b9 - 2022-06-29": [[43, "release-12-0-5-2022-06-29"]], "12.0.6\u30ea\u30ea\u30fc\u30b9 - 2022-08-04": [[43, "release-12-0-6-2022-08-04"]], "12.0.7\u30ea\u30ea\u30fc\u30b9 - 2022-08-29": [[43, "release-12-0-7-2022-08-29"]], "12.0.8\u30ea\u30ea\u30fc\u30b9 - 2022-10-03": [[43, "release-12-0-8-2022-10-03"]], "12.0.9\u30ea\u30ea\u30fc\u30b9 - 2022-10-28": [[43, "release-12-0-9-2022-10-28"]], "12.1.0\u30ea\u30ea\u30fc\u30b9 - 2022-11-29": [[43, "release-12-1-0-2022-11-29"]], "12.1.1\u30ea\u30ea\u30fc\u30b9 - 2023-01-06": [[43, "release-12-1-1-2023-01-06"]], "12.1.2\u30ea\u30ea\u30fc\u30b9 - 2023-01-29": [[43, "release-12-1-2-2023-01-29"]], "13.0.0\u30ea\u30ea\u30fc\u30b9 - 2023-02-09": [[44, "release-13-0-0-2023-02-09"]], "13.0.1\u30ea\u30ea\u30fc\u30b9 - 2023-03-24": [[44, "release-13-0-1-2023-03-24"]], "13.0.2\u30ea\u30ea\u30fc\u30b9 - 2023-07-12": [[44, "release-13-0-2-2023-07-12"]], "13.0.3\u30ea\u30ea\u30fc\u30b9 - 2023-07-24": [[44, "release-13-0-3-2023-07-24"]], "13.0.4\u30ea\u30ea\u30fc\u30b9 - 2023-07-26": [[44, "release-13-0-4-2023-07-26"]], "13.0.5\u30ea\u30ea\u30fc\u30b9 - 2023-08-02": [[44, "release-13-0-5-2023-08-02"]], "13.0.6\u30ea\u30ea\u30fc\u30b9 - 2023-08-31": [[44, "release-13-0-6-2023-08-31"]], "13.0.7\u30ea\u30ea\u30fc\u30b9 - 2023-09-12": [[44, "release-13-0-7-2023-09-12"]], "13.0.8\u30ea\u30ea\u30fc\u30b9 - 2023-09-29": [[44, "release-13-0-8-2023-09-29"]], "13.0.9\u30ea\u30ea\u30fc\u30b9 - 2023-10-29": [[44, "release-13-0-9-2023-10-29"]], "13.1.0\u30ea\u30ea\u30fc\u30b9 - 2023-12-26": [[44, "release-13-1-0-2023-12-26"]], "13.1.1\u30ea\u30ea\u30fc\u30b9 - 2024-01-09": [[44, "release-13-1-1-2024-01-09"]], "14.0.0\u30ea\u30ea\u30fc\u30b9 - 2024-02-29": [[45, "release-14-0-0-2024-02-29"]], "14.0.1\u30ea\u30ea\u30fc\u30b9 - 2024-03-14": [[45, "release-14-0-1-2024-03-14"]], "14.0.2\u30ea\u30ea\u30fc\u30b9 - 2024-03-29": [[45, "release-14-0-2-2024-03-29"]], "14.0.3\u30ea\u30ea\u30fc\u30b9 - 2024-05-09": [[45, "release-14-0-3-2024-05-09"]], "14.0.4\u30ea\u30ea\u30fc\u30b9 - 2024-05-29": [[45, "release-14-0-4-2024-05-29"]], "14.0.5\u30ea\u30ea\u30fc\u30b9 - 2024-07-04": [[45, "release-14-0-5-2024-07-04"]], "14.0.6\u30ea\u30ea\u30fc\u30b9 - 2024-07-29": [[45, "release-14-0-6-2024-07-29"]], "14.0.7\u30ea\u30ea\u30fc\u30b9 - 2024-09-03": [[45, "release-14-0-7-2024-09-03"]], "14.0.8\u30ea\u30ea\u30fc\u30b9 - 2024-09-25": [[45, "release-14-0-8-2024-09-25"]], "14.0.9\u30ea\u30ea\u30fc\u30b9 - 2024-09-27": [[45, "release-14-0-9-2024-09-27"]], "14.1.0\u30ea\u30ea\u30fc\u30b9 - 2024-11-05": [[45, "release-14-1-0-2024-11-05"]], "14.1.1\u30ea\u30ea\u30fc\u30b9 - 2024-12-03": [[45, "release-14-1-1-2024-12-03"]], "14.1.2\u30ea\u30ea\u30fc\u30b9 - 2024-12-24": [[45, "release-14-1-2-2024-12-24"]], "14.1.3\u30ea\u30ea\u30fc\u30b9 - 2025-01-27": [[45, "release-14-1-3-2025-01-29"]], "15.0.0\u30ea\u30ea\u30fc\u30b9 - 2025-02-09": [[46, "release-15-0-0-2025-02-09"]], "1\u30d7\u30ed\u30bb\u30b9\u3067\u958b\u3051\u308b\u6700\u5927\u30d5\u30a1\u30a4\u30eb\u6570": [[281, "the-max-number-of-open-files-per-process"]], "2.0.0\u30ea\u30ea\u30fc\u30b9 - 2012-02-29": [[47, "release-2-0-0-2012-02-29"]], "2.0.1\u30ea\u30ea\u30fc\u30b9 - 2012-03-29": [[47, "release-2-0-1-2012-03-29"]], "2.0.2\u30ea\u30ea\u30fc\u30b9 - 2012-04-29": [[47, "release-2-0-2-2012-04-29"]], "2.0.3\u30ea\u30ea\u30fc\u30b9 - 2012-05-29": [[47, "release-2-0-3-2012-05-29"]], "2.0.4\u30ea\u30ea\u30fc\u30b9 - 2012-06-29": [[47, "release-2-0-4-2012-06-29"]], "2.0.5\u30ea\u30ea\u30fc\u30b9 - 2012-07-29": [[47, "release-2-0-5-2012-07-29"]], "2.0.6\u30ea\u30ea\u30fc\u30b9 - 2012-08-29": [[47, "release-2-0-6-2012-08-29"]], "2.0.7\u30ea\u30ea\u30fc\u30b9 - 2012-09-29": [[47, "release-2-0-7-2012-09-29"]], "2.0.8\u30ea\u30ea\u30fc\u30b9 - 2012-10-29": [[47, "release-2-0-8-2012-10-29"]], "2.0.9\u30ea\u30ea\u30fc\u30b9 - 2012-11-29": [[47, "release-2-0-9-2012-11-29"]], "2.1.0\u30ea\u30ea\u30fc\u30b9 - 2012-12-29": [[47, "release-2-1-0-2012-12-29"]], "2.1.1\u30ea\u30ea\u30fc\u30b9 - 2012-12-29": [[47, "release-2-1-1-2012-12-29"]], "2.1.2\u30ea\u30ea\u30fc\u30b9 - 2013-01-29": [[47, "release-2-1-2-2013-01-29"]], "2005-04-12": [[55, "id20"]], "2005-06-23": [[55, "id18"]], "2005-07-05": [[55, "id17"]], "2005-08-16": [[55, "id15"]], "2005-09-08": [[55, "id13"]], "2005-09-17": [[55, "id11"]], "2005-10-27": [[55, "id9"]], "2005-12-22": [[55, "id7"]], "2006-01-12": [[55, "id5"]], "2006-01-16": [[55, "id4"]], "2006-03-03": [[55, "id2"]], "2006-04-05": [[55, "id1"]], "3.0.0\u30ea\u30ea\u30fc\u30b9 - 2013-02-09": [[48, "release-3-0-0-2013-02-09"]], "3.0.1\u30ea\u30ea\u30fc\u30b9 - 2013-02-28": [[48, "release-3-0-1-2013-02-28"]], "3.0.2\u30ea\u30ea\u30fc\u30b9 - 2013-03-29": [[48, "release-3-0-2-2013-03-29"]], "3.0.3\u30ea\u30ea\u30fc\u30b9 - 2013-04-29": [[48, "release-3-0-3-2013-04-29"]], "3.0.4\u30ea\u30ea\u30fc\u30b9 - 2013-05-29": [[48, "release-3-0-4-2013-05-29"]], "3.0.5\u30ea\u30ea\u30fc\u30b9 - 2013-06-29": [[48, "release-3-0-5-2013-06-29"]], "3.0.6\u30ea\u30ea\u30fc\u30b9 - 2013-07-29": [[48, "release-3-0-6-2013-07-29"]], "3.0.7\u30ea\u30ea\u30fc\u30b9 - 2013-08-29": [[48, "release-3-0-7-2013-08-29"]], "3.0.8\u30ea\u30ea\u30fc\u30b9 - 2013-09-29": [[48, "release-3-0-8-2013-09-29"]], "3.0.9\u30ea\u30ea\u30fc\u30b9 - 2013-10-29": [[48, "release-3-0-9-2013-10-29"]], "3.1.0\u30ea\u30ea\u30fc\u30b9 - 2013-11-29": [[48, "release-3-1-0-2013-11-29"]], "3.1.1\u30ea\u30ea\u30fc\u30b9 - 2013-12-29": [[48, "release-3-1-1-2013-12-29"]], "3.1.2\u30ea\u30ea\u30fc\u30b9 - 2014-01-29": [[48, "release-3-1-2-2014-01-29"]], "4.0.0\u30ea\u30ea\u30fc\u30b9 - 2014-02-09": [[49, "release-4-0-0-2014-02-09"]], "4.0.1\u30ea\u30ea\u30fc\u30b9 - 2014-03-29": [[49, "release-4-0-1-2014-03-29"]], "4.0.2\u30ea\u30ea\u30fc\u30b9 - 2014-05-29": [[49, "release-4-0-2-2014-05-29"]], "4.0.3\u30ea\u30ea\u30fc\u30b9 - 2014-06-29": [[49, "release-4-0-3-2014-06-29"]], "4.0.4\u30ea\u30ea\u30fc\u30b9 - 2014-07-29": [[49, "release-4-0-4-2014-07-29"]], "4.0.5\u30ea\u30ea\u30fc\u30b9 - 2014-08-29": [[49, "release-4-0-5-2014-08-29"]], "4.0.6\u30ea\u30ea\u30fc\u30b9 - 2014-09-29": [[49, "release-4-0-6-2014-09-29"]], "4.0.7\u30ea\u30ea\u30fc\u30b9 - 2014-10-29": [[49, "release-4-0-7-2014-10-29"]], "4.0.8\u30ea\u30ea\u30fc\u30b9 - 2014-11-29": [[49, "release-4-0-8-2014-11-29"]], "4.0.9\u30ea\u30ea\u30fc\u30b9 - 2014-12-29": [[49, "release-4-0-9-2014-12-29"]], "4.1.0\u30ea\u30ea\u30fc\u30b9 - 2015-01-09": [[49, "release-4-1-0-2015-01-09"]], "4.1.1\u30ea\u30ea\u30fc\u30b9 - 2015-01-29": [[49, "release-4-1-1-2015-01-29"]], "5.0.0\u30ea\u30ea\u30fc\u30b9 - 2015-02-09": [[50, "release-5-0-0-2015-02-09"]], "5.0.1\u30ea\u30ea\u30fc\u30b9 - 2015-03-29": [[50, "release-5-0-1-2015-03-29"]], "5.0.2\u30ea\u30ea\u30fc\u30b9 - 2015-03-31": [[50, "release-5-0-2-2015-03-31"]], "5.0.3\u30ea\u30ea\u30fc\u30b9 - 2015-04-29": [[50, "release-5-0-3-2015-04-29"]], "5.0.4\u30ea\u30ea\u30fc\u30b9 - 2015-05-29": [[50, "release-5-0-4-2015-05-29"]], "5.0.5\u30ea\u30ea\u30fc\u30b9 - 2015-06-29": [[50, "release-5-0-5-2015-06-29"]], "5.0.6\u30ea\u30ea\u30fc\u30b9 - 2015-07-29": [[50, "release-5-0-6-2015-07-29"]], "5.0.7\u30ea\u30ea\u30fc\u30b9 - 2015-08-31": [[50, "release-5-0-7-2015-08-31"]], "5.0.8\u30ea\u30ea\u30fc\u30b9 - 2015-09-29": [[50, "release-5-0-8-2015-09-29"]], "5.0.9\u30ea\u30ea\u30fc\u30b9 - 2015-10-29": [[50, "release-5-0-9-2015-10-29"]], "5.1.0\u30ea\u30ea\u30fc\u30b9 - 2015-11-29": [[50, "release-5-1-0-2015-11-29"]], "5.1.1\u30ea\u30ea\u30fc\u30b9 - 2015-12-29": [[50, "release-5-1-1-2015-12-29"]], "5.1.2\u30ea\u30ea\u30fc\u30b9 - 2016-01-29": [[50, "release-5-1-2-2016-01-29"]], "6.0.0\u30ea\u30ea\u30fc\u30b9 - 2016-02-29": [[51, "release-6-0-0-2016-02-29"]], "6.0.1\u30ea\u30ea\u30fc\u30b9 - 2016-03-29": [[51, "release-6-0-1-2016-03-29"]], "6.0.2\u30ea\u30ea\u30fc\u30b9 - 2016-04-29": [[51, "release-6-0-2-2016-04-29"]], "6.0.3\u30ea\u30ea\u30fc\u30b9 - 2016-05-29": [[51, "release-6-0-3-2016-05-29"]], "6.0.4\u30ea\u30ea\u30fc\u30b9 - 2016-06-06": [[51, "release-6-0-4-2016-06-06"]], "6.0.5\u30ea\u30ea\u30fc\u30b9 - 2016-06-29": [[51, "release-6-0-5-2016-06-29"]], "6.0.7\u30ea\u30ea\u30fc\u30b9 - 2016-07-29": [[51, "release-6-0-7-2016-07-29"]], "6.0.8\u30ea\u30ea\u30fc\u30b9 - 2016-08-29": [[51, "release-6-0-8-2016-08-29"]], "6.0.9\u30ea\u30ea\u30fc\u30b9 - 2016-09-29": [[51, "release-6-0-9-2016-09-29"]], "6.1.0\u30ea\u30ea\u30fc\u30b9 - 2016-10-29": [[51, "release-6-1-0-2016-10-29"]], "6.1.1\u30ea\u30ea\u30fc\u30b9 - 2016-11-29": [[51, "release-6-1-1-2016-11-29"]], "6.1.2\u30ea\u30ea\u30fc\u30b9 - 2016-12-31": [[51, "release-6-1-2-2016-12-31"]], "6.1.3\u30ea\u30ea\u30fc\u30b9 - 2017-01-06": [[51, "release-6-1-3-2017-01-06"]], "6.1.4\u30ea\u30ea\u30fc\u30b9 - 2017-01-18": [[51, "release-6-1-4-2017-01-18"]], "6.1.5\u30ea\u30ea\u30fc\u30b9 - 2017-01-23": [[51, "release-6-1-5-2017-01-23"]], "7.0.0\u30ea\u30ea\u30fc\u30b9 - 2017-02-09": [[52, "release-7-0-0-2017-02-09"]], "7.0.1\u30ea\u30ea\u30fc\u30b9 - 2017-03-29": [[52, "release-7-0-1-2017-03-29"]], "7.0.2\u30ea\u30ea\u30fc\u30b9 - 2017-04-29": [[52, "release-7-0-2-2017-04-29"]], "7.0.3\u30ea\u30ea\u30fc\u30b9 - 2017-05-29": [[52, "release-7-0-3-2017-05-29"]], "7.0.4\u30ea\u30ea\u30fc\u30b9 - 2017-06-29": [[52, "release-7-0-4-2017-06-29"]], "7.0.5\u30ea\u30ea\u30fc\u30b9 - 2017-07-29": [[52, "release-7-0-5-2017-07-29"]], "7.0.6\u30ea\u30ea\u30fc\u30b9 - 2017-08-29": [[52, "release-7-0-6-2017-08-29"]], "7.0.7\u30ea\u30ea\u30fc\u30b9 - 2017-09-29": [[52, "release-7-0-7-2017-09-29"]], "7.0.8\u30ea\u30ea\u30fc\u30b9 - 2017-10-29": [[52, "release-7-0-8-2017-10-29"]], "7.0.9\u30ea\u30ea\u30fc\u30b9 - 2017-11-29": [[52, "release-7-0-9-2017-11-29"]], "7.1.0\u30ea\u30ea\u30fc\u30b9 - 2017-12-29": [[52, "release-7-1-0-2017-12-29"]], "7.1.1\u30ea\u30ea\u30fc\u30b9 - 2018-01-29": [[52, "release-7-1-1-2018-01-29"]], "8.0.0\u30ea\u30ea\u30fc\u30b9 - 2018-02-09": [[53, "release-8-0-0-2018-02-09"]], "8.0.1\u30ea\u30ea\u30fc\u30b9 - 2018-03-29": [[53, "release-8-0-1-2018-03-29"]], "8.0.2\u30ea\u30ea\u30fc\u30b9 - 2018-04-29": [[53, "release-8-0-2-2018-04-29"]], "8.0.3\u30ea\u30ea\u30fc\u30b9 - 2018-05-29": [[53, "release-8-0-3-2018-05-29"]], "8.0.4\u30ea\u30ea\u30fc\u30b9 - 2018-06-29": [[53, "release-8-0-4-2018-06-29"]], "8.0.5\u30ea\u30ea\u30fc\u30b9 - 2018-07-29": [[53, "release-8-0-5-2018-07-29"]], "8.0.6\u30ea\u30ea\u30fc\u30b9 - 2018-08-29": [[53, "release-8-0-6-2018-08-29"]], "8.0.7\u30ea\u30ea\u30fc\u30b9 - 2018-09-29": [[53, "release-8-0-7-2018-09-29"]], "8.0.8\u30ea\u30ea\u30fc\u30b9 - 2018-10-29": [[53, "release-8-0-8-2018-10-29"]], "8.0.9\u30ea\u30ea\u30fc\u30b9 - 2018-11-29": [[53, "release-8-0-9-2018-11-29"]], "8.1.0\u30ea\u30ea\u30fc\u30b9 - 2018-12-29": [[53, "release-8-1-0-2018-12-29"]], "8.1.1\u30ea\u30ea\u30fc\u30b9 - 2019-01-29": [[53, "release-8-1-1-2019-01-29"]], "9.0.0\u30ea\u30ea\u30fc\u30b9 - 2019-02-09": [[54, "release-9-0-0-2019-02-09"]], "9.0.1\u30ea\u30ea\u30fc\u30b9 - 2019-03-29": [[54, "release-9-0-1-2019-03-29"]], "9.0.2\u30ea\u30ea\u30fc\u30b9 - 2019-04-29": [[54, "release-9-0-2-2019-04-29"]], "9.0.3\u30ea\u30ea\u30fc\u30b9 - 2019-05-29": [[54, "release-9-0-3-2019-05-29"]], "9.0.4\u30ea\u30ea\u30fc\u30b9 - 2019-06-29": [[54, "release-9-0-4-2019-06-29"]], "9.0.5\u30ea\u30ea\u30fc\u30b9 - 2019-07-30": [[54, "release-9-0-5-2019-07-30"]], "9.0.6\u30ea\u30ea\u30fc\u30b9 - 2019-08-05": [[54, "release-9-0-6-2019-08-05"]], "9.0.7\u30ea\u30ea\u30fc\u30b9 - 2019-08-29": [[54, "release-9-0-7-2019-08-29"]], "9.0.8\u30ea\u30ea\u30fc\u30b9 - 2019-09-27": [[54, "release-9-0-8-2019-09-27"]], "9.0.9\u30ea\u30ea\u30fc\u30b9 - 2019-10-30": [[54, "release-9-0-9-2019-10-30"]], "9.1.0\u30ea\u30ea\u30fc\u30b9 - 2019-11-29": [[54, "release-9-1-0-2019-11-29"]], "9.1.1\u30ea\u30ea\u30fc\u30b9 - 2020-01-07": [[54, "release-9-1-1-2020-01-07"]], "9.1.2\u30ea\u30ea\u30fc\u30b9 - 2020-01-29": [[54, "release-9-1-2-2020-01-29"]], "API": [[59, null]], "AVX\u304c\u306a\u3044\u30de\u30b7\u30f3\u4e0a\u3067deb/rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4f7f\u3048\u306a\u304b\u3063\u305f\u554f\u984c\u3092\u4fee\u6b63": [[45, "fixed-a-bug-that-deb-rpm-packages-can-t-be-used-on-machines-that-don-t-have-avx"]], "AlmaLinux": [[24, null]], "AlmaLinux 8": [[24, "almalinux-8"]], "AlmaLinux 9": [[24, "almalinux-9"]], "Amazon Linux": [[25, null]], "Amazon Linux 2023": [[25, "amazon-linux-2023"]], "Amazon Linux: Amazon Linux 2023 aarch64\u3092\u30b5\u30dd\u30fc\u30c8": [[45, "install-amazon-linux-added-support-for-amazon-linux-2023-aarch64"]], "Apache Arrow": [[96, "apache-arrow"]], "Apache Arrow\u304c\u5fc5\u9808": [[94, "apache-arrow-is-required"]], "BODY": [[95, "body"]], "Bigram\u30c6\u30fc\u30d6\u30eb": [[311, "bigram-table"]], "BloGroonga(\u30d6\u30ed\u30b0)\u306e\u66f4\u65b0": [[12, "blogroonga"]], "Bool": [[282, "bool"]], "C API": [[16, null]], "CANDIDATE_N": [[180, "candidate-n"]], "CMake \u30aa\u30d7\u30b7\u30e7\u30f3": [[27, "cmake-options"]], "CMake \u30d7\u30ea\u30bb\u30c3\u30c8": [[27, "cmake-presets"]], "CMake\u306e\u5b9f\u884c": [[12, "cmake"]], "COLUMN": [[155, "column"]], "COLUMN_FULL_NAME": [[141, "column-full-name"]], "COLUMN_ID": [[141, "column-id"]], "COLUMN_INFORMATION": [[112, "column-information"]], "COLUMN_LIST_HEADER": [[112, "column-list-header"]], "COLUMN_NAME": [[141, "column-name"]], "COLUMN_TABLE": [[141, "column-table"]], "COLUMN_TYPE_NAME": [[141, "column-type-name"]], "COLUMN_TYPE_RAW_ID": [[141, "column-type-raw-id"]], "COLUMN_TYPE_RAW_NAME": [[141, "column-type-raw-name"]], "COLUMN_VALUE_TYPE": [[141, "column-value-type"]], "COMMAND": [[155, "command"]], "CONDITION_1": [[186, "condition-1"]], "CONDITION_N": [[186, "condition-n"]], "CONTEXT_ID": [[228, "context-id"]], "Cast": [[86, null]], "CentOS": [[26, null]], "Changes": [[55, "changes"]], "Comments\u30c6\u30fc\u30d6\u30eb": [[311, "comments-table"]], "Cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "cutter"]], "DATABASE_NAME_TABLE": [[141, "database-name-table"]], "DATABASE_PATH": [[180, "database-path"]], "DATABASE_TYPE_ID": [[141, "database-type-id"]], "DATABASE_TYPE_NAME": [[141, "database-type-name"]], "DATA_COLUMN_VALUE_COMPRESS_FILTER": [[141, "data-column-value-compress-filter"]], "DATA_COLUMN_VALUE_COMPRESS_METHOD": [[141, "data-column-value-compress-method"]], "DB_API": [[11, "db-api"]], "DESCTIPION": [[179, "desctipion"]], "DOMAIN": [[112, "domain"]], "Debian GNU/Linux": [[28, null]], "Debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "debian"]], "Docker": [[29, null]], "Docker\u30a4\u30e1\u30fc\u30b8\u306e\u66f4\u65b0": [[12, "docker"]], "ELAPSED_TIME": [[228, "elapsed-time"]], "EXIT STATUS": [[179, "exit-status"]], "FILES": [[179, "files"]], "FLAGS": [[112, "flags"], [142, "flags"]], "Facebook": [[2, "facebook"]], "Facebook\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b": [[12, "facebook"]], "Float": [[282, "float"]], "Float32": [[282, "float32"]], "FreeBSD": [[281, "freebsd"]], "GENERATED_COLUMN_SOURCE_FULL_NAME": [[141, "generated-column-source-full-name"]], "GENERATED_COLUMN_SOURCE_ID": [[141, "generated-column-source-id"]], "GENERATED_COLUMN_SOURCE_NAME": [[141, "generated-column-source-name"]], "GENERATED_COLUMN_SOURCE_TABLE": [[141, "generated-column-source-table"]], "GENERATED_COLUMN_VALUE_GENERATOR": [[141, "generated-column-value-generator"]], "GENERATOR": [[112, "generator"]], "GET\u306e\u5f15\u6570": [[180, "get-parameters"]], "GNU Autotools\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5": [[6, null]], "GNU/Linux\u307e\u305f\u306fUNIX": [[27, "gnu-linux-or-unix"], [27, "id1"], [27, "id5"]], "GNU/Linux\u307e\u305f\u306fUnix\u4e0a\u3067CMake\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5": [[7, null]], "GQTP": [[290, null], [298, null]], "GQTP\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": [[9, "gqtp"]], "GQTP\u30b5\u30fc\u30d0\u306e\u7d42\u4e86": [[298, "how-to-terminate-a-gqtp-server"]], "GQTP\u30b5\u30fc\u30d0\u306e\u8d77\u52d5": [[298, "how-to-run-a-gqtp-server"]], "GQTP\u30b5\u30fc\u30d0\u3078\u306e\u63a5\u7d9a": [[298, "how-to-run-a-gqtp-client"]], "GQTP\u30b5\u30fc\u30d0\u30fc\u3092\u518d\u8d77\u52d5": [[296, "restart-gqtp-server"]], "GQTP\u30b5\u30fc\u30d0\u30fc\u3092\u7d42\u4e86": [[296, "stop-gqtp-server"]], "GQTP\u30b5\u30fc\u30d0\u30fc\u3092\u8d77\u52d5": [[296, "start-gqtp-server"]], "GQTP\u30c7\u30fc\u30e2\u30f3\u306e\u8d77\u52d5": [[298, "how-to-run-a-gqtp-daemon"]], "GQTP\u30d8\u30c3\u30c0\u30fc": [[298, "gqtp-header"]], "GeoIndex\u30c6\u30fc\u30d6\u30eb": [[311, "geoindex-table"]], "GeoPoint\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22": [[311, "search-comments-by-using-the-value-of-geopoint-type"]], "Groonga 11.0.0 \u304b\u3089 11.1.3 \u307e\u3067\u306e\u4e3b\u306a\u5909\u66f4\u70b9": [[43, "summary-of-changes-from-groonga-11-0-0-to-11-1-3"]], "Groonga 12.0.0 \u304b\u3089 12.1.2 \u307e\u3067\u306e\u4e3b\u306a\u5909\u66f4\u70b9": [[44, "higlight-and-summary-of-changes-from-12-0-0-to-12-1-2"]], "Groonga HTTP\u30b5\u30fc\u30d0\u30fc": [[178, null]], "Groonga \u306e\u6982\u8981": [[0, "groonga-overview"]], "Groonga \u30b5\u30fc\u30d0": [[0, "groonga-server"]], "Groonga \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8": [[22, null]], "Groonga \u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0": [[12, "id21"]], "Groonga \u30e9\u30a4\u30d6\u30e9\u30ea": [[0, "groonga-library"]], "Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": [[9, null]], "Groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97": [[12, "id8"]], "Groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97": [[12, "groonga"]], "Groonga\u306e\u7279\u5fb4": [[0, null]], "Groonga\u306e\u8d77\u6e90\u4ee5\u524d\u306b\u3064\u3044\u3066": [[56, null]], "Groonga\u3078\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5": [[3, null]], "Groonga\u3092\u30d3\u30eb\u30c9": [[8, "build-groonga"]], "Groonga\u3092\u30d3\u30eb\u30c9\u3059\u308b": [[7, "build-groonga"]], "Groonga\u30b3\u30de\u30f3\u30c9\u3054\u3068\u306b\u8a2d\u5b9a\u3059\u308b": [[94, "set-per-groonga-command"]], "Groonga\u30b3\u30de\u30f3\u30c9\u306e--n_workers\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3059\u308b": [[94, "specified-by-n-workers-option-of-groonga-command"]], "Groonga\u30ea\u30dd\u30b8\u30c8\u30ea\u306eclone\u306e\u4ed5\u65b9": [[17, "how-to-clone-groonga-repository"]], "Groonga\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u30d5\u30a9\u30fc\u30af\u3057\u30af\u30ed\u30fc\u30f3\u3059\u308b\u65b9\u6cd5": [[18, "how-to-fork-and-clone-groonga-repository"]], "Groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb": [[11, "groonga"]], "Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831": [[4, null]], "HEADER": [[95, "header"], [112, "header"], [115, "header"], [116, "header"], [117, "header"], [126, "header"], [128, "header"], [142, "header"], [155, "header"]], "HTML\u30d5\u30a1\u30a4\u30eb\u3067\u5909\u66f4\u3092\u78ba\u8a8d\u3059\u308b": [[18, "preview-changes-on-html-files"]], "HTML\u30d5\u30a1\u30a4\u30eb\u3067\u7ffb\u8a33\u3092\u78ba\u8a8d\u3059\u308b": [[18, "preview-translations-on-html-files"]], "HTML\u30d5\u30a1\u30a4\u30eb\u306e\u751f\u6210\u65b9\u6cd5": [[17, "how-to-generate-html-files"]], "HTML\u30d5\u30a1\u30a4\u30eb\u3092\u751f\u6210": [[18, "generate-html"]], "HTML\u51fa\u529b\u306e\u78ba\u8a8d\u306e\u4ed5\u65b9": [[17, "how-to-confirm-html-output"]], "HTTP": [[241, "http"], [291, null], [312, "hypertext-transfer-protocol-http"]], "HTTPS": [[292, "https"]], "HTTP\u30b5\u30fc\u30d0\u306e\u8d77\u52d5": [[312, "how-to-run-an-http-server"]], "HTTP\u30b5\u30fc\u30d0\u3078\u306e\u30b3\u30de\u30f3\u30c9\u9001\u4fe1": [[312, "how-to-send-a-command-to-an-http-server"]], "HTTP\u30b5\u30fc\u30d0\u30fc\u3092\u518d\u8d77\u52d5": [[296, "restart-http-server"], [296, "id3"]], "HTTP\u30b5\u30fc\u30d0\u30fc\u3092\u7d42\u4e86": [[296, "stop-http-server"], [296, "id2"]], "HTTP\u30b5\u30fc\u30d0\u30fc\u3092\u8d77\u52d5": [[296, "start-http-server"], [296, "id1"]], "HashTags\u30c6\u30fc\u30d6\u30eb": [[311, "hashtags-table"]], "Homebrew": [[30, "homebrew"]], "Homebrew\u306e\u66f4\u65b0": [[12, "homebrew"]], "How to run": [[290, "how-to-run"]], "ID": [[112, "id"]], "INDEX": [[155, "index"]], "INDEX_COLUMN_SOURCE_FULL_NAME": [[141, "index-column-source-full-name"]], "INDEX_COLUMN_SOURCE_ID": [[141, "index-column-source-id"]], "INDEX_COLUMN_SOURCE_NAME": [[141, "index-column-source-name"]], "INDEX_COLUMN_SOURCE_TABLE": [[141, "index-column-source-table"]], "INDEX_COLUMN_VALUE_POSITION": [[141, "index-column-value-position"]], "INDEX_COLUMN_VALUE_SECTION": [[141, "index-column-value-section"]], "INDEX_COLUMN_VALUE_SIZE": [[141, "index-column-value-size"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_ARRAY_SEGMENT_ID": [[141, "index-column-value-statistics-max-array-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_BUFFER_SEGMENT_ID": [[141, "index-column-value-statistics-max-buffer-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_IN_USE_CHUNK_ID": [[141, "index-column-value-statistics-max-in-use-chunk-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_IN_USE_PHYSICAL_SEGMENT_ID": [[141, "index-column-value-statistics-max-in-use-physical-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_SECTION_ID": [[141, "index-column-value-statistics-max-section-id"]], "INDEX_COLUMN_VALUE_STATISTICS_NEXT_PHYSICAL_SEGMENT_ID": [[141, "index-column-value-statistics-next-physical-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_N_ARRAY_SEGMENTS": [[141, "index-column-value-statistics-n-array-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_BUFFER_SEGMENTS": [[141, "index-column-value-statistics-n-buffer-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_GARBAGE_CHUNKS": [[141, "index-column-value-statistics-n-garbage-chunks"]], "INDEX_COLUMN_VALUE_STATISTICS_N_GARBAGE_SEGMENTS": [[141, "index-column-value-statistics-n-garbage-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_PHYSICAL_SEGMENTS": [[141, "index-column-value-statistics-n-physical-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_UNMANAGED_SEGMENTS": [[141, "index-column-value-statistics-n-unmanaged-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_TOTAL_CHUNK_SIZE": [[141, "index-column-value-statistics-total-chunk-size"]], "INDEX_COLUMN_VALUE_WEIGHT": [[141, "index-column-value-weight"]], "Int16": [[282, "int16"]], "Int32": [[282, "int32"]], "Int64": [[282, "int64"]], "Int8": [[282, "int8"]], "JSON": [[96, "json"]], "JSON\u3068MessagePack": [[95, "json-and-messagepack"]], "JavaScript\u306b\u4f3c\u305f\u6587\u6cd5\u3067\u306e\u7d5e\u8fbc\u30fb\u5168\u6587\u691c\u7d22": [[315, "narrow-down-full-text-search-by-using-syntax-like-javascript"]], "L": [[228, "l"]], "LGPL-2.1-only\u304b\u3089LGPL-2.1-or-later\u306b\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u5909\u66f4": [[45, "relicensed-to-lgpl-2-1-or-later-from-lgpl-2-1-only"]], "Learning data from groonga-suggest-httpd": [[181, "learning-data-from-groonga-suggest-httpd"]], "Learning data from log files": [[181, "learning-data-from-log-files"]], "Linux": [[281, "linux"]], "LongText": [[282, "longtext"]], "MESSAGE": [[228, "message"], [228, "id5"]], "MacPorts": [[30, "macports"]], "Memcached\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb": [[295, null]], "Mroonga \u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3": [[0, "mroonga-storage-engine"]], "NAME": [[112, "name"]], "NONE": [[156, "none"]], "NORMALIZER": [[155, "normalizer"]], "NORMALIZERS": [[155, "normalizers"]], "NULL": [[225, "null"]], "News - 1.2.x": [[39, null]], "News in Senna period": [[55, null]], "NormalizerAuto": [[230, null]], "NormalizerNFKC": [[231, null]], "NormalizerNFKC100": [[232, null]], "NormalizerNFKC121": [[233, null]], "NormalizerNFKC130": [[234, null]], "NormalizerNFKC150": [[235, null]], "NormalizerNFKC51": [[236, null]], "NormalizerNFKC: unify_middle_dot\u3068remove_symbol\u3092\u540c\u6642\u4f7f\u7528\u3092\u30b5\u30dd\u30fc\u30c8": [[45, "normalizernfkc-added-support-for-mixing-unify-middle-dot-and-remove-symbol"]], "NormalizerNFKC\u3092\u8ffd\u52a0": [[45, "added-reference-normalizers-normalizer-nfkc"]], "NormalizerTable": [[237, null]], "OBJECT \uff08 \"column:*\" \u3068\u3044\u3046\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u7a2e\u985e\u306b\u56fa\u6709\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\uff09": [[142, "object-column-object-types-specific-properties"]], "OBJECT \uff08 \"column:fix\" \u3068 \"column:var\" \u3068\u3044\u3046\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u7a2e\u985e\u306b\u56fa\u6709\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\uff09": [[142, "object-column-fix-and-column-var-object-types-specific-properties"]], "OBJECT \uff08 \"proc\" \u3068\u3044\u3046\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u7a2e\u985e\u306b\u56fa\u6709\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\uff09": [[142, "object-proc-object-type-specific-properties"]], "OBJECT \uff08 \"table:*\" \u3068\u3044\u3046\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u7a2e\u985e\u306b\u56fa\u6709\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\uff09": [[142, "object-table-object-types-specific-properties"]], "OBJECT \uff08 \"type\" \u3068\u3044\u3046\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u7a2e\u985e\u306b\u56fa\u6709\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\uff09": [[142, "object-type-object-type-specific-properties"]], "OBJECT \uff08\u5171\u901a\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\uff09": [[142, "object-common-properties"]], "OBJECTS": [[142, "objects"]], "OBJECT_TYPE": [[142, "object-type"]], "PATH": [[112, "path"]], "PID": [[228, "pid"]], "PKG_CONFIG_PATH=PATHS": [[31, "pkg-config-path-paths"]], "PLUGIN": [[155, "plugin"]], "PLUGINS": [[155, "plugins"]], "POSITION": [[123, "position"]], "POST": [[292, "post"]], "POST\u3067\u306e\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9": [[177, "loading-data-by-post"]], "POWER_SET": [[156, "power-set"]], "PPA\u7528\u306e\u9375\u306e\u767b\u9332": [[12, "ppa"]], "PPA\uff08Personal Package Archive\uff09": [[32, "ppa-personal-package-archive"]], "PROGRESS": [[228, "progress"]], "Plugin": [[85, null]], "QUERY": [[228, "query"]], "QUERY_STATUS": [[228, "query-status"]], "QueryExpanderTSV": [[243, null]], "RANGE": [[112, "range"], [142, "range"]], "RECORD_ID": [[123, "record-id"]], "RETURN_CODE": [[228, "return-code"]], "RapidJSON\u306e\u540c\u68b1\u3092\u7d42\u4e86": [[45, "stopped-vendoring-rapidjson"]], "Red Hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "red-hat"]], "Return value": [[187, "return-value"]], "SCHEMA": [[155, "id1"]], "SCORE_N": [[180, "score-n"]], "SOURCE": [[155, "source"]], "SOURCES": [[112, "sources"], [142, "sources"]], "SUCCEEDED_OR_NOT": [[115, "succeeded-or-not"], [117, "succeeded-or-not"], [126, "succeeded-or-not"], [128, "succeeded-or-not"]], "SYNOPSTIS": [[179, "synopstis"]], "Senna -> groonga - 2009-01-14": [[55, "senna-groonga-2009-01-14"]], "ShortText": [[282, "shorttext"]], "Sphinx\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5": [[17, "how-to-install-sphinx"]], "Summary": [[187, "summary"], [257, "summary"], [290, "summary"]], "Syntax": [[187, "syntax"]], "TABLE": [[155, "table"]], "TABLES": [[155, "tables"]], "TABLE_DAT_KEY": [[254, "table-dat-key"]], "TABLE_HASH_KEY": [[254, "table-hash-key"]], "TABLE_HASH_KEY: \u30b4\u30df\u30a8\u30f3\u30c8\u30ea\u30fc\u304c\u518d\u5229\u7528\u3055\u308c\u306a\u3044\u304b\u3082\u3057\u308c\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": [[45, "table-hash-key-fixed-a-bug-that-garbage-entry-may-not-be-reused"]], "TABLE_ID": [[141, "table-id"]], "TABLE_KEY_MAX_TOTAL_SIZE": [[141, "table-key-max-total-size"]], "TABLE_KEY_TOTAL_SIZE": [[141, "table-key-total-size"]], "TABLE_KEY_TYPE": [[141, "table-key-type"]], "TABLE_NAME": [[141, "table-name"]], "TABLE_NO_KEY": [[254, "table-no-key"]], "TABLE_N_RECORDS": [[141, "table-n-records"]], "TABLE_PAT_KEY": [[254, "table-pat-key"]], "TABLE_PAT_KEY: defrag\u5f8c\u306b\u65e2\u5b58\u306e\u30ad\u30fc\u304c\u58ca\u308c\u308b\u304b\u3082\u3057\u308c\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": [[45, "table-pat-key-fixed-a-bug-that-existing-key-may-be-broken-after-reference-commands-defrag"]], "TABLE_PAT_KEY: defrag\u6642\u306b\u3044\u304f\u3064\u304b\u306eWAL\u304c\u629c\u3051\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63": [[45, "table-pat-key-fixed-a-bug-that-some-wals-are-missing-for-reference-commands-defrag"]], "TABLE_PAT_KEY: \u30ad\u30fc\u306e\u578b\u3068\u3057\u3066Float32\u3092\u30b5\u30dd\u30fc\u30c8": [[46, "table-pat-key-added-support-for-builtin-type-float32-as-key-type"]], "TABLE_PAT_KEY: \u30ad\u30fc\u9818\u57df\u3092\u52b9\u7387\u5316": [[45, "table-pat-key-improved-key-space-efficiency"]], "TABLE_TYPE_ID": [[141, "table-type-id"]], "TABLE_TYPE_NAME": [[141, "table-type-name"]], "TABLE_VALUE_TYPE": [[141, "table-value-type"]], "THRESHOLD_N": [[186, "threshold-n"]], "TIME_STAMP": [[228, "time-stamp"], [228, "id4"]], "TOKENIZER": [[155, "tokenizer"]], "TOKENIZERS": [[155, "tokenizers"]], "TOKEN_FILTER": [[155, "token-filter"]], "TOKEN_FILTERS": [[142, "token-filters"], [155, "token-filters"]], "TOKEN_ID": [[123, "token-id"]], "TOKEN_VALUE": [[123, "token-value"]], "TSV": [[95, "tsv"]], "TSV\u30d5\u30a1\u30a4\u30eb": [[243, "tsv-file"]], "TYPE": [[112, "type"], [155, "type"], [180, "type"]], "TYPES": [[155, "types"]], "TYPE_ID": [[141, "type-id"]], "TYPE_ID_OF_TYPE": [[141, "type-id-of-type"]], "TYPE_NAME": [[141, "type-name"]], "TYPE_NAME_OF_TYPE": [[141, "type-name-of-type"]], "TYPE_SIZE": [[141, "type-size"]], "Text": [[282, "text"]], "Time": [[282, "time"]], "TokenBigram": [[264, null]], "TokenBigramIgnoreBlank": [[265, null]], "TokenBigramIgnoreBlankSplitSymbol": [[266, null]], "TokenBigramIgnoreBlankSplitSymbolAlpha": [[267, null]], "TokenBigramIgnoreBlankSplitSymbolAlphaDigit": [[268, null]], "TokenBigramSplitSymbol": [[269, null]], "TokenBigramSplitSymbolAlpha": [[270, null]], "TokenBigramSplitSymbolAlphaDigit": [[271, null]], "TokenDelimit": [[272, null]], "TokenDelimitNull": [[273, null]], "TokenFilterNFKC": [[257, null]], "TokenFilterNFKC100": [[258, null]], "TokenFilterNFKC150": [[259, null]], "TokenFilterNFKC\u3092\u8ffd\u52a0": [[45, "added-reference-token-filters-token-filter-nfkc"]], "TokenFilterStem": [[260, null]], "TokenFilterStopWord": [[261, null]], "TokenMecab": [[274, null]], "TokenMecab \u3068\u4f7f\u3046": [[231, "with-tokenmecab"], [235, "with-tokenmecab"]], "TokenNgram": [[275, null]], "TokenPattern": [[276, null]], "TokenRegexp": [[277, null]], "TokenTable": [[278, null]], "TokenTrigram": [[279, null]], "TokenUnigram": [[280, null]], "TokyoGeoPoint": [[282, "tokyogeopoint"]], "Travis CI": [[21, null]], "Twitter": [[2, "twitter"]], "Twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240(\u4f8b\u3048\u3070Redmine)\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044": [[10, "twitter-redmine"]], "Twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b": [[12, "twitter"]], "Twitter\u7de8": [[10, "twitter"]], "UInt16": [[282, "uint16"]], "UInt32": [[282, "uint32"]], "UInt64": [[282, "uint64"]], "UInt8": [[282, "uint8"]], "Ubuntu": [[32, null]], "Ubuntu\u5411\u3051\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u78ba\u8a8d": [[12, "ubuntu"]], "Ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "id14"]], "Ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u516c\u958b\u306e\u53d6\u308a\u6d88\u3057": [[12, "id15"]], "Unicode\u306e\u30d0\u30fc\u30b8\u30e7\u30f3": [[237, "unicode-version"]], "Usage": [[187, "usage"]], "Users\u30c6\u30fc\u30d6\u30eb": [[311, "users-table"]], "VALUE": [[116, "value"]], "VECTOR_COLUMN_VALUE_WEIGHT": [[141, "vector-column-value-weight"]], "VECTOR_COLUMN_VALUE_WEIGHT_BFLOAT16": [[141, "vector-column-value-weight-bfloat16"]], "VECTOR_COLUMN_VALUE_WEIGHT_FLOAT32": [[141, "vector-column-value-weight-float32"]], "WGS84GeoPoint": [[282, "wgs84geopoint"]], "Web\u30d6\u30e9\u30a6\u30b6\u3067\u751f\u6210\u3055\u308c\u305fHTML\u30d5\u30a1\u30a4\u30eb\u3092\u78ba\u8a8d\u3059\u308b": [[18, "preview-the-generated-html-files-in-your-web-browser"]], "Windows": [[27, "windows"], [27, "id2"], [27, "id6"], [33, null]], "Windows\u306eMSYS2\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "windowsmsys2"]], "Windows\u4e0a\u3067CMake\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5": [[8, null]], "Windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "windows"]], "XML": [[95, "xml"]], "[GQTP] \u9593\u9055\u3063\u305f\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9\u304c\u8fd4\u3055\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63": [[45, "server-gqtp-fixed-a-bug-that-wrong-return-code-is-returned"]], "[column_create] generator\u5f15\u6570\u3092\u8ffd\u52a0": [[45, "reference-commands-column-create-added-the-column-create-generator-parameter"]], "[index_column_diff] \u64ec\u967d\u6027\u306e\u5dee\u5206\u304c\u5831\u544a\u3055\u308c\u308b\u304b\u3082\u3057\u308c\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": [[45, "reference-commands-index-column-diff-fixed-a-bug-that-false-positive-diff-may-be-reported"]], "[language_model_vectorize] \u8ffd\u52a0\uff08\u5b9f\u9a13\u7684\uff09": [[45, "reference-functions-language-model-vectorize-added-experimental"]], "[logical_range_filter] \u4e0d\u6b63\u306aJSON\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306e\u30ec\u30b9\u30dd\u30f3\u30b9\u304c\u8fd4\u3055\u308c\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63": [[45, "reference-commands-logical-range-filter-fixed-a-bug-that-invalid-json-format-response-may-be-returned"], [45, "reference-commands-request-cancel-fixed-a-bug-that-invalid-json-format-response-may-be-returned"]], "[status] .[\"features\"][\"llama.cpp\"]\u30a8\u30f3\u30c8\u30ea\u30fc\u3092\u8ffd\u52a0": [[45, "reference-commands-status-added-features-llama-cpp-entry"]], "access_log": [[177, "access-log"]], "adjuster": [[156, "adjuster"]], "algorithm": [[260, "algorithm"]], "approximate_type": [[188, "approximate-type"]], "auto_release_count": [[149, "auto-release-count"]], "between": [[183, null]], "bookworm": [[28, "bookworm"]], "cache": [[132, "cache"], [134, "cache"], [135, "cache"], [156, "cache"]], "cache_limit": [[107, null]], "cast_loose": [[184, null]], "check": [[108, null], [173, "check"]], "clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "clang"]], "clearlock": [[109, null]], "close_tagN": [[191, "close-tagn"], [192, "close-tagn"]], "cmake \u3092 --preset=doc \u4ed8\u304d\u3067\u5b9f\u884c": [[18, "run-cmake-with-preset-doc"]], "cmake \u3092\u5b9f\u884c": [[8, "run-cmake"], [27, "run-cmake"]], "column": [[191, "column"], [192, "column"], [201, "column"], [211, "column"], [246, "column"], [247, "column"]], "column_copy": [[110, null]], "column_create": [[111, null]], "column_list": [[112, null]], "column_or_value": [[183, "column-or-value"]], "column_remove": [[113, null]], "column_rename": [[114, null]], "columns": [[125, "columns"], [261, "columns"]], "columns[${NAME}].flags": [[132, "columns-name-flags"], [134, "columns-name-flags"], [135, "columns-name-flags"], [156, "columns-name-flags"]], "columns[${NAME}].stage": [[132, "columns-name-stage"], [134, "columns-name-stage"], [135, "columns-name-stage"], [156, "columns-name-stage"]], "columns[${NAME}].type": [[132, "columns-name-type"], [134, "columns-name-type"], [135, "columns-name-type"], [156, "columns-name-type"]], "columns[${NAME}].value": [[132, "columns-name-value"], [134, "columns-name-value"], [135, "columns-name-value"], [156, "columns-name-value"]], "columns[${NAME}].window.group_keys": [[132, "columns-name-window-group-keys"], [134, "columns-name-window-group-keys"], [135, "columns-name-window-group-keys"], [156, "columns-name-window-group-keys"]], "columns[${NAME}].window.sort_keys": [[132, "columns-name-window-sort-keys"], [134, "columns-name-window-sort-keys"], [135, "columns-name-window-sort-keys"], [156, "columns-name-window-sort-keys"]], "command_version\u30d1\u30e9\u30e1\u30fc\u30bf": [[93, "id4"]], "condition_column_name": [[195, "condition-column-name"]], "condition_table": [[195, "condition-table"]], "config_delete": [[115, null]], "config_get": [[116, null]], "config_set": [[117, null]], "configure": [[31, "configure"]], "configure \u3092\u4f5c\u308b": [[6, "create-configure"]], "configure \u3092\u5b9f\u884c": [[6, "run-configure"]], "contain(v1, v2, mode, arg, callback)": [[11, "contain-v1-v2-mode-arg-callback"]], "database_path": [[181, "database-path"]], "database_unmap": [[118, null]], "default-command-version\u30d1\u30e9\u30e1\u30fc\u30bf": [[93, "default-command-version"]], "default_mode": [[202, "default-mode"], [203, "default-mode"]], "default_operator": [[202, "default-operator"], [203, "default-operator"]], "default_tokenizer": [[161, "default-tokenizer"]], "define_selector": [[119, null]], "defrag": [[120, null]], "defrag: TABLE_PAT_KEY\u306e\u30ab\u30e9\u30e0\u304c\u51e6\u7406\u3055\u308c\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": [[45, "reference-commands-defrag-fixed-a-bug-that-columns-of-table-pat-key-aren-t-processed"]], "defrag: TABLE_PAT_KEY\u3092\u30b5\u30dd\u30fc\u30c8": [[45, "reference-commands-defrag-added-support-for-table-pat-key"]], "delete": [[121, null]], "delete: \u53c2\u7167\u91cd\u307f\u4ed8\u304d\u30d9\u30af\u30bf\u30fc\u3092\u30b5\u30dd\u30fc\u30c8": [[45, "reference-commands-delete-added-support-for-reference-weight-vector"]], "delimiter": [[272, "delimiter"]], "dependent": [[137, "dependent"], [163, "dependent"]], "docker-compose\u3092\u7528\u3044\u308b\u5834\u5408": [[29, "with-docker-compose"]], "domain \u30ab\u30e9\u30e0\u306b\u3088\u308b\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3": [[306, "id1"]], "drilldown": [[135, "drilldown"], [156, "select-drilldown"]], "drilldown_calc_target": [[135, "drilldown-calc-target"], [156, "drilldown-calc-target"]], "drilldown_calc_types": [[135, "drilldown-calc-types"], [156, "drilldown-calc-types"]], "drilldown_filter": [[135, "drilldown-filter"], [156, "drilldown-filter"]], "drilldown_limit": [[135, "drilldown-limit"], [156, "drilldown-limit"]], "drilldown_max_n_target_records": [[156, "drilldown-max-n-target-records"]], "drilldown_offset": [[135, "drilldown-offset"], [156, "drilldown-offset"]], "drilldown_output_columns": [[135, "drilldown-output-columns"], [156, "drilldown-output-columns"]], "drilldown_sort_keys": [[135, "drilldown-sort-keys"], [156, "drilldown-sort-keys"]], "drilldown_sortby": [[135, "drilldown-sortby"], [156, "drilldown-sortby"]], "drilldowns[${LABEL}] \u30b9\u30bf\u30a4\u30eb\u306e\u51fa\u529b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8": [[156, "output-format-for-drilldowns-label-style"]], "drilldowns[${LABEL}].calc_target": [[135, "drilldowns-label-calc-target"]], "drilldowns[${LABEL}].calc_types": [[135, "drilldowns-label-calc-types"]], "drilldowns[${LABEL}].columns[${NAME}].flags": [[135, "drilldowns-label-columns-name-flags"]], "drilldowns[${LABEL}].columns[${NAME}].stage": [[135, "drilldowns-label-columns-name-stage"], [156, "drilldowns-label-columns-name-stage"]], "drilldowns[${LABEL}].columns[${NAME}].type": [[135, "drilldowns-label-columns-name-type"]], "drilldowns[${LABEL}].columns[${NAME}].value": [[135, "drilldowns-label-columns-name-value"]], "drilldowns[${LABEL}].columns[${NAME}].window.group_keys": [[135, "drilldowns-label-columns-name-window-group-keys"]], "drilldowns[${LABEL}].columns[${NAME}].window.sort_keys": [[135, "drilldowns-label-columns-name-window-sort-keys"]], "drilldowns[${LABEL}].filter": [[135, "drilldowns-label-filter"]], "drilldowns[${LABEL}].key_vector_expansion": [[156, "drilldowns-label-key-vector-expansion"]], "drilldowns[${LABEL}].keys": [[135, "drilldowns-label-keys"], [156, "drilldowns-label-keys"]], "drilldowns[${LABEL}].limit": [[135, "drilldowns-label-limit"]], "drilldowns[${LABEL}].offset": [[135, "drilldowns-label-offset"]], "drilldowns[${LABEL}].output_columns": [[135, "drilldowns-label-output-columns"], [156, "drilldowns-label-output-columns"]], "drilldowns[${LABEL}].sort_keys": [[135, "drilldowns-label-sort-keys"]], "drilldowns[${LABEL}].sortby": [[135, "drilldowns-label-sortby"]], "drilldowns[${LABEL}].table": [[156, "drilldowns-label-table"]], "dump": [[122, null]], "dump_indexes": [[122, "dump-indexes"]], "dump_plugins": [[122, "dump-plugins"]], "dump_records": [[122, "dump-records"]], "dump_schema": [[122, "dump-schema"]], "each": [[125, "each"]], "edit_distance": [[185, null]], "ellipsoid": [[188, "ellipsoid"]], "equal(v1, v2, arg, callback)": [[11, "equal-v1-v2-arg-callback"]], "escalate": [[186, null]], "filter": [[132, "filter"], [134, "filter"], [135, "filter"], [156, "filter"]], "filter_string": [[210, "filter-string"]], "flags": [[111, "flags"], [138, "flags"], [161, "flags"], [165, "flags"], [168, "flags"], [202, "flags"], [203, "flags"], [298, "flags"]], "force": [[137, "force"], [143, "force"]], "from_name": [[110, "from-name"], [160, "from-name"]], "from_table": [[110, "from-table"]], "fuzzy_max_distance": [[156, "fuzzy-max-distance"]], "fuzzy_max_distance_ratio": [[156, "fuzzy-max-distance-ratio"]], "fuzzy_max_expansions": [[156, "fuzzy-max-expansions"]], "fuzzy_prefix_length": [[156, "fuzzy-prefix-length"]], "fuzzy_search": [[187, null]], "fuzzy_with_tokenize": [[156, "fuzzy-with-tokenize"]], "fuzzy_with_transposition": [[156, "fuzzy-with-transposition"]], "generator": [[111, "generator"]], "geo_distance": [[188, null]], "geo_in_circle": [[189, null]], "geo_in_rectangle": [[190, null]], "greater(v1, v2, arg, callback)": [[11, "greater-v1-v2-arg-callback"]], "greater_equal(v1, v2, arg, callback)": [[11, "greater-equal-v1-v2-arg-callback"]], "grn_cache": [[61, null]], "grn_column": [[62, null]], "grn_command_version": [[63, null]], "grn_content_type": [[64, null]], "grn_ctx": [[65, null]], "grn_db": [[66, null]], "grn_encoding": [[67, null]], "grn_expr": [[11, "grn-expr"], [68, null], [223, null]], "grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea": [[11, "id3"]], "grn_geo": [[69, null]], "grn_hook": [[70, null]], "grn_ii": [[71, null]], "grn_index_cursor": [[72, null]], "grn_info": [[73, null]], "grn_inspect": [[74, null]], "grn_match_escalation": [[75, null]], "grn_obj": [[76, null]], "grn_pat_size(): \u30a8\u30e9\u30fc\u6642\u306b0\u3092\u8fd4\u3055\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": [[45, "grn-pat-size-fixed-a-bug-that-0-may-not-be-returned-on-error"]], "grn_proc": [[77, null]], "grn_search": [[78, null]], "grn_table": [[79, null]], "grn_table_cursor": [[80, null]], "grn_table_select()": [[11, "grn-table-select"]], "grn_thread_*": [[81, null]], "grn_type": [[82, null]], "grn_user_data": [[83, null]], "grndb": [[173, null]], "grnslap": [[174, null]], "groonga": [[177, "groonga"], [293, null]], "groonga \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb": [[175, null]], "groonga \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb: context_id\u30ed\u30b0\u30d5\u30e9\u30b0\u3092\u8ffd\u52a0": [[45, "reference-executables-groonga-added-context-id-log-flag"]], "groonga \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb: \u30a8\u30e9\u30fc\u51e6\u7406\u3092\u6539\u826f": [[45, "reference-executables-groonga-improved-error-handling"]], "groonga-benchmark": [[176, null]], "groonga-benchmark\u547d\u4ee4": [[176, "id8"]], "groonga-benchmark\u5b9f\u884c\u7d50\u679c": [[176, "id12"]], "groonga-httpd": [[177, null], [294, null], [296, "groonga-httpd"]], "groonga-httpd\u7279\u6709\u306e\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6": [[177, "groonga-httpd-specific-directives"]], "groonga-server-gqtp": [[296, "groonga-server-gqtp"]], "groonga-server-http": [[296, "groonga-server-http"]], "groonga-suggest-create-dataset": [[179, null]], "groonga-suggest-httpd": [[180, null]], "groonga-suggest-httpd \u3092\u8d77\u52d5": [[180, "launch-groonga-suggest-httpd"]], "groonga-suggest-learner": [[181, null]], "groonga-suggest-learner \u3092\u8d77\u52d5": [[180, "launch-groonga-suggest-learner"]], "groonga_base_path": [[177, "groonga-base-path"]], "groonga_cache_base_path": [[177, "groonga-cache-base-path"]], "groonga_cache_limit": [[177, "groonga-cache-limit"]], "groonga_database": [[177, "groonga-database"]], "groonga_database_auto_create": [[177, "groonga-database-auto-create"]], "groonga_log_level": [[177, "groonga-log-level"]], "groonga_log_path": [[177, "groonga-log-path"]], "groonga_query_log_path": [[177, "groonga-query-log-path"]], "groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e--default-n-workers\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3059\u308b": [[94, "specified-by-default-n-workers-option-of-groonga-executable-file"]], "gzip\u5727\u7e2e": [[292, "gzip-compression"]], "highlight": [[191, null]], "highlight_full": [[192, null]], "highlight_html": [[193, null]], "html": [[194, "html"]], "html_untag": [[194, null]], "id": [[153, "id"]], "ifexists": [[125, "ifexists"]], "ignore_blank": [[275, "ignore-blank"]], "in_records": [[195, null]], "in_values": [[196, null]], "include_class": [[274, "include-class"]], "include_form": [[274, "include-form"]], "include_reading": [[274, "include-reading"]], "index": [[246, "index"], [247, "index"]], "index_column": [[165, "index-column"]], "index_column_diff": [[123, null]], "index_column_diff: \u30d7\u30ed\u30b0\u30ec\u30b9\u30ed\u30b0\u306e\u5909\u66f4\u3092\u30b5\u30dd\u30fc\u30c8": [[45, "reference-commands-index-column-diff-added-support-for-changing-log-level-for-progress-logs"]], "input_type": [[125, "input-type"]], "io_flush": [[124, null]], "kern.maxfileperproc": [[281, "kern-maxfileperproc"]], "key": [[115, "key"], [116, "key"], [117, "key"]], "key_type": [[161, "key-type"]], "keywordN": [[191, "keywordn"], [192, "keywordn"]], "language_model_vectorize": [[197, null]], "language_model_vectorize: Phi-4\u3092\u30b5\u30dd\u30fc\u30c8": [[45, "reference-functions-language-model-vectorize-added-support-for-phi-4"]], "lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "lcov"]], "length": [[208, "length"], [209, "length"]], "less(v1, v2, arg, callback)": [[11, "less-v1-v2-arg-callback"]], "less_equal(v1, v2, arg, callback)": [[11, "less-equal-v1-v2-arg-callback"]], "level": [[129, "level"]], "libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "libmemcached"]], "limit": [[134, "limit"], [135, "limit"], [156, "limit"]], "llama.cpp\u306e\u521d\u671f\u5316\u51e6\u7406\u3092\u9045\u5ef6\u5316": [[45, "made-llama-cpp-initialization-lazy"]], "load": [[125, null]], "load: \u30a8\u30e9\u30fc\u51e6\u7406\u3092\u6539\u826f": [[45, "reference-commands-load-improved-error-handling"]], "load_columns": [[135, "load-columns"], [156, "load-columns"]], "load_table": [[135, "load-table"], [156, "load-table"]], "load_values": [[135, "load-values"], [156, "load-values"]], "location\u30ab\u30e9\u30e0\u306e\u5024\u3092\u4f7f\u3046": [[188, "using-the-column-value-of-location"]], "lock_acquire": [[126, null]], "lock_clear": [[127, null]], "lock_release": [[128, null]], "lock_table": [[125, "lock-table"]], "log_level": [[129, null]], "log_put": [[130, null]], "log_reopen": [[131, null]], "log_reopen \u3067\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30c8\u3092\u5b9f\u65bd\u3059\u308b": [[131, "lotate-log-files-with-log-reopen"]], "logical_count": [[132, null]], "logical_parameters": [[133, null]], "logical_range_filter": [[134, null]], "logical_select": [[135, null]], "logical_shard_list": [[136, null]], "logical_table": [[132, "logical-table"], [134, "logical-table"], [135, "logical-table"], [136, "logical-table"], [137, "logical-table"]], "logical_table_remove": [[137, null]], "loose_blank": [[275, "loose-blank"]], "loose_symbol": [[275, "loose-symbol"]], "macOS": [[27, "macos"], [30, null]], "make": [[31, "make"]], "make install": [[31, "make-install"]], "make \u3092\u5b9f\u884c": [[6, "run-make"]], "match_columns": [[135, "match-columns"], [156, "match-columns"], [202, "match-columns"], [203, "match-columns"]], "match_columns\u30d1\u30e9\u30e1\u30fc\u30bf": [[310, null]], "match_escalation": [[156, "match-escalation"]], "match_escalation_threshold": [[135, "match-escalation-threshold"], [156, "match-escalation-threshold"]], "math_abs": [[198, null]], "max": [[107, "max"], [132, "max"], [134, "max"], [135, "max"], [137, "max"], [167, "max"], [183, "max"]], "max_border": [[132, "max-border"], [134, "max-border"], [135, "max-border"], [137, "max-border"], [183, "max-border"]], "max_n_results": [[205, "max-n-results"]], "min": [[132, "min"], [134, "min"], [135, "min"], [137, "min"], [183, "min"]], "min_border": [[132, "min-border"], [134, "min-border"], [135, "min-border"], [137, "min-border"], [183, "min-border"]], "mmap Cannot allocate memory\u30a8\u30e9\u30fc\u3092\u56de\u907f\u3059\u308b\u306b\u306f": [[303, null]], "mode": [[157, "mode"], [165, "mode"], [168, "mode"], [219, "mode"]], "mode_name": [[195, "mode-name"]], "model_name": [[197, "model-name"]], "n": [[275, "n"]], "n_workers": [[156, "n-workers"]], "name": [[111, "name"], [114, "name"], [123, "name"], [140, "name"], [141, "name"], [143, "name"], [161, "name"], [163, "name"], [164, "name"], [208, "name"]], "near(v1, v2, arg, callback)": [[11, "near-v1-v2-arg-callback"]], "new_name": [[114, "new-name"], [164, "new-name"]], "nginx\u30ed\u30b0\u95a2\u9023\u306e\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6": [[177, "nginx-log-related-directives"]], "nofile": [[281, "nofile"]], "normalize": [[138, null]], "normalized": [[237, "normalized"]], "normalizer": [[138, "normalizer"], [161, "normalizer"], [168, "normalizer"]], "normalizer_list": [[139, null]], "normalizer_name": [[192, "normalizer-name"]], "not_equal(v1, v2, arg, callback)": [[11, "not-equal-v1-v2-arg-callback"]], "now": [[199, null]], "nth": [[208, "nth"], [208, "id4"], [209, "nth"]], "number_classify": [[200, null]], "object_exist": [[140, null]], "object_inspect": [[141, null]], "object_list": [[142, null]], "object_remove": [[143, null]], "offset": [[134, "offset"], [135, "offset"], [156, "offset"]], "only_opened": [[124, "only-opened"]], "open_tagN": [[191, "open-tagn"], [192, "open-tagn"]], "options": [[208, "options"], [208, "id5"], [209, "options"]], "order": [[134, "order"]], "output_columns": [[134, "output-columns"], [135, "output-columns"], [156, "output-columns"]], "output_errors": [[125, "output-errors"]], "output_ids": [[125, "output-ids"]], "path": [[111, "path"], [161, "path"]], "pattern": [[272, "pattern"]], "plugin_register": [[144, null]], "plugin_unregister": [[145, null]], "point1": [[188, "point1"]], "point2": [[188, "point2"]], "post_filter": [[132, "post-filter"], [134, "post-filter"], [135, "post-filter"]], "prefix(v1, v2, arg, callback)": [[11, "prefix-v1-v2-arg-callback"]], "prefix_rk_search": [[201, null]], "progress_log_level": [[123, "progress-log-level"]], "protocol": [[298, "id1"]], "proxy_cache": [[177, "proxy-cache"]], "pull request\u306e\u9001\u308a\u65b9": [[17, "how-to-send-pull-request"]], "query": [[135, "query"], [156, "query"], [201, "query"], [202, null]], "query_expand": [[146, null]], "query_expander": [[135, "query-expander"], [156, "query-expander"], [202, "query-expander"], [203, "query-expander"]], "query_expansion": [[156, "query-expansion"]], "query_flags": [[135, "query-flags"], [156, "query-flags"]], "query_parallel_or": [[203, null]], "query_string": [[202, "query-string"], [203, "query-string"]], "query_type": [[298, "query-type"]], "quit": [[147, null]], "rake release:version:update\u306e\u5b9f\u884c": [[12, "rake-release-version-update"]], "rand": [[204, null]], "range_filter": [[148, null]], "range_index": [[133, "range-index"]], "record_number": [[284, null]], "recover": [[173, "recover"]], "rectangle": [[188, "rectangle"]], "recursive": [[124, "recursive"], [149, "recursive"], [150, "recursive"]], "reference_acquire": [[149, null]], "reference_release": [[150, null]], "regexp": [[208, "regexp"]], "register": [[151, null]], "reindex": [[152, null]], "remove_blank": [[275, "remove-blank"]], "remove_symbol": [[231, "remove-symbol"], [234, "remove-symbol"], [235, "remove-symbol"]], "report_source_location": [[275, "report-source-location"]], "request_cancel": [[153, null]], "ruby_eval": [[154, null]], "schema": [[155, null]], "scope": [[210, "scope"]], "scorer": [[135, "scorer"], [156, "scorer"]], "scorer \u3092\u5229\u7528\u3057\u305f\u30bd\u30fc\u30c8": [[315, "sort-by-using-scorer"]], "scorer_tf_at_most": [[246, null]], "scorer_tf_idf": [[247, null]], "script": [[154, "script"]], "select": [[156, null]], "select \u3068\u306e\u9055\u3044": [[135, "differences-from-select"]], "shard_key": [[132, "shard-key"], [134, "shard-key"], [135, "shard-key"], [137, "shard-key"]], "shutdown": [[157, null]], "similar(v1, v2, arg, callback)": [[11, "similar-v1-v2-arg-callback"]], "size": [[298, "size"]], "slices[${LABEL}].filter": [[156, "slices-label-filter"]], "slices[${LABEL}].limit": [[156, "slices-label-limit"]], "slices[${LABEL}].match_columns": [[156, "slices-label-match-columns"]], "slices[${LABEL}].offset": [[156, "slices-label-offset"]], "slices[${LABEL}].output_columns": [[156, "slices-label-output-columns"]], "slices[${LABEL}].query": [[156, "slices-label-query"]], "slices[${LABEL}].query_expander": [[156, "slices-label-query-expander"]], "slices[${LABEL}].query_flags": [[156, "slices-label-query-flags"]], "slices[${LABEL}].sort_keys": [[156, "slices-label-sort-keys"]], "snippet": [[205, null]], "snippet_html": [[206, null]], "sort_hash_table": [[122, "sort-hash-table"]], "sort_keys": [[134, "sort-keys"], [135, "sort-keys"], [156, "sort-keys"]], "sortby": [[135, "sortby"], [156, "sortby"]], "source": [[111, "source"]], "sphere": [[188, "sphere"]], "status": [[158, null], [298, "status"]], "string": [[138, "string"], [165, "string"], [168, "string"]], "string_length": [[207, null]], "string_slice": [[208, null]], "string_substring": [[209, null]], "sub_filter": [[210, null]], "suffix(v1, v2, arg, callback)": [[11, "suffix-v1-v2-arg-callback"]], "suggest": [[159, null]], "table": [[111, "table"], [112, "table"], [114, "table"], [123, "table"], [125, "table"], [156, "table"], [165, "table"]], "table_copy": [[160, null]], "table_create": [[161, null]], "table_list": [[162, null]], "table_remove": [[163, null]], "table_rename": [[164, null]], "table_tokenize": [[165, null]], "tables": [[122, "tables"]], "target": [[198, "target"], [208, "target"], [208, "id3"], [209, "target"], [221, "target"], [237, "target"]], "target_class": [[274, "target-class"]], "target_name": [[124, "target-name"], [126, "target-name"], [127, "target-name"], [128, "target-name"], [149, "target-name"], [150, "target-name"], [152, "target-name"], [170, "target-name"]], "target_value": [[196, "target-value"]], "text": [[193, "text"], [197, "text"]], "thread_dump": [[166, null]], "thread_limit": [[167, null]], "time_classify_day": [[211, null]], "time_classify_day_of_week": [[212, null]], "time_classify_hour": [[213, null]], "time_classify_minute": [[214, null]], "time_classify_month": [[215, null]], "time_classify_second": [[216, null]], "time_classify_week": [[217, null]], "time_classify_year": [[218, null]], "to_name": [[110, "to-name"], [160, "to-name"]], "to_table": [[110, "to-table"]], "token_filters": [[161, "token-filters"], [168, "token-filters"]], "tokenize": [[168, null]], "tokenizer": [[168, "tokenizer"]], "tokenizer_list": [[169, null]], "truncate": [[170, null]], "type": [[111, "type"]], "unicode_version": [[237, "normalizer-table-unicode-version"]], "unify_alphabet": [[275, "unify-alphabet"]], "unify_digit": [[275, "unify-digit"]], "unify_hyphen": [[231, "unify-hyphen"], [232, "unify-hyphen"], [233, "unify-hyphen"], [234, "unify-hyphen"], [235, "unify-hyphen"], [258, "unify-hyphen"], [259, "unify-hyphen"]], "unify_hyphen_and_prolonged_sound_mark": [[231, "unify-hyphen-and-prolonged-sound-mark"], [232, "unify-hyphen-and-prolonged-sound-mark"], [233, "unify-hyphen-and-prolonged-sound-mark"], [234, "unify-hyphen-and-prolonged-sound-mark"], [235, "unify-hyphen-and-prolonged-sound-mark"], [258, "unify-hyphen-and-prolonged-sound-mark"], [259, "unify-hyphen-and-prolonged-sound-mark"]], "unify_kana": [[231, "unify-kana"], [232, "unify-kana"], [233, "unify-kana"], [234, "unify-kana"], [235, "unify-kana"], [258, "unify-kana"], [259, "unify-kana"]], "unify_kana_case": [[231, "unify-kana-case"], [232, "unify-kana-case"], [233, "unify-kana-case"], [234, "unify-kana-case"], [235, "unify-kana-case"], [258, "unify-kana-case"], [259, "unify-kana-case"]], "unify_kana_hyphen": [[231, "unify-kana-hyphen"], [232, "unify-kana-hyphen"], [233, "unify-kana-hyphen"], [234, "unify-kana-hyphen"], [235, "unify-kana-hyphen"]], "unify_kana_prolonged_sound_mark": [[231, "unify-kana-prolonged-sound-mark"], [232, "unify-kana-prolonged-sound-mark"], [233, "unify-kana-prolonged-sound-mark"], [234, "unify-kana-prolonged-sound-mark"], [235, "unify-kana-prolonged-sound-mark"]], "unify_kana_voiced_sound_mark": [[231, "unify-kana-voiced-sound-mark"], [232, "unify-kana-voiced-sound-mark"], [233, "unify-kana-voiced-sound-mark"], [234, "unify-kana-voiced-sound-mark"], [235, "unify-kana-voiced-sound-mark"], [258, "unify-kana-voiced-sound-mark"], [259, "unify-kana-voiced-sound-mark"]], "unify_katakana_bu_sound": [[231, "unify-katakana-bu-sound"], [232, "unify-katakana-bu-sound"], [233, "unify-katakana-bu-sound"], [234, "unify-katakana-bu-sound"], [235, "unify-katakana-bu-sound"], [258, "unify-katakana-bu-sound"], [259, "unify-katakana-bu-sound"]], "unify_katakana_di_sound": [[231, "unify-katakana-di-sound"], [232, "unify-katakana-di-sound"], [233, "unify-katakana-di-sound"], [234, "unify-katakana-di-sound"], [235, "unify-katakana-di-sound"]], "unify_katakana_du_small_sounds": [[231, "unify-katakana-du-small-sounds"], [232, "unify-katakana-du-small-sounds"], [233, "unify-katakana-du-small-sounds"], [234, "unify-katakana-du-small-sounds"], [235, "unify-katakana-du-small-sounds"]], "unify_katakana_du_sound": [[231, "unify-katakana-du-sound"], [232, "unify-katakana-du-sound"], [233, "unify-katakana-du-sound"], [234, "unify-katakana-du-sound"], [235, "unify-katakana-du-sound"]], "unify_katakana_gu_small_sounds": [[231, "unify-katakana-gu-small-sounds"], [232, "unify-katakana-gu-small-sounds"], [233, "unify-katakana-gu-small-sounds"], [234, "unify-katakana-gu-small-sounds"], [235, "unify-katakana-gu-small-sounds"]], "unify_katakana_trailing_o": [[231, "unify-katakana-trailing-o"], [232, "unify-katakana-trailing-o"], [233, "unify-katakana-trailing-o"], [234, "unify-katakana-trailing-o"], [235, "unify-katakana-trailing-o"]], "unify_katakana_v_sounds": [[231, "unify-katakana-v-sounds"], [232, "unify-katakana-v-sounds"], [233, "unify-katakana-v-sounds"], [234, "unify-katakana-v-sounds"], [235, "unify-katakana-v-sounds"], [258, "unify-katakana-v-sounds"], [259, "unify-katakana-v-sounds"]], "unify_katakana_wo_sound": [[231, "unify-katakana-wo-sound"], [232, "unify-katakana-wo-sound"], [233, "unify-katakana-wo-sound"], [234, "unify-katakana-wo-sound"], [235, "unify-katakana-wo-sound"]], "unify_katakana_zu_small_sounds": [[231, "unify-katakana-zu-small-sounds"], [232, "unify-katakana-zu-small-sounds"], [233, "unify-katakana-zu-small-sounds"], [234, "unify-katakana-zu-small-sounds"], [235, "unify-katakana-zu-small-sounds"]], "unify_latin_alphabet_with": [[231, "unify-latin-alphabet-with"], [235, "unify-latin-alphabet-with"]], "unify_middle_dot": [[231, "unify-middle-dot"], [232, "unify-middle-dot"], [233, "unify-middle-dot"], [234, "unify-middle-dot"], [235, "unify-middle-dot"], [258, "unify-middle-dot"], [259, "unify-middle-dot"]], "unify_prolonged_sound_mark": [[231, "unify-prolonged-sound-mark"], [232, "unify-prolonged-sound-mark"], [233, "unify-prolonged-sound-mark"], [234, "unify-prolonged-sound-mark"], [235, "unify-prolonged-sound-mark"], [258, "unify-prolonged-sound-mark"], [259, "unify-prolonged-sound-mark"]], "unify_symbol": [[275, "unify-symbol"]], "unify_to_katakana": [[231, "unify-to-katakana"], [235, "unify-to-katakana"]], "unify_to_katakana \u3092\u4ed6\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u4f7f\u3046": [[231, "use-unify-to-katakana-with-other-options"], [235, "use-unify-to-katakana-with-other-options"]], "unify_to_romaji": [[231, "unify-to-romaji"], [232, "unify-to-romaji"], [233, "unify-to-romaji"], [234, "unify-to-romaji"], [235, "unify-to-romaji"], [258, "unify-to-romaji"], [259, "unify-to-romaji"]], "use_html_escape": [[192, "use-html-escape"]], "use_range_index": [[134, "use-range-index"]], "use_reading": [[274, "use-reading"]], "value": [[117, "value"], [195, "value"], [196, "value"], [219, "value"]], "value_type": [[161, "value-type"]], "values": [[125, "values"]], "vector": [[219, "vector"]], "vector_find": [[219, null]], "vector_new": [[220, null]], "vector_size": [[221, null]], "vector_slice": [[222, null]], "version": [[231, "version"]], "vm.max_map_count": [[281, "vm-max-map-count"]], "vm.overcommit_memory": [[281, "vm-overcommit-memory"]], "width": [[205, "width"]], "window_count": [[285, null]], "window_rank": [[286, null]], "window_record_number": [[287, null]], "window_sum": [[288, null]], "worker_processes": [[177, "worker-processes"]], "zip": [[33, "zip"]], "{\"default_close_tag\": \"close_tag\"}": [[191, "default-close-tag-close-tag"]], "{\"default_open_tag\": \"open_tag\"}": [[191, "default-open-tag-open-tag"]], "{\"html_escape\": true} or {\"html_mode\": true}": [[191, "html-escape-true-or-html-mode-true"]], "{\"normalizer\": \"Normalizerxxx\"}": [[191, "normalizer-normalizerxxx"]], "{\"normalizers\": \"Normalizerxxx\"}": [[191, "normalizers-normalizerxxx"]], "{\"option\": \"value of option\"}": [[183, "option-value-of-option"], [196, "option-value-of-option"]], "{\"sequential_class_tag_mode\": true}": [[191, "sequential-class-tag-mode-true"], [193, "sequential-class-tag-mode-true"]], "\u3042\u3044\u307e\u3044\u30af\u30a8\u30ea\u30fc\u95a2\u9023\u306e\u5f15\u6570": [[156, "fuzzy-query-related-parameters"]], "\u3042\u308b\u30e6\u30fc\u30b6\u30fc\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u308b\u30e6\u30fc\u30b6\u30fc\u306e\u691c\u7d22": [[311, "search-users-who-follows-specific-user"]], "\u3044\u308d\u3044\u308d\u306a\u30c7\u30fc\u30bf\u306e\u4fdd\u5b58": [[305, null]], "\u304a\u77e5\u3089\u305b": [[35, null]], "\u304a\u77e5\u3089\u305b - 1.3\u7cfb": [[40, null]], "\u304a\u77e5\u3089\u305b - 10\u7cfb": [[41, null]], "\u304a\u77e5\u3089\u305b - 11\u7cfb": [[42, null]], "\u304a\u77e5\u3089\u305b - 12\u7cfb": [[43, null]], "\u304a\u77e5\u3089\u305b - 13\u7cfb": [[44, null]], "\u304a\u77e5\u3089\u305b - 14\u7cfb": [[45, null]], "\u304a\u77e5\u3089\u305b - 15\u7cfb": [[46, null]], "\u304a\u77e5\u3089\u305b - 2\u7cfb": [[47, null]], "\u304a\u77e5\u3089\u305b - 3\u7cfb": [[48, null]], "\u304a\u77e5\u3089\u305b - 4\u7cfb": [[49, null]], "\u304a\u77e5\u3089\u305b - 5\u7cfb": [[50, null]], "\u304a\u77e5\u3089\u305b - 6\u7cfb": [[51, null]], "\u304a\u77e5\u3089\u305b - 7\u7cfb": [[52, null]], "\u304a\u77e5\u3089\u305b - 8\u7cfb": [[53, null]], "\u304a\u77e5\u3089\u305b - 9\u7cfb": [[54, null]], "\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b": [[10, "id5"]], "\u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6": [[315, null]], "\u305d\u3057\u3066Groonga\u3078": [[56, "the-evolution-to-groonga"]], "\u305d\u306e\u4ed6": [[31, null], [244, "others"]], "\u305d\u306e\u4ed6: CMake\u3092\u4f7f\u3063\u3066\u30d3\u30eb\u30c9": [[27, null]], "\u3069\u306e\u3088\u3046\u306b\u52d5\u4f5c\u3059\u308b\u304b": [[250, "how-it-works"], [251, "how-it-works"], [253, "how-it-works"]], "\u306f\u3058\u3081\u306b": [[252, null]], "\u30a2\u30af\u30bb\u30b9\u30ed\u30b0": [[292, "access-log"]], "\u30a2\u30f3\u30ab\u30fc": [[244, "anchor"]], "\u30a4\u30e1\u30fc\u30b8\u306e\u53d6\u5f97": [[29, "pulling-image"]], "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[23, null], [243, "install"]], "\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u754c\u9688\u306e\u72b6\u6cc1": [[56, "the-internet-landscape-at-that-time"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [[244, "index"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u91cd\u307f": [[310, "indexes-with-weight"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0": [[87, "index-column"], [88, null]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0: \u9759\u7684\u306a\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9\u65b9\u6cd5\u306e\u554f\u984c\u3092\u4fee\u6b63": [[45, "reference-columns-index-fixed-an-offline-index-construction-bug"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-an-index-column"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u4e0a\u9650\u5024": [[34, "limitations-of-indexing"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u4ed8\u304d\u30b8\u30aa\u30b5\u30fc\u30c1": [[307, "geo-location-search-with-index"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u540d\u3092\u6307\u5b9a\u3057\u305f\u5168\u6587\u691c\u7d22": [[310, "full-text-search-with-specific-index-name"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5bfe\u8c61\u30c7\u30fc\u30bf\u306e\u7a2e\u985e\u6570\u3068\u5c0f\u3055\u306a\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3067\u6271\u3048\u308b\u30ec\u30b3\u30fc\u30c9\u6570": [[111, "id4"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9": [[226, null]], "\u30a6\u30a3\u30f3\u30c9\u30a6\u95a2\u6570": [[156, "window-function"], [283, null]], "\u30a6\u30a3\u30f3\u30c9\u30a6\u95a2\u6570\u95a2\u9023\u306e\u5f15\u6570": [[132, "window-function-related-parameters"], [134, "window-function-related-parameters"], [135, "window-function-related-parameters"], [156, "window-function-related-parameters"]], "\u30a8\u30a4\u30ea\u30a2\u30b9": [[58, null]], "\u30a8\u30a4\u30ea\u30a2\u30b9\u306e\u89e3\u6c7a\u65b9\u6cd5": [[58, "how-to-resolve-alias"]], "\u30a8\u30b9\u30b1\u30fc\u30d7": [[224, "escape"], [244, "escape"]], "\u30a8\u30e9\u30fc\u306e\u5834\u5408": [[95, "error-case"]], "\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u89e3\u6790\u65b9\u6cd5": [[302, null]], "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb": [[225, "object-literal"]], "\u30aa\u30d7\u30b7\u30e7\u30f3": [[174, "id4"], [175, "options"], [176, "id4"], [179, "options"], [181, "options"]], "\u30ab\u30b9\u30b1\u30fc\u30c9\u524a\u9664": [[121, "cascade-delete"]], "\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831": [[14, "id6"]], "\u30ab\u30e9\u30e0": [[87, null], [141, "column"]], "\u30ab\u30e9\u30e0\u3054\u3068\u306b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u5834\u5408": [[310, "creating-column-index-against-each-column"]], "\u30ab\u30e9\u30e0\u306e\u4f5c\u6210": [[308, "create-a-column"]], "\u30ab\u30e9\u30e0\u306e\u5236\u9650": [[34, "limitations-of-column"]], "\u30ab\u30e9\u30e0\u306e\u8a2d\u5b9a\u306e\u5909\u66f4\u65b9\u6cd5": [[110, "how-to-change-column-configuration"]], "\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306b\u3088\u308b\u95a2\u9023\u30c6\u30fc\u30d6\u30eb\u3092\u307e\u305f\u3050\u691c\u7d22": [[310, "nested-index-search-among-related-table-by-column-index"]], "\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2\u3068\u96c6\u8a08\u30af\u30a8\u30ea": [[0, "column-store-and-aggregate-query"]], "\u30ad\u30e3\u30c3\u30b7\u30e5\u95a2\u9023\u306e\u5f15\u6570": [[132, "cache-related-parameter"], [134, "cache-related-parameter"], [135, "cache-related-parameter"], [156, "cache-related-parameter"]], "\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22": [[311, "search-comments-by-keyword"]], "\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u30e6\u30fc\u30b6\u30fc\u691c\u7d22": [[311, "search-users-by-keyword"]], "\u30ad\u30fc\u30ef\u30fc\u30c9\u3068\u4f4d\u7f6e\u60c5\u5831\u3067\u691c\u7d22": [[311, "search-comments-by-keyword-and-geolocation"]], "\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b": [[11, "id5"]], "\u30af\u30a8\u30ea\u306e\u5b9f\u73fe": [[11, null]], "\u30af\u30a8\u30ea\u30fc\u3092\u5b9f\u884c\u3059\u308b": [[177, "request-queries"]], "\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5": [[177, "query-cache"]], "\u30af\u30a8\u30ea\u30fc\u30ed\u30b0": [[228, "query-log"]], "\u30af\u30a8\u30ea\u30fc\u5c55\u958b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u4e00\u89a7": [[242, null]], "\u30af\u30a8\u30ea\u30fc\u69cb\u6587": [[224, null]], "\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": [[11, "id2"]], "\u30af\u30a8\u30ea\u62e1\u5f35": [[314, null]], "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8": [[1, null]], "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9": [[175, "client-mode"]], "\u30b0\u30eb\u30fc\u30d7": [[244, "group"]], "\u30b0\u30eb\u30fc\u30d7\u5316": [[224, "grouping"], [225, "grouping"]], "\u30b3\u30de\u30f3\u30c9": [[92, null], [175, "command"]], "\u30b3\u30de\u30f3\u30c9\u306e\u66f8\u5f0f": [[308, "command-format"]], "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3": [[93, null]], "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u5909\u66f4": [[292, "custom-command-version"]], "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5": [[93, "id3"]], "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb": [[176, "id9"]], "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3": [[241, "command-line"]], "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570": [[175, "command-line-parameters"], [180, "command-line-parameters"]], "\u30b3\u30de\u30f3\u30c9\u4e00\u89a7": [[171, "commands"], [173, "commands"], [248, "commands"]], "\u30b3\u30df\u30e5\u30cb\u30c6\u30a3": [[2, null]], "\u30b5\u30b8\u30a7\u30b9\u30c8": [[249, null]], "\u30b5\u30b8\u30a7\u30b9\u30c8\u6642\u306b\u5fc5\u9808\u306e\u5f15\u6570": [[180, "required-parameters-for-suggestion"]], "\u30b5\u30b8\u30a7\u30b9\u30c8\u7d50\u679c\u3092\u4f7f\u3046": [[180, "use-suggested-response"]], "\u30b5\u30dd\u30fc\u30c8\u3092\u3084\u3081\u305fOS": [[43, "dropped-support-oses"]], "\u30b5\u30f3\u30d7\u30eb": [[174, "id6"], [176, "id10"]], "\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf": [[224, "sample-data"], [225, "sample-data"]], "\u30b5\u30fc\u30d0\u30fc": [[289, null]], "\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8": [[296, null]], "\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9": [[175, "server-mode"]], "\u30b7\u30d5\u30c8\u6f14\u7b97\u5b50": [[225, "shift-operators"]], "\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0": [[248, null]], "\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0": [[90, null]], "\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-scalar-column"]], "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb": [[176, "id7"]], "\u30b9\u30af\u30ea\u30d7\u30c8\u69cb\u6587": [[225, null]], "\u30b9\u30b3\u30a2\u30e9\u30fc": [[245, null]], "\u30b9\u30b3\u30a2\u30fc\u95a2\u9023\u306e\u5f15\u6570": [[156, "score-related-parameters"]], "\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30fc\u30f3\u30e2\u30fc\u30c9": [[175, "standalone-mode"]], "\u30b9\u30e9\u30a4\u30b9\u95a2\u9023\u306e\u5f15\u6570": [[156, "slice-related-parameters"]], "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3": [[312, "security-issues"]], "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc": [[225, "security"]], "\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7": [[180, "setup"]], "\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc\u306e\u89e3\u6790\u65b9\u6cd5": [[302, "how-to-analyze-socket-errors"]], "\u30bd\u30fc\u30b9\u304b\u3089\u30d3\u30eb\u30c9": [[24, "build-from-source"], [25, "build-from-source"], [28, "build-from-source"], [30, "build-from-source"], [31, "build-from-source"], [32, "build-from-source"], [33, "build-from-source"]], "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9": [[27, "download-source"]], "\u30bf\u30a4\u30d7\u30df\u30b9\u306e\u8a31\u5bb9": [[156, "typo-tolerance"]], "\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8\u6642\u306e\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9": [[99, "return-code-on-timeout"]], "\u30bf\u30b0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7528\u30c6\u30fc\u30d6\u30eb\u306e\u4f5c\u6210": [[161, "create-tag-index-table"]], "\u30bf\u30b0\u691c\u7d22": [[307, "tag-search"]], "\u30bf\u30b0\u691c\u7d22\u30fb\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d": [[307, null]], "\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0\u306a\u3057\u3067\u306e\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9": [[292, "upgrading-without-downtime"]], "\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0": [[2, "chat-room"]], "\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb": [[304, null]], "\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0": [[281, null]], "\u30c4\u30fc\u30eb": [[31, "tools"]], "\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c": [[14, "id5"]], "\u30c6\u30b9\u30c8\u65b9\u6cd5": [[14, null]], "\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9": [[14, "id2"]], "\u30c6\u30b9\u30c8\u95a2\u9023\u306e\u5f15\u6570": [[134, "test-related-parameters"]], "\u30c6\u30fc\u30d6\u30eb": [[141, "table"], [254, null]], "\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53c2\u7167\u3059\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-column-that-refers-a-table-s-record"]], "\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3067\u304d\u306a\u3044\u578b": [[282, "types-that-can-t-be-specified-in-primary-key-of-table"]], "\u30c6\u30fc\u30d6\u30eb\u306e\u4f5c\u6210": [[308, "create-a-table"], [311, "create-a-table"]], "\u30c6\u30fc\u30d6\u30eb\u306e\u5236\u9650": [[34, "limitations-of-table"]], "\u30c6\u30fc\u30d6\u30eb\u306e\u8868\u793a": [[308, "view-a-table"]], "\u30c6\u30fc\u30d6\u30eb\u306e\u8a2d\u5b9a\u306e\u5909\u66f4\u65b9\u6cd5": [[110, "how-to-change-table-configuration"]], "\u30c6\u30fc\u30d6\u30eb\u53c2\u7167": [[305, "reference-types"]], "\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c": [[14, "id11"]], "\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8\u3092\u6709\u52b9\u306b\u3059\u308b": [[99, "enable-request-timeout-by-default"]], "\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u8a2d\u5b9a\u3059\u308b": [[94, "set-the-default-value"]], "\u30c7\u30fc\u30bf\u306e\u30ed\u30fc\u30c9": [[308, "load-records"], [311, "loading-data"]], "\u30c7\u30fc\u30bf\u306e\u7a2e\u985e": [[305, "overview"]], "\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0": [[87, "data-store-columns"]], "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9": [[141, "database"]], "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u4f5c\u6210": [[308, "create-a-database"]], "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u64cd\u4f5c": [[308, "operate-a-database"]], "\u30c7\u30fc\u30bf\u4fdd\u5b58\u7528\u30c6\u30fc\u30d6\u30eb\u306e\u4f5c\u6210": [[161, "create-data-store-table"]], "\u30c7\u30fc\u30bf\u578b": [[282, null]], "\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9": [[175, "daemon-mode"]], "\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0": [[176, "id14"], [300, null]], "\u30c8\u30ec\u30fc\u30b9\u30ed\u30b0\u306e\u51fa\u529b": [[96, null]], "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc": [[263, null]], "\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc": [[256, null]], "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "id17"]], "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u7de8\u96c6\u3059\u308b\u65b9\u6cd5": [[18, "how-to-edit-documentation"]], "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u95a2\u9023\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5": [[15, null]], "\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3": [[156, "drilldown"], [306, null]], "\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679c\u306e\u5236\u9650": [[306, "limits-drilldown-results"]], "\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679c\u3092\u30bd\u30fc\u30c8\u3059\u308b": [[306, "sorting-drilldown-results"]], "\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u95a2\u9023\u306e\u5f15\u6570": [[135, "drilldown-related-parameters"], [156, "drilldown-related-parameters"]], "\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc": [[229, null]], "\u30ce\u30fc\u30de\u30eb\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0": [[90, "normal-scalar-column"]], "\u30ce\u30fc\u30de\u30eb\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": [[91, "normal-vector-column"]], "\u30cf\u30a4\u30e9\u30a4\u30c8": [[44, "higlight"]], "\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u3067\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22": [[311, "search-comments-by-hash-tags"]], "\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8\u306e\u9001\u308a\u65b9": [[19, null]], "\u30d0\u30fc\u30b8\u30e7\u30f30\u7cfb\u306e\u304a\u77e5\u3089\u305b": [[36, null]], "\u30d0\u30fc\u30b8\u30e7\u30f31.0\u7cfb\u306e\u304a\u77e5\u3089\u305b": [[37, null]], "\u30d0\u30fc\u30b8\u30e7\u30f31.1\u7cfb\u306e\u304a\u77e5\u3089\u305b": [[38, null]], "\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051": [[93, "id2"]], "\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "id13"]], "\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044": [[12, "id22"]], "\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8": [[12, "id5"]], "\u30d1\u30c3\u30c1\u306e\u9001\u308a\u65b9": [[17, "how-to-send-patch"]], "\u30d1\u30c3\u30c1\u3092\u9001\u308b": [[18, "send-patch"]], "\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22": [[313, null]], "\u30d3\u30c3\u30c8\u5426\u5b9a\u6f14\u7b97\u5b50": [[225, "bitwise-not-operator"]], "\u30d3\u30c3\u30c8\u6392\u4ed6\u7684\u8ad6\u7406\u548c\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "bitwise-xor-assignment-operator"]], "\u30d3\u30c3\u30c8\u6392\u4ed6\u7684\u8ad6\u7406\u548c\u6f14\u7b97\u5b50": [[225, "bitwise-xor-operator"]], "\u30d3\u30c3\u30c8\u6f14\u7b97\u5b50": [[225, "bitwise-operators"]], "\u30d3\u30c3\u30c8\u8ad6\u7406\u548c\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "bitwise-or-assignment-operator"]], "\u30d3\u30c3\u30c8\u8ad6\u7406\u548c\u6f14\u7b97\u5b50": [[225, "bitwise-or-operator"]], "\u30d3\u30c3\u30c8\u8ad6\u7406\u7a4d\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "bitwise-and-assignment-operator"]], "\u30d3\u30c3\u30c8\u8ad6\u7406\u7a4d\u6f14\u7b97\u5b50": [[225, "bitwise-and-operator"]], "\u30d3\u30eb\u30c9\u304a\u3088\u3073\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[27, "build-and-install-groonga"]], "\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099": [[12, "id4"]], "\u30d5\u30a9\u30fc\u30de\u30c3\u30c8": [[96, "format"], [228, "format"], [228, "id3"], [243, "format"]], "\u30d5\u30ec\u30fc\u30ba\u691c\u7d22\u6761\u4ef6": [[224, "phrase-search-condition"]], "\u30d5\u30ec\u30fc\u30ba\u691c\u7d22\u6761\u4ef6\uff08\u30de\u30c3\u30c1\u30ab\u30e9\u30e0\u6307\u5b9a\u3042\u308a\uff09": [[224, "phrase-search-condition-with-explicit-match-column"]], "\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9\u306e\u7ba1\u7406\u30c4\u30fc\u30eb": [[312, "administration-tool-http"]], "\u30d6\u30e9\u30b8\u30eb\u793e\u306e\u8a95\u751f\u3068Senna": [[56, "the-birth-of-brazil-inc-and-senna"]], "\u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8": [[97, null]], "\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u6e96\u5099\u3092\u3059\u308b": [[18, "prepare-your-pull-request"]], "\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u308b": [[18, "submit-your-pull-request"]], "\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9\u306e\u5909\u66f4": [[292, "custom-prefix-path"]], "\u30d7\u30ed\u30bb\u30b9\u30ed\u30b0": [[228, "process-log"]], "\u30d7\u30ed\u30c8\u30b3\u30eb": [[298, "protocol"]], "\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b": [[282, "id3"]], "\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": [[91, null], [305, "vector-types"]], "\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0: \u5fc5\u8981\u306a\u30ad\u30e3\u30b9\u30c8\u304c\u5b9f\u884c\u3055\u308c\u306a\u3044\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63": [[45, "reference-columns-vector-fixed-a-bug-that-needed-cast-may-not-be-done"]], "\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-vector-column"]], "\u30da\u30fc\u30b8\u30f3\u30b0": [[156, "paging"]], "\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210": [[311, null]], "\u30de\u30c3\u30c1\u6f14\u7b97\u5b50": [[225, "match-operator"]], "\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-multiple-columns-index-column"]], "\u30df\u30c3\u30b7\u30f3\u30b0\u30e2\u30fc\u30c9": [[111, "missing-mode"]], "\u30e1\u30e2\u30ea\u4f7f\u7528\u91cf": [[281, "memory-usage"]], "\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8": [[2, "mailing-list"]], "\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8\u3078\u5831\u544a\u3059\u308b": [[19, "report-a-bug-to-the-mailing-list"]], "\u30e6\u30fc\u30b6\u30fcID\u3067\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22": [[311, "search-comments-by-user-id"]], "\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd": [[10, null]], "\u30e6\u30fc\u30b6\u30fc\u306e\u304a\u6c17\u306b\u5165\u308a\u306e\u30b3\u30e1\u30f3\u30c8\u4e00\u89a7": [[311, "search-user-s-favorite-comments"]], "\u30e6\u30fc\u30b6\u30fc\u306e\u5165\u529b\u304b\u3089\u5b66\u7fd2": [[180, "learn-from-user-inputs"]], "\u30e9\u30a4\u30d6\u30e9\u30ea": [[31, "libraries"]], "\u30ea\u30af\u30a8\u30b9\u30c8ID": [[98, null]], "\u30ea\u30af\u30a8\u30b9\u30c8\u306bID\u3092\u5272\u308a\u5f53\u3066\u308b\u65b9\u6cd5": [[98, "how-to-assign-id-to-request"]], "\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8\u3092\u8a2d\u5b9a\u3059\u308b\u65b9\u6cd5": [[99, "how-to-set-timeout-to-request"]], "\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8": [[99, null]], "\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9": [[100, null]], "\u30ea\u30c6\u30e9\u30eb": [[225, "literals"]], "\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7\u3068\u30ad\u30e3\u30c3\u30b7\u30e5": [[177, "reverse-proxy-and-cache"]], "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9": [[60, "reference"], [61, "reference"], [62, "reference"], [63, "reference"], [64, "reference"], [65, "reference"], [66, "reference"], [67, "reference"], [68, "reference"], [69, "reference"], [70, "reference"], [71, "reference"], [72, "reference"], [73, "reference"], [74, "reference"], [75, "reference"], [76, "reference"], [77, "reference"], [78, "reference"], [79, "reference"], [80, "reference"], [81, "reference"], [82, "reference"], [83, "reference"], [84, "reference"], [85, "reference"]], "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb": [[57, null]], "\u30ea\u30dd\u30b8\u30c8\u30ea": [[13, null]], "\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u304b\u3089Groonga\u3092\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8": [[6, "checkout-groonga-from-the-repository"], [7, "checkout-groonga-from-the-repository"], [8, "checkout-groonga-from-the-repository"]], "\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5": [[5, null]], "\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9": [[312, null]], "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9": [[12, "id19"]], "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210": [[12, "id16"]], "\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a": [[12, "id11"]], "\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210": [[12, "id6"]], "\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068": [[12, "id20"]], "\u30ea\u30ea\u30fc\u30b9\u624b\u9806": [[12, null]], "\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "id12"]], "\u30eb\u30fc\u30eb": [[248, "rules"]], "\u30ec\u30b3\u30fc\u30c9ID": [[254, "record-id"]], "\u30ec\u30b3\u30fc\u30c9\u306e\u53d6\u5f97": [[308, "get-a-record"]], "\u30ed\u30b0": [[228, null]], "\u30ed\u30fc\u30c9\u65b9\u6cd5": [[91, "how-to-load"], [91, "id4"], [91, "id8"]], "\u30ed\u30fc\u30de\u5b57\u304b\u3089\u8aad\u307f\u3078\u306e\u5909\u63db": [[240, "how-to-convert-romaji-to-reading"]], "\u4e00\u6642\u30c6\u30fc\u30d6\u30eb": [[254, "temporary-table"]], "\u4e00\u89a7": [[100, "list"]], "\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa": [[14, "id10"]], "\u4e0d\u6b63\u30e2\u30fc\u30c9": [[111, "invalid-mode"]], "\u4e0d\u7b49\u4fa1\u6761\u4ef6": [[224, "not-equal-condition"]], "\u4e0d\u7b49\u4fa1\u6f14\u7b97\u5b50": [[225, "not-equal-operator"]], "\u4e26\u5217\u5b9f\u884c": [[94, null]], "\u4e26\u5217\u5b9f\u884c\u306e\u30b5\u30dd\u30fc\u30c8\u72b6\u6cc1": [[94, "parallel-execution-support"]], "\u4e2d\u30b5\u30a4\u30ba\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-medium-index-column"]], "\u4e3b\u306a\u30b3\u30de\u30f3\u30c9": [[308, "basic-commands"]], "\u4e3b\u306a\u539f\u56e0": [[101, "major-cause"], [102, "major-cause"], [103, "major-cause"], [104, "major-cause"], [105, "major-cause"], [106, "major-cause"]], "\u4e3b\u306a\u5bfe\u7b56": [[101, "major-action-on-this-error"], [102, "major-action-on-this-error"], [103, "major-action-on-this-error"], [104, "major-action-on-this-error"], [105, "major-action-on-this-error"], [106, "major-action-on-this-error"]], "\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22": [[313, "prefix-search-by-primary-key"]], "\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22": [[313, "suffix-search-by-primary-key"]], "\u4e57\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "multiplication-assignment-operator"]], "\u4e57\u7b97\u6f14\u7b97\u5b50": [[225, "multiplication-operator"]], "\u4ed5\u69d8": [[297, null]], "\u4ee3\u5165\u5f0f": [[224, "assignment-expression"]], "\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "assignment-operators"]], "\u4ee5\u4e0a\u6761\u4ef6": [[224, "greater-than-or-equal-to-condition"]], "\u4ee5\u4e0a\u6f14\u7b97\u5b50": [[225, "greater-than-or-equal-to-operator"]], "\u4ee5\u4e0b\u6761\u4ef6": [[224, "less-than-or-equal-to-condition"]], "\u4ee5\u4e0b\u6f14\u7b97\u5b50": [[225, "less-than-or-equal-to-operator"]], "\u4efb\u610f: \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u7ffb\u8a33\u3059\u308b": [[18, "optional-translate-documentation"]], "\u4f4d\u7f6e\u306b\u3088\u308b\u62bd\u51fa": [[208, "extraction-by-position"], [208, "id1"]], "\u4f4d\u7f6e\u60c5\u5831(GeoPoint)\u3067\u30e6\u30fc\u30b6\u30fc\u691c\u7d22": [[311, "search-users-by-geolocation-data-geopoint"]], "\u4f4d\u7f6e\u60c5\u5831\u3092\u7528\u3044\u305f\u7d5e\u8fbc\u30fb\u30bd\u30fc\u30c8": [[315, "narrow-down-sort-by-using-location-information"]], "\u4f4d\u7f6e\u60c5\u5831\u691c\u7d22": [[239, null]], "\u4f4d\u7f6e\u60c5\u5831\uff08\u7def\u5ea6\u30fb\u7d4c\u5ea6\uff09\u691c\u7d22": [[0, "geo-location-latitude-and-longitude-search"]], "\u4f5c\u308a\u65b9": [[90, "how-to-create"], [91, "how-to-create"], [91, "id3"], [91, "id7"], [91, "id11"]], "\u4f7f\u3044\u65b9": [[58, "usage"], [88, "usage"], [90, "usage"], [91, "usage"], [94, "how-to-use"], [96, "usage"], [97, "usage"], [107, "usage"], [108, "usage"], [109, "usage"], [110, "usage"], [111, "usage"], [112, "usage"], [113, "usage"], [114, "usage"], [115, "usage"], [116, "usage"], [117, "usage"], [118, "usage"], [119, "usage"], [120, "usage"], [121, "usage"], [122, "usage"], [123, "usage"], [124, "usage"], [125, "usage"], [126, "usage"], [127, "usage"], [128, "usage"], [129, "usage"], [130, "usage"], [131, "usage"], [132, "usage"], [133, "usage"], [134, "usage"], [135, "usage"], [136, "usage"], [137, "usage"], [138, "usage"], [139, "usage"], [140, "usage"], [141, "usage"], [142, "usage"], [143, "usage"], [144, "usage"], [145, "usage"], [146, "usage"], [147, "usage"], [148, "usage"], [149, "usage"], [150, "usage"], [151, "usage"], [152, "usage"], [153, "usage"], [154, "usage"], [155, "usage"], [156, "usage"], [157, "usage"], [158, "usage"], [159, "usage"], [160, "usage"], [161, "usage"], [162, "usage"], [163, "usage"], [164, "usage"], [165, "usage"], [166, "usage"], [167, "usage"], [168, "usage"], [169, "usage"], [170, "usage"], [173, "usage"], [175, "usage"], [176, "id6"], [177, "usage"], [178, "usage"], [180, "usage"], [181, "usage"], [183, "usage"], [184, "usage"], [186, "usage"], [188, "usage"], [191, "usage"], [192, "usage"], [193, "usage"], [194, "usage"], [195, "usage"], [196, "usage"], [197, "usage"], [198, "usage"], [200, "usage"], [201, "usage"], [202, "usage"], [203, "usage"], [205, "usage"], [206, "usage"], [207, "usage"], [208, "usage"], [209, "usage"], [210, "usage"], [211, "usage"], [212, "usage"], [213, "usage"], [214, "usage"], [215, "usage"], [216, "usage"], [217, "usage"], [218, "usage"], [219, "usage"], [220, "usage"], [221, "usage"], [222, "usage"], [226, "how-to-use"], [230, "usage"], [231, "usage"], [232, "usage"], [233, "usage"], [234, "usage"], [235, "usage"], [236, "usage"], [237, "usage"], [240, "usage"], [241, "usage"], [243, "usage"], [244, "usage"], [245, "usage"], [246, "usage"], [247, "usage"], [250, "how-to-use"], [251, "how-to-use"], [253, "how-to-use"], [257, "usage"], [258, "usage"], [259, "usage"], [260, "usage"], [261, "usage"], [264, "usage"], [265, "usage"], [266, "usage"], [267, "usage"], [268, "usage"], [269, "usage"], [270, "usage"], [271, "usage"], [272, "usage"], [273, "usage"], [274, "usage"], [275, "usage"], [276, "usage"], [277, "usage"], [278, "usage"], [279, "usage"], [280, "usage"], [284, "usage"], [285, "usage"], [286, "usage"], [287, "usage"], [288, "usage"]], "\u4f8b": [[21, "examples"], [61, "example"], [62, "example"], [63, "example"], [65, "example"], [66, "example"], [67, "example"], [68, "example"], [69, "example"], [70, "example"], [71, "example"], [72, "example"], [73, "example"], [74, "example"], [75, "example"], [76, "example"], [77, "example"], [78, "example"], [79, "example"], [80, "example"], [81, "example"], [82, "example"], [83, "example"], [84, "example"], [179, "example"], [185, "id6"], [189, "id7"], [190, "id7"], [199, "id5"], [204, "id6"], [298, "example"], [301, "id2"], [302, "example"], [303, "example"]], "\u4f9d\u5b58\u95a2\u4fc2": [[31, "dependencies"]], "\u4fee\u6b63": [[36, "id4"], [36, "id7"], [37, "id3"], [37, "id7"], [37, "id10"], [37, "id15"], [37, "id20"], [37, "id25"], [37, "id30"], [37, "id34"], [37, "id38"], [38, "id4"], [39, "fixes"], [39, "id2"], [39, "id5"], [39, "id8"], [39, "id11"], [39, "id13"], [39, "id16"], [39, "id19"], [39, "id22"], [39, "id26"], [41, "fixes"], [41, "id2"], [41, "id5"], [41, "id8"], [41, "id11"], [41, "id13"], [41, "id16"], [41, "id19"], [41, "id22"], [41, "id25"], [41, "id27"], [42, "fixes"], [42, "id2"], [42, "id6"], [42, "id10"], [42, "id13"], [42, "id17"], [42, "id21"], [42, "id28"], [42, "id35"], [42, "id39"], [43, "fixes"], [43, "id3"], [43, "id5"], [43, "id7"], [43, "id9"], [43, "id11"], [43, "id15"], [43, "id17"], [43, "id24"], [43, "id26"], [44, "fixes"], [44, "id2"], [44, "id4"], [44, "id6"], [44, "id7"], [44, "id9"], [44, "id10"], [44, "id12"], [44, "id14"], [44, "id16"], [44, "id19"], [44, "id24"], [45, "fixes"], [45, "id2"], [45, "id4"], [45, "id6"], [45, "id7"], [45, "id9"], [45, "id12"], [45, "id16"], [45, "id17"], [45, "id19"], [45, "id22"], [45, "id25"], [47, "fixes"], [47, "id1"], [47, "id3"], [47, "id6"], [47, "id9"], [47, "id12"], [47, "id15"], [47, "id18"], [47, "id21"], [47, "id24"], [47, "id27"], [47, "id30"], [47, "id33"], [48, "fixes"], [48, "id2"], [48, "id5"], [48, "id8"], [48, "id11"], [48, "id14"], [48, "id17"], [48, "id20"], [48, "id23"], [48, "id27"], [48, "id30"], [48, "id32"], [49, "fixes"], [49, "id1"], [49, "id3"], [49, "id6"], [49, "id9"], [49, "id12"], [49, "id15"], [49, "id18"], [49, "id21"], [49, "id24"], [49, "id27"], [49, "id30"], [50, "fixes"], [50, "id2"], [50, "id5"], [50, "id8"], [50, "id11"], [50, "id14"], [50, "id17"], [50, "id20"], [50, "id23"], [50, "id26"], [50, "id29"], [50, "id32"], [50, "id35"], [51, "fixes"], [51, "id2"], [51, "id4"], [51, "id6"], [51, "id9"], [51, "id11"], [51, "id14"], [51, "id17"], [51, "id20"], [51, "id23"], [51, "id25"], [51, "id28"], [51, "id31"], [51, "id34"], [51, "id37"], [52, "fixes"], [52, "id2"], [52, "id5"], [52, "id8"], [52, "id10"], [52, "id12"], [52, "id15"], [52, "id18"], [52, "id21"], [52, "id24"], [52, "id26"], [52, "id29"], [53, "fixes"], [53, "id2"], [53, "id4"], [53, "id6"], [53, "id9"], [53, "id11"], [53, "id13"], [53, "id15"], [53, "id17"], [53, "id19"], [53, "id22"], [53, "id25"], [54, "fixes"], [54, "id4"], [54, "id7"], [54, "id9"], [54, "id12"], [54, "id15"], [54, "id18"], [54, "id21"], [54, "id24"], [54, "id27"], [55, "fixes"]], "\u5168\u30c6\u30fc\u30d6\u30eb\u306e\u7279\u5fb4": [[254, "id5"]], "\u5168\u30ec\u30b3\u30fc\u30c9\u6570": [[156, "the-total-number-of-records"]], "\u5168\u4f53\u8a2d\u5b9a": [[60, null]], "\u5168\u6587\u691c\u7d22": [[308, "full-text-search"]], "\u5168\u6587\u691c\u7d22\u3068\u5373\u6642\u66f4\u65b0": [[0, "full-text-search-and-instant-update"]], "\u5168\u6587\u691c\u7d22\u6761\u4ef6": [[224, "full-text-search-condition"]], "\u5168\u6587\u691c\u7d22\u6761\u4ef6\uff08\u30de\u30c3\u30c1\u30ab\u30e9\u30e0\u6307\u5b9a\u3042\u308a\uff09": [[224, "full-text-search-condition-with-explicit-match-column"]], "\u5168\u6587\u691c\u7d22\u7528\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u4f5c\u6210": [[308, "create-an-index-column-for-full-text-search"]], "\u5168\u6587\u691c\u7d22\u7528\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-an-index-column-for-full-text-search"]], "\u5168\u6587\u691c\u7d22\u7528\u306e\u8a9e\u5f59\u8868\u306e\u4f5c\u6210": [[308, "create-a-lexicon-table-for-full-text-search"], [309, null]], "\u5171\u6709\u53ef\u80fd\u306a\u30b9\u30c8\u30ec\u30fc\u30b8\u3068\u53c2\u7167\u30ed\u30c3\u30af\u30d5\u30ea\u30fc": [[0, "sharable-storage-and-read-lock-free"]], "\u5171\u8d77\u691c\u7d22": [[250, "cooccurrence-search"], [251, "cooccurrence-search"], [253, "cooccurrence-search"]], "\u51fa\u529b": [[241, null]], "\u51fa\u529b\u30ab\u30e9\u30e0\u306e\u6307\u5b9a": [[308, "specify-output-columns"]], "\u51fa\u529b\u5f62\u5f0f": [[95, null]], "\u51fa\u529b\u95a2\u9023\u306e\u5f15\u6570": [[134, "output-related-parameters"], [135, "output-related-parameters"], [156, "output-related-parameters"]], "\u5229\u7528\u30ea\u30bd\u30fc\u30b9\u306e\u524a\u6e1b": [[137, "decreases-used-resources"], [163, "decreases-used-resources"]], "\u5229\u7528\u53ef\u80fd\u306anginx\u30e2\u30b8\u30e5\u30fc\u30eb": [[177, "available-nginx-modules"]], "\u5236\u5fa1\u69cb\u6587": [[225, "control-syntaxes"]], "\u5236\u9650": [[91, "limitations"], [243, "limitation"], [254, "limitations"]], "\u5236\u9650\u4e8b\u9805": [[34, null], [176, "id13"]], "\u524a\u9664\u3067\u304d\u306a\u3044\u30b1\u30fc\u30b9": [[137, "unremovable-cases"], [163, "unremovable-cases"]], "\u524d\u63d0\u6761\u4ef6": [[12, "id2"]], "\u524d\u65b9\u4e00\u81f4RK\u691c\u7d22": [[240, null], [250, "prefix-rk-search"]], "\u524d\u65b9\u4e00\u81f4\u691c\u7d22": [[250, "prefix-search"]], "\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u6761\u4ef6": [[224, "prefix-search-condition"]], "\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "prefix-search-operator"]], "\u5270\u4f59\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "modulo-assignment-operator"]], "\u52a0\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "addition-assignment-operator"]], "\u52a0\u7b97\u6f14\u7b97\u5b50": [[225, "addition-operator"]], "\u52d5\u7684\u306a\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9\u65b9\u6cd5": [[226, "online-index-construction"]], "\u52d5\u7684\u30ab\u30e9\u30e0": [[156, "dynamic-column"]], "\u52d5\u7684\u30ab\u30e9\u30e0\u95a2\u9023\u306e\u5f15\u6570": [[132, "dynamic-column-related-parameters"], [134, "dynamic-column-related-parameters"], [135, "dynamic-column-related-parameters"], [156, "dynamic-column-related-parameters"]], "\u5358\u8a9e\u62bd\u51fa\u6f14\u7b97\u5b50": [[225, "term-extract-operator"]], "\u539f\u56e0": [[301, "id3"]], "\u53c2\u7167": [[90, "see-also"], [298, "see-also"]], "\u53c2\u7167\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0": [[90, "reference-scalar-column"]], "\u53c2\u7167\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": [[91, "reference-vector-column"]], "\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d": [[307, "reverse-resolution-of-reference-relationships"]], "\u53c2\u8003": [[6, "see-also"], [7, "see-also"], [8, "see-also"], [58, "see-also"], [95, "see-also"], [98, "see-also"], [99, "see-also"], [100, "see-also"], [107, "see-also"], [109, "see-also"], [111, "see-also"], [112, "see-also"], [115, "see-also"], [116, "see-also"], [117, "see-also"], [119, "see-also"], [121, "see-also"], [125, "see-also"], [126, "see-also"], [128, "see-also"], [129, "see-also"], [130, "see-also"], [131, "see-also"], [136, "see-also"], [138, "see-also"], [139, "see-also"], [142, "see-also"], [144, "see-also"], [145, "see-also"], [146, "see-also"], [148, "see-also"], [151, "see-also"], [153, "see-also"], [154, "see-also"], [155, "see-also"], [156, "see-also"], [159, "see-also"], [161, "see-also"], [165, "see-also"], [168, "see-also"], [169, "see-also"], [178, "see-also"], [179, "see-also"], [180, "see-also"], [184, "see-also"], [191, "see-also"], [192, "see-also"], [193, "see-also"], [201, "see-also"], [202, "see-also"], [203, "see-also"], [205, "see-also"], [206, "see-also"], [210, "see-also"], [223, "see-also"], [229, "see-also"], [230, "see-also"], [231, "see-also"], [232, "see-also"], [233, "see-also"], [234, "see-also"], [235, "see-also"], [237, "see-also"], [240, "see-also"], [243, "see-also"], [246, "see-also"], [247, "see-also"], [254, "see-also"], [255, "see-also"], [272, "see-also"], [274, "see-also"], [275, "see-also"], [276, "see-also"], [278, "see-also"], [286, "see-also"]], "\u53ef\u80fd\u306a\u9650\u308a\u58ca\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664": [[137, "removes-broken-tables-as-much-as-possible"]], "\u5404\u7a2e\u30c6\u30b9\u30c8\u306e\u78ba\u8a8d": [[12, "id10"]], "\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b": [[301, null]], "\u540d\u524d": [[89, "id1"], [174, "id1"], [176, "id1"], [179, "name"], [185, "id1"], [189, "id1"], [190, "id1"], [199, "id1"], [204, "id1"], [282, "name"]], "\u56fd\u969b\u5316": [[17, null]], "\u578b": [[141, "type"]], "\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805": [[282, "limitations-about-types"]], "\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[137, "basic-usage"], [163, "basic-usage"]], "\u57fa\u672c\u7684\u306a\u64cd\u4f5c": [[308, null]], "\u57fa\u672c\u7684\u306a\u6f14\u7b97\u5b50": [[225, "basic-operators"]], "\u5834\u6240": [[243, "location"]], "\u5909\u66f4": [[37, "id14"], [37, "id19"], [37, "id24"], [37, "id29"]], "\u5909\u66f4\u3092\u53cd\u6620\u3057\u305fHTML\u30d5\u30a1\u30a4\u30eb\u3092\u751f\u6210\u3059\u308b": [[18, "generate-the-html-files-with-your-changes"]], "\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081": [[12, "id9"]], "\u5927\u304d\u306a\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-large-index-column"]], "\u5927\u304d\u306a\u30c7\u30fc\u30bf\u4fdd\u5b58\u7528\u30c6\u30fc\u30d6\u30eb\u306e\u4f5c\u6210": [[161, "create-large-data-store-table"]], "\u5927\u306a\u308a\u6761\u4ef6": [[224, "greater-than-condition"]], "\u5927\u306a\u308a\u6f14\u7b97\u5b50": [[225, "greater-than-operator"]], "\u5b66\u7fd2": [[252, "learning"]], "\u5b66\u7fd2\u30c7\u30fc\u30bf\u3092\u62bd\u51fa\u3059\u308b\u65b9\u6cd5": [[253, "how-to-extract-learning-data"]], "\u5b66\u7fd2\u65b9\u6cd5": [[250, "how-it-learns"], [251, "how-it-learns"], [253, "how-it-learns"]], "\u5b66\u7fd2\u6642\u306b\u5fc5\u9808\u306e\u5f15\u6570": [[180, "required-parameters-for-learning"]], "\u5b66\u7fd2\u6642\u306b\u6307\u5b9a\u53ef\u80fd\u306a\u5f15\u6570": [[180, "optional-parameters-for-learning"]], "\u5b8c\u5168\u4e00\u81f4\u691c\u7d22": [[299, "id3"]], "\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb": [[172, null]], "\u5b9f\u9a13\u7684": [[39, "id27"]], "\u5bfe\u5fdc": [[10, "id4"], [10, "id7"], [10, "id9"]], "\u5bfe\u5fdc\u3057\u3066\u3044\u308b\u6a5f\u80fd": [[239, "supported-features"]], "\u5bfe\u7b56\u65b9\u6cd5": [[303, "solution"]], "\u5bfe\u7b56\u65b9\u6cd51: \u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b": [[301, "id4"]], "\u5bfe\u7b56\u65b9\u6cd52: \u95be\u5024\u3092\u3042\u3052\u308b": [[301, "id5"]], "\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u30fb\u30ab\u30e9\u30e0\u3082\u4e00\u7dd2\u306b\u524a\u9664": [[163, "removes-a-table-with-tables-and-columns-that-reference-the-target-table"]], "\u5c0e\u5165": [[18, null]], "\u5c0f\u3055\u306a\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-small-index-column"]], "\u5c0f\u306a\u308a\u6761\u4ef6": [[224, "less-than-condition"]], "\u5c0f\u306a\u308a\u6f14\u7b97\u5b50": [[225, "less-than-operator"]], "\u5de6\u30b7\u30d5\u30c8\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "bitwise-left-shift-assignment-operator"]], "\u5de6\u30b7\u30d5\u30c8\u6f14\u7b97\u5b50": [[225, "left-shift-operator"]], "\u5e38\u99d0\u30d7\u30ed\u30bb\u30b9\u3067\u5229\u7528\u3059\u308b\u5834\u5408": [[94, "for-use-as-a-daemon-process"]], "\u5ea7\u6a19\u5024": [[225, "geo-point"]], "\u5f15\u6570": [[107, "parameters"], [108, "parameters"], [109, "parameters"], [110, "parameters"], [111, "parameters"], [112, "parameters"], [113, "parameters"], [114, "parameters"], [115, "parameters"], [116, "parameters"], [117, "parameters"], [118, "parameters"], [119, "parameters"], [120, "parameters"], [121, "parameters"], [122, "parameters"], [123, "parameters"], [124, "parameters"], [125, "parameters"], [126, "parameters"], [127, "parameters"], [128, "parameters"], [129, "parameters"], [130, "parameters"], [131, "parameters"], [132, "parameters"], [133, "parameters"], [134, "parameters"], [135, "parameters"], [136, "parameters"], [137, "parameters"], [138, "parameters"], [140, "parameters"], [141, "parameters"], [142, "parameters"], [143, "parameters"], [146, "parameters"], [147, "parameters"], [149, "parameters"], [150, "parameters"], [152, "parameters"], [153, "parameters"], [154, "parameters"], [155, "parameters"], [156, "parameters"], [157, "parameters"], [158, "parameters"], [159, "parameters"], [160, "parameters"], [161, "parameters"], [162, "parameters"], [163, "parameters"], [164, "parameters"], [165, "parameters"], [166, "parameters"], [167, "parameters"], [168, "parameters"], [170, "parameters"], [174, "id5"], [176, "id5"], [181, "parameters"], [183, "parameters"], [185, "id4"], [186, "parameters"], [188, "parameters"], [189, "id4"], [190, "id4"], [191, "parameters"], [192, "parameters"], [193, "parameters"], [194, "parameters"], [195, "parameters"], [196, "parameters"], [197, "parameters"], [198, "parameters"], [201, "parameters"], [202, "parameters"], [203, "parameters"], [204, "id4"], [205, "parameters"], [208, "parameters"], [209, "parameters"], [210, "parameters"], [211, "parameters"], [219, "parameters"], [220, "parameters"], [221, "parameters"], [231, "parameters"], [232, "parameters"], [233, "parameters"], [234, "parameters"], [235, "parameters"], [237, "parameters"], [246, "parameters"], [247, "parameters"], [257, "parameters"], [258, "parameters"], [259, "parameters"], [260, "parameters"], [261, "parameters"], [272, "parameters"], [274, "parameters"], [275, "parameters"], [281, "parameters"], [286, "parameters"]], "\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u6761\u4ef6": [[224, "suffix-search-condition"]], "\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "suffix-search-operator"]], "\u5fc5\u8981\u306a\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[6, "install-depended-software"], [8, "install-depended-software"], [18, "install-dependent-software"], [27, "install-depended-software"]], "\u5fc5\u8981\u6761\u4ef6": [[194, "requirements"], [197, "requirements"]], "\u5fc5\u9808\u5f15\u6570": [[110, "required-parameters"], [111, "required-parameters"], [112, "required-parameters"], [114, "required-parameters"], [115, "required-parameters"], [116, "required-parameters"], [117, "required-parameters"], [118, "required-parameters"], [124, "required-parameters"], [125, "required-parameters"], [132, "required-parameters"], [133, "required-parameters"], [134, "required-parameters"], [135, "required-parameters"], [136, "required-parameters"], [137, "required-parameters"], [138, "required-parameters"], [140, "required-parameters"], [141, "required-parameters"], [142, "required-parameters"], [143, "required-parameters"], [146, "required-parameters"], [149, "required-parameters"], [150, "required-parameters"], [153, "required-parameters"], [155, "required-parameters"], [156, "required-parameters"], [157, "required-parameters"], [158, "required-parameters"], [160, "required-parameters"], [161, "required-parameters"], [163, "required-parameters"], [164, "required-parameters"], [165, "required-parameters"], [166, "required-parameters"], [167, "required-parameters"], [168, "required-parameters"], [170, "required-parameters"], [180, "required-parameters"], [180, "groonga-suggest-httpd-required-parameters"], [183, "required-parameters"], [188, "required-parameters"], [193, "required-parameters"], [195, "required-parameters"], [202, "required-parameters"], [203, "required-parameters"], [205, "required-parameters"], [209, "required-parameters"], [211, "required-parameters"], [219, "required-parameters"], [237, "required-parameter"], [246, "required-parameters"], [247, "required-parameters"]], "\u6027\u80fd": [[292, "performance"]], "\u6027\u80fd\u95a2\u9023\u306e\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6": [[177, "performance-related-directives"]], "\u611f\u8b1d": [[36, "id8"], [37, "id4"], [37, "id8"], [37, "id11"], [37, "id16"], [37, "id21"], [37, "id26"], [37, "id31"], [37, "id35"], [37, "id39"], [38, "id5"], [39, "thanks"], [39, "id3"], [39, "id6"], [39, "id9"], [39, "id14"], [39, "id17"], [39, "id23"], [39, "id28"], [40, "thanks"], [41, "thanks"], [41, "id3"], [41, "id9"], [41, "id14"], [41, "id17"], [41, "id20"], [41, "id23"], [41, "id26"], [42, "thanks"], [42, "id4"], [42, "id8"], [42, "id15"], [42, "id19"], [42, "id23"], [42, "id26"], [42, "id30"], [42, "id33"], [42, "id37"], [43, "thanks"], [43, "id13"], [43, "id19"], [43, "id22"], [43, "id27"], [44, "thanks"], [44, "id17"], [44, "id20"], [44, "id22"], [45, "thanks"], [45, "id10"], [45, "id13"], [45, "id23"], [47, "thanks"], [47, "id4"], [47, "id7"], [47, "id10"], [47, "id13"], [47, "id16"], [47, "id19"], [47, "id22"], [47, "id25"], [47, "id28"], [47, "id31"], [47, "id34"], [48, "thanks"], [48, "id3"], [48, "id6"], [48, "id9"], [48, "id12"], [48, "id15"], [48, "id18"], [48, "id21"], [48, "id24"], [48, "id28"], [48, "id31"], [48, "id33"], [49, "thanks"], [49, "id4"], [49, "id7"], [49, "id10"], [49, "id13"], [49, "id16"], [49, "id19"], [49, "id22"], [49, "id25"], [49, "id28"], [49, "id31"], [50, "thanks"], [50, "id3"], [50, "id6"], [50, "id9"], [50, "id12"], [50, "id15"], [50, "id18"], [50, "id21"], [50, "id24"], [50, "id27"], [50, "id30"], [50, "id33"], [50, "id36"], [51, "thanks"], [51, "id7"], [51, "id12"], [51, "id15"], [51, "id18"], [51, "id21"], [51, "id24"], [51, "id26"], [51, "id29"], [51, "id32"], [51, "id35"], [51, "id38"], [52, "thanks"], [52, "id3"], [52, "id6"], [52, "id13"], [52, "id16"], [52, "id19"], [52, "id22"], [52, "id27"], [52, "id30"], [53, "thanks"], [53, "id7"], [53, "id20"], [53, "id23"], [53, "id26"], [54, "thanks"], [54, "id5"], [54, "id10"], [54, "id13"], [54, "id16"], [54, "id19"], [54, "id22"], [54, "id25"], [54, "id28"]], "\u6210\u529f\u3057\u305f\u5834\u5408": [[95, "success-case"]], "\u623b\u308a\u5024": [[107, "return-value"], [108, "return-value"], [109, "return-value"], [110, "return-value"], [111, "return-value"], [112, "return-value"], [113, "return-value"], [114, "return-value"], [115, "return-value"], [116, "return-value"], [117, "return-value"], [118, "return-value"], [119, "return-value"], [120, "return-value"], [121, "return-value"], [122, "return-value"], [123, "return-value"], [124, "return-value"], [125, "return-value"], [126, "return-value"], [127, "return-value"], [128, "return-value"], [129, "return-value"], [130, "return-value"], [131, "return-value"], [132, "return-value"], [133, "return-value"], [134, "return-value"], [135, "return-value"], [136, "return-value"], [137, "return-value"], [138, "return-value"], [139, "return-value"], [140, "return-value"], [141, "return-value"], [142, "return-value"], [143, "return-value"], [144, "return-value"], [145, "return-value"], [146, "return-value"], [147, "return-value"], [148, "return-value"], [149, "return-value"], [150, "return-value"], [151, "return-value"], [152, "return-value"], [153, "return-value"], [154, "return-value"], [155, "return-value"], [156, "return-value"], [157, "return-value"], [158, "return-value"], [159, "return-value"], [160, "return-value"], [161, "return-value"], [162, "return-value"], [163, "return-value"], [164, "return-value"], [165, "return-value"], [166, "return-value"], [167, "return-value"], [168, "return-value"], [169, "return-value"], [170, "return-value"], [180, "return-value"], [183, "return-value"], [184, "return-value"], [186, "return-value"], [188, "return-value"], [191, "return-value"], [192, "return-value"], [193, "return-value"], [194, "return-value"], [195, "return-value"], [196, "return-value"], [197, "return-value"], [198, "return-value"], [200, "return-value"], [201, "return-value"], [202, "return-value"], [203, "return-value"], [205, "return-value"], [206, "return-value"], [207, "return-value"], [208, "return-value"], [209, "return-value"], [210, "return-value"], [211, "return-value"], [212, "return-value"], [213, "return-value"], [214, "return-value"], [215, "return-value"], [216, "return-value"], [217, "return-value"], [218, "return-value"], [219, "return-value"], [220, "return-value"], [221, "return-value"], [222, "return-value"], [246, "return-value"], [247, "return-value"], [284, "return-value"], [285, "return-value"], [286, "return-value"], [287, "return-value"], [288, "return-value"]], "\u6295\u7a3f\u6642\u9593\u3067\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22": [[311, "search-comments-by-posted-time"]], "\u63d0\u6848": [[252, "suggestion"], [253, null]], "\u64cd\u4f5c\u65b9\u6cd5": [[238, null]], "\u64ec\u4f3c\u30ab\u30e9\u30e0": [[89, null]], "\u6539\u826f": [[36, "id3"], [36, "id6"], [37, "id6"], [37, "id13"], [37, "id18"], [37, "id23"], [37, "id28"], [37, "id33"], [37, "id37"], [38, "id3"], [39, "improvements"], [39, "id1"], [39, "id4"], [39, "id7"], [39, "id10"], [39, "id12"], [39, "id15"], [39, "id18"], [39, "id21"], [39, "id25"], [40, "improvements"], [41, "improvements"], [41, "id1"], [41, "id4"], [41, "id6"], [41, "id10"], [41, "id12"], [41, "id15"], [41, "id18"], [41, "id21"], [41, "id24"], [41, "id28"], [42, "improvements"], [42, "id1"], [42, "id5"], [42, "id9"], [42, "id12"], [42, "id16"], [42, "id20"], [42, "id24"], [42, "id27"], [42, "id31"], [42, "id34"], [42, "id38"], [43, "improvements"], [43, "id1"], [43, "id2"], [43, "id4"], [43, "id6"], [43, "id8"], [43, "id10"], [43, "id12"], [43, "id14"], [43, "id16"], [43, "id20"], [43, "id23"], [43, "id28"], [44, "improvements"], [44, "id1"], [44, "id3"], [44, "id5"], [44, "id8"], [44, "id11"], [44, "id13"], [44, "id15"], [44, "id18"], [44, "id21"], [44, "id23"], [45, "improvements"], [45, "id1"], [45, "id3"], [45, "id5"], [45, "id8"], [45, "id11"], [45, "id14"], [45, "id15"], [45, "id18"], [45, "id20"], [45, "id21"], [45, "id24"], [46, "improvements"], [47, "improvements"], [47, "id2"], [47, "id5"], [47, "id8"], [47, "id11"], [47, "id14"], [47, "id17"], [47, "id20"], [47, "id23"], [47, "id26"], [47, "id29"], [47, "id32"], [48, "improvements"], [48, "id1"], [48, "id4"], [48, "id7"], [48, "id10"], [48, "id13"], [48, "id16"], [48, "id19"], [48, "id22"], [48, "id25"], [48, "id26"], [48, "id29"], [49, "improvements"], [49, "id2"], [49, "id5"], [49, "id8"], [49, "id11"], [49, "id14"], [49, "id17"], [49, "id20"], [49, "id23"], [49, "id26"], [49, "id29"], [50, "improvements"], [50, "id1"], [50, "id4"], [50, "id7"], [50, "id10"], [50, "id13"], [50, "id16"], [50, "id19"], [50, "id22"], [50, "id25"], [50, "id28"], [50, "id31"], [50, "id34"], [51, "improvements"], [51, "id1"], [51, "id3"], [51, "id5"], [51, "id8"], [51, "id10"], [51, "id13"], [51, "id16"], [51, "id19"], [51, "id22"], [51, "id27"], [51, "id30"], [51, "id33"], [51, "id36"], [52, "improvements"], [52, "id1"], [52, "id4"], [52, "id7"], [52, "id9"], [52, "id11"], [52, "id14"], [52, "id17"], [52, "id20"], [52, "id23"], [52, "id25"], [52, "id28"], [53, "improvements"], [53, "id1"], [53, "id3"], [53, "id5"], [53, "id8"], [53, "id10"], [53, "id12"], [53, "id14"], [53, "id16"], [53, "id18"], [53, "id21"], [53, "id24"], [54, "improvements"], [54, "id1"], [54, "id2"], [54, "id3"], [54, "id6"], [54, "id8"], [54, "id11"], [54, "id14"], [54, "id17"], [54, "id20"], [54, "id23"], [54, "id26"], [54, "id29"], [55, "improvements"], [55, "id3"], [55, "id6"], [55, "id8"], [55, "id10"], [55, "id12"], [55, "id14"], [55, "id16"], [55, "id19"], [55, "id21"]], "\u6570\u5024": [[305, "numeric-types"]], "\u6574\u6570": [[225, "integer"]], "\u6587\u5b57\u30af\u30e9\u30b9": [[244, "character-class"]], "\u6587\u5b57\u5217": [[225, "string"], [305, "string-types"]], "\u65b0\u3057\u3044\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0\u3059\u308b\u65b9\u6cd5": [[18, "how-to-add-a-new-documentation"]], "\u65b0\u3057\u3044\u8a00\u8a9e\u306e\u8ffd\u52a0\u65b9\u6cd5": [[17, "how-to-add-new-language"]], "\u65b0\u3057\u304f\u30b5\u30dd\u30fc\u30c8\u3057\u305fOS": [[43, "newly-supported-oses"]], "\u65b0\u898f\u6a5f\u80fd\u3068\u6539\u826f": [[43, "new-features-and-improvements"]], "\u65e2\u77e5\u306e\u554f\u984c": [[42, "known-issues"], [42, "id3"], [42, "id7"], [42, "id11"], [42, "id14"], [42, "id18"], [42, "id22"], [42, "id25"], [42, "id29"], [42, "id32"], [42, "id36"], [43, "known-issues"], [43, "id18"], [43, "id21"], [43, "id25"]], "\u65e5\u6642": [[305, "date-and-time-type"]], "\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u4f4d\u7f6e\u3092\u4f7f\u3046": [[188, "using-the-explicitly-specified-value-of-location"]], "\u6642\u9593": [[225, "time"]], "\u66f8\u5f0f": [[174, "id2"], [176, "id2"], [181, "synopsis"], [185, "id2"], [189, "id2"], [190, "id2"], [199, "id2"], [204, "id2"]], "\u6700\u521d\u306e1\u56de\u3060\u3051\u884c\u3046\u624b\u9806": [[12, "id3"]], "\u6761\u4ef6\u5f0f": [[224, "conditional-expression"]], "\u691c\u7d22": [[299, null], [311, "search"], [314, "search"]], "\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051": [[299, "id6"]], "\u691c\u7d22\u306e\u6319\u52d5": [[299, "id2"]], "\u691c\u7d22\u4f8b1": [[11, "id6"]], "\u691c\u7d22\u4f8b2": [[11, "id7"]], "\u691c\u7d22\u4f8b3": [[11, "id8"]], "\u691c\u7d22\u4f8b4": [[11, "id9"]], "\u691c\u7d22\u65b9\u6cd5": [[91, "how-to-search"], [91, "id5"], [91, "id9"]], "\u691c\u7d22\u6761\u4ef6": [[156, "search-conditions"]], "\u691c\u7d22\u6761\u4ef6: filter": [[156, "search-condition-filter"]], "\u691c\u7d22\u6761\u4ef6: query": [[156, "search-condition-query"]], "\u691c\u7d22\u7d50\u679c\u306e\u4e26\u3079\u66ff\u3048": [[308, "sort-a-search-result"]], "\u691c\u7d22\u95a2\u4fc2\u306e\u5f15\u6570": [[132, "search-related-parameters"], [134, "search-related-parameters"], [135, "search-related-parameters"], [156, "search-related-parameters"]], "\u6982\u8981": [[44, "summary"], [58, "summary"], [60, "summary"], [61, "summary"], [62, "summary"], [63, "summary"], [64, "summary"], [65, "summary"], [66, "summary"], [67, "summary"], [69, "summary"], [70, "summary"], [71, "summary"], [72, "summary"], [73, "summary"], [74, "summary"], [75, "summary"], [76, "summary"], [77, "summary"], [78, "summary"], [79, "summary"], [80, "summary"], [81, "summary"], [82, "summary"], [83, "summary"], [84, null], [84, "summary"], [85, "summary"], [87, "summary"], [88, "summary"], [90, "summary"], [91, "summary"], [93, "id1"], [94, "summary"], [95, "summary"], [96, "summary"], [97, "summary"], [98, "summary"], [99, "summary"], [100, "summary"], [107, "summary"], [108, "summary"], [109, "summary"], [110, "summary"], [111, "summary"], [112, "summary"], [113, "summary"], [114, "summary"], [115, "summary"], [116, "summary"], [117, "summary"], [118, "summary"], [119, "summary"], [120, "summary"], [121, "summary"], [122, "summary"], [123, "summary"], [124, "summary"], [125, "summary"], [126, "summary"], [127, "summary"], [128, "summary"], [129, "summary"], [130, "summary"], [131, "summary"], [132, "summary"], [133, "summary"], [134, "summary"], [135, "summary"], [136, "summary"], [137, "summary"], [138, "summary"], [139, "summary"], [140, "summary"], [141, "summary"], [142, "summary"], [143, "summary"], [144, "summary"], [145, "summary"], [146, "summary"], [147, "summary"], [148, "summary"], [149, "summary"], [150, "summary"], [151, "summary"], [152, "summary"], [153, "summary"], [154, "summary"], [155, "summary"], [156, "summary"], [157, "summary"], [158, "summary"], [159, "summary"], [160, "summary"], [161, "summary"], [162, "summary"], [163, "summary"], [164, "summary"], [165, "summary"], [166, "summary"], [167, "summary"], [168, "summary"], [169, "summary"], [170, "summary"], [171, "summary"], [173, "summary"], [175, "summary"], [177, "summary"], [178, "summary"], [180, "summary"], [181, "summary"], [183, "summary"], [184, "summary"], [186, "summary"], [188, "summary"], [191, "summary"], [192, "summary"], [193, "summary"], [194, "summary"], [195, "summary"], [196, "summary"], [197, "summary"], [198, "summary"], [200, "summary"], [201, "summary"], [202, "summary"], [203, "summary"], [205, "summary"], [206, "summary"], [207, "summary"], [208, "summary"], [209, "summary"], [210, "summary"], [211, "summary"], [212, "summary"], [213, "summary"], [214, "summary"], [215, "summary"], [216, "summary"], [217, "summary"], [218, "summary"], [219, "summary"], [220, "summary"], [221, "summary"], [222, "summary"], [227, "summary"], [229, "summary"], [230, "summary"], [231, "summary"], [232, "summary"], [233, "summary"], [234, "summary"], [235, "summary"], [236, "summary"], [237, "summary"], [240, "summary"], [243, "summary"], [244, "summary"], [245, "summary"], [246, "summary"], [247, "summary"], [248, "summary"], [254, "summary"], [255, null], [258, "summary"], [259, "summary"], [260, "summary"], [261, "summary"], [262, null], [264, "summary"], [265, "summary"], [266, "summary"], [267, "summary"], [268, "summary"], [269, "summary"], [270, "summary"], [271, "summary"], [272, "summary"], [273, "summary"], [274, "summary"], [275, "summary"], [276, "summary"], [277, "summary"], [278, "summary"], [279, "summary"], [280, "summary"], [281, "summary"], [284, "summary"], [285, "summary"], [286, "summary"], [287, "summary"], [288, "summary"]], "\u69cb\u6587": [[107, "syntax"], [108, "syntax"], [109, "syntax"], [110, "syntax"], [111, "syntax"], [112, "syntax"], [113, "syntax"], [114, "syntax"], [115, "syntax"], [116, "syntax"], [117, "syntax"], [118, "syntax"], [119, "syntax"], [120, "syntax"], [121, "syntax"], [122, "syntax"], [123, "syntax"], [124, "syntax"], [125, "syntax"], [126, "syntax"], [127, "syntax"], [128, "syntax"], [129, "syntax"], [130, "syntax"], [131, "syntax"], [132, "syntax"], [133, "syntax"], [134, "syntax"], [135, "syntax"], [136, "syntax"], [137, "syntax"], [138, "syntax"], [139, "syntax"], [140, "syntax"], [141, "syntax"], [142, "syntax"], [143, "syntax"], [144, "syntax"], [145, "syntax"], [146, "syntax"], [147, "syntax"], [148, "syntax"], [149, "syntax"], [150, "syntax"], [151, "syntax"], [152, "syntax"], [153, "syntax"], [154, "syntax"], [155, "syntax"], [156, "syntax"], [157, "syntax"], [158, "syntax"], [159, "syntax"], [160, "syntax"], [161, "syntax"], [162, "syntax"], [163, "syntax"], [164, "syntax"], [165, "syntax"], [166, "syntax"], [167, "syntax"], [168, "syntax"], [169, "syntax"], [170, "syntax"], [173, "syntax"], [175, "syntax"], [177, "syntax"], [178, "syntax"], [180, "syntax"], [183, "syntax"], [184, "syntax"], [186, "syntax"], [188, "syntax"], [191, "syntax"], [192, "syntax"], [193, "syntax"], [194, "syntax"], [195, "syntax"], [196, "syntax"], [197, "syntax"], [198, "syntax"], [200, "syntax"], [201, "syntax"], [202, "syntax"], [203, "syntax"], [205, "syntax"], [206, "syntax"], [207, "syntax"], [208, "syntax"], [209, "syntax"], [210, "syntax"], [211, "syntax"], [212, "syntax"], [213, "syntax"], [214, "syntax"], [215, "syntax"], [216, "syntax"], [217, "syntax"], [218, "syntax"], [219, "syntax"], [220, "syntax"], [221, "syntax"], [222, "syntax"], [230, "syntax"], [231, "syntax"], [232, "syntax"], [233, "syntax"], [234, "syntax"], [235, "syntax"], [236, "syntax"], [237, "syntax"], [244, "syntax"], [246, "syntax"], [247, "syntax"], [257, "syntax"], [258, "syntax"], [259, "syntax"], [260, "syntax"], [261, "syntax"], [264, "syntax"], [265, "syntax"], [266, "syntax"], [267, "syntax"], [268, "syntax"], [269, "syntax"], [270, "syntax"], [271, "syntax"], [272, "syntax"], [273, "syntax"], [274, "syntax"], [275, "syntax"], [276, "syntax"], [277, "syntax"], [278, "syntax"], [279, "syntax"], [280, "syntax"], [284, "syntax"], [285, "syntax"], [286, "syntax"], [287, "syntax"], [288, "syntax"]], "\u69d8\u3005\u306a\u30c6\u30b9\u30c8": [[14, "id7"]], "\u6b63\u898f\u8868\u73fe": [[244, null]], "\u6b63\u898f\u8868\u73fe: \u7a7a\u306e\u30d1\u30bf\u30fc\u30f3\u306e\u3068\u304d\u306e\u554f\u984c\u3092\u4fee\u6b63": [[45, "reference-regular-expression-fixed-a-bug-with-an-empty-pattern"]], "\u6b63\u898f\u8868\u73fe\u306b\u3088\u308b\u62bd\u51fa": [[208, "extraction-by-regular-expression"], [208, "id2"]], "\u6b63\u898f\u8868\u73fe\u6761\u4ef6": [[224, "regular-expression-condition"]], "\u6b63\u898f\u8868\u73fe\u6f14\u7b97\u5b50": [[225, "regular-expression-operator"]], "\u6bce\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u3067\u884c\u3046\u624b\u9806": [[12, "id7"]], "\u6bd4\u8f03": [[292, null]], "\u6bd4\u8f03\u6f14\u7b97\u5b50": [[225, "comparison-operators"]], "\u6c38\u7d9a\u30c6\u30fc\u30d6\u30eb": [[254, "persistent-table"]], "\u6c38\u7d9a\u30c6\u30fc\u30d6\u30eb\u3068\u4e00\u6642\u30c6\u30fc\u30d6\u30eb": [[254, "persistent-table-and-temporary-table"]], "\u6ce8\u610f\u70b9": [[94, "notes"]], "\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570": [[225, "float"]], "\u6e1b\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "subtraction-assignment-operator"]], "\u6e1b\u7b97\u6f14\u7b97\u5b50": [[225, "subtraction-operator"]], "\u6e96\u5099": [[314, "preparation"]], "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b": [[14, "id9"]], "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b": [[14, "id8"]], "\u7279\u5fb4": [[254, "characteristics"]], "\u7279\u6b8a\u547d\u4ee4": [[176, "id11"]], "\u72ec\u81ea\u306e\u6f14\u7b97\u5b50": [[225, "original-operators"]], "\u7406\u7531": [[10, "id3"], [10, "id6"], [10, "id8"]], "\u74b0\u5883\u5909\u6570GRN_N_WORKERS_DEFAULT\u3067\u6307\u5b9a\u3059\u308b": [[94, "specified-by-environment-variable-grn-n-workers-default"]], "\u751f\u6210\u30ab\u30e9\u30e0": [[87, "generated-column"]], "\u751f\u6210\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0": [[90, "generated-scalar-column"]], "\u751f\u6210\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": [[91, "generated-vector-column"]], "\u7528\u8a9e\u96c6": [[248, "glossary"]], "\u7701\u7565\u53ef\u80fd\u5f15\u6570": [[110, "optional-parameters"], [111, "optional-parameters"], [115, "optional-parameters"], [116, "optional-parameters"], [117, "optional-parameters"], [118, "optional-parameters"], [122, "optional-parameters"], [124, "optional-parameters"], [125, "optional-parameters"], [132, "optional-parameters"], [133, "optional-parameters"], [134, "optional-parameters"], [135, "optional-parameters"], [136, "optional-parameters"], [137, "optional-parameters"], [138, "optional-parameters"], [140, "optional-parameters"], [141, "optional-parameters"], [142, "optional-parameters"], [143, "optional-parameters"], [146, "optional-parameters"], [149, "optional-parameters"], [150, "optional-parameters"], [155, "optional-parameters"], [157, "optional-parameters"], [158, "optional-parameters"], [160, "optional-parameters"], [161, "optional-parameters"], [163, "optional-parameters"], [165, "optional-parameters"], [166, "optional-parameters"], [167, "optional-parameters"], [168, "optional-parameters"], [180, "optional-parameters"], [180, "groonga-suggest-httpd-optional-parameters"], [183, "optional-parameter"], [188, "optional-parameter"], [193, "optional-parameters"], [195, "optional-parameter"], [202, "optional-parameters"], [203, "optional-parameter"], [205, "optional-parameters"], [209, "optional-parameters"], [219, "optional-parameters"], [231, "optional-parameter"], [232, "optional-parameter"], [233, "optional-parameter"], [234, "optional-parameter"], [235, "optional-parameter"], [237, "optional-parameters"], [246, "optional-parameters"], [247, "optional-parameters"], [258, "optional-parameter"], [259, "optional-parameter"], [260, "optional-parameter"], [261, "optional-parameter"], [272, "optional-parameter"], [274, "optional-parameter"], [275, "optional-parameter"]], "\u771f\u507d\u5024": [[225, "boolean"], [305, "boolean-type"]], "\u7b26\u53f7\u3042\u308a\u53f3\u30b7\u30d5\u30c8\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "bitwise-signed-right-shift-assignment-operator"]], "\u7b26\u53f7\u306a\u3057\u53f3\u30b7\u30d5\u30c8\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "bitwise-unsigned-right-shift-assignment-operator"]], "\u7b26\u53f7\u306a\u3057\u53f3\u30b7\u30d5\u30c8\u6f14\u7b97\u5b50": [[225, "unsigned-right-shift-operator"]], "\u7b26\u53f7\u4ed8\u304d\u53f3\u30b7\u30d5\u30c8\u6f14\u7b97\u5b50": [[225, "signed-right-shift-operator"]], "\u7b49\u4fa1\u6761\u4ef6": [[224, "equal-condition"]], "\u7b49\u4fa1\u6f14\u7b97\u5b50": [[225, "equal-operator"]], "\u7b97\u8853\u6f14\u7b97\u5b50": [[225, "arithmetic-operators"]], "\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u4f7f\u3046": [[177, "browse-the-administration-tool"]], "\u7bc4\u56f2\u691c\u7d22\u7528\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb\u306e\u4f5c\u6210": [[161, "create-range-index-table"]], "\u7c21\u5358\u306a\u4f7f\u3044\u65b9": [[134, "simple-usage"], [135, "simple-usage"], [156, "simple-usage"], [231, "simple-usage"], [232, "simple-usage"], [233, "simple-usage"], [234, "simple-usage"], [235, "simple-usage"], [237, "simple-usage"], [257, "simple-usage"], [258, "simple-usage"], [259, "simple-usage"], [272, "simple-usage"], [274, "simple-usage"], [275, "simple-usage"]], "\u7d42\u4e86\u3059\u308b": [[177, "shut-down"]], "\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9": [[175, "builtin-command"]], "\u7d44\u307f\u8fbc\u307f\u30b9\u30b3\u30a2\u30e9\u30fc": [[245, "built-in-scorers"]], "\u7d44\u307f\u8fbc\u307f\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc": [[229, "built-in-normalizers"]], "\u7d44\u8fbc\u578b": [[282, "builtin-types"]], "\u7d4c\u7def\u5ea6": [[305, "longitude-and-latitude-types"]], "\u7d50\u5408\u5f0f": [[224, "combined-expression"]], "\u7ffb\u8a33\u306e\u6210\u679c\u306e\u9001\u308a\u65b9": [[17, "how-to-send-your-works"]], "\u7ffb\u8a33\u306e\u6d41\u308c": [[17, "translation-flow"]], "\u7ffb\u8a33\u3092 .po \u30d5\u30a1\u30a4\u30eb\u306b\u53cd\u6620\u3059\u308b": [[18, "reflect-translations-to-po-files"]], "\u81ea\u52d5\u751f\u6210\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-generated-column"]], "\u8868\u793a\u7bc4\u56f2\u6307\u5b9a": [[308, "specify-output-ranges"]], "\u88dc\u5b8c": [[250, null], [252, "completion"]], "\u88dc\u6b63": [[251, null], [252, "correction"]], "\u8907\u6570CPU\u30b3\u30a2\u5bfe\u5fdc": [[292, "using-multi-cpu-cores"]], "\u8907\u6570\u306e\u30ab\u30e9\u30e0\u3067\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3": [[306, "drilldown-with-multiple-column"]], "\u8907\u6570\u306e\u30ab\u30e9\u30e0\u306b\u307e\u305f\u304c\u3063\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u5834\u5408": [[310, "creating-one-column-index-against-multiple-columns"]], "\u8907\u6570\u306e\u30ab\u30e9\u30e0\u306b\u5bfe\u3059\u308b\u5168\u6587\u691c\u7d22": [[310, "full-text-search-against-multiple-columns"]], "\u8907\u6570\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9": [[292, "multi-databases"]], "\u89e3\u6790\u65b9\u6cd5": [[302, "how-to-analyze"]], "\u8a00\u8a9e\u30e2\u30c7\u30eb": [[227, null]], "\u8a00\u8a9e\u30e2\u30c7\u30eb\u306e\u7ba1\u7406\u65b9\u6cd5": [[227, "how-to-manage-language-models"]], "\u8a2d\u5b9a": [[21, "configuration"], [171, null]], "\u8a2d\u5b9a\u3067\u304d\u308b\u5024": [[94, "available-values"]], "\u8a2d\u5b9a\u306e\u78ba\u8a8d": [[94, "check-the-settings"]], "\u8a2d\u5b9a\u3092\u3059\u308b": [[177, "set-up"]], "\u8a2d\u5b9a\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6": [[177, "configuration-directives"]], "\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb": [[292, "configuration-file"]], "\u8a73\u7d30": [[100, "detail"]], "\u8a8d\u8a3c": [[292, "authentication"]], "\u8a9e\u5f59\u8868\u306e\u4f5c\u6210": [[161, "create-lexicon"]], "\u8aac\u660e": [[89, "id2"], [174, "id3"], [176, "id3"], [185, "id3"], [189, "id3"], [190, "id3"], [199, "id3"], [204, "id3"], [282, "description"]], "\u8aad\u307f\u30c7\u30fc\u30bf\u306e\u66f4\u65b0\u65b9\u6cd5": [[250, "how-to-update-reading-data"]], "\u8ab2\u984c\u8ffd\u8de1\u30b7\u30b9\u30c6\u30e0\u3078\u767b\u9332\u3059\u308b": [[19, "submit-a-bug-to-the-issue-tracker"]], "\u8ad6\u7406\u30c6\u30fc\u30d6\u30eb\u306e\u4e00\u90e8\u3092\u524a\u9664": [[137, "removes-parts-of-a-logical-table"]], "\u8ad6\u7406\u5426\u5b9a\u6f14\u7b97\u5b50": [[225, "logical-not-operator"]], "\u8ad6\u7406\u548c": [[224, "logical-or"]], "\u8ad6\u7406\u548c\u6f14\u7b97\u5b50": [[225, "logical-or-operator"]], "\u8ad6\u7406\u5dee": [[224, "logical-and-not"]], "\u8ad6\u7406\u5dee\u6f14\u7b97\u5b50": [[225, "logical-and-not-operator"]], "\u8ad6\u7406\u6f14\u7b97\u5b50": [[225, "logical-operators"]], "\u8ad6\u7406\u7a4d": [[224, "logical-and"]], "\u8ad6\u7406\u7a4d\u6f14\u7b97\u5b50": [[225, "logical-and-operator"]], "\u8ee2\u7f6e\u7d22\u5f15\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30b6": [[0, "inverted-index-and-tokenizer"]], "\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u691c\u7d22\u6761\u4ef6": [[224, "near-phrase-search-condition"]], "\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "near-phrase-search-operator"]], "\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u76f4\u7a4d\u691c\u7d22\u6761\u4ef6": [[224, "near-phrase-product-search-condition"]], "\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u76f4\u7a4d\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "near-phrase-product-search-operator"]], "\u8fd1\u508d\u691c\u7d22\u6761\u4ef6": [[224, "near-search-condition"]], "\u8fd1\u508d\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "near-search-operator"]], "\u8fd4\u5024": [[185, "id5"], [189, "id6"], [190, "id6"], [199, "id4"], [204, "id5"]], "\u8ffd\u52a0\u306e\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u4e00\u89a7": [[229, "additional-normalizers"]], "\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f": [[10, "id2"]], "\u9078\u629e": [[244, "choice"]], "\u90e8\u5206\u4e00\u81f4\u691c\u7d22": [[299, "id5"]], "\u914d\u5217": [[225, "array"]], "\u91cd\u307f\u3060\u3051\u3092\u9069\u7528\u3059\u308b\u65b9\u6cd5": [[91, "how-to-apply-just-weight"]], "\u91cd\u307f\u4ed8\u304d\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": [[91, "weight-vector-column"]], "\u91cd\u307f\u4ed8\u304d\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0\u306e\u4f5c\u6210": [[111, "create-a-weight-vector-column"]], "\u91cf\u6307\u5b9a\u5b50": [[244, "quantifier"]], "\u958b\u767a": [[20, null]], "\u95a2\u4fc2\u5f0f": [[11, "id4"]], "\u95a2\u6570": [[182, null], [227, "functions"]], "\u95a2\u6570\u547c\u3073\u51fa\u3057": [[225, "function-call"]], "\u95a2\u9023\u3059\u308b\u30c6\u30fc\u30d6\u30eb": [[181, "related-tables"]], "\u95a2\u9023\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3068\u4e00\u7dd2\u306b\u524a\u9664": [[137, "removes-with-related-tables"]], "\u9664\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "division-assignment-operator"]], "\u9664\u7b97\u6f14\u7b97\u5b50": [[225, "division-operator"]], "\u9759\u7684\u306a\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9\u65b9\u6cd5": [[226, "offline-index-construction"]], "\u9759\u7684\u306a\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9\u65b9\u6cd5: \u4e26\u5217\u5b9f\u884c\u3092\u30b5\u30dd\u30fc\u30c8": [[45, "offline-index-construction-added-support-for-parallel-execution"]], "\u9759\u7684\u89e3\u6790": [[14, "id12"]], "\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22": [[299, "id4"]], "\u9806\u5e8f\u4ed8\u304d\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u691c\u7d22\u6761\u4ef6": [[224, "ordered-near-phrase-search-condition"]], "\u9806\u5e8f\u4ed8\u304d\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "ordered-near-phrase-search-operator"]], "\u9806\u5e8f\u4ed8\u304d\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u76f4\u7a4d\u691c\u7d22\u6761\u4ef6": [[224, "ordered-near-phrase-product-search-condition"]], "\u9806\u5e8f\u4ed8\u304d\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u76f4\u7a4d\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "ordered-near-phrase-product-search-operator"]], "\u985e\u4f3c\u6587\u66f8\u691c\u7d22": [[251, "similar-search"]], "\u985e\u4f3c\u6587\u66f8\u691c\u7d22\u6761\u4ef6": [[224, "similar-search-condition"]], "\u985e\u4f3c\u6587\u66f8\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "similar-search-operator"]], "\u9ad8\u5ea6\u306a\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u95a2\u9023\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": [[135, "advanced-drilldown-related-parameters"], [156, "advanced-drilldown-related-parameters"]], "\u9ad8\u5ea6\u306a\u4f7f\u3044\u65b9": [[231, "advanced-usage"], [232, "advanced-usage"], [233, "advanced-usage"], [234, "advanced-usage"], [235, "advanced-usage"], [237, "advanced-usage"], [257, "advanced-usage"], [258, "advanced-usage"], [259, "advanced-usage"], [272, "advanced-usage"], [274, "advanced-usage"], [275, "advanced-usage"]], "\u9ad8\u5ea6\u306a\u691c\u7d22\u306e\u305f\u3081\u306e\u5f15\u6570": [[135, "advanced-search-parameters"], [156, "advanced-search-parameters"]]}, "docnames": ["characteristic", "client", "community", "contribution", "contribution/development", "contribution/development/build", "contribution/development/build/unix_autotools", "contribution/development/build/unix_cmake", "contribution/development/build/windows_cmake", "contribution/development/com", "contribution/development/cooperation", "contribution/development/query", "contribution/development/release", "contribution/development/repository", "contribution/development/test", "contribution/documentation", "contribution/documentation/c-api", "contribution/documentation/i18n", "contribution/documentation/introduction", "contribution/report", "development", "development/travis-ci", "index", "install", "install/almalinux", "install/amazon_linux", "install/centos", "install/cmake", "install/debian", "install/docker", "install/mac_os_x", "install/others", "install/ubuntu", "install/windows", "limitations", "news", "news/0", "news/1.0", "news/1.1", "news/1.2", "news/1.3", "news/10", "news/11", "news/12", "news/13", "news/14", "news/15", "news/2", "news/3", "news/4", "news/5", "news/6", "news/7", "news/8", "news/9", "news/senna", "origin", "reference", "reference/alias", "reference/api", "reference/api/global_configurations", "reference/api/grn_cache", "reference/api/grn_column", "reference/api/grn_command_version", "reference/api/grn_content_type", "reference/api/grn_ctx", "reference/api/grn_db", "reference/api/grn_encoding", "reference/api/grn_expr", "reference/api/grn_geo", "reference/api/grn_hook", "reference/api/grn_ii", "reference/api/grn_index_cursor", "reference/api/grn_info", "reference/api/grn_inspect", "reference/api/grn_match_escalation", "reference/api/grn_obj", "reference/api/grn_proc", "reference/api/grn_search", "reference/api/grn_table", "reference/api/grn_table_cursor", "reference/api/grn_thread", "reference/api/grn_type", "reference/api/grn_user_data", "reference/api/overview", "reference/api/plugin", "reference/cast", "reference/column", "reference/columns/index", "reference/columns/pseudo", "reference/columns/scalar", "reference/columns/vector", "reference/command", "reference/command/command_version", "reference/command/n_workers", "reference/command/output_format", "reference/command/output_trace_log", "reference/command/pretty_print", "reference/command/request_id", "reference/command/request_timeout", "reference/command/return_code", "reference/command/return_codes/grn_input_output_error", "reference/command/return_codes/grn_invalid_argument", "reference/command/return_codes/grn_no_such_file_or_directory", "reference/command/return_codes/grn_not_enough_space", "reference/command/return_codes/grn_operation_not_permitted", "reference/command/return_codes/grn_resource_deadlock_avoided", "reference/commands/cache_limit", "reference/commands/check", "reference/commands/clearlock", "reference/commands/column_copy", "reference/commands/column_create", "reference/commands/column_list", "reference/commands/column_remove", "reference/commands/column_rename", "reference/commands/config_delete", "reference/commands/config_get", "reference/commands/config_set", "reference/commands/database_unmap", "reference/commands/define_selector", "reference/commands/defrag", "reference/commands/delete", "reference/commands/dump", "reference/commands/index_column_diff", "reference/commands/io_flush", "reference/commands/load", "reference/commands/lock_acquire", "reference/commands/lock_clear", "reference/commands/lock_release", "reference/commands/log_level", "reference/commands/log_put", "reference/commands/log_reopen", "reference/commands/logical_count", "reference/commands/logical_parameters", "reference/commands/logical_range_filter", "reference/commands/logical_select", "reference/commands/logical_shard_list", "reference/commands/logical_table_remove", "reference/commands/normalize", "reference/commands/normalizer_list", "reference/commands/object_exist", "reference/commands/object_inspect", "reference/commands/object_list", "reference/commands/object_remove", "reference/commands/plugin_register", "reference/commands/plugin_unregister", "reference/commands/query_expand", "reference/commands/quit", "reference/commands/range_filter", "reference/commands/reference_acquire", "reference/commands/reference_release", "reference/commands/register", "reference/commands/reindex", "reference/commands/request_cancel", "reference/commands/ruby_eval", "reference/commands/schema", "reference/commands/select", "reference/commands/shutdown", "reference/commands/status", "reference/commands/suggest", "reference/commands/table_copy", "reference/commands/table_create", "reference/commands/table_list", "reference/commands/table_remove", "reference/commands/table_rename", "reference/commands/table_tokenize", "reference/commands/thread_dump", "reference/commands/thread_limit", "reference/commands/tokenize", "reference/commands/tokenizer_list", "reference/commands/truncate", "reference/configuration", "reference/executables", "reference/executables/grndb", "reference/executables/grnslap", "reference/executables/groonga", "reference/executables/groonga-benchmark", "reference/executables/groonga-httpd", "reference/executables/groonga-server-http", "reference/executables/groonga-suggest-create-dataset", "reference/executables/groonga-suggest-httpd", "reference/executables/groonga-suggest-learner", "reference/function", "reference/functions/between", "reference/functions/cast_loose", "reference/functions/edit_distance", "reference/functions/escalate", "reference/functions/fuzzy_search", "reference/functions/geo_distance", "reference/functions/geo_in_circle", "reference/functions/geo_in_rectangle", "reference/functions/highlight", "reference/functions/highlight_full", "reference/functions/highlight_html", "reference/functions/html_untag", "reference/functions/in_records", "reference/functions/in_values", "reference/functions/language_model_vectorize", "reference/functions/math_abs", "reference/functions/now", "reference/functions/number_classify", "reference/functions/prefix_rk_search", "reference/functions/query", "reference/functions/query_parallel_or", "reference/functions/rand", "reference/functions/snippet", "reference/functions/snippet_html", "reference/functions/string_length", "reference/functions/string_slice", "reference/functions/string_substring", "reference/functions/sub_filter", "reference/functions/time_classify_day", "reference/functions/time_classify_day_of_week", "reference/functions/time_classify_hour", "reference/functions/time_classify_minute", "reference/functions/time_classify_month", "reference/functions/time_classify_second", "reference/functions/time_classify_week", "reference/functions/time_classify_year", "reference/functions/vector_find", "reference/functions/vector_new", "reference/functions/vector_size", "reference/functions/vector_slice", "reference/grn_expr", "reference/grn_expr/query_syntax", "reference/grn_expr/script_syntax", "reference/indexing", "reference/language_model", "reference/log", "reference/normalizers", "reference/normalizers/normalizer_auto", "reference/normalizers/normalizer_nfkc", "reference/normalizers/normalizer_nfkc100", "reference/normalizers/normalizer_nfkc121", "reference/normalizers/normalizer_nfkc130", "reference/normalizers/normalizer_nfkc150", "reference/normalizers/normalizer_nfkc51", "reference/normalizers/normalizer_table", "reference/operations", "reference/operations/geolocation_search", "reference/operations/prefix_rk_search", "reference/output", "reference/query_expanders", "reference/query_expanders/tsv", "reference/regular_expression", "reference/scorer", "reference/scorers/scorer_tf_at_most", "reference/scorers/scorer_tf_idf", "reference/sharding", "reference/suggest", "reference/suggest/completion", "reference/suggest/correction", "reference/suggest/introduction", "reference/suggest/suggestion", "reference/tables", "reference/token_filter/summary", "reference/token_filters", "reference/token_filters/token_filter_nfkc", "reference/token_filters/token_filter_nfkc100", "reference/token_filters/token_filter_nfkc150", "reference/token_filters/token_filter_stem", "reference/token_filters/token_filter_stop_word", "reference/tokenizer/summary", "reference/tokenizers", "reference/tokenizers/token_bigram", "reference/tokenizers/token_bigram_ignore_blank", "reference/tokenizers/token_bigram_ignore_blank_split_symbol", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit", "reference/tokenizers/token_bigram_split_symbol", "reference/tokenizers/token_bigram_split_symbol_alpha", "reference/tokenizers/token_bigram_split_symbol_alpha_digit", "reference/tokenizers/token_delimit", "reference/tokenizers/token_delimit_null", "reference/tokenizers/token_mecab", "reference/tokenizers/token_ngram", "reference/tokenizers/token_pattern", "reference/tokenizers/token_regexp", "reference/tokenizers/token_table", "reference/tokenizers/token_trigram", "reference/tokenizers/token_unigram", "reference/tuning", "reference/types", "reference/window_function", "reference/window_functions/record_number", "reference/window_functions/window_count", "reference/window_functions/window_rank", "reference/window_functions/window_record_number", "reference/window_functions/window_sum", "server", "server/gqtp", "server/http", "server/http/comparison", "server/http/groonga", "server/http/groonga-httpd", "server/memcached", "server/package", "spec", "spec/gqtp", "spec/search", "troubleshooting", "troubleshooting/different_results_with_the_same_keyword", "troubleshooting/how_to_analyze_error_message", "troubleshooting/mmap_cannot_allocate_memory", "tutorial", "tutorial/data", "tutorial/drilldown", "tutorial/index", "tutorial/introduction", "tutorial/lexicon", "tutorial/match_columns", "tutorial/micro_blog", "tutorial/network", "tutorial/patricia_trie", "tutorial/query_expansion", "tutorial/search"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["characteristic.rst", "client.rst", "community.rst", "contribution.rst", "contribution/development.rst", "contribution/development/build.rst", "contribution/development/build/unix_autotools.rst", "contribution/development/build/unix_cmake.rst", "contribution/development/build/windows_cmake.rst", "contribution/development/com.rst", "contribution/development/cooperation.rst", "contribution/development/query.rst", "contribution/development/release.rst", "contribution/development/repository.rst", "contribution/development/test.rst", "contribution/documentation.rst", "contribution/documentation/c-api.rst", "contribution/documentation/i18n.rst", "contribution/documentation/introduction.md", "contribution/report.rst", "development.rst", "development/travis-ci.rst", "index.rst", "install.rst", "install/almalinux.rst", "install/amazon_linux.rst", "install/centos.rst", "install/cmake.md", "install/debian.rst", "install/docker.rst", "install/mac_os_x.rst", "install/others.rst", "install/ubuntu.md", "install/windows.rst", "limitations.rst", "news.rst", "news/0.rst", "news/1.0.rst", "news/1.1.rst", "news/1.2.rst", "news/1.3.rst", "news/10.rst", "news/11.rst", "news/12.rst", "news/13.md", "news/14.md", "news/15.md", "news/2.rst", "news/3.rst", "news/4.rst", "news/5.rst", "news/6.rst", "news/7.rst", "news/8.rst", "news/9.rst", "news/senna.rst", "origin.md", "reference.rst", "reference/alias.rst", "reference/api.rst", "reference/api/global_configurations.rst", "reference/api/grn_cache.rst", "reference/api/grn_column.rst", "reference/api/grn_command_version.rst", "reference/api/grn_content_type.rst", "reference/api/grn_ctx.rst", "reference/api/grn_db.rst", "reference/api/grn_encoding.rst", "reference/api/grn_expr.rst", "reference/api/grn_geo.rst", "reference/api/grn_hook.rst", "reference/api/grn_ii.rst", "reference/api/grn_index_cursor.rst", "reference/api/grn_info.rst", "reference/api/grn_inspect.rst", "reference/api/grn_match_escalation.rst", "reference/api/grn_obj.rst", "reference/api/grn_proc.rst", "reference/api/grn_search.rst", "reference/api/grn_table.rst", "reference/api/grn_table_cursor.rst", "reference/api/grn_thread.rst", "reference/api/grn_type.rst", "reference/api/grn_user_data.rst", "reference/api/overview.rst", "reference/api/plugin.rst", "reference/cast.rst", "reference/column.rst", "reference/columns/index.rst", "reference/columns/pseudo.rst", "reference/columns/scalar.rst", "reference/columns/vector.rst", "reference/command.rst", "reference/command/command_version.rst", "reference/command/n_workers.md", "reference/command/output_format.rst", "reference/command/output_trace_log.md", "reference/command/pretty_print.rst", "reference/command/request_id.rst", "reference/command/request_timeout.rst", "reference/command/return_code.rst", "reference/command/return_codes/grn_input_output_error.rst", "reference/command/return_codes/grn_invalid_argument.rst", "reference/command/return_codes/grn_no_such_file_or_directory.rst", "reference/command/return_codes/grn_not_enough_space.rst", "reference/command/return_codes/grn_operation_not_permitted.rst", "reference/command/return_codes/grn_resource_deadlock_avoided.rst", "reference/commands/cache_limit.rst", "reference/commands/check.rst", "reference/commands/clearlock.rst", "reference/commands/column_copy.rst", "reference/commands/column_create.rst", "reference/commands/column_list.rst", "reference/commands/column_remove.rst", "reference/commands/column_rename.rst", "reference/commands/config_delete.rst", "reference/commands/config_get.rst", "reference/commands/config_set.rst", "reference/commands/database_unmap.rst", "reference/commands/define_selector.rst", "reference/commands/defrag.rst", "reference/commands/delete.rst", "reference/commands/dump.rst", "reference/commands/index_column_diff.rst", "reference/commands/io_flush.rst", "reference/commands/load.rst", "reference/commands/lock_acquire.rst", "reference/commands/lock_clear.rst", "reference/commands/lock_release.rst", "reference/commands/log_level.rst", "reference/commands/log_put.rst", "reference/commands/log_reopen.rst", "reference/commands/logical_count.rst", "reference/commands/logical_parameters.rst", "reference/commands/logical_range_filter.rst", "reference/commands/logical_select.rst", "reference/commands/logical_shard_list.rst", "reference/commands/logical_table_remove.rst", "reference/commands/normalize.rst", "reference/commands/normalizer_list.rst", "reference/commands/object_exist.rst", "reference/commands/object_inspect.rst", "reference/commands/object_list.rst", "reference/commands/object_remove.rst", "reference/commands/plugin_register.rst", "reference/commands/plugin_unregister.rst", "reference/commands/query_expand.rst", "reference/commands/quit.rst", "reference/commands/range_filter.rst", "reference/commands/reference_acquire.rst", "reference/commands/reference_release.rst", "reference/commands/register.rst", "reference/commands/reindex.rst", "reference/commands/request_cancel.rst", "reference/commands/ruby_eval.rst", "reference/commands/schema.rst", "reference/commands/select.rst", "reference/commands/shutdown.rst", "reference/commands/status.rst", "reference/commands/suggest.rst", "reference/commands/table_copy.rst", "reference/commands/table_create.rst", "reference/commands/table_list.rst", "reference/commands/table_remove.rst", "reference/commands/table_rename.rst", "reference/commands/table_tokenize.rst", "reference/commands/thread_dump.rst", "reference/commands/thread_limit.rst", "reference/commands/tokenize.rst", "reference/commands/tokenizer_list.rst", "reference/commands/truncate.rst", "reference/configuration.rst", "reference/executables.rst", "reference/executables/grndb.rst", "reference/executables/grnslap.rst", "reference/executables/groonga.rst", "reference/executables/groonga-benchmark.rst", "reference/executables/groonga-httpd.rst", "reference/executables/groonga-server-http.rst", "reference/executables/groonga-suggest-create-dataset.rst", "reference/executables/groonga-suggest-httpd.rst", "reference/executables/groonga-suggest-learner.rst", "reference/function.rst", "reference/functions/between.rst", "reference/functions/cast_loose.rst", "reference/functions/edit_distance.rst", "reference/functions/escalate.rst", "reference/functions/fuzzy_search.rst", "reference/functions/geo_distance.rst", "reference/functions/geo_in_circle.rst", "reference/functions/geo_in_rectangle.rst", "reference/functions/highlight.rst", "reference/functions/highlight_full.rst", "reference/functions/highlight_html.rst", "reference/functions/html_untag.rst", "reference/functions/in_records.rst", "reference/functions/in_values.rst", "reference/functions/language_model_vectorize.md", "reference/functions/math_abs.rst", "reference/functions/now.rst", "reference/functions/number_classify.rst", "reference/functions/prefix_rk_search.rst", "reference/functions/query.rst", "reference/functions/query_parallel_or.rst", "reference/functions/rand.rst", "reference/functions/snippet.rst", "reference/functions/snippet_html.rst", "reference/functions/string_length.rst", "reference/functions/string_slice.rst", "reference/functions/string_substring.rst", "reference/functions/sub_filter.rst", "reference/functions/time_classify_day.rst", "reference/functions/time_classify_day_of_week.rst", "reference/functions/time_classify_hour.rst", "reference/functions/time_classify_minute.rst", "reference/functions/time_classify_month.rst", "reference/functions/time_classify_second.rst", "reference/functions/time_classify_week.rst", "reference/functions/time_classify_year.rst", "reference/functions/vector_find.rst", "reference/functions/vector_new.rst", "reference/functions/vector_size.rst", "reference/functions/vector_slice.rst", "reference/grn_expr.rst", "reference/grn_expr/query_syntax.rst", "reference/grn_expr/script_syntax.rst", "reference/indexing.rst", "reference/language_model.md", "reference/log.rst", "reference/normalizers.rst", "reference/normalizers/normalizer_auto.rst", "reference/normalizers/normalizer_nfkc.md", "reference/normalizers/normalizer_nfkc100.rst", "reference/normalizers/normalizer_nfkc121.rst", "reference/normalizers/normalizer_nfkc130.rst", "reference/normalizers/normalizer_nfkc150.rst", "reference/normalizers/normalizer_nfkc51.rst", "reference/normalizers/normalizer_table.rst", "reference/operations.rst", "reference/operations/geolocation_search.rst", "reference/operations/prefix_rk_search.rst", "reference/output.rst", "reference/query_expanders.rst", "reference/query_expanders/tsv.rst", "reference/regular_expression.rst", "reference/scorer.rst", "reference/scorers/scorer_tf_at_most.rst", "reference/scorers/scorer_tf_idf.rst", "reference/sharding.rst", "reference/suggest.rst", "reference/suggest/completion.rst", "reference/suggest/correction.rst", "reference/suggest/introduction.rst", "reference/suggest/suggestion.rst", "reference/tables.rst", "reference/token_filter/summary.rst", "reference/token_filters.rst", "reference/token_filters/token_filter_nfkc.md", "reference/token_filters/token_filter_nfkc100.rst", "reference/token_filters/token_filter_nfkc150.rst", "reference/token_filters/token_filter_stem.rst", "reference/token_filters/token_filter_stop_word.rst", "reference/tokenizer/summary.rst", "reference/tokenizers.rst", "reference/tokenizers/token_bigram.rst", "reference/tokenizers/token_bigram_ignore_blank.rst", "reference/tokenizers/token_bigram_ignore_blank_split_symbol.rst", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.rst", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.rst", "reference/tokenizers/token_bigram_split_symbol.rst", "reference/tokenizers/token_bigram_split_symbol_alpha.rst", "reference/tokenizers/token_bigram_split_symbol_alpha_digit.rst", "reference/tokenizers/token_delimit.rst", "reference/tokenizers/token_delimit_null.rst", "reference/tokenizers/token_mecab.rst", "reference/tokenizers/token_ngram.rst", "reference/tokenizers/token_pattern.rst", "reference/tokenizers/token_regexp.rst", "reference/tokenizers/token_table.rst", "reference/tokenizers/token_trigram.rst", "reference/tokenizers/token_unigram.rst", "reference/tuning.rst", "reference/types.rst", "reference/window_function.rst", "reference/window_functions/record_number.rst", "reference/window_functions/window_count.rst", "reference/window_functions/window_rank.rst", "reference/window_functions/window_record_number.rst", "reference/window_functions/window_sum.rst", "server.rst", "server/gqtp.rst", "server/http.rst", "server/http/comparison.rst", "server/http/groonga.rst", "server/http/groonga-httpd.rst", "server/memcached.rst", "server/package.rst", "spec.rst", "spec/gqtp.rst", "spec/search.rst", "troubleshooting.rst", "troubleshooting/different_results_with_the_same_keyword.rst", "troubleshooting/how_to_analyze_error_message.rst", "troubleshooting/mmap_cannot_allocate_memory.rst", "tutorial.rst", "tutorial/data.rst", "tutorial/drilldown.rst", "tutorial/index.rst", "tutorial/introduction.rst", "tutorial/lexicon.rst", "tutorial/match_columns.rst", "tutorial/micro_blog.rst", "tutorial/network.rst", "tutorial/patricia_trie.rst", "tutorial/query_expansion.rst", "tutorial/search.rst"], "indexentries": {"--address": [[175, "cmdoption-groonga-a", false]], "--bind-address": [[175, "cmdoption-groonga-bind-address", false]], "--cache-base-path": [[175, "cmdoption-groonga-cache-base-path", false]], "--cache-limit": [[175, "cmdoption-groonga-cache-limit", false]], "--config-path": [[175, "cmdoption-groonga-config-path", false]], "--daemon": [[180, "cmdoption-groonga-suggest-httpd-d", false], [181, "cmdoption-groonga-suggest-learner-d", false]], "--default-match-escalation-threshold": [[175, "cmdoption-groonga-default-match-escalation-threshold", false]], "--default-n-workers": [[175, "cmdoption-groonga-default-n-workers", false]], "--default-request-timeout": [[175, "cmdoption-groonga-default-request-timeout", false]], "--dir": [[176, "cmdoption-groonga-benchmark-dir", false]], "--disable-max-fd-check": [[180, "cmdoption-groonga-suggest-httpd-disable-max-fd-check", false]], "--document-root": [[175, "cmdoption-groonga-document-root", false]], "--encoding": [[175, "cmdoption-groonga-e", false]], "--ftp": [[176, "cmdoption-groonga-benchmark-ftp", false]], "--groonga": [[176, "cmdoption-groonga-benchmark-groonga", false]], "--help": [[175, "cmdoption-groonga-h", false]], "--host": [[176, "cmdoption-groonga-benchmark-i", false]], "--log-base-path": [[180, "cmdoption-groonga-suggest-httpd-l", false], [181, "cmdoption-groonga-suggest-learner-l", false]], "--log-flags": [[175, "cmdoption-groonga-log-flags", false]], "--log-level": [[175, "cmdoption-groonga-l", false], [181, "cmdoption-groonga-suggest-learner-log-level", false]], "--log-output-dir": [[176, "cmdoption-groonga-benchmark-log-output-dir", false]], "--log-path": [[175, "cmdoption-groonga-log-path", false], [181, "cmdoption-groonga-suggest-learner-log-path", false]], "--log-rotate-threshold-size": [[175, "cmdoption-groonga-log-rotate-threshold-size", false]], "--max-threads": [[175, "cmdoption-groonga-t", false]], "--n-lines-per-log-file": [[180, "cmdoption-groonga-suggest-httpd-n-lines-per-log-file", false]], "--n-threads": [[180, "cmdoption-groonga-suggest-httpd-t", false]], "--pid-path": [[175, "cmdoption-groonga-pid-path", false]], "--port": [[175, "cmdoption-groonga-p", false], [176, "cmdoption-groonga-benchmark-p", false], [180, "cmdoption-groonga-suggest-httpd-p", false]], "--protocol": [[175, "cmdoption-groonga-protocol", false], [176, "cmdoption-groonga-benchmark-protocol", false]], "--query-log-path": [[175, "cmdoption-groonga-query-log-path", false]], "--query-log-rotate-threshold-size": [[175, "cmdoption-groonga-query-log-rotate-threshold-size", false]], "--receive-endpoint": [[180, "cmdoption-groonga-suggest-httpd-r", false], [181, "cmdoption-groonga-suggest-learner-r", false]], "--send-endpoint": [[180, "cmdoption-groonga-suggest-httpd-s", false], [181, "cmdoption-groonga-suggest-learner-s", false]], "--server-id": [[175, "cmdoption-groonga-i", false]], "-a": [[175, "cmdoption-groonga-a", false]], "-c": [[175, "cmdoption-groonga-c", false]], "-d": [[175, "cmdoption-groonga-d", false], [180, "cmdoption-groonga-suggest-httpd-d", false], [181, "cmdoption-groonga-suggest-learner-d", false]], "-e": [[175, "cmdoption-groonga-e", false]], "-h": [[175, "cmdoption-groonga-h", false]], "-i": [[175, "cmdoption-groonga-i", false], [176, "cmdoption-groonga-benchmark-i", false]], "-l": [[175, "cmdoption-groonga-l", false], [180, "cmdoption-groonga-suggest-httpd-l", false], [181, "cmdoption-groonga-suggest-learner-l", false]], "-m": [[174, "cmdoption-grnslap-m", false]], "-n": [[175, "cmdoption-groonga-n", false]], "-p": [[174, "cmdoption-grnslap-P", false], [175, "cmdoption-groonga-p", false], [176, "cmdoption-groonga-benchmark-p", false], [180, "cmdoption-groonga-suggest-httpd-p", false]], "-r": [[180, "cmdoption-groonga-suggest-httpd-r", false], [181, "cmdoption-groonga-suggest-learner-r", false]], "-s": [[175, "cmdoption-groonga-s", false], [180, "cmdoption-groonga-suggest-httpd-s", false], [181, "cmdoption-groonga-suggest-learner-s", false]], "-t": [[175, "cmdoption-groonga-t", false], [180, "cmdoption-groonga-suggest-httpd-t", false]], "command": [[175, "cmdoption-groonga-arg-command", false]], "db": [[176, "cmdoption-groonga-benchmark-arg-db", false]], "dest": [[174, "cmdoption-grnslap-arg-dest", false], [175, "cmdoption-groonga-arg-dest", false]], "grn_cache (c type)": [[61, "c.grn_cache", false]], "grn_cache_close (c function)": [[61, "c.grn_cache_close", false]], "grn_cache_current_get (c function)": [[61, "c.grn_cache_current_get", false]], "grn_cache_current_set (c function)": [[61, "c.grn_cache_current_set", false]], "grn_cache_get_max_n_entries (c function)": [[61, "c.grn_cache_get_max_n_entries", false]], "grn_cache_set_max_n_entries (c function)": [[61, "c.grn_cache_set_max_n_entries", false]], "grn_content_type (c type)": [[64, "c.grn_content_type", false]], "grn_expr_add_var (c function)": [[68, "c.grn_expr_add_var", false]], "grn_expr_alloc (c function)": [[68, "c.grn_expr_alloc", false]], "grn_expr_append_const (c function)": [[68, "c.grn_expr_append_const", false]], "grn_expr_append_const_int (c function)": [[68, "c.grn_expr_append_const_int", false]], "grn_expr_append_const_str (c function)": [[68, "c.grn_expr_append_const_str", false]], "grn_expr_append_obj (c function)": [[68, "c.grn_expr_append_obj", false]], "grn_expr_append_op (c function)": [[68, "c.grn_expr_append_op", false]], "grn_expr_close (c function)": [[68, "c.grn_expr_close", false]], "grn_expr_compile (c function)": [[68, "c.grn_expr_compile", false]], "grn_expr_create (c function)": [[68, "c.grn_expr_create", false]], "grn_expr_exec (c function)": [[68, "c.grn_expr_exec", false]], "grn_expr_get_keywords (c function)": [[68, "c.grn_expr_get_keywords", false]], "grn_expr_get_var_by_offset (c function)": [[68, "c.grn_expr_get_var_by_offset", false]], "grn_expr_syntax_escape (c function)": [[68, "c.grn_expr_syntax_escape", false]], "grn_expr_syntax_escape_query (c function)": [[68, "c.grn_expr_syntax_escape_query", false]], "grn_fin (c function)": [[84, "c.grn_fin", false]], "grn_ii (c type)": [[71, "c.grn_ii", false]], "grn_ii_buffer (c type)": [[71, "c.grn_ii_buffer", false]], "grn_ii_buffer_append (c function)": [[71, "c.grn_ii_buffer_append", false]], "grn_ii_buffer_close (c function)": [[71, "c.grn_ii_buffer_close", false]], "grn_ii_buffer_commit (c function)": [[71, "c.grn_ii_buffer_commit", false]], "grn_ii_buffer_open (c function)": [[71, "c.grn_ii_buffer_open", false]], "grn_init (c function)": [[84, "c.grn_init", false]], "grn_inspect (c function)": [[74, "c.grn_inspect", false]], "grn_inspect_encoding (c function)": [[74, "c.grn_inspect_encoding", false]], "grn_inspect_indented (c function)": [[74, "c.grn_inspect_indented", false]], "grn_inspect_limited (c function)": [[74, "c.grn_inspect_limited", false]], "grn_inspect_name (c function)": [[74, "c.grn_inspect_name", false]], "grn_inspect_query_log_flags (c function)": [[74, "c.grn_inspect_query_log_flags", false]], "grn_inspect_type (c function)": [[74, "c.grn_inspect_type", false]], "grn_p (c function)": [[74, "c.grn_p", false]], "grn_p_geo_point (c function)": [[74, "c.grn_p_geo_point", false]], "grn_p_ii_values (c function)": [[74, "c.grn_p_ii_values", false]], "grn_plugin_charlen (c function)": [[85, "c.grn_plugin_charlen", false]], "grn_plugin_command_create (c function)": [[85, "c.grn_plugin_command_create", false]], "grn_plugin_error (c macro)": [[85, "c.GRN_PLUGIN_ERROR", false]], "grn_plugin_expr_var_init (c function)": [[85, "c.grn_plugin_expr_var_init", false]], "grn_plugin_fin (c function)": [[85, "c.GRN_PLUGIN_FIN", false]], "grn_plugin_free (c macro)": [[85, "c.GRN_PLUGIN_FREE", false]], "grn_plugin_init (c function)": [[85, "c.GRN_PLUGIN_INIT", false]], "grn_plugin_isspace (c function)": [[85, "c.grn_plugin_isspace", false]], "grn_plugin_log (c macro)": [[85, "c.GRN_PLUGIN_LOG", false]], "grn_plugin_malloc (c macro)": [[85, "c.GRN_PLUGIN_MALLOC", false]], "grn_plugin_mutex (c type)": [[85, "c.grn_plugin_mutex", false]], "grn_plugin_mutex_close (c function)": [[85, "c.grn_plugin_mutex_close", false]], "grn_plugin_mutex_lock (c function)": [[85, "c.grn_plugin_mutex_lock", false]], "grn_plugin_mutex_open (c function)": [[85, "c.grn_plugin_mutex_open", false]], "grn_plugin_mutex_unlock (c function)": [[85, "c.grn_plugin_mutex_unlock", false]], "grn_plugin_proc_alloc (c function)": [[85, "c.grn_plugin_proc_alloc", false]], "grn_plugin_proc_get_var (c function)": [[85, "c.grn_plugin_proc_get_var", false]], "grn_plugin_proc_get_var_by_offset (c function)": [[85, "c.grn_plugin_proc_get_var_by_offset", false]], "grn_plugin_realloc (c macro)": [[85, "c.GRN_PLUGIN_REALLOC", false]], "grn_plugin_register (c function)": [[85, "c.GRN_PLUGIN_REGISTER", false]], "grn_plugin_win32_base_dir (c function)": [[85, "c.grn_plugin_win32_base_dir", false]], "grn_plugin_windows_base_dir (c function)": [[85, "c.grn_plugin_windows_base_dir", false]], "grn_thread_get_limit (c function)": [[81, "c.grn_thread_get_limit", false]], "grn_thread_get_limit_func (c type)": [[81, "c.grn_thread_get_limit_func", false]], "grn_thread_set_get_limit_func (c function)": [[81, "c.grn_thread_set_get_limit_func", false]], "grn_thread_set_limit (c function)": [[81, "c.grn_thread_set_limit", false]], "grn_thread_set_limit_func (c type)": [[81, "c.grn_thread_set_limit_func", false]], "grn_thread_set_set_limit_func (c function)": [[81, "c.grn_thread_set_set_limit_func", false]], "grnslap \u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3": [[174, "cmdoption-grnslap-P", false], [174, "cmdoption-grnslap-arg-dest", false], [174, "cmdoption-grnslap-m", false]], "groonga \u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3": [[175, "cmdoption-groonga-a", false], [175, "cmdoption-groonga-arg-command", false], [175, "cmdoption-groonga-arg-dest", false], [175, "cmdoption-groonga-bind-address", false], [175, "cmdoption-groonga-c", false], [175, "cmdoption-groonga-cache-base-path", false], [175, "cmdoption-groonga-cache-limit", false], [175, "cmdoption-groonga-config-path", false], [175, "cmdoption-groonga-d", false], [175, "cmdoption-groonga-default-match-escalation-threshold", false], [175, "cmdoption-groonga-default-n-workers", false], [175, "cmdoption-groonga-default-request-timeout", false], [175, "cmdoption-groonga-document-root", false], [175, "cmdoption-groonga-e", false], [175, "cmdoption-groonga-h", false], [175, "cmdoption-groonga-i", false], [175, "cmdoption-groonga-l", false], [175, "cmdoption-groonga-log-flags", false], [175, "cmdoption-groonga-log-path", false], [175, "cmdoption-groonga-log-rotate-threshold-size", false], [175, "cmdoption-groonga-n", false], [175, "cmdoption-groonga-p", false], [175, "cmdoption-groonga-pid-path", false], [175, "cmdoption-groonga-protocol", false], [175, "cmdoption-groonga-query-log-path", false], [175, "cmdoption-groonga-query-log-rotate-threshold-size", false], [175, "cmdoption-groonga-s", false], [175, "cmdoption-groonga-t", false]], "groonga-benchmark \u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3": [[176, "cmdoption-groonga-benchmark-arg-db", false], [176, "cmdoption-groonga-benchmark-arg-script", false], [176, "cmdoption-groonga-benchmark-dir", false], [176, "cmdoption-groonga-benchmark-ftp", false], [176, "cmdoption-groonga-benchmark-groonga", false], [176, "cmdoption-groonga-benchmark-i", false], [176, "cmdoption-groonga-benchmark-log-output-dir", false], [176, "cmdoption-groonga-benchmark-p", false], [176, "cmdoption-groonga-benchmark-protocol", false]], "groonga-suggest-httpd \u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3": [[180, "cmdoption-groonga-suggest-httpd-d", false], [180, "cmdoption-groonga-suggest-httpd-disable-max-fd-check", false], [180, "cmdoption-groonga-suggest-httpd-l", false], [180, "cmdoption-groonga-suggest-httpd-n-lines-per-log-file", false], [180, "cmdoption-groonga-suggest-httpd-p", false], [180, "cmdoption-groonga-suggest-httpd-r", false], [180, "cmdoption-groonga-suggest-httpd-s", false], [180, "cmdoption-groonga-suggest-httpd-t", false]], "groonga-suggest-learner \u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3": [[181, "cmdoption-groonga-suggest-learner-d", false], [181, "cmdoption-groonga-suggest-learner-l", false], [181, "cmdoption-groonga-suggest-learner-log-level", false], [181, "cmdoption-groonga-suggest-learner-log-path", false], [181, "cmdoption-groonga-suggest-learner-r", false], [181, "cmdoption-groonga-suggest-learner-s", false]], "script": [[176, "cmdoption-groonga-benchmark-arg-script", false]]}, "objects": {"": [[85, 0, 1, "c.GRN_PLUGIN_ERROR", "GRN_PLUGIN_ERROR"], [85, 1, 1, "c.GRN_PLUGIN_FIN", "GRN_PLUGIN_FIN"], [85, 0, 1, "c.GRN_PLUGIN_FREE", "GRN_PLUGIN_FREE"], [85, 1, 1, "c.GRN_PLUGIN_INIT", "GRN_PLUGIN_INIT"], [85, 0, 1, "c.GRN_PLUGIN_LOG", "GRN_PLUGIN_LOG"], [85, 0, 1, "c.GRN_PLUGIN_MALLOC", "GRN_PLUGIN_MALLOC"], [85, 0, 1, "c.GRN_PLUGIN_REALLOC", "GRN_PLUGIN_REALLOC"], [85, 1, 1, "c.GRN_PLUGIN_REGISTER", "GRN_PLUGIN_REGISTER"], [61, 3, 1, "c.grn_cache", "grn_cache"], [61, 1, 1, "c.grn_cache_close", "grn_cache_close"], [61, 1, 1, "c.grn_cache_current_get", "grn_cache_current_get"], [61, 1, 1, "c.grn_cache_current_set", "grn_cache_current_set"], [61, 1, 1, "c.grn_cache_get_max_n_entries", "grn_cache_get_max_n_entries"], [61, 1, 1, "c.grn_cache_set_max_n_entries", "grn_cache_set_max_n_entries"], [64, 3, 1, "c.grn_content_type", "grn_content_type"], [68, 1, 1, "c.grn_expr_add_var", "grn_expr_add_var"], [68, 1, 1, "c.grn_expr_alloc", "grn_expr_alloc"], [68, 1, 1, "c.grn_expr_append_const", "grn_expr_append_const"], [68, 1, 1, "c.grn_expr_append_const_int", "grn_expr_append_const_int"], [68, 1, 1, "c.grn_expr_append_const_str", "grn_expr_append_const_str"], [68, 1, 1, "c.grn_expr_append_obj", "grn_expr_append_obj"], [68, 1, 1, "c.grn_expr_append_op", "grn_expr_append_op"], [68, 1, 1, "c.grn_expr_close", "grn_expr_close"], [68, 1, 1, "c.grn_expr_compile", "grn_expr_compile"], [68, 1, 1, "c.grn_expr_create", "grn_expr_create"], [68, 1, 1, "c.grn_expr_exec", "grn_expr_exec"], [68, 1, 1, "c.grn_expr_get_keywords", "grn_expr_get_keywords"], [68, 1, 1, "c.grn_expr_get_var_by_offset", "grn_expr_get_var_by_offset"], [68, 1, 1, "c.grn_expr_syntax_escape", "grn_expr_syntax_escape"], [68, 1, 1, "c.grn_expr_syntax_escape_query", "grn_expr_syntax_escape_query"], [84, 1, 1, "c.grn_fin", "grn_fin"], [71, 3, 1, "c.grn_ii", "grn_ii"], [71, 3, 1, "c.grn_ii_buffer", "grn_ii_buffer"], [71, 1, 1, "c.grn_ii_buffer_append", "grn_ii_buffer_append"], [71, 1, 1, "c.grn_ii_buffer_close", "grn_ii_buffer_close"], [71, 1, 1, "c.grn_ii_buffer_commit", "grn_ii_buffer_commit"], [71, 1, 1, "c.grn_ii_buffer_open", "grn_ii_buffer_open"], [84, 1, 1, "c.grn_init", "grn_init"], [74, 1, 1, "c.grn_inspect", "grn_inspect"], [74, 1, 1, "c.grn_inspect_encoding", "grn_inspect_encoding"], [74, 1, 1, "c.grn_inspect_indented", "grn_inspect_indented"], [74, 1, 1, "c.grn_inspect_limited", "grn_inspect_limited"], [74, 1, 1, "c.grn_inspect_name", "grn_inspect_name"], [74, 1, 1, "c.grn_inspect_query_log_flags", "grn_inspect_query_log_flags"], [74, 1, 1, "c.grn_inspect_type", "grn_inspect_type"], [74, 1, 1, "c.grn_p", "grn_p"], [74, 1, 1, "c.grn_p_geo_point", "grn_p_geo_point"], [74, 1, 1, "c.grn_p_ii_values", "grn_p_ii_values"], [85, 1, 1, "c.grn_plugin_charlen", "grn_plugin_charlen"], [85, 1, 1, "c.grn_plugin_command_create", "grn_plugin_command_create"], [85, 1, 1, "c.grn_plugin_expr_var_init", "grn_plugin_expr_var_init"], [85, 1, 1, "c.grn_plugin_isspace", "grn_plugin_isspace"], [85, 3, 1, "c.grn_plugin_mutex", "grn_plugin_mutex"], [85, 1, 1, "c.grn_plugin_mutex_close", "grn_plugin_mutex_close"], [85, 1, 1, "c.grn_plugin_mutex_lock", "grn_plugin_mutex_lock"], [85, 1, 1, "c.grn_plugin_mutex_open", "grn_plugin_mutex_open"], [85, 1, 1, "c.grn_plugin_mutex_unlock", "grn_plugin_mutex_unlock"], [85, 1, 1, "c.grn_plugin_proc_alloc", "grn_plugin_proc_alloc"], [85, 1, 1, "c.grn_plugin_proc_get_var", "grn_plugin_proc_get_var"], [85, 1, 1, "c.grn_plugin_proc_get_var_by_offset", "grn_plugin_proc_get_var_by_offset"], [85, 1, 1, "c.grn_plugin_win32_base_dir", "grn_plugin_win32_base_dir"], [85, 1, 1, "c.grn_plugin_windows_base_dir", "grn_plugin_windows_base_dir"], [81, 1, 1, "c.grn_thread_get_limit", "grn_thread_get_limit"], [81, 3, 1, "c.grn_thread_get_limit_func", "grn_thread_get_limit_func"], [81, 1, 1, "c.grn_thread_set_get_limit_func", "grn_thread_set_get_limit_func"], [81, 1, 1, "c.grn_thread_set_limit", "grn_thread_set_limit"], [81, 3, 1, "c.grn_thread_set_limit_func", "grn_thread_set_limit_func"], [81, 1, 1, "c.grn_thread_set_set_limit_func", "grn_thread_set_set_limit_func"]], "GRN_PLUGIN_FIN": [[85, 2, 1, "c.GRN_PLUGIN_FIN", "ctx"]], "GRN_PLUGIN_INIT": [[85, 2, 1, "c.GRN_PLUGIN_INIT", "ctx"]], "GRN_PLUGIN_REGISTER": [[85, 2, 1, "c.GRN_PLUGIN_REGISTER", "ctx"]], "grn_cache_close": [[61, 2, 1, "c.grn_cache_close", "cache"], [61, 2, 1, "c.grn_cache_close", "ctx"]], "grn_cache_current_get": [[61, 2, 1, "c.grn_cache_current_get", "ctx"]], "grn_cache_current_set": [[61, 2, 1, "c.grn_cache_current_set", "cache"], [61, 2, 1, "c.grn_cache_current_set", "ctx"]], "grn_cache_get_max_n_entries": [[61, 2, 1, "c.grn_cache_get_max_n_entries", "cache"], [61, 2, 1, "c.grn_cache_get_max_n_entries", "ctx"]], "grn_cache_set_max_n_entries": [[61, 2, 1, "c.grn_cache_set_max_n_entries", "cache"], [61, 2, 1, "c.grn_cache_set_max_n_entries", "ctx"], [61, 2, 1, "c.grn_cache_set_max_n_entries", "n"]], "grn_expr_add_var": [[68, 2, 1, "c.grn_expr_add_var", "ctx"], [68, 2, 1, "c.grn_expr_add_var", "expr"], [68, 2, 1, "c.grn_expr_add_var", "name"], [68, 2, 1, "c.grn_expr_add_var", "name_size"]], "grn_expr_alloc": [[68, 2, 1, "c.grn_expr_alloc", "ctx"], [68, 2, 1, "c.grn_expr_alloc", "domain"], [68, 2, 1, "c.grn_expr_alloc", "expr"], [68, 2, 1, "c.grn_expr_alloc", "flags"]], "grn_expr_append_const": [[68, 2, 1, "c.grn_expr_append_const", "ctx"], [68, 2, 1, "c.grn_expr_append_const", "expr"], [68, 2, 1, "c.grn_expr_append_const", "nargs"], [68, 2, 1, "c.grn_expr_append_const", "obj"], [68, 2, 1, "c.grn_expr_append_const", "op"]], "grn_expr_append_const_int": [[68, 2, 1, "c.grn_expr_append_const_int", "ctx"], [68, 2, 1, "c.grn_expr_append_const_int", "expr"], [68, 2, 1, "c.grn_expr_append_const_int", "i"], [68, 2, 1, "c.grn_expr_append_const_int", "nargs"], [68, 2, 1, "c.grn_expr_append_const_int", "op"]], "grn_expr_append_const_str": [[68, 2, 1, "c.grn_expr_append_const_str", "ctx"], [68, 2, 1, "c.grn_expr_append_const_str", "expr"], [68, 2, 1, "c.grn_expr_append_const_str", "nargs"], [68, 2, 1, "c.grn_expr_append_const_str", "op"], [68, 2, 1, "c.grn_expr_append_const_str", "str"], [68, 2, 1, "c.grn_expr_append_const_str", "str_size"]], "grn_expr_append_obj": [[68, 2, 1, "c.grn_expr_append_obj", "ctx"], [68, 2, 1, "c.grn_expr_append_obj", "expr"], [68, 2, 1, "c.grn_expr_append_obj", "nargs"], [68, 2, 1, "c.grn_expr_append_obj", "obj"], [68, 2, 1, "c.grn_expr_append_obj", "op"]], "grn_expr_append_op": [[68, 2, 1, "c.grn_expr_append_op", "ctx"], [68, 2, 1, "c.grn_expr_append_op", "expr"], [68, 2, 1, "c.grn_expr_append_op", "nargs"], [68, 2, 1, "c.grn_expr_append_op", "op"]], "grn_expr_close": [[68, 2, 1, "c.grn_expr_close", "ctx"], [68, 2, 1, "c.grn_expr_close", "expr"]], "grn_expr_compile": [[68, 2, 1, "c.grn_expr_compile", "ctx"], [68, 2, 1, "c.grn_expr_compile", "expr"]], "grn_expr_create": [[68, 2, 1, "c.grn_expr_create", "ctx"], [68, 2, 1, "c.grn_expr_create", "name"], [68, 2, 1, "c.grn_expr_create", "name_size"]], "grn_expr_exec": [[68, 2, 1, "c.grn_expr_exec", "ctx"], [68, 2, 1, "c.grn_expr_exec", "expr"], [68, 2, 1, "c.grn_expr_exec", "nargs"]], "grn_expr_get_keywords": [[68, 2, 1, "c.grn_expr_get_keywords", "ctx"], [68, 2, 1, "c.grn_expr_get_keywords", "expr"], [68, 2, 1, "c.grn_expr_get_keywords", "keywords"]], "grn_expr_get_var_by_offset": [[68, 2, 1, "c.grn_expr_get_var_by_offset", "ctx"], [68, 2, 1, "c.grn_expr_get_var_by_offset", "expr"], [68, 2, 1, "c.grn_expr_get_var_by_offset", "offset"]], "grn_expr_syntax_escape": [[68, 2, 1, "c.grn_expr_syntax_escape", "ctx"], [68, 2, 1, "c.grn_expr_syntax_escape", "escape_character"], [68, 2, 1, "c.grn_expr_syntax_escape", "escaped_string"], [68, 2, 1, "c.grn_expr_syntax_escape", "string"], [68, 2, 1, "c.grn_expr_syntax_escape", "string_size"], [68, 2, 1, "c.grn_expr_syntax_escape", "target_characters"]], "grn_expr_syntax_escape_query": [[68, 2, 1, "c.grn_expr_syntax_escape_query", "ctx"], [68, 2, 1, "c.grn_expr_syntax_escape_query", "escaped_query"], [68, 2, 1, "c.grn_expr_syntax_escape_query", "query"], [68, 2, 1, "c.grn_expr_syntax_escape_query", "query_size"]], "grn_ii_buffer_append": [[71, 2, 1, "c.grn_ii_buffer_append", "ctx"], [71, 2, 1, "c.grn_ii_buffer_append", "ii_buffer"], [71, 2, 1, "c.grn_ii_buffer_append", "rid"], [71, 2, 1, "c.grn_ii_buffer_append", "section"], [71, 2, 1, "c.grn_ii_buffer_append", "value"]], "grn_ii_buffer_close": [[71, 2, 1, "c.grn_ii_buffer_close", "ctx"], [71, 2, 1, "c.grn_ii_buffer_close", "ii_buffer"]], "grn_ii_buffer_commit": [[71, 2, 1, "c.grn_ii_buffer_commit", "ctx"], [71, 2, 1, "c.grn_ii_buffer_commit", "ii_buffer"]], "grn_ii_buffer_open": [[71, 2, 1, "c.grn_ii_buffer_open", "ctx"], [71, 2, 1, "c.grn_ii_buffer_open", "ii"], [71, 2, 1, "c.grn_ii_buffer_open", "update_buffer_size"]], "grn_inspect": [[74, 2, 1, "c.grn_inspect", "buffer"], [74, 2, 1, "c.grn_inspect", "ctx"], [74, 2, 1, "c.grn_inspect", "obj"]], "grn_inspect_encoding": [[74, 2, 1, "c.grn_inspect_encoding", "buffer"], [74, 2, 1, "c.grn_inspect_encoding", "ctx"], [74, 2, 1, "c.grn_inspect_encoding", "encoding"]], "grn_inspect_indented": [[74, 2, 1, "c.grn_inspect_indented", "buffer"], [74, 2, 1, "c.grn_inspect_indented", "ctx"], [74, 2, 1, "c.grn_inspect_indented", "indent"], [74, 2, 1, "c.grn_inspect_indented", "obj"]], "grn_inspect_limited": [[74, 2, 1, "c.grn_inspect_limited", "buffer"], [74, 2, 1, "c.grn_inspect_limited", "ctx"], [74, 2, 1, "c.grn_inspect_limited", "obj"]], "grn_inspect_name": [[74, 2, 1, "c.grn_inspect_name", "buffer"], [74, 2, 1, "c.grn_inspect_name", "ctx"], [74, 2, 1, "c.grn_inspect_name", "obj"]], "grn_inspect_query_log_flags": [[74, 2, 1, "c.grn_inspect_query_log_flags", "buffer"], [74, 2, 1, "c.grn_inspect_query_log_flags", "ctx"], [74, 2, 1, "c.grn_inspect_query_log_flags", "flags"]], "grn_inspect_type": [[74, 2, 1, "c.grn_inspect_type", "buffer"], [74, 2, 1, "c.grn_inspect_type", "ctx"], [74, 2, 1, "c.grn_inspect_type", "type"]], "grn_p": [[74, 2, 1, "c.grn_p", "ctx"], [74, 2, 1, "c.grn_p", "obj"]], "grn_p_geo_point": [[74, 2, 1, "c.grn_p_geo_point", "ctx"], [74, 2, 1, "c.grn_p_geo_point", "point"]], "grn_p_ii_values": [[74, 2, 1, "c.grn_p_ii_values", "ctx"], [74, 2, 1, "c.grn_p_ii_values", "obj"]], "grn_plugin_charlen": [[85, 2, 1, "c.grn_plugin_charlen", "ctx"], [85, 2, 1, "c.grn_plugin_charlen", "encoding"], [85, 2, 1, "c.grn_plugin_charlen", "str_length"], [85, 2, 1, "c.grn_plugin_charlen", "str_ptr"]], "grn_plugin_command_create": [[85, 2, 1, "c.grn_plugin_command_create", "ctx"], [85, 2, 1, "c.grn_plugin_command_create", "func"], [85, 2, 1, "c.grn_plugin_command_create", "n_vars"], [85, 2, 1, "c.grn_plugin_command_create", "name"], [85, 2, 1, "c.grn_plugin_command_create", "name_size"], [85, 2, 1, "c.grn_plugin_command_create", "vars"]], "grn_plugin_expr_var_init": [[85, 2, 1, "c.grn_plugin_expr_var_init", "ctx"], [85, 2, 1, "c.grn_plugin_expr_var_init", "name"], [85, 2, 1, "c.grn_plugin_expr_var_init", "name_size"], [85, 2, 1, "c.grn_plugin_expr_var_init", "var"]], "grn_plugin_isspace": [[85, 2, 1, "c.grn_plugin_isspace", "ctx"], [85, 2, 1, "c.grn_plugin_isspace", "encoding"], [85, 2, 1, "c.grn_plugin_isspace", "str_length"], [85, 2, 1, "c.grn_plugin_isspace", "str_ptr"]], "grn_plugin_mutex_close": [[85, 2, 1, "c.grn_plugin_mutex_close", "ctx"], [85, 2, 1, "c.grn_plugin_mutex_close", "mutex"]], "grn_plugin_mutex_lock": [[85, 2, 1, "c.grn_plugin_mutex_lock", "ctx"], [85, 2, 1, "c.grn_plugin_mutex_lock", "mutex"]], "grn_plugin_mutex_open": [[85, 2, 1, "c.grn_plugin_mutex_open", "ctx"]], "grn_plugin_mutex_unlock": [[85, 2, 1, "c.grn_plugin_mutex_unlock", "ctx"], [85, 2, 1, "c.grn_plugin_mutex_unlock", "mutex"]], "grn_plugin_proc_alloc": [[85, 2, 1, "c.grn_plugin_proc_alloc", "ctx"], [85, 2, 1, "c.grn_plugin_proc_alloc", "domain"], [85, 2, 1, "c.grn_plugin_proc_alloc", "flags"], [85, 2, 1, "c.grn_plugin_proc_alloc", "user_data"]], "grn_plugin_proc_get_var": [[85, 2, 1, "c.grn_plugin_proc_get_var", "ctx"], [85, 2, 1, "c.grn_plugin_proc_get_var", "name"], [85, 2, 1, "c.grn_plugin_proc_get_var", "name_size"], [85, 2, 1, "c.grn_plugin_proc_get_var", "user_data"]], "grn_plugin_proc_get_var_by_offset": [[85, 2, 1, "c.grn_plugin_proc_get_var_by_offset", "ctx"], [85, 2, 1, "c.grn_plugin_proc_get_var_by_offset", "offset"], [85, 2, 1, "c.grn_plugin_proc_get_var_by_offset", "user_data"]], "grn_thread_set_get_limit_func": [[81, 2, 1, "c.grn_thread_set_get_limit_func", "data"], [81, 2, 1, "c.grn_thread_set_get_limit_func", "func"]], "grn_thread_set_limit": [[81, 2, 1, "c.grn_thread_set_limit", "new_limit"]], "grn_thread_set_set_limit_func": [[81, 2, 1, "c.grn_thread_set_set_limit_func", "data"], [81, 2, 1, "c.grn_thread_set_set_limit_func", "func"]], "grnslap": [[174, 4, 1, "cmdoption-grnslap-P", "-P"], [174, 4, 1, "cmdoption-grnslap-m", "-m"], [174, 4, 1, "cmdoption-grnslap-arg-dest", "dest"]], "groonga": [[175, 4, 1, "cmdoption-groonga-a", "--address"], [175, 4, 1, "cmdoption-groonga-bind-address", "--bind-address"], [175, 4, 1, "cmdoption-groonga-cache-base-path", "--cache-base-path"], [175, 4, 1, "cmdoption-groonga-cache-limit", "--cache-limit"], [175, 4, 1, "cmdoption-groonga-config-path", "--config-path"], [175, 4, 1, "cmdoption-groonga-default-match-escalation-threshold", "--default-match-escalation-threshold"], [175, 4, 1, "cmdoption-groonga-default-n-workers", "--default-n-workers"], [175, 4, 1, "cmdoption-groonga-default-request-timeout", "--default-request-timeout"], [175, 4, 1, "cmdoption-groonga-document-root", "--document-root"], [175, 4, 1, "cmdoption-groonga-e", "--encoding"], [175, 4, 1, "cmdoption-groonga-h", "--help"], [175, 4, 1, "cmdoption-groonga-log-flags", "--log-flags"], [175, 4, 1, "cmdoption-groonga-l", "--log-level"], [175, 4, 1, "cmdoption-groonga-log-path", "--log-path"], [175, 4, 1, "cmdoption-groonga-log-rotate-threshold-size", "--log-rotate-threshold-size"], [175, 4, 1, "cmdoption-groonga-t", "--max-threads"], [175, 4, 1, "cmdoption-groonga-pid-path", "--pid-path"], [175, 4, 1, "cmdoption-groonga-p", "--port"], [175, 4, 1, "cmdoption-groonga-protocol", "--protocol"], [175, 4, 1, "cmdoption-groonga-query-log-path", "--query-log-path"], [175, 4, 1, "cmdoption-groonga-query-log-rotate-threshold-size", "--query-log-rotate-threshold-size"], [175, 4, 1, "cmdoption-groonga-i", "--server-id"], [175, 4, 1, "cmdoption-groonga-a", "-a"], [175, 4, 1, "cmdoption-groonga-c", "-c"], [175, 4, 1, "cmdoption-groonga-d", "-d"], [175, 4, 1, "cmdoption-groonga-e", "-e"], [175, 4, 1, "cmdoption-groonga-h", "-h"], [175, 4, 1, "cmdoption-groonga-i", "-i"], [175, 4, 1, "cmdoption-groonga-l", "-l"], [175, 4, 1, "cmdoption-groonga-n", "-n"], [175, 4, 1, "cmdoption-groonga-p", "-p"], [175, 4, 1, "cmdoption-groonga-s", "-s"], [175, 4, 1, "cmdoption-groonga-t", "-t"], [175, 4, 1, "cmdoption-groonga-arg-command", "command"], [175, 4, 1, "cmdoption-groonga-arg-dest", "dest"]], "groonga-benchmark": [[176, 4, 1, "cmdoption-groonga-benchmark-dir", "--dir"], [176, 4, 1, "cmdoption-groonga-benchmark-ftp", "--ftp"], [176, 4, 1, "cmdoption-groonga-benchmark-groonga", "--groonga"], [176, 4, 1, "cmdoption-groonga-benchmark-i", "--host"], [176, 4, 1, "cmdoption-groonga-benchmark-log-output-dir", "--log-output-dir"], [176, 4, 1, "cmdoption-groonga-benchmark-p", "--port"], [176, 4, 1, "cmdoption-groonga-benchmark-protocol", "--protocol"], [176, 4, 1, "cmdoption-groonga-benchmark-i", "-i"], [176, 4, 1, "cmdoption-groonga-benchmark-p", "-p"], [176, 4, 1, "cmdoption-groonga-benchmark-arg-db", "db"], [176, 4, 1, "cmdoption-groonga-benchmark-arg-script", "script"]], "groonga-suggest-httpd": [[180, 4, 1, "cmdoption-groonga-suggest-httpd-d", "--daemon"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-disable-max-fd-check", "--disable-max-fd-check"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-l", "--log-base-path"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-n-lines-per-log-file", "--n-lines-per-log-file"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-t", "--n-threads"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-p", "--port"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-r", "--receive-endpoint"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-s", "--send-endpoint"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-d", "-d"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-l", "-l"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-p", "-p"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-r", "-r"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-s", "-s"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-t", "-t"]], "groonga-suggest-learner": [[181, 4, 1, "cmdoption-groonga-suggest-learner-d", "--daemon"], [181, 4, 1, "cmdoption-groonga-suggest-learner-l", "--log-base-path"], [181, 4, 1, "cmdoption-groonga-suggest-learner-log-level", "--log-level"], [181, 4, 1, "cmdoption-groonga-suggest-learner-log-path", "--log-path"], [181, 4, 1, "cmdoption-groonga-suggest-learner-r", "--receive-endpoint"], [181, 4, 1, "cmdoption-groonga-suggest-learner-s", "--send-endpoint"], [181, 4, 1, "cmdoption-groonga-suggest-learner-d", "-d"], [181, 4, 1, "cmdoption-groonga-suggest-learner-l", "-l"], [181, 4, 1, "cmdoption-groonga-suggest-learner-r", "-r"], [181, 4, 1, "cmdoption-groonga-suggest-learner-s", "-s"]]}, "objnames": {"0": ["c", "macro", "C \u306e\u30de\u30af\u30ed"], "1": ["c", "function", "C \u306e\u95a2\u6570"], "2": ["c", "functionParam", "C \u95a2\u6570\u30d1\u30e9\u30e1\u30fc\u30bf"], "3": ["c", "type", "C \u306e\u30c7\u30fc\u30bf\u578b"], "4": ["std", "cmdoption", "\u30d7\u30ed\u30b0\u30e9\u30e0\u30aa\u30d7\u30b7\u30e7\u30f3"]}, "objtypes": {"0": "c:macro", "1": "c:function", "2": "c:functionParam", "3": "c:type", "4": "std:cmdoption"}, "terms": {"! (": 43, "!!": [43, 45, 125, 177, 264, 265, 266, 267, 268, 269, 270, 271, 275, 307, 311], "!\"": [41, 42, 43, 44, 45, 47, 74, 95, 132, 134, 135, 156, 168, 177, 195, 219, 224, 225, 226, 245, 264, 265, 266, 267, 268, 269, 270, 271, 292, 305, 307, 308, 310, 311, 312], "!(": 52, "!(n": 225, "!)": 177, "!=": 202, "![": 272, "!\\": [224, 225], "!condition": 225, "!xxx": 49, "\"\n*": 44, "\" (": [231, 232, 233, 234, 235, 257, 258, 259], "\"\"": [40, 41, 42, 43, 44, 51, 110, 111, 210, 224, 225, 244, 282], "\"#": [39, 42, 231, 234, 235], "\"#\"": 176, "\"#{": 225, "\"$": 177, "\"%": 244, "\"'": [41, 42, 43, 44, 45, 47, 48, 49, 50, 53, 91, 110, 111, 132, 134, 135, 156, 177, 201, 224, 225, 244, 299, 301], "\"(": [41, 42, 44, 45, 48, 208, 224, 225], "\")": [41, 42, 43, 45, 47, 48, 49, 50, 52, 74, 132, 135, 153, 156, 183, 185, 188, 190, 195, 196, 197, 201, 202, 203, 208, 219, 225, 231, 232, 233, 234, 235, 236, 237, 257, 258, 259, 260, 261, 274, 276, 278, 302, 307, 315], "\"*": [42, 47, 74], "\",": [29, 41, 42, 43, 44, 45, 48, 50, 51, 53, 58, 74, 91, 94, 95, 96, 108, 110, 111, 112, 114, 115, 118, 121, 122, 125, 132, 134, 135, 137, 138, 141, 142, 143, 153, 155, 156, 158, 159, 162, 163, 164, 165, 168, 170, 175, 176, 177, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 231, 232, 233, 234, 235, 236, 237, 244, 245, 246, 247, 250, 251, 253, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 286, 298, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "\"-": [39, 188, 231, 232, 233, 234, 235, 257, 258, 259], "\"--": 44, "\".": [225, 290, 306], "\"..": [42, 45], "\"/": [42, 45, 175, 277, 315], "\":": [41, 42, 43, 44, 45, 50, 51, 52, 58, 91, 94, 96, 97, 108, 110, 111, 114, 121, 122, 123, 125, 132, 133, 134, 135, 136, 137, 138, 139, 141, 142, 153, 154, 155, 156, 158, 159, 164, 165, 168, 169, 170, 175, 176, 177, 180, 184, 186, 188, 192, 194, 195, 197, 198, 201, 202, 203, 205, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 231, 232, 233, 234, 235, 237, 240, 241, 244, 245, 246, 247, 250, 251, 253, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 292, 298, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "\";": [176, 177, 292], "\"<": [43, 44, 45, 48, 111, 191, 192, 193, 237], "\"=": 195, "\">": [191, 192, 193, 206, 241], "\"?": [156, 241], "\"@": [195, 311], "\"[": [42, 43, 45, 47, 52, 99, 115, 118, 132, 134, 135, 143, 156, 163, 244], "\"[\"": 42, "\"\\": [50, 224, 244], "\"\\\\": 244, "\"\\n": [43, 50], "\"]": [29, 41, 42, 43, 44, 50, 51, 74, 91, 111, 112, 115, 116, 117, 122, 132, 134, 135, 137, 156, 175, 180, 188, 201, 205, 206, 219, 221, 225, 250, 286, 301, 307, 308, 311, 314], "\"^": 42, "\"_": [41, 42, 43, 44, 45, 48, 51, 58, 91, 94, 95, 96, 110, 111, 112, 114, 121, 122, 123, 125, 132, 134, 135, 137, 141, 156, 159, 164, 165, 170, 177, 180, 183, 184, 186, 188, 194, 195, 196, 198, 201, 202, 203, 208, 209, 210, 212, 219, 221, 224, 225, 226, 229, 237, 240, 244, 245, 246, 247, 250, 251, 253, 260, 261, 276, 278, 292, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "\"`": 44, "\"a": [41, 42, 43, 44, 49, 74, 135, 156, 168, 210, 224, 237], "\"aa": 44, "\"ab": 252, "\"abc": 44, "\"adventurer": 111, "\"alice": [45, 111, 141, 203], "\"always": 133, "\"and": 202, "\"apple": [42, 229], "\"application": 39, "\"auto": 133, "\"b": [41, 42, 43, 74, 135, 156, 210], "\"black": 229, "\"block": 305, "\"blosc": 44, "\"body": 44, "\"book": 225, "\"byte": 141, "\"c": [41, 43, 74, 135, 156, 210], "\"canceled": 153, "\"case": 42, "\"co": 252, "\"color": 229, "\"column": [125, 141, 142], "\"complete": 252, "\"content": [41, 42, 43, 44, 45, 156, 224, 225, 260, 261], "\"correction": 252, "\"created": [132, 134, 135], "\"cve": 54, "\"d": [74, 262, 264, 275], "\"dav": 195, "\"db": 141, "\"ddl": 49, "\"default": 42, "\"double": 225, "\"droonga": [195, 219], "\"e": [74, 159, 168, 250, 275, 277], "\"element": 91, "\"ellip": 189, "\"ellipsoid": 189, "\"empty": 45, "\"engine": [250, 251, 253], "\"enough": 42, "\"equal": [202, 219], "\"existent": [43, 111], "\"f": [43, 74], "\"fast": 135, "\"flower": 305, "\"force": 53, "\"full": 43, "\"fulltext": 168, "\"g": [74, 208], "\"game": [42, 286], "\"good": [132, 135, 156, 225], "\"gr": 161, "\"greater": 202, "\"gronga": 252, "\"groonga": [42, 43, 44, 45, 91, 122, 156, 161, 195, 203, 205, 206, 210, 219, 224, 225, 252, 310], "\"h": [168, 237, 275], "\"hello": [111, 165, 261], "\"http": 91, "\"i": [41, 42, 43, 44, 95, 134, 135, 156, 224, 225, 226, 260, 310, 311], "\"include": 137, "\"index": 141, "\"invalid": 111, "\"is": 305, "\"item": 42, "\"i\u3046": 44, "\"k": 307, "\"key": [42, 141], "\"keyword": [54, 156], "\"l": 275, "\"label": 156, "\"large": 141, "\"less": 202, "\"lic": 195, "\"localhost": 298, "\"lz4": 141, "\"match": [202, 219], "\"max": [42, 205], "\"medium": 141, "\"message": [244, 246, 247], "\"monkey": 305, "\"mroonga": [42, 91, 122, 156, 210, 219, 225], "\"mysql": [91, 252], "\"n": [41, 42, 43, 44, 51, 94, 95, 96, 125, 132, 134, 135, 141, 156, 158, 177, 224, 225, 298, 308, 312], "\"name": [42, 44, 45, 141, 202, 203, 211, 276, 278], "\"near": [195, 202, 219], "\"never": 133, "\"new": 188, "\"no": 47, "\"nonexistent": 111, "\"normal": 141, "\"not": 202, "\"null": 47, "\"numbers": 42, "\"o": [262, 264, 275], "\"options": 42, "\"or": 202, "\"pgroonga": [42, 122], "\"phrase": [41, 224], "\"popular": 156, "\"postgresql": 42, "\"pp": 49, "\"prefix": 202, "\"price": 42, "\"proc": 142, "\"product": 42, "\"q1": 203, "\"r": 275, "\"records": 45, "\"rect": [47, 189], "\"rectangle": [47, 188, 189], "\"regexp": 202, "\"requires": 47, "\"roonga": 252, "\"rroonga": 42, "\"ruby": [42, 43, 91], "\"s": [42, 159, 168, 250, 251, 270, 271], "\"saerch": 251, "\"say": 225, "\"scalar": 141, "\"se": 250, "\"sea": 250, "\"search": [224, 250, 251, 253], "\"sequence": [159, 250, 251, 253], "\"serach": 251, "\"service": 251, "\"shuffle": 141, "\"similar": [195, 202, 219], "\"small": 141, "\"sound": 251, "\"sphere": 189, "\"sphr": 189, "\"starttime": [97, 241], "\"sticker": 43, "\"string": 111, "\"suffix": [195, 202, 219], "\"sug": 252, "\"suggest": 252, "\"super": 42, "\"t": [41, 168, 277], "\"table": [141, 142, 175], "\"tags": 91, "\"target": 43, "\"text": 39, "\"theater": 314, "\"theatre": 314, "\"timestamp": [41, 137], "\"too": 42, "\"trace": 96, "\"tritonn": 156, "\"truncate": 141, "\"type": [142, 159], "\"uptime": 241, "\"user": 41, "\"v": 41, "\"value": 156, "\"vector": [48, 141], "\"version": 241, "\"w": 275, "\"web": [251, 253], "\"weight": 305, "\"world": 42, "\"x": [44, 48, 49, 52, 224, 225], "\"xxx": 48, "\"y": [41, 52], "\"you": 224, "\"yyyy": 225, "\"zlib": 141, "\"zstd": 141, "\"}": [41, 42, 43, 44, 45, 58, 94, 96, 110, 111, 121, 122, 123, 125, 132, 133, 134, 135, 136, 137, 141, 156, 159, 177, 184, 193, 195, 201, 202, 203, 208, 209, 210, 211, 212, 221, 224, 225, 226, 229, 240, 244, 246, 247, 250, 251, 253, 260, 261, 275, 276, 278, 292, 305, 306, 307, 310, 313, 315], "\"\u00a9": 231, "\"\u00b7": [231, 232, 233, 234, 235, 258, 259], "\"\u2015": [231, 232, 233, 234, 235, 258, 259], "\"\u2171": 43, "\"\u3001": [231, 235, 250, 306], "\"\u3002": 49, "\"\u3050\u3041\u3050\u3043\u3050\u3047\u3050\u3049": [231, 235], "\"\u3058": [231, 235], "\"\u305a": [231, 235], "\"\u308a\u3093\u3054": [257, 258, 259], "\"\u308d\u3086\u304d": 313, "\"\u3093": [231, 232, 233, 234, 235], "\"\u3094": [231, 235], "\"\u30a2": 275, "\"\u30a6": [231, 232, 233, 234, 235], "\"\u30a9\u30aa": [231, 232, 233, 234, 235], "\"\u30aa": [231, 232, 233, 234, 235], "\"\u30aa\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30ac\u30ae\u30b2\u30b4": [231, 232, 233, 234, 235], "\"\u30b3\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30b4\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30b6\u30b8\u30bc\u30be": [231, 232, 233, 234, 235], "\"\u30b8": [231, 232, 233, 234, 235], "\"\u30ba": [231, 232, 233, 234, 235], "\"\u30bd\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30be\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30c2": [231, 232, 233, 234, 235], "\"\u30c5": [231, 232, 233, 234, 235], "\"\u30c8\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30c9\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30ce": 274, "\"\u30ce\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30cf": 274, "\"\u30d0\u30d3\u30d6\u30d9\u30dc": [231, 232, 233, 234, 235, 258, 259], "\"\u30d6": [231, 232, 233, 234, 235, 258, 259], "\"\u30db\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30dc\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30dd\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30df\u30ea": 225, "\"\u30e1": 44, "\"\u30e2\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30e7\u30aa": [231, 232, 233, 234, 235], "\"\u30e8\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30ed\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30f2": [231, 232, 233, 234, 235], "\"\u30f3": [231, 232, 233, 234, 235], "\"\u30fb": [231, 232, 233, 234, 235, 258, 259], "\"\u30fc": [231, 232, 233, 234, 235, 258, 259], "\"\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc": [231, 232, 233, 234, 235, 258, 259], "\"\u52c9": 280, "\"\u59d3": 274, "\"\u5c71": 45, "\"\u5f37": [264, 279, 280], "\"\u5f7c": [231, 232, 233, 234, 235, 274], "\"\u672c": [265, 266, 267, 268, 280], "\"\u7f8a": 44, "\"\u8a9e": [265, 266, 267, 268, 280], "\"\uff09": [36, 250, 305, 315], "\"\uff65": [231, 232, 233, 234, 235, 258, 259], "\"\uff70": [231, 232, 233, 234, 235, 258, 259], "#'": 175, "#<": 74, "#=": 74, "#[": [44, 50], "#arguments": 50, "#command": 50, "#delete": 50, "#each": 50, "#files": 12, "#github": [41, 54], "#groonga": [243, 311], "#group": 50, "#i": 52, "#index": 50, "#inspect": 50, "#key": 50, "#mroonga": [41, 42], "#multi": 41, "#name": 50, "#proxy": 177, "#remove": 50, "#scalar": 50, "#select": 52, "#set": 176, "#value": 50, "#vector": 50, "#with": 50, "#worker": 177, "#{": [53, 228], "#{l": 228, "$\"": [44, 202, 224, 225], "$)": 225, "$groonga": 12, "$prefix": 39, "$request": 54, "${": [17, 42, 44, 51, 112, 114, 132, 134, 135, 142, 143, 156, 164, 180, 225, 244, 248, 281], "% a": [42, 231, 234, 235], "%\"": 244, "%'": 49, "%.*": 74, "%post": 47, "& (": [41, 43, 52, 225], "& _": 315, "& b": [52, 225], "& x": 49, "& y": 48, "&!": [202, 225], "&&": [41, 42, 50, 54, 156, 202, 210, 225, 301, 313], "&..": 312, "&": [43, 44], "&arg": 244, "&command": 96, "&filter": 153, "&frequency": 180, ">": [191, 192, 193, 206], "<": [191, 192, 193, 206], "&n": 180, "&q": 180, "&query": 312, "&request": [51, 153], "&s": 180, "&t": 180, "' \"": [237, 272], "'\"": [47, 48, 54], "'\"$": 177, "'$": 177, "'(": 175, "')": [28, 49, 174, 175, 186], "',": [49, 179], "'-": [48, 175], "'.": 17, "'..": 48, "';": 175, "'='": 175, "'>": 194, "'\\": [43, 44], "'a": 45, "'column": 47, "'config": 175, "'content": [42, 43], "'fixed": 50, "'hay": 11, "'haystack": 11, "'indexblog": 310, "'ja": 17, "'localhost": [174, 175], "'m": [42, 226, 260, 310, 311], "'n": 175, "'needle": 11, "'now": 311, "'or": 47, "'pid": 175, "'query": 47, "'s": [17, 41, 43, 44, 95, 111, 125, 132, 134, 135, 156, 210, 224, 225, 226, 290], "'t": [42, 64, 68, 143, 177], "'tokenmecab": 53, "'ve": 311, "'vector": 50, "'\u3002": 175, "'\u5f0f": 208, "( c": 54, "( e": 54, "(!": 11, "(\"": [41, 42, 43, 44, 45, 47, 48, 52, 53, 74, 111, 132, 135, 153, 156, 175, 188, 191, 192, 193, 197, 202, 203, 205, 206, 208, 209, 225, 231, 232, 233, 234, 235, 236, 237, 257, 258, 259, 260, 261, 272, 274, 275, 276, 278, 302, 308], "($": 156, "(&": [50, 68, 74], "('": [89, 175, 186, 308], "((": [42, 43, 74, 91, 156], "((x": 282, "()": [3, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 61, 64, 68, 74, 81, 84, 85, 132, 134, 135, 156, 166, 167, 185, 188, 189, 190, 197, 199, 201, 204, 245, 284, 285, 286, 287, 288, 315], "(+": 52, "(-": [74, 225], "(.": [12, 42, 208, 225], "(..": [41, 48, 51], "(<": 11, "(=": [11, 100, 225], "(>": [11, 53], "(?": [50, 272], "(?<": 208, "([": [42, 45, 204, 272], "(\\": 44, "(_": [41, 42, 50, 51, 135, 159, 195, 201, 208, 209, 225, 250, 251, 253], "(a": [21, 44], "(age": 183, "(anonymous": 124, "(anonymouse": 74, "(argument": 225, "(arugment": 225, "(body": [41, 44, 45, 191, 192, 193, 275], "(bool": 43, "(categories": 53, "(cmp": 49, "(column": [41, 49, 52, 183, 191, 192, 201, 205, 206, 245, 246, 247], "(com": 302, "(comments": 210, "(condition": [43, 186, 195], "(conditions": 195, "(content": [42, 44, 53, 132, 134, 135, 156, 194, 197, 205, 206, 245], "(contents": [43, 44], "(created": [134, 212], "(ctx": [11, 41, 52, 61, 68, 74, 302], "(cutter": 14, "(cve": [49, 52], "(d": 224, "(database": 303, "(debian": 296, "(default": 50, "(drilldown": 89, "(e": 43, "(eva": 56, "(fedora": 296, "(get": 174, "(grn": [41, 50, 52, 68], "(groonga": [44, 81], "(h": 45, "(html": 194, "(ii": 53, "(index": [246, 247], "(int": [81, 184], "(keyword": 68, "(location": [188, 307, 311, 315], "(match": [42, 202, 203], "(message": [246, 247], "(mingw\u7248": 41, "(model": 197, "(mroonga": 243, "(msghdr": 50, "(n": [52, 132, 134, 135, 156], "(name": [44, 45, 85], "(news": 12, "(nil": 74, "(null": 49, "(offsetted": 41, "(point": [41, 188, 189, 190], "(popular": 156, "(pos": [189, 190], "(price": 41, "(ptr": 37, "(q": 81, "(quantity": 41, "(query": 42, "(r": [176, 244], "(readings": 201, "(reference": 41, "(scan": 14, "(scope": 210, "(score": 50, "(select": 225, "(string": [51, 185], "(tab": 243, "(table": 49, "(tag": [42, 196], "(tags": [42, 219, 221], "(target": [41, 196, 198, 208, 209, 221], "(text": 193, "(threshold": 43, "(time": [211, 212], "(timestamp": [42, 211], "(timeval": 41, "(title": [48, 111, 185, 245], "(true": 42, "(twitter": 51, "(type": 184, "(u": [231, 232, 233, 234, 235, 258, 259], "(uint": 81, "(unknown": 74, "(usec": 41, "(user": 41, "(vc": [41, 54], "(vector": [43, 132, 219], "(void": [41, 81], "(wgs": 315, "(windows": [105, 176], "(x": 49, "(xxx": [48, 52], "(z": 44, "(~": 52, "(\u300c": 12, "(\u30ed\u30b0": [42, 131], "(\u5f0f": 208, "(\u7b46\u8005": 56, ") (": 44, ")\"": [41, 42, 44, 45, 48, 52, 134, 156, 194, 205, 206, 208, 224, 225, 244, 245, 246, 247, 275], ")'": [41, 42, 43, 44, 45, 53, 111, 132, 134, 135, 156, 159, 184, 192, 193, 197, 198, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 231, 232, 233, 234, 235, 250, 251, 253, 257, 258, 259, 272, 274, 275, 307, 311, 315], ")(": [166, 208], "))": [42, 43, 44, 50, 74, 156, 225, 243], ")*": 41, "),": [41, 42, 43, 44, 48, 74, 111, 195], ")-": 12, ").": [12, 27, 28, 42, 205, 206, 302], ")..": 12, ")/": [18, 25, 50], "):": [27, 43, 54, 124, 166, 272, 296, 308], ");": [11, 41, 50, 61, 68, 74, 81, 302], ")=": 303, ")>": 166, ")[": 52, ")\\": 244, ")\\\\": 272, ")]": [48, 111, 124], ")`": 45, ")disk": 244, ")grn": [50, 74], ")groonga": 243, ")hello": 50, ")mroonga": 243, ")senna": 243, ")ucrt\u30e9\u30f3\u30bf\u30a4\u30e0": 54, ")\u3001": [43, 49], ")\u300d": 175, ")\u3059\u3079\u3066": 183, "*\"": [38, 41, 42, 49, 50, 52, 134, 135, 156, 205, 272, 310], "*'": [42, 134, 135, 156], "*)": [42, 74, 208], "**": [74, 130, 141], "***": 130, "*.": 51, "*/": [68, 81, 84], "*<": [42, 43], "*bsd": [7, 8, 37, 39], "*n": [44, 202, 224, 225], "*np": [41, 42, 44, 224], "*npp": [42, 44, 224], "*onp": [41, 42, 44, 224], "*onpp": [42, 224], "*s": [49, 202], "*~": 42, "+ \"": [47, 50], "+ y": 282, "+\"": [53, 156, 202], "+(": 272, "+)": [42, 208], "++": [0, 6, 12, 31, 33, 39, 40, 41, 42, 49, 50, 54, 68, 81, 156, 175, 290], "+-": [68, 177], "+a": 224, "+c": 175, "+ff": [50, 230, 231, 232, 233, 234, 235, 258, 259], "+ff0": 50, "+ff2": 53, "+ffef": 277, "+fff": 277, "+fffe": 168, "+or": 244, "+process": 175, ",\n#": [43, 44, 58, 91, 94, 111, 115, 118, 123, 132, 134, 135, 137, 141, 142, 143, 155, 156, 158, 163, 168, 197, 202, 203, 224, 225, 231, 232, 233, 234, 235, 237, 245, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 274, 275, 277, 279, 280, 298, 305, 307, 308, 311, 312, 315], ",\n[": [42, 43, 45, 50, 122, 125, 188, 205, 206, 286], ",\n]": [43, 44, 45, 111, 134, 156, 210, 224, 301, 305, 313, 315], ",\n{": [41, 42, 43, 44, 45, 91, 111, 122, 123, 125, 132, 134, 135, 137, 156, 159, 177, 195, 196, 201, 202, 203, 210, 211, 212, 224, 225, 229, 240, 244, 245, 246, 247, 250, 251, 253, 260, 261, 276, 278, 306, 310, 313], ", !": [42, 43, 231, 234, 235], ", \"": [41, 42, 43, 44, 52, 91, 125, 156, 191, 192, 195, 205, 211, 231, 234, 235, 272, 310], ", %": [42, 43, 231, 234, 235], ", &": [42, 43, 231, 234, 235], ", \\": [42, 44, 45, 205], ", contents": [43, 44], ", normalizernfkc": 45, ", tokenfilternfkc": [42, 43], ", {": [177, 191, 292], ", |": 111, ", \u3052": [44, 231, 232, 233, 234, 235], ", \u3052\u30fc": [44, 231, 232, 233, 234, 235], ", \u3081": [44, 231, 232, 233, 234, 235], ", \u3081\u30fc": [44, 231, 232, 233, 234, 235], ", \u308a": [44, 231, 232, 233, 234, 235], ", \u308a\u30fc": [44, 231, 232, 233, 234, 235], ", \u308b": [44, 231, 232, 233, 234, 235], ", \u308b\u30fc": [44, 231, 232, 233, 234, 235], ",!=": 53, ",\"": [42, 43, 45, 49, 50, 108, 115, 116, 117, 122, 241, 272, 307, 310, 311], ",\"\"": [115, 116], ",\")": 272, ",\"checks": [43, 44], ",\"domain": 306, ",\"http": 305, ",\"link": 305, ",\"links": 305, ",\"location": [307, 315], ",\"tags": 307, ",\"title": 308, ",\"types": [43, 44], ",${": 44, ",'": [282, 305], ",(": 74, ",-": 286, ",.": 12, ",..": 162, ",<": 53, ",<=": 53, ",==": 53, ",>=": 53, ",[": [41, 42, 43, 44, 225, 275, 301], ",[\"": [42, 43, 45, 180, 301], ",[]": [137, 165], ",\\\"": 125, ",_": [41, 42, 43, 44, 91, 134, 135, 156, 159, 202, 203, 225, 306, 307, 308, 311, 315], ",_score": 44, ",{": [43, 44, 97, 133, 154, 175, 176, 241], "- \"": 49, "-\"": [42, 44, 45, 202, 231, 232, 233, 234, 235, 257, 258, 259, 275], "-$": 28, "-%": [191, 193], "-(": [12, 225], "-*": [27, 31], "-+": 177, "--": [12, 27, 37, 38, 39, 41, 42, 43, 44, 45, 47, 48, 49, 51, 52, 53, 54, 61, 68, 74, 81, 85, 91, 96, 111, 123, 124, 125, 132, 134, 135, 137, 142, 152, 155, 156, 163, 165, 166, 168, 175, 176, 177, 180, 184, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 211, 212, 219, 224, 225, 231, 232, 233, 234, 235, 243, 244, 245, 246, 247, 253, 255, 257, 258, 259, 260, 261, 275, 286, 301, 306, 307, 310, 311, 314, 315], "--n": 45, "-1": 225, "-2": 42, "-<": 27, "->": [37, 44, 45, 50, 53, 74, 137, 163, 183, 196, 231, 232, 233, 234, 235, 237, 302], "-> \u308a\u3044": [44, 231, 232, 233, 234, 235], "-_": [156, 245, 246, 247], "-a": [27, 47, 175, 224], "-address": [39, 47, 50, 175], "-adjuster": [42, 91, 156], "-admin": 47, "-aki": 49, "-all": 54, "-analyze": 42, "-analyzer": [39, 47], "-apache": [125, 178], "-api": 16, "-apply": 43, "-apt": [28, 32, 41], "-archive": [41, 54], "-arrow": [24, 25, 28, 42, 43, 44, 45, 96, 125, 178], "-auto": 41, "-autoreconf": 12, "-b": 27, "-backlog": 52, "-base": [52, 175, 180, 181], "-based": 42, "-benchmark": [22, 43, 44, 47, 48, 49, 57, 172], "-binary": [177, 292], "-bind": [47, 50, 175], "-blog": 311, "-branch": 18, "-bugs": [50, 51], "-build": 14, "-by": 123, "-bye": [42, 43, 44, 45, 132, 134, 135, 156, 165, 224, 225, 261], "-c": [51, 52, 175, 298], "-cache": [36, 48, 50, 175, 177], "-canceler": 99, "-certificates": 28, "-check": [37, 39, 180], "-ci": [48, 49], "-ci\u4e0a": 48, "-clear": 52, "-client": [52, 290], "-code": [49, 54], "-column": [41, 51, 54], "-columns": [42, 51, 52, 132, 134, 135, 156], "-command": [21, 37, 44, 52, 156, 180, 194, 292], "-commnad": 93, "-common": [32, 47], "-compose": [22, 23], "-condition": 53, "-conditional": 39, "-config": [8, 27, 31, 36, 37, 39, 47, 50, 175], "-core": 12, "-cpe": 25, "-create": [22, 38, 48, 50, 51, 57, 159, 172, 180, 250, 251], "-cxx": 44, "-d": [175, 177, 180, 181, 295, 298, 312], "-daemon": [180, 181], "-databases": [298, 308, 312], "-dataset": [22, 38, 48, 50, 51, 57, 159, 172, 180, 250, 251], "-db": 40, "-dcmake": 23, "-dd": [43, 44, 225, 228], "-ddthh": 42, "-deafult": 39, "-debug": [6, 27, 37], "-default": [27, 40, 44, 47, 48, 51, 52, 94, 156, 175, 225, 278, 292, 301], "-delta": [43, 44], "-dep": 12, "-dependent": [51, 137, 163], "-dev": [2, 12, 14, 31, 39, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54], "-devel": 31, "-dgrn": 23, "-diff": 54, "-dir": [12, 176], "-directory": 47, "-disable": [31, 37, 39, 49, 180], "-doc": 40, "-document": [17, 175, 178], "-docutils": 12, "-drilldown": [49, 50, 51, 53, 156, 306], "-drilldowns": [51, 135, 156], "-dump": [41, 50], "-e": 175, "-each": [39, 53], "-eanble": 6, "-enable": [6, 37], "-encoding": [39, 175, 225, 292], "-encodiong": 225, "-endpoint": [180, 181], "-escalation": [37, 47, 156, 171, 175, 301], "-event": 50, "-existence": 48, "-fd": [39, 180], "-file": [36, 39, 50, 95, 180], "-files": 54, "-filter": [28, 32, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 91, 111, 156, 182, 183, 193, 196, 202, 205, 206, 210, 225, 244, 311, 313], "-fitlers": [258, 259], "-flags": [45, 53, 54, 175, 228], "-force": [52, 53, 137, 143], "-forked": 12, "-form": [54, 178], "-frequency": 39, "-fstack": 53, "-ftp": 176, "-full": 12, "-fuzzy": [44, 156], "-g": 23, "-generator": 111, "-get": [12, 47], "-gobject": 50, "-gqtp": [22, 24, 25, 28, 32, 47, 49, 50, 289], "-gram": [0, 51, 53, 168, 225, 299, 301, 308], "-groonga": [13, 44, 176, 311], "-h": [175, 177, 292], "-help": [48, 175], "-hiragana": [231, 232, 233, 234, 235, 258, 259], "-history": 39, "-hits": 41, "-host": 176, "-html": [37, 47], "-http": [22, 43, 44, 47, 48, 49, 51, 177, 289], "-httpd": [22, 39, 41, 44, 47, 49, 50, 51, 52, 53, 54, 57, 61, 131, 153, 167, 172, 178, 179, 228, 252, 289, 291, 292], "-i": [50, 52, 175, 176], "-id": [47, 153, 175], "-idf": [41, 245, 246, 247], "-ifexists": 44, "-import": 43, "-in": 27, "-index": [41, 50], "-infinity": [41, 52], "-info": 27, "-inspect": 54, "-inverse": [245, 247], "-ipadic": [30, 274], "-j": [6, 31], "-jemalloc": 49, "-jinja": 12, "-jp": [48, 277, 302], "-key": [12, 40], "-keyring": [41, 47, 54], "-keys": 12, "-known": [42, 205, 206], "-l": [175, 180, 181], "-latest": [12, 24, 25, 27, 28, 31, 33, 42], "-leak": 37, "-leaner": 181, "-learner": [22, 37, 49, 51, 57, 172, 179, 252], "-length": 178, "-level": [43, 49, 50, 52, 175, 181], "-libedit": 37, "-libevent": 40, "-libs": [42, 43], "-libstemmer": 49, "-limit": [36, 43, 48, 50, 54, 156, 175], "-line": 21, "-lines": [39, 180], "-linux": 25, "-listen": 52, "-load": [41, 53, 54, 135, 156], "-lock": [52, 53], "-log": [39, 42, 45, 47, 49, 50, 52, 53, 54, 131, 175, 176, 177, 180, 181, 228], "-m": 174, "-match": [37, 43, 44, 47, 49, 50, 52, 53, 111, 156, 171, 175, 202, 224, 245, 301, 308, 310], "-max": [39, 175, 180], "-maximum": 27, "-mecab": [24, 25, 28, 30, 32, 47, 48, 49], "-memcached": 51, "-memory": 37, "-mingw": 12, "-minus": [231, 232, 233, 234, 235, 257, 258, 259], "-mm": [42, 43, 44, 225, 228], "-mod": 44, "-mode": 17, "-mruby": [6, 49], "-msgpack": 292, "-msys": 12, "-munin": [28, 32, 40], "-my": 227, "-mysql": [24, 25, 28, 32, 44, 45, 51, 53, 103, 138, 229], "-n": [39, 43, 44, 52, 134, 175, 180, 226, 308], "-neologd": 274, "-nginx": [44, 177, 296], "-nightly": 12, "-normalizer": [24, 25, 28, 32, 42, 43, 44, 45, 47, 50, 51, 53, 103, 138, 201, 229, 230], "-normalizers": 42, "-nunit": 173, "-nyokki": 45, "-offset": [45, 50, 54, 156], "-onigmo": 54, "-only": 52, "-options": 42, "-oriented": [42, 205, 206], "-output": [42, 43, 44, 47, 48, 50, 51, 52, 134, 156, 176, 191, 192, 193, 194, 206], "-p": [174, 175, 176, 180, 298, 312], "-package": 51, "-packages": [12, 45], "-paginate": 12, "-patch": 17, "-path": [36, 37, 39, 41, 42, 45, 47, 49, 50, 52, 131, 159, 175, 180, 181, 228], "-per": [39, 180], "-pid": [36, 39, 41, 50, 175], "-pinus": 52, "-pip": 18, "-platorm": 51, "-plugin": 13, "-plugins": [28, 32, 40], "-point": 282, "-port": [175, 176, 180], "-post": [42, 43, 45], "-ppa": 12, "-prefix": [6, 177], "-preset": [3, 18], "-presets": 27, "-progress": 27, "-properties": 32, "-protector": 53, "-protocol": [175, 176, 178, 295, 312], "-query": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 111, 131, 175, 177, 191, 192, 193, 202, 205, 206, 224, 243, 276, 278, 296, 308, 311, 313], "-r": [180, 181], "-raw": 125, "-receive": [180, 181], "-recursive": [41, 44, 54, 124], "-related": 54, "-release": [12, 24, 25, 28, 47, 51, 54], "-repo": 227, "-repository": [32, 47], "-request": [51, 99, 175], "-restart": 51, "-root": [37, 175, 178], "-rotate": [45, 50, 175], "-ruby": [6, 47], "-s": [27, 175, 180, 181, 298], "-scorer": 182, "-search": [41, 43, 49, 272, 273], "-searchu": 273, "-secret": 12, "-selector": 111, "-send": [180, 181], "-separated": 50, "-server": [22, 24, 25, 28, 32, 39, 40, 43, 44, 47, 48, 49, 50, 175, 289], "-show": 36, "-since": 54, "-sister": 111, "-size": [45, 50, 175], "-slices": [42, 43, 44, 51, 54, 156], "-software": 45, "-sort": [42, 51, 52, 54, 198], "-sortby": [48, 51], "-source": [28, 41, 111], "-static": 39, "-stem": [28, 32, 49, 52], "-streaming": [125, 178], "-strings": 40, "-suggest": [22, 37, 38, 39, 47, 48, 49, 50, 51, 57, 159, 172, 250, 251, 252], "-t": [175, 180], "-table": 41, "-tag": 205, "-talk": [2, 12, 42, 48, 50, 54], "-target": [50, 51, 150], "-terminated": 85, "-test": 14, "-text": [41, 43, 272, 273], "-threads": [175, 180], "-threshold": [37, 45, 47, 50, 156, 171, 175, 301], "-time": [42, 175, 205, 206], "-timeout": [51, 99, 175], "-token": [28, 32, 42, 43, 49, 51, 52], "-tokenizer": [24, 25, 28, 32, 47, 48], "-truncate": 53, "-type": [39, 54, 111, 125, 177, 178, 250, 251, 253, 292], "-unauthenticated": 47, "-urlencoded": [54, 178], "-use": 50, "-v": [197, 227], "-values": [50, 51], "-vcruntime": [33, 42, 166], "-version": [37, 52, 248, 292], "-w": 12, "-wal": 42, "-windows": 50, "-with": [6, 27, 30, 40, 47, 49, 51, 156, 171, 225], "-without": 54, "-wno": 39, "-word": 156, "-workers": 175, "-working": [18, 47], "-www": [54, 178], "-x": [33, 42, 43, 48], "-xx": 12, "-yyy": 17, "-z": [28, 44], "-za": 44, "-|": 111, "-\u02d7": [231, 232, 233, 234, 235, 257, 258, 259], "-\u30ad": [231, 232, 233, 234, 235], "-\u30af": [231, 232, 233, 234, 235], "-\u30b1": [231, 232, 233, 234, 235], "-\u30b3": [231, 232, 233, 234, 235], "-\u30e1": 44, ". \"": 276, ".\"": [42, 44, 45, 51, 156, 191, 192, 193, 197, 202, 203, 205, 206, 224, 225, 226, 231, 234, 235, 245, 272, 277, 305, 307, 308, 310, 312, 314], ".$": [135, 156, 224], ".&": 96, ".'": [42, 47, 48], ".(": 12, ".)": [41, 44, 48, 51, 124, 224, 225, 228, 245, 281], ".*s": 74, ".,": [42, 43, 134, 142, 155, 156, 180, 196, 203], ".-": 17, "..": [6, 12, 17, 18, 27, 41, 42, 43, 44, 45, 47, 48, 51, 54, 74, 81, 85, 91, 96, 98, 108, 111, 112, 125, 134, 136, 141, 142, 149, 150, 153, 155, 156, 159, 161, 175, 177, 180, 191, 196, 202, 203, 205, 224, 225, 244, 245, 246, 247, 276, 292, 308], "...": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 61, 62, 63, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 96, 97, 108, 112, 125, 134, 141, 153, 156, 159, 162, 175, 176, 177, 178, 186, 192, 195, 205, 210, 224, 225, 226, 241, 244, 248, 272, 311], "./": [12, 17, 29, 31], ".:": [43, 181], ".>": 248, ".\\": [42, 43, 205, 272], ".]": [44, 45, 51, 91, 108, 125, 135, 153, 156, 159, 162, 205, 225], "._": [45, 48, 49, 111, 132, 134, 135, 156, 163, 195, 224, 225, 305, 306], ".ac": 31, ".actual": [44, 96], ".age": [58, 111, 124, 149, 150, 155], ".am": 18, ".apache": 44, ".arrow": 44, ".arrows": 96, ".asc": 12, ".askmonty": 49, ".blog": 301, ".body": [109, 120, 310, 314], ".c": [42, 43, 45, 52, 55, 111, 115, 118, 143, 163, 166, 302], ".clean": 12, ".cmake": [18, 27], ".co": [55, 156], ".column": [48, 49, 58, 110, 115, 116, 117, 124, 141], ".com": [6, 7, 8, 12, 13, 17, 18, 21, 41, 44, 302, 305, 306, 308, 310, 312, 315], ".comment": [310, 311], ".compress": 141, ".conf": [50, 51, 177, 281, 296, 303], ".content": [42, 44, 132, 134, 135, 142, 155, 156, 163, 197, 210, 224, 225, 226, 281, 310], ".context": 163, ".cpp": [94, 156, 158, 177, 197, 227, 298, 308, 312], ".created": [132, 134, 135], ".current": 50, ".d": [41, 281, 303], ".data": [123, 156], ".db": [29, 48, 175, 298, 308, 312], ".ddl": 176, ".description": 311, ".dll": [53, 85, 166], ".doc": [12, 18], ".domain": 50, ".dump": 39, ".edit": 3, ".en": 12, ".enable": [42, 45], ".entries": [44, 281, 310], ".entry": 152, ".exact": [44, 96], ".except": 42, ".exe": [53, 166], ".facebook": 12, ".fuzzy": [44, 96], ".g": 43, ".garbage": 48, ".generator": 141, ".gguf": [197, 227], ".git": [6, 7, 8, 12, 13, 17, 18], ".github": 17, ".githubusercontent": 21, ".gpg": 12, ".grn": [42, 43, 122, 177], ".groonga": [12, 17, 24, 25, 27, 28, 31, 33, 176], ".group": [41, 43, 52, 210, 286], ".gz": [12, 17, 27, 31], ".h": [16, 50, 85], ".hash": 311, ".high": 110, ".htaccess": 12, ".html": [12, 17, 18, 41, 106, 175, 177], ".htpasswd": [177, 292], ".index": [42, 50, 124, 152, 155, 156], ".inl": 166, ".input": [44, 96], ".introduction": 149, ".invalid": 111, ".io": [24, 25, 28], ".jfrog": [24, 25, 28], ".jp": [12, 50, 55, 156], ".js": 12, ".json": [41, 96, 177, 178, 241], ".js\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0": 21, ".kentaro": 48, ".key": 163, ".label": [156, 201], ".lemon": [58, 156], ".lists": 41, ".load": 176, ".location": 311, ".log": [31, 45, 50, 54, 93, 137, 156, 173, 175, 176, 177, 180, 296], ".logs": [137, 152], ".max": [195, 303], ".md": [12, 18], ".md\u30d5\u30a1\u30a4\u30eb": 12, ".me": [2, 12, 50], ".memos": [142, 155], ".microsoft": 302, ".missing": 111, ".mo\u30d5\u30a1\u30a4\u30eb": 17, ".msgpack": 241, ".n": [41, 44, 96, 132, 134, 135, 156, 224, 225, 281], ".name": [108, 124, 173, 210, 311], ".ne": 55, ".nested": 156, ".net": [2, 12, 305, 306, 307, 308, 312, 315], ".nginx": 177, ".ninja": 27, ".noarch": [24, 25], ".normalized": [42, 43, 44, 45, 237], ".o": 307, ".operator": 96, ".org": [12, 17, 24, 25, 27, 28, 31, 33, 41, 43, 49, 50, 54, 91, 122, 125, 176, 177, 194, 305, 306, 307, 308, 312, 315], ".osdn": [2, 12], ".overcommit": [47, 228], ".patch": 17, ".pc": [31, 38, 39], ".pc\u30d5\u30a1\u30a4\u30eb": 31, ".pdb": 53, ".people": 111, ".php": 12, ".pid": 175, ".po": 3, ".position": 141, ".posted": 311, ".product": 42, ".purchases": 42, ".rb": [37, 42, 49, 54, 132, 134, 135, 137], ".readings": 201, ".real": [58, 115, 116, 117], ".reference": 163, ".repo": 54, ".roles": 111, ".roonga": [224, 225], ".rpm": [24, 25], ".rst": [12, 18], ".s": 42, ".score": 170, ".scr": 176, ".section": 141, ".select": [44, 96, 176, 225], ".serial": 110, ".service": 47, ".sh": [6, 12, 14, 17, 18, 21, 27, 47, 54], ".site": 152, ".size": 141, ".so": [142, 144, 145, 151], ".sort": [42, 52, 286], ".source": 50, ".sourceforge": [2, 12], ".spec": 39, ".ssssss": 228, ".statistics": 141, ".status": 176, ".statuses": 42, ".stream": 44, ".sub": [135, 156], ".substituted": 42, ".synonym": 156, ".sz": 42, ".table": 156, ".tag": [41, 42, 45, 110, 132, 134, 135, 156, 195], ".tags": 42, ".tar": [12, 17, 27, 31], ".timestamp": [140, 143], ".title": [42, 111, 126, 127, 128, 152, 163, 305, 310], ".to": 110, ".travis": 21, ".tsv": [241, 243], ".txt": [18, 277], ".type": 74, ".user": [149, 195], ".users": 124, ".uuuuuu": 225, ".value": 156, ".weight": [48, 141], ".wikipedia": 41, ".x": [12, 42, 43], ".xml": [178, 241], ".xx": 42, ".xxx": 42, ".years": 58, ".yml": [12, 21, 29], ".yyy": 54, ".zip": [17, 27, 33, 42], ".zzz": 54, ".}": [41, 42, 91, 108, 125, 224, 225], "/\"": [27, 42, 91, 125, 277, 305, 306, 307, 308, 312, 315], "/$": [17, 18, 25, 28, 178], "/${": 180, "/'": 49, "/(": 12, "/*": [12, 16, 17, 81, 84, 177, 296, 303], "/+": 12, "/.": 39, "/..": [42, 51, 156, 177, 180], "/;": 177, "/<": [191, 193], "/?": 180, "/_": 12, "/aba": [306, 308, 315], "/acccess": 296, "/admin": [39, 175], "/afr": [306, 308, 315], "/alice": 277, "/almalinux": [24, 296], "/amazon": 25, "/apache": 12, "/api": 292, "/apt": 41, "/archive": 12, "/arrow": [12, 24, 25, 27, 28, 31], "/arrowconfig": 27, "/artifactory": [24, 25, 28], "/atv": [306, 308, 315], "/base": 12, "/bc": 12, "/bin": 31, "/blog": [12, 41, 54], "/branches": 14, "/c": [0, 6, 16, 156, 290], "/cache": 177, "/changes": 43, "/cmake": 27, "/com": 302, "/command": [14, 177, 244, 312], "/commands": [49, 156], "/commits": 49, "/config": 115, "/contribution": 18, "/copyright": 49, "/coremodule": 177, "/cutter": 12, "/d": [42, 49, 53, 54, 96, 177, 178, 244, 292], "/data": [21, 29], "/database": [156, 177, 292], "/db": [29, 42, 122, 159, 163, 173, 177, 181, 244, 296], "/db1": 292, "/db2": 292, "/dd": 225, "/debian": [28, 41], "/default": [47, 296], "/desktop": 302, "/dev": 12, "/dictionary": 37, "/disk": 244, "/doc": [12, 18], "/docker": 12, "/docs": [12, 41, 177], "/documentation": 18, "/en": [12, 18, 43, 177], "/entry": 310, "/en\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0": 2, "/etc": [41, 47, 177, 243, 281, 296, 303], "/eval": 154, "/example": [156, 180], "/executables": [106, 180], "/f": 12, "/false": [36, 305], "/fedora": [37, 47], "/files": 18, "/free": 45, "/functions": 14, "/gat": [306, 308, 315], "/gensim": 41, "/github": 53, "/gqtp": [48, 296], "/grndb": [106, 173], "/groonga": [6, 7, 8, 12, 13, 16, 17, 18, 21, 27, 28, 29, 31, 33, 37, 39, 42, 44, 45, 47, 48, 50, 52, 53, 132, 134, 135, 137, 144, 145, 151, 173, 175, 177, 180, 197, 227, 243, 281, 296, 298, 308, 312], "/head": 21, "/hoge": 175, "/home": 277, "/homebrew": 12, "/horimoto": 45, "/hostname": [175, 176], "/html": [17, 18, 39, 292], "/http": [177, 296], "/httpd": [177, 296], "/in": 50, "/index": [12, 17, 175], "/install": 41, "/introduction": [18, 298, 308, 312], "/issues": 44, "/ja": [12, 17, 18, 41, 51, 54, 302], "/javascript": 39, "/ja\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0": 2, "/json": [39, 125, 177, 178, 292], "/kytea": 168, "/language": [197, 227], "/lc": [17, 18], "/learn": 180, "/lib": [31, 42, 45, 144, 145, 151, 173, 177, 296], "/library": 302, "/limits": 281, "/linux": [3, 5, 8, 12, 18, 22, 23, 39, 41, 42, 43, 44, 45, 52, 53, 54], "/lists": 12, "/load": [51, 53, 125, 177, 292], "/local": [6, 12, 27, 31, 177, 227], "/locale": [17, 18], "/log": [31, 50, 173, 175, 177, 180, 296], "/logical": [132, 134, 135, 137], "/lzo": [37, 39, 48], "/magazine": 156, "/mailarchive": 12, "/main": 17, "/managers": [177, 292], "/math": 198, "/max": [49, 52], "/mecab": 142, "/meetup": 50, "/message": 12, "/min": 52, "/mingw": 12, "/missing": [43, 44], "/mistral": [197, 227], "/mm": 225, "/models": 41, "/modules": 37, "/mpisel": 51, "/mroonga": [41, 42, 53], "/mruby": 53, "/ms": 302, "/msys": 12, "/munin": 31, "/mysql": 103, "/news": 12, "/nfs": 31, "/ngx": 177, "/nightly": 12, "/non": 48, "/null": [6, 36, 42], "/number": 156, "/o": 161, "/okapi": 41, "/other": 177, "/packages": 12, "/pgroonga": [43, 45], "/php": 50, "/pipermail": 49, "/pkgbuild": 12, "/pkgconfig": 31, "/plain": 50, "/plugins": [31, 37, 48, 132, 134, 135, 137, 144, 145, 151], "/ppa": [12, 32], "/proc": [118, 143, 156], "/projects": 12, "/query": [144, 145, 151], "/rab": [306, 308, 315], "/ranguba": 44, "/redmine": 54, "/reference": [41, 43, 106, 156, 180], "/request": 153, "/requirements": 18, "/result": 40, "/rroonga": [44, 49], "/run": [14, 175], "/rurema": 49, "/security": 281, "/select": [96, 153, 156, 177, 312], "/server": 43, "/setup": 21, "/sharding": [132, 134, 135, 137], "/share": [39, 175, 227], "/shm": 177, "/shutdown": [54, 175, 177, 292], "/sort": 45, "/source": [12, 16, 17, 18, 27, 31], "/sources": 41, "/span": [43, 44, 191, 192, 193, 206], "/status": [174, 177, 178, 241, 292, 312], "/stem": [42, 260], "/stop": [42, 45, 122, 165, 255, 261], "/store": 111, "/string": [42, 51, 132, 134, 135, 156, 195, 208, 209], "/suggest": 180, "/synonyms": 243, "/sysconfig": 296, "/sysctl": [281, 303], "/system": 25, "/tab": 50, "/termux": 45, "/test": 277, "/tfidfmodel": 41, "/time": [41, 42, 43, 52, 134, 211, 212], "/tmp": [6, 27, 31, 243, 292], "/to": [29, 177, 292], "/token": [44, 45], "/tokenizer": 45, "/travis": 21, "/tsv": [144, 145, 151, 243], "/ubuntu": [12, 44, 47, 296], "/unit": 14, "/usage": 156, "/usr": [27, 31, 175, 227], "/var": [31, 50, 173, 175, 177, 296], "/vdw": [306, 308, 315], "/vector": [43, 50, 132, 134, 135, 156, 197, 219, 221, 222], "/version": 50, "/vnd": 44, "/webplus": 156, "/wgs": 315, "/wiki": 41, "/windows": [33, 302], "/work": [12, 45], "/x": [54, 125, 178, 292], "/xml": 292, "/zlib": 53, "/~": 12, "/\u65e5": 311, "/\u6708": 311, "/\uff09": 37, "0ba": 166, "0bg": 166, "0c": 271, "0cc": 166, "0d": 99, "0e": 176, "0f": 51, "0garbage": 53, "0mq": 48, "0x": [40, 53, 99, 111, 224, 228, 282, 298, 305], "0xa": 111, "0xc": 298, "0xe": 111, "0y": 44, "0yyy": 44, "0\u4ef6": 45, "0\u59cb": [208, 209], "10": [35, 44, 107, 176, 184, 308], "11": [35, 41, 44, 91, 96, 111, 156, 202, 203, 225, 281, 301], "12": 35, "12\u6708": [42, 56], "13": [35, 247], "14": 35, "15": 35, "1b": [42, 111, 224], "1bit": 111, "1byte": [44, 111, 141, 298], "1cpu": 156, "1de": [41, 44], "1f": 50, "1gb": 50, "1o": 244, "1st": 125, "1tib": [34, 161, 254], "1usec": 51, "1x": 41, "1year": 173, "1\u305a": [89, 93, 96], "1\u3064": [10, 34, 39, 42, 43, 44, 45, 48, 49, 51, 52, 54, 58, 68, 74, 87, 90, 91, 96, 107, 110, 111, 112, 115, 116, 124, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 161, 163, 167, 168, 170, 171, 175, 176, 177, 178, 180, 181, 193, 194, 195, 196, 198, 201, 202, 203, 205, 206, 208, 210, 211, 212, 221, 224, 225, 228, 237, 244, 245, 246, 247, 248, 252, 254, 262, 264, 272, 276, 281, 292, 298, 305, 307, 310, 311], "1\u307e": 44, "1\u3088\u308a": 105, "1\u30b9\u30ec\u30c3\u30c9": [94, 156], "1\u30d0\u30a4\u30c8": 111, "1\u30f6\u6708": 248, "1\u4ef6": [301, 311], "1\u56de": 177, "1\u5897": 54, "1\u5ea6": [84, 135], "1\u6708": [42, 52, 225, 282, 305, 311], "1\u884c": [125, 176], "21": 45, "22": 45, "23": 45, "24": 45, "25": 45, "2a": 166, "2byte": [111, 298], "2bytes": [44, 111, 141], "2c": 224, "2def": [41, 44], "2e": [231, 232, 233, 234, 235, 258, 259], "2ff": 51, "2grn": 49, "2groonga": 166, "2lib": 166, "2nd": 125, "2rroonga": 42, "2thread": 166, "2\u3064": [19, 24, 25, 28, 32, 41, 42, 44, 48, 49, 50, 54, 94, 96, 111, 112, 117, 132, 133, 134, 135, 137, 143, 149, 150, 156, 160, 161, 163, 164, 165, 167, 180, 183, 185, 193, 195, 196, 197, 201, 202, 203, 205, 208, 209, 210, 219, 224, 228, 244, 245, 246, 253, 262, 264, 272, 286, 291, 292, 296, 305, 306, 308, 310, 311], "2\u3064\u3081": [153, 195, 224, 225, 292, 310], "2\u30d0\u30a4\u30c8": 111, "2\u4ef6": 156, "2\u7cfb": 35, "3d": 224, "3days": 173, "3f": 111, "3index": 45, "3ki": 37, "3\u3064": [14, 44, 48, 53, 94, 95, 114, 124, 138, 156, 183, 184, 192, 195, 206, 208, 219, 223, 296, 305, 306, 308, 310], "3\u3064\u3081": 225, "3\u7cfb": 35, "4byte": 298, "4c": 41, "4e": 303, "4gib": [34, 42, 43, 51, 161, 254, 298], "4kib": [34, 41, 45, 50, 58, 115, 116, 117, 171, 254], "4mib": 141, "4s": 42, "4\u3064": [44, 94, 110, 156, 175, 195, 206, 208, 209, 245, 254, 274], "4\u3064\u3081": 225, "4\u7cfb": 35, "5a": 41, "5b": [117, 171], "5c": 53, "5d": 99, "5f": 176, "5weeks": 173, "5\u7cfb": 35, "6a": 111, "6cd": 228, "6elz": 49, "6f": 41, "6gib": 281, "6\u3064": [94, 156, 183], "6\u7cfb": 35, "7a": 52, "7b": [197, 227], "7d": 173, "7e": 176, "7ed": 99, "7f": 51, "7fa": 99, "7\u3064": 158, "7\u6708": [42, 43, 50, 52, 53], "7\u7cfb": 35, "8bit": [111, 282], "8byte": 298, "8r": [31, 47, 74, 175], "8x": 41, "8\u3064": 275, "8\u6708": 43, "8\u7cfb": 35, "9a": 111, "9ba": 42, "9e": 230, "9f": 241, "9x": 41, "9zawa": 54, "9\u3064": 308, "9\u7cfb": 35, ": \"": [42, 208, 209], ": <": 166, ": n": 174, ":!": 224, ":\"": [53, 68, 132, 244, 308], ":#": [49, 51], ":#{": 53, ":$": [18, 224, 225, 313], ":(": 74, ":*": 41, ":..": [124, 156], ":/": [12, 13, 17, 21, 24, 25, 27, 28, 29, 31, 33, 41, 43, 44, 49, 54, 91, 122, 125, 153, 156, 174, 175, 177, 178, 180, 194, 241, 292, 302, 305, 306, 307, 308, 310, 312, 315], "::": [50, 52, 53, 100, 106, 156, 180], ":<": [12, 156, 224], ":=": [156, 224], ":>": [41, 156, 224], ":@": [41, 43, 44, 45, 135, 156, 202, 224, 305, 307, 308, 311, 312], ":[": [74, 176, 244], ":\\": [27, 166, 244], ":\\\"": 125, ":^": [42, 44, 45, 224, 313], ":available": 74, ":bob": 311, ":bump": 12, ":column": 124, ":dat": [124, 141], ":data": [42, 44, 96], ":document": 12, ":fix": 141, ":groonga": [6, 7, 8, 12, 32, 51, 156, 224], ":hash": [124, 141, 142], ":index": [141, 142], ":latest": 29, ":mariadb": 43, ":mm": [42, 225, 228], ":mroonga": 53, ":n": [41, 42, 44, 96], ":no": 141, ":none": 74, ":order": 50, ":pat": [74, 141, 142], ":pgroonga": 43, ":port": [175, 177, 178], ":ruby": 42, ":set": 49, ":shorttext": 74, ":ss": [42, 225, 228], ":table": 124, ":tag": 12, ":value": [156, 224], ":var": [74, 124, 141], ":xxx": 53, ":{": 74, ":~": [224, 244], ":\u5206": 311, ":\u79d2": 311, ";\"": [47, 53], ";/": [191, 192, 193], ";b": [191, 192, 193], ";rroonga": [191, 192, 193], "< n": 225, "< t1": 11, "< y": 48, "<\"": [52, 74, 202], "<#{": 53, "<$": 42, "<%": 74, "<(": 166, "<-": 292, "<..": 248, "": [41, 43, 44, 45, 111, 191, 192, 193, 194, 206, 241, 275], "<=": [48, 177, 195, 202, 225, 311], "<[": 137, "\n<": 241, "> \"": 50, "> %": 74, "> y": 48, "> \u304d\u3044": [44, 231, 232, 233, 234, 235], "> \u304e\u3044": [44, 231, 232, 233, 234, 235], "> \u304f\u3046": [44, 231, 232, 233, 234, 235], "> \u3051\u3048": [44, 231, 232, 233, 234, 235], "> \u3052\u3048": [44, 231, 232, 233, 234, 235], "> \u3057\u3044": [44, 231, 232, 233, 234, 235], "> \u3058\u3044": [44, 231, 232, 233, 234, 235], "> \u3061\u3044": [44, 231, 232, 233, 234, 235], "> \u3064\u3046": [44, 231, 232, 233, 234, 235], "> \u3073\u3044": [44, 231, 232, 233, 234, 235], "> \u307f\u3044": [44, 231, 232, 233, 234, 235], "> \u3081\u3048": [44, 231, 232, 233, 234, 235], "> \u308a\u3044": [44, 231, 232, 233, 234, 235], "> \u308b\u3046": [44, 231, 232, 233, 234, 235], "> \u308c\u3048": [44, 231, 232, 233, 234, 235], "> \u308d\u304a": [44, 231, 232, 233, 234, 235], "> \u3093\u3093": [44, 231, 232, 233, 234, 235], "> \u3094": [44, 231, 232, 233, 234, 235], "> \u30aa": 44, "> \u30ac": 44, "> \u30ae": 44, "> \u30b2": 44, "> \u30b4": 44, "> \u30b6": 44, "> \u30b8": 44, "> \u30ba": 44, "> \u30bc": 44, "> \u30be": 44, "> \u30f3\u30f3": [44, 231, 232, 233, 234, 235], ">\"": [42, 43, 44, 45, 48, 52, 58, 99, 111, 115, 118, 132, 134, 135, 143, 156, 163, 191, 192, 194, 202, 237], ">#{": 53, ">$": 42, ">,": 74, ">.": [12, 27, 191, 192, 193, 208], ">:": [58, 111, 132, 134, 135, 166, 228], "><": [68, 241], ">=": [48, 202, 225], ">>": [48, 225], ">\\": 74, ">a": [42, 44], ">alloc": 241, ">cache": 241, ">command": 241, ">default": 241, ">g": 44, ">ga": 44, ">groonga": 111, ">i": 44, ">k": 237, ">max": 241, ">mysql": 44, ">n": 241, ">o": 45, ">roon": 44, ">rroonga": [191, 192, 193], ">s": 44, ">starttime": 241, ">uptime": 241, ">version": 241, ">\u3315": 275, ">\u5c71": 45, ">\u5f0f": 208, ">\u901f": 45, ">\u90ce": 45, ">\uff01": [41, 45], ">\uff41z": 275, "?!": 272, "?'": 208, "?-": 53, "?..": 96, "?<": 208, "??": 156, "??_": 166, "?arg": 244, "?command": 178, "?i": 244, "?id": 153, "?immediate": 41, "?max": [50, 52], "?mode": 54, "?msg": 12, "?output": 41, "?parameter": 177, "?table": [51, 125, 153, 177, 292, 312], "@\"": [52, 202, 219], "@$": 202, "@'": 308, "@(": 166, "@?": 166, "@^": 202, "@_": 166, "@ceekz": 48, "@d": 166, "@do": 49, "@github": [6, 7, 8, 12, 18], "@gmbijecc": 166, "@grn": 166, "@groonga": [2, 12], "@kiske": 47, "@lists": [2, 12], "@naoina": [47, 48], "@nhamhjpm": 166, "@orangain": 48, "@packages": 12, "@piikbmgh": 166, "@s": 37, "@soundkitchen": [39, 47], "@tomotaka": 39, "@uzulla": 39, "@wareohji": 47, "@x": 52, "@yappo": [48, 49], "@yito": [47, 48], "@~": [202, 244], "[\"": [41, 42, 43, 44, 50, 91, 108, 111, 112, 134, 156, 159, 180, 205, 206, 219, 221, 250, 286, 301, 305, 307, 311, 314], "[\"-": 29, "[\"i": 43, "[#": [39, 40, 47, 49], "[$": [43, 44, 50, 51, 52], "[(": [124, 244], "[,": [189, 208, 209], "[-": 42, "[..": [45, 51, 135, 156], "[2": 175, "[:": 312, "[@": [39, 47, 48, 49], "[[": [42, 43, 45, 58, 91, 110, 111, 114, 121, 125, 132, 134, 135, 137, 153, 154, 156, 162, 164, 165, 170, 175, 180, 183, 186, 188, 191, 192, 193, 195, 197, 198, 201, 203, 205, 206, 219, 224, 225, 226, 237, 245, 250, 260, 261, 275, 276, 278, 286, 301, 305, 307, 310, 313], "[[\"": 108, "[\\\"": 42, "[]": [41, 42, 43, 44, 123], "[]}": [43, 44], "[a": [41, 156], "[admin": [39, 47, 48, 51], "[adult": 41, "[aggregator": 41, "[ali": 42, "[amazon": 45, "[api": 50, "[apt": 47, "[args": 175, "[askdkc": 44, "[b": 156, "[backslash": 224, "[benchmark": 49, "[bernard": 50, "[bindings": 50, "[cache": 52, "[cast": 44, "[category": 156, "[centos": 51, "[cmake": [44, 50, 51, 52], "[column": [49, 125], "[content": [132, 134, 135, 156], "[count": [132, 134, 135], "[customers": 41, "[dat": [40, 47, 52], "[dd": 244, "[deb": [39, 47, 48, 49, 50, 51], "[debian": [44, 51], "[distance": 41, "[doc": [39, 40, 47, 48, 49, 50, 51, 53], "[documentation": 42, "[dump": [47, 48, 49], "[element": [91, 225], "[example": [49, 50], "[examples": 51, "[expensive": 42, "[fedora": [47, 49], "[functions": 52, "[fuzzy": 44, "[geo": [39, 48, 54], "[github": [49, 52], "[gqtp": 48, "[grn": 50, "[grntest": 39, "[groonga": [12, 39, 42, 47, 49, 50, 51], "[hash": 51, "[header": [95, 107, 110, 111, 114, 115, 116, 117, 118, 121, 123, 124, 126, 127, 128, 129, 131, 132, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 154, 155, 157, 160, 161, 163, 164, 166, 167, 168, 169, 170], "[hh": 50, "[highlight": 41, "[highlighter": 53, "[hour2": 134, "[http": [47, 48, 49, 50, 51], "[httpd": [41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54], "[ii": 53, "[index": [43, 44, 49, 53, 54], "[info": 244, "[is": [132, 134, 135, 156], "[ja": 51, "[key": 50, "[label": [41, 43, 44, 50, 51, 52, 53, 135, 156], "[label1": [49, 135, 156], "[label2": [135, 156], "[launchpad": 12, "[li": 42, "[libedit": 39, "[linux": 47, "[load": [47, 49, 52, 53], "[log": 53, "[logical": 50, "[macports": 39, "[mdev": 50, "[mecab": 50, "[messagepack": 41, "[mrb": [50, 53], "[mruby": [49, 50, 51, 53], "[munin": [39, 47, 48, 49], "[n": [41, 44, 48, 49, 132, 134, 135, 156], "[name": [132, 134, 135, 156], "[name1": [132, 134, 135, 156], "[name2": [132, 134, 135, 156], "[none": 156, "[normalizer": [42, 49], "[normalizernfkc": [42, 45], "[normalizers": 54, "[ns": [42, 44], "[nsubrecs": 135, "[numeric": 44, "[object": 111, "[offsetted": 41, "[optimizer": [53, 54], "[oracle": 44, "[os": 49, "[output": 40, "[p": 42, "[packaging": 44, "[pat": 47, "[php": [47, 49], "[pkg": [39, 47], "[plugin": [49, 50, 53], "[power": [43, 156], "[power8": 49, "[price": [41, 42], "[quantity": 41, "[query": 53, "[rank": [42, 286], "[record": 135, "[reported": 44, "[rpm": [39, 40, 44, 47, 48, 49, 50, 51, 52], "[score": 41, "[sharding": [50, 52], "[similarity": 197, "[snippet": [49, 205, 206], "[solaris": 47, "[sort": 51, "[space": 224, "[suggest": [40, 47, 48], "[table": [48, 111], "[tag": [41, 135, 156], "[tags": [41, 42, 43, 156], "[terms": 124, "[test": 47, "[the": 125, "[token": 48, "[tokendelimit": 53, "[tokenfilters": 54, "[tokenfilterstem": 53, "[tokenfilterstopword": 53, "[tokenizer": [47, 48, 51], "[tokenizers": 41, "[tokenmecab": [41, 53], "[tokenngram": 53, "[tools": 54, "[travis": 48, "[ubuntu": 51, "[users": 124, "[vector": [41, 53, 54, 132, 134, 135, 156], "[wal": 45, "[warning": 244, "[windows": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53], "[xxxxx": 302, "[yum": 47, "[{": [42, 43, 125, 177, 292], "[\u3002": 272, "[\u8a9e": 108, "[\uff09": 272, "\\\"": [41, 42, 43, 44, 45, 68, 111, 125, 191, 192, 193, 194, 206, 210, 224, 244, 275, 299], "\\\"_": [42, 125], "\\\"a": 210, "\\\"}": 125, "\\'": 175, "\\(": 224, "\\*": 44, "\\?": 54, "\\[(": 244, "\\\\": [41, 42, 44, 50, 68, 191, 192, 201, 205, 210, 224, 244, 272], "\\\\\"": [41, 201, 224], "\\\\(": 41, "\\\\\\": [42, 50, 205, 244, 272], "\\\\r": 272, "\\\\z": 244, "\\_": 166, "\\a": [50, 51, 244, 277], "\\aaa": 166, "\\ahello": 50, "\\ahost": 244, "\\arrow": 27, "\\arrowconfig": 27, "\\bin": 166, "\\cmake": 27, "\\command": 166, "\\crt": 166, "\\ctx": 166, "\\exe": 166, "\\expr": 166, "\\groonga": 166, "\\lib": [27, 166], "\\libgroonga": 166, "\\n": [74, 244], "\\nmroonga": 43, "\\nmysql": 43, "\\proc": 166, "\\s": 272, "\\src": 166, "\\startup": 166, "\\system": 166, "\\t": 43, "\\thread": 166, "\\u": 273, "\\ud": 52, "\\udf": 52, "\\vcstartup": 166, "\\vctools": 166, "\\z": [244, 277], "]\n#": 44, "] [": 176, "] \u6708": 50, "]\"": [42, 43, 47, 48, 52, 54, 125, 205, 244, 311], "]%": 244, "]'": [42, 53, 177, 292], "](": [12, 52], "])": [42, 43, 44, 51, 189, 191, 192, 204, 208, 209, 272], "]+": 272, "],": [41, 42, 43, 44, 45, 58, 91, 94, 95, 96, 108, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 168, 169, 170, 175, 176, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 245, 246, 247, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 286, 298, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "]-": 42, "].": [41, 42, 43, 44, 49, 50, 51, 52, 53, 54, 132, 134, 135, 156, 197, 286], "]/": 312, "]:": [51, 53, 244, 302], "][": [39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 111, 115, 137, 143, 156, 163, 224, 244], "]]": [42, 43, 50, 74, 119, 121, 175, 176, 180, 275], "]]]": [42, 45, 119, 225, 301], "]ello": 50, "]es": 42, "]s": 42, "]x": 311, "]}": [42, 50, 108, 111, 201, 210, 305], "]\u3002": 49, "^ \"": [53, 110, 111, 201, 225], "^\"": 202, "^commit": 12, "_\"": 39, "_$": [111, 159, 161], "_')": 89, "_*": [22, 41, 42, 43, 44, 52, 57, 59, 111, 133], "_-": 275, "__": [166, 275], "_a": [41, 100, 298], "_abs": [22, 52, 57, 182], "_accept": 302, "_accepted": 153, "_access": 12, "_accessor": 50, "_account": [17, 18], "_acquire": [22, 41, 42, 44, 50, 57, 92, 128, 150], "_add": [41, 43, 51, 54, 68, 111], "_addr": 177, "_address": [100, 298, 312], "_adjust": [11, 51, 156], "_adjuster": 53, "_age": [111, 149, 150, 183, 186], "_agent": 177, "_airport": 44, "_algorithm": 260, "_all": [50, 51, 52], "_alloc": [68, 85], "_allowed": [100, 298], "_alone": 166, "_alphabet": [41, 44, 45, 53, 203, 225], "_already": [100, 298], "_and": [11, 41, 42, 43, 52, 53], "_andp": 41, "_animal": 305, "_animals": 44, "_apache": 23, "_append": [11, 52, 68, 71], "_apply": 52, "_arg": 100, "_args": 41, "_argument": [45, 100, 298], "_arguments": 50, "_arrow": [12, 23, 41, 94, 156, 158, 177, 298, 308, 312], "_asterisk": 52, "_at": [37, 40, 42, 43, 44, 47, 50, 51, 53, 68, 132, 134, 135, 212, 245, 247, 301], "_auto": [47, 48], "_available": [100, 298], "_avg": 156, "_avoided": [100, 298], "_b": 41, "_back": 43, "_bad": 100, "_base": [50, 52, 54, 85], "_basic": [177, 292], "_batch": 49, "_be": 155, "_between": [42, 49, 52, 183], "_bfloat": [44, 155], "_binary": 47, "_blank": [42, 44, 45, 51, 52, 53, 54, 138], "_bloat": 141, "_block": [100, 298], "_blog": 310, "_bm": 41, "_body": [152, 301, 310, 314], "_bool": [37, 41, 51], "_broken": 100, "_bu": 53, "_buffer": [71, 100, 180, 298], "_build": 14, "_builtin": 39, "_bulk": [51, 52, 53, 68], "_bundled": 45, "_busy": [100, 298], "_but": 11, "_by": [38, 39, 40, 41, 49, 50, 52, 68, 85, 195, 311], "_byte": [44, 100, 111, 141, 155, 298], "_bytes": [142, 177], "_cache": [22, 48, 50, 52, 57, 59], "_calc": 49, "_call": [11, 100, 153, 166, 298], "_caller": 52, "_calloc": 51, "_cancel": [22, 42, 43, 44, 45, 49, 51, 52, 57, 92, 98, 99, 100], "_canceler": 51, "_cas": 100, "_case": [44, 50, 53], "_cast": [50, 111], "_character": [43, 44, 68], "_characters": 68, "_charlen": 85, "_check": [14, 49], "_checks": [43, 44, 138], "_child": [100, 298], "_chunk": [41, 50, 51], "_chunked": 50, "_chunks": 51, "_circle": [22, 39, 41, 48, 51, 57, 182, 307, 311, 315], "_city": 44, "_class": [44, 53, 156, 231, 232, 233, 234, 235], "_classify": [22, 41, 42, 51, 53, 57, 134, 156, 182], "_clear": [22, 39, 49, 50, 52, 53, 57, 92, 109, 126, 128], "_client": 225, "_clone": 12, "_close": [11, 39, 42, 49, 50, 61, 68, 71, 85, 205], "_code": [42, 43, 44, 53, 74, 85, 95, 96, 125], "_column": [22, 37, 41, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 57, 58, 59, 92, 110, 124, 134, 155, 156, 163, 176, 186, 202, 224, 237, 299], "_columns": [22, 37, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 91, 110, 111, 119, 132, 159, 182, 184, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 228, 245, 246, 247, 260, 261, 275, 276, 278, 286, 301, 304, 305, 306, 307, 308, 311, 314, 315], "_com": 302, "_command": [22, 41, 44, 45, 49, 50, 57, 59, 85, 94, 95, 97, 100, 158, 166, 177, 241, 292, 298, 308, 312], "_comment": 210, "_commit": 71, "_common": 166, "_compile": 68, "_compress": 51, "_concurrency": 174, "_cond": 81, "_condition": 53, "_conditions": 53, "_conf": 50, "_config": [12, 50, 115], "_configs": 122, "_configuration": 12, "_configure": [48, 52], "_connected": [100, 298], "_connection": [41, 100], "_const": [11, 52, 68], "_content": [22, 41, 42, 43, 44, 45, 57, 59, 68, 95, 132, 134, 135, 142, 155, 156, 202, 203, 205, 206, 210, 224, 225, 260, 261, 281, 310], "_contents": [43, 44], "_control": [50, 100, 298], "_controllen": 50, "_contry": 44, "_copy": [22, 41, 43, 44, 50, 51, 52, 57, 58, 92], "_corrupt": [52, 100, 298], "_cosine": [45, 197], "_count": [22, 41, 43, 44, 50, 52, 53, 54, 57, 92, 94, 97, 134, 135, 150, 158, 175, 177, 241, 248, 283, 298, 303, 308, 312], "_creat": 52, "_create": [11, 22, 38, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 68, 85, 90, 91, 92, 110, 112, 114, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 141, 142, 143, 149, 150, 152, 155, 156, 163, 164, 165, 170, 175, 176, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 236, 237, 240, 244, 245, 246, 247, 248, 254, 255, 260, 261, 275, 276, 278, 281, 286, 301, 305, 306, 307, 308, 310, 311, 313, 314, 315], "_ctx": [22, 39, 41, 47, 49, 50, 51, 53, 57, 59, 61, 64, 68, 71, 74, 85, 100, 133, 166], "_cumulative": [132, 134, 135, 156], "_current": 61, "_cursor": [22, 37, 41, 42, 43, 48, 50, 51, 52, 57, 59], "_dat": [34, 39, 40, 41, 48, 49, 51, 52, 110, 141, 155, 161, 224, 225], "_data": [22, 41, 50, 52, 57, 59, 85, 100, 298], "_database": [47, 48, 118, 292], "_dataset": [38, 179, 181, 253], "_date": 12, "_day": [22, 41, 42, 51, 53, 57, 182], "_db": [22, 37, 38, 39, 40, 41, 49, 50, 51, 57, 59, 68, 124], "_db\u30d5\u30e9\u30b0": 39, "_deadlock": [100, 298], "_debug": 14, "_default": [47, 50, 52, 74, 156, 292], "_del": 50, "_delete": [22, 39, 50, 57, 92, 116, 117, 171], "_delimited": 55, "_delimiter": [138, 168], "_delta": [44, 111, 141], "_denied": [100, 298], "_dependent": 51, "_descriptor": [100, 298], "_device": [100, 298], "_df": 52, "_di": 44, "_diff": [22, 42, 54, 57, 92], "_digit": [41, 44, 53], "_dir": [12, 39, 50, 53, 85], "_directory": [100, 298], "_disable": [51, 52], "_disk": 52, "_dist": 47, "_distance": [22, 36, 39, 41, 44, 47, 48, 51, 54, 57, 182, 225, 307, 315], "_domain": 100, "_dot": [52, 53], "_double": 41, "_down": [100, 298], "_drilldown": 156, "_du": 44, "_dump": [22, 42, 50, 57, 92], "_dynamic": 44, "_ecmascript": [58, 156], "_element": [44, 50], "_elements": [51, 142], "_embedding": 197, "_empty": [100, 298], "_enabl": 52, "_enable": [41, 42, 43, 44, 50, 51, 52, 53, 54, 149, 150], "_enabled": 50, "_enc": 74, "_encoding": [22, 53, 57, 59, 74, 85], "_end": 100, "_enough": [42, 51, 53, 54, 100, 298], "_entries": [61, 107, 156], "_equal": 202, "_error": [43, 44, 50, 52, 58, 85, 100, 111, 156, 298], "_errors": 52, "_escalation": [22, 31, 37, 42, 44, 45, 53, 57, 59, 171, 186], "_escape": [68, 205], "_estimate": [39, 50], "_estimated": [41, 52], "_euc": 74, "_eval": [22, 27, 42, 48, 52, 57, 92], "_event": 302, "_exec": [50, 52, 68, 100, 166], "_exist": [22, 50, 57, 92, 137, 143], "_exists": [100, 298], "_expand": [22, 42, 43, 44, 51, 52, 57, 92], "_expander": [48, 51, 243, 314], "_expanders": [144, 145, 151, 243], "_expansion": [39, 41, 43, 44, 48], "_expansions": 44, "_expantion": 156, "_expire": [52, 53], "_expr": [3, 22, 41, 42, 43, 47, 49, 50, 51, 52, 53, 57, 59, 85, 119, 121, 156, 166, 185, 188, 189, 190, 199, 204, 244], "_expression": [156, 244], "_extract": [50, 55], "_failure": 84, "_false": 52, "_family": [41, 51, 53], "_feature": 41, "_file": [44, 50, 95, 100, 177, 243, 292, 298], "_fileinfo": 52, "_filename": 100, "_files": [18, 100, 298], "_filter": [22, 41, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 57, 92, 100, 111, 133, 142, 158, 182, 195, 201, 248], "_filtered": [42, 51, 53, 54], "_filters": [42, 43, 44, 45, 49, 50, 51, 52, 122, 141, 165, 255, 257, 258, 259, 260, 261], "_fin": [41, 47, 50, 68, 84, 85, 228], "_find": [22, 52, 53, 57, 182], "_fitlers": 155, "_flags": [42, 44, 47, 50, 51, 52, 54, 68, 74, 85, 202, 224], "_float": [41, 42, 43, 44, 50, 111, 142, 155], "_flow": [100, 298], "_flush": [22, 41, 50, 51, 52, 53, 54, 57, 92], "_food": 44, "_for": [11, 50, 125, 156, 177], "_force": 44, "_form": [53, 54], "_format": [41, 42, 43, 53, 54, 96, 100, 177, 298], "_forwarded": 177, "_free": 85, "_friends": 307, "_from": 41, "_full": [22, 41, 49, 51, 52, 54, 57, 182, 193], "_func": [49, 52, 81, 85, 167], "_function": [44, 50, 85, 100, 153, 245, 298], "_fuzzy": 51, "_geo": [22, 39, 50, 57, 59, 74, 142], "_get": [22, 39, 40, 41, 47, 49, 50, 51, 52, 53, 54, 57, 61, 68, 74, 81, 85, 92, 115, 117, 167, 171], "_github": [17, 18], "_global": 50, "_gqpt": 176, "_gqtp": 176, "_groonga": [12, 95], "_group": 50, "_gu": 44, "_hash": [34, 41, 42, 43, 44, 50, 51, 52, 58, 91, 110, 111, 121, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 141, 142, 143, 149, 150, 152, 155, 156, 161, 163, 180, 183, 184, 186, 188, 194, 195, 196, 198, 201, 202, 203, 208, 209, 212, 219, 221, 225, 226, 229, 230, 236, 245, 281, 305, 306, 307, 308, 310, 311], "_have": [41, 43, 44], "_hex": 74, "_highlighter": [44, 53], "_hit": [41, 94, 97, 158, 177, 241, 298, 308, 312], "_hits": [42, 43, 44, 96, 132, 156], "_hook": [22, 57, 59], "_host": 176, "_hour": [22, 51, 57, 134, 182], "_html": [22, 39, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 111, 134, 156, 175, 182, 191, 205, 275], "_http": [176, 177], "_hugetlb": 39, "_hyphen": [42, 44, 53, 257], "_i": [100, 298], "_id": [12, 39, 40, 41, 43, 44, 45, 49, 50, 51, 53, 54, 68, 71, 85, 89, 98, 111, 135, 142, 153, 156, 175, 225, 308, 315], "_id1": 125, "_id2": 125, "_idf": [42, 245], "_ids": 51, "_ignore": [43, 44, 111], "_ii": [22, 41, 42, 43, 50, 51, 52, 53, 54, 57, 59, 74, 111], "_illegal": 100, "_implemented": [100, 298], "_improper": 100, "_in": [22, 36, 37, 39, 41, 42, 48, 49, 51, 57, 74, 95, 100, 155, 182, 196, 298, 307, 311, 315], "_inappropriate": 100, "_incoming": 12, "_incompatible": 100, "_indented": 74, "_index": [22, 37, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59, 91, 111, 112, 122, 123, 124, 132, 135, 137, 142, 149, 150, 152, 155, 156, 163, 180, 183, 186, 191, 192, 193, 196, 201, 202, 203, 205, 206, 210, 224, 225, 226, 237, 244, 245, 246, 247, 260, 261, 275, 276, 278, 281, 301, 307, 308, 310, 311, 314], "_indexer": 40, "_indexes": 50, "_info": [22, 42, 47, 51, 52, 57, 59], "_information": 158, "_init": [39, 47, 49, 50, 68, 74, 81, 84, 85, 228], "_initialized": [100, 298], "_inner": [45, 197], "_input": [44, 50, 95, 100, 225], "_inspect": [22, 51, 52, 54, 57, 59, 92], "_install": [12, 21, 23], "_int": [50, 51, 68, 142], "_interrupted": [100, 153], "_interval": [44, 225], "_intervals": 44, "_invalid": 100, "_io": [49, 50, 52], "_ip": [298, 312], "_is": [39, 41, 43, 44, 50, 51, 52, 53, 95, 100, 153, 298], "_iso": [41, 42, 43, 53], "_isspace": 85, "_item": 41, "_items": 201, "_ito": 39, "_itoh": 39, "_ja": 48, "_japanese": 156, "_jis": [31, 277], "_jobs": [41, 94, 158, 177, 298, 308, 312], "_join": [43, 44], "_jp": [31, 74], "_json": 64, "_kana": [42, 43, 44, 53, 54, 180, 257], "_katakana": [44, 53, 54], "_key": [12, 34, 36, 37, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 58, 74, 89, 91, 110, 111, 112, 114, 121, 122, 123, 124, 125, 126, 127, 128, 136, 140, 142, 143, 149, 150, 152, 155, 156, 159, 161, 163, 164, 165, 170, 175, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 236, 237, 240, 244, 245, 246, 247, 250, 255, 260, 261, 275, 276, 278, 281, 286, 301, 305, 306, 307, 308, 310, 311, 313, 314], "_keys": [41, 42, 43, 45, 51, 52, 53, 54, 196, 197, 198, 202, 245, 246, 247, 286, 306, 307, 308, 315], "_keywords": [53, 68], "_koi": 74, "_l": 45, "_label": 50, "_labeled": 156, "_large": [34, 51, 54, 100, 111, 141, 161, 254, 298], "_last": [44, 225], "_latin": [45, 74], "_leading": [41, 156, 202, 205], "_leak": 14, "_left": [39, 100, 190, 298], "_len": [47, 68, 74], "_length": [22, 41, 44, 51, 57, 85, 132, 134, 135, 182, 195, 298], "_level": [22, 43, 45, 48, 50, 52, 57, 85, 92, 111, 130, 131, 173, 175, 228], "_lexicon": 50, "_like": 41, "_likes": [41, 43, 44, 95, 132, 134, 135, 156, 224, 225, 281], "_limit": [22, 36, 42, 43, 48, 50, 52, 53, 57, 81, 92, 100, 105, 118, 119, 133, 143, 163, 298, 306], "_limited": 74, "_line": [42, 44, 155], "_link": [100, 298], "_links": [100, 298], "_list": [22, 36, 37, 39, 41, 43, 44, 47, 49, 50, 51, 53, 57, 92, 100, 114, 137, 164, 175, 248, 298, 308], "_literal": 49, "_load": [42, 48], "_loaded": [51, 125], "_local": [176, 177], "_location": [44, 45, 53, 54, 95, 311], "_lock": [39, 54, 81, 85], "_locks": [100, 298], "_log": [43, 44, 45, 47, 48, 49, 50, 53, 74, 85, 96], "_logger": [47, 50, 52, 53, 74], "_logical": 50, "_long": [100, 298], "_loose": [22, 53, 57, 182], "_lz4": [51, 111], "_lzo": 100, "_m": [197, 227], "_main": 166, "_major": [41, 94, 158, 177, 298, 308, 312], "_malloc": 85, "_many": [41, 42, 49, 100, 183, 196, 298], "_map": [43, 44, 52, 53, 94, 158, 177, 298, 303, 308, 312], "_mark": [41, 42, 44, 53], "_match": [22, 41, 42, 45, 49, 51, 57, 59, 183, 196], "_max": [41, 43, 44, 51, 61, 100, 167, 204, 298], "_mean": 41, "_mecab": 50, "_medium": [111, 141], "_memo": [202, 203], "_memory": [47, 54, 100, 228, 298], "_memos": 260, "_message": [44, 50, 95, 244, 310], "_messages": [17, 18], "_micro": 41, "_middle": 53, "_min": [42, 43, 50, 51, 52, 156], "_minor": [41, 94, 158, 177, 298, 308, 312], "_minute": [22, 51, 57, 182], "_mode": [44, 49, 52, 53, 195, 219], "_model": [22, 57, 182, 227], "_models": [197, 227], "_modified": 311, "_module": 177, "_month": [22, 51, 57, 182], "_most": [50, 53, 245, 247], "_mruby": 23, "_msgpack": 64, "_mutex": [81, 85], "_n": [41, 42, 43, 44, 48, 51, 54, 61, 134, 136, 142, 155, 158, 177, 276, 298, 308, 312], "_nabe": 49, "_name": [12, 38, 41, 42, 44, 49, 50, 58, 74, 95, 111, 115, 116, 117, 125, 134, 135, 136, 142, 155, 156, 161, 202, 203, 210, 248, 298, 312], "_namen": 195, "_names": 50, "_network": 100, "_new": [9, 22, 39, 42, 47, 52, 57, 132, 134, 135, 156, 182], "_next": [37, 48, 50, 52, 54], "_nfthreads": 81, "_ngram": [51, 52], "_nil": [37, 43, 44, 45, 68, 111], "_no": [34, 37, 41, 42, 43, 44, 45, 49, 50, 52, 58, 100, 110, 111, 121, 122, 126, 127, 128, 132, 134, 135, 137, 140, 141, 143, 152, 155, 156, 161, 163, 180, 191, 192, 193, 197, 202, 203, 205, 206, 211, 224, 225, 226, 237, 244, 246, 247, 260, 261, 275, 276, 278, 286, 301, 310], "_nodelay": 51, "_nofile": [48, 228], "_none": [64, 74], "_normalizations": [43, 237], "_normalize": [45, 47, 50, 55, 161, 229, 230], "_normalizer": [50, 100], "_normalizers": [45, 50], "_not": [41, 42, 100, 114, 121, 127, 129, 152, 153, 156, 170, 202, 298], "_nromalize": 229, "_nsec": 41, "_nsubrecs": [41, 44, 49, 89, 156, 306], "_null": 50, "_number": [22, 42, 51, 52, 53, 57, 95, 125, 135, 283, 286, 295, 298, 312], "_numbers": [42, 50], "_o": [44, 100, 298], "_obj": [11, 22, 39, 40, 41, 42, 47, 48, 49, 50, 51, 52, 53, 57, 59, 68, 71, 74, 85], "_object": [52, 100, 143], "_of": [22, 42, 53, 57, 100, 124, 125, 155, 182, 274, 298], "_office": 198, "_offline": 40, "_offset": [42, 43, 44, 45, 49, 50, 53, 68, 85, 100, 119, 298, 306], "_old": 58, "_on": [100, 298], "_one": 155, "_onigmo": 45, "_only": [51, 100, 298], "_op": [11, 41, 50, 51, 52, 68], "_open": [37, 39, 42, 47, 50, 52, 61, 71, 85, 100, 205, 298], "_opened": [50, 52], "_operation": [100, 298], "_operations": 41, "_operator": [41, 42, 52, 54, 68], "_optarg": 50, "_optimize": [42, 43, 53], "_option": [41, 53], "_options": [41, 42, 48, 52, 225], "_or": [11, 22, 27, 31, 42, 43, 45, 57, 100, 114, 121, 127, 129, 152, 153, 170, 182, 189, 202, 298, 312], "_order": [41, 52], "_org": 12, "_original": 42, "_otoj": 14, "_output": [45, 49, 50, 100, 119, 298, 306], "_over": [100, 298], "_overlap": [51, 52], "_own": 50, "_p": 74, "_pack": [41, 94, 158, 177, 298, 308, 312], "_package": [44, 50], "_parallel": [22, 27, 31, 41, 42, 43, 45, 57, 182, 202], "_parameters": [22, 50, 57, 92, 248], "_parse": [41, 50, 68], "_parsev": 41, "_part": 274, "_pass": 177, "_pat": [34, 37, 41, 42, 43, 44, 48, 50, 51, 74, 91, 110, 111, 112, 114, 122, 123, 124, 132, 134, 135, 137, 141, 142, 149, 150, 152, 155, 156, 161, 163, 164, 165, 170, 175, 180, 191, 192, 193, 195, 196, 201, 202, 203, 205, 206, 210, 224, 225, 237, 240, 244, 245, 246, 247, 255, 260, 261, 275, 276, 278, 281, 301, 307, 308, 310, 311, 313, 314], "_patch": [41, 94, 158, 177, 298, 308, 312], "_path": [12, 23, 40, 47, 48, 49, 50, 52, 53, 94, 106, 112, 114, 142, 143, 164, 173, 175, 176, 178, 241, 290, 295, 298, 308, 312], "_paths": 41, "_pattern": [50, 195, 205], "_per": [39, 41, 132, 134, 135, 156], "_permission": 100, "_permitted": [100, 298], "_persistent": 52, "_pgp": 12, "_phrase": [44, 225], "_physical": 54, "_pipe": [100, 298], "_plant": 44, "_plugin": [38, 39, 41, 49, 50, 51, 52, 53, 85, 100], "_plugins": [39, 42, 50, 53], "_point": [74, 142, 189, 307], "_pop": 50, "_popular": [132, 134, 135, 156], "_port": 176, "_pos": 52, "_position": [41, 42, 43, 44, 45, 51, 53, 111, 112, 123, 132, 134, 135, 142, 152, 155, 156, 180, 191, 192, 193, 202, 203, 205, 206, 210, 224, 225, 226, 244, 245, 246, 247, 260, 261, 275, 281, 301, 308, 310, 311, 314], "_posting": [41, 51, 54], "_pragma": [44, 156], "_pre": 43, "_precision": [44, 111, 141], "_prefix": [12, 23, 37, 42, 44, 45, 50, 53, 168, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280], "_preparer": [159, 250, 251, 253], "_pretty": [41, 43, 44, 45, 97, 178], "_previous": 61, "_printf": 49, "_printfv": 41, "_probability": [39, 159], "_proc": [22, 41, 49, 50, 51, 52, 53, 57, 59, 85, 166], "_process": [100, 298], "_processes": [100, 292, 298], "_product": [45, 197], "_prolonged": [42, 44, 53], "_proxy": 177, "_ptr": [50, 68, 85], "_purchases": 42, "_push": 11, "_put": [22, 48, 50, 53, 57, 92, 129, 131, 175], "_pvector": [50, 68], "_qe": 166, "_ql": 49, "_qlog": 47, "_quantity": 42, "_queries": [41, 94, 97, 158, 177, 241, 298, 308, 312], "_query": [11, 47, 48, 49, 50, 51, 52, 53, 68, 74, 159, 179, 180, 181, 243, 250, 251, 253], "_ra": 111, "_range": [22, 41, 43, 44, 50, 52, 53, 54, 57, 92, 100, 132, 133, 158, 248], "_rank": [22, 42, 57, 283], "_rate": [41, 94, 97, 158, 177, 241, 298, 308, 312], "_ratio": [41, 42, 44, 49, 51, 52, 53, 54, 183, 196], "_raw": [53, 163], "_rc": [61, 68, 71, 84, 85], "_read": 100, "_reader": 50, "_reading": [53, 231, 232, 233, 234, 235, 257, 258, 259], "_realloc": 85, "_record": [22, 41, 42, 43, 44, 52, 57, 125, 135, 283, 284, 286], "_records": [22, 41, 42, 43, 44, 47, 48, 50, 51, 52, 57, 125, 182], "_recover": [49, 50, 51], "_rectangle": [22, 36, 37, 39, 41, 48, 51, 54, 57, 182, 315], "_recursive": 50, "_recv": 49, "_reduce": [52, 53], "_reference": [41, 43, 44, 52, 54, 149, 150, 156], "_referer": 177, "_refused": [100, 298], "_regexp": [42, 43, 52, 205], "_register": [22, 38, 41, 42, 43, 45, 57, 85, 92, 103, 122, 124, 132, 133, 134, 135, 136, 137, 145, 151, 154, 155, 156, 165, 180, 195, 197, 198, 208, 209, 211, 212, 219, 221, 222, 243, 255, 260, 261], "_reindex": 50, "_release": [12, 22, 28, 41, 50, 57, 92, 126], "_removable": 163, "_remove": [22, 39, 41, 42, 47, 48, 49, 50, 51, 52, 57, 92, 105, 110, 124, 149, 175, 248, 275], "_rename": [22, 40, 48, 49, 51, 57, 58, 92, 110, 124], "_reopen": [22, 47, 51, 54, 57, 92, 129, 130], "_repair": 40, "_repository": 12, "_request": [51, 153], "_res": 176, "_reset": [41, 100], "_resource": [52, 100], "_resources": 52, "_rest": 41, "_result": [41, 100, 123, 156], "_retry": 100, "_rewriter": 51, "_rewriters": 53, "_right": [39, 190], "_rk": [22, 50, 57, 182, 240], "_roles": 111, "_romaji": [53, 257], "_root": 50, "_rotate": 50, "_round": 45, "_rset": 41, "_ruby": 50, "_run": 166, "_s": 49, "_same": 48, "_scalar": [41, 42, 43, 44, 45, 51, 52, 58, 110, 111, 112, 114, 121, 122, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 142, 143, 149, 150, 152, 155, 156, 163, 164, 165, 170, 180, 183, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 210, 211, 212, 224, 225, 226, 237, 244, 245, 246, 247, 260, 261, 275, 276, 278, 281, 286, 301, 306, 307, 310, 311, 314], "_scan": 52, "_schema": [42, 50], "_score": [39, 41, 42, 45, 47, 48, 50, 53, 54, 89, 110, 156, 159, 180, 225, 245, 246, 247, 310, 311, 315], "_scorer": [50, 100], "_script": 154, "_sd": 41, "_search": [22, 39, 41, 42, 44, 45, 47, 50, 51, 53, 54, 57, 59, 135, 159, 168, 182, 231, 232, 233, 234, 235, 240, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280], "_sec": 41, "_second": [22, 51, 57, 182], "_section": [41, 42, 43, 44, 49, 50, 51, 53, 111, 112, 155, 310, 311], "_seek": [100, 298], "_seg": 53, "_segment": 54, "_segments": [51, 54], "_seh": 166, "_sel": [55, 111], "_select": [3, 22, 39, 41, 50, 51, 52, 53, 54, 57, 68, 92, 132, 134, 137, 156, 158, 191, 192, 193, 248, 283], "_selector": [22, 41, 49, 50, 57, 92, 175], "_send": [51, 61, 64, 166], "_sent": 177, "_sequence": [100, 298], "_sequential": 51, "_serial": 110, "_set": [22, 40, 41, 42, 43, 44, 47, 49, 50, 51, 52, 54, 57, 58, 61, 74, 81, 92, 115, 116, 124, 167, 171], "_setoperation": [51, 52], "_setpshared": 48, "_shard": [22, 50, 57, 92, 137, 248], "_shark": 44, "_show": 53, "_shuffle": [44, 111, 141], "_shutdowned": [100, 298], "_signal": 81, "_sis": [161, 224, 225, 299, 313], "_size": [11, 22, 41, 43, 44, 50, 51, 52, 53, 57, 68, 71, 74, 85, 94, 124, 132, 142, 158, 165, 177, 182, 298, 308, 312], "_sjis": 74, "_sjlj": 49, "_skip": [48, 51, 52], "_slice": [22, 41, 42, 43, 51, 52, 57, 182], "_slow": 43, "_small": [44, 100, 111, 141, 298], "_snip": [47, 49], "_sock": 302, "_socket": [100, 298], "_socre": 41, "_sort": [45, 50, 51, 306], "_sortby": [50, 51, 119], "_sound": [42, 44, 53], "_sounds": [44, 53], "_source": [12, 41, 42, 43, 44, 45, 52, 53], "_space": [100, 141, 298], "_spaces": 205, "_sparse": 50, "_speech": 274, "_split": 51, "_squared": 45, "_stable": 52, "_stack": 100, "_stamp": 53, "_started": 95, "_station": 198, "_statistics": 54, "_stop": [42, 45, 49, 50, 53, 165, 261, 302], "_str": [68, 311], "_strerror": 49, "_string": [14, 42, 48, 50, 51, 53, 68, 132, 134, 135, 156], "_stringn": [42, 203], "_strings": 42, "_sub": 43, "_substring": [22, 42, 51, 57, 182], "_success": [61, 68, 84, 85, 100, 228], "_such": [100, 298], "_suffix": [39, 50], "_suggest": 38, "_sum": [22, 41, 52, 53, 57, 132, 134, 135, 156, 283], "_supported": [100, 298], "_symbol": [42, 43, 44, 53], "_symbolic": [100, 298], "_synonyms": 243, "_syntax": [44, 51, 52, 58, 68, 100, 156], "_system": [39, 52, 100, 298], "_t": [41, 81, 100], "_table": [3, 22, 37, 39, 40, 41, 45, 50, 51, 52, 53, 54, 57, 59, 68, 92, 124, 155, 163, 176, 248], "_tables": [48, 50], "_tag": [41, 42, 43, 44, 110, 132, 134, 135, 156, 192, 196, 205], "_tags": [41, 43, 45, 307, 311], "_take": 51, "_target": [43, 44, 49, 50, 237], "_tax": 42, "_temporarily": [52, 100, 298], "_term": [42, 50, 55], "_terms": 41, "_text": [14, 41, 42, 43, 49, 50, 51, 54, 68, 74, 111, 135, 138, 156], "_tf": [41, 42, 50, 53, 245], "_thread": [22, 50, 57, 59, 166, 167, 176], "_threads": 167, "_threshold": [31, 37, 39, 41, 42, 43, 44, 45, 50, 52, 53, 159, 171, 180, 186, 250, 251, 253], "_time": [41, 42, 43, 44, 50, 53, 54, 94, 95, 96, 97, 158, 177, 298, 308, 312], "_timeout": [51, 54, 99, 100, 298], "_timestamp": [41, 42, 152], "_timeval": 41, "_tiny": [50, 51], "_title": [43, 44, 122, 152, 176, 308, 310], "_to": [41, 50, 51, 52, 53, 54, 133, 257, 310, 311], "_token": [12, 41, 44, 49, 50, 51, 52, 100, 225], "_tokenize": [22, 44, 50, 51, 53, 57, 92, 262], "_tokenized": [138, 168], "_tokenizer": [41, 42, 43, 44, 45, 47, 50, 51, 52, 74, 100, 111, 123, 132, 134, 135, 142, 152, 155, 156, 162, 163, 164, 165, 175, 176, 180, 191, 192, 193, 202, 203, 205, 206, 210, 224, 225, 226, 244, 245, 246, 247, 255, 260, 261, 275, 276, 278, 281, 301, 308, 310, 311, 314], "_tokenizers": 50, "_tokens": 41, "_toknize": 41, "_tolerance": 156, "_too": [41, 42, 49, 100, 183, 196, 298], "_touch": 37, "_tp": 174, "_trace": [43, 44, 94, 96, 158, 177, 298, 308, 312], "_trailing": 44, "_transposition": [41, 44, 51], "_true": 50, "_truncate": [39, 44, 49, 111, 141], "_ts": 50, "_tsv": [64, 243], "_type": [22, 41, 42, 43, 44, 45, 47, 49, 50, 51, 53, 57, 59, 74, 89, 96, 111, 122, 134, 155, 156, 175, 176, 178, 179, 180, 189, 241, 274, 305, 306, 307, 308, 310, 311, 313], "_types": [42, 43, 44, 49, 50, 52, 138, 231, 232, 233, 234, 235, 237, 292], "_typo": 156, "_ubref": 41, "_uint": [50, 142], "_unavailable": [52, 100, 298], "_union": [44, 96], "_unknown": 100, "_unlink": 41, "_unlock": [81, 85], "_unmap": [22, 50, 52, 57, 92, 105, 143, 149, 152], "_unref": 41, "_unregister": [22, 50, 54, 57, 92, 124, 144, 151], "_unsupported": 100, "_untag": [22, 48, 57, 111, 182], "_update": [18, 100, 156, 224], "_uploader": 12, "_usage": [52, 54, 141], "_use": [49, 50, 100, 133, 298], "_usec": 41, "_user": [22, 57, 59, 85, 177, 292], "_users": 311, "_utf": 74, "_uvector": 41, "_v": [44, 53], "_valid": 177, "_validate": 42, "_value": [37, 39, 40, 41, 48, 49, 50, 51, 52, 53, 54, 68, 74, 89, 111, 135, 154, 155, 156, 184, 208, 209, 281], "_values": [22, 39, 41, 42, 49, 50, 51, 52, 53, 54, 57, 74, 182], "_valule": 196, "_var": [49, 51, 68, 85, 142], "_vars": 85, "_vector": [41, 42, 43, 44, 45, 48, 49, 50, 53, 54, 68, 91, 110, 111, 112, 121, 132, 134, 135, 180, 197, 201, 210, 219, 221, 305, 307, 311, 314], "_vectorize": [22, 57, 182, 227], "_version": [12, 22, 39, 41, 42, 43, 44, 45, 49, 50, 51, 54, 57, 59, 94, 96, 97, 100, 158, 177, 178, 191, 192, 193, 194, 206, 241, 292, 298, 308, 312], "_voiced": 53, "_void": 51, "_vprintf": [41, 49], "_vsize": 68, "_w": 262, "_warm": 42, "_warn": [43, 111], "_week": [22, 42, 51, 53, 57, 182], "_weight": [41, 43, 49, 91, 111, 112, 155], "_wgs": 74, "_when": 95, "_whole": 310, "_win": [50, 85], "_window": [52, 100], "_windows": [50, 85], "_with": [23, 42, 44, 45, 51, 155, 161, 224, 225, 299, 313], "_wo": 44, "_word": [42, 45, 49, 50, 53, 122, 165, 255, 261], "_workers": [27, 31, 43, 44, 45, 158, 175, 177, 226, 298, 308, 312], "_would": [100, 298], "_x": 177, "_xml": 64, "_xxx": [41, 141, 156], "_year": [22, 51, 57, 182], "_yyyymmdd": [132, 134, 135, 137], "_zlib": [51, 100, 111], "_zone": 177, "_zstd": [51, 100, 111], "_zu": 44, "_{": 48, "``": [43, 191], "`filtered": 156, "`hostname": 175, "aa": 44, "aaa": [44, 54], "aaaxxxbbbcdefghi": 44, "aardvark": [52, 53], "ab": 44, "abc": [41, 44, 50, 184], "abcd": 44, "abcde": [44, 138], "abcdef": [41, 44], "abcxyzdef": [41, 44], "abebcdxyzdef": 41, "abi": 50, "about": [14, 21, 85, 175, 182, 283], "above": [45, 153], "ac": [230, 237], "accept": [37, 302], "accepts": [170, 175], "accessor": [50, 54], "accurate": [42, 205, 206], "acronym": 290, "actions": [12, 43], "active": 42, "actual": 177, "add": [12, 17, 18, 32, 43, 47, 49, 134, 155, 156, 168, 182, 277, 283], "added": [28, 55, 58, 74, 85, 96, 97, 98, 99, 110, 111, 112, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 146, 149, 150, 152, 153, 155, 156, 157, 158, 160, 161, 163, 166, 167, 170, 171, 173, 175, 184, 186, 187, 191, 192, 193, 195, 196, 197, 198, 203, 205, 207, 208, 209, 211, 212, 219, 220, 221, 222, 224, 225, 227, 231, 232, 233, 234, 235, 237, 244, 246, 247, 248, 257, 258, 259, 277, 282, 283, 285, 286, 287, 288], "addition": 42, "additional": [44, 48, 52, 225], "address": [39, 47, 175, 180, 298], "adjust": 156, "adjuster": [42, 49, 53, 91, 111, 135], "admin": [37, 49, 50, 51], "advanced": 55, "advantage": [42, 205, 206], "adventure": 111, "adventurer": 111, "aff": 43, "after": [41, 149], "again": 177, "against": 175, "age": [41, 45, 58, 111, 112, 124, 149, 150, 155, 156, 183, 186], "ages": [111, 149, 150, 161, 183, 186], "aggregate": [41, 42, 205, 206], "aggregator": [41, 44], "ahost": 244, "ai": 44, "aio": 48, "airport": 44, "airports": 44, "akio": [37, 47, 53], "al": [42, 45, 277], "al\"": 42, "alan": 42, "albert": 54, "alert": [49, 129, 130, 175, 177], "algorithm": 53, "ali": [42, 110], "alias": [58, 115, 116, 117], "aliased": 58, "aliases": [58, 115, 116, 117], "alice": [41, 42, 44, 45, 58, 110, 111, 114, 141, 156, 164, 170, 177, 183, 186, 195, 202, 203, 224, 292, 311], "alisa": [42, 44, 202, 203], "all": [27, 43, 44, 47, 50, 51, 53, 132, 134, 135, 156, 175, 224, 225, 314], "alloc": [41, 51, 94, 97, 158, 175, 177, 241, 298, 308, 312], "allocate": [22, 51, 300], "allocated": 85, "allocates": 85, "allow": [41, 42, 44, 47, 156, 202, 224], "allowed": 181, "allows": [42, 205, 206], "almalinux": [18, 22, 23, 26, 27, 31, 42, 43, 44, 296], "almost": 290, "alnum": 44, "alpha": [42, 43, 44, 231, 232, 233, 234, 235, 237], "alpine": [29, 45], "already": [85, 181], "also": [41, 42, 43, 44, 111, 132, 134, 135, 156, 205, 206, 224, 225, 245, 290], "always": [42, 133], "alx": 156, "am": [193, 206], "amazon": [22, 23, 27, 43, 44, 52, 54], "amp": [43, 44], "an": [85, 95, 177, 224, 272, 302], "analyze": 96, "and": [12, 42, 43, 44, 45, 48, 49, 50, 51, 52, 54, 55, 64, 68, 85, 111, 156, 165, 175, 177, 179, 181, 183, 195, 196, 197, 202, 203, 205, 206, 224, 225, 228, 245, 246, 247, 261, 281, 310, 315], "animals": 44, "animation": 307, "ann": 12, "anonymous": 124, "another": 50, "anthony": [42, 43], "any": [42, 50], "aomi": 52, "apache": [12, 24, 25, 27, 28, 31, 41, 42, 43, 44, 45, 52, 54, 125, 156, 158, 177, 178, 298, 308, 312], "api": [1, 3, 11, 15, 22, 37, 38, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 60, 61, 71, 81, 84, 85, 100, 223, 292], "appears": [42, 205, 206], "apple": [41, 42, 211, 229, 272, 276, 278], "appli": 205, "application": [42, 44, 54, 125, 177, 178, 292], "applications": [42, 205, 206], "applied": 55, "approximate": 189, "appveyor": 49, "april": 12, "apt": [12, 21, 28, 32, 41, 47, 54], "aptitude": 14, "aquarius": 41, "ar": [168, 299, 301], "arai": 50, "aramaki": [37, 39], "arc": 168, "architecture": 50, "archive": [12, 22, 23], "are": [17, 27, 42, 43, 44, 48, 51, 68, 85, 156, 179, 181, 205, 206, 224, 228, 245, 246, 247, 290], "arg": [244, 298], "argc": 81, "args": 41, "argument": [52, 225, 245], "arguments": [85, 155, 175], "argv": 81, "aries": 41, "arm": [42, 43, 158], "armenian": [231, 232, 233, 234, 235, 258, 259], "armhf": 49, "arnaud": 39, "array": [52, 95, 108, 141, 155], "arrow": [27, 31, 41, 42, 43, 44, 52, 54, 125, 156, 158, 178], "art": 311, "arted": 225, "artful": [52, 53], "article": [42, 310], "articles": [42, 310], "as": [17, 42, 47, 85, 156, 168, 175, 177, 179, 181, 205, 206, 290], "ascending": 134, "ascii": [44, 53, 224, 225, 264, 275, 279, 280], "askdkc": 44, "aspx": 302, "assigned": 50, "assigns": 224, "associated": 85, "at": [55, 95, 175, 311], "ath": 44, "auth": [177, 292], "auto": [41, 42, 53, 133, 156, 159], "autoconf": [6, 39], "autogen": [6, 17, 47], "automake": [6, 37], "automatically": 12, "autotools": [5, 7, 31, 43, 44], "available": [27, 55, 85, 302], "avg": [49, 135, 156, 174], "aware": 85, "ax": 45, "ax1": 45, "axaixiuxuexeoxo": [231, 232, 233, 234, 235, 257, 258, 259], "axx": 45, "ba": 42, "back": [43, 44, 94, 158, 177, 225, 298, 308, 310, 312], "background": 175, "backlog": 52, "backup": 122, "backward": 170, "bad": [48, 49, 51, 298], "banana": [42, 211], "bar": [231, 232, 233, 234, 235, 258, 259], "base": [12, 50, 53, 85, 177, 274], "baseball": [307, 310], "based": [42, 43, 44, 191, 192, 193, 205, 206], "basethreadinitthunk": 166, "bash": 31, "basic": 42, "batch": 96, "bbb": 44, "bc": 44, "bcde": 44, "be": [27, 42, 68, 85, 95, 118, 151, 170, 175, 181, 228, 290, 302], "beaver": [44, 53], "because": [42, 51, 177, 241, 245, 290, 302], "become": 55, "been": 12, "before": 21, "begin": 174, "beginner": 42, "bellefleur": 52, "benchmark": 27, "bernard": 50, "beta": 55, "between": [22, 41, 42, 43, 45, 48, 49, 51, 52, 53, 54, 57, 181, 182], "bfloat": [44, 90, 94, 142, 155, 158, 177, 298, 308, 312], "bi": [299, 301], "bigram": [53, 176, 179, 180, 299, 301], "bigramlexicon": 152, "bill": [50, 299, 301], "billiard": [299, 301], "bin": [18, 33], "binary": [0, 241, 282], "bind": 39, "binding": [55, 191, 192, 193], "bindings": 42, "bionic": [44, 53], "bison": 12, "biswapriyo": 45, "bit": [21, 23, 24, 28, 32, 33, 41, 44, 45, 48, 50, 51, 54, 111, 141, 176, 282], "black": 229, "blank": 44, "block": 305, "blog": [210, 301, 308, 310], "blogs": 301, "blosc": [44, 94, 111, 158, 177, 298, 308, 312], "blosclz": 111, "bm": [41, 245, 247], "bo": 45, "bob": [41, 42, 44, 45, 58, 114, 156, 164, 170, 177, 183, 186, 202, 203, 292, 311], "body": [41, 42, 43, 44, 45, 52, 54, 96, 109, 113, 120, 127, 152, 177, 191, 192, 193, 275, 292, 301, 310, 314], "bom": 37, "book": [41, 225], "bookmark": [91, 122], "bookmarks": [91, 122, 125, 137], "books": 111, "bookworm": [22, 23, 44], "bool": [41, 42, 45, 48, 50, 51, 54, 90, 110, 132, 134, 135, 141, 142, 155, 156, 165, 189, 190, 224, 261, 305, 313], "boolean": [55, 155], "boost": [180, 250], "boston": 311, "bottom": [39, 190], "box": [41, 231, 232, 233, 234, 235, 258, 259], "brad": 51, "brazil": 306, "brew": [18, 30], "british": 314, "broken": [42, 143, 298], "brooklyn": 311, "browser": 17, "bsd": [31, 49, 50], "buffer": [74, 108, 141, 302], "buffered": 71, "bug": [43, 47, 55], "bugs": 45, "build": [12, 18, 21, 27, 48], "builder": 71, "building": 64, "bulk": [41, 50, 68], "bullet": [231, 232, 233, 234, 235, 258, 259], "bullseye": [42, 43, 45], "bundle": 18, "buster": [43, 44, 54], "but": [42, 95, 170, 175, 181], "buzz": 180, "by": [41, 42, 43, 44, 45, 47, 68, 84, 85, 95, 224, 290, 306], "bye": [41, 42, 156, 310], "byte": [42, 43, 47, 50, 111, 176, 205, 206, 298], "bytes": 85, "b\u30c6\u30fc\u30d6\u30eb": 51, "ca": 28, "cab": 42, "cabrera": 44, "cacao": 42, "cache": [22, 36, 41, 42, 43, 47, 50, 52, 57, 61, 92, 94, 97, 158, 177, 241, 298, 308, 312], "cafedomancer": 51, "cake": 198, "calc": [50, 52, 156], "callback": 180, "called": 85, "calling": [84, 85], "calloc": 51, "callum": 45, "calros": [183, 186], "camp": 311, "can": [17, 42, 64, 85, 95, 151, 155, 170, 175, 177, 205, 206, 224, 245, 290], "canadian": [231, 232, 233, 234, 235, 258, 259], "cancel": 153, "canceled": [99, 153], "cancer": 41, "candidate": 159, "candidate1": 159, "candidate2": 159, "cannot": [22, 300], "capital": [45, 53], "capricorn": 41, "carlier": [43, 44], "carlo": 44, "carlos": [114, 164, 170], "cas": 298, "case": [42, 85, 95, 151, 181], "cases": 290, "cast": [22, 52, 53, 57, 111, 182, 224], "cat": 42, "category": [41, 156], "cd": [12, 17, 18, 31, 44], "cdbs": 39, "cdt": 27, "ce": [43, 270, 271, 277], "ce1": 42, "ceekz": 48, "center": 189, "centos": [37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54], "centos6": 47, "central": 311, "cents": [264, 269, 270, 271], "ch": 168, "change": [47, 177, 292], "changed": [55, 177], "changes": 12, "char": [41, 49, 68, 74, 81, 85], "character": [85, 111], "characteristics": [42, 205, 206], "charlie": 311, "check": [14, 22, 36, 39, 41, 42, 50, 52, 57, 92, 106, 123], "checks": [42, 43, 44, 49, 138, 231, 232, 233, 234, 235, 237], "child": 42, "china": 306, "choose": 175, "chris": [42, 45], "christian": 50, "chunk": [53, 108, 141], "chunked": 53, "chunks": 303, "ci": [20, 22, 47, 48, 49], "ciritical": 177, "cities": [44, 188], "city": [44, 188, 311], "ci\u4e00\u822c": 21, "ci\u4e0a": 21, "cjk": 53, "clang": [45, 47, 48, 49], "class": [41, 43, 44, 45, 53, 191, 192, 193, 194, 206, 274, 275], "class\u30bf\u30b0": [191, 193], "clean": 14, "clear": [49, 54], "clearlock": [22, 36, 47, 49, 57, 92, 175], "client": [175, 177, 180, 245, 290], "clone": [3, 6, 7, 8, 12, 13, 18], "close": [53, 205], "clumns": 281, "cmake": [3, 5, 6, 22, 23, 24, 25, 28, 30, 31, 32, 33, 43, 44, 47, 48, 50, 51], "co": 180, "code": [17, 27, 170, 228, 241], "codeblocks": 27, "codelite": 27, "codename": 28, "codes": 84, "coffee": 198, "collected": 95, "collection": 42, "color": 229, "column": [11, 22, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 90, 91, 92, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 143, 149, 150, 152, 156, 159, 161, 163, 164, 165, 170, 175, 176, 180, 186, 188, 193, 194, 195, 196, 197, 198, 202, 203, 205, 206, 210, 212, 219, 221, 224, 225, 226, 237, 244, 245, 248, 250, 251, 253, 260, 261, 275, 276, 278, 281, 286, 301, 305, 306, 307, 308, 310, 311, 313, 314, 315], "columnn": 47, "columnnormalizations": [43, 237], "columns": [37, 41, 42, 43, 44, 45, 47, 51, 52, 54, 74, 96, 155, 179, 197, 281, 286], "com": [9, 306], "combined": 177, "combining": [45, 231, 235], "come": 311, "comma": 50, "command": [21, 29, 41, 42, 43, 44, 45, 47, 50, 51, 54, 74, 85, 94, 95, 96, 97, 143, 149, 158, 166, 170, 173, 175, 177, 178, 179, 191, 192, 193, 194, 206, 241, 244, 290, 298, 308, 312], "commandinput": 50, "commands": 290, "comment": [42, 50, 210, 310, 311], "comments": [42, 210, 310], "commit": [12, 17, 18], "common": [39, 225], "community": [8, 27], "compare": 18, "compared": [42, 205, 206], "compatibility": [41, 44, 53, 54, 170, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259], "compatible": [42, 177], "complete": [40, 159, 180, 250, 252], "composition": [41, 44, 53, 54, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259], "compress": [44, 51, 111, 141, 155], "computed": 85, "con": 45, "cond": [48, 81], "condition": [43, 224, 225], "conditional": 159, "conditions": 195, "conf": 303, "config": [22, 27, 50, 57, 58, 92, 93, 124, 171], "configuration": [48, 177, 180, 296], "configure": [14, 17, 27, 37, 39, 40, 44, 47, 49, 54, 156, 225, 248], "confirm": 17, "conifugration": 21, "connection": 298, "connections": 175, "consists": 224, "const": [40, 41, 68, 74, 85], "constant": [50, 52], "contain": 47, "container": [42, 68], "content": [39, 41, 42, 43, 44, 45, 47, 48, 49, 54, 95, 96, 125, 132, 134, 135, 142, 155, 156, 163, 177, 178, 194, 197, 202, 203, 205, 206, 210, 224, 225, 226, 245, 260, 261, 281, 292, 310], "contents": [41, 43, 44, 45, 85], "context": [41, 50, 68, 74, 175, 205, 206], "continue": 49, "contrast": [42, 175], "contry": 44, "cook": [42, 43], "copa": 50, "copied": 85, "copy": 54, "copyfloat": 43, "copying": 54, "core": 176, "correct": [159, 180, 251], "correction": 251, "corrupt": 137, "cosmic": 53, "cosmo": [48, 49], "could": 302, "count": [134, 135, 156], "countries": 44, "country": [121, 306, 312], "cover": [42, 205, 206], "coverage": 14, "cp": 53, "cpu": [0, 31, 43, 45, 94, 156, 158, 176, 177, 197, 203, 292, 298, 308, 312], "cpu\u30b3\u30a2": [6, 45, 175, 180, 291], "crch": 168, "create": [12, 18, 85, 122, 175], "created": [42, 43, 85, 132, 134, 135, 212, 311], "createfilemapping": 50, "createrepo": 12, "creates": [68, 85, 179], "crit": [129, 130, 175], "critical": [85, 129, 175], "ctor": 43, "ctrl": [175, 298], "ctx": [9, 41, 45, 61, 68, 71, 74, 85], "curl": [21, 31, 47, 125, 153, 175, 177, 180, 241, 292], "current": [58, 74, 81], "currently": [64, 177], "cursor": 41, "custom": [45, 142], "customers": 41, "customize": 177, "cut": 25, "cutter": [6, 12], "cuttlefish": 53, "cve": [42, 43, 53, 54], "c\u30e9\u30f3\u30bf\u30a4\u30e0": 50, "daemon": [175, 180, 181, 290], "daiki": [37, 38, 47], "dangling": 137, "danish": 260, "darwin": 158, "dash": [31, 231, 232, 233, 234, 235, 258, 259], "dat": [41, 51, 52, 254], "data": [41, 42, 45, 81, 94, 123, 125, 177, 184, 224, 241, 292], "database": [22, 42, 50, 52, 57, 92, 105, 106, 143, 149, 152, 156, 173, 175, 177, 179, 205, 206, 303], "dataset": [179, 180, 181], "datasets": 179, "date": [42, 43, 176], "dat\u30ad\u30fc": 48, "dav": 195, "dave": [183, 186], "david": [43, 44, 195], "day": [173, 226], "days": 173, "db": [39, 40, 42, 44, 50, 51, 52, 53, 94, 109, 112, 114, 120, 124, 141, 142, 143, 162, 164, 175, 176, 177, 178, 180, 241, 281, 290, 295, 298, 308, 312], "db)": 124, "db1": 292, "db2": 292, "dbe": 228, "dbms": [42, 205, 206], "dbmss": 42, "dcb": 49, "dcmake": [12, 27], "dd": [225, 228], "ddl": [45, 301], "de": [17, 44, 74], "deb": [12, 28, 32, 47, 54], "debhelper": 39, "debian": [14, 18, 22, 23, 27, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 296], "debootstrap": 12, "debug": [8, 27, 41, 45, 50, 52, 54, 123, 129, 130, 175, 177], "decimal": 42, "decrypt": 12, "dededede": 44, "def": [41, 44], "defalt": 37, "defaul": 184, "default": [27, 41, 42, 43, 44, 45, 47, 52, 53, 54, 74, 97, 99, 111, 123, 132, 134, 135, 142, 152, 155, 156, 158, 159, 162, 163, 164, 165, 175, 176, 177, 180, 184, 191, 192, 193, 195, 205, 206, 208, 209, 210, 219, 224, 225, 226, 241, 244, 245, 246, 247, 255, 260, 261, 275, 276, 278, 281, 292, 298, 301, 308, 310, 311, 312, 314], "defg": 44, "define": [22, 57, 92, 175], "defines": 179, "definition": 224, "defrag": [22, 36, 48, 57, 92], "defxyzabc": 41, "dejan": 51, "delete": [12, 22, 36, 37, 39, 51, 52, 53, 57, 92, 106, 115, 124, 125], "delimit": 48, "delimiter": [42, 43, 205], "demo": 307, "dense": [44, 96], "deo": [43, 44], "dependent": [41, 44, 54, 124, 149, 150], "depends": [55, 95], "deprecated": [93, 284], "depth": [44, 96], "derived": 181, "descending": [50, 134], "describe": [18, 85], "describes": 175, "description": [51, 299, 311], "designed": 290, "desktop": 8, "dest": [41, 174, 175], "destination": 43, "detail": 176, "details": [12, 85], "dev": [6, 12, 42, 177], "develop": [42, 93, 260], "developed": [42, 260], "developer": 311, "developers": 95, "developing": [42, 260], "development": 311, "develops": [42, 260], "dewangga": 50, "df": [41, 247], "dgrn": 27, "dh": 12, "diana": 45, "dict": 44, "dictionary": [96, 229, 274], "diff": 176, "difference": 225, "difficult": 42, "dingo": 41, "directory": [27, 85, 181, 298], "disable": [39, 42, 177, 302], "disables": 177, "disco": 41, "discussions": 44, "disk": [141, 244], "distance": [41, 45, 188, 197], "divides": 42, "dll": [39, 41, 47, 49, 51, 166], "dll\u30d1\u30b9": 53, "dnf": [18, 24, 25], "do": [42, 49, 52, 166, 176], "doc": [12, 16, 17, 18, 27, 106, 314], "docker": [22, 23, 42, 43], "dockerfile": 12, "dockerfiles": 12, "dockerhub": 29, "docs": [12, 51], "document": [37, 41, 42, 44, 45, 175, 191, 192, 193, 205, 206, 225, 245, 247, 275], "documentation": [21, 27, 177], "documentations": [182, 283], "documents": [42, 43, 202, 203, 205, 206], "documentvectorbm": 41, "dodaisuke": [53, 54], "doesn": [143, 177], "domain": [16, 68, 85, 114, 162, 164, 175, 298, 312], "don": [42, 64, 68, 177], "donut": 198, "dot": [45, 231, 232, 233, 234, 235, 258, 259], "double": [41, 42, 44, 50, 155, 183, 196, 225], "doxygen": [60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83], "dput": 12, "dragonfly": 37, "draw": 307, "drawings": [231, 232, 233, 234, 235, 258, 259], "drilldown": [36, 41, 43, 44, 49, 50, 51, 52, 54, 119, 306, 307, 311], "drilldowns": [41, 42, 43, 44, 50, 51, 52, 53, 54], "drilldownss": 156, "drink": 41, "droonga": [195, 196, 219, 248], "due": [42, 205, 206], "dump": [22, 36, 37, 39, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 57, 64, 92, 129, 137, 163, 171, 175, 177], "dutch": 260, "dylan": 44, "dynamically": 42, "d\u30ad\u30fc": 308, "ea": [168, 228], "eaaa": 42, "each": [68, 159, 250, 251, 253], "ear": 168, "earch": 168, "earlier": 170, "easier": 245, "easy": 245, "ec": 156, "echo": 143, "eclipse": 27, "ecmascript": [47, 48, 156, 223, 225], "ed": 44, "edge": 9, "edict": [49, 51], "edit": [12, 17, 22, 36, 51, 57, 182, 225], "editor": 17, "editorconfig": 42, "editrc": 39, "ef": 44, "effective": 175, "efghi": 44, "eggs": 310, "ehllo": 156, "eight": 308, "eito": 48, "el": [262, 264, 267, 268, 275], "elapsed": [42, 43, 44, 53, 95, 96, 241], "element": [50, 91, 225], "elements": [51, 74, 95], "elfring": 47, "ell": 275, "ellip": 188, "elly": 45, "else": [50, 302], "em": [111, 231, 232, 233, 234, 235, 258, 259], "emacs": 17, "embeddable": 197, "emerg": 130, "emerge": [129, 175], "emergency": [129, 175, 177], "emfile": 302, "emily": 45, "emoji": [231, 232, 233, 234, 235], "emphasize": 194, "empty": [45, 50], "en": [41, 159, 168, 205, 250, 270, 271], "enable": [6, 17, 27, 31, 37, 43, 48, 168, 177], "enabled": 27, "enablerepo": 24, "enables": 177, "encoding": [74, 85, 175, 241], "ency": 176, "end": [42, 174, 192, 241, 298], "endpoint": 181, "eng": [159, 250], "engi": [159, 250], "engin": [159, 250], "engine": [42, 43, 44, 159, 168, 191, 192, 193, 197, 205, 206, 245, 250, 251, 252, 253], "enginen": 250, "engines": 42, "english": [14, 156, 225], "enhanced": 55, "enough": 42, "enqueue": 9, "enterprise": 31, "enter\u30ad\u30fc": 48, "entries": [41, 42, 43, 44, 45, 50, 110, 125, 126, 127, 128, 132, 134, 135, 156, 163, 173, 191, 192, 193, 224, 225, 275, 281, 310], "entry": [109, 110, 113, 119, 120, 121, 132, 135, 152, 156, 310], "entrykeys": 163, "env": 243, "environment": 21, "eoan": [41, 54], "eof": 175, "eol": [26, 41, 42, 43, 45, 52], "epel": [47, 52], "epoll": [41, 94, 158, 177, 298, 308, 312], "equivalent": 74, "er": 244, "ere": [44, 96], "eric": [183, 186], "ermine": [41, 54], "errbuf": 53, "errno": [49, 50, 302], "error": [44, 48, 49, 52, 58, 85, 95, 129, 130, 155, 156, 175, 177, 244, 247, 302, 308], "errors": 125, "error\u30bf\u30b0": 47, "errror": 244, "es": 277, "escalate": [22, 43, 44, 57, 182], "escape": 68, "escaped": 68, "estimate": 50, "estimated": [41, 51, 165], "etc": [25, 177, 281, 292], "etime": 174, "euc": [31, 48, 175, 277], "ev": 302, "evaluated": 154, "even": 42, "event": [159, 179, 180, 181, 250, 251, 253], "events": [180, 292], "ex": 168, "exact": [11, 111], "example": [42, 94, 156, 175, 231, 235, 257, 259, 305, 306, 307, 308, 310, 312, 315], "examples": [37, 42, 134], "excel": 243, "except": 281, "exclamation": 50, "exclude": [42, 47, 48, 49, 132, 134, 135, 137, 183], "exe": [12, 42, 43], "exec": 298, "executable": 175, "execute": [132, 134, 135, 156, 175, 181], "executed": [95, 312], "executes": 175, "execution": [94, 231, 235, 257, 259], "exist": [143, 245], "existent": [43, 111], "existing": [175, 181], "exists": [132, 134, 135, 137, 163], "exit": [84, 175], "expand": [43, 44], "expanded": 42, "expander": [41, 202, 203], "expansions": 42, "expect": 49, "expensive": 42, "experimental": 27, "expert": 42, "expired": 52, "explain": [50, 96], "exponent": 111, "export": [18, 41], "expr": [58, 68], "express": [47, 48], "expression": [50, 51, 53, 68, 156], "expressions": 177, "ext": 168, "extension": 197, "extracted": 68, "extracts": 68, "eye": 156, "f6": 25, "fa": 168, "face": 227, "facebook": [22, 47], "factor": [49, 156], "failed": [43, 45, 51, 52, 111, 115, 143, 308], "false": [12, 37, 41, 42, 43, 44, 45, 48, 49, 51, 53, 94, 109, 110, 111, 113, 114, 115, 117, 118, 119, 121, 126, 127, 128, 129, 130, 131, 135, 137, 140, 141, 142, 143, 152, 153, 155, 158, 163, 168, 170, 177, 183, 191, 192, 193, 195, 196, 203, 205, 210, 224, 225, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280, 282, 298, 305, 308, 312, 313], "family": [43, 53, 156], "fast": [41, 42, 43, 44, 95, 125, 132, 134, 135, 156, 168, 191, 192, 193, 194, 195, 196, 197, 205, 206, 219, 224, 225, 245, 310], "faster": 290, "favorite": 17, "favorited": 311, "favorites": 311, "fb": [231, 232, 233, 234, 235, 258, 259], "fbnteqr": 50, "fc": [231, 232, 233, 234, 235, 258, 259], "fd": 302, "feature": [17, 245], "features": [27, 41, 94, 158, 177, 298, 308, 312], "fedora": [18, 37, 39, 47, 48], "fg": 44, "fgets": 50, "file": [37, 95, 125, 175, 177, 296, 298], "filename": 298, "files": [27, 177], "filter": [37, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 58, 91, 110, 111, 119, 121, 183, 186, 188, 195, 196, 198, 201, 202, 203, 223, 225, 240, 244, 253, 299, 301, 306, 307, 311, 313, 315], "filtered": [41, 42, 51, 52, 53, 132, 134, 135, 156, 197, 286], "final": [231, 232, 233, 234, 235, 258, 259], "finalizes": 85, "find": 44, "finished": 153, "finnish": 260, "firefox": 17, "firewood": [47, 48], "first": [43, 44, 45, 85, 132, 134, 135, 156, 224, 225, 310, 311], "five": 308, "fix": [51, 55, 112, 114], "fixed": 47, "flag": [42, 43, 74], "flags": [34, 41, 42, 43, 44, 45, 50, 51, 54, 68, 74, 85, 108, 114, 123, 141, 155, 162, 164, 175, 176, 197, 254, 305, 306, 307, 308, 310, 311, 313], "flexible": 42, "float": [41, 42, 44, 47, 50, 51, 90, 96, 111, 132, 134, 135, 141, 142, 155, 156, 188, 197, 241, 246, 247, 305], "floating": 282, "floor": 156, "flower": 305, "fluent": 13, "flush": 124, "flushviewoffile": 50, "focal": [32, 41], "followee": 311, "follower": 311, "following": [27, 85, 175, 179, 181, 290], "fontaine": 39, "foo": 52, "food": [41, 44], "foods": [44, 276], "for": [8, 27, 42, 43, 47, 55, 64, 68, 81, 85, 95, 170, 175, 177, 179, 181, 188, 205, 206, 225, 274, 281, 282, 290, 296, 311], "force": [45, 50, 51, 53, 168, 173, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280], "foreground": 175, "fork": [12, 17, 18], "forks": 175, "form": [41, 44, 53, 54, 224, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259, 295, 298, 308], "format": [17, 27, 31, 41, 55, 64, 85, 96, 125, 241], "formula": 12, "fossa": [32, 41], "four": 308, "fraction": 111, "frank": [183, 186], "free": [37, 49, 108], "freebsd": [22, 50, 57], "frees": 85, "french": 260, "frenchmemos": 260, "frenchterms": 260, "freq": [180, 253], "frequency": [49, 159, 180, 245, 246, 247, 250, 251, 253], "fresh": 12, "friday": 212, "friends": 307, "from": [51, 55, 68, 85, 175, 198], "fromtable": 110, "fruit": 41, "fsf": 47, "ftb": 55, "ftp": 176, "fts": 197, "fu": 168, "fuku1": 53, "ful": 168, "full": [41, 42, 43, 44, 50, 141, 155, 168, 197, 205, 206, 244, 245, 272, 273, 302], "fulltext": [168, 191, 192, 193, 206], "fullwidth": [50, 53], "fumiyasu": 39, "func": [41, 53, 81, 85], "function": [50, 51, 55, 85, 95, 182, 283, 298], "functions": [41, 42, 43, 49, 50, 51, 52, 55, 85, 132, 134, 135, 156, 195, 197, 198, 208, 209, 211, 212, 219, 221, 222], "fuzzy": [22, 41, 44, 51, 57, 182], "ga": [44, 168, 176, 230], "gaeeyo": 41, "game": [42, 286], "garbage": [48, 108], "gb": [241, 303], "gc": 51, "gcc": [31, 39, 47, 48], "gd": 228, "gdb": 14, "gem": 12, "gemfile": 47, "gemini": 41, "generate": 85, "generated": [85, 179], "generates": [27, 179], "generator": [23, 87, 114, 141, 142, 155, 197], "generators": 27, "geo": [22, 36, 37, 39, 40, 41, 47, 48, 51, 57, 74, 182, 307, 311, 315], "geodetic": 282, "geoindex": 307, "geopoint": [36, 37, 41, 48, 51, 90, 141, 142, 155, 188, 189, 190, 305, 306, 307, 312, 315], "geopoint\u9593": 39, "geosite": 307, "german": 260, "get": [39, 47, 49, 165, 168, 178, 312], "getaddrinfo": 47, "getenv": 50, "getpoint": 45, "gets": 85, "gettext": [17, 18], "gguf": 227, "gh": [44, 45, 46], "ghz": 176, "gi": 168, "gib": [34, 281], "gib\u304f\u3089\u3044": 281, "git": [6, 7, 8, 12, 13, 17, 18], "github": [6, 7, 8, 12, 13, 17, 18, 19, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 96], "gitter": [2, 42, 50, 51], "gituub": 51, "glaser": 51, "glib": 48, "glossary": 21, "gmo\u30e1\u30c7\u30a3\u30a2": 49, "gnoonag": 156, "gnu": [3, 5, 8, 12, 18, 22, 23, 31, 39, 41, 42, 43, 44, 45, 52, 53, 54], "gnupg": 12, "go": [226, 290], "golow": 44, "golubchik": [50, 52], "gone": 307, "goo": [56, 224, 225], "good": [41, 42, 43, 44, 45, 123, 132, 134, 135, 156, 165, 195, 219, 224, 225, 226, 261], "google": [56, 156, 245, 246, 247, 252], "gorilla": [41, 42, 43], "goroo": 290, "gpg": 12, "gpl": [45, 55], "gps": 0, "gpu": 197, "gqtp": [0, 1, 3, 22, 24, 25, 28, 32, 45, 47, 48, 49, 50, 53, 100, 174, 175, 176, 289, 297, 312], "gr": [156, 168, 208], "graceful": 157, "grease": 305, "green": 27, "gregex": 48, "grep": 302, "grmdb": 173, "grn": [3, 22, 37, 38, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 59, 84, 85, 99, 100, 111, 115, 119, 121, 124, 133, 149, 150, 153, 156, 166, 167, 183, 185, 188, 189, 190, 196, 199, 204, 228, 243, 244, 302, 310], "grndb": [22, 41, 42, 49, 50, 51, 52, 53, 54, 57, 106, 143, 172], "grnline": 308, "grnslap": [22, 57, 172], "grntest": [13, 37, 39, 47, 51], "grnwrap": 308, "gro": [42, 205, 206, 208], "gronga": [243, 252], "gronnga": [41, 252], "gronoga": 177, "groo": 156, "grooga": 53, "groon": 44, "groonag": 156, "groong": [44, 237], "groonga": [1, 2, 10, 13, 14, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 59, 60, 61, 64, 81, 84, 85, 89, 91, 92, 93, 95, 96, 97, 99, 101, 102, 103, 106, 108, 109, 110, 111, 112, 113, 114, 118, 119, 120, 122, 123, 124, 125, 129, 130, 131, 132, 134, 135, 138, 144, 147, 151, 153, 155, 156, 157, 158, 159, 161, 162, 164, 166, 167, 168, 171, 172, 173, 174, 185, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 199, 202, 203, 204, 205, 206, 208, 209, 210, 219, 221, 223, 224, 225, 226, 227, 228, 229, 230, 237, 238, 239, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 260, 262, 264, 272, 273, 275, 281, 282, 289, 290, 291, 292, 295, 298, 299, 301, 302, 303, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "groongau": 273, "groovy": [41, 42, 43], "group": [41, 43, 306], "grroonga": 252, "gt": [44, 192, 193], "gted": 17, "gtihub": 39, "gui": 155, "gun": 41, "gzcat": 51, "gzip": [31, 47, 291], "h3": [45, 94, 158, 177, 298, 308, 312], "hack": 237, "halfwidth": [230, 231, 232, 233, 234, 235, 258, 259], "hana": 307, "hanako": 121, "handled": 177, "hard": 281, "hardy": 37, "has": [12, 55, 85, 95, 137, 179, 225, 245], "hash": [41, 42, 43, 53, 155, 254, 311], "hashida": [42, 43, 54], "hashidatks": 54, "hat": 31, "have": [64, 226], "haystack": 11, "hdd": [41, 111, 161, 176], "he": [156, 262, 264, 267, 268, 275], "head": [49, 174, 298], "header": [41, 42, 43, 45, 50, 74, 96, 107, 110, 111, 114, 118, 121, 123, 124, 125, 127, 129, 132, 133, 134, 136, 137, 138, 139, 140, 141, 143, 144, 145, 149, 150, 151, 152, 153, 154, 156, 157, 158, 160, 161, 163, 164, 166, 167, 168, 169, 170], "heavy": [231, 232, 233, 234, 235, 258, 259, 290], "hel": 275, "hello": [41, 42, 43, 44, 45, 96, 111, 123, 132, 134, 135, 156, 165, 224, 225, 226, 261, 262, 264, 267, 268, 272, 275, 277, 310], "help": [14, 17, 27, 39], "helpful": 245, "hendro": 48, "her": 44, "here": [18, 85, 175, 179, 181, 224], "hex": 307, "hey": [42, 156], "hh": [225, 228], "hi": 156, "hideki": 50, "higchi": [42, 43], "high": [110, 197], "highight": 191, "highlight": [22, 41, 44, 45, 49, 50, 51, 52, 53, 54, 57, 182, 275], "hills": 27, "hino": 48, "hippo": [42, 43], "hiragana": [44, 231, 232, 233, 234, 235], "hiroaki": 50, "hiroshi": [37, 39, 51], "hirotaka": 50, "hiroyuki": 50, "hirsute": [42, 43], "hits": 111, "hmm": 311, "ho": 277, "hoang": 45, "hobby": 228, "hoge": 185, "home": [12, 31, 45, 277], "homebrew": [22, 23, 39, 49, 51], "homepage": 176, "hook": 137, "horikoshi": 39, "horizontal": [231, 232, 233, 234, 235, 258, 259], "host": [176, 178, 180, 244, 298, 312], "hostname": [175, 177, 178], "hottolink": 55, "hotwagner": 54, "hour": [42, 134, 173], "hours": 173, "how": [22, 85, 133, 289], "html": [3, 12, 14, 22, 39, 41, 43, 44, 47, 48, 49, 51, 54, 57, 111, 177, 178, 182, 192, 193, 205, 206], "html\u30bf\u30b0": [111, 194], "http": [0, 1, 12, 22, 24, 25, 28, 32, 37, 39, 41, 43, 44, 47, 48, 49, 50, 51, 52, 54, 57, 91, 94, 122, 125, 153, 156, 157, 172, 174, 175, 176, 177, 180, 194, 195, 196, 219, 244, 253, 272, 273, 289, 290, 292, 293, 304, 305, 306, 307, 308, 310, 315], "httpd": [40, 47, 48, 49, 51], "httprewritemodule": 177, "https": [12, 13, 17, 21, 24, 25, 27, 28, 31, 33, 41, 43, 44, 54, 291, 302], "hub": 12, "hugging": 227, "hung": 41, "hye": 156, "hypehn": 156, "hyper": 156, "hyphen": [156, 231, 232, 233, 234, 235, 257, 258, 259], "ia": [299, 301], "ic": 277, "ichii": 39, "id": [0, 28, 37, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 58, 74, 89, 91, 95, 108, 110, 111, 114, 121, 122, 123, 134, 135, 137, 141, 142, 155, 156, 159, 162, 164, 170, 175, 180, 183, 186, 195, 196, 201, 224, 225, 226, 228, 229, 244, 250, 251, 253, 254, 260, 261, 276, 278, 301, 305, 306, 307, 308, 310, 312, 313, 314, 315], "identifier": 58, "ideograph": 53, "ideographic": 50, "idf": 49, "ids": 110, "idx": 44, "ieee": [111, 282], "if": [11, 41, 50, 64, 81, 84, 85, 95, 175, 177, 179, 181, 225, 290, 302], "ifexists": 44, "ignore": [42, 43, 45, 50, 261], "ignored": 47, "ii": [43, 44, 51, 53, 71, 96, 111, 244], "iii": 43, "iiii": 43, "il": [299, 301], "ill": 299, "illegal": 298, "image": 29, "immediate": [51, 157], "immediately": 42, "impish": [42, 43, 44], "implementation": 290, "implemented": [50, 55], "import": 12, "improper": 298, "in": [11, 14, 22, 28, 35, 42, 47, 49, 50, 51, 52, 57, 58, 64, 68, 74, 85, 95, 96, 97, 98, 99, 108, 110, 111, 112, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 146, 149, 150, 151, 152, 153, 155, 156, 157, 158, 160, 161, 163, 166, 167, 168, 170, 171, 173, 175, 181, 182, 184, 186, 187, 191, 192, 193, 197, 198, 203, 205, 206, 207, 208, 209, 211, 212, 219, 220, 221, 222, 224, 225, 227, 231, 232, 233, 234, 235, 237, 244, 246, 247, 248, 257, 258, 259, 277, 282, 283, 285, 286, 287, 288, 290, 311, 314], "inappropriate": 298, "include": [16, 42, 49, 53, 132, 134, 135, 137, 156, 180, 183, 231, 232, 233, 234, 235], "included": 95, "includes": 50, "incompatible": 298, "indent": 74, "index": [12, 22, 41, 42, 43, 44, 49, 50, 51, 52, 53, 54, 55, 57, 71, 92, 111, 112, 137, 183, 196, 205, 206, 224, 225, 276, 278, 281, 307, 310], "indexblog": 310, "indexes": [42, 155], "indices": 96, "indri": [42, 43, 44], "infinity": [41, 52], "inflected": [53, 274], "info": [27, 50, 51, 52, 111, 129, 130, 173, 175, 177, 228, 244, 247], "init": [31, 47, 49], "initial": [41, 43, 52, 54, 132, 134, 135, 156], "initialized": 85, "initializes": [84, 85], "innodb": 0, "input": [42, 43, 44, 45, 64, 95, 178, 298], "inspect": [50, 51, 52], "inspected": 74, "install": [12, 14, 18, 21, 24, 25, 27, 28, 30, 32, 47, 49, 85, 174, 176], "installed": 41, "instant": 42, "instantly": [42, 205, 206], "instead": [85, 109, 151, 175, 284], "int": [37, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 54, 61, 68, 71, 74, 81, 85, 90, 91, 110, 111, 114, 135, 141, 142, 155, 156, 159, 161, 164, 170, 180, 183, 184, 186, 188, 198, 202, 203, 204, 224, 225, 241, 245, 246, 247, 250, 251, 253, 301, 305, 306, 307, 308, 310, 311, 315], "intel": 176, "internal": 49, "internally": 64, "interpreter": 12, "interrupted": 298, "into": 42, "introduction": [122, 149, 150], "inv": 176, "invalid": [43, 44, 45, 85, 111, 124, 149, 155, 156, 298], "invalidmodescalar": 111, "invalidmodevector": 111, "inverted": [42, 205, 206], "io": [22, 41, 50, 51, 52, 53, 54, 55, 57, 92], "ip": [176, 180, 298, 312], "ipc": [27, 31, 125], "iptables": 292, "is": [17, 41, 42, 43, 44, 45, 47, 49, 50, 51, 53, 64, 68, 85, 95, 96, 99, 132, 134, 135, 149, 153, 156, 163, 165, 168, 175, 177, 179, 181, 191, 192, 193, 194, 195, 196, 197, 202, 203, 205, 206, 219, 224, 225, 228, 231, 234, 235, 241, 244, 245, 261, 272, 284, 290, 292, 298, 305, 308, 310, 312, 314], "iso": [42, 43, 173, 225], "issue": [19, 96, 156], "issues": 49, "it": [41, 42, 43, 44, 64, 68, 84, 85, 95, 125, 132, 134, 135, 156, 170, 175, 181, 224, 225, 226, 228, 245, 290, 307], "itagaki": 37, "italian": 260, "item": [41, 42, 159, 179, 180, 250, 251, 253, 254], "itemlogs": 135, "items": [41, 42, 156, 201], "its": [68, 85, 175], "iwai": [40, 47], "ja": [12, 17], "jacob": 50, "james": 313, "jammy": [32, 43, 44], "japan": [56, 121, 306, 312], "japanese": [156, 274], "japaneseentries": 156, "japaneseterms": 156, "jason": 313, "javascript": [12, 22, 177, 178, 304, 312], "je": 313, "jeff": 313, "jekyll": 12, "jellyfish": [32, 43, 44], "jemalloc": 49, "jennifer": 313, "jersey": 311, "jessie": [48, 49, 50, 53], "jira": 51, "jiro": 307, "jis": 240, "job": 176, "jobs": 176, "john": [121, 313], "josep": [42, 43, 54], "joseph": 313, "jp": 44, "jq": 308, "jquery": [37, 49], "json": [37, 39, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 64, 91, 97, 125, 159, 176, 177, 178, 241, 292, 298, 308], "jsonp": [39, 50, 180], "just": [179, 226, 311], "ka": 230, "kakesa": 50, "kamicup": 54, "kana": [159, 179, 180, 250, 251, 253], "kare": [231, 232, 233, 234, 235], "karmic": 14, "kashihara": 49, "katagiri": 48, "katakana": [230, 231, 232, 233, 234, 235, 258, 259], "kate": 27, "kato": 54, "kawada": 49, "kawaji": 47, "kazuhiro": [42, 43], "kb": 303, "kbytes": 176, "keep": 42, "keitaro": [42, 43], "ken": 307, "kenichi": [37, 39], "kernel": [166, 228], "key": [12, 34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 58, 74, 91, 94, 95, 110, 111, 112, 114, 121, 122, 123, 125, 132, 134, 135, 141, 142, 152, 155, 159, 163, 164, 165, 170, 175, 176, 177, 180, 183, 184, 186, 188, 194, 195, 196, 198, 201, 208, 209, 210, 212, 219, 221, 224, 225, 229, 230, 237, 240, 245, 250, 251, 253, 254, 261, 278, 281, 292, 298, 299, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "keys": [41, 43, 49, 50, 74, 177], "keyword": [41, 43, 44, 45, 47, 48, 54, 68, 156, 191, 192, 193, 202, 205, 206, 224, 245, 246, 247, 275], "keywords": [68, 276, 278], "kib": [50, 281], "kinjirou": 307, "kiske": 47, "kk": 244, "klose": 50, "km": 311, "ko": 55, "koi": [31, 47, 175], "korea": 306, "kqueue": [41, 94, 158, 177, 298, 308, 312], "kuriyama": 49, "kwic": [205, 206], "kytea": [31, 47, 48, 53, 168], "label": [43, 44, 50, 51, 52, 110, 201], "labeledarguments": 52, "lacked": 302, "land": 41, "landmarks": 41, "langasek": 51, "language": [17, 18, 22, 57, 182, 227], "languages": 42, "large": 42, "larger": 181, "largetext": 254, "last": [41, 47, 180, 311], "lat": 176, "latency": 176, "latin": [31, 45, 47, 53, 175, 231, 235], "latin1": 47, "latinovic": 51, "latitude": 74, "launch": 181, "launchpad": [12, 32, 49], "layout": 12, "lc": [17, 18], "ld": [262, 264, 275], "learn": 181, "learned": 181, "length": [51, 85], "lenny": 39, "leo": 41, "less": [51, 244], "let": 226, "letter": [45, 53, 230, 231, 232, 233, 234, 235, 258, 259], "level": [85, 111, 123, 130, 175, 177, 181, 228, 298], "levels": 177, "lexicon": [42, 43, 44, 45, 50, 53, 122, 152, 161, 176, 202, 203, 210, 226, 236, 310], "lf": 174, "lgpl": 55, "li": [42, 45, 277, 299, 301], "liang": [43, 44], "lib": [37, 48, 111, 115, 118, 132, 134, 135, 137, 143, 144, 145, 151, 156, 163, 302], "libarrow": 31, "libedit": [31, 36, 37, 39, 45, 47, 50, 54], "libevent": 31, "libgcc": 49, "libgroonga": [20, 166], "libmecab": 12, "libnginx": 44, "libra": 41, "libraries": [42, 245, 290], "library": [42, 64, 290], "libstemmer": 49, "libtool": [6, 50], "libwinpthread": 49, "lic": 195, "license": 55, "light": [231, 232, 233, 234, 235, 258, 259, 290], "lighthouse": 41, "like": [43, 290], "limit": [39, 41, 42, 43, 44, 45, 52, 53, 54, 119, 159, 177, 228, 253, 306, 307, 308], "line": [21, 95, 290], "lines": 14, "link": [305, 306, 312], "links": [305, 306, 312], "lintian": 41, "linux": [22, 23, 27, 29, 31, 41, 42, 43, 44, 52, 54, 57, 94, 158, 176, 177, 298, 308, 312], "lion": 47, "lisp": 52, "list": [12, 27, 179, 181], "listen": [47, 175, 177, 292, 302], "lists": 49, "literal": 44, "ll": [168, 262, 264, 267, 268, 275, 299, 301], "llama": [94, 158, 177, 197, 227, 298, 308, 312], "lldb": 6, "llo": 275, "llt": 168, "lo": [262, 264, 267, 268, 275], "load": [22, 36, 37, 39, 40, 41, 42, 43, 44, 47, 48, 50, 51, 52, 53, 54, 57, 58, 91, 92, 93, 94, 106, 109, 110, 111, 114, 121, 122, 123, 124, 132, 134, 137, 141, 149, 150, 159, 164, 165, 170, 175, 177, 178, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 237, 240, 244, 245, 246, 247, 248, 250, 251, 253, 260, 261, 275, 276, 278, 282, 286, 301, 305, 306, 307, 308, 310, 311, 313, 314, 315], "loaded": [51, 125], "loadedlogs": [41, 54], "loading": 51, "loads": 181, "lobster": [32, 44], "local": 175, "locale": [17, 53], "localeoutput": 53, "localhost": [12, 39, 125, 153, 174, 175, 176, 177, 180, 241, 292], "localstatedir": [31, 37], "localtime": 42, "location": [21, 48, 51, 53, 95, 175, 177, 292, 305, 306, 307, 311, 312, 315], "lock": [22, 49, 50, 52, 53, 57, 92, 109], "locked": 85, "locks": [42, 85, 205, 206], "log": [12, 22, 31, 43, 47, 50, 51, 52, 54, 57, 85, 92, 110, 111, 137, 173, 175, 177, 180, 228], "logaling": 21, "logical": [22, 41, 43, 44, 45, 50, 51, 52, 53, 54, 57, 92, 124, 158, 191, 192, 193, 248, 283], "logrotate": [47, 49], "logs": [41, 42, 43, 96, 110, 132, 134, 135, 136, 137, 140, 143, 152, 156, 161, 180, 181, 244, 246, 247, 248], "logyyyymmddhhmmss": 180, "long": [50, 71, 153], "longer": 55, "longitude": 74, "longitudexlatitude": 48, "longtext": [41, 45, 58, 90, 111, 141, 142, 155, 237], "loose": [42, 44, 45, 53, 201], "looseitems": 201, "love": 310, "lru": 107, "lsb": 28, "lt": [168, 191, 192, 193, 206], "lte": 168, "lts": [21, 32, 42, 43, 45], "lucid": [37, 48], "lunar": [32, 44], "lz": [31, 41, 52, 53, 141, 155], "lz4": [31, 41, 49, 51, 52, 94, 111, 155, 158, 177, 298, 308, 312], "lzo": [39, 47, 49, 298], "mac": [37, 47], "machine": 175, "macos": [18, 22, 23, 49, 51], "macports": [22, 23, 39], "magazine": 156, "mail": 176, "main": [44, 81, 166], "maintenait": 260, "maintenant": 260, "maintenir": 260, "make": [12, 14, 17, 49, 85, 174], "makecache": 47, "makefiles": 27, "malloc": 49, "man": [36, 42, 45, 51, 183], "management": [21, 42, 205, 206], "manager": [177, 292], "managers": 45, "mantic": [44, 45], "many": [42, 179, 245, 290], "map": 39, "mariadb": [48, 49, 51], "mark": [50, 191, 193, 230, 231, 232, 233, 234, 235, 258, 259], "markdown": 18, "market": 42, "marks": 27, "markup": 16, "markus": 47, "marshal": 45, "marverick": 37, "masaharu": [40, 47], "masahiro": 37, "masanori": 51, "masatoshi": [50, 53], "massachusetts": 311, "master": [12, 44, 177], "masuda": [42, 43], "match": [22, 31, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 91, 111, 119, 171, 177, 186, 191, 192, 193, 205, 206, 224, 226, 228, 245, 246, 247, 260, 261, 275, 276, 278, 299, 301, 304, 308, 311, 314], "math": [22, 52, 57, 182], "matsuu": 37, "matthias": 50, "maverick": 39, "max": [41, 42, 43, 44, 47, 49, 51, 52, 53, 54, 81, 94, 97, 105, 108, 118, 141, 156, 158, 174, 176, 177, 195, 204, 225, 241, 246, 281, 298, 308, 312], "maxos": 54, "may": [27, 95, 180], "mb": [47, 52], "mbytes": 176, "md": [12, 18], "mdev": 51, "me": [148, 160, 277], "means": [64, 85, 177, 228], "mecab": [0, 12, 24, 25, 28, 30, 31, 32, 36, 37, 39, 41, 45, 47, 48, 49, 50, 51, 53, 55, 94, 103, 158, 177, 274, 298, 308, 312], "meerkat": 39, "memcache": 295, "memcached": [0, 1, 14, 22, 50, 51, 289, 312], "memcpy": 53, "memo": [42, 43, 45, 49, 202, 203, 245], "memory": [22, 27, 43, 44, 85, 94, 158, 177, 244, 298, 300, 308, 312], "memos": [41, 42, 43, 44, 45, 50, 142, 155, 195, 196, 197, 208, 209, 212, 219, 221, 245, 260, 261], "memset": 50, "mercurial": 12, "merging": 42, "message": [41, 51, 53, 85, 94, 95, 125, 130, 158, 175, 177, 244, 246, 247, 298, 308, 310, 312], "messagepack": [31, 39, 40, 41, 44, 47, 50, 52, 54, 64, 241, 292, 298], "messages": 48, "metadata": [41, 42, 44, 47, 96, 231, 232, 233, 234, 235, 274], "micro": 311, "microsoft": [8, 27, 33, 42, 50], "middle": [231, 232, 233, 234, 235, 258, 259], "migrated": [43, 44, 132, 134, 135, 156, 224, 225], "mike": 121, "milk": 42, "mime": [50, 292], "min": [41, 44, 47, 49, 52, 53, 156, 173, 174, 176], "minagawa": 48, "mingw": [12, 39, 42, 43, 44, 54], "minimum": 85, "minotaur": [44, 45], "mins": 173, "minus": [231, 232, 233, 234, 235, 258, 259], "minute": [42, 173], "minutes": 173, "mips": 51, "mismatch": 208, "missing": [43, 44, 111, 123, 155], "missingmodescalar": 111, "missingmodescalarreferred": 111, "missingmodevector": 111, "missingmodevectorreferred": 111, "missings": 123, "mistral": 197, "mitsuhiro": 37, "mix": 53, "miyashita": 51, "mizuhara": 50, "mkdir": [12, 122], "mkostemp": 49, "mktime": 50, "ml": 10, "mlock": 37, "mm": [225, 228], "mmap": [22, 43, 44, 48, 300], "mnt": 29, "mode": [49, 50, 51, 55, 175, 197, 277], "models": 227, "moden": 195, "modern": 311, "modified": 44, "modifier": [231, 232, 233, 234, 235, 258, 259], "module": 177, "moero": 307, "monday": 212, "money": 307, "monkey": 305, "month": [173, 307], "months": 173, "montywi": 40, "mooz": 39, "more": [42, 85, 175, 181, 205, 206, 224, 245, 298], "moritapo": 307, "moritars": 310, "morning": 226, "moronga": 156, "mountain": 41, "mo\u30d5\u30a1\u30a4\u30eb": 17, "mpaa": 183, "mrb": 51, "mrooga": 43, "mroonag": 156, "mroonaga": 156, "mroonga": [12, 22, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 91, 122, 125, 132, 134, 135, 156, 191, 192, 193, 194, 195, 196, 202, 203, 210, 219, 224, 225, 243, 245, 248, 310], "mruby": [6, 27, 41, 48, 49, 50, 51, 53, 54, 94, 154, 158, 177, 248, 298, 308, 312], "msdn": 302, "msg": [9, 50], "msgpack": [44, 50, 51, 52, 53, 241, 298], "msgpackc": 44, "msvc": 50, "msyql": 91, "mte": 55, "multi": [27, 42], "multibyte": 44, "multiple": 290, "munin": [28, 31, 32, 36, 39, 43, 44, 47], "murata": 52, "museum": 311, "music": [228, 307], "must": [42, 68, 85, 118, 181], "mutex": [48, 81, 85], "mv": 131, "mxcl": 12, "my": [43, 44, 45, 132, 134, 135, 156, 224, 225, 310], "myamanishi3": 52, "myisam": 0, "mysql": [0, 24, 25, 28, 32, 41, 42, 43, 44, 45, 49, 50, 55, 91, 138, 156, 191, 192, 193, 205, 206, 243, 245], "n1": 224, "naist": 274, "nakamura": 50, "namae": [231, 232, 233, 234, 235], "name": [41, 42, 43, 44, 45, 52, 54, 68, 85, 95, 96, 108, 113, 119, 121, 136, 137, 139, 142, 144, 145, 155, 162, 169, 175, 177, 179, 181, 197, 202, 203, 210, 211, 225, 244, 276, 278, 305, 306, 307, 308, 310, 311, 312, 313, 315], "names": [44, 45, 110, 111, 142], "nan": [41, 52], "nanoseconds": 228, "naoa": [41, 42, 43, 44], "naoina": [47, 48], "nargs": 68, "narwhal": 39, "natanael": 50, "nath": 45, "natty": 39, "ne": 168, "near": 225, "neartokens": 224, "neartokenterms": 224, "need": [64, 68, 170, 175], "needed": 177, "negative": 85, "neologism": 274, "nested": 48, "nesteddrilldownmemo": 156, "nesteddrilldownmemos": 156, "nesteddrilldowntags": 156, "net": 306, "netbsd": [37, 48], "netinet": 50, "network": 298, "never": 133, "new": [12, 58, 81, 85, 110, 156, 175, 311], "newark": 311, "newids": 110, "newly": [42, 170, 205, 206], "newnames": 110, "news": [12, 35], "next": [42, 54, 141], "nfkc": [41, 44, 45, 53, 54, 94, 158, 177, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259, 298, 308, 312], "nfs": 31, "nfthreads": 81, "ng": [45, 168, 209], "nga": [42, 156, 208], "ngho": 45, "nginx": [41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 291, 296], "nginxhttpstubstatusmodule": 49, "nginx\u3089\u3057\u3044": 49, "ngo": [45, 231, 235], "ngoan": [45, 231, 235], "ngram": [53, 275], "ngroonga": 42, "nguyen": 41, "ngx": 177, "ni": [201, 240], "nice": 226, "night": [226, 314], "niho": 201, "nihon": [201, 250], "niku": 49, "nil": 74, "nine": 308, "ninja": [18, 27], "nippon": 250, "nise": 49, "no": [36, 41, 42, 44, 48, 50, 53, 55, 122, 124, 125, 132, 134, 135, 143, 149, 156, 159, 244, 254, 298, 302], "noble": 45, "node": 12, "nodes": 74, "nogpgcheck": 47, "none": [31, 43, 53, 138, 165, 168, 175, 177, 179, 298, 310], "noneexpantiondrilldownmemos": 156, "nonexistent": [43, 44, 111, 115, 116, 132, 134, 135, 156], "norm": 45, "normaize": 43, "normalizations": [42, 43, 44, 45, 237], "normalizationsindex": 45, "normalize": [22, 42, 43, 44, 49, 52, 57, 92, 139, 230, 231, 232, 233, 234, 235, 237, 244], "normalizeauto": 191, "normalized": [42, 43, 44, 45, 138, 231, 232, 233, 234, 235], "normalizer": [22, 41, 42, 43, 44, 45, 49, 57, 74, 92, 111, 123, 132, 134, 135, 142, 152, 156, 162, 163, 164, 165, 180, 191, 193, 201, 202, 203, 205, 206, 224, 225, 226, 229, 230, 236, 240, 244, 245, 246, 247, 255, 260, 261, 275, 281, 301, 308, 310, 311, 314], "normalizerauto": [41, 42, 43, 44, 45, 50, 53, 111, 132, 134, 135, 138, 139, 142, 152, 155, 156, 161, 163, 165, 168, 180, 191, 192, 193, 201, 202, 203, 205, 206, 224, 225, 226, 229, 236, 240, 244, 245, 246, 247, 255, 260, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 275, 277, 279, 280, 281, 301, 308, 310, 311, 314], "normalizerhtml": [43, 44, 139, 155], "normalizernfkc": [41, 42, 43, 44, 53, 54, 123, 139, 155, 156, 203, 224, 229, 257, 258, 259, 275], "normalizers": [42, 43, 44, 45, 103, 139], "normalizertable": [42, 43, 44, 45, 139, 155, 191, 229], "normallexicon": 230, "normally": [64, 175], "norwegian": 260, "not": [27, 42, 47, 50, 85, 95, 137, 170, 298, 302], "note": [41, 85], "notes": 41, "nothing": [64, 221], "notice": [42, 45, 50, 111, 123, 129, 130, 166, 175, 177, 246, 247], "notrelated": 137, "now": [22, 52, 57, 182, 311], "np": [41, 42, 44, 224, 225], "np1": [44, 225], "np2": 225, "npp": [42, 44, 45, 224, 225], "nroonga": [21, 202, 203, 310], "nsis": 12, "nsubrecs": [41, 43, 44, 135, 156, 306, 307, 311], "nt": [270, 271], "ntdll": 166, "nterms": 108, "nthe": 42, "ntt": 56, "ntwaitforworkviaworkerfactory": 166, "nul": [39, 85, 273], "null": [11, 39, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 54, 61, 68, 81, 85, 111, 134, 141, 142, 155, 156, 164, 184, 191, 192, 193, 194, 205, 206, 208, 209, 211, 212, 219, 221, 231, 232, 233, 234, 235, 237, 275, 302], "numbat": 45, "number": [22, 43, 45, 51, 57, 85, 95, 108, 118, 156, 175, 176, 182, 186, 225, 281], "numbers": [42, 50], "numeric": 44, "ny": 311, "obata": [37, 53], "obj": [41, 68, 74, 108], "object": [22, 42, 47, 50, 51, 52, 54, 57, 85, 92, 111, 124, 137, 155, 225, 298], "objname": [109, 120], "obtained": 85, "occurred": 95, "occurs": 43, "ocelot": [39, 48], "ocr": 42, "october": 49, "of": [41, 42, 47, 52, 55, 85, 95, 108, 118, 159, 175, 177, 179, 180, 181, 191, 192, 193, 205, 206, 210, 224, 281, 311], "off": [27, 49, 177], "official": 12, "offset": [44, 45, 52, 68, 85, 119, 159, 308], "offsets": [43, 44], "offsetted": 41, "ohkubo": 51, "ok": 121, "okapi": [41, 245, 247], "oknj": 54, "old": [12, 85], "om": 277, "omitted": [43, 95, 241], "omitting": 42, "on": [17, 27, 42, 43, 44, 55, 64, 85, 95, 168, 177, 191, 192, 193, 205, 206, 292, 302], "one": [42, 51, 53, 85, 95, 175, 181, 205, 206, 224, 290], "oneiric": [39, 48], "onga": [205, 206], "ongaeshi": [37, 47, 48, 50], "onigmo": [41, 45, 49, 50, 51, 94, 158, 177, 244, 298, 308, 312], "oniguruma": 50, "only": [43, 50, 64, 85, 175, 177], "onp": [41, 42, 44, 224, 225], "onpp": [42, 44, 224, 225], "oo": [168, 208, 254], "oon": [42, 208, 209], "ooo": 254, "op": [41, 44, 68], "opaque": 298, "open": [18, 143, 205, 308], "openbsd": [50, 51], "opened": [142, 228], "operation": [137, 298, 302], "operator": [44, 50, 52, 231, 232, 233, 234, 235, 258, 259], "ophiuchus": 41, "option": [42, 44, 53, 95, 175, 181, 191, 193, 205], "optional": [27, 95], "options": [41, 42, 45, 50, 155, 173, 174, 175, 176, 177, 178, 179, 180, 181, 202, 203, 248, 290], "or": [27, 41, 42, 43, 44, 49, 64, 85, 95, 96, 132, 153, 156, 170, 175, 193, 196, 202, 203, 224, 243, 247, 262, 264, 275, 298, 302, 314, 315], "oracle": [39, 44], "orangain": 48, "orange": [211, 276, 278], "order": [41, 54], "ordered": 96, "org": [306, 312], "origin": [17, 18], "original": [64, 122, 135, 156, 313], "orl": 275, "os": [7, 8, 12, 26, 31, 37, 42, 47, 48, 49, 50, 94, 118, 124, 158, 176, 177, 298, 308, 312], "osdn": [12, 50], "os\u4e0a": 24, "other": [42, 50, 85, 175, 181], "others": [42, 43, 231, 232, 233, 234, 235], "otherwise": 85, "out": [52, 176], "output": [37, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 64, 91, 96, 97, 110, 111, 119, 132, 159, 178, 182, 184, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 225, 228, 241, 245, 246, 247, 275, 286, 301, 305, 307, 308, 310, 311, 315], "outputs": 181, "outputting": 64, "overcommit": 281, "owned": 68, "owner": 177, "package": [12, 22, 23], "packages": [12, 17, 24, 25, 27, 28, 31, 33], "pai": 51, "pair": [159, 179, 180, 250, 251, 253], "pangolin": 47, "parameter": [170, 175, 228], "parent": [135, 156], "parenthesized": 53, "parker": 50, "parse": 58, "partial": 11, "pass": 177, "passive": 42, "pat": [45, 51, 254], "patch": 55, "path": [18, 27, 29, 45, 53, 85, 114, 142, 151, 162, 164, 175, 176, 177, 292], "paths": 161, "patprefix": 313, "patricia": 155, "patsuffix": 313, "pattern": [53, 224, 225, 276], "pcre": [47, 52], "pen": [41, 42, 44, 96, 231, 234, 235, 272], "pens": 44, "pentium": 176, "people": 111, "performance": [42, 197, 205, 206, 290], "performed": 302, "period": 35, "permission": 298, "permitted": 137, "persistent": 112, "pg": 183, "pgp\u30ad\u30fc": 54, "pgroonga": [12, 41, 42, 43, 45, 50, 54, 122, 156, 197, 224, 225, 228, 237, 245, 248], "php": [47, 290], "phrase": [41, 44, 224, 225], "physical": 108, "pid": [31, 36, 50, 51, 52, 53, 175], "pie": [276, 278], "pies": 278, "pikonyan": 307, "pip": [12, 18], "pisces": 41, "pkg": [37, 50], "pkgrel": 12, "pkgver": 12, "plant": 44, "plants": 44, "platform": 27, "platforms": 85, "play": 314, "player": 110, "players": [110, 164], "please": 17, "plugin": [22, 39, 41, 42, 43, 45, 49, 50, 53, 54, 57, 59, 92, 103, 122, 124, 132, 133, 134, 135, 136, 137, 142, 151, 154, 156, 165, 180, 195, 197, 198, 208, 209, 211, 212, 219, 221, 222, 243, 255, 260, 261], "plugins": [151, 281], "po": [17, 51], "poedit": 17, "poeple": 111, "point": [40, 41, 74, 114, 153, 189, 190, 299], "pointed": 85, "pointer": 85, "points": [41, 42, 286], "poll": [41, 94, 158, 177, 298, 308, 312], "popular": 156, "port": [30, 175, 176, 180, 295, 298, 312], "porting": 55, "ports": 29, "portuguese": 260, "pos": 74, "position": [45, 85, 141, 155, 168, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280], "posix": [50, 225], "post": [12, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 125, 156, 178, 180, 224, 225, 291, 311], "posted": 311, "postgresql": [0, 42, 96, 197, 205, 206, 248], "posting": 41, "posts": 111, "post\u30e1\u30bd\u30c3\u30c9": 48, "poti": [42, 43], "power": [43, 44], "powersetdrilldownmemos": [43, 156], "poyonga": 290, "ppa": [22, 23, 49], "pre": [43, 44, 55, 180], "precise": 47, "predicate": 53, "prefix": [6, 14, 18, 22, 31, 39, 41, 50, 51, 57, 111, 159, 182, 205, 225, 240], "preset": [12, 27], "presets": 27, "price": [41, 42, 132, 134, 135, 211, 305], "printf": [53, 74], "priority": 156, "proc": [50, 52, 85, 118], "process": [45, 53, 175], "processed": [41, 42, 149, 228], "processes": 175, "processid": 54, "processid\u304b": 54, "product": 42, "products": 42, "program": [27, 181], "progress": [45, 53], "project": [27, 225], "projects": 42, "prolonged": [231, 232, 233, 234, 235, 258, 259], "proonga": 290, "properties": 228, "protocol": [0, 174, 175, 178, 241, 290, 292, 295, 312], "provided": 42, "pthread": [39, 48], "ptr": 85, "pub": 12, "published": 12, "pull": [12, 18, 29], "purchases": 42, "push": [12, 17, 18], "put": 224, "python": [12, 18, 290], "q1": 203, "q2": 203, "qps": [174, 176], "quantal": 47, "quantity": 41, "queries": [42, 176, 205, 206], "query": [0, 11, 22, 27, 31, 38, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 68, 91, 92, 111, 119, 132, 144, 145, 151, 159, 177, 179, 180, 181, 182, 191, 192, 193, 205, 206, 223, 224, 225, 226, 243, 244, 245, 246, 247, 250, 251, 253, 260, 261, 275, 276, 278, 290, 299, 301, 305, 307, 308, 310, 311, 312, 313, 314, 315], "queryexpandertsv": [22, 41, 44, 47, 48, 57, 144, 145, 151, 242], "question": 50, "quetzal": 47, "queue": [9, 302], "quiet": 298, "quit": [12, 22, 52, 53, 57, 92, 175, 228, 298], "quiz": 307, "quorum": 52, "quote": 225, "raccoon": 307, "radimrehurek": 41, "radious": 189, "rakutan": 310, "raltime": 253, "ram": 176, "rand": [22, 52, 57, 182, 315], "range": [22, 49, 50, 52, 57, 92, 111, 114, 134, 162, 164, 298], "ranguba": [44, 49, 52, 91], "rank": [42, 286], "rapidjson": [41, 54, 94, 158, 177, 298, 308, 312], "raring": [48, 49], "raspberry": [276, 278], "rather": 290, "raw": [21, 141], "rc": [43, 45, 52, 84, 100, 124, 168, 228], "rch": 168, "rd": [42, 43, 299, 301], "rdbms": [0, 43, 44, 50, 197], "rdiscount": 12, "read": [42, 205, 206, 298], "reading": [53, 231, 232, 233, 234, 235, 274], "readings": [201, 240], "readme": [44, 48, 227], "reads": 181, "real": [42, 58, 205, 206], "realloc": [37, 52, 54], "really": [41, 43, 44, 132, 134, 135, 156, 224, 225], "realtime": [159, 253], "rebase": 12, "receive": 180, "received": 175, "receiver": 181, "recently": 107, "recommend": 290, "record": [22, 42, 50, 51, 52, 53, 57, 96, 134, 135, 156, 188, 283, 305, 308, 312], "records": [41, 42, 43, 45, 50, 96, 134, 156, 228], "recover": [41, 42, 53, 106], "rect": 188, "rectangle": 47, "recursive": [6, 7, 8, 12, 13, 18], "red": 31, "redcloth": 12, "redhat": 39, "redmine": 49, "reference": [22, 41, 42, 43, 44, 48, 50, 53, 57, 92, 94, 137, 155, 156, 158, 163, 177, 298, 308, 312], "referenced": 124, "referencedbycolumn": 163, "referencedbytable": 163, "referencedtable": 163, "references": [137, 163], "referencetable": 163, "referred": [41, 149], "regexplexicon": [152, 244], "register": [22, 48, 50, 57, 92, 138, 144, 168, 311], "registered": [42, 85, 151, 205, 206], "regular": [177, 244], "reindex": [22, 50, 51, 52, 53, 57, 92], "related": 42, "release": [27, 43], "released": [12, 41, 55, 149], "releases": 84, "remained": [228, 244], "remains": [54, 123], "remote": [12, 175, 177], "remove": [42, 43, 44, 53, 54, 137, 138, 143, 163], "removed": 151, "reopen": 131, "rep": 176, "repl": 45, "replaced": [179, 181], "replication": 245, "replied": 311, "replies": 310, "reply": 310, "repoforge": 47, "report": [42, 43, 44, 45, 53], "reported": [43, 44, 45], "reports": [44, 85], "representative": [43, 44], "request": [12, 18, 22, 42, 43, 44, 45, 48, 49, 50, 51, 52, 57, 92, 98, 99, 125, 177], "required": [21, 177, 292], "res": 176, "resizes": 85, "resolve": 228, "resource": [45, 298], "resources": 84, "rest": [74, 85], "restart": 296, "restarting": 296, "restructuredtext": 18, "result": [11, 41, 42, 44, 181, 188, 205, 206, 241, 298, 310], "results": [42, 47, 205, 206], "retry": 298, "return": [42, 43, 44, 53, 81, 84, 95, 96, 125, 302], "returned": 85, "returns": 85, "reverse": [12, 177], "rewrited": 55, "rf": [12, 177], "rhel": 44, "rid": [71, 74], "ringtail": [48, 49], "rl": [262, 264, 275], "rld": 275, "rlimit": [48, 228], "rm": [12, 177], "ro": 168, "roles": 111, "romanian": 260, "roon": 208, "roonga": [219, 224, 225], "root": [48, 50, 177, 312], "rose": 305, "row": [42, 205, 206], "rpm": [12, 24, 25, 37, 39, 43, 44, 47, 48, 49], "rroonga": [12, 21, 41, 42, 43, 44, 45, 48, 49, 50, 61, 156, 196, 202, 203, 210, 221, 223, 224, 225, 245, 310], "rst": 18, "rtluserthreadstart": 166, "ruby": [0, 6, 8, 12, 21, 22, 27, 41, 42, 43, 47, 48, 49, 50, 52, 55, 57, 91, 92, 156, 191, 192, 193, 208, 221, 223, 244, 245, 290], "rubygems": 47, "rubyinstaller": 8, "run": [14, 22, 29, 175, 177, 289], "running": [153, 175], "runs": [175, 181], "runtime": 42, "russian": 260, "ryo": 52, "sa": [42, 159, 251], "sa\"": 42, "sae": [159, 251], "saer": [159, 251], "saerc": [159, 251], "saerch": [159, 251], "sagittarius": 41, "sako": 50, "salamander": [48, 49], "sales": 211, "same": [48, 290], "sample": [176, 181, 224], "sanz": [42, 43, 54], "sato": 45, "satoh": 39, "satoshi": 52, "satouyuzh": 53, "saturday": 212, "saucy": [48, 49], "save": 12, "say": [224, 225, 310], "scalar": [43, 155], "scan": 14, "schema": [22, 41, 43, 44, 50, 52, 53, 57, 92, 96, 142, 179, 224], "scope": 50, "score": [11, 41, 42, 43, 44, 45, 48, 50, 53, 91, 96, 114, 132, 134, 135, 156, 159, 164, 170, 188, 202, 203, 225, 245, 246, 247, 250, 251, 253, 286, 301, 307, 308, 310, 311, 315], "score1": 11, "score2": 11, "scorer": [22, 42, 50, 53, 119, 124, 188, 198, 223, 225, 245, 304, 307], "scorpio": 41, "script": [49, 51, 156, 176, 185, 189, 190, 199, 204], "scrt": 166, "se": [168, 250], "sea": [168, 250], "sear": 250, "searc": 250, "search": [39, 42, 43, 44, 47, 111, 156, 159, 168, 183, 191, 192, 193, 196, 197, 205, 206, 224, 225, 243, 245, 250, 251, 252, 253], "sebastian": 49, "sec": 173, "second": 173, "seconds": 173, "secs": 173, "section": [71, 85, 141, 155, 175], "sed": [39, 47, 50], "see": [42, 85, 111, 175, 228, 293, 294], "segment": [51, 108], "segments": 108, "segv": [36, 42, 48], "seki": 53, "select": [22, 36, 37, 38, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 61, 91, 92, 93, 94, 96, 98, 99, 107, 110, 111, 114, 121, 124, 132, 134, 148, 149, 150, 153, 158, 164, 170, 175, 177, 182, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 226, 228, 229, 243, 244, 245, 246, 247, 253, 260, 261, 275, 276, 278, 283, 286, 290, 299, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "selector": 119, "self": 176, "sen": 55, "senboku": 48, "send": [43, 180, 290], "sender": 181, "senna": [22, 35, 43, 44, 132, 134, 135, 156, 224, 225, 243], "sentense": 50, "separated": 64, "separator": [231, 232, 233, 234, 235, 258, 259], "sequence": [44, 96, 159, 179, 180, 250, 251, 253], "sequential": [42, 44, 183, 191, 193, 196], "serach": 251, "serch": [159, 251], "sergei": [50, 52], "sergey": 49, "serial": 110, "serihiro": 47, "serve": 12, "server": [41, 47, 49, 50, 137, 175, 177, 195, 196, 219, 290, 292, 296, 307], "servers": 137, "service": [50, 251, 296], "services": 29, "session": 290, "set": [42, 45, 137, 176], "setting": 296, "settlements": 42, "setup": [18, 27], "seven": 308, "sh": [12, 21], "sha": 12, "shard": [41, 136], "sharding": [41, 50, 132, 133, 134, 135, 136, 137, 248], "share": [31, 45, 197, 227], "shark": 44, "sharks": 44, "shell": 175, "shibanao": [42, 43], "shibuya": 37, "shidara": 39, "shift": [31, 277], "shimada": 37, "shimamura": [50, 53, 54], "shimoda": 37, "shimomura": 47, "shinonon": [43, 44], "shinya": 47, "shiro": 54, "sho": 48, "shoes": 42, "shop": [42, 198], "shopping": 226, "shops": [198, 299], "short": 28, "shorttext": [37, 39, 41, 42, 43, 44, 45, 49, 51, 52, 53, 58, 74, 90, 91, 95, 96, 110, 111, 112, 114, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 141, 142, 143, 149, 150, 152, 155, 156, 159, 161, 162, 163, 164, 165, 170, 175, 176, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 236, 237, 240, 244, 245, 246, 247, 250, 251, 253, 254, 255, 260, 261, 275, 276, 278, 281, 286, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "should": [85, 170, 228], "show": [53, 224, 225], "shows": [42, 64], "shutdown": [22, 37, 41, 51, 52, 54, 57, 92, 124, 175, 177, 244, 292, 298], "sid": [12, 39, 49, 74, 108], "sigabrt": 44, "sigcont": 48, "sigint": 39, "sign": [12, 111, 231, 232, 233, 234, 235, 258, 259], "signing": 12, "sigstop": 48, "sigusr": 39, "silent": 21, "simd": 45, "simdjson": [45, 94, 158, 177, 298, 308, 312], "similar": [47, 159, 175], "similarity": 197, "since": [151, 170, 173], "sis": 39, "site": [152, 305, 306, 308, 312, 315], "sitecountry": [306, 312], "sitedomain": [306, 312], "sites": [122, 126, 127, 128], "six": 308, "size": [41, 43, 74, 85, 108, 141, 142, 155, 303], "sizeof": [50, 68], "sjis": [31, 55, 175], "skip": 205, "slash": 225, "sleepy": 226, "slice": 52, "slices": [41, 42, 51, 52, 54], "small": [45, 53, 231, 235], "smaller": 42, "smith": 51, "snake": 50, "sneakers": 42, "snippet": [22, 41, 42, 43, 44, 47, 48, 50, 51, 52, 54, 55, 57, 134, 156, 182], "snippet3": 206, "so": 205, "soccer": 307, "socket": [298, 302], "socre": 41, "soerr": 302, "soft": 281, "software": 32, "solaris": [7, 8, 39, 47, 50], "solr": 225, "some": [42, 50, 53, 84, 179], "song": 54, "sort": [12, 41, 42, 43, 45, 50, 51, 52, 53, 195, 196, 197, 198, 202, 245, 246, 247, 286, 307, 308, 315], "sortby": [39, 42, 51, 119, 159], "sort\u30ad\u30fc": 36, "sound": [44, 230, 231, 232, 233, 234, 235, 251, 258, 259], "soundkitchen": [39, 47], "source": [12, 27, 41, 43, 44, 45, 50, 52, 53, 95, 112, 114, 123, 142, 197, 307, 308, 310, 311], "sourceforge": [12, 50], "sources": [52, 141, 155], "sozaki": 52, "space": [50, 85, 224, 244, 302], "span": [41, 43, 44, 45, 191, 192, 193, 194, 206, 275], "spanish": 260, "spec": [12, 37, 47, 48, 52], "specified": [85, 95], "specifies": [175, 224], "specify": [17, 175, 177, 179, 181], "specifying": 85, "speed": 252, "spelling": 314, "sphinx": [3, 12, 15, 16, 18, 49, 50, 51], "sphr": 188, "spil": 50, "sports": 307, "sql": [42, 44, 156, 245, 306], "squeeze": 48, "src": 41, "srpm": 52, "ss": [225, 228, 244], "ssd": [41, 111, 161], "ssh": 12, "ssssss": 228, "st": [168, 225, 277], "stable": 93, "stack": [48, 298], "stage": [41, 42, 43, 44, 51, 52, 197, 286], "standalone": [175, 181], "standard": [27, 282], "standing": 290, "stargazy": 278, "start": [41, 42, 43, 44, 50, 94, 96, 97, 158, 177, 226, 296, 298, 302, 308, 312], "started": [41, 43, 44, 95, 132, 134, 135, 156, 224, 225], "starting": [85, 296], "starttime": [41, 50, 94, 97, 158, 177, 241, 298, 308, 312], "stateful": 290, "states": 121, "static": 81, "statistics": 141, "status": [22, 36, 37, 41, 43, 44, 45, 47, 48, 50, 51, 54, 57, 74, 92, 94, 97, 121, 149, 156, 175, 176, 177, 178, 241, 290, 308, 312], "statuses": 42, "steming": 260, "steve": 51, "sticker": [41, 42, 43, 156], "still": [41, 149, 153], "stock": 53, "stop": [47, 50, 175, 177, 296], "stopping": 296, "storage": [42, 43, 44, 191, 192, 193], "store": [41, 68], "stored": 181, "stores": 68, "str": [68, 85], "stream": [41, 96], "streaming": [27, 31, 125], "strerror": 49, "stretch": 41, "strftime": 53, "strict": 49, "string": [11, 22, 41, 42, 43, 44, 47, 49, 50, 51, 57, 68, 85, 96, 132, 134, 135, 156, 182, 185, 195, 275], "string1": 185, "string2": 185, "strings": 42, "strip": [43, 44], "strlen": 85, "structure": 42, "studio": [8, 27, 41, 42, 43, 44, 47, 48, 50, 51], "su": 51, "sub": [12, 22, 41, 43, 44, 48, 50, 53, 54, 57, 182, 195, 201], "subclass": [53, 274], "subject": 48, "sublime": 27, "submit": [159, 180, 250, 251, 253], "subrec": 74, "subrecord": 48, "subscript": [231, 232, 233, 234, 235, 258, 259], "substituted": 42, "substitutions": 42, "succeeded": [114, 121, 127, 129, 152, 170], "success": 298, "successfully": 85, "successor": 225, "such": [17, 42, 47, 151, 179, 181, 205, 206], "sudo": [12, 14, 18, 21, 24, 25, 27, 28, 30, 31, 32, 47, 281, 296, 303, 312], "sufficient": [85, 302], "suffix": [179, 181, 205], "suffixsearchterms": [224, 225], "suggest": [22, 37, 39, 54, 57, 92, 180, 181, 250, 251, 252, 253], "suggestion": 179, "suitable": 175, "suited": [42, 205, 206], "sum": [12, 41, 49, 52, 135, 156], "summary": [22, 176, 289], "sums": 12, "sunday": 212, "sunos": 49, "super": 42, "superior": [42, 205, 206], "superscript": [231, 232, 233, 234, 235, 258, 259], "support": [42, 55], "supported": [55, 177], "supports": [42, 55, 85, 181], "sutamin": 41, "swedish": 260, "swig": 55, "switch": 18, "syllabics": [231, 232, 233, 234, 235, 258, 259], "symbol": [43, 44, 231, 232, 233, 234, 235, 237], "synonym": [43, 44, 156, 314], "synonymgroups": 43, "synonyms": [43, 44, 243], "syntax": [51, 58, 156, 175, 298], "syscall": [49, 308], "sysctl": [50, 281, 303], "system": [42, 43, 44, 132, 134, 135, 156, 205, 206, 224, 225, 281, 282, 302], "systemctl": 296, "systemd": [47, 50, 51], "systems": [42, 205, 206], "tab": 64, "table": [11, 22, 34, 37, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 74, 91, 92, 93, 94, 105, 110, 113, 119, 121, 122, 124, 126, 127, 128, 132, 134, 135, 136, 137, 140, 143, 149, 150, 152, 159, 170, 175, 176, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 236, 237, 240, 244, 245, 246, 247, 248, 250, 251, 253, 255, 260, 261, 262, 275, 276, 278, 281, 286, 292, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "tablecursor": 50, "tablegroupflags": 50, "tablename": 93, "tables": [179, 281], "tag": [12, 41, 42, 43, 44, 110, 132, 134, 135, 156, 195, 196, 221, 307], "tags": [12, 41, 42, 43, 44, 45, 50, 91, 112, 156, 161, 195, 196, 219, 221, 307], "tahr": 49, "tail": [12, 298], "tajima": 47, "takagi": 52, "takahiro": 37, "takashi": [39, 42, 43, 54, 121], "takayama": 50, "takayuki": 39, "takes": 153, "takoyaki": 45, "takuto": 37, "tar": [12, 27, 31], "target": [27, 41, 43, 45, 49, 53, 68, 143, 173, 231, 232, 233, 234, 235], "targets": [43, 237], "taro": 307, "task": 42, "tasks": 42, "tasuku": 55, "tatsuya": 47, "taurus": 41, "tcp": [51, 175, 180], "te": [168, 277], "tel": 42, "tellists": 42, "tels": 42, "telsindex": 42, "temple": 41, "temporary": 175, "term": [42, 108, 314], "termexpansions": 42, "terminal": 311, "terms": [41, 42, 43, 44, 45, 108, 111, 123, 124, 132, 134, 135, 142, 155, 156, 163, 165, 175, 191, 192, 193, 202, 203, 205, 206, 224, 225, 245, 246, 247, 255, 260, 261, 275, 281, 301, 308, 310], "termux": 45, "teruya": 50, "test": [14, 54, 156, 176, 305, 308, 310, 311, 312], "testdb": [176, 181], "tex": 168, "text": [27, 41, 42, 43, 44, 45, 47, 50, 58, 90, 95, 111, 125, 127, 132, 134, 135, 141, 142, 152, 155, 156, 163, 168, 176, 202, 203, 205, 206, 224, 225, 237, 241, 244, 245, 246, 247, 254, 276, 278, 281, 292, 310], "tf": [41, 74, 245, 246, 247], "than": [51, 244, 290], "thanks": 311, "thas": [44, 96], "that": [42, 44, 47, 64, 68, 85, 95, 96, 137, 163, 175, 197, 205, 206, 225, 228, 290], "the": [16, 27, 41, 42, 43, 44, 45, 47, 55, 64, 68, 85, 95, 118, 125, 132, 134, 135, 137, 143, 153, 156, 163, 175, 177, 179, 180, 181, 188, 205, 206, 224, 225, 281, 290, 302, 311], "theater": 314, "theatre": 314, "them": 68, "then": 85, "there": [224, 290], "therubyracer": 12, "thesaurus": [43, 44, 156], "these": [42, 205, 206], "they": 44, "this": [27, 41, 42, 43, 44, 45, 47, 64, 85, 96, 132, 134, 135, 149, 156, 175, 177, 179, 205, 206, 224, 225, 228, 231, 234, 235, 272, 292, 305, 308, 310, 312, 314], "thorsten": 51, "thread": [9, 22, 42, 50, 52, 53, 57, 85, 92, 105, 118, 133, 143, 163, 175, 176], "threadid": 54, "threads": 118, "threasd": 175, "three": [95, 305, 308], "threshold": [39, 42, 43, 45, 50, 120], "through": 177, "thursday": 212, "thus": [179, 181], "tim": 52, "time": [22, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 53, 57, 90, 132, 134, 135, 136, 137, 140, 141, 142, 143, 152, 153, 155, 156, 159, 161, 173, 175, 176, 177, 180, 182, 199, 250, 251, 253, 301, 305, 311], "timeout": 51, "times": [41, 42], "timestamp": [41, 42, 44, 51, 132, 134, 135, 136, 137, 140, 143, 152, 156, 211], "timestamps": [42, 137], "timezone": 42, "timgates": 41, "title": [12, 41, 42, 43, 44, 48, 49, 52, 53, 111, 122, 125, 126, 127, 128, 152, 156, 163, 202, 210, 245, 305, 306, 307, 308, 310, 312], "titles": [224, 225], "tittle": 310, "tiwawan": 50, "tld": 306, "tls": 51, "tmp": [6, 12, 27, 31, 42, 48, 159, 175, 243, 244, 292, 298, 308, 312], "to": [22, 41, 42, 43, 44, 47, 51, 55, 64, 68, 74, 85, 95, 111, 115, 122, 132, 134, 135, 143, 156, 170, 175, 177, 181, 205, 206, 224, 225, 228, 289, 311], "tobby": [202, 203], "todo": [6, 14, 52, 53, 62, 63, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 86, 88, 90, 91, 95, 111, 125, 134, 138, 148, 156, 179, 182, 205, 207, 220, 224, 225, 248, 281, 283, 292, 309], "token": [41, 42, 45, 50, 52, 122, 165, 176, 255, 257, 258, 259, 260, 261], "tokenbigram": [22, 41, 42, 43, 44, 45, 57, 111, 132, 134, 135, 142, 152, 155, 156, 161, 163, 165, 168, 169, 175, 180, 191, 192, 193, 202, 203, 205, 206, 210, 224, 225, 226, 245, 246, 247, 251, 254, 255, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271, 274, 275, 279, 280, 281, 299, 301, 308, 310, 311, 314], "tokenbigramignoreblank": [22, 45, 57, 155, 169, 263, 301], "tokenbigramignoreblanksplitsymbol": [22, 57, 155, 169, 263, 301], "tokenbigramignoreblanksplitsymbolalpha": [22, 52, 57, 155, 169, 263, 301], "tokenbigramignoreblanksplitsymbolalphadigit": [22, 52, 57, 155, 169, 263, 301], "tokenbigramsplitsymbol": [22, 37, 53, 57, 155, 169, 263, 275, 301], "tokenbigramsplitsymbolalpha": [22, 57, 155, 156, 168, 169, 263, 264, 299, 301], "tokenbigramsplitsymbolalphadigit": [22, 42, 44, 57, 110, 155, 169, 202, 251, 263, 301], "tokenbigramsplitxxx": 264, "tokenbigrm": 110, "tokenbigrma": 168, "tokendelimit": [22, 45, 57, 155, 168, 169, 180, 253, 257, 258, 259, 263, 273], "tokendelimitnull": [22, 38, 57, 155, 169, 263], "tokendelmit": 53, "tokendocumentvectorbm": [41, 155, 169], "tokendocumentvectortfidf": [41, 155, 169], "tokenfilerstem": 42, "tokenfilternfkc": [22, 41, 44, 53, 57, 155, 256], "tokenfilterstem": [22, 28, 32, 42, 43, 49, 52, 53, 57, 256], "tokenfilterstopword": [22, 42, 43, 45, 49, 50, 57, 165, 255, 256], "tokenh": 45, "tokenize": [22, 45, 48, 49, 50, 57, 92, 165, 169, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280], "tokenizer": [22, 47, 49, 52, 57, 92, 225, 275, 298], "tokenizers": [142, 168, 169], "tokenkytea": 47, "tokenmecab": [22, 44, 45, 47, 53, 54, 57, 103, 142, 155, 156, 169, 225, 232, 233, 234, 257, 258, 259, 263, 299, 301], "tokenngram": [22, 41, 42, 43, 44, 45, 53, 54, 57, 123, 155, 156, 169, 203, 224, 225, 263], "tokenpattern": [22, 54, 57, 155, 169, 263], "tokenregexp": [22, 50, 51, 57, 152, 155, 169, 244, 263], "tokens": [41, 43, 44, 168], "tokenstopword": 53, "tokentable": [22, 54, 57, 155, 169, 263], "tokentrigram": [22, 50, 57, 155, 168, 169, 263], "tokenunigram": [22, 57, 155, 169, 263], "tokyogeopoint": [39, 51, 90, 141, 142, 155, 189, 190, 315], "tom": [202, 203], "tomita": 37, "tomo": 307, "tomoatsu": 37, "tomohiro": 54, "tomotaka": 39, "tomygx": 50, "too": [42, 50, 183, 196, 298, 310], "tood": [85, 160], "tool": 21, "top": [39, 190], "torinky": 51, "tortoisegit": 8, "toshi": 45, "toshio": 45, "totable": 110, "total": [108, 141, 176], "tower": 41, "toybox": 305, "tpreleasecleanupgroupmembers": 166, "tr": 28, "trace": [43, 44, 96], "tracker": 19, "transfer": [0, 290, 298], "translate": 17, "translation": 17, "travel": 311, "travi": 48, "travis": [20, 22, 47, 48, 49], "trie": 155, "tried": 311, "trigram": [53, 275], "tritonn": [43, 44, 132, 134, 135, 156, 224, 225], "trixie": 44, "true": [36, 41, 42, 43, 44, 45, 48, 49, 50, 51, 58, 91, 94, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 170, 177, 180, 183, 184, 186, 188, 189, 190, 192, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 245, 246, 247, 255, 257, 258, 259, 260, 261, 274, 275, 276, 278, 282, 286, 298, 305, 306, 307, 308, 310, 312, 313, 314, 315], "truncate": [22, 39, 48, 49, 50, 51, 53, 57, 92, 123, 124], "truncated": 48, "truncation": 39, "trust": 12, "trusty": 49, "try": [41, 311], "ts": [270, 271], "tsu": 50, "tsv": [50, 241, 298], "tuesday": 212, "turn": 177, "tutorial": 85, "tweet": 226, "tweets": 226, "twiter": 47, "twitter": [3, 22, 311], "two": [95, 181], "tx": 277, "txt": [16, 17], "type": [41, 42, 43, 44, 45, 51, 54, 61, 64, 71, 74, 85, 96, 114, 123, 138, 159, 161, 176, 184, 197, 250, 251, 253, 286, 305, 306, 307, 308, 310, 311, 313, 315], "typedef": 81, "types": [42, 43, 44, 138, 159, 197, 231, 232, 233, 234, 235, 237, 250, 251, 253], "typo": [39, 49], "ubuntu": [14, 18, 21, 22, 23, 27, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "ueno": [37, 38, 47], "ui": 156, "uid": 12, "uint": [34, 37, 41, 42, 43, 44, 45, 47, 48, 49, 51, 52, 58, 81, 90, 91, 95, 96, 110, 111, 112, 114, 121, 124, 132, 134, 135, 141, 142, 149, 150, 155, 156, 161, 162, 163, 164, 170, 180, 183, 185, 186, 195, 201, 210, 211, 212, 224, 225, 226, 229, 244, 260, 261, 276, 278, 281, 286, 301, 306, 307, 308, 310, 312, 313, 314, 315], "ul": 168, "ull": 168, "ultra": 307, "umask": 49, "umemoto": 39, "unbiased": 41, "unchanged": 85, "under": [177, 181], "underlying": 42, "unicode": [41, 44, 45, 50, 53, 54, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259], "unicorn": 50, "unified": 53, "unify": [41, 42, 43, 44, 53, 54, 203, 225, 257], "uninstall": 47, "unique": 153, "united": 121, "universe": 32, "unix": [3, 5, 8, 23, 31, 42, 49, 95, 211], "unknown": [54, 58, 166, 298], "unlink": 68, "unlocked": 85, "unlocks": 85, "unmanaged": 108, "unmatch": 43, "unpatched": 55, "unsigned": [49, 61, 68, 71, 74, 85], "unsplit": 11, "unsupported": 298, "until": 85, "up": 241, "update": [12, 28, 32, 42, 47, 53, 54, 71, 298], "updated": [17, 55, 301], "updates": [42, 205, 206], "updating": 42, "upgrade": 12, "upgraded": 41, "upstream": 12, "uptime": [36, 41, 94, 97, 158, 177, 241, 298, 308, 312], "uri": [96, 177, 178, 180], "url": [12, 33, 39, 41, 49, 122, 178, 312], "usa": 306, "usage": [42, 175, 224], "use": [17, 40, 41, 42, 43, 44, 50, 53, 54, 64, 68, 85, 95, 108, 109, 132, 135, 151, 156, 170, 175, 180, 183, 196, 224, 225, 245, 257, 258, 259, 284, 290, 310], "used": [42, 64, 84, 107, 110, 170, 175, 181, 290, 311], "useful": [42, 95, 175, 245, 310], "user": [41, 42, 44, 45, 85, 137, 149, 150, 176, 177, 180, 183, 186, 193, 195, 202, 203, 206, 210, 225, 281, 307], "userdefinedtable": 237, "username": 307, "users": [41, 42, 44, 45, 51, 53, 58, 74, 95, 98, 99, 110, 112, 114, 121, 124, 137, 140, 141, 143, 149, 150, 155, 156, 164, 166, 170, 177, 183, 186, 202, 203, 228, 292], "uses": [42, 43, 64, 156, 181, 197], "using": [42, 55, 64, 310], "usr": [14, 31, 144, 145, 151, 175, 177], "usually": 181, "utc": 225, "utf": [31, 37, 47, 48, 51, 53, 55, 74, 175, 180, 225, 241, 277], "utopic": 50, "uubntu": 14, "uuid": 51, "uuuuuu": 225, "uvactor": 45, "uvector": [41, 45], "uzulla": 39, "v1": 11, "v2": 11, "va": 41, "valgrind": 14, "value": [41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 71, 74, 85, 94, 96, 110, 123, 125, 141, 142, 154, 155, 162, 168, 177, 184, 191, 193, 197, 224, 225, 231, 232, 233, 234, 235, 244, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280, 286, 308, 312], "valuen": [195, 196], "values": [42, 45, 64, 175], "var": [11, 31, 85, 112, 173, 175, 177], "variable": 85, "variables": 85, "variety": 307, "vars": 85, "vary": 156, "varying": 85, "vc": [41, 54], "vcruntime": 41, "vector": [22, 41, 42, 43, 44, 47, 48, 50, 51, 52, 53, 57, 132, 134, 135, 155, 156, 182], "verbose": 96, "version": [28, 29, 39, 41, 44, 45, 54, 55, 58, 74, 85, 94, 96, 97, 98, 99, 110, 111, 112, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 146, 149, 150, 152, 153, 155, 156, 157, 158, 160, 161, 163, 166, 167, 170, 171, 173, 175, 176, 177, 184, 186, 187, 191, 192, 193, 195, 196, 197, 198, 203, 205, 207, 208, 209, 211, 212, 219, 220, 221, 222, 224, 225, 227, 232, 233, 234, 235, 236, 237, 241, 244, 246, 247, 248, 257, 258, 259, 277, 282, 283, 285, 286, 287, 288, 298, 308, 312], "vervet": [50, 51], "very": [41, 42, 43, 44, 95, 125, 132, 134, 135, 156, 191, 192, 193, 195, 206, 219, 224, 225, 245], "video": 307, "virgo": 41, "visual": [8, 27, 33, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51], "visualstudio": [43, 44], "vivid": [50, 51], "vm": [47, 228, 303], "vmstat": 303, "voiced": 230, "void": [40, 74, 81, 84, 85], "vojtovich": 49, "volumes": 29, "vs": [33, 42, 166], "waits": 85, "wal": 42, "wanabe": 48, "want": [175, 290], "wareohji": 47, "warn": [129, 175], "warning": [129, 130, 175, 177, 244, 247], "warp": 49, "was": 302, "watch": 12, "watcom": 27, "watson": 45, "way": 181, "we": 290, "weakness": [42, 205, 206], "web": [12, 31, 36, 156, 159, 205, 206, 224, 251, 253], "webclips": 194, "wednesday": 212, "week": 173, "weeks": 173, "weight": [41, 42, 43, 44, 47, 52, 74, 91, 111, 141, 155, 156, 180, 245, 305], "welcome": [43, 44, 45, 132, 134, 135, 156, 224, 225, 311], "well": [42, 205, 206], "werewolf": [50, 51], "wget": [27, 28, 31], "wgs": [39, 41, 45, 51, 90, 141, 142, 155, 188, 189, 190, 305, 306, 307, 311, 312, 315], "wheezy": 39, "when": [42, 95, 175, 290], "which": [85, 175, 181], "whombx": 48, "wi": [42, 43], "wi2": 42, "wibowo": 48, "widely": 42, "width": 42, "wiedenroth": 49, "wiki": 177, "wikipedia": [240, 282], "will": [85, 175, 290], "wily": [50, 51], "window": [22, 41, 42, 52, 53, 57, 283, 284], "windows": [3, 5, 6, 7, 22, 23, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 85, 157, 158, 166, 176, 302], "windymelt": 45, "wing": [47, 48], "with": [6, 21, 27, 30, 31, 33, 39, 41, 42, 43, 44, 45, 49, 50, 51, 53, 85, 91, 108, 111, 112, 138, 141, 155, 166, 175, 177, 181, 205, 206, 224, 225, 231, 232, 233, 234, 235, 237, 244, 308], "without": [42, 177, 205, 206], "wmake": 27, "wo": [262, 264, 275], "wolfgang": 54, "woman": 42, "wonderland": 111, "wor": 275, "word": [44, 47, 156, 224, 225, 231, 232, 233, 234, 235, 258, 259], "words": 225, "work": [12, 27, 166], "worker": [9, 292], "works": [18, 85], "world": [41, 42, 43, 123, 156, 262, 264, 272, 275, 310], "write": [14, 40, 148, 156, 160], "written": 170, "wsaenobufs": 302, "wsasend": 53, "www": 12, "xcode": 27, "xenial": [42, 43, 51], "xerus": [42, 43, 51], "xml": [37, 39, 40, 47, 48, 49, 64, 178, 241, 292, 298], "xt": [168, 277], "xvf": [27, 31], "xx": 42, "xxhash": [41, 44, 94, 158, 177, 298, 308, 312], "xxx": [43, 44, 45, 48, 50, 51, 52, 53, 54, 156, 175, 225, 231, 235], "xxxx": 12, "xxxxx": 302, "xyzabc": 41, "x\u30df\u30ea": [225, 282], "yagisumi": 54, "yahoo": 56, "yak": [51, 52], "yakkety": [51, 52], "yamada": [231, 232, 233, 234, 235], "yamaguchi": 39, "yappo": [48, 49, 55], "yay": 41, "year": [41, 173], "years": [58, 173], "yes": [14, 41, 43, 44, 45, 50, 51, 52, 53, 96, 97, 122, 124, 125, 132, 134, 135, 137, 143, 149, 156, 159, 163, 174], "yito": [47, 48], "yoji": 39, "yoku": [48, 49], "york": [188, 311], "yoshimura": [42, 43], "yoshioka": 47, "you": [17, 42, 64, 68, 85, 170, 175, 177, 179, 180, 181, 224, 290], "younger": 111, "your": [12, 17, 18, 21, 39], "yssrku": 44, "yu": 54, "yuki": 39, "yum": [12, 47], "yunqiang": 51, "yutaro": [50, 53, 54], "yuya": 50, "yy": [58, 156], "yyy": 44, "yyyy": [42, 43, 44, 225, 228], "yyyymm": 248, "yyyymmdd": [132, 134, 135, 248], "zangruochen": 44, "zapus": 52, "zcat": 51, "zenigata": 307, "zeromq": 31, "zesty": 52, "zhanzhao": [43, 44], "zip": [12, 22, 23, 27, 42, 43, 47], "zlib": [31, 37, 39, 41, 47, 48, 49, 94, 111, 141, 155, 158, 177, 298, 308, 312], "zsh": [12, 31], "zstandard": [31, 41, 51, 94, 111, 141, 158, 177, 298, 308, 312], "zstd": 53, "zunda": 39, "zwgetcontextthread": 166, "{\"": [41, 42, 43, 44, 45, 50, 52, 91, 96, 108, 111, 132, 133, 134, 135, 136, 137, 141, 154, 156, 159, 176, 180, 183, 191, 192, 193, 196, 197, 202, 203, 211, 224, 225, 226, 237, 244, 246, 247, 250, 251, 253, 260, 261, 275, 276, 278, 310], "{\"_": [41, 42, 44, 58, 156, 183, 186, 195, 198, 224, 225, 305, 307, 315], "{,": 44, "{..": 41, "{\\": 42, "{\\\"": 41, "{a": 156, "{additional": 44, "{ascii": 44, "{b": 156, "{c": 156, "{column": 244, "{d": 156, "{id": 53, "{key": 156, "{label": [135, 156], "{language": 17, "{logical": 248, "{max": 44, "{min": 44, "{name": [132, 134, 135, 156, 225], "{path": 31, "{prefix": [31, 144, 145, 151, 197, 227], "{table": 156, "{time": [53, 228], "{user": 281, "{yyyymm": 248, "{yyyymmdd": 248, "| _": [201, 315], "| b": 54, "| c": [44, 225], "| d": 54, "| f": 54, "| n": 225, "| y": 48, "|+": 175, "|-": [111, 224, 225], "|..": 49, "|:": [43, 228], "|<": [43, 58, 228], "|>": [43, 228], "|[": 272, "|allow": [44, 156, 202, 224], "|b": 244, "|blank": 43, "|cache": 74, "|capital": [45, 231, 235], "|column": 111, "|correct": [159, 180], "|destination": 74, "|disable": 42, "|enable": 168, "|full": 244, "|ga": 156, "|http": 176, "|index": 111, "|info": 244, "|invalid": 111, "|key": [51, 161, 224, 225, 313], "|mark": 51, "|message": [173, 175], "|missing": 111, "|n": 50, "|ng": 156, "|on": 156, "|oo": 156, "|orange": 276, "|persistent": [112, 114, 142, 164], "|pid": [51, 173], "|query": [44, 156], "|result": 74, "|ring": 180, "|ro": 156, "|score": 74, "|size": 74, "|suggest": 159, "|table": 161, "|weight": [41, 43], "|with": [41, 42, 43, 44, 45, 49, 91, 111, 112, 123, 132, 134, 135, 138, 142, 152, 155, 156, 180, 191, 192, 193, 202, 203, 205, 206, 210, 224, 225, 226, 244, 245, 246, 247, 260, 261, 275, 281, 301, 308, 310, 311, 314], "||": [11, 45, 47, 48, 52, 53, 132, 134, 135, 156, 202, 225, 245, 310], "}\n#": 44, "}\"": 41, "}#": 228, "}$": 44, "}'": [42, 52], "}(": 74, "})": [41, 42, 44, 156, 183, 191, 193, 196, 205, 208, 209], "}*": 44, "},": [41, 42, 43, 44, 45, 74, 91, 94, 96, 114, 123, 135, 136, 137, 139, 141, 142, 155, 156, 158, 164, 169, 170, 176, 177, 194, 197, 201, 202, 219, 221, 224, 225, 226, 231, 232, 233, 234, 235, 237, 244, 274, 298, 307, 308, 310, 311, 312, 313, 314], "}.": [112, 114, 142, 143, 156, 164], "}..": 42, "}/": [17, 18, 31, 51, 144, 145, 151, 197, 227], "}:": [180, 228, 244], "}\\": [51, 225], "}]": [42, 43, 44, 50, 51, 52, 97, 125, 153, 154, 175, 176, 241], "}_": [132, 134, 135, 248], "}attr": 48, "}e": 225, "}|": [44, 53, 225, 228], "}}": [42, 45, 91, 156], "~ \"": [50, 225, 244], "~\"": [51, 52, 202], "~$": 42, "~${": 244, "~*": 68, "~number": 225, "~uint": 50, "\u00a9\"": [231, 232, 233, 234, 235, 257, 258, 259], "\u00b7\"": [231, 232, 233, 234, 235, 258, 259], "\u00b7\u00b7": [231, 232, 233, 234, 235, 258, 259], "\u00b7\u1427": [231, 232, 233, 234, 235, 258, 259], "\u00e8o": 45, "\u01b0\u1edd": 45, "\u02d7\"": [231, 232, 233, 234, 235, 258, 259], "\u058a\"": [231, 232, 233, 234, 235, 258, 259], "\u058a\u2010": [231, 232, 233, 234, 235, 257, 258, 259], "\u1427\"": [231, 232, 233, 234, 235, 258, 259], "\u1eb1n": [45, 231, 235], "\u2010\"": [231, 232, 233, 234, 235, 258, 259], "\u2011\u2012": [231, 232, 233, 234, 235, 257, 258, 259], "\u2013\u2043": [231, 232, 233, 234, 235, 257, 258, 259], "\u2014\"": [231, 232, 233, 234, 235, 258, 259], "\u2014\u2015": [231, 232, 233, 234, 235, 258, 259], "\u2022\"": [231, 232, 233, 234, 235, 258, 259], "\u2022\u2219": [231, 232, 233, 234, 235, 258, 259], "\u2026\u3001": 212, "\u2026\uff09": 251, "\u2043\"": [231, 232, 233, 234, 235, 258, 259], "\u207b\"": [231, 232, 233, 234, 235, 258, 259], "\u207b\u208b": [231, 232, 233, 234, 235, 257, 258, 259], "\u208b\"": [231, 232, 233, 234, 235, 258, 259], "\u2170\"": 43, "\u2171\"": 43, "\u2172\"": 43, "\u2191\u30ad\u30fc": 45, "\u2192id": 254, "\u2212\"": [231, 232, 233, 234, 235, 257, 258, 259], "\u2219\"": [231, 232, 233, 234, 235, 258, 259], "\u22c5\"": [231, 232, 233, 234, 235, 258, 259], "\u22c5\u2e31\u30fb": [231, 232, 233, 234, 235, 258, 259], "\u2500\"": [231, 232, 233, 234, 235, 258, 259], "\u2500\u2501\uff70": [231, 232, 233, 234, 235, 258, 259], "\u2501\"": [231, 232, 233, 234, 235, 258, 259], "\u25a1\u25a1": 10, "\u25cb\u25cb": 10, "\u2e31\"": [231, 232, 233, 234, 235, 258, 259], "\u3001 \"": 196, "\u3001\"": [39, 42, 44, 45, 47, 48, 51, 52, 53, 54, 184, 194, 196, 210, 231, 232, 233, 234, 235, 250, 251, 252, 253, 258, 259, 272, 282, 308, 311, 314], "\u3001\"\u30fc": [231, 232, 233, 234, 235], "\u3001#": 311, "\u3001$": 12, "\u3001'": [49, 175, 202, 225, 282, 305], "\u3001(": [176, 183, 282], "\u3001-": [37, 176, 282], "\u3001.": [14, 17], "\u3001/": [308, 312], "\u3001:": [176, 302], "\u3001[": [54, 308], "\u3001_": 308, "\u3001`": 43, "\u3001c": 308, "\u3001\u00d7": 10, "\u3001\u300c": [36, 45, 53, 56, 111, 134, 137, 141, 156, 175, 240, 245, 246, 247, 250, 262, 299, 301, 306, 307, 315], "\u3001\u6708": 212, "\u3002\"": [42, 48, 49, 51, 52, 184, 196, 251, 257, 258, 259, 274, 295, 301, 306, 311, 312], "\u3002#": [37, 39, 311], "\u3002'": [231, 232, 233, 234, 235, 274], "\u3002(": [11, 12, 41, 42, 43, 44, 52, 53, 54, 74, 105, 106, 121, 156, 175, 176, 186, 278, 302, 310], "\u3002)": [41, 42, 43, 44, 53, 54, 105, 106, 121, 156, 176, 186, 302, 310], "\u3002-": 31, "\u3002:": [10, 14, 17, 18, 39, 42, 43, 44, 50, 51, 52, 93, 97, 99, 108, 112, 115, 116, 117, 119, 123, 125, 126, 127, 128, 129, 132, 134, 135, 139, 141, 142, 143, 152, 153, 155, 156, 157, 158, 159, 162, 163, 169, 170, 173, 175, 176, 177, 178, 180, 183, 191, 193, 195, 196, 202, 203, 208, 209, 211, 212, 219, 221, 222, 224, 225, 228, 230, 236, 245, 246, 247, 250, 251, 252, 253, 275, 278, 281, 292, 299, 301, 302, 303, 308], "\u3002[": [41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 308], "\u3002_": [89, 308], "\u3002adjuster": 49, "\u3002amazon": 156, "\u3002apache": [42, 158], "\u3002api": 223, "\u3002ascii": [224, 225], "\u3002bash": 50, "\u3002between": 51, "\u3002blogs": 301, "\u3002c": [0, 16, 100], "\u3002callback": 11, "\u3002centos": 50, "\u3002cmake": 27, "\u3002column": [11, 308], "\u3002command": 93, "\u3002cpu": 156, "\u3002cpu\u30b3\u30a2": 292, "\u3002ctrl\u30ad\u30fc": 308, "\u3002db": [11, 39, 298, 308], "\u3002debian": [14, 31, 53], "\u3002docker": [42, 43], "\u3002drilldown": 53, "\u3002eclipse": 17, "\u3002ecmascript": 156, "\u3002ftp": 176, "\u3002functions": 14, "\u3002gdb": [6, 14], "\u3002geopoint": 311, "\u3002gguf": 227, "\u3002gnr": 223, "\u3002gnu": 5, "\u3002google": 224, "\u3002gqtp": [100, 174, 298], "\u3002grn": [11, 223], "\u3002groonga": [0, 3, 18, 24, 25, 28, 29, 31, 32, 33, 41, 43, 45, 47, 48, 49, 50, 51, 52, 54, 58, 84, 87, 93, 111, 156, 175, 176, 177, 224, 225, 227, 228, 241, 244, 248, 250, 254, 281, 295, 308, 310, 312], "\u3002header": 41, "\u3002host": 298, "\u3002html": 192, "\u3002http": [48, 50], "\u3002id": [51, 111], "\u3002ieee": 111, "\u3002int": 48, "\u3002iptables": 312, "\u3002jis": 240, "\u3002json": [45, 51], "\u3002key": 299, "\u3002linux": [42, 281], "\u3002listen": 52, "\u3002llama": [45, 227], "\u3002lz": 111, "\u3002lz4": 51, "\u3002make": 176, "\u3002memcached": 51, "\u3002messagepack": [31, 95], "\u3002mroonga": 0, "\u3002mruby": [50, 53], "\u3002munin": [28, 32], "\u3002mysql": [24, 25, 28, 32, 248], "\u3002n": [138, 168, 301], "\u3002nginx": 51, "\u3002ocr": 42, "\u3002openbsd": 51, "\u3002os": 118, "\u3002output": [49, 122], "\u3002pcre": 177, "\u3002phi": 45, "\u3002point": [189, 190], "\u3002post": 292, "\u3002postgresql": 52, "\u3002rapidjson": 45, "\u3002rdbms": 175, "\u3002red": 31, "\u3002rk": 240, "\u3002rroonga": 223, "\u3002ruby": 244, "\u3002run": 14, "\u3002scan": 14, "\u3002set": 176, "\u3002sql": 156, "\u3002squeeze": 14, "\u3002table": 121, "\u3002tag": 307, "\u3002tokendelimit": 253, "\u3002tokenizer": 52, "\u3002travis": 21, "\u3002true": 51, "\u3002tsv": [95, 243], "\u3002ubuntu": 45, "\u3002unicode": [231, 257], "\u3002unix": 158, "\u3002utf": [48, 180, 230, 236], "\u3002value": 89, "\u3002video": 307, "\u3002wal": 45, "\u3002windows": 53, "\u3002xml": 95, "\u3002zlib": 111, "\u3002zstandard": 111, "\u3002\u00d7": 10, "\u3002\u2193": 175, "\u3002\u3002": 239, "\u3002\u300c": [49, 56, 111, 118, 132, 134, 135, 137, 138, 141, 143, 156, 161, 165, 168, 195, 224, 225, 244, 247, 262, 307, 310], "\u3002\u300d": [52, 272, 301], "\u3002\u3044": 11, "\u3002\u3044\u304f\u3064\u304b": [142, 180, 227, 244], "\u3002\u3044\u307e": 40, "\u3002\u3056\u3063\u304f\u308a": 91, "\u3002\u3057\u304b": 111, "\u3002\u3057\u304b\u3057": [0, 6, 7, 8, 23, 39, 41, 44, 45, 91, 111, 114, 137, 149, 156, 164, 175, 188, 224, 225, 226, 227, 229, 237, 245, 247, 251, 262, 264, 277, 282, 292], "\u3002\u3057\u304b\u3082": 291, "\u3002\u3059": [53, 176, 226], "\u3002\u3059\u3050": 177, "\u3002\u3059\u3053\u3057": 45, "\u3002\u3059\u3079\u3066": [14, 17, 111, 156, 202, 203, 208, 209], "\u3002\u3064\u307e\u308a": [42, 43, 45, 52, 111, 124, 131, 156, 171, 173, 180, 202, 203, 224, 225, 246, 268, 271, 308, 314], "\u3002\u3069": [43, 44, 111, 203, 219], "\u3002\u3069\u3063\u3061": 111, "\u3002\u3069\u308c": 180, "\u3002\u307e\u305a": [111, 301], "\u3002\u307e\u305f": [0, 11, 42, 43, 44, 45, 93, 111, 123, 124, 156, 174, 175, 176, 178, 186, 225, 231, 232, 233, 234, 235, 243, 247, 251, 282, 298, 302, 305, 308, 310, 315], "\u3002\u307e\u3060": 49, "\u3002\u30a8\u30f3": 45, "\u3002\u30ad\u30fc": [43, 51, 52, 58, 155, 156, 171], "\u3002\u30bf\u30b0": [91, 132, 134, 135, 156, 193, 307], "\u3002\u30d0\u30b0": 19, "\u3002\u30df\u30ea": 305, "\u3002\u30ed\u30b0": [161, 177, 228], "\u3002\u4f8b": [8, 50, 143, 161, 226, 237], "\u3002\u52d5\u7684": 156, "\u3002\u5404": [18, 132, 134, 135, 156, 224, 225], "\u3002\u7701\u7565\u53ef\u80fd": 192, "\u3002\u7a7a": 141, "\u3002\u975e": 156, "\u3002\uff01": 272, "\u3002\uff01\uff1f": 272, "\u3002\uff08": [17, 21, 37, 39, 43, 44, 45, 50, 53, 54, 108, 111, 124, 133, 134, 135, 153, 156, 175, 180, 193, 206, 223, 224, 225, 239, 250, 251, 253, 254, 274, 281, 282, 296, 299], "\u3002\uff09": [17, 21, 36, 37, 39, 43, 50, 111, 124, 133, 134, 135, 141, 153, 156, 161, 180, 193, 206, 224, 225, 239, 251, 253, 254, 274, 296, 299], "\u300c\"": 175, "\u300c#": 37, "\u300c,": [122, 161], "\u300ca": 245, "\u300calice": 311, "\u300carray": 141, "\u300cbill": 299, "\u300cbilliard": 299, "\u300cbob": 311, "\u300cbuffer": 141, "\u300ccharlie": 311, "\u300cchunk": 141, "\u300ccomments": 311, "\u300cdelete": 12, "\u300cgoogle": 56, "\u300cgrand": 311, "\u300cgroonga": [49, 156, 180, 223, 281], "\u300chello": 156, "\u300cn": 53, "\u300cnew": 311, "\u300cnihon": 250, "\u300cnippon": 250, "\u300cparenthesized": 53, "\u300cpopular": 156, "\u300csenna": 156, "\u300csupported": 227, "\u300cthe": 245, "\u300cthey": [245, 246, 247], "\u300cthread": 53, "\u300cu": 53, "\u300cusers": 311, "\u300cview": 12, "\u300c\u25cb": [50, 132, 134, 135], "\u300c\u3059": 52, "\u300c\u305b": 56, "\u300c\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8": 141, "\u300c\u30d1\u30b9": 178, "\u300c\u30e9\u30d9\u30eb": 156, "\u300c\u4eba": 111, "\u300c\u5024": [155, 161], "\u300c\u52d5\u7684": 156, "\u300c\u5e74": 50, "\u300c\u5f0f": 68, "\u300c\u6240\u5728\u5730": 90, "\u300c\u6771\u4eac\u90fd": 301, "\u300c\u697d\u3057": 299, "\u300c\u697d\u3057\u3044": 299, "\u300c\uff76": 230, "\u300d:": 230, "\u300d]": 272, "\u300d\u3001": [49, 307, 311], "\u300d\u3002": 223, "\u300d\u300c": [53, 141], "\u300d\uff08": [122, 156, 161, 299], "\u300d\uff09": 53, "\u3041\u3042": [44, 231, 232, 233, 234, 235], "\u3041\u3042\u3043\u3044\u3045\u3046": [231, 232, 233, 234, 235, 258, 259], "\u3041\u3044\u304a\u308a\u3093": [231, 235], "\u3041\u30fc": [44, 231, 232, 233, 234, 235], "\u3042i": 44, "\u3042i\u3046": 44, "\u3042\u3042": [44, 231, 232, 233, 234, 235], "\u3042\u3042\u3042": 44, "\u3042\u3042\u3044\u3044\u3046": [231, 232, 233, 234, 235, 258, 259], "\u3042\u3044\u3046": [231, 232, 233, 234, 235, 257, 258, 259], "\u3042\u3044\u307e\u3044": 161, "\u3042\u3046": 44, "\u3042\u304d": 313, "\u3042\u304d\u3089": 49, "\u3042\u304f": 61, "\u3042\u3052\u308b": [22, 198, 300], "\u3042\u305f\u308a": [37, 39, 43, 56, 141], "\u3042\u3063": [12, 17, 27, 41, 42, 43, 44, 47, 48, 51, 52, 53, 54, 56, 74, 89, 93, 111, 125, 137, 156, 157, 159, 176, 225, 244, 286, 292, 307], "\u3042\u3063\u3055\u308a": 56, "\u3042\u3068": [12, 17, 43, 118, 183, 196, 281, 302], "\u3042\u3068\u3082": 99, "\u3042\u306a\u305f": [2, 6, 12, 18, 44, 45, 50, 96, 111, 156, 244, 245, 246, 247], "\u3042\u307e\u308a": [10, 41, 111, 161, 175, 310], "\u3042\u3084\u304b\u3063": 56, "\u3042\u3089\u304b\u3058\u3081": [12, 282], "\u3042\u3089\u3086\u308b": 143, "\u3042\u3089\u308f\u3057": 314, "\u3042\u308a": [0, 1, 2, 3, 6, 8, 10, 11, 12, 13, 14, 16, 17, 18, 19, 23, 24, 25, 27, 28, 31, 32, 33, 34, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 68, 74, 81, 84, 89, 90, 91, 93, 94, 95, 96, 99, 110, 111, 112, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 173, 175, 176, 177, 180, 183, 186, 188, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 206, 208, 210, 219, 223, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 240, 241, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 286, 290, 292, 296, 298, 299, 301, 302, 303, 305, 306, 308, 310, 311, 312, 314, 315], "\u3042\u308a\u3048": 111, "\u3042\u308b": [0, 1, 2, 5, 6, 7, 8, 10, 11, 12, 17, 18, 20, 27, 31, 33, 37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 68, 91, 93, 94, 96, 100, 105, 108, 109, 111, 112, 113, 118, 119, 120, 121, 122, 124, 130, 132, 134, 135, 137, 138, 141, 142, 147, 149, 156, 157, 158, 159, 161, 162, 163, 168, 173, 174, 175, 176, 177, 180, 183, 185, 186, 188, 189, 190, 195, 196, 198, 199, 201, 202, 204, 205, 206, 208, 210, 219, 223, 224, 225, 227, 228, 237, 239, 243, 244, 245, 250, 251, 254, 257, 258, 259, 265, 272, 275, 277, 281, 282, 286, 292, 298, 301, 302, 303, 305, 306, 307, 308, 310, 312, 313, 315], "\u3042\u308b\u3044": [0, 11, 41, 44, 49, 93, 96, 111, 125, 137, 142, 161, 163, 177, 189, 190, 196, 224, 225, 237, 281, 298], "\u3042\u308c": [6, 12, 43, 45, 51, 52, 58, 61, 74, 111, 137, 161, 163, 175, 176, 183, 196, 226, 231, 232, 233, 234, 235, 301], "\u3042\u308c\u3053\u308c": 10, "\u3042\u308f\u305b": [111, 178, 248, 281], "\u3042\u308f\u305b\u308b": 47, "\u3042\u30a4\uff73": [231, 232, 233, 234, 235, 257, 258, 259], "\u3042\u30fc": [44, 231, 232, 233, 234, 235], "\u3043\u3044": [44, 231, 232, 233, 234, 235], "\u3043\u30fc": [44, 231, 232, 233, 234, 235], "\u3044b": [299, 301], "\u3044\u3044": [2, 10, 44, 56, 231, 232, 233, 234, 235, 237], "\u3044\u3044\u306d": [132, 134, 135, 156, 224, 225], "\u3044\u3046": 156, "\u3044\u304d": [10, 12, 302, 308], "\u3044\u304f": [3, 4, 22, 51, 56, 98, 111, 154, 156, 168, 244], "\u3044\u304f\u3064": [3, 244], "\u3044\u304f\u3064\u304b": [1, 2, 8, 11, 14, 31, 41, 43, 44, 48, 50, 51, 53, 56, 89, 111, 117, 122, 124, 125, 132, 134, 135, 137, 138, 141, 149, 150, 153, 156, 157, 161, 165, 168, 171, 180, 182, 202, 203, 224, 225, 229, 237, 244, 245, 248, 257, 262, 281, 291], "\u3044\u304f\u3064\u304b\u3082": 45, "\u3044\u304f\u3089": [0, 51], "\u3044\u305a\u308c": [44, 89, 93, 282], "\u3044\u305a\u308c\u304b": [43, 44], "\u3044\u3063": [156, 158, 237, 244], "\u3044\u3064": [52, 250], "\u3044\u3066": [41, 44, 51, 52, 90], "\u3044\u307e": 302, "\u3044\u307e\u305b": [6, 26, 41, 42, 43, 44, 45, 48, 49, 51, 53, 54, 95, 96, 111, 132, 134, 135, 137, 156, 159, 161, 168, 177, 197, 224, 225, 227, 231, 235, 239, 243, 244, 245, 246, 247, 248, 254, 262, 264, 274, 278, 291, 292, 302], "\u3044\u307e\u307e\u3067": [42, 43, 275], "\u3044\u308b": [0, 6, 10, 11, 12, 14, 17, 18, 21, 26, 27, 31, 32, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 74, 81, 91, 94, 96, 99, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 118, 120, 121, 123, 124, 125, 126, 127, 131, 132, 133, 134, 135, 139, 140, 141, 142, 143, 144, 145, 149, 151, 152, 153, 154, 155, 156, 158, 161, 162, 164, 167, 168, 169, 173, 175, 176, 177, 178, 180, 183, 188, 193, 194, 195, 196, 197, 205, 206, 210, 224, 225, 226, 228, 229, 237, 240, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 260, 261, 262, 264, 265, 266, 267, 268, 276, 279, 280, 292, 296, 299, 301, 302, 303, 305, 306, 307, 308, 310, 311, 312, 313, 315], "\u3044\u308c": [31, 47, 50, 51, 99, 137, 142, 219, 224, 225, 264, 305, 310], "\u3044\u308d\u3044\u308d": [22, 304, 311], "\u3044\u308f\u3086\u308b": [56, 307], "\u3044\u30fc": [44, 231, 232, 233, 234, 235], "\u3045\u3046": [44, 231, 232, 233, 234, 235], "\u3045\u30fc": [44, 231, 232, 233, 234, 235], "\u3046\u3046": [44, 231, 232, 233, 234, 235], "\u3046\u3048": [39, 47], "\u3046\u3048\u3048": [231, 232, 233, 234, 235, 258, 259], "\u3046\u3061": [11, 39, 43, 44, 47, 50, 54, 56, 93, 108, 111, 132, 141, 156, 158, 171, 183, 239], "\u3046\u3061\u3044": 175, "\u3046\u3061\u3069\u308c": 149, "\u3046\u3063\u304b\u308a": 48, "\u3046\u307e\u304f": [3, 4, 22, 50, 51], "\u3046\u30fc": [44, 231, 232, 233, 234, 235], "\u3047\u3048": [44, 231, 232, 233, 234, 235, 258, 259], "\u3047\u304a": [231, 232, 233, 234, 235, 257, 258, 259], "\u3047\u30fc": [44, 231, 232, 233, 234, 235], "\u3048\u3048": [44, 231, 232, 233, 234, 235], "\u3048\u30fc": [44, 231, 232, 233, 234, 235], "\u3049\u304a": [44, 231, 232, 233, 234, 235], "\u3049\u30fc": [44, 231, 232, 233, 234, 235], "\u304a\u3044": [0, 12, 14, 17, 39, 48, 51, 52, 53, 89, 180, 305, 308], "\u304a\u304a": [44, 231, 232, 233, 234, 235], "\u304a\u304a\u3084\u3084\u3086\u3086": [231, 232, 233, 234, 235, 258, 259], "\u304a\u304b": 31, "\u304a\u304b\u3052": 244, "\u304a\u304b\u3057": 37, "\u304a\u304b\u3057\u3044": 51, "\u304a\u304b\u3057\u304f": 37, "\u304a\u304d": [0, 12, 52, 56, 58], "\u304a\u304d\u307e\u3057\u3087": 305, "\u304a\u304f": [12, 225, 305], "\u304a\u3051": [156, 240], "\u304a\u3051\u308b": [0, 34, 47, 48, 56, 224, 282, 305, 307, 308], "\u304a\u3053": [0, 305], "\u304a\u3053\u306a\u3063": 308, "\u304a\u3055\u3089\u3044\u3057": 10, "\u304a\u3059\u3059\u3081": [124, 196, 292], "\u304a\u3059\u3059\u3081\u3057": [41, 42, 44, 123, 224, 225, 244, 296], "\u304a\u305d\u3089\u304f": [42, 51], "\u304a\u3070": [36, 39, 48, 50, 51, 54], "\u304a\u3070\u305f": [39, 48, 50, 51, 54], "\u304a\u3083": [231, 232, 233, 234, 235, 258, 259], "\u304a\u3088\u3073": [0, 8, 12, 22, 23, 44, 47, 52, 53, 56, 156, 175, 305, 308], "\u304a\u3089": [43, 56], "\u304a\u308a": [41, 49, 315], "\u304a\u30fc": [44, 231, 232, 233, 234, 235], "\u304a\u4f7f\u3044": 42, "\u304a\u5e97": 43, "\u304a\u5f85\u3061": 2, "\u304a\u77e5\u3089": 22, "\u304a\u9858\u3044": [10, 176], "\u304by": 48, "\u304b\u3042": [44, 231, 232, 233, 234, 235], "\u304b\u3048\u3063": [94, 156], "\u304b\u3048\u308b": [50, 210], "\u304b\u304b\u304d\u304d\u304f\u304f\u3051\u3051": [231, 232, 233, 234, 235, 258, 259], "\u304b\u304b\u3063": [43, 52, 95, 96, 156], "\u304b\u304b\u308a": [45, 51, 53, 173, 224, 225, 226, 274], "\u304b\u304b\u308b": [153, 173, 226, 308], "\u304b\u304b\u308f\u3089\u305a": 53, "\u304b\u304c\u304d\u304e\u304f\u3050\u3051\u3052": [231, 232, 233, 234, 235, 258, 259], "\u304b\u304e\u308a": 176, "\u304b\u3051": [48, 109], "\u304b\u3051\u308b": [10, 177], "\u304b\u3053\u308c": 52, "\u304b\u3057\u3089": [45, 143], "\u304b\u305a": [47, 49, 51], "\u304b\u305a\u3072\u3053\u3055\u3093": 47, "\u304b\u305f": [50, 51], "\u304b\u3061": [156, 299], "\u304b\u3061\u3083\u3093": [137, 163], "\u304b\u3064": [41, 43, 44, 45, 48, 53, 54, 156, 173, 208, 225, 299], "\u304b\u3064\u3059\u3079": 224, "\u304b\u3068": [56, 156], "\u304b\u3069": [41, 42, 43, 44, 45, 49, 50, 54, 105, 106, 122, 123, 124, 125, 132, 134, 135, 137, 140, 143, 149, 150, 156, 159, 163, 173, 177, 183, 189, 190, 195, 224, 301, 303, 308, 315], "\u304b\u3069\u3046": [12, 31, 41, 43, 44, 45, 50, 51, 94, 100, 111, 115, 124, 129, 135, 142, 152, 155, 156, 170, 183, 186, 202, 203, 210, 301], "\u304b\u306a\u308a": 49, "\u304b\u307e\u3044": 308, "\u304b\u3082": [10, 42, 43, 44, 49, 50, 54, 56, 81, 95, 96, 111, 114, 125, 126, 127, 132, 134, 138, 139, 140, 153, 154, 155, 156, 158, 161, 163, 164, 169, 173, 180, 195, 205, 224, 225, 244, 245, 246, 247, 310], "\u304b\u3084": 105, "\u304b\u3089": [0, 3, 9, 11, 12, 17, 18, 22, 23, 26, 27, 34, 36, 37, 39, 40, 41, 42, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 87, 93, 94, 95, 96, 105, 106, 110, 111, 114, 118, 121, 122, 124, 125, 132, 134, 135, 137, 140, 141, 142, 144, 149, 151, 152, 153, 156, 157, 158, 159, 161, 163, 164, 167, 173, 174, 175, 176, 177, 183, 188, 189, 193, 194, 196, 198, 201, 203, 204, 205, 206, 208, 209, 210, 219, 220, 223, 224, 225, 226, 227, 228, 229, 231, 234, 235, 239, 243, 244, 245, 246, 247, 250, 251, 252, 253, 254, 261, 262, 264, 265, 266, 267, 268, 272, 274, 276, 278, 282, 286, 292, 295, 296, 298, 301, 302, 305, 308, 310, 311, 314, 315], "\u304b\u308b": 52, "\u304b\u308f": [43, 44, 52], "\u304b\u308f\u304b\u3063": 149, "\u304b\u308f\u304b\u308a": [43, 44, 54], "\u304b\u308f\u308a": [42, 49, 50, 51, 301], "\u304b\u30fc": [44, 231, 232, 233, 234, 235], "\u304c\u3042": [44, 231, 232, 233, 234, 235], "\u304c\u3042\u308a": [12, 19, 141, 156, 188, 243, 248, 260, 261], "\u304c\u3042\u308c": [51, 248], "\u304c\u3044": [58, 156], "\u304c\u3044\u304f\u3064\u304b": [134, 141], "\u304c\u304e\u3052\u3054": [231, 235], "\u304c\u3053\u306e": [156, 224], "\u304c\u3059": [52, 125, 140], "\u304c\u305d\u306e": 111, "\u304c\u305d\u308c\u305e\u308c": 156, "\u304c\u305f\u304f": 156, "\u304c\u3061": [111, 262], "\u304c\u3063": [27, 31, 41, 42, 43, 44, 45, 53, 54, 111, 112, 132, 134, 135, 156, 244, 272, 274], "\u304c\u3064\u3044": [37, 44, 47, 81, 91, 156, 248, 254], "\u304c\u3064\u304d": 173, "\u304c\u3069": [43, 44, 53, 155, 228, 281], "\u304c\u3072\u3068\u3064": 243, "\u304c\u3088\u308a": 43, "\u304c\u308b": [54, 310], "\u304c\u308f\u304b\u3063": 111, "\u304c\u308f\u304b\u308a": [42, 43, 54, 110, 111, 135, 156, 194, 265, 266, 267, 268, 302, 311], "\u304c\u308f\u304b\u308b": 188, "\u304c\u308f\u304b\u308c": 156, "\u304c\u30fc": [44, 231, 232, 233, 234, 235], "\u304d\u3044": [44, 231, 232, 233, 234, 235], "\u304d\u30fc": [44, 231, 232, 233, 234, 235], "\u304e\u3044": [44, 231, 232, 233, 234, 235], "\u304e\u30fc": [44, 231, 232, 233, 234, 235], "\u304f\u3046": [44, 231, 232, 233, 234, 235], "\u304f\u3060": [0, 2, 5, 6, 7, 8, 12, 17, 18, 24, 25, 26, 27, 28, 30, 31, 32, 33, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 54, 87, 90, 91, 96, 98, 99, 100, 104, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 176, 177, 178, 180, 186, 188, 194, 197, 201, 202, 203, 205, 210, 224, 225, 227, 228, 237, 240, 243, 244, 254, 264, 281, 282, 290, 292, 296, 301, 303, 305, 306, 308, 311, 312, 313, 315], "\u304f\u308c": [10, 275], "\u304f\u308c\u308b": [0, 16, 17, 31, 43, 118, 124], "\u304f\u30fc": [44, 231, 232, 233, 234, 235], "\u3050\u3046": [44, 231, 232, 233, 234, 235], "\u3050\u3088\u3046": 188, "\u3050\u308b": [50, 51, 52, 223, 224, 225], "\u3050\u308b\u3093": [224, 225, 307], "\u3050\u30fc": [44, 231, 232, 233, 234, 235], "\u3051\u3048": [44, 231, 232, 233, 234, 235], "\u3051\u3069": 173, "\u3051\u30fc": [44, 231, 232, 233, 234, 235], "\u3052\u3048": [44, 231, 232, 233, 234, 235], "\u3053\u3046": [10, 43], "\u3053\u3046\u3059\u308c": 10, "\u3053\u304a": [44, 231, 232, 233, 234, 235], "\u3053\u3053": [12, 21, 95, 96, 111, 126, 156, 159, 224, 225, 229, 237, 243, 301, 302, 305, 308, 311, 315], "\u3053\u3053\u304b\u3089": 111, "\u3053\u3053\u3055": [231, 232, 233, 234, 235, 258, 259], "\u3053\u3053\u3067": [12, 302], "\u3053\u3054": [231, 232, 233, 234, 235, 258, 259], "\u3053\u3061\u3089": [17, 180, 194, 198, 202, 243, 308, 310], "\u3053\u3068": [0, 1, 3, 6, 7, 8, 9, 10, 11, 14, 17, 18, 20, 21, 23, 24, 25, 26, 27, 28, 31, 32, 33, 36, 37, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 61, 84, 87, 89, 90, 91, 93, 94, 96, 98, 99, 100, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 130, 132, 134, 135, 137, 138, 141, 143, 144, 145, 147, 149, 150, 151, 152, 153, 156, 157, 161, 162, 163, 164, 165, 167, 168, 171, 173, 174, 175, 176, 177, 178, 180, 183, 185, 186, 188, 189, 190, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 208, 209, 210, 223, 224, 225, 226, 227, 228, 229, 231, 232, 233, 234, 235, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 272, 274, 275, 276, 281, 282, 291, 292, 295, 296, 298, 301, 302, 303, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "\u3053\u306a\u3044": [49, 50], "\u3053\u306e": [0, 2, 3, 5, 6, 7, 8, 11, 12, 17, 18, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 61, 68, 74, 81, 85, 87, 90, 91, 92, 95, 96, 98, 99, 100, 101, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 176, 177, 180, 182, 183, 186, 188, 189, 191, 192, 193, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 222, 224, 225, 226, 227, 228, 231, 232, 233, 234, 235, 237, 238, 240, 241, 243, 244, 245, 246, 247, 248, 249, 250, 251, 253, 254, 257, 258, 259, 264, 265, 266, 268, 274, 275, 276, 277, 278, 281, 283, 286, 291, 292, 298, 299, 301, 305, 306, 307, 308, 309, 310, 311, 314, 315], "\u3053\u308c": [0, 6, 11, 12, 16, 17, 18, 27, 31, 34, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 84, 91, 96, 99, 107, 110, 111, 114, 124, 125, 126, 127, 128, 132, 133, 134, 135, 137, 140, 142, 144, 145, 149, 151, 152, 153, 156, 157, 161, 164, 168, 175, 177, 180, 183, 186, 188, 193, 197, 201, 202, 205, 206, 210, 211, 224, 225, 226, 227, 229, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 262, 264, 272, 274, 276, 281, 292, 298, 299, 301, 303, 305, 306, 310, 311, 314, 315], "\u3053\u308c\u3089": [3, 12, 17, 18, 24, 25, 28, 31, 32, 41, 42, 43, 44, 45, 47, 48, 89, 90, 91, 104, 111, 124, 132, 133, 134, 135, 137, 138, 142, 144, 145, 149, 151, 156, 171, 173, 175, 177, 180, 188, 195, 203, 206, 223, 224, 225, 230, 241, 244, 245, 248, 252, 253, 254, 292, 301, 306, 307, 308, 311], "\u3053\u30fc": [44, 231, 232, 233, 234, 235], "\u3054\u304a": [44, 231, 232, 233, 234, 235], "\u3054\u3068": [9, 12, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 54, 90, 125, 133, 156, 158, 168, 191, 192, 202, 205, 245, 281, 286, 302, 303, 309], "\u3054\u307f": [10, 44, 48], "\u3054\u3089\u3093\u304f": 13, "\u3054\u30fc": [44, 231, 232, 233, 234, 235], "\u3054\u89a7\u304f": [14, 308], "\u3055\u3042": [44, 231, 232, 233, 234, 235], "\u3055\u3044": [0, 2, 5, 6, 7, 8, 12, 14, 17, 18, 24, 25, 26, 27, 28, 30, 31, 32, 33, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 87, 90, 91, 96, 98, 99, 100, 104, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 176, 177, 178, 180, 186, 188, 194, 197, 201, 202, 203, 205, 210, 224, 225, 227, 228, 237, 240, 243, 244, 254, 264, 281, 282, 290, 292, 296, 301, 303, 305, 306, 308, 311, 312, 313, 315], "\u3055\u304c": 302, "\u3055\u304d": 305, "\u3055\u3056\u3057\u3058\u3059": [231, 232, 233, 234, 235, 258, 259], "\u3055\u3057\u3057\u3059\u3059\u305b": [231, 232, 233, 234, 235, 258, 259], "\u3055\u305b": 10, "\u3055\u306a\u304f": [224, 225], "\u3055\u307e\u3056\u307e\u306a": [22, 304, 311], "\u3055\u3089": 310, "\u3055\u3089\u306b": [0, 34, 49, 50, 56, 91, 93, 132, 134, 135, 183, 196, 203, 252, 254, 302, 307, 308], "\u3055\u3093": [6, 17, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 91, 111, 132, 134, 135, 137, 156, 161, 163, 165, 168, 231, 232, 233, 234, 235, 244, 247, 252, 274, 281, 292, 306], "\u3055\u30fc": [44, 231, 232, 233, 234, 235], "\u3056\u3042": [44, 231, 232, 233, 234, 235], "\u3056\u3058\u305c\u305e": [231, 235], "\u3056\u30fc": [44, 231, 232, 233, 234, 235], "\u3057\u3044": [44, 231, 232, 233, 234, 235, 299, 301], "\u3057\u3046\u308b": 49, "\u3057\u304b": [17, 41, 43, 45, 49, 50, 58, 94, 111, 132, 134, 135, 156, 161, 177, 195, 224, 225, 244, 246, 247, 262, 264, 277, 278, 292, 305, 310], "\u3057\u304b\u3057": [17, 41, 43, 44, 45, 52, 111, 135, 137, 143, 156, 186, 225, 243, 244, 247, 264, 281, 292, 299, 301, 310], "\u3057\u304d\u3044": [41, 42, 43, 44, 53, 54, 186], "\u3057\u304d\u3063": [197, 227], "\u3057\u304d\u308c": 47, "\u3057\u304f": 48, "\u3057\u3059\u304e\u308b": 41, "\u3057\u305f": 103, "\u3057\u3064\u3064": 14, "\u3057\u3066": [6, 10, 12, 14, 17, 18, 31, 32, 37, 42, 43, 45, 47, 48, 156, 173, 177, 197, 301, 306, 307, 308], "\u3057\u306a\u3044": [44, 50], "\u3057\u306a\u304f": 41, "\u3057\u307e": 10, "\u3057\u307e\u3044": [10, 18, 43, 44, 45, 52, 149, 163, 176, 246, 251, 301, 305, 313], "\u3057\u307e\u3046": [0, 10, 12, 18, 37, 39, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 94, 125, 156, 163, 173, 264], "\u3057\u307e\u3057": [43, 44, 48, 53], "\u3057\u307e\u3057\u3087": [18, 91, 163, 245, 246, 247, 264, 314], "\u3057\u307e\u3059": [12, 44, 45, 111, 132, 134, 135, 156, 180, 186, 197, 202, 224, 225, 252, 275, 276, 299, 311], "\u3057\u307e\u305b": [10, 31, 45, 134, 135, 156, 177, 180, 244, 250, 272, 301], "\u3057\u307e\u3063": [49, 51, 52], "\u3057\u3084\u3059\u3044": [45, 180, 237], "\u3057\u3084\u3059\u304f": [12, 18, 42, 47, 51], "\u3057\u3084\u3059\u304f\u3057": 42, "\u3057\u3088": [11, 39, 43, 45, 48, 51, 52, 114, 115, 125, 137, 156, 163, 164, 188, 226, 305], "\u3057\u3089": 45, "\u3057\u308a": 10, "\u3057\u308c": [10, 42, 43, 44, 49, 50, 54, 56, 81, 95, 96, 111, 114, 125, 126, 127, 132, 134, 138, 139, 140, 153, 154, 155, 156, 158, 161, 163, 164, 169, 173, 180, 195, 205, 224, 225, 244, 245, 246, 247, 310], "\u3057\u30fc": [44, 231, 232, 233, 234, 235], "\u3058\u3044": [44, 231, 232, 233, 234, 235], "\u3058\u304d": 99, "\u3058\u3083\u3093": 56, "\u3058\u308b": 54, "\u3058\u30fc": [44, 231, 232, 233, 234, 235], "\u3059\u3046": [44, 231, 232, 233, 234, 235], "\u3059\u304e\u307e\u305b": 307, "\u3059\u304e\u308b": [45, 53, 91], "\u3059\u304f": 210, "\u3059\u3050": [0, 54, 153, 157, 180, 292], "\u3059\u3053\u308c\u3089": 156, "\u3059\u3067": [12, 41, 42, 45, 49, 81, 114, 124, 164, 168, 226, 240, 281, 299], "\u3059\u3068": 111, "\u3059\u306a\u308f\u3061": 305, "\u3059\u3079": [11, 18, 39, 43, 44, 45, 49, 50, 53, 54, 90, 93, 94, 109, 110, 111, 122, 124, 125, 127, 132, 134, 135, 136, 137, 141, 149, 152, 156, 163, 164, 168, 170, 173, 176, 177, 195, 219, 224, 225, 231, 235, 250, 254, 264, 281, 292, 298, 311], "\u3059\u3079\u304d": 11, "\u3059\u3079\u3066": [31, 37, 39, 42, 44, 45, 47, 49, 50, 53, 58, 74, 91, 93, 94, 98, 99, 110, 111, 112, 114, 124, 125, 132, 137, 149, 150, 156, 160, 161, 164, 168, 176, 177, 183, 224, 225, 228, 244, 260, 268, 271, 281, 306, 308], "\u3059\u308b": [0, 1, 2, 3, 4, 9, 11, 17, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 68, 74, 81, 84, 85, 89, 93, 95, 96, 97, 98, 104, 106, 107, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 138, 140, 141, 143, 144, 145, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 170, 172, 173, 174, 175, 176, 178, 180, 183, 184, 185, 186, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 208, 209, 210, 211, 212, 219, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232, 233, 234, 235, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 249, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 272, 274, 275, 276, 277, 278, 279, 280, 281, 282, 286, 291, 292, 295, 296, 298, 299, 300, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315], "\u3059\u308b\u304b": 306, "\u3059\u308c": [0, 18, 42, 43, 44, 46, 50, 144, 151, 156, 176, 183, 192, 195, 224, 225, 274, 306, 308], "\u3059\u30fc": [44, 231, 232, 233, 234, 235], "\u305a\u3041\u305a\u3043\u305a\u3047\u305a\u3049": [231, 235], "\u305a\u3046": [44, 231, 232, 233, 234, 235], "\u305a\u305b": [231, 232, 233, 234, 235, 258, 259], "\u305a\u3064": [111, 156, 175, 176, 281, 310], "\u305a\u306b": [18, 91], "\u305a\u308c": [0, 11, 93, 125, 130, 175, 188, 282, 298, 305], "\u305a\u308c\u308b": [44, 45], "\u305a\u30fc": [44, 231, 232, 233, 234, 235], "\u305b\u3044": [48, 49, 51, 52], "\u305b\u3044\u305c\u3044": 161, "\u305b\u3048": [44, 231, 232, 233, 234, 235], "\u305b\u304b\u306d": 51, "\u305b\u305a": [111, 128], "\u305b\u306a": [224, 225], "\u305b\u308b": [0, 11, 14, 42, 43, 45, 53, 111, 161, 180, 191, 192, 193, 201, 202, 231, 235, 257, 258, 259, 296], "\u305b\u308c": [0, 110], "\u305b\u3093\u306a": 56, "\u305b\u30fc": [44, 231, 232, 233, 234, 235], "\u305c\u3048": [44, 231, 232, 233, 234, 235], "\u305c\u30fc": [44, 231, 232, 233, 234, 235], "\u305d\u3046": [10, 18, 21, 31, 41, 42, 52, 74, 131, 140, 141, 142, 153, 155, 156, 183, 195, 196, 219, 225], "\u305d\u3046\u3044\u3046": 56, "\u305d\u3046\u3044\u3063": 52, "\u305d\u304a": [44, 231, 232, 233, 234, 235], "\u305d\u3053": [56, 134, 156, 301, 305], "\u305d\u3053\u306b": 162, "\u305d\u3053\u307e\u3067": 54, "\u305d\u3057": [22, 111], "\u305d\u3057\u3066": [0, 31, 44, 111, 156, 168, 205, 206, 305, 306, 310, 311], "\u305d\u305d\u305f": [231, 232, 233, 234, 235, 258, 259], "\u305d\u305e": [231, 232, 233, 234, 235, 258, 259], "\u305d\u3061\u3089": [31, 51, 52], "\u305d\u306e": [0, 6, 7, 10, 11, 12, 17, 18, 22, 23, 24, 25, 28, 30, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 74, 91, 93, 94, 96, 99, 100, 106, 111, 112, 121, 122, 123, 124, 125, 132, 134, 135, 137, 142, 149, 150, 152, 153, 156, 158, 161, 163, 167, 173, 175, 176, 177, 183, 186, 195, 201, 202, 205, 219, 221, 224, 225, 228, 229, 237, 245, 247, 248, 250, 254, 260, 264, 272, 274, 275, 276, 278, 281, 282, 295, 298, 299, 301, 303, 306, 307, 308, 310, 311, 312, 313, 315], "\u305d\u306e\u3046\u3061": 156, "\u305d\u306e\u305b\u3044": 52, "\u305d\u306e\u307e\u307e": 41, "\u305d\u306e\u3088\u3046": 121, "\u305d\u306e\u5f8c": [12, 43, 44, 58, 94, 111, 156, 225], "\u305d\u306e\u969b": 12, "\u305d\u308c": [11, 12, 17, 30, 33, 37, 41, 43, 44, 50, 53, 56, 111, 112, 124, 132, 135, 156, 161, 163, 177, 194, 198, 221, 224, 225, 244, 253, 264, 282, 299, 301, 305, 306, 308, 310, 314], "\u305d\u308c\u304b\u3089": [91, 156], "\u305d\u308c\u305e\u308c": [6, 11, 14, 18, 31, 41, 43, 44, 49, 52, 56, 95, 111, 125, 156, 161, 168, 175, 180, 191, 193, 195, 202, 219, 225, 241, 254, 286, 298, 299, 301, 305, 306, 308, 310, 315], "\u305d\u308c\u3086\u3048": [224, 305], "\u305d\u308c\u3089": [27, 42, 44, 50, 52, 53, 58, 60, 81, 90, 124, 137, 156, 157, 163, 171, 174, 231, 243, 244, 292], "\u305d\u308d\u305d\u308d": 308, "\u305d\u3093\u306a": [31, 161], "\u305d\u30fc": [44, 231, 232, 233, 234, 235], "\u305e\u3044": [134, 135], "\u305e\u304a": [44, 231, 232, 233, 234, 235], "\u305e\u308c": [11, 12, 156, 177, 225, 253], "\u305e\u30fc": [44, 231, 232, 233, 234, 235], "\u305f\u3042": [44, 231, 232, 233, 234, 235], "\u305f\u3044": [6, 7, 8, 16, 18, 24, 25, 27, 28, 30, 31, 32, 34, 39, 41, 42, 43, 49, 51, 52, 54, 56, 58, 90, 110, 111, 114, 132, 133, 137, 138, 140, 143, 149, 154, 155, 156, 161, 163, 165, 168, 173, 175, 176, 177, 180, 194, 196, 201, 205, 206, 224, 243, 244, 250, 253, 260, 262, 264, 274, 275, 282, 298, 305, 306, 307, 308, 310, 312], "\u305f\u3044\u304f\u3064\u304b": [51, 237], "\u305f\u304b": [39, 41, 50, 54, 96, 117, 124, 126, 127, 128, 153, 156, 180, 251], "\u305f\u304b\u3063": [45, 251, 314], "\u305f\u304c\u3063": 111, "\u305f\u304f": [6, 17, 39, 41, 43, 44, 45, 48, 50, 51, 56, 81, 91, 111, 123, 132, 134, 135, 137, 156, 161, 163, 165, 168, 244, 247, 252, 281, 292, 306], "\u305f\u3051": 56, "\u305f\u3051\u3069": 156, "\u305f\u3055\u3093": [36, 39, 48, 50, 51, 52, 54], "\u305f\u3057\u304d\u3044": 186, "\u305f\u3059\u3079\u3066": 156, "\u305f\u3060": [41, 42, 43, 44, 45, 54, 91, 111, 237], "\u305f\u3060\u3044": 41, "\u305f\u3060\u304d": 52, "\u305f\u3060\u3051": 47, "\u305f\u3060\u3057": [34, 36, 39, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 89, 111, 134, 141, 156, 158, 175, 186, 224, 225, 231, 235, 244, 272, 299], "\u305f\u3060\u3061": [231, 232, 233, 234, 235, 258, 259], "\u305f\u3061": 248, "\u305f\u3061\u3061\u3064\u3064": [231, 232, 233, 234, 235, 258, 259], "\u305f\u3068\u3048": [137, 156, 157, 301], "\u305f\u3069\u3063": 311, "\u305f\u3069\u308b": [56, 307], "\u305f\u3070\u304b\u308a": 226, "\u305f\u3073": [12, 51, 93, 176, 315], "\u305f\u3076\u3093": 31, "\u305f\u3079": [257, 258, 259], "\u305f\u307b\u3046": 156, "\u305f\u307e\u307e": [51, 292], "\u305f\u3081": [0, 1, 2, 3, 4, 5, 6, 8, 12, 14, 17, 19, 21, 22, 23, 24, 25, 27, 28, 31, 32, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 68, 81, 84, 87, 91, 94, 95, 98, 100, 106, 108, 111, 114, 121, 122, 123, 124, 125, 126, 132, 134, 137, 141, 142, 143, 149, 150, 155, 161, 163, 164, 173, 174, 175, 176, 177, 178, 180, 183, 184, 186, 188, 189, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 228, 229, 237, 243, 244, 245, 246, 247, 248, 250, 251, 253, 254, 257, 258, 259, 260, 261, 272, 274, 275, 276, 278, 281, 286, 292, 296, 298, 299, 301, 303, 305, 306, 307, 308, 309, 310, 311, 313, 315], "\u305f\u3081\u3057": 315, "\u305f\u3082\u306e": 56, "\u305f\u3089": [10, 12, 17, 18, 31, 37, 41, 43, 44, 49, 50, 51, 54, 56, 81, 84, 111, 118, 126, 127, 128, 134, 137, 142, 149, 150, 152, 153, 156, 157, 163, 167, 173, 180, 183, 198, 210, 225, 237, 246, 250, 264, 292, 296, 310], "\u305f\u308a": [0, 3, 10, 41, 43, 44, 45, 49, 50, 51, 52, 54, 96, 111, 123, 124, 125, 155, 156, 161, 191, 223, 244, 254, 282, 296], "\u305f\u308f\u3051": 56, "\u305f\u30fc": [44, 231, 232, 233, 234, 235], "\u3060\u3042": [44, 231, 232, 233, 234, 235], "\u3060\u3044": [39, 49], "\u3060\u304b\u3089": [132, 135, 156], "\u3060\u3051": [3, 6, 11, 17, 18, 23, 27, 28, 31, 32, 33, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 56, 68, 84, 96, 97, 99, 100, 107, 111, 112, 114, 121, 124, 125, 128, 132, 133, 134, 135, 137, 140, 141, 142, 144, 149, 151, 153, 154, 156, 158, 161, 163, 164, 167, 168, 170, 173, 177, 178, 180, 183, 194, 198, 202, 205, 206, 210, 219, 221, 224, 225, 226, 227, 228, 243, 244, 245, 246, 247, 248, 254, 262, 267, 268, 274, 276, 291, 292, 296, 301, 305, 310], "\u3060\u3051\u304d\u3061\u3093": 51, "\u3060\u3055\u3044": [0, 3, 6, 7, 12, 13, 14, 17, 18, 19, 21, 23, 27, 31, 32, 41, 44, 47, 49, 50, 52, 54, 74, 91, 94, 95, 110, 111, 132, 133, 134, 135, 137, 140, 141, 143, 150, 156, 158, 161, 163, 177, 180, 195, 197, 201, 202, 203, 206, 219, 224, 225, 232, 233, 234, 235, 236, 243, 244, 248, 250, 257, 258, 259, 283, 292, 298, 306, 308], "\u3060\u3057": [39, 176], "\u3060\u3059": 51, "\u3060\u3063": [41, 43, 47, 50, 51, 53, 56, 93, 123, 124, 142, 156, 186, 225, 286, 301, 302], "\u3060\u3068": [10, 156], "\u3060\u3089": 125, "\u3060\u308d": 56, "\u3060\u30fc": [44, 231, 232, 233, 234, 235], "\u3061\u3044": [44, 231, 232, 233, 234, 235], "\u3061\u3083\u3093": 307, "\u3061\u3083\u3093\u306d\u308b": 56, "\u3061\u308b": 111, "\u3061\u30fc": [44, 231, 232, 233, 234, 235], "\u3062\u3044": [44, 231, 232, 233, 234, 235], "\u3062\u3064\u3065": [231, 232, 233, 234, 235, 258, 259], "\u3062\u30fc": [44, 231, 232, 233, 234, 235], "\u3064\u3044": 311, "\u3064\u3046": [44, 231, 232, 233, 234, 235], "\u3064\u304b": 38, "\u3064\u304b\u3046": [43, 44], "\u3064\u304b\u3063": 53, "\u3064\u304d": [34, 49, 51, 52, 91, 107, 154, 156, 167, 194, 243, 246], "\u3064\u3051": [41, 42, 43, 156, 180, 188], "\u3064\u3051\u308b": [10, 49, 51, 91, 156, 295, 313], "\u3064\u3064": [56, 202, 301], "\u3064\u3065\u3044": 311, "\u3064\u3065\u304f": 180, "\u3064\u3076\u3084\u304d": 226, "\u3064\u307e\u308a": [43, 50, 111, 118, 156, 168, 272], "\u3064\u30fc": [44, 231, 232, 233, 234, 235], "\u3065\u3046": [44, 231, 232, 233, 234, 235], "\u3065\u3051": [47, 48, 202], "\u3065\u3051\u308b": 58, "\u3065\u30fc": [44, 231, 232, 233, 234, 235], "\u3066\u3048": [44, 231, 232, 233, 234, 235], "\u3066\u304d": 100, "\u3066\u304f": 14, "\u3066\u307f\u307e\u3057\u3087": 315, "\u3066\u308c": 137, "\u3066\u30fc": [44, 231, 232, 233, 234, 235], "\u3067\u3042\u3044\u307e\u3044": 156, "\u3067\u3044": [41, 50, 156, 225, 305, 311], "\u3067\u3044\u3046": [229, 306], "\u3067\u3048": [44, 231, 232, 233, 234, 235], "\u3067\u304d": [0, 1, 6, 7, 10, 11, 12, 13, 14, 17, 18, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 61, 68, 84, 87, 89, 90, 91, 93, 94, 96, 97, 98, 99, 100, 101, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 138, 140, 141, 142, 143, 144, 145, 149, 151, 152, 153, 154, 155, 156, 157, 159, 161, 164, 165, 166, 167, 168, 171, 173, 174, 175, 176, 177, 178, 180, 183, 184, 185, 186, 188, 189, 190, 191, 192, 193, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 208, 209, 210, 219, 223, 224, 225, 226, 227, 228, 229, 231, 232, 233, 234, 235, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 272, 274, 275, 276, 277, 278, 281, 291, 292, 295, 296, 298, 301, 302, 303, 305, 306, 307, 308, 309, 310, 312, 313, 314, 315], "\u3067\u304d\u305a": 54, "\u3067\u304d\u308b": [0, 3, 6, 9, 12, 14, 27, 31, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 68, 91, 96, 106, 110, 111, 122, 133, 137, 143, 155, 156, 159, 161, 171, 175, 176, 177, 180, 183, 184, 189, 195, 202, 203, 206, 224, 225, 226, 239, 240, 243, 244, 246, 247, 248, 250, 264, 275, 281, 292, 301, 305, 306, 311, 312, 313], "\u3067\u304f": [3, 18, 21, 23, 49, 91, 111, 156, 161, 180, 201, 225, 243], "\u3067\u3053\u306e": [44, 53, 281], "\u3067\u3057": [41, 42, 43, 44, 45, 46, 49, 50, 51, 52, 53, 56, 225, 245, 302, 305], "\u3067\u3057\u304b": [7, 34, 42, 262, 277], "\u3067\u3057\u304d\u3044": 42, "\u3067\u3057\u3087": [0, 6, 20, 31, 49, 53, 111, 125, 141, 142, 149, 156, 173, 180, 205, 225, 226, 306], "\u3067\u3059": [0, 3, 6, 7, 8, 10, 11, 12, 14, 16, 17, 18, 19, 21, 24, 25, 27, 28, 31, 32, 34, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 103, 106, 107, 108, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 173, 174, 175, 176, 177, 178, 180, 181, 183, 184, 186, 188, 189, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 286, 291, 292, 295, 296, 298, 299, 301, 302, 303, 305, 306, 308, 309, 310, 311, 312, 314, 315], "\u3067\u3059\u306d": 10, "\u3067\u3059\u3079\u3066": 171, "\u3067\u305d\u3046": 133, "\u3067\u3060\u3051": 111, "\u3067\u3064\u306a\u3052\u308b": 156, "\u3067\u3069": [111, 133, 156, 159], "\u3067\u3069\u3053": 100, "\u3067\u306a\u3044": 155, "\u3067\u306a\u3051\u308c": [45, 124, 143, 149, 155, 224, 225, 237], "\u3067\u306b": [43, 51, 52, 53, 125, 140, 144, 151, 226, 301], "\u3067\u306e": [49, 52, 206, 265, 266, 267, 268], "\u3067\u306e\u307f": [41, 111], "\u3067\u306f": 49, "\u3067\u307b\u3068\u3093\u3069": [43, 111], "\u3067\u307e\u3068\u3081": 243, "\u3067\u307f": 0, "\u3067\u3082": [0, 14, 17, 18, 19, 23, 28, 31, 32, 33, 39, 41, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 100, 111, 124, 135, 137, 149, 156, 161, 163, 176, 177, 180, 191, 192, 193, 205, 206, 210, 224, 227, 228, 237, 240, 244, 247, 248, 250, 254, 274, 275, 298, 299, 301, 308, 310, 312, 315], "\u3067\u3082\u3059\u3079\u3066": [51, 264], "\u3067\u3082\u3063\u3068\u3082": 92, "\u3067\u3084": 56, "\u3067\u3088\u308a": [42, 49, 54], "\u3067\u30fc": [44, 231, 232, 233, 234, 235], "\u3067\u5024": [175, 308], "\u3068\u3044\u3044": 244, "\u3068\u3044\u3046": [0, 9, 10, 14, 17, 31, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 68, 91, 93, 98, 99, 108, 111, 118, 124, 126, 127, 128, 132, 134, 135, 138, 140, 141, 143, 144, 145, 149, 151, 152, 153, 154, 156, 158, 159, 161, 163, 167, 168, 171, 173, 175, 176, 177, 178, 180, 188, 193, 197, 201, 202, 203, 206, 210, 223, 224, 225, 229, 231, 236, 237, 241, 243, 244, 245, 246, 247, 248, 250, 251, 254, 260, 261, 262, 264, 265, 266, 267, 268, 272, 274, 277, 278, 281, 282, 292, 298, 299, 301, 302, 305, 306, 307, 308, 310, 311, 312, 315], "\u3068\u3044\u3051": [50, 125, 150, 156, 161, 205, 224, 237, 278, 298, 303, 310], "\u3068\u3044\u3063": [43, 44, 47, 48, 49, 50, 51, 91, 111, 125, 132, 134, 135, 137, 143, 156, 173, 188, 202, 223, 224, 225, 228, 254, 292, 315], "\u3068\u3048": [0, 31, 34, 44, 45, 49, 50, 58, 68, 93, 94, 110, 111, 114, 125, 132, 134, 135, 141, 142, 155, 156, 157, 158, 164, 175, 180, 193, 203, 206, 219, 224, 225, 237, 240, 244, 245, 246, 247, 264, 272, 281, 299, 315], "\u3068\u304a": [44, 231, 232, 233, 234, 235], "\u3068\u304a\u308a": [34, 43, 44, 45, 111, 124, 149, 175, 176, 197, 305, 306, 315], "\u3068\u304b": 56, "\u3068\u304b\u3048\u3063": 156, "\u3068\u304d": [0, 6, 7, 9, 10, 11, 12, 24, 25, 27, 28, 30, 31, 32, 36, 37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 58, 81, 90, 91, 94, 95, 96, 97, 99, 101, 103, 106, 110, 111, 112, 114, 118, 124, 125, 126, 131, 132, 133, 134, 135, 137, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 155, 156, 157, 159, 160, 161, 163, 164, 166, 167, 168, 173, 175, 177, 178, 180, 188, 191, 201, 202, 203, 206, 223, 224, 225, 226, 228, 229, 231, 232, 233, 234, 235, 237, 240, 243, 244, 248, 250, 251, 252, 253, 262, 275, 281, 282, 292, 298, 299, 305, 306, 307, 308, 311, 312], "\u3068\u304d\u3057\u304b": 118, "\u3068\u304d\u3069\u304d": [42, 51], "\u3068\u3053": 18, "\u3068\u3053\u306e": [137, 149, 156, 244, 250, 281], "\u3068\u3053\u308d": [16, 17, 40, 50, 52, 111, 132, 135, 154, 156, 198, 201, 264], "\u3068\u3053\u308d\u3044\u304f\u3064\u304b": 91, "\u3068\u3055\u3089\u306b": 6, "\u3068\u3057": [11, 41, 42, 45, 48, 49, 51, 58, 111, 114, 137, 156, 163, 164, 174, 175, 176, 177, 183, 188, 196, 198, 225, 226, 243, 250, 251, 252, 253, 264, 272, 282, 305, 307, 310], "\u3068\u3057\u3066": [0, 11, 12, 14, 15, 17, 18, 20, 24, 25, 27, 28, 30, 31, 32, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 61, 84, 87, 89, 90, 91, 93, 96, 100, 111, 112, 115, 117, 121, 126, 127, 128, 129, 132, 134, 135, 136, 137, 140, 141, 152, 154, 156, 158, 159, 161, 163, 166, 167, 170, 175, 176, 177, 180, 185, 188, 191, 193, 195, 197, 202, 203, 205, 206, 223, 224, 225, 229, 239, 240, 243, 244, 245, 246, 248, 250, 251, 252, 254, 255, 260, 262, 264, 274, 275, 278, 290, 292, 295, 298, 299, 301, 305, 306, 307, 308, 309, 310, 312, 314, 315], "\u3068\u3057\u307e\u3057\u3087": [310, 314], "\u3068\u3059\u3050": 226, "\u3068\u3059\u3079\u3066": [47, 124, 133, 149, 152, 156, 173], "\u3068\u3059\u308b": [42, 43, 45, 53], "\u3068\u3059\u308c": 0, "\u3068\u305d\u306e": [42, 45, 93, 98, 137, 149, 180, 246], "\u3068\u3063": 177, "\u3068\u3064\u3044": 315, "\u3068\u3066": [0, 43, 44, 52, 56, 125, 156, 224, 225, 250, 254, 292], "\u3068\u3068": [16, 17, 231, 232, 233, 234, 235, 258, 259], "\u3068\u3068\u3082": 74, "\u3068\u3068\u3082\u306b": 305, "\u3068\u3069": [110, 231, 232, 233, 234, 235, 249, 258, 259], "\u3068\u306a\u3063": 48, "\u3068\u306a\u308a": [44, 53, 111, 142, 156, 191, 193, 206, 224, 292, 312], "\u3068\u306e": [50, 51, 134, 135, 225], "\u3068\u307f": [44, 48, 156, 178, 224, 275], "\u3068\u3082": [50, 54, 56, 111, 132, 134, 135, 149, 156, 176, 195, 203, 205, 206, 210, 224, 225, 237, 278, 281, 303, 315], "\u3068\u3082\u3063\u3068": 31, "\u3068\u3088\u3044": 31, "\u3068\u308a": [14, 51, 194, 198, 221], "\u3068\u308a\u3068\u3093": [224, 225], "\u3068\u308b": 56, "\u3068\u308f\u304b\u308a": [248, 302], "\u3068\u308f\u304b\u308b": 12, "\u3068\u30fc": [44, 231, 232, 233, 234, 235], "\u3068\u4f3c": 45, "\u3068\u4f3c\u305f": 96, "\u3069\u3046": [10, 36, 41, 42, 45, 47, 50, 52, 94, 109, 111, 113, 117, 119, 126, 127, 128, 130, 132, 134, 135, 137, 141, 156, 158, 173, 177, 180, 183, 196, 219, 264, 301, 306], "\u3069\u304a": [44, 231, 232, 233, 234, 235], "\u3069\u304a\u308a": [51, 54], "\u3069\u3053": [31, 39, 43, 49, 54], "\u3069\u3061\u3089": [17, 19, 50, 51, 54, 87, 134, 156, 163, 180, 203, 252, 292, 308, 310], "\u3069\u3061\u3089\u304b": [34, 193, 205, 206, 224, 225], "\u3069\u306e": [31, 43, 46, 52, 111, 156, 168, 188, 189, 225, 239, 244, 251, 306, 310], "\u3069\u306e\u304f\u3089\u3044": [41, 96, 156], "\u3069\u308c": [41, 90, 95, 96, 111, 112, 124, 125, 126, 127, 128, 133, 137, 149, 150, 152, 155, 156, 161, 163, 201, 224, 225, 264, 292], "\u3069\u3093": [162, 237], "\u3069\u3093\u306a": [52, 96, 111, 180], "\u3069\u30fc": [44, 231, 232, 233, 234, 235], "\u306a\u3042": [44, 231, 232, 233, 234, 235], "\u306a\u3044": [0, 9, 11, 12, 14, 17, 18, 21, 23, 31, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 74, 81, 90, 91, 93, 94, 95, 96, 99, 101, 103, 106, 107, 108, 110, 111, 112, 115, 116, 118, 122, 123, 124, 125, 131, 132, 133, 134, 135, 140, 141, 142, 143, 149, 150, 153, 154, 155, 156, 157, 158, 159, 161, 167, 168, 173, 174, 175, 176, 177, 178, 180, 184, 191, 192, 193, 194, 196, 201, 202, 205, 206, 210, 219, 223, 224, 225, 226, 237, 239, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 261, 262, 264, 272, 274, 275, 276, 277, 278, 298, 299, 301, 303, 305, 306, 308, 310, 311, 313], "\u306a\u304a": [12, 111, 224, 299], "\u306a\u304a\u3053\u306e": 176, "\u306a\u304a\u3057": 49, "\u306a\u304a\u3059": [49, 152], "\u306a\u304b": [10, 41, 149], "\u306a\u304b\u3063": [41, 42, 43, 47, 49, 50, 51, 52, 54, 93, 97, 99, 106, 109, 111, 113, 119, 126, 127, 128, 130, 137, 143, 152, 156, 157, 173, 175, 176, 183, 186, 205, 208, 210, 225, 244, 246, 301, 308], "\u306a\u304c\u3089": [0, 12, 43, 47, 132, 134, 135, 156, 168, 180, 264, 308], "\u306a\u304c\u308a": 52, "\u306a\u304c\u308b": 47, "\u306a\u304e": 210, "\u306a\u304f": [0, 3, 10, 12, 18, 21, 27, 31, 36, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 91, 111, 112, 123, 124, 126, 131, 135, 137, 141, 144, 149, 151, 156, 161, 163, 173, 176, 177, 183, 197, 202, 205, 206, 210, 219, 223, 224, 225, 237, 239, 240, 244, 245, 246, 247, 254, 267, 268, 281, 286, 292, 296, 305, 306, 308, 310, 314], "\u306a\u304f\u3059": 124, "\u306a\u304f\u3059\u3079": 197, "\u306a\u3051\u308c": [21, 31, 41, 45, 46, 47, 51, 52, 54, 68, 74, 87, 91, 100, 110, 111, 112, 114, 125, 131, 132, 134, 135, 137, 142, 149, 153, 156, 161, 164, 175, 176, 177, 178, 180, 183, 194, 195, 196, 201, 203, 210, 224, 225, 237, 243, 244, 245, 246, 247, 253, 305], "\u306a\u3055": [44, 178, 204], "\u306a\u3055\u3093": 3, "\u306a\u3057": [41, 45, 48, 49, 50, 52, 53, 58, 93, 100, 107, 123, 135, 141, 143, 149, 156, 167, 175, 189, 194, 202, 210, 224, 231, 232, 233, 234, 235, 251, 257, 258, 259, 272, 274, 275, 282, 286, 291, 298, 305], "\u306a\u3059": 190, "\u306a\u305c": [6, 7, 8, 34, 41, 44, 50, 58, 96, 110, 111, 118, 124, 132, 134, 135, 137, 141, 142, 149, 156, 161, 167, 173, 175, 180, 201, 205, 219, 224, 225, 229, 240, 244, 245, 246, 247, 250, 251, 261, 262, 264, 265, 266, 267, 268, 274, 286], "\u306a\u305c\u306a\u3089": 134, "\u306a\u305f": [50, 248], "\u306a\u305f\u3081": 44, "\u306a\u3063": [0, 6, 10, 12, 14, 24, 25, 26, 28, 30, 32, 33, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 91, 93, 94, 95, 108, 111, 118, 125, 126, 134, 141, 156, 168, 197, 208, 209, 224, 225, 228, 246, 248, 250, 281, 292, 296, 301, 302, 305, 308, 310, 311, 312], "\u306a\u3068": [53, 231, 232, 233, 234, 235, 257, 258, 259], "\u306a\u3068\u304d": [0, 52], "\u306a\u3068\u3057\u3066": [257, 258, 259], "\u306a\u3069": [0, 6, 7, 8, 11, 12, 13, 17, 20, 31, 39, 41, 42, 43, 45, 47, 49, 50, 51, 52, 53, 54, 56, 58, 93, 104, 108, 110, 111, 124, 125, 131, 141, 142, 143, 154, 156, 158, 161, 168, 171, 175, 176, 180, 192, 193, 195, 206, 219, 223, 224, 225, 226, 228, 237, 239, 243, 244, 245, 246, 247, 250, 251, 253, 254, 264, 277, 282, 292, 299, 301, 305, 308, 309, 311, 312], "\u306a\u306a\u3069": [224, 225], "\u306a\u306b": [45, 81, 111, 123, 132, 137, 143, 149, 163, 175, 250], "\u306a\u306b\u3088\u308b": [53, 274], "\u306a\u306b\u5bfe\u3057": [224, 225], "\u306a\u306e": [18, 44, 50, 250], "\u306a\u3073": [50, 51, 52], "\u306a\u3078": 53, "\u306a\u3082\u306e": 244, "\u306a\u3084\u308a\u304b\u305f": 314, "\u306a\u3088\u3046": 51, "\u306a\u3089": [6, 7, 8, 11, 14, 21, 24, 25, 28, 32, 34, 41, 43, 44, 47, 48, 49, 50, 51, 54, 56, 58, 74, 91, 93, 96, 99, 110, 111, 118, 121, 124, 127, 132, 134, 135, 137, 141, 142, 147, 149, 155, 156, 157, 158, 161, 167, 173, 175, 176, 177, 180, 194, 201, 205, 219, 224, 225, 229, 240, 244, 245, 246, 247, 250, 251, 261, 262, 264, 265, 266, 267, 268, 274, 281, 286, 303, 310], "\u306a\u308a": [0, 6, 10, 12, 18, 21, 27, 31, 34, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 68, 74, 87, 89, 91, 93, 94, 95, 96, 99, 100, 107, 109, 110, 111, 112, 118, 120, 123, 124, 125, 126, 127, 128, 131, 132, 134, 135, 137, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 163, 164, 166, 167, 173, 175, 176, 177, 178, 180, 188, 189, 195, 197, 201, 203, 205, 206, 224, 225, 226, 230, 237, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 253, 260, 262, 275, 276, 279, 280, 282, 286, 295, 298, 301, 305, 306, 307, 308, 310, 311, 312, 313, 315], "\u306a\u308b": [0, 10, 11, 12, 17, 23, 28, 31, 32, 33, 36, 37, 38, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 81, 94, 109, 111, 120, 121, 122, 124, 126, 127, 128, 131, 132, 134, 135, 137, 141, 142, 152, 155, 156, 161, 163, 173, 175, 176, 177, 180, 183, 186, 189, 190, 191, 193, 196, 201, 202, 208, 209, 224, 225, 226, 231, 232, 233, 234, 235, 248, 253, 257, 258, 259, 274, 281, 282, 301, 305, 306, 308], "\u306a\u308c": [93, 111], "\u306a\u308f": 51, "\u306a\u3093": [56, 93], "\u306a\u30fc": [44, 231, 232, 233, 234, 235], "\u306a\u8981\u7d20": 45, "\u306b\u3042\u308a": [6, 7, 8, 18, 138, 161], "\u306b\u3044": [44, 231, 232, 233, 234, 235], "\u306b\u3044\u304f\u3064": 225, "\u306b\u3044\u304f\u3064\u304b": [45, 48, 50], "\u306b\u304a\u3044": [29, 52, 93, 305], "\u306b\u304a\u3059\u3059\u3081": 124, "\u306b\u304b\u304f": 56, "\u306b\u304d": 52, "\u306b\u304f\u3044": [0, 43, 52], "\u306b\u304f\u3044\u304b": 264, "\u306b\u304f\u304f": 50, "\u306b\u304f\u3089\u3079": 310, "\u306b\u304f\u308b": 301, "\u306b\u3053\u306e": 111, "\u306b\u3057": [27, 31, 48, 49, 50, 58, 125, 133, 156, 201, 224, 225], "\u306b\u3059": [43, 51, 301], "\u306b\u3059\u3050": 226, "\u306b\u3059\u3079\u3066": [43, 94, 110, 156], "\u306b\u3059\u308b": [34, 53, 111, 224, 292], "\u306b\u305b": 52, "\u306b\u305d\u306e": [156, 180], "\u306b\u3064": [47, 52], "\u306b\u3064\u3044\u3066": [0, 3, 7, 11, 12, 18, 19, 20, 21, 22, 27, 31, 39, 41, 42, 43, 44, 47, 48, 49, 50, 52, 53, 54, 58, 91, 92, 93, 95, 99, 100, 104, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 172, 173, 175, 180, 182, 185, 186, 188, 189, 190, 193, 199, 202, 203, 204, 210, 224, 225, 240, 243, 244, 245, 246, 247, 248, 250, 251, 253, 260, 262, 274, 281, 282, 283, 290, 292, 298, 299, 302, 303, 305, 306, 308, 309, 310, 311, 315], "\u306b\u3064\u304d": 228, "\u306b\u3064\u3051": [56, 225, 237], "\u306b\u3064\u3076\u3084\u3051": 10, "\u306b\u3064\u3076\u3084\u3051\u308b": 10, "\u306b\u3066": [12, 47, 48, 50, 188], "\u306b\u3068\u3063": [10, 50], "\u306b\u3068\u3063\u3066": [10, 168, 262], "\u306b\u3069": [11, 41, 43, 156], "\u306b\u306b": 44, "\u306b\u307e\u3068\u3081": [12, 51], "\u306b\u307e\u3068\u3081\u308b": 51, "\u306b\u3082": [51, 156, 175, 224, 244, 299], "\u306b\u3088": 47, "\u306b\u3088\u304f": [41, 111, 161, 245], "\u306b\u3088\u3063": [0, 9, 11, 31, 41, 42, 43, 44, 45, 48, 52, 53, 54, 56, 91, 93, 108, 109, 111, 113, 119, 120, 122, 123, 130, 147, 162, 174, 175, 178, 186, 191, 208, 223, 272, 275, 298, 299, 305, 307, 308], "\u306b\u3088\u3063\u3066": [0, 14, 41, 42, 43, 45, 48, 54, 56, 89, 93, 111, 123, 301, 305, 308], "\u306b\u3088\u3089": 111, "\u306b\u3088\u308a": [0, 12, 27, 34, 41, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 94, 108, 111, 125, 156, 177, 188, 203, 208, 264, 282, 292, 295, 298, 301, 305, 308, 310, 312, 313], "\u306b\u3088\u308b": [0, 10, 22, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 53, 54, 149, 175, 177, 188, 224, 225, 276, 282, 304, 305, 308, 311, 315], "\u306b\u30fc": [44, 231, 232, 233, 234, 235], "\u306b\u5bfe\u3057": [0, 11, 12, 18, 36, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 91, 106, 110, 111, 135, 142, 144, 149, 150, 151, 153, 156, 159, 170, 173, 174, 195, 210, 224, 225, 244, 246, 253, 264, 299, 306, 307, 308, 310, 314, 315], "\u306b\u5bfe\u3057\u7570": 202, "\u306b\u5bfe\u3059\u308b": [0, 11, 12, 22, 37, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 111, 136, 142, 153, 155, 156, 159, 163, 180, 304, 305, 307, 308, 311, 312], "\u306b\u5bfe\u5fdc": [39, 40, 41, 43, 47, 49, 52, 132, 134, 135, 175, 178], "\u306b\u5bfe\u5fdc\u4ed8\u3051": 250, "\u306b\u5bfe\u6297": 56, "\u306b\u5bfe\u8c61": [39, 43, 44], "\u306b\u6708": 52, "\u306b\u95a2\u3057": [11, 48, 50, 51, 53, 134, 135, 176], "\u306b\u95a2\u3059\u308b": [2, 22, 39, 40, 41, 42, 47, 48, 49, 50, 51, 52, 53, 57, 155, 177, 224, 225, 228, 250, 281, 311], "\u306b\u95a2\u308f\u3089": 124, "\u306c\u3046": [44, 231, 232, 233, 234, 235], "\u306c\u30fc": [44, 231, 232, 233, 234, 235], "\u306d\u3048": [44, 231, 232, 233, 234, 235], "\u306d\u308b": 56, "\u306d\u30fc": [44, 231, 232, 233, 234, 235], "\u306e\u3042\u3068": [47, 224], "\u306e\u3044": [0, 11, 93, 125, 130, 175, 188, 282, 298], "\u306e\u3044\u305a\u308c": [53, 74, 112, 208, 314], "\u306e\u3044\u305a\u308c\u304b": [189, 190], "\u306e\u3046\u3061": [112, 180, 224], "\u306e\u304a": [44, 231, 232, 233, 234, 235], "\u306e\u304b": [41, 111, 156, 299, 302, 311], "\u306e\u304b\u308f\u308a": [49, 51], "\u306e\u304f\u3089\u3044": [41, 43, 53, 111, 281], "\u306e\u3059": 118, "\u306e\u3059\u3050": 224, "\u306e\u3059\u3079\u3066": [45, 132, 134, 135, 156, 167, 203, 224, 225, 292], "\u306e\u305e\u3044": 264, "\u306e\u3067": [0, 1, 10, 12, 17, 21, 26, 27, 33, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 94, 95, 110, 111, 124, 132, 134, 135, 149, 154, 156, 161, 177, 178, 183, 188, 197, 202, 205, 210, 225, 243, 250, 257, 281, 292, 296, 299, 301, 302, 303, 305, 308, 310, 311], "\u306e\u3067\u3057\u3087": [156, 244], "\u306e\u3069": [41, 219], "\u306e\u3069\u3061\u3089": [31, 156, 180, 225], "\u306e\u3069\u3061\u3089\u304b": [156, 183, 224, 225], "\u306e\u3069\u308c": [111, 161, 175, 180, 219, 250], "\u306e\u306b": [22, 27, 42, 43, 44, 47, 48, 49, 51, 52, 54, 111, 124, 131, 138, 165, 191, 262, 276, 300, 306], "\u306e\u3079\u304d": 156, "\u306e\u307b\u3046": 42, "\u306e\u307b\u304b": [282, 305], "\u306e\u307f": [0, 11, 12, 17, 21, 24, 31, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 61, 89, 91, 94, 105, 111, 122, 124, 131, 134, 135, 137, 141, 149, 153, 156, 157, 158, 159, 166, 173, 177, 183, 191, 192, 193, 196, 201, 202, 206, 208, 210, 231, 235, 236, 239, 244, 248, 250, 264, 274, 276, 277, 278, 286, 299, 301, 302, 305, 308, 310, 313], "\u306e\u307f\u3057\u304b": 252, "\u306e\u3088\u3046": [27, 41, 42, 43, 44, 48, 49, 50, 51, 53, 54, 58, 61, 99, 111, 112, 156, 161, 171, 175, 180, 186, 191, 201, 205, 223, 224, 225, 244, 245, 264, 275, 277], "\u306e\u30fc": [44, 231, 232, 233, 234, 235], "\u306f\u3042": [44, 231, 232, 233, 234, 235], "\u306f\u3042\u306a\u305f": 6, "\u306f\u3044": 305, "\u306f\u3044\u304f\u3064\u304b": [34, 95, 163, 173, 224, 292], "\u306f\u3044\u3051": [53, 111, 121, 127, 149, 173, 180, 225, 237], "\u306f\u3044\u305a\u308c": 208, "\u306f\u3044\u3064": 52, "\u306f\u3044\u308f\u3086\u308b": 50, "\u306f\u3046\u307e\u304f": 44, "\u306f\u304d\u3063\u3068": 244, "\u306f\u3053\u306e": [41, 42, 50, 142, 155, 156, 158, 205, 210, 247, 264, 303], "\u306f\u3057": 53, "\u306f\u3057\u304d\u3044": 43, "\u306f\u3058\u307e\u308a": 93, "\u306f\u3058\u307e\u308b": 52, "\u306f\u3058\u3081": [17, 22, 43, 44, 56, 57, 93, 111, 159, 231, 232, 233, 234, 235, 249], "\u306f\u3058\u3081\u308b": 125, "\u306f\u3059\u3079\u3066": [107, 111, 115, 116, 117, 118, 123, 124, 125, 126, 127, 128, 132, 134, 140, 141, 142, 143, 146, 149, 150, 152, 154, 155, 156, 157, 158, 161, 163, 165, 166, 167, 168, 177, 193, 195, 223, 225, 230, 246, 247, 264, 308], "\u306f\u305a": [41, 42, 43, 44, 45, 47, 123, 176, 231, 232, 233, 234, 235, 244, 274, 281], "\u306f\u305d\u308c\u305e\u308c": 43, "\u306f\u305d\u308c\u3089": 137, "\u306f\u3068": 254, "\u306f\u3069": [43, 44, 111, 156, 161, 250], "\u306f\u3069\u3061\u3089": [180, 292], "\u306f\u3069\u3061\u3089\u304b": [224, 225], "\u306f\u3069\u308c": 225, "\u306f\u306a\u304f": 244, "\u306f\u307b\u3068\u3093\u3069": 156, "\u306f\u307e\u305a": 12, "\u306f\u307e\u3060": [42, 135, 197, 227, 247, 292], "\u306f\u307f": 3, "\u306f\u308f\u304b\u308a": [52, 197], "\u306f\u30fc": [44, 231, 232, 233, 234, 235], "\u306f\u6708": [225, 248], "\u3070\u3042": [44, 231, 232, 233, 234, 235, 248], "\u3070\u3044\u304a\u308a\u3093": [231, 235], "\u3070\u3044\u3051": [21, 31, 45, 46, 47, 51, 54, 68, 87, 91, 110, 111, 112, 114, 124, 125, 132, 134, 135, 143, 149, 156, 161, 164, 177, 178, 180, 201, 203, 210, 224, 225, 237, 243, 244, 245, 246, 247], "\u3070\u304b\u308a": [12, 50], "\u3070\u3053\u306e": 50, "\u3070\u3059\u3079\u3066": 264, "\u3070\u305d\u306e": 310, "\u3070\u3069": 58, "\u3070\u3071": [231, 232, 233, 234, 235, 258, 259], "\u3070\u3073\u3076\u3079\u307c": [231, 235], "\u3070\u3088\u3044": 45, "\u3070\u308c\u308b": 37, "\u3070\u30fc": [44, 231, 232, 233, 234, 235], "\u3071\u3042": [44, 231, 232, 233, 234, 235], "\u3071\u30fc": [44, 231, 232, 233, 234, 235], "\u3072\u3044": [44, 231, 232, 233, 234, 235], "\u3072\u3053\u3055\u3093": [47, 49, 51], "\u3072\u3068\u3064": [47, 185, 224], "\u3072\u3068\u308a": 56, "\u3072\u3072\u3072\u3075\u3075\u3075": [231, 232, 233, 234, 235, 258, 259], "\u3072\u3073\u3074\u3075\u3076\u3077": [231, 232, 233, 234, 235, 258, 259], "\u3072\u3089": [53, 201, 224, 225, 231, 232, 233, 234, 235, 240, 250, 257, 258, 259, 264], "\u3072\u308d": 313, "\u3072\u308d\u3086\u304d": 313, "\u3072\u30fc": [44, 231, 232, 233, 234, 235], "\u3073\u3044": [44, 231, 232, 233, 234, 235], "\u3073\u30fc": [44, 231, 232, 233, 234, 235], "\u3074\u3044": [44, 231, 232, 233, 234, 235], "\u3074\u30fc": [44, 231, 232, 233, 234, 235], "\u3075\u3046": [44, 231, 232, 233, 234, 235], "\u3075\u306a\u3068": 49, "\u3075\u308a": 159, "\u3075\u30fc": [44, 231, 232, 233, 234, 235], "\u3076\u3046": [44, 231, 232, 233, 234, 235], "\u3076\u3093": 10, "\u3076\u30fc": [44, 231, 232, 233, 234, 235], "\u3077\u3046": [44, 231, 232, 233, 234, 235], "\u3077\u30fc": [44, 231, 232, 233, 234, 235], "\u3078\u3048": [44, 231, 232, 233, 234, 235], "\u3078\u3059\u3079\u3066": [50, 110], "\u3078\u3068": [12, 49, 156, 303, 312, 314], "\u3078\u306e": [31, 53, 305], "\u3078\u3079\u307a": [231, 232, 233, 234, 235, 258, 259], "\u3078\u307b\u307b\u307b": [231, 232, 233, 234, 235, 258, 259], "\u3078\u30fc": [44, 231, 232, 233, 234, 235], "\u3079\u3048": [44, 231, 232, 233, 234, 235], "\u3079\u304d": [6, 7, 8, 12, 42, 43, 44, 45, 50, 51, 52, 56, 112, 134, 141, 143, 149, 152, 156, 173, 175, 177, 180, 225, 230, 298], "\u3079\u304d\u304b": [43, 156], "\u3079\u304f": [45, 308], "\u3079\u3066": [44, 51, 58, 134, 136, 141, 156, 177, 306], "\u3079\u30fc": [44, 231, 232, 233, 234, 235], "\u3079\u30fc\u30b9": 49, "\u307a\u3048": [44, 231, 232, 233, 234, 235], "\u307a\u30fc": [44, 231, 232, 233, 234, 235], "\u307b\u3046": [43, 49, 156], "\u307b\u304a": [44, 231, 232, 233, 234, 235], "\u307b\u304b": [0, 305], "\u307b\u3057\u3044": 54, "\u307b\u3057\u304f": [44, 45, 156], "\u307b\u3068": 42, "\u307b\u3068\u3093\u3069": [42, 50, 52], "\u307b\u3069": [41, 56, 159, 161, 173, 175, 264, 296, 305, 308], "\u307b\u307c": [41, 225], "\u307b\u307c\u307d": [231, 232, 233, 234, 235, 258, 259], "\u307b\u30fc": [44, 231, 232, 233, 234, 235], "\u307c\u304a": [44, 231, 232, 233, 234, 235], "\u307c\u30fc": [44, 231, 232, 233, 234, 235], "\u307d\u304a": [44, 231, 232, 233, 234, 235], "\u307d\u30fc": [44, 231, 232, 233, 234, 235], "\u307e\u3042": [44, 231, 232, 233, 234, 235], "\u307e\u3055": 56, "\u307e\u3057": [6, 10, 12, 17, 18, 27, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 111, 124, 132, 134, 135, 156, 161, 177, 186, 188, 224, 225, 229, 244, 251, 262, 275, 296, 301, 302, 306, 307, 311], "\u307e\u3057\u3087": [18, 132, 134, 135, 156, 188, 307, 308], "\u307e\u3059": [0, 1, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 68, 74, 81, 84, 85, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 181, 182, 183, 184, 185, 186, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 286, 290, 291, 292, 295, 296, 298, 299, 301, 302, 303, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "\u307e\u305a": [17, 18, 31, 43, 44, 111, 156, 176, 177, 211, 212, 219, 225, 231, 232, 233, 234, 235, 299, 301, 302, 306, 308, 310, 311, 314], "\u307e\u305b": [0, 6, 7, 10, 12, 17, 18, 27, 31, 34, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 68, 74, 81, 84, 85, 87, 89, 91, 94, 95, 96, 98, 100, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 147, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 173, 175, 176, 177, 178, 180, 183, 186, 188, 191, 193, 195, 201, 202, 203, 205, 206, 210, 219, 224, 225, 226, 229, 230, 236, 237, 239, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 276, 277, 278, 279, 280, 281, 282, 286, 290, 292, 296, 298, 299, 301, 303, 305, 306, 308, 310, 312, 314], "\u307e\u305f": [3, 5, 8, 12, 14, 18, 19, 21, 23, 31, 39, 40, 41, 42, 43, 44, 45, 49, 50, 51, 53, 54, 56, 58, 81, 87, 94, 95, 108, 109, 110, 111, 112, 113, 118, 119, 120, 122, 124, 126, 127, 128, 130, 132, 134, 135, 141, 142, 143, 147, 149, 152, 153, 155, 156, 161, 162, 170, 173, 175, 176, 177, 178, 183, 188, 193, 196, 202, 206, 208, 209, 219, 224, 225, 228, 231, 241, 244, 248, 254, 272, 274, 282, 292, 302, 311, 313, 315], "\u307e\u305f\u3044": [41, 47, 132, 134, 135, 188, 248], "\u307e\u305f\u3050": [22, 47, 188, 304], "\u307e\u3060": [12, 39, 41, 42, 45, 48, 49, 51, 53, 54, 93, 96, 103, 135, 154, 156, 158, 159, 180, 225, 245, 248, 298], "\u307e\u3064\u308f": 48, "\u307e\u3067": [11, 12, 17, 34, 41, 42, 45, 46, 48, 49, 51, 54, 56, 61, 99, 111, 125, 132, 137, 156, 175, 176, 183, 209, 226, 244, 254, 281, 302, 306, 308, 310, 311, 313], "\u307e\u3068\u3081": [10, 27, 49, 111], "\u307e\u3068\u3081\u3066": [0, 111, 305, 306], "\u307e\u3068\u3081\u308b": [111, 156, 177, 272], "\u307e\u307e": [10, 12, 46, 48, 50, 52, 53, 74, 93, 163, 173, 180, 225, 306], "\u307e\u307e\u3067": 301, "\u307e\u3082": 56, "\u307e\u308a": [50, 156, 208, 209], "\u307e\u308b": [53, 54], "\u307e\u308c": [45, 156], "\u307e\u308d\u3086\u304d": 313, "\u307e\u308f\u3059": 156, "\u307e\u308f\u308a": 3, "\u307e\u30fc": [44, 231, 232, 233, 234, 235], "\u307f\u3044": [44, 231, 232, 233, 234, 235], "\u307f\u304c": 11, "\u307f\u305f\u3059": 311, "\u307f\u3064\u3051": 18, "\u307f\u3066": 315, "\u307f\u306a\u3055": 11, "\u307f\u306a\u3057": [51, 156], "\u307f\u306a\u3059": [45, 156, 231, 235], "\u307f\u307e\u3057\u3087": [18, 111, 132, 156, 163, 225, 245, 246, 247, 276, 278, 305, 306, 307, 308, 310, 311, 314, 315], "\u307f\u308b": 111, "\u307f\u30fc": [44, 231, 232, 233, 234, 235], "\u3080\u3046": [44, 231, 232, 233, 234, 235], "\u3080\u3089": 52, "\u3080\u308b": [224, 225], "\u3080\u308b\u3093": [224, 225], "\u3080\u30fc": [44, 231, 232, 233, 234, 235], "\u3081\u3048": [44, 231, 232, 233, 234, 235], "\u3082\u3042\u3052": 111, "\u3082\u3044\u308d\u3044\u308d\u3057": 132, "\u3082\u3046": [47, 74, 124, 177, 185, 186, 226, 276, 305, 310], "\u3082\u3046\u307e\u304f": 31, "\u3082\u304a": [44, 231, 232, 233, 234, 235], "\u3082\u304b\u304b\u308f\u3089": [54, 276], "\u3082\u304d\u3061\u3093": 177, "\u3082\u3053\u306e": [41, 44, 45, 124], "\u3082\u3057": [6, 21, 31, 34, 41, 42, 43, 44, 45, 48, 49, 50, 51, 53, 54, 61, 74, 81, 90, 96, 98, 99, 100, 111, 118, 124, 125, 126, 128, 134, 135, 137, 142, 149, 150, 152, 153, 156, 157, 158, 161, 163, 173, 176, 177, 178, 183, 188, 195, 196, 197, 198, 210, 224, 225, 231, 232, 233, 234, 235, 243, 244, 245, 246, 248, 281, 292, 310], "\u3082\u3057x": 48, "\u3082\u3057\u3042": 50, "\u3082\u3057\u304b\u3057": 264, "\u3082\u3057\u304f": [47, 48, 49, 50, 124, 129, 134, 149, 177, 183, 191, 192, 193, 205, 206, 224, 225, 282, 298, 303, 305, 310], "\u3082\u3057\u3053\u306e": [44, 142, 156, 303], "\u3082\u3057\u3054": 47, "\u3082\u3057\u305d\u308c\u3089": 90, "\u3082\u3057\u307e\u305b": 81, "\u3082\u3057\u3088\u308a": 96, "\u3082\u3057\u308c": [243, 264, 274], "\u3082\u3057\u4f7f\u3063": 127, "\u3082\u3057\u547c\u3070": 52, "\u3082\u3057\u578b": 155, "\u3082\u3059": [144, 151], "\u3082\u3059\u3050": 157, "\u3082\u3059\u3079": 156, "\u3082\u305b": 173, "\u3082\u3061\u308d\u3093": [176, 306], "\u3082\u3063\u3068": [6, 156], "\u3082\u3063\u3068\u3082": [14, 98], "\u3082\u3064": [43, 50, 121, 306], "\u3082\u3064\u3051": 175, "\u3082\u3068": [12, 52, 156, 302], "\u3082\u3068\u3082": 52, "\u3082\u3069\u3061\u3089": 247, "\u3082\u306e": [11, 12, 17, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 56, 61, 91, 93, 132, 134, 135, 137, 142, 155, 156, 173, 174, 175, 176, 177, 188, 189, 196, 201, 204, 230, 244, 245, 247, 251, 260, 275, 298, 305, 308, 310], "\u3082\u3088\u308a": 247, "\u3082\u3089\u3048": [10, 56], "\u3082\u3089\u3048\u308b": 10, "\u3082\u3089\u3063": [12, 308], "\u3082\u308a": 50, "\u3082\u308c\u308b": 50, "\u3082\u30fc": [44, 231, 232, 233, 234, 235], "\u3082\u4f7f\u3063": 45, "\u3083\u3042": [44, 231, 232, 233, 234, 235], "\u3083\u3093": 56, "\u3083\u3093\u306d\u308b": 56, "\u3083\u30fc": [44, 231, 232, 233, 234, 235], "\u3084\u3042": [44, 231, 232, 233, 234, 235], "\u3084\u304c": 93, "\u3084\u3057": 156, "\u3084\u3059": [54, 197], "\u3084\u3059\u3044": [36, 43, 44, 50, 156, 175, 193, 206, 223], "\u3084\u3059\u3044\u304b": 243, "\u3084\u3059\u304b\u3063": 54, "\u3084\u3059\u304f": [18, 37, 43, 45, 49, 54, 97, 156, 175], "\u3084\u3059\u304f\u3057": [50, 52], "\u3084\u305d\u306e": 121, "\u3084\u3063": [111, 219], "\u3084\u307e": 49, "\u3084\u307e\u3060": 49, "\u3084\u307e\u306d": [48, 49], "\u3084\u3081": [39, 41, 42, 44, 45, 48, 49, 50, 51, 52, 53, 54, 99], "\u3084\u3081\u307e\u3057\u3087": [245, 246, 247], "\u3084\u3081\u308b": [44, 45, 51], "\u3084\u3085\u3086\u3087": [231, 232, 233, 234, 235, 258, 259], "\u3084\u3089": 12, "\u3084\u308a": [19, 314], "\u3084\u30fc": [44, 231, 232, 233, 234, 235], "\u3085\u3046": [44, 231, 232, 233, 234, 235], "\u3085\u30fc": [44, 231, 232, 233, 234, 235], "\u3086\u3046": [44, 231, 232, 233, 234, 235], "\u3086\u304d": [45, 313], "\u3086\u304d\u3072\u308d": 313, "\u3086\u308b": 186, "\u3086\u308c": [43, 53, 274, 275], "\u3086\u30fc": [44, 231, 232, 233, 234, 235], "\u3087\u304a": [44, 231, 232, 233, 234, 235], "\u3087\u30fc": [44, 231, 232, 233, 234, 235], "\u3088\u3044": [17, 18, 43, 44, 91, 110, 111, 124, 141, 156, 180, 224, 225, 292, 306, 310], "\u3088\u3044\u304b": 46, "\u3088\u3046": [0, 6, 10, 11, 12, 14, 21, 27, 29, 31, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 74, 87, 90, 91, 93, 95, 96, 98, 108, 110, 111, 118, 121, 122, 123, 124, 125, 131, 132, 133, 134, 135, 137, 138, 140, 141, 142, 143, 144, 145, 149, 150, 151, 153, 156, 157, 160, 161, 163, 164, 166, 168, 175, 176, 177, 180, 188, 189, 193, 197, 202, 203, 206, 210, 224, 225, 226, 229, 231, 232, 233, 234, 235, 237, 239, 243, 244, 245, 246, 247, 248, 249, 252, 254, 257, 258, 259, 260, 261, 264, 272, 274, 275, 276, 278, 279, 280, 281, 292, 296, 298, 299, 301, 302, 303, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "\u3088\u3046\u3053\u305d": 156, "\u3088\u304a": [44, 231, 232, 233, 234, 235], "\u3088\u304b\u3063": [56, 301], "\u3088\u304f": [27, 41, 42, 45, 51, 56, 91, 111, 124, 132, 134, 135, 156, 175, 183, 244, 262], "\u3088\u3063": 315, "\u3088\u3063\u3066": [27, 87, 168, 239, 282, 309, 315], "\u3088\u3073": 11, "\u3088\u308a": [6, 11, 18, 23, 31, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 74, 91, 94, 99, 111, 118, 134, 141, 142, 153, 156, 161, 173, 175, 176, 177, 183, 186, 188, 189, 191, 192, 193, 196, 197, 224, 225, 226, 228, 243, 244, 245, 246, 247, 250, 253, 264, 274, 277, 281, 282, 299, 301, 305, 306, 310, 311], "\u3088\u308e\u308f": [231, 232, 233, 234, 235, 258, 259], "\u3088\u308f\u308f\u304b\u304b\u3051\u3051": [231, 232, 233, 234, 235, 258, 259], "\u3088\u30fc": [44, 231, 232, 233, 234, 235], "\u3089\u3042": [44, 231, 232, 233, 234, 235], "\u3089\u308c": [0, 10, 11, 37, 39, 41, 43, 45, 47, 48, 51, 53, 54, 61, 74, 109, 110, 111, 112, 121, 134, 142, 153, 156, 162, 168, 224, 254, 274, 275, 308, 310, 314], "\u3089\u308c\u308b": [0, 11, 45, 47, 48, 49, 51, 56, 111, 156, 175, 244, 299], "\u3089\u30fc": [44, 231, 232, 233, 234, 235], "\u308b\u3046": [44, 231, 232, 233, 234, 235], "\u308c\u3048": [44, 231, 232, 233, 234, 235], "\u308c\u305a": [51, 93], "\u308c\u307e\u305b": [31, 42, 50, 58, 93, 108, 111, 149, 150, 156, 157, 163, 175, 192, 228, 243, 310], "\u308c\u3084\u3059\u3044": 42, "\u308c\u3084\u3059\u304f\u3057": 41, "\u308c\u308b": [0, 9, 11, 12, 14, 17, 27, 31, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 74, 81, 89, 91, 93, 94, 96, 106, 107, 108, 111, 124, 132, 133, 134, 135, 138, 153, 154, 156, 159, 161, 163, 175, 176, 183, 186, 188, 196, 203, 205, 206, 208, 209, 210, 224, 225, 226, 229, 239, 244, 250, 251, 253, 254, 257, 258, 259, 262, 275, 276, 278, 282, 298, 299, 301, 308, 315], "\u308c\u30fc": [44, 231, 232, 233, 234, 235], "\u308d\u304a": [44, 231, 232, 233, 234, 235], "\u308d\u30fc": [44, 231, 232, 233, 234, 235], "\u308e\u3042": [44, 231, 232, 233, 234, 235], "\u308e\u30fc": [44, 231, 232, 233, 234, 235], "\u308f\u3042": [44, 231, 232, 233, 234, 235], "\u308f\u304b\u3061": 299, "\u308f\u304b\u3063": 173, "\u308f\u304b\u3089": 156, "\u308f\u304b\u308a": [37, 49, 50, 52, 111, 156, 264, 306], "\u308f\u304b\u308b": 49, "\u308f\u304b\u308c": 156, "\u308f\u3051": [42, 45, 125, 143, 156, 165, 168, 225, 250, 281, 305], "\u308f\u305f\u3057": [257, 258, 259], "\u308f\u30fc": [44, 231, 232, 233, 234, 235], "\u3090\u3044": [44, 231, 232, 233, 234, 235], "\u3090\u30fc": [44, 231, 232, 233, 234, 235], "\u3091\u3046": [44, 231, 232, 233, 234, 235], "\u3091\u30fc": [44, 231, 232, 233, 234, 235], "\u3092\u304a": [44, 231, 232, 233, 234, 235], "\u3092\u304a\u3053": 311, "\u3092\u304b\u308f\u308a": 74, "\u3092\u3054": [14, 232, 233, 234, 235, 236, 258, 259], "\u3092\u3054\u89a7\u304f": [0, 7, 257], "\u3092\u3057": 224, "\u3092\u3064\u3051": [44, 156, 224, 225], "\u3092\u3064\u3051\u308b": [6, 175, 225], "\u3092\u3079\u304d": 156, "\u3092\u307e\u3060": 103, "\u3092\u3088\u308a": 51, "\u3092\u30fc": [44, 231, 232, 233, 234, 235], "\u3092\u901a\u3057": [175, 308], "\u3093\u304c": [224, 225], "\u3093\u3057": [111, 127, 140, 173], "\u3093\u3057\u304d": 223, "\u3093\u3069": 42, "\u3093\u3093": [44, 231, 232, 233, 234, 235], "\u3093\u30fc": [44, 231, 232, 233, 234, 235], "\u3094-": [44, 231, 232, 233, 234, 235], "\u3094\u3041": [54, 231, 235], "\u3094\u3043": [54, 231, 235], "\u3094\u3049": [54, 231, 235], "\u3094\u3094": [54, 231, 235], "\u3094\u30fc": [44, 231, 232, 233, 234, 235], "\u3095-": [44, 231, 232, 233, 234, 235], "\u3095\u304b": [231, 232, 233, 234, 235, 258, 259], "\u3095\u30fc": [44, 231, 232, 233, 234, 235], "\u3096-": [44, 231, 232, 233, 234, 235], "\u3096\u3048": [44, 231, 232, 233, 234, 235], "\u3096\u3051": [231, 232, 233, 234, 235, 258, 259], "\u3096\u30fc": [44, 231, 232, 233, 234, 235], "\u309d\u309e": [231, 232, 233, 234, 235, 257, 258, 259], "\u30a1\u30a2": [44, 231, 232, 233, 234, 235], "\u30a1\u30a2\u30a3\u30a4\u30a5\u30a6\u30a7\u30a8\u30a9\u30aa\u30e3\u30e4\u30e5\u30e6\u30e7\u30e8\u30ee\u30ef": [231, 232, 233, 234, 235, 258, 259], "\u30a1\u30fc": [44, 231, 232, 233, 234, 235], "\u30a2\u30a1\u30a4\u30a3\u30a6\u30a5\u30a8\u30a7\u30aa\u30a9": [231, 232, 233, 234, 235, 257, 258, 259], "\u30a2\u30a2": [44, 231, 232, 233, 234, 235], "\u30a2\u30a2\u30a4\u30a4\u30a6\u30a6\u30a8\u30a8\u30aa\u30aa\u30e4\u30e4\u30e6\u30e6\u30e8\u30e8\u30ef\u30ef\u30ab\u30ab\u30b1\u30b1": [231, 232, 233, 234, 235, 258, 259], "\u30a2\u30aa\u30c4\u30c5\u30e9\u30d5\u30b8": 44, "\u30a2\u30aa\u30cf\u30bf": 44, "\u30a2\u30ab\u30a6\u30f3\u30c8": [2, 12, 49], "\u30a2\u30ab\u30a6\u30f3\u30c8groonga": 10, "\u30a2\u30af\u30bb\u30b5": [51, 53], "\u30a2\u30af\u30bb\u30b5\u30fc": [41, 50, 54], "\u30a2\u30af\u30bb\u30b9": [12, 17, 18, 37, 39, 47, 48, 49, 51, 52, 58, 60, 114, 156, 164, 174, 175, 177, 178, 281, 305, 312], "\u30a2\u30af\u30bb\u30b9\u30ed\u30b0": [177, 250, 251, 253, 291, 296], "\u30a2\u30b8\u30e3\u30b9\u30bf\u30fc": [91, 156], "\u30a2\u30c3\u30c8\u30de\u30fc\u30af": [111, 161], "\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9": [12, 42, 43, 44, 45, 46, 49, 50, 51, 53, 54, 291], "\u30a2\u30c3\u30d7\u30b9\u30c8\u30ea\u30fc\u30e0": 18, "\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8": 54, "\u30a2\u30c6\u30cd": 44, "\u30a2\u30c9\u30ec\u30b9": [39, 175, 176, 180, 298, 312], "\u30a2\u30ca\u30a6\u30f3\u30b9": [12, 43], "\u30a2\u30d4\u30fc\u30eb": [12, 56], "\u30a2\u30d5\u30ea\u30ab": 56, "\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3": [0, 20, 42, 45, 52, 71, 156, 175, 205, 206, 225, 228], "\u30a2\u30e1\u30ea\u30ab": 188, "\u30a2\u30e9\u30fc\u30c8": [175, 228], "\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0": [107, 111, 188, 223, 247], "\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8": [49, 111, 132, 134, 135, 156, 161, 168, 244, 251, 264, 267, 268, 270, 271, 299, 301], "\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u30d9\u30fc\u30b9": 156, "\u30a2\u30f2\u30cf\u30bf": 44, "\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 47, "\u30a2\u30f3\u30ab\u30fc": 50, "\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2": [89, 111, 161], "\u30a2\u30f3\u30c0\u30fc\u30d5\u30ed\u30fc": 53, "\u30a2\u30f3\u30d1\u30c3\u30af": 41, "\u30a2\u30f3\u30de\u30c3\u30d7": [50, 53, 118], "\u30a2\u30f3\u30ed\u30c3\u30af": 53, "\u30a2\u30fc": [44, 231, 232, 233, 234, 235], "\u30a2\u30fc\u30ab\u30a4\u30d6": [17, 27, 33], "\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": [3, 4, 22, 27], "\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u30fc": [49, 158, 175], "\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8": 43, "\u30a3\u30a4": [44, 231, 232, 233, 234, 235], "\u30a3\u30fc": [44, 231, 232, 233, 234, 235], "\u30a4\u30a4": [44, 231, 232, 233, 234, 235], "\u30a4\u30bf\u30ea\u30a2": 53, "\u30a4\u30d9\u30f3\u30c8": 50, "\u30a4\u30d9\u30f3\u30c8\u30ed\u30b0": 50, "\u30a4\u30e1\u30fc\u30b8": [22, 23, 43, 53], "\u30a4\u30e9\u30af\u30ea\u30aa": 44, "\u30a4\u30f3\u30af\u30ea\u30e1\u30f3\u30c8": [52, 98], "\u30a4\u30f3\u30af\u30eb\u30fc\u30c9": 50, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9": 39, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc": 50, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [0, 3, 7, 12, 21, 22, 24, 25, 28, 29, 30, 31, 32, 33, 37, 39, 41, 42, 44, 45, 47, 48, 50, 51, 52, 53, 54, 103, 156, 174, 175, 176, 178, 260, 274, 296], "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 39, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8": [37, 39], "\u30a4\u30f3\u30b9\u30da\u30af\u30b7\u30e7\u30f3": [48, 50], "\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": [3, 47], "\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8": [0, 22, 176, 223], "\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u30d3\u30b8\u30cd\u30b9": 56, "\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u30e6\u30fc\u30b6\u30fc": 56, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [54, 125, 180, 241], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9": 41, "\u30a4\u30f3\u30c6\u30b0\u30ec\u30fc\u30b7\u30e7\u30f3": 21, "\u30a4\u30f3\u30c7\u30af\u30b9": 56, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [22, 37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 74, 87, 91, 94, 96, 104, 106, 108, 109, 112, 113, 122, 123, 124, 132, 133, 134, 135, 137, 141, 149, 155, 156, 161, 163, 165, 173, 183, 186, 196, 224, 225, 237, 239, 246, 247, 254, 262, 277, 301, 304, 308, 311], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0": [22, 36, 41, 42, 44, 48, 49, 50, 51, 52, 53, 54, 57, 74, 108, 112, 123, 124, 141, 142, 149, 152, 155, 156, 165, 173, 195, 201, 224, 225, 237, 244, 246, 247, 304, 307, 310], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ad\u30fc": 45, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30a4\u30ba": [34, 52, 141], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30fc\u30c1": 195, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c1\u30a7\u30c3\u30af": 123, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb": [48, 54, 111], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30da\u30fc\u30b8": 41, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30e2\u30b8\u30e5\u30fc\u30eb": 50, "\u30a4\u30f3\u30c7\u30f3\u30c8": 74, "\u30a4\u30f3\u30dd\u30fc\u30c8": [43, 47], "\u30a4\u30f3\u30e1\u30e2\u30ea": 52, "\u30a4\u30fc": [44, 231, 232, 233, 234, 235], "\u30a5\u30a6": [44, 231, 232, 233, 234, 235], "\u30a5\u30fc": [44, 231, 232, 233, 234, 235], "\u30a6\u30a3\u30f3\u30c9\u30a6": [22, 41, 51, 52, 53, 54, 57, 286], "\u30a6\u30a4\u30f3\u30c9\u30a6": [41, 53, 54, 132, 134, 135], "\u30a6\u30a6": [44, 231, 232, 233, 234, 235], "\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6": [175, 177, 178], "\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9": 175, "\u30a6\u30a9\u30fc\u30e0\u30a2\u30c3\u30d7": [175, 177], "\u30a6\u30fc": [44, 231, 232, 233, 234, 235], "\u30a7\u30a8": [44, 231, 232, 233, 234, 235], "\u30a7\u30fc": [44, 231, 232, 233, 234, 235], "\u30a8\u30a4\u30ea\u30a2\u30b9": [22, 50, 52, 53, 57, 129], "\u30a8\u30a8": [44, 231, 232, 233, 234, 235], "\u30a8\u30af\u30b9\u30dd\u30fc\u30c8": 37, "\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3": [31, 43, 44, 45, 53, 54, 156, 175, 186], "\u30a8\u30b9\u30b1\u30fc\u30d7": [42, 43, 47, 48, 49, 52, 68, 191, 192, 193, 205, 206, 225], "\u30a8\u30c7\u30a3\u30bf": 17, "\u30a8\u30dd\u30c3\u30af": 42, "\u30a8\u30e9\u30fc": [22, 23, 28, 31, 32, 33, 36, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 61, 68, 84, 93, 100, 101, 106, 109, 110, 111, 113, 115, 117, 118, 119, 121, 124, 126, 127, 128, 129, 130, 132, 134, 135, 137, 143, 144, 145, 149, 150, 151, 152, 156, 157, 160, 161, 163, 164, 166, 170, 175, 224, 228, 300, 302], "\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9": [47, 49, 51, 52, 53, 308], "\u30a8\u30e9\u30fc\u30c1\u30a7\u30c3\u30af": [39, 45, 47, 49], "\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8": [6, 22, 36, 37, 39, 40, 47, 48, 49, 50, 51, 52, 53, 54, 93, 95, 111, 300], "\u30a8\u30e9\u30fc\u30ec\u30dd\u30fc\u30c8": 47, "\u30a8\u30e9\u30fc\u30ed\u30b0": [45, 111, 296, 302], "\u30a8\u30f3": [45, 197], "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0": [31, 36, 49, 50, 51, 53, 68, 74, 225, 230, 236], "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u30b3\u30f3\u30d0\u30fc\u30bf\u30fc": 53, "\u30a8\u30f3\u30b3\u30fc\u30c9": [37, 46, 180, 230], "\u30a8\u30f3\u30b8\u30f3": [0, 56, 156, 244, 245, 246, 247, 305, 307], "\u30a8\u30f3\u30b8\u30f3\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2": 56, "\u30a8\u30f3\u30c8\u30ea": [61, 132, 134, 135, 156, 210, 224, 225], "\u30a8\u30f3\u30c8\u30ea\u30fc": [42, 50, 132, 134, 135, 156], "\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8": 180, "\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8uri": 180, "\u30a8\u30fc": [44, 231, 232, 233, 234, 235], "\u30a9\u30a6": [44, 231, 232, 233, 234, 235], "\u30a9\u30aa": [44, 231, 232, 233, 234, 235], "\u30a9\u30fc": [44, 231, 232, 233, 234, 235], "\u30aa\u30a6": [44, 231, 232, 233, 234, 235], "\u30aa\u30a6\u30b3\u30a6\u30bd\u30a6\u30c8\u30a6\u30ce\u30a6": [231, 232, 233, 234, 235], "\u30aa\u30aa": [44, 231, 232, 233, 234, 235], "\u30aa\u30aa\u30b3\u30aa\u30bd\u30aa\u30c8\u30aa\u30ce\u30aa": [231, 232, 233, 234, 235], "\u30aa\u30aa\u30c4\u30c5\u30e9\u30d5\u30b8": 44, "\u30aa\u30b9\u30b9\u30e1": [6, 8, 23, 28, 32, 33, 45, 58, 156, 177, 244, 262, 264], "\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea": 37, "\u30aa\u30d5\u30bb\u30c3\u30c8": [44, 47, 50, 54, 156, 159], "\u30aa\u30d5\u30e9\u30a4\u30f3": [45, 53], "\u30aa\u30d5\u30e9\u30a4\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [40, 50, 51], "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [22, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 54, 57, 58, 61, 74, 87, 91, 106, 108, 109, 120, 124, 126, 127, 128, 138, 139, 140, 141, 143, 144, 145, 149, 150, 151, 152, 155, 156, 158, 168, 169, 173, 199, 202, 223, 225, 254], "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8id": 53, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30d5\u30a1\u30a4\u30eb": 173, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb": [42, 44, 51], "\u30aa\u30d6\u30b8\u30a7\u30c8": 41, "\u30aa\u30d7\u30b7\u30e7\u30f3": [6, 14, 18, 23, 30, 31, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 96, 102, 110, 111, 124, 131, 138, 156, 161, 165, 168, 173, 178, 180, 182, 183, 191, 193, 196, 205, 206, 223, 224, 225, 228, 229, 232, 233, 234, 237, 241, 244, 250, 251, 253, 255, 257, 258, 259, 260, 261, 272, 274, 275, 290, 292, 295, 298, 299, 301, 308, 310, 311, 312, 313], "\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6": 53, "\u30aa\u30da\u30ec\u30fc\u30bf": [50, 51], "\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 50, "\u30aa\u30e9\u30f3\u30c0": 53, "\u30aa\u30ea\u30b8\u30ca\u30eb": 56, "\u30aa\u30f3\u30e9\u30a4\u30f3": 45, "\u30aa\u30fc": [44, 231, 232, 233, 234, 235], "\u30aa\u30fc\u30c8\u30b3\u30f3\u30d7\u30ea\u30fc\u30c8": [43, 44], "\u30aa\u30fc\u30ca\u30fc": [48, 50], "\u30aa\u30fc\u30d0\u30d5\u30ed\u30fc": 54, "\u30aa\u30fc\u30d0\u30d8\u30c3\u30c9": 186, "\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc": [39, 48, 49, 50, 53, 54], "\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af": [39, 50], "\u30aa\u30fc\u30d0\u30fc\u30d8\u30c3\u30c9": [49, 53, 125, 141, 186, 296], "\u30aa\u30fc\u30d0\u30fc\u30e9\u30c3\u30d7": 44, "\u30aa\u30fc\u30d7\u30f3": [39, 41, 42, 43, 47, 48, 50, 51, 56, 61], "\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9": 56, "\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30b3\u30df\u30e5\u30cb\u30c6\u30a3": 21, "\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2": 21, "\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30e9\u30a4\u30bb\u30f3\u30b9": 45, "\u30ab\u30a2": [44, 231, 232, 233, 234, 235], "\u30ab\u30a2\u30ad\u30a4\u30af\u30a6\u30b1\u30a8\u30b3\u30aa": [231, 232, 233, 234, 235], "\u30ab\u30a6\u30f3\u30bf": 51, "\u30ab\u30a6\u30f3\u30c8": [41, 48, 52, 132, 311], "\u30ab\u30a6\u30f3\u30c8\u30e2\u30fc\u30c9": [41, 43], "\u30ab\u30ab\u30ad\u30ad\u30af\u30af\u30b1\u30b1\u30b3\u30b3\u30b5\u30b5\u30b7\u30b7\u30b9\u30b9\u30bb\u30bb\u30bd\u30bd\u30bf\u30bf\u30c1\u30c1\u30c4\u30c4\u30c6\u30c6\u30c8\u30c8\u30cf\u30cf\u30cf\u30d2\u30d2\u30d2\u30d5\u30d5\u30d5\u30d8\u30d8\u30d8\u30db\u30db\u30db": [231, 232, 233, 234, 235], "\u30ab\u30ac\u30ad\u30ae\u30af\u30b0\u30b1\u30b2\u30b3\u30b4\u30b5\u30b6\u30b7\u30b8\u30b9\u30ba\u30bb\u30bc\u30bd\u30be\u30bf\u30c0\u30c1\u30c2\u30c4\u30c5\u30c6\u30c7\u30c8\u30c9\u30cf\u30d0\u30d1\u30d2\u30d3\u30d4\u30d5\u30d6\u30d7\u30d8\u30d9\u30da\u30db\u30dc\u30dd": [231, 232, 233, 234, 235, 258, 259], "\u30ab\u30b9\u30b1\u30fc\u30c9": [48, 49], "\u30ab\u30b9\u30bf\u30de\u30a4\u30ba": [6, 27, 31, 42, 47, 48, 49, 50, 51, 52, 53, 54, 111, 119, 122, 138, 156, 161, 165, 168, 175, 202, 205, 206, 219, 224, 225, 228, 229, 245, 250, 255, 281, 306], "\u30ab\u30b9\u30bf\u30e0": [81, 167, 177], "\u30ab\u30b9\u30bf\u30e0\u30b9\u30b3\u30a2\u30e9\u30fc": 245, "\u30ab\u30b9\u30bf\u30e0\u30bb\u30ec\u30af\u30bf": 47, "\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0": 49, "\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb": 51, "\u30ab\u30bf\u30ab\u30ca": [53, 54, 159, 201, 230, 231, 232, 233, 234, 235, 240, 250, 257, 258, 259, 264], "\u30ab\u30c3\u30b3": 44, "\u30ab\u30c6\u30b4\u30ea": [125, 156, 165, 168], "\u30ab\u30d0\u30ec\u30c3\u30b8": 3, "\u30ab\u30d0\u30fc": 14, "\u30ab\u30e9\u30e0": [0, 22, 31, 36, 37, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 90, 91, 96, 105, 109, 112, 113, 114, 118, 119, 120, 121, 124, 125, 126, 127, 128, 137, 140, 142, 143, 149, 150, 152, 155, 159, 161, 164, 170, 173, 175, 180, 183, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 206, 208, 209, 210, 211, 219, 221, 224, 225, 226, 237, 239, 243, 244, 245, 248, 250, 251, 252, 253, 254, 261, 281, 282, 301, 304, 305, 307, 311, 313, 314, 315], "\u30ab\u30e9\u30e0n": 210, "\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [22, 47, 304], "\u30ab\u30e9\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 114, "\u30ab\u30e9\u30e0\u30ab\u30e9\u30e0": 141, "\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2": [22, 305], "\u30ab\u30e9\u30e0\u30d1\u30e9\u30e1\u30fc\u30bf": 51, "\u30ab\u30e9\u30e0\u30d9\u30fc\u30b9": [224, 225], "\u30ab\u30eb\u30c6\u30c3\u30c8": 56, "\u30ab\u30ec": [231, 232, 233, 234, 235, 274], "\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": [12, 17, 176], "\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30fc": [111, 161], "\u30ab\u30ec\u30fc": 299, "\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9": 299, "\u30ab\u30f3\u30b8": 201, "\u30ab\u30f3\u30de": [122, 125, 161, 225, 306, 308], "\u30ab\u30fc": [44, 231, 232, 233, 234, 235], "\u30ab\u30fc\u30ad\u30fc\u30af\u30fc\u30b1\u30fc\u30b3\u30fc": [231, 232, 233, 234, 235], "\u30ab\u30fc\u30bd\u30eb": [37, 39, 41, 50], "\u30ab\u30fc\u30cd\u30eb": 281, "\u30ab\u30fc\u30cd\u30eb\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": [47, 281], "\u30ac\u30a2": [44, 231, 232, 233, 234, 235], "\u30ac\u30ae\u30b2\u30b4": [231, 232, 233, 234, 235], "\u30ac\u30c6\u30de\u30e9": 44, "\u30ac\u30fc": [44, 231, 232, 233, 234, 235], "\u30ac\u30fc\u30b8\u30e4\u30fc\u30d0\u30fc\u30c9": 44, "\u30ac\u30fc\u30ba\u30a3\u30e4\u30fc\u30d0\u30fc\u30c9": 44, "\u30ad\u30a4": [44, 231, 232, 233, 234, 235], "\u30ad\u30e3\u30b9\u30c8": [37, 40, 41, 42, 43, 44, 47, 48, 51, 52, 53, 54, 132, 134, 135, 156, 184, 224, 246, 247, 311], "\u30ad\u30e3\u30c3\u30b7\u30e5": [0, 36, 41, 42, 43, 44, 47, 50, 51, 52, 53, 61, 107, 158, 175], "\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc": 107, "\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 61, "\u30ad\u30e3\u30c3\u30b7\u30e5\u30b5\u30a4\u30ba": 177, "\u30ad\u30e3\u30c3\u30b7\u30e5\u30d2\u30c3\u30c8": 48, "\u30ad\u30e3\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb": 177, "\u30ad\u30e3\u30f3\u30bb\u30eb": [45, 51, 52, 98, 99, 153], "\u30ad\u30e3\u30f3\u30bb\u30eb\u30ea\u30af\u30a8\u30b9\u30c8": 153, "\u30ad\u30fc": [34, 37, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 58, 74, 89, 91, 96, 110, 111, 115, 116, 117, 120, 121, 132, 134, 135, 137, 141, 153, 155, 156, 158, 161, 163, 171, 173, 175, 180, 202, 203, 208, 209, 224, 225, 229, 231, 232, 233, 234, 235, 237, 240, 254, 262, 278, 282, 305, 308], "\u30ad\u30fc\u30b5\u30a4\u30ba": [34, 41, 42, 43, 50, 104, 115, 116, 117, 141, 161, 254], "\u30ad\u30fc\u30b5\u30dd\u30fc\u30c8": 254, "\u30ad\u30fc\u30c7\u30fc\u30bf": 161, "\u30ad\u30fc\u30dc\u30fc\u30c9": 156, "\u30ad\u30fc\u30ef\u30fc\u30c9": [0, 22, 36, 38, 42, 43, 44, 45, 47, 48, 51, 52, 53, 54, 133, 156, 161, 191, 192, 193, 202, 205, 206, 224, 244, 245, 246, 247, 252, 275, 276, 278, 299, 300, 302, 308, 310], "\u30ae\u30a4": [44, 231, 232, 233, 234, 235], "\u30ae\u30e3\u30c3\u30d7": [42, 286], "\u30ae\u30fc": [44, 231, 232, 233, 234, 235], "\u30af\u30a6": [44, 231, 232, 233, 234, 235], "\u30af\u30a8\u30ea": [3, 4, 22, 37, 39, 42, 47, 48, 49, 50, 51, 52, 53, 159, 174, 183, 194, 196, 202, 210, 250, 251, 252, 253, 299, 301, 304, 306, 308, 310, 311, 315], "\u30af\u30a8\u30eaapi": 50, "\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": 11, "\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6": 49, "\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6\u30fc": 49, "\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5": 177, "\u30af\u30a8\u30ea\u30d1\u30bf\u30f3": 174, "\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9": 36, "\u30af\u30a8\u30ea\u30d1\u30e9\u30e1\u30fc\u30bf": 47, "\u30af\u30a8\u30ea\u30da\u30a2": 252, "\u30af\u30a8\u30ea\u30ed\u30b0": [39, 47, 52, 250, 251, 253], "\u30af\u30a8\u30ea\u30fc": [22, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 54, 57, 68, 132, 134, 135, 144, 145, 151, 159, 178, 180, 183, 186, 195, 196, 201, 202, 203, 223, 225, 228, 240, 243, 244, 245, 246, 247, 250, 253, 260, 261, 262, 264, 274, 275, 278, 306], "\u30af\u30a8\u30ea\u30fcapi": [92, 100], "\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 241, "\u30af\u30a8\u30ea\u30fc\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 41, "\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5": [42, 43, 51, 107], "\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc": 107, "\u30af\u30a8\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8": 156, "\u30af\u30a8\u30ea\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": 292, "\u30af\u30a8\u30ea\u30fc\u30d1\u30fc\u30b5\u30fc": 156, "\u30af\u30a8\u30ea\u30fc\u30ed\u30b0": [22, 41, 42, 43, 44, 45, 49, 50, 52, 53, 54, 57, 74, 124, 131, 175, 177, 296], "\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb": 175, "\u30af\u30a9\u30fc\u30c8": [138, 168, 224], "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8": [8, 22, 41, 45, 47, 49, 58, 99, 175, 177, 180, 290, 298], "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3": 49, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30b5\u30a4\u30c9": 99, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9": [53, 147], "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9": [37, 47], "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea": [1, 296], "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc": 49, "\u30af\u30e9\u30c3\u30b7\u30e5": [37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 114, 123, 124, 127, 164, 173], "\u30af\u30e9\u30c3\u30b7\u30e5\u30b1\u30fc\u30b9": 42, "\u30af\u30e9\u30c3\u30b7\u30e5\u30bb\u30fc\u30d5": 45, "\u30af\u30e9\u30c3\u30b7\u30e5\u30d0\u30b0": 50, "\u30af\u30e9\u30c3\u30b7\u30e5\u30ea\u30ab\u30d0\u30ea\u30fc": [43, 44], "\u30af\u30ea\u30a2": [39, 47, 51, 52], "\u30af\u30ea\u30a2\u30b3\u30fc\u30c9": 56, "\u30af\u30ea\u30a2\u30fc": [41, 42, 43, 51, 173], "\u30af\u30ea\u30c3\u30af": [18, 156], "\u30af\u30ea\u30c6\u30a3\u30ab\u30eb": [45, 51], "\u30af\u30ea\u30c6\u30a3\u30ab\u30eb\u30bb\u30af\u30b7\u30e7\u30f3": 51, "\u30af\u30ea\u30fc\u30f3": 12, "\u30af\u30ea\u30fc\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 6, "\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb": [42, 43], "\u30af\u30ed\u30fc\u30ba": [41, 149, 150], "\u30af\u30ed\u30fc\u30e9\u30fc": 56, "\u30af\u30ed\u30fc\u30e9\u30fc\u30b7\u30b9\u30c6\u30e0": 56, "\u30af\u30ed\u30fc\u30f3": [3, 12, 31], "\u30af\u30fc": [44, 231, 232, 233, 234, 235], "\u30b0\u30a1": 44, "\u30b0\u30a1\u30b0\u30a3\u30b0\u30a7\u30b0\u30a9": [231, 232, 233, 234, 235], "\u30b0\u30a1\u30c6\u30de\u30e9": 44, "\u30b0\u30a3": 44, "\u30b0\u30a6": [44, 231, 232, 233, 234, 235], "\u30b0\u30a7": 44, "\u30b0\u30a9": 44, "\u30b0\u30e9\u30d5": 0, "\u30b0\u30e9\u30e0": 275, "\u30b0\u30eb\u30f3\u30ac": 56, "\u30b0\u30eb\u30fc\u30d7": [0, 12, 41, 43, 44, 47, 48, 49, 50, 51, 52, 54, 89, 132, 134, 135, 156, 254, 306], "\u30b0\u30eb\u30fc\u30d7\u30ad\u30fc": [41, 132, 134, 135, 156], "\u30b0\u30ed\u30fc\u30d0\u30eb": [47, 60], "\u30b0\u30ed\u30fc\u30d0\u30eb\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 61, "\u30b0\u30fc": [44, 231, 232, 233, 234, 235], "\u30b1\u30a8": [44, 231, 232, 233, 234, 235], "\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc": 239, "\u30b1\u30fc": [44, 231, 232, 233, 234, 235], "\u30b1\u30fc\u30b9": [18, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 58, 61, 94, 111, 114, 123, 124, 132, 133, 134, 135, 149, 156, 161, 164, 177, 180, 183, 196, 224, 225, 244, 245, 246, 247, 262, 264, 277, 301, 306, 315], "\u30b2\u30a8": [44, 231, 232, 233, 234, 235], "\u30b2\u30c3\u30c8": 2, "\u30b2\u30fc": [44, 231, 232, 233, 234, 235], "\u30b2\u30fc\u30e0": 286, "\u30b3\u30a2": [31, 94, 156, 177, 180, 292], "\u30b3\u30a6": [44, 231, 232, 233, 234, 235], "\u30b3\u30aa": [44, 231, 232, 233, 234, 235], "\u30b3\u30b5\u30a4\u30f3": 45, "\u30b3\u30b9\u30c8": [54, 226], "\u30b3\u30cd\u30af\u30b7\u30e7\u30f3": [41, 50], "\u30b3\u30d4\u30fc": [12, 41, 42, 43, 47, 50, 51, 54, 58, 110, 114, 122, 160, 164], "\u30b3\u30de\u30f3\u30c9": [11, 12, 13, 14, 18, 21, 22, 27, 29, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 61, 91, 93, 95, 96, 98, 99, 102, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 176, 177, 178, 180, 182, 192, 193, 197, 198, 202, 203, 206, 208, 209, 210, 211, 212, 219, 221, 222, 224, 241, 243, 244, 245, 250, 251, 252, 253, 254, 262, 281, 282, 292, 298, 299, 303, 304, 305, 313, 314, 315], "\u30b3\u30de\u30f3\u30c9url": 292, "\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": 11, "\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf": 11, "\u30b3\u30de\u30f3\u30c9\u30a8\u30e9\u30fc": 42, "\u30b3\u30de\u30f3\u30c9\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 142, "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3": [22, 37, 44, 45, 49, 50, 51, 52, 57, 92, 96, 125, 156, 158, 191, 192, 193, 194, 291], "\u30b3\u30de\u30f3\u30c9\u30d1\u30fc\u30b5\u30fc": 244, "\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8": [47, 176], "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3": [6, 12, 17, 18, 27, 31, 39, 49, 50, 122, 155, 177, 244, 292], "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [54, 125], "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3": [31, 93, 176, 291], "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 241, "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b7\u30a7\u30eb": 224, "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b9\u30bf\u30a4\u30eb": [96, 125, 244], "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30d1\u30e9\u30e1\u30fc\u30bf": 52, "\u30b3\u30de\u30f3\u30c9\u30ea\u30b9\u30c8": 175, "\u30b3\u30df\u30c3\u30c8": [6, 12, 18], "\u30b3\u30df\u30e5\u30cb\u30c6\u30a3": [17, 18, 19, 22, 56], "\u30b3\u30e1\u30f3\u30c8": [37, 44, 48, 175, 176, 210, 243, 310], "\u30b3\u30e1\u30f3\u30c8id": 311, "\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8": 310, "\u30b3\u30e1\u30f3\u30c8\u30ab\u30e9\u30e0": 310, "\u30b3\u30e1\u30f3\u30c8\u30c6\u30fc\u30d6\u30eb": 310, "\u30b3\u30f3\u30bd\u30fc\u30eb": 74, "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8": [61, 74, 158, 175, 177, 210, 228], "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8id": [45, 175, 228], "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u30a2\u30c9\u30ec\u30b9": 53, "\u30b3\u30f3\u30c6\u30f3\u30c4": [56, 278], "\u30b3\u30f3\u30c6\u30f3\u30c8\u30bf\u30a4\u30d7": 298, "\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3": 51, "\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30bf\u30fc": 56, "\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8": [22, 51], "\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb": [43, 49, 52, 237], "\u30b3\u30f3\u30d1\u30a4\u30e9": [39, 49], "\u30b3\u30f3\u30d1\u30a4\u30e9\u30fc": [6, 31], "\u30b3\u30f3\u30d1\u30a4\u30eb": [40, 48], "\u30b3\u30f3\u30d1\u30a4\u30eb\u30a8\u30e9\u30fc": [50, 54], "\u30b3\u30f3\u30d1\u30a4\u30eb\u30ac\u30a4\u30c9": 27, "\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0": 12, "\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u30fc": 240, "\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb": 93, "\u30b3\u30f3\u30d5\u30ea\u30af\u30c8": 52, "\u30b3\u30f3\u30de": 111, "\u30b3\u30fc": [44, 231, 232, 233, 234, 235], "\u30b3\u30fc\u30c9": [17, 48, 49, 50, 51, 156, 168, 302], "\u30b3\u30fc\u30eb\u30d0\u30c3\u30af": 11, "\u30b4\u30a6": [44, 231, 232, 233, 234, 235], "\u30b4\u30aa": [44, 231, 232, 233, 234, 235], "\u30b4\u30df": [37, 39, 41, 53, 108, 141], "\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8": [108, 141], "\u30b4\u30df\u30c7\u30fc\u30bf": 180, "\u30b4\u30df\u30ce\u30fc\u30c9": 45, "\u30b4\u30fc": [44, 231, 232, 233, 234, 235], "\u30b5\u30a2": [44, 231, 232, 233, 234, 235], "\u30b5\u30a4\u30ba": [0, 23, 28, 32, 33, 34, 39, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 81, 98, 108, 117, 123, 141, 142, 161, 171, 175, 205, 206, 221, 254, 281, 298, 303, 305], "\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0": [120, 141], "\u30b5\u30a4\u30c8": [12, 156, 223, 305, 307], "\u30b5\u30a4\u30c9\u30e1\u30cb\u30e5\u30fc": 156, "\u30b5\u30b8\u30a7\u30b9\u30c8": [22, 31, 37, 39, 47, 49, 57, 159, 179, 252], "\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf": 180, "\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de": 251, "\u30b5\u30d6\u30a8\u30e9\u30fc": 53, "\u30b5\u30d6\u30af\u30e9\u30b9": 53, "\u30b5\u30d6\u30bb\u30c3\u30c8": 282, "\u30b5\u30d6\u30df\u30c3\u30c8": 180, "\u30b5\u30d6\u30ec\u30b3\u30fc\u30c9": [52, 135], "\u30b5\u30dd\u30fc\u30c8": [0, 1, 6, 7, 10, 21, 26, 27, 31, 32, 36, 37, 39, 40, 41, 42, 44, 47, 48, 49, 50, 51, 52, 53, 54, 93, 111, 132, 134, 135, 153, 154, 156, 158, 161, 167, 168, 173, 176, 177, 195, 201, 219, 224, 225, 226, 231, 235, 236, 239, 240, 241, 243, 244, 248, 254, 260, 274, 277, 292, 295, 296, 305, 306, 310, 312], "\u30b5\u30de\u30ea": 48, "\u30b5\u30ed\u30b2\u30fc\u30c8\u30da\u30a2": 52, "\u30b5\u30f3": 274, "\u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3": 188, "\u30b5\u30f3\u30d7\u30eb": [37, 38, 47, 48, 156, 177, 188, 195, 310], "\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3": 37, "\u30b5\u30f3\u30d7\u30eb\u30b7\u30e3\u30fc\u30c9": 136, "\u30b5\u30f3\u30d7\u30eb\u30b9\u30ad\u30fc\u30de": [137, 142, 155, 186, 194, 195, 196, 197, 198, 202, 203, 208, 209, 210, 211, 212, 219, 221, 245, 246, 247], "\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf": [110, 121, 122, 132, 134, 135, 156, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 237, 244, 245, 246, 247, 276, 278, 286, 310], "\u30b5\u30fc": [44, 231, 232, 233, 234, 235], "\u30b5\u30fc\u30d0": [12, 21, 22, 23, 28, 32, 33, 39, 47, 48, 54, 108, 109, 113, 119, 120, 122, 130, 147, 157, 162, 175, 176, 178, 295], "\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0": 176, "\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9": 175, "\u30b5\u30fc\u30d0\u30fc": [1, 22, 24, 25, 28, 32, 39, 41, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 56, 57, 81, 94, 153, 156, 157, 167, 172, 175, 177, 180, 241, 291, 292, 293, 298], "\u30b5\u30fc\u30d0\u30fcid": 39, "\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8": [22, 24, 25, 28, 32, 47, 49, 50, 289], "\u30b5\u30fc\u30d0\u30fc\u30d7\u30ed\u30bb\u30b9": [48, 105, 157], "\u30b5\u30fc\u30d0\u30fc\u30e2\u30c7\u30eb": [175, 298], "\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9": 50, "\u30b5\u30fc\u30d3\u30b9": [0, 21, 47, 48, 49, 56, 157, 281], "\u30b5\u30fc\u30d3\u30b9\u30b9\u30af\u30ea\u30d7\u30c8": 48, "\u30b6\u30a2": [44, 231, 232, 233, 234, 235], "\u30b6\u30b8\u30bc\u30be": [231, 232, 233, 234, 235], "\u30b6\u30fc": [44, 231, 232, 233, 234, 235], "\u30b7\u30a4": [44, 231, 232, 233, 234, 235], "\u30b7\u30a7\u30a2": 2, "\u30b7\u30a7\u30eb": [31, 50, 175, 176, 224, 244], "\u30b7\u30b0\u30ca\u30eb": [39, 49], "\u30b7\u30b9\u30c6\u30e0": [0, 3, 6, 22, 27, 31, 32, 39, 42, 49, 50, 51, 54, 94, 111, 118, 123, 124, 125, 156, 175, 203, 226, 240, 250, 281, 304], "\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9": 302, "\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8": 48, "\u30b7\u30b9\u30c6\u30e0\u30b3\u30fc\u30eb": 52, "\u30b7\u30b9\u30c6\u30e0\u30ed\u30b1\u30fc\u30eb": 53, "\u30b7\u30ca\u30ea\u30aa": 52, "\u30b7\u30e3\u30c3\u30c8\u30c0\u30a6\u30f3": 157, "\u30b7\u30e3\u30c3\u30d5\u30eb": 111, "\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0": [22, 27, 50, 57, 136, 254], "\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0\u30d0\u30fc\u30b8\u30e7\u30f3": [134, 135], "\u30b7\u30e3\u30fc\u30c9": [41, 43, 44, 50, 52, 54, 132, 134, 135, 136, 137, 248], "\u30b7\u30e3\u30fc\u30c9\u30ad\u30fc": [132, 134, 135, 137], "\u30b7\u30e3\u30fc\u30d7": [111, 161], "\u30b7\u30f3\u30b0\u30eb\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [111, 237], "\u30b7\u30f3\u30b0\u30eb\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0": 111, "\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8": [48, 138, 168, 175, 308], "\u30b7\u30f3\u30b0\u30eb\u30b9\u30ec\u30c3\u30c9\u30e2\u30c7\u30eb": 167, "\u30b7\u30f3\u30b0\u30eb\u30b9\u30ec\u30c3\u30c9\u30e2\u30fc\u30c9": 51, "\u30b7\u30f3\u30bf\u30c3\u30af\u30b9": [44, 49], "\u30b7\u30f3\u30bf\u30c3\u30af\u30b9\u30a8\u30e9\u30fc": [42, 43, 44, 49, 50, 51, 52], "\u30b7\u30f3\u30d7\u30eb": [50, 223, 291, 296, 306], "\u30b7\u30fc": [44, 231, 232, 233, 234, 235], "\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb": [41, 42, 50], "\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30b5\u30fc\u30c1": [41, 42, 45, 50, 51, 52, 53, 54, 183, 195, 196, 226], "\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30b9\u30ad\u30e3\u30f3": [50, 201], "\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30de\u30c3\u30c1": 53, "\u30b7\u30fc\u30b1\u30f3\u30b9": [96, 250, 251, 253], "\u30b8\u30a4": [44, 231, 232, 233, 234, 235], "\u30b8\u30a7\u30cd\u30ec\u30fc\u30bf": 27, "\u30b8\u30a7\u30cd\u30ec\u30fc\u30bf\u30fc": 27, "\u30b8\u30aa\u30b5\u30fc\u30c1": [22, 39, 304], "\u30b8\u30e7\u30d6": [54, 158], "\u30b8\u30f3\u30d9\u30a4\u30b6\u30e1": 44, "\u30b8\u30fc": [44, 231, 232, 233, 234, 235], "\u30b9\u30a6": [44, 231, 232, 233, 234, 235], "\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3": 53, "\u30b9\u30ab\u30e9\u30fc": [51, 52, 53, 90, 91, 134, 141, 156], "\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0": [42, 43, 58, 87, 91, 112, 141, 155], "\u30b9\u30ab\u30e9\u30fc\u30c7\u30fc\u30bf": 91, "\u30b9\u30ad\u30c3\u30d7": [48, 49, 50, 51], "\u30b9\u30ad\u30e3\u30f3": [191, 192, 193], "\u30b9\u30ad\u30fc\u30de": [42, 50, 58, 68, 110, 121, 122, 125, 132, 134, 135, 149, 150, 155, 156, 163, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 237, 244, 245, 246, 247, 248, 276, 278, 281, 286, 310], "\u30b9\u30af\u30ea\u30d7\u30c8": [12, 22, 31, 37, 38, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 57, 68, 111, 112, 125, 141, 142, 154, 155, 156, 176, 186, 210, 223, 224, 244], "\u30b9\u30b1\u30fc\u30d7": 244, "\u30b9\u30b3\u30a2": [11, 41, 42, 47, 50, 51, 52, 53, 89, 91, 111, 156, 159, 245, 246, 247, 301, 310, 315], "\u30b9\u30b3\u30a2\u30e9\u30fc": [22, 41, 50, 53, 57, 156, 246, 247], "\u30b9\u30b3\u30a2\u30fc": [41, 42, 50, 54, 91, 180, 245, 246, 247], "\u30b9\u30b3\u30a2\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb": 245, "\u30b9\u30b3\u30fc\u30d7": 244, "\u30b9\u30bf\u30a4\u30eb": [50, 52, 56, 96, 125, 141, 175, 191, 193], "\u30b9\u30bf\u30c3\u30af": [43, 44], "\u30b9\u30bf\u30c3\u30af\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc": [48, 51], "\u30b9\u30bf\u30c3\u30af\u30b5\u30a4\u30ba": 43, "\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3": 175, "\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30fc\u30f3\u30e2\u30fc\u30c9": [41, 50], "\u30b9\u30bf\u30f3\u30d0\u30a4": 45, "\u30b9\u30c3\u30c8\u30d7\u30ef\u30fc\u30c9": 53, "\u30b9\u30c6\u30c3\u30d7": [18, 110, 244], "\u30b9\u30c6\u30df\u30f3\u30b0": [42, 43, 49, 52, 53, 260], "\u30b9\u30c6\u30df\u30f3\u30b0\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0": 260, "\u30b9\u30c6\u30fc\u30b8": [41, 42, 45, 52, 53, 54, 132, 134, 135, 156], "\u30b9\u30c6\u30fc\u30bf\u30b9": [48, 50, 51, 100, 158, 173, 298], "\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9": 47, "\u30b9\u30c6\u30fc\u30c8\u30d5\u30eb": [53, 298], "\u30b9\u30c6\u30fc\u30c8\u30ec\u30b9": 53, "\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9": [42, 43, 45, 49, 54, 156, 261, 309], "\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3": 49, "\u30b9\u30c8\u30ea\u30fc\u30e0": [41, 49, 51], "\u30b9\u30c8\u30ec\u30fc\u30b8": [22, 41, 43, 101, 111, 161], "\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3": 22, "\u30b9\u30c8\u30ec\u30fc\u30b8\u30e2\u30fc\u30c9": 48, "\u30b9\u30cb\u30da\u30c3\u30c8": [42, 43, 48, 51, 205, 206], "\u30b9\u30d1\u30de\u30fc": [245, 246, 247], "\u30b9\u30d1\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb": [50, 52], "\u30b9\u30d1\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb\u30b5\u30dd\u30fc\u30c8": 50, "\u30b9\u30d4\u30fc\u30c9": 56, "\u30b9\u30da\u30a4\u30f3": [53, 188], "\u30b9\u30da\u30eb": 243, "\u30b9\u30da\u30fc\u30b9": [39, 41, 42, 44, 45, 48, 50, 53, 156, 224], "\u30b9\u30e9\u30a4\u30b9": 53, "\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8": [39, 292], "\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30b0\u30e9\u30d5": 41, "\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30c1\u30e3\u30fc\u30c8": 39, "\u30b9\u30ec\u30c3\u30c9": [0, 9, 41, 42, 45, 50, 51, 52, 53, 54, 81, 94, 105, 118, 127, 133, 156, 157, 158, 163, 166, 167, 175, 176, 180, 203, 292], "\u30b9\u30ec\u30c3\u30c9\u30ab\u30a6\u30f3\u30c8": 54, "\u30b9\u30ec\u30c3\u30c9\u30bb\u30fc\u30d5": [50, 51, 52], "\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb": 81, "\u30b9\u30ed\u30fc\u30af\u30a8\u30ea": 42, "\u30b9\u30ed\u30fc\u30af\u30a8\u30ea\u30fc": [42, 50, 177], "\u30b9\u30ed\u30fc\u30ed\u30b0": [43, 44], "\u30b9\u30ef\u30c3\u30d7": [43, 281], "\u30b9\u30fc": [44, 231, 232, 233, 234, 235], "\u30b9\u30fc\u30d7": 299, "\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc": 299, "\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc": 299, "\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9": 299, "\u30ba\u30a1": 44, "\u30ba\u30a1\u30ba\u30a3\u30ba\u30a7\u30ba\u30a9": [231, 232, 233, 234, 235], "\u30ba\u30a3": 44, "\u30ba\u30a6": [44, 231, 232, 233, 234, 235], "\u30ba\u30a7": 44, "\u30ba\u30a9": 44, "\u30ba\u30ec": 275, "\u30ba\u30fc": [44, 231, 232, 233, 234, 235], "\u30bb\u30a8": [44, 231, 232, 233, 234, 235], "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3": [22, 42, 43, 53, 54, 304], "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc": [43, 49, 50, 52], "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u30ea\u30b9\u30af": 49, "\u30bb\u30af\u30b7\u30e7\u30f3": [3, 17, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 42, 49, 50, 52, 53, 58, 90, 91, 92, 94, 95, 107, 110, 111, 112, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 170, 173, 175, 177, 180, 182, 188, 193, 224, 227, 238, 243, 244, 245, 246, 247, 249, 250, 251, 253, 281, 283, 298, 306, 310], "\u30bb\u30af\u30b7\u30e7\u30f3id": [41, 53], "\u30bb\u30af\u30b7\u30e7\u30f3\u30b5\u30dd\u30fc\u30c8": 111, "\u30bb\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u30d5\u30a9\u30eb\u30c8": 47, "\u30bb\u30b0\u30e1\u30f3\u30c8": [49, 51, 54, 108, 120, 141], "\u30bb\u30b0\u30e1\u30f3\u30c8id": 141, "\u30bb\u30c3\u30b7\u30e7\u30f3": [147, 175, 298], "\u30bb\u30c3\u30b7\u30e7\u30f3id": 180, "\u30bb\u30c3\u30c8": [11, 41, 42, 43, 44, 50, 53, 109, 111, 165, 195, 202, 203, 205, 299], "\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7": [17, 48, 51], "\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u30b9\u30af\u30ea\u30d7\u30c8": 21, "\u30bb\u30de\u30f3\u30c6\u30a3\u30c3\u30af\u30b5\u30fc\u30c1": 45, "\u30bb\u30df\u30b3\u30ed\u30f3": 176, "\u30bb\u30ec\u30af\u30bf": [51, 52], "\u30bb\u30ec\u30af\u30bf\u30fc": [41, 50, 201, 202, 203], "\u30bb\u30f3\u30c6\u30f3\u30b9": [41, 42, 43], "\u30bb\u30f3\u30c8\u30e9\u30eb\u30d1\u30fc\u30af": 311, "\u30bb\u30fc": [44, 231, 232, 233, 234, 235], "\u30bb\u30fc\u30d6\u30eb": 53, "\u30bb\u30fc\u30f4\u30a7\u30eb": 53, "\u30bb\u30fc\u30f4\u30eb": 53, "\u30bc\u30a8": [44, 231, 232, 233, 234, 235], "\u30bc\u30ed\u30b3\u30d4\u30fc": 41, "\u30bc\u30fc": [44, 231, 232, 233, 234, 235], "\u30bd\u30a6": [44, 231, 232, 233, 234, 235], "\u30bd\u30aa": [44, 231, 232, 233, 234, 235], "\u30bd\u30b1\u30c3\u30c8": [47, 108, 109, 113, 119, 120, 122, 130, 147, 162], "\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc": [22, 300], "\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9": 302, "\u30bd\u30d5\u30c8": 243, "\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2": [3, 7, 12, 21, 22, 23, 50, 56], "\u30bd\u30fc": [44, 231, 232, 233, 234, 235], "\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8": 307, "\u30bd\u30fc\u30b9": [12, 22, 23, 39, 41, 45, 47, 51, 52, 53, 111, 112, 142, 155, 173], "\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6": [6, 7, 8, 12, 27, 31, 44], "\u30bd\u30fc\u30b9\u30ab\u30e9\u30e0": [41, 49, 50, 51, 54, 110, 112, 124, 141, 142, 149, 155], "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9": [6, 7, 8, 14, 22, 23, 31, 33, 48, 51, 52, 156, 302], "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u30c7\u30a3\u30c6\u30af\u30c8\u30ea": 27, "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 27, "\u30bd\u30fc\u30b9\u30c6\u30fc\u30d6\u30eb": [41, 42, 142, 160], "\u30bd\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb": 17, "\u30bd\u30fc\u30b9\u30ec\u30b3\u30fc\u30c9": 41, "\u30bd\u30fc\u30c8": [22, 36, 37, 39, 41, 42, 48, 50, 51, 52, 54, 122, 132, 134, 135, 136, 156, 159, 180, 239, 254, 304, 307], "\u30bd\u30fc\u30c8\u30ad\u30fc": [36, 41, 42, 51, 52, 54, 132, 134, 135, 156, 159, 286], "\u30bd\u30fc\u30c8\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9": 41, "\u30be\u30a6": [44, 231, 232, 233, 234, 235], "\u30be\u30aa": [44, 231, 232, 233, 234, 235], "\u30be\u30fc": [44, 231, 232, 233, 234, 235], "\u30bf\u30a2": [44, 231, 232, 233, 234, 235], "\u30bf\u30a4\u30c8\u30eb": [43, 90, 132, 134, 135, 156, 224, 225, 245, 246, 247, 305, 307, 310], "\u30bf\u30a4\u30d7": [39, 43, 44, 50, 156, 176, 292], "\u30bf\u30a4\u30d7id": 51, "\u30bf\u30a4\u30df\u30f3\u30b0": [41, 42, 43, 45, 47, 52, 54, 156, 308], "\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8": [48, 175], "\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7": [38, 42, 51, 53, 173, 175, 180, 228, 250, 251, 253], "\u30bf\u30b0": [12, 22, 37, 39, 43, 44, 47, 48, 49, 53, 90, 91, 132, 134, 135, 156, 161, 191, 192, 193, 194, 205, 206, 225, 245, 246, 247, 254, 304, 311], "\u30bf\u30b0\u30c6\u30ad\u30b9\u30c8": [272, 273], "\u30bf\u30d6": [241, 243, 298], "\u30bf\u30fc": [44, 231, 232, 233, 234, 235], "\u30bf\u30fc\u30b2\u30c3\u30c8": [47, 51], "\u30bf\u30fc\u30b2\u30c3\u30c8\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 61, "\u30bf\u30fc\u30df\u30ca\u30eb": [175, 177], "\u30c0\u30a2": [44, 231, 232, 233, 234, 235], "\u30c0\u30a4\u30a2\u30ed\u30b0": 48, "\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8": 292, "\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0": [58, 291], "\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9": [12, 22, 23, 31, 33, 176, 227], "\u30c0\u30d6\u30eb": [39, 47, 161, 224, 225, 254], "\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8": [138, 168, 175, 308], "\u30c0\u30e1\u30fc\u30b8": 301, "\u30c0\u30f3\u30d7": [37, 41, 42, 43, 47, 48, 50, 51, 52, 54, 122, 175, 228, 281], "\u30c0\u30fc": [44, 231, 232, 233, 234, 235], "\u30c1\u30a4": [44, 231, 232, 233, 234, 235], "\u30c1\u30a7\u30c3\u30af": [37, 39, 41, 42, 47, 48, 49, 50, 51, 52, 53, 54, 96, 108, 123, 124, 137, 140, 163, 173, 174, 176, 180, 183, 224, 225], "\u30c1\u30a7\u30c3\u30af\u30b5\u30e0": 12, "\u30c1\u30a7\u30c3\u30af\u30dc\u30c3\u30af\u30b9": 42, "\u30c1\u30b8\u30df": 44, "\u30c1\u30c2\u30df": 44, "\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0": [22, 50], "\u30c1\u30e3\u30cd\u30eb": 53, "\u30c1\u30e3\u30f3\u30af": [41, 50, 51, 53, 108, 141], "\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba": 108, "\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8": 108, "\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb": [22, 39, 47, 49, 50, 305, 308], "\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0": [22, 48, 50, 57, 91, 156, 303], "\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": 281, "\u30c1\u30fc": [44, 231, 232, 233, 234, 235], "\u30c1\u30fc\u30e0": 12, "\u30c2\u30a4": [44, 231, 232, 233, 234, 235], "\u30c2\u30fc": [44, 231, 232, 233, 234, 235], "\u30c4\u30a4\u30fc\u30c8": [2, 12], "\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3": 12, "\u30c4\u30a6": [44, 231, 232, 233, 234, 235], "\u30c4\u30ba\u30e9": 44, "\u30c4\u30ea\u30fc": [49, 56, 96], "\u30c4\u30fc": [44, 231, 232, 233, 234, 235], "\u30c4\u30fc\u30eb": [17, 22, 41, 42, 50, 54, 96, 174, 175, 178, 227, 292, 296, 304, 308], "\u30c5\u30a1": 44, "\u30c5\u30a1\u30c5\u30a3\u30c5\u30a7\u30c5\u30a9": [231, 232, 233, 234, 235], "\u30c5\u30a3": 44, "\u30c5\u30a6": [44, 231, 232, 233, 234, 235], "\u30c5\u30a7": 44, "\u30c5\u30a9": 44, "\u30c5\u30fc": [44, 231, 232, 233, 234, 235], "\u30c6\u30a8": [44, 231, 232, 233, 234, 235], "\u30c6\u30ad\u30b9\u30c8": [12, 17, 37, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 68, 74, 91, 111, 135, 138, 156, 161, 165, 168, 176, 191, 192, 193, 194, 197, 205, 206, 224, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 257, 258, 259, 262, 264, 265, 266, 267, 268, 272, 275, 277], "\u30c6\u30ad\u30b9\u30c8\u30ab\u30e9\u30e0": 50, "\u30c6\u30ad\u30b9\u30c8\u30c7\u30fc\u30bf": [51, 161], "\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb": 176, "\u30c6\u30ad\u30b9\u30c8\u30d9\u30fc\u30b9": 45, "\u30c6\u30af\u30b9\u30c8": 156, "\u30c6\u30af\u30cb\u30c3\u30af": [245, 246, 247], "\u30c6\u30b9\u30c8": [3, 4, 6, 7, 8, 22, 23, 28, 32, 33, 37, 47, 49, 50, 51, 54, 133, 177, 301, 311], "\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9": 14, "\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0": 176, "\u30c6\u30f3\u30dd\u30e9\u30ea\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9": 52, "\u30c6\u30fc": [44, 231, 232, 233, 234, 235], "\u30c6\u30fc\u30d6\u30eb": [11, 22, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 74, 87, 89, 104, 105, 108, 109, 112, 113, 114, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 138, 140, 142, 143, 149, 150, 152, 155, 156, 159, 160, 162, 164, 165, 170, 173, 175, 177, 180, 183, 188, 192, 195, 196, 198, 201, 202, 210, 221, 224, 225, 229, 237, 240, 243, 244, 248, 250, 253, 255, 261, 276, 278, 281, 292, 295, 301, 304, 306, 307, 309, 313, 314], "\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [162, 164], "\u30c6\u30fc\u30d6\u30eb\u30d7\u30e9\u30b0\u30a4\u30f3": 47, "\u30c7\u30a3\u30b9\u30af": [36, 50, 51, 52, 118, 124, 140, 175, 177, 310], "\u30c7\u30a3\u30b9\u30afi": 161, "\u30c7\u30a3\u30b9\u30af\u30d5\u30eb": 50, "\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3": [31, 37, 44], "\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6": [47, 48, 54, 179, 292], "\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": [14, 17, 27, 31, 37, 39, 41, 47, 50, 53, 175, 176, 177, 243], "\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9": 48, "\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30fc": [6, 12, 180, 197], "\u30c7\u30a3\u30f3\u30b0": [45, 197], "\u30c7\u30a8": [44, 231, 232, 233, 234, 235], "\u30c7\u30af\u30ea\u30e1\u30f3\u30c8": [42, 52], "\u30c7\u30b3\u30fc\u30c9": 46, "\u30c7\u30b6\u30a4\u30f3": 47, "\u30c7\u30b9": 274, "\u30c7\u30c3\u30c9\u30ed\u30c3\u30af": 52, "\u30c7\u30d0\u30c3\u30ac\u30fc": 6, "\u30c7\u30d0\u30c3\u30b0": [6, 8, 27, 49, 50, 51, 52, 56, 108, 168, 175, 177, 228], "\u30c7\u30d0\u30c3\u30b0\u30aa\u30d7\u30b7\u30e7\u30f3": 6, "\u30c7\u30d0\u30c3\u30b0\u30ec\u30d9\u30eb": 43, "\u30c7\u30d0\u30c3\u30b0\u30ed\u30b0": [45, 50, 51, 123], "\u30c7\u30d5\u30a9\u30eb\u30c8": [6, 11, 18, 27, 31, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 91, 93, 96, 111, 119, 122, 123, 125, 126, 127, 128, 132, 133, 134, 135, 137, 141, 143, 152, 156, 157, 158, 159, 161, 163, 165, 168, 173, 174, 175, 176, 177, 180, 183, 184, 186, 188, 189, 191, 193, 196, 202, 203, 205, 208, 209, 219, 224, 225, 226, 228, 231, 237, 241, 245, 247, 275, 281, 282, 292, 298, 299, 301, 305, 306, 308], "\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc": [47, 51, 53, 110, 161, 251], "\u30c7\u30d5\u30a9\u30eb\u30c8\u30dd\u30fc\u30c8": 49, "\u30c7\u30d5\u30e9\u30b0": 39, "\u30c7\u30d7\u30ed\u30a4": 177, "\u30c7\u30e1\u30ea\u30c3\u30c8": [52, 254], "\u30c7\u30ea\u30fc": 44, "\u30c7\u30f3\u30de\u30fc\u30af": 53, "\u30c7\u30fc": [44, 231, 232, 233, 234, 235], "\u30c7\u30fc\u30bf": [0, 11, 22, 23, 28, 32, 33, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 81, 91, 106, 112, 122, 125, 132, 134, 135, 141, 142, 156, 159, 173, 177, 178, 180, 188, 224, 225, 226, 239, 243, 245, 246, 247, 248, 249, 251, 252, 254, 281, 292, 298, 301, 304, 307, 310, 313], "\u30c7\u30fc\u30bf\u30ab\u30e9\u30e0": [41, 43, 50, 51, 52, 111, 141, 149, 152, 156, 173, 246, 247, 310], "\u30c7\u30fc\u30bf\u30b5\u30a4\u30ba": 51, "\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2": 61, "\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [87, 90], "\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0": [22, 57], "\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8": [159, 180, 250], "\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb": 176, "\u30c7\u30fc\u30bf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8": 292, "\u30c7\u30fc\u30bf\u30d9\u30fc": 39, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9": [0, 11, 20, 22, 31, 36, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 61, 89, 106, 108, 109, 112, 118, 120, 122, 124, 125, 126, 127, 128, 139, 140, 142, 143, 144, 149, 150, 151, 152, 155, 161, 163, 169, 171, 173, 175, 176, 177, 180, 181, 223, 224, 225, 229, 248, 250, 254, 281, 282, 291, 296, 298, 303, 304, 312], "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0": 51, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [52, 173], "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30aa\u30fc\u30d7\u30f3": 42, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b5\u30a4\u30ba": 281, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b9\u30ad\u30fc\u30de": 122, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb": [48, 281], "\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9": [36, 161, 311], "\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u30b3\u30de\u30f3\u30c9": 248, "\u30c7\u30fc\u30e2\u30f3": [36, 47, 48, 50, 175, 177, 180, 295, 312], "\u30c7\u30fc\u30e2\u30f3\u30d7\u30ed\u30bb\u30b9": 177, "\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9": [48, 49], "\u30c8\u30a6": [44, 231, 232, 233, 234, 235], "\u30c8\u30aa": [44, 231, 232, 233, 234, 235], "\u30c8\u30c3\u30d7": 12, "\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 14, "\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30fc": 27, "\u30c8\u30c3\u30d7\u30da\u30fc\u30b8": 12, "\u30c8\u30c3\u30d7\u30ec\u30d9\u30eb\u30c9\u30e1\u30a4\u30f3": 306, "\u30c8\u30d4\u30c3\u30af": 12, "\u30c8\u30e2": 307, "\u30c8\u30e9\u30a4": [39, 161, 224, 225, 254], "\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0": [22, 37], "\u30c8\u30ea\u30b0\u30e9\u30e0": [275, 279], "\u30c8\u30ec\u30fc\u30b9\u30ed\u30b0": [22, 44, 57, 92], "\u30c8\u30ec\u30fc\u30b9\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea\u30fc": 96, "\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5": [262, 301], "\u30c8\u30fc": [44, 231, 232, 233, 234, 235], "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6": [22, 47, 56, 299], "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3": 47, "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3api": 47, "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc": [22, 24, 25, 28, 30, 32, 37, 38, 39, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 57, 102, 111, 124, 132, 134, 135, 142, 155, 156, 161, 165, 168, 169, 224, 225, 237, 244, 251, 253, 262, 264, 274, 275, 276, 277, 278, 299, 300], "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fcapi": 47, "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 50, "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3": [49, 168], "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30e2\u30fc\u30b8\u30e5\u30fc\u30eb": 262, "\u30c8\u30fc\u30af\u30ca\u30a4\u30ba": [31, 39, 41, 43, 44, 50, 51, 53, 56, 123, 156, 165, 168, 224, 225, 229, 237, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 266, 267, 268, 269, 270, 271, 272, 274, 275, 279, 280, 299, 301, 308], "\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u30e2\u30fc\u30c9": [51, 165, 168], "\u30c8\u30fc\u30af\u30f3": [37, 39, 41, 43, 44, 45, 48, 49, 50, 51, 53, 54, 111, 123, 156, 161, 165, 168, 224, 225, 229, 251, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 272, 274, 275, 276, 278, 279, 280, 299], "\u30c8\u30fc\u30af\u30f3id": 41, "\u30c8\u30fc\u30af\u30f3\u30ab\u30e9\u30e0": 41, "\u30c8\u30fc\u30af\u30f3\u30b5\u30a4\u30ba": 44, "\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf": [49, 53], "\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc": [22, 28, 32, 41, 42, 43, 44, 49, 50, 51, 52, 53, 54, 57, 124, 142, 155, 161, 165, 168, 255, 257, 258, 259, 260, 261], "\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 50, "\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3": 255, "\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb": 255, "\u30c8\u30fc\u30bf\u30eb": [42, 43], "\u30c8\u30fc\u30bf\u30eb\u30b5\u30a4\u30ba": 41, "\u30c9\u30a4\u30c4": 53, "\u30c9\u30a6": [44, 231, 232, 233, 234, 235], "\u30c9\u30aa": [44, 231, 232, 233, 234, 235], "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8": [3, 5, 6, 7, 8, 16, 17, 23, 27, 31, 37, 39, 40, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 56, 87, 95, 102, 111, 137, 156, 168, 176, 177, 180, 224, 225, 244, 247, 262, 281, 303], "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30c4\u30fc\u30eb": [15, 18], "\u30c9\u30e1\u30a4\u30f3": [49, 51, 306], "\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3": [22, 39, 41, 43, 44, 48, 49, 50, 51, 52, 54, 134, 254, 282, 304, 307, 311], "\u30c9\u30fc": [44, 231, 232, 233, 234, 235], "\u30ca\u30a2": [44, 231, 232, 233, 234, 235], "\u30ca\u30ce": [37, 41, 95, 96, 228], "\u30ca\u30de\u30a8": [231, 232, 233, 234, 235, 274], "\u30ca\u30fc": [44, 231, 232, 233, 234, 235], "\u30cb\u30a4": [44, 231, 232, 233, 234, 235], "\u30cb\u30b3\u30b9\u30ab\u30b6\u30f3\u30b6\u30ad\u30b9": 44, "\u30cb\u30b3\u30b9\u30ab\u30b6\u30f3\u30c5\u30a1\u30ad\u30b9": 44, "\u30cb\u30c3\u30dd\u30f3": [201, 240, 250], "\u30cb\u30db\u30f3": [201, 240, 250], "\u30cb\u30db\u30f3\u30b4": 250, "\u30cb\u30db\u30f3\u30b8\u30f3": 250, "\u30cb\u30e5\u30fc\u30b9": [51, 226], "\u30cb\u30e5\u30fc\u30e8\u30fc\u30af": [74, 188, 311], "\u30cb\u30fc": [44, 231, 232, 233, 234, 235], "\u30cc\u30a6": [44, 231, 232, 233, 234, 235], "\u30cc\u30fc": [44, 231, 232, 233, 234, 235], "\u30cd\u30a8": [44, 231, 232, 233, 234, 235], "\u30cd\u30b9\u30c8": [42, 47, 48, 49, 50, 53, 54, 141, 310], "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af": [105, 292, 312], "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30a2\u30af\u30bb\u30b9": 105, "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc": [47, 298], "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d7\u30ed\u30c8\u30b3\u30eb": 47, "\u30cd\u30fc": [44, 231, 232, 233, 234, 235], "\u30ce\u30a4\u30ba": [42, 45, 180, 251, 274, 301], "\u30ce\u30a6": [44, 231, 232, 233, 234, 235], "\u30ce\u30a6\u30cf\u30a6": 56, "\u30ce\u30aa": [44, 231, 232, 233, 234, 235], "\u30ce\u30eb\u30a6\u30a7\u30fc": 53, "\u30ce\u30fc": [44, 231, 232, 233, 234, 235], "\u30ce\u30fc\u30c9": [47, 51], "\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc": [22, 24, 25, 28, 32, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 57, 102, 110, 111, 138, 139, 142, 155, 156, 161, 165, 168, 191, 192, 193, 225, 230, 231, 232, 233, 234, 235, 236, 237, 244, 264, 275, 279, 280], "\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 50, "\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d7\u30b7\u30e7\u30f3": 229, "\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3": [138, 229], "\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb": 229, "\u30ce\u30fc\u30de\u30e9\u30a4\u30ba": [42, 43, 44, 45, 48, 49, 54, 111, 138, 168, 257, 258, 259, 275, 308], "\u30cf\u30a2": [44, 231, 232, 233, 234, 235], "\u30cf\u30a4\u30d5\u30f3": [44, 53, 111, 161, 231, 232, 233, 234, 235, 257, 258, 259, 308], "\u30cf\u30a4\u30e9\u30a4\u30c8": [41, 45, 51, 53, 54, 191, 192, 193, 237, 275], "\u30cf\u30b9\u30ce\u30ab\u30c5\u30e9": 44, "\u30cf\u30ba": 274, "\u30cf\u30c3\u30b7\u30e5": [47, 50, 54, 108], "\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb": [39, 41, 42, 43, 48, 50, 52, 53, 54, 104, 122, 142, 161, 225, 254], "\u30cf\u30fc": [44, 231, 232, 233, 234, 235], "\u30d0\u30a2": [44, 231, 232, 233, 234, 235], "\u30d0\u30a4\u30aa\u30ea\u30f3": [53, 231, 235], "\u30d0\u30a4\u30b0\u30e9\u30e0": [44, 53, 262, 264, 266, 267, 268, 269, 270, 271, 275, 277, 301], "\u30d0\u30a4\u30b0\u30e9\u30e0\u30d9\u30fc\u30b9": 264, "\u30d0\u30a4\u30c8": [34, 37, 39, 43, 47, 48, 49, 50, 51, 52, 98, 100, 111, 141, 142, 155, 156, 158, 205, 206, 254, 282], "\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc": 47, "\u30d0\u30a4\u30c8\u30b5\u30a4\u30ba": [50, 68], "\u30d0\u30a4\u30c8\u30b7\u30fc\u30b1\u30f3\u30b9": 48, "\u30d0\u30a4\u30ca\u30ea\u30c7\u30fc\u30bf": [47, 54], "\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb": [1, 14, 22, 50, 51, 289, 312], "\u30d0\u30a4\u30ca\u30ea\u30fc": 95, "\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0": [20, 21, 223], "\u30d0\u30a4\u30f3\u30c9": 50, "\u30d0\u30af": 54, "\u30d0\u30b0": [10, 39, 42, 45, 48, 50, 51, 53, 54], "\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9": 50, "\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9\u30ea\u30ea\u30fc\u30b9": [47, 49, 50, 51], "\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8": [3, 22, 31, 49], "\u30d0\u30c3\u30af\u30a2\u30c3\u30d7": [106, 122], "\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5": [48, 68, 175, 224], "\u30d0\u30c3\u30af\u30c8\u30ec\u30fc\u30b9": [41, 42, 43, 44, 51, 52, 166], "\u30d0\u30c3\u30af\u30c8\u30ec\u30fc\u30b9\u30ed\u30ae\u30f3\u30b0\u30d7\u30ed\u30bb\u30b9": 42, "\u30d0\u30c3\u30c1\u30e2\u30fc\u30c9": 47, "\u30d0\u30c3\u30d5\u30a1": [47, 48, 51, 68, 108, 310], "\u30d0\u30c3\u30d5\u30a1id": 108, "\u30d0\u30c3\u30d5\u30a1\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc": 51, "\u30d0\u30c3\u30d5\u30a1\u30b5\u30a4\u30ba": 50, "\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8": 108, "\u30d0\u30c3\u30d5\u30a1\u30ea\u30f3\u30b0": 48, "\u30d0\u30c3\u30d5\u30a1\u30fc": [53, 54], "\u30d0\u30d3\u30d6\u30d9\u30dc": [53, 231, 235], "\u30d0\u30d3\u30d6\u30d9\u30dc\u30d6": [231, 232, 233, 234, 235, 258, 259], "\u30d0\u30e9\u30f3\u30b9": 44, "\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3": 53, "\u30d0\u30ea\u30e5\u30fc": 96, "\u30d0\u30ea\u30e5\u30fc\u30b5\u30dd\u30fc\u30c8": 254, "\u30d0\u30eb\u30af": 50, "\u30d0\u30eb\u30af\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [50, 51], "\u30d0\u30f3\u30c9\u30eb": [41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54], "\u30d0\u30fc": [44, 231, 232, 233, 234, 235], "\u30d0\u30fc\u30b8\u30e7\u30f3": [17, 32, 35, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 85, 109, 132, 134, 135, 151, 156, 158, 175, 188, 191, 192, 193, 205, 206, 231, 232, 233, 234, 235, 236, 257, 258, 259, 284, 308], "\u30d0\u30fc\u30b8\u30e7\u30f3\u30a2\u30c3\u30d7": [42, 43], "\u30d0\u30fc\u30c1\u30e4\u30eb": 44, "\u30d1\u30a2": [44, 231, 232, 233, 234, 235], "\u30d1\u30b8\u30e7\u30f3": 44, "\u30d1\u30b9": [12, 27, 31, 37, 38, 39, 41, 44, 45, 49, 50, 52, 53, 111, 112, 142, 144, 145, 151, 161, 173, 174, 175, 176, 177, 178, 180, 181, 292, 298, 308], "\u30d1\u30b9\u30b9\u30bf\u30a4\u30eb": 244, "\u30d1\u30b9\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9": 54, "\u30d1\u30bd\u30b3\u30f3": 56, "\u30d1\u30bf\u30fc\u30f3": [50, 52, 53, 54, 95, 195, 208, 224, 225, 244, 276], "\u30d1\u30bf\u30fc\u30f3\u30de\u30c3\u30c1": 244, "\u30d1\u30c3\u30b1\u30fc\u30b8": [8, 23, 24, 25, 26, 27, 28, 31, 32, 33, 37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 54, 93, 94, 111, 156, 172, 177, 197, 260, 274, 296], "\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9": 37, "\u30d1\u30c3\u30b1\u30fc\u30b8\u30f3\u30b0": [12, 41], "\u30d1\u30c3\u30b1\u30fc\u30b8\u30f3\u30b0\u30dd\u30ea\u30b7\u30fc": 48, "\u30d1\u30c3\u30c1": [3, 16, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "\u30d1\u30c8\u30ea\u30b7\u30a2": [22, 47, 299, 304, 308], "\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4": [37, 39, 43, 44, 48, 50, 51, 54, 104, 120, 161, 224, 225, 254], "\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30c6\u30fc\u30d6\u30eb": [41, 142, 224, 225], "\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30ce\u30fc\u30c9": 50, "\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9": [41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 54, 156, 174, 175, 177, 180, 196, 296], "\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0": 43, "\u30d1\u30e9\u30e1\u30fc\u30bf": [22, 27, 31, 39, 41, 42, 47, 48, 49, 51, 52, 53, 54, 61, 68, 74, 81, 85, 135, 156, 174, 180, 191, 299, 303, 304, 306, 308, 311, 312, 315], "\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": [39, 40, 41, 49, 50, 51, 53, 54, 97, 98, 99, 111, 124, 125, 126, 127, 128, 132, 133, 134, 137, 149, 150, 152, 153, 157, 161, 163, 168, 177, 178, 180, 195, 202, 203, 210, 219, 243, 281, 305], "\u30d1\u30ea": 188, "\u30d1\u30fc": [44, 231, 232, 233, 234, 235], "\u30d1\u30fc\u30b5\u30fc": [12, 54, 244], "\u30d1\u30fc\u30b9": [39, 41, 44, 51, 52, 54, 68, 202, 223], "\u30d1\u30fc\u30b9\u30a8\u30e9\u30fc": 52, "\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3": 49, "\u30d2\u30a4": [44, 231, 232, 233, 234, 235], "\u30d2\u30c3\u30c8": [11, 41, 42, 43, 44, 45, 48, 51, 52, 53, 54, 156, 186, 226, 240, 250, 276, 299, 301, 311, 313], "\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2": [156, 223, 301], "\u30d2\u30e5\u30d9\u30cb": [188, 189], "\u30d2\u30fc": [44, 231, 232, 233, 234, 235], "\u30d3\u30a4": [44, 231, 232, 233, 234, 235], "\u30d3\u30b8\u30cd\u30b9": 56, "\u30d3\u30b8\u30e7\u30f3": 56, "\u30d3\u30c3\u30b0\u30a8\u30f3\u30c7\u30a3\u30a2\u30f3": 49, "\u30d3\u30c3\u30c8": [45, 50, 111, 224, 298, 305], "\u30d3\u30c3\u30c8\u30b7\u30d5\u30c8": 225, "\u30d3\u30e5\u30fc": 47, "\u30d3\u30eb\u30c8\u30a4\u30f3": [41, 48, 53], "\u30d3\u30eb\u30c9": [3, 4, 18, 21, 22, 23, 37, 39, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 111, 156, 243, 248], "\u30d3\u30eb\u30c9\u30a8\u30e9\u30fc": [45, 49, 50, 51, 52, 54], "\u30d3\u30eb\u30c9\u30aa\u30d7\u30b7\u30e7\u30f3": 31, "\u30d3\u30eb\u30c9\u30b7\u30b9\u30c6\u30e0": [5, 31], "\u30d3\u30eb\u30c9\u30bf\u30a4\u30e0": 6, "\u30d3\u30eb\u30c9\u30c4\u30fc\u30eb": [6, 44], "\u30d3\u30eb\u30c9\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 27, "\u30d3\u30eb\u30c9\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": [6, 27, 171], "\u30d3\u30eb\u30c9\u30d5\u30a1\u30a4\u30eb": 27, "\u30d3\u30fc": [44, 231, 232, 233, 234, 235], "\u30d4\u30a4": [44, 231, 232, 233, 234, 235], "\u30d4\u30ea\u30aa\u30c9": 310, "\u30d4\u30fc": [44, 231, 232, 233, 234, 235], "\u30d4\u30fc\u30af": 56, "\u30d5\u30a1\u30a4\u30e4\u30fc\u30a6\u30a9\u30fc\u30eb": 105, "\u30d5\u30a1\u30a4\u30eb": [3, 12, 22, 27, 31, 33, 36, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 81, 93, 99, 101, 108, 109, 113, 119, 120, 122, 130, 147, 153, 156, 162, 167, 173, 176, 177, 178, 197, 225, 228, 248, 250, 290, 291, 296, 298, 308], "\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba": 50, "\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0": 39, "\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf": 37, "\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u30fc": [47, 180], "\u30d5\u30a1\u30a4\u30eb\u30cf\u30f3\u30c9\u30eb": 52, "\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9": 27, "\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30fc\u30de\u30c3\u30c8": 243, "\u30d5\u30a1\u30a4\u30eb\u30de\u30c3\u30d4\u30f3\u30b0": 52, "\u30d5\u30a1\u30bb\u30c3\u30c8": 156, "\u30d5\u30a3\u30eb\u30bf": [47, 50, 51, 52], "\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0": [43, 48, 111], "\u30d5\u30a3\u30eb\u30bf\u30fc": [42, 43, 44, 53, 54, 111, 132, 134, 135, 141, 156, 210], "\u30d5\u30a3\u30eb\u30bf\u30fc\u30bf\u30a4\u30df\u30f3\u30b0": [52, 53], "\u30d5\u30a3\u30eb\u30bf\u30fc\u30c6\u30ad\u30b9\u30c8": 156, "\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9": 53, "\u30d5\u30a3\u30fc\u30eb\u30c9": 112, "\u30d5\u30a6": [44, 231, 232, 233, 234, 235], "\u30d5\u30a9\u30eb\u30c0": 27, "\u30d5\u30a9\u30eb\u30c0\u30fc": 33, "\u30d5\u30a9\u30ed\u30ef\u30fc": 12, "\u30d5\u30a9\u30ed\u30fc": 2, "\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8": 311, "\u30d5\u30a9\u30fc\u30ab\u30b9": [45, 231, 235], "\u30d5\u30a9\u30fc\u30af": 3, "\u30d5\u30a9\u30fc\u30af\u30ea\u30dd\u30b8\u30c8\u30ea": 18, "\u30d5\u30a9\u30fc\u30de\u30c3\u30c8": [42, 43, 44, 50, 52, 53, 54, 108, 122, 125, 132, 134, 135, 141, 159, 175, 177, 180, 225, 227, 248, 292, 311], "\u30d5\u30a9\u30fc\u30e0": [48, 156, 223, 224], "\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af": [51, 52], "\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af\u30e2\u30fc\u30c9": 50, "\u30d5\u30c3\u30af": 21, "\u30d5\u30e9\u30b0": [31, 34, 36, 39, 40, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 74, 91, 108, 109, 111, 112, 113, 119, 130, 132, 134, 135, 138, 141, 142, 155, 156, 161, 168, 173, 175, 202, 224, 225, 229, 230, 244, 254, 298, 305, 308, 309, 313], "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7": 120, "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3": [36, 120], "\u30d5\u30e9\u30c3\u30b7\u30e5": [50, 51, 52, 53, 124], "\u30d5\u30e9\u30c3\u30c8": 96, "\u30d5\u30e9\u30f3\u30b9": [53, 188, 260], "\u30d5\u30ea\u30fc\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u30e9\u30a4\u30bb\u30f3\u30b9": 45, "\u30d5\u30eb\u30d1\u30b9": 54, "\u30d5\u30ec\u30fc\u30ba": [41, 42, 43, 44, 45, 47, 51, 111], "\u30d5\u30ec\u30fc\u30ba\u30b0\u30eb\u30fc\u30d7": 44, "\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af": 14, "\u30d5\u30fc": [44, 231, 232, 233, 234, 235], "\u30d6\u30a2\u30fc\u30c1\u30e4\u30eb": 44, "\u30d6\u30a6": [44, 231, 232, 233, 234, 235], "\u30d6\u30c3\u30af\u30de\u30fc\u30af": 91, "\u30d6\u30d6\u30d6\u30d6\u30d6\u30d6": [231, 232, 233, 234, 235, 258, 259], "\u30d6\u30e9\u30a6\u30b6": [12, 17, 31, 312], "\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9": [22, 304], "\u30d6\u30e9\u30a6\u30b6\u30fc\u30d9\u30fc\u30b9": [41, 42], "\u30d6\u30e9\u30b8\u30ea\u30a2": 188, "\u30d6\u30e9\u30b8\u30eb": [22, 188], "\u30d6\u30e9\u30f3\u30c1": [12, 44], "\u30d6\u30eb\u30fc\u30ce\u30fc\u30c8\u30b9\u30b1\u30fc\u30eb": 56, "\u30d6\u30ed\u30b0": [210, 226, 310, 311], "\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea": [12, 156, 224, 225, 310], "\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea\u30fc": [132, 134, 135], "\u30d6\u30ed\u30c3\u30af": [0, 48, 106, 177], "\u30d6\u30fc": [44, 231, 232, 233, 234, 235], "\u30d6\u30fc\u30ea\u30a2\u30f3": 282, "\u30d6\u30fc\u30eb": [53, 282, 305], "\u30d7\u30a6": [44, 231, 232, 233, 234, 235], "\u30d7\u30c3\u30b7\u30e5": 18, "\u30d7\u30e9\u30b0\u30a4\u30f3": [0, 17, 24, 25, 27, 28, 31, 32, 36, 37, 38, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 53, 54, 103, 122, 132, 133, 134, 135, 136, 137, 142, 144, 145, 151, 154, 155, 156, 197, 198, 208, 209, 211, 212, 219, 221, 222, 229, 243, 248, 255], "\u30d7\u30e9\u30b0\u30a4\u30f3api": 49, "\u30d7\u30e9\u30b0\u30a4\u30f3id": 142, "\u30d7\u30e9\u30b0\u30de": 156, "\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0": [14, 17, 23, 27, 31, 39], "\u30d7\u30e9\u30f3": 41, "\u30d7\u30ea\u30bb\u30c3\u30c8": 23, "\u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8": [22, 50, 51, 57, 92], "\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8": 12, "\u30d7\u30ec\u30d3\u30e5\u30fc": 18, "\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9": [54, 81, 156, 177, 180, 248, 254, 308], "\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9": 291, "\u30d7\u30ec\u30fc\u30b9\u30db\u30eb\u30c0": 48, "\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0": 1, "\u30d7\u30ed\u30b0\u30e9\u30e0": [3, 37, 47, 52, 112, 175, 177, 180, 225], "\u30d7\u30ed\u30b0\u30ec\u30b9\u30ed\u30b0": 123, "\u30d7\u30ed\u30b0\u30ec\u30d0\u30f3\u30c9": 56, "\u30d7\u30ed\u30b7\u30fc\u30b8\u30e3": 201, "\u30d7\u30ed\u30b7\u30fc\u30b8\u30e3\u30fc": 41, "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8": [0, 3, 12, 13, 17, 19, 21, 49, 296], "\u30d7\u30ed\u30bb\u30b9": [0, 41, 42, 47, 48, 50, 51, 53, 93, 101, 108, 111, 114, 124, 127, 144, 147, 151, 152, 158, 161, 164, 171, 173, 174, 175, 176, 177, 180, 228, 292, 308], "\u30d7\u30ed\u30bb\u30b9id": [45, 175, 298], "\u30d7\u30ed\u30bb\u30b9\u30ed\u30b0": [22, 42, 45, 50, 57, 111, 175, 296], "\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3": [177, 180], "\u30d7\u30ed\u30c0\u30af\u30c8": 12, "\u30d7\u30ed\u30c8\u30b3\u30eb": [0, 1, 22, 47, 51, 100, 174, 176, 177, 295, 296, 312], "\u30d7\u30ed\u30d1\u30c6\u30a3": [51, 155], "\u30d7\u30ed\u30f3\u30d7\u30c8": 241, "\u30d7\u30fc": [44, 231, 232, 233, 234, 235], "\u30d8\u30a8": [44, 231, 232, 233, 234, 235], "\u30d8\u30c3\u30c0": [48, 49], "\u30d8\u30c3\u30c0\u30d5\u30a1\u30a4\u30eb": 47, "\u30d8\u30c3\u30c0\u30fc": [41, 47, 49, 50, 100, 125, 178, 292], "\u30d8\u30eb\u30d7": 14, "\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8": [37, 175], "\u30d8\u30fc": [44, 231, 232, 233, 234, 235], "\u30d9\u30a8": [44, 231, 232, 233, 234, 235], "\u30d9\u30af\u30bf": [36, 37, 47, 48, 51, 52], "\u30d9\u30af\u30bf\u30ab\u30e9\u30e0": [39, 47, 48], "\u30d9\u30af\u30bf\u30fc": [39, 41, 42, 43, 44, 48, 49, 51, 52, 53, 54, 91, 111, 121, 134, 156, 197, 219], "\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": [22, 41, 42, 43, 44, 48, 49, 50, 51, 52, 53, 87, 90, 112, 132, 134, 135, 141, 142, 155, 156, 220, 221, 250, 304, 311], "\u30d9\u30af\u30bf\u30fc\u30c7\u30fc\u30bf": [53, 91], "\u30d9\u30af\u30c8\u30eb": [41, 45, 53], "\u30d9\u30f3\u30c1\u30de\u30fc\u30af": 49, "\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb": 176, "\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30d7\u30ed\u30b0\u30e9\u30e0": 48, "\u30d9\u30fc": [44, 231, 232, 233, 234, 235], "\u30d9\u30fc\u30b7\u30c3\u30af": 292, "\u30d9\u30fc\u30b9": [0, 17, 24, 25, 28, 32, 37, 39, 41, 44, 47, 49, 54, 134, 153, 156, 168, 175, 177, 224, 225, 240, 245, 246, 247, 248, 274, 277, 291, 296], "\u30d9\u30fc\u30b9\u30d1\u30b9": 177, "\u30da\u30a2": [44, 50, 96, 141, 142, 156, 171, 186, 202, 203, 208, 209, 243, 250, 251, 252, 253, 305, 314], "\u30da\u30a8": [44, 231, 232, 233, 234, 235], "\u30da\u30f3": 272, "\u30da\u30fc": [44, 231, 232, 233, 234, 235], "\u30da\u30fc\u30b8": [2, 12, 17, 18, 22, 47, 48, 50, 156, 175, 178, 302, 308], "\u30da\u30fc\u30b8\u30ad\u30e3\u30c3\u30b7\u30e5": 42, "\u30da\u30fc\u30b8\u30e9\u30f3\u30af": [245, 246, 247], "\u30da\u30fc\u30b9": 111, "\u30da\u30fc\u30b9\u30c8": 47, "\u30db\u30a6": [44, 231, 232, 233, 234, 235], "\u30db\u30a6\u30b8\u30ed\u30b6\u30e1": 44, "\u30db\u30aa": [44, 231, 232, 233, 234, 235], "\u30db\u30aa\u30b8\u30ed\u30b6\u30e1": 44, "\u30db\u30b9\u30c8": [39, 41, 47, 174, 175, 176, 180, 298], "\u30db\u30fc": [44, 231, 232, 233, 234, 235], "\u30dc\u30a6": [44, 231, 232, 233, 234, 235], "\u30dc\u30aa": [44, 231, 232, 233, 234, 235], "\u30dc\u30bf\u30f3": [12, 17, 18, 47, 48], "\u30dc\u30c3\u30af\u30b9": 156, "\u30dc\u30c7\u30a3": [110, 111, 118, 124, 125, 131, 137, 140, 141, 143, 144, 145, 149, 150, 151, 157, 160, 161, 163, 164, 166, 167, 178, 180, 298], "\u30dc\u30e9\u30f3\u30c6\u30a3\u30a2\u30b5\u30fc\u30d3\u30b9": 56, "\u30dc\u30fc": [44, 231, 232, 233, 234, 235], "\u30dd\u30a4\u30f3\u30bf": 51, "\u30dd\u30a4\u30f3\u30c8": [91, 111, 243], "\u30dd\u30a6": [44, 231, 232, 233, 234, 235], "\u30dd\u30aa": [44, 231, 232, 233, 234, 235], "\u30dd\u30b9\u30c6\u30a3\u30f3\u30b0": [54, 111], "\u30dd\u30b9\u30c6\u30a3\u30f3\u30b0\u30ea\u30b9\u30c8": [41, 50, 51, 52, 53, 54, 141], "\u30dd\u30eb\u30c8\u30ac\u30eb": 53, "\u30dd\u30fc": [44, 231, 232, 233, 234, 235], "\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3": [39, 48, 54], "\u30dd\u30fc\u30c8": [48, 174, 175, 176, 180, 241, 292, 296, 298, 312], "\u30de\u30a2": [44, 231, 232, 233, 234, 235], "\u30de\u30a4\u30af\u30ed": [44, 225, 228, 282, 305, 311], "\u30de\u30a4\u30af\u30ed\u30d0\u30fc\u30b8\u30e7\u30f3": 41, "\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0": [22, 54, 304], "\u30de\u30a4\u30ca\u30fc": 41, "\u30de\u30af\u30c9\u30ca\u30eb\u30c9": 239, "\u30de\u30af\u30ed": [39, 41, 48, 50, 52, 302], "\u30de\u30b7\u30f3": [12, 175, 248], "\u30de\u30c3\u30c1": [11, 31, 36, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 68, 91, 132, 134, 135, 156, 183, 186, 191, 192, 193, 195, 197, 201, 202, 203, 205, 206, 210, 219, 223, 224, 244, 245, 246, 247, 261, 272, 276, 277, 278, 301, 310], "\u30de\u30c3\u30c1\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3": [31, 43, 156, 186], "\u30de\u30c3\u30c1\u30ec\u30b3\u30fc\u30c9": 134, "\u30de\u30c3\u30d4\u30f3\u30b0": [43, 44, 52, 303], "\u30de\u30c3\u30d7": [43, 50, 52, 118, 281], "\u30de\u30c9\u30ea\u30fc\u30c9": 188, "\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [41, 42, 48, 49, 50, 51, 53, 54, 112, 155, 237, 310], "\u30de\u30eb\u30c1\u30b3\u30a2": 0, "\u30de\u30eb\u30c1\u30b3\u30a2cpu": 31, "\u30de\u30eb\u30c1\u30b9\u30ec\u30c3\u30c9": [27, 31, 49, 50, 118, 153, 292], "\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3": 48, "\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 113, "\u30de\u30eb\u30c1\u30d0\u30a4\u30c8": [39, 44, 51], "\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9": [39, 292], "\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30d9\u30fc\u30b9": 228, "\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30e2\u30c7\u30eb": 49, "\u30de\u30eb\u30c1\u30e9\u30a4\u30f3\u30e2\u30fc\u30c9": 244, "\u30de\u30eb\u30c1\u30ef\u30fc\u30ab\u30fc": 177, "\u30de\u30f3\u30cf\u30c3\u30bf\u30f3": 45, "\u30de\u30fc": [44, 231, 232, 233, 234, 235], "\u30de\u30fc\u30af": 277, "\u30de\u30fc\u30af\u30a2\u30c3\u30d7": 50, "\u30de\u30fc\u30b8": [12, 17, 47, 53], "\u30df\u30a4": [44, 231, 232, 233, 234, 235], "\u30df\u30b9": 250, "\u30df\u30ea": [39, 41, 99, 175, 180, 225, 282, 305, 315], "\u30df\u30ea\u79d2": 282, "\u30df\u30eb\u30af": 45, "\u30df\u30fc": [44, 231, 232, 233, 234, 235], "\u30e0\u30a6": [44, 231, 232, 233, 234, 235], "\u30e0\u30fc": [44, 231, 232, 233, 234, 235], "\u30e1\u30a4\u30f3": 135, "\u30e1\u30a8": [44, 231, 232, 233, 234, 235], "\u30e1\u30a8\u30e1\u30a8": 44, "\u30e1\u30b8\u30e3\u30fc": 41, "\u30e1\u30b8\u30e3\u30fc\u30d0\u30fc\u30b8\u30e7\u30f3\u30a2\u30c3\u30d7": [42, 43, 44, 45, 53, 54], "\u30e1\u30b8\u30e3\u30fc\u30ea\u30ea\u30fc\u30b9": 46, "\u30e1\u30bd\u30c3\u30c9": 50, "\u30e1\u30bf": 173, "\u30e1\u30bf\u30c7\u30fc\u30bf": [51, 52, 53, 96, 111, 112, 124, 142, 154, 245, 246, 247, 274], "\u30e1\u30bf\u30d1\u30c3\u30b1\u30fc\u30b8": 47, "\u30e1\u30c3\u30bb\u30fc\u30b8": [6, 43, 49, 50, 51, 52, 53, 93, 111, 175, 302, 311], "\u30e1\u30c3\u30bb\u30fc\u30b8\u30dc\u30c7\u30a3": 48, "\u30e1\u30cb\u30e5\u30fc": 276, "\u30e1\u30e2": [245, 246, 247], "\u30e1\u30e2\u30ea": [23, 28, 32, 33, 37, 41, 42, 43, 47, 48, 49, 50, 51, 52, 54, 302, 303], "\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9": 14, "\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0": 37, "\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9": 51, "\u30e1\u30e2\u30ea\u30ea\u30fc\u30af": [14, 36, 37, 39, 41, 47, 48, 49, 50, 51, 52, 53, 54], "\u30e1\u30e2\u30ea\u30fc": [42, 43, 44, 45, 50, 51, 52, 54, 111, 118, 123, 124, 156, 161, 281, 302], "\u30e1\u30e2\u30ea\u30fc\u30a2\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3": 50, "\u30e1\u30e2\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5": [175, 177], "\u30e1\u30e2\u30ea\u30fc\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0": [175, 177], "\u30e1\u30e2\u30ea\u30fc\u30d6\u30ed\u30c3\u30af": 158, "\u30e1\u30e2\u30ea\u30fc\u30de\u30c3\u30d7": [52, 281], "\u30e1\u30e2\u30ea\u30fc\u30de\u30c3\u30d7\u30b5\u30a4\u30ba": [43, 158], "\u30e1\u30e2\u30ea\u30fc\u30ea\u30fc\u30af": [42, 50, 51, 158], "\u30e1\u30ea\u30c3\u30c8": [45, 156, 175, 177], "\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9": [43, 45, 278], "\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u30b3\u30b9\u30c8": [45, 274], "\u30e1\u30f3\u30d0\u30fc": 12, "\u30e1\u30fc": [44, 231, 232, 233, 234, 235], "\u30e1\u30fc\u30c8\u30eb": [188, 189], "\u30e1\u30fc\u30e1\u30fc": 44, "\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8": [3, 12, 22, 50], "\u30e1\u30fc\u30eb": [12, 17, 19], "\u30e2\u30a6": [44, 231, 232, 233, 234, 235], "\u30e2\u30aa": [44, 231, 232, 233, 234, 235], "\u30e2\u30b8\u30e5\u30fc\u30eb": [0, 22, 37, 41, 50, 93, 262, 292], "\u30e2\u30c7\u30eb": [22, 45, 57, 197], "\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0": 48, "\u30e2\u30cb\u30bf\u30fc": [28, 32], "\u30e2\u30fc": [44, 231, 232, 233, 234, 235], "\u30e2\u30fc\u30c9": [11, 42, 44, 49, 50, 51, 52, 53, 143, 157, 168, 175, 195, 202, 219, 298, 308], "\u30e3\u30a2": [44, 231, 232, 233, 234, 235], "\u30e3\u30fc": [44, 231, 232, 233, 234, 235], "\u30e4\u30a2": [44, 231, 232, 233, 234, 235], "\u30e4\u30de\u30c0": [231, 232, 233, 234, 235, 274], "\u30e4\u30fc": [44, 231, 232, 233, 234, 235], "\u30e5\u30a6": [44, 231, 232, 233, 234, 235], "\u30e5\u30fc": [44, 231, 232, 233, 234, 235], "\u30e6\u30a6": [44, 231, 232, 233, 234, 235], "\u30e6\u30cb\u30b0\u30e9\u30e0": [275, 280], "\u30e6\u30cb\u30fc\u30af": [53, 180], "\u30e6\u30fc": [44, 231, 232, 233, 234, 235], "\u30e6\u30fc\u30af\u30ea\u30c3\u30c9": 45, "\u30e6\u30fc\u30b6": [11, 12, 47, 156, 176, 237, 250, 251, 252, 253, 282, 308], "\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0": 11, "\u30e6\u30fc\u30b6\u30fc": [3, 4, 6, 7, 8, 18, 22, 31, 42, 43, 44, 45, 49, 50, 51, 52, 54, 56, 81, 98, 111, 153, 156, 173, 177, 183, 210, 224, 225, 237, 240, 281, 292, 307, 314], "\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8": 10, "\u30e6\u30fc\u30b9\u30b1\u30fc\u30b9": [44, 91, 96, 110, 156, 264], "\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb": 37, "\u30e7\u30a6": 44, "\u30e7\u30aa": [44, 231, 232, 233, 234, 235], "\u30e7\u30fc": [44, 231, 232, 233, 234, 235], "\u30e8\u30a6": [44, 231, 232, 233, 234, 235], "\u30e8\u30aa": [44, 231, 232, 233, 234, 235], "\u30e8\u30fc": [44, 231, 232, 233, 234, 235], "\u30e9\u30a2": [44, 231, 232, 233, 234, 235], "\u30e9\u30a4\u30bb\u30f3\u30b9": [47, 56], "\u30e9\u30a4\u30bb\u30f3\u30b9\u30d5\u30a1\u30a4\u30eb": 54, "\u30e9\u30a4\u30d6\u30c9\u30a2": 56, "\u30e9\u30a4\u30d6\u30e9\u30ea": [20, 22, 27, 47, 48, 50, 52, 59, 223, 290, 308], "\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": 11, "\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc": [49, 50, 51, 84, 167, 175], "\u30e9\u30c6\u30f3": 53, "\u30e9\u30d9\u30eb": [43, 44, 48, 49, 50, 51, 52, 53, 54, 135, 156], "\u30e9\u30f3\u30ad\u30f3\u30b0": [49, 308], "\u30e9\u30f3\u30bf\u30a4\u30e0": 41, "\u30e9\u30f3\u30bf\u30a4\u30e0\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc": 33, "\u30e9\u30f3\u30c0\u30e0": 315, "\u30e9\u30f3\u30d7": 44, "\u30e9\u30fc": [44, 231, 232, 233, 234, 235], "\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0": 0, "\u30ea\u30a4": [44, 231, 232, 233, 234, 235], "\u30ea\u30ab\u30d0\u30ea\u30fc": 42, "\u30ea\u30af\u30a8\u30b9\u30c8": [41, 48, 49, 50, 51, 52, 54, 58, 92, 94, 108, 109, 113, 119, 120, 122, 130, 147, 153, 156, 157, 158, 162, 174, 177, 178, 180, 225, 228, 253, 292, 298], "\u30ea\u30af\u30a8\u30b9\u30c8gqtp": 298, "\u30ea\u30af\u30a8\u30b9\u30c8id": [22, 50, 51, 57, 92, 153, 157], "\u30ea\u30af\u30a8\u30b9\u30c8uri": 177, "\u30ea\u30af\u30a8\u30b9\u30c8\u30ad\u30e3\u30f3\u30bb\u30eb": 45, "\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8": [22, 45, 51, 57, 92, 175], "\u30ea\u30af\u30a8\u30b9\u30c8\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": 171, "\u30ea\u30af\u30a8\u30b9\u30c8\u30d8\u30c3\u30c0\u30fc": 125, "\u30ea\u30af\u30a8\u30b9\u30c8\u30dc\u30c7\u30a3": 178, "\u30ea\u30af\u30e9\u30c3\u30b7\u30e5": 47, "\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3": 50, "\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3\u30d0\u30b0": [45, 49], "\u30ea\u30b9\u30af": 173, "\u30ea\u30b9\u30c8": [13, 17, 43, 44, 47, 50, 51, 52, 68, 74, 124, 125, 133, 136, 141, 156, 161, 162, 175, 180, 224, 225, 229, 239, 243, 244, 307, 308, 310], "\u30ea\u30b9\u30c8\u30a2": [41, 51], "\u30ea\u30bb\u30c3\u30c8": 50, "\u30ea\u30bd\u30fc\u30b9": [49, 52, 56, 61, 84, 94, 99, 156, 197, 226], "\u30ea\u30bd\u30fc\u30b9\u30ea\u30fc\u30af": [42, 43], "\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9": [22, 41, 42, 47, 49, 51, 57, 92, 95, 153, 228, 298], "\u30ea\u30c0\u30a4\u30ec\u30af\u30c8": 12, "\u30ea\u30c6\u30e9\u30eb": [36, 39, 41, 45, 47, 50, 54, 191, 192, 193, 206, 208, 209, 224, 244, 277], "\u30ea\u30c8\u30eb\u30a8\u30f3\u30c7\u30a3\u30a2\u30f3": 111, "\u30ea\u30cd\u30fc\u30e0": [39, 50, 58, 110], "\u30ea\u30cf\u30c3\u30b7\u30e5": 45, "\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7": 292, "\u30ea\u30d3\u30eb\u30c9": [50, 52], "\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0": 12, "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9": [42, 49, 53], "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30ab\u30a6\u30f3\u30c8": 44, "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30ab\u30a6\u30f3\u30c8\u30e2\u30fc\u30c9": [149, 150], "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb": [22, 49, 226], "\u30ea\u30dd\u30b8\u30c8\u30ea": [3, 4, 12, 22, 32, 39, 47, 48], "\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc": [3, 4, 12, 22, 32, 50, 54], "\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9": [22, 298, 304], "\u30ea\u30e2\u30fc\u30c8\u30db\u30b9\u30c8": 41, "\u30ea\u30e9\u30a4\u30bf\u30fc": 50, "\u30ea\u30ea\u30fc\u30b9": [3, 4, 6, 7, 8, 10, 22, 35, 93, 226], "\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea": [12, 51], "\u30ea\u30ea\u30fc\u30b9\u30b7\u30b9\u30c6\u30e0": 7, "\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb": 12, "\u30ea\u30ea\u30fc\u30b9\u30c1\u30fc\u30e0": 53, "\u30ea\u30ec\u30fc\u30b7\u30e7\u30ca\u30eb": 175, "\u30ea\u30f3\u30af": [12, 13, 47, 48, 49, 50, 52, 56, 156, 224, 225, 305], "\u30ea\u30f3\u30b4": 272, "\u30ea\u30fc": [44, 231, 232, 233, 234, 235], "\u30eb\u30a6": [44, 231, 232, 233, 234, 235], "\u30eb\u30fc": [44, 231, 232, 233, 234, 235], "\u30eb\u30fc\u30c8": 39, "\u30eb\u30fc\u30d7": [37, 44, 47, 49, 50, 51], "\u30eb\u30fc\u30de\u30cb\u30a2": 53, "\u30eb\u30fc\u30eb": [22, 37, 49, 53, 57, 132, 134, 135, 156, 168, 292], "\u30ec\u30a4\u30e4": 11, "\u30ec\u30a8": [44, 231, 232, 233, 234, 235], "\u30ec\u30b3\u30fc\u30c9": [0, 11, 22, 34, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 68, 89, 90, 91, 104, 110, 119, 121, 122, 123, 125, 132, 134, 135, 137, 141, 159, 161, 162, 170, 175, 183, 186, 191, 192, 193, 195, 196, 197, 201, 202, 203, 205, 206, 210, 223, 224, 225, 226, 239, 244, 245, 246, 247, 248, 253, 254, 278, 282, 286, 301, 304, 305, 306, 307, 310, 311, 313, 314, 315], "\u30ec\u30b3\u30fc\u30c9id": [22, 47, 51, 57, 91, 111, 305], "\u30ec\u30b3\u30fc\u30c9r": 11, "\u30ec\u30b3\u30fc\u30c9\u30d0\u30c3\u30c1": [96, 125], "\u30ec\u30b3\u30fc\u30c9\u30d0\u30c3\u30c1\u30b5\u30a4\u30ba": 125, "\u30ec\u30b9\u30c8\u30e9\u30f3": 0, "\u30ec\u30b9\u30dd\u30f3\u30b9": [39, 43, 47, 48, 49, 51, 52, 54, 61, 99, 100, 110, 125, 132, 134, 135, 156, 158, 177, 178, 180, 292, 298], "\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf": 292, "\u30ec\u30b9\u30dd\u30f3\u30b9\u30d8\u30c3\u30c0\u30fc": [50, 99, 292], "\u30ec\u30b9\u30dd\u30f3\u30b9\u30dc\u30c7\u30a3": 51, "\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3": 45, "\u30ec\u30d9\u30eb": [41, 42, 47, 49, 50, 96, 130, 166, 175, 228], "\u30ec\u30dd\u30fc\u30c8": 31, "\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0": 0, "\u30ec\u30fc": [44, 231, 232, 233, 234, 235], "\u30ec\u30fc\u30bf": 47, "\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0": 183, "\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3": 36, "\u30ed\u30a6": [44, 231, 232, 233, 234, 235], "\u30ed\u30aa": [44, 231, 232, 233, 234, 235], "\u30ed\u30ac\u30fc": 50, "\u30ed\u30ae\u30f3\u30b0": [45, 50], "\u30ed\u30b0": [12, 22, 36, 38, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 57, 106, 111, 124, 130, 131, 132, 156, 166, 173, 175, 176, 177, 180, 251, 254, 302], "\u30ed\u30b0\u30a4\u30f3": [12, 42, 43, 281], "\u30ed\u30b0\u30b5\u30a4\u30ba": 43, "\u30ed\u30b0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 49, "\u30ed\u30b0\u30d1\u30b9": 37, "\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb": [31, 50, 51, 93, 131, 156, 175, 176, 180, 228, 303], "\u30ed\u30b0\u30d5\u30a9\u30fc\u30de\u30c3\u30c8": 51, "\u30ed\u30b0\u30d5\u30e9\u30b0": [45, 54, 173, 175], "\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8": [47, 48, 50, 53, 54, 173, 244], "\u30ed\u30b0\u30ec\u30d9\u30eb": [43, 45, 50, 51, 52, 54, 111, 123, 129, 173, 175, 177, 228], "\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3": [50, 175], "\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30c8": [45, 50], "\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3": [47, 53], "\u30ed\u30b4": [41, 47], "\u30ed\u30b7\u30a2": 53, "\u30ed\u30b8\u30c3\u30af": 137, "\u30ed\u30c3\u30af": [36, 39, 42, 43, 44, 45, 47, 48, 50, 52, 53, 106, 109, 124, 125, 126, 127, 128, 173, 175], "\u30ed\u30c3\u30af\u30ab\u30a6\u30f3\u30c8": 44, "\u30ed\u30c3\u30af\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8": [48, 51], "\u30ed\u30c3\u30af\u30d5\u30ea\u30fc": [22, 39], "\u30ed\u30f3\u30c9\u30f3": 188, "\u30ed\u30fc": [44, 231, 232, 233, 234, 235], "\u30ed\u30fc\u30ab\u30eb": [12, 43, 225, 227], "\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3": 175, "\u30ed\u30fc\u30c6\u30fc\u30c8": 175, "\u30ed\u30fc\u30c9": [0, 22, 37, 39, 41, 42, 43, 45, 48, 49, 50, 51, 52, 54, 111, 118, 125, 140, 173, 175, 177, 225, 292, 304], "\u30ed\u30fc\u30c9\u30a8\u30e9\u30fc": 47, "\u30ed\u30fc\u30de": [53, 201, 231, 232, 233, 234, 235, 250, 257, 258, 259], "\u30ed\u30fc\u30de\u30b8": [201, 240], "\u30ee\u30a2": [44, 231, 232, 233, 234, 235], "\u30ee\u30fc": [44, 231, 232, 233, 234, 235], "\u30ef\u30a2": [44, 231, 232, 233, 234, 235], "\u30ef\u30a4\u30c9": 39, "\u30ef\u30fc": [44, 231, 232, 233, 234, 235], "\u30ef\u30fc\u30ab": [53, 177], "\u30ef\u30fc\u30ab\u30fc": [51, 52, 54, 131, 175, 177], "\u30ef\u30fc\u30ab\u30fc\u30b9\u30ec\u30c3\u30c9": [41, 48], "\u30ef\u30fc\u30ab\u30fc\u30d7\u30ed\u30bb\u30b9": [51, 131], "\u30ef\u30fc\u30b9\u30c8\u30b1\u30fc\u30b9": 52, "\u30f0\u30a4": [44, 231, 232, 233, 234, 235], "\u30f0\u30fc": [44, 231, 232, 233, 234, 235], "\u30f1\u30a6": [44, 231, 232, 233, 234, 235], "\u30f1\u30fc": [44, 231, 232, 233, 234, 235], "\u30f2\u30aa": [44, 231, 232, 233, 234, 235], "\u30f2\u30fc": [44, 231, 232, 233, 234, 235], "\u30f3\u30f3": [44, 231, 232, 233, 234, 235], "\u30f3\u30fc": [44, 231, 232, 233, 234, 235], "\u30f4\u30a1": 44, "\u30f4\u30a1\u30a4\u30aa\u30ea\u30f3": [53, 231, 235], "\u30f4\u30a1\u30f4\u30a3\u30f4\u30a5\u30f4\u30a7\u30f4\u30a9": [53, 231, 232, 233, 234, 235, 258, 259], "\u30f4\u30a1\u30f4\u30a3\u30f4\u30f4\u30a7\u30f4\u30a9": [53, 54, 231, 232, 233, 234, 235, 258, 259], "\u30f4\u30a1\u30f4\u30a3\u30f4\u30f4\u30a7\u30f4\u30a9\u30f4": [231, 232, 233, 234, 235, 258, 259], "\u30f4\u30a1\u30fc\u30c1\u30e3\u30eb": 44, "\u30f4\u30a2": 44, "\u30f4\u30a6": [44, 231, 232, 233, 234, 235], "\u30f4\u30a7\u30eb\u30c7": 44, "\u30f4\u30fc": [44, 231, 232, 233, 234, 235], "\u30f5\u30a2": [44, 231, 232, 233, 234, 235], "\u30f5\u30fc": [44, 231, 232, 233, 234, 235], "\u30f6\u30a8": [44, 231, 232, 233, 234, 235], "\u30f6\u30b1": [231, 232, 233, 234, 235, 258, 259], "\u30f6\u30fc": [44, 231, 232, 233, 234, 235], "\u30f6\u6708": 173, "\u30f7-": [44, 231, 232, 233, 234, 235], "\u30f7\u30a2": [44, 231, 232, 233, 234, 235], "\u30f7\u30fc": [44, 231, 232, 233, 234, 235], "\u30f8-": [44, 231, 232, 233, 234, 235], "\u30f8\u30a4": [44, 231, 232, 233, 234, 235], "\u30f8\u30fc": [44, 231, 232, 233, 234, 235], "\u30f9-": [44, 231, 232, 233, 234, 235], "\u30f9\u30a8": [44, 231, 232, 233, 234, 235], "\u30f9\u30fc": [44, 231, 232, 233, 234, 235], "\u30fa-": [44, 231, 232, 233, 234, 235], "\u30fa\u30a6": [44, 231, 232, 233, 234, 235], "\u30fa\u30aa": [44, 231, 232, 233, 234, 235], "\u30fa\u30fc": [44, 231, 232, 233, 234, 235], "\u30fbgroonga": 50, "\u30fbor": 315, "\u30fbroot": 50, "\u30fb\u30b5\u30fc\u30d0": 308, "\u30fb\u30c7\u30b9": 274, "\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0": 311, "\u30fb\u30e1\u30e2\u30ea\u30fc\u30ea\u30bd\u30fc\u30b9": 197, "\u30fb\u5024": [202, 203, 208, 209], "\u30fb\u5168": 119, "\u30fb\u5186": 0, "\u30fb\u6d6e\u52d5\u5c0f": 156, "\u30fb\u81ea\u5df1\u7d39": 311, "\u30fd\u30fe": [231, 232, 233, 234, 235, 257, 258, 259], "\u3315\uff41z": 275, "\u4e00\u3064": [0, 41, 42, 43, 44, 45, 51, 61, 93, 108, 109, 113, 119, 120, 122, 130, 138, 147, 162, 185, 186, 188, 189, 190, 194, 198, 199, 204, 210, 221, 282, 299, 305], "\u4e00\u4eba": 56, "\u4e00\u4f8b": 156, "\u4e00\u500b": 11, "\u4e00\u5207": 50, "\u4e00\u56de": 41, "\u4e00\u5b9a": [51, 111], "\u4e00\u5b9a\u91cf": 54, "\u4e00\u5b9f\u884c": 96, "\u4e00\u5bfe": 305, "\u4e00\u5de5": 313, "\u4e00\u5ea6": [12, 39, 41, 42, 43, 47, 49, 144, 151, 156, 177, 186, 226, 229, 243, 281, 306, 310], "\u4e00\u5f0f": [12, 45], "\u4e00\u610f": [89, 111, 153, 175], "\u4e00\u62ec\u3057": 41, "\u4e00\u6587": [231, 232, 233, 234, 235], "\u4e00\u6587\u5185": [224, 225], "\u4e00\u6587\u5b57": [49, 50], "\u4e00\u65b9": [0, 31, 43, 81, 84, 111, 156, 183, 193, 196, 202, 205, 206, 208, 210, 224, 225, 262, 301, 305, 308, 310], "\u4e00\u6642": [6, 22, 41, 42, 43, 44, 45, 50, 51, 52, 53, 57, 188], "\u4e00\u6642\u30c6\u30fc\u30d6\u30eb": [45, 50], "\u4e00\u6642\u7684": [50, 53, 163, 303], "\u4e00\u6642\u7d50\u679c": 47, "\u4e00\u6b69": 308, "\u4e00\u756a": [31, 91, 141, 156, 292], "\u4e00\u756a\u5de6": 225, "\u4e00\u756a\u901f\u3044": 58, "\u4e00\u77e2": 56, "\u4e00\u77ed": 0, "\u4e00\u7dd2": [36, 43, 44, 45, 47, 49, 91, 96, 124, 132, 135, 149, 156, 161, 178, 180, 188, 231, 235, 277, 301, 308], "\u4e00\u7fa4": 11, "\u4e00\u81f4": [11, 22, 36, 38, 40, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 58, 110, 111, 156, 159, 161, 201, 202, 208, 219, 254, 264, 301, 304, 308, 311, 314], "\u4e00\u81f4rk": [22, 50, 57, 201, 238], "\u4e00\u81f4\u3057": [43, 49, 54, 208, 299], "\u4e00\u81f4\u7528": 313, "\u4e00\u822c": [0, 43, 54, 61, 156, 186, 223, 224, 231, 235, 237, 274, 308, 310], "\u4e00\u822c\u7684": [0, 45, 156, 262, 264, 277], "\u4e00\u884c": [37, 175, 176], "\u4e00\u8981": 56, "\u4e00\u8996": [53, 231, 232, 233, 234, 235, 257, 258, 259], "\u4e00\u89a7": [12, 17, 22, 27, 42, 57, 108, 112, 138, 139, 142, 158, 161, 162, 169, 175, 177, 202, 224, 225, 301, 302, 307], "\u4e00\u8a9e": 301, "\u4e00\u8cab\u3057": 56, "\u4e00\u8cab\u6027": [10, 42, 50, 51], "\u4e00\u9023": 228, "\u4e00\u9047": 56, "\u4e00\u90e8": [42, 47, 50, 54, 113, 248, 252, 264, 308], "\u4e00\u9577": 0, "\u4e09\u3064": [188, 299], "\u4e09\u5ea6": 56, "\u4e09\u756a\u76ee": 225, "\u4e09\u8c37": 49, "\u4e09\u8c37\u3055\u3093": 49, "\u4e0a\u304c\u3063": 262, "\u4e0a\u3052\u308b": 301, "\u4e0a\u4f4d": [111, 301], "\u4e0a\u554f": 296, "\u4e0a\u66f8\u3044": 12, "\u4e0a\u66f8\u304d": [45, 51, 99, 315], "\u4e0a\u8a18": [12, 17, 18, 21, 31, 34, 41, 42, 43, 44, 45, 47, 50, 54, 111, 124, 135, 156, 161, 173, 176, 183, 194, 202, 210, 231, 232, 233, 234, 235, 243, 251, 253, 262, 272, 274, 275, 276, 278, 298, 301, 302, 306, 308, 310, 315], "\u4e0a\u8a18url": 12, "\u4e0a\u8ff0": [195, 243], "\u4e0a\u91ce": 37, "\u4e0a\u9650": [9, 22, 50, 305], "\u4e0b\u304c\u3063": 262, "\u4e0b\u304c\u308a": [125, 156, 301], "\u4e0b\u304c\u308b": 111, "\u4e0b\u3052": [45, 50, 52], "\u4e0b\u3055\u3044": [1, 12, 23, 28, 32, 33, 47, 48, 52, 54, 168, 260, 274, 275], "\u4e0b\u4f4d": 111, "\u4e0b\u66f8\u304d": 239, "\u4e0b\u8a18": [11, 18, 45, 93, 108], "\u4e0b\u90e8": 12, "\u4e0d\u4fbf": 43, "\u4e0d\u504f": 41, "\u4e0d\u5177\u5408": [3, 47, 48, 49, 50, 51, 52, 53, 54], "\u4e0d\u53ef": 141, "\u4e0d\u5411\u304d": 111, "\u4e0d\u5909": 89, "\u4e0d\u5b89": 12, "\u4e0d\u5b89\u5b9a\u7248": 12, "\u4e0d\u5b8c\u5168": [39, 51], "\u4e0d\u5b9a": 43, "\u4e0d\u5fc5\u8981": [50, 51, 52, 99], "\u4e0d\u610f": 124, "\u4e0d\u6574\u5408": 36, "\u4e0d\u6b63": [14, 36, 37, 39, 43, 44, 48, 49, 50, 51, 74, 111, 124, 149, 161], "\u4e0d\u6b63\u78ba": 47, "\u4e0d\u7b49\u4fa1": 202, "\u4e0d\u80fd": 176, "\u4e0d\u8981": [0, 33, 41, 43, 44, 45, 47, 48, 49, 50, 124, 262, 272, 274, 295], "\u4e0d\u8db3": [23, 28, 32, 33, 41, 42, 43, 44, 49, 50, 54, 104, 302], "\u4e0d\u9069\u5207": [47, 49, 156], "\u4e0e\u3048": [11, 45, 47, 48, 51, 74, 175, 298, 301, 308], "\u4e0e\u3048\u308b": [93, 174, 175, 315], "\u4e14\u3064": 53, "\u4e16\u4ee3": 93, "\u4e16\u754c": [188, 189, 190, 282, 305, 315], "\u4e21\u65b9": [0, 41, 44, 91, 132, 134, 135, 141, 156, 202, 224, 225, 226, 244, 250, 254, 265, 266, 275, 276, 310, 311, 313], "\u4e21\u8005": [43, 315], "\u4e26\u3073": [41, 111, 197, 225, 299], "\u4e26\u3073\u9806": 315, "\u4e26\u3079": [22, 134, 304], "\u4e26\u3093": [41, 132, 134, 135], "\u4e26\u5217": [6, 22, 41, 43, 51, 57, 92, 156, 176, 203, 226, 228], "\u4e26\u5217\u6570": 94, "\u4e26\u884c": [42, 43, 44], "\u4e2d\u4e95": 48, "\u4e2d\u56fd": 188, "\u4e2d\u592e\u5024": 49, "\u4e2d\u5fc3": [41, 189], "\u4e2d\u65ad": [39, 41, 45, 47, 49, 53], "\u4e2d\u70b9": [53, 231, 232, 233, 234, 235, 258, 259], "\u4e2d\u7a0b\u5ea6": [23, 28, 32, 33], "\u4e2d\u8eab": [49, 176, 298, 308], "\u4e2d\u9593": [11, 299], "\u4e38\u3081": 211, "\u4e38\u62ec": 308, "\u4e3b\u30ad\u30fc": [22, 37, 47, 89, 125, 162, 304, 305, 306, 307, 308, 314], "\u4e3b\u5c0e": 180, "\u4e3b\u8981": 23, "\u4e43\u6bc5": 37, "\u4e57\u305b": 42, "\u4e57\u305b\u308b": 42, "\u4e57\u308a": 56, "\u4e57\u7b97": 53, "\u4e71\u6570": [204, 315], "\u4e88\u3081": [41, 42, 175, 282], "\u4e88\u5099": 123, "\u4e88\u5b9a": [5, 6, 16, 31, 39, 42, 43, 44, 45, 50, 54, 91, 93, 154, 188, 227, 244, 248, 292], "\u4e88\u60f3": [52, 183, 196], "\u4e88\u671f": [41, 45], "\u4e8b\u4ef6": 56, "\u4e8b\u524d": [12, 31, 123, 133, 136, 137, 154, 156, 252, 301], "\u4e8b\u60c5": 56, "\u4e8b\u67c4": 10, "\u4e8b\u9805": [22, 50, 51, 57, 104, 248], "\u4e8c\u3064": [11, 93, 132, 134, 135, 138, 168, 176, 188, 196, 201, 202, 203, 210, 299], "\u4e8c\u756a\u76ee": 225, "\u4e8c\u90ce": 56, "\u4e8c\u91cd": [48, 49, 50, 224], "\u4e8c\u9805": [50, 51, 225], "\u4e92\u63db": [12, 24, 25, 28, 32, 42, 43, 44, 45, 46, 49, 50, 51, 52, 53, 54, 93, 132, 134, 135, 138, 225, 246, 247, 292], "\u4e92\u63db\u6027": 12, "\u4e94\u5165": 39, "\u4ea4\u63db": [44, 156], "\u4eac\u90fd": [44, 274, 299, 301], "\u4eba\u3068": 10, "\u4eba\u540d": [231, 232, 233, 234, 235, 274], "\u4eba\u5411\u3051": 50, "\u4eba\u6c17": [132, 134, 135], "\u4eba\u7269": 111, "\u4eca\u56de": [41, 42, 43, 44, 45, 46, 47, 51, 52, 54, 205, 206, 225, 308], "\u4eca\u5f8c": [39, 41, 43, 45, 51, 96, 154, 168, 244], "\u4ecb\u3057": [0, 312], "\u4ecb\u6587": 311, "\u4ed5\u65b9": 3, "\u4ed5\u69d8": [22, 37, 40, 43, 44, 47, 49, 93, 156, 159, 177, 277, 305], "\u4ed5\u7d44": [17, 50, 186, 292], "\u4ed5\u7d44\u307f": [47, 50, 177], "\u4ed8\u3044": [54, 111, 229, 310], "\u4ed8\u304d": [3, 22, 37, 42, 43, 44, 50, 51, 52, 91, 100, 111, 132, 134, 135, 137, 141, 155, 156, 159, 208, 230, 231, 235, 239, 244, 250, 253, 282, 304, 305, 308], "\u4ed8\u3051": [47, 98, 99, 121, 153, 157, 173, 175, 180, 183, 191, 192, 193, 276, 292, 298, 305, 308, 310], "\u4ed8\u3051\u308b": [9, 53, 54, 180, 225, 228, 229, 255, 308, 314], "\u4ed8\u3051\u65b9": 98, "\u4ed8\u4e0e": [89, 156, 176, 307, 313], "\u4ed8\u5c5e": [177, 178], "\u4ed8\u8d85\u7fa4": 52, "\u4ed8\u968f": 113, "\u4ee3\u308a": [47, 188, 224], "\u4ee3\u308f\u308a": [27, 31, 41, 42, 44, 50, 52, 54, 111, 135, 141, 149, 156, 158, 161, 175, 177, 191, 192, 193, 206, 208, 209, 224, 229, 232, 233, 234, 235, 236, 244, 258, 259, 262, 298], "\u4ee3\u5165": [11, 37, 48, 224, 315], "\u4ee3\u540d": 53, "\u4ee3\u540d\u8a5e": 274, "\u4ee3\u8868": [0, 43, 44, 56, 156], "\u4ee5\u4e0a": [11, 12, 14, 17, 34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 56, 81, 87, 90, 91, 94, 111, 112, 131, 132, 134, 135, 137, 141, 142, 149, 152, 155, 156, 159, 161, 163, 175, 176, 177, 180, 186, 192, 195, 196, 201, 202, 203, 205, 206, 208, 210, 243, 244, 246, 248, 254, 255, 262, 264, 272, 281, 282, 298, 308], "\u4ee5\u4e0b": [11, 12, 14, 17, 18, 21, 27, 31, 33, 34, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 56, 58, 61, 64, 68, 74, 81, 84, 91, 94, 95, 96, 97, 98, 99, 100, 108, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 144, 145, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 168, 169, 170, 173, 175, 176, 177, 178, 180, 183, 184, 186, 188, 189, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 222, 225, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 241, 243, 244, 245, 246, 247, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 272, 273, 274, 275, 276, 278, 279, 280, 281, 282, 286, 292, 295, 298, 299, 301, 302, 303, 305, 307, 308, 312, 315], "\u4ee5\u5185": [173, 224, 225, 250, 251, 311, 315], "\u4ee5\u524d": [22, 39, 41, 42, 44, 47, 48, 49, 50, 51, 52, 53, 54, 124, 132, 134, 135, 229, 230, 301, 305, 311], "\u4ee5\u5916": [0, 11, 12, 18, 27, 37, 39, 41, 42, 43, 44, 48, 49, 52, 53, 54, 58, 61, 68, 84, 91, 111, 112, 125, 132, 135, 149, 150, 152, 156, 161, 163, 173, 175, 176, 195, 219, 224, 231, 239, 244, 254, 260, 261, 275, 282], "\u4ee5\u5f8c": 111, "\u4ee5\u964d": [12, 14, 17, 26, 27, 37, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 96, 114, 124, 125, 132, 134, 135, 153, 156, 164, 173, 175, 191, 192, 193, 194, 229, 230, 239, 264, 312], "\u4eee\u540d": 240, "\u4eee\u5b9a": 153, "\u4eee\u60f3": [48, 50, 306, 315], "\u4eee\u6570": 111, "\u4ef6\u540c": 50, "\u4ef6\u542b": [156, 311], "\u4ef6\u6570": [43, 49, 50, 51, 52, 53, 89, 132, 299, 301, 308], "\u4efb\u547d": 12, "\u4efb\u610f": [0, 3, 41, 175, 176, 302, 308], "\u4f1a\u793e": [49, 50, 51, 52, 56], "\u4f1d\u642c": 53, "\u4f1d\u7d71": 0, "\u4f34\u3063": 53, "\u4f3c\u305f": 230, "\u4f4d\u7f6e": [22, 39, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 57, 111, 112, 123, 138, 155, 209, 238, 245, 246, 247, 275, 304, 307, 308], "\u4f4e\u3044": [111, 301], "\u4f4e\u304f": [262, 301], "\u4f4e\u4e0b": [41, 42, 43, 48, 53, 54], "\u4f4e\u6a5f": 11, "\u4f4e\u6e1b": [37, 296], "\u4f4e\u901f": [41, 111, 161], "\u4f4f\u3093": 311, "\u4f4f\u6240": 47, "\u4f50\u85e4": [50, 51], "\u4f53\u8fd1": 189, "\u4f55\u3089\u304b": 282, "\u4f55\u500b": 156, "\u4f55\u5358": 156, "\u4f55\u5ea6": [48, 153], "\u4f55\u6587": 156, "\u4f55\u756a": [135, 286], "\u4f59\u308a": 225, "\u4f59\u5206": [41, 43, 44, 224, 225], "\u4f59\u8a08": 10, "\u4f5c\u3063": [18, 39, 54, 135, 140, 141, 143, 155, 156, 177, 180, 229, 250, 301, 306], "\u4f5c\u3089": [43, 44, 50, 56, 156, 237], "\u4f5c\u3089\u308c": [41, 49, 176], "\u4f5c\u3089\u308c\u308b": 173, "\u4f5c\u308a": [41, 42, 43, 49, 111, 152, 156, 158, 161, 180, 220, 228, 250, 251, 281, 310], "\u4f5c\u308a\u51fa\u3057": 44, "\u4f5c\u308a\u51fa\u3059": [44, 111], "\u4f5c\u308a\u76f4\u3057": [152, 173], "\u4f5c\u308a\u76f4\u3059": [50, 152, 237], "\u4f5c\u308b": [9, 17, 41, 42, 43, 45, 49, 50, 56, 87, 91, 110, 111, 132, 134, 135, 140, 143, 155, 156, 161, 175, 180, 201, 223, 225, 237, 244, 248, 251, 281, 307, 311, 314], "\u4f5c\u308c": [51, 126], "\u4f5c\u308c\u308b": [43, 44, 50, 111, 156], "\u4f5c\u6210": [22, 29, 36, 37, 39, 40, 41, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 87, 89, 90, 91, 131, 132, 134, 135, 137, 138, 156, 159, 163, 175, 176, 177, 180, 188, 201, 224, 225, 226, 250, 253, 254, 278, 281, 282, 295, 301, 304, 305, 307, 310, 313, 314], "\u4f5c\u6210\u6e08": 175, "\u4f5c\u696d": [10, 17, 54], "\u4f5c\u7528": 47, "\u4f75\u305b": 308, "\u4f75\u7528": 41, "\u4f7f\u3044": [0, 6, 7, 8, 11, 12, 15, 17, 18, 21, 22, 24, 25, 27, 28, 30, 31, 32, 39, 41, 42, 43, 44, 45, 46, 49, 50, 51, 52, 53, 58, 60, 68, 81, 87, 91, 95, 99, 111, 112, 121, 124, 125, 131, 132, 133, 134, 135, 138, 141, 149, 150, 155, 156, 157, 159, 161, 165, 168, 173, 175, 177, 178, 180, 183, 191, 193, 194, 195, 196, 201, 202, 205, 206, 208, 219, 223, 224, 225, 226, 227, 230, 237, 243, 244, 245, 249, 250, 251, 253, 255, 262, 264, 269, 270, 271, 273, 275, 277, 279, 280, 281, 282, 292, 305, 306, 310, 312], "\u4f7f\u3044\u5206\u3051": [299, 301], "\u4f7f\u3044\u5207\u3063": 43, "\u4f7f\u3044\u65b9": [0, 22, 57, 81, 225, 249, 308], "\u4f7f\u3044\u65b9\u3057": 237, "\u4f7f\u3046": [7, 11, 12, 16, 17, 21, 23, 24, 25, 27, 28, 31, 32, 34, 36, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 59, 61, 68, 81, 84, 87, 90, 91, 94, 95, 96, 98, 107, 110, 111, 112, 115, 116, 117, 118, 121, 122, 123, 124, 125, 132, 133, 134, 135, 136, 137, 138, 141, 143, 144, 149, 150, 151, 152, 154, 156, 157, 159, 161, 163, 168, 171, 173, 175, 176, 178, 183, 184, 186, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 227, 228, 229, 230, 232, 233, 234, 236, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 260, 261, 262, 264, 265, 266, 267, 268, 272, 274, 282, 286, 292, 296, 298, 301, 303, 305, 308, 310, 312, 314], "\u4f7f\u3048": [6, 21, 34, 39, 41, 42, 43, 44, 48, 49, 50, 52, 53, 54, 58, 90, 110, 111, 118, 124, 125, 132, 134, 135, 143, 152, 153, 156, 157, 161, 168, 175, 177, 178, 180, 182, 183, 191, 193, 195, 219, 223, 224, 225, 240, 244, 245, 246, 247, 248, 257, 258, 259, 274, 275, 277, 283, 290, 291, 306, 308], "\u4f7f\u3048\u308b": [21, 27, 31, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 155, 156, 175, 197, 224, 244, 248, 278], "\u4f7f\u3063": [3, 5, 10, 11, 12, 17, 19, 20, 21, 22, 23, 24, 25, 28, 30, 31, 32, 33, 34, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 91, 94, 95, 96, 100, 103, 107, 108, 110, 111, 118, 124, 125, 127, 131, 132, 133, 134, 135, 137, 138, 140, 141, 143, 149, 152, 155, 156, 158, 161, 163, 167, 168, 173, 175, 177, 180, 183, 186, 193, 196, 197, 201, 202, 205, 206, 223, 224, 225, 227, 229, 230, 231, 232, 233, 234, 235, 236, 237, 243, 244, 245, 246, 247, 248, 251, 252, 257, 258, 259, 260, 261, 262, 264, 272, 274, 275, 277, 279, 280, 282, 292, 298, 299, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "\u4f7f\u308f": [21, 27, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 58, 61, 94, 96, 100, 111, 124, 125, 131, 132, 133, 134, 135, 137, 140, 141, 149, 156, 161, 163, 168, 175, 177, 183, 202, 223, 224, 228, 229, 237, 240, 243, 244, 250, 254, 262, 264, 275, 276, 278, 298, 306, 307, 310, 314], "\u4f7f\u308f\u305a": 53, "\u4f7f\u7528": [11, 12, 27, 31, 36, 37, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 61, 74, 93, 94, 108, 110, 111, 112, 114, 121, 125, 132, 134, 135, 138, 139, 141, 153, 156, 157, 158, 164, 165, 168, 169, 170, 173, 175, 176, 177, 180, 186, 188, 191, 192, 193, 195, 197, 202, 206, 208, 209, 210, 211, 212, 224, 225, 231, 232, 233, 234, 235, 237, 240, 245, 257, 258, 259, 262, 272, 275, 278, 282, 292, 298, 299, 301, 305, 308, 310, 311, 312], "\u4f7f\u7528\u4f8b": 188, "\u4f8b\u3048": [18, 20, 21, 27, 31, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 91, 103, 105, 111, 121, 124, 132, 134, 135, 137, 138, 139, 156, 159, 161, 166, 168, 169, 173, 175, 176, 177, 183, 186, 191, 193, 196, 210, 223, 224, 225, 226, 229, 230, 231, 234, 235, 243, 244, 245, 248, 250, 251, 252, 253, 260, 262, 264, 272, 274, 275, 278, 292, 299, 301, 307, 308, 309, 310, 313, 314], "\u4f8b\u3068\u3057\u3066": [156, 276, 281, 305], "\u4f8b\u3068\u3068\u3082": 188, "\u4f8b\u306b": 156, "\u4f8b\u4ee5\u5916": [231, 232, 233, 234, 235, 274, 275], "\u4f8b\u5916": [49, 50, 52, 54, 110, 134, 135, 141, 154], "\u4f9d\u308a": [111, 141], "\u4f9d\u5b58": [12, 40, 42, 43, 45, 47, 49, 51, 111, 137, 141, 156, 180, 237, 245, 246, 247, 274], "\u4f9d\u7136": 52, "\u4f9d\u983c": [12, 156], "\u4fa1\u5024": 56, "\u4fa1\u683c": 51, "\u4fbf\u5229": [0, 1, 6, 31, 41, 42, 43, 44, 45, 50, 51, 52, 53, 54, 91, 95, 111, 124, 132, 133, 138, 142, 149, 152, 155, 156, 157, 165, 168, 175, 191, 223, 224, 225, 237, 240, 244, 250, 305], "\u4fbf\u5229\u30e1\u30bd\u30c3\u30c9": 52, "\u4fc2\u52a9\u8a5e": 274, "\u4fc2\u6570": [11, 156], "\u4fc3\u97f3": 53, "\u4fdd\u305f": [134, 135], "\u4fdd\u3064": [51, 54], "\u4fdd\u5b58": [22, 34, 42, 43, 45, 47, 48, 50, 51, 74, 90, 91, 110, 111, 112, 132, 134, 135, 141, 155, 156, 175, 177, 180, 188, 225, 229, 239, 244, 253, 254, 282, 303, 304, 307, 310, 311, 315], "\u4fdd\u6301": [41, 43, 51, 61, 91, 124, 305, 309, 311], "\u4fdd\u8a3c": [93, 108], "\u4fe1\u6d0b": 51, "\u4fe1\u983c": 173, "\u4fee\u5e73": 49, "\u4fee\u5fa9": 42, "\u4fee\u6b63": [12, 156, 188, 251, 312], "\u4fee\u6b63\u4e2d": 251, "\u4fee\u6b63\u5f8c": [45, 156], "\u500b\u3005": [11, 93, 134, 301], "\u500b\u4eba": [12, 18, 31], "\u500b\u5225": [27, 156], "\u500b\u5b9a": 9, "\u500b\u6240": 49, "\u500b\u6570": 47, "\u500d\u3057": 42, "\u500d\u7cbe": [41, 282], "\u5019\u88dc": [43, 44, 156, 159, 180, 201, 250, 251, 252], "\u5023\u3063": 18, "\u5024\u304b": [184, 188], "\u5024\u304c": 51, "\u5024\u3054": 306, "\u5024\u3054\u3068": 306, "\u5024\u3057": 195, "\u5024\u3059": 51, "\u5024\u305d\u306e": 91, "\u5024\u3060\u3051": 225, "\u5024\u3068": [111, 156, 224, 305], "\u5024\u3068\u3057\u3066": [44, 111, 175, 188, 212, 303, 311], "\u5024\u306a\u3057": 40, "\u5024\u306a\u3089": 48, "\u5024\u3088\u308a": [11, 43, 44, 91, 156], "\u5024\u4ee5": [42, 44, 186], "\u5024\u4ee5\u4e0a": 175, "\u5024\u5727": 111, "\u5024\u578b": 305, "\u5024\u57df": [87, 142], "\u5024\u6bce": 306, "\u5024\u7528": 39, "\u5024\u8a18": 225, "\u504f\u5dee": 41, "\u505c\u6b62": [45, 48, 50, 52, 93, 106, 114, 123, 164, 175, 177], "\u5065\u4f5c": 307, "\u5074\u9762": [0, 56], "\u5076\u6570": 225, "\u508d\u691c": 44, "\u5099\u8003": [48, 156, 180, 231], "\u50be\u5411": [111, 141, 156, 310], "\u512a\u308c": [0, 264, 274], "\u512a\u5148": [0, 50, 53, 118, 176, 250], "\u5143\u6c17": 48, "\u5145\u5206": 53, "\u5148\u60c5": 311, "\u5148\u884c": 42, "\u5148\u8aad": 272, "\u5148\u982d": [41, 43, 44, 45, 74, 132, 134, 135, 156, 177, 244, 277, 308], "\u5149\u7537": 48, "\u5165\u3063": [14, 47, 48, 50, 51, 54, 111, 112, 156, 195, 237, 250, 298, 302, 307, 308, 310], "\u5165\u308a": [124, 156, 225, 267, 268, 298, 302, 306, 308], "\u5165\u308b": [111, 162], "\u5165\u308c": [42, 156, 277, 301, 307, 311], "\u5165\u308c\u308b": [50, 111, 156, 237, 244], "\u5165\u529b": [36, 39, 40, 42, 43, 44, 48, 51, 52, 53, 54, 108, 109, 113, 119, 120, 122, 125, 130, 147, 156, 159, 162, 174, 175, 176, 197, 225, 240, 250, 251, 252, 253, 257, 258, 259, 298, 308], "\u5165\u529b\u30df\u30b9": 251, "\u5168\u304f": [50, 56], "\u5168\u304f\u7570\u306a\u308b": 56, "\u5168\u3066": [17, 41, 42, 43, 44, 53, 54, 156, 157, 166, 175, 177, 223, 226, 253, 257, 258, 259, 282, 310], "\u5168\u4e16\u754c": 48, "\u5168\u4ef6": [224, 225], "\u5168\u4f53": [22, 31, 41, 42, 48, 54, 57, 59, 141, 208, 224, 225, 245], "\u5168\u524a": 170, "\u5168\u63b2": 56, "\u5168\u6587": [22, 24, 25, 28, 31, 32, 41, 42, 43, 45, 47, 49, 52, 53, 59, 84, 91, 111, 112, 132, 134, 135, 156, 161, 175, 186, 202, 203, 219, 223, 224, 225, 227, 229, 239, 244, 254, 262, 296, 299, 300, 304, 305, 307, 309, 311], "\u5168\u6587\u691c": [22, 37, 304], "\u5168\u6587\u691c\u7d22": [47, 161, 175, 202], "\u5168\u7136": 45, "\u5168\u89d2": [39, 41, 45, 50, 53, 230, 231, 232, 233, 234, 235, 257, 258, 259, 308], "\u5168\u90e8": 298, "\u516c\u5e73": 48, "\u516c\u5f0f": [8, 27, 31, 39, 45, 102, 197, 227], "\u516c\u8a00": 56, "\u516c\u8f14": 48, "\u516c\u958b": [37, 39, 41, 48, 49, 50, 51, 52, 53, 61], "\u516c\u958b\u9375": 12, "\u5171\u548c\u56fd": 44, "\u5171\u6709": [2, 10, 12, 22, 31, 43, 47, 48, 61, 111, 175, 177, 307, 310], "\u5171\u901a": [10, 39, 41, 43, 134, 175, 225, 254, 282, 310], "\u5171\u901a\u63a5": [53, 254], "\u5177\u4f53": [42, 53, 111, 156, 301, 306, 310], "\u5177\u4f53\u4f8b": [110, 135], "\u5177\u5408": [156, 225], "\u5178\u578b": 50, "\u5185\u5bb9": [10, 12, 17, 18, 24, 25, 28, 30, 32, 33, 41, 42, 43, 45, 47, 49, 50, 53, 74, 87, 95, 112, 132, 134, 135, 156, 162, 173, 174, 176, 205, 206, 224, 225, 228, 237, 250, 253, 281, 296, 305, 308, 310, 311, 312], "\u5185\u5c71": 52, "\u5185\u7a4d": 45, "\u5185\u8a33": 301, "\u5185\u8fd1\u304f": 225, "\u5185\u90e8": [12, 40, 41, 42, 43, 44, 45, 46, 49, 50, 51, 61, 71, 74, 96, 124, 141, 142, 149, 227, 237, 305], "\u5186\u6ed1": 12, "\u518d\u3073": [49, 173], "\u518d\u4f5c": 50, "\u518d\u4f5c\u6210": 51, "\u518d\u5229": [41, 49, 50, 53, 89, 141, 175, 177, 254], "\u518d\u5b9f": 31, "\u518d\u5e30": [11, 41, 58, 109, 127, 156, 173, 177, 243], "\u518d\u5ea6": [11, 12, 41, 42, 43, 49, 50, 52], "\u518d\u691c": [156, 223], "\u518d\u69cb": [39, 42, 43, 44, 45, 53, 54, 173], "\u518d\u69cb\u7bc9": [42, 43], "\u518d\u73fe": [10, 48, 52, 54, 223, 262, 264, 274, 301], "\u518d\u751f": [31, 53, 177], "\u518d\u767a": [42, 43, 49], "\u518d\u8aad": 243, "\u518d\u8aad\u8fbc": 131, "\u518d\u8d77": [42, 43, 50, 52, 243, 281, 296], "\u518d\u8d77\u52d5": [144, 151, 175, 177, 281], "\u5197\u9577": [52, 237], "\u51aa\u7b49": [43, 44], "\u51e6\u7406": [0, 6, 11, 12, 17, 27, 31, 36, 37, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 89, 92, 94, 99, 100, 111, 124, 127, 132, 134, 135, 138, 142, 149, 156, 158, 161, 165, 168, 173, 176, 177, 193, 203, 206, 224, 225, 228, 237, 255, 262, 292, 298, 299, 315], "\u51fa\u3055": 48, "\u51fa\u3057": 311, "\u51fa\u3059": [52, 156, 180, 311], "\u51fa\u305b\u308b": [0, 52], "\u51fa\u529b": [0, 3, 14, 22, 31, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 68, 74, 91, 92, 93, 97, 99, 100, 107, 108, 110, 111, 112, 114, 115, 116, 117, 118, 119, 121, 122, 123, 124, 126, 127, 128, 129, 130, 132, 133, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 173, 175, 176, 177, 178, 180, 194, 228, 231, 232, 233, 234, 235, 257, 258, 259, 274, 282, 298, 302, 304], "\u51fa\u529b\u5024": 42, "\u51fa\u6765": [18, 31, 42, 53, 54, 168, 208, 307, 310], "\u51fa\u6765\u308b": [52, 311], "\u51fa\u73fe": [0, 41, 43, 44, 50, 56, 111, 112, 123, 135, 156, 159, 165, 180, 224, 225, 245, 246, 247, 309], "\u5206z": 282, "\u5206\u304b\u3061": 0, "\u5206\u3051": [12, 22, 52, 112], "\u5206\u3051\u308b": [208, 305], "\u5206\u307e": 248, "\u5206\u4e0d": 111, "\u5206\u5272": [0, 39, 50, 51, 104, 225, 254, 272, 299, 308], "\u5206\u5c90": 14, "\u5206\u6563": [56, 248], "\u5206\u6790": [0, 52, 54, 156], "\u5206\u77ed": 156, "\u5206\u843d": 111, "\u5206\u89e3": [11, 248], "\u5206\u914d": [132, 135], "\u5206\u96c6\u5408": 156, "\u5206\u985e": [156, 305, 306], "\u5207\u3089": 49, "\u5207\u308a": [26, 39, 41, 42, 43, 48, 49, 50, 51, 52, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 82, 83, 147, 156, 260], "\u5207\u308a\u4e0a\u3052\u308b": 134, "\u5207\u308a\u51fa\u3055": [44, 177, 296], "\u5207\u308a\u6368\u3066": 305, "\u5207\u308b": [49, 141, 177], "\u5207\u308c": [50, 52, 53], "\u5207\u65ad": 41, "\u5207\u8feb": 56, "\u5217\u4e2d": [51, 225], "\u5217\u578b": [49, 208, 209, 224, 305, 306], "\u5217\u5f0f": 68, "\u5217\u5f15": 11, "\u5217\u60c5": 168, "\u5217\u6307\u5411": 0, "\u5217\u6319": [50, 231, 235, 308], "\u5217\u8868": [68, 111, 282], "\u5217\u95a2": 51, "\u521d\u56de": [17, 41], "\u521d\u671f": [0, 37, 39, 47, 49, 53], "\u521d\u671f\u5024": [111, 174], "\u521d\u671f\u5316": [45, 47, 50, 51, 53, 84, 173], "\u5224\u5b9a": 315, "\u5224\u65ad": [41, 51, 56, 134, 137, 156, 225, 237, 302], "\u5225\u3005": [156, 306], "\u5225\u51e6": 156, "\u5225\u540d": [50, 175, 202], "\u5225\u9014": [45, 125, 282], "\u5229\u70b9": 0, "\u5229\u7528": [0, 1, 10, 12, 14, 17, 18, 22, 23, 26, 27, 28, 31, 32, 33, 39, 43, 44, 45, 47, 48, 49, 50, 51, 61, 95, 111, 122, 156, 157, 161, 168, 171, 173, 175, 176, 178, 192, 193, 195, 202, 219, 224, 225, 231, 232, 233, 234, 235, 236, 239, 250, 251, 253, 257, 258, 259, 282, 290, 298, 299, 301, 304, 305, 308], "\u5229\u7528\u4f8b": 0, "\u5230\u9054": [34, 41], "\u5236\u5fa1": [41, 42, 47, 52, 111, 133, 156, 177, 183, 202], "\u5236\u7d04": [34, 134], "\u5236\u9650": [22, 37, 39, 41, 43, 44, 47, 48, 49, 50, 51, 53, 56, 57, 104, 134, 135, 153, 156, 177, 188, 210, 223, 224, 225, 245, 246, 248, 281, 292, 304, 310, 312], "\u523b\u307f": 156, "\u5247\u3063": 248, "\u524a\u6e1b": [43, 50, 51, 52, 54, 173], "\u524a\u9664": [0, 6, 12, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 89, 105, 110, 111, 113, 115, 123, 125, 143, 149, 156, 170, 171, 173, 175, 177, 197, 231, 234, 235, 244, 254], "\u524a\u9664\u5f8c": 52, "\u524d\u3082\u3063": 50, "\u524d\u4ed8": [132, 134, 135], "\u524d\u5411\u3051": 124, "\u524d\u56de": [12, 43], "\u524d\u5f8c": [43, 175, 308], "\u524d\u63d0": [3, 58], "\u524d\u65b9": [11, 22, 36, 38, 40, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 54, 57, 110, 111, 159, 161, 201, 202, 219, 238, 254, 264, 299, 304, 308], "\u524d\u8005": [58, 180, 224, 225, 230, 243, 315], "\u524d\u8ff0": [45, 56, 111, 156, 161, 177, 195, 229, 237, 301], "\u526f\u8a5e": 156, "\u5270\u4f59": 49, "\u5272\u3063": [245, 247], "\u5272\u308a": [45, 153, 162, 168, 225, 254, 305], "\u5272\u308a\u5f53\u3066": [37, 94, 156], "\u5272\u308a\u5f53\u3066\u308b": [98, 254, 305, 308], "\u5272\u308b": 247, "\u5272\u5408": [42, 158], "\u5275\u696d": 56, "\u52a0\u3048": [11, 21, 42, 43, 44, 51, 124, 274, 305, 313], "\u52a0\u3048\u308b": [39, 124], "\u52a0\u308f\u308b": 10, "\u52a0\u7b97": [41, 51, 53, 89, 91], "\u52a3\u5316": [50, 149], "\u52a9\u52d5\u8a5e": 274, "\u52a9\u8a5e": [156, 274], "\u52aa\u529b": 56, "\u52b9\u304b": 45, "\u52b9\u304d": 41, "\u52b9\u679c": [41, 42, 43, 53, 54, 111, 133, 311], "\u52b9\u7387": [41, 50, 51, 91, 111, 124, 141, 177, 202, 203, 224, 225, 310], "\u52c9\u5f37": [264, 279, 280], "\u52d5\u3044": [45, 50, 81, 149], "\u52d5\u304b": [44, 48, 49, 50, 52, 118, 180, 224, 244], "\u52d5\u304b\u3057": [180, 281], "\u52d5\u304b\u3059": 50, "\u52d5\u304d": [44, 50, 53, 56, 149, 156, 167, 202, 203, 248, 292], "\u52d5\u304f": [31, 39, 45, 47, 281, 291], "\u52d5\u4f5c": [3, 17, 31, 37, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 93, 111, 131, 134, 135, 156, 166, 176, 177, 228, 231, 232, 233, 234, 235, 249, 275, 291, 305], "\u52d5\u5c0f": [41, 111, 282], "\u52d5\u6642": 52, "\u52d5\u74b0": 174, "\u52d5\u751f": 141, "\u52d5\u753b": 307, "\u52d5\u7684": [0, 22, 37, 40, 41, 42, 43, 44, 45, 50, 51, 52, 53, 54, 57, 111, 177, 275, 299, 308], "\u52dd\u624b": 43, "\u52e7\u3081": 49, "\u5316\u51e6": [39, 89], "\u5316\u524d": 89, "\u5316\u5bfe": [17, 42, 43, 231, 232, 233, 234, 235, 237, 258, 259], "\u5316\u5f8c": [54, 237], "\u5316\u65b9": [138, 229], "\u5316\u6642": 39, "\u5316\u6f0f\u308c": 47, "\u5316\u7528": 42, "\u5316\u81ea\u4f53": 257, "\u5316\u95a2": 37, "\u5317\u4eac": 188, "\u5317\u534a\u7403": 47, "\u5317\u5e02": 51, "\u533a\u5207": [142, 156], "\u533a\u5207\u3063": [138, 156, 165, 168, 180, 298], "\u533a\u5207\u3089": 39, "\u533a\u5207\u308a": [0, 42, 43, 47, 50, 53, 111, 122, 125, 156, 159, 161, 168, 174, 175, 180, 202, 205, 224, 225, 241, 253, 262, 264, 272, 273, 279, 280, 282, 305, 306, 308], "\u533a\u5207\u308b": [27, 31, 37, 156, 175, 243], "\u533a\u5225": [51, 156, 237, 244, 282, 313], "\u5341\u5206": [41, 42, 43, 51, 52, 53, 54, 96, 111, 134, 183, 196, 197, 206, 301, 303], "\u5341\u5206\u304b": 101, "\u5341\u5206\u6c17": 156, "\u5343\u8f09": 56, "\u534a\u5206": 42, "\u534a\u5f84": 189, "\u534a\u6fc1": [53, 231, 232, 233, 234, 235, 258, 259], "\u534a\u7121": [39, 161], "\u534a\u89d2": [53, 230, 231, 232, 233, 234, 235, 257, 258, 259, 308], "\u5354\u529b": [3, 4, 22, 51], "\u5354\u8b70": 56, "\u5357\u534a": 47, "\u5358\u306b": 48, "\u5358\u4f4d": [0, 37, 39, 41, 42, 50, 92, 95, 96, 99, 141, 158, 171, 173, 175, 180, 188, 189, 205, 206, 208, 209, 211, 225, 228, 279, 280, 282, 298, 299, 308, 311], "\u5358\u4f53": [0, 176], "\u5358\u72ec": [45, 111, 176], "\u5358\u7cbe": [41, 111, 282], "\u5358\u7d14": [11, 98, 111, 189, 313], "\u5358\u8a9e": [41, 47, 132, 134, 135, 156, 223, 224, 243, 245, 246, 247, 250, 252, 264, 308, 309, 310, 311], "\u5358\u8a9e\u9593": 44, "\u535a\u4e4b": [50, 51, 56], "\u5360\u3081\u308b": 42, "\u5370\u8c61": 56, "\u5371\u6a5f": [56, 175, 228], "\u5371\u967a": [12, 52, 114, 126, 127, 128, 137, 143, 163, 164, 292], "\u5373\u5024": 51, "\u5373\u5ea7": [50, 51], "\u5373\u6642": [22, 42, 54], "\u539f\u56e0": [10, 12, 22, 42, 43, 44, 50, 51, 173, 176, 300, 302, 303], "\u539f\u578b": 54, "\u539f\u99c5": 315, "\u53b3\u5bc6": [49, 50, 51, 186, 250], "\u53b3\u683c": 54, "\u53c2\u52a0": [2, 3], "\u53c2\u7167": [1, 6, 7, 8, 12, 17, 18, 21, 22, 24, 25, 26, 27, 28, 30, 31, 32, 33, 36, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 87, 98, 99, 100, 102, 104, 105, 106, 107, 110, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 169, 170, 173, 176, 177, 180, 186, 188, 195, 197, 202, 203, 210, 224, 225, 227, 228, 237, 240, 243, 244, 260, 264, 274, 281, 282, 290, 296, 301, 303, 304, 306, 310, 311, 315], "\u53c2\u7167\u5024": 51, "\u53c2\u7167\u5143": [105, 305], "\u53c2\u7167\u5148": [48, 53], "\u53c2\u7167\u578b": [43, 156], "\u53c2\u7167\u91cd": 43, "\u53c2\u8003": [12, 22, 57, 308], "\u53ca\u3073": 176, "\u53cb\u4eba": 307, "\u53cc\u65b9": 10, "\u53cd\u6620": [0, 11, 12, 180, 281], "\u53cd\u8ee2": [42, 225], "\u53ce\u307e\u308a\u304d\u3089": 50, "\u53ce\u96c6": [0, 54], "\u53d6\u3063": 45, "\u53d6\u308a": 51, "\u53d6\u308a\u51fa\u3055": 305, "\u53d6\u308a\u51fa\u3057": 308, "\u53d6\u308a\u51fa\u3059": [11, 37, 305], "\u53d6\u308a\u51fa\u305b\u308b": 51, "\u53d6\u308a\u5f97\u308b": 282, "\u53d6\u308a\u8fbc\u307e": 12, "\u53d6\u308a\u8fbc\u307f": [39, 42], "\u53d6\u308a\u8fbc\u3080\u969b": 42, "\u53d6\u308a\u9664\u304d": [11, 54, 194], "\u53d6\u308a\u9664\u304f": 274, "\u53d6\u308b": [44, 45, 178, 180, 225, 298], "\u53d6\u5f97": [10, 22, 23, 41, 42, 43, 45, 49, 50, 51, 52, 53, 54, 61, 96, 106, 107, 111, 112, 116, 132, 136, 142, 156, 166, 171, 180, 186, 225, 250, 251, 253, 274, 304, 306, 307, 310], "\u53d7\u3051": [9, 45, 47, 48, 49, 50, 51, 53, 54, 56, 98, 99, 153, 157, 173, 177, 178, 180, 183, 188, 225, 276, 292, 295, 298, 308, 314], "\u53d7\u3051\u308b": [49, 296], "\u53d7\u3051\u4ed8\u3051": [37, 47, 53, 157, 225], "\u53d7\u3051\u53d6\u3063": [0, 43], "\u53d7\u3051\u53d6\u308a": [11, 177, 180, 183, 184, 193, 308], "\u53d7\u4ed8": [48, 314], "\u53d7\u4fe1": [125, 180], "\u53e4\u3044": [41, 44, 45, 47, 50, 51, 52, 114, 164, 229, 311], "\u53e4\u304f": [49, 51], "\u53e5\u70b9": 274, "\u53ef\u5426": 308, "\u53ef\u5909": [39, 112, 120, 141, 142, 298], "\u53ef\u5909\u9577": [124, 141], "\u53ef\u80fd": [10, 11, 12, 14, 18, 22, 27, 39, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 56, 64, 89, 93, 94, 106, 108, 112, 123, 128, 144, 145, 151, 156, 159, 173, 175, 176, 178, 186, 192, 208, 224, 225, 254, 257, 276, 277, 290, 292, 298, 299, 301, 307, 308, 311, 313, 315], "\u53ef\u8aad": 49, "\u53f3\u4e0a": 36, "\u53f3\u4e0b": [36, 190], "\u53f3\u8fba": [37, 39, 42, 43, 50, 51], "\u5404\u5024": 142, "\u5404\u51fa": [134, 156], "\u5404\u52d5": 156, "\u5404\u52d9": 50, "\u5404\u5358": 156, "\u5404\u547d": 176, "\u5404\u6a5f": 45, "\u5404\u7a2e": [31, 111], "\u5404\u7d22": 308, "\u5404\u8981": [42, 43, 91, 96, 111, 156, 219], "\u5404\u8a00": 260, "\u5404\u8a9e": 108, "\u5404\u8fd1": 44, "\u5404\u90e8": 156, "\u5404\u958b": 56, "\u5408\u308f": [45, 94, 156], "\u5408\u308f\u305b": [43, 47, 111, 225, 272], "\u5408\u7406": 264, "\u5408\u81f4": [308, 315], "\u5408\u8a08": [34, 41, 43, 49, 94, 104, 108, 132, 134, 135, 156, 158, 176, 245, 254, 301, 303], "\u5409\u5ca1": 50, "\u5409\u7530": 48, "\u540c\u3058": [0, 18, 22, 31, 36, 37, 39, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 68, 91, 93, 95, 96, 98, 110, 111, 132, 134, 135, 137, 144, 149, 150, 151, 152, 153, 156, 159, 162, 168, 175, 176, 177, 180, 202, 203, 205, 208, 224, 225, 229, 230, 231, 232, 233, 234, 235, 236, 243, 244, 245, 246, 247, 251, 257, 258, 259, 275, 282, 286, 292, 300, 305, 306, 308, 310], "\u540c\u3058\u4f8b": 310, "\u540c\u3058\u5024": [111, 134, 135, 156, 177, 308], "\u540c\u3058\u578b": [90, 91], "\u540c\u3058\u6570": [175, 177, 292], "\u540c\u3058\u6642": 54, "\u540c\u3058\u6708": 50, "\u540c\u3058\u8a9e": 43, "\u540c\u3058\u91cd\u307f": 202, "\u540c\u3058\u97f3\u3068": [231, 232, 233, 234, 235, 257, 258, 259], "\u540c\u540d": [12, 131], "\u540c\u6642": [0, 9, 41, 43, 44, 50, 51, 52, 53, 93, 94, 125, 156, 176, 180, 272, 315], "\u540c\u671f": [12, 176], "\u540c\u68b1": [17, 27, 37, 47, 49], "\u540c\u69d8": [11, 12, 42, 43, 45, 52, 53, 54, 56, 111, 156, 176, 239, 298, 305, 315], "\u540c\u7a0b": 111, "\u540c\u7b49": [41, 42, 50, 124, 176, 299], "\u540c\u7fa9": [43, 44, 45, 51, 243], "\u540dn": 162, "\u540d\u524d": [17, 22, 37, 38, 39, 42, 43, 44, 47, 50, 51, 52, 53, 54, 56, 57, 58, 74, 93, 96, 108, 110, 111, 112, 113, 114, 119, 121, 123, 124, 125, 132, 134, 135, 137, 138, 139, 140, 141, 142, 143, 149, 150, 155, 156, 161, 162, 163, 164, 168, 169, 175, 177, 180, 197, 202, 208, 225, 231, 232, 233, 234, 235, 236, 237, 248, 250, 254, 274, 292, 295, 298, 305, 308, 311], "\u540d\u79f0": 50, "\u540d\u8a5e": [53, 231, 232, 233, 234, 235, 274], "\u540d\u9806": 135, "\u5411\u3044": [49, 95, 111, 156, 254], "\u5411\u3051": [3, 6, 11, 22, 24, 25, 27, 28, 30, 31, 32, 33, 42, 43, 44, 45, 48, 49, 50, 51, 54, 224], "\u5411\u4e0a": [18, 39, 41, 43, 44, 45, 50, 51, 52, 54, 111, 156, 177, 223, 225, 292, 296], "\u5426\u304b": [134, 183], "\u5426\u5b9a": [11, 50, 156, 272], "\u542b\u307e": [6, 11, 12, 27, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 96, 110, 111, 112, 118, 124, 132, 134, 135, 137, 144, 145, 149, 150, 151, 154, 156, 157, 160, 161, 162, 163, 164, 165, 180, 183, 195, 196, 202, 205, 206, 219, 224, 225, 243, 245, 246, 247, 253, 264, 272, 275, 276, 292, 299, 308, 310, 311], "\u542b\u307e\u308c": [0, 12, 48, 95, 132, 135, 144, 145, 151, 156, 161, 166, 183, 205, 206, 299, 310], "\u542b\u307e\u308c\u308b": [0, 11, 44, 51, 134, 156, 175, 192, 193, 202, 301, 305, 308], "\u542b\u307f": [41, 44, 50, 96, 125, 132, 135, 141], "\u542b\u3080": [9, 11, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 74, 91, 110, 111, 123, 132, 134, 135, 155, 156, 159, 164, 174, 191, 224, 225, 228, 246, 247, 275, 276, 278, 299, 308, 310, 311], "\u542b\u3080\u5024": [175, 308], "\u542b\u3080\u5168\u3066": 114, "\u542b\u3081": [12, 41, 42, 44, 51, 156, 183, 224, 243], "\u542b\u3081\u308b": [12, 39, 40, 49, 51, 53, 122, 132, 134, 135, 137, 138, 156, 168, 183, 224, 243, 308], "\u542b\u3093": [11, 43, 44, 45, 49, 51, 52, 53, 94, 134, 137, 141, 155, 156, 205, 206, 224, 225, 245, 246, 251, 252, 262, 265, 266, 267, 268, 286, 305, 310, 311], "\u5438\u53ce": 308, "\u5468\u4e0a": 189, "\u5468\u8fba": [42, 43, 44, 47, 205, 206, 302], "\u547c\u3070": [41, 48, 50, 51, 52, 81, 149, 156, 225, 245, 282, 308], "\u547c\u3073": [11, 41, 42, 43, 84, 87, 91, 111, 141, 156, 175, 176, 205, 206, 305], "\u547c\u3073\u51fa\u3055": [41, 156], "\u547c\u3073\u51fa\u3057": [0, 11, 37, 41, 47, 49, 50, 52, 53, 54, 122, 134, 156, 223], "\u547c\u3073\u51fa\u3059": [41, 133, 167, 185, 189, 190, 199, 204, 223], "\u547c\u3076": [14, 41, 47, 50, 81, 84, 114, 149, 164, 223], "\u547c\u3076\u524d": 84, "\u547c\u3093": [49, 84, 149, 156, 299, 306], "\u547d\u4ee4": 175, "\u547d\u540d": [47, 56, 132, 134, 135], "\u548c\u3068": 41, "\u548c\u5e83": 48, "\u54c1\u8a5e": [53, 231, 232, 233, 234, 235, 274], "\u552f\u4e00": 167, "\u5546\u6750": 56, "\u554f\u3044\u5408\u308f": 11, "\u554f\u308f": 225, "\u554f\u984c": [12, 17, 36, 37, 38, 39, 41, 44, 47, 48, 49, 50, 51, 52, 53, 54, 61, 108, 137, 143, 176, 177, 224, 225, 264, 303, 308], "\u559c\u3073": [16, 17], "\u56db\u3064": 299, "\u56db\u5247": 49, "\u56db\u6368": 39, "\u56db\u89d2\u5f62": 239, "\u56de\u51fa": 41, "\u56de\u52d5": 176, "\u56de\u540c": 50, "\u56de\u547c": 37, "\u56de\u6307\u5b9a": [195, 224], "\u56de\u6570": [43, 47, 52, 156, 281], "\u56de\u66f8": 56, "\u56de\u691c": 41, "\u56de\u7279": 176, "\u56de\u7e70\u308a": 176, "\u56de\u9001\u308b": 153, "\u56de\u907f": [12, 22, 49, 50, 51, 163, 300, 301], "\u56de\u9589": 54, "\u56f0\u3063": 10, "\u56f0\u96e3": [0, 47], "\u56f2\u3044": 191, "\u56f2\u3046": 41, "\u56f2\u307e": [193, 206], "\u56f2\u307f": [175, 192, 193, 205, 206], "\u56f2\u3080": [48, 308], "\u56f2\u3093": 225, "\u56fa\u5b9a": [41, 45, 49, 52, 112, 142, 156, 161, 298, 308], "\u56fa\u5b9a\u9577": [37, 141], "\u56fa\u6709": [91, 274], "\u56fd\u3054": 306, "\u56fd\u5185": 56, "\u56fd\u540d": 306, "\u56fd\u969b": [17, 44], "\u56fd\u969b\u5316": [3, 15, 22, 43, 44, 51], "\u570f\u5185": 311, "\u571f\u66dc": 212, "\u571f\u66dc\u65e5": 212, "\u5727\u7e2e": [31, 39, 41, 47, 48, 49, 50, 51, 53, 111, 141, 155, 291], "\u5730\u56f3": 0, "\u5730\u57df": 0, "\u5730\u5f62": [188, 189], "\u5730\u70b9": [188, 315], "\u5730\u7cfb": 188, "\u578b\u304b": 282, "\u578b\u3068\u3057\u3066": 282, "\u578b\u540d": [112, 134, 155, 156], "\u578b\u5909": 39, "\u578b\u60c5": 47, "\u578b\u6307": 47, "\u578b\u7528": 68, "\u57cb\u3081\u8fbc\u307f": [193, 206], "\u57cb\u3081\u8fbc\u3080": 176, "\u57f7\u7b46": [18, 239, 309], "\u57fa\u3065\u3044": 43, "\u57fa\u3065\u304f": 53, "\u57fa\u6570": 225, "\u57fa\u672c": [0, 12, 22, 27, 47, 49, 110, 156, 299, 301, 304, 305], "\u57fa\u672c\u5f62": 274, "\u57fa\u6e96": [0, 12, 134, 156, 305, 308], "\u5800\u672c": 53, "\u5800\u6c5f": 56, "\u5831\u4ee5": 168, "\u5831\u544a": [3, 10, 22, 37, 38, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 96, 143, 156, 173, 176], "\u5834\u5408": [6, 7, 10, 11, 12, 17, 18, 21, 22, 23, 27, 28, 31, 32, 33, 34, 36, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 61, 68, 74, 81, 90, 91, 93, 96, 99, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 130, 131, 132, 133, 134, 135, 137, 138, 140, 141, 142, 143, 149, 152, 153, 155, 156, 158, 159, 161, 163, 164, 167, 168, 170, 173, 174, 175, 176, 177, 178, 180, 183, 184, 186, 188, 189, 191, 192, 193, 196, 197, 201, 202, 204, 205, 206, 208, 209, 212, 219, 224, 225, 226, 228, 229, 237, 241, 243, 244, 245, 247, 248, 250, 251, 252, 254, 260, 261, 262, 264, 272, 274, 275, 278, 279, 280, 281, 282, 286, 292, 298, 299, 301, 302, 303, 306, 307, 308, 311, 312, 314, 315], "\u5834\u6240": [2, 31, 37, 41, 49, 51, 53, 141, 175, 176, 311], "\u5883\u754c": [47, 53, 134, 188], "\u5897\u3048": [45, 91, 96, 111, 154, 156, 158, 168, 244, 247, 310], "\u5897\u3048\u308b": [50, 56, 139, 156, 169, 180], "\u5897\u3084": [6, 42, 50, 81, 91, 149, 150, 156], "\u5897\u3084\u3059": [14, 54, 81, 91, 149, 156, 244, 281], "\u5897\u5206": [156, 173], "\u5897\u52a0": [42, 43, 48, 111, 156, 286], "\u5897\u5927": 188, "\u58ca\u3057": [50, 173], "\u58ca\u3059": 47, "\u58ca\u308c": [37, 39, 42, 43, 44, 45, 47, 50, 51, 52, 53, 54, 106, 108, 123, 142, 143, 152, 163, 173], "\u58ca\u308c\u308b": [36, 37, 39, 41, 46, 47, 48, 49, 50, 51, 54, 123, 125, 126, 127, 128], "\u5909\u3048": [56, 110], "\u5909\u3048\u308b": [53, 56, 110, 156, 262, 301], "\u5909\u308a": 49, "\u5909\u308f\u3063": [31, 56, 110, 264], "\u5909\u308f\u3089": 43, "\u5909\u308f\u308a": [45, 50, 107, 108, 153, 156, 208, 264, 299, 315], "\u5909\u308f\u308b": [43, 44, 111, 277, 301], "\u5909\u5316": [0, 50, 53], "\u5909\u63db": [39, 41, 43, 45, 50, 51, 52, 53, 100, 177, 225, 227, 229, 254, 282, 311], "\u5909\u6570": [12, 14, 31, 38, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 85, 149, 150, 156, 225, 243], "\u5909\u66f4": [3, 12, 21, 22, 31, 36, 39, 40, 41, 42, 46, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 89, 91, 93, 108, 111, 114, 118, 124, 125, 131, 132, 138, 141, 154, 156, 159, 163, 164, 171, 176, 177, 183, 188, 191, 192, 196, 205, 206, 225, 231, 232, 233, 234, 235, 241, 243, 254, 275, 291, 300, 308], "\u5916\u56fd\u88fd": 56, "\u5916\u90e8": [9, 27, 31, 43], "\u591a\u3044": [41, 43, 44, 45, 111, 156, 173, 224, 225, 240, 301], "\u591a\u304b\u3063": 302, "\u591a\u304f": [39, 41, 42, 43, 44, 45, 52, 53, 54, 56, 111, 123, 124, 135, 142, 156, 161, 177, 197, 201, 206, 224, 225, 227, 244, 247, 264, 277, 291, 296, 301, 305, 308], "\u591a\u3059\u304e": 37, "\u591a\u3059\u304e\u308b": [52, 53, 156, 302], "\u591a\u5f69": 0, "\u591a\u6570": 52, "\u591a\u69d8": 0, "\u591a\u6bb5": [51, 156], "\u591a\u8a00": 56, "\u591a\u91cd": [156, 174], "\u591a\u9762": [0, 56], "\u5927\u304d": [41, 43, 44, 47, 52, 53, 91, 94, 108, 111, 156, 161, 173, 177, 231, 232, 233, 234, 235, 254, 258, 259, 281], "\u5927\u304d\u3044": [11, 39, 41, 42, 43, 45, 49, 50, 51, 52, 53, 54, 99, 105, 111, 118, 125, 141, 156, 161, 173, 186, 224, 225, 254, 262, 281], "\u5927\u304d\u304b\u3063": [43, 44, 156], "\u5927\u304d\u304f": [37, 42, 43, 44, 54, 93, 111, 122, 141, 156, 173, 189, 246, 253, 305], "\u5927\u304d\u3051\u308c": 52, "\u5927\u304d\u3055": 254, "\u5927\u304d\u3059\u304e\u308b": 149, "\u5927\u304d\u306a": [41, 43, 44, 51, 156, 281, 292], "\u5927\u306a\u308a": 202, "\u5927\u4e08": 19, "\u5927\u4e08\u592b": [10, 31, 51], "\u5927\u4e8b": [224, 243], "\u5927\u5207": 0, "\u5927\u5225": 305, "\u5927\u5c0f": [134, 135], "\u5927\u5e45": [51, 54], "\u5927\u624b": 56, "\u5927\u62b5": 177, "\u5927\u6587": [156, 244], "\u5927\u6587\u5b57": [49, 53, 111, 161, 201, 244, 308], "\u5927\u898f": 56, "\u5927\u898f\u6a21": [0, 51], "\u5927\u8cb4": 47, "\u5927\u91cf": [11, 34, 41, 42, 43, 44, 45, 49, 51, 52, 54, 111, 134, 156, 161, 163, 173, 245, 246, 254, 307, 308], "\u5927\u95a2": 49, "\u592a\u90ce": [45, 307], "\u592b\u5fc5": 313, "\u5931\u308f": [47, 52, 257, 258, 259], "\u5931\u52b9": [107, 177], "\u5931\u6557": [12, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 85, 110, 111, 114, 115, 117, 118, 121, 124, 126, 127, 128, 129, 132, 134, 137, 144, 145, 149, 150, 151, 152, 156, 160, 161, 163, 164, 166, 170, 184, 224, 244, 302, 308], "\u5947\u5999": 244, "\u5947\u6570": 225, "\u5968\u6271\u3044": 49, "\u597d\u304d": 17, "\u597d\u6a5f": 56, "\u59a5\u5f53": [50, 51, 156, 254], "\u59a5\u5f53\u6027": 51, "\u59cb\u307e\u3063": [95, 96, 156, 228, 240, 252], "\u59cb\u307e\u3089": 156, "\u59cb\u307e\u308a": 12, "\u59cb\u307e\u308b": [44, 49, 51, 56, 89, 156, 176, 224, 225, 243, 250, 252, 264, 292], "\u59cb\u3081": [17, 18, 56, 156], "\u59cb\u70b9": 308, "\u59d4\u306d\u308b": 56, "\u5b09\u3057\u304f": [10, 45], "\u5b50\u5348\u7dda": 188, "\u5b57\u5165": 240, "\u5b57\u5217": [39, 44, 45, 49, 51, 52, 111, 112, 115, 116, 117, 142, 155, 161, 208, 209, 224, 282], "\u5b57\u524d": [231, 232, 233, 234, 235], "\u5b57\u5c0f": [156, 244], "\u5b57\u8a31": 156, "\u5b57\u9762": 45, "\u5b58\u5728": [0, 27, 31, 36, 37, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 89, 111, 115, 116, 122, 125, 132, 134, 135, 137, 140, 153, 156, 173, 176, 177, 183, 189, 190, 197, 224, 227, 248, 264, 296, 298, 299, 303, 306, 308, 310, 315], "\u5b66\u3073": [132, 134, 135, 156, 188, 306, 310], "\u5b66\u3093": 311, "\u5b66\u7fd2": [37, 48, 159, 249], "\u5b66\u7fd2\u7528": 180, "\u5b89\u5168": [43, 50, 111, 149], "\u5b89\u5b9a": [0, 12, 40, 42, 43, 44, 45, 93, 96, 108, 156, 197, 227], "\u5b89\u5fc3": 10, "\u5b89\u9054": 56, "\u5b8c\u4e86": [12, 17, 18, 41, 43, 54, 99, 111, 156, 228], "\u5b8c\u5168": [11, 41, 58, 111, 133, 141, 156, 161, 225, 254, 301, 314], "\u5b8c\u74a7": 247, "\u5b8c\u7d50": 10, "\u5b9a\u5024": 47, "\u5b9a\u5b50": 244, "\u5b9a\u6570": [50, 52, 53], "\u5b9a\u7248": 12, "\u5b9a\u7fa9": [11, 42, 43, 44, 47, 49, 50, 53, 58, 89, 110, 111, 113, 119, 121, 122, 125, 132, 134, 135, 142, 149, 150, 156, 162, 175, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 225, 226, 237, 243, 244, 245, 246, 247, 248, 275, 276, 278, 282, 286, 298, 308, 310], "\u5b9f\u4f53": [17, 142], "\u5b9f\u4f8b": [3, 4, 22], "\u5b9f\u51e6": 11, "\u5b9f\u6570": 282, "\u5b9f\u65bd": [12, 56, 106], "\u5b9f\u73fe": [0, 3, 4, 22, 49, 111, 156, 177, 201, 223, 225, 244, 254, 306, 308], "\u5b9f\u7528": 49, "\u5b9f\u7a3c": 174, "\u5b9f\u884c": [0, 3, 17, 22, 23, 29, 31, 33, 38, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 81, 89, 92, 93, 95, 96, 98, 99, 105, 106, 107, 108, 109, 111, 113, 114, 115, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 143, 144, 147, 149, 150, 151, 152, 153, 154, 156, 157, 159, 162, 163, 164, 166, 167, 170, 173, 178, 180, 186, 188, 194, 196, 202, 203, 210, 223, 225, 228, 243, 244, 248, 250, 251, 253, 265, 266, 267, 268, 277, 281, 290, 292, 298, 302, 308, 312, 314, 315], "\u5b9f\u884c\u4f8b": [14, 43, 47, 58, 91, 93, 95, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 177, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 228, 229, 230, 232, 233, 234, 236, 237, 240, 244, 245, 246, 247, 250, 251, 253, 255, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 286, 298, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "\u5b9f\u88c5": [17, 39, 41, 42, 44, 45, 47, 49, 50, 51, 53, 81, 99, 110, 111, 135, 154, 156, 177, 178, 188, 224, 225, 247, 248, 291], "\u5b9f\u904b": 54, "\u5b9f\u969b": [18, 34, 44, 45, 48, 51, 52, 58, 81, 111, 132, 134, 135, 137, 156, 158, 173, 245, 281, 301, 307, 310], "\u5b9f\u9a13": [18, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 61, 96, 132, 138, 145, 154, 156, 186, 197, 227, 244, 246, 277], "\u5bae\u4e0b": 51, "\u5bb9\u91cf": [41, 50, 52, 101, 108], "\u5bc4\u3063": 260, "\u5bc4\u4e0e": 111, "\u5bfe\u51e6": [41, 49, 275], "\u5bfe\u5fdc": [0, 9, 11, 14, 18, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 110, 124, 135, 149, 150, 156, 159, 173, 175, 186, 199, 228, 230, 237, 244, 248, 250, 251, 252, 253, 254, 274, 291, 308], "\u5bfe\u7167": 202, "\u5bfe\u7b56": [22, 53, 274, 300], "\u5bfe\u8a71": [298, 308], "\u5bfe\u8c61": [0, 9, 11, 12, 14, 17, 18, 31, 39, 40, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 68, 74, 87, 93, 96, 103, 104, 105, 109, 113, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 134, 135, 137, 140, 141, 143, 149, 150, 152, 153, 156, 159, 161, 168, 173, 174, 180, 183, 184, 186, 191, 192, 193, 195, 196, 197, 198, 202, 203, 205, 206, 208, 209, 211, 219, 221, 224, 225, 228, 237, 244, 245, 246, 247, 275, 292, 299, 301, 307, 308, 310, 311], "\u5c02\u7528": [1, 12, 17, 27, 42, 43, 143, 298, 312], "\u5c06\u6765": [41, 43, 44, 48, 91, 132, 138, 139, 141, 154, 169, 188, 197, 227, 248, 292, 298], "\u5c0e\u5165": [3, 14, 15, 17, 22, 45, 49, 50, 93], "\u5c0f\u3055": [50, 51, 53, 141, 231, 232, 233, 234, 235, 258, 259], "\u5c0f\u3055\u3044": [11, 34, 38, 42, 44, 91, 111, 125, 134, 156, 161, 183, 186, 189, 196, 224, 228, 246, 254, 262], "\u5c0f\u3055\u304f": [34, 41, 45, 49, 50, 111, 134, 188, 189, 226, 244, 254, 281, 292], "\u5c0f\u3055\u3051\u308c": 52, "\u5c0f\u3055\u3059\u304e\u308b": 149, "\u5c0f\u3055\u306a": 51, "\u5c0f\u306a\u308a": [202, 223], "\u5c0f\u5024": [132, 134, 135, 137], "\u5c0f\u6570": [39, 43, 45, 50, 95, 99, 111, 175, 282, 305, 311], "\u5c0f\u6570\u70b9": 305, "\u5c0f\u6587\u5b57": [45, 53, 111, 161, 168, 201, 229, 244, 308], "\u5c0f\u897f": 48, "\u5c11\u304f": 303, "\u5c11\u3057": [31, 41, 43, 44, 54, 56, 247], "\u5c11\u3057\u9045\u3044": [175, 177], "\u5c11\u3057\u9055\u3044": 156, "\u5c11\u3057\u9577\u3044": 156, "\u5c11\u306a\u3044": [41, 49, 52, 53, 111, 156, 223, 224, 225, 226, 243], "\u5c11\u306a\u304f": [0, 10, 41, 50, 54, 56, 104, 111, 118, 149, 156, 195, 203, 205, 206, 224, 225, 226, 237, 281], "\u5c11\u306a\u3051\u308c": 161, "\u5c11\u6570": 53, "\u5c1a\u4e5f": 48, "\u5c3a\u5ea6": 0, "\u5c45\u308b": 56, "\u5c55\u958b": [22, 27, 31, 33, 39, 43, 44, 47, 48, 51, 52, 57, 118, 144, 145, 151, 156, 202, 243], "\u5c55\u958b\u5f8c": [42, 156], "\u5c55\u958b\u7528": 39, "\u5c5e\u3057": [87, 282, 306], "\u5c5e\u3059\u308b": 162, "\u5c5e\u6027": [38, 138, 139, 162, 168, 169, 194], "\u5c65\u6b74": [12, 45], "\u5c71\u672c": 49, "\u5c71\u7530": [45, 231, 232, 233, 234, 235, 274], "\u5ca9\u4e95": [47, 48, 51], "\u5ca9\u677e": 51, "\u5cf6\u6d25": 54, "\u5cf6\u7530": 47, "\u5d8b\u7530": 47, "\u5de6\u4e0a": [36, 190], "\u5de6\u4e0b": 36, "\u5de6\u5074": 44, "\u5de6\u53f3": 308, "\u5de6\u8fba": 51, "\u5de8\u5927": [42, 43, 45, 54], "\u5dee\u5206": [43, 111, 176], "\u5dee\u96c6\u5408": 225, "\u5e02\u5185": 239, "\u5e02\u771f": 51, "\u5e03\u6559": 3, "\u5e38\u306b": 50, "\u5e73\u4eee": 54, "\u5e73\u5747": [41, 43, 49, 94, 156], "\u5e73\u884c": 42, "\u5e74\u9f62": [0, 111, 161], "\u5e83\u3044": 18, "\u5e83\u304f": [12, 244], "\u5e97\u540d": 42, "\u5ea6y": 282, "\u5ea6\u3068": 39, "\u5ea6\u5206": 282, "\u5ea6\u5408\u3044": 301, "\u5ea6\u6570": [39, 225, 305, 315], "\u5ea6\u6d6e": [41, 111, 282], "\u5ea6\u8868": 37, "\u5ea7\u6a19": [39, 41, 188, 189, 190, 225, 239, 311], "\u5ea7\u6a19\u5024": 39, "\u5ec3\u6b62": [5, 6, 31, 93, 240], "\u5f0f\u3068": 42, "\u5f0f\u3082": 225, "\u5f0f\u5168": [224, 225], "\u5f0f\u8868": 68, "\u5f0f\u96c6": 208, "\u5f0f\u96c6\u5408": [208, 244], "\u5f15\u3044": 225, "\u5f15\u304d\u51fa\u3059": 0, "\u5f15\u304d\u7d99": 56, "\u5f15\u304d\u7d9a\u304d": [44, 45, 48], "\u5f15\u304d\u8d77\u3053\u3057": 54, "\u5f15\u304d\u8d77\u3053\u3059": [47, 48, 149], "\u5f15\u304d\u8d77\u3059": [47, 48, 51], "\u5f15\u6570": [11, 22, 36, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 93, 102, 139, 144, 145, 151, 169, 184, 206, 212, 225, 230, 236, 244, 245, 248, 264, 265, 266, 267, 268, 269, 270, 271, 273, 276, 277, 278, 279, 280, 283, 295, 298, 302, 305, 306, 308, 310, 312, 314], "\u5f15\u7528": [48, 175], "\u5f15\u7d9a": 26, "\u5f15\u8a9e": 308, "\u5f31\u70b9": 0, "\u5f35\u3063": [48, 50, 137, 156, 163], "\u5f35\u3089": [47, 48, 50, 54, 124, 149, 246, 247, 305], "\u5f35\u308b": [163, 224, 225], "\u5f35\u308c\u308b": 48, "\u5f37\u304f": [42, 44, 56], "\u5f37\u3081": 56, "\u5f37\u5236": [36, 41, 47, 49, 50, 51, 52, 53, 143, 157, 173], "\u5f37\u529b": [53, 156, 244], "\u5f37\u5316": [37, 39, 49, 54], "\u5f53\u3066": [45, 53, 153, 162, 168, 254], "\u5f53\u3066\u308b": [153, 305], "\u5f53\u6642": 56, "\u5f53\u8a72": 93, "\u5f62\u5bb9": 156, "\u5f62\u5f0f": [11, 18, 22, 27, 36, 39, 40, 41, 42, 43, 44, 47, 49, 51, 53, 54, 57, 64, 92, 96, 97, 99, 100, 107, 108, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 126, 127, 128, 129, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 173, 174, 175, 176, 177, 178, 185, 189, 190, 199, 204, 225, 228, 241, 282, 298, 305, 308, 310], "\u5f62\u614b": [0, 31, 156, 225, 274], "\u5f62\u72b6": 239, "\u5f71\u97ff": [12, 41, 43, 45, 47, 48, 49, 50, 51, 52, 54, 149, 175, 177, 246], "\u5f79\u5272": [111, 202, 203, 308], "\u5f79\u7acb\u3061": [42, 48, 54, 111], "\u5f85\u305f": [41, 45, 156], "\u5f85\u3061": [42, 106, 156], "\u5f85\u3061\u53d7\u3051\u308b": [298, 312], "\u5f85\u3063": 42, "\u5f85\u3064": [99, 134], "\u5f8c\u304b\u3089": 122, "\u5f8c\u3059\u3050": 43, "\u5f8c\u308d": [54, 272], "\u5f8c\u59cb": 52, "\u5f8c\u65b9": [11, 22, 43, 44, 46, 47, 49, 50, 51, 53, 54, 202, 244, 246, 247, 292, 299, 304], "\u5f8c\u65e5": [43, 54], "\u5f8c\u7d9a": [45, 52, 53, 149, 205], "\u5f8c\u8005": [58, 180, 224, 225, 230, 243, 315], "\u5f8c\u8ff0": [11, 12, 156, 210, 244, 248], "\u5f93\u3044": 18, "\u5f93\u3046": 37, "\u5f93\u3063": [156, 292], "\u5f93\u6765": [41, 45, 49, 52, 53, 156], "\u5f97\u305f\u3044": 45, "\u5f97\u3089\u308c": [43, 167, 196], "\u5f97\u308b": [53, 177, 240], "\u5fa9\u53f7": 12, "\u5fa9\u65e7": [40, 41, 45, 50, 106, 173], "\u5faa\u74b0": 51, "\u5fc3\u304c": 14, "\u5fc3\u914d": 23, "\u5fc5\u305a": [18, 45, 87, 93, 106, 111, 132, 134, 135, 156, 161, 201, 244, 245, 298], "\u5fc5\u8981": [0, 3, 7, 10, 11, 12, 14, 17, 21, 22, 23, 31, 34, 36, 37, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 74, 81, 84, 91, 94, 95, 96, 111, 112, 118, 123, 124, 125, 126, 132, 133, 134, 135, 137, 138, 141, 144, 149, 151, 153, 156, 157, 161, 163, 168, 173, 175, 176, 177, 180, 186, 192, 193, 195, 196, 198, 201, 202, 203, 206, 208, 210, 224, 225, 226, 227, 236, 237, 240, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 260, 274, 278, 281, 292, 298, 301, 303, 308, 310, 312, 314], "\u5fc5\u9808": [31, 43, 44, 131, 144, 145, 151, 154, 177, 181, 186, 191, 192, 194, 196, 197, 198, 201, 208, 210, 221, 278, 292, 308, 312], "\u5fd8\u308c": [39, 91, 124, 201], "\u5fd8\u308c\u308b": [126, 150], "\u5fdc\u3058": [0, 45, 52, 156, 176, 244], "\u5fdc\u7528": 0, "\u5fdc\u7b54": [0, 41, 42, 43, 44, 48, 51, 54], "\u601d\u3044": [17, 56], "\u601d\u3044\u51fa\u3057": 156, "\u601d\u3046": [244, 306, 310], "\u601d\u3063": 16, "\u6027\u5225": 0, "\u6027\u80fd": [0, 50, 53, 124, 125, 134, 149, 156, 291, 310], "\u6052\u4f8b": 46, "\u6069\u6075": 296, "\u60aa\u3044": 41, "\u60aa\u5316": 43, "\u60aa\u5f71": 43, "\u60aa\u610f": [180, 225], "\u60c5\u5831": [2, 3, 12, 17, 22, 31, 36, 37, 39, 40, 41, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 96, 111, 112, 124, 134, 141, 142, 144, 151, 154, 155, 156, 158, 159, 162, 173, 175, 228, 229, 238, 245, 246, 247, 301, 304, 305, 307, 308, 309], "\u60c5\u5831\u540d": 162, "\u60f3\u5b9a": [41, 45, 52, 108, 111, 122, 307], "\u610f\u5473": [11, 31, 41, 42, 45, 48, 50, 51, 53, 58, 68, 91, 99, 111, 112, 124, 127, 141, 143, 149, 150, 152, 153, 156, 158, 159, 173, 175, 176, 177, 224, 225, 240, 243, 244, 247, 257, 258, 259, 262, 281, 306, 308, 315], "\u610f\u56f3": [42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 202, 205, 210, 224, 246, 310], "\u610f\u8b58": [54, 161], "\u611f\u3058": 10, "\u614e\u91cd": 14, "\u6163\u308c": 306, "\u6163\u7fd2": 47, "\u6210\u308a": [156, 298], "\u6210\u308a\u7acb\u3063": 11, "\u6210\u529f": [12, 31, 41, 50, 51, 52, 61, 68, 84, 85, 100, 109, 110, 111, 113, 114, 115, 117, 118, 119, 121, 124, 126, 127, 128, 129, 130, 131, 137, 144, 145, 149, 150, 151, 152, 160, 161, 163, 164, 166, 170, 298, 308], "\u6210\u679c": [3, 18], "\u6210\u7acb": [44, 56], "\u623b\u3057": [51, 118], "\u623b\u3063": 177, "\u623b\u308a": 47, "\u623b\u308a\u5024": [54, 61, 68, 74, 81, 84, 85], "\u6240\u5b9a": [161, 255, 299, 301], "\u6240\u5c5e": 114, "\u6240\u6709": 50, "\u6240\u8981": 43, "\u624b\u52d5": [27, 42, 45, 177, 180, 227], "\u624b\u66f8\u304d": 42, "\u624b\u6bb5": [11, 68], "\u624b\u9593": 10, "\u624b\u9806": [3, 4, 10, 18, 22, 27, 31, 42, 47, 48, 51, 54, 106, 125, 156, 180, 253], "\u6253\u3061\u5207\u308a": 48, "\u6253\u3064": 12, "\u6271\u3044": [41, 42, 43, 49, 50, 51, 52, 53, 93, 250, 265, 266, 267, 268, 269, 270, 271, 299, 305], "\u6271\u3046": [0, 2, 40, 41, 48, 100, 134, 225, 278, 281, 301, 302, 303], "\u6271\u3048": [41, 42, 51, 111, 309], "\u6271\u3048\u308b": [41, 42, 48, 49, 303], "\u6271\u3063": [36, 42, 48, 311], "\u6271\u308f": [47, 48, 49, 50, 51, 56, 156, 168, 176, 224, 225, 229, 239, 301, 305], "\u627f\u8a8d": 49, "\u6280\u8853": 56, "\u628a\u63e1": [10, 124], "\u6291\u3048": 301, "\u6291\u5236": [42, 47, 48, 49, 53], "\u6295\u3052": 53, "\u6295\u5165": [36, 301], "\u6295\u7a3f": [12, 156], "\u6295\u7a3f\u5834\u6240": 311, "\u629c\u304d\u51fa\u3059": 0, "\u629c\u3051": [39, 48, 49, 50, 51], "\u629c\u3051\u308b": 308, "\u62bc\u3057": 308, "\u62bc\u3059": [17, 308], "\u62bd\u51fa": [42, 43, 44, 47, 52, 54, 134, 156, 161, 193, 205, 206, 209, 210, 228, 231, 232, 233, 234, 235, 249, 260, 262, 272, 276], "\u62c5\u5f53": 12, "\u62c5\u5f53\u8005": 12, "\u62d2\u5426": 105, "\u62d7\u97f3": 53, "\u62e1\u5145": 56, "\u62e1\u5927": 10, "\u62e1\u5f35": [22, 39, 49, 52, 54, 56, 161, 244, 304], "\u62e1\u5f35\u578b": 305, "\u62e1\u5f35\u5b50": [37, 41, 144, 145, 151, 176, 178, 197, 241], "\u6301\u305f": [41, 53, 142], "\u6301\u3061": [11, 44, 87, 112, 142, 155, 156, 168, 175, 177, 186, 191, 244], "\u6301\u3063": [0, 10, 41, 42, 43, 44, 47, 53, 91, 96, 112, 132, 134, 135, 138, 139, 141, 142, 156, 168, 169, 175, 224, 225, 229, 237, 251, 272, 310], "\u6301\u3064": [0, 9, 39, 41, 42, 43, 45, 53, 54, 89, 111, 112, 125, 132, 134, 135, 139, 156, 169, 188, 210, 225, 229, 237, 239, 251, 305, 306, 307, 308, 310], "\u6301\u3064\u3059\u3079": 156, "\u6301\u3064\u65b0\u3057\u3044": 42, "\u6301\u3066": [112, 255], "\u6301\u3066\u308b": 50, "\u6307\u3057": 305, "\u6307\u5b9a": [0, 6, 8, 11, 12, 22, 27, 30, 31, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 64, 68, 74, 87, 89, 91, 96, 97, 99, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 161, 163, 164, 165, 167, 168, 170, 173, 174, 175, 176, 177, 178, 181, 183, 184, 185, 186, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 219, 221, 223, 225, 226, 231, 232, 233, 234, 235, 237, 239, 240, 241, 243, 244, 245, 246, 247, 250, 254, 257, 258, 259, 260, 261, 264, 272, 274, 275, 276, 278, 286, 291, 292, 295, 298, 299, 301, 304, 305, 306, 307, 311, 312, 313, 315], "\u6307\u6570": [111, 225], "\u6307\u793a": [250, 308, 312], "\u6307\u91dd": [3, 4, 22, 51], "\u6319\u304c\u3063": 262, "\u6319\u52d5": [22, 37, 41, 43, 45, 47, 49, 50, 52, 53, 74, 94, 122, 137, 156, 171, 175, 205, 244, 246, 264, 301], "\u632f\u308b": [52, 156], "\u632f\u821e": 188, "\u632f\u821e\u3044": [47, 48, 49, 183, 202], "\u633f\u5165": [12, 41, 47, 74, 156, 175, 205, 206, 308], "\u6349\u3048\u308b": 56, "\u6355\u7372": 208, "\u6368\u3066": [39, 56, 156], "\u6368\u3066\u308b": 56, "\u6392\u4ed6": [51, 52, 111], "\u639b\u3051": 225, "\u63a1\u7528": [0, 41, 56, 141, 167, 298, 301], "\u63a2\u3057": [0, 41, 156, 176, 262], "\u63a2\u3059": [198, 240, 262, 310], "\u63a2\u7d22": 0, "\u63a5\u5c3e": [231, 232, 233, 234, 235, 274], "\u63a5\u7d9a": [1, 9, 41, 47, 53, 147, 156, 175, 176, 302, 308], "\u63a5\u7d9a\u5148": 174, "\u63a5\u8fd1": 11, "\u63a5\u982d": [39, 43, 53, 225, 254], "\u63a8\u5968": [12, 23, 31, 41, 43, 44, 47, 49, 50, 51, 52, 93, 95, 156, 180, 281, 312], "\u63a8\u5b9a": [50, 53, 54], "\u63a8\u6e2c": 43, "\u63a8\u79fb": 93, "\u63a8\u9032": 48, "\u63d0\u4f9b": [0, 1, 11, 12, 21, 24, 25, 26, 28, 32, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 59, 84, 93, 94, 96, 111, 112, 132, 133, 156, 166, 167, 172, 175, 177, 180, 188, 202, 227, 237, 244, 245, 247, 248, 252, 254, 291, 292, 306], "\u63d0\u6848": [10, 22, 37, 39, 40, 43, 47, 48, 49, 50, 51, 53, 57, 159, 249], "\u63db\u3048": [50, 58, 111, 175, 244, 314], "\u63db\u3048\u308b": [12, 45, 50, 53, 56, 58, 87, 163], "\u63db\u6642": 39, "\u63e1\u308b": 56, "\u63fa\u308c": [56, 314], "\u642d\u8f09": 0, "\u643a\u5e2f": 0, "\u64a4\u53bb": 39, "\u64a4\u5ec3": [37, 49], "\u64cd\u4f5c": [0, 11, 22, 41, 42, 43, 48, 50, 54, 57, 68, 96, 111, 114, 140, 149, 156, 164, 175, 223, 225, 240, 298, 304, 305], "\u64ec\u4f3c": [41, 50, 87, 112, 155, 156, 224, 225, 315], "\u64ec\u967d": 45, "\u652f\u3048": 54, "\u652f\u3048\u308b": 54, "\u652f\u63f4": 252, "\u6539\u540d": [39, 47], "\u6539\u5584": [36, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 124], "\u6539\u884c": [39, 40, 42, 50, 74, 175, 272], "\u6539\u8a02": 51, "\u654f\u90ce": 52, "\u6559\u3048": 275, "\u6570\u3005": 56, "\u6570\u3048": [158, 208, 209, 224, 306], "\u6570\u3048\u308b": [132, 134, 135, 156, 306], "\u6570\u500d": 41, "\u6570\u5024": [11, 22, 36, 37, 41, 44, 46, 50, 51, 53, 91, 98, 107, 132, 134, 135, 142, 149, 154, 156, 189, 224, 225, 299, 304, 308], "\u6570\u5206": 134, "\u6570\u591a\u304f": 51, "\u6570\u5b57": [42, 49, 53, 111, 132, 134, 135, 156, 161, 176, 244, 251, 264, 268, 271, 275, 301, 302], "\u6570\u70b9": [41, 111, 156, 282], "\u6570\u73e0": 210, "\u6570\u9806": 135, "\u6574\u3063": 14, "\u6574\u5217": [0, 308], "\u6574\u5408": [36, 51], "\u6574\u5f62": [50, 97, 308], "\u6574\u6570": [42, 43, 44, 50, 51, 89, 91, 96, 100, 111, 141, 156, 167, 175, 186, 204, 282, 298, 305, 311], "\u6574\u7406": [47, 48], "\u6587\u5316": 56, "\u6587\u5b57": [0, 11, 36, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 56, 68, 74, 91, 111, 112, 129, 130, 138, 155, 156, 161, 165, 168, 171, 175, 180, 184, 185, 186, 188, 189, 190, 191, 192, 193, 195, 203, 205, 206, 207, 208, 209, 224, 225, 228, 229, 230, 231, 232, 233, 234, 235, 237, 243, 250, 251, 257, 258, 259, 262, 264, 265, 266, 267, 268, 271, 272, 273, 275, 279, 280, 282, 299, 305, 306, 307, 308, 310, 311, 314, 315], "\u6587\u5b57\u5217": [22, 41, 42, 43, 44, 45, 47, 48, 49, 51, 68, 74, 90, 91, 95, 96, 98, 111, 112, 116, 134, 138, 142, 156, 168, 180, 184, 185, 188, 191, 192, 193, 201, 205, 206, 208, 209, 210, 223, 224, 237, 282, 304, 306, 308, 311, 314], "\u6587\u5b57\u6570": [44, 132, 134, 135, 156, 195, 205, 206, 207, 225], "\u6587\u5b57\u6bce": 156, "\u6587\u5b57\u7a2e": 244, "\u6587\u66f8": [0, 41, 49, 52, 53, 54, 111, 202, 223, 226, 245, 246, 247, 252, 261, 299, 305, 308, 314], "\u6587\u66f8\u4e2d": [245, 246], "\u6587\u66f8\u5185": 261, "\u6587\u672b": [224, 225], "\u6587\u691c": 111, "\u6587\u6cd5": [22, 304], "\u6587\u8108": 210, "\u6587\u982d": 272, "\u65ad\u7247": 205, "\u65b0\u3057\u3044": [0, 3, 6, 12, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 58, 61, 81, 96, 110, 111, 114, 126, 131, 133, 157, 161, 164, 167, 175, 177, 180, 229, 252, 298, 308], "\u65b0\u3057\u304f": [10, 42, 44, 45, 49, 93, 111, 133, 156, 220, 223, 226, 308], "\u65b0\u3057\u3051\u308c": 173, "\u65b0\u305f": 11, "\u65b0\u4efb": 12, "\u65b0\u5bbf": 315, "\u65b0\u5bbf\u99c5": 315, "\u65b0\u65e7": 50, "\u65b0\u898f": [12, 44, 52, 53, 56, 111, 176], "\u65b0\u898f\u30ec\u30b3\u30fc\u30c9": 51, "\u65b0\u898f\u30ed\u30b0": 131, "\u65b0\u8a9e": [274, 278], "\u65b9\u3005": 56, "\u65b9\u5f0f": [0, 308, 310], "\u65b9\u5f62": [188, 189], "\u65b9\u6cd5": [0, 4, 10, 12, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 94, 122, 124, 132, 135, 141, 155, 156, 161, 171, 173, 175, 176, 177, 180, 186, 188, 189, 195, 197, 202, 208, 219, 223, 225, 228, 241, 243, 245, 247, 249, 260, 262, 264, 269, 270, 271, 274, 275, 279, 280, 281, 282, 292, 295, 298, 299, 300, 305, 306, 308, 310, 311, 312], "\u65e2\u5b58": [0, 1, 12, 41, 42, 43, 46, 47, 49, 50, 51, 52, 53, 54, 58, 111, 131, 132, 134, 135, 156, 173, 176, 177, 186, 195, 227, 248, 296, 298, 305, 308], "\u65e2\u5b9a": [47, 52, 310], "\u65e2\u5b9a\u5024": 296, "\u65e2\u77e5": 278, "\u65e5\u3005": 10, "\u65e5\u4ed8": [0, 12, 188], "\u65e5\u5358\u4f4d": 211, "\u65e5\u6642": [22, 132, 134, 135, 282, 304, 311], "\u65e5\u66dc\u65e5": 212, "\u65e5\u672c": [12, 18, 42, 44, 49, 53, 56, 156, 189, 190, 201, 224, 225, 240, 250, 264, 265, 266, 267, 268, 274, 282, 315], "\u65e5\u672c\u4eba": 250, "\u65e5\u672c\u6e2c": 188, "\u65e5\u672c\u8a9e": [0, 2, 17, 19, 41, 44, 47, 56, 156, 224, 225, 240, 250, 264, 274, 275, 279, 280, 301], "\u65e5\u6b21": 50, "\u6607\u9806": [122, 134, 135, 136, 156, 198, 306, 308, 315], "\u660e\u3089\u304b": 56, "\u660e\u6587\u5316": 302, "\u660e\u78ba": [49, 54, 56], "\u660e\u793a": [18, 31, 44, 45, 47, 48, 50, 96, 111, 124, 156, 175, 176, 177, 188, 205, 236, 250, 254, 292, 310], "\u660e\u793a\u7684": [124, 157, 241], "\u6628\u65e5": 54, "\u662f\u975e": 54, "\u6642groonga": [43, 44], "\u6642\u3005": 42, "\u6642\u3060\u3051": [44, 53], "\u6642\u306b": [39, 45], "\u6642\u306e": 45, "\u6642\u3084": 156, "\u6642\u4ee3": [0, 56], "\u6642\u4ee5\u5916": 37, "\u6642\u523b": [42, 50, 53, 95, 173, 176, 199, 211, 212, 251, 311], "\u6642\u63a5": [94, 156], "\u6642\u671f": [42, 50, 56], "\u6642\u70b9": [43, 47, 56, 61, 74, 93, 96, 156, 166], "\u6642\u9593": [0, 6, 37, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 95, 96, 106, 123, 156, 157, 158, 173, 176, 177, 180, 211, 224, 226, 228, 248, 282, 305, 308], "\u666e\u53ca": 0, "\u666e\u6bb5": 12, "\u666e\u901a": [10, 205, 206, 225], "\u6697\u53f7": 12, "\u6697\u9ed9": 310, "\u66d6\u6627": [51, 53], "\u66dc\u65e5": 212, "\u66f2\u540d": 42, "\u66f4\u306b": 43, "\u66f4\u65b0": [3, 11, 18, 22, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 93, 111, 123, 125, 141, 156, 173, 226, 237, 249, 254, 274, 305, 307, 308, 310], "\u66f8\u3044": [49, 50, 224, 225, 244, 311], "\u66f8\u304b": [18, 41, 47, 50, 131, 248, 311], "\u66f8\u304d": [0, 50, 56, 156, 176, 244, 301], "\u66f8\u304d\u51fa\u3057": [54, 124, 149, 150], "\u66f8\u304d\u51fa\u3059": 124, "\u66f8\u304d\u5f8c": 299, "\u66f8\u304d\u63db\u3048": 21, "\u66f8\u304d\u8fbc\u307f": [31, 42, 50, 101, 106, 125, 127], "\u66f8\u304d\u8fbc\u3080": [50, 176], "\u66f8\u304d\u8fbc\u3081\u308b": [49, 101], "\u66f8\u304f": [42, 45, 49, 175, 224, 244, 310], "\u66f8\u3051": 41, "\u66f8\u3051\u308b": [47, 48, 49, 50], "\u66f8\u5f0f": [22, 53, 140, 141, 143, 156, 202, 295, 298, 304, 312], "\u66ff\u3048": [12, 22, 41, 43, 49, 50, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 111, 301, 304], "\u66ff\u3048\u308b": [26, 41, 42, 51, 52, 197, 260, 308], "\u66ff\u308f\u308b": 50, "\u6700\u3082": [108, 156, 186, 198], "\u6700\u4e0a": 111, "\u6700\u4e0b\u4f4d": 111, "\u6700\u4e2d": [0, 18, 51, 143], "\u6700\u4f4e": 44, "\u6700\u521d": [3, 10, 39, 41, 42, 43, 44, 49, 50, 51, 53, 54, 95, 111, 153, 156, 161, 175, 183, 191, 192, 193, 195, 197, 205, 206, 219, 224, 225, 243, 244, 245, 277, 296, 305, 308, 310], "\u6700\u5927": [34, 36, 37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 54, 58, 61, 81, 94, 107, 111, 115, 116, 117, 118, 132, 133, 134, 135, 137, 141, 142, 156, 158, 161, 163, 167, 171, 175, 176, 180, 183, 203, 204, 205, 206, 224, 225, 245, 246, 254, 292, 298, 303], "\u6700\u5927\u5024": [41, 47, 49, 51, 132, 134, 135, 137, 141, 156, 246], "\u6700\u5927\u7dcf": [50, 141, 161, 254], "\u6700\u5c0f": [24, 25, 28, 32, 50, 156, 183, 296], "\u6700\u5c0f\u5024": [41, 49, 132, 134, 135, 137, 156, 225], "\u6700\u5c0f\u9650": 177, "\u6700\u5f8c": [37, 41, 42, 43, 44, 45, 47, 50, 156, 168, 176, 177, 205, 224, 225, 244, 264, 277, 286, 301, 302, 305], "\u6700\u65b0": [2, 6, 7, 8, 12, 27, 39, 50, 51, 107], "\u6700\u7d42": [18, 43, 52, 91, 156], "\u6700\u8fd1": [45, 51], "\u6700\u9069": [41, 42, 43, 44, 45, 50, 51, 52, 53, 54, 177], "\u6700\u9577": [39, 43, 98, 176, 225], "\u6708\u6b21": 50, "\u6709\u5229": 134, "\u6709\u529b": 159, "\u6709\u52b9": [0, 6, 12, 18, 27, 31, 32, 39, 40, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 94, 96, 111, 112, 125, 132, 134, 135, 143, 149, 150, 156, 158, 161, 168, 175, 176, 177, 180, 197, 198, 208, 209, 211, 212, 219, 221, 222, 224, 228, 244, 248, 305, 312], "\u6709\u7121": [53, 191, 192, 231, 232, 233, 234, 235, 258, 259, 305], "\u6709\u7528": [41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 58, 95, 99, 111, 112, 123, 143, 156, 161, 177, 227, 254, 274, 292, 308], "\u6709\u76ca": [0, 156], "\u6709\u9650": 56, "\u671b\u307e\u3057\u3044": [0, 10], "\u671b\u307e\u3057\u304f": 74, "\u671f\u5316": [44, 45, 47, 52], "\u671f\u5f85": [0, 42, 43, 44, 45, 52, 54, 56, 111, 156, 224, 240, 244, 274, 305], "\u671f\u5f85\u901a\u308a": 278, "\u6728\u66dc\u65e5": 212, "\u672a\u4f7f": 49, "\u672a\u4f7f\u7528": 298, "\u672a\u51e6\u7406": 158, "\u672a\u521d": [44, 45, 47, 52], "\u672a\u52a0": 141, "\u672a\u5727": 111, "\u672a\u5b9a": 305, "\u672a\u5b9a\u7fa9": 49, "\u672a\u5b9f\u88c5": 135, "\u672a\u5bfe": [47, 53], "\u672a\u6765": [12, 56], "\u672a\u6e80": [53, 99, 175, 224], "\u672a\u77e5": 40, "\u672a\u7ba1": 141, "\u672a\u7f72": 12, "\u672a\u8a2d": 47, "\u672a\u958b\u653e": 37, "\u672b\u5c3e": [43, 137, 173, 244, 272], "\u672b\u6c38": 50, "\u672c\u4f53": [3, 12], "\u672c\u5bb6": 12, "\u672c\u5f53": [53, 156, 250, 314], "\u672c\u6587": [194, 310], "\u672c\u6765": [43, 44, 45, 123], "\u672c\u756a": [50, 134], "\u672c\u8a9e": [264, 265, 266, 267, 268, 279], "\u672c\u8cea": 176, "\u6749\u672c": 50, "\u6749\u672c\u6dbc": 50, "\u6751\u4e0a": [48, 49, 50, 51, 52, 53], "\u6761\u4ef6": [3, 11, 22, 37, 41, 42, 43, 44, 45, 47, 48, 50, 52, 53, 54, 68, 119, 137, 149, 159, 163, 175, 186, 195, 202, 203, 205, 208, 209, 210, 219, 223, 225, 237, 272, 282, 301, 304, 308, 311, 313], "\u6761\u4ef6\u5f0f": [47, 53], "\u6771\u4eac": [44, 188, 274, 299, 301, 315], "\u6771\u4eac\u90fd": [44, 274, 299, 301], "\u6790\u5668": [0, 156, 274], "\u6790\u7cfb": 225, "\u6797\u6a8e": [257, 258, 259], "\u679c\u305f": 308, "\u67af\u308c": [1, 296], "\u67d4\u8edf": [0, 42, 111, 202, 223], "\u6817\u5c71": [49, 50], "\u682a\u5f0f": [49, 50, 51, 52, 56], "\u683c\u7d0d": [0, 11, 34, 39, 41, 42, 43, 45, 53, 54, 58, 89, 104, 111, 132, 134, 135, 142, 156, 161, 162, 175, 201, 225, 226, 239, 248, 254, 299, 305, 306, 307, 308, 311, 314], "\u6848\u5185": [10, 12, 50], "\u68ee\u5927": 56, "\u68ee\u7530": 307, "\u691c\u51fa": [6, 31, 36, 37, 39, 41, 43, 44, 45, 47, 50, 51, 52, 53, 96, 168, 205], "\u691c\u67fb": 54, "\u691c\u77e5": [31, 42, 44, 54], "\u691c\u7d22": [11, 12, 22, 24, 25, 27, 28, 31, 32, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 68, 84, 87, 89, 110, 111, 112, 119, 123, 159, 168, 171, 175, 183, 186, 191, 192, 193, 195, 196, 201, 202, 203, 205, 206, 210, 219, 223, 226, 227, 229, 231, 235, 238, 244, 245, 246, 247, 248, 254, 260, 261, 262, 264, 274, 275, 276, 277, 278, 282, 292, 296, 297, 300, 304, 305, 306, 309], "\u691c\u7d22\u4f8b": 3, "\u691c\u8a0e": [141, 245, 246, 247, 296, 301], "\u691c\u8a3c": [49, 174], "\u6955\u5186": [188, 189], "\u696d\u8005": 56, "\u6975\u4ed8": [188, 189], "\u697d\u3057": [299, 301], "\u697d\u3057\u3044": [299, 301], "\u6982\u5ff5": 93, "\u6982\u7b97": 165, "\u6982\u8981": [22, 50, 57, 59, 256, 263], "\u69cb\u3044": [17, 193, 206, 237], "\u69cb\u308f": 173, "\u69cb\u60f3": 56, "\u69cb\u6210": [11, 24, 25, 28, 32, 41, 42, 43, 49, 74, 111, 156, 224, 296, 308], "\u69cb\u6587": [22, 38, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 57, 68, 91, 223, 245], "\u69cb\u7bc9": [3, 22, 41, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 94, 111, 225, 262, 299], "\u69cb\u9020": [0, 11, 41, 42, 95, 96, 254, 307], "\u69cb\u9020\u4f53": [49, 51, 53], "\u69d8\u3005": [3, 11, 17, 42, 302, 315], "\u6a19\u6e96": [31, 36, 40, 41, 42, 43, 49, 50, 52, 93, 108, 109, 113, 119, 120, 122, 125, 130, 147, 162, 174, 175, 177, 178, 245, 298, 308], "\u6a19\u8a18": 49, "\u6a29\u8868": 49, "\u6a29\u9650": [31, 48, 50, 312], "\u6a2a\u5c71": [48, 49, 51], "\u6a2a\u65ad": 56, "\u6a5f\u4f1a": 56, "\u6a5f\u68b0": 49, "\u6a5f\u80fd": [0, 6, 11, 31, 36, 37, 39, 40, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 91, 96, 99, 110, 132, 133, 134, 135, 138, 145, 156, 157, 158, 159, 161, 163, 166, 167, 173, 175, 176, 177, 180, 186, 197, 201, 202, 223, 224, 225, 227, 231, 235, 238, 240, 243, 244, 246, 248, 249, 250, 251, 252, 253, 254, 291, 292, 296, 306, 311, 312], "\u6b20\u304b\u305b": 56, "\u6b20\u70b9": 0, "\u6b20\u843d": 48, "\u6b21\u5143": 45, "\u6b21\u56de": [12, 93], "\u6b21\u671f": 12, "\u6b21\u7b2c": 12, "\u6b21\u90ce": 307, "\u6b32\u3057\u3044": [96, 141, 248], "\u6b32\u3057\u304f": [43, 44], "\u6b32\u6c42": 56, "\u6b53\u8fce": 3, "\u6b62\u3081": [45, 49, 50, 81], "\u6b62\u3081\u308b": [45, 58], "\u6b63\u3057\u3044": [42, 43, 44, 45, 50, 54, 56, 102, 156, 224, 243, 251, 252], "\u6b63\u3057\u304f": [12, 18, 41, 44, 45, 47, 48, 49, 50, 51, 52, 54, 74, 124, 134, 135, 224, 250], "\u6b63\u53f2": 56, "\u6b63\u5e38": [12, 50, 51, 101, 134, 135, 176], "\u6b63\u5f0f": [49, 51], "\u6b63\u76f4": 56, "\u6b63\u78ba": [42, 43, 54, 111, 133, 224, 305, 308], "\u6b63\u898f": [22, 40, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 57, 138, 161, 165, 168, 191, 192, 193, 197, 202, 205, 229, 230, 231, 232, 233, 234, 235, 236, 237, 243, 257, 258, 259, 272, 276, 277], "\u6b63\u898f\u5316": [47, 138, 237], "\u6b63\u8ca0": 42, "\u6b66\u8005": 50, "\u6b74\u53f2": 56, "\u6b86\u3069": 54, "\u6b8a\u547d": 176, "\u6b8b\u3063": [37, 45, 48, 52, 53, 56, 123, 163, 173], "\u6b8b\u3089": 52, "\u6b8b\u308a": [42, 43, 53, 93, 125, 134, 156, 161, 165, 243], "\u6b8b\u308b": 39, "\u6b8b\u5ff5": 305, "\u6b8b\u7559": [43, 173], "\u6bb5\u843d": 112, "\u6bb5\u968e": [12, 52, 281], "\u6bcd\u97f3": [44, 231, 232, 233, 234, 235], "\u6bce\u56de": 3, "\u6bce\u5e74": 46, "\u6bd4\u3079": [49, 51, 111, 226], "\u6bd4\u8f03": [22, 37, 41, 47, 49, 50, 51, 53, 111, 123, 156, 176, 195, 219, 224, 276, 289, 291], "\u6bd4\u8f03\u6642": 53, "\u6c17\u3065\u3044": 205, "\u6c17\u3065\u3051\u308b": 51, "\u6c17\u306b": [17, 112, 149], "\u6c17\u4ed8\u3051\u308b": 52, "\u6c17\u8efd": [10, 18, 49], "\u6c34\u66dc\u65e5": 212, "\u6c38\u7d9a": [22, 52, 53, 57, 112, 171, 175, 177], "\u6c38\u7d9a\u5316": 52, "\u6c42\u307e\u308a": 0, "\u6c42\u3081": [0, 43, 185], "\u6c42\u3081\u308b": [0, 188, 189, 306], "\u6c4e\u7528": [45, 175, 176, 177], "\u6c7a\u3057": 150, "\u6c7a\u307e\u308a": 243, "\u6c7a\u307e\u308b": 308, "\u6c7a\u3081": [52, 110, 111, 134, 156, 161], "\u6c7a\u3081\u308b": [11, 43, 44, 156], "\u6c7a\u5b9a": [43, 56, 156, 183, 196], "\u6c7a\u65ad": 56, "\u6ca2\u5c71": 41, "\u6cbf\u3046": 49, "\u6ce2\u62ec\u5f27": 125, "\u6ce8\u610f": [18, 39, 41, 42, 43, 44, 45, 48, 51, 53, 54, 91, 94, 111, 124, 125, 137, 138, 143, 153, 156, 161, 163, 175, 176, 177, 180, 194, 205, 224, 225, 237, 275, 281, 292, 301, 305, 306, 308, 313], "\u6ce8\u76ee": [111, 156, 306], "\u6ce8\u8a18": 48, "\u6d0b\u5fd7": [49, 51], "\u6d0b\u723e": 39, "\u6d3b\u304b\u3059": 156, "\u6d3b\u52d5": 56, "\u6d3b\u7528": [50, 56, 274, 296], "\u6d41\u3057": 12, "\u6d41\u308c": [3, 156, 298], "\u6d41\u91cf": 292, "\u6d45\u898b": 48, "\u6d69\u4e8c": 47, "\u6d6e\u52d5": [43, 45, 50, 95, 111, 305], "\u6d88\u3048": [18, 177, 254], "\u6d88\u305b": 177, "\u6d88\u53bb": [48, 53], "\u6d88\u8cbb": [42, 44, 99, 226], "\u6df1\u523b": [47, 49, 301], "\u6df7\u3056\u3063": 264, "\u6df7\u305c": [159, 305], "\u6df7\u305c\u308b": 91, "\u6df7\u4e71": 51, "\u6df7\u540c": [54, 156], "\u6df7\u5728": [41, 50, 53, 56], "\u6dfb\u4ed8": 47, "\u6e05\u5ddd": 51, "\u6e08\u307f": [10, 12, 24, 25, 28, 32, 39, 41, 42, 47, 48, 50, 51, 53, 136, 168, 180, 243, 250, 251, 252, 282, 296], "\u6e08\u3080": 50, "\u6e1b\u3063": [50, 51], "\u6e1b\u3089": [41, 42, 43, 44, 45, 47, 50, 51, 54, 81, 111, 149, 150, 186, 251, 254, 275, 314], "\u6e1b\u308b": [43, 240], "\u6e1b\u5c11": 41, "\u6e1b\u5c11\u5f8c": 81, "\u6e21\u3055": [11, 43, 47, 48, 52, 74, 81, 188], "\u6e21\u3057": [6, 11, 27, 49, 50, 153, 167, 173, 180, 224, 308, 312], "\u6e21\u3059": [40, 50, 225, 308], "\u6e21\u308b": 54, "\u6e2c\u4f4d": 0, "\u6e2c\u5730": [188, 189, 190, 282, 305, 315], "\u6e2c\u5730\u7cfb": 282, "\u6e2c\u5b9a": [44, 176], "\u6e2c\u7528": 36, "\u6e80\u3055": 48, "\u6e80\u3059": [48, 50], "\u6e80\u305f": [11, 41, 43, 44, 45, 51, 137, 163, 210, 224, 225, 237, 244, 315], "\u6e96\u5099": [17, 22, 41, 45, 71, 132, 134, 135, 156, 177, 197, 224, 225, 301, 304], "\u6e96\u62e0": [48, 177], "\u6ec5\u591a": 42, "\u6f0f\u308c": [0, 41, 45, 47, 51, 124, 223, 314], "\u6f14\u7b97": [31, 37, 41, 44, 45, 47, 48, 49, 50, 51, 53, 54, 195, 223, 225], "\u6f14\u7b97\u5b50": [11, 37, 41, 42, 43, 44, 47, 48, 50, 51, 52, 54, 110, 156, 201, 202], "\u6f22\u5b57": [201, 240, 264], "\u6fc1\u70b9": [53, 230, 231, 232, 233, 234, 235, 258, 259], "\u7027\u5185": 48, "\u706b\u66dc\u65e5": 212, "\u70b9\u3005": 56, "\u70b9\u4ee5\u4e0b": 305, "\u70b9\u6570": [43, 45, 50, 95, 111, 305], "\u70b9\u9593": [188, 239], "\u7121\u3044": [12, 42, 45, 54, 123, 253, 272], "\u7121\u3057": [52, 53, 124, 133, 149, 244, 275], "\u7121\u52b9": [6, 18, 31, 40, 41, 42, 43, 44, 45, 47, 48, 50, 52, 53, 54, 74, 102, 134, 143, 149, 156, 175, 177, 180, 224, 228, 250], "\u7121\u540d": [43, 44], "\u7121\u8996": [37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 111, 121, 122, 124, 138, 153, 156, 168, 175, 201, 224, 225, 243, 254, 265, 266, 267, 268, 275, 278, 301], "\u7121\u9650": [37, 44, 47, 49, 50], "\u7121\u99c4": [0, 41, 45, 51], "\u7136\u8a00": 51, "\u7167\u5408": 43, "\u7169\u96d1": [43, 44], "\u7206\u767a": 56, "\u7247\u4eee": 54, "\u725b\u4e73": 45, "\u7269\u7406": [43, 52], "\u7279\u306b": [11, 41, 43], "\u7279\u5225": [31, 68, 100, 111, 125, 156, 168, 224, 244, 250], "\u7279\u5316": [17, 205, 206, 225], "\u7279\u5b9a": [0, 12, 31, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 71, 91, 110, 121, 132, 156, 223, 231, 232, 233, 234, 235, 274, 276, 310, 311], "\u7279\u5fb4": [22, 54, 57, 111, 244, 247, 278, 307, 310], "\u7279\u6027": 254, "\u7279\u6709": 91, "\u7279\u6b8a": [41, 48, 95, 191, 192, 193, 206, 231, 235, 274, 308], "\u72b6\u614b": [0, 10, 12, 28, 32, 34, 37, 41, 43, 45, 47, 49, 50, 51, 52, 53, 54, 58, 105, 108, 174, 175, 250, 301, 308], "\u72b6\u6cc1": [0, 22, 52, 156, 225, 301, 302], "\u72d9\u3063": 111, "\u72ec\u7acb": [133, 177], "\u72ec\u81ea": [0, 50, 52, 95, 174, 230, 298, 305], "\u72ed\u3081\u308b": [124, 149], "\u7372\u5f97": [42, 44, 50, 124, 126, 128], "\u7389\u91ce": [49, 51], "\u73fe\u308c": [142, 168], "\u73fe\u308c\u308b": 301, "\u73fe\u4ee3": [0, 56], "\u73fe\u5728": [0, 41, 43, 44, 45, 50, 53, 54, 56, 58, 60, 61, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 107, 110, 114, 123, 133, 156, 158, 161, 163, 164, 166, 174, 175, 176, 183, 196, 199, 205, 239, 308, 309, 311], "\u73fe\u5728groonga": [42, 43], "\u73fe\u5728\u5730": 311, "\u73fe\u5730": [42, 43], "\u73fe\u5b9f": 306, "\u73fe\u6642\u70b9": [197, 227], "\u73fe\u72b6": [41, 42, 43, 45, 53, 93, 96, 156], "\u73fe\u7528": 123, "\u73fe\u983b": 49, "\u7403\u9762": [188, 189], "\u7406\u7531": [0, 31, 47, 48, 50, 111, 156, 161, 250, 292, 296, 302], "\u7406\u89e3": [18, 137, 156, 163, 308], "\u74b0\u5883": [0, 3, 6, 23, 27, 31, 33, 39, 40, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 118, 149, 150, 156, 176, 177, 180, 243], "\u751f\u3058": [109, 113, 119, 130], "\u751f\u307e": 56, "\u751f\u534a": 56, "\u751f\u6210": [3, 6, 12, 22, 27, 31, 41, 44, 45, 52, 53, 57, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 89, 111, 112, 132, 134, 135, 141, 142, 155, 156, 197, 204, 262, 299, 310], "\u751f\u6210\u5143": 45, "\u7523\u691c": 56, "\u7528\u3044": [0, 14, 22, 36, 39, 51, 52, 61, 189, 244, 301, 304, 307, 308, 310, 311, 312], "\u7528\u3044\u308b": [0, 22, 23, 298, 305, 307, 308, 309, 315], "\u7528\u5909": 49, "\u7528\u610f": [11, 12, 27, 31, 41, 54, 156, 173, 176, 188, 250, 251, 252, 253, 260, 274, 281, 302], "\u7528\u8a9e\u96c6": [22, 57, 108], "\u7528\u9014": [0, 23, 24, 25, 28, 32, 33, 48, 49, 51, 91, 95, 111, 156, 244, 248, 254, 296], "\u7530\u592a": 45, "\u7530\u592a\u90ce": 45, "\u7530\u6cbc": 49, "\u7530\u8fba": 48, "\u7531\u6765": [180, 223], "\u753b\u9762": [12, 36, 49], "\u754c\u9688": 22, "\u7551\u30b1": [49, 50], "\u7551\u30f6": 49, "\u756a\u3081": [42, 45], "\u756a\u53f7": [12, 42, 43, 48, 49, 89, 96, 155, 156, 174, 175, 176, 180, 208, 244, 275, 292, 296, 298, 312], "\u756a\u76ee": [41, 48, 52, 53, 96, 112, 124, 132, 134, 135, 138, 156, 168, 205, 208, 219, 224, 225, 244, 245, 286, 305, 308], "\u7570\u306a\u3063": [41, 50, 52], "\u7570\u306a\u308a": [49, 52, 191, 224], "\u7570\u306a\u308b": [22, 41, 43, 45, 47, 49, 52, 53, 176, 202, 245, 275, 300, 305], "\u7570\u4f53": 56, "\u7570\u5e38": [108, 176], "\u7570\u7a2e": 56, "\u7591\u4f3c": [44, 47, 48, 49, 89, 111, 125, 204], "\u7591\u554f": 310, "\u767a\u3057": 56, "\u767a\u5c55": 56, "\u767a\u63ee": 0, "\u767a\u751f": [0, 31, 36, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 101, 106, 143, 161, 301, 302], "\u767a\u8005": 56, "\u767a\u898b": [54, 123], "\u767a\u899a": [12, 42, 51], "\u767a\u97f3": [45, 56, 231, 235], "\u767b\u5834": [43, 111, 156], "\u767b\u9332": [0, 3, 11, 22, 32, 37, 38, 41, 42, 43, 44, 45, 47, 48, 50, 52, 58, 103, 108, 122, 125, 132, 133, 134, 135, 136, 137, 138, 139, 144, 145, 149, 151, 154, 156, 168, 169, 197, 198, 208, 209, 211, 212, 219, 221, 222, 224, 225, 226, 240, 243, 250, 251, 252, 254, 278, 305, 308, 315], "\u7686\u5ddd": [49, 51], "\u76e3\u8996": 43, "\u76ee\u304f\u3089\u3044": 161, "\u76ee\u4ee5\u964d": [41, 156], "\u76ee\u5b89": 12, "\u76ee\u7684": [31, 48, 168, 180, 310], "\u76ee\u8996": 95, "\u76f4\u3057": [50, 281], "\u76f4\u3059": [18, 152, 173], "\u76f4\u4e0b": 39, "\u76f4\u5217": 156, "\u76f4\u524d": 272, "\u76f4\u5f8c": [43, 44], "\u76f4\u611f": 313, "\u76f4\u63a5": [42, 54, 122, 156, 311], "\u76f4\u7a4d": [44, 45], "\u76f4\u7d14": 56, "\u76f4\u8fd1": 173, "\u76f4\u8fd1n": 173, "\u76f8\u5bfe": [39, 41, 111, 138, 156, 161], "\u76f8\u5bfe\u30d1\u30b9": [41, 49], "\u76f8\u5f53": [44, 45, 95, 306, 308, 315], "\u76f8\u624b": 10, "\u76f8\u95a2": 156, "\u7701\u30b9\u30da\u30fc\u30b9\u30d0\u30fc\u30b8\u30e7\u30f3": 50, "\u7701\u7565": [12, 44, 48, 107, 112, 126, 127, 128, 144, 145, 151, 152, 156, 175, 176, 186, 189, 192, 204, 208, 224, 225, 250, 254, 257, 276, 298, 305, 308, 312], "\u7701\u7565\u6642": [208, 209], "\u771f\u306a\u3089": 225, "\u771f\u507d": [43, 48, 50, 51, 186, 202, 203, 224, 225, 282, 305], "\u771f\u507d\u5024": [22, 304], "\u7740\u304f": 56, "\u7740\u76ee": [44, 111], "\u77e5\u3089": [41, 46, 262], "\u77e5\u308a": [46, 132, 155], "\u77e5\u308b": 306, "\u77e5\u8b58": 176, "\u77e9\u5f62": [0, 190, 315], "\u77ed\u3044": [37, 41, 42, 43, 50, 156, 311], "\u77ed\u3044\u65b9": 44, "\u77ed\u304f": [0, 43, 54, 226], "\u77ed\u6642\u9593": 0, "\u77ed\u671f\u9593": 149, "\u77ed\u7e2e": [6, 41, 42, 45, 50, 51], "\u7834\u58ca": [125, 173], "\u7834\u640d": [41, 42, 43, 45, 51, 52, 53, 54, 106, 123], "\u78ba\u4fdd": [43, 51, 53, 54, 68, 141, 303], "\u78ba\u5b9a": 159, "\u78ba\u5b9f": [52, 53, 111, 251], "\u78ba\u7387": 159, "\u78ba\u7acb": 56, "\u78ba\u8a8d": [3, 10, 27, 36, 42, 43, 44, 45, 49, 51, 54, 95, 100, 101, 102, 105, 106, 111, 117, 122, 123, 124, 137, 138, 141, 156, 163, 171, 173, 176, 177, 180, 183, 224, 244, 264, 302, 303, 305, 308], "\u78ba\u8a8d\u5f8c": 12, "\u78ef\u90e8": 48, "\u793a\u3055": 162, "\u793a\u3057": [12, 45, 59, 96, 100, 110, 111, 132, 138, 141, 155, 156, 188, 196, 239, 245, 262, 264, 295, 298, 301, 306, 308, 310, 312], "\u793a\u3059": [58, 74, 95, 100, 111, 121, 125, 126, 132, 134, 135, 137, 142, 149, 150, 155, 156, 162, 183, 184, 186, 188, 189, 190, 191, 192, 193, 194, 195, 196, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 228, 245, 246, 247, 286, 292, 305, 313], "\u793a\u3059\u4f8b": 111, "\u793a\u677f": 56, "\u793e\u4f1a": 56, "\u793e\u5185": 56, "\u793e\u5275": 56, "\u793e\u540d": 56, "\u798f\u5ca1": 56, "\u79cb\u8449": 315, "\u79d2\u3088\u308a": 38, "\u79d2\u5358": [43, 282, 305], "\u79d2\u5f62": 282, "\u79d2\u5f8c": 99, "\u79d2\u60c5": 39, "\u79d2\u6570": [95, 225, 282, 305, 311], "\u79d2\u672a": 44, "\u79d2\u8868": [225, 301, 305, 315], "\u79d2\u9593": 39, "\u79d8\u5bc6": 12, "\u79fb\u52d5": [12, 16, 18, 39, 47, 110, 141], "\u79fb\u884c": [39, 46, 93, 156], "\u7a0b\u5ea6": [39, 48, 52, 308], "\u7a2e\u5225": 138, "\u7a2e\u985e": [1, 11, 12, 22, 39, 41, 50, 51, 53, 58, 74, 89, 90, 91, 100, 110, 140, 141, 155, 156, 159, 161, 168, 175, 176, 180, 224, 225, 237, 245, 246, 247, 250, 251, 253, 254, 264, 298, 301, 304, 308, 312], "\u7a32\u7530": 48, "\u7a3c\u50cd": 56, "\u7a4d\u307f\u91cd\u306a\u3063": 48, "\u7a4d\u7528": 156, "\u7a4d\u7b97": [11, 156], "\u7a7a\u304d": [42, 53, 94, 108, 156, 303], "\u7a7a\u6587": [44, 45, 49, 51, 52, 111, 112, 115, 116, 117, 142, 155, 208, 209, 224, 282], "\u7a7a\u6e2f": 44, "\u7a7a\u767d": [0, 43, 44, 45, 50, 53, 54, 138, 156, 168, 175, 205, 224, 225, 253, 262, 264, 265, 266, 267, 268, 272, 273, 275, 279, 280, 301, 308], "\u7a7a\u9593": [91, 111, 141], "\u7a7a\u96c6\u5408": 156, "\u7a81\u7136": 48, "\u7acb\u3061\u3057": 156, "\u7acb\u3061\u4e0a\u304c\u3063": 176, "\u7acb\u3061\u4e0a\u3052": 176, "\u7acb\u3064": [173, 244], "\u7acb\u3064\u304b": 274, "\u7acb\u3066": [53, 56], "\u7acb\u5834": 3, "\u7acb\u5ddd": 51, "\u7adc\u4e4b": 51, "\u7aef\u672b": 0, "\u7af9\u4e2d": 56, "\u7b26\u53f7": [42, 50, 100, 111, 282, 298, 305], "\u7b2c\u4e00": 41, "\u7b49\u3057\u3044": [11, 156, 195, 224, 225], "\u7b49\u3057\u304f": [11, 224, 225], "\u7b49\u4fa1": [37, 45, 49, 50, 51, 54, 156, 202, 219, 223], "\u7b49\u5024": 37, "\u7b49\u95a2\u9023": 12, "\u7b87\u6240": [44, 48, 111, 205, 206], "\u7b97\u51fa": [41, 47, 49], "\u7b97\u8853": [41, 44, 48], "\u7ba1\u7406": [12, 17, 18, 22, 27, 31, 36, 39, 40, 41, 42, 45, 47, 49, 52, 56, 57, 58, 98, 108, 118, 141, 153, 171, 173, 175, 178, 243, 254, 299, 304], "\u7bc0\u7d04": 52, "\u7bc4\u56f2": [0, 18, 22, 45, 47, 48, 49, 50, 51, 54, 89, 93, 111, 133, 137, 156, 183, 189, 190, 239, 244, 254, 301, 304, 305, 311], "\u7bc4\u56f2\u5916": 49, "\u7be0\u7530": [43, 44, 49, 50, 51], "\u7c21\u5358": [12, 31, 42, 45, 49, 54, 112, 114, 132, 138, 139, 158, 164, 165, 168, 169, 170, 177, 186, 188, 194, 198, 201, 202, 208, 209, 211, 212, 219, 224, 225, 228, 245, 247, 291, 292, 301, 308, 312], "\u7c21\u6613": [49, 188], "\u7c21\u7565": [48, 196], "\u7cbe\u5ea6": [41, 50, 51, 56, 111, 225], "\u7cfb\u5ea7": [189, 190], "\u7d00\u5143": 50, "\u7d10\u4ed8": 197, "\u7d10\u4ed8\u3051": 45, "\u7d14\u56fd": 56, "\u7d14\u7c8b": 264, "\u7d1b\u3089\u308f\u3057\u3044": 244, "\u7d20\u6280": 56, "\u7d20\u65b9": 0, "\u7d20\u65e9": 52, "\u7d20\u6734": 306, "\u7d20\u89e3": [0, 31, 156, 225, 274], "\u7d20\u9593": 111, "\u7d22\u5f15": [11, 22, 36, 37, 49, 52, 87, 111, 299, 301, 305, 308], "\u7d22\u6642": 37, "\u7d22\u7528": [22, 304], "\u7d2f\u7a4d\u548c": [132, 134, 135, 156], "\u7d30\u304b\u3044": 56, "\u7d30\u5206": [274, 305], "\u7d39\u4ecb": [3, 12, 18, 43, 44, 45, 49, 132, 134, 135, 156, 257, 311], "\u7d42\u3048": [12, 56], "\u7d42\u308f\u3063": [50, 84, 156, 173], "\u7d42\u308f\u308b": [132, 149, 156, 224, 225, 226], "\u7d42\u4e86": [12, 37, 41, 43, 47, 48, 49, 50, 53, 84, 93, 124, 134, 147, 153, 156, 157, 171, 173, 175, 176, 188, 191, 192, 205, 206], "\u7d42\u4e86\u30bf\u30b0": [191, 192], "\u7d42\u7aef": [47, 68, 208, 209], "\u7d44\u307f\u5408\u308f": [0, 11, 42, 45, 111, 156, 161, 180, 183, 191, 201, 202, 231, 235, 257, 258, 259], "\u7d44\u307f\u5408\u308f\u305b": [0, 11, 27, 42, 43, 44, 45, 49, 51, 111, 156, 231, 232, 233, 234, 235, 264, 274, 275, 301, 308], "\u7d44\u307f\u5408\u308f\u305b\u308b": 201, "\u7d44\u307f\u8fbc\u307f": [22, 43, 44, 50, 53, 57, 92, 111, 122, 138, 141, 142, 168, 176, 177, 182, 188, 243, 283], "\u7d44\u307f\u8fbc\u3080": [0, 11, 175, 177], "\u7d44\u307f\u8fbc\u3093": [0, 49, 50], "\u7d44\u5408": 202, "\u7d44\u8fbc": [74, 108, 109, 113, 119, 120, 122, 124, 130, 147, 162, 185, 189, 190, 199, 204, 282], "\u7d44\u8fbc\u578b": [22, 57], "\u7d4c\u55b6": 56, "\u7d4c\u5ea6": [22, 225, 282, 305, 311, 315], "\u7d4c\u7531": [12, 29, 37, 42, 47, 49, 54, 108, 109, 113, 119, 120, 122, 130, 147, 162, 176, 180, 253], "\u7d4c\u7def": [56, 282, 305, 315], "\u7d4c\u7def\u5ea6": [22, 304, 315], "\u7d4c\u904e": [39, 93, 95, 158, 180, 225, 282, 305, 311], "\u7d50\u3073\u3064\u3044": [9, 310], "\u7d50\u3073\u3064\u304f": 9, "\u7d50\u5408": [11, 43, 203, 223, 224], "\u7d50\u5408\u5f0f": 47, "\u7d50\u57ce": [49, 51], "\u7d50\u679c": [0, 11, 12, 14, 21, 22, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 89, 94, 95, 97, 107, 110, 122, 123, 125, 132, 134, 135, 138, 153, 154, 156, 173, 186, 195, 196, 202, 203, 205, 210, 223, 225, 230, 240, 243, 244, 245, 250, 251, 253, 254, 262, 265, 266, 267, 268, 274, 276, 292, 299, 300, 304, 310, 311, 314, 315], "\u7d5e\u308a\u8fbc\u307e": [42, 53, 197], "\u7d5e\u308a\u8fbc\u307f": [0, 53, 195, 308], "\u7d5e\u308a\u8fbc\u3080": [49, 132, 134, 135, 156, 183, 196, 252], "\u7d5e\u308a\u8fbc\u3081": [42, 43], "\u7d5e\u308a\u8fbc\u3081\u308b": [43, 186], "\u7d5e\u308a\u8fbc\u3093": [0, 43, 48, 183, 196], "\u7d5e\u8fbc": [22, 304], "\u7d71\u5408": [0, 47, 48, 227], "\u7d71\u8a08": [52, 54], "\u7d76\u5bfe": [41, 52, 56, 111, 144, 145, 151, 156, 161, 198], "\u7d99\u627f": 48, "\u7d99\u7d9a": [21, 47, 158, 175, 278], "\u7d9a\u3044": [56, 301], "\u7d9a\u304d": 56, "\u7d9a\u3051": [43, 56, 99, 173, 176], "\u7d9a\u3051\u308b": [46, 156, 173, 274], "\u7d9a\u6570": [94, 156], "\u7dad\u6301": [0, 43, 44, 45, 51, 149, 246, 247, 292], "\u7db2\u7f85": 177, "\u7dbf\u3005": 56, "\u7dca\u6025": [175, 228], "\u7dcf\u548c": 156, "\u7dcf\u6570": 134, "\u7dcf\u91cf": 281, "\u7de0\u5f79": 56, "\u7de8\u96c6": [3, 12, 14, 31, 36, 43, 44, 47, 51, 156, 177, 185, 225, 243], "\u7de9\u3044": 53, "\u7de9\u304f": 184, "\u7de9\u3084\u304b": 50, "\u7de9\u548c": 281, "\u7def\u5ea6": [22, 225, 282, 305, 311, 315], "\u7e1b\u308a": 56, "\u7e26\u68d2": [111, 161], "\u7e2e\u6a5f": 111, "\u7e41\u6804": 56, "\u7e4b\u3050": 56, "\u7e4b\u3052": 49, "\u7e4b\u3052\u308b": 10, "\u7e70\u308a\u8fd4\u3057": [17, 41, 43, 44, 52, 54, 111, 176, 225], "\u7e70\u308a\u8fd4\u3057\u6570": 176, "\u7e70\u308a\u8fd4\u3059": [37, 42], "\u7f6e\u3044": [12, 49], "\u7f6e\u304b": [31, 177, 178, 243], "\u7f6e\u304d": [12, 37, 45, 50, 53, 58, 111, 175, 244, 314], "\u7f6e\u304d\u63db\u3048": [17, 49, 175, 224, 248], "\u7f6e\u304f": [31, 41, 50, 281], "\u7f6e\u304f\u4f8b": 31, "\u7f6e\u63db": [51, 111, 156, 202, 225, 314], "\u7f72\u540d": 47, "\u7fa9\u8a9e": [43, 44, 243], "\u7ffb\u8a33": [3, 12, 43, 44, 49, 54], "\u8003\u3048": [0, 10, 43, 44, 56, 94, 156, 163, 225, 281, 292, 306, 308], "\u8003\u3048\u308b": [43, 44, 245, 246, 247], "\u8003\u3048\u65b9": [49, 56], "\u8003\u308b": 244, "\u8003\u616e": [42, 43, 247, 301, 314], "\u8005\u9593": 56, "\u805e\u3044": 56, "\u8077\u5834": 198, "\u80a5\u5927": [43, 49, 52], "\u80cc\u666f": [191, 193], "\u8106\u5f31": 54, "\u811a\u6ce8": [113, 188, 189, 190, 308], "\u81a8\u5927": [0, 54], "\u81ea\u4f53": [49, 111, 224], "\u81ea\u5206": [10, 12, 17, 18, 23, 41, 111, 137, 163, 176, 177, 240], "\u81ea\u52d5": [12, 17, 31, 39, 41, 42, 43, 45, 47, 49, 50, 52, 54, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 87, 89, 111, 112, 124, 141, 142, 144, 145, 149, 150, 151, 156, 173, 176, 177, 186, 197, 205, 224, 225, 254, 295, 307, 308, 313], "\u81ea\u52d5\u5207\u308a": 49, "\u81ea\u52d5\u751f\u6210": [45, 87, 90, 91, 141], "\u81ea\u52d5\u7684": [111, 132, 134, 135, 156, 176], "\u81ea\u5df1": 311, "\u81ea\u5df1\u7d39": 311, "\u81ea\u7136": 52, "\u81ea\u7531": [0, 11, 89, 228, 298], "\u81ea\u793e": 56, "\u81ea\u8eab": [31, 39, 41, 43, 47, 50, 168, 175, 243], "\u81f3\u308b": 305, "\u81f4\u547d": 47, "\u8208\u5473": [0, 50, 244], "\u821e\u3044": [52, 156], "\u826f\u3044": [10, 43, 111, 225, 302, 310], "\u826f\u3044\u4f8b": 10, "\u826f\u304f": [41, 43, 50, 310], "\u826f\u4e8c": 49, "\u82b1\u5b50": 307, "\u82e6\u624b": 0, "\u82f1\u8a9e": [2, 12, 17, 18, 19, 39, 49, 51, 52, 53, 54, 156, 205, 260, 264], "\u83ab\u5927": 253, "\u840e\u7e2e": 10, "\u843d\u3061": [37, 48, 51], "\u843d\u3061\u308b": [37, 39, 41, 48], "\u843d\u3068": 111, "\u8457\u4f5c": 49, "\u84c4\u7a4d": 56, "\u884c\u3044": [11, 12, 18, 43, 44, 45, 50, 51, 56, 156, 174, 175, 176, 202, 299, 301, 307, 308, 310, 311], "\u884c\u3046": [3, 10, 14, 37, 43, 45, 47, 49, 52, 53, 156, 161, 174, 188, 202, 225, 255, 296, 299, 307, 310, 311, 313, 315], "\u884c\u3048": [14, 49, 202, 224, 308], "\u884c\u3048\u308b": [47, 307], "\u884c\u304d": 56, "\u884c\u304f": 56, "\u884c\u3063": [12, 14, 49, 52, 53, 306, 315], "\u884c\u306a\u308f": 47, "\u884c\u308f": [43, 53, 56, 156, 174, 176, 307], "\u884c\u52d5": 56, "\u884c\u6307\u5411": 0, "\u884c\u6570": [39, 53, 175, 180], "\u884c\u6642": 31, "\u884c\u672b": 244, "\u884c\u756a": 39, "\u884c\u76ee": [12, 176], "\u884c\u982d": 244, "\u885d\u7a81": [53, 125], "\u8868\u3057": [11, 89, 93, 95, 100, 134, 142, 156, 239, 244, 247, 275, 282, 302, 308], "\u8868\u3059": [11, 12, 43, 53, 129, 143, 168, 188, 204, 239, 244, 305, 307], "\u8868\u3059\u578b": 282, "\u8868\u5185": 156, "\u8868\u53d6": 56, "\u8868\u73fe": [3, 22, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 68, 91, 95, 108, 111, 202, 205, 212, 223, 272, 276, 277, 282, 305, 310], "\u8868\u7528": 161, "\u8868\u793a": [0, 22, 31, 36, 37, 39, 40, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 74, 93, 108, 111, 132, 134, 135, 156, 158, 162, 175, 176, 198, 201, 228, 241, 298, 301, 304, 305, 307, 310, 315], "\u8868\u8a08": 243, "\u8868\u8a18": [12, 17, 39, 43, 47, 48, 51, 53, 91, 188, 225, 274, 275, 282, 305, 314, 315], "\u88d5\u4e5f": [49, 51], "\u88dc\u3046": 0, "\u88dc\u5b8c": [22, 37, 48, 51, 57, 144, 145, 151, 159, 180, 201, 240, 249, 253], "\u88dc\u5b8c\u7528": 180, "\u88dc\u5b8c\u8a9e": 250, "\u88dc\u6b63": [22, 57, 159, 249], "\u88dc\u8db3": [53, 54, 177], "\u88fd\u4f5c\u6240": 54, "\u88fd\u54c1": 51, "\u88fd\u691c": 56, "\u8907\u6570": [0, 10, 11, 22, 27, 31, 36, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 68, 74, 90, 91, 96, 98, 111, 121, 132, 134, 135, 138, 149, 152, 153, 156, 159, 161, 162, 165, 168, 175, 176, 177, 178, 180, 186, 191, 192, 195, 196, 202, 203, 224, 225, 228, 231, 232, 233, 234, 235, 238, 244, 245, 248, 250, 264, 272, 274, 275, 276, 286, 291, 299, 301, 304, 305, 307, 308, 309, 311], "\u8907\u96d1": [11, 42, 43, 47, 48, 50, 156, 225, 244, 272], "\u897f\u66a6": 225, "\u897f\u6751": 56, "\u897f\u6b27\u8a9e": 56, "\u8981\u3089": 56, "\u8981\u4ef6": 12, "\u8981\u6c42": [10, 41, 42, 44, 48, 51, 53, 134, 210, 295, 308], "\u8981\u7d04": 12, "\u8981\u7d20": [11, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 54, 56, 91, 95, 96, 100, 111, 112, 142, 155, 156, 176, 205, 206, 219, 308], "\u8981\u7d20\u6570": 156, "\u8987\u6a29": 56, "\u898b\u3048\u308b": 6, "\u898b\u305a": 44, "\u898b\u305b": [156, 248], "\u898b\u305f\u3044": 45, "\u898b\u3064": [37, 47, 50, 53, 159], "\u898b\u3064\u304b\u3063": [134, 156, 219, 252, 262, 264, 302], "\u898b\u3064\u304b\u308a": [52, 156, 201, 262, 264, 274, 302], "\u898b\u3064\u304b\u308b": 47, "\u898b\u3064\u304b\u308c": 10, "\u898b\u3064\u3051": [10, 36, 41, 47, 54, 134, 156, 250, 274, 275], "\u898b\u3064\u3051\u308b": [42, 43, 56, 114, 149, 156, 164, 177, 201, 229, 240, 262, 264], "\u898b\u3066": [56, 95, 110, 111, 132, 134, 135, 141, 150, 156, 161, 177, 195, 202, 203, 219, 250, 283], "\u898b\u3084\u3059\u304f": 54, "\u898b\u308b": [54, 100, 110, 123, 156, 302], "\u898b\u4ed8": 48, "\u898b\u4ed8\u3051": 48, "\u898b\u76f4\u3057": 49, "\u898b\u7a4d": 50, "\u898b\u7a4d\u308b": [51, 303], "\u898b\u8fbc\u3081": [49, 111], "\u898b\u8fbc\u3081\u308b": 111, "\u898f\u5247": [47, 132, 134, 135], "\u8996\u899a": [0, 155], "\u899a\u3048": 56, "\u899a\u3048\u308b": 18, "\u89a7\u4e0b": 14, "\u89aa\u5207": 37, "\u89b3\u70b9": [49, 196, 225, 303], "\u89d2\u62ec\u5f27": 125, "\u89e3\u50cf": 37, "\u89e3\u653e": [41, 42, 43, 49, 50, 51, 52, 61, 84, 118, 126, 128, 158], "\u89e3\u6790": [3, 22, 39, 42, 47, 52, 156, 177, 300], "\u89e3\u6c7a": [10, 22, 39, 41, 42, 47, 50, 51, 52, 57, 108, 111, 143, 161, 245, 246, 247, 248, 264, 303], "\u89e3\u6c7a\u7b56": 10, "\u89e3\u6d88": [36, 43, 48, 50, 51, 91, 120], "\u89e3\u8aac": 54, "\u89e3\u91c8": [11, 37, 42, 122, 224, 272], "\u89e3\u9664": [36, 42, 52, 109, 125, 127, 144, 145, 175], "\u89e6\u308b": 50, "\u89e6\u308c": 308, "\u89e6\u308c\u308b": 264, "\u8a00\u3044": [50, 87, 163, 210], "\u8a00\u3046": [91, 111, 133, 224, 247, 250], "\u8a00\u3048": [224, 278, 301], "\u8a00\u308f": 56, "\u8a00\u53ca": [210, 311], "\u8a00\u8449": 45, "\u8a00\u8a9e": [1, 3, 11, 18, 20, 21, 22, 37, 41, 45, 48, 52, 53, 57, 156, 175, 197, 264, 274], "\u8a00\u8a9e\u540d": 17, "\u8a02\u6b63": 243, "\u8a08\u6e2c": [14, 36, 39], "\u8a08\u753b": [53, 56], "\u8a08\u7b97": [0, 36, 41, 42, 44, 45, 47, 48, 49, 52, 53, 111, 132, 134, 135, 154, 156, 158, 180, 185, 188, 189, 197, 198, 224, 225, 239, 245, 246, 247, 250, 251, 253, 281, 282, 286, 315], "\u8a18\u3057": 56, "\u8a18\u4e8b": [12, 226, 310], "\u8a18\u53f7": [37, 42, 43, 44, 45, 53, 175, 231, 232, 233, 234, 235, 258, 259, 264, 265, 266, 267, 268, 269, 270, 271, 274, 275, 299, 301, 308], "\u8a18\u6cd5": [53, 225, 310], "\u8a18\u8f09": [12, 27, 43, 47, 51, 94, 111, 302], "\u8a18\u8ff0": [11, 41, 42, 45, 50, 51, 175, 176, 308, 310, 311], "\u8a18\u9332": [0, 42, 43, 45, 47, 50, 51, 52, 54, 89, 111, 124, 144, 151, 156, 166, 228], "\u8a2d\u5b9a": [14, 20, 22, 24, 25, 27, 28, 30, 31, 32, 36, 37, 38, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 59, 61, 74, 81, 89, 91, 102, 104, 105, 107, 111, 115, 116, 117, 124, 125, 129, 130, 133, 134, 156, 157, 158, 167, 175, 179, 183, 184, 196, 202, 237, 243, 244, 250, 275, 281, 291, 296, 303, 310, 315], "\u8a2d\u5b9a\u5024": [36, 303], "\u8a2d\u5b9a\u6e08\u307f": 296, "\u8a2d\u6a02": 39, "\u8a2d\u7acb": 56, "\u8a2d\u8a08": [45, 156, 296], "\u8a31\u5bb9": [42, 44, 53, 224, 225], "\u8a3a\u65ad": 51, "\u8a3c\u5de6": 56, "\u8a55\u4fa1": [11, 41, 42, 43, 44, 45, 48, 50, 52, 53, 111, 125, 154, 155, 156, 186, 210, 224, 225, 244], "\u8a66\u3057": [10, 50, 175], "\u8a66\u3059": [6, 175, 262, 291], "\u8a66\u3059\u4f8b": 262, "\u8a66\u884c": 0, "\u8a70\u3081": 74, "\u8a71\u3057": 3, "\u8a71\u984c": 2, "\u8a72\u5f53": [49, 61, 111, 140, 183, 191, 192, 193, 195, 196, 205, 206, 302, 310], "\u8a72\u5f53\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 50, "\u8a72\u5f53\u884c": 52, "\u8a73\u3057\u3044": 156, "\u8a73\u3057\u304f": [0, 305, 308], "\u8a73\u7d30": [1, 14, 17, 24, 25, 27, 28, 30, 31, 32, 41, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 61, 74, 87, 90, 91, 95, 96, 98, 110, 111, 118, 124, 132, 134, 135, 137, 141, 142, 144, 145, 149, 150, 151, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 168, 173, 176, 177, 202, 203, 224, 225, 228, 240, 243, 244, 260, 274, 281, 282, 283, 296, 301, 306, 308, 315], "\u8a87\u308b": 56, "\u8a8d\u8a3c": [177, 291, 312], "\u8a8d\u8b58": [10, 42], "\u8a95\u751f": 22, "\u8a9e\u3059": 44, "\u8a9e\u4ee5": [156, 225, 274], "\u8a9e\u5165": 240, "\u8a9e\u53e5": [48, 50, 52, 53, 307], "\u8a9e\u570f": 56, "\u8a9e\u5bfe": 56, "\u8a9e\u5c3e": 56, "\u8a9e\u5c55": 45, "\u8a9e\u5e79": [42, 260], "\u8a9e\u5f59": [22, 34, 44, 50, 51, 53, 124, 149, 156, 161, 163, 165, 229, 237, 244, 254, 261, 299, 304, 310], "\u8a9e\u5f59\u8868": [53, 111, 165, 244, 308, 310], "\u8a9e\u6271": 299, "\u8a9e\u691c": 156, "\u8a9e\u7248": 12, "\u8a9e\u7528": [260, 274], "\u8a9e\u8a33": [18, 53], "\u8a9e\u8a71": 18, "\u8aa4\u3063": [12, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 123], "\u8aa4\u308a": [41, 47, 48, 49, 50, 51, 52, 53, 208], "\u8aa4\u52d5\u4f5c": 50, "\u8aa4\u5b57": [37, 39, 44, 47, 48, 50, 51, 54, 243], "\u8aa4\u5dee": [39, 188, 189], "\u8aa4\u8a18": 42, "\u8aa4\u8a8d": 42, "\u8aac\u660e": [3, 5, 6, 7, 8, 11, 12, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 47, 48, 49, 50, 51, 53, 54, 57, 58, 90, 91, 92, 94, 95, 96, 100, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 146, 147, 149, 150, 152, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 172, 173, 175, 177, 178, 180, 182, 193, 194, 202, 224, 225, 228, 237, 238, 243, 244, 245, 246, 247, 248, 249, 250, 251, 253, 264, 281, 283, 298, 299, 301, 302, 305, 306, 308], "\u8aad\u307f": [0, 12, 36, 53, 97, 201, 223, 231, 232, 233, 234, 235, 249, 274], "\u8aad\u307f\u3084\u3059\u3044": 40, "\u8aad\u307f\u51fa\u3057": 0, "\u8aad\u307f\u53d6\u308a": [114, 164, 175], "\u8aad\u307f\u8fbc\u307e\u305a": 41, "\u8aad\u307f\u8fbc\u307f": [39, 48, 49, 53, 144, 151, 243, 308], "\u8aad\u307f\u8fbc\u3080": [36, 253], "\u8aad\u307f\u8fbc\u3081": 53, "\u8aad\u307f\u8fbc\u3081\u308b": 122, "\u8aad\u307f\u8fbc\u3093": [125, 298], "\u8aad\u307f\u98db\u3070": 308, "\u8aad\u3081": 47, "\u8aad\u3093": [3, 21], "\u8ab0\u304b": 3, "\u8ab0\u304c": 311, "\u8ab0\u3067": 49, "\u8ab2\u7a0b": 48, "\u8ab2\u984c": [3, 22, 56], "\u8abf\u3079": [43, 189, 190, 306], "\u8abf\u3079\u308b": [43, 48, 74, 165, 189, 190, 303], "\u8abf\u6574": [41, 42, 44, 51, 52, 53, 111, 156, 223, 262, 301, 303], "\u8abf\u67fb": [50, 74, 141, 302], "\u8ad6\u7406": [0, 11, 34, 42, 43, 44, 47, 50, 51, 108, 132, 134, 135, 136, 156, 195, 202, 248], "\u8ad6\u7406\u548c": [11, 156, 202, 225, 262], "\u8ad6\u7406\u5dee": 202, "\u8ad6\u7406\u7a4d": 202, "\u8af8\u6761": 34, "\u8b58\u5225": 180, "\u8b66\u544a": [6, 37, 40, 42, 43, 47, 48, 49, 52, 53, 54, 93, 111, 156, 175, 228], "\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8": 43, "\u8b70\u8ad6": 19, "\u8ca0\u3051": 56, "\u8ca0\u62c5": 10, "\u8ca0\u6570": 47, "\u8ca0\u8377": [37, 177], "\u8ca2\u732e": [18, 48], "\u8cb4\u6587": 56, "\u8cc7\u6599": 233, "\u8cc7\u672c": 56, "\u8ce2\u304f": 118, "\u8d64\u9053": 188, "\u8d70\u67fb": 49, "\u8d77\u304d": 53, "\u8d77\u3053\u3057": 44, "\u8d77\u3053\u3063": [44, 54, 114, 164], "\u8d77\u3053\u308a": [42, 54, 314], "\u8d77\u52d5": [12, 33, 37, 42, 45, 47, 48, 50, 93, 105, 158, 175, 176, 178, 241, 292, 295, 308], "\u8d77\u52d5\u6642": 180, "\u8d77\u6e90": [22, 305], "\u8d77\u70b9": 41, "\u8d85\u3048": [42, 43, 48, 51, 54, 104, 301], "\u8d85\u3048\u308b": [41, 47, 52, 54, 254, 303, 305], "\u8d85\u904e": [48, 141, 303], "\u8d8a\u3048": [49, 50, 301], "\u8d8a\u3048\u308b": [49, 50, 51, 301], "\u8db3\u3057": 225, "\u8db3\u308a": [39, 243], "\u8ddd\u96e2": [0, 36, 41, 43, 44, 45, 47, 51, 156, 185, 188, 189, 198, 224, 225, 239, 315], "\u8ee2\u7f6e": [22, 41, 43, 47, 50, 51, 87, 111, 225, 307, 308], "\u8ee2\u9001": 42, "\u8efd\u3044": [114, 140, 142, 164], "\u8efd\u5fae": [175, 177], "\u8f09\u305b\u308b": 12, "\u8f9e\u63a2": 43, "\u8f9e\u66f8": [30, 36, 37, 47, 48, 49, 50, 51, 156, 274, 301], "\u8f9e\u691c": [39, 225, 254], "\u8f9e\u7121": 53, "\u8fbc\u307f": 243, "\u8fbf\u308b": 12, "\u8fce\u3048": 56, "\u8fd1\u3044": [41, 44, 45, 51, 54, 141, 174, 198, 225, 248], "\u8fd1\u3044\u9806": 239, "\u8fd1\u304f": [0, 239], "\u8fd1\u4f3c": [39, 47, 188, 189], "\u8fd1\u508d": [41, 42, 43, 44, 45, 47, 49, 51, 202, 223], "\u8fd4\u3055": [41, 42, 43, 44, 47, 49, 51, 52, 53, 54, 93, 108, 159, 208, 209], "\u8fd4\u3057": [11, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 54, 81, 85, 107, 111, 112, 114, 115, 116, 117, 121, 123, 125, 126, 127, 128, 129, 131, 132, 133, 134, 136, 139, 140, 141, 142, 143, 152, 153, 154, 155, 156, 158, 159, 165, 167, 168, 169, 170, 183, 184, 185, 186, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 210, 211, 212, 219, 221, 225, 246, 247, 250, 251, 252, 253, 292, 308, 311, 314, 315], "\u8fd4\u3059": [36, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 68, 81, 109, 113, 118, 119, 120, 123, 130, 132, 134, 135, 142, 156, 159, 167, 175, 176, 180, 183, 197, 198, 199, 225, 292, 298, 315], "\u8fd4\u3059\u304b": 159, "\u8fd4\u3059\u4f8b": 221, "\u8fd4\u3059\u65b0\u3057\u3044": [50, 51], "\u8fd4\u305b": 195, "\u8fd4\u3063": [49, 50, 167, 224, 225], "\u8fd4\u3089": 41, "\u8fd4\u308a": [41, 111, 132, 134, 135, 156, 163, 167, 306, 315], "\u8fd4\u308a\u5024": [48, 49, 50, 51], "\u8fd4\u308b": [37, 50, 51], "\u8fd4\u4fe1": [10, 310, 311], "\u8fd4\u4fe1\u5143": 311, "\u8fd4\u4fe1\u5148": 311, "\u8fd4\u5024": 108, "\u8fd4\u5374": [43, 45, 51, 162, 208, 209, 308], "\u8ff0\u3079": 308, "\u8ff0\u8a9e": 50, "\u8ffd\u3046": 302, "\u8ffd\u3063": 302, "\u8ffd\u52a0": [0, 3, 11, 12, 22, 24, 25, 27, 28, 31, 32, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 68, 74, 89, 96, 98, 99, 111, 119, 124, 125, 142, 156, 168, 175, 177, 201, 224, 225, 226, 232, 233, 234, 235, 243, 248, 252, 254, 255, 260, 261, 274, 296, 298, 301, 305, 306, 307, 308, 310, 313], "\u8ffd\u8a18": [12, 47, 50, 54], "\u8ffd\u8de1": [3, 22], "\u9000\u907f": 118, "\u9001\u3063": [3, 16, 17, 18, 19], "\u9001\u3089": 45, "\u9001\u308a": [12, 18, 178, 298], "\u9001\u308a\u65b9": [3, 18, 22, 31, 312], "\u9001\u308b": [3, 17, 19, 45, 178, 292, 298], "\u9001\u4fe1": [41, 42, 43, 48, 53, 54, 108, 109, 113, 119, 120, 122, 130, 147, 153, 162, 176, 180], "\u9006\u306b": [307, 311], "\u9006\u5f15": 307, "\u9006\u5f15\u304d": [22, 304, 311], "\u9006\u6587\u66f8\u51fa": 49, "\u9006\u9806": 308, "\u9010\u6b21": [0, 49, 94, 244, 277], "\u9014\u4e2d": [12, 44, 47, 49, 175, 250, 251, 298], "\u901a\u3058": [18, 53], "\u901a\u308a": [6, 12, 21, 31, 32, 41, 42, 43, 44, 45, 53, 58, 64, 74, 96, 110, 111, 112, 121, 122, 123, 125, 132, 133, 134, 135, 136, 138, 142, 149, 150, 155, 156, 157, 159, 161, 162, 168, 173, 175, 177, 178, 180, 183, 184, 186, 188, 189, 191, 192, 193, 194, 195, 196, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 228, 231, 232, 233, 234, 235, 237, 239, 240, 244, 245, 246, 247, 253, 258, 259, 260, 264, 266, 267, 268, 276, 278, 281, 286, 301, 310], "\u901a\u4fe1": [3, 4, 22, 174, 176, 177, 178, 180], "\u901a\u5e38": [41, 42, 43, 44, 45, 47, 49, 50, 52, 54, 58, 81, 89, 95, 111, 112, 118, 123, 124, 132, 133, 134, 135, 137, 141, 142, 143, 155, 156, 158, 168, 173, 175, 177, 180, 186, 206, 224, 230, 236, 240, 243, 244, 272, 281, 282, 305, 308], "\u901a\u77e5": [12, 153, 175, 228], "\u901f\u3044": [41, 44, 49, 50, 111, 134, 156, 183, 196, 254], "\u901f\u304f": [31, 42, 50, 52, 111, 161, 307], "\u901f\u3084\u304b": 93, "\u901f\u5ea6": [39, 43, 45, 48, 50, 52, 54, 111, 176, 254, 307], "\u9023\u4f53\u5316": 274, "\u9023\u643a": 0, "\u9023\u7d50": [41, 47, 48, 50, 310], "\u9023\u7d61": 17, "\u9023\u7d9a": [48, 50, 111, 168, 251, 265, 266, 267, 268, 275, 299, 301], "\u9032\u3081": [3, 4, 22, 51], "\u9032\u3093": 0, "\u9032\u6357": 54, "\u9032\u6570": [108, 225], "\u9045\u3044": [43, 54, 111, 188, 245, 254], "\u9045\u304f": [41, 42, 43, 44, 50, 51, 54, 94, 111, 156, 175, 177, 189, 224, 225, 244, 247, 306], "\u9045\u3089": 51, "\u904b\u7528": [0, 52], "\u904e\u53bb": [12, 51], "\u904e\u7a0b": [52, 54, 89], "\u9054\u3057": 281, "\u9054\u3059\u308b": 34, "\u9055\u3044": [43, 45, 53, 111, 134, 141, 156, 161, 188, 195, 224, 244, 265, 266, 267, 268, 269, 270, 271, 273, 279, 280, 292, 305, 308, 310, 315], "\u9055\u3046": [18, 37, 41, 111, 135, 180, 224, 225], "\u9055\u3063": 250, "\u9069\u3057": [0, 90, 111, 161, 226, 245, 246], "\u9069\u5207": [0, 37, 41, 43, 44, 49, 50, 51, 52, 53, 54, 56, 111, 125, 132, 135, 149, 156, 161, 168, 176, 178, 205, 244, 247, 262, 264, 272, 273, 308], "\u9069\u5408": [262, 264, 274, 301, 308], "\u9069\u5408\u7387": 262, "\u9069\u5b9c": [12, 49], "\u9069\u7528": [42, 43, 44, 45, 49, 51, 52, 53, 54, 68, 111, 132, 134, 135, 156, 167, 225, 281, 308], "\u9078\u3070": [56, 125], "\u9078\u3073": [34, 252], "\u9078\u3076": [0, 125, 156, 177], "\u9078\u3079": 156, "\u9078\u3093": [51, 97, 125, 161], "\u9078\u629e": [0, 12, 41, 49, 50, 51, 68, 134, 156, 180, 188, 196, 201], "\u907f\u3051\u308b": [41, 43, 149, 156], "\u90e8\u5206": [11, 14, 31, 42, 43, 49, 50, 51, 52, 53, 54, 56, 95, 156, 180, 195, 197, 205, 208, 209, 224, 225, 237, 301, 311], "\u90fd\u6c11": [299, 301], "\u914d\u4e0b": [18, 41, 178], "\u914d\u5217": [11, 37, 39, 41, 42, 45, 47, 49, 51, 53, 54, 91, 95, 96, 108, 112, 134, 138, 139, 141, 142, 155, 156, 161, 162, 168, 169, 205, 206, 224, 254, 299, 305, 307, 308, 311], "\u914d\u5e03": [23, 24, 28, 29, 32, 33, 45, 47, 49], "\u914d\u7f6e": [12, 111, 227, 308], "\u91cd\u3044": [0, 52, 124, 156], "\u91cd\u304f": 301, "\u91cd\u306a\u3063": 48, "\u91cd\u306d": 56, "\u91cd\u307f": [22, 41, 42, 43, 44, 45, 47, 48, 52, 54, 111, 112, 155, 156, 202, 224, 245, 301, 304], "\u91cd\u307f\u3064\u304d": 49, "\u91cd\u307f\u4ed8\u304d": [41, 42, 43, 44, 45, 49, 156], "\u91cd\u307f\u4ed8\u3051": [156, 301], "\u91cd\u8907": [41, 43, 44, 49, 50, 51, 54], "\u91cd\u8981": [0, 10, 12, 14, 27, 31, 50, 56, 61, 91, 92, 106, 111, 156, 161, 168, 177, 226, 245, 246, 247, 262, 292, 309, 310], "\u91cd\u8996": [226, 301], "\u91ce\u9996": 49, "\u91cf\u6307": 244, "\u91cf\u8a08": 36, "\u9234\u6728": 47, "\u932f\u8aa4": 0, "\u9577\u3044": [45, 50, 51, 74, 156], "\u9577\u3044\u5f0f": [43, 44], "\u9577\u3044\u65b9": 44, "\u9577\u304f": [43, 51, 156], "\u9577\u3055": [47, 53, 176, 305], "\u9577\u3059\u304e\u308b": [48, 52], "\u9577\u5185": [49, 50], "\u9577\u5185\u6b69": [49, 50], "\u9577\u578b": [112, 141], "\u9577\u65b9\u5f62": 39, "\u9577\u6642\u9593": [153, 173], "\u9577\u671f\u9593": 54, "\u9577\u751f\u304d": 161, "\u9577\u91ce": 49, "\u9577\u97f3": [44, 53, 231, 232, 233, 234, 235, 258, 259], "\u9589\u3058": [39, 42, 44, 51, 163, 254], "\u9589\u3058\u308b": [36, 39, 42, 50, 254], "\u958b\u3044": [37, 39, 42, 43, 48, 50, 52, 53, 109, 120, 124, 163, 173, 224, 229], "\u958b\u304b": [42, 50, 52, 124, 142, 173], "\u958b\u304d": [18, 61, 142, 152, 163, 281], "\u958b\u304f": [39, 42, 47, 50, 51, 52, 61, 229, 281, 308], "\u958b\u304f\u969b": 47, "\u958b\u3051": [42, 47, 50], "\u958b\u3051\u308b": 47, "\u958b\u59cb": [14, 39, 41, 42, 43, 48, 49, 114, 164, 176, 188, 191, 192, 205, 206, 208, 209, 228], "\u958b\u653e": [43, 50, 52, 54, 106, 128], "\u958b\u7528": 45, "\u958b\u767a": [0, 3, 6, 7, 8, 12, 21, 22, 23, 24, 25, 28, 30, 32, 33, 47, 48, 49, 50, 51, 52, 54, 56, 93], "\u9593groonga": 106, "\u9593\u9055\u3063": [39, 42, 44, 47, 48, 49, 50, 51, 53, 173, 251, 252], "\u9593\u9694": [41, 54], "\u95a2\u308f\u3089": [45, 156, 176], "\u95a2\u4fc2": [11, 13, 22, 40, 41, 47, 51, 111, 114, 164, 224, 304, 305, 311], "\u95a2\u4fc2\u5f0f": 3, "\u95a2\u6570": [11, 22, 36, 37, 40, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 57, 58, 74, 81, 85, 102, 111, 140, 141, 142, 167, 175, 180, 183, 185, 186, 188, 189, 190, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 208, 209, 210, 211, 212, 219, 221, 222, 245, 246, 247, 286, 315], "\u95a2\u9023": [0, 2, 3, 10, 12, 21, 22, 24, 25, 28, 31, 32, 39, 40, 41, 44, 45, 47, 48, 49, 50, 51, 52, 54, 81, 90, 121, 124, 149, 168, 173, 175, 180, 197, 223, 228, 229, 244, 252, 253, 281, 283, 296, 303, 304, 305, 308], "\u95b2\u89a7": 312, "\u95be\u5024": [22, 31, 39, 49, 50, 156, 159, 175, 299, 300], "\u9632\u304e": [48, 52, 53, 163], "\u9632\u3050": [125, 137, 225, 247], "\u9632\u3052": 41, "\u9632\u6b62": 43, "\u964d\u5411\u3051": 124, "\u964d\u9806": [134, 156, 159, 180, 286, 308], "\u9650\u3089": 10, "\u9650\u308a": [11, 42, 43, 45, 52, 89, 123, 167, 299, 301], "\u9650\u5b9a": [41, 173, 244], "\u9650\u6587": [39, 161], "\u9664\u3044": [43, 132, 137, 176, 196, 205, 206, 208, 209, 231, 232, 233, 234, 235, 274], "\u9664\u304f": [47, 135, 156], "\u9664\u53bb": [37, 43, 48, 51, 111, 165, 194, 261, 272, 274], "\u9664\u5916": [41, 42, 53, 122, 274], "\u9664\u7b97": [49, 52, 53], "\u9665\u3063": 47, "\u968e\u5c64": 11, "\u968f\u6642": 125, "\u969b\u7b49": 54, "\u969c\u5bb3": [52, 54], "\u96a0\u3055": 53, "\u96a3\u308a\u5408\u3063": 264, "\u96a3\u63a5": [0, 44, 156, 224], "\u96c5\u5e83": 49, "\u96c6\u307e\u3063": 306, "\u96c6\u307e\u308a": [156, 180], "\u96c6\u3081": [111, 306], "\u96c6\u3081\u308b": 111, "\u96c6\u5408": [41, 43, 44, 47, 87, 91, 142, 156, 223, 244], "\u96c6\u8a08": [22, 41, 43, 44, 50, 156, 306], "\u96e2\u308c": [44, 51, 225, 315], "\u96e3\u3057\u3044": [0, 54], "\u96fb\u8a71": [42, 275], "\u9759\u7684": [3, 22, 41, 43, 44, 47, 48, 49, 50, 51, 52, 57, 94, 175, 178, 308], "\u975eascii": [264, 265, 266, 267, 268, 275, 279, 280], "\u975e\u308f": 299, "\u975e\u308f\u304b\u3061": 301, "\u975e\u4e92": [43, 47, 48, 49, 50, 51, 52, 111], "\u975e\u4e92\u63db": [39, 49, 50], "\u975e\u5168": 111, "\u975e\u516c\u958b": 12, "\u975e\u5206": 156, "\u975e\u5e38": [41, 42, 43, 44, 47, 51, 54, 106, 156, 244, 245, 246, 247, 292], "\u975e\u63a8": [39, 41, 44, 45, 47, 48, 49, 50, 51, 52, 85, 109, 135, 151, 156, 158, 161, 175, 188, 232, 233, 234, 235, 236, 258, 259, 284], "\u975e\u63a8\u5968": [47, 50], "\u975e\u7ba1": 42, "\u975e\u81ea": [51, 141], "\u975e\u81ea\u7acb": [231, 232, 233, 234, 235, 274], "\u975e\u81ea\u7acb\u8a9e": [231, 232, 233, 234, 235, 274], "\u975e\u82f1": 18, "\u975e\u8ca0": 111, "\u9762\u5012": [43, 44], "\u97f3\u3068": 53, "\u9805\u76ee": [36, 41, 42, 43, 44, 50, 52, 53, 54, 58, 108, 115, 116, 117, 156, 161, 171, 177, 292, 296, 309], "\u9806\u4f4d": [42, 286], "\u9806\u5e8f": [41, 42, 43, 44, 45, 51, 53, 132, 134, 135, 156, 162, 301, 308], "\u9806\u6b21": [174, 175, 298, 308], "\u9806\u756a": [43, 134, 135, 156, 175, 203, 224, 225, 301, 308], "\u9813\u632b": 56, "\u9818\u57df": [31, 41, 43, 47, 49, 53, 54, 104, 111, 141, 315], "\u982d\u6587": 298, "\u982d\u8f9e": [53, 254], "\u983b\u51fa": [42, 50], "\u983b\u5ea6": [41, 50, 52, 159, 165], "\u983b\u7e41": [31, 42, 52], "\u9855\u8457": 264, "\u985e\u3059\u308b": 53, "\u985e\u4f3c": [11, 45, 47, 48, 49, 52, 53, 54, 159, 197, 202, 223], "\u985e\u4f3c\u5ea6": 52, "\u985e\u7d39": 301, "\u985e\u7fa9": 156, "\u9867\u307f": 56, "\u98df\u3044\u9055\u3063": 173, "\u98df\u3079": [257, 258, 259], "\u99c4\u76ee": 10, "\u9ad8\u3044": [0, 45, 53, 94, 106, 108, 111, 156, 159, 177, 180, 262, 308], "\u9ad8\u3044\u9806": 308, "\u9ad8\u304f": [50, 91, 111, 246, 301, 310], "\u9ad8\u307e\u3063": 0, "\u9ad8\u3081\u308b": 111, "\u9ad8\u5ea6": [223, 224, 254], "\u9ad8\u6a5f": [0, 11], "\u9ad8\u7cbe": 0, "\u9ad8\u901f": [0, 11, 36, 39, 41, 42, 45, 46, 48, 51, 53, 54, 56, 87, 94, 111, 132, 134, 135, 156, 161, 188, 189, 224, 225, 239, 244, 245, 247, 254, 277, 291, 292, 307, 308], "\u9b3c\u96f2": [50, 51, 52], "\u9bae\u5ea6": 226, "\u9df2\u7530": 48, "\u9df2\u7530\u57fa": 48, "\u9ed2\u3044\u70b9": 239, "\ufe63\uff0d": [231, 232, 233, 234, 235, 258, 259], "\uff01\"": [41, 45, 156], "\uff01:": 31, "\uff01\u300d": [132, 134, 135, 156, 224, 225], "\uff01\u3057": 2, "\uff01\uff08": 17, "\uff01\uff09": [250, 251], "\uff01\uff1f": 272, "\uff08,": 308, "\uff08-": [156, 308], "\uff08=": [34, 94, 117, 137, 156, 158, 171], "\uff08@": [37, 39], "\uff08age": 161, "\uff08and": 223, "\uff08ci": 21, "\uff08document": [49, 247], "\uff08eol": [50, 52, 53], "\uff08gnu": 31, "\uff08groonga": 50, "\uff08homebrew": 12, "\uff08http": [24, 25, 28, 32, 296], "\uff08kana": 240, "\uff08least": 107, "\uff08longest": [39, 225], "\uff08markdown": 12, "\uff08messagepack": 31, "\uff08n": 53, "\uff08nginx": 296, "\uff08node": 21, "\uff08normalization": [41, 44, 53, 54, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259], "\uff08not": 223, "\uff08or": 223, "\uff08perl": 177, "\uff08personal": [22, 23], "\uff08pid": 228, "\uff08piro": [49, 51], "\uff08romaji": 240, "\uff08rroonga": 50, "\uff08ruby": 21, "\uff08score": 156, "\uff08term": [245, 246, 247], "\uff08textile": 12, "\uff08tf": 245, "\uff08therubyracer": 12, "\uff08tokenbigram": 301, "\uff08tokenmecab": 301, "\uff08true": 305, "\uff08truncate": 173, "\uff08world": 282, "\uff08\u300c": [230, 301], "\uff08\u3064\u307e\u308a": [124, 149], "\uff08\u3069": 156, "\uff08\u307b\u307c": 156, "\uff08\u307e\u3060": 53, "\uff08\u30ad\u30fc": 50, "\uff08\u4f8b": [50, 53], "\uff08\uff1d": 248, "\uff09.": 45, "\uff09:": [154, 228, 299], "\uff09\u3001": [12, 245, 246, 247, 254, 299], "\uff09\u3002": [12, 44, 50, 53, 228, 301, 308], "\uff09\u300d": [90, 272], "\uff09\u304b": 34, "\uff09\u307e\u305f": [138, 168, 224, 225], "\uff09\uff08": [111, 161], "\uff11\u3064": [9, 18, 112], "\uff11\u5bfe": 9, "\uff12\u3061": 56, "\uff12\u3064": [18, 42, 315], "\uff13\u3064": [43, 44, 156, 282], "\uff1a\u300c": 53, "\uff1b[": 12, "\uff1f]": 272, "\uff1f\u300c": 272, "\uff1f\u300d": [111, 306], "\uff1f\uff09": [50, 156], "\uff4d\uff59\uff53\uff51\uff4c": [191, 192, 193], "\uff65\"": [231, 232, 233, 234, 235, 258, 259], "\uffef\"": 277, "\ufff0\"": [275, 277], "\ufffecrch": 168, "\ufffetext": 168}, "titles": ["1. Groonga\u306e\u7279\u5fb4", "6. \u30af\u30e9\u30a4\u30a2\u30f3\u30c8", "3. \u30b3\u30df\u30e5\u30cb\u30c6\u30a3", "12. Groonga\u3078\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5", "12.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831", "12.3.2. \u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5", "GNU Autotools\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5", "12.3.2.1. GNU/Linux\u307e\u305f\u306fUnix\u4e0a\u3067CMake\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5", "12.3.2.2. Windows\u4e0a\u3067CMake\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5", "12.3.3. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3", "12.3.4. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd", "12.3.5. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe", "12.3.7. \u30ea\u30ea\u30fc\u30b9\u624b\u9806", "12.3.1. \u30ea\u30dd\u30b8\u30c8\u30ea", "12.3.8. \u30c6\u30b9\u30c8\u65b9\u6cd5", "12.2. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u95a2\u9023\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5", "12.2.3. C API", "12.2.2. \u56fd\u969b\u5316", "12.2.1. \u5c0e\u5165", "12.1. \u30d0\u30b0\u30ec\u30dd\u30fc\u30c8\u306e\u9001\u308a\u65b9", "11. \u958b\u767a", "11.1. Travis CI", "Groonga \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8", "2. \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb", "2.5. AlmaLinux", "2.6. Amazon Linux", "CentOS", "2.8. \u305d\u306e\u4ed6: CMake\u3092\u4f7f\u3063\u3066\u30d3\u30eb\u30c9", "2.3. Debian GNU/Linux", "2.7. Docker", "2.2. macOS", "\u305d\u306e\u4ed6", "2.4. Ubuntu", "2.1. Windows", "9. \u5236\u9650\u4e8b\u9805", "\u304a\u77e5\u3089\u305b", "\u30d0\u30fc\u30b8\u30e7\u30f30\u7cfb\u306e\u304a\u77e5\u3089\u305b", "\u30d0\u30fc\u30b8\u30e7\u30f31.0\u7cfb\u306e\u304a\u77e5\u3089\u305b", "\u30d0\u30fc\u30b8\u30e7\u30f31.1\u7cfb\u306e\u304a\u77e5\u3089\u305b", "News - 1.2.x", "\u304a\u77e5\u3089\u305b - 1.3\u7cfb", "\u304a\u77e5\u3089\u305b - 10\u7cfb", "\u304a\u77e5\u3089\u305b - 11\u7cfb", "\u304a\u77e5\u3089\u305b - 12\u7cfb", "\u304a\u77e5\u3089\u305b - 13\u7cfb", "\u304a\u77e5\u3089\u305b - 14\u7cfb", "\u304a\u77e5\u3089\u305b - 15\u7cfb", "\u304a\u77e5\u3089\u305b - 2\u7cfb", "\u304a\u77e5\u3089\u305b - 3\u7cfb", "\u304a\u77e5\u3089\u305b - 4\u7cfb", "\u304a\u77e5\u3089\u305b - 5\u7cfb", "\u304a\u77e5\u3089\u305b - 6\u7cfb", "\u304a\u77e5\u3089\u305b - 7\u7cfb", "\u304a\u77e5\u3089\u305b - 8\u7cfb", "\u304a\u77e5\u3089\u305b - 9\u7cfb", "News in Senna period", "13. Groonga\u306e\u8d77\u6e90\u4ee5\u524d\u306b\u3064\u3044\u3066", "7. \u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb", "7.19. \u30a8\u30a4\u30ea\u30a2\u30b9", "7.26. API", "7.26.2. \u5168\u4f53\u8a2d\u5b9a", "7.26.4. grn_cache
", "7.26.5. grn_column
", "7.26.6. grn_command_version
", "7.26.7. grn_content_type
", "7.26.8. grn_ctx
", "7.26.9. grn_db
", "7.26.10. grn_encoding
", "7.26.11. grn_expr", "7.26.12. grn_geo
", "7.26.13. grn_hook
", "7.26.14. grn_ii
", "7.26.15. grn_index_cursor
", "7.26.16. grn_info
", "7.26.17. grn_inspect
", "7.26.18. grn_match_escalation
", "7.26.19. grn_obj
", "7.26.20. grn_proc
", "7.26.21. grn_search
", "7.26.22. grn_table
", "7.26.23. grn_table_cursor
", "7.26.24. grn_thread_*
", "7.26.25. grn_type
", "7.26.26. grn_user_data
", "7.26.1. \u6982\u8981", "7.26.3. Plugin", "7.12. Cast", "7.6. \u30ab\u30e9\u30e0", "7.6.3.1. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0", "7.6.2.3. \u64ec\u4f3c\u30ab\u30e9\u30e0", "7.6.2.1. \u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0", "7.6.2.2. \u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0", "7.3. \u30b3\u30de\u30f3\u30c9", "7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3", "7.3.2. \u4e26\u5217\u5b9f\u884c", "7.3.3. \u51fa\u529b\u5f62\u5f0f", "7.3.4. \u30c8\u30ec\u30fc\u30b9\u30ed\u30b0\u306e\u51fa\u529b", "7.3.5. \u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8", "7.3.6. \u30ea\u30af\u30a8\u30b9\u30c8ID", "7.3.7. \u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8", "7.3.8. \u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9", "7.3.8.3.3. -6: GRN_INPUT_OUTPUT_ERROR
", "7.3.8.3.5. -22: GRN_INVALID_ARGUMENT
", "7.3.8.3.2. -3: GRN_NO_SUCH_FILE_OR_DIRECTORY
", "7.3.8.3.4. -13: GRN_NOT_ENOUGH_SPACE
", "7.3.8.3.1. -2: GRN_OPERATION_NOT_PERMITTED
", "7.3.8.3.6. -34: GRN_RESOURCE_DEADLOCK_AVOIDED
", "7.3.9. cache_limit
", "7.3.10. check
", "7.3.11. clearlock
", "7.3.12. column_copy
", "7.3.13. column_create
", "7.3.14. column_list
", "7.3.15. column_remove
", "7.3.16. column_rename
", "7.3.17. config_delete
", "7.3.18. config_get
", "7.3.19. config_set
", "7.3.20. database_unmap
", "7.3.21. define_selector
", "7.3.22. defrag
", "7.3.23. delete
", "7.3.24. dump
", "7.3.25. index_column_diff
", "7.3.26. io_flush
", "7.3.27. load
", "7.3.28. lock_acquire
", "7.3.29. lock_clear
", "7.3.30. lock_release
", "7.3.31. log_level
", "7.3.32. log_put
", "7.3.33. log_reopen
", "7.3.34. logical_count
", "7.3.35. logical_parameters
", "7.3.36. logical_range_filter
", "7.3.37. logical_select
", "7.3.38. logical_shard_list
", "7.3.39. logical_table_remove
", "7.3.40. normalize
", "7.3.41. normalizer_list
", "7.3.42. object_exist
", "7.3.43. object_inspect
", "7.3.44. object_list
", "7.3.45. object_remove
", "7.3.46. plugin_register
", "7.3.47. plugin_unregister
", "7.3.48. query_expand
", "7.3.49. quit
", "7.3.50. range_filter
", "7.3.51. reference_acquire
", "7.3.52. reference_release
", "7.3.53. register
", "7.3.54. reindex
", "7.3.55. request_cancel
", "7.3.56. ruby_eval
", "7.3.57. schema
", "7.3.58. select
", "7.3.59. shutdown
", "7.3.60. status
", "7.3.61. suggest
", "7.3.62. table_copy
", "7.3.63. table_create
", "7.3.64. table_list
", "7.3.65. table_remove
", "7.3.66. table_rename
", "7.3.67. table_tokenize
", "7.3.68. thread_dump
", "7.3.69. thread_limit
", "7.3.70. tokenize
", "7.3.71. tokenizer_list
", "7.3.72. truncate
", "7.18. \u8a2d\u5b9a", "7.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb", "7.1.1. grndb
", "7.1.2. grnslap", "7.1.3. groonga
\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb", "7.1.4. groonga-benchmark", "7.1.5. groonga-httpd", "7.1.6. Groonga HTTP\u30b5\u30fc\u30d0\u30fc", "7.1.7. groonga-suggest-create-dataset", "7.1.8. groonga-suggest-httpd
", "7.1.9. groonga-suggest-learner", "7.15. \u95a2\u6570", "7.15.1. between
", "7.15.2. cast_loose
", "7.15.3. edit_distance", "7.15.4. escalate
", "7.15.5. fuzzy_search
", "7.15.6. geo_distance
", "7.15.7. geo_in_circle", "7.15.8. geo_in_rectangle", "7.15.9. highlight
", "7.15.10. highlight_full
", "7.15.11. highlight_html
", "7.15.12. html_untag
", "7.15.13. in_records
", "7.15.14. in_values
", "7.15.15. language_model_vectorize
", "7.15.16. math_abs
", "7.15.17. now", "7.15.18. number_classify
", "7.15.19. prefix_rk_search
", "7.15.20. query
", "7.15.21. query_parallel_or
", "7.15.22. rand", "7.15.23. snippet
", "7.15.24. snippet_html
", "7.15.25. string_length
", "7.15.26. string_slice
", "7.15.27. string_substring
", "7.15.28. sub_filter
", "7.15.29. time_classify_day
", "7.15.30. time_classify_day_of_week
", "7.15.31. time_classify_hour
", "7.15.32. time_classify_minute
", "7.15.33. time_classify_month
", "7.15.34. time_classify_second
", "7.15.35. time_classify_week
", "7.15.36. time_classify_year
", "7.15.37. vector_find
", "7.15.38. vector_new
", "7.15.39. vector_size
", "7.15.40. vector_slice
", "7.13. grn_expr", "7.13.1. \u30af\u30a8\u30ea\u30fc\u69cb\u6587", "7.13.2. \u30b9\u30af\u30ea\u30d7\u30c8\u69cb\u6587", "7.21. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9", "7.23. \u8a00\u8a9e\u30e2\u30c7\u30eb", "7.24. \u30ed\u30b0", "7.7. \u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc", "7.7.2.1. NormalizerAuto
", "7.7.2.2. NormalizerNFKC
", "7.7.2.3. NormalizerNFKC100
", "7.7.2.4. NormalizerNFKC121
", "7.7.2.5. NormalizerNFKC130
", "7.7.2.6. NormalizerNFKC150
", "7.7.2.7. NormalizerNFKC51
", "7.7.2.8. NormalizerTable
", "7.17. \u64cd\u4f5c\u65b9\u6cd5", "7.17.1. \u4f4d\u7f6e\u60c5\u5831\u691c\u7d22", "7.17.2. \u524d\u65b9\u4e00\u81f4RK\u691c\u7d22", "7.2. \u51fa\u529b", "7.10. \u30af\u30a8\u30ea\u30fc\u5c55\u958b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u4e00\u89a7", "7.10.1. QueryExpanderTSV", "7.14. \u6b63\u898f\u8868\u73fe", "7.11. \u30b9\u30b3\u30a2\u30e9\u30fc", "7.11.3.1. scorer_tf_at_most
", "7.11.3.2. scorer_tf_idf
", "7.22. \u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0", "7.20. \u30b5\u30b8\u30a7\u30b9\u30c8", "7.20.2. \u88dc\u5b8c", "7.20.3. \u88dc\u6b63", "7.20.1. \u306f\u3058\u3081\u306b", "7.20.4. \u63d0\u6848", "7.5. \u30c6\u30fc\u30d6\u30eb", "7.9.1. \u6982\u8981", "7.9. \u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc", "7.9.2. TokenFilterNFKC
", "7.9.3. TokenFilterNFKC100
", "7.9.4. TokenFilterNFKC150
", "7.9.5. TokenFilterStem
", "7.9.6. TokenFilterStopWord
", "7.8.1. \u6982\u8981", "7.8. \u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc", "7.8.2. TokenBigram
", "7.8.3. TokenBigramIgnoreBlank
", "7.8.4. TokenBigramIgnoreBlankSplitSymbol
", "7.8.5. TokenBigramIgnoreBlankSplitSymbolAlpha
", "7.8.6. TokenBigramIgnoreBlankSplitSymbolAlphaDigit
", "7.8.7. TokenBigramSplitSymbol
", "7.8.8. TokenBigramSplitSymbolAlpha
", "7.8.9. TokenBigramSplitSymbolAlphaDigit
", "7.8.10. TokenDelimit
", "7.8.11. TokenDelimitNull
", "7.8.12. TokenMecab
", "7.8.13. TokenNgram
", "7.8.14. TokenPattern
", "7.8.15. TokenRegexp
", "7.8.16. TokenTable
", "7.8.17. TokenTrigram
", "7.8.18. TokenUnigram
", "7.25. \u30c1\u30e5\u30fc\u30cb\u30f3\u30b0", "7.4. \u30c7\u30fc\u30bf\u578b", "7.16. \u30a6\u30a3\u30f3\u30c9\u30a6\u95a2\u6570", "7.16.1. record_number
", "7.16.2. window_count
", "7.16.3. window_rank
", "7.16.4. window_record_number
", "7.16.5. window_sum
", "5. \u30b5\u30fc\u30d0\u30fc", "5.3. GQTP", "5.2. HTTP", "5.2.1. \u6bd4\u8f03", "5.2.2. groonga", "5.2.3. groonga-httpd", "5.4. Memcached\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb", "5.1. \u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8", "8. \u4ed5\u69d8", "8.1. GQTP", "8.2. \u691c\u7d22", "10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0", "10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b", "10.2. \u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u89e3\u6790\u65b9\u6cd5", "10.3. mmap Cannot allocate memory\u30a8\u30e9\u30fc\u3092\u56de\u907f\u3059\u308b\u306b\u306f", "4. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb", "4.3. \u3044\u308d\u3044\u308d\u306a\u30c7\u30fc\u30bf\u306e\u4fdd\u5b58", "4.5. \u30c9\u30ea\u30eb\u30c0\u30a6\u30f3", "4.6. \u30bf\u30b0\u691c\u7d22\u30fb\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d", "4.1. \u57fa\u672c\u7684\u306a\u64cd\u4f5c", "4.9. \u5168\u6587\u691c\u7d22\u7528\u306e\u8a9e\u5f59\u8868\u306e\u4f5c\u6210", "4.7. match_columns\u30d1\u30e9\u30e1\u30fc\u30bf", "4.10. \u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210", "4.2. \u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9", "4.8. \u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22", "4.11. \u30af\u30a8\u30ea\u62e1\u5f35", "4.4. \u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6"], "titleterms": {"\":": [183, 191, 193, 196], "\"]": 45, "\"default": 191, "\"html": 191, "\"normalizer": 191, "\"normalizers": 191, "\"option": [183, 196], "\"sequential": [191, 193], "\"}": [183, 191, 196], "()": [11, 45], "(geopoint": 311, "(v": 11, "--": 94, "-apache": 31, "-arrow": 31, "-benchmark": 176, "-clear": 173, "-command": 93, "-compose": 29, "-create": 179, "-dataset": 179, "-dcmake": 27, "-default": 31, "-dgrn": 27, "-enable": 31, "-encoding": 31, "-escalation": 31, "-flags": 173, "-force": 173, "-g": 27, "-gqtp": 296, "-help": 31, "-http": 296, "-httpd": [177, 180, 181, 294, 296], "-later": 45, "-learner": [180, 181], "-level": 173, "-localstatedir": 31, "-lock": 173, "-log": [31, 173], "-lz4": 31, "-match": 31, "-message": 31, "-munin": 31, "-n": 94, "-pack": 31, "-package": 31, "-path": [31, 173], "-platform": 31, "-plugins": 31, "-prefix": 31, "-server": 296, "-since": 173, "-suggest": [179, 180, 181], "-target": 173, "-threshold": 31, "-truncate": 173, "-version": 93, "-with": 31, "-workers": 94, "-zlib": 31, ".[\"": 45, ".cpp": 45, ".edit": [17, 18], ".group": [132, 134, 135, 156], ".max": 281, ".maxfileperproc": 281, ".overcommit": 281, ".po": [17, 18], ".sort": [132, 134, 135, 156], "/linux": [7, 27, 28], "/rpm": 45, "10": 41, "11": 42, "12": 43, "13": 44, "14": 45, "15": 46, "2\u7cfb": 47, "3\u7cfb": 48, "4\u7cfb": 49, "5\u7cfb": 50, "6\u7cfb": 51, "7\u7cfb": 52, "8\u7cfb": 53, "9\u7cfb": 54, ":*": 142, ":fix": 142, ":update": 12, ":var": 142, ":version": 12, "=doc": 18, "=encoding": 31, "=message": 31, "=number": 31, "=path": 31, "=paths": [27, 31], "=platform": 31, "[\"": 45, "[$": [132, 134, 135, 156], "[column": 45, "[gqtp": 45, "[index": 45, "[language": 45, "[logical": 45, "[status": 45, "_*": 81, "_abs": 198, "_acquire": [126, 149], "_alphabet": [231, 235, 275], "_and": [231, 232, 233, 234, 235, 258, 259], "_apache": 27, "_api": 11, "_argument": 102, "_array": 141, "_arrow": 27, "_at": 246, "_auto": 177, "_avoided": 106, "_base": 177, "_bfloat": 141, "_blank": 275, "_border": [132, 134, 135, 137, 183], "_bu": [231, 232, 233, 234, 235, 258, 259], "_buffer": 141, "_cache": [61, 177], "_calc": [135, 156], "_cancel": 153, "_case": [231, 232, 233, 234, 235, 258, 259], "_chunk": 141, "_chunks": 141, "_circle": 189, "_class": [191, 193, 274], "_classify": [200, 211, 212, 213, 214, 215, 216, 217, 218], "_clear": 127, "_close": 191, "_code": 228, "_column": [45, 62, 123, 141, 165, 195], "_columns": [134, 135, 156, 202, 203, 310], "_command": 63, "_compress": 141, "_config": 31, "_content": 64, "_copy": [110, 160], "_count": [132, 149, 281, 285], "_create": [45, 111, 161, 177], "_ctx": 65, "_cursor": [72, 80], "_dat": 254, "_data": 83, "_database": 177, "_day": [211, 212], "_db": 66, "_deadlock": 106, "_default": 94, "_delete": 115, "_di": [231, 232, 233, 234, 235], "_diff": [45, 123], "_digit": 275, "_directory": 103, "_distance": [156, 185, 188], "_dot": [45, 231, 232, 233, 234, 235, 258, 259], "_du": [231, 232, 233, 234, 235], "_dump": 166, "_encoding": 67, "_enough": 104, "_equal": 11, "_error": 101, "_errors": 125, "_escalation": [75, 135, 156], "_escape": [191, 192], "_eval": 154, "_exist": 140, "_expand": 146, "_expander": [135, 156, 202, 203], "_expansion": 156, "_expansions": 156, "_expr": [11, 68, 223], "_file": 103, "_filter": [45, 132, 134, 135, 141, 148, 155, 156, 210], "_filters": [142, 155, 161, 168], "_find": 219, "_flags": [135, 156], "_float": 141, "_flush": 124, "_form": 274, "_full": [141, 192], "_garbage": 141, "_generator": 141, "_geo": 69, "_get": 116, "_gu": [231, 232, 233, 234, 235], "_hash": [45, 122, 254], "_header": 112, "_hook": 70, "_hour": 213, "_html": [192, 193, 206], "_hyphen": [231, 232, 233, 234, 235, 258, 259], "_id": [123, 141, 228], "_idf": 247, "_ids": 125, "_id\u30ed\u30b0\u30d5\u30e9\u30b0": 45, "_ii": 71, "_in": [141, 189, 190], "_index": [72, 133, 134], "_indexes": 122, "_info": 73, "_information": 112, "_input": 101, "_inspect": [74, 141], "_install": [27, 31], "_invalid": 102, "_kana": [231, 232, 233, 234, 235, 258, 259], "_katakana": [231, 232, 233, 234, 235, 258, 259], "_key": [45, 46, 132, 134, 135, 137, 141, 254], "_keys": [132, 134, 135, 156], "_latin": [231, 235], "_length": [156, 207], "_level": [123, 129, 177], "_limit": [107, 135, 156, 167, 177], "_list": [112, 136, 139, 142, 162, 169], "_location": 275, "_log": [123, 177], "_loose": 184, "_map": 281, "_mark": [231, 232, 233, 234, 235, 258, 259], "_match": 75, "_max": [141, 156], "_memory": 281, "_method": 141, "_middle": [45, 231, 232, 233, 234, 235, 258, 259], "_minute": 214, "_mode": [191, 193, 202, 203], "_model": [45, 197], "_month": 215, "_most": 246, "_mruby": 27, "_n": [94, 141, 156, 180, 186, 205], "_name": [110, 114, 124, 126, 127, 128, 141, 149, 150, 152, 160, 164, 170, 192, 195, 197], "_new": 220, "_next": 141, "_no": [103, 254], "_not": [104, 105, 115, 117, 126, 128], "_number": [284, 287], "_o": [231, 232, 233, 234, 235], "_obj": 76, "_of": [141, 212], "_offset": [135, 156], "_open": 191, "_opened": 124, "_operation": 105, "_operator": [202, 203], "_or": [103, 115, 117, 126, 128, 183, 203], "_output": [101, 135, 156], "_pack": 31, "_parallel": 203, "_parameters": 133, "_pat": [45, 46, 254], "_path": [27, 31, 177, 180, 181], "_permitted": 105, "_physical": 141, "_plugins": 122, "_position": 141, "_prefix": [27, 31, 156], "_proc": 77, "_processes": 177, "_prolonged": [231, 232, 233, 234, 235, 258, 259], "_put": 130, "_query": 177, "_range": [45, 134], "_rank": 286, "_ratio": 156, "_raw": 141, "_reading": 274, "_record": 287, "_records": [122, 141, 156, 195], "_rectangle": 190, "_register": 144, "_release": [128, 149, 150], "_remove": [113, 137, 143, 163], "_rename": [114, 164], "_reopen": 131, "_resource": 106, "_results": 205, "_rk": 201, "_romaji": [231, 232, 233, 234, 235, 258, 259], "_schema": 122, "_search": [78, 187, 201], "_second": 216, "_section": 141, "_segment": 141, "_segments": 141, "_select": [11, 135], "_selector": 119, "_set": [117, 156], "_shard": 136, "_size": [45, 141, 221], "_slice": [208, 222], "_small": [231, 232, 233, 234, 235], "_sort": [135, 156], "_sortby": [135, 156], "_sound": [231, 232, 233, 234, 235, 258, 259], "_sounds": [231, 232, 233, 234, 235, 258, 259], "_source": [141, 275], "_space": 104, "_stamp": 228, "_statistics": 141, "_status": 228, "_string": [202, 203, 210], "_substring": 209, "_such": 103, "_sum": 288, "_symbol": [45, 231, 234, 235, 275], "_table": [11, 79, 80, 110, 122, 125, 132, 134, 135, 136, 137, 141, 156, 195], "_tag": [191, 193], "_tagn": [191, 192], "_target": [135, 156], "_tf": [246, 247], "_thread": 81, "_threshold": [135, 156], "_time": 228, "_to": [231, 232, 233, 234, 235, 258, 259], "_tokenize": [156, 165], "_tokenizer": 161, "_total": 141, "_trailing": [231, 232, 233, 234, 235], "_transposition": 156, "_type": [64, 82, 125, 141, 142, 161, 188, 298], "_types": [135, 156], "_unmanaged": 141, "_unmap": 118, "_unregister": 145, "_untag": 194, "_use": 141, "_user": 83, "_v": [231, 232, 233, 234, 235, 258, 259], "_value": [123, 141, 183, 196], "_values": [135, 156, 196], "_vector": 156, "_vectorize": [45, 197], "_version": [63, 93, 237], "_voiced": [231, 232, 233, 234, 235, 258, 259], "_week": [212, 217], "_weight": 141, "_with": [27, 156, 231, 235], "_wo": [231, 232, 233, 234, 235], "_workers": [94, 156], "_year": 218, "_zu": [231, 232, 233, 234, 235], "aarch": 45, "access": 177, "adjuster": 156, "algorithm": 260, "allocate": 303, "almalinux": 24, "amazon": [25, 45], "apache": [94, 96], "api": [16, 59], "approximate": 188, "archive": 32, "arg": 11, "arrow": [94, 96], "auto": 149, "autotools": 6, "avx": 45, "between": 183, "bigram": 311, "blogroonga": 12, "body": 95, "bookworm": 28, "bool": 282, "cache": [107, 132, 134, 135, 156], "calc": 135, "callback": 11, "candidate": 180, "cannot": 303, "cast": [86, 184], "centos": 26, "changes": 55, "check": [108, 173], "ci": 21, "clang": 14, "clearlock": 109, "clone": 17, "close": [191, 192], "cmake": [7, 8, 12, 18, 27], "column": [110, 111, 112, 113, 114, 141, 142, 155, 183, 191, 192, 201, 211, 246, 247], "columns": [125, 132, 134, 135, 156, 261], "command": [93, 155], "comments": 311, "condition": [186, 195], "config": [115, 116, 117], "configure": [6, 31], "contain": 11, "context": [45, 228], "cpu\u30b3\u30a2": 292, "cutter": 14, "data": [141, 181], "database": [118, 141, 180, 181], "db": 11, "deb": 45, "debian": [12, 28], "default": [93, 94, 161, 202, 203], "define": 119, "defrag": [45, 120], "delete": [45, 121], "delimiter": 272, "dependent": [137, 163], "desctipion": 179, "disable": 31, "docker": [12, 29], "domain": [112, 306], "drilldown": [135, 156], "drilldowns": [135, 156], "dump": 122, "each": 125, "edit": 185, "elapsed": 228, "ellipsoid": 188, "equal": 11, "escalate": 186, "exit": 179, "facebook": [2, 12], "features": 45, "files": [179, 181], "filter": [132, 134, 135, 156, 210], "flags": [111, 112, 132, 134, 135, 138, 142, 156, 161, 165, 168, 202, 203, 298], "float": [46, 282], "force": [137, 143], "freebsd": 281, "from": [110, 160, 181], "fuzzy": [156, 187], "generated": 141, "generator": [27, 45, 111, 112], "geo": [188, 189, 190], "geoindex": 311, "geopoint": [282, 311], "get": 180, "gnu": [6, 7, 27, 28], "gqtp": [9, 290, 296, 298], "greater": 11, "grn": [11, 45, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 94, 101, 102, 103, 104, 105, 106, 223], "grndb": 173, "grnslap": 174, "groonga": [0, 3, 4, 5, 6, 7, 8, 9, 11, 12, 17, 18, 22, 43, 44, 45, 55, 56, 94, 175, 176, 177, 178, 179, 180, 181, 293, 294, 296], "gzip": 292, "hashtags": 311, "hat": 12, "header": [95, 112, 115, 116, 117, 126, 128, 142, 155], "highlight": [191, 192, 193], "homebrew": [12, 30], "how": 290, "html": [17, 18, 191, 194], "http": [178, 241, 291, 296, 312], "https": 292, "id": [98, 112, 153], "ifexists": 125, "ignore": 275, "in": [55, 195, 196], "include": 274, "index": [45, 123, 141, 155, 165, 246, 247], "input": 125, "install": 31, "int": 282, "io": 124, "javascript": 315, "json": [45, 95, 96], "kern": 281, "key": [115, 116, 117, 156, 161], "keys": [135, 156], "keywordn": [191, 192], "label": [135, 156], "language": [45, 197], "lcov": 14, "learning": 181, "length": [208, 209], "less": 11, "level": 129, "lgpl": 45, "libmemcached": 14, "limit": [134, 135, 156], "linux": [25, 45, 281], "llama": 45, "load": [45, 125, 135, 156], "location": 188, "lock": [125, 126, 127, 128], "log": [129, 130, 131, 181], "logical": [132, 133, 134, 135, 136, 137], "longtext": 282, "loose": 275, "macos": [27, 30], "macports": 30, "make": [6, 31], "match": [135, 156, 202, 203, 310], "math": 198, "max": [107, 132, 134, 135, 137, 167, 183, 205], "memcached": 295, "memory": 303, "message": 228, "messagepack": 95, "min": [132, 134, 135, 137, 183], "mmap": 303, "mode": [11, 157, 165, 168, 195, 219], "model": 197, "mroonga": 0, "msys": 12, "name": [111, 112, 114, 123, 132, 134, 135, 140, 141, 143, 156, 161, 163, 164, 208], "near": 11, "new": [114, 164], "news": [39, 55], "nginx": 177, "nginx\u30ed\u30b0": 177, "nofile": 281, "none": 156, "normalize": 138, "normalized": 237, "normalizer": [138, 139, 155, 161, 168, 192], "normalizerauto": 230, "normalizernfkc": [45, 231, 232, 233, 234, 235, 236], "normalizers": 155, "normalizertable": 237, "normalizerxxx": 191, "not": 11, "now": 199, "nth": [208, 209], "null": 225, "number": 200, "object": [140, 141, 142, 143], "objects": 142, "of": [183, 196], "offset": [134, 135, 156], "only": [45, 124], "open": [191, 192], "option": [183, 196], "options": [208, 209], "or": [45, 191], "order": 134, "os": 43, "output": [125, 134, 135, 156], "package": 32, "path": [111, 112, 161], "pattern": 272, "period": 55, "phi": 45, "pid": 228, "pkg": 31, "plugin": [85, 144, 145, 155], "plugins": 155, "po": 18, "point": 188, "position": 123, "post": [132, 134, 135, 177, 292], "power": 156, "ppa": [12, 32], "prefix": [11, 201], "preset": 18, "proc": 142, "progress": [123, 228], "protocol": 298, "proxy": 177, "pull": 17, "query": [135, 146, 156, 201, 202, 203, 228, 298], "queryexpandertsv": 243, "quit": 147, "rake": 12, "rand": 204, "range": [112, 133, 142, 148], "rapidjson": 45, "record": [123, 284], "recover": 173, "rectangle": 188, "recursive": [124, 149, 150], "red": 12, "redmine": 10, "reference": [149, 150], "regexp": 208, "register": 151, "reindex": 152, "release": 12, "remove": [45, 231, 234, 235, 275], "report": 275, "request": [17, 153], "return": [187, 228], "ruby": 154, "run": 290, "schema": 155, "scope": 210, "score": 180, "scorer": [135, 156, 246, 247, 315], "script": 154, "select": [135, 156], "senna": [55, 56], "shard": [132, 134, 135, 137], "shorttext": 282, "shutdown": 157, "similar": 11, "size": 298, "slices": 156, "snippet": [205, 206], "sort": [122, 134, 135, 156], "sortby": [135, 156], "source": [111, 155], "sources": [112, 142], "sphere": 188, "sphinx": 17, "stage": [132, 134, 135, 156], "status": [158, 179, 298], "string": [138, 165, 168, 207, 208, 209], "sub": 210, "succeeded": [115, 117, 126, 128], "suffix": 11, "suggest": 159, "summary": [187, 257, 290], "synopstis": 179, "syntax": 187, "table": [45, 46, 111, 112, 114, 123, 125, 141, 142, 155, 156, 160, 161, 162, 163, 164, 165, 254], "tables": [122, 155], "target": [124, 126, 127, 128, 149, 150, 152, 170, 196, 198, 208, 209, 221, 237, 274], "text": [193, 197, 282], "thread": [166, 167], "threshold": 186, "time": [211, 212, 213, 214, 215, 216, 217, 218, 228, 282], "to": [110, 160, 290], "token": [123, 142, 155, 161, 168], "tokenbigram": 264, "tokenbigramignoreblank": 265, "tokenbigramignoreblanksplitsymbol": 266, "tokenbigramignoreblanksplitsymbolalpha": 267, "tokenbigramignoreblanksplitsymbolalphadigit": 268, "tokenbigramsplitsymbol": 269, "tokenbigramsplitsymbolalpha": 270, "tokenbigramsplitsymbolalphadigit": 271, "tokendelimit": 272, "tokendelimitnull": 273, "tokenfilternfkc": [45, 257, 258, 259], "tokenfilterstem": 260, "tokenfilterstopword": 261, "tokenize": 168, "tokenizer": [155, 168, 169], "tokenizers": 155, "tokenmecab": [231, 235, 274], "tokenngram": 275, "tokenpattern": 276, "tokenregexp": 277, "tokentable": 278, "tokentrigram": 279, "tokenunigram": 280, "tokyogeopoint": 282, "travis": 21, "true": [191, 193], "truncate": 170, "tsv": [95, 243], "twitter": [2, 10, 12], "type": [111, 112, 132, 134, 135, 141, 142, 155, 156, 180], "types": 155, "ubuntu": [12, 32], "uint": 282, "unicode": 237, "unify": [45, 231, 232, 233, 234, 235, 258, 259, 275], "unix": [7, 27], "usage": 187, "use": [134, 192, 274], "users": 311, "value": [116, 117, 132, 134, 135, 156, 161, 183, 187, 195, 196, 219], "values": 125, "vector": [141, 219, 220, 221, 222], "version": 231, "vm": 281, "wal": 45, "web": 18, "wgs": 282, "width": 205, "window": [132, 134, 135, 156, 285, 286, 287, 288], "windows": [8, 12, 27, 33], "worker": 177, "xml": 95, "zip": 33, "}]": [132, 134, 135, 156], "\u3042\u3044\u307e\u3044": 156, "\u3042\u3052\u308b": 301, "\u3042\u308a": [224, 225], "\u3042\u308b": [45, 311], "\u3044\u304f": 10, "\u3044\u304f\u3064\u304b": 45, "\u3044\u308b": [137, 163, 239], "\u3044\u308d\u3044\u308d": 305, "\u3046\u307e\u304f": 10, "\u304a\u304f": 10, "\u304a\u3055\u3089\u3044": 10, "\u304a\u3088\u3073": [27, 31], "\u304a\u6c17": 311, "\u304a\u77e5\u3089": [35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "\u304b\u3082": 45, "\u304b\u3089": [6, 7, 8, 10, 24, 25, 28, 30, 31, 32, 33, 43, 44, 45, 180, 240], "\u304c\u3063": 310, "\u3053\u3061\u3089": 10, "\u3053\u3068": [12, 45], "\u3054\u3068": [94, 310], "\u3055\u307e\u3056\u307e\u306a": 315, "\u3057\u308c": 45, "\u3059\u308b": [5, 6, 7, 8, 10, 12, 14, 18, 19, 91, 94, 99, 111, 131, 137, 177, 181, 250, 251, 253, 301, 303, 306, 310], "\u305d\u3057": 56, "\u305d\u306e": [27, 31, 244], "\u305f\u3044": 12, "\u305f\u3081": [10, 11, 135, 156], "\u3060\u3051": [10, 12, 91], "\u3065\u3051": 93, "\u3066\u308b": 311, "\u3067\u304d": [137, 163, 282], "\u3067\u304d\u308b": [10, 11, 94], "\u3068\u3044\u3046": 142, "\u3068\u304d": 45, "\u3068\u3057\u3066": [46, 282], "\u3068\u308a": 10, "\u306a\u3044": [10, 45, 137, 163, 282], "\u306a\u304b\u3063": 45, "\u306a\u3057": [225, 292], "\u306b\u3064\u3044\u3066": 56, "\u306b\u3088\u308b": [208, 306, 310, 313], "\u306b\u5bfe\u3059\u308b": 310, "\u306b\u95a2\u3059\u308b": 282, "\u306e\u306b": 301, "\u306e\u307f": 14, "\u306f\u3058\u3081": 252, "\u3078\u3068": 10, "\u307e\u305f": [7, 27, 310], "\u307e\u305f\u3050": 310, "\u307e\u3067": [43, 44], "\u307e\u3068\u3081": 12, "\u3084\u3081": 43, "\u3084\u308a": 10, "\u3084\u308b": 12, "\u3088\u3046": [250, 251, 253], "\u308c\u308b": 45, "\u30a2\u30af\u30bb\u30b9\u30ed\u30b0": 292, "\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9": 292, "\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": 12, "\u30a2\u30f3\u30ab\u30fc": 244, "\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb": 12, "\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": 9, "\u30a4\u30e1\u30fc\u30b8": [12, 29], "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [6, 8, 14, 17, 18, 23, 27, 243], "\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": 11, "\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8": 56, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [34, 45, 111, 226, 244, 307, 310], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0": [45, 87, 88, 111, 308], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb": 161, "\u30a4\u30f3\u30dd\u30fc\u30c8": 12, "\u30a6\u30a3\u30f3\u30c9\u30a6": [132, 134, 135, 156, 283], "\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8": 12, "\u30a8\u30a4\u30ea\u30a2\u30b9": 58, "\u30a8\u30b9\u30b1\u30fc\u30d7": [224, 244], "\u30a8\u30e9\u30fc": [45, 95, 303], "\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8": 302, "\u30a8\u30f3\u30c8\u30ea\u30fc": 45, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [142, 242], "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb": 225, "\u30aa\u30d7\u30b7\u30e7\u30f3": [27, 94, 174, 175, 176, 179, 181, 231, 235], "\u30ab\u30b9\u30b1\u30fc\u30c9": 121, "\u30ab\u30d0\u30ec\u30c3\u30b8": 14, "\u30ab\u30e9\u30e0": [34, 45, 87, 89, 110, 111, 132, 134, 135, 141, 156, 163, 188, 306, 308, 310], "\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 310, "\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2": 0, "\u30ad\u30e3\u30b9\u30c8": 45, "\u30ad\u30e3\u30c3\u30b7\u30e5": [132, 134, 135, 156, 177], "\u30ad\u30fc": [45, 46], "\u30ad\u30fc\u30ef\u30fc\u30c9": [301, 311], "\u30af\u30a8\u30ea": [0, 11, 314], "\u30af\u30a8\u30ea\u30fc": [156, 177, 224, 242], "\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5": 177, "\u30af\u30a8\u30ea\u30fc\u30ed\u30b0": 228, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8": 1, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9": 175, "\u30af\u30e9\u30b9": 244, "\u30af\u30ed\u30fc\u30f3": 18, "\u30b0\u30eb\u30fc\u30d7": [224, 225, 244], "\u30b1\u30fc\u30b9": [137, 163], "\u30b3\u30de\u30f3\u30c9": [92, 94, 171, 173, 175, 248, 308, 312], "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3": [93, 292], "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb": 176, "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3": [175, 180, 241], "\u30b3\u30df\u30e5\u30cb\u30c6\u30a3": 2, "\u30b3\u30e1\u30f3\u30c8": 311, "\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8": [3, 15], "\u30b4\u30df\u30a8\u30f3\u30c8\u30ea\u30fc": 45, "\u30b5\u30a4\u30ba": 111, "\u30b5\u30b8\u30a7\u30b9\u30c8": [180, 249], "\u30b5\u30dd\u30fc\u30c8": [43, 45, 46, 94], "\u30b5\u30f3\u30d7\u30eb": [174, 176], "\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf": [224, 225], "\u30b5\u30fc\u30d0": [0, 298, 312], "\u30b5\u30fc\u30d0\u30fc": [178, 289, 296], "\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8": 296, "\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9": 175, "\u30b7\u30b9\u30c6\u30e0": [19, 311], "\u30b7\u30d5\u30c8": 225, "\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0": 248, "\u30b8\u30aa\u30b5\u30fc\u30c1": 307, "\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0": [90, 111], "\u30b9\u30af\u30ea\u30d7\u30c8": 225, "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb": 176, "\u30b9\u30b3\u30a2\u30e9\u30fc": 245, "\u30b9\u30b3\u30a2\u30fc": 156, "\u30b9\u30bf\u30a4\u30eb": 156, "\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30fc\u30f3\u30e2\u30fc\u30c9": 175, "\u30b9\u30c8\u30ec\u30fc\u30b8": 0, "\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3": 0, "\u30b9\u30e9\u30a4\u30b9": 156, "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3": 312, "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc": 225, "\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7": 180, "\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc": 302, "\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2": [6, 8, 18, 27], "\u30bd\u30fc\u30b9": [24, 25, 28, 30, 31, 32, 33], "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9": [12, 27], "\u30bd\u30fc\u30c8": [306, 315], "\u30bf\u30a4\u30d7\u30df\u30b9": 156, "\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8": 99, "\u30bf\u30b0": 307, "\u30bf\u30b0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 161, "\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0": 292, "\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9": 27, "\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8": [6, 7, 8], "\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0": 2, "\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb": 304, "\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0": 281, "\u30c4\u30a4\u30fc\u30c8": 10, "\u30c4\u30fc\u30eb": [31, 177, 312], "\u30c6\u30b9\u30c8": [12, 14, 134], "\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb": 14, "\u30c6\u30fc\u30d6\u30eb": [34, 110, 111, 137, 141, 161, 163, 181, 254, 282, 305, 308, 310, 311], "\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6": 177, "\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 12, "\u30c7\u30d0\u30c3\u30ac": 14, "\u30c7\u30d5\u30a9\u30eb\u30c8": [94, 99], "\u30c7\u30fc\u30bf": [111, 161, 250, 253, 282, 305, 308, 311], "\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0": 87, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9": [141, 292, 308], "\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9": 177, "\u30c7\u30fc\u30e2\u30f3": 298, "\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9": 175, "\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0": [176, 300], "\u30c8\u30ec\u30fc\u30b9\u30ed\u30b0": 96, "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6": 0, "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc": [263, 301], "\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc": 256, "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8": [12, 15, 18, 22], "\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3": [135, 156, 306], "\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc": 229, "\u30ce\u30fc\u30de\u30eb\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0": 90, "\u30ce\u30fc\u30de\u30eb\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": 91, "\u30cf\u30a4\u30e9\u30a4\u30c8": 44, "\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0": 311, "\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb": 295, "\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8": 19, "\u30d0\u30fc\u30b8\u30e7\u30f3": [12, 36, 37, 38, 93, 237], "\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba": 12, "\u30d1\u30bf\u30fc\u30f3": 45, "\u30d1\u30c3\u30b1\u30fc\u30b8": [12, 45], "\u30d1\u30c3\u30c1": [17, 18], "\u30d1\u30c8\u30ea\u30b7\u30a2": 313, "\u30d1\u30e9\u30e1\u30fc\u30bf": [93, 310], "\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": [135, 156], "\u30d3\u30c3\u30c8": 225, "\u30d3\u30eb\u30c9": [5, 6, 7, 8, 12, 24, 25, 27, 28, 30, 31, 32, 33], "\u30d5\u30a1\u30a4\u30eb": [11, 17, 18, 45, 94, 172, 175, 243, 281, 292], "\u30d5\u30a9\u30ed\u30fc": 311, "\u30d5\u30a9\u30fc\u30af": 18, "\u30d5\u30a9\u30fc\u30de\u30c3\u30c8": [45, 96, 156, 228, 243], "\u30d5\u30ec\u30fc\u30ba": [224, 225], "\u30d6\u30e9\u30a6\u30b6": 18, "\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9": 312, "\u30d6\u30e9\u30b8\u30eb": 56, "\u30d6\u30ed\u30b0": 12, "\u30d7\u30ea\u30bb\u30c3\u30c8": 27, "\u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8": 97, "\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8": 18, "\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9": 292, "\u30d7\u30ed\u30b0\u30ec\u30b9\u30ed\u30b0": 45, "\u30d7\u30ed\u30bb\u30b9": [94, 281], "\u30d7\u30ed\u30bb\u30b9\u30ed\u30b0": 228, "\u30d7\u30ed\u30c8\u30b3\u30eb": 298, "\u30d7\u30ed\u30d1\u30c6\u30a3": 142, "\u30d8\u30c3\u30c0\u30fc": 298, "\u30d9\u30af\u30bf\u30fc": [45, 282], "\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": [45, 91, 111, 305], "\u30da\u30fc\u30b8\u30f3\u30b0": 156, "\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0": 311, "\u30de\u30b7\u30f3": 45, "\u30de\u30c3\u30c1": 225, "\u30de\u30c3\u30c1\u30ab\u30e9\u30e0": 224, "\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0": 111, "\u30df\u30c3\u30b7\u30f3\u30b0\u30e2\u30fc\u30c9": 111, "\u30e1\u30e2\u30ea": 281, "\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8": [2, 19], "\u30e2\u30b8\u30e5\u30fc\u30eb": 177, "\u30e2\u30c7\u30eb": 227, "\u30e6\u30fc\u30b6\u30fc": [10, 180, 311], "\u30e6\u30fc\u30b6\u30fcid": 311, "\u30e9\u30a4\u30bb\u30f3\u30b9": 45, "\u30e9\u30a4\u30d6\u30e9\u30ea": [0, 31], "\u30ea\u30af\u30a8\u30b9\u30c8": [98, 99], "\u30ea\u30af\u30a8\u30b9\u30c8id": 98, "\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8": 99, "\u30ea\u30bd\u30fc\u30b9": [137, 163], "\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9": [45, 99, 100], "\u30ea\u30c6\u30e9\u30eb": 225, "\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7": 177, "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9": [60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85], "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb": 57, "\u30ea\u30dd\u30b8\u30c8\u30ea": [13, 17, 18], "\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc": [5, 6, 7, 8], "\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9": 312, "\u30ea\u30ea\u30fc\u30b9": [12, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9": 12, "\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0": 12, "\u30eb\u30fc\u30eb": 248, "\u30ec\u30b3\u30fc\u30c9": [111, 156, 308], "\u30ec\u30b3\u30fc\u30c9id": 254, "\u30ec\u30b9\u30dd\u30f3\u30b9": 45, "\u30ed\u30b0": 228, "\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30c8": 131, "\u30ed\u30c3\u30af\u30d5\u30ea\u30fc": 0, "\u30ed\u30fc\u30c9": [91, 308, 311], "\u30ed\u30fc\u30de": 240, "\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af": 14, "\u4e00\u6642": 254, "\u4e00\u6642\u30c6\u30fc\u30d6\u30eb": 254, "\u4e00\u7dd2": [137, 163], "\u4e00\u81f4": [224, 225, 250, 299, 313], "\u4e00\u81f4rk": [240, 250], "\u4e00\u89a7": [100, 171, 173, 229, 242, 248, 311], "\u4e00\u90e8": 137, "\u4e0a\u9650": 34, "\u4e0d\u6b63": 45, "\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9": 14, "\u4e0d\u6b63\u30e2\u30fc\u30c9": 111, "\u4e0d\u7b49\u4fa1": [224, 225], "\u4e26\u3079": 308, "\u4e26\u5217": [45, 94], "\u4e3b\u30ad\u30fc": [282, 313], "\u4e57\u7b97": 225, "\u4e8b\u9805": [34, 176, 282], "\u4ed5\u65b9": 17, "\u4ed5\u69d8": 297, "\u4ed8\u304d": [18, 45, 224, 225, 307], "\u4ed8\u4e0e": 310, "\u4ee3\u5165": 225, "\u4ee3\u5165\u5f0f": 224, "\u4ee5\u4e0a": [224, 225], "\u4ee5\u4e0b": 224, "\u4ee5\u4e0b\u6f14": 225, "\u4ee5\u524d": 56, "\u4efb\u610f": 18, "\u4f4d\u7f6e": [0, 93, 188, 208, 239, 311, 315], "\u4f5c\u308a\u65b9": [90, 91], "\u4f5c\u308b": 6, "\u4f5c\u6210": [12, 111, 161, 308, 309, 311], "\u4f5c\u696d": 12, "\u4f7f\u3044": 299, "\u4f7f\u3044\u65b9": [58, 88, 90, 91, 94, 96, 97, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 176, 177, 178, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 226, 230, 231, 232, 233, 234, 235, 236, 237, 240, 241, 243, 244, 245, 246, 247, 250, 251, 253, 257, 258, 259, 260, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 284, 285, 286, 287, 288], "\u4f7f\u3046": [177, 180, 188, 231, 235], "\u4f7f\u3048": 45, "\u4f7f\u3063": [6, 7, 8, 27], "\u4f7f\u7528": [45, 281], "\u4f8b\u3048": 10, "\u4f9d\u5b58": 31, "\u4fdd\u5b58": [161, 305], "\u4fee\u6b63": [36, 37, 38, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55], "\u5165\u308a": 311, "\u5165\u529b": 180, "\u5165\u6f14": 225, "\u5168\u4f53": 60, "\u5168\u6587": [0, 301, 308, 310, 315], "\u5168\u6587\u691c": [111, 308, 309], "\u5168\u6587\u691c\u7d22": 224, "\u516c\u958b": 12, "\u5171\u6709": 0, "\u5171\u8d77": [250, 251, 253], "\u5171\u901a": 142, "\u518d\u5229": 45, "\u518d\u8d77\u52d5": 296, "\u51e6\u7406": 45, "\u51fa\u529b": [17, 95, 96, 134, 135, 156, 241, 308], "\u5206\u3051": 299, "\u521d\u671f": 45, "\u5229\u7528": [94, 137, 163, 177, 315], "\u5236\u5fa1": 225, "\u5236\u9650": [34, 91, 176, 243, 254, 282, 306], "\u524a\u6e1b": [137, 163], "\u524a\u9664": [121, 137, 163], "\u524d\u63d0": 12, "\u524d\u65b9": [224, 225, 240, 250, 313], "\u5270\u4f59": 225, "\u5272\u308a": 98, "\u52a0\u7b97": 225, "\u52b9\u7387": 45, "\u52d5\u4f5c": [14, 250, 251, 253], "\u52d5\u7684": [132, 134, 135, 156, 226], "\u5316\u51e6": 45, "\u5354\u529b": 10, "\u5358\u8a9e": 225, "\u5373\u6642": 0, "\u539f\u56e0": [101, 102, 103, 104, 105, 106, 301], "\u53c2\u7167": [0, 90, 91, 111, 163, 298, 305, 307], "\u53c2\u7167\u91cd": 45, "\u53c2\u8003": [6, 7, 8, 58, 95, 98, 99, 100, 107, 109, 111, 112, 115, 116, 117, 119, 121, 125, 126, 128, 129, 130, 131, 136, 138, 139, 142, 144, 145, 146, 148, 151, 153, 154, 155, 156, 159, 161, 165, 168, 169, 178, 179, 180, 184, 191, 192, 193, 201, 202, 203, 205, 206, 210, 223, 229, 230, 231, 232, 233, 234, 235, 237, 240, 243, 246, 247, 254, 255, 272, 274, 275, 276, 278, 286], "\u53cd\u6620": 18, "\u53d6\u308a\u6d88\u3057": 12, "\u53d6\u5f97": [12, 29, 308], "\u53ef\u80fd": [0, 110, 111, 115, 116, 117, 118, 122, 124, 125, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 155, 157, 158, 160, 161, 163, 165, 166, 167, 168, 177, 180, 183, 188, 193, 195, 202, 203, 205, 209, 219, 231, 232, 233, 234, 235, 237, 246, 247, 258, 259, 260, 261, 272, 274, 275], "\u5404\u7a2e": 12, "\u540c\u3058": 301, "\u540c\u6642": 45, "\u540c\u68b1": 45, "\u540d\u524d": [89, 174, 176, 179, 185, 189, 190, 199, 204, 282], "\u5411\u3051": [4, 12], "\u5426\u5b9a": 225, "\u547c\u3073\u51fa\u3057": 225, "\u547d\u4ee4": 176, "\u548c\u4ee3": 225, "\u548c\u6f14": 225, "\u554f\u984c": [42, 43, 45], "\u56de\u907f": 303, "\u56fa\u6709": 142, "\u56fd\u969b\u5316": 17, "\u5727\u7e2e": 292, "\u57fa\u672c": [137, 163, 225, 308], "\u5831\u544a": [19, 45], "\u5834\u5408": [29, 94, 95, 310], "\u5834\u6240": [10, 243], "\u58ca\u308c": 137, "\u58ca\u308c\u308b": 45, "\u5909\u63db": 240, "\u5909\u6570": 94, "\u5909\u66f4": [18, 37, 43, 44, 45, 110, 292, 301], "\u5909\u66f4\u70b9": 12, "\u5927\u304d\u306a": [111, 161], "\u5927\u306a\u308a": [224, 225], "\u5b66\u7fd2": [180, 250, 251, 252, 253], "\u5b8c\u5168": 299, "\u5b9f\u4f8b": 11, "\u5b9f\u65bd": 131, "\u5b9f\u73fe": 11, "\u5b9f\u884c": [6, 8, 11, 12, 14, 18, 27, 45, 94, 172, 175, 176, 177], "\u5b9f\u9a13": [39, 45], "\u5bc6\u9375": 12, "\u5bfe\u5fdc": [10, 239, 292], "\u5bfe\u7b56": [101, 102, 103, 104, 105, 106, 301, 303], "\u5bfe\u8c61": [111, 163], "\u5c0e\u5165": 18, "\u5c0f\u3055": 111, "\u5c0f\u306a\u308a": [224, 225], "\u5c0f\u6570": 225, "\u5c55\u958b": 242, "\u5dee\u5206": 45, "\u5dee\u6f14": 225, "\u5e38\u99d0": 94, "\u5ea7\u6a19\u5024": 225, "\u5f15\u6570": [45, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 147, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 170, 174, 175, 176, 180, 181, 183, 185, 186, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 204, 205, 208, 209, 210, 211, 219, 220, 221, 231, 232, 233, 234, 235, 237, 246, 247, 257, 258, 259, 260, 261, 272, 274, 275, 281, 286], "\u5f53\u3066\u308b": 98, "\u5f62\u5f0f": 95, "\u5f8c\u65b9": [224, 225, 313], "\u5fc5\u8981": [6, 8, 18, 27, 45, 194, 197], "\u5fc5\u9808": [94, 110, 111, 112, 114, 115, 116, 117, 118, 124, 125, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 153, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 170, 180, 183, 188, 193, 195, 202, 203, 205, 209, 211, 219, 237, 246, 247], "\u6027\u80fd": [177, 292], "\u60c5\u5831": [0, 4, 10, 14, 239, 311, 315], "\u611f\u8b1d": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "\u6210\u529f": 95, "\u6210\u679c": 17, "\u623b\u308a\u5024": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 246, 247, 284, 285, 286, 287, 288], "\u624b\u9806": 12, "\u6271\u3048\u308b": 111, "\u6295\u7a3f": 311, "\u629c\u3051": 45, "\u62bd\u51fa": [208, 225, 253], "\u62e1\u5f35": 314, "\u6307\u5b9a": [93, 94, 180, 188, 224, 282, 308, 310], "\u6307\u91dd": 10, "\u6319\u52d5": 299, "\u6392\u4ed6": 225, "\u63a5\u7d9a": 298, "\u63d0\u4f9b": 10, "\u63d0\u6848": [252, 253], "\u64cd\u4f5c": [238, 308], "\u64ec\u4f3c": 89, "\u64ec\u967d\u6027": 45, "\u6539\u826f": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "\u6570\u5024": 305, "\u6574\u6570": 225, "\u6587\u5b57": 244, "\u6587\u5b57\u5217": [225, 305], "\u6587\u66f8": [224, 225, 251], "\u6587\u6cd5": 315, "\u65b0\u3057\u3044": [17, 18], "\u65b0\u3057\u304f": 43, "\u65b0\u898f": 43, "\u65b9\u6cd5": [3, 5, 6, 7, 8, 14, 15, 17, 18, 45, 58, 91, 93, 98, 99, 110, 226, 227, 238, 250, 251, 253, 301, 302, 303], "\u65e2\u5b58": 45, "\u65e2\u77e5": [42, 43], "\u65e5\u6642": 305, "\u660e\u793a\u7684": 188, "\u6642\u9593": [225, 311], "\u66f4\u65b0": [0, 12, 17, 250], "\u66f8\u304d": 299, "\u66f8\u5f0f": [174, 176, 181, 185, 189, 190, 199, 204, 308], "\u66ff\u3048": 308, "\u6700\u521d": 12, "\u6700\u5927": 281, "\u6709\u52b9": 99, "\u6761\u4ef6": [12, 156, 194, 197, 224, 315], "\u6761\u4ef6\u5f0f": 224, "\u683c\u7d0d": 282, "\u691c\u51fa": 14, "\u691c\u7d22": [0, 91, 132, 134, 135, 156, 161, 224, 225, 239, 240, 250, 251, 253, 299, 301, 307, 308, 310, 311, 313, 314, 315], "\u691c\u7d22\u4f8b": 11, "\u6982\u8981": [0, 44, 58, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 100, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 173, 175, 177, 178, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 227, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 243, 244, 245, 246, 247, 248, 254, 255, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 284, 285, 286, 287, 288], "\u69cb\u6587": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 177, 178, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 224, 225, 230, 231, 232, 233, 234, 235, 236, 237, 244, 246, 247, 257, 258, 259, 260, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 284, 285, 286, 287, 288], "\u69cb\u7bc9": [14, 45, 226], "\u69d8\u3005": 14, "\u6a5f\u80fd": [43, 239], "\u6b63\u898f": [45, 208, 224, 225, 244], "\u6bce\u56de": 12, "\u6bd4\u8f03": [225, 292], "\u6c38\u7d9a": 254, "\u6ce8\u610f\u70b9": 94, "\u6d41\u308c": 17, "\u6d6e\u52d5": 225, "\u6e1b\u7b97": 225, "\u6e96\u5099": [12, 18, 314], "\u6f14\u7b97\u5b50": 225, "\u70b9\u6570": 225, "\u7279\u5b9a": 14, "\u7279\u5fb4": [0, 254], "\u7279\u6709": 177, "\u7279\u6b8a": 176, "\u72b6\u6cc1": [56, 94], "\u72ec\u81ea": 225, "\u7406\u7531": 10, "\u74b0\u5883": [12, 14, 94], "\u751f\u6210": [17, 18, 87, 90, 91], "\u7528\u3044": 315, "\u7528\u3044\u308b": 29, "\u7528\u79d8": 12, "\u7528\u8a9e\u96c6": 248, "\u754c\u9688": 56, "\u7570\u306a\u308b": 301, "\u767b\u9332": [12, 19], "\u76f4\u7a4d": [224, 225], "\u7701\u7565": [110, 111, 115, 116, 117, 118, 122, 124, 125, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 155, 157, 158, 160, 161, 163, 165, 166, 167, 168, 180, 183, 188, 193, 195, 202, 203, 205, 209, 219, 231, 232, 233, 234, 235, 237, 246, 247, 258, 259, 260, 261, 272, 274, 275], "\u771f\u507d\u5024": [225, 305], "\u77e5\u308a": 12, "\u78ba\u8a8d": [12, 17, 18, 94], "\u7a2e\u985e": [111, 142, 305], "\u7a4d\u4ee3": 225, "\u7a4d\u6f14": 225, "\u7b26\u53f7": 225, "\u7b49\u4fa1": [224, 225], "\u7b97\u5b50": 225, "\u7b97\u8853": 225, "\u7ba1\u7406": [177, 227, 312], "\u7bc4\u56f2": [161, 308], "\u7c21\u5358": [134, 135, 156, 231, 232, 233, 234, 235, 237, 257, 258, 259, 272, 274, 275], "\u7d22\u5f15": 0, "\u7d22\u7528": [111, 308, 309], "\u7d42\u4e86": [45, 177, 296, 298], "\u7d44\u307f\u8fbc\u307f": [175, 229, 245], "\u7d44\u8fbc\u578b": 282, "\u7d4c\u5ea6": 0, "\u7d4c\u7def\u5ea6": 305, "\u7d50\u5408\u5f0f": 224, "\u7d50\u679c": [176, 180, 301, 306, 308], "\u7d5e\u8fbc": 315, "\u7de8\u96c6": [17, 18], "\u7def\u5ea6": 0, "\u7f72\u540d": 12, "\u7ffb\u8a33": [17, 18], "\u81ea\u52d5\u751f\u6210": 111, "\u884c\u3046": 12, "\u8868\u73fe": [11, 45, 208, 224, 225, 244], "\u8868\u793a": 308, "\u88dc\u5b8c": [250, 252], "\u88dc\u6b63": [251, 252], "\u8907\u6570": [292, 306, 310], "\u89e3\u6790": [14, 302], "\u89e3\u6c7a": 58, "\u8a00\u8a9e": [17, 227], "\u8a2d\u5b9a": [12, 21, 60, 94, 99, 110, 171, 177, 292], "\u8a31\u5bb9": 156, "\u8a73\u7d30": 100, "\u8a8d\u8a3c": 292, "\u8a95\u751f": 56, "\u8a98\u5c0e": 10, "\u8a9e\u5f59": [308, 309], "\u8a9e\u5f59\u8868": 161, "\u8aac\u660e": [89, 174, 176, 185, 189, 190, 199, 204, 282], "\u8aad\u307f": [240, 250], "\u8ab2\u984c": 19, "\u8ad6\u7406": [137, 225], "\u8ad6\u7406\u548c": 224, "\u8ad6\u7406\u5dee": 224, "\u8ad6\u7406\u7a4d": 224, "\u8d77\u52d5": [180, 296, 298, 312], "\u8d77\u6e90": 56, "\u8ee2\u7f6e": 0, "\u8fd1\u508d": [224, 225], "\u8fd4\u3055": 45, "\u8fd4\u5024": [185, 189, 190, 199, 204], "\u8ffd\u52a0": [17, 18, 45, 229], "\u8ffd\u8de1": 19, "\u9001\u308a\u65b9": [17, 19], "\u9001\u308b": 18, "\u9001\u4fe1": 312, "\u9006\u5f15\u304d": 307, "\u901a\u4fe1": 9, "\u9032\u3081": 10, "\u9045\u5ef6": 45, "\u904e\u53bb": 10, "\u9055\u3044": 135, "\u9069\u7528": 91, "\u9078\u629e": 244, "\u90e8\u5206": 299, "\u914d\u5217": 225, "\u91cd\u307f": [91, 310], "\u91cd\u307f\u4ed8\u304d": [91, 111], "\u91cf\u6307\u5b9a\u5b50": 244, "\u958b\u3051\u308b": 281, "\u958b\u767a": [4, 10, 20], "\u9593\u9055\u3063": 45, "\u95a2\u4fc2": [31, 132, 134, 135, 156, 307], "\u95a2\u4fc2\u5f0f": 11, "\u95a2\u6570": [14, 132, 134, 135, 156, 182, 225, 227, 283], "\u95a2\u9023": [15, 132, 134, 135, 137, 156, 177, 181, 310], "\u95be\u5024": 301, "\u9650\u308a": 137, "\u9664\u7b97": 225, "\u96c6\u8a08": 0, "\u9759\u7684": [14, 45, 226], "\u975e\u308f\u304b\u3061": 299, "\u9806\u5e8f": [224, 225], "\u9818\u57df": 45, "\u985e\u4f3c": [224, 225, 251], "\u9ad8\u5ea6": [135, 156, 231, 232, 233, 234, 235, 237, 257, 258, 259, 272, 274, 275], "\uff08personal": 32}})
\ No newline at end of file
+Search.setIndex({"alltitles": {"--enable-apache-arrow \u304a\u3088\u3073 --disable-apache-arrow": [[31, "enable-apache-arrow-and-disable-apache-arrow"]], "--force-lock-clear": [[173, "force-lock-clear"]], "--force-truncate": [[173, "force-truncate"]], "--help": [[31, "help"]], "--localstatedir=PATH": [[31, "localstatedir-path"]], "--log-flags": [[173, "log-flags"], [173, "id3"]], "--log-level": [[173, "log-level"], [173, "id1"]], "--log-path": [[173, "log-path"], [173, "id2"]], "--prefix=PATH": [[31, "prefix-path"]], "--since": [[173, "since"]], "--target": [[173, "target"]], "--with-default-encoding=ENCODING": [[31, "with-default-encoding-encoding"]], "--with-log-path=PATH": [[31, "with-log-path-path"]], "--with-lz4": [[31, "with-lz4"]], "--with-match-escalation-threshold=NUMBER": [[31, "with-match-escalation-threshold-number"]], "--with-message-pack=MESSAGE_PACK_INSTALL_PREFIX": [[31, "with-message-pack-message-pack-install-prefix"]], "--with-munin-plugins": [[31, "with-munin-plugins"]], "--with-package-platform=PLATFORM": [[31, "with-package-platform-platform"]], "--with-zlib": [[31, "with-zlib"]], "-13: GRN_NOT_ENOUGH_SPACE": [[104, null]], "-22: GRN_INVALID_ARGUMENT": [[102, null]], "-2: GRN_OPERATION_NOT_PERMITTED": [[105, null]], "-34: GRN_RESOURCE_DEADLOCK_AVOIDED": [[106, null]], "-3: GRN_NO_SUCH_FILE_OR_DIRECTORY": [[103, null]], "-6: GRN_INPUT_OUTPUT_ERROR": [[101, null]], "-DCMAKE_INSTALL_PREFIX": [[27, "dcmake-install-prefix"]], "-DCMAKE_PREFIX_PATH=PATHS": [[27, "dcmake-prefix-path-paths"]], "-DGRN_WITH_APACHE_ARROW": [[27, "dgrn-with-apache-arrow"]], "-DGRN_WITH_MRUBY": [[27, "dgrn-with-mruby"]], "-G GENERATOR": [[27, "g-generator"]], ".edit \u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u306e\u4ed5\u65b9": [[17, "how-to-update-edit-files"]], ".edit \u30d5\u30a1\u30a4\u30eb\u306e\u7de8\u96c6\u306e\u4ed5\u65b9": [[17, "how-to-edit-edit"]], ".edit.po \u30d5\u30a1\u30a4\u30eb\u5185\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u7ffb\u8a33\u3059\u308b": [[18, "translate-the-documentation-in-edit-po-files"]], ".po \u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u306e\u4ed5\u65b9": [[17, "how-to-update-po-files"]], ".po \u30d5\u30a1\u30a4\u30eb\u306e\u9001\u308a\u65b9": [[17, "how-to-send-po-files"]], "0.7.6\u30ea\u30ea\u30fc\u30b9 - 2010-08-19": [[36, "id5"]], "0.7.7\u30ea\u30ea\u30fc\u30b9 - 2010-08-25": [[36, "id2"]], "1.0.0\u30ea\u30ea\u30fc\u30b9 - 2010-08-29": [[37, "id36"]], "1.0.1\u30ea\u30ea\u30fc\u30b9 - 2010-09-06": [[37, "id32"]], "1.0.2\u30ea\u30ea\u30fc\u30b9 - 2010-09-09": [[37, "id27"]], "1.0.3\u30ea\u30ea\u30fc\u30b9 - 2010-10-29": [[37, "id22"]], "1.0.4\u30ea\u30ea\u30fc\u30b9 - 2010-11-29": [[37, "id17"]], "1.0.5\u30ea\u30ea\u30fc\u30b9 - 2010-12-29": [[37, "id12"]], "1.0.6\u30ea\u30ea\u30fc\u30b9 - 2010-12-31": [[37, "id9"]], "1.0.7\u30ea\u30ea\u30fc\u30b9 - 2011-01-29": [[37, "id5"]], "1.0.8\u30ea\u30ea\u30fc\u30b9 - 2011-02-02": [[37, "id2"]], "1.1.0\u30ea\u30ea\u30fc\u30b9 - 2011-02-09": [[38, "id2"]], "1.2.0\u30ea\u30ea\u30fc\u30b9 - 2011-03-29": [[39, "id24"]], "1.2.1\u30ea\u30ea\u30fc\u30b9 - 2011-04-29": [[39, "id20"]], "1.2.2\u30ea\u30ea\u30fc\u30b9 - 2011-05-29": [[39, "release-1-2-2-2011-05-29"]], "1.2.3\u30ea\u30ea\u30fc\u30b9 - 2011-06-29": [[39, "release-1-2-3-2011-06-29"]], "1.2.4\u30ea\u30ea\u30fc\u30b9 - 2011-07-29": [[39, "release-1-2-4-2011-07-29"]], "1.2.5\u30ea\u30ea\u30fc\u30b9 - 2011-08-29": [[39, "release-1-2-5-2011-08-29"]], "1.2.6\u30ea\u30ea\u30fc\u30b9 - 2011-09-29": [[39, "release-1-2-6-2011-09-29"]], "1.2.7\u30ea\u30ea\u30fc\u30b9 - 2011-10-29": [[39, "release-1-2-7-2011-10-29"]], "1.2.8\u30ea\u30ea\u30fc\u30b9 - 2011-11-29": [[39, "release-1-2-8-2011-11-29"]], "1.2.9\u30ea\u30ea\u30fc\u30b9 - 2011-12-29": [[39, "release-1-2-9-2011-12-29"]], "1.3.0\u30ea\u30ea\u30fc\u30b9 - 2012-01-29": [[40, "release-1-3-0-2012-01-29"]], "10.0.0\u30ea\u30ea\u30fc\u30b9 - 2020-03-29": [[41, "release-10-0-0-2020-03-29"]], "10.0.1\u30ea\u30ea\u30fc\u30b9 - 2020-03-30": [[41, "release-10-0-1-2020-03-30"]], "10.0.2\u30ea\u30ea\u30fc\u30b9 - 2020-04-29": [[41, "release-10-0-2-2020-04-29"]], "10.0.3\u30ea\u30ea\u30fc\u30b9 - 2020-05-29": [[41, "release-10-0-3-2020-05-29"]], "10.0.4\u30ea\u30ea\u30fc\u30b9 - 2020-06-29": [[41, "release-10-0-4-2020-06-29"]], "10.0.5\u30ea\u30ea\u30fc\u30b9 - 2020-07-30": [[41, "release-10-0-5-2020-07-30"]], "10.0.6\u30ea\u30ea\u30fc\u30b9 - 2020-08-29": [[41, "release-10-0-6-2020-08-29"]], "10.0.7\u30ea\u30ea\u30fc\u30b9 - 2020-09-29": [[41, "release-10-0-7-2020-09-29"]], "10.0.8\u30ea\u30ea\u30fc\u30b9 - 2020-10-29": [[41, "release-10-0-8-2020-10-29"]], "10.0.9\u30ea\u30ea\u30fc\u30b9 - 2020-12-01": [[41, "release-10-0-9-2020-12-01"]], "10.1.0\u30ea\u30ea\u30fc\u30b9 - 2020-12-29": [[41, "release-10-1-0-2020-12-29"]], "10.1.1\u30ea\u30ea\u30fc\u30b9 - 2021-01-25": [[41, "release-10-1-1-2021-01-25"]], "11.0.0\u30ea\u30ea\u30fc\u30b9 - 2021-02-09": [[42, "release-11-0-0-2021-02-09"]], "11.0.1\u30ea\u30ea\u30fc\u30b9 - 2021-03-31": [[42, "release-11-0-1-2021-03-31"]], "11.0.2\u30ea\u30ea\u30fc\u30b9 - 2021-05-10": [[42, "release-11-0-2-2021-05-10"]], "11.0.3\u30ea\u30ea\u30fc\u30b9 - 2021-05-29": [[42, "release-11-0-3-2021-05-29"]], "11.0.4\u30ea\u30ea\u30fc\u30b9 - 2021-06-29": [[42, "release-11-0-4-2021-06-29"]], "11.0.5\u30ea\u30ea\u30fc\u30b9 - 2021-07-29": [[42, "release-11-0-5-2021-07-29"]], "11.0.6\u30ea\u30ea\u30fc\u30b9 - 2021-08-29": [[42, "release-11-0-6-2021-08-29"]], "11.0.7\u30ea\u30ea\u30fc\u30b9 - 2021-09-29": [[42, "release-11-0-7-2021-09-29"]], "11.0.9\u30ea\u30ea\u30fc\u30b9 - 2021-11-04": [[42, "release-11-0-9-2021-11-04"]], "11.1.0\u30ea\u30ea\u30fc\u30b9 - 2021-11-29": [[42, "release-11-1-0-2021-11-29"]], "11.1.1\u30ea\u30ea\u30fc\u30b9 - 2021-12-29": [[42, "release-11-1-1-2021-12-29"]], "11.1.3\u30ea\u30ea\u30fc\u30b9 - 2022-01-29": [[42, "release-11-1-3-2022-01-29"]], "12.0.0\u30ea\u30ea\u30fc\u30b9 - 2022-02-09": [[43, "release-12-0-0-2022-02-09"]], "12.0.1\u30ea\u30ea\u30fc\u30b9 - 2022-02-28": [[43, "release-12-0-1-2022-02-28"]], "12.0.2\u30ea\u30ea\u30fc\u30b9 - 2022-03-29": [[43, "release-12-0-2-2022-03-29"]], "12.0.3\u30ea\u30ea\u30fc\u30b9 - 2022-04-29": [[43, "release-12-0-3-2022-04-29"]], "12.0.4\u30ea\u30ea\u30fc\u30b9 - 2022-06-06": [[43, "release-12-0-4-2022-06-06"]], "12.0.5\u30ea\u30ea\u30fc\u30b9 - 2022-06-29": [[43, "release-12-0-5-2022-06-29"]], "12.0.6\u30ea\u30ea\u30fc\u30b9 - 2022-08-04": [[43, "release-12-0-6-2022-08-04"]], "12.0.7\u30ea\u30ea\u30fc\u30b9 - 2022-08-29": [[43, "release-12-0-7-2022-08-29"]], "12.0.8\u30ea\u30ea\u30fc\u30b9 - 2022-10-03": [[43, "release-12-0-8-2022-10-03"]], "12.0.9\u30ea\u30ea\u30fc\u30b9 - 2022-10-28": [[43, "release-12-0-9-2022-10-28"]], "12.1.0\u30ea\u30ea\u30fc\u30b9 - 2022-11-29": [[43, "release-12-1-0-2022-11-29"]], "12.1.1\u30ea\u30ea\u30fc\u30b9 - 2023-01-06": [[43, "release-12-1-1-2023-01-06"]], "12.1.2\u30ea\u30ea\u30fc\u30b9 - 2023-01-29": [[43, "release-12-1-2-2023-01-29"]], "13.0.0\u30ea\u30ea\u30fc\u30b9 - 2023-02-09": [[44, "release-13-0-0-2023-02-09"]], "13.0.1\u30ea\u30ea\u30fc\u30b9 - 2023-03-24": [[44, "release-13-0-1-2023-03-24"]], "13.0.2\u30ea\u30ea\u30fc\u30b9 - 2023-07-12": [[44, "release-13-0-2-2023-07-12"]], "13.0.3\u30ea\u30ea\u30fc\u30b9 - 2023-07-24": [[44, "release-13-0-3-2023-07-24"]], "13.0.4\u30ea\u30ea\u30fc\u30b9 - 2023-07-26": [[44, "release-13-0-4-2023-07-26"]], "13.0.5\u30ea\u30ea\u30fc\u30b9 - 2023-08-02": [[44, "release-13-0-5-2023-08-02"]], "13.0.6\u30ea\u30ea\u30fc\u30b9 - 2023-08-31": [[44, "release-13-0-6-2023-08-31"]], "13.0.7\u30ea\u30ea\u30fc\u30b9 - 2023-09-12": [[44, "release-13-0-7-2023-09-12"]], "13.0.8\u30ea\u30ea\u30fc\u30b9 - 2023-09-29": [[44, "release-13-0-8-2023-09-29"]], "13.0.9\u30ea\u30ea\u30fc\u30b9 - 2023-10-29": [[44, "release-13-0-9-2023-10-29"]], "13.1.0\u30ea\u30ea\u30fc\u30b9 - 2023-12-26": [[44, "release-13-1-0-2023-12-26"]], "13.1.1\u30ea\u30ea\u30fc\u30b9 - 2024-01-09": [[44, "release-13-1-1-2024-01-09"]], "14.0.0\u30ea\u30ea\u30fc\u30b9 - 2024-02-29": [[45, "release-14-0-0-2024-02-29"]], "14.0.1\u30ea\u30ea\u30fc\u30b9 - 2024-03-14": [[45, "release-14-0-1-2024-03-14"]], "14.0.2\u30ea\u30ea\u30fc\u30b9 - 2024-03-29": [[45, "release-14-0-2-2024-03-29"]], "14.0.3\u30ea\u30ea\u30fc\u30b9 - 2024-05-09": [[45, "release-14-0-3-2024-05-09"]], "14.0.4\u30ea\u30ea\u30fc\u30b9 - 2024-05-29": [[45, "release-14-0-4-2024-05-29"]], "14.0.5\u30ea\u30ea\u30fc\u30b9 - 2024-07-04": [[45, "release-14-0-5-2024-07-04"]], "14.0.6\u30ea\u30ea\u30fc\u30b9 - 2024-07-29": [[45, "release-14-0-6-2024-07-29"]], "14.0.7\u30ea\u30ea\u30fc\u30b9 - 2024-09-03": [[45, "release-14-0-7-2024-09-03"]], "14.0.8\u30ea\u30ea\u30fc\u30b9 - 2024-09-25": [[45, "release-14-0-8-2024-09-25"]], "14.0.9\u30ea\u30ea\u30fc\u30b9 - 2024-09-27": [[45, "release-14-0-9-2024-09-27"]], "14.1.0\u30ea\u30ea\u30fc\u30b9 - 2024-11-05": [[45, "release-14-1-0-2024-11-05"]], "14.1.1\u30ea\u30ea\u30fc\u30b9 - 2024-12-03": [[45, "release-14-1-1-2024-12-03"]], "14.1.2\u30ea\u30ea\u30fc\u30b9 - 2024-12-24": [[45, "release-14-1-2-2024-12-24"]], "14.1.3\u30ea\u30ea\u30fc\u30b9 - 2025-01-27": [[45, "release-14-1-3-2025-01-29"]], "15.0.0\u30ea\u30ea\u30fc\u30b9 - 2025-02-09": [[46, "release-15-0-0-2025-02-09"]], "1\u30d7\u30ed\u30bb\u30b9\u3067\u958b\u3051\u308b\u6700\u5927\u30d5\u30a1\u30a4\u30eb\u6570": [[281, "the-max-number-of-open-files-per-process"]], "2.0.0\u30ea\u30ea\u30fc\u30b9 - 2012-02-29": [[47, "release-2-0-0-2012-02-29"]], "2.0.1\u30ea\u30ea\u30fc\u30b9 - 2012-03-29": [[47, "release-2-0-1-2012-03-29"]], "2.0.2\u30ea\u30ea\u30fc\u30b9 - 2012-04-29": [[47, "release-2-0-2-2012-04-29"]], "2.0.3\u30ea\u30ea\u30fc\u30b9 - 2012-05-29": [[47, "release-2-0-3-2012-05-29"]], "2.0.4\u30ea\u30ea\u30fc\u30b9 - 2012-06-29": [[47, "release-2-0-4-2012-06-29"]], "2.0.5\u30ea\u30ea\u30fc\u30b9 - 2012-07-29": [[47, "release-2-0-5-2012-07-29"]], "2.0.6\u30ea\u30ea\u30fc\u30b9 - 2012-08-29": [[47, "release-2-0-6-2012-08-29"]], "2.0.7\u30ea\u30ea\u30fc\u30b9 - 2012-09-29": [[47, "release-2-0-7-2012-09-29"]], "2.0.8\u30ea\u30ea\u30fc\u30b9 - 2012-10-29": [[47, "release-2-0-8-2012-10-29"]], "2.0.9\u30ea\u30ea\u30fc\u30b9 - 2012-11-29": [[47, "release-2-0-9-2012-11-29"]], "2.1.0\u30ea\u30ea\u30fc\u30b9 - 2012-12-29": [[47, "release-2-1-0-2012-12-29"]], "2.1.1\u30ea\u30ea\u30fc\u30b9 - 2012-12-29": [[47, "release-2-1-1-2012-12-29"]], "2.1.2\u30ea\u30ea\u30fc\u30b9 - 2013-01-29": [[47, "release-2-1-2-2013-01-29"]], "2005-04-12": [[55, "id20"]], "2005-06-23": [[55, "id18"]], "2005-07-05": [[55, "id17"]], "2005-08-16": [[55, "id15"]], "2005-09-08": [[55, "id13"]], "2005-09-17": [[55, "id11"]], "2005-10-27": [[55, "id9"]], "2005-12-22": [[55, "id7"]], "2006-01-12": [[55, "id5"]], "2006-01-16": [[55, "id4"]], "2006-03-03": [[55, "id2"]], "2006-04-05": [[55, "id1"]], "3.0.0\u30ea\u30ea\u30fc\u30b9 - 2013-02-09": [[48, "release-3-0-0-2013-02-09"]], "3.0.1\u30ea\u30ea\u30fc\u30b9 - 2013-02-28": [[48, "release-3-0-1-2013-02-28"]], "3.0.2\u30ea\u30ea\u30fc\u30b9 - 2013-03-29": [[48, "release-3-0-2-2013-03-29"]], "3.0.3\u30ea\u30ea\u30fc\u30b9 - 2013-04-29": [[48, "release-3-0-3-2013-04-29"]], "3.0.4\u30ea\u30ea\u30fc\u30b9 - 2013-05-29": [[48, "release-3-0-4-2013-05-29"]], "3.0.5\u30ea\u30ea\u30fc\u30b9 - 2013-06-29": [[48, "release-3-0-5-2013-06-29"]], "3.0.6\u30ea\u30ea\u30fc\u30b9 - 2013-07-29": [[48, "release-3-0-6-2013-07-29"]], "3.0.7\u30ea\u30ea\u30fc\u30b9 - 2013-08-29": [[48, "release-3-0-7-2013-08-29"]], "3.0.8\u30ea\u30ea\u30fc\u30b9 - 2013-09-29": [[48, "release-3-0-8-2013-09-29"]], "3.0.9\u30ea\u30ea\u30fc\u30b9 - 2013-10-29": [[48, "release-3-0-9-2013-10-29"]], "3.1.0\u30ea\u30ea\u30fc\u30b9 - 2013-11-29": [[48, "release-3-1-0-2013-11-29"]], "3.1.1\u30ea\u30ea\u30fc\u30b9 - 2013-12-29": [[48, "release-3-1-1-2013-12-29"]], "3.1.2\u30ea\u30ea\u30fc\u30b9 - 2014-01-29": [[48, "release-3-1-2-2014-01-29"]], "4.0.0\u30ea\u30ea\u30fc\u30b9 - 2014-02-09": [[49, "release-4-0-0-2014-02-09"]], "4.0.1\u30ea\u30ea\u30fc\u30b9 - 2014-03-29": [[49, "release-4-0-1-2014-03-29"]], "4.0.2\u30ea\u30ea\u30fc\u30b9 - 2014-05-29": [[49, "release-4-0-2-2014-05-29"]], "4.0.3\u30ea\u30ea\u30fc\u30b9 - 2014-06-29": [[49, "release-4-0-3-2014-06-29"]], "4.0.4\u30ea\u30ea\u30fc\u30b9 - 2014-07-29": [[49, "release-4-0-4-2014-07-29"]], "4.0.5\u30ea\u30ea\u30fc\u30b9 - 2014-08-29": [[49, "release-4-0-5-2014-08-29"]], "4.0.6\u30ea\u30ea\u30fc\u30b9 - 2014-09-29": [[49, "release-4-0-6-2014-09-29"]], "4.0.7\u30ea\u30ea\u30fc\u30b9 - 2014-10-29": [[49, "release-4-0-7-2014-10-29"]], "4.0.8\u30ea\u30ea\u30fc\u30b9 - 2014-11-29": [[49, "release-4-0-8-2014-11-29"]], "4.0.9\u30ea\u30ea\u30fc\u30b9 - 2014-12-29": [[49, "release-4-0-9-2014-12-29"]], "4.1.0\u30ea\u30ea\u30fc\u30b9 - 2015-01-09": [[49, "release-4-1-0-2015-01-09"]], "4.1.1\u30ea\u30ea\u30fc\u30b9 - 2015-01-29": [[49, "release-4-1-1-2015-01-29"]], "5.0.0\u30ea\u30ea\u30fc\u30b9 - 2015-02-09": [[50, "release-5-0-0-2015-02-09"]], "5.0.1\u30ea\u30ea\u30fc\u30b9 - 2015-03-29": [[50, "release-5-0-1-2015-03-29"]], "5.0.2\u30ea\u30ea\u30fc\u30b9 - 2015-03-31": [[50, "release-5-0-2-2015-03-31"]], "5.0.3\u30ea\u30ea\u30fc\u30b9 - 2015-04-29": [[50, "release-5-0-3-2015-04-29"]], "5.0.4\u30ea\u30ea\u30fc\u30b9 - 2015-05-29": [[50, "release-5-0-4-2015-05-29"]], "5.0.5\u30ea\u30ea\u30fc\u30b9 - 2015-06-29": [[50, "release-5-0-5-2015-06-29"]], "5.0.6\u30ea\u30ea\u30fc\u30b9 - 2015-07-29": [[50, "release-5-0-6-2015-07-29"]], "5.0.7\u30ea\u30ea\u30fc\u30b9 - 2015-08-31": [[50, "release-5-0-7-2015-08-31"]], "5.0.8\u30ea\u30ea\u30fc\u30b9 - 2015-09-29": [[50, "release-5-0-8-2015-09-29"]], "5.0.9\u30ea\u30ea\u30fc\u30b9 - 2015-10-29": [[50, "release-5-0-9-2015-10-29"]], "5.1.0\u30ea\u30ea\u30fc\u30b9 - 2015-11-29": [[50, "release-5-1-0-2015-11-29"]], "5.1.1\u30ea\u30ea\u30fc\u30b9 - 2015-12-29": [[50, "release-5-1-1-2015-12-29"]], "5.1.2\u30ea\u30ea\u30fc\u30b9 - 2016-01-29": [[50, "release-5-1-2-2016-01-29"]], "6.0.0\u30ea\u30ea\u30fc\u30b9 - 2016-02-29": [[51, "release-6-0-0-2016-02-29"]], "6.0.1\u30ea\u30ea\u30fc\u30b9 - 2016-03-29": [[51, "release-6-0-1-2016-03-29"]], "6.0.2\u30ea\u30ea\u30fc\u30b9 - 2016-04-29": [[51, "release-6-0-2-2016-04-29"]], "6.0.3\u30ea\u30ea\u30fc\u30b9 - 2016-05-29": [[51, "release-6-0-3-2016-05-29"]], "6.0.4\u30ea\u30ea\u30fc\u30b9 - 2016-06-06": [[51, "release-6-0-4-2016-06-06"]], "6.0.5\u30ea\u30ea\u30fc\u30b9 - 2016-06-29": [[51, "release-6-0-5-2016-06-29"]], "6.0.7\u30ea\u30ea\u30fc\u30b9 - 2016-07-29": [[51, "release-6-0-7-2016-07-29"]], "6.0.8\u30ea\u30ea\u30fc\u30b9 - 2016-08-29": [[51, "release-6-0-8-2016-08-29"]], "6.0.9\u30ea\u30ea\u30fc\u30b9 - 2016-09-29": [[51, "release-6-0-9-2016-09-29"]], "6.1.0\u30ea\u30ea\u30fc\u30b9 - 2016-10-29": [[51, "release-6-1-0-2016-10-29"]], "6.1.1\u30ea\u30ea\u30fc\u30b9 - 2016-11-29": [[51, "release-6-1-1-2016-11-29"]], "6.1.2\u30ea\u30ea\u30fc\u30b9 - 2016-12-31": [[51, "release-6-1-2-2016-12-31"]], "6.1.3\u30ea\u30ea\u30fc\u30b9 - 2017-01-06": [[51, "release-6-1-3-2017-01-06"]], "6.1.4\u30ea\u30ea\u30fc\u30b9 - 2017-01-18": [[51, "release-6-1-4-2017-01-18"]], "6.1.5\u30ea\u30ea\u30fc\u30b9 - 2017-01-23": [[51, "release-6-1-5-2017-01-23"]], "7.0.0\u30ea\u30ea\u30fc\u30b9 - 2017-02-09": [[52, "release-7-0-0-2017-02-09"]], "7.0.1\u30ea\u30ea\u30fc\u30b9 - 2017-03-29": [[52, "release-7-0-1-2017-03-29"]], "7.0.2\u30ea\u30ea\u30fc\u30b9 - 2017-04-29": [[52, "release-7-0-2-2017-04-29"]], "7.0.3\u30ea\u30ea\u30fc\u30b9 - 2017-05-29": [[52, "release-7-0-3-2017-05-29"]], "7.0.4\u30ea\u30ea\u30fc\u30b9 - 2017-06-29": [[52, "release-7-0-4-2017-06-29"]], "7.0.5\u30ea\u30ea\u30fc\u30b9 - 2017-07-29": [[52, "release-7-0-5-2017-07-29"]], "7.0.6\u30ea\u30ea\u30fc\u30b9 - 2017-08-29": [[52, "release-7-0-6-2017-08-29"]], "7.0.7\u30ea\u30ea\u30fc\u30b9 - 2017-09-29": [[52, "release-7-0-7-2017-09-29"]], "7.0.8\u30ea\u30ea\u30fc\u30b9 - 2017-10-29": [[52, "release-7-0-8-2017-10-29"]], "7.0.9\u30ea\u30ea\u30fc\u30b9 - 2017-11-29": [[52, "release-7-0-9-2017-11-29"]], "7.1.0\u30ea\u30ea\u30fc\u30b9 - 2017-12-29": [[52, "release-7-1-0-2017-12-29"]], "7.1.1\u30ea\u30ea\u30fc\u30b9 - 2018-01-29": [[52, "release-7-1-1-2018-01-29"]], "8.0.0\u30ea\u30ea\u30fc\u30b9 - 2018-02-09": [[53, "release-8-0-0-2018-02-09"]], "8.0.1\u30ea\u30ea\u30fc\u30b9 - 2018-03-29": [[53, "release-8-0-1-2018-03-29"]], "8.0.2\u30ea\u30ea\u30fc\u30b9 - 2018-04-29": [[53, "release-8-0-2-2018-04-29"]], "8.0.3\u30ea\u30ea\u30fc\u30b9 - 2018-05-29": [[53, "release-8-0-3-2018-05-29"]], "8.0.4\u30ea\u30ea\u30fc\u30b9 - 2018-06-29": [[53, "release-8-0-4-2018-06-29"]], "8.0.5\u30ea\u30ea\u30fc\u30b9 - 2018-07-29": [[53, "release-8-0-5-2018-07-29"]], "8.0.6\u30ea\u30ea\u30fc\u30b9 - 2018-08-29": [[53, "release-8-0-6-2018-08-29"]], "8.0.7\u30ea\u30ea\u30fc\u30b9 - 2018-09-29": [[53, "release-8-0-7-2018-09-29"]], "8.0.8\u30ea\u30ea\u30fc\u30b9 - 2018-10-29": [[53, "release-8-0-8-2018-10-29"]], "8.0.9\u30ea\u30ea\u30fc\u30b9 - 2018-11-29": [[53, "release-8-0-9-2018-11-29"]], "8.1.0\u30ea\u30ea\u30fc\u30b9 - 2018-12-29": [[53, "release-8-1-0-2018-12-29"]], "8.1.1\u30ea\u30ea\u30fc\u30b9 - 2019-01-29": [[53, "release-8-1-1-2019-01-29"]], "9.0.0\u30ea\u30ea\u30fc\u30b9 - 2019-02-09": [[54, "release-9-0-0-2019-02-09"]], "9.0.1\u30ea\u30ea\u30fc\u30b9 - 2019-03-29": [[54, "release-9-0-1-2019-03-29"]], "9.0.2\u30ea\u30ea\u30fc\u30b9 - 2019-04-29": [[54, "release-9-0-2-2019-04-29"]], "9.0.3\u30ea\u30ea\u30fc\u30b9 - 2019-05-29": [[54, "release-9-0-3-2019-05-29"]], "9.0.4\u30ea\u30ea\u30fc\u30b9 - 2019-06-29": [[54, "release-9-0-4-2019-06-29"]], "9.0.5\u30ea\u30ea\u30fc\u30b9 - 2019-07-30": [[54, "release-9-0-5-2019-07-30"]], "9.0.6\u30ea\u30ea\u30fc\u30b9 - 2019-08-05": [[54, "release-9-0-6-2019-08-05"]], "9.0.7\u30ea\u30ea\u30fc\u30b9 - 2019-08-29": [[54, "release-9-0-7-2019-08-29"]], "9.0.8\u30ea\u30ea\u30fc\u30b9 - 2019-09-27": [[54, "release-9-0-8-2019-09-27"]], "9.0.9\u30ea\u30ea\u30fc\u30b9 - 2019-10-30": [[54, "release-9-0-9-2019-10-30"]], "9.1.0\u30ea\u30ea\u30fc\u30b9 - 2019-11-29": [[54, "release-9-1-0-2019-11-29"]], "9.1.1\u30ea\u30ea\u30fc\u30b9 - 2020-01-07": [[54, "release-9-1-1-2020-01-07"]], "9.1.2\u30ea\u30ea\u30fc\u30b9 - 2020-01-29": [[54, "release-9-1-2-2020-01-29"]], "API": [[59, null]], "AVX\u304c\u306a\u3044\u30de\u30b7\u30f3\u4e0a\u3067deb/rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4f7f\u3048\u306a\u304b\u3063\u305f\u554f\u984c\u3092\u4fee\u6b63": [[45, "fixed-a-bug-that-deb-rpm-packages-can-t-be-used-on-machines-that-don-t-have-avx"]], "AlmaLinux": [[24, null]], "AlmaLinux 8": [[24, "almalinux-8"]], "AlmaLinux 9": [[24, "almalinux-9"]], "Amazon Linux": [[25, null]], "Amazon Linux 2023": [[25, "amazon-linux-2023"]], "Amazon Linux: Amazon Linux 2023 aarch64\u3092\u30b5\u30dd\u30fc\u30c8": [[45, "install-amazon-linux-added-support-for-amazon-linux-2023-aarch64"]], "Apache Arrow": [[96, "apache-arrow"]], "Apache Arrow\u304c\u5fc5\u9808": [[94, "apache-arrow-is-required"]], "Apache Arrow\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u53d6\u5f97": [[12, "apache-arrow"]], "BODY": [[95, "body"]], "Bigram\u30c6\u30fc\u30d6\u30eb": [[311, "bigram-table"]], "Bool": [[282, "bool"]], "C API": [[16, null]], "CANDIDATE_N": [[180, "candidate-n"]], "CMake \u30aa\u30d7\u30b7\u30e7\u30f3": [[27, "cmake-options"]], "CMake \u30d7\u30ea\u30bb\u30c3\u30c8": [[27, "cmake-presets"]], "COLUMN": [[155, "column"]], "COLUMN_FULL_NAME": [[141, "column-full-name"]], "COLUMN_ID": [[141, "column-id"]], "COLUMN_INFORMATION": [[112, "column-information"]], "COLUMN_LIST_HEADER": [[112, "column-list-header"]], "COLUMN_NAME": [[141, "column-name"]], "COLUMN_TABLE": [[141, "column-table"]], "COLUMN_TYPE_NAME": [[141, "column-type-name"]], "COLUMN_TYPE_RAW_ID": [[141, "column-type-raw-id"]], "COLUMN_TYPE_RAW_NAME": [[141, "column-type-raw-name"]], "COLUMN_VALUE_TYPE": [[141, "column-value-type"]], "COMMAND": [[155, "command"]], "CONDITION_1": [[186, "condition-1"]], "CONDITION_N": [[186, "condition-n"]], "CONTEXT_ID": [[228, "context-id"]], "Cast": [[86, null]], "CentOS": [[26, null]], "Changes": [[55, "changes"]], "Comments\u30c6\u30fc\u30d6\u30eb": [[311, "comments-table"]], "Cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "cutter"]], "DATABASE_NAME_TABLE": [[141, "database-name-table"]], "DATABASE_PATH": [[180, "database-path"]], "DATABASE_TYPE_ID": [[141, "database-type-id"]], "DATABASE_TYPE_NAME": [[141, "database-type-name"]], "DATA_COLUMN_VALUE_COMPRESS_FILTER": [[141, "data-column-value-compress-filter"]], "DATA_COLUMN_VALUE_COMPRESS_METHOD": [[141, "data-column-value-compress-method"]], "DB_API": [[11, "db-api"]], "DESCTIPION": [[179, "desctipion"]], "DOMAIN": [[112, "domain"]], "Debian GNU/Linux": [[28, null]], "Docker": [[29, null]], "Docker\u30a4\u30e1\u30fc\u30b8\u306e\u66f4\u65b0": [[12, "docker"]], "ELAPSED_TIME": [[228, "elapsed-time"]], "EXIT STATUS": [[179, "exit-status"]], "FILES": [[179, "files"]], "FLAGS": [[112, "flags"], [142, "flags"]], "Facebook": [[2, "facebook"]], "Facebook\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b": [[12, "facebook"]], "Float": [[282, "float"]], "Float32": [[282, "float32"]], "FreeBSD": [[281, "freebsd"]], "GENERATED_COLUMN_SOURCE_FULL_NAME": [[141, "generated-column-source-full-name"]], "GENERATED_COLUMN_SOURCE_ID": [[141, "generated-column-source-id"]], "GENERATED_COLUMN_SOURCE_NAME": [[141, "generated-column-source-name"]], "GENERATED_COLUMN_SOURCE_TABLE": [[141, "generated-column-source-table"]], "GENERATED_COLUMN_VALUE_GENERATOR": [[141, "generated-column-value-generator"]], "GENERATOR": [[112, "generator"]], "GET\u306e\u5f15\u6570": [[180, "get-parameters"]], "GNU Autotools\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5": [[6, null]], "GNU/Linux\u307e\u305f\u306fUNIX": [[27, "gnu-linux-or-unix"], [27, "id1"], [27, "id5"]], "GNU/Linux\u307e\u305f\u306fUnix\u4e0a\u3067CMake\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5": [[7, null]], "GQTP": [[290, null], [298, null]], "GQTP\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": [[9, "gqtp"]], "GQTP\u30b5\u30fc\u30d0\u306e\u7d42\u4e86": [[298, "how-to-terminate-a-gqtp-server"]], "GQTP\u30b5\u30fc\u30d0\u306e\u8d77\u52d5": [[298, "how-to-run-a-gqtp-server"]], "GQTP\u30b5\u30fc\u30d0\u3078\u306e\u63a5\u7d9a": [[298, "how-to-run-a-gqtp-client"]], "GQTP\u30b5\u30fc\u30d0\u30fc\u3092\u518d\u8d77\u52d5": [[296, "restart-gqtp-server"]], "GQTP\u30b5\u30fc\u30d0\u30fc\u3092\u7d42\u4e86": [[296, "stop-gqtp-server"]], "GQTP\u30b5\u30fc\u30d0\u30fc\u3092\u8d77\u52d5": [[296, "start-gqtp-server"]], "GQTP\u30c7\u30fc\u30e2\u30f3\u306e\u8d77\u52d5": [[298, "how-to-run-a-gqtp-daemon"]], "GQTP\u30d8\u30c3\u30c0\u30fc": [[298, "gqtp-header"]], "GeoIndex\u30c6\u30fc\u30d6\u30eb": [[311, "geoindex-table"]], "GeoPoint\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22": [[311, "search-comments-by-using-the-value-of-geopoint-type"]], "Groonga 11.0.0 \u304b\u3089 11.1.3 \u307e\u3067\u306e\u4e3b\u306a\u5909\u66f4\u70b9": [[43, "summary-of-changes-from-groonga-11-0-0-to-11-1-3"]], "Groonga 12.0.0 \u304b\u3089 12.1.2 \u307e\u3067\u306e\u4e3b\u306a\u5909\u66f4\u70b9": [[44, "higlight-and-summary-of-changes-from-12-0-0-to-12-1-2"]], "Groonga HTTP\u30b5\u30fc\u30d0\u30fc": [[178, null]], "Groonga \u306e\u6982\u8981": [[0, "groonga-overview"]], "Groonga \u30b5\u30fc\u30d0": [[0, "groonga-server"]], "Groonga \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8": [[22, null]], "Groonga \u30e9\u30a4\u30d6\u30e9\u30ea": [[0, "groonga-library"]], "Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": [[9, null]], "Groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97": [[12, "id7"]], "Groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97": [[12, "groonga"]], "Groonga\u306e\u7279\u5fb4": [[0, null]], "Groonga\u306e\u8d77\u6e90\u4ee5\u524d\u306b\u3064\u3044\u3066": [[56, null]], "Groonga\u3078\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5": [[3, null]], "Groonga\u3092\u30d3\u30eb\u30c9": [[8, "build-groonga"]], "Groonga\u3092\u30d3\u30eb\u30c9\u3059\u308b": [[7, "build-groonga"]], "Groonga\u30b3\u30de\u30f3\u30c9\u3054\u3068\u306b\u8a2d\u5b9a\u3059\u308b": [[94, "set-per-groonga-command"]], "Groonga\u30b3\u30de\u30f3\u30c9\u306e--n_workers\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3059\u308b": [[94, "specified-by-n-workers-option-of-groonga-command"]], "Groonga\u30ea\u30dd\u30b8\u30c8\u30ea\u306eclone\u306e\u4ed5\u65b9": [[17, "how-to-clone-groonga-repository"]], "Groonga\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u30d5\u30a9\u30fc\u30af\u3057\u30af\u30ed\u30fc\u30f3\u3059\u308b\u65b9\u6cd5": [[18, "how-to-fork-and-clone-groonga-repository"]], "Groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb": [[11, "groonga"]], "Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831": [[4, null]], "HEADER": [[95, "header"], [112, "header"], [115, "header"], [116, "header"], [117, "header"], [126, "header"], [128, "header"], [142, "header"], [155, "header"]], "HTML\u30d5\u30a1\u30a4\u30eb\u3067\u5909\u66f4\u3092\u78ba\u8a8d\u3059\u308b": [[18, "preview-changes-on-html-files"]], "HTML\u30d5\u30a1\u30a4\u30eb\u3067\u7ffb\u8a33\u3092\u78ba\u8a8d\u3059\u308b": [[18, "preview-translations-on-html-files"]], "HTML\u30d5\u30a1\u30a4\u30eb\u306e\u751f\u6210\u65b9\u6cd5": [[17, "how-to-generate-html-files"]], "HTML\u30d5\u30a1\u30a4\u30eb\u3092\u751f\u6210": [[18, "generate-html"]], "HTML\u51fa\u529b\u306e\u78ba\u8a8d\u306e\u4ed5\u65b9": [[17, "how-to-confirm-html-output"]], "HTTP": [[241, "http"], [291, null], [312, "hypertext-transfer-protocol-http"]], "HTTPS": [[292, "https"]], "HTTP\u30b5\u30fc\u30d0\u306e\u8d77\u52d5": [[312, "how-to-run-an-http-server"]], "HTTP\u30b5\u30fc\u30d0\u3078\u306e\u30b3\u30de\u30f3\u30c9\u9001\u4fe1": [[312, "how-to-send-a-command-to-an-http-server"]], "HTTP\u30b5\u30fc\u30d0\u30fc\u3092\u518d\u8d77\u52d5": [[296, "restart-http-server"], [296, "id3"]], "HTTP\u30b5\u30fc\u30d0\u30fc\u3092\u7d42\u4e86": [[296, "stop-http-server"], [296, "id2"]], "HTTP\u30b5\u30fc\u30d0\u30fc\u3092\u8d77\u52d5": [[296, "start-http-server"], [296, "id1"]], "HashTags\u30c6\u30fc\u30d6\u30eb": [[311, "hashtags-table"]], "Homebrew": [[30, "homebrew"]], "Homebrew\u306e\u66f4\u65b0": [[12, "homebrew"]], "How to run": [[290, "how-to-run"]], "ID": [[112, "id"]], "INDEX": [[155, "index"]], "INDEX_COLUMN_SOURCE_FULL_NAME": [[141, "index-column-source-full-name"]], "INDEX_COLUMN_SOURCE_ID": [[141, "index-column-source-id"]], "INDEX_COLUMN_SOURCE_NAME": [[141, "index-column-source-name"]], "INDEX_COLUMN_SOURCE_TABLE": [[141, "index-column-source-table"]], "INDEX_COLUMN_VALUE_POSITION": [[141, "index-column-value-position"]], "INDEX_COLUMN_VALUE_SECTION": [[141, "index-column-value-section"]], "INDEX_COLUMN_VALUE_SIZE": [[141, "index-column-value-size"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_ARRAY_SEGMENT_ID": [[141, "index-column-value-statistics-max-array-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_BUFFER_SEGMENT_ID": [[141, "index-column-value-statistics-max-buffer-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_IN_USE_CHUNK_ID": [[141, "index-column-value-statistics-max-in-use-chunk-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_IN_USE_PHYSICAL_SEGMENT_ID": [[141, "index-column-value-statistics-max-in-use-physical-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_MAX_SECTION_ID": [[141, "index-column-value-statistics-max-section-id"]], "INDEX_COLUMN_VALUE_STATISTICS_NEXT_PHYSICAL_SEGMENT_ID": [[141, "index-column-value-statistics-next-physical-segment-id"]], "INDEX_COLUMN_VALUE_STATISTICS_N_ARRAY_SEGMENTS": [[141, "index-column-value-statistics-n-array-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_BUFFER_SEGMENTS": [[141, "index-column-value-statistics-n-buffer-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_GARBAGE_CHUNKS": [[141, "index-column-value-statistics-n-garbage-chunks"]], "INDEX_COLUMN_VALUE_STATISTICS_N_GARBAGE_SEGMENTS": [[141, "index-column-value-statistics-n-garbage-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_PHYSICAL_SEGMENTS": [[141, "index-column-value-statistics-n-physical-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_N_UNMANAGED_SEGMENTS": [[141, "index-column-value-statistics-n-unmanaged-segments"]], "INDEX_COLUMN_VALUE_STATISTICS_TOTAL_CHUNK_SIZE": [[141, "index-column-value-statistics-total-chunk-size"]], "INDEX_COLUMN_VALUE_WEIGHT": [[141, "index-column-value-weight"]], "Int16": [[282, "int16"]], "Int32": [[282, "int32"]], "Int64": [[282, "int64"]], "Int8": [[282, "int8"]], "JSON": [[96, "json"]], "JSON\u3068MessagePack": [[95, "json-and-messagepack"]], "JavaScript\u306b\u4f3c\u305f\u6587\u6cd5\u3067\u306e\u7d5e\u8fbc\u30fb\u5168\u6587\u691c\u7d22": [[315, "narrow-down-full-text-search-by-using-syntax-like-javascript"]], "L": [[228, "l"]], "LGPL-2.1-only\u304b\u3089LGPL-2.1-or-later\u306b\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u5909\u66f4": [[45, "relicensed-to-lgpl-2-1-or-later-from-lgpl-2-1-only"]], "Learning data from groonga-suggest-httpd": [[181, "learning-data-from-groonga-suggest-httpd"]], "Learning data from log files": [[181, "learning-data-from-log-files"]], "Linux": [[281, "linux"]], "LongText": [[282, "longtext"]], "MESSAGE": [[228, "message"], [228, "id5"]], "MacPorts": [[30, "macports"]], "Memcached\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb": [[295, null]], "Mroonga \u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3": [[0, "mroonga-storage-engine"]], "NAME": [[112, "name"]], "NONE": [[156, "none"]], "NORMALIZER": [[155, "normalizer"]], "NORMALIZERS": [[155, "normalizers"]], "NULL": [[225, "null"]], "News - 1.2.x": [[39, null]], "News in Senna period": [[55, null]], "NormalizerAuto": [[230, null]], "NormalizerNFKC": [[231, null]], "NormalizerNFKC100": [[232, null]], "NormalizerNFKC121": [[233, null]], "NormalizerNFKC130": [[234, null]], "NormalizerNFKC150": [[235, null]], "NormalizerNFKC51": [[236, null]], "NormalizerNFKC: unify_middle_dot\u3068remove_symbol\u3092\u540c\u6642\u4f7f\u7528\u3092\u30b5\u30dd\u30fc\u30c8": [[45, "normalizernfkc-added-support-for-mixing-unify-middle-dot-and-remove-symbol"]], "NormalizerNFKC\u3092\u8ffd\u52a0": [[45, "added-reference-normalizers-normalizer-nfkc"]], "NormalizerTable": [[237, null]], "OBJECT \uff08 \"column:*\" \u3068\u3044\u3046\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u7a2e\u985e\u306b\u56fa\u6709\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\uff09": [[142, "object-column-object-types-specific-properties"]], "OBJECT \uff08 \"column:fix\" \u3068 \"column:var\" \u3068\u3044\u3046\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u7a2e\u985e\u306b\u56fa\u6709\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\uff09": [[142, "object-column-fix-and-column-var-object-types-specific-properties"]], "OBJECT \uff08 \"proc\" \u3068\u3044\u3046\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u7a2e\u985e\u306b\u56fa\u6709\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\uff09": [[142, "object-proc-object-type-specific-properties"]], "OBJECT \uff08 \"table:*\" \u3068\u3044\u3046\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u7a2e\u985e\u306b\u56fa\u6709\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\uff09": [[142, "object-table-object-types-specific-properties"]], "OBJECT \uff08 \"type\" \u3068\u3044\u3046\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u7a2e\u985e\u306b\u56fa\u6709\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\uff09": [[142, "object-type-object-type-specific-properties"]], "OBJECT \uff08\u5171\u901a\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\uff09": [[142, "object-common-properties"]], "OBJECTS": [[142, "objects"]], "OBJECT_TYPE": [[142, "object-type"]], "PATH": [[112, "path"]], "PID": [[228, "pid"]], "PKG_CONFIG_PATH=PATHS": [[31, "pkg-config-path-paths"]], "PLUGIN": [[155, "plugin"]], "PLUGINS": [[155, "plugins"]], "POSITION": [[123, "position"]], "POST": [[292, "post"]], "POST\u3067\u306e\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9": [[177, "loading-data-by-post"]], "POWER_SET": [[156, "power-set"]], "PPA\u7528\u306e\u9375\u306e\u767b\u9332": [[12, "ppa"]], "PPA\uff08Personal Package Archive\uff09": [[32, "ppa-personal-package-archive"]], "PROGRESS": [[228, "progress"]], "Plugin": [[85, null]], "QUERY": [[228, "query"]], "QUERY_STATUS": [[228, "query-status"]], "QueryExpanderTSV": [[243, null]], "RANGE": [[112, "range"], [142, "range"]], "RECORD_ID": [[123, "record-id"]], "RETURN_CODE": [[228, "return-code"]], "RapidJSON\u306e\u540c\u68b1\u3092\u7d42\u4e86": [[45, "stopped-vendoring-rapidjson"]], "Return value": [[187, "return-value"]], "SCHEMA": [[155, "id1"]], "SCORE_N": [[180, "score-n"]], "SOURCE": [[155, "source"]], "SOURCES": [[112, "sources"], [142, "sources"]], "SUCCEEDED_OR_NOT": [[115, "succeeded-or-not"], [117, "succeeded-or-not"], [126, "succeeded-or-not"], [128, "succeeded-or-not"]], "SYNOPSTIS": [[179, "synopstis"]], "Senna -> groonga - 2009-01-14": [[55, "senna-groonga-2009-01-14"]], "ShortText": [[282, "shorttext"]], "Sphinx\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5": [[17, "how-to-install-sphinx"]], "Summary": [[187, "summary"], [257, "summary"], [290, "summary"]], "Syntax": [[187, "syntax"]], "TABLE": [[155, "table"]], "TABLES": [[155, "tables"]], "TABLE_DAT_KEY": [[254, "table-dat-key"]], "TABLE_HASH_KEY": [[254, "table-hash-key"]], "TABLE_HASH_KEY: \u30b4\u30df\u30a8\u30f3\u30c8\u30ea\u30fc\u304c\u518d\u5229\u7528\u3055\u308c\u306a\u3044\u304b\u3082\u3057\u308c\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": [[45, "table-hash-key-fixed-a-bug-that-garbage-entry-may-not-be-reused"]], "TABLE_ID": [[141, "table-id"]], "TABLE_KEY_MAX_TOTAL_SIZE": [[141, "table-key-max-total-size"]], "TABLE_KEY_TOTAL_SIZE": [[141, "table-key-total-size"]], "TABLE_KEY_TYPE": [[141, "table-key-type"]], "TABLE_NAME": [[141, "table-name"]], "TABLE_NO_KEY": [[254, "table-no-key"]], "TABLE_N_RECORDS": [[141, "table-n-records"]], "TABLE_PAT_KEY": [[254, "table-pat-key"]], "TABLE_PAT_KEY: defrag\u5f8c\u306b\u65e2\u5b58\u306e\u30ad\u30fc\u304c\u58ca\u308c\u308b\u304b\u3082\u3057\u308c\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": [[45, "table-pat-key-fixed-a-bug-that-existing-key-may-be-broken-after-reference-commands-defrag"]], "TABLE_PAT_KEY: defrag\u6642\u306b\u3044\u304f\u3064\u304b\u306eWAL\u304c\u629c\u3051\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63": [[45, "table-pat-key-fixed-a-bug-that-some-wals-are-missing-for-reference-commands-defrag"]], "TABLE_PAT_KEY: \u30ad\u30fc\u306e\u578b\u3068\u3057\u3066Float32\u3092\u30b5\u30dd\u30fc\u30c8": [[46, "table-pat-key-added-support-for-builtin-type-float32-as-key-type"]], "TABLE_PAT_KEY: \u30ad\u30fc\u9818\u57df\u3092\u52b9\u7387\u5316": [[45, "table-pat-key-improved-key-space-efficiency"]], "TABLE_TYPE_ID": [[141, "table-type-id"]], "TABLE_TYPE_NAME": [[141, "table-type-name"]], "TABLE_VALUE_TYPE": [[141, "table-value-type"]], "THRESHOLD_N": [[186, "threshold-n"]], "TIME_STAMP": [[228, "time-stamp"], [228, "id4"]], "TOKENIZER": [[155, "tokenizer"]], "TOKENIZERS": [[155, "tokenizers"]], "TOKEN_FILTER": [[155, "token-filter"]], "TOKEN_FILTERS": [[142, "token-filters"], [155, "token-filters"]], "TOKEN_ID": [[123, "token-id"]], "TOKEN_VALUE": [[123, "token-value"]], "TSV": [[95, "tsv"]], "TSV\u30d5\u30a1\u30a4\u30eb": [[243, "tsv-file"]], "TYPE": [[112, "type"], [155, "type"], [180, "type"]], "TYPES": [[155, "types"]], "TYPE_ID": [[141, "type-id"]], "TYPE_ID_OF_TYPE": [[141, "type-id-of-type"]], "TYPE_NAME": [[141, "type-name"]], "TYPE_NAME_OF_TYPE": [[141, "type-name-of-type"]], "TYPE_SIZE": [[141, "type-size"]], "Text": [[282, "text"]], "Time": [[282, "time"]], "TokenBigram": [[264, null]], "TokenBigramIgnoreBlank": [[265, null]], "TokenBigramIgnoreBlankSplitSymbol": [[266, null]], "TokenBigramIgnoreBlankSplitSymbolAlpha": [[267, null]], "TokenBigramIgnoreBlankSplitSymbolAlphaDigit": [[268, null]], "TokenBigramSplitSymbol": [[269, null]], "TokenBigramSplitSymbolAlpha": [[270, null]], "TokenBigramSplitSymbolAlphaDigit": [[271, null]], "TokenDelimit": [[272, null]], "TokenDelimitNull": [[273, null]], "TokenFilterNFKC": [[257, null]], "TokenFilterNFKC100": [[258, null]], "TokenFilterNFKC150": [[259, null]], "TokenFilterNFKC\u3092\u8ffd\u52a0": [[45, "added-reference-token-filters-token-filter-nfkc"]], "TokenFilterStem": [[260, null]], "TokenFilterStopWord": [[261, null]], "TokenMecab": [[274, null]], "TokenMecab \u3068\u4f7f\u3046": [[231, "with-tokenmecab"], [235, "with-tokenmecab"]], "TokenNgram": [[275, null]], "TokenPattern": [[276, null]], "TokenRegexp": [[277, null]], "TokenTable": [[278, null]], "TokenTrigram": [[279, null]], "TokenUnigram": [[280, null]], "TokyoGeoPoint": [[282, "tokyogeopoint"]], "Travis CI": [[21, null]], "Twitter": [[2, "twitter"]], "Twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240(\u4f8b\u3048\u3070Redmine)\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044": [[10, "twitter-redmine"]], "Twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b": [[12, "twitter"]], "Twitter\u7de8": [[10, "twitter"]], "UInt16": [[282, "uint16"]], "UInt32": [[282, "uint32"]], "UInt64": [[282, "uint64"]], "UInt8": [[282, "uint8"]], "Ubuntu": [[32, null]], "Ubuntu\u5411\u3051\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u78ba\u8a8d": [[12, "ubuntu"]], "Ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "id11"]], "Ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u516c\u958b\u306e\u53d6\u308a\u6d88\u3057": [[12, "id12"]], "Unicode\u306e\u30d0\u30fc\u30b8\u30e7\u30f3": [[237, "unicode-version"]], "Usage": [[187, "usage"]], "Users\u30c6\u30fc\u30d6\u30eb": [[311, "users-table"]], "VALUE": [[116, "value"]], "VECTOR_COLUMN_VALUE_WEIGHT": [[141, "vector-column-value-weight"]], "VECTOR_COLUMN_VALUE_WEIGHT_BFLOAT16": [[141, "vector-column-value-weight-bfloat16"]], "VECTOR_COLUMN_VALUE_WEIGHT_FLOAT32": [[141, "vector-column-value-weight-float32"]], "WGS84GeoPoint": [[282, "wgs84geopoint"]], "Web\u30d6\u30e9\u30a6\u30b6\u3067\u751f\u6210\u3055\u308c\u305fHTML\u30d5\u30a1\u30a4\u30eb\u3092\u78ba\u8a8d\u3059\u308b": [[18, "preview-the-generated-html-files-in-your-web-browser"]], "Windows": [[27, "windows"], [27, "id2"], [27, "id6"], [33, null]], "Windows\u306eMSYS2\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": [[12, "windowsmsys2"]], "Windows\u4e0a\u3067CMake\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5": [[8, null]], "XML": [[95, "xml"]], "[GQTP] \u9593\u9055\u3063\u305f\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9\u304c\u8fd4\u3055\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63": [[45, "server-gqtp-fixed-a-bug-that-wrong-return-code-is-returned"]], "[column_create] generator\u5f15\u6570\u3092\u8ffd\u52a0": [[45, "reference-commands-column-create-added-the-column-create-generator-parameter"]], "[index_column_diff] \u64ec\u967d\u6027\u306e\u5dee\u5206\u304c\u5831\u544a\u3055\u308c\u308b\u304b\u3082\u3057\u308c\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": [[45, "reference-commands-index-column-diff-fixed-a-bug-that-false-positive-diff-may-be-reported"]], "[language_model_vectorize] \u8ffd\u52a0\uff08\u5b9f\u9a13\u7684\uff09": [[45, "reference-functions-language-model-vectorize-added-experimental"]], "[logical_range_filter] \u4e0d\u6b63\u306aJSON\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306e\u30ec\u30b9\u30dd\u30f3\u30b9\u304c\u8fd4\u3055\u308c\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63": [[45, "reference-commands-logical-range-filter-fixed-a-bug-that-invalid-json-format-response-may-be-returned"], [45, "reference-commands-request-cancel-fixed-a-bug-that-invalid-json-format-response-may-be-returned"]], "[status] .[\"features\"][\"llama.cpp\"]\u30a8\u30f3\u30c8\u30ea\u30fc\u3092\u8ffd\u52a0": [[45, "reference-commands-status-added-features-llama-cpp-entry"]], "access_log": [[177, "access-log"]], "adjuster": [[156, "adjuster"]], "algorithm": [[260, "algorithm"]], "approximate_type": [[188, "approximate-type"]], "auto_release_count": [[149, "auto-release-count"]], "between": [[183, null]], "bookworm": [[28, "bookworm"]], "cache": [[132, "cache"], [134, "cache"], [135, "cache"], [156, "cache"]], "cache_limit": [[107, null]], "cast_loose": [[184, null]], "check": [[108, null], [173, "check"]], "clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "clang"]], "clearlock": [[109, null]], "close_tagN": [[191, "close-tagn"], [192, "close-tagn"]], "cmake \u3092 --preset=doc \u4ed8\u304d\u3067\u5b9f\u884c": [[18, "run-cmake-with-preset-doc"]], "cmake \u3092\u5b9f\u884c": [[8, "run-cmake"], [27, "run-cmake"]], "column": [[191, "column"], [192, "column"], [201, "column"], [211, "column"], [246, "column"], [247, "column"]], "column_copy": [[110, null]], "column_create": [[111, null]], "column_list": [[112, null]], "column_or_value": [[183, "column-or-value"]], "column_remove": [[113, null]], "column_rename": [[114, null]], "columns": [[125, "columns"], [261, "columns"]], "columns[${NAME}].flags": [[132, "columns-name-flags"], [134, "columns-name-flags"], [135, "columns-name-flags"], [156, "columns-name-flags"]], "columns[${NAME}].stage": [[132, "columns-name-stage"], [134, "columns-name-stage"], [135, "columns-name-stage"], [156, "columns-name-stage"]], "columns[${NAME}].type": [[132, "columns-name-type"], [134, "columns-name-type"], [135, "columns-name-type"], [156, "columns-name-type"]], "columns[${NAME}].value": [[132, "columns-name-value"], [134, "columns-name-value"], [135, "columns-name-value"], [156, "columns-name-value"]], "columns[${NAME}].window.group_keys": [[132, "columns-name-window-group-keys"], [134, "columns-name-window-group-keys"], [135, "columns-name-window-group-keys"], [156, "columns-name-window-group-keys"]], "columns[${NAME}].window.sort_keys": [[132, "columns-name-window-sort-keys"], [134, "columns-name-window-sort-keys"], [135, "columns-name-window-sort-keys"], [156, "columns-name-window-sort-keys"]], "command_version\u30d1\u30e9\u30e1\u30fc\u30bf": [[93, "id4"]], "condition_column_name": [[195, "condition-column-name"]], "condition_table": [[195, "condition-table"]], "config_delete": [[115, null]], "config_get": [[116, null]], "config_set": [[117, null]], "configure": [[31, "configure"]], "configure \u3092\u4f5c\u308b": [[6, "create-configure"]], "configure \u3092\u5b9f\u884c": [[6, "run-configure"]], "contain(v1, v2, mode, arg, callback)": [[11, "contain-v1-v2-mode-arg-callback"]], "database_path": [[181, "database-path"]], "database_unmap": [[118, null]], "default-command-version\u30d1\u30e9\u30e1\u30fc\u30bf": [[93, "default-command-version"]], "default_mode": [[202, "default-mode"], [203, "default-mode"]], "default_operator": [[202, "default-operator"], [203, "default-operator"]], "default_tokenizer": [[161, "default-tokenizer"]], "define_selector": [[119, null]], "defrag": [[120, null]], "defrag: TABLE_PAT_KEY\u306e\u30ab\u30e9\u30e0\u304c\u51e6\u7406\u3055\u308c\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": [[45, "reference-commands-defrag-fixed-a-bug-that-columns-of-table-pat-key-aren-t-processed"]], "defrag: TABLE_PAT_KEY\u3092\u30b5\u30dd\u30fc\u30c8": [[45, "reference-commands-defrag-added-support-for-table-pat-key"]], "delete": [[121, null]], "delete: \u53c2\u7167\u91cd\u307f\u4ed8\u304d\u30d9\u30af\u30bf\u30fc\u3092\u30b5\u30dd\u30fc\u30c8": [[45, "reference-commands-delete-added-support-for-reference-weight-vector"]], "delimiter": [[272, "delimiter"]], "dependent": [[137, "dependent"], [163, "dependent"]], "docker-compose\u3092\u7528\u3044\u308b\u5834\u5408": [[29, "with-docker-compose"]], "domain \u30ab\u30e9\u30e0\u306b\u3088\u308b\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3": [[306, "id1"]], "drilldown": [[135, "drilldown"], [156, "select-drilldown"]], "drilldown_calc_target": [[135, "drilldown-calc-target"], [156, "drilldown-calc-target"]], "drilldown_calc_types": [[135, "drilldown-calc-types"], [156, "drilldown-calc-types"]], "drilldown_filter": [[135, "drilldown-filter"], [156, "drilldown-filter"]], "drilldown_limit": [[135, "drilldown-limit"], [156, "drilldown-limit"]], "drilldown_max_n_target_records": [[156, "drilldown-max-n-target-records"]], "drilldown_offset": [[135, "drilldown-offset"], [156, "drilldown-offset"]], "drilldown_output_columns": [[135, "drilldown-output-columns"], [156, "drilldown-output-columns"]], "drilldown_sort_keys": [[135, "drilldown-sort-keys"], [156, "drilldown-sort-keys"]], "drilldown_sortby": [[135, "drilldown-sortby"], [156, "drilldown-sortby"]], "drilldowns[${LABEL}] \u30b9\u30bf\u30a4\u30eb\u306e\u51fa\u529b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8": [[156, "output-format-for-drilldowns-label-style"]], "drilldowns[${LABEL}].calc_target": [[135, "drilldowns-label-calc-target"]], "drilldowns[${LABEL}].calc_types": [[135, "drilldowns-label-calc-types"]], "drilldowns[${LABEL}].columns[${NAME}].flags": [[135, "drilldowns-label-columns-name-flags"]], "drilldowns[${LABEL}].columns[${NAME}].stage": [[135, "drilldowns-label-columns-name-stage"], [156, "drilldowns-label-columns-name-stage"]], "drilldowns[${LABEL}].columns[${NAME}].type": [[135, "drilldowns-label-columns-name-type"]], "drilldowns[${LABEL}].columns[${NAME}].value": [[135, "drilldowns-label-columns-name-value"]], "drilldowns[${LABEL}].columns[${NAME}].window.group_keys": [[135, "drilldowns-label-columns-name-window-group-keys"]], "drilldowns[${LABEL}].columns[${NAME}].window.sort_keys": [[135, "drilldowns-label-columns-name-window-sort-keys"]], "drilldowns[${LABEL}].filter": [[135, "drilldowns-label-filter"]], "drilldowns[${LABEL}].key_vector_expansion": [[156, "drilldowns-label-key-vector-expansion"]], "drilldowns[${LABEL}].keys": [[135, "drilldowns-label-keys"], [156, "drilldowns-label-keys"]], "drilldowns[${LABEL}].limit": [[135, "drilldowns-label-limit"]], "drilldowns[${LABEL}].offset": [[135, "drilldowns-label-offset"]], "drilldowns[${LABEL}].output_columns": [[135, "drilldowns-label-output-columns"], [156, "drilldowns-label-output-columns"]], "drilldowns[${LABEL}].sort_keys": [[135, "drilldowns-label-sort-keys"]], "drilldowns[${LABEL}].sortby": [[135, "drilldowns-label-sortby"]], "drilldowns[${LABEL}].table": [[156, "drilldowns-label-table"]], "dump": [[122, null]], "dump_indexes": [[122, "dump-indexes"]], "dump_plugins": [[122, "dump-plugins"]], "dump_records": [[122, "dump-records"]], "dump_schema": [[122, "dump-schema"]], "each": [[125, "each"]], "edit_distance": [[185, null]], "ellipsoid": [[188, "ellipsoid"]], "equal(v1, v2, arg, callback)": [[11, "equal-v1-v2-arg-callback"]], "escalate": [[186, null]], "filter": [[132, "filter"], [134, "filter"], [135, "filter"], [156, "filter"]], "filter_string": [[210, "filter-string"]], "flags": [[111, "flags"], [138, "flags"], [161, "flags"], [165, "flags"], [168, "flags"], [202, "flags"], [203, "flags"], [298, "flags"]], "force": [[137, "force"], [143, "force"]], "from_name": [[110, "from-name"], [160, "from-name"]], "from_table": [[110, "from-table"]], "fuzzy_max_distance": [[156, "fuzzy-max-distance"]], "fuzzy_max_distance_ratio": [[156, "fuzzy-max-distance-ratio"]], "fuzzy_max_expansions": [[156, "fuzzy-max-expansions"]], "fuzzy_prefix_length": [[156, "fuzzy-prefix-length"]], "fuzzy_search": [[187, null]], "fuzzy_with_tokenize": [[156, "fuzzy-with-tokenize"]], "fuzzy_with_transposition": [[156, "fuzzy-with-transposition"]], "generator": [[111, "generator"]], "geo_distance": [[188, null]], "geo_in_circle": [[189, null]], "geo_in_rectangle": [[190, null]], "greater(v1, v2, arg, callback)": [[11, "greater-v1-v2-arg-callback"]], "greater_equal(v1, v2, arg, callback)": [[11, "greater-equal-v1-v2-arg-callback"]], "grn_cache": [[61, null]], "grn_column": [[62, null]], "grn_command_version": [[63, null]], "grn_content_type": [[64, null]], "grn_ctx": [[65, null]], "grn_db": [[66, null]], "grn_encoding": [[67, null]], "grn_expr": [[11, "grn-expr"], [68, null], [223, null]], "grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea": [[11, "id3"]], "grn_geo": [[69, null]], "grn_hook": [[70, null]], "grn_ii": [[71, null]], "grn_index_cursor": [[72, null]], "grn_info": [[73, null]], "grn_inspect": [[74, null]], "grn_match_escalation": [[75, null]], "grn_obj": [[76, null]], "grn_pat_size(): \u30a8\u30e9\u30fc\u6642\u306b0\u3092\u8fd4\u3055\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63": [[45, "grn-pat-size-fixed-a-bug-that-0-may-not-be-returned-on-error"]], "grn_proc": [[77, null]], "grn_search": [[78, null]], "grn_table": [[79, null]], "grn_table_cursor": [[80, null]], "grn_table_select()": [[11, "grn-table-select"]], "grn_thread_*": [[81, null]], "grn_type": [[82, null]], "grn_user_data": [[83, null]], "grndb": [[173, null]], "grnslap": [[174, null]], "groonga": [[177, "groonga"], [293, null]], "groonga \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb": [[175, null]], "groonga \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb: context_id\u30ed\u30b0\u30d5\u30e9\u30b0\u3092\u8ffd\u52a0": [[45, "reference-executables-groonga-added-context-id-log-flag"]], "groonga \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb: \u30a8\u30e9\u30fc\u51e6\u7406\u3092\u6539\u826f": [[45, "reference-executables-groonga-improved-error-handling"]], "groonga-benchmark": [[176, null]], "groonga-benchmark\u547d\u4ee4": [[176, "id8"]], "groonga-benchmark\u5b9f\u884c\u7d50\u679c": [[176, "id12"]], "groonga-httpd": [[177, null], [294, null], [296, "groonga-httpd"]], "groonga-httpd\u7279\u6709\u306e\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6": [[177, "groonga-httpd-specific-directives"]], "groonga-server-gqtp": [[296, "groonga-server-gqtp"]], "groonga-server-http": [[296, "groonga-server-http"]], "groonga-suggest-create-dataset": [[179, null]], "groonga-suggest-httpd": [[180, null]], "groonga-suggest-httpd \u3092\u8d77\u52d5": [[180, "launch-groonga-suggest-httpd"]], "groonga-suggest-learner": [[181, null]], "groonga-suggest-learner \u3092\u8d77\u52d5": [[180, "launch-groonga-suggest-learner"]], "groonga_base_path": [[177, "groonga-base-path"]], "groonga_cache_base_path": [[177, "groonga-cache-base-path"]], "groonga_cache_limit": [[177, "groonga-cache-limit"]], "groonga_database": [[177, "groonga-database"]], "groonga_database_auto_create": [[177, "groonga-database-auto-create"]], "groonga_log_level": [[177, "groonga-log-level"]], "groonga_log_path": [[177, "groonga-log-path"]], "groonga_query_log_path": [[177, "groonga-query-log-path"]], "groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e--default-n-workers\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3059\u308b": [[94, "specified-by-default-n-workers-option-of-groonga-executable-file"]], "gzip\u5727\u7e2e": [[292, "gzip-compression"]], "highlight": [[191, null]], "highlight_full": [[192, null]], "highlight_html": [[193, null]], "html": [[194, "html"]], "html_untag": [[194, null]], "id": [[153, "id"]], "ifexists": [[125, "ifexists"]], "ignore_blank": [[275, "ignore-blank"]], "in_records": [[195, null]], "in_values": [[196, null]], "include_class": [[274, "include-class"]], "include_form": [[274, "include-form"]], "include_reading": [[274, "include-reading"]], "index": [[246, "index"], [247, "index"]], "index_column": [[165, "index-column"]], "index_column_diff": [[123, null]], "index_column_diff: \u30d7\u30ed\u30b0\u30ec\u30b9\u30ed\u30b0\u306e\u5909\u66f4\u3092\u30b5\u30dd\u30fc\u30c8": [[45, "reference-commands-index-column-diff-added-support-for-changing-log-level-for-progress-logs"]], "input_type": [[125, "input-type"]], "io_flush": [[124, null]], "kern.maxfileperproc": [[281, "kern-maxfileperproc"]], "key": [[115, "key"], [116, "key"], [117, "key"]], "key_type": [[161, "key-type"]], "keywordN": [[191, "keywordn"], [192, "keywordn"]], "language_model_vectorize": [[197, null]], "language_model_vectorize: Phi-4\u3092\u30b5\u30dd\u30fc\u30c8": [[45, "reference-functions-language-model-vectorize-added-support-for-phi-4"]], "lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "lcov"]], "length": [[208, "length"], [209, "length"]], "less(v1, v2, arg, callback)": [[11, "less-v1-v2-arg-callback"]], "less_equal(v1, v2, arg, callback)": [[11, "less-equal-v1-v2-arg-callback"]], "level": [[129, "level"]], "libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[14, "libmemcached"]], "limit": [[134, "limit"], [135, "limit"], [156, "limit"]], "llama.cpp\u306e\u521d\u671f\u5316\u51e6\u7406\u3092\u9045\u5ef6\u5316": [[45, "made-llama-cpp-initialization-lazy"]], "load": [[125, null]], "load: \u30a8\u30e9\u30fc\u51e6\u7406\u3092\u6539\u826f": [[45, "reference-commands-load-improved-error-handling"]], "load_columns": [[135, "load-columns"], [156, "load-columns"]], "load_table": [[135, "load-table"], [156, "load-table"]], "load_values": [[135, "load-values"], [156, "load-values"]], "location\u30ab\u30e9\u30e0\u306e\u5024\u3092\u4f7f\u3046": [[188, "using-the-column-value-of-location"]], "lock_acquire": [[126, null]], "lock_clear": [[127, null]], "lock_release": [[128, null]], "lock_table": [[125, "lock-table"]], "log_level": [[129, null]], "log_put": [[130, null]], "log_reopen": [[131, null]], "log_reopen \u3067\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30c8\u3092\u5b9f\u65bd\u3059\u308b": [[131, "lotate-log-files-with-log-reopen"]], "logical_count": [[132, null]], "logical_parameters": [[133, null]], "logical_range_filter": [[134, null]], "logical_select": [[135, null]], "logical_shard_list": [[136, null]], "logical_table": [[132, "logical-table"], [134, "logical-table"], [135, "logical-table"], [136, "logical-table"], [137, "logical-table"]], "logical_table_remove": [[137, null]], "loose_blank": [[275, "loose-blank"]], "loose_symbol": [[275, "loose-symbol"]], "macOS": [[27, "macos"], [30, null]], "make": [[31, "make"]], "make install": [[31, "make-install"]], "make \u3092\u5b9f\u884c": [[6, "run-make"]], "match_columns": [[135, "match-columns"], [156, "match-columns"], [202, "match-columns"], [203, "match-columns"]], "match_columns\u30d1\u30e9\u30e1\u30fc\u30bf": [[310, null]], "match_escalation": [[156, "match-escalation"]], "match_escalation_threshold": [[135, "match-escalation-threshold"], [156, "match-escalation-threshold"]], "math_abs": [[198, null]], "max": [[107, "max"], [132, "max"], [134, "max"], [135, "max"], [137, "max"], [167, "max"], [183, "max"]], "max_border": [[132, "max-border"], [134, "max-border"], [135, "max-border"], [137, "max-border"], [183, "max-border"]], "max_n_results": [[205, "max-n-results"]], "min": [[132, "min"], [134, "min"], [135, "min"], [137, "min"], [183, "min"]], "min_border": [[132, "min-border"], [134, "min-border"], [135, "min-border"], [137, "min-border"], [183, "min-border"]], "mmap Cannot allocate memory\u30a8\u30e9\u30fc\u3092\u56de\u907f\u3059\u308b\u306b\u306f": [[303, null]], "mode": [[157, "mode"], [165, "mode"], [168, "mode"], [219, "mode"]], "mode_name": [[195, "mode-name"]], "model_name": [[197, "model-name"]], "n": [[275, "n"]], "n_workers": [[156, "n-workers"]], "name": [[111, "name"], [114, "name"], [123, "name"], [140, "name"], [141, "name"], [143, "name"], [161, "name"], [163, "name"], [164, "name"], [208, "name"]], "near(v1, v2, arg, callback)": [[11, "near-v1-v2-arg-callback"]], "new_name": [[114, "new-name"], [164, "new-name"]], "nginx\u30ed\u30b0\u95a2\u9023\u306e\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6": [[177, "nginx-log-related-directives"]], "nofile": [[281, "nofile"]], "normalize": [[138, null]], "normalized": [[237, "normalized"]], "normalizer": [[138, "normalizer"], [161, "normalizer"], [168, "normalizer"]], "normalizer_list": [[139, null]], "normalizer_name": [[192, "normalizer-name"]], "not_equal(v1, v2, arg, callback)": [[11, "not-equal-v1-v2-arg-callback"]], "now": [[199, null]], "nth": [[208, "nth"], [208, "id4"], [209, "nth"]], "number_classify": [[200, null]], "object_exist": [[140, null]], "object_inspect": [[141, null]], "object_list": [[142, null]], "object_remove": [[143, null]], "offset": [[134, "offset"], [135, "offset"], [156, "offset"]], "only_opened": [[124, "only-opened"]], "open_tagN": [[191, "open-tagn"], [192, "open-tagn"]], "options": [[208, "options"], [208, "id5"], [209, "options"]], "order": [[134, "order"]], "output_columns": [[134, "output-columns"], [135, "output-columns"], [156, "output-columns"]], "output_errors": [[125, "output-errors"]], "output_ids": [[125, "output-ids"]], "path": [[111, "path"], [161, "path"]], "pattern": [[272, "pattern"]], "plugin_register": [[144, null]], "plugin_unregister": [[145, null]], "point1": [[188, "point1"]], "point2": [[188, "point2"]], "post_filter": [[132, "post-filter"], [134, "post-filter"], [135, "post-filter"]], "prefix(v1, v2, arg, callback)": [[11, "prefix-v1-v2-arg-callback"]], "prefix_rk_search": [[201, null]], "progress_log_level": [[123, "progress-log-level"]], "protocol": [[298, "id1"]], "proxy_cache": [[177, "proxy-cache"]], "pull request\u306e\u9001\u308a\u65b9": [[17, "how-to-send-pull-request"]], "query": [[135, "query"], [156, "query"], [201, "query"], [202, null]], "query_expand": [[146, null]], "query_expander": [[135, "query-expander"], [156, "query-expander"], [202, "query-expander"], [203, "query-expander"]], "query_expansion": [[156, "query-expansion"]], "query_flags": [[135, "query-flags"], [156, "query-flags"]], "query_parallel_or": [[203, null]], "query_string": [[202, "query-string"], [203, "query-string"]], "query_type": [[298, "query-type"]], "quit": [[147, null]], "rake release \u306e\u5b9f\u884c": [[12, "rake-release"]], "rand": [[204, null]], "range_filter": [[148, null]], "range_index": [[133, "range-index"]], "record_number": [[284, null]], "recover": [[173, "recover"]], "rectangle": [[188, "rectangle"]], "recursive": [[124, "recursive"], [149, "recursive"], [150, "recursive"]], "reference_acquire": [[149, null]], "reference_release": [[150, null]], "regexp": [[208, "regexp"]], "register": [[151, null]], "reindex": [[152, null]], "remove_blank": [[275, "remove-blank"]], "remove_symbol": [[231, "remove-symbol"], [234, "remove-symbol"], [235, "remove-symbol"]], "report_source_location": [[275, "report-source-location"]], "request_cancel": [[153, null]], "ruby_eval": [[154, null]], "schema": [[155, null]], "scope": [[210, "scope"]], "scorer": [[135, "scorer"], [156, "scorer"]], "scorer \u3092\u5229\u7528\u3057\u305f\u30bd\u30fc\u30c8": [[315, "sort-by-using-scorer"]], "scorer_tf_at_most": [[246, null]], "scorer_tf_idf": [[247, null]], "script": [[154, "script"]], "select": [[156, null]], "select \u3068\u306e\u9055\u3044": [[135, "differences-from-select"]], "shard_key": [[132, "shard-key"], [134, "shard-key"], [135, "shard-key"], [137, "shard-key"]], "shutdown": [[157, null]], "similar(v1, v2, arg, callback)": [[11, "similar-v1-v2-arg-callback"]], "size": [[298, "size"]], "slices[${LABEL}].filter": [[156, "slices-label-filter"]], "slices[${LABEL}].limit": [[156, "slices-label-limit"]], "slices[${LABEL}].match_columns": [[156, "slices-label-match-columns"]], "slices[${LABEL}].offset": [[156, "slices-label-offset"]], "slices[${LABEL}].output_columns": [[156, "slices-label-output-columns"]], "slices[${LABEL}].query": [[156, "slices-label-query"]], "slices[${LABEL}].query_expander": [[156, "slices-label-query-expander"]], "slices[${LABEL}].query_flags": [[156, "slices-label-query-flags"]], "slices[${LABEL}].sort_keys": [[156, "slices-label-sort-keys"]], "snippet": [[205, null]], "snippet_html": [[206, null]], "sort_hash_table": [[122, "sort-hash-table"]], "sort_keys": [[134, "sort-keys"], [135, "sort-keys"], [156, "sort-keys"]], "sortby": [[135, "sortby"], [156, "sortby"]], "source": [[111, "source"]], "sphere": [[188, "sphere"]], "status": [[158, null], [298, "status"]], "string": [[138, "string"], [165, "string"], [168, "string"]], "string_length": [[207, null]], "string_slice": [[208, null]], "string_substring": [[209, null]], "sub_filter": [[210, null]], "suffix(v1, v2, arg, callback)": [[11, "suffix-v1-v2-arg-callback"]], "suggest": [[159, null]], "table": [[111, "table"], [112, "table"], [114, "table"], [123, "table"], [125, "table"], [156, "table"], [165, "table"]], "table_copy": [[160, null]], "table_create": [[161, null]], "table_list": [[162, null]], "table_remove": [[163, null]], "table_rename": [[164, null]], "table_tokenize": [[165, null]], "tables": [[122, "tables"]], "target": [[198, "target"], [208, "target"], [208, "id3"], [209, "target"], [221, "target"], [237, "target"]], "target_class": [[274, "target-class"]], "target_name": [[124, "target-name"], [126, "target-name"], [127, "target-name"], [128, "target-name"], [149, "target-name"], [150, "target-name"], [152, "target-name"], [170, "target-name"]], "target_value": [[196, "target-value"]], "text": [[193, "text"], [197, "text"]], "thread_dump": [[166, null]], "thread_limit": [[167, null]], "time_classify_day": [[211, null]], "time_classify_day_of_week": [[212, null]], "time_classify_hour": [[213, null]], "time_classify_minute": [[214, null]], "time_classify_month": [[215, null]], "time_classify_second": [[216, null]], "time_classify_week": [[217, null]], "time_classify_year": [[218, null]], "to_name": [[110, "to-name"], [160, "to-name"]], "to_table": [[110, "to-table"]], "token_filters": [[161, "token-filters"], [168, "token-filters"]], "tokenize": [[168, null]], "tokenizer": [[168, "tokenizer"]], "tokenizer_list": [[169, null]], "truncate": [[170, null]], "type": [[111, "type"]], "unicode_version": [[237, "normalizer-table-unicode-version"]], "unify_alphabet": [[275, "unify-alphabet"]], "unify_digit": [[275, "unify-digit"]], "unify_hyphen": [[231, "unify-hyphen"], [232, "unify-hyphen"], [233, "unify-hyphen"], [234, "unify-hyphen"], [235, "unify-hyphen"], [258, "unify-hyphen"], [259, "unify-hyphen"]], "unify_hyphen_and_prolonged_sound_mark": [[231, "unify-hyphen-and-prolonged-sound-mark"], [232, "unify-hyphen-and-prolonged-sound-mark"], [233, "unify-hyphen-and-prolonged-sound-mark"], [234, "unify-hyphen-and-prolonged-sound-mark"], [235, "unify-hyphen-and-prolonged-sound-mark"], [258, "unify-hyphen-and-prolonged-sound-mark"], [259, "unify-hyphen-and-prolonged-sound-mark"]], "unify_kana": [[231, "unify-kana"], [232, "unify-kana"], [233, "unify-kana"], [234, "unify-kana"], [235, "unify-kana"], [258, "unify-kana"], [259, "unify-kana"]], "unify_kana_case": [[231, "unify-kana-case"], [232, "unify-kana-case"], [233, "unify-kana-case"], [234, "unify-kana-case"], [235, "unify-kana-case"], [258, "unify-kana-case"], [259, "unify-kana-case"]], "unify_kana_hyphen": [[231, "unify-kana-hyphen"], [232, "unify-kana-hyphen"], [233, "unify-kana-hyphen"], [234, "unify-kana-hyphen"], [235, "unify-kana-hyphen"]], "unify_kana_prolonged_sound_mark": [[231, "unify-kana-prolonged-sound-mark"], [232, "unify-kana-prolonged-sound-mark"], [233, "unify-kana-prolonged-sound-mark"], [234, "unify-kana-prolonged-sound-mark"], [235, "unify-kana-prolonged-sound-mark"]], "unify_kana_voiced_sound_mark": [[231, "unify-kana-voiced-sound-mark"], [232, "unify-kana-voiced-sound-mark"], [233, "unify-kana-voiced-sound-mark"], [234, "unify-kana-voiced-sound-mark"], [235, "unify-kana-voiced-sound-mark"], [258, "unify-kana-voiced-sound-mark"], [259, "unify-kana-voiced-sound-mark"]], "unify_katakana_bu_sound": [[231, "unify-katakana-bu-sound"], [232, "unify-katakana-bu-sound"], [233, "unify-katakana-bu-sound"], [234, "unify-katakana-bu-sound"], [235, "unify-katakana-bu-sound"], [258, "unify-katakana-bu-sound"], [259, "unify-katakana-bu-sound"]], "unify_katakana_di_sound": [[231, "unify-katakana-di-sound"], [232, "unify-katakana-di-sound"], [233, "unify-katakana-di-sound"], [234, "unify-katakana-di-sound"], [235, "unify-katakana-di-sound"]], "unify_katakana_du_small_sounds": [[231, "unify-katakana-du-small-sounds"], [232, "unify-katakana-du-small-sounds"], [233, "unify-katakana-du-small-sounds"], [234, "unify-katakana-du-small-sounds"], [235, "unify-katakana-du-small-sounds"]], "unify_katakana_du_sound": [[231, "unify-katakana-du-sound"], [232, "unify-katakana-du-sound"], [233, "unify-katakana-du-sound"], [234, "unify-katakana-du-sound"], [235, "unify-katakana-du-sound"]], "unify_katakana_gu_small_sounds": [[231, "unify-katakana-gu-small-sounds"], [232, "unify-katakana-gu-small-sounds"], [233, "unify-katakana-gu-small-sounds"], [234, "unify-katakana-gu-small-sounds"], [235, "unify-katakana-gu-small-sounds"]], "unify_katakana_trailing_o": [[231, "unify-katakana-trailing-o"], [232, "unify-katakana-trailing-o"], [233, "unify-katakana-trailing-o"], [234, "unify-katakana-trailing-o"], [235, "unify-katakana-trailing-o"]], "unify_katakana_v_sounds": [[231, "unify-katakana-v-sounds"], [232, "unify-katakana-v-sounds"], [233, "unify-katakana-v-sounds"], [234, "unify-katakana-v-sounds"], [235, "unify-katakana-v-sounds"], [258, "unify-katakana-v-sounds"], [259, "unify-katakana-v-sounds"]], "unify_katakana_wo_sound": [[231, "unify-katakana-wo-sound"], [232, "unify-katakana-wo-sound"], [233, "unify-katakana-wo-sound"], [234, "unify-katakana-wo-sound"], [235, "unify-katakana-wo-sound"]], "unify_katakana_zu_small_sounds": [[231, "unify-katakana-zu-small-sounds"], [232, "unify-katakana-zu-small-sounds"], [233, "unify-katakana-zu-small-sounds"], [234, "unify-katakana-zu-small-sounds"], [235, "unify-katakana-zu-small-sounds"]], "unify_latin_alphabet_with": [[231, "unify-latin-alphabet-with"], [235, "unify-latin-alphabet-with"]], "unify_middle_dot": [[231, "unify-middle-dot"], [232, "unify-middle-dot"], [233, "unify-middle-dot"], [234, "unify-middle-dot"], [235, "unify-middle-dot"], [258, "unify-middle-dot"], [259, "unify-middle-dot"]], "unify_prolonged_sound_mark": [[231, "unify-prolonged-sound-mark"], [232, "unify-prolonged-sound-mark"], [233, "unify-prolonged-sound-mark"], [234, "unify-prolonged-sound-mark"], [235, "unify-prolonged-sound-mark"], [258, "unify-prolonged-sound-mark"], [259, "unify-prolonged-sound-mark"]], "unify_symbol": [[275, "unify-symbol"]], "unify_to_katakana": [[231, "unify-to-katakana"], [235, "unify-to-katakana"]], "unify_to_katakana \u3092\u4ed6\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u4f7f\u3046": [[231, "use-unify-to-katakana-with-other-options"], [235, "use-unify-to-katakana-with-other-options"]], "unify_to_romaji": [[231, "unify-to-romaji"], [232, "unify-to-romaji"], [233, "unify-to-romaji"], [234, "unify-to-romaji"], [235, "unify-to-romaji"], [258, "unify-to-romaji"], [259, "unify-to-romaji"]], "use_html_escape": [[192, "use-html-escape"]], "use_range_index": [[134, "use-range-index"]], "use_reading": [[274, "use-reading"]], "value": [[117, "value"], [195, "value"], [196, "value"], [219, "value"]], "value_type": [[161, "value-type"]], "values": [[125, "values"]], "vector": [[219, "vector"]], "vector_find": [[219, null]], "vector_new": [[220, null]], "vector_size": [[221, null]], "vector_slice": [[222, null]], "version": [[231, "version"]], "vm.max_map_count": [[281, "vm-max-map-count"]], "vm.overcommit_memory": [[281, "vm-overcommit-memory"]], "width": [[205, "width"]], "window_count": [[285, null]], "window_rank": [[286, null]], "window_record_number": [[287, null]], "window_sum": [[288, null]], "worker_processes": [[177, "worker-processes"]], "zip": [[33, "zip"]], "{\"default_close_tag\": \"close_tag\"}": [[191, "default-close-tag-close-tag"]], "{\"default_open_tag\": \"open_tag\"}": [[191, "default-open-tag-open-tag"]], "{\"html_escape\": true} or {\"html_mode\": true}": [[191, "html-escape-true-or-html-mode-true"]], "{\"normalizer\": \"Normalizerxxx\"}": [[191, "normalizer-normalizerxxx"]], "{\"normalizers\": \"Normalizerxxx\"}": [[191, "normalizers-normalizerxxx"]], "{\"option\": \"value of option\"}": [[183, "option-value-of-option"], [196, "option-value-of-option"]], "{\"sequential_class_tag_mode\": true}": [[191, "sequential-class-tag-mode-true"], [193, "sequential-class-tag-mode-true"]], "\u3042\u3044\u307e\u3044\u30af\u30a8\u30ea\u30fc\u95a2\u9023\u306e\u5f15\u6570": [[156, "fuzzy-query-related-parameters"]], "\u3042\u308b\u30e6\u30fc\u30b6\u30fc\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u308b\u30e6\u30fc\u30b6\u30fc\u306e\u691c\u7d22": [[311, "search-users-who-follows-specific-user"]], "\u3044\u308d\u3044\u308d\u306a\u30c7\u30fc\u30bf\u306e\u4fdd\u5b58": [[305, null]], "\u304a\u77e5\u3089\u305b": [[35, null]], "\u304a\u77e5\u3089\u305b - 1.3\u7cfb": [[40, null]], "\u304a\u77e5\u3089\u305b - 10\u7cfb": [[41, null]], "\u304a\u77e5\u3089\u305b - 11\u7cfb": [[42, null]], "\u304a\u77e5\u3089\u305b - 12\u7cfb": [[43, null]], "\u304a\u77e5\u3089\u305b - 13\u7cfb": [[44, null]], "\u304a\u77e5\u3089\u305b - 14\u7cfb": [[45, null]], "\u304a\u77e5\u3089\u305b - 15\u7cfb": [[46, null]], "\u304a\u77e5\u3089\u305b - 2\u7cfb": [[47, null]], "\u304a\u77e5\u3089\u305b - 3\u7cfb": [[48, null]], "\u304a\u77e5\u3089\u305b - 4\u7cfb": [[49, null]], "\u304a\u77e5\u3089\u305b - 5\u7cfb": [[50, null]], "\u304a\u77e5\u3089\u305b - 6\u7cfb": [[51, null]], "\u304a\u77e5\u3089\u305b - 7\u7cfb": [[52, null]], "\u304a\u77e5\u3089\u305b - 8\u7cfb": [[53, null]], "\u304a\u77e5\u3089\u305b - 9\u7cfb": [[54, null]], "\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b": [[10, "id5"]], "\u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6": [[315, null]], "\u305d\u3057\u3066Groonga\u3078": [[56, "the-evolution-to-groonga"]], "\u305d\u306e\u4ed6": [[31, null], [244, "others"]], "\u305d\u306e\u4ed6: CMake\u3092\u4f7f\u3063\u3066\u30d3\u30eb\u30c9": [[27, null]], "\u3069\u306e\u3088\u3046\u306b\u52d5\u4f5c\u3059\u308b\u304b": [[250, "how-it-works"], [251, "how-it-works"], [253, "how-it-works"]], "\u306f\u3058\u3081\u306b": [[252, null]], "\u30a2\u30af\u30bb\u30b9\u30ed\u30b0": [[292, "access-log"]], "\u30a2\u30f3\u30ab\u30fc": [[244, "anchor"]], "\u30a4\u30e1\u30fc\u30b8\u306e\u53d6\u5f97": [[29, "pulling-image"]], "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[23, null], [243, "install"]], "\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u754c\u9688\u306e\u72b6\u6cc1": [[56, "the-internet-landscape-at-that-time"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [[244, "index"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u91cd\u307f": [[310, "indexes-with-weight"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0": [[87, "index-column"], [88, null]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0: \u9759\u7684\u306a\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9\u65b9\u6cd5\u306e\u554f\u984c\u3092\u4fee\u6b63": [[45, "reference-columns-index-fixed-an-offline-index-construction-bug"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-an-index-column"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u4e0a\u9650\u5024": [[34, "limitations-of-indexing"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u4ed8\u304d\u30b8\u30aa\u30b5\u30fc\u30c1": [[307, "geo-location-search-with-index"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u540d\u3092\u6307\u5b9a\u3057\u305f\u5168\u6587\u691c\u7d22": [[310, "full-text-search-with-specific-index-name"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5bfe\u8c61\u30c7\u30fc\u30bf\u306e\u7a2e\u985e\u6570\u3068\u5c0f\u3055\u306a\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3067\u6271\u3048\u308b\u30ec\u30b3\u30fc\u30c9\u6570": [[111, "id4"]], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9": [[226, null]], "\u30a6\u30a3\u30f3\u30c9\u30a6\u95a2\u6570": [[156, "window-function"], [283, null]], "\u30a6\u30a3\u30f3\u30c9\u30a6\u95a2\u6570\u95a2\u9023\u306e\u5f15\u6570": [[132, "window-function-related-parameters"], [134, "window-function-related-parameters"], [135, "window-function-related-parameters"], [156, "window-function-related-parameters"]], "\u30a8\u30a4\u30ea\u30a2\u30b9": [[58, null]], "\u30a8\u30a4\u30ea\u30a2\u30b9\u306e\u89e3\u6c7a\u65b9\u6cd5": [[58, "how-to-resolve-alias"]], "\u30a8\u30b9\u30b1\u30fc\u30d7": [[224, "escape"], [244, "escape"]], "\u30a8\u30e9\u30fc\u306e\u5834\u5408": [[95, "error-case"]], "\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u89e3\u6790\u65b9\u6cd5": [[302, null]], "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb": [[225, "object-literal"]], "\u30aa\u30d7\u30b7\u30e7\u30f3": [[174, "id4"], [175, "options"], [176, "id4"], [179, "options"], [181, "options"]], "\u30ab\u30b9\u30b1\u30fc\u30c9\u524a\u9664": [[121, "cascade-delete"]], "\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831": [[14, "id6"]], "\u30ab\u30e9\u30e0": [[87, null], [141, "column"]], "\u30ab\u30e9\u30e0\u3054\u3068\u306b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u5834\u5408": [[310, "creating-column-index-against-each-column"]], "\u30ab\u30e9\u30e0\u306e\u4f5c\u6210": [[308, "create-a-column"]], "\u30ab\u30e9\u30e0\u306e\u5236\u9650": [[34, "limitations-of-column"]], "\u30ab\u30e9\u30e0\u306e\u8a2d\u5b9a\u306e\u5909\u66f4\u65b9\u6cd5": [[110, "how-to-change-column-configuration"]], "\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306b\u3088\u308b\u95a2\u9023\u30c6\u30fc\u30d6\u30eb\u3092\u307e\u305f\u3050\u691c\u7d22": [[310, "nested-index-search-among-related-table-by-column-index"]], "\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2\u3068\u96c6\u8a08\u30af\u30a8\u30ea": [[0, "column-store-and-aggregate-query"]], "\u30ad\u30e3\u30c3\u30b7\u30e5\u95a2\u9023\u306e\u5f15\u6570": [[132, "cache-related-parameter"], [134, "cache-related-parameter"], [135, "cache-related-parameter"], [156, "cache-related-parameter"]], "\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22": [[311, "search-comments-by-keyword"]], "\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u30e6\u30fc\u30b6\u30fc\u691c\u7d22": [[311, "search-users-by-keyword"]], "\u30ad\u30fc\u30ef\u30fc\u30c9\u3068\u4f4d\u7f6e\u60c5\u5831\u3067\u691c\u7d22": [[311, "search-comments-by-keyword-and-geolocation"]], "\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b": [[11, "id5"]], "\u30af\u30a8\u30ea\u306e\u5b9f\u73fe": [[11, null]], "\u30af\u30a8\u30ea\u30fc\u3092\u5b9f\u884c\u3059\u308b": [[177, "request-queries"]], "\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5": [[177, "query-cache"]], "\u30af\u30a8\u30ea\u30fc\u30ed\u30b0": [[228, "query-log"]], "\u30af\u30a8\u30ea\u30fc\u5c55\u958b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u4e00\u89a7": [[242, null]], "\u30af\u30a8\u30ea\u30fc\u69cb\u6587": [[224, null]], "\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": [[11, "id2"]], "\u30af\u30a8\u30ea\u62e1\u5f35": [[314, null]], "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8": [[1, null]], "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9": [[175, "client-mode"]], "\u30b0\u30eb\u30fc\u30d7": [[244, "group"]], "\u30b0\u30eb\u30fc\u30d7\u5316": [[224, "grouping"], [225, "grouping"]], "\u30b3\u30de\u30f3\u30c9": [[92, null], [175, "command"]], "\u30b3\u30de\u30f3\u30c9\u306e\u66f8\u5f0f": [[308, "command-format"]], "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3": [[93, null]], "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u5909\u66f4": [[292, "custom-command-version"]], "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5": [[93, "id3"]], "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb": [[176, "id9"]], "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3": [[241, "command-line"]], "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570": [[175, "command-line-parameters"], [180, "command-line-parameters"]], "\u30b3\u30de\u30f3\u30c9\u4e00\u89a7": [[171, "commands"], [173, "commands"], [248, "commands"]], "\u30b3\u30df\u30e5\u30cb\u30c6\u30a3": [[2, null]], "\u30b5\u30b8\u30a7\u30b9\u30c8": [[249, null]], "\u30b5\u30b8\u30a7\u30b9\u30c8\u6642\u306b\u5fc5\u9808\u306e\u5f15\u6570": [[180, "required-parameters-for-suggestion"]], "\u30b5\u30b8\u30a7\u30b9\u30c8\u7d50\u679c\u3092\u4f7f\u3046": [[180, "use-suggested-response"]], "\u30b5\u30dd\u30fc\u30c8\u3092\u3084\u3081\u305fOS": [[43, "dropped-support-oses"]], "\u30b5\u30f3\u30d7\u30eb": [[174, "id6"], [176, "id10"]], "\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf": [[224, "sample-data"], [225, "sample-data"]], "\u30b5\u30fc\u30d0\u30fc": [[289, null]], "\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8": [[296, null]], "\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9": [[175, "server-mode"]], "\u30b7\u30d5\u30c8\u6f14\u7b97\u5b50": [[225, "shift-operators"]], "\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0": [[248, null]], "\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0": [[90, null]], "\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-scalar-column"]], "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb": [[176, "id7"]], "\u30b9\u30af\u30ea\u30d7\u30c8\u69cb\u6587": [[225, null]], "\u30b9\u30b3\u30a2\u30e9\u30fc": [[245, null]], "\u30b9\u30b3\u30a2\u30fc\u95a2\u9023\u306e\u5f15\u6570": [[156, "score-related-parameters"]], "\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30fc\u30f3\u30e2\u30fc\u30c9": [[175, "standalone-mode"]], "\u30b9\u30e9\u30a4\u30b9\u95a2\u9023\u306e\u5f15\u6570": [[156, "slice-related-parameters"]], "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3": [[312, "security-issues"]], "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc": [[225, "security"]], "\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7": [[180, "setup"]], "\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc\u306e\u89e3\u6790\u65b9\u6cd5": [[302, "how-to-analyze-socket-errors"]], "\u30bd\u30fc\u30b9\u304b\u3089\u30d3\u30eb\u30c9": [[24, "build-from-source"], [25, "build-from-source"], [28, "build-from-source"], [30, "build-from-source"], [31, "build-from-source"], [32, "build-from-source"], [33, "build-from-source"]], "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9": [[27, "download-source"]], "\u30bf\u30a4\u30d7\u30df\u30b9\u306e\u8a31\u5bb9": [[156, "typo-tolerance"]], "\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8\u6642\u306e\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9": [[99, "return-code-on-timeout"]], "\u30bf\u30b0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7528\u30c6\u30fc\u30d6\u30eb\u306e\u4f5c\u6210": [[161, "create-tag-index-table"]], "\u30bf\u30b0\u691c\u7d22": [[307, "tag-search"]], "\u30bf\u30b0\u691c\u7d22\u30fb\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d": [[307, null]], "\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0\u306a\u3057\u3067\u306e\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9": [[292, "upgrading-without-downtime"]], "\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0": [[2, "chat-room"]], "\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb": [[304, null]], "\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0": [[281, null]], "\u30c4\u30fc\u30eb": [[31, "tools"]], "\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c": [[14, "id5"]], "\u30c6\u30b9\u30c8\u65b9\u6cd5": [[14, null]], "\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9": [[14, "id2"]], "\u30c6\u30b9\u30c8\u95a2\u9023\u306e\u5f15\u6570": [[134, "test-related-parameters"]], "\u30c6\u30fc\u30d6\u30eb": [[141, "table"], [254, null]], "\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53c2\u7167\u3059\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-column-that-refers-a-table-s-record"]], "\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3067\u304d\u306a\u3044\u578b": [[282, "types-that-can-t-be-specified-in-primary-key-of-table"]], "\u30c6\u30fc\u30d6\u30eb\u306e\u4f5c\u6210": [[308, "create-a-table"], [311, "create-a-table"]], "\u30c6\u30fc\u30d6\u30eb\u306e\u5236\u9650": [[34, "limitations-of-table"]], "\u30c6\u30fc\u30d6\u30eb\u306e\u8868\u793a": [[308, "view-a-table"]], "\u30c6\u30fc\u30d6\u30eb\u306e\u8a2d\u5b9a\u306e\u5909\u66f4\u65b9\u6cd5": [[110, "how-to-change-table-configuration"]], "\u30c6\u30fc\u30d6\u30eb\u53c2\u7167": [[305, "reference-types"]], "\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c": [[14, "id11"]], "\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8\u3092\u6709\u52b9\u306b\u3059\u308b": [[99, "enable-request-timeout-by-default"]], "\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u8a2d\u5b9a\u3059\u308b": [[94, "set-the-default-value"]], "\u30c7\u30fc\u30bf\u306e\u30ed\u30fc\u30c9": [[308, "load-records"], [311, "loading-data"]], "\u30c7\u30fc\u30bf\u306e\u7a2e\u985e": [[305, "overview"]], "\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0": [[87, "data-store-columns"]], "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9": [[141, "database"]], "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u4f5c\u6210": [[308, "create-a-database"]], "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u64cd\u4f5c": [[308, "operate-a-database"]], "\u30c7\u30fc\u30bf\u4fdd\u5b58\u7528\u30c6\u30fc\u30d6\u30eb\u306e\u4f5c\u6210": [[161, "create-data-store-table"]], "\u30c7\u30fc\u30bf\u578b": [[282, null]], "\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9": [[175, "daemon-mode"]], "\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0": [[176, "id14"], [300, null]], "\u30c8\u30ec\u30fc\u30b9\u30ed\u30b0\u306e\u51fa\u529b": [[96, null]], "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc": [[263, null]], "\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc": [[256, null]], "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u66f4\u65b0": [[12, "id13"]], "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u7de8\u96c6\u3059\u308b\u65b9\u6cd5": [[18, "how-to-edit-documentation"]], "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u95a2\u9023\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5": [[15, null]], "\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3": [[156, "drilldown"], [306, null]], "\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679c\u306e\u5236\u9650": [[306, "limits-drilldown-results"]], "\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679c\u3092\u30bd\u30fc\u30c8\u3059\u308b": [[306, "sorting-drilldown-results"]], "\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u95a2\u9023\u306e\u5f15\u6570": [[135, "drilldown-related-parameters"], [156, "drilldown-related-parameters"]], "\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc": [[229, null]], "\u30ce\u30fc\u30de\u30eb\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0": [[90, "normal-scalar-column"]], "\u30ce\u30fc\u30de\u30eb\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": [[91, "normal-vector-column"]], "\u30cf\u30a4\u30e9\u30a4\u30c8": [[44, "higlight"]], "\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u3067\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22": [[311, "search-comments-by-hash-tags"]], "\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8\u306e\u9001\u308a\u65b9": [[19, null]], "\u30d0\u30fc\u30b8\u30e7\u30f30\u7cfb\u306e\u304a\u77e5\u3089\u305b": [[36, null]], "\u30d0\u30fc\u30b8\u30e7\u30f31.0\u7cfb\u306e\u304a\u77e5\u3089\u305b": [[37, null]], "\u30d0\u30fc\u30b8\u30e7\u30f31.1\u7cfb\u306e\u304a\u77e5\u3089\u305b": [[38, null]], "\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051": [[93, "id2"]], "\u30d1\u30c3\u30c1\u306e\u9001\u308a\u65b9": [[17, "how-to-send-patch"]], "\u30d1\u30c3\u30c1\u3092\u9001\u308b": [[18, "send-patch"]], "\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22": [[313, null]], "\u30d3\u30c3\u30c8\u5426\u5b9a\u6f14\u7b97\u5b50": [[225, "bitwise-not-operator"]], "\u30d3\u30c3\u30c8\u6392\u4ed6\u7684\u8ad6\u7406\u548c\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "bitwise-xor-assignment-operator"]], "\u30d3\u30c3\u30c8\u6392\u4ed6\u7684\u8ad6\u7406\u548c\u6f14\u7b97\u5b50": [[225, "bitwise-xor-operator"]], "\u30d3\u30c3\u30c8\u6f14\u7b97\u5b50": [[225, "bitwise-operators"]], "\u30d3\u30c3\u30c8\u8ad6\u7406\u548c\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "bitwise-or-assignment-operator"]], "\u30d3\u30c3\u30c8\u8ad6\u7406\u548c\u6f14\u7b97\u5b50": [[225, "bitwise-or-operator"]], "\u30d3\u30c3\u30c8\u8ad6\u7406\u7a4d\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "bitwise-and-assignment-operator"]], "\u30d3\u30c3\u30c8\u8ad6\u7406\u7a4d\u6f14\u7b97\u5b50": [[225, "bitwise-and-operator"]], "\u30d3\u30eb\u30c9\u304a\u3088\u3073\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[27, "build-and-install-groonga"]], "\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099": [[12, "id4"]], "\u30d5\u30a9\u30fc\u30de\u30c3\u30c8": [[96, "format"], [228, "format"], [228, "id3"], [243, "format"]], "\u30d5\u30ec\u30fc\u30ba\u691c\u7d22\u6761\u4ef6": [[224, "phrase-search-condition"]], "\u30d5\u30ec\u30fc\u30ba\u691c\u7d22\u6761\u4ef6\uff08\u30de\u30c3\u30c1\u30ab\u30e9\u30e0\u6307\u5b9a\u3042\u308a\uff09": [[224, "phrase-search-condition-with-explicit-match-column"]], "\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9\u306e\u7ba1\u7406\u30c4\u30fc\u30eb": [[312, "administration-tool-http"]], "\u30d6\u30e9\u30b8\u30eb\u793e\u306e\u8a95\u751f\u3068Senna": [[56, "the-birth-of-brazil-inc-and-senna"]], "\u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8": [[97, null]], "\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u6e96\u5099\u3092\u3059\u308b": [[18, "prepare-your-pull-request"]], "\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u308b": [[18, "submit-your-pull-request"]], "\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9\u306e\u5909\u66f4": [[292, "custom-prefix-path"]], "\u30d7\u30ed\u30bb\u30b9\u30ed\u30b0": [[228, "process-log"]], "\u30d7\u30ed\u30c8\u30b3\u30eb": [[298, "protocol"]], "\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b": [[282, "id3"]], "\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": [[91, null], [305, "vector-types"]], "\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0: \u5fc5\u8981\u306a\u30ad\u30e3\u30b9\u30c8\u304c\u5b9f\u884c\u3055\u308c\u306a\u3044\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63": [[45, "reference-columns-vector-fixed-a-bug-that-needed-cast-may-not-be-done"]], "\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-vector-column"]], "\u30da\u30fc\u30b8\u30f3\u30b0": [[156, "paging"]], "\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210": [[311, null]], "\u30de\u30c3\u30c1\u6f14\u7b97\u5b50": [[225, "match-operator"]], "\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-multiple-columns-index-column"]], "\u30df\u30c3\u30b7\u30f3\u30b0\u30e2\u30fc\u30c9": [[111, "missing-mode"]], "\u30e1\u30e2\u30ea\u4f7f\u7528\u91cf": [[281, "memory-usage"]], "\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8": [[2, "mailing-list"]], "\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8\u3078\u5831\u544a\u3059\u308b": [[19, "report-a-bug-to-the-mailing-list"]], "\u30e6\u30fc\u30b6\u30fcID\u3067\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22": [[311, "search-comments-by-user-id"]], "\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd": [[10, null]], "\u30e6\u30fc\u30b6\u30fc\u306e\u304a\u6c17\u306b\u5165\u308a\u306e\u30b3\u30e1\u30f3\u30c8\u4e00\u89a7": [[311, "search-user-s-favorite-comments"]], "\u30e6\u30fc\u30b6\u30fc\u306e\u5165\u529b\u304b\u3089\u5b66\u7fd2": [[180, "learn-from-user-inputs"]], "\u30e9\u30a4\u30d6\u30e9\u30ea": [[31, "libraries"]], "\u30ea\u30af\u30a8\u30b9\u30c8ID": [[98, null]], "\u30ea\u30af\u30a8\u30b9\u30c8\u306bID\u3092\u5272\u308a\u5f53\u3066\u308b\u65b9\u6cd5": [[98, "how-to-assign-id-to-request"]], "\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8\u3092\u8a2d\u5b9a\u3059\u308b\u65b9\u6cd5": [[99, "how-to-set-timeout-to-request"]], "\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8": [[99, null]], "\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9": [[100, null]], "\u30ea\u30c6\u30e9\u30eb": [[225, "literals"]], "\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7\u3068\u30ad\u30e3\u30c3\u30b7\u30e5": [[177, "reverse-proxy-and-cache"]], "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9": [[60, "reference"], [61, "reference"], [62, "reference"], [63, "reference"], [64, "reference"], [65, "reference"], [66, "reference"], [67, "reference"], [68, "reference"], [69, "reference"], [70, "reference"], [71, "reference"], [72, "reference"], [73, "reference"], [74, "reference"], [75, "reference"], [76, "reference"], [77, "reference"], [78, "reference"], [79, "reference"], [80, "reference"], [81, "reference"], [82, "reference"], [83, "reference"], [84, "reference"], [85, "reference"]], "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb": [[57, null]], "\u30ea\u30dd\u30b8\u30c8\u30ea": [[13, null]], "\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u304b\u3089Groonga\u3092\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8": [[6, "checkout-groonga-from-the-repository"], [7, "checkout-groonga-from-the-repository"], [8, "checkout-groonga-from-the-repository"]], "\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5": [[5, null]], "\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9": [[312, null]], "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210": [[12, "id14"]], "\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210": [[12, "id5"]], "\u30ea\u30ea\u30fc\u30b9\u624b\u9806": [[12, null]], "\u30eb\u30fc\u30eb": [[248, "rules"]], "\u30ec\u30b3\u30fc\u30c9ID": [[254, "record-id"]], "\u30ec\u30b3\u30fc\u30c9\u306e\u53d6\u5f97": [[308, "get-a-record"]], "\u30ed\u30b0": [[228, null]], "\u30ed\u30fc\u30c9\u65b9\u6cd5": [[91, "how-to-load"], [91, "id4"], [91, "id8"]], "\u30ed\u30fc\u30de\u5b57\u304b\u3089\u8aad\u307f\u3078\u306e\u5909\u63db": [[240, "how-to-convert-romaji-to-reading"]], "\u4e00\u6642\u30c6\u30fc\u30d6\u30eb": [[254, "temporary-table"]], "\u4e00\u89a7": [[100, "list"]], "\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa": [[14, "id10"]], "\u4e0d\u6b63\u30e2\u30fc\u30c9": [[111, "invalid-mode"]], "\u4e0d\u7b49\u4fa1\u6761\u4ef6": [[224, "not-equal-condition"]], "\u4e0d\u7b49\u4fa1\u6f14\u7b97\u5b50": [[225, "not-equal-operator"]], "\u4e26\u5217\u5b9f\u884c": [[94, null]], "\u4e26\u5217\u5b9f\u884c\u306e\u30b5\u30dd\u30fc\u30c8\u72b6\u6cc1": [[94, "parallel-execution-support"]], "\u4e2d\u30b5\u30a4\u30ba\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-medium-index-column"]], "\u4e3b\u306a\u30b3\u30de\u30f3\u30c9": [[308, "basic-commands"]], "\u4e3b\u306a\u539f\u56e0": [[101, "major-cause"], [102, "major-cause"], [103, "major-cause"], [104, "major-cause"], [105, "major-cause"], [106, "major-cause"]], "\u4e3b\u306a\u5bfe\u7b56": [[101, "major-action-on-this-error"], [102, "major-action-on-this-error"], [103, "major-action-on-this-error"], [104, "major-action-on-this-error"], [105, "major-action-on-this-error"], [106, "major-action-on-this-error"]], "\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22": [[313, "prefix-search-by-primary-key"]], "\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22": [[313, "suffix-search-by-primary-key"]], "\u4e57\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "multiplication-assignment-operator"]], "\u4e57\u7b97\u6f14\u7b97\u5b50": [[225, "multiplication-operator"]], "\u4e8b\u524d\u78ba\u8a8d": [[12, "id8"]], "\u4ed5\u69d8": [[297, null]], "\u4ee3\u5165\u5f0f": [[224, "assignment-expression"]], "\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "assignment-operators"]], "\u4ee5\u4e0a\u6761\u4ef6": [[224, "greater-than-or-equal-to-condition"]], "\u4ee5\u4e0a\u6f14\u7b97\u5b50": [[225, "greater-than-or-equal-to-operator"]], "\u4ee5\u4e0b\u6761\u4ef6": [[224, "less-than-or-equal-to-condition"]], "\u4ee5\u4e0b\u6f14\u7b97\u5b50": [[225, "less-than-or-equal-to-operator"]], "\u4efb\u610f: \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u7ffb\u8a33\u3059\u308b": [[18, "optional-translate-documentation"]], "\u4f4d\u7f6e\u306b\u3088\u308b\u62bd\u51fa": [[208, "extraction-by-position"], [208, "id1"]], "\u4f4d\u7f6e\u60c5\u5831(GeoPoint)\u3067\u30e6\u30fc\u30b6\u30fc\u691c\u7d22": [[311, "search-users-by-geolocation-data-geopoint"]], "\u4f4d\u7f6e\u60c5\u5831\u3092\u7528\u3044\u305f\u7d5e\u8fbc\u30fb\u30bd\u30fc\u30c8": [[315, "narrow-down-sort-by-using-location-information"]], "\u4f4d\u7f6e\u60c5\u5831\u691c\u7d22": [[239, null]], "\u4f4d\u7f6e\u60c5\u5831\uff08\u7def\u5ea6\u30fb\u7d4c\u5ea6\uff09\u691c\u7d22": [[0, "geo-location-latitude-and-longitude-search"]], "\u4f5c\u308a\u65b9": [[90, "how-to-create"], [91, "how-to-create"], [91, "id3"], [91, "id7"], [91, "id11"]], "\u4f7f\u3044\u65b9": [[58, "usage"], [88, "usage"], [90, "usage"], [91, "usage"], [94, "how-to-use"], [96, "usage"], [97, "usage"], [107, "usage"], [108, "usage"], [109, "usage"], [110, "usage"], [111, "usage"], [112, "usage"], [113, "usage"], [114, "usage"], [115, "usage"], [116, "usage"], [117, "usage"], [118, "usage"], [119, "usage"], [120, "usage"], [121, "usage"], [122, "usage"], [123, "usage"], [124, "usage"], [125, "usage"], [126, "usage"], [127, "usage"], [128, "usage"], [129, "usage"], [130, "usage"], [131, "usage"], [132, "usage"], [133, "usage"], [134, "usage"], [135, "usage"], [136, "usage"], [137, "usage"], [138, "usage"], [139, "usage"], [140, "usage"], [141, "usage"], [142, "usage"], [143, "usage"], [144, "usage"], [145, "usage"], [146, "usage"], [147, "usage"], [148, "usage"], [149, "usage"], [150, "usage"], [151, "usage"], [152, "usage"], [153, "usage"], [154, "usage"], [155, "usage"], [156, "usage"], [157, "usage"], [158, "usage"], [159, "usage"], [160, "usage"], [161, "usage"], [162, "usage"], [163, "usage"], [164, "usage"], [165, "usage"], [166, "usage"], [167, "usage"], [168, "usage"], [169, "usage"], [170, "usage"], [173, "usage"], [175, "usage"], [176, "id6"], [177, "usage"], [178, "usage"], [180, "usage"], [181, "usage"], [183, "usage"], [184, "usage"], [186, "usage"], [188, "usage"], [191, "usage"], [192, "usage"], [193, "usage"], [194, "usage"], [195, "usage"], [196, "usage"], [197, "usage"], [198, "usage"], [200, "usage"], [201, "usage"], [202, "usage"], [203, "usage"], [205, "usage"], [206, "usage"], [207, "usage"], [208, "usage"], [209, "usage"], [210, "usage"], [211, "usage"], [212, "usage"], [213, "usage"], [214, "usage"], [215, "usage"], [216, "usage"], [217, "usage"], [218, "usage"], [219, "usage"], [220, "usage"], [221, "usage"], [222, "usage"], [226, "how-to-use"], [230, "usage"], [231, "usage"], [232, "usage"], [233, "usage"], [234, "usage"], [235, "usage"], [236, "usage"], [237, "usage"], [240, "usage"], [241, "usage"], [243, "usage"], [244, "usage"], [245, "usage"], [246, "usage"], [247, "usage"], [250, "how-to-use"], [251, "how-to-use"], [253, "how-to-use"], [257, "usage"], [258, "usage"], [259, "usage"], [260, "usage"], [261, "usage"], [264, "usage"], [265, "usage"], [266, "usage"], [267, "usage"], [268, "usage"], [269, "usage"], [270, "usage"], [271, "usage"], [272, "usage"], [273, "usage"], [274, "usage"], [275, "usage"], [276, "usage"], [277, "usage"], [278, "usage"], [279, "usage"], [280, "usage"], [284, "usage"], [285, "usage"], [286, "usage"], [287, "usage"], [288, "usage"]], "\u4f8b": [[21, "examples"], [61, "example"], [62, "example"], [63, "example"], [65, "example"], [66, "example"], [67, "example"], [68, "example"], [69, "example"], [70, "example"], [71, "example"], [72, "example"], [73, "example"], [74, "example"], [75, "example"], [76, "example"], [77, "example"], [78, "example"], [79, "example"], [80, "example"], [81, "example"], [82, "example"], [83, "example"], [84, "example"], [179, "example"], [185, "id6"], [189, "id7"], [190, "id7"], [199, "id5"], [204, "id6"], [298, "example"], [301, "id2"], [302, "example"], [303, "example"]], "\u4f9d\u5b58\u95a2\u4fc2": [[31, "dependencies"]], "\u4fee\u6b63": [[36, "id4"], [36, "id7"], [37, "id3"], [37, "id7"], [37, "id10"], [37, "id15"], [37, "id20"], [37, "id25"], [37, "id30"], [37, "id34"], [37, "id38"], [38, "id4"], [39, "fixes"], [39, "id2"], [39, "id5"], [39, "id8"], [39, "id11"], [39, "id13"], [39, "id16"], [39, "id19"], [39, "id22"], [39, "id26"], [41, "fixes"], [41, "id2"], [41, "id5"], [41, "id8"], [41, "id11"], [41, "id13"], [41, "id16"], [41, "id19"], [41, "id22"], [41, "id25"], [41, "id27"], [42, "fixes"], [42, "id2"], [42, "id6"], [42, "id10"], [42, "id13"], [42, "id17"], [42, "id21"], [42, "id28"], [42, "id35"], [42, "id39"], [43, "fixes"], [43, "id3"], [43, "id5"], [43, "id7"], [43, "id9"], [43, "id11"], [43, "id15"], [43, "id17"], [43, "id24"], [43, "id26"], [44, "fixes"], [44, "id2"], [44, "id4"], [44, "id6"], [44, "id7"], [44, "id9"], [44, "id10"], [44, "id12"], [44, "id14"], [44, "id16"], [44, "id19"], [44, "id24"], [45, "fixes"], [45, "id2"], [45, "id4"], [45, "id6"], [45, "id7"], [45, "id9"], [45, "id12"], [45, "id16"], [45, "id17"], [45, "id19"], [45, "id22"], [45, "id25"], [47, "fixes"], [47, "id1"], [47, "id3"], [47, "id6"], [47, "id9"], [47, "id12"], [47, "id15"], [47, "id18"], [47, "id21"], [47, "id24"], [47, "id27"], [47, "id30"], [47, "id33"], [48, "fixes"], [48, "id2"], [48, "id5"], [48, "id8"], [48, "id11"], [48, "id14"], [48, "id17"], [48, "id20"], [48, "id23"], [48, "id27"], [48, "id30"], [48, "id32"], [49, "fixes"], [49, "id1"], [49, "id3"], [49, "id6"], [49, "id9"], [49, "id12"], [49, "id15"], [49, "id18"], [49, "id21"], [49, "id24"], [49, "id27"], [49, "id30"], [50, "fixes"], [50, "id2"], [50, "id5"], [50, "id8"], [50, "id11"], [50, "id14"], [50, "id17"], [50, "id20"], [50, "id23"], [50, "id26"], [50, "id29"], [50, "id32"], [50, "id35"], [51, "fixes"], [51, "id2"], [51, "id4"], [51, "id6"], [51, "id9"], [51, "id11"], [51, "id14"], [51, "id17"], [51, "id20"], [51, "id23"], [51, "id25"], [51, "id28"], [51, "id31"], [51, "id34"], [51, "id37"], [52, "fixes"], [52, "id2"], [52, "id5"], [52, "id8"], [52, "id10"], [52, "id12"], [52, "id15"], [52, "id18"], [52, "id21"], [52, "id24"], [52, "id26"], [52, "id29"], [53, "fixes"], [53, "id2"], [53, "id4"], [53, "id6"], [53, "id9"], [53, "id11"], [53, "id13"], [53, "id15"], [53, "id17"], [53, "id19"], [53, "id22"], [53, "id25"], [54, "fixes"], [54, "id4"], [54, "id7"], [54, "id9"], [54, "id12"], [54, "id15"], [54, "id18"], [54, "id21"], [54, "id24"], [54, "id27"], [55, "fixes"]], "\u5168\u30c6\u30fc\u30d6\u30eb\u306e\u7279\u5fb4": [[254, "id5"]], "\u5168\u30ec\u30b3\u30fc\u30c9\u6570": [[156, "the-total-number-of-records"]], "\u5168\u4f53\u8a2d\u5b9a": [[60, null]], "\u5168\u6587\u691c\u7d22": [[308, "full-text-search"]], "\u5168\u6587\u691c\u7d22\u3068\u5373\u6642\u66f4\u65b0": [[0, "full-text-search-and-instant-update"]], "\u5168\u6587\u691c\u7d22\u6761\u4ef6": [[224, "full-text-search-condition"]], "\u5168\u6587\u691c\u7d22\u6761\u4ef6\uff08\u30de\u30c3\u30c1\u30ab\u30e9\u30e0\u6307\u5b9a\u3042\u308a\uff09": [[224, "full-text-search-condition-with-explicit-match-column"]], "\u5168\u6587\u691c\u7d22\u7528\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u4f5c\u6210": [[308, "create-an-index-column-for-full-text-search"]], "\u5168\u6587\u691c\u7d22\u7528\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-an-index-column-for-full-text-search"]], "\u5168\u6587\u691c\u7d22\u7528\u306e\u8a9e\u5f59\u8868\u306e\u4f5c\u6210": [[308, "create-a-lexicon-table-for-full-text-search"], [309, null]], "\u5171\u6709\u53ef\u80fd\u306a\u30b9\u30c8\u30ec\u30fc\u30b8\u3068\u53c2\u7167\u30ed\u30c3\u30af\u30d5\u30ea\u30fc": [[0, "sharable-storage-and-read-lock-free"]], "\u5171\u8d77\u691c\u7d22": [[250, "cooccurrence-search"], [251, "cooccurrence-search"], [253, "cooccurrence-search"]], "\u51fa\u529b": [[241, null]], "\u51fa\u529b\u30ab\u30e9\u30e0\u306e\u6307\u5b9a": [[308, "specify-output-columns"]], "\u51fa\u529b\u5f62\u5f0f": [[95, null]], "\u51fa\u529b\u95a2\u9023\u306e\u5f15\u6570": [[134, "output-related-parameters"], [135, "output-related-parameters"], [156, "output-related-parameters"]], "\u5229\u7528\u30ea\u30bd\u30fc\u30b9\u306e\u524a\u6e1b": [[137, "decreases-used-resources"], [163, "decreases-used-resources"]], "\u5229\u7528\u53ef\u80fd\u306anginx\u30e2\u30b8\u30e5\u30fc\u30eb": [[177, "available-nginx-modules"]], "\u5236\u5fa1\u69cb\u6587": [[225, "control-syntaxes"]], "\u5236\u9650": [[91, "limitations"], [243, "limitation"], [254, "limitations"]], "\u5236\u9650\u4e8b\u9805": [[34, null], [176, "id13"]], "\u524a\u9664\u3067\u304d\u306a\u3044\u30b1\u30fc\u30b9": [[137, "unremovable-cases"], [163, "unremovable-cases"]], "\u524d\u63d0\u6761\u4ef6": [[12, "id2"]], "\u524d\u65b9\u4e00\u81f4RK\u691c\u7d22": [[240, null], [250, "prefix-rk-search"]], "\u524d\u65b9\u4e00\u81f4\u691c\u7d22": [[250, "prefix-search"]], "\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u6761\u4ef6": [[224, "prefix-search-condition"]], "\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "prefix-search-operator"]], "\u5270\u4f59\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "modulo-assignment-operator"]], "\u52a0\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "addition-assignment-operator"]], "\u52a0\u7b97\u6f14\u7b97\u5b50": [[225, "addition-operator"]], "\u52d5\u7684\u306a\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9\u65b9\u6cd5": [[226, "online-index-construction"]], "\u52d5\u7684\u30ab\u30e9\u30e0": [[156, "dynamic-column"]], "\u52d5\u7684\u30ab\u30e9\u30e0\u95a2\u9023\u306e\u5f15\u6570": [[132, "dynamic-column-related-parameters"], [134, "dynamic-column-related-parameters"], [135, "dynamic-column-related-parameters"], [156, "dynamic-column-related-parameters"]], "\u5358\u8a9e\u62bd\u51fa\u6f14\u7b97\u5b50": [[225, "term-extract-operator"]], "\u539f\u56e0": [[301, "id3"]], "\u53c2\u7167": [[90, "see-also"], [298, "see-also"]], "\u53c2\u7167\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0": [[90, "reference-scalar-column"]], "\u53c2\u7167\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": [[91, "reference-vector-column"]], "\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d": [[307, "reverse-resolution-of-reference-relationships"]], "\u53c2\u8003": [[6, "see-also"], [7, "see-also"], [8, "see-also"], [58, "see-also"], [95, "see-also"], [98, "see-also"], [99, "see-also"], [100, "see-also"], [107, "see-also"], [109, "see-also"], [111, "see-also"], [112, "see-also"], [115, "see-also"], [116, "see-also"], [117, "see-also"], [119, "see-also"], [121, "see-also"], [125, "see-also"], [126, "see-also"], [128, "see-also"], [129, "see-also"], [130, "see-also"], [131, "see-also"], [136, "see-also"], [138, "see-also"], [139, "see-also"], [142, "see-also"], [144, "see-also"], [145, "see-also"], [146, "see-also"], [148, "see-also"], [151, "see-also"], [153, "see-also"], [154, "see-also"], [155, "see-also"], [156, "see-also"], [159, "see-also"], [161, "see-also"], [165, "see-also"], [168, "see-also"], [169, "see-also"], [178, "see-also"], [179, "see-also"], [180, "see-also"], [184, "see-also"], [191, "see-also"], [192, "see-also"], [193, "see-also"], [201, "see-also"], [202, "see-also"], [203, "see-also"], [205, "see-also"], [206, "see-also"], [210, "see-also"], [223, "see-also"], [229, "see-also"], [230, "see-also"], [231, "see-also"], [232, "see-also"], [233, "see-also"], [234, "see-also"], [235, "see-also"], [237, "see-also"], [240, "see-also"], [243, "see-also"], [246, "see-also"], [247, "see-also"], [254, "see-also"], [255, "see-also"], [272, "see-also"], [274, "see-also"], [275, "see-also"], [276, "see-also"], [278, "see-also"], [286, "see-also"]], "\u53ef\u80fd\u306a\u9650\u308a\u58ca\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664": [[137, "removes-broken-tables-as-much-as-possible"]], "\u5404\u7a2e\u30c6\u30b9\u30c8\u306e\u78ba\u8a8d": [[12, "id10"]], "\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b": [[301, null]], "\u540d\u524d": [[89, "id1"], [174, "id1"], [176, "id1"], [179, "name"], [185, "id1"], [189, "id1"], [190, "id1"], [199, "id1"], [204, "id1"], [282, "name"]], "\u56fd\u969b\u5316": [[17, null]], "\u578b": [[141, "type"]], "\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805": [[282, "limitations-about-types"]], "\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9": [[137, "basic-usage"], [163, "basic-usage"]], "\u57fa\u672c\u7684\u306a\u64cd\u4f5c": [[308, null]], "\u57fa\u672c\u7684\u306a\u6f14\u7b97\u5b50": [[225, "basic-operators"]], "\u5834\u6240": [[243, "location"]], "\u5909\u66f4": [[37, "id14"], [37, "id19"], [37, "id24"], [37, "id29"]], "\u5909\u66f4\u3092\u53cd\u6620\u3057\u305fHTML\u30d5\u30a1\u30a4\u30eb\u3092\u751f\u6210\u3059\u308b": [[18, "generate-the-html-files-with-your-changes"]], "\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081": [[12, "id9"]], "\u5927\u304d\u306a\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-large-index-column"]], "\u5927\u304d\u306a\u30c7\u30fc\u30bf\u4fdd\u5b58\u7528\u30c6\u30fc\u30d6\u30eb\u306e\u4f5c\u6210": [[161, "create-large-data-store-table"]], "\u5927\u306a\u308a\u6761\u4ef6": [[224, "greater-than-condition"]], "\u5927\u306a\u308a\u6f14\u7b97\u5b50": [[225, "greater-than-operator"]], "\u5b66\u7fd2": [[252, "learning"]], "\u5b66\u7fd2\u30c7\u30fc\u30bf\u3092\u62bd\u51fa\u3059\u308b\u65b9\u6cd5": [[253, "how-to-extract-learning-data"]], "\u5b66\u7fd2\u65b9\u6cd5": [[250, "how-it-learns"], [251, "how-it-learns"], [253, "how-it-learns"]], "\u5b66\u7fd2\u6642\u306b\u5fc5\u9808\u306e\u5f15\u6570": [[180, "required-parameters-for-learning"]], "\u5b66\u7fd2\u6642\u306b\u6307\u5b9a\u53ef\u80fd\u306a\u5f15\u6570": [[180, "optional-parameters-for-learning"]], "\u5b8c\u5168\u4e00\u81f4\u691c\u7d22": [[299, "id3"]], "\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb": [[172, null]], "\u5b9f\u9a13\u7684": [[39, "id27"]], "\u5bfe\u5fdc": [[10, "id4"], [10, "id7"], [10, "id9"]], "\u5bfe\u5fdc\u3057\u3066\u3044\u308b\u6a5f\u80fd": [[239, "supported-features"]], "\u5bfe\u7b56\u65b9\u6cd5": [[303, "solution"]], "\u5bfe\u7b56\u65b9\u6cd51: \u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b": [[301, "id4"]], "\u5bfe\u7b56\u65b9\u6cd52: \u95be\u5024\u3092\u3042\u3052\u308b": [[301, "id5"]], "\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u30fb\u30ab\u30e9\u30e0\u3082\u4e00\u7dd2\u306b\u524a\u9664": [[163, "removes-a-table-with-tables-and-columns-that-reference-the-target-table"]], "\u5c0e\u5165": [[18, null]], "\u5c0f\u3055\u306a\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-small-index-column"]], "\u5c0f\u306a\u308a\u6761\u4ef6": [[224, "less-than-condition"]], "\u5c0f\u306a\u308a\u6f14\u7b97\u5b50": [[225, "less-than-operator"]], "\u5de6\u30b7\u30d5\u30c8\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "bitwise-left-shift-assignment-operator"]], "\u5de6\u30b7\u30d5\u30c8\u6f14\u7b97\u5b50": [[225, "left-shift-operator"]], "\u5e38\u99d0\u30d7\u30ed\u30bb\u30b9\u3067\u5229\u7528\u3059\u308b\u5834\u5408": [[94, "for-use-as-a-daemon-process"]], "\u5ea7\u6a19\u5024": [[225, "geo-point"]], "\u5f15\u6570": [[107, "parameters"], [108, "parameters"], [109, "parameters"], [110, "parameters"], [111, "parameters"], [112, "parameters"], [113, "parameters"], [114, "parameters"], [115, "parameters"], [116, "parameters"], [117, "parameters"], [118, "parameters"], [119, "parameters"], [120, "parameters"], [121, "parameters"], [122, "parameters"], [123, "parameters"], [124, "parameters"], [125, "parameters"], [126, "parameters"], [127, "parameters"], [128, "parameters"], [129, "parameters"], [130, "parameters"], [131, "parameters"], [132, "parameters"], [133, "parameters"], [134, "parameters"], [135, "parameters"], [136, "parameters"], [137, "parameters"], [138, "parameters"], [140, "parameters"], [141, "parameters"], [142, "parameters"], [143, "parameters"], [146, "parameters"], [147, "parameters"], [149, "parameters"], [150, "parameters"], [152, "parameters"], [153, "parameters"], [154, "parameters"], [155, "parameters"], [156, "parameters"], [157, "parameters"], [158, "parameters"], [159, "parameters"], [160, "parameters"], [161, "parameters"], [162, "parameters"], [163, "parameters"], [164, "parameters"], [165, "parameters"], [166, "parameters"], [167, "parameters"], [168, "parameters"], [170, "parameters"], [174, "id5"], [176, "id5"], [181, "parameters"], [183, "parameters"], [185, "id4"], [186, "parameters"], [188, "parameters"], [189, "id4"], [190, "id4"], [191, "parameters"], [192, "parameters"], [193, "parameters"], [194, "parameters"], [195, "parameters"], [196, "parameters"], [197, "parameters"], [198, "parameters"], [201, "parameters"], [202, "parameters"], [203, "parameters"], [204, "id4"], [205, "parameters"], [208, "parameters"], [209, "parameters"], [210, "parameters"], [211, "parameters"], [219, "parameters"], [220, "parameters"], [221, "parameters"], [231, "parameters"], [232, "parameters"], [233, "parameters"], [234, "parameters"], [235, "parameters"], [237, "parameters"], [246, "parameters"], [247, "parameters"], [257, "parameters"], [258, "parameters"], [259, "parameters"], [260, "parameters"], [261, "parameters"], [272, "parameters"], [274, "parameters"], [275, "parameters"], [281, "parameters"], [286, "parameters"]], "\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u6761\u4ef6": [[224, "suffix-search-condition"]], "\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "suffix-search-operator"]], "\u5fc5\u8981\u306a\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [[6, "install-depended-software"], [8, "install-depended-software"], [18, "install-dependent-software"], [27, "install-depended-software"]], "\u5fc5\u8981\u6761\u4ef6": [[194, "requirements"], [197, "requirements"]], "\u5fc5\u9808\u5f15\u6570": [[110, "required-parameters"], [111, "required-parameters"], [112, "required-parameters"], [114, "required-parameters"], [115, "required-parameters"], [116, "required-parameters"], [117, "required-parameters"], [118, "required-parameters"], [124, "required-parameters"], [125, "required-parameters"], [132, "required-parameters"], [133, "required-parameters"], [134, "required-parameters"], [135, "required-parameters"], [136, "required-parameters"], [137, "required-parameters"], [138, "required-parameters"], [140, "required-parameters"], [141, "required-parameters"], [142, "required-parameters"], [143, "required-parameters"], [146, "required-parameters"], [149, "required-parameters"], [150, "required-parameters"], [153, "required-parameters"], [155, "required-parameters"], [156, "required-parameters"], [157, "required-parameters"], [158, "required-parameters"], [160, "required-parameters"], [161, "required-parameters"], [163, "required-parameters"], [164, "required-parameters"], [165, "required-parameters"], [166, "required-parameters"], [167, "required-parameters"], [168, "required-parameters"], [170, "required-parameters"], [180, "required-parameters"], [180, "groonga-suggest-httpd-required-parameters"], [183, "required-parameters"], [188, "required-parameters"], [193, "required-parameters"], [195, "required-parameters"], [202, "required-parameters"], [203, "required-parameters"], [205, "required-parameters"], [209, "required-parameters"], [211, "required-parameters"], [219, "required-parameters"], [237, "required-parameter"], [246, "required-parameters"], [247, "required-parameters"]], "\u6027\u80fd": [[292, "performance"]], "\u6027\u80fd\u95a2\u9023\u306e\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6": [[177, "performance-related-directives"]], "\u611f\u8b1d": [[36, "id8"], [37, "id4"], [37, "id8"], [37, "id11"], [37, "id16"], [37, "id21"], [37, "id26"], [37, "id31"], [37, "id35"], [37, "id39"], [38, "id5"], [39, "thanks"], [39, "id3"], [39, "id6"], [39, "id9"], [39, "id14"], [39, "id17"], [39, "id23"], [39, "id28"], [40, "thanks"], [41, "thanks"], [41, "id3"], [41, "id9"], [41, "id14"], [41, "id17"], [41, "id20"], [41, "id23"], [41, "id26"], [42, "thanks"], [42, "id4"], [42, "id8"], [42, "id15"], [42, "id19"], [42, "id23"], [42, "id26"], [42, "id30"], [42, "id33"], [42, "id37"], [43, "thanks"], [43, "id13"], [43, "id19"], [43, "id22"], [43, "id27"], [44, "thanks"], [44, "id17"], [44, "id20"], [44, "id22"], [45, "thanks"], [45, "id10"], [45, "id13"], [45, "id23"], [47, "thanks"], [47, "id4"], [47, "id7"], [47, "id10"], [47, "id13"], [47, "id16"], [47, "id19"], [47, "id22"], [47, "id25"], [47, "id28"], [47, "id31"], [47, "id34"], [48, "thanks"], [48, "id3"], [48, "id6"], [48, "id9"], [48, "id12"], [48, "id15"], [48, "id18"], [48, "id21"], [48, "id24"], [48, "id28"], [48, "id31"], [48, "id33"], [49, "thanks"], [49, "id4"], [49, "id7"], [49, "id10"], [49, "id13"], [49, "id16"], [49, "id19"], [49, "id22"], [49, "id25"], [49, "id28"], [49, "id31"], [50, "thanks"], [50, "id3"], [50, "id6"], [50, "id9"], [50, "id12"], [50, "id15"], [50, "id18"], [50, "id21"], [50, "id24"], [50, "id27"], [50, "id30"], [50, "id33"], [50, "id36"], [51, "thanks"], [51, "id7"], [51, "id12"], [51, "id15"], [51, "id18"], [51, "id21"], [51, "id24"], [51, "id26"], [51, "id29"], [51, "id32"], [51, "id35"], [51, "id38"], [52, "thanks"], [52, "id3"], [52, "id6"], [52, "id13"], [52, "id16"], [52, "id19"], [52, "id22"], [52, "id27"], [52, "id30"], [53, "thanks"], [53, "id7"], [53, "id20"], [53, "id23"], [53, "id26"], [54, "thanks"], [54, "id5"], [54, "id10"], [54, "id13"], [54, "id16"], [54, "id19"], [54, "id22"], [54, "id25"], [54, "id28"]], "\u6210\u529f\u3057\u305f\u5834\u5408": [[95, "success-case"]], "\u623b\u308a\u5024": [[107, "return-value"], [108, "return-value"], [109, "return-value"], [110, "return-value"], [111, "return-value"], [112, "return-value"], [113, "return-value"], [114, "return-value"], [115, "return-value"], [116, "return-value"], [117, "return-value"], [118, "return-value"], [119, "return-value"], [120, "return-value"], [121, "return-value"], [122, "return-value"], [123, "return-value"], [124, "return-value"], [125, "return-value"], [126, "return-value"], [127, "return-value"], [128, "return-value"], [129, "return-value"], [130, "return-value"], [131, "return-value"], [132, "return-value"], [133, "return-value"], [134, "return-value"], [135, "return-value"], [136, "return-value"], [137, "return-value"], [138, "return-value"], [139, "return-value"], [140, "return-value"], [141, "return-value"], [142, "return-value"], [143, "return-value"], [144, "return-value"], [145, "return-value"], [146, "return-value"], [147, "return-value"], [148, "return-value"], [149, "return-value"], [150, "return-value"], [151, "return-value"], [152, "return-value"], [153, "return-value"], [154, "return-value"], [155, "return-value"], [156, "return-value"], [157, "return-value"], [158, "return-value"], [159, "return-value"], [160, "return-value"], [161, "return-value"], [162, "return-value"], [163, "return-value"], [164, "return-value"], [165, "return-value"], [166, "return-value"], [167, "return-value"], [168, "return-value"], [169, "return-value"], [170, "return-value"], [180, "return-value"], [183, "return-value"], [184, "return-value"], [186, "return-value"], [188, "return-value"], [191, "return-value"], [192, "return-value"], [193, "return-value"], [194, "return-value"], [195, "return-value"], [196, "return-value"], [197, "return-value"], [198, "return-value"], [200, "return-value"], [201, "return-value"], [202, "return-value"], [203, "return-value"], [205, "return-value"], [206, "return-value"], [207, "return-value"], [208, "return-value"], [209, "return-value"], [210, "return-value"], [211, "return-value"], [212, "return-value"], [213, "return-value"], [214, "return-value"], [215, "return-value"], [216, "return-value"], [217, "return-value"], [218, "return-value"], [219, "return-value"], [220, "return-value"], [221, "return-value"], [222, "return-value"], [246, "return-value"], [247, "return-value"], [284, "return-value"], [285, "return-value"], [286, "return-value"], [287, "return-value"], [288, "return-value"]], "\u6295\u7a3f\u6642\u9593\u3067\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22": [[311, "search-comments-by-posted-time"]], "\u63d0\u6848": [[252, "suggestion"], [253, null]], "\u64cd\u4f5c\u65b9\u6cd5": [[238, null]], "\u64ec\u4f3c\u30ab\u30e9\u30e0": [[89, null]], "\u6539\u826f": [[36, "id3"], [36, "id6"], [37, "id6"], [37, "id13"], [37, "id18"], [37, "id23"], [37, "id28"], [37, "id33"], [37, "id37"], [38, "id3"], [39, "improvements"], [39, "id1"], [39, "id4"], [39, "id7"], [39, "id10"], [39, "id12"], [39, "id15"], [39, "id18"], [39, "id21"], [39, "id25"], [40, "improvements"], [41, "improvements"], [41, "id1"], [41, "id4"], [41, "id6"], [41, "id10"], [41, "id12"], [41, "id15"], [41, "id18"], [41, "id21"], [41, "id24"], [41, "id28"], [42, "improvements"], [42, "id1"], [42, "id5"], [42, "id9"], [42, "id12"], [42, "id16"], [42, "id20"], [42, "id24"], [42, "id27"], [42, "id31"], [42, "id34"], [42, "id38"], [43, "improvements"], [43, "id1"], [43, "id2"], [43, "id4"], [43, "id6"], [43, "id8"], [43, "id10"], [43, "id12"], [43, "id14"], [43, "id16"], [43, "id20"], [43, "id23"], [43, "id28"], [44, "improvements"], [44, "id1"], [44, "id3"], [44, "id5"], [44, "id8"], [44, "id11"], [44, "id13"], [44, "id15"], [44, "id18"], [44, "id21"], [44, "id23"], [45, "improvements"], [45, "id1"], [45, "id3"], [45, "id5"], [45, "id8"], [45, "id11"], [45, "id14"], [45, "id15"], [45, "id18"], [45, "id20"], [45, "id21"], [45, "id24"], [46, "improvements"], [47, "improvements"], [47, "id2"], [47, "id5"], [47, "id8"], [47, "id11"], [47, "id14"], [47, "id17"], [47, "id20"], [47, "id23"], [47, "id26"], [47, "id29"], [47, "id32"], [48, "improvements"], [48, "id1"], [48, "id4"], [48, "id7"], [48, "id10"], [48, "id13"], [48, "id16"], [48, "id19"], [48, "id22"], [48, "id25"], [48, "id26"], [48, "id29"], [49, "improvements"], [49, "id2"], [49, "id5"], [49, "id8"], [49, "id11"], [49, "id14"], [49, "id17"], [49, "id20"], [49, "id23"], [49, "id26"], [49, "id29"], [50, "improvements"], [50, "id1"], [50, "id4"], [50, "id7"], [50, "id10"], [50, "id13"], [50, "id16"], [50, "id19"], [50, "id22"], [50, "id25"], [50, "id28"], [50, "id31"], [50, "id34"], [51, "improvements"], [51, "id1"], [51, "id3"], [51, "id5"], [51, "id8"], [51, "id10"], [51, "id13"], [51, "id16"], [51, "id19"], [51, "id22"], [51, "id27"], [51, "id30"], [51, "id33"], [51, "id36"], [52, "improvements"], [52, "id1"], [52, "id4"], [52, "id7"], [52, "id9"], [52, "id11"], [52, "id14"], [52, "id17"], [52, "id20"], [52, "id23"], [52, "id25"], [52, "id28"], [53, "improvements"], [53, "id1"], [53, "id3"], [53, "id5"], [53, "id8"], [53, "id10"], [53, "id12"], [53, "id14"], [53, "id16"], [53, "id18"], [53, "id21"], [53, "id24"], [54, "improvements"], [54, "id1"], [54, "id2"], [54, "id3"], [54, "id6"], [54, "id8"], [54, "id11"], [54, "id14"], [54, "id17"], [54, "id20"], [54, "id23"], [54, "id26"], [54, "id29"], [55, "improvements"], [55, "id3"], [55, "id6"], [55, "id8"], [55, "id10"], [55, "id12"], [55, "id14"], [55, "id16"], [55, "id19"], [55, "id21"]], "\u6570\u5024": [[305, "numeric-types"]], "\u6574\u6570": [[225, "integer"]], "\u6587\u5b57\u30af\u30e9\u30b9": [[244, "character-class"]], "\u6587\u5b57\u5217": [[225, "string"], [305, "string-types"]], "\u65b0\u3057\u3044\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0\u3059\u308b\u65b9\u6cd5": [[18, "how-to-add-a-new-documentation"]], "\u65b0\u3057\u3044\u8a00\u8a9e\u306e\u8ffd\u52a0\u65b9\u6cd5": [[17, "how-to-add-new-language"]], "\u65b0\u3057\u304f\u30b5\u30dd\u30fc\u30c8\u3057\u305fOS": [[43, "newly-supported-oses"]], "\u65b0\u898f\u6a5f\u80fd\u3068\u6539\u826f": [[43, "new-features-and-improvements"]], "\u65e2\u77e5\u306e\u554f\u984c": [[42, "known-issues"], [42, "id3"], [42, "id7"], [42, "id11"], [42, "id14"], [42, "id18"], [42, "id22"], [42, "id25"], [42, "id29"], [42, "id32"], [42, "id36"], [43, "known-issues"], [43, "id18"], [43, "id21"], [43, "id25"]], "\u65e5\u6642": [[305, "date-and-time-type"]], "\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u4f4d\u7f6e\u3092\u4f7f\u3046": [[188, "using-the-explicitly-specified-value-of-location"]], "\u6642\u9593": [[225, "time"]], "\u66f8\u5f0f": [[174, "id2"], [176, "id2"], [181, "synopsis"], [185, "id2"], [189, "id2"], [190, "id2"], [199, "id2"], [204, "id2"]], "\u6700\u521d\u306e1\u56de\u3060\u3051\u884c\u3046\u624b\u9806": [[12, "id3"]], "\u6761\u4ef6\u5f0f": [[224, "conditional-expression"]], "\u691c\u7d22": [[299, null], [311, "search"], [314, "search"]], "\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051": [[299, "id6"]], "\u691c\u7d22\u306e\u6319\u52d5": [[299, "id2"]], "\u691c\u7d22\u4f8b1": [[11, "id6"]], "\u691c\u7d22\u4f8b2": [[11, "id7"]], "\u691c\u7d22\u4f8b3": [[11, "id8"]], "\u691c\u7d22\u4f8b4": [[11, "id9"]], "\u691c\u7d22\u65b9\u6cd5": [[91, "how-to-search"], [91, "id5"], [91, "id9"]], "\u691c\u7d22\u6761\u4ef6": [[156, "search-conditions"]], "\u691c\u7d22\u6761\u4ef6: filter": [[156, "search-condition-filter"]], "\u691c\u7d22\u6761\u4ef6: query": [[156, "search-condition-query"]], "\u691c\u7d22\u7d50\u679c\u306e\u4e26\u3079\u66ff\u3048": [[308, "sort-a-search-result"]], "\u691c\u7d22\u95a2\u4fc2\u306e\u5f15\u6570": [[132, "search-related-parameters"], [134, "search-related-parameters"], [135, "search-related-parameters"], [156, "search-related-parameters"]], "\u6982\u8981": [[44, "summary"], [58, "summary"], [60, "summary"], [61, "summary"], [62, "summary"], [63, "summary"], [64, "summary"], [65, "summary"], [66, "summary"], [67, "summary"], [69, "summary"], [70, "summary"], [71, "summary"], [72, "summary"], [73, "summary"], [74, "summary"], [75, "summary"], [76, "summary"], [77, "summary"], [78, "summary"], [79, "summary"], [80, "summary"], [81, "summary"], [82, "summary"], [83, "summary"], [84, null], [84, "summary"], [85, "summary"], [87, "summary"], [88, "summary"], [90, "summary"], [91, "summary"], [93, "id1"], [94, "summary"], [95, "summary"], [96, "summary"], [97, "summary"], [98, "summary"], [99, "summary"], [100, "summary"], [107, "summary"], [108, "summary"], [109, "summary"], [110, "summary"], [111, "summary"], [112, "summary"], [113, "summary"], [114, "summary"], [115, "summary"], [116, "summary"], [117, "summary"], [118, "summary"], [119, "summary"], [120, "summary"], [121, "summary"], [122, "summary"], [123, "summary"], [124, "summary"], [125, "summary"], [126, "summary"], [127, "summary"], [128, "summary"], [129, "summary"], [130, "summary"], [131, "summary"], [132, "summary"], [133, "summary"], [134, "summary"], [135, "summary"], [136, "summary"], [137, "summary"], [138, "summary"], [139, "summary"], [140, "summary"], [141, "summary"], [142, "summary"], [143, "summary"], [144, "summary"], [145, "summary"], [146, "summary"], [147, "summary"], [148, "summary"], [149, "summary"], [150, "summary"], [151, "summary"], [152, "summary"], [153, "summary"], [154, "summary"], [155, "summary"], [156, "summary"], [157, "summary"], [158, "summary"], [159, "summary"], [160, "summary"], [161, "summary"], [162, "summary"], [163, "summary"], [164, "summary"], [165, "summary"], [166, "summary"], [167, "summary"], [168, "summary"], [169, "summary"], [170, "summary"], [171, "summary"], [173, "summary"], [175, "summary"], [177, "summary"], [178, "summary"], [180, "summary"], [181, "summary"], [183, "summary"], [184, "summary"], [186, "summary"], [188, "summary"], [191, "summary"], [192, "summary"], [193, "summary"], [194, "summary"], [195, "summary"], [196, "summary"], [197, "summary"], [198, "summary"], [200, "summary"], [201, "summary"], [202, "summary"], [203, "summary"], [205, "summary"], [206, "summary"], [207, "summary"], [208, "summary"], [209, "summary"], [210, "summary"], [211, "summary"], [212, "summary"], [213, "summary"], [214, "summary"], [215, "summary"], [216, "summary"], [217, "summary"], [218, "summary"], [219, "summary"], [220, "summary"], [221, "summary"], [222, "summary"], [227, "summary"], [229, "summary"], [230, "summary"], [231, "summary"], [232, "summary"], [233, "summary"], [234, "summary"], [235, "summary"], [236, "summary"], [237, "summary"], [240, "summary"], [243, "summary"], [244, "summary"], [245, "summary"], [246, "summary"], [247, "summary"], [248, "summary"], [254, "summary"], [255, null], [258, "summary"], [259, "summary"], [260, "summary"], [261, "summary"], [262, null], [264, "summary"], [265, "summary"], [266, "summary"], [267, "summary"], [268, "summary"], [269, "summary"], [270, "summary"], [271, "summary"], [272, "summary"], [273, "summary"], [274, "summary"], [275, "summary"], [276, "summary"], [277, "summary"], [278, "summary"], [279, "summary"], [280, "summary"], [281, "summary"], [284, "summary"], [285, "summary"], [286, "summary"], [287, "summary"], [288, "summary"]], "\u69cb\u6587": [[107, "syntax"], [108, "syntax"], [109, "syntax"], [110, "syntax"], [111, "syntax"], [112, "syntax"], [113, "syntax"], [114, "syntax"], [115, "syntax"], [116, "syntax"], [117, "syntax"], [118, "syntax"], [119, "syntax"], [120, "syntax"], [121, "syntax"], [122, "syntax"], [123, "syntax"], [124, "syntax"], [125, "syntax"], [126, "syntax"], [127, "syntax"], [128, "syntax"], [129, "syntax"], [130, "syntax"], [131, "syntax"], [132, "syntax"], [133, "syntax"], [134, "syntax"], [135, "syntax"], [136, "syntax"], [137, "syntax"], [138, "syntax"], [139, "syntax"], [140, "syntax"], [141, "syntax"], [142, "syntax"], [143, "syntax"], [144, "syntax"], [145, "syntax"], [146, "syntax"], [147, "syntax"], [148, "syntax"], [149, "syntax"], [150, "syntax"], [151, "syntax"], [152, "syntax"], [153, "syntax"], [154, "syntax"], [155, "syntax"], [156, "syntax"], [157, "syntax"], [158, "syntax"], [159, "syntax"], [160, "syntax"], [161, "syntax"], [162, "syntax"], [163, "syntax"], [164, "syntax"], [165, "syntax"], [166, "syntax"], [167, "syntax"], [168, "syntax"], [169, "syntax"], [170, "syntax"], [173, "syntax"], [175, "syntax"], [177, "syntax"], [178, "syntax"], [180, "syntax"], [183, "syntax"], [184, "syntax"], [186, "syntax"], [188, "syntax"], [191, "syntax"], [192, "syntax"], [193, "syntax"], [194, "syntax"], [195, "syntax"], [196, "syntax"], [197, "syntax"], [198, "syntax"], [200, "syntax"], [201, "syntax"], [202, "syntax"], [203, "syntax"], [205, "syntax"], [206, "syntax"], [207, "syntax"], [208, "syntax"], [209, "syntax"], [210, "syntax"], [211, "syntax"], [212, "syntax"], [213, "syntax"], [214, "syntax"], [215, "syntax"], [216, "syntax"], [217, "syntax"], [218, "syntax"], [219, "syntax"], [220, "syntax"], [221, "syntax"], [222, "syntax"], [230, "syntax"], [231, "syntax"], [232, "syntax"], [233, "syntax"], [234, "syntax"], [235, "syntax"], [236, "syntax"], [237, "syntax"], [244, "syntax"], [246, "syntax"], [247, "syntax"], [257, "syntax"], [258, "syntax"], [259, "syntax"], [260, "syntax"], [261, "syntax"], [264, "syntax"], [265, "syntax"], [266, "syntax"], [267, "syntax"], [268, "syntax"], [269, "syntax"], [270, "syntax"], [271, "syntax"], [272, "syntax"], [273, "syntax"], [274, "syntax"], [275, "syntax"], [276, "syntax"], [277, "syntax"], [278, "syntax"], [279, "syntax"], [280, "syntax"], [284, "syntax"], [285, "syntax"], [286, "syntax"], [287, "syntax"], [288, "syntax"]], "\u69d8\u3005\u306a\u30c6\u30b9\u30c8": [[14, "id7"]], "\u6b63\u898f\u8868\u73fe": [[244, null]], "\u6b63\u898f\u8868\u73fe: \u7a7a\u306e\u30d1\u30bf\u30fc\u30f3\u306e\u3068\u304d\u306e\u554f\u984c\u3092\u4fee\u6b63": [[45, "reference-regular-expression-fixed-a-bug-with-an-empty-pattern"]], "\u6b63\u898f\u8868\u73fe\u306b\u3088\u308b\u62bd\u51fa": [[208, "extraction-by-regular-expression"], [208, "id2"]], "\u6b63\u898f\u8868\u73fe\u6761\u4ef6": [[224, "regular-expression-condition"]], "\u6b63\u898f\u8868\u73fe\u6f14\u7b97\u5b50": [[225, "regular-expression-operator"]], "\u6bce\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u3067\u884c\u3046\u624b\u9806": [[12, "id6"]], "\u6bd4\u8f03": [[292, null]], "\u6bd4\u8f03\u6f14\u7b97\u5b50": [[225, "comparison-operators"]], "\u6c38\u7d9a\u30c6\u30fc\u30d6\u30eb": [[254, "persistent-table"]], "\u6c38\u7d9a\u30c6\u30fc\u30d6\u30eb\u3068\u4e00\u6642\u30c6\u30fc\u30d6\u30eb": [[254, "persistent-table-and-temporary-table"]], "\u6ce8\u610f\u70b9": [[94, "notes"]], "\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570": [[225, "float"]], "\u6e1b\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "subtraction-assignment-operator"]], "\u6e1b\u7b97\u6f14\u7b97\u5b50": [[225, "subtraction-operator"]], "\u6e96\u5099": [[314, "preparation"]], "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b": [[14, "id9"]], "\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b": [[14, "id8"]], "\u7279\u5fb4": [[254, "characteristics"]], "\u7279\u6b8a\u547d\u4ee4": [[176, "id11"]], "\u72ec\u81ea\u306e\u6f14\u7b97\u5b50": [[225, "original-operators"]], "\u7406\u7531": [[10, "id3"], [10, "id6"], [10, "id8"]], "\u74b0\u5883\u5909\u6570GRN_N_WORKERS_DEFAULT\u3067\u6307\u5b9a\u3059\u308b": [[94, "specified-by-environment-variable-grn-n-workers-default"]], "\u751f\u6210\u30ab\u30e9\u30e0": [[87, "generated-column"]], "\u751f\u6210\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0": [[90, "generated-scalar-column"]], "\u751f\u6210\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": [[91, "generated-vector-column"]], "\u7528\u8a9e\u96c6": [[248, "glossary"]], "\u7701\u7565\u53ef\u80fd\u5f15\u6570": [[110, "optional-parameters"], [111, "optional-parameters"], [115, "optional-parameters"], [116, "optional-parameters"], [117, "optional-parameters"], [118, "optional-parameters"], [122, "optional-parameters"], [124, "optional-parameters"], [125, "optional-parameters"], [132, "optional-parameters"], [133, "optional-parameters"], [134, "optional-parameters"], [135, "optional-parameters"], [136, "optional-parameters"], [137, "optional-parameters"], [138, "optional-parameters"], [140, "optional-parameters"], [141, "optional-parameters"], [142, "optional-parameters"], [143, "optional-parameters"], [146, "optional-parameters"], [149, "optional-parameters"], [150, "optional-parameters"], [155, "optional-parameters"], [157, "optional-parameters"], [158, "optional-parameters"], [160, "optional-parameters"], [161, "optional-parameters"], [163, "optional-parameters"], [165, "optional-parameters"], [166, "optional-parameters"], [167, "optional-parameters"], [168, "optional-parameters"], [180, "optional-parameters"], [180, "groonga-suggest-httpd-optional-parameters"], [183, "optional-parameter"], [188, "optional-parameter"], [193, "optional-parameters"], [195, "optional-parameter"], [202, "optional-parameters"], [203, "optional-parameter"], [205, "optional-parameters"], [209, "optional-parameters"], [219, "optional-parameters"], [231, "optional-parameter"], [232, "optional-parameter"], [233, "optional-parameter"], [234, "optional-parameter"], [235, "optional-parameter"], [237, "optional-parameters"], [246, "optional-parameters"], [247, "optional-parameters"], [258, "optional-parameter"], [259, "optional-parameter"], [260, "optional-parameter"], [261, "optional-parameter"], [272, "optional-parameter"], [274, "optional-parameter"], [275, "optional-parameter"]], "\u771f\u507d\u5024": [[225, "boolean"], [305, "boolean-type"]], "\u7b26\u53f7\u3042\u308a\u53f3\u30b7\u30d5\u30c8\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "bitwise-signed-right-shift-assignment-operator"]], "\u7b26\u53f7\u306a\u3057\u53f3\u30b7\u30d5\u30c8\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "bitwise-unsigned-right-shift-assignment-operator"]], "\u7b26\u53f7\u306a\u3057\u53f3\u30b7\u30d5\u30c8\u6f14\u7b97\u5b50": [[225, "unsigned-right-shift-operator"]], "\u7b26\u53f7\u4ed8\u304d\u53f3\u30b7\u30d5\u30c8\u6f14\u7b97\u5b50": [[225, "signed-right-shift-operator"]], "\u7b49\u4fa1\u6761\u4ef6": [[224, "equal-condition"]], "\u7b49\u4fa1\u6f14\u7b97\u5b50": [[225, "equal-operator"]], "\u7b97\u8853\u6f14\u7b97\u5b50": [[225, "arithmetic-operators"]], "\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u4f7f\u3046": [[177, "browse-the-administration-tool"]], "\u7bc4\u56f2\u691c\u7d22\u7528\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb\u306e\u4f5c\u6210": [[161, "create-range-index-table"]], "\u7c21\u5358\u306a\u4f7f\u3044\u65b9": [[134, "simple-usage"], [135, "simple-usage"], [156, "simple-usage"], [231, "simple-usage"], [232, "simple-usage"], [233, "simple-usage"], [234, "simple-usage"], [235, "simple-usage"], [237, "simple-usage"], [257, "simple-usage"], [258, "simple-usage"], [259, "simple-usage"], [272, "simple-usage"], [274, "simple-usage"], [275, "simple-usage"]], "\u7d42\u4e86\u3059\u308b": [[177, "shut-down"]], "\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9": [[175, "builtin-command"]], "\u7d44\u307f\u8fbc\u307f\u30b9\u30b3\u30a2\u30e9\u30fc": [[245, "built-in-scorers"]], "\u7d44\u307f\u8fbc\u307f\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc": [[229, "built-in-normalizers"]], "\u7d44\u8fbc\u578b": [[282, "builtin-types"]], "\u7d4c\u7def\u5ea6": [[305, "longitude-and-latitude-types"]], "\u7d50\u5408\u5f0f": [[224, "combined-expression"]], "\u7ffb\u8a33\u306e\u6210\u679c\u306e\u9001\u308a\u65b9": [[17, "how-to-send-your-works"]], "\u7ffb\u8a33\u306e\u6d41\u308c": [[17, "translation-flow"]], "\u7ffb\u8a33\u3092 .po \u30d5\u30a1\u30a4\u30eb\u306b\u53cd\u6620\u3059\u308b": [[18, "reflect-translations-to-po-files"]], "\u81ea\u52d5\u751f\u6210\u30ab\u30e9\u30e0\u3092\u4f5c\u6210": [[111, "create-a-generated-column"]], "\u8868\u793a\u7bc4\u56f2\u6307\u5b9a": [[308, "specify-output-ranges"]], "\u88dc\u5b8c": [[250, null], [252, "completion"]], "\u88dc\u6b63": [[251, null], [252, "correction"]], "\u88dc\u8db3: dev:version:bump \u30bf\u30b9\u30af": [[12, "dev-version-bump"]], "\u8907\u6570CPU\u30b3\u30a2\u5bfe\u5fdc": [[292, "using-multi-cpu-cores"]], "\u8907\u6570\u306e\u30ab\u30e9\u30e0\u3067\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3": [[306, "drilldown-with-multiple-column"]], "\u8907\u6570\u306e\u30ab\u30e9\u30e0\u306b\u307e\u305f\u304c\u3063\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u5834\u5408": [[310, "creating-one-column-index-against-multiple-columns"]], "\u8907\u6570\u306e\u30ab\u30e9\u30e0\u306b\u5bfe\u3059\u308b\u5168\u6587\u691c\u7d22": [[310, "full-text-search-against-multiple-columns"]], "\u8907\u6570\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9": [[292, "multi-databases"]], "\u89e3\u6790\u65b9\u6cd5": [[302, "how-to-analyze"]], "\u8a00\u8a9e\u30e2\u30c7\u30eb": [[227, null]], "\u8a00\u8a9e\u30e2\u30c7\u30eb\u306e\u7ba1\u7406\u65b9\u6cd5": [[227, "how-to-manage-language-models"]], "\u8a2d\u5b9a": [[21, "configuration"], [171, null]], "\u8a2d\u5b9a\u3067\u304d\u308b\u5024": [[94, "available-values"]], "\u8a2d\u5b9a\u306e\u78ba\u8a8d": [[94, "check-the-settings"]], "\u8a2d\u5b9a\u3092\u3059\u308b": [[177, "set-up"]], "\u8a2d\u5b9a\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6": [[177, "configuration-directives"]], "\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb": [[292, "configuration-file"]], "\u8a73\u7d30": [[100, "detail"]], "\u8a8d\u8a3c": [[292, "authentication"]], "\u8a9e\u5f59\u8868\u306e\u4f5c\u6210": [[161, "create-lexicon"]], "\u8aac\u660e": [[89, "id2"], [174, "id3"], [176, "id3"], [185, "id3"], [189, "id3"], [190, "id3"], [199, "id3"], [204, "id3"], [282, "description"]], "\u8aad\u307f\u30c7\u30fc\u30bf\u306e\u66f4\u65b0\u65b9\u6cd5": [[250, "how-to-update-reading-data"]], "\u8ab2\u984c\u8ffd\u8de1\u30b7\u30b9\u30c6\u30e0\u3078\u767b\u9332\u3059\u308b": [[19, "submit-a-bug-to-the-issue-tracker"]], "\u8ad6\u7406\u30c6\u30fc\u30d6\u30eb\u306e\u4e00\u90e8\u3092\u524a\u9664": [[137, "removes-parts-of-a-logical-table"]], "\u8ad6\u7406\u5426\u5b9a\u6f14\u7b97\u5b50": [[225, "logical-not-operator"]], "\u8ad6\u7406\u548c": [[224, "logical-or"]], "\u8ad6\u7406\u548c\u6f14\u7b97\u5b50": [[225, "logical-or-operator"]], "\u8ad6\u7406\u5dee": [[224, "logical-and-not"]], "\u8ad6\u7406\u5dee\u6f14\u7b97\u5b50": [[225, "logical-and-not-operator"]], "\u8ad6\u7406\u6f14\u7b97\u5b50": [[225, "logical-operators"]], "\u8ad6\u7406\u7a4d": [[224, "logical-and"]], "\u8ad6\u7406\u7a4d\u6f14\u7b97\u5b50": [[225, "logical-and-operator"]], "\u8ee2\u7f6e\u7d22\u5f15\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30b6": [[0, "inverted-index-and-tokenizer"]], "\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u691c\u7d22\u6761\u4ef6": [[224, "near-phrase-search-condition"]], "\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "near-phrase-search-operator"]], "\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u76f4\u7a4d\u691c\u7d22\u6761\u4ef6": [[224, "near-phrase-product-search-condition"]], "\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u76f4\u7a4d\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "near-phrase-product-search-operator"]], "\u8fd1\u508d\u691c\u7d22\u6761\u4ef6": [[224, "near-search-condition"]], "\u8fd1\u508d\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "near-search-operator"]], "\u8fd4\u5024": [[185, "id5"], [189, "id6"], [190, "id6"], [199, "id4"], [204, "id5"]], "\u8ffd\u52a0\u306e\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u4e00\u89a7": [[229, "additional-normalizers"]], "\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f": [[10, "id2"]], "\u9078\u629e": [[244, "choice"]], "\u90e8\u5206\u4e00\u81f4\u691c\u7d22": [[299, "id5"]], "\u914d\u5217": [[225, "array"]], "\u91cd\u307f\u3060\u3051\u3092\u9069\u7528\u3059\u308b\u65b9\u6cd5": [[91, "how-to-apply-just-weight"]], "\u91cd\u307f\u4ed8\u304d\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": [[91, "weight-vector-column"]], "\u91cd\u307f\u4ed8\u304d\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0\u306e\u4f5c\u6210": [[111, "create-a-weight-vector-column"]], "\u91cf\u6307\u5b9a\u5b50": [[244, "quantifier"]], "\u958b\u767a": [[20, null]], "\u95a2\u4fc2\u5f0f": [[11, "id4"]], "\u95a2\u6570": [[182, null], [227, "functions"]], "\u95a2\u6570\u547c\u3073\u51fa\u3057": [[225, "function-call"]], "\u95a2\u9023\u3059\u308b\u30c6\u30fc\u30d6\u30eb": [[181, "related-tables"]], "\u95a2\u9023\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3068\u4e00\u7dd2\u306b\u524a\u9664": [[137, "removes-with-related-tables"]], "\u9664\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50": [[225, "division-assignment-operator"]], "\u9664\u7b97\u6f14\u7b97\u5b50": [[225, "division-operator"]], "\u9759\u7684\u306a\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9\u65b9\u6cd5": [[226, "offline-index-construction"]], "\u9759\u7684\u306a\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9\u65b9\u6cd5: \u4e26\u5217\u5b9f\u884c\u3092\u30b5\u30dd\u30fc\u30c8": [[45, "offline-index-construction-added-support-for-parallel-execution"]], "\u9759\u7684\u89e3\u6790": [[14, "id12"]], "\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22": [[299, "id4"]], "\u9806\u5e8f\u4ed8\u304d\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u691c\u7d22\u6761\u4ef6": [[224, "ordered-near-phrase-search-condition"]], "\u9806\u5e8f\u4ed8\u304d\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "ordered-near-phrase-search-operator"]], "\u9806\u5e8f\u4ed8\u304d\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u76f4\u7a4d\u691c\u7d22\u6761\u4ef6": [[224, "ordered-near-phrase-product-search-condition"]], "\u9806\u5e8f\u4ed8\u304d\u8fd1\u508d\u30d5\u30ec\u30fc\u30ba\u76f4\u7a4d\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "ordered-near-phrase-product-search-operator"]], "\u985e\u4f3c\u6587\u66f8\u691c\u7d22": [[251, "similar-search"]], "\u985e\u4f3c\u6587\u66f8\u691c\u7d22\u6761\u4ef6": [[224, "similar-search-condition"]], "\u985e\u4f3c\u6587\u66f8\u691c\u7d22\u6f14\u7b97\u5b50": [[225, "similar-search-operator"]], "\u9ad8\u5ea6\u306a\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u95a2\u9023\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": [[135, "advanced-drilldown-related-parameters"], [156, "advanced-drilldown-related-parameters"]], "\u9ad8\u5ea6\u306a\u4f7f\u3044\u65b9": [[231, "advanced-usage"], [232, "advanced-usage"], [233, "advanced-usage"], [234, "advanced-usage"], [235, "advanced-usage"], [237, "advanced-usage"], [257, "advanced-usage"], [258, "advanced-usage"], [259, "advanced-usage"], [272, "advanced-usage"], [274, "advanced-usage"], [275, "advanced-usage"]], "\u9ad8\u5ea6\u306a\u691c\u7d22\u306e\u305f\u3081\u306e\u5f15\u6570": [[135, "advanced-search-parameters"], [156, "advanced-search-parameters"]]}, "docnames": ["characteristic", "client", "community", "contribution", "contribution/development", "contribution/development/build", "contribution/development/build/unix_autotools", "contribution/development/build/unix_cmake", "contribution/development/build/windows_cmake", "contribution/development/com", "contribution/development/cooperation", "contribution/development/query", "contribution/development/release", "contribution/development/repository", "contribution/development/test", "contribution/documentation", "contribution/documentation/c-api", "contribution/documentation/i18n", "contribution/documentation/introduction", "contribution/report", "development", "development/travis-ci", "index", "install", "install/almalinux", "install/amazon_linux", "install/centos", "install/cmake", "install/debian", "install/docker", "install/mac_os_x", "install/others", "install/ubuntu", "install/windows", "limitations", "news", "news/0", "news/1.0", "news/1.1", "news/1.2", "news/1.3", "news/10", "news/11", "news/12", "news/13", "news/14", "news/15", "news/2", "news/3", "news/4", "news/5", "news/6", "news/7", "news/8", "news/9", "news/senna", "origin", "reference", "reference/alias", "reference/api", "reference/api/global_configurations", "reference/api/grn_cache", "reference/api/grn_column", "reference/api/grn_command_version", "reference/api/grn_content_type", "reference/api/grn_ctx", "reference/api/grn_db", "reference/api/grn_encoding", "reference/api/grn_expr", "reference/api/grn_geo", "reference/api/grn_hook", "reference/api/grn_ii", "reference/api/grn_index_cursor", "reference/api/grn_info", "reference/api/grn_inspect", "reference/api/grn_match_escalation", "reference/api/grn_obj", "reference/api/grn_proc", "reference/api/grn_search", "reference/api/grn_table", "reference/api/grn_table_cursor", "reference/api/grn_thread", "reference/api/grn_type", "reference/api/grn_user_data", "reference/api/overview", "reference/api/plugin", "reference/cast", "reference/column", "reference/columns/index", "reference/columns/pseudo", "reference/columns/scalar", "reference/columns/vector", "reference/command", "reference/command/command_version", "reference/command/n_workers", "reference/command/output_format", "reference/command/output_trace_log", "reference/command/pretty_print", "reference/command/request_id", "reference/command/request_timeout", "reference/command/return_code", "reference/command/return_codes/grn_input_output_error", "reference/command/return_codes/grn_invalid_argument", "reference/command/return_codes/grn_no_such_file_or_directory", "reference/command/return_codes/grn_not_enough_space", "reference/command/return_codes/grn_operation_not_permitted", "reference/command/return_codes/grn_resource_deadlock_avoided", "reference/commands/cache_limit", "reference/commands/check", "reference/commands/clearlock", "reference/commands/column_copy", "reference/commands/column_create", "reference/commands/column_list", "reference/commands/column_remove", "reference/commands/column_rename", "reference/commands/config_delete", "reference/commands/config_get", "reference/commands/config_set", "reference/commands/database_unmap", "reference/commands/define_selector", "reference/commands/defrag", "reference/commands/delete", "reference/commands/dump", "reference/commands/index_column_diff", "reference/commands/io_flush", "reference/commands/load", "reference/commands/lock_acquire", "reference/commands/lock_clear", "reference/commands/lock_release", "reference/commands/log_level", "reference/commands/log_put", "reference/commands/log_reopen", "reference/commands/logical_count", "reference/commands/logical_parameters", "reference/commands/logical_range_filter", "reference/commands/logical_select", "reference/commands/logical_shard_list", "reference/commands/logical_table_remove", "reference/commands/normalize", "reference/commands/normalizer_list", "reference/commands/object_exist", "reference/commands/object_inspect", "reference/commands/object_list", "reference/commands/object_remove", "reference/commands/plugin_register", "reference/commands/plugin_unregister", "reference/commands/query_expand", "reference/commands/quit", "reference/commands/range_filter", "reference/commands/reference_acquire", "reference/commands/reference_release", "reference/commands/register", "reference/commands/reindex", "reference/commands/request_cancel", "reference/commands/ruby_eval", "reference/commands/schema", "reference/commands/select", "reference/commands/shutdown", "reference/commands/status", "reference/commands/suggest", "reference/commands/table_copy", "reference/commands/table_create", "reference/commands/table_list", "reference/commands/table_remove", "reference/commands/table_rename", "reference/commands/table_tokenize", "reference/commands/thread_dump", "reference/commands/thread_limit", "reference/commands/tokenize", "reference/commands/tokenizer_list", "reference/commands/truncate", "reference/configuration", "reference/executables", "reference/executables/grndb", "reference/executables/grnslap", "reference/executables/groonga", "reference/executables/groonga-benchmark", "reference/executables/groonga-httpd", "reference/executables/groonga-server-http", "reference/executables/groonga-suggest-create-dataset", "reference/executables/groonga-suggest-httpd", "reference/executables/groonga-suggest-learner", "reference/function", "reference/functions/between", "reference/functions/cast_loose", "reference/functions/edit_distance", "reference/functions/escalate", "reference/functions/fuzzy_search", "reference/functions/geo_distance", "reference/functions/geo_in_circle", "reference/functions/geo_in_rectangle", "reference/functions/highlight", "reference/functions/highlight_full", "reference/functions/highlight_html", "reference/functions/html_untag", "reference/functions/in_records", "reference/functions/in_values", "reference/functions/language_model_vectorize", "reference/functions/math_abs", "reference/functions/now", "reference/functions/number_classify", "reference/functions/prefix_rk_search", "reference/functions/query", "reference/functions/query_parallel_or", "reference/functions/rand", "reference/functions/snippet", "reference/functions/snippet_html", "reference/functions/string_length", "reference/functions/string_slice", "reference/functions/string_substring", "reference/functions/sub_filter", "reference/functions/time_classify_day", "reference/functions/time_classify_day_of_week", "reference/functions/time_classify_hour", "reference/functions/time_classify_minute", "reference/functions/time_classify_month", "reference/functions/time_classify_second", "reference/functions/time_classify_week", "reference/functions/time_classify_year", "reference/functions/vector_find", "reference/functions/vector_new", "reference/functions/vector_size", "reference/functions/vector_slice", "reference/grn_expr", "reference/grn_expr/query_syntax", "reference/grn_expr/script_syntax", "reference/indexing", "reference/language_model", "reference/log", "reference/normalizers", "reference/normalizers/normalizer_auto", "reference/normalizers/normalizer_nfkc", "reference/normalizers/normalizer_nfkc100", "reference/normalizers/normalizer_nfkc121", "reference/normalizers/normalizer_nfkc130", "reference/normalizers/normalizer_nfkc150", "reference/normalizers/normalizer_nfkc51", "reference/normalizers/normalizer_table", "reference/operations", "reference/operations/geolocation_search", "reference/operations/prefix_rk_search", "reference/output", "reference/query_expanders", "reference/query_expanders/tsv", "reference/regular_expression", "reference/scorer", "reference/scorers/scorer_tf_at_most", "reference/scorers/scorer_tf_idf", "reference/sharding", "reference/suggest", "reference/suggest/completion", "reference/suggest/correction", "reference/suggest/introduction", "reference/suggest/suggestion", "reference/tables", "reference/token_filter/summary", "reference/token_filters", "reference/token_filters/token_filter_nfkc", "reference/token_filters/token_filter_nfkc100", "reference/token_filters/token_filter_nfkc150", "reference/token_filters/token_filter_stem", "reference/token_filters/token_filter_stop_word", "reference/tokenizer/summary", "reference/tokenizers", "reference/tokenizers/token_bigram", "reference/tokenizers/token_bigram_ignore_blank", "reference/tokenizers/token_bigram_ignore_blank_split_symbol", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit", "reference/tokenizers/token_bigram_split_symbol", "reference/tokenizers/token_bigram_split_symbol_alpha", "reference/tokenizers/token_bigram_split_symbol_alpha_digit", "reference/tokenizers/token_delimit", "reference/tokenizers/token_delimit_null", "reference/tokenizers/token_mecab", "reference/tokenizers/token_ngram", "reference/tokenizers/token_pattern", "reference/tokenizers/token_regexp", "reference/tokenizers/token_table", "reference/tokenizers/token_trigram", "reference/tokenizers/token_unigram", "reference/tuning", "reference/types", "reference/window_function", "reference/window_functions/record_number", "reference/window_functions/window_count", "reference/window_functions/window_rank", "reference/window_functions/window_record_number", "reference/window_functions/window_sum", "server", "server/gqtp", "server/http", "server/http/comparison", "server/http/groonga", "server/http/groonga-httpd", "server/memcached", "server/package", "spec", "spec/gqtp", "spec/search", "troubleshooting", "troubleshooting/different_results_with_the_same_keyword", "troubleshooting/how_to_analyze_error_message", "troubleshooting/mmap_cannot_allocate_memory", "tutorial", "tutorial/data", "tutorial/drilldown", "tutorial/index", "tutorial/introduction", "tutorial/lexicon", "tutorial/match_columns", "tutorial/micro_blog", "tutorial/network", "tutorial/patricia_trie", "tutorial/query_expansion", "tutorial/search"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["characteristic.rst", "client.rst", "community.rst", "contribution.rst", "contribution/development.rst", "contribution/development/build.rst", "contribution/development/build/unix_autotools.rst", "contribution/development/build/unix_cmake.rst", "contribution/development/build/windows_cmake.rst", "contribution/development/com.rst", "contribution/development/cooperation.rst", "contribution/development/query.rst", "contribution/development/release.rst", "contribution/development/repository.rst", "contribution/development/test.rst", "contribution/documentation.rst", "contribution/documentation/c-api.rst", "contribution/documentation/i18n.rst", "contribution/documentation/introduction.md", "contribution/report.rst", "development.rst", "development/travis-ci.rst", "index.rst", "install.rst", "install/almalinux.rst", "install/amazon_linux.rst", "install/centos.rst", "install/cmake.md", "install/debian.rst", "install/docker.rst", "install/mac_os_x.rst", "install/others.rst", "install/ubuntu.md", "install/windows.rst", "limitations.rst", "news.rst", "news/0.rst", "news/1.0.rst", "news/1.1.rst", "news/1.2.rst", "news/1.3.rst", "news/10.rst", "news/11.rst", "news/12.rst", "news/13.md", "news/14.md", "news/15.md", "news/2.rst", "news/3.rst", "news/4.rst", "news/5.rst", "news/6.rst", "news/7.rst", "news/8.rst", "news/9.rst", "news/senna.rst", "origin.md", "reference.rst", "reference/alias.rst", "reference/api.rst", "reference/api/global_configurations.rst", "reference/api/grn_cache.rst", "reference/api/grn_column.rst", "reference/api/grn_command_version.rst", "reference/api/grn_content_type.rst", "reference/api/grn_ctx.rst", "reference/api/grn_db.rst", "reference/api/grn_encoding.rst", "reference/api/grn_expr.rst", "reference/api/grn_geo.rst", "reference/api/grn_hook.rst", "reference/api/grn_ii.rst", "reference/api/grn_index_cursor.rst", "reference/api/grn_info.rst", "reference/api/grn_inspect.rst", "reference/api/grn_match_escalation.rst", "reference/api/grn_obj.rst", "reference/api/grn_proc.rst", "reference/api/grn_search.rst", "reference/api/grn_table.rst", "reference/api/grn_table_cursor.rst", "reference/api/grn_thread.rst", "reference/api/grn_type.rst", "reference/api/grn_user_data.rst", "reference/api/overview.rst", "reference/api/plugin.rst", "reference/cast.rst", "reference/column.rst", "reference/columns/index.rst", "reference/columns/pseudo.rst", "reference/columns/scalar.rst", "reference/columns/vector.rst", "reference/command.rst", "reference/command/command_version.rst", "reference/command/n_workers.md", "reference/command/output_format.rst", "reference/command/output_trace_log.md", "reference/command/pretty_print.rst", "reference/command/request_id.rst", "reference/command/request_timeout.rst", "reference/command/return_code.rst", "reference/command/return_codes/grn_input_output_error.rst", "reference/command/return_codes/grn_invalid_argument.rst", "reference/command/return_codes/grn_no_such_file_or_directory.rst", "reference/command/return_codes/grn_not_enough_space.rst", "reference/command/return_codes/grn_operation_not_permitted.rst", "reference/command/return_codes/grn_resource_deadlock_avoided.rst", "reference/commands/cache_limit.rst", "reference/commands/check.rst", "reference/commands/clearlock.rst", "reference/commands/column_copy.rst", "reference/commands/column_create.rst", "reference/commands/column_list.rst", "reference/commands/column_remove.rst", "reference/commands/column_rename.rst", "reference/commands/config_delete.rst", "reference/commands/config_get.rst", "reference/commands/config_set.rst", "reference/commands/database_unmap.rst", "reference/commands/define_selector.rst", "reference/commands/defrag.rst", "reference/commands/delete.rst", "reference/commands/dump.rst", "reference/commands/index_column_diff.rst", "reference/commands/io_flush.rst", "reference/commands/load.rst", "reference/commands/lock_acquire.rst", "reference/commands/lock_clear.rst", "reference/commands/lock_release.rst", "reference/commands/log_level.rst", "reference/commands/log_put.rst", "reference/commands/log_reopen.rst", "reference/commands/logical_count.rst", "reference/commands/logical_parameters.rst", "reference/commands/logical_range_filter.rst", "reference/commands/logical_select.rst", "reference/commands/logical_shard_list.rst", "reference/commands/logical_table_remove.rst", "reference/commands/normalize.rst", "reference/commands/normalizer_list.rst", "reference/commands/object_exist.rst", "reference/commands/object_inspect.rst", "reference/commands/object_list.rst", "reference/commands/object_remove.rst", "reference/commands/plugin_register.rst", "reference/commands/plugin_unregister.rst", "reference/commands/query_expand.rst", "reference/commands/quit.rst", "reference/commands/range_filter.rst", "reference/commands/reference_acquire.rst", "reference/commands/reference_release.rst", "reference/commands/register.rst", "reference/commands/reindex.rst", "reference/commands/request_cancel.rst", "reference/commands/ruby_eval.rst", "reference/commands/schema.rst", "reference/commands/select.rst", "reference/commands/shutdown.rst", "reference/commands/status.rst", "reference/commands/suggest.rst", "reference/commands/table_copy.rst", "reference/commands/table_create.rst", "reference/commands/table_list.rst", "reference/commands/table_remove.rst", "reference/commands/table_rename.rst", "reference/commands/table_tokenize.rst", "reference/commands/thread_dump.rst", "reference/commands/thread_limit.rst", "reference/commands/tokenize.rst", "reference/commands/tokenizer_list.rst", "reference/commands/truncate.rst", "reference/configuration.rst", "reference/executables.rst", "reference/executables/grndb.rst", "reference/executables/grnslap.rst", "reference/executables/groonga.rst", "reference/executables/groonga-benchmark.rst", "reference/executables/groonga-httpd.rst", "reference/executables/groonga-server-http.rst", "reference/executables/groonga-suggest-create-dataset.rst", "reference/executables/groonga-suggest-httpd.rst", "reference/executables/groonga-suggest-learner.rst", "reference/function.rst", "reference/functions/between.rst", "reference/functions/cast_loose.rst", "reference/functions/edit_distance.rst", "reference/functions/escalate.rst", "reference/functions/fuzzy_search.rst", "reference/functions/geo_distance.rst", "reference/functions/geo_in_circle.rst", "reference/functions/geo_in_rectangle.rst", "reference/functions/highlight.rst", "reference/functions/highlight_full.rst", "reference/functions/highlight_html.rst", "reference/functions/html_untag.rst", "reference/functions/in_records.rst", "reference/functions/in_values.rst", "reference/functions/language_model_vectorize.md", "reference/functions/math_abs.rst", "reference/functions/now.rst", "reference/functions/number_classify.rst", "reference/functions/prefix_rk_search.rst", "reference/functions/query.rst", "reference/functions/query_parallel_or.rst", "reference/functions/rand.rst", "reference/functions/snippet.rst", "reference/functions/snippet_html.rst", "reference/functions/string_length.rst", "reference/functions/string_slice.rst", "reference/functions/string_substring.rst", "reference/functions/sub_filter.rst", "reference/functions/time_classify_day.rst", "reference/functions/time_classify_day_of_week.rst", "reference/functions/time_classify_hour.rst", "reference/functions/time_classify_minute.rst", "reference/functions/time_classify_month.rst", "reference/functions/time_classify_second.rst", "reference/functions/time_classify_week.rst", "reference/functions/time_classify_year.rst", "reference/functions/vector_find.rst", "reference/functions/vector_new.rst", "reference/functions/vector_size.rst", "reference/functions/vector_slice.rst", "reference/grn_expr.rst", "reference/grn_expr/query_syntax.rst", "reference/grn_expr/script_syntax.rst", "reference/indexing.rst", "reference/language_model.md", "reference/log.rst", "reference/normalizers.rst", "reference/normalizers/normalizer_auto.rst", "reference/normalizers/normalizer_nfkc.md", "reference/normalizers/normalizer_nfkc100.rst", "reference/normalizers/normalizer_nfkc121.rst", "reference/normalizers/normalizer_nfkc130.rst", "reference/normalizers/normalizer_nfkc150.rst", "reference/normalizers/normalizer_nfkc51.rst", "reference/normalizers/normalizer_table.rst", "reference/operations.rst", "reference/operations/geolocation_search.rst", "reference/operations/prefix_rk_search.rst", "reference/output.rst", "reference/query_expanders.rst", "reference/query_expanders/tsv.rst", "reference/regular_expression.rst", "reference/scorer.rst", "reference/scorers/scorer_tf_at_most.rst", "reference/scorers/scorer_tf_idf.rst", "reference/sharding.rst", "reference/suggest.rst", "reference/suggest/completion.rst", "reference/suggest/correction.rst", "reference/suggest/introduction.rst", "reference/suggest/suggestion.rst", "reference/tables.rst", "reference/token_filter/summary.rst", "reference/token_filters.rst", "reference/token_filters/token_filter_nfkc.md", "reference/token_filters/token_filter_nfkc100.rst", "reference/token_filters/token_filter_nfkc150.rst", "reference/token_filters/token_filter_stem.rst", "reference/token_filters/token_filter_stop_word.rst", "reference/tokenizer/summary.rst", "reference/tokenizers.rst", "reference/tokenizers/token_bigram.rst", "reference/tokenizers/token_bigram_ignore_blank.rst", "reference/tokenizers/token_bigram_ignore_blank_split_symbol.rst", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.rst", "reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.rst", "reference/tokenizers/token_bigram_split_symbol.rst", "reference/tokenizers/token_bigram_split_symbol_alpha.rst", "reference/tokenizers/token_bigram_split_symbol_alpha_digit.rst", "reference/tokenizers/token_delimit.rst", "reference/tokenizers/token_delimit_null.rst", "reference/tokenizers/token_mecab.rst", "reference/tokenizers/token_ngram.rst", "reference/tokenizers/token_pattern.rst", "reference/tokenizers/token_regexp.rst", "reference/tokenizers/token_table.rst", "reference/tokenizers/token_trigram.rst", "reference/tokenizers/token_unigram.rst", "reference/tuning.rst", "reference/types.rst", "reference/window_function.rst", "reference/window_functions/record_number.rst", "reference/window_functions/window_count.rst", "reference/window_functions/window_rank.rst", "reference/window_functions/window_record_number.rst", "reference/window_functions/window_sum.rst", "server.rst", "server/gqtp.rst", "server/http.rst", "server/http/comparison.rst", "server/http/groonga.rst", "server/http/groonga-httpd.rst", "server/memcached.rst", "server/package.rst", "spec.rst", "spec/gqtp.rst", "spec/search.rst", "troubleshooting.rst", "troubleshooting/different_results_with_the_same_keyword.rst", "troubleshooting/how_to_analyze_error_message.rst", "troubleshooting/mmap_cannot_allocate_memory.rst", "tutorial.rst", "tutorial/data.rst", "tutorial/drilldown.rst", "tutorial/index.rst", "tutorial/introduction.rst", "tutorial/lexicon.rst", "tutorial/match_columns.rst", "tutorial/micro_blog.rst", "tutorial/network.rst", "tutorial/patricia_trie.rst", "tutorial/query_expansion.rst", "tutorial/search.rst"], "indexentries": {"--address": [[175, "cmdoption-groonga-a", false]], "--bind-address": [[175, "cmdoption-groonga-bind-address", false]], "--cache-base-path": [[175, "cmdoption-groonga-cache-base-path", false]], "--cache-limit": [[175, "cmdoption-groonga-cache-limit", false]], "--config-path": [[175, "cmdoption-groonga-config-path", false]], "--daemon": [[180, "cmdoption-groonga-suggest-httpd-d", false], [181, "cmdoption-groonga-suggest-learner-d", false]], "--default-match-escalation-threshold": [[175, "cmdoption-groonga-default-match-escalation-threshold", false]], "--default-n-workers": [[175, "cmdoption-groonga-default-n-workers", false]], "--default-request-timeout": [[175, "cmdoption-groonga-default-request-timeout", false]], "--dir": [[176, "cmdoption-groonga-benchmark-dir", false]], "--disable-max-fd-check": [[180, "cmdoption-groonga-suggest-httpd-disable-max-fd-check", false]], "--document-root": [[175, "cmdoption-groonga-document-root", false]], "--encoding": [[175, "cmdoption-groonga-e", false]], "--ftp": [[176, "cmdoption-groonga-benchmark-ftp", false]], "--groonga": [[176, "cmdoption-groonga-benchmark-groonga", false]], "--help": [[175, "cmdoption-groonga-h", false]], "--host": [[176, "cmdoption-groonga-benchmark-i", false]], "--log-base-path": [[180, "cmdoption-groonga-suggest-httpd-l", false], [181, "cmdoption-groonga-suggest-learner-l", false]], "--log-flags": [[175, "cmdoption-groonga-log-flags", false]], "--log-level": [[175, "cmdoption-groonga-l", false], [181, "cmdoption-groonga-suggest-learner-log-level", false]], "--log-output-dir": [[176, "cmdoption-groonga-benchmark-log-output-dir", false]], "--log-path": [[175, "cmdoption-groonga-log-path", false], [181, "cmdoption-groonga-suggest-learner-log-path", false]], "--log-rotate-threshold-size": [[175, "cmdoption-groonga-log-rotate-threshold-size", false]], "--max-threads": [[175, "cmdoption-groonga-t", false]], "--n-lines-per-log-file": [[180, "cmdoption-groonga-suggest-httpd-n-lines-per-log-file", false]], "--n-threads": [[180, "cmdoption-groonga-suggest-httpd-t", false]], "--pid-path": [[175, "cmdoption-groonga-pid-path", false]], "--port": [[175, "cmdoption-groonga-p", false], [176, "cmdoption-groonga-benchmark-p", false], [180, "cmdoption-groonga-suggest-httpd-p", false]], "--protocol": [[175, "cmdoption-groonga-protocol", false], [176, "cmdoption-groonga-benchmark-protocol", false]], "--query-log-path": [[175, "cmdoption-groonga-query-log-path", false]], "--query-log-rotate-threshold-size": [[175, "cmdoption-groonga-query-log-rotate-threshold-size", false]], "--receive-endpoint": [[180, "cmdoption-groonga-suggest-httpd-r", false], [181, "cmdoption-groonga-suggest-learner-r", false]], "--send-endpoint": [[180, "cmdoption-groonga-suggest-httpd-s", false], [181, "cmdoption-groonga-suggest-learner-s", false]], "--server-id": [[175, "cmdoption-groonga-i", false]], "-a": [[175, "cmdoption-groonga-a", false]], "-c": [[175, "cmdoption-groonga-c", false]], "-d": [[175, "cmdoption-groonga-d", false], [180, "cmdoption-groonga-suggest-httpd-d", false], [181, "cmdoption-groonga-suggest-learner-d", false]], "-e": [[175, "cmdoption-groonga-e", false]], "-h": [[175, "cmdoption-groonga-h", false]], "-i": [[175, "cmdoption-groonga-i", false], [176, "cmdoption-groonga-benchmark-i", false]], "-l": [[175, "cmdoption-groonga-l", false], [180, "cmdoption-groonga-suggest-httpd-l", false], [181, "cmdoption-groonga-suggest-learner-l", false]], "-m": [[174, "cmdoption-grnslap-m", false]], "-n": [[175, "cmdoption-groonga-n", false]], "-p": [[174, "cmdoption-grnslap-P", false], [175, "cmdoption-groonga-p", false], [176, "cmdoption-groonga-benchmark-p", false], [180, "cmdoption-groonga-suggest-httpd-p", false]], "-r": [[180, "cmdoption-groonga-suggest-httpd-r", false], [181, "cmdoption-groonga-suggest-learner-r", false]], "-s": [[175, "cmdoption-groonga-s", false], [180, "cmdoption-groonga-suggest-httpd-s", false], [181, "cmdoption-groonga-suggest-learner-s", false]], "-t": [[175, "cmdoption-groonga-t", false], [180, "cmdoption-groonga-suggest-httpd-t", false]], "command": [[175, "cmdoption-groonga-arg-command", false]], "db": [[176, "cmdoption-groonga-benchmark-arg-db", false]], "dest": [[174, "cmdoption-grnslap-arg-dest", false], [175, "cmdoption-groonga-arg-dest", false]], "grn_cache (c type)": [[61, "c.grn_cache", false]], "grn_cache_close (c function)": [[61, "c.grn_cache_close", false]], "grn_cache_current_get (c function)": [[61, "c.grn_cache_current_get", false]], "grn_cache_current_set (c function)": [[61, "c.grn_cache_current_set", false]], "grn_cache_get_max_n_entries (c function)": [[61, "c.grn_cache_get_max_n_entries", false]], "grn_cache_set_max_n_entries (c function)": [[61, "c.grn_cache_set_max_n_entries", false]], "grn_content_type (c type)": [[64, "c.grn_content_type", false]], "grn_expr_add_var (c function)": [[68, "c.grn_expr_add_var", false]], "grn_expr_alloc (c function)": [[68, "c.grn_expr_alloc", false]], "grn_expr_append_const (c function)": [[68, "c.grn_expr_append_const", false]], "grn_expr_append_const_int (c function)": [[68, "c.grn_expr_append_const_int", false]], "grn_expr_append_const_str (c function)": [[68, "c.grn_expr_append_const_str", false]], "grn_expr_append_obj (c function)": [[68, "c.grn_expr_append_obj", false]], "grn_expr_append_op (c function)": [[68, "c.grn_expr_append_op", false]], "grn_expr_close (c function)": [[68, "c.grn_expr_close", false]], "grn_expr_compile (c function)": [[68, "c.grn_expr_compile", false]], "grn_expr_create (c function)": [[68, "c.grn_expr_create", false]], "grn_expr_exec (c function)": [[68, "c.grn_expr_exec", false]], "grn_expr_get_keywords (c function)": [[68, "c.grn_expr_get_keywords", false]], "grn_expr_get_var_by_offset (c function)": [[68, "c.grn_expr_get_var_by_offset", false]], "grn_expr_syntax_escape (c function)": [[68, "c.grn_expr_syntax_escape", false]], "grn_expr_syntax_escape_query (c function)": [[68, "c.grn_expr_syntax_escape_query", false]], "grn_fin (c function)": [[84, "c.grn_fin", false]], "grn_ii (c type)": [[71, "c.grn_ii", false]], "grn_ii_buffer (c type)": [[71, "c.grn_ii_buffer", false]], "grn_ii_buffer_append (c function)": [[71, "c.grn_ii_buffer_append", false]], "grn_ii_buffer_close (c function)": [[71, "c.grn_ii_buffer_close", false]], "grn_ii_buffer_commit (c function)": [[71, "c.grn_ii_buffer_commit", false]], "grn_ii_buffer_open (c function)": [[71, "c.grn_ii_buffer_open", false]], "grn_init (c function)": [[84, "c.grn_init", false]], "grn_inspect (c function)": [[74, "c.grn_inspect", false]], "grn_inspect_encoding (c function)": [[74, "c.grn_inspect_encoding", false]], "grn_inspect_indented (c function)": [[74, "c.grn_inspect_indented", false]], "grn_inspect_limited (c function)": [[74, "c.grn_inspect_limited", false]], "grn_inspect_name (c function)": [[74, "c.grn_inspect_name", false]], "grn_inspect_query_log_flags (c function)": [[74, "c.grn_inspect_query_log_flags", false]], "grn_inspect_type (c function)": [[74, "c.grn_inspect_type", false]], "grn_p (c function)": [[74, "c.grn_p", false]], "grn_p_geo_point (c function)": [[74, "c.grn_p_geo_point", false]], "grn_p_ii_values (c function)": [[74, "c.grn_p_ii_values", false]], "grn_plugin_charlen (c function)": [[85, "c.grn_plugin_charlen", false]], "grn_plugin_command_create (c function)": [[85, "c.grn_plugin_command_create", false]], "grn_plugin_error (c macro)": [[85, "c.GRN_PLUGIN_ERROR", false]], "grn_plugin_expr_var_init (c function)": [[85, "c.grn_plugin_expr_var_init", false]], "grn_plugin_fin (c function)": [[85, "c.GRN_PLUGIN_FIN", false]], "grn_plugin_free (c macro)": [[85, "c.GRN_PLUGIN_FREE", false]], "grn_plugin_init (c function)": [[85, "c.GRN_PLUGIN_INIT", false]], "grn_plugin_isspace (c function)": [[85, "c.grn_plugin_isspace", false]], "grn_plugin_log (c macro)": [[85, "c.GRN_PLUGIN_LOG", false]], "grn_plugin_malloc (c macro)": [[85, "c.GRN_PLUGIN_MALLOC", false]], "grn_plugin_mutex (c type)": [[85, "c.grn_plugin_mutex", false]], "grn_plugin_mutex_close (c function)": [[85, "c.grn_plugin_mutex_close", false]], "grn_plugin_mutex_lock (c function)": [[85, "c.grn_plugin_mutex_lock", false]], "grn_plugin_mutex_open (c function)": [[85, "c.grn_plugin_mutex_open", false]], "grn_plugin_mutex_unlock (c function)": [[85, "c.grn_plugin_mutex_unlock", false]], "grn_plugin_proc_alloc (c function)": [[85, "c.grn_plugin_proc_alloc", false]], "grn_plugin_proc_get_var (c function)": [[85, "c.grn_plugin_proc_get_var", false]], "grn_plugin_proc_get_var_by_offset (c function)": [[85, "c.grn_plugin_proc_get_var_by_offset", false]], "grn_plugin_realloc (c macro)": [[85, "c.GRN_PLUGIN_REALLOC", false]], "grn_plugin_register (c function)": [[85, "c.GRN_PLUGIN_REGISTER", false]], "grn_plugin_win32_base_dir (c function)": [[85, "c.grn_plugin_win32_base_dir", false]], "grn_plugin_windows_base_dir (c function)": [[85, "c.grn_plugin_windows_base_dir", false]], "grn_thread_get_limit (c function)": [[81, "c.grn_thread_get_limit", false]], "grn_thread_get_limit_func (c type)": [[81, "c.grn_thread_get_limit_func", false]], "grn_thread_set_get_limit_func (c function)": [[81, "c.grn_thread_set_get_limit_func", false]], "grn_thread_set_limit (c function)": [[81, "c.grn_thread_set_limit", false]], "grn_thread_set_limit_func (c type)": [[81, "c.grn_thread_set_limit_func", false]], "grn_thread_set_set_limit_func (c function)": [[81, "c.grn_thread_set_set_limit_func", false]], "grnslap \u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3": [[174, "cmdoption-grnslap-P", false], [174, "cmdoption-grnslap-arg-dest", false], [174, "cmdoption-grnslap-m", false]], "groonga \u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3": [[175, "cmdoption-groonga-a", false], [175, "cmdoption-groonga-arg-command", false], [175, "cmdoption-groonga-arg-dest", false], [175, "cmdoption-groonga-bind-address", false], [175, "cmdoption-groonga-c", false], [175, "cmdoption-groonga-cache-base-path", false], [175, "cmdoption-groonga-cache-limit", false], [175, "cmdoption-groonga-config-path", false], [175, "cmdoption-groonga-d", false], [175, "cmdoption-groonga-default-match-escalation-threshold", false], [175, "cmdoption-groonga-default-n-workers", false], [175, "cmdoption-groonga-default-request-timeout", false], [175, "cmdoption-groonga-document-root", false], [175, "cmdoption-groonga-e", false], [175, "cmdoption-groonga-h", false], [175, "cmdoption-groonga-i", false], [175, "cmdoption-groonga-l", false], [175, "cmdoption-groonga-log-flags", false], [175, "cmdoption-groonga-log-path", false], [175, "cmdoption-groonga-log-rotate-threshold-size", false], [175, "cmdoption-groonga-n", false], [175, "cmdoption-groonga-p", false], [175, "cmdoption-groonga-pid-path", false], [175, "cmdoption-groonga-protocol", false], [175, "cmdoption-groonga-query-log-path", false], [175, "cmdoption-groonga-query-log-rotate-threshold-size", false], [175, "cmdoption-groonga-s", false], [175, "cmdoption-groonga-t", false]], "groonga-benchmark \u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3": [[176, "cmdoption-groonga-benchmark-arg-db", false], [176, "cmdoption-groonga-benchmark-arg-script", false], [176, "cmdoption-groonga-benchmark-dir", false], [176, "cmdoption-groonga-benchmark-ftp", false], [176, "cmdoption-groonga-benchmark-groonga", false], [176, "cmdoption-groonga-benchmark-i", false], [176, "cmdoption-groonga-benchmark-log-output-dir", false], [176, "cmdoption-groonga-benchmark-p", false], [176, "cmdoption-groonga-benchmark-protocol", false]], "groonga-suggest-httpd \u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3": [[180, "cmdoption-groonga-suggest-httpd-d", false], [180, "cmdoption-groonga-suggest-httpd-disable-max-fd-check", false], [180, "cmdoption-groonga-suggest-httpd-l", false], [180, "cmdoption-groonga-suggest-httpd-n-lines-per-log-file", false], [180, "cmdoption-groonga-suggest-httpd-p", false], [180, "cmdoption-groonga-suggest-httpd-r", false], [180, "cmdoption-groonga-suggest-httpd-s", false], [180, "cmdoption-groonga-suggest-httpd-t", false]], "groonga-suggest-learner \u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3": [[181, "cmdoption-groonga-suggest-learner-d", false], [181, "cmdoption-groonga-suggest-learner-l", false], [181, "cmdoption-groonga-suggest-learner-log-level", false], [181, "cmdoption-groonga-suggest-learner-log-path", false], [181, "cmdoption-groonga-suggest-learner-r", false], [181, "cmdoption-groonga-suggest-learner-s", false]], "script": [[176, "cmdoption-groonga-benchmark-arg-script", false]]}, "objects": {"": [[85, 0, 1, "c.GRN_PLUGIN_ERROR", "GRN_PLUGIN_ERROR"], [85, 1, 1, "c.GRN_PLUGIN_FIN", "GRN_PLUGIN_FIN"], [85, 0, 1, "c.GRN_PLUGIN_FREE", "GRN_PLUGIN_FREE"], [85, 1, 1, "c.GRN_PLUGIN_INIT", "GRN_PLUGIN_INIT"], [85, 0, 1, "c.GRN_PLUGIN_LOG", "GRN_PLUGIN_LOG"], [85, 0, 1, "c.GRN_PLUGIN_MALLOC", "GRN_PLUGIN_MALLOC"], [85, 0, 1, "c.GRN_PLUGIN_REALLOC", "GRN_PLUGIN_REALLOC"], [85, 1, 1, "c.GRN_PLUGIN_REGISTER", "GRN_PLUGIN_REGISTER"], [61, 3, 1, "c.grn_cache", "grn_cache"], [61, 1, 1, "c.grn_cache_close", "grn_cache_close"], [61, 1, 1, "c.grn_cache_current_get", "grn_cache_current_get"], [61, 1, 1, "c.grn_cache_current_set", "grn_cache_current_set"], [61, 1, 1, "c.grn_cache_get_max_n_entries", "grn_cache_get_max_n_entries"], [61, 1, 1, "c.grn_cache_set_max_n_entries", "grn_cache_set_max_n_entries"], [64, 3, 1, "c.grn_content_type", "grn_content_type"], [68, 1, 1, "c.grn_expr_add_var", "grn_expr_add_var"], [68, 1, 1, "c.grn_expr_alloc", "grn_expr_alloc"], [68, 1, 1, "c.grn_expr_append_const", "grn_expr_append_const"], [68, 1, 1, "c.grn_expr_append_const_int", "grn_expr_append_const_int"], [68, 1, 1, "c.grn_expr_append_const_str", "grn_expr_append_const_str"], [68, 1, 1, "c.grn_expr_append_obj", "grn_expr_append_obj"], [68, 1, 1, "c.grn_expr_append_op", "grn_expr_append_op"], [68, 1, 1, "c.grn_expr_close", "grn_expr_close"], [68, 1, 1, "c.grn_expr_compile", "grn_expr_compile"], [68, 1, 1, "c.grn_expr_create", "grn_expr_create"], [68, 1, 1, "c.grn_expr_exec", "grn_expr_exec"], [68, 1, 1, "c.grn_expr_get_keywords", "grn_expr_get_keywords"], [68, 1, 1, "c.grn_expr_get_var_by_offset", "grn_expr_get_var_by_offset"], [68, 1, 1, "c.grn_expr_syntax_escape", "grn_expr_syntax_escape"], [68, 1, 1, "c.grn_expr_syntax_escape_query", "grn_expr_syntax_escape_query"], [84, 1, 1, "c.grn_fin", "grn_fin"], [71, 3, 1, "c.grn_ii", "grn_ii"], [71, 3, 1, "c.grn_ii_buffer", "grn_ii_buffer"], [71, 1, 1, "c.grn_ii_buffer_append", "grn_ii_buffer_append"], [71, 1, 1, "c.grn_ii_buffer_close", "grn_ii_buffer_close"], [71, 1, 1, "c.grn_ii_buffer_commit", "grn_ii_buffer_commit"], [71, 1, 1, "c.grn_ii_buffer_open", "grn_ii_buffer_open"], [84, 1, 1, "c.grn_init", "grn_init"], [74, 1, 1, "c.grn_inspect", "grn_inspect"], [74, 1, 1, "c.grn_inspect_encoding", "grn_inspect_encoding"], [74, 1, 1, "c.grn_inspect_indented", "grn_inspect_indented"], [74, 1, 1, "c.grn_inspect_limited", "grn_inspect_limited"], [74, 1, 1, "c.grn_inspect_name", "grn_inspect_name"], [74, 1, 1, "c.grn_inspect_query_log_flags", "grn_inspect_query_log_flags"], [74, 1, 1, "c.grn_inspect_type", "grn_inspect_type"], [74, 1, 1, "c.grn_p", "grn_p"], [74, 1, 1, "c.grn_p_geo_point", "grn_p_geo_point"], [74, 1, 1, "c.grn_p_ii_values", "grn_p_ii_values"], [85, 1, 1, "c.grn_plugin_charlen", "grn_plugin_charlen"], [85, 1, 1, "c.grn_plugin_command_create", "grn_plugin_command_create"], [85, 1, 1, "c.grn_plugin_expr_var_init", "grn_plugin_expr_var_init"], [85, 1, 1, "c.grn_plugin_isspace", "grn_plugin_isspace"], [85, 3, 1, "c.grn_plugin_mutex", "grn_plugin_mutex"], [85, 1, 1, "c.grn_plugin_mutex_close", "grn_plugin_mutex_close"], [85, 1, 1, "c.grn_plugin_mutex_lock", "grn_plugin_mutex_lock"], [85, 1, 1, "c.grn_plugin_mutex_open", "grn_plugin_mutex_open"], [85, 1, 1, "c.grn_plugin_mutex_unlock", "grn_plugin_mutex_unlock"], [85, 1, 1, "c.grn_plugin_proc_alloc", "grn_plugin_proc_alloc"], [85, 1, 1, "c.grn_plugin_proc_get_var", "grn_plugin_proc_get_var"], [85, 1, 1, "c.grn_plugin_proc_get_var_by_offset", "grn_plugin_proc_get_var_by_offset"], [85, 1, 1, "c.grn_plugin_win32_base_dir", "grn_plugin_win32_base_dir"], [85, 1, 1, "c.grn_plugin_windows_base_dir", "grn_plugin_windows_base_dir"], [81, 1, 1, "c.grn_thread_get_limit", "grn_thread_get_limit"], [81, 3, 1, "c.grn_thread_get_limit_func", "grn_thread_get_limit_func"], [81, 1, 1, "c.grn_thread_set_get_limit_func", "grn_thread_set_get_limit_func"], [81, 1, 1, "c.grn_thread_set_limit", "grn_thread_set_limit"], [81, 3, 1, "c.grn_thread_set_limit_func", "grn_thread_set_limit_func"], [81, 1, 1, "c.grn_thread_set_set_limit_func", "grn_thread_set_set_limit_func"]], "GRN_PLUGIN_FIN": [[85, 2, 1, "c.GRN_PLUGIN_FIN", "ctx"]], "GRN_PLUGIN_INIT": [[85, 2, 1, "c.GRN_PLUGIN_INIT", "ctx"]], "GRN_PLUGIN_REGISTER": [[85, 2, 1, "c.GRN_PLUGIN_REGISTER", "ctx"]], "grn_cache_close": [[61, 2, 1, "c.grn_cache_close", "cache"], [61, 2, 1, "c.grn_cache_close", "ctx"]], "grn_cache_current_get": [[61, 2, 1, "c.grn_cache_current_get", "ctx"]], "grn_cache_current_set": [[61, 2, 1, "c.grn_cache_current_set", "cache"], [61, 2, 1, "c.grn_cache_current_set", "ctx"]], "grn_cache_get_max_n_entries": [[61, 2, 1, "c.grn_cache_get_max_n_entries", "cache"], [61, 2, 1, "c.grn_cache_get_max_n_entries", "ctx"]], "grn_cache_set_max_n_entries": [[61, 2, 1, "c.grn_cache_set_max_n_entries", "cache"], [61, 2, 1, "c.grn_cache_set_max_n_entries", "ctx"], [61, 2, 1, "c.grn_cache_set_max_n_entries", "n"]], "grn_expr_add_var": [[68, 2, 1, "c.grn_expr_add_var", "ctx"], [68, 2, 1, "c.grn_expr_add_var", "expr"], [68, 2, 1, "c.grn_expr_add_var", "name"], [68, 2, 1, "c.grn_expr_add_var", "name_size"]], "grn_expr_alloc": [[68, 2, 1, "c.grn_expr_alloc", "ctx"], [68, 2, 1, "c.grn_expr_alloc", "domain"], [68, 2, 1, "c.grn_expr_alloc", "expr"], [68, 2, 1, "c.grn_expr_alloc", "flags"]], "grn_expr_append_const": [[68, 2, 1, "c.grn_expr_append_const", "ctx"], [68, 2, 1, "c.grn_expr_append_const", "expr"], [68, 2, 1, "c.grn_expr_append_const", "nargs"], [68, 2, 1, "c.grn_expr_append_const", "obj"], [68, 2, 1, "c.grn_expr_append_const", "op"]], "grn_expr_append_const_int": [[68, 2, 1, "c.grn_expr_append_const_int", "ctx"], [68, 2, 1, "c.grn_expr_append_const_int", "expr"], [68, 2, 1, "c.grn_expr_append_const_int", "i"], [68, 2, 1, "c.grn_expr_append_const_int", "nargs"], [68, 2, 1, "c.grn_expr_append_const_int", "op"]], "grn_expr_append_const_str": [[68, 2, 1, "c.grn_expr_append_const_str", "ctx"], [68, 2, 1, "c.grn_expr_append_const_str", "expr"], [68, 2, 1, "c.grn_expr_append_const_str", "nargs"], [68, 2, 1, "c.grn_expr_append_const_str", "op"], [68, 2, 1, "c.grn_expr_append_const_str", "str"], [68, 2, 1, "c.grn_expr_append_const_str", "str_size"]], "grn_expr_append_obj": [[68, 2, 1, "c.grn_expr_append_obj", "ctx"], [68, 2, 1, "c.grn_expr_append_obj", "expr"], [68, 2, 1, "c.grn_expr_append_obj", "nargs"], [68, 2, 1, "c.grn_expr_append_obj", "obj"], [68, 2, 1, "c.grn_expr_append_obj", "op"]], "grn_expr_append_op": [[68, 2, 1, "c.grn_expr_append_op", "ctx"], [68, 2, 1, "c.grn_expr_append_op", "expr"], [68, 2, 1, "c.grn_expr_append_op", "nargs"], [68, 2, 1, "c.grn_expr_append_op", "op"]], "grn_expr_close": [[68, 2, 1, "c.grn_expr_close", "ctx"], [68, 2, 1, "c.grn_expr_close", "expr"]], "grn_expr_compile": [[68, 2, 1, "c.grn_expr_compile", "ctx"], [68, 2, 1, "c.grn_expr_compile", "expr"]], "grn_expr_create": [[68, 2, 1, "c.grn_expr_create", "ctx"], [68, 2, 1, "c.grn_expr_create", "name"], [68, 2, 1, "c.grn_expr_create", "name_size"]], "grn_expr_exec": [[68, 2, 1, "c.grn_expr_exec", "ctx"], [68, 2, 1, "c.grn_expr_exec", "expr"], [68, 2, 1, "c.grn_expr_exec", "nargs"]], "grn_expr_get_keywords": [[68, 2, 1, "c.grn_expr_get_keywords", "ctx"], [68, 2, 1, "c.grn_expr_get_keywords", "expr"], [68, 2, 1, "c.grn_expr_get_keywords", "keywords"]], "grn_expr_get_var_by_offset": [[68, 2, 1, "c.grn_expr_get_var_by_offset", "ctx"], [68, 2, 1, "c.grn_expr_get_var_by_offset", "expr"], [68, 2, 1, "c.grn_expr_get_var_by_offset", "offset"]], "grn_expr_syntax_escape": [[68, 2, 1, "c.grn_expr_syntax_escape", "ctx"], [68, 2, 1, "c.grn_expr_syntax_escape", "escape_character"], [68, 2, 1, "c.grn_expr_syntax_escape", "escaped_string"], [68, 2, 1, "c.grn_expr_syntax_escape", "string"], [68, 2, 1, "c.grn_expr_syntax_escape", "string_size"], [68, 2, 1, "c.grn_expr_syntax_escape", "target_characters"]], "grn_expr_syntax_escape_query": [[68, 2, 1, "c.grn_expr_syntax_escape_query", "ctx"], [68, 2, 1, "c.grn_expr_syntax_escape_query", "escaped_query"], [68, 2, 1, "c.grn_expr_syntax_escape_query", "query"], [68, 2, 1, "c.grn_expr_syntax_escape_query", "query_size"]], "grn_ii_buffer_append": [[71, 2, 1, "c.grn_ii_buffer_append", "ctx"], [71, 2, 1, "c.grn_ii_buffer_append", "ii_buffer"], [71, 2, 1, "c.grn_ii_buffer_append", "rid"], [71, 2, 1, "c.grn_ii_buffer_append", "section"], [71, 2, 1, "c.grn_ii_buffer_append", "value"]], "grn_ii_buffer_close": [[71, 2, 1, "c.grn_ii_buffer_close", "ctx"], [71, 2, 1, "c.grn_ii_buffer_close", "ii_buffer"]], "grn_ii_buffer_commit": [[71, 2, 1, "c.grn_ii_buffer_commit", "ctx"], [71, 2, 1, "c.grn_ii_buffer_commit", "ii_buffer"]], "grn_ii_buffer_open": [[71, 2, 1, "c.grn_ii_buffer_open", "ctx"], [71, 2, 1, "c.grn_ii_buffer_open", "ii"], [71, 2, 1, "c.grn_ii_buffer_open", "update_buffer_size"]], "grn_inspect": [[74, 2, 1, "c.grn_inspect", "buffer"], [74, 2, 1, "c.grn_inspect", "ctx"], [74, 2, 1, "c.grn_inspect", "obj"]], "grn_inspect_encoding": [[74, 2, 1, "c.grn_inspect_encoding", "buffer"], [74, 2, 1, "c.grn_inspect_encoding", "ctx"], [74, 2, 1, "c.grn_inspect_encoding", "encoding"]], "grn_inspect_indented": [[74, 2, 1, "c.grn_inspect_indented", "buffer"], [74, 2, 1, "c.grn_inspect_indented", "ctx"], [74, 2, 1, "c.grn_inspect_indented", "indent"], [74, 2, 1, "c.grn_inspect_indented", "obj"]], "grn_inspect_limited": [[74, 2, 1, "c.grn_inspect_limited", "buffer"], [74, 2, 1, "c.grn_inspect_limited", "ctx"], [74, 2, 1, "c.grn_inspect_limited", "obj"]], "grn_inspect_name": [[74, 2, 1, "c.grn_inspect_name", "buffer"], [74, 2, 1, "c.grn_inspect_name", "ctx"], [74, 2, 1, "c.grn_inspect_name", "obj"]], "grn_inspect_query_log_flags": [[74, 2, 1, "c.grn_inspect_query_log_flags", "buffer"], [74, 2, 1, "c.grn_inspect_query_log_flags", "ctx"], [74, 2, 1, "c.grn_inspect_query_log_flags", "flags"]], "grn_inspect_type": [[74, 2, 1, "c.grn_inspect_type", "buffer"], [74, 2, 1, "c.grn_inspect_type", "ctx"], [74, 2, 1, "c.grn_inspect_type", "type"]], "grn_p": [[74, 2, 1, "c.grn_p", "ctx"], [74, 2, 1, "c.grn_p", "obj"]], "grn_p_geo_point": [[74, 2, 1, "c.grn_p_geo_point", "ctx"], [74, 2, 1, "c.grn_p_geo_point", "point"]], "grn_p_ii_values": [[74, 2, 1, "c.grn_p_ii_values", "ctx"], [74, 2, 1, "c.grn_p_ii_values", "obj"]], "grn_plugin_charlen": [[85, 2, 1, "c.grn_plugin_charlen", "ctx"], [85, 2, 1, "c.grn_plugin_charlen", "encoding"], [85, 2, 1, "c.grn_plugin_charlen", "str_length"], [85, 2, 1, "c.grn_plugin_charlen", "str_ptr"]], "grn_plugin_command_create": [[85, 2, 1, "c.grn_plugin_command_create", "ctx"], [85, 2, 1, "c.grn_plugin_command_create", "func"], [85, 2, 1, "c.grn_plugin_command_create", "n_vars"], [85, 2, 1, "c.grn_plugin_command_create", "name"], [85, 2, 1, "c.grn_plugin_command_create", "name_size"], [85, 2, 1, "c.grn_plugin_command_create", "vars"]], "grn_plugin_expr_var_init": [[85, 2, 1, "c.grn_plugin_expr_var_init", "ctx"], [85, 2, 1, "c.grn_plugin_expr_var_init", "name"], [85, 2, 1, "c.grn_plugin_expr_var_init", "name_size"], [85, 2, 1, "c.grn_plugin_expr_var_init", "var"]], "grn_plugin_isspace": [[85, 2, 1, "c.grn_plugin_isspace", "ctx"], [85, 2, 1, "c.grn_plugin_isspace", "encoding"], [85, 2, 1, "c.grn_plugin_isspace", "str_length"], [85, 2, 1, "c.grn_plugin_isspace", "str_ptr"]], "grn_plugin_mutex_close": [[85, 2, 1, "c.grn_plugin_mutex_close", "ctx"], [85, 2, 1, "c.grn_plugin_mutex_close", "mutex"]], "grn_plugin_mutex_lock": [[85, 2, 1, "c.grn_plugin_mutex_lock", "ctx"], [85, 2, 1, "c.grn_plugin_mutex_lock", "mutex"]], "grn_plugin_mutex_open": [[85, 2, 1, "c.grn_plugin_mutex_open", "ctx"]], "grn_plugin_mutex_unlock": [[85, 2, 1, "c.grn_plugin_mutex_unlock", "ctx"], [85, 2, 1, "c.grn_plugin_mutex_unlock", "mutex"]], "grn_plugin_proc_alloc": [[85, 2, 1, "c.grn_plugin_proc_alloc", "ctx"], [85, 2, 1, "c.grn_plugin_proc_alloc", "domain"], [85, 2, 1, "c.grn_plugin_proc_alloc", "flags"], [85, 2, 1, "c.grn_plugin_proc_alloc", "user_data"]], "grn_plugin_proc_get_var": [[85, 2, 1, "c.grn_plugin_proc_get_var", "ctx"], [85, 2, 1, "c.grn_plugin_proc_get_var", "name"], [85, 2, 1, "c.grn_plugin_proc_get_var", "name_size"], [85, 2, 1, "c.grn_plugin_proc_get_var", "user_data"]], "grn_plugin_proc_get_var_by_offset": [[85, 2, 1, "c.grn_plugin_proc_get_var_by_offset", "ctx"], [85, 2, 1, "c.grn_plugin_proc_get_var_by_offset", "offset"], [85, 2, 1, "c.grn_plugin_proc_get_var_by_offset", "user_data"]], "grn_thread_set_get_limit_func": [[81, 2, 1, "c.grn_thread_set_get_limit_func", "data"], [81, 2, 1, "c.grn_thread_set_get_limit_func", "func"]], "grn_thread_set_limit": [[81, 2, 1, "c.grn_thread_set_limit", "new_limit"]], "grn_thread_set_set_limit_func": [[81, 2, 1, "c.grn_thread_set_set_limit_func", "data"], [81, 2, 1, "c.grn_thread_set_set_limit_func", "func"]], "grnslap": [[174, 4, 1, "cmdoption-grnslap-P", "-P"], [174, 4, 1, "cmdoption-grnslap-m", "-m"], [174, 4, 1, "cmdoption-grnslap-arg-dest", "dest"]], "groonga": [[175, 4, 1, "cmdoption-groonga-a", "--address"], [175, 4, 1, "cmdoption-groonga-bind-address", "--bind-address"], [175, 4, 1, "cmdoption-groonga-cache-base-path", "--cache-base-path"], [175, 4, 1, "cmdoption-groonga-cache-limit", "--cache-limit"], [175, 4, 1, "cmdoption-groonga-config-path", "--config-path"], [175, 4, 1, "cmdoption-groonga-default-match-escalation-threshold", "--default-match-escalation-threshold"], [175, 4, 1, "cmdoption-groonga-default-n-workers", "--default-n-workers"], [175, 4, 1, "cmdoption-groonga-default-request-timeout", "--default-request-timeout"], [175, 4, 1, "cmdoption-groonga-document-root", "--document-root"], [175, 4, 1, "cmdoption-groonga-e", "--encoding"], [175, 4, 1, "cmdoption-groonga-h", "--help"], [175, 4, 1, "cmdoption-groonga-log-flags", "--log-flags"], [175, 4, 1, "cmdoption-groonga-l", "--log-level"], [175, 4, 1, "cmdoption-groonga-log-path", "--log-path"], [175, 4, 1, "cmdoption-groonga-log-rotate-threshold-size", "--log-rotate-threshold-size"], [175, 4, 1, "cmdoption-groonga-t", "--max-threads"], [175, 4, 1, "cmdoption-groonga-pid-path", "--pid-path"], [175, 4, 1, "cmdoption-groonga-p", "--port"], [175, 4, 1, "cmdoption-groonga-protocol", "--protocol"], [175, 4, 1, "cmdoption-groonga-query-log-path", "--query-log-path"], [175, 4, 1, "cmdoption-groonga-query-log-rotate-threshold-size", "--query-log-rotate-threshold-size"], [175, 4, 1, "cmdoption-groonga-i", "--server-id"], [175, 4, 1, "cmdoption-groonga-a", "-a"], [175, 4, 1, "cmdoption-groonga-c", "-c"], [175, 4, 1, "cmdoption-groonga-d", "-d"], [175, 4, 1, "cmdoption-groonga-e", "-e"], [175, 4, 1, "cmdoption-groonga-h", "-h"], [175, 4, 1, "cmdoption-groonga-i", "-i"], [175, 4, 1, "cmdoption-groonga-l", "-l"], [175, 4, 1, "cmdoption-groonga-n", "-n"], [175, 4, 1, "cmdoption-groonga-p", "-p"], [175, 4, 1, "cmdoption-groonga-s", "-s"], [175, 4, 1, "cmdoption-groonga-t", "-t"], [175, 4, 1, "cmdoption-groonga-arg-command", "command"], [175, 4, 1, "cmdoption-groonga-arg-dest", "dest"]], "groonga-benchmark": [[176, 4, 1, "cmdoption-groonga-benchmark-dir", "--dir"], [176, 4, 1, "cmdoption-groonga-benchmark-ftp", "--ftp"], [176, 4, 1, "cmdoption-groonga-benchmark-groonga", "--groonga"], [176, 4, 1, "cmdoption-groonga-benchmark-i", "--host"], [176, 4, 1, "cmdoption-groonga-benchmark-log-output-dir", "--log-output-dir"], [176, 4, 1, "cmdoption-groonga-benchmark-p", "--port"], [176, 4, 1, "cmdoption-groonga-benchmark-protocol", "--protocol"], [176, 4, 1, "cmdoption-groonga-benchmark-i", "-i"], [176, 4, 1, "cmdoption-groonga-benchmark-p", "-p"], [176, 4, 1, "cmdoption-groonga-benchmark-arg-db", "db"], [176, 4, 1, "cmdoption-groonga-benchmark-arg-script", "script"]], "groonga-suggest-httpd": [[180, 4, 1, "cmdoption-groonga-suggest-httpd-d", "--daemon"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-disable-max-fd-check", "--disable-max-fd-check"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-l", "--log-base-path"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-n-lines-per-log-file", "--n-lines-per-log-file"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-t", "--n-threads"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-p", "--port"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-r", "--receive-endpoint"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-s", "--send-endpoint"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-d", "-d"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-l", "-l"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-p", "-p"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-r", "-r"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-s", "-s"], [180, 4, 1, "cmdoption-groonga-suggest-httpd-t", "-t"]], "groonga-suggest-learner": [[181, 4, 1, "cmdoption-groonga-suggest-learner-d", "--daemon"], [181, 4, 1, "cmdoption-groonga-suggest-learner-l", "--log-base-path"], [181, 4, 1, "cmdoption-groonga-suggest-learner-log-level", "--log-level"], [181, 4, 1, "cmdoption-groonga-suggest-learner-log-path", "--log-path"], [181, 4, 1, "cmdoption-groonga-suggest-learner-r", "--receive-endpoint"], [181, 4, 1, "cmdoption-groonga-suggest-learner-s", "--send-endpoint"], [181, 4, 1, "cmdoption-groonga-suggest-learner-d", "-d"], [181, 4, 1, "cmdoption-groonga-suggest-learner-l", "-l"], [181, 4, 1, "cmdoption-groonga-suggest-learner-r", "-r"], [181, 4, 1, "cmdoption-groonga-suggest-learner-s", "-s"]]}, "objnames": {"0": ["c", "macro", "C \u306e\u30de\u30af\u30ed"], "1": ["c", "function", "C \u306e\u95a2\u6570"], "2": ["c", "functionParam", "C \u95a2\u6570\u30d1\u30e9\u30e1\u30fc\u30bf"], "3": ["c", "type", "C \u306e\u30c7\u30fc\u30bf\u578b"], "4": ["std", "cmdoption", "\u30d7\u30ed\u30b0\u30e9\u30e0\u30aa\u30d7\u30b7\u30e7\u30f3"]}, "objtypes": {"0": "c:macro", "1": "c:function", "2": "c:functionParam", "3": "c:type", "4": "std:cmdoption"}, "terms": {"! (": 43, "!!": [43, 45, 125, 177, 264, 265, 266, 267, 268, 269, 270, 271, 275, 307, 311], "!\"": [41, 42, 43, 44, 45, 47, 74, 95, 132, 134, 135, 156, 168, 177, 195, 219, 224, 225, 226, 245, 264, 265, 266, 267, 268, 269, 270, 271, 292, 305, 307, 308, 310, 311, 312], "!(": 52, "!(n": 225, "!)": 177, "!=": 202, "![": 272, "!\\": [224, 225], "!condition": 225, "!xxx": 49, "\"\n*": 44, "\" (": [231, 232, 233, 234, 235, 257, 258, 259], "\"\"": [40, 41, 42, 43, 44, 51, 110, 111, 210, 224, 225, 244, 282], "\"#": [39, 42, 231, 234, 235], "\"#\"": 176, "\"#{": 225, "\"$": 177, "\"%": 244, "\"'": [41, 42, 43, 44, 45, 47, 48, 49, 50, 53, 91, 110, 111, 132, 134, 135, 156, 177, 201, 224, 225, 244, 299, 301], "\"(": [41, 42, 44, 45, 48, 208, 224, 225], "\")": [41, 42, 43, 45, 47, 48, 49, 50, 52, 74, 132, 135, 153, 156, 183, 185, 188, 190, 195, 196, 197, 201, 202, 203, 208, 219, 225, 231, 232, 233, 234, 235, 236, 237, 257, 258, 259, 260, 261, 274, 276, 278, 302, 307, 315], "\"*": [42, 47, 74], "\",": [29, 41, 42, 43, 44, 45, 48, 50, 51, 53, 58, 74, 91, 94, 95, 96, 108, 110, 111, 112, 114, 115, 118, 121, 122, 125, 132, 134, 135, 137, 138, 141, 142, 143, 153, 155, 156, 158, 159, 162, 163, 164, 165, 168, 170, 175, 176, 177, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 231, 232, 233, 234, 235, 236, 237, 244, 245, 246, 247, 250, 251, 253, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 286, 298, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "\"-": [39, 188, 231, 232, 233, 234, 235, 257, 258, 259], "\"--": 44, "\".": [225, 290, 306], "\"..": [42, 45], "\"/": [42, 45, 175, 277, 315], "\":": [41, 42, 43, 44, 45, 50, 51, 52, 58, 91, 94, 96, 97, 108, 110, 111, 114, 121, 122, 123, 125, 132, 133, 134, 135, 136, 137, 138, 139, 141, 142, 153, 154, 155, 156, 158, 159, 164, 165, 168, 169, 170, 175, 176, 177, 180, 184, 186, 188, 192, 194, 195, 197, 198, 201, 202, 203, 205, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 231, 232, 233, 234, 235, 237, 240, 241, 244, 245, 246, 247, 250, 251, 253, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 292, 298, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "\";": [176, 177, 292], "\"<": [43, 44, 45, 48, 111, 191, 192, 193, 237], "\"=": 195, "\">": [191, 192, 193, 206, 241], "\"?": [156, 241], "\"@": [195, 311], "\"[": [42, 43, 45, 47, 52, 99, 115, 118, 132, 134, 135, 143, 156, 163, 244], "\"[\"": 42, "\"\\": [50, 224, 244], "\"\\\\": 244, "\"\\n": [43, 50], "\"]": [29, 41, 42, 43, 44, 50, 51, 74, 91, 111, 112, 115, 116, 117, 122, 132, 134, 135, 137, 156, 175, 180, 188, 201, 205, 206, 219, 221, 225, 250, 286, 301, 307, 308, 311, 314], "\"^": 42, "\"_": [41, 42, 43, 44, 45, 48, 51, 58, 91, 94, 95, 96, 110, 111, 112, 114, 121, 122, 123, 125, 132, 134, 135, 137, 141, 156, 159, 164, 165, 170, 177, 180, 183, 184, 186, 188, 194, 195, 196, 198, 201, 202, 203, 208, 209, 210, 212, 219, 221, 224, 225, 226, 229, 237, 240, 244, 245, 246, 247, 250, 251, 253, 260, 261, 276, 278, 292, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "\"`": 44, "\"a": [41, 42, 43, 44, 49, 74, 135, 156, 168, 210, 224, 237], "\"aa": 44, "\"ab": 252, "\"abc": 44, "\"adventurer": 111, "\"alice": [45, 111, 141, 203], "\"always": 133, "\"and": 202, "\"apple": [42, 229], "\"application": 39, "\"auto": 133, "\"b": [41, 42, 43, 74, 135, 156, 210], "\"black": 229, "\"block": 305, "\"blosc": 44, "\"body": 44, "\"book": 225, "\"byte": 141, "\"c": [41, 43, 74, 135, 156, 210], "\"canceled": 153, "\"case": 42, "\"co": 252, "\"color": 229, "\"column": [125, 141, 142], "\"complete": 252, "\"content": [41, 42, 43, 44, 45, 156, 224, 225, 260, 261], "\"correction": 252, "\"created": [132, 134, 135], "\"cve": 54, "\"d": [74, 262, 264, 275], "\"dav": 195, "\"db": 141, "\"ddl": 49, "\"default": 42, "\"double": 225, "\"droonga": [195, 219], "\"e": [74, 159, 168, 250, 275, 277], "\"element": 91, "\"ellip": 189, "\"ellipsoid": 189, "\"empty": 45, "\"engine": [250, 251, 253], "\"enough": 42, "\"equal": [202, 219], "\"existent": [43, 111], "\"f": [43, 74], "\"fast": 135, "\"flower": 305, "\"force": 53, "\"full": 43, "\"fulltext": 168, "\"g": [74, 208], "\"game": [42, 286], "\"good": [132, 135, 156, 225], "\"gr": 161, "\"greater": 202, "\"gronga": 252, "\"groonga": [42, 43, 44, 45, 91, 122, 156, 161, 195, 203, 205, 206, 210, 219, 224, 225, 252, 310], "\"h": [168, 237, 275], "\"hello": [111, 165, 261], "\"http": 91, "\"i": [41, 42, 43, 44, 95, 134, 135, 156, 224, 225, 226, 260, 310, 311], "\"include": 137, "\"index": 141, "\"invalid": 111, "\"is": 305, "\"item": 42, "\"i\u3046": 44, "\"k": 307, "\"key": [42, 141], "\"keyword": [54, 156], "\"l": 275, "\"label": 156, "\"large": 141, "\"less": 202, "\"lic": 195, "\"localhost": 298, "\"lz4": 141, "\"match": [202, 219], "\"max": [42, 205], "\"medium": 141, "\"message": [244, 246, 247], "\"monkey": 305, "\"mroonga": [42, 91, 122, 156, 210, 219, 225], "\"mysql": [91, 252], "\"n": [41, 42, 43, 44, 51, 94, 95, 96, 125, 132, 134, 135, 141, 156, 158, 177, 224, 225, 298, 308, 312], "\"name": [42, 44, 45, 141, 202, 203, 211, 276, 278], "\"near": [195, 202, 219], "\"never": 133, "\"new": 188, "\"no": 47, "\"nonexistent": 111, "\"normal": 141, "\"not": 202, "\"null": 47, "\"numbers": 42, "\"o": [262, 264, 275], "\"options": 42, "\"or": 202, "\"pgroonga": [42, 122], "\"phrase": [41, 224], "\"popular": 156, "\"postgresql": 42, "\"pp": 49, "\"prefix": 202, "\"price": 42, "\"proc": 142, "\"product": 42, "\"q1": 203, "\"r": 275, "\"records": 45, "\"rect": [47, 189], "\"rectangle": [47, 188, 189], "\"regexp": 202, "\"requires": 47, "\"roonga": 252, "\"rroonga": 42, "\"ruby": [42, 43, 91], "\"s": [42, 159, 168, 250, 251, 270, 271], "\"saerch": 251, "\"say": 225, "\"scalar": 141, "\"se": 250, "\"sea": 250, "\"search": [224, 250, 251, 253], "\"sequence": [159, 250, 251, 253], "\"serach": 251, "\"service": 251, "\"shuffle": 141, "\"similar": [195, 202, 219], "\"small": 141, "\"sound": 251, "\"sphere": 189, "\"sphr": 189, "\"starttime": [97, 241], "\"sticker": 43, "\"string": 111, "\"suffix": [195, 202, 219], "\"sug": 252, "\"suggest": 252, "\"super": 42, "\"t": [41, 168, 277], "\"table": [141, 142, 175], "\"tags": 91, "\"target": 43, "\"text": 39, "\"theater": 314, "\"theatre": 314, "\"timestamp": [41, 137], "\"too": 42, "\"trace": 96, "\"tritonn": 156, "\"truncate": 141, "\"type": [142, 159], "\"uptime": 241, "\"user": 41, "\"v": 41, "\"value": 156, "\"vector": [48, 141], "\"version": 241, "\"w": 275, "\"web": [251, 253], "\"weight": 305, "\"world": 42, "\"x": [44, 48, 49, 52, 224, 225], "\"xxx": 48, "\"y": [41, 52], "\"you": 224, "\"yyyy": 225, "\"zlib": 141, "\"zstd": 141, "\"}": [41, 42, 43, 44, 45, 58, 94, 96, 110, 111, 121, 122, 123, 125, 132, 133, 134, 135, 136, 137, 141, 156, 159, 177, 184, 193, 195, 201, 202, 203, 208, 209, 210, 211, 212, 221, 224, 225, 226, 229, 240, 244, 246, 247, 250, 251, 253, 260, 261, 275, 276, 278, 292, 305, 306, 307, 310, 313, 315], "\"\u00a9": 231, "\"\u00b7": [231, 232, 233, 234, 235, 258, 259], "\"\u2015": [231, 232, 233, 234, 235, 258, 259], "\"\u2171": 43, "\"\u3001": [231, 235, 250, 306], "\"\u3002": 49, "\"\u3050\u3041\u3050\u3043\u3050\u3047\u3050\u3049": [231, 235], "\"\u3058": [231, 235], "\"\u305a": [231, 235], "\"\u308a\u3093\u3054": [257, 258, 259], "\"\u308d\u3086\u304d": 313, "\"\u3093": [231, 232, 233, 234, 235], "\"\u3094": [231, 235], "\"\u30a2": 275, "\"\u30a6": [231, 232, 233, 234, 235], "\"\u30a9\u30aa": [231, 232, 233, 234, 235], "\"\u30aa": [231, 232, 233, 234, 235], "\"\u30aa\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30ac\u30ae\u30b2\u30b4": [231, 232, 233, 234, 235], "\"\u30b3\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30b4\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30b6\u30b8\u30bc\u30be": [231, 232, 233, 234, 235], "\"\u30b8": [231, 232, 233, 234, 235], "\"\u30ba": [231, 232, 233, 234, 235], "\"\u30bd\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30be\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30c2": [231, 232, 233, 234, 235], "\"\u30c5": [231, 232, 233, 234, 235], "\"\u30c8\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30c9\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30ce": 274, "\"\u30ce\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30cf": 274, "\"\u30d0\u30d3\u30d6\u30d9\u30dc": [231, 232, 233, 234, 235, 258, 259], "\"\u30d6": [231, 232, 233, 234, 235, 258, 259], "\"\u30db\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30dc\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30dd\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30df\u30ea": 225, "\"\u30e1": 44, "\"\u30e2\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30e7\u30aa": [231, 232, 233, 234, 235], "\"\u30e8\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30ed\u30aa": [44, 231, 232, 233, 234, 235], "\"\u30f2": [231, 232, 233, 234, 235], "\"\u30f3": [231, 232, 233, 234, 235], "\"\u30fb": [231, 232, 233, 234, 235, 258, 259], "\"\u30fc": [231, 232, 233, 234, 235, 258, 259], "\"\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc": [231, 232, 233, 234, 235, 258, 259], "\"\u52c9": 280, "\"\u59d3": 274, "\"\u5c71": 45, "\"\u5f37": [264, 279, 280], "\"\u5f7c": [231, 232, 233, 234, 235, 274], "\"\u672c": [265, 266, 267, 268, 280], "\"\u7f8a": 44, "\"\u8a9e": [265, 266, 267, 268, 280], "\"\uff09": [36, 250, 305, 315], "\"\uff65": [231, 232, 233, 234, 235, 258, 259], "\"\uff70": [231, 232, 233, 234, 235, 258, 259], "#'": 175, "#<": 74, "#=": 74, "#[": [44, 50], "#arguments": 50, "#command": 50, "#delete": 50, "#each": 50, "#files": 12, "#github": [41, 54], "#groonga": [243, 311], "#group": 50, "#i": 52, "#index": 50, "#inspect": 50, "#key": 50, "#mroonga": [41, 42], "#multi": 41, "#name": 50, "#proxy": 177, "#remove": 50, "#scalar": 50, "#select": 52, "#set": 176, "#value": 50, "#vector": 50, "#with": 50, "#worker": 177, "#{": [53, 228], "#{l": 228, "$\"": [44, 202, 224, 225], "$)": 225, "$groonga": 12, "$prefix": 39, "$request": 54, "${": [17, 42, 44, 51, 112, 114, 132, 134, 135, 142, 143, 156, 164, 180, 225, 244, 248, 281], "% a": [42, 231, 234, 235], "%\"": 244, "%'": 49, "%.*": 74, "%post": 47, "%y": 12, "& (": [41, 43, 52, 225], "& _": 315, "& b": [52, 225], "& x": 49, "& y": 48, "&!": [202, 225], "&&": [41, 42, 50, 54, 156, 202, 210, 225, 301, 313], "&..": 312, "&": [43, 44], "&arg": 244, "&command": 96, "&filter": 153, "&frequency": 180, ">": [191, 192, 193, 206], "<": [191, 192, 193, 206], "&n": 180, "&q": 180, "&query": 312, "&request": [51, 153], "&s": 180, "&t": 180, "' \"": [237, 272], "'\"": [47, 48, 54], "'\"$": 177, "'$": 177, "'(": 175, "')": [28, 49, 174, 175, 186], "',": [49, 179], "'-": [48, 175], "'.": 17, "'..": 48, "';": 175, "'='": 175, "'>": 194, "'\\": [43, 44], "'a": 45, "'column": 47, "'config": 175, "'content": [42, 43], "'fixed": 50, "'hay": 11, "'haystack": 11, "'indexblog": 310, "'ja": 17, "'localhost": [174, 175], "'m": [42, 226, 260, 310, 311], "'n": 175, "'needle": 11, "'now": 311, "'or": 47, "'pid": 175, "'query": 47, "'s": [17, 41, 43, 44, 95, 111, 125, 132, 134, 135, 156, 210, 224, 225, 226, 290], "'t": [42, 64, 68, 143, 177], "'tokenmecab": 53, "'ve": 311, "'vector": 50, "'\u3002": 175, "'\u5f0f": 208, "( c": 54, "( e": 54, "(!": 11, "(\"": [41, 42, 43, 44, 45, 47, 48, 52, 53, 74, 111, 132, 135, 153, 156, 175, 188, 191, 192, 193, 197, 202, 203, 205, 206, 208, 209, 225, 231, 232, 233, 234, 235, 236, 237, 257, 258, 259, 260, 261, 272, 274, 275, 276, 278, 302, 308], "($": 156, "(&": [50, 68, 74], "('": [89, 175, 186, 308], "((": [42, 43, 74, 91, 156], "((x": 282, "()": [3, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 61, 64, 68, 74, 81, 84, 85, 132, 134, 135, 156, 166, 167, 185, 188, 189, 190, 197, 199, 201, 204, 245, 284, 285, 286, 287, 288, 315], "(+": 52, "(-": [74, 225], "(.": [42, 208, 225], "(..": [41, 48, 51], "(<": 11, "(=": [11, 100, 225], "(>": [11, 53], "(?": [50, 272], "(?<": 208, "([": [42, 45, 204, 272], "(\\": 44, "(_": [41, 42, 50, 51, 135, 159, 195, 201, 208, 209, 225, 250, 251, 253], "(a": [21, 44], "(age": 183, "(anonymous": 124, "(anonymouse": 74, "(argument": 225, "(arugment": 225, "(body": [41, 44, 45, 191, 192, 193, 275], "(bool": 43, "(categories": 53, "(cmp": 49, "(column": [41, 49, 52, 183, 191, 192, 201, 205, 206, 245, 246, 247], "(com": 302, "(comments": 210, "(condition": [43, 186, 195], "(conditions": 195, "(content": [42, 44, 53, 132, 134, 135, 156, 194, 197, 205, 206, 245], "(contents": [43, 44], "(created": [134, 212], "(ctx": [11, 41, 52, 61, 68, 74, 302], "(cutter": 14, "(cve": [49, 52], "(d": 224, "(database": 303, "(debian": 296, "(default": 50, "(drilldown": 89, "(e": 43, "(eva": 56, "(fedora": 296, "(get": 174, "(grn": [41, 50, 52, 68], "(groonga": [44, 81], "(h": 45, "(html": 194, "(ii": 53, "(index": [246, 247], "(int": [81, 184], "(keyword": 68, "(location": [188, 307, 311, 315], "(match": [42, 202, 203], "(message": [246, 247], "(mingw\u7248": 41, "(model": 197, "(mroonga": 243, "(msghdr": 50, "(n": [52, 132, 134, 135, 156], "(name": [44, 45, 85], "(news": 12, "(nil": 74, "(null": 49, "(offsetted": 41, "(point": [41, 188, 189, 190], "(popular": 156, "(pos": [189, 190], "(price": 41, "(ptr": 37, "(q": 81, "(quantity": 41, "(query": 42, "(r": [176, 244], "(readings": 201, "(reference": 41, "(scan": 14, "(scope": 210, "(score": 50, "(select": 225, "(string": [51, 185], "(tab": 243, "(table": 49, "(tag": [42, 196], "(tags": [42, 219, 221], "(target": [41, 196, 198, 208, 209, 221], "(text": 193, "(threshold": 43, "(time": [211, 212], "(timestamp": [42, 211], "(timeval": 41, "(title": [48, 111, 185, 245], "(true": 42, "(twitter": 51, "(type": 184, "(u": [231, 232, 233, 234, 235, 258, 259], "(uint": 81, "(unknown": 74, "(usec": 41, "(user": 41, "(vc": [41, 54], "(vector": [43, 132, 219], "(void": [41, 81], "(wgs": 315, "(windows": [105, 176], "(x": 49, "(xxx": [48, 52], "(z": 44, "(~": 52, "(\u300c": 12, "(\u30ed\u30b0": [42, 131], "(\u5f0f": 208, "(\u7b46\u8005": 56, ") (": 44, ")\"": [41, 42, 44, 45, 48, 52, 134, 156, 194, 205, 206, 208, 224, 225, 244, 245, 246, 247, 275], ")'": [41, 42, 43, 44, 45, 53, 111, 132, 134, 135, 156, 159, 184, 192, 193, 197, 198, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 231, 232, 233, 234, 235, 250, 251, 253, 257, 258, 259, 272, 274, 275, 307, 311, 315], ")(": [166, 208], "))": [42, 43, 44, 50, 74, 156, 225, 243], ")*": 41, "),": [41, 42, 43, 44, 48, 74, 111, 195], ").": [27, 28, 42, 205, 206, 302], ")..": 12, ")/": [18, 25, 50], "):": [27, 43, 54, 124, 166, 272, 296, 308], ");": [11, 41, 50, 61, 68, 74, 81, 302], ")=": 303, ")>": 166, ")[": 52, ")\\": 244, ")\\\\": 272, ")]": [48, 111, 124], ")`": 45, ")disk": 244, ")grn": [50, 74], ")groonga": 243, ")hello": 50, ")mroonga": 243, ")senna": 243, ")ucrt\u30e9\u30f3\u30bf\u30a4\u30e0": 54, ")\u3001": [43, 49], ")\u300d": 175, ")\u3059\u3079\u3066": 183, "*\"": [38, 41, 42, 49, 50, 52, 134, 135, 156, 205, 272, 310], "*'": [42, 134, 135, 156], "*)": [42, 74, 208], "**": [74, 130, 141], "***": 130, "*.": 51, "*/": [68, 81, 84], "*<": [42, 43], "*bsd": [7, 8, 37, 39], "*n": [44, 202, 224, 225], "*np": [41, 42, 44, 224], "*npp": [42, 44, 224], "*onp": [41, 42, 44, 224], "*onpp": [42, 224], "*s": [49, 202], "*~": 42, "+ \"": [47, 50], "+ y": 282, "+\"": [53, 156, 202], "+(": 272, "+)": [42, 208], "++": [0, 6, 12, 31, 33, 39, 40, 41, 42, 49, 50, 54, 68, 81, 156, 175, 290], "+-": [68, 177], "+a": 224, "+c": 175, "+ff": [50, 230, 231, 232, 233, 234, 235, 258, 259], "+ff0": 50, "+ff2": 53, "+ffef": 277, "+fff": 277, "+fffe": 168, "+or": 244, "+process": 175, ",\n#": [43, 44, 58, 91, 94, 111, 115, 118, 123, 132, 134, 135, 137, 141, 142, 143, 155, 156, 158, 163, 168, 197, 202, 203, 224, 225, 231, 232, 233, 234, 235, 237, 245, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 274, 275, 277, 279, 280, 298, 305, 307, 308, 311, 312, 315], ",\n[": [42, 43, 45, 50, 122, 125, 188, 205, 206, 286], ",\n]": [43, 44, 45, 111, 134, 156, 210, 224, 301, 305, 313, 315], ",\n{": [41, 42, 43, 44, 45, 91, 111, 122, 123, 125, 132, 134, 135, 137, 156, 159, 177, 195, 196, 201, 202, 203, 210, 211, 212, 224, 225, 229, 240, 244, 245, 246, 247, 250, 251, 253, 260, 261, 276, 278, 306, 310, 313], ", !": [42, 43, 231, 234, 235], ", \"": [41, 42, 43, 44, 52, 91, 125, 156, 191, 192, 195, 205, 211, 231, 234, 235, 272, 310], ", %": [42, 43, 231, 234, 235], ", &": [42, 43, 231, 234, 235], ", \\": [42, 44, 45, 205], ", contents": [43, 44], ", normalizernfkc": 45, ", tokenfilternfkc": [42, 43], ", {": [177, 191, 292], ", |": 111, ", \u3052": [44, 231, 232, 233, 234, 235], ", \u3052\u30fc": [44, 231, 232, 233, 234, 235], ", \u3081": [44, 231, 232, 233, 234, 235], ", \u3081\u30fc": [44, 231, 232, 233, 234, 235], ", \u308a": [44, 231, 232, 233, 234, 235], ", \u308a\u30fc": [44, 231, 232, 233, 234, 235], ", \u308b": [44, 231, 232, 233, 234, 235], ", \u308b\u30fc": [44, 231, 232, 233, 234, 235], ",!=": 53, ",\"": [42, 43, 45, 49, 50, 108, 115, 116, 117, 122, 241, 272, 307, 310, 311], ",\"\"": [115, 116], ",\")": 272, ",\"checks": [43, 44], ",\"domain": 306, ",\"http": 305, ",\"link": 305, ",\"links": 305, ",\"location": [307, 315], ",\"tags": 307, ",\"title": 308, ",\"types": [43, 44], ",${": 44, ",'": [282, 305], ",(": 74, ",-": 286, ",..": 162, ",<": 53, ",<=": 53, ",==": 53, ",>=": 53, ",[": [41, 42, 43, 44, 225, 275, 301], ",[\"": [42, 43, 45, 180, 301], ",[]": [137, 165], ",\\\"": 125, ",_": [41, 42, 43, 44, 91, 134, 135, 156, 159, 202, 203, 225, 306, 307, 308, 311, 315], ",_score": 44, ",{": [43, 44, 97, 133, 154, 175, 176, 241], "- \"": 49, "-\"": [42, 44, 45, 202, 231, 232, 233, 234, 235, 257, 258, 259, 275], "-$": 28, "-%": [12, 191, 193], "-(": 225, "-*": [27, 31], "-+": 177, "--": [27, 37, 38, 39, 41, 42, 43, 44, 45, 47, 48, 49, 51, 52, 53, 54, 61, 68, 74, 81, 85, 91, 96, 111, 123, 124, 125, 132, 134, 135, 137, 142, 152, 155, 156, 163, 165, 166, 168, 175, 176, 177, 180, 184, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 211, 212, 219, 224, 225, 231, 232, 233, 234, 235, 243, 244, 245, 246, 247, 253, 255, 257, 258, 259, 260, 261, 275, 286, 301, 306, 307, 310, 311, 314, 315], "--n": 45, "-1": 225, "-2": 42, "-<": 27, "->": [37, 44, 45, 50, 53, 74, 137, 163, 183, 196, 231, 232, 233, 234, 235, 237, 302], "-> \u308a\u3044": [44, 231, 232, 233, 234, 235], "-_": [156, 245, 246, 247], "-a": [27, 47, 175, 224], "-address": [39, 47, 50, 175], "-adjuster": [42, 91, 156], "-admin": 47, "-aki": 49, "-all": 54, "-analyze": 42, "-analyzer": [39, 47], "-apache": [125, 178], "-api": 16, "-apply": 43, "-apt": [28, 32, 41], "-archive": [41, 54], "-arrow": [24, 25, 28, 42, 43, 44, 45, 96, 125, 178], "-auto": 41, "-autoreconf": 12, "-b": 27, "-backlog": 52, "-base": [52, 175, 180, 181], "-based": 42, "-benchmark": [22, 43, 44, 47, 48, 49, 57, 172], "-binary": [177, 292], "-bind": [47, 50, 175], "-blog": 311, "-branch": 18, "-bugs": [50, 51], "-build": 14, "-by": 123, "-bye": [42, 43, 44, 45, 132, 134, 135, 156, 165, 224, 225, 261], "-c": [51, 52, 175, 298], "-cache": [36, 48, 50, 175, 177], "-canceler": 99, "-certificates": 28, "-check": [37, 39, 180], "-ci": [48, 49], "-ci\u4e0a": 48, "-clear": 52, "-client": [52, 290], "-code": [49, 54], "-column": [41, 51, 54], "-columns": [42, 51, 52, 132, 134, 135, 156], "-command": [21, 37, 44, 52, 156, 180, 194, 292], "-commnad": 93, "-common": [32, 47], "-compose": [22, 23], "-condition": 53, "-conditional": 39, "-config": [8, 27, 31, 36, 37, 39, 47, 50, 175], "-core": 12, "-cpe": 25, "-create": [22, 38, 48, 50, 51, 57, 159, 172, 180, 250, 251], "-cxx": 44, "-d": [175, 177, 180, 181, 295, 298, 312], "-daemon": [180, 181], "-databases": [298, 308, 312], "-dataset": [22, 38, 48, 50, 51, 57, 159, 172, 180, 250, 251], "-db": 40, "-dcmake": 23, "-dd": [43, 44, 225, 228], "-ddthh": 42, "-deafult": 39, "-debug": [6, 27, 37], "-default": [27, 40, 44, 47, 48, 51, 52, 94, 156, 175, 225, 278, 292, 301], "-delta": [43, 44], "-dep": 12, "-dependent": [51, 137, 163], "-dev": [2, 12, 14, 31, 39, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54], "-devel": 31, "-dgrn": 23, "-diff": 54, "-dir": 176, "-directory": 47, "-disable": [31, 37, 39, 49, 180], "-doc": 40, "-document": [17, 175, 178], "-docutils": 12, "-drilldown": [49, 50, 51, 53, 156, 306], "-drilldowns": [51, 135, 156], "-dump": [41, 50], "-e": 175, "-each": [39, 53], "-eanble": 6, "-enable": [6, 37], "-encoding": [39, 175, 225, 292], "-encodiong": 225, "-endpoint": [180, 181], "-escalation": [37, 47, 156, 171, 175, 301], "-event": 50, "-existence": 48, "-fd": [39, 180], "-file": [36, 39, 50, 95, 180], "-files": 54, "-filter": [28, 32, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 91, 111, 156, 182, 183, 193, 196, 202, 205, 206, 210, 225, 244, 311, 313], "-fitlers": [258, 259], "-flags": [45, 53, 54, 175, 228], "-force": [52, 53, 137, 143], "-forked": 12, "-form": [54, 178], "-frequency": 39, "-fstack": 53, "-ftp": 176, "-full": 12, "-fuzzy": [44, 156], "-g": 23, "-generator": 111, "-get": [12, 47], "-gobject": 50, "-gqtp": [22, 24, 25, 28, 32, 47, 49, 50, 289], "-gram": [0, 51, 53, 168, 225, 299, 301, 308], "-groonga": [13, 44, 176, 311], "-h": [175, 177, 292], "-help": [48, 175], "-hiragana": [231, 232, 233, 234, 235, 258, 259], "-history": 39, "-hits": 41, "-host": 176, "-html": [37, 47], "-http": [22, 43, 44, 47, 48, 49, 51, 177, 289], "-httpd": [22, 39, 41, 44, 47, 49, 50, 51, 52, 53, 54, 57, 61, 131, 153, 167, 172, 178, 179, 228, 252, 289, 291, 292], "-i": [50, 52, 175, 176], "-id": [47, 153, 175], "-idf": [41, 245, 246, 247], "-ifexists": 44, "-import": 43, "-in": 27, "-index": [41, 50], "-infinity": [41, 52], "-info": 27, "-inspect": 54, "-inverse": [245, 247], "-ipadic": [30, 274], "-j": [6, 31], "-jemalloc": 49, "-jinja": 12, "-jp": [48, 277, 302], "-key": 40, "-keyring": [41, 47, 54], "-known": [42, 205, 206], "-l": [175, 180, 181], "-latest": [24, 25, 27, 28, 31, 33, 42], "-leak": 37, "-leaner": 181, "-learner": [22, 37, 49, 51, 57, 172, 179, 252], "-length": 178, "-level": [43, 49, 50, 52, 175, 181], "-libedit": 37, "-libevent": 40, "-libs": [42, 43], "-libstemmer": 49, "-limit": [36, 43, 48, 50, 54, 156, 175], "-line": 21, "-lines": [39, 180], "-linux": 25, "-listen": 52, "-load": [41, 53, 54, 135, 156], "-lock": [52, 53], "-log": [39, 42, 45, 47, 49, 50, 52, 53, 54, 131, 175, 176, 177, 180, 181, 228], "-m": 174, "-match": [37, 43, 44, 47, 49, 50, 52, 53, 111, 156, 171, 175, 202, 224, 245, 301, 308, 310], "-max": [39, 175, 180], "-maximum": 27, "-mecab": [24, 25, 28, 30, 32, 47, 48, 49], "-memcached": 51, "-memory": 37, "-mingw": 12, "-minus": [231, 232, 233, 234, 235, 257, 258, 259], "-mm": [42, 43, 44, 225, 228], "-mod": 44, "-mode": 17, "-mruby": [6, 49], "-msgpack": 292, "-msys": 12, "-munin": [28, 32, 40], "-my": 227, "-mysql": [24, 25, 28, 32, 44, 45, 51, 53, 103, 138, 229], "-n": [39, 43, 44, 52, 134, 175, 180, 226, 308], "-neologd": 274, "-nginx": [44, 177, 296], "-nightly": 12, "-normalizer": [24, 25, 28, 32, 42, 43, 44, 45, 47, 50, 51, 53, 103, 138, 201, 229, 230], "-normalizers": 42, "-nunit": 173, "-nyokki": 45, "-offset": [45, 50, 54, 156], "-onigmo": 54, "-only": 52, "-options": 42, "-oriented": [42, 205, 206], "-output": [42, 43, 44, 47, 48, 50, 51, 52, 134, 156, 176, 191, 192, 193, 194, 206], "-p": [174, 175, 176, 180, 298, 312], "-package": 51, "-packages": [12, 45], "-patch": 17, "-path": [36, 37, 39, 41, 42, 45, 47, 49, 50, 52, 131, 159, 175, 180, 181, 228], "-per": [39, 180], "-pid": [36, 39, 41, 50, 175], "-pinus": 52, "-pip": 18, "-platorm": 51, "-plugin": 13, "-plugins": [28, 32, 40], "-point": 282, "-port": [175, 176, 180], "-post": [42, 43, 45], "-ppa": 12, "-prefix": [6, 177], "-preset": [3, 18], "-presets": 27, "-progress": 27, "-properties": 32, "-protector": 53, "-protocol": [175, 176, 178, 295, 312], "-query": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 111, 131, 175, 177, 191, 192, 193, 202, 205, 206, 224, 243, 276, 278, 296, 308, 311, 313], "-r": [180, 181], "-raw": 125, "-receive": [180, 181], "-recursive": [41, 44, 54, 124], "-related": 54, "-release": [24, 25, 28, 47, 51, 54], "-repo": 227, "-repository": [32, 47], "-request": [51, 99, 175], "-restart": 51, "-root": [37, 175, 178], "-rotate": [45, 50, 175], "-ruby": [6, 47], "-s": [27, 175, 180, 181, 298], "-scorer": 182, "-search": [41, 43, 49, 272, 273], "-searchu": 273, "-selector": 111, "-send": [180, 181], "-separated": 50, "-server": [22, 24, 25, 28, 32, 39, 40, 43, 44, 47, 48, 49, 50, 175, 289], "-show": 36, "-since": 54, "-sister": 111, "-size": [45, 50, 175], "-slices": [42, 43, 44, 51, 54, 156], "-software": 45, "-sort": [42, 51, 52, 54, 198], "-sortby": [48, 51], "-source": [28, 41, 111], "-static": 39, "-stem": [28, 32, 49, 52], "-streaming": [125, 178], "-strings": 40, "-suggest": [22, 37, 38, 39, 47, 48, 49, 50, 51, 57, 159, 172, 250, 251, 252], "-t": [175, 180], "-table": 41, "-tag": 205, "-talk": [2, 12, 42, 48, 50, 54], "-target": [50, 51, 150], "-terminated": 85, "-test": 14, "-text": [41, 43, 272, 273], "-threads": [175, 180], "-threshold": [37, 45, 47, 50, 156, 171, 175, 301], "-time": [42, 175, 205, 206], "-timeout": [51, 99, 175], "-token": [28, 32, 42, 43, 49, 51, 52], "-tokenizer": [24, 25, 28, 32, 47, 48], "-truncate": 53, "-type": [39, 54, 111, 125, 177, 178, 250, 251, 253, 292], "-unauthenticated": 47, "-urlencoded": [54, 178], "-use": 50, "-v": [197, 227], "-values": [50, 51], "-vcruntime": [33, 42, 166], "-version": [37, 52, 248, 292], "-w": 12, "-wal": 42, "-windows": 50, "-with": [6, 27, 30, 40, 47, 49, 51, 156, 171, 225], "-without": 54, "-wno": 39, "-word": 156, "-workers": 175, "-working": [18, 47], "-www": [54, 178], "-x": [33, 42, 43, 48], "-xx": 12, "-yyy": 17, "-z": [28, 44], "-za": 44, "-|": 111, "-\u02d7": [231, 232, 233, 234, 235, 257, 258, 259], "-\u30ad": [231, 232, 233, 234, 235], "-\u30af": [231, 232, 233, 234, 235], "-\u30b1": [231, 232, 233, 234, 235], "-\u30b3": [231, 232, 233, 234, 235], "-\u30e1": 44, ". \"": 276, ".\"": [42, 44, 45, 51, 156, 191, 192, 193, 197, 202, 203, 205, 206, 224, 225, 226, 231, 234, 235, 245, 272, 277, 305, 307, 308, 310, 312, 314], ".$": [135, 156, 224], ".&": 96, ".'": [42, 47, 48], ".)": [41, 44, 48, 51, 124, 224, 225, 228, 245, 281], ".*s": 74, ".,": [42, 43, 134, 142, 155, 156, 180, 196, 203], ".-": 17, "..": [6, 17, 18, 27, 41, 42, 43, 44, 45, 47, 48, 51, 54, 74, 81, 85, 91, 96, 98, 108, 111, 112, 125, 134, 136, 141, 142, 149, 150, 153, 155, 156, 159, 161, 175, 177, 180, 191, 196, 202, 203, 205, 224, 225, 244, 245, 246, 247, 276, 292, 308], "...": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 61, 62, 63, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 96, 97, 108, 112, 125, 134, 141, 153, 156, 159, 162, 175, 176, 177, 178, 186, 192, 195, 205, 210, 224, 225, 226, 241, 244, 248, 272, 311], "./": [12, 17, 29, 31], ".:": [43, 181], ".>": 248, ".\\": [42, 43, 205, 272], ".]": [44, 45, 51, 91, 108, 125, 135, 153, 156, 159, 162, 205, 225], "._": [45, 48, 49, 111, 132, 134, 135, 156, 163, 195, 224, 225, 305, 306], ".ac": 31, ".actual": [44, 96], ".age": [58, 111, 124, 149, 150, 155], ".am": 18, ".apache": 44, ".arrow": 44, ".arrows": 96, ".askmonty": 49, ".blog": 301, ".body": [109, 120, 310, 314], ".c": [42, 43, 45, 52, 55, 111, 115, 118, 143, 163, 166, 302], ".clean": 12, ".cmake": [18, 27], ".co": [55, 156], ".column": [48, 49, 58, 110, 115, 116, 117, 124, 141], ".com": [6, 7, 8, 12, 13, 17, 18, 21, 41, 44, 302, 305, 306, 308, 310, 312, 315], ".comment": [310, 311], ".compress": 141, ".conf": [50, 51, 177, 281, 296, 303], ".content": [42, 44, 132, 134, 135, 142, 155, 156, 163, 197, 210, 224, 225, 226, 281, 310], ".context": 163, ".cpp": [94, 156, 158, 177, 197, 227, 298, 308, 312], ".created": [132, 134, 135], ".current": 50, ".d": [41, 281, 303], ".data": [123, 156], ".db": [29, 48, 175, 298, 308, 312], ".ddl": 176, ".description": 311, ".dll": [53, 85, 166], ".doc": 18, ".domain": 50, ".dump": 39, ".edit": 3, ".enable": [42, 45], ".entries": [44, 281, 310], ".entry": 152, ".exact": [44, 96], ".except": 42, ".exe": [53, 166], ".facebook": 12, ".fuzzy": [44, 96], ".g": 43, ".garbage": 48, ".generator": 141, ".gguf": [197, 227], ".git": [6, 7, 8, 12, 13, 17, 18], ".github": 17, ".githubusercontent": 21, ".grn": [42, 43, 122, 177], ".groonga": [12, 17, 24, 25, 27, 28, 31, 33, 176], ".group": [41, 43, 52, 210, 286], ".gz": [12, 17, 27, 31], ".h": [16, 50, 85], ".hash": 311, ".high": 110, ".html": [17, 18, 41, 106, 175, 177], ".htpasswd": [177, 292], ".index": [42, 50, 124, 152, 155, 156], ".inl": 166, ".input": [44, 96], ".introduction": 149, ".invalid": 111, ".io": [24, 25, 28], ".jfrog": [24, 25, 28], ".jp": [12, 50, 55, 156], ".json": [41, 96, 177, 178, 241], ".js\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0": 21, ".kentaro": 48, ".key": 163, ".label": [156, 201], ".lemon": [58, 156], ".lists": 41, ".load": 176, ".location": 311, ".log": [31, 45, 50, 54, 93, 137, 156, 173, 175, 176, 177, 180, 296], ".logs": [137, 152], ".max": [195, 303], ".md": 18, ".me": [2, 50], ".memos": [142, 155], ".microsoft": 302, ".missing": 111, ".mo\u30d5\u30a1\u30a4\u30eb": 17, ".msgpack": 241, ".n": [41, 44, 96, 132, 134, 135, 156, 224, 225, 281], ".name": [108, 124, 173, 210, 311], ".ne": 55, ".nested": 156, ".net": [2, 12, 305, 306, 307, 308, 312, 315], ".nginx": 177, ".ninja": 27, ".noarch": [24, 25], ".normalized": [42, 43, 44, 45, 237], ".o": 307, ".operator": 96, ".org": [12, 17, 24, 25, 27, 28, 31, 33, 41, 43, 49, 50, 54, 91, 122, 125, 176, 177, 194, 305, 306, 307, 308, 312, 315], ".osdn": 2, ".overcommit": [47, 228], ".patch": 17, ".pc": [31, 38, 39], ".pc\u30d5\u30a1\u30a4\u30eb": 31, ".pdb": 53, ".people": 111, ".php": 12, ".pid": 175, ".po": 3, ".position": 141, ".posted": 311, ".product": 42, ".purchases": 42, ".rb": [37, 42, 49, 54, 132, 134, 135, 137], ".readings": 201, ".real": [58, 115, 116, 117], ".reference": 163, ".repo": 54, ".roles": 111, ".roonga": [224, 225], ".rpm": [24, 25], ".rst": [12, 18], ".s": 42, ".score": 170, ".scr": 176, ".section": 141, ".select": [44, 96, 176, 225], ".serial": 110, ".service": 47, ".sh": [6, 12, 14, 17, 18, 21, 27, 47, 54], ".site": 152, ".size": 141, ".so": [142, 144, 145, 151], ".sort": [42, 52, 286], ".source": 50, ".sourceforge": 2, ".spec": 39, ".ssssss": 228, ".statistics": 141, ".status": 176, ".statuses": 42, ".stream": 44, ".sub": [135, 156], ".substituted": 42, ".synonym": 156, ".sz": 42, ".table": 156, ".tag": [41, 42, 45, 110, 132, 134, 135, 156, 195], ".tags": 42, ".tar": [12, 17, 27, 31], ".timestamp": [140, 143], ".title": [42, 111, 126, 127, 128, 152, 163, 305, 310], ".to": 110, ".travis": 21, ".tsv": [241, 243], ".txt": [18, 277], ".type": 74, ".user": [149, 195], ".users": 124, ".uuuuuu": 225, ".value": 156, ".weight": [48, 141], ".wikipedia": 41, ".x": [12, 42, 43], ".xml": [178, 241], ".xx": 42, ".xxx": 42, ".years": 58, ".yml": [21, 29], ".yyy": 54, ".zip": [17, 27, 33, 42], ".zzz": 54, ".}": [41, 42, 91, 108, 125, 224, 225], "/\"": [27, 42, 91, 125, 277, 305, 306, 307, 308, 312, 315], "/$": [17, 18, 25, 28, 178], "/${": 180, "/'": 49, "/*": [12, 16, 17, 81, 84, 177, 296, 303], "/+": 12, "/.": 39, "/..": [42, 51, 156, 177, 180], "/;": 177, "/<": [191, 193], "/?": 180, "/aba": [306, 308, 315], "/acccess": 296, "/admin": [39, 175], "/afr": [306, 308, 315], "/alice": 277, "/almalinux": [24, 296], "/amazon": 25, "/apache": 12, "/api": 292, "/apt": 41, "/archive": 12, "/arrow": [12, 24, 25, 27, 28, 31], "/arrowconfig": 27, "/artifactory": [24, 25, 28], "/atv": [306, 308, 315], "/bin": 31, "/blog": [41, 54], "/branches": 14, "/c": [0, 6, 16, 156, 290], "/cache": 177, "/changes": 43, "/cmake": 27, "/com": 302, "/command": [14, 177, 244, 312], "/commands": [49, 156], "/commits": 49, "/config": 115, "/contribution": 18, "/copyright": 49, "/coremodule": 177, "/d": [42, 49, 53, 54, 96, 177, 178, 244, 292], "/data": [21, 29], "/database": [156, 177, 292], "/db": [29, 42, 122, 159, 163, 173, 177, 181, 244, 296], "/db1": 292, "/db2": 292, "/dd": 225, "/debian": [28, 41], "/default": [47, 296], "/desktop": 302, "/dev": 12, "/dictionary": 37, "/disk": 244, "/doc": [12, 18], "/docker": 12, "/docs": [41, 177], "/documentation": 18, "/en": [18, 43, 177], "/entry": 310, "/en\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0": 2, "/etc": [41, 47, 177, 243, 281, 296, 303], "/eval": 154, "/example": [156, 180], "/executables": [106, 180], "/false": [36, 305], "/fedora": [37, 47], "/files": 18, "/free": 45, "/functions": 14, "/gat": [306, 308, 315], "/gensim": 41, "/github": 53, "/gqtp": [48, 296], "/grndb": [106, 173], "/groonga": [6, 7, 8, 12, 13, 16, 17, 18, 21, 27, 28, 29, 31, 33, 37, 39, 42, 44, 45, 47, 48, 50, 52, 53, 132, 134, 135, 137, 144, 145, 151, 173, 175, 177, 180, 197, 227, 243, 281, 296, 298, 308, 312], "/head": 21, "/hoge": 175, "/home": 277, "/homebrew": 12, "/horimoto": 45, "/hostname": [175, 176], "/html": [17, 18, 39, 292], "/http": [177, 296], "/httpd": [177, 296], "/in": 50, "/index": [17, 175], "/install": 41, "/introduction": [18, 298, 308, 312], "/issues": 44, "/ja": [17, 18, 41, 51, 54, 302], "/javascript": 39, "/ja\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0": 2, "/json": [39, 125, 177, 178, 292], "/kytea": 168, "/language": [197, 227], "/lc": [17, 18], "/learn": 180, "/lib": [31, 42, 45, 144, 145, 151, 173, 177, 296], "/library": 302, "/limits": 281, "/linux": [3, 5, 8, 12, 18, 22, 23, 39, 41, 42, 43, 44, 45, 52, 53, 54], "/lists": 12, "/load": [51, 53, 125, 177, 292], "/local": [6, 27, 31, 177, 227], "/locale": [17, 18], "/log": [31, 50, 173, 175, 177, 180, 296], "/logical": [132, 134, 135, 137], "/lzo": [37, 39, 48], "/magazine": 156, "/mailarchive": 12, "/main": 17, "/managers": [177, 292], "/math": 198, "/max": [49, 52], "/mecab": 142, "/meetup": 50, "/message": 12, "/min": 52, "/mingw": 12, "/missing": [43, 44], "/mistral": [197, 227], "/mm": 225, "/models": 41, "/modules": 37, "/mpisel": 51, "/mroonga": [41, 42, 53], "/mruby": 53, "/ms": 302, "/msys": 12, "/munin": 31, "/mysql": 103, "/news": 12, "/nfs": 31, "/ngx": 177, "/nightly": 12, "/non": 48, "/null": [6, 36, 42], "/number": 156, "/o": 161, "/okapi": 41, "/other": 177, "/packages": 12, "/pgroonga": [43, 45], "/php": 50, "/pipermail": 49, "/pkgbuild": 12, "/pkgconfig": 31, "/plain": 50, "/plugins": [31, 37, 48, 132, 134, 135, 137, 144, 145, 151], "/ppa": [12, 32], "/proc": [118, 143, 156], "/projects": 12, "/query": [144, 145, 151], "/rab": [306, 308, 315], "/ranguba": 44, "/redmine": 54, "/reference": [41, 43, 106, 156, 180], "/request": 153, "/requirements": 18, "/result": 40, "/rroonga": [44, 49], "/run": [14, 175], "/rurema": 49, "/security": 281, "/select": [96, 153, 156, 177, 312], "/server": 43, "/setup": 21, "/sharding": [132, 134, 135, 137], "/share": [39, 175, 227], "/shm": 177, "/shutdown": [54, 175, 177, 292], "/sort": 45, "/source": [12, 16, 17, 18, 27, 31], "/sources": 41, "/span": [43, 44, 191, 192, 193, 206], "/status": [174, 177, 178, 241, 292, 312], "/stem": [42, 260], "/stop": [42, 45, 122, 165, 255, 261], "/store": 111, "/string": [42, 51, 132, 134, 135, 156, 195, 208, 209], "/suggest": 180, "/synonyms": 243, "/sysconfig": 296, "/sysctl": [281, 303], "/system": 25, "/tab": 50, "/termux": 45, "/test": 277, "/tfidfmodel": 41, "/time": [41, 42, 43, 52, 134, 211, 212], "/tmp": [6, 27, 31, 243, 292], "/to": [29, 177, 292], "/token": [44, 45], "/tokenizer": 45, "/travis": 21, "/tsv": [144, 145, 151, 243], "/ubuntu": [12, 44, 47, 296], "/unit": 14, "/usage": 156, "/usr": [27, 31, 175, 227], "/var": [31, 50, 173, 175, 177, 296], "/vdw": [306, 308, 315], "/vector": [43, 50, 132, 134, 135, 156, 197, 219, 221, 222], "/version": 50, "/vnd": 44, "/webplus": 156, "/wgs": 315, "/wiki": 41, "/windows": [33, 302], "/work": [12, 45], "/x": [54, 125, 178, 292], "/xml": 292, "/zlib": 53, "/~": 12, "/\u65e5": 311, "/\u6708": 311, "/\uff09": 37, "0ba": 166, "0bg": 166, "0c": 271, "0cc": 166, "0d": 99, "0e": 176, "0f": 51, "0garbage": 53, "0mq": 48, "0x": [40, 53, 99, 111, 224, 228, 282, 298, 305], "0xa": 111, "0xc": 298, "0xe": 111, "0y": 44, "0yyy": 44, "0\u4ef6": 45, "0\u59cb": [208, 209], "10": [35, 44, 107, 176, 184, 308], "11": [35, 41, 44, 91, 96, 111, 156, 202, 203, 225, 281, 301], "12": 35, "12\u6708": [42, 56], "13": [35, 247], "14": 35, "15": 35, "1b": [42, 111, 224], "1bit": 111, "1byte": [44, 111, 141, 298], "1cpu": 156, "1de": [41, 44], "1f": 50, "1gb": 50, "1o": 244, "1st": 125, "1tib": [34, 161, 254], "1usec": 51, "1x": 41, "1year": 173, "1\u305a": [89, 93, 96], "1\u3064": [10, 34, 39, 42, 43, 44, 45, 48, 49, 51, 52, 54, 58, 68, 74, 87, 90, 91, 96, 107, 110, 111, 112, 115, 116, 124, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 161, 163, 167, 168, 170, 171, 175, 176, 177, 178, 180, 181, 193, 194, 195, 196, 198, 201, 202, 203, 205, 206, 208, 210, 211, 212, 221, 224, 225, 228, 237, 244, 245, 246, 247, 248, 252, 254, 262, 264, 272, 276, 281, 292, 298, 305, 307, 310, 311], "1\u307e": 44, "1\u3088\u308a": 105, "1\u30b9\u30ec\u30c3\u30c9": [94, 156], "1\u30d0\u30a4\u30c8": 111, "1\u30f6\u6708": 248, "1\u4ef6": [301, 311], "1\u56de": 177, "1\u5897": 54, "1\u5ea6": [84, 135], "1\u6708": [42, 52, 225, 282, 305, 311], "1\u884c": [125, 176], "21": 45, "22": 45, "23": 45, "24": 45, "25": 45, "2a": 166, "2byte": [111, 298], "2bytes": [44, 111, 141], "2c": 224, "2def": [41, 44], "2e": [231, 232, 233, 234, 235, 258, 259], "2ff": 51, "2grn": 49, "2groonga": 166, "2lib": 166, "2nd": 125, "2rroonga": 42, "2thread": 166, "2\u3064": [19, 24, 25, 28, 32, 41, 42, 44, 48, 49, 50, 54, 94, 96, 111, 112, 117, 132, 133, 134, 135, 137, 143, 149, 150, 156, 160, 161, 163, 164, 165, 167, 180, 183, 185, 193, 195, 196, 197, 201, 202, 203, 205, 208, 209, 210, 219, 224, 228, 244, 245, 246, 253, 262, 264, 272, 286, 291, 292, 296, 305, 306, 308, 310, 311], "2\u3064\u3081": [153, 195, 224, 225, 292, 310], "2\u30d0\u30a4\u30c8": 111, "2\u4ef6": 156, "2\u7cfb": 35, "3d": 224, "3days": 173, "3f": 111, "3index": 45, "3ki": 37, "3\u3064": [12, 14, 44, 48, 53, 94, 95, 114, 124, 138, 156, 183, 184, 192, 195, 206, 208, 219, 223, 296, 305, 306, 308, 310], "3\u3064\u3081": 225, "3\u7cfb": 35, "4byte": 298, "4c": 41, "4e": 303, "4gib": [34, 42, 43, 51, 161, 254, 298], "4kib": [34, 41, 45, 50, 58, 115, 116, 117, 171, 254], "4mib": 141, "4s": 42, "4\u3064": [44, 94, 110, 156, 175, 195, 206, 208, 209, 245, 254, 274], "4\u3064\u3081": 225, "4\u7cfb": 35, "5a": 41, "5b": [117, 171], "5c": 53, "5d": 99, "5f": 176, "5weeks": 173, "5\u7cfb": 35, "6a": 111, "6cd": 228, "6elz": 49, "6f": 41, "6gib": 281, "6\u3064": [94, 156, 183], "6\u7cfb": 35, "7a": 52, "7b": [197, 227], "7d": 173, "7e": 176, "7ed": 99, "7f": 51, "7fa": 99, "7\u3064": 158, "7\u6708": [42, 43, 50, 52, 53], "7\u7cfb": 35, "8bit": [111, 282], "8byte": 298, "8r": [31, 47, 74, 175], "8x": 41, "8\u3064": 275, "8\u6708": 43, "8\u7cfb": 35, "9a": 111, "9ba": 42, "9e": 230, "9f": 241, "9x": 41, "9zawa": 54, "9\u3064": 308, "9\u7cfb": 35, ": \"": [42, 208, 209], ": <": 166, ": n": 174, ":!": 224, ":\"": [53, 68, 132, 244, 308], ":#": [49, 51], ":#{": 53, ":$": [18, 224, 225, 313], ":(": 74, ":*": 41, ":..": [124, 156], ":/": [12, 13, 17, 21, 24, 25, 27, 28, 29, 31, 33, 41, 43, 44, 49, 54, 91, 122, 125, 153, 156, 174, 175, 177, 178, 180, 194, 241, 292, 302, 305, 306, 307, 308, 310, 312, 315], "::": [50, 52, 53, 100, 106, 156, 180], ":<": [12, 156, 224], ":=": [156, 224], ":>": [41, 156, 224], ":@": [41, 43, 44, 45, 135, 156, 202, 224, 305, 307, 308, 311, 312], ":[": [74, 176, 244], ":\\": [27, 166, 244], ":\\\"": 125, ":^": [42, 44, 45, 224, 313], ":available": 74, ":bob": 311, ":column": 124, ":dat": [124, 141], ":data": [42, 44, 96], ":fix": 141, ":groonga": [6, 7, 8, 12, 32, 51, 156, 224], ":hash": [124, 141, 142], ":index": [141, 142], ":latest": 29, ":mariadb": 43, ":mm": [42, 225, 228], ":mroonga": 53, ":n": [41, 42, 44, 96], ":no": 141, ":none": 74, ":order": 50, ":pat": [74, 141, 142], ":pgroonga": 43, ":port": [175, 177, 178], ":ruby": 42, ":set": 49, ":shorttext": 74, ":ss": [42, 225, 228], ":table": 124, ":tag": 12, ":update": 12, ":value": [156, 224], ":var": [74, 124, 141], ":xxx": 53, ":{": 74, ":~": [224, 244], ":\u5206": 311, ":\u79d2": 311, ";\"": [47, 53], ";/": [191, 192, 193], ";b": [191, 192, 193], ";rroonga": [191, 192, 193], "< n": 225, "< t1": 11, "< y": 48, "<\"": [52, 74, 202], "<#{": 53, "<$": 42, "<%": 74, "<(": 166, "<-": 292, "<..": 248, "": [41, 43, 44, 45, 111, 191, 192, 193, 194, 206, 241, 275], "<=": [48, 177, 195, 202, 225, 311], "<[": 137, "\n<": 241, "> \"": 50, "> %": 74, "> y": 48, "> \u304d\u3044": [44, 231, 232, 233, 234, 235], "> \u304e\u3044": [44, 231, 232, 233, 234, 235], "> \u304f\u3046": [44, 231, 232, 233, 234, 235], "> \u3051\u3048": [44, 231, 232, 233, 234, 235], "> \u3052\u3048": [44, 231, 232, 233, 234, 235], "> \u3057\u3044": [44, 231, 232, 233, 234, 235], "> \u3058\u3044": [44, 231, 232, 233, 234, 235], "> \u3061\u3044": [44, 231, 232, 233, 234, 235], "> \u3064\u3046": [44, 231, 232, 233, 234, 235], "> \u3073\u3044": [44, 231, 232, 233, 234, 235], "> \u307f\u3044": [44, 231, 232, 233, 234, 235], "> \u3081\u3048": [44, 231, 232, 233, 234, 235], "> \u308a\u3044": [44, 231, 232, 233, 234, 235], "> \u308b\u3046": [44, 231, 232, 233, 234, 235], "> \u308c\u3048": [44, 231, 232, 233, 234, 235], "> \u308d\u304a": [44, 231, 232, 233, 234, 235], "> \u3093\u3093": [44, 231, 232, 233, 234, 235], "> \u3094": [44, 231, 232, 233, 234, 235], "> \u30aa": 44, "> \u30ac": 44, "> \u30ae": 44, "> \u30b2": 44, "> \u30b4": 44, "> \u30b6": 44, "> \u30b8": 44, "> \u30ba": 44, "> \u30bc": 44, "> \u30be": 44, "> \u30f3\u30f3": [44, 231, 232, 233, 234, 235], ">\"": [42, 43, 44, 45, 48, 52, 58, 99, 111, 115, 118, 132, 134, 135, 143, 156, 163, 191, 192, 194, 202, 237], ">#{": 53, ">$": 42, ">,": 74, ">.": [12, 27, 191, 192, 193, 208], ">:": [58, 111, 132, 134, 135, 166, 228], "><": [68, 241], ">=": [48, 202, 225], ">>": [48, 225], ">\\": 74, ">a": [42, 44], ">alloc": 241, ">cache": 241, ">command": 241, ">default": 241, ">g": 44, ">ga": 44, ">groonga": 111, ">i": 44, ">k": 237, ">max": 241, ">mysql": 44, ">n": 241, ">o": 45, ">roon": 44, ">rroonga": [191, 192, 193], ">s": 44, ">starttime": 241, ">uptime": 241, ">version": 241, ">\u3315": 275, ">\u5c71": 45, ">\u5f0f": 208, ">\u901f": 45, ">\u90ce": 45, ">\uff01": [41, 45], ">\uff41z": 275, "?!": 272, "?'": 208, "?-": 53, "?..": 96, "?<": 208, "??": 156, "??_": 166, "?arg": 244, "?command": 178, "?i": 244, "?id": 153, "?immediate": 41, "?max": [50, 52], "?mode": 54, "?msg": 12, "?output": 41, "?parameter": 177, "?table": [51, 125, 153, 177, 292, 312], "@\"": [52, 202, 219], "@$": 202, "@'": 308, "@(": 166, "@?": 166, "@^": 202, "@_": 166, "@ceekz": 48, "@d": 166, "@do": 49, "@github": [6, 7, 8, 12, 18], "@gmbijecc": 166, "@grn": 166, "@groonga": 2, "@kiske": 47, "@lists": 2, "@naoina": [47, 48], "@nhamhjpm": 166, "@orangain": 48, "@piikbmgh": 166, "@s": 37, "@soundkitchen": [39, 47], "@tomotaka": 39, "@uzulla": 39, "@wareohji": 47, "@x": 52, "@yappo": [48, 49], "@yito": [47, 48], "@~": [202, 244], "[\"": [41, 42, 43, 44, 50, 91, 108, 111, 112, 134, 156, 159, 180, 205, 206, 219, 221, 250, 286, 301, 305, 307, 311, 314], "[\"-": 29, "[\"i": 43, "[#": [39, 40, 47, 49], "[$": [43, 44, 50, 51, 52], "[(": [124, 244], "[,": [189, 208, 209], "[-": 42, "[..": [45, 51, 135, 156], "[2": 175, "[:": 312, "[@": [39, 47, 48, 49], "[[": [42, 43, 45, 58, 91, 110, 111, 114, 121, 125, 132, 134, 135, 137, 153, 154, 156, 162, 164, 165, 170, 175, 180, 183, 186, 188, 191, 192, 193, 195, 197, 198, 201, 203, 205, 206, 219, 224, 225, 226, 237, 245, 250, 260, 261, 275, 276, 278, 286, 301, 305, 307, 310, 313], "[[\"": 108, "[\\\"": 42, "[]": [41, 42, 43, 44, 123], "[]}": [43, 44], "[a": [41, 156], "[admin": [39, 47, 48, 51], "[adult": 41, "[aggregator": 41, "[ali": 42, "[amazon": 45, "[api": 50, "[apt": 47, "[args": 175, "[askdkc": 44, "[b": 156, "[backslash": 224, "[benchmark": 49, "[bernard": 50, "[bindings": 50, "[cache": 52, "[cast": 44, "[category": 156, "[centos": 51, "[cmake": [44, 50, 51, 52], "[column": [49, 125], "[content": [132, 134, 135, 156], "[count": [132, 134, 135], "[customers": 41, "[dat": [40, 47, 52], "[dd": 244, "[deb": [39, 47, 48, 49, 50, 51], "[debian": [44, 51], "[distance": 41, "[doc": [39, 40, 47, 48, 49, 50, 51, 53], "[documentation": 42, "[dump": [47, 48, 49], "[element": [91, 225], "[example": [49, 50], "[examples": 51, "[expensive": 42, "[fedora": [47, 49], "[functions": 52, "[fuzzy": 44, "[geo": [39, 48, 54], "[github": [49, 52], "[gqtp": 48, "[grn": 50, "[grntest": 39, "[groonga": [12, 39, 42, 47, 49, 50, 51], "[hash": 51, "[header": [95, 107, 110, 111, 114, 115, 116, 117, 118, 121, 123, 124, 126, 127, 128, 129, 131, 132, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 154, 155, 157, 160, 161, 163, 164, 166, 167, 168, 169, 170], "[hh": 50, "[highlight": 41, "[highlighter": 53, "[hour2": 134, "[http": [47, 48, 49, 50, 51], "[httpd": [41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54], "[ii": 53, "[index": [43, 44, 49, 53, 54], "[info": 244, "[is": [132, 134, 135, 156], "[ja": 51, "[key": 50, "[label": [41, 43, 44, 50, 51, 52, 53, 135, 156], "[label1": [49, 135, 156], "[label2": [135, 156], "[launchpad": 12, "[li": 42, "[libedit": 39, "[linux": 47, "[load": [47, 49, 52, 53], "[log": 53, "[logical": 50, "[macports": 39, "[mdev": 50, "[mecab": 50, "[messagepack": 41, "[mrb": [50, 53], "[mruby": [49, 50, 51, 53], "[munin": [39, 47, 48, 49], "[n": [41, 44, 48, 49, 132, 134, 135, 156], "[name": [132, 134, 135, 156], "[name1": [132, 134, 135, 156], "[name2": [132, 134, 135, 156], "[none": 156, "[normalizer": [42, 49], "[normalizernfkc": [42, 45], "[normalizers": 54, "[ns": [42, 44], "[nsubrecs": 135, "[numeric": 44, "[object": 111, "[offsetted": 41, "[optimizer": [53, 54], "[oracle": 44, "[os": 49, "[output": 40, "[p": 42, "[packaging": 44, "[pat": 47, "[php": [47, 49], "[pkg": [39, 47], "[plugin": [49, 50, 53], "[power": [43, 156], "[power8": 49, "[price": [41, 42], "[quantity": 41, "[query": 53, "[rank": [42, 286], "[record": 135, "[reported": 44, "[rpm": [39, 40, 44, 47, 48, 49, 50, 51, 52], "[score": 41, "[sharding": [50, 52], "[similarity": 197, "[snippet": [49, 205, 206], "[solaris": 47, "[sort": 51, "[space": 224, "[suggest": [40, 47, 48], "[table": [48, 111], "[tag": [41, 135, 156], "[tags": [41, 42, 43, 156], "[terms": 124, "[test": 47, "[the": 125, "[token": 48, "[tokendelimit": 53, "[tokenfilters": 54, "[tokenfilterstem": 53, "[tokenfilterstopword": 53, "[tokenizer": [47, 48, 51], "[tokenizers": 41, "[tokenmecab": [41, 53], "[tokenngram": 53, "[tools": 54, "[travis": 48, "[ubuntu": 51, "[users": 124, "[vector": [41, 53, 54, 132, 134, 135, 156], "[wal": 45, "[warning": 244, "[windows": [39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53], "[xxxxx": 302, "[yum": 47, "[{": [42, 43, 125, 177, 292], "[\u3002": 272, "[\u8a9e": 108, "[\uff09": 272, "\\\"": [41, 42, 43, 44, 45, 68, 111, 125, 191, 192, 193, 194, 206, 210, 224, 244, 275, 299], "\\\"_": [42, 125], "\\\"a": 210, "\\\"}": 125, "\\'": 175, "\\(": 224, "\\*": 44, "\\?": 54, "\\[(": 244, "\\\\": [41, 42, 44, 50, 68, 191, 192, 201, 205, 210, 224, 244, 272], "\\\\\"": [41, 201, 224], "\\\\(": 41, "\\\\\\": [42, 50, 205, 244, 272], "\\\\r": 272, "\\\\z": 244, "\\_": 166, "\\a": [50, 51, 244, 277], "\\aaa": 166, "\\ahello": 50, "\\ahost": 244, "\\arrow": 27, "\\arrowconfig": 27, "\\bin": 166, "\\cmake": 27, "\\command": 166, "\\crt": 166, "\\ctx": 166, "\\exe": 166, "\\expr": 166, "\\groonga": 166, "\\lib": [27, 166], "\\libgroonga": 166, "\\n": [74, 244], "\\nmroonga": 43, "\\nmysql": 43, "\\proc": 166, "\\s": 272, "\\src": 166, "\\startup": 166, "\\system": 166, "\\t": 43, "\\thread": 166, "\\u": 273, "\\ud": 52, "\\udf": 52, "\\vcstartup": 166, "\\vctools": 166, "\\z": [244, 277], "]\n#": 44, "] [": 176, "] \u6708": 50, "]\"": [42, 43, 47, 48, 52, 54, 125, 205, 244, 311], "]%": 244, "]'": [42, 53, 177, 292], "](": [12, 52], "])": [42, 43, 44, 51, 189, 191, 192, 204, 208, 209, 272], "]+": 272, "],": [41, 42, 43, 44, 45, 58, 91, 94, 95, 96, 108, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 168, 169, 170, 175, 176, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 245, 246, 247, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 286, 298, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "]-": 42, "].": [41, 42, 43, 44, 49, 50, 51, 52, 53, 54, 132, 134, 135, 156, 197, 286], "]/": 312, "]:": [51, 53, 244, 302], "][": [39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 111, 115, 137, 143, 156, 163, 224, 244], "]]": [42, 43, 50, 74, 119, 121, 175, 176, 180, 275], "]]]": [42, 45, 119, 225, 301], "]ello": 50, "]es": 42, "]s": 42, "]x": 311, "]}": [42, 50, 108, 111, 201, 210, 305], "]\u3002": 49, "^ \"": [53, 110, 111, 201, 225], "^\"": 202, "^commit": 12, "_\"": 39, "_$": [111, 159, 161], "_')": 89, "_*": [22, 41, 42, 43, 44, 52, 57, 59, 111, 133], "_-": 275, "__": [166, 275], "_a": [41, 100, 298], "_abs": [22, 52, 57, 182], "_accept": 302, "_accepted": 153, "_accessor": 50, "_account": [17, 18], "_acquire": [22, 41, 42, 44, 50, 57, 92, 128, 150], "_add": [41, 43, 51, 54, 68, 111], "_addr": 177, "_address": [100, 298, 312], "_adjust": [11, 51, 156], "_adjuster": 53, "_age": [111, 149, 150, 183, 186], "_agent": 177, "_airport": 44, "_algorithm": 260, "_all": [50, 51, 52], "_alloc": [68, 85], "_allowed": [100, 298], "_alone": 166, "_alphabet": [41, 44, 45, 53, 203, 225], "_already": [100, 298], "_and": [11, 41, 42, 43, 52, 53], "_andp": 41, "_animal": 305, "_animals": 44, "_apache": 23, "_append": [11, 52, 68, 71], "_apply": 52, "_arg": 100, "_args": 41, "_argument": [45, 100, 298], "_arguments": 50, "_arrow": [12, 23, 41, 94, 156, 158, 177, 298, 308, 312], "_asterisk": 52, "_at": [37, 40, 42, 43, 44, 47, 50, 51, 53, 68, 132, 134, 135, 212, 245, 247, 301], "_auto": [47, 48], "_available": [100, 298], "_avg": 156, "_avoided": [100, 298], "_b": 41, "_back": 43, "_bad": 100, "_base": [50, 52, 54, 85], "_basic": [177, 292], "_batch": 49, "_be": 155, "_between": [42, 49, 52, 183], "_bfloat": [44, 155], "_binary": 47, "_blank": [42, 44, 45, 51, 52, 53, 54, 138], "_bloat": 141, "_block": [100, 298], "_blog": 310, "_bm": 41, "_body": [152, 301, 310, 314], "_bool": [37, 41, 51], "_broken": 100, "_bu": 53, "_buffer": [71, 100, 180, 298], "_build": 14, "_builtin": 39, "_bulk": [51, 52, 53, 68], "_bundled": 45, "_busy": [100, 298], "_but": 11, "_by": [38, 39, 40, 41, 49, 50, 52, 68, 85, 195, 311], "_byte": [44, 100, 111, 141, 155, 298], "_bytes": [142, 177], "_cache": [22, 48, 50, 52, 57, 59], "_calc": 49, "_call": [11, 100, 153, 166, 298], "_caller": 52, "_calloc": 51, "_cancel": [22, 42, 43, 44, 45, 49, 51, 52, 57, 92, 98, 99, 100], "_canceler": 51, "_cas": 100, "_case": [44, 50, 53], "_cast": [50, 111], "_character": [43, 44, 68], "_characters": 68, "_charlen": 85, "_check": [14, 49], "_checks": [43, 44, 138], "_child": [100, 298], "_chunk": [41, 50, 51], "_chunked": 50, "_chunks": 51, "_circle": [22, 39, 41, 48, 51, 57, 182, 307, 311, 315], "_city": 44, "_class": [44, 53, 156, 231, 232, 233, 234, 235], "_classify": [22, 41, 42, 51, 53, 57, 134, 156, 182], "_clear": [22, 39, 49, 50, 52, 53, 57, 92, 109, 126, 128], "_client": 225, "_clone": 12, "_close": [11, 39, 42, 49, 50, 61, 68, 71, 85, 205], "_code": [42, 43, 44, 53, 74, 85, 95, 96, 125], "_column": [22, 37, 41, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 57, 58, 59, 92, 110, 124, 134, 155, 156, 163, 176, 186, 202, 224, 237, 299], "_columns": [22, 37, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 91, 110, 111, 119, 132, 159, 182, 184, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 228, 245, 246, 247, 260, 261, 275, 276, 278, 286, 301, 304, 305, 306, 307, 308, 311, 314, 315], "_com": 302, "_command": [22, 41, 44, 45, 49, 50, 57, 59, 85, 94, 95, 97, 100, 158, 166, 177, 241, 292, 298, 308, 312], "_comment": 210, "_commit": 71, "_common": 166, "_compile": 68, "_compress": 51, "_concurrency": 174, "_cond": 81, "_condition": 53, "_conditions": 53, "_conf": 50, "_config": [50, 115], "_configs": 122, "_configuration": 12, "_configure": [48, 52], "_connected": [100, 298], "_connection": [41, 100], "_const": [11, 52, 68], "_content": [22, 41, 42, 43, 44, 45, 57, 59, 68, 95, 132, 134, 135, 142, 155, 156, 202, 203, 205, 206, 210, 224, 225, 260, 261, 281, 310], "_contents": [43, 44], "_control": [50, 100, 298], "_controllen": 50, "_contry": 44, "_copy": [22, 41, 43, 44, 50, 51, 52, 57, 58, 92], "_corrupt": [52, 100, 298], "_cosine": [45, 197], "_count": [22, 41, 43, 44, 50, 52, 53, 54, 57, 92, 94, 97, 134, 135, 150, 158, 175, 177, 241, 248, 283, 298, 303, 308, 312], "_creat": 52, "_create": [11, 22, 38, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 68, 85, 90, 91, 92, 110, 112, 114, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 141, 142, 143, 149, 150, 152, 155, 156, 163, 164, 165, 170, 175, 176, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 236, 237, 240, 244, 245, 246, 247, 248, 254, 255, 260, 261, 275, 276, 278, 281, 286, 301, 305, 306, 307, 308, 310, 311, 313, 314, 315], "_ctx": [22, 39, 41, 47, 49, 50, 51, 53, 57, 59, 61, 64, 68, 71, 74, 85, 100, 133, 166], "_cumulative": [132, 134, 135, 156], "_current": 61, "_cursor": [22, 37, 41, 42, 43, 48, 50, 51, 52, 57, 59], "_dat": [34, 39, 40, 41, 48, 49, 51, 52, 110, 141, 155, 161, 224, 225], "_data": [22, 41, 50, 52, 57, 59, 85, 100, 298], "_database": [47, 48, 118, 292], "_dataset": [38, 179, 181, 253], "_date": 12, "_day": [22, 41, 42, 51, 53, 57, 182], "_db": [22, 37, 38, 39, 40, 41, 49, 50, 51, 57, 59, 68, 124], "_db\u30d5\u30e9\u30b0": 39, "_deadlock": [100, 298], "_debug": 14, "_default": [47, 50, 52, 74, 156, 292], "_del": 50, "_delete": [22, 39, 50, 57, 92, 116, 117, 171], "_delimited": 55, "_delimiter": [138, 168], "_delta": [44, 111, 141], "_denied": [100, 298], "_dependent": 51, "_descriptor": [100, 298], "_device": [100, 298], "_df": 52, "_di": 44, "_diff": [22, 42, 54, 57, 92], "_digit": [41, 44, 53], "_dir": [12, 39, 50, 53, 85], "_directory": [100, 298], "_disable": [51, 52], "_disk": 52, "_dist": 47, "_distance": [22, 36, 39, 41, 44, 47, 48, 51, 54, 57, 182, 225, 307, 315], "_domain": 100, "_dot": [52, 53], "_double": 41, "_down": [100, 298], "_drilldown": 156, "_du": 44, "_dump": [22, 42, 50, 57, 92], "_dynamic": 44, "_ecmascript": [58, 156], "_element": [44, 50], "_elements": [51, 142], "_embedding": 197, "_empty": [100, 298], "_enabl": 52, "_enable": [41, 42, 43, 44, 50, 51, 52, 53, 54, 149, 150], "_enabled": 50, "_enc": 74, "_encoding": [22, 53, 57, 59, 74, 85], "_end": 100, "_enough": [42, 51, 53, 54, 100, 298], "_entries": [61, 107, 156], "_equal": 202, "_error": [43, 44, 50, 52, 58, 85, 100, 111, 156, 298], "_errors": 52, "_escalation": [22, 31, 37, 42, 44, 45, 53, 57, 59, 171, 186], "_escape": [68, 205], "_estimate": [39, 50], "_estimated": [41, 52], "_euc": 74, "_eval": [22, 27, 42, 48, 52, 57, 92], "_event": 302, "_exec": [50, 52, 68, 100, 166], "_exist": [22, 50, 57, 92, 137, 143], "_exists": [100, 298], "_expand": [22, 42, 43, 44, 51, 52, 57, 92], "_expander": [48, 51, 243, 314], "_expanders": [144, 145, 151, 243], "_expansion": [39, 41, 43, 44, 48], "_expansions": 44, "_expantion": 156, "_expire": [52, 53], "_expr": [3, 22, 41, 42, 43, 47, 49, 50, 51, 52, 53, 57, 59, 85, 119, 121, 156, 166, 185, 188, 189, 190, 199, 204, 244], "_expression": [156, 244], "_extract": [50, 55], "_failure": 84, "_false": 52, "_family": [41, 51, 53], "_feature": 41, "_file": [44, 50, 95, 100, 177, 243, 292, 298], "_fileinfo": 52, "_filename": 100, "_files": [18, 100, 298], "_filter": [22, 41, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 57, 92, 100, 111, 133, 142, 158, 182, 195, 201, 248], "_filtered": [42, 51, 53, 54], "_filters": [42, 43, 44, 45, 49, 50, 51, 52, 122, 141, 165, 255, 257, 258, 259, 260, 261], "_fin": [41, 47, 50, 68, 84, 85, 228], "_find": [22, 52, 53, 57, 182], "_fitlers": 155, "_flags": [42, 44, 47, 50, 51, 52, 54, 68, 74, 85, 202, 224], "_float": [41, 42, 43, 44, 50, 111, 142, 155], "_flow": [100, 298], "_flush": [22, 41, 50, 51, 52, 53, 54, 57, 92], "_food": 44, "_for": [11, 50, 125, 156, 177], "_force": 44, "_form": [53, 54], "_format": [41, 42, 43, 53, 54, 96, 100, 177, 298], "_forwarded": 177, "_free": 85, "_friends": 307, "_from": 41, "_full": [22, 41, 49, 51, 52, 54, 57, 182, 193], "_func": [49, 52, 81, 85, 167], "_function": [44, 50, 85, 100, 153, 245, 298], "_fuzzy": 51, "_geo": [22, 39, 50, 57, 59, 74, 142], "_get": [22, 39, 40, 41, 47, 49, 50, 51, 52, 53, 54, 57, 61, 68, 74, 81, 85, 92, 115, 117, 167, 171], "_github": [17, 18], "_global": 50, "_gqpt": 176, "_gqtp": 176, "_groonga": 95, "_group": 50, "_gu": 44, "_hash": [34, 41, 42, 43, 44, 50, 51, 52, 58, 91, 110, 111, 121, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 141, 142, 143, 149, 150, 152, 155, 156, 161, 163, 180, 183, 184, 186, 188, 194, 195, 196, 198, 201, 202, 203, 208, 209, 212, 219, 221, 225, 226, 229, 230, 236, 245, 281, 305, 306, 307, 308, 310, 311], "_have": [41, 43, 44], "_hex": 74, "_highlighter": [44, 53], "_hit": [41, 94, 97, 158, 177, 241, 298, 308, 312], "_hits": [42, 43, 44, 96, 132, 156], "_hook": [22, 57, 59], "_host": 176, "_hour": [22, 51, 57, 134, 182], "_html": [22, 39, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 111, 134, 156, 175, 182, 191, 205, 275], "_http": [176, 177], "_hugetlb": 39, "_hyphen": [42, 44, 53, 257], "_i": [100, 298], "_id": [12, 39, 40, 41, 43, 44, 45, 49, 50, 51, 53, 54, 68, 71, 85, 89, 98, 111, 135, 142, 153, 156, 175, 225, 308, 315], "_id1": 125, "_id2": 125, "_idf": [42, 245], "_ids": 51, "_ignore": [43, 44, 111], "_ii": [22, 41, 42, 43, 50, 51, 52, 53, 54, 57, 59, 74, 111], "_illegal": 100, "_implemented": [100, 298], "_improper": 100, "_in": [22, 36, 37, 39, 41, 42, 48, 49, 51, 57, 74, 95, 100, 155, 182, 196, 298, 307, 311, 315], "_inappropriate": 100, "_incoming": 12, "_incompatible": 100, "_indented": 74, "_index": [22, 37, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59, 91, 111, 112, 122, 123, 124, 132, 135, 137, 142, 149, 150, 152, 155, 156, 163, 180, 183, 186, 191, 192, 193, 196, 201, 202, 203, 205, 206, 210, 224, 225, 226, 237, 244, 245, 246, 247, 260, 261, 275, 276, 278, 281, 301, 307, 308, 310, 311, 314], "_indexer": 40, "_indexes": 50, "_info": [22, 42, 47, 51, 52, 57, 59], "_information": 158, "_init": [39, 47, 49, 50, 68, 74, 81, 84, 85, 228], "_initialized": [100, 298], "_inner": [45, 197], "_input": [44, 50, 95, 100, 225], "_inspect": [22, 51, 52, 54, 57, 59, 92], "_install": [21, 23], "_int": [50, 51, 68, 142], "_interrupted": [100, 153], "_interval": [44, 225], "_intervals": 44, "_invalid": 100, "_io": [49, 50, 52], "_ip": [298, 312], "_is": [39, 41, 43, 44, 50, 51, 52, 53, 95, 100, 153, 298], "_iso": [41, 42, 43, 53], "_isspace": 85, "_item": 41, "_items": 201, "_ito": 39, "_itoh": 39, "_ja": 48, "_japanese": 156, "_jis": [31, 277], "_jobs": [41, 94, 158, 177, 298, 308, 312], "_join": [43, 44], "_jp": [31, 74], "_json": 64, "_kana": [42, 43, 44, 53, 54, 180, 257], "_katakana": [44, 53, 54], "_key": [12, 34, 36, 37, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 58, 74, 89, 91, 110, 111, 112, 114, 121, 122, 123, 124, 125, 126, 127, 128, 136, 140, 142, 143, 149, 150, 152, 155, 156, 159, 161, 163, 164, 165, 170, 175, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 236, 237, 240, 244, 245, 246, 247, 250, 255, 260, 261, 275, 276, 278, 281, 286, 301, 305, 306, 307, 308, 310, 311, 313, 314], "_keys": [41, 42, 43, 45, 51, 52, 53, 54, 196, 197, 198, 202, 245, 246, 247, 286, 306, 307, 308, 315], "_keywords": [53, 68], "_koi": 74, "_l": 45, "_label": 50, "_labeled": 156, "_large": [34, 51, 54, 100, 111, 141, 161, 254, 298], "_last": [44, 225], "_latin": [45, 74], "_leading": [41, 156, 202, 205], "_leak": 14, "_left": [39, 100, 190, 298], "_len": [47, 68, 74], "_length": [22, 41, 44, 51, 57, 85, 132, 134, 135, 182, 195, 298], "_level": [22, 43, 45, 48, 50, 52, 57, 85, 92, 111, 130, 131, 173, 175, 228], "_lexicon": 50, "_like": 41, "_likes": [41, 43, 44, 95, 132, 134, 135, 156, 224, 225, 281], "_limit": [22, 36, 42, 43, 48, 50, 52, 53, 57, 81, 92, 100, 105, 118, 119, 133, 143, 163, 298, 306], "_limited": 74, "_line": [42, 44, 155], "_link": [100, 298], "_links": [100, 298], "_list": [22, 36, 37, 39, 41, 43, 44, 47, 49, 50, 51, 53, 57, 92, 100, 114, 137, 164, 175, 248, 298, 308], "_literal": 49, "_load": [42, 48], "_loaded": [51, 125], "_local": [176, 177], "_location": [44, 45, 53, 54, 95, 311], "_lock": [39, 54, 81, 85], "_locks": [100, 298], "_log": [43, 44, 45, 47, 48, 49, 50, 53, 74, 85, 96], "_logger": [47, 50, 52, 53, 74], "_logical": 50, "_long": [100, 298], "_loose": [22, 53, 57, 182], "_lz4": [51, 111], "_lzo": 100, "_m": [197, 227], "_main": 166, "_major": [41, 94, 158, 177, 298, 308, 312], "_malloc": 85, "_many": [41, 42, 49, 100, 183, 196, 298], "_map": [43, 44, 52, 53, 94, 158, 177, 298, 303, 308, 312], "_mark": [41, 42, 44, 53], "_match": [22, 41, 42, 45, 49, 51, 57, 59, 183, 196], "_max": [41, 43, 44, 51, 61, 100, 167, 204, 298], "_mean": 41, "_mecab": 50, "_medium": [111, 141], "_memo": [202, 203], "_memory": [47, 54, 100, 228, 298], "_memos": 260, "_message": [44, 50, 95, 244, 310], "_messages": [17, 18], "_micro": 41, "_middle": 53, "_min": [42, 43, 50, 51, 52, 156], "_minor": [41, 94, 158, 177, 298, 308, 312], "_minute": [22, 51, 57, 182], "_mode": [44, 49, 52, 53, 195, 219], "_model": [22, 57, 182, 227], "_models": [197, 227], "_modified": 311, "_module": 177, "_month": [22, 51, 57, 182], "_most": [50, 53, 245, 247], "_mruby": 23, "_msgpack": 64, "_mutex": [81, 85], "_n": [41, 42, 43, 44, 48, 51, 54, 61, 134, 136, 142, 155, 158, 177, 276, 298, 308, 312], "_nabe": 49, "_name": [12, 38, 41, 42, 44, 49, 50, 58, 74, 95, 111, 115, 116, 117, 125, 134, 135, 136, 142, 155, 156, 161, 202, 203, 210, 248, 298, 312], "_namen": 195, "_names": 50, "_network": 100, "_new": [9, 22, 39, 42, 47, 52, 57, 132, 134, 135, 156, 182], "_next": [37, 48, 50, 52, 54], "_nfthreads": 81, "_ngram": [51, 52], "_nil": [37, 43, 44, 45, 68, 111], "_no": [34, 37, 41, 42, 43, 44, 45, 49, 50, 52, 58, 100, 110, 111, 121, 122, 126, 127, 128, 132, 134, 135, 137, 140, 141, 143, 152, 155, 156, 161, 163, 180, 191, 192, 193, 197, 202, 203, 205, 206, 211, 224, 225, 226, 237, 244, 246, 247, 260, 261, 275, 276, 278, 286, 301, 310], "_nodelay": 51, "_nofile": [48, 228], "_none": [64, 74], "_normalizations": [43, 237], "_normalize": [45, 47, 50, 55, 161, 229, 230], "_normalizer": [50, 100], "_normalizers": [45, 50], "_not": [41, 42, 100, 114, 121, 127, 129, 152, 153, 156, 170, 202, 298], "_nromalize": 229, "_nsec": 41, "_nsubrecs": [41, 44, 49, 89, 156, 306], "_null": 50, "_number": [22, 42, 51, 52, 53, 57, 95, 125, 135, 283, 286, 295, 298, 312], "_numbers": [42, 50], "_o": [44, 100, 298], "_obj": [11, 22, 39, 40, 41, 42, 47, 48, 49, 50, 51, 52, 53, 57, 59, 68, 71, 74, 85], "_object": [52, 100, 143], "_of": [22, 42, 53, 57, 100, 124, 125, 155, 182, 274, 298], "_office": 198, "_offline": 40, "_offset": [42, 43, 44, 45, 49, 50, 53, 68, 85, 100, 119, 298, 306], "_old": 58, "_on": [100, 298], "_one": 155, "_onigmo": 45, "_only": [51, 100, 298], "_op": [11, 41, 50, 51, 52, 68], "_open": [37, 39, 42, 47, 50, 52, 61, 71, 85, 100, 205, 298], "_opened": [50, 52], "_operation": [100, 298], "_operations": 41, "_operator": [41, 42, 52, 54, 68], "_optarg": 50, "_optimize": [42, 43, 53], "_option": [41, 53], "_options": [41, 42, 48, 52, 225], "_or": [11, 22, 27, 31, 42, 43, 45, 57, 100, 114, 121, 127, 129, 152, 153, 170, 182, 189, 202, 298, 312], "_order": [41, 52], "_org": 12, "_original": 42, "_otoj": 14, "_output": [45, 49, 50, 100, 119, 298, 306], "_over": [100, 298], "_overlap": [51, 52], "_own": 50, "_p": 74, "_pack": [41, 94, 158, 177, 298, 308, 312], "_package": [44, 50], "_parallel": [22, 27, 31, 41, 42, 43, 45, 57, 182, 202], "_parameters": [22, 50, 57, 92, 248], "_parse": [41, 50, 68], "_parsev": 41, "_part": 274, "_pass": 177, "_pat": [34, 37, 41, 42, 43, 44, 48, 50, 51, 74, 91, 110, 111, 112, 114, 122, 123, 124, 132, 134, 135, 137, 141, 142, 149, 150, 152, 155, 156, 161, 163, 164, 165, 170, 175, 180, 191, 192, 193, 195, 196, 201, 202, 203, 205, 206, 210, 224, 225, 237, 240, 244, 245, 246, 247, 255, 260, 261, 275, 276, 278, 281, 301, 307, 308, 310, 311, 313, 314], "_patch": [41, 94, 158, 177, 298, 308, 312], "_path": [12, 23, 40, 47, 48, 49, 50, 52, 53, 94, 106, 112, 114, 142, 143, 164, 173, 175, 176, 178, 241, 290, 295, 298, 308, 312], "_paths": 41, "_pattern": [50, 195, 205], "_per": [39, 41, 132, 134, 135, 156], "_permission": 100, "_permitted": [100, 298], "_persistent": 52, "_pgp": 12, "_phrase": [44, 225], "_physical": 54, "_pipe": [100, 298], "_plant": 44, "_plugin": [38, 39, 41, 49, 50, 51, 52, 53, 85, 100], "_plugins": [39, 42, 50, 53], "_point": [74, 142, 189, 307], "_pop": 50, "_popular": [132, 134, 135, 156], "_port": 176, "_pos": 52, "_position": [41, 42, 43, 44, 45, 51, 53, 111, 112, 123, 132, 134, 135, 142, 152, 155, 156, 180, 191, 192, 193, 202, 203, 205, 206, 210, 224, 225, 226, 244, 245, 246, 247, 260, 261, 275, 281, 301, 308, 310, 311, 314], "_posting": [41, 51, 54], "_pragma": [44, 156], "_pre": 43, "_precision": [44, 111, 141], "_prefix": [23, 37, 42, 44, 45, 50, 53, 168, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280], "_preparer": [159, 250, 251, 253], "_pretty": [41, 43, 44, 45, 97, 178], "_previous": 61, "_printf": 49, "_printfv": 41, "_probability": [39, 159], "_proc": [22, 41, 49, 50, 51, 52, 53, 57, 59, 85, 166], "_process": [100, 298], "_processes": [100, 292, 298], "_product": [45, 197], "_prolonged": [42, 44, 53], "_proxy": 177, "_ptr": [50, 68, 85], "_purchases": 42, "_push": 11, "_put": [22, 48, 50, 53, 57, 92, 129, 131, 175], "_pvector": [50, 68], "_qe": 166, "_ql": 49, "_qlog": 47, "_quantity": 42, "_queries": [41, 94, 97, 158, 177, 241, 298, 308, 312], "_query": [11, 47, 48, 49, 50, 51, 52, 53, 68, 74, 159, 179, 180, 181, 243, 250, 251, 253], "_ra": 111, "_range": [22, 41, 43, 44, 50, 52, 53, 54, 57, 92, 100, 132, 133, 158, 248], "_rank": [22, 42, 57, 283], "_rate": [41, 94, 97, 158, 177, 241, 298, 308, 312], "_ratio": [41, 42, 44, 49, 51, 52, 53, 54, 183, 196], "_raw": [53, 163], "_rc": [61, 68, 71, 84, 85], "_read": 100, "_reader": 50, "_reading": [53, 231, 232, 233, 234, 235, 257, 258, 259], "_realloc": 85, "_record": [22, 41, 42, 43, 44, 52, 57, 125, 135, 283, 284, 286], "_records": [22, 41, 42, 43, 44, 47, 48, 50, 51, 52, 57, 125, 182], "_recover": [49, 50, 51], "_rectangle": [22, 36, 37, 39, 41, 48, 51, 54, 57, 182, 315], "_recursive": 50, "_recv": 49, "_reduce": [52, 53], "_reference": [41, 43, 44, 52, 54, 149, 150, 156], "_referer": 177, "_refused": [100, 298], "_regexp": [42, 43, 52, 205], "_register": [22, 38, 41, 42, 43, 45, 57, 85, 92, 103, 122, 124, 132, 133, 134, 135, 136, 137, 145, 151, 154, 155, 156, 165, 180, 195, 197, 198, 208, 209, 211, 212, 219, 221, 222, 243, 255, 260, 261], "_reindex": 50, "_release": [12, 22, 28, 41, 50, 57, 92, 126], "_removable": 163, "_remove": [22, 39, 41, 42, 47, 48, 49, 50, 51, 52, 57, 92, 105, 110, 124, 149, 175, 248, 275], "_rename": [22, 40, 48, 49, 51, 57, 58, 92, 110, 124], "_reopen": [22, 47, 51, 54, 57, 92, 129, 130], "_repair": 40, "_repository": 12, "_request": [51, 153], "_res": 176, "_reset": [41, 100], "_resource": [52, 100], "_resources": 52, "_rest": 41, "_result": [41, 100, 123, 156], "_retry": 100, "_rewriter": 51, "_rewriters": 53, "_right": [39, 190], "_rk": [22, 50, 57, 182, 240], "_roles": 111, "_romaji": [53, 257], "_root": 50, "_rotate": 50, "_round": 45, "_rset": 41, "_ruby": 50, "_run": 166, "_s": 49, "_same": 48, "_scalar": [41, 42, 43, 44, 45, 51, 52, 58, 110, 111, 112, 114, 121, 122, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 142, 143, 149, 150, 152, 155, 156, 163, 164, 165, 170, 180, 183, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 210, 211, 212, 224, 225, 226, 237, 244, 245, 246, 247, 260, 261, 275, 276, 278, 281, 286, 301, 306, 307, 310, 311, 314], "_scan": 52, "_schema": [42, 50], "_score": [39, 41, 42, 45, 47, 48, 50, 53, 54, 89, 110, 156, 159, 180, 225, 245, 246, 247, 310, 311, 315], "_scorer": [50, 100], "_script": 154, "_sd": 41, "_search": [22, 39, 41, 42, 44, 45, 47, 50, 51, 53, 54, 57, 59, 135, 159, 168, 182, 231, 232, 233, 234, 235, 240, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280], "_sec": 41, "_second": [22, 51, 57, 182], "_section": [41, 42, 43, 44, 49, 50, 51, 53, 111, 112, 155, 310, 311], "_seek": [100, 298], "_seg": 53, "_segment": 54, "_segments": [51, 54], "_seh": 166, "_sel": [55, 111], "_select": [3, 22, 39, 41, 50, 51, 52, 53, 54, 57, 68, 92, 132, 134, 137, 156, 158, 191, 192, 193, 248, 283], "_selector": [22, 41, 49, 50, 57, 92, 175], "_send": [51, 61, 64, 166], "_sent": 177, "_sequence": [100, 298], "_sequential": 51, "_serial": 110, "_set": [22, 40, 41, 42, 43, 44, 47, 49, 50, 51, 52, 54, 57, 58, 61, 74, 81, 92, 115, 116, 124, 167, 171], "_setoperation": [51, 52], "_setpshared": 48, "_shard": [22, 50, 57, 92, 137, 248], "_shark": 44, "_show": 53, "_shuffle": [44, 111, 141], "_shutdowned": [100, 298], "_signal": 81, "_sis": [161, 224, 225, 299, 313], "_size": [11, 22, 41, 43, 44, 50, 51, 52, 53, 57, 68, 71, 74, 85, 94, 124, 132, 142, 158, 165, 177, 182, 298, 308, 312], "_sjis": 74, "_sjlj": 49, "_skip": [48, 51, 52], "_slice": [22, 41, 42, 43, 51, 52, 57, 182], "_slow": 43, "_small": [44, 100, 111, 141, 298], "_snip": [47, 49], "_sock": 302, "_socket": [100, 298], "_socre": 41, "_sort": [45, 50, 51, 306], "_sortby": [50, 51, 119], "_sound": [42, 44, 53], "_sounds": [44, 53], "_source": [41, 42, 43, 44, 45, 52, 53], "_space": [100, 141, 298], "_spaces": 205, "_sparse": 50, "_speech": 274, "_split": 51, "_squared": 45, "_stable": 52, "_stack": 100, "_stamp": 53, "_started": 95, "_station": 198, "_statistics": 54, "_stop": [42, 45, 49, 50, 53, 165, 261, 302], "_str": [68, 311], "_strerror": 49, "_string": [14, 42, 48, 50, 51, 53, 68, 132, 134, 135, 156], "_stringn": [42, 203], "_strings": 42, "_sub": 43, "_substring": [22, 42, 51, 57, 182], "_success": [61, 68, 84, 85, 100, 228], "_such": [100, 298], "_suffix": [39, 50], "_suggest": 38, "_sum": [22, 41, 52, 53, 57, 132, 134, 135, 156, 283], "_supported": [100, 298], "_symbol": [42, 43, 44, 53], "_symbolic": [100, 298], "_synonyms": 243, "_syntax": [44, 51, 52, 58, 68, 100, 156], "_system": [39, 52, 100, 298], "_t": [41, 81, 100], "_table": [3, 22, 37, 39, 40, 41, 45, 50, 51, 52, 53, 54, 57, 59, 68, 92, 124, 155, 163, 176, 248], "_tables": [48, 50], "_tag": [41, 42, 43, 44, 110, 132, 134, 135, 156, 192, 196, 205], "_tags": [41, 43, 45, 307, 311], "_take": 51, "_target": [43, 44, 49, 50, 237], "_tax": 42, "_temporarily": [52, 100, 298], "_term": [42, 50, 55], "_terms": 41, "_text": [14, 41, 42, 43, 49, 50, 51, 54, 68, 74, 111, 135, 138, 156], "_tf": [41, 42, 50, 53, 245], "_thread": [22, 50, 57, 59, 166, 167, 176], "_threads": 167, "_threshold": [31, 37, 39, 41, 42, 43, 44, 45, 50, 52, 53, 159, 171, 180, 186, 250, 251, 253], "_time": [41, 42, 43, 44, 50, 53, 54, 94, 95, 96, 97, 158, 177, 298, 308, 312], "_timeout": [51, 54, 99, 100, 298], "_timestamp": [41, 42, 152], "_timeval": 41, "_tiny": [50, 51], "_title": [43, 44, 122, 152, 176, 308, 310], "_to": [41, 50, 51, 52, 53, 54, 133, 257, 310, 311], "_token": [41, 44, 49, 50, 51, 52, 100, 225], "_tokenize": [22, 44, 50, 51, 53, 57, 92, 262], "_tokenized": [138, 168], "_tokenizer": [41, 42, 43, 44, 45, 47, 50, 51, 52, 74, 100, 111, 123, 132, 134, 135, 142, 152, 155, 156, 162, 163, 164, 165, 175, 176, 180, 191, 192, 193, 202, 203, 205, 206, 210, 224, 225, 226, 244, 245, 246, 247, 255, 260, 261, 275, 276, 278, 281, 301, 308, 310, 311, 314], "_tokenizers": 50, "_tokens": 41, "_toknize": 41, "_tolerance": 156, "_too": [41, 42, 49, 100, 183, 196, 298], "_touch": 37, "_tp": 174, "_trace": [43, 44, 94, 96, 158, 177, 298, 308, 312], "_trailing": 44, "_transposition": [41, 44, 51], "_true": 50, "_truncate": [39, 44, 49, 111, 141], "_ts": 50, "_tsv": [64, 243], "_type": [22, 41, 42, 43, 44, 45, 47, 49, 50, 51, 53, 57, 59, 74, 89, 96, 111, 122, 134, 155, 156, 175, 176, 178, 179, 180, 189, 241, 274, 305, 306, 307, 308, 310, 311, 313], "_types": [42, 43, 44, 49, 50, 52, 138, 231, 232, 233, 234, 235, 237, 292], "_typo": 156, "_ubref": 41, "_uint": [50, 142], "_unavailable": [52, 100, 298], "_union": [44, 96], "_unknown": 100, "_unlink": 41, "_unlock": [81, 85], "_unmap": [22, 50, 52, 57, 92, 105, 143, 149, 152], "_unref": 41, "_unregister": [22, 50, 54, 57, 92, 124, 144, 151], "_unsupported": 100, "_untag": [22, 48, 57, 111, 182], "_update": [18, 100, 156, 224], "_uploader": 12, "_usage": [52, 54, 141], "_use": [49, 50, 100, 133, 298], "_usec": 41, "_user": [22, 57, 59, 85, 177, 292], "_users": 311, "_utf": 74, "_uvector": 41, "_v": [44, 53], "_valid": 177, "_validate": 42, "_value": [37, 39, 40, 41, 48, 49, 50, 51, 52, 53, 54, 68, 74, 89, 111, 135, 154, 155, 156, 184, 208, 209, 281], "_values": [22, 39, 41, 42, 49, 50, 51, 52, 53, 54, 57, 74, 182], "_valule": 196, "_var": [49, 51, 68, 85, 142], "_vars": 85, "_vector": [41, 42, 43, 44, 45, 48, 49, 50, 53, 54, 68, 91, 110, 111, 112, 121, 132, 134, 135, 180, 197, 201, 210, 219, 221, 305, 307, 311, 314], "_vectorize": [22, 57, 182, 227], "_version": [12, 22, 39, 41, 42, 43, 44, 45, 49, 50, 51, 54, 57, 59, 94, 96, 97, 100, 158, 177, 178, 191, 192, 193, 194, 206, 241, 292, 298, 308, 312], "_voiced": 53, "_void": 51, "_vprintf": [41, 49], "_vsize": 68, "_w": 262, "_warm": 42, "_warn": [43, 111], "_week": [22, 42, 51, 53, 57, 182], "_weight": [41, 43, 49, 91, 111, 112, 155], "_wgs": 74, "_when": 95, "_whole": 310, "_win": [50, 85], "_window": [52, 100], "_windows": [50, 85], "_with": [23, 42, 44, 45, 51, 155, 161, 224, 225, 299, 313], "_wo": 44, "_word": [42, 45, 49, 50, 53, 122, 165, 255, 261], "_workers": [27, 31, 43, 44, 45, 158, 175, 177, 226, 298, 308, 312], "_would": [100, 298], "_x": 177, "_xml": 64, "_xxx": [41, 141, 156], "_year": [22, 51, 57, 182], "_yyyymmdd": [132, 134, 135, 137], "_zlib": [51, 100, 111], "_zone": 177, "_zstd": [51, 100, 111], "_zu": 44, "_{": 48, "``": [43, 191], "`filtered": 156, "`hostname": 175, "aa": 44, "aaa": [44, 54], "aaaxxxbbbcdefghi": 44, "aardvark": [52, 53], "ab": 44, "abc": [41, 44, 50, 184], "abcd": 44, "abcde": [44, 138], "abcdef": [41, 44], "abcxyzdef": [41, 44], "abebcdxyzdef": 41, "abi": 50, "about": [14, 21, 85, 175, 182, 283], "above": [45, 153], "ac": [230, 237], "accept": [37, 302], "accepts": [170, 175], "accessor": [50, 54], "accurate": [42, 205, 206], "acronym": 290, "actions": [12, 43], "active": 42, "actual": 177, "add": [12, 17, 18, 32, 43, 47, 49, 134, 155, 156, 168, 182, 277, 283], "added": [28, 55, 58, 74, 85, 96, 97, 98, 99, 110, 111, 112, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 146, 149, 150, 152, 153, 155, 156, 157, 158, 160, 161, 163, 166, 167, 170, 171, 173, 175, 184, 186, 187, 191, 192, 193, 195, 196, 197, 198, 203, 205, 207, 208, 209, 211, 212, 219, 220, 221, 222, 224, 225, 227, 231, 232, 233, 234, 235, 237, 244, 246, 247, 248, 257, 258, 259, 277, 282, 283, 285, 286, 287, 288], "addition": 42, "additional": [44, 48, 52, 225], "address": [39, 47, 175, 180, 298], "adjust": 156, "adjuster": [42, 49, 53, 91, 111, 135], "admin": [37, 49, 50, 51], "advanced": 55, "advantage": [42, 205, 206], "adventure": 111, "adventurer": 111, "aff": 43, "after": [41, 149], "again": 177, "against": 175, "age": [41, 45, 58, 111, 112, 124, 149, 150, 155, 156, 183, 186], "ages": [111, 149, 150, 161, 183, 186], "aggregate": [41, 42, 205, 206], "aggregator": [41, 44], "ahost": 244, "ai": 44, "aio": 48, "airport": 44, "airports": 44, "akio": [37, 47, 53], "al": [42, 45, 277], "al\"": 42, "alan": 42, "albert": 54, "alert": [49, 129, 130, 175, 177], "algorithm": 53, "ali": [42, 110], "alias": [58, 115, 116, 117], "aliased": 58, "aliases": [58, 115, 116, 117], "alice": [41, 42, 44, 45, 58, 110, 111, 114, 141, 156, 164, 170, 177, 183, 186, 195, 202, 203, 224, 292, 311], "alisa": [42, 44, 202, 203], "all": [27, 43, 44, 47, 50, 51, 53, 132, 134, 135, 156, 175, 224, 225, 314], "alloc": [41, 51, 94, 97, 158, 175, 177, 241, 298, 308, 312], "allocate": [22, 51, 300], "allocated": 85, "allocates": 85, "allow": [41, 42, 44, 47, 156, 202, 224], "allowed": 181, "allows": [42, 205, 206], "almalinux": [18, 22, 23, 26, 27, 31, 42, 43, 44, 296], "almost": 290, "alnum": 44, "alpha": [42, 43, 44, 231, 232, 233, 234, 235, 237], "alpine": [29, 45], "already": [85, 181], "also": [41, 42, 43, 44, 111, 132, 134, 135, 156, 205, 206, 224, 225, 245, 290], "always": [42, 133], "alx": 156, "am": [193, 206], "amazon": [22, 23, 27, 43, 44, 52, 54], "amp": [43, 44], "an": [85, 95, 177, 224, 272, 302], "analyze": 96, "and": [12, 42, 43, 44, 45, 48, 49, 50, 51, 52, 54, 55, 64, 68, 85, 111, 156, 165, 175, 177, 179, 181, 183, 195, 196, 197, 202, 203, 205, 206, 224, 225, 228, 245, 246, 247, 261, 281, 310, 315], "animals": 44, "animation": 307, "ann": 12, "anonymous": 124, "another": 50, "anthony": [42, 43], "any": [42, 50], "aomi": 52, "apache": [24, 25, 27, 28, 31, 41, 42, 43, 44, 45, 52, 54, 125, 156, 158, 177, 178, 298, 308, 312], "api": [1, 3, 11, 15, 22, 37, 38, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 60, 61, 71, 81, 84, 85, 100, 223, 292], "appears": [42, 205, 206], "apple": [41, 42, 211, 229, 272, 276, 278], "appli": 205, "application": [42, 44, 54, 125, 177, 178, 292], "applications": [42, 205, 206], "applied": 55, "approximate": 189, "appveyor": 49, "april": 12, "apt": [12, 21, 28, 32, 41, 47, 54], "aptitude": 14, "aquarius": 41, "ar": [168, 299, 301], "arai": 50, "aramaki": [37, 39], "arc": 168, "architecture": 50, "archive": [12, 22, 23], "are": [17, 27, 42, 43, 44, 48, 51, 68, 85, 156, 179, 181, 205, 206, 224, 228, 245, 246, 247, 290], "arg": [244, 298], "argc": 81, "args": 41, "argument": [52, 225, 245], "arguments": [85, 155, 175], "argv": 81, "aries": 41, "arm": [42, 43, 158], "armenian": [231, 232, 233, 234, 235, 258, 259], "armhf": 49, "arnaud": 39, "array": [52, 95, 108, 141, 155], "arrow": [27, 31, 41, 42, 43, 44, 52, 54, 125, 156, 158, 178], "art": 311, "arted": 225, "artful": [52, 53], "article": [42, 310], "articles": [42, 310], "as": [17, 42, 47, 85, 156, 168, 175, 177, 179, 181, 205, 206, 290], "ascending": 134, "ascii": [44, 53, 224, 225, 264, 275, 279, 280], "askdkc": 44, "aspx": 302, "assigned": 50, "assigns": 224, "associated": 85, "at": [55, 95, 175, 311], "ath": 44, "auth": [177, 292], "auto": [41, 42, 53, 133, 156, 159], "autoconf": [6, 39], "autogen": [6, 17, 47], "automake": [6, 37], "automatically": 12, "autotools": [5, 7, 31, 43, 44], "available": [27, 55, 85, 302], "avg": [49, 135, 156, 174], "aware": 85, "ax": 45, "ax1": 45, "axaixiuxuexeoxo": [231, 232, 233, 234, 235, 257, 258, 259], "axx": 45, "ba": 42, "back": [43, 44, 94, 158, 177, 225, 298, 308, 310, 312], "background": 175, "backlog": 52, "backup": 122, "backward": 170, "bad": [48, 49, 51, 298], "banana": [42, 211], "bar": [231, 232, 233, 234, 235, 258, 259], "base": [12, 50, 53, 85, 177, 274], "baseball": [307, 310], "based": [42, 43, 44, 191, 192, 193, 205, 206], "basethreadinitthunk": 166, "bash": 31, "basic": 42, "batch": 96, "bbb": 44, "bc": 44, "bcde": 44, "be": [27, 42, 68, 85, 95, 118, 151, 170, 175, 181, 228, 290, 302], "beaver": [44, 53], "because": [42, 51, 177, 241, 245, 290, 302], "become": 55, "before": 21, "begin": 174, "beginner": 42, "bellefleur": 52, "benchmark": 27, "bernard": 50, "beta": 55, "between": [22, 41, 42, 43, 45, 48, 49, 51, 52, 53, 54, 57, 181, 182], "bfloat": [44, 90, 94, 142, 155, 158, 177, 298, 308, 312], "bi": [299, 301], "bigram": [53, 176, 179, 180, 299, 301], "bigramlexicon": 152, "bill": [50, 299, 301], "billiard": [299, 301], "bin": [18, 33], "binary": [0, 241, 282], "bind": 39, "binding": [55, 191, 192, 193], "bindings": 42, "bionic": [44, 53], "bison": 12, "biswapriyo": 45, "bit": [21, 23, 24, 28, 32, 33, 41, 44, 45, 48, 50, 51, 54, 111, 141, 176, 282], "black": 229, "blank": 44, "block": 305, "blog": [210, 301, 308, 310], "blogroonga": 12, "blogs": 301, "blosc": [44, 94, 111, 158, 177, 298, 308, 312], "blosclz": 111, "bm": [41, 245, 247], "bo": 45, "bob": [41, 42, 44, 45, 58, 114, 156, 164, 170, 177, 183, 186, 202, 203, 292, 311], "body": [41, 42, 43, 44, 45, 52, 54, 96, 109, 113, 120, 127, 152, 177, 191, 192, 193, 275, 292, 301, 310, 314], "bom": 37, "book": [41, 225], "bookmark": [91, 122], "bookmarks": [91, 122, 125, 137], "books": 111, "bookworm": [22, 23, 44], "bool": [41, 42, 45, 48, 50, 51, 54, 90, 110, 132, 134, 135, 141, 142, 155, 156, 165, 189, 190, 224, 261, 305, 313], "boolean": [55, 155], "boost": [180, 250], "boston": 311, "bottom": [39, 190], "box": [41, 231, 232, 233, 234, 235, 258, 259], "brad": 51, "brazil": 306, "brew": [18, 30], "british": 314, "broken": [42, 143, 298], "brooklyn": 311, "browser": 17, "bsd": [31, 49, 50], "buffer": [74, 108, 141, 302], "buffered": 71, "bug": [43, 47, 55], "bugs": 45, "build": [12, 18, 21, 27, 48], "builder": 71, "building": 64, "bulk": [41, 50, 68], "bullet": [231, 232, 233, 234, 235, 258, 259], "bullseye": [42, 43, 45], "bundle": 18, "buster": [43, 44, 54], "but": [42, 95, 170, 175, 181], "buzz": 180, "by": [41, 42, 43, 44, 45, 47, 68, 84, 85, 95, 224, 290, 306], "bye": [41, 42, 156, 310], "byte": [42, 43, 47, 50, 111, 176, 205, 206, 298], "bytes": 85, "b\u30c6\u30fc\u30d6\u30eb": 51, "ca": 28, "cab": 42, "cabrera": 44, "cacao": 42, "cache": [22, 36, 41, 42, 43, 47, 50, 52, 57, 61, 92, 94, 97, 158, 177, 241, 298, 308, 312], "cafedomancer": 51, "cake": 198, "calc": [50, 52, 156], "callback": 180, "called": 85, "calling": [84, 85], "calloc": 51, "callum": 45, "calros": [183, 186], "camp": 311, "can": [17, 42, 64, 85, 95, 151, 155, 170, 175, 177, 205, 206, 224, 245, 290], "canadian": [231, 232, 233, 234, 235, 258, 259], "cancel": 153, "canceled": [99, 153], "cancer": 41, "candidate": 159, "candidate1": 159, "candidate2": 159, "cannot": [22, 300], "capital": [45, 53], "capricorn": 41, "carlier": [43, 44], "carlo": 44, "carlos": [114, 164, 170], "cas": 298, "case": [42, 85, 95, 151, 181], "cases": 290, "cast": [22, 52, 53, 57, 111, 182, 224], "cat": 42, "category": [41, 156], "cd": [12, 17, 18, 31, 44], "cdbs": 39, "cdt": 27, "ce": [43, 270, 271, 277], "ce1": 42, "ceekz": 48, "center": 189, "centos": [37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54], "centos6": 47, "central": 311, "cents": [264, 269, 270, 271], "ch": 168, "change": [47, 177, 292], "changed": [55, 177], "changes": 12, "char": [41, 49, 68, 74, 81, 85], "character": [85, 111], "characteristics": [42, 205, 206], "charlie": 311, "check": [14, 22, 36, 39, 41, 42, 50, 52, 57, 92, 106, 123], "checks": [42, 43, 44, 49, 138, 231, 232, 233, 234, 235, 237], "child": 42, "china": 306, "choose": 175, "chris": [42, 45], "christian": 50, "chunk": [53, 108, 141], "chunked": 53, "chunks": 303, "ci": [12, 20, 22, 47, 48, 49], "ciritical": 177, "cities": [44, 188], "city": [44, 188, 311], "ci\u4e00\u822c": 21, "ci\u4e0a": 21, "cjk": 53, "clang": [45, 47, 48, 49], "class": [41, 43, 44, 45, 53, 191, 192, 193, 194, 206, 274, 275], "class\u30bf\u30b0": [191, 193], "clean": 14, "clear": [49, 54], "clearlock": [22, 36, 47, 49, 57, 92, 175], "client": [175, 177, 180, 245, 290], "clone": [3, 6, 7, 8, 12, 13, 18], "close": [53, 205], "clumns": 281, "cmake": [3, 5, 6, 22, 23, 24, 25, 28, 30, 31, 32, 33, 43, 44, 47, 48, 50, 51], "co": 180, "code": [17, 27, 170, 228, 241], "codeblocks": 27, "codelite": 27, "codename": 28, "codes": 84, "coffee": 198, "collected": 95, "collection": 42, "color": 229, "column": [11, 22, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 90, 91, 92, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 143, 149, 150, 152, 156, 159, 161, 163, 164, 165, 170, 175, 176, 180, 186, 188, 193, 194, 195, 196, 197, 198, 202, 203, 205, 206, 210, 212, 219, 221, 224, 225, 226, 237, 244, 245, 248, 250, 251, 253, 260, 261, 275, 276, 278, 281, 286, 301, 305, 306, 307, 308, 310, 311, 313, 314, 315], "columnn": 47, "columnnormalizations": [43, 237], "columns": [37, 41, 42, 43, 44, 45, 47, 51, 52, 54, 74, 96, 155, 179, 197, 281, 286], "com": [9, 306], "combined": 177, "combining": [45, 231, 235], "come": 311, "comma": 50, "command": [21, 29, 41, 42, 43, 44, 45, 47, 50, 51, 54, 74, 85, 94, 95, 96, 97, 143, 149, 158, 166, 170, 173, 175, 177, 178, 179, 191, 192, 193, 194, 206, 241, 244, 290, 298, 308, 312], "commandinput": 50, "commands": 290, "comment": [42, 50, 210, 310, 311], "comments": [42, 210, 310], "commit": [12, 17, 18], "common": [39, 225], "community": [8, 27], "compare": 18, "compared": [42, 205, 206], "compatibility": [41, 44, 53, 54, 170, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259], "compatible": [42, 177], "complete": [40, 159, 180, 250, 252], "composition": [41, 44, 53, 54, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259], "compress": [44, 51, 111, 141, 155], "computed": 85, "con": 45, "cond": [48, 81], "condition": [43, 224, 225], "conditional": 159, "conditions": 195, "conf": 303, "config": [22, 27, 50, 57, 58, 92, 93, 124, 171], "configuration": [48, 177, 180, 296], "configure": [14, 17, 27, 37, 39, 40, 44, 47, 49, 54, 156, 225, 248], "confirm": 17, "conifugration": 21, "connection": 298, "connections": 175, "consists": 224, "const": [40, 41, 68, 74, 85], "constant": [50, 52], "contain": 47, "container": [42, 68], "content": [39, 41, 42, 43, 44, 45, 47, 48, 49, 54, 95, 96, 125, 132, 134, 135, 142, 155, 156, 163, 177, 178, 194, 197, 202, 203, 205, 206, 210, 224, 225, 226, 245, 260, 261, 281, 292, 310], "contents": [41, 43, 44, 45, 85], "context": [41, 50, 68, 74, 175, 205, 206], "continue": 49, "contrast": [42, 175], "contry": 44, "cook": [42, 43], "copa": 50, "copied": 85, "copy": 54, "copyfloat": 43, "copying": 54, "core": 176, "correct": [159, 180, 251], "correction": 251, "corrupt": 137, "cosmic": 53, "cosmo": [48, 49], "could": 302, "count": [134, 135, 156], "countries": 44, "country": [121, 306, 312], "cover": [42, 205, 206], "coverage": 14, "cp": 53, "cpu": [0, 31, 43, 45, 94, 156, 158, 176, 177, 197, 203, 292, 298, 308, 312], "cpu\u30b3\u30a2": [6, 45, 175, 180, 291], "crch": 168, "create": [12, 18, 85, 122, 175], "created": [42, 43, 85, 132, 134, 135, 212, 311], "createfilemapping": 50, "createrepo": 12, "creates": [68, 85, 179], "crit": [129, 130, 175], "critical": [85, 129, 175], "ctor": 43, "ctrl": [175, 298], "ctx": [9, 41, 45, 61, 68, 71, 74, 85], "curl": [21, 31, 47, 125, 153, 175, 177, 180, 241, 292], "current": [58, 74, 81], "currently": [64, 177], "cursor": 41, "custom": [45, 142], "customers": 41, "customize": 177, "cut": 25, "cutter": 6, "cuttlefish": 53, "cve": [42, 43, 53, 54], "c\u30e9\u30f3\u30bf\u30a4\u30e0": 50, "daemon": [175, 180, 181, 290], "daiki": [37, 38, 47], "dangling": 137, "danish": 260, "darwin": 158, "dash": [31, 231, 232, 233, 234, 235, 258, 259], "dat": [41, 51, 52, 254], "data": [41, 42, 45, 81, 94, 123, 125, 177, 184, 224, 241, 292], "database": [22, 42, 50, 52, 57, 92, 105, 106, 143, 149, 152, 156, 173, 175, 177, 179, 205, 206, 303], "dataset": [179, 180, 181], "datasets": 179, "date": [12, 42, 43, 176], "dat\u30ad\u30fc": 48, "dav": 195, "dave": [183, 186], "david": [43, 44, 195], "day": [173, 226], "days": 173, "db": [39, 40, 42, 44, 50, 51, 52, 53, 94, 109, 112, 114, 120, 124, 141, 142, 143, 162, 164, 175, 176, 177, 178, 180, 241, 281, 290, 295, 298, 308, 312], "db)": 124, "db1": 292, "db2": 292, "dbe": 228, "dbms": [42, 205, 206], "dbmss": 42, "dcb": 49, "dcmake": 27, "dd": [225, 228], "ddl": [45, 301], "de": [17, 44, 74], "deb": [28, 32, 47, 54], "debhelper": 39, "debian": [12, 14, 18, 22, 23, 27, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 296], "debootstrap": 12, "debug": [8, 27, 41, 45, 50, 52, 54, 123, 129, 130, 175, 177], "decimal": 42, "dededede": 44, "def": [41, 44], "defalt": 37, "defaul": 184, "default": [27, 41, 42, 43, 44, 45, 47, 52, 53, 54, 74, 97, 99, 111, 123, 132, 134, 135, 142, 152, 155, 156, 158, 159, 162, 163, 164, 165, 175, 176, 177, 180, 184, 191, 192, 193, 195, 205, 206, 208, 209, 210, 219, 224, 225, 226, 241, 244, 245, 246, 247, 255, 260, 261, 275, 276, 278, 281, 292, 298, 301, 308, 310, 311, 312, 314], "defg": 44, "define": [22, 57, 92, 175], "defines": 179, "definition": 224, "defrag": [22, 36, 48, 57, 92], "defxyzabc": 41, "dejan": 51, "delete": [12, 22, 36, 37, 39, 51, 52, 53, 57, 92, 106, 115, 124, 125], "delimit": 48, "delimiter": [42, 43, 205], "demo": 307, "dense": [44, 96], "deo": [43, 44], "dependent": [41, 44, 54, 124, 149, 150], "depends": [55, 95], "deprecated": [93, 284], "depth": [44, 96], "derived": 181, "descending": [50, 134], "describe": [18, 85], "describes": 175, "description": [51, 299, 311], "designed": 290, "desktop": 8, "dest": [41, 174, 175], "destination": 43, "detail": 176, "details": [12, 85], "dev": [6, 42, 177], "develop": [42, 93, 260], "developed": [42, 260], "developer": 311, "developers": 95, "developing": [42, 260], "development": 311, "develops": [42, 260], "dewangga": 50, "df": [41, 247], "dgrn": 27, "dh": 12, "diana": 45, "dict": 44, "dictionary": [96, 229, 274], "diff": 176, "difference": 225, "difficult": 42, "dingo": 41, "directory": [27, 85, 181, 298], "disable": [39, 42, 177, 302], "disables": 177, "disco": 41, "discussions": 44, "disk": [141, 244], "distance": [41, 45, 188, 197], "divides": 42, "dll": [39, 41, 47, 49, 51, 166], "dll\u30d1\u30b9": 53, "dnf": [18, 24, 25], "do": [42, 49, 52, 166, 176], "doc": [16, 17, 18, 27, 106, 314], "docker": [22, 23, 42, 43], "dockerfile": 12, "dockerfiles": 12, "dockerhub": 29, "docs": 51, "document": [37, 41, 42, 44, 45, 175, 191, 192, 193, 205, 206, 225, 245, 247, 275], "documentation": [21, 27, 177], "documentations": [182, 283], "documents": [42, 43, 202, 203, 205, 206], "documentvectorbm": 41, "dodaisuke": [53, 54], "doesn": [143, 177], "domain": [16, 68, 85, 114, 162, 164, 175, 298, 312], "don": [42, 64, 68, 177], "donut": 198, "dot": [45, 231, 232, 233, 234, 235, 258, 259], "double": [41, 42, 44, 50, 155, 183, 196, 225], "doxygen": [60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83], "dput": 12, "dragonfly": 37, "draw": 307, "drawings": [231, 232, 233, 234, 235, 258, 259], "drilldown": [36, 41, 43, 44, 49, 50, 51, 52, 54, 119, 306, 307, 311], "drilldowns": [41, 42, 43, 44, 50, 51, 52, 53, 54], "drilldownss": 156, "drink": 41, "droonga": [195, 196, 219, 248], "due": [42, 205, 206], "dump": [22, 36, 37, 39, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 57, 64, 92, 129, 137, 163, 171, 175, 177], "dutch": 260, "dylan": 44, "dynamically": 42, "d\u30ad\u30fc": 308, "ea": [168, 228], "eaaa": 42, "each": [68, 159, 250, 251, 253], "ear": 168, "earch": 168, "earlier": 170, "easier": 245, "easy": 245, "ec": 156, "echo": 143, "eclipse": 27, "ecmascript": [47, 48, 156, 223, 225], "ed": 44, "edge": 9, "edict": [49, 51], "edit": [17, 22, 36, 51, 57, 182, 225], "editor": 17, "editorconfig": 42, "editrc": 39, "ef": 44, "effective": 175, "efghi": 44, "eggs": 310, "ehllo": 156, "eight": 308, "eito": 48, "el": [262, 264, 267, 268, 275], "elapsed": [42, 43, 44, 53, 95, 96, 241], "element": [50, 91, 225], "elements": [51, 74, 95], "elfring": 47, "ell": 275, "ellip": 188, "elly": 45, "else": [50, 302], "em": [111, 231, 232, 233, 234, 235, 258, 259], "emacs": 17, "embeddable": 197, "emerg": 130, "emerge": [129, 175], "emergency": [129, 175, 177], "emfile": 302, "emily": 45, "emoji": [231, 232, 233, 234, 235], "emphasize": 194, "empty": [45, 50], "en": [41, 159, 168, 205, 250, 270, 271], "enable": [6, 17, 27, 31, 37, 43, 48, 168, 177], "enabled": 27, "enablerepo": 24, "enables": 177, "encoding": [74, 85, 175, 241], "ency": 176, "end": [42, 174, 192, 241, 298], "endpoint": 181, "eng": [159, 250], "engi": [159, 250], "engin": [159, 250], "engine": [42, 43, 44, 159, 168, 191, 192, 193, 197, 205, 206, 245, 250, 251, 252, 253], "enginen": 250, "engines": 42, "english": [14, 156, 225], "enhanced": 55, "enough": 42, "enqueue": 9, "enterprise": 31, "enter\u30ad\u30fc": 48, "entries": [41, 42, 43, 44, 45, 50, 110, 125, 126, 127, 128, 132, 134, 135, 156, 163, 173, 191, 192, 193, 224, 225, 275, 281, 310], "entry": [109, 110, 113, 119, 120, 121, 132, 135, 152, 156, 310], "entrykeys": 163, "env": 243, "environment": 21, "eoan": [41, 54], "eof": 175, "eol": [26, 41, 42, 43, 45, 52], "epel": [47, 52], "epoll": [41, 94, 158, 177, 298, 308, 312], "equivalent": 74, "er": 244, "ere": [44, 96], "eric": [183, 186], "ermine": [41, 54], "errbuf": 53, "errno": [49, 50, 302], "error": [44, 48, 49, 52, 58, 85, 95, 129, 130, 155, 156, 175, 177, 244, 247, 302, 308], "errors": 125, "error\u30bf\u30b0": 47, "errror": 244, "es": 277, "escalate": [22, 43, 44, 57, 182], "escape": 68, "escaped": 68, "estimate": 50, "estimated": [41, 51, 165], "etc": [25, 177, 281, 292], "etime": 174, "euc": [31, 48, 175, 277], "ev": 302, "evaluated": 154, "even": 42, "event": [159, 179, 180, 181, 250, 251, 253], "events": [180, 292], "ex": 168, "exact": [11, 111], "example": [42, 94, 156, 175, 231, 235, 257, 259, 305, 306, 307, 308, 310, 312, 315], "examples": [37, 42, 134], "excel": 243, "except": 281, "exclamation": 50, "exclude": [42, 47, 48, 49, 132, 134, 135, 137, 183], "exe": [42, 43], "exec": 298, "executable": 175, "execute": [132, 134, 135, 156, 175, 181], "executed": [95, 312], "executes": 175, "execution": [94, 231, 235, 257, 259], "exist": [143, 245], "existent": [43, 111], "existing": [175, 181], "exists": [132, 134, 135, 137, 163], "exit": [84, 175], "expand": [43, 44], "expanded": 42, "expander": [41, 202, 203], "expansions": 42, "expect": 49, "expensive": 42, "experimental": 27, "expert": 42, "expired": 52, "explain": [50, 96], "exponent": 111, "export": [18, 41], "expr": [58, 68], "express": [47, 48], "expression": [50, 51, 53, 68, 156], "expressions": 177, "ext": 168, "extension": 197, "extracted": 68, "extracts": 68, "eye": 156, "f6": 25, "fa": 168, "face": 227, "facebook": [22, 47], "factor": [49, 156], "failed": [43, 45, 51, 52, 111, 115, 143, 308], "false": [37, 41, 42, 43, 44, 45, 48, 49, 51, 53, 94, 109, 110, 111, 113, 114, 115, 117, 118, 119, 121, 126, 127, 128, 129, 130, 131, 135, 137, 140, 141, 142, 143, 152, 153, 155, 158, 163, 168, 170, 177, 183, 191, 192, 193, 195, 196, 203, 205, 210, 224, 225, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280, 282, 298, 305, 308, 312, 313], "family": [43, 53, 156], "fast": [41, 42, 43, 44, 95, 125, 132, 134, 135, 156, 168, 191, 192, 193, 194, 195, 196, 197, 205, 206, 219, 224, 225, 245, 310], "faster": 290, "favorite": 17, "favorited": 311, "favorites": 311, "fb": [231, 232, 233, 234, 235, 258, 259], "fbnteqr": 50, "fc": [231, 232, 233, 234, 235, 258, 259], "fd": 302, "feature": [17, 245], "features": [27, 41, 94, 158, 177, 298, 308, 312], "fedora": [18, 37, 39, 47, 48], "fg": 44, "fgets": 50, "file": [37, 95, 125, 175, 177, 296, 298], "filename": 298, "files": [27, 177], "filter": [37, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 58, 91, 110, 111, 119, 121, 183, 186, 188, 195, 196, 198, 201, 202, 203, 223, 225, 240, 244, 253, 299, 301, 306, 307, 311, 313, 315], "filtered": [41, 42, 51, 52, 53, 132, 134, 135, 156, 197, 286], "final": [231, 232, 233, 234, 235, 258, 259], "finalizes": 85, "find": 44, "finished": 153, "finnish": 260, "firefox": 17, "firewood": [47, 48], "first": [43, 44, 45, 85, 132, 134, 135, 156, 224, 225, 310, 311], "five": 308, "fix": [51, 55, 112, 114], "fixed": 47, "flag": [42, 43, 74], "flags": [34, 41, 42, 43, 44, 45, 50, 51, 54, 68, 74, 85, 108, 114, 123, 141, 155, 162, 164, 175, 176, 197, 254, 305, 306, 307, 308, 310, 311, 313], "flexible": 42, "float": [41, 42, 44, 47, 50, 51, 90, 96, 111, 132, 134, 135, 141, 142, 155, 156, 188, 197, 241, 246, 247, 305], "floating": 282, "floor": 156, "flower": 305, "fluent": 13, "flush": 124, "flushviewoffile": 50, "focal": 41, "followee": 311, "follower": 311, "following": [27, 85, 175, 179, 181, 290], "fontaine": 39, "foo": 52, "food": [41, 44], "foods": [44, 276], "for": [8, 27, 42, 43, 47, 55, 64, 68, 81, 85, 95, 170, 175, 177, 179, 181, 188, 205, 206, 225, 274, 281, 282, 290, 296, 311], "force": [45, 50, 51, 53, 168, 173, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280], "foreground": 175, "fork": [12, 17, 18], "forks": 175, "form": [41, 44, 53, 54, 224, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259, 295, 298, 308], "format": [17, 27, 31, 41, 55, 64, 85, 96, 125, 241], "formula": 12, "fossa": 41, "four": 308, "fraction": 111, "frank": [183, 186], "free": [37, 49, 108], "freebsd": [22, 50, 57], "frees": 85, "french": 260, "frenchmemos": 260, "frenchterms": 260, "freq": [180, 253], "frequency": [49, 159, 180, 245, 246, 247, 250, 251, 253], "friday": 212, "friends": 307, "from": [51, 55, 68, 85, 175, 198], "fromtable": 110, "fruit": 41, "fsf": 47, "ftb": 55, "ftp": 176, "fts": 197, "fu": 168, "fuku1": 53, "ful": 168, "full": [41, 42, 43, 44, 50, 141, 155, 168, 197, 205, 206, 244, 245, 272, 273, 302], "fulltext": [168, 191, 192, 193, 206], "fullwidth": [50, 53], "fumiyasu": 39, "func": [41, 53, 81, 85], "function": [50, 51, 55, 85, 95, 182, 283, 298], "functions": [41, 42, 43, 49, 50, 51, 52, 55, 85, 132, 134, 135, 156, 195, 197, 198, 208, 209, 211, 212, 219, 221, 222], "fuzzy": [22, 41, 44, 51, 57, 182], "ga": [44, 168, 176, 230], "gaeeyo": 41, "game": [42, 286], "garbage": [48, 108], "gb": [241, 303], "gc": 51, "gcc": [31, 39, 47, 48], "gd": 228, "gdb": 14, "gem": 12, "gemfile": 47, "gemini": 41, "generate": 85, "generated": [85, 179], "generates": [27, 179], "generator": [23, 87, 114, 141, 142, 155, 197], "generators": 27, "geo": [22, 36, 37, 39, 40, 41, 47, 48, 51, 57, 74, 182, 307, 311, 315], "geodetic": 282, "geoindex": 307, "geopoint": [36, 37, 41, 48, 51, 90, 141, 142, 155, 188, 189, 190, 305, 306, 307, 312, 315], "geopoint\u9593": 39, "geosite": 307, "german": 260, "get": [39, 47, 49, 165, 168, 178, 312], "getaddrinfo": 47, "getenv": 50, "getpoint": 45, "gets": 85, "gettext": [17, 18], "gguf": 227, "gh": [44, 45, 46], "ghz": 176, "gi": 168, "gib": [34, 281], "gib\u304f\u3089\u3044": 281, "git": [6, 7, 8, 12, 13, 17, 18], "github": [6, 7, 8, 12, 13, 17, 18, 19, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 96], "gitter": [2, 42, 50, 51], "gituub": 51, "glaser": 51, "glib": 48, "glossary": 21, "gmo\u30e1\u30c7\u30a3\u30a2": 49, "gnoonag": 156, "gnu": [3, 5, 8, 12, 18, 22, 23, 31, 39, 41, 42, 43, 44, 45, 52, 53, 54], "gnupg": 12, "go": [226, 290], "golow": 44, "golubchik": [50, 52], "gone": 307, "goo": [56, 224, 225], "good": [41, 42, 43, 44, 45, 123, 132, 134, 135, 156, 165, 195, 219, 224, 225, 226, 261], "google": [56, 156, 245, 246, 247, 252], "gorilla": [41, 42, 43], "goroo": 290, "gpl": [45, 55], "gps": 0, "gpu": 197, "gqtp": [0, 1, 3, 22, 24, 25, 28, 32, 45, 47, 48, 49, 50, 53, 100, 174, 175, 176, 289, 297, 312], "gr": [156, 168, 208], "graceful": 157, "grease": 305, "green": 27, "gregex": 48, "grep": 302, "grmdb": 173, "grn": [3, 22, 37, 38, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 59, 84, 85, 99, 100, 111, 115, 119, 121, 124, 133, 149, 150, 153, 156, 166, 167, 183, 185, 188, 189, 190, 196, 199, 204, 228, 243, 244, 302, 310], "grndb": [22, 41, 42, 49, 50, 51, 52, 53, 54, 57, 106, 143, 172], "grnline": 308, "grnslap": [22, 57, 172], "grntest": [13, 37, 39, 47, 51], "grnwrap": 308, "gro": [42, 205, 206, 208], "gronga": [243, 252], "gronnga": [41, 252], "gronoga": 177, "groo": 156, "grooga": 53, "groon": 44, "groonag": 156, "groong": [44, 237], "groonga": [1, 2, 10, 13, 14, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 59, 60, 61, 64, 81, 84, 85, 89, 91, 92, 93, 95, 96, 97, 99, 101, 102, 103, 106, 108, 109, 110, 111, 112, 113, 114, 118, 119, 120, 122, 123, 124, 125, 129, 130, 131, 132, 134, 135, 138, 144, 147, 151, 153, 155, 156, 157, 158, 159, 161, 162, 164, 166, 167, 168, 171, 172, 173, 174, 185, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 199, 202, 203, 204, 205, 206, 208, 209, 210, 219, 221, 223, 224, 225, 226, 227, 228, 229, 230, 237, 238, 239, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 260, 262, 264, 272, 273, 275, 281, 282, 289, 290, 291, 292, 295, 298, 299, 301, 302, 303, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "groongau": 273, "groovy": [41, 42, 43], "group": [41, 43, 306], "grroonga": 252, "gt": [44, 192, 193], "gted": 17, "gtihub": 39, "gui": 155, "gun": 41, "gzcat": 51, "gzip": [31, 47, 291], "h3": [45, 94, 158, 177, 298, 308, 312], "hack": 237, "halfwidth": [230, 231, 232, 233, 234, 235, 258, 259], "hana": 307, "hanako": 121, "handled": 177, "hard": 281, "hardy": 37, "has": [55, 85, 95, 137, 179, 225, 245], "hash": [41, 42, 43, 53, 155, 254, 311], "hashida": [42, 43, 54], "hashidatks": 54, "hat": 31, "have": [64, 226], "haystack": 11, "hdd": [41, 111, 161, 176], "he": [156, 262, 264, 267, 268, 275], "head": [49, 174, 298], "header": [41, 42, 43, 45, 50, 74, 96, 107, 110, 111, 114, 118, 121, 123, 124, 125, 127, 129, 132, 133, 134, 136, 137, 138, 139, 140, 141, 143, 144, 145, 149, 150, 151, 152, 153, 154, 156, 157, 158, 160, 161, 163, 164, 166, 167, 168, 169, 170], "heavy": [231, 232, 233, 234, 235, 258, 259, 290], "hel": 275, "hello": [41, 42, 43, 44, 45, 96, 111, 123, 132, 134, 135, 156, 165, 224, 225, 226, 261, 262, 264, 267, 268, 272, 275, 277, 310], "help": [14, 17, 27, 39], "helpful": 245, "hendro": 48, "her": 44, "here": [18, 85, 175, 179, 181, 224], "hex": 307, "hey": [42, 156], "hh": [225, 228], "hi": 156, "hideki": 50, "higchi": [42, 43], "high": [110, 197], "highight": 191, "highlight": [22, 41, 44, 45, 49, 50, 51, 52, 53, 54, 57, 182, 275], "hills": 27, "hino": 48, "hippo": [42, 43], "hiragana": [44, 231, 232, 233, 234, 235], "hiroaki": 50, "hiroshi": [37, 39, 51], "hirotaka": 50, "hiroyuki": 50, "hirsute": [42, 43], "hits": 111, "hmm": 311, "ho": 277, "hoang": 45, "hobby": 228, "hoge": 185, "home": [12, 31, 45, 277], "homebrew": [22, 23, 39, 49, 51], "homepage": 176, "hook": 137, "horikoshi": 39, "horizontal": [231, 232, 233, 234, 235, 258, 259], "host": [176, 178, 180, 244, 298, 312], "hostname": [175, 177, 178], "hottolink": 55, "hotwagner": 54, "hour": [42, 134, 173], "hours": 173, "how": [22, 85, 133, 289], "html": [3, 12, 14, 22, 39, 41, 43, 44, 47, 48, 49, 51, 54, 57, 111, 177, 178, 182, 192, 193, 205, 206], "html\u30bf\u30b0": [111, 194], "http": [0, 1, 12, 22, 24, 25, 28, 32, 37, 39, 41, 43, 44, 47, 48, 49, 50, 51, 52, 54, 57, 91, 94, 122, 125, 153, 156, 157, 172, 174, 175, 176, 177, 180, 194, 195, 196, 219, 244, 253, 272, 273, 289, 290, 292, 293, 304, 305, 306, 307, 308, 310, 315], "httpd": [40, 47, 48, 49, 51], "httprewritemodule": 177, "https": [12, 13, 17, 21, 24, 25, 27, 28, 31, 33, 41, 43, 44, 54, 291, 302], "hub": 12, "hugging": 227, "hung": 41, "hye": 156, "hypehn": 156, "hyper": 156, "hyphen": [156, 231, 232, 233, 234, 235, 257, 258, 259], "ia": [299, 301], "ic": 277, "ichii": 39, "id": [0, 28, 37, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 58, 74, 89, 91, 95, 108, 110, 111, 114, 121, 122, 123, 134, 135, 137, 141, 142, 155, 156, 159, 162, 164, 170, 175, 180, 183, 186, 195, 196, 201, 224, 225, 226, 228, 229, 244, 250, 251, 253, 254, 260, 261, 276, 278, 301, 305, 306, 307, 308, 310, 312, 313, 314, 315], "identifier": 58, "ideograph": 53, "ideographic": 50, "idf": 49, "ids": 110, "idx": 44, "ieee": [111, 282], "if": [11, 41, 50, 64, 81, 84, 85, 95, 175, 177, 179, 181, 225, 290, 302], "ifexists": 44, "ignore": [42, 43, 45, 50, 261], "ignored": 47, "ii": [43, 44, 51, 53, 71, 96, 111, 244], "iii": 43, "iiii": 43, "il": [299, 301], "ill": 299, "illegal": 298, "image": 29, "immediate": [51, 157], "immediately": 42, "impish": [42, 43, 44], "implementation": 290, "implemented": [50, 55], "improper": 298, "in": [11, 14, 22, 28, 35, 42, 47, 49, 50, 51, 52, 57, 58, 64, 68, 74, 85, 95, 96, 97, 98, 99, 108, 110, 111, 112, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 146, 149, 150, 151, 152, 153, 155, 156, 157, 158, 160, 161, 163, 166, 167, 168, 170, 171, 173, 175, 181, 182, 184, 186, 187, 191, 192, 193, 197, 198, 203, 205, 206, 207, 208, 209, 211, 212, 219, 220, 221, 222, 224, 225, 227, 231, 232, 233, 234, 235, 237, 244, 246, 247, 248, 257, 258, 259, 277, 282, 283, 285, 286, 287, 288, 290, 311, 314], "inappropriate": 298, "include": [16, 42, 49, 53, 132, 134, 135, 137, 156, 180, 183, 231, 232, 233, 234, 235], "included": 95, "includes": 50, "incompatible": 298, "indent": 74, "index": [22, 41, 42, 43, 44, 49, 50, 51, 52, 53, 54, 55, 57, 71, 92, 111, 112, 137, 183, 196, 205, 206, 224, 225, 276, 278, 281, 307, 310], "indexblog": 310, "indexes": [42, 155], "indices": 96, "indri": [42, 43, 44], "infinity": [41, 52], "inflected": [53, 274], "info": [27, 50, 51, 52, 111, 129, 130, 173, 175, 177, 228, 244, 247], "init": [31, 47, 49], "initial": [41, 43, 52, 54, 132, 134, 135, 156], "initialized": 85, "initializes": [84, 85], "innodb": 0, "input": [42, 43, 44, 45, 64, 95, 178, 298], "inspect": [50, 51, 52], "inspected": 74, "install": [12, 14, 18, 21, 24, 25, 27, 28, 30, 32, 47, 49, 85, 174, 176], "installed": 41, "instant": 42, "instantly": [42, 205, 206], "instead": [85, 109, 151, 175, 284], "int": [37, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 54, 61, 68, 71, 74, 81, 85, 90, 91, 110, 111, 114, 135, 141, 142, 155, 156, 159, 161, 164, 170, 180, 183, 184, 186, 188, 198, 202, 203, 204, 224, 225, 241, 245, 246, 247, 250, 251, 253, 301, 305, 306, 307, 308, 310, 311, 315], "intel": 176, "internal": 49, "internally": 64, "interrupted": 298, "into": 42, "introduction": [122, 149, 150], "inv": 176, "invalid": [43, 44, 45, 85, 111, 124, 149, 155, 156, 298], "invalidmodescalar": 111, "invalidmodevector": 111, "inverted": [42, 205, 206], "io": [22, 41, 50, 51, 52, 53, 54, 55, 57, 92], "ip": [176, 180, 298, 312], "ipc": [27, 31, 125], "iptables": 292, "is": [17, 41, 42, 43, 44, 45, 47, 49, 50, 51, 53, 64, 68, 85, 95, 96, 99, 132, 134, 135, 149, 153, 156, 163, 165, 168, 175, 177, 179, 181, 191, 192, 193, 194, 195, 196, 197, 202, 203, 205, 206, 219, 224, 225, 228, 231, 234, 235, 241, 244, 245, 261, 272, 284, 290, 292, 298, 305, 308, 310, 312, 314], "iso": [42, 43, 173, 225], "issue": [19, 96, 156], "issues": 49, "it": [41, 42, 43, 44, 64, 68, 84, 85, 95, 125, 132, 134, 135, 156, 170, 175, 181, 224, 225, 226, 228, 245, 290, 307], "itagaki": 37, "italian": 260, "item": [41, 42, 159, 179, 180, 250, 251, 253, 254], "itemlogs": 135, "items": [41, 42, 156, 201], "its": [68, 85, 175], "iwai": [40, 47], "ja": 17, "jacob": 50, "james": 313, "jammy": [32, 43, 44], "japan": [56, 121, 306, 312], "japanese": [156, 274], "japaneseentries": 156, "japaneseterms": 156, "jason": 313, "javascript": [22, 177, 178, 304, 312], "je": 313, "jeff": 313, "jellyfish": [32, 43, 44], "jemalloc": 49, "jennifer": 313, "jersey": 311, "jessie": [48, 49, 50, 53], "jira": 51, "jiro": 307, "jis": 240, "job": 176, "jobs": 176, "john": [121, 313], "josep": [42, 43, 54], "joseph": 313, "jp": 44, "jq": 308, "jquery": [37, 49], "json": [37, 39, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 64, 91, 97, 125, 159, 176, 177, 178, 241, 292, 298, 308], "jsonp": [39, 50, 180], "just": [179, 226, 311], "ka": 230, "kakesa": 50, "kamicup": 54, "kana": [159, 179, 180, 250, 251, 253], "kare": [231, 232, 233, 234, 235], "karmic": 14, "kashihara": 49, "katagiri": 48, "katakana": [230, 231, 232, 233, 234, 235, 258, 259], "kate": 27, "kato": 54, "kawada": 49, "kawaji": 47, "kazuhiro": [42, 43], "kb": 303, "kbytes": 176, "keep": 42, "keitaro": [42, 43], "ken": 307, "kenichi": [37, 39], "kernel": [166, 228], "key": [34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 58, 74, 91, 94, 95, 110, 111, 112, 114, 121, 122, 123, 125, 132, 134, 135, 141, 142, 152, 155, 159, 163, 164, 165, 170, 175, 176, 177, 180, 183, 184, 186, 188, 194, 195, 196, 198, 201, 208, 209, 210, 212, 219, 221, 224, 225, 229, 230, 237, 240, 245, 250, 251, 253, 254, 261, 278, 281, 292, 298, 299, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "keys": [41, 43, 49, 50, 74, 177], "keyword": [41, 43, 44, 45, 47, 48, 54, 68, 156, 191, 192, 193, 202, 205, 206, 224, 245, 246, 247, 275], "keywords": [68, 276, 278], "kib": [50, 281], "kinjirou": 307, "kiske": 47, "kk": 244, "klose": 50, "km": 311, "ko": 55, "koi": [31, 47, 175], "korea": 306, "kqueue": [41, 94, 158, 177, 298, 308, 312], "kuriyama": 49, "kwic": [205, 206], "kytea": [31, 47, 48, 53, 168], "label": [43, 44, 50, 51, 52, 110, 201], "labeledarguments": 52, "lacked": 302, "land": 41, "landmarks": 41, "langasek": 51, "language": [17, 18, 22, 57, 182, 227], "languages": 42, "large": 42, "larger": 181, "largetext": 254, "last": [41, 47, 180, 311], "lat": 176, "latency": 176, "latin": [31, 45, 47, 53, 175, 231, 235], "latin1": 47, "latinovic": 51, "latitude": 74, "launch": 181, "launchpad": [12, 32, 49], "lc": [17, 18], "ld": [262, 264, 275], "learn": 181, "learned": 181, "length": [51, 85], "lenny": 39, "leo": 41, "less": [51, 244], "let": 226, "letter": [45, 53, 230, 231, 232, 233, 234, 235, 258, 259], "level": [85, 111, 123, 130, 175, 177, 181, 228, 298], "levels": 177, "lexicon": [42, 43, 44, 45, 50, 53, 122, 152, 161, 176, 202, 203, 210, 226, 236, 310], "lf": 174, "lgpl": 55, "li": [42, 45, 277, 299, 301], "liang": [43, 44], "lib": [37, 48, 111, 115, 118, 132, 134, 135, 137, 143, 144, 145, 151, 156, 163, 302], "libarrow": 31, "libedit": [31, 36, 37, 39, 45, 47, 50, 54], "libevent": 31, "libgcc": 49, "libgroonga": [20, 166], "libmecab": 12, "libnginx": 44, "libra": 41, "libraries": [42, 245, 290], "library": [42, 64, 290], "libstemmer": 49, "libtool": [6, 50], "libwinpthread": 49, "lic": 195, "license": 55, "light": [231, 232, 233, 234, 235, 258, 259, 290], "lighthouse": 41, "like": [43, 290], "limit": [39, 41, 42, 43, 44, 45, 52, 53, 54, 119, 159, 177, 228, 253, 306, 307, 308], "line": [21, 95, 290], "lines": 14, "link": [305, 306, 312], "links": [305, 306, 312], "lintian": 41, "linux": [22, 23, 27, 29, 31, 41, 42, 43, 44, 52, 54, 57, 94, 158, 176, 177, 298, 308, 312], "lion": 47, "lisp": 52, "list": [27, 179, 181], "listen": [47, 175, 177, 292, 302], "lists": 49, "literal": 44, "ll": [168, 262, 264, 267, 268, 275, 299, 301], "llama": [94, 158, 177, 197, 227, 298, 308, 312], "lldb": 6, "llo": 275, "llt": 168, "lo": [262, 264, 267, 268, 275], "load": [22, 36, 37, 39, 40, 41, 42, 43, 44, 47, 48, 50, 51, 52, 53, 54, 57, 58, 91, 92, 93, 94, 106, 109, 110, 111, 114, 121, 122, 123, 124, 132, 134, 137, 141, 149, 150, 159, 164, 165, 170, 175, 177, 178, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 237, 240, 244, 245, 246, 247, 248, 250, 251, 253, 260, 261, 275, 276, 278, 282, 286, 301, 305, 306, 307, 308, 310, 311, 313, 314, 315], "loaded": [51, 125], "loadedlogs": [41, 54], "loading": 51, "loads": 181, "lobster": 44, "local": 175, "locale": [17, 53], "localeoutput": 53, "localhost": [39, 125, 153, 174, 175, 176, 177, 180, 241, 292], "localstatedir": [31, 37], "localtime": 42, "location": [21, 48, 51, 53, 95, 175, 177, 292, 305, 306, 307, 311, 312, 315], "lock": [22, 49, 50, 52, 53, 57, 92, 109], "locked": 85, "locks": [42, 85, 205, 206], "log": [12, 22, 31, 43, 47, 50, 51, 52, 54, 57, 85, 92, 110, 111, 137, 173, 175, 177, 180, 228], "logaling": 21, "logical": [22, 41, 43, 44, 45, 50, 51, 52, 53, 54, 57, 92, 124, 158, 191, 192, 193, 248, 283], "logrotate": [47, 49], "logs": [41, 42, 43, 96, 110, 132, 134, 135, 136, 137, 140, 143, 152, 156, 161, 180, 181, 244, 246, 247, 248], "logyyyymmddhhmmss": 180, "long": [50, 71, 153], "longer": 55, "longitude": 74, "longitudexlatitude": 48, "longtext": [41, 45, 58, 90, 111, 141, 142, 155, 237], "loose": [42, 44, 45, 53, 201], "looseitems": 201, "love": 310, "lru": 107, "lsb": 28, "lt": [168, 191, 192, 193, 206], "lte": 168, "lts": [21, 32, 42, 43, 45], "lucid": [37, 48], "lunar": 44, "lz": [31, 41, 52, 53, 141, 155], "lz4": [31, 41, 49, 51, 52, 94, 111, 155, 158, 177, 298, 308, 312], "lzo": [39, 47, 49, 298], "mac": [37, 47], "machine": 175, "macos": [18, 22, 23, 49, 51], "macports": [22, 23, 39], "magazine": 156, "mail": 176, "main": [44, 81, 166], "maintenait": 260, "maintenant": 260, "maintenir": 260, "make": [14, 17, 49, 85, 174], "makecache": 47, "makefiles": 27, "malloc": 49, "man": [36, 42, 45, 51, 183], "management": [21, 42, 205, 206], "manager": [177, 292], "managers": 45, "mantic": [44, 45], "many": [42, 179, 245, 290], "map": 39, "mariadb": [48, 49, 51], "mark": [50, 191, 193, 230, 231, 232, 233, 234, 235, 258, 259], "markdown": 18, "market": 42, "marks": 27, "markup": 16, "markus": 47, "marshal": 45, "marverick": 37, "masaharu": [40, 47], "masahiro": 37, "masanori": 51, "masatoshi": [50, 53], "massachusetts": 311, "master": [12, 44, 177], "masuda": [42, 43], "match": [22, 31, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 91, 111, 119, 171, 177, 186, 191, 192, 193, 205, 206, 224, 226, 228, 245, 246, 247, 260, 261, 275, 276, 278, 299, 301, 304, 308, 311, 314], "math": [22, 52, 57, 182], "matsuu": 37, "matthias": 50, "maverick": 39, "max": [41, 42, 43, 44, 47, 49, 51, 52, 53, 54, 81, 94, 97, 105, 108, 118, 141, 156, 158, 174, 176, 177, 195, 204, 225, 241, 246, 281, 298, 308, 312], "maxos": 54, "may": [27, 95, 180], "mb": [47, 52], "mbytes": 176, "md": [12, 18], "mdev": 51, "me": [148, 160, 277], "means": [64, 85, 177, 228], "mecab": [0, 12, 24, 25, 28, 30, 31, 32, 36, 37, 39, 41, 45, 47, 48, 49, 50, 51, 53, 55, 94, 103, 158, 177, 274, 298, 308, 312], "meerkat": 39, "memcache": 295, "memcached": [0, 1, 14, 22, 50, 51, 289, 312], "memcpy": 53, "memo": [42, 43, 45, 49, 202, 203, 245], "memory": [22, 27, 43, 44, 85, 94, 158, 177, 244, 298, 300, 308, 312], "memos": [41, 42, 43, 44, 45, 50, 142, 155, 195, 196, 197, 208, 209, 212, 219, 221, 245, 260, 261], "memset": 50, "mercurial": 12, "merging": 42, "message": [41, 51, 53, 85, 94, 95, 125, 130, 158, 175, 177, 244, 246, 247, 298, 308, 310, 312], "messagepack": [31, 39, 40, 41, 44, 47, 50, 52, 54, 64, 241, 292, 298], "messages": 48, "metadata": [41, 42, 44, 47, 96, 231, 232, 233, 234, 235, 274], "micro": 311, "microsoft": [8, 27, 33, 42, 50], "middle": [231, 232, 233, 234, 235, 258, 259], "migrated": [43, 44, 132, 134, 135, 156, 224, 225], "mike": 121, "milk": 42, "mime": [50, 292], "min": [41, 44, 47, 49, 52, 53, 156, 173, 174, 176], "minagawa": 48, "mingw": [12, 39, 42, 43, 44, 54], "minimum": 85, "minotaur": [44, 45], "mins": 173, "minus": [231, 232, 233, 234, 235, 258, 259], "minute": [42, 173], "minutes": 173, "mips": 51, "mismatch": 208, "missing": [43, 44, 111, 123, 155], "missingmodescalar": 111, "missingmodescalarreferred": 111, "missingmodevector": 111, "missingmodevectorreferred": 111, "missings": 123, "mistral": 197, "mitsuhiro": 37, "mix": 53, "miyashita": 51, "mizuhara": 50, "mkdir": [12, 122], "mkostemp": 49, "mktime": 50, "ml": 10, "mlock": 37, "mm": [225, 228], "mmap": [22, 43, 44, 48, 300], "mnt": 29, "mode": [49, 50, 51, 55, 175, 197, 277], "models": 227, "moden": 195, "modern": 311, "modified": 44, "modifier": [231, 232, 233, 234, 235, 258, 259], "module": 177, "moero": 307, "monday": 212, "money": 307, "monkey": 305, "month": [173, 307], "months": 173, "montywi": 40, "mooz": 39, "more": [42, 85, 175, 181, 205, 206, 224, 245, 298], "moritapo": 307, "moritars": 310, "morning": 226, "moronga": 156, "mountain": 41, "mo\u30d5\u30a1\u30a4\u30eb": 17, "mpaa": 183, "mrb": 51, "mrooga": 43, "mroonag": 156, "mroonaga": 156, "mroonga": [22, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 91, 122, 125, 132, 134, 135, 156, 191, 192, 193, 194, 195, 196, 202, 203, 210, 219, 224, 225, 243, 245, 248, 310], "mruby": [6, 27, 41, 48, 49, 50, 51, 53, 54, 94, 154, 158, 177, 248, 298, 308, 312], "msdn": 302, "msg": [9, 50], "msgpack": [44, 50, 51, 52, 53, 241, 298], "msgpackc": 44, "msvc": 50, "msyql": 91, "mte": 55, "multi": [27, 42], "multibyte": 44, "multiple": 290, "munin": [28, 31, 32, 36, 39, 43, 44, 47], "murata": 52, "museum": 311, "music": [228, 307], "must": [42, 68, 85, 118, 181], "mutex": [48, 81, 85], "mv": 131, "mxcl": 12, "my": [43, 44, 45, 132, 134, 135, 156, 224, 225, 310], "myamanishi3": 52, "myisam": 0, "mysql": [0, 24, 25, 28, 32, 41, 42, 43, 44, 45, 49, 50, 55, 91, 138, 156, 191, 192, 193, 205, 206, 243, 245], "n1": 224, "naist": 274, "nakamura": 50, "namae": [231, 232, 233, 234, 235], "name": [41, 42, 43, 44, 45, 52, 54, 68, 85, 95, 96, 108, 113, 119, 121, 136, 137, 139, 142, 144, 145, 155, 162, 169, 175, 177, 179, 181, 197, 202, 203, 210, 211, 225, 244, 276, 278, 305, 306, 307, 308, 310, 311, 312, 313, 315], "names": [44, 45, 110, 111, 142], "nan": [41, 52], "nanoseconds": 228, "naoa": [41, 42, 43, 44], "naoina": [47, 48], "nargs": 68, "narwhal": 39, "natanael": 50, "nath": 45, "natty": 39, "ne": 168, "near": 225, "neartokens": 224, "neartokenterms": 224, "need": [64, 68, 170, 175], "needed": 177, "negative": 85, "neologism": 274, "nested": 48, "nesteddrilldownmemo": 156, "nesteddrilldownmemos": 156, "nesteddrilldowntags": 156, "net": 306, "netbsd": [37, 48], "netinet": 50, "network": 298, "never": 133, "new": [12, 58, 81, 85, 110, 156, 175, 311], "newark": 311, "newids": 110, "newly": [42, 170, 205, 206], "newnames": 110, "news": [12, 35], "next": [42, 54, 141], "nfkc": [41, 44, 45, 53, 54, 94, 158, 177, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259, 298, 308, 312], "nfs": 31, "nfthreads": 81, "ng": [45, 168, 209], "nga": [42, 156, 208], "ngho": 45, "nginx": [41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 291, 296], "nginxhttpstubstatusmodule": 49, "nginx\u3089\u3057\u3044": 49, "ngo": [45, 231, 235], "ngoan": [45, 231, 235], "ngram": [53, 275], "ngroonga": 42, "nguyen": 41, "ngx": 177, "ni": [201, 240], "nice": 226, "night": [226, 314], "niho": 201, "nihon": [201, 250], "niku": 49, "nil": 74, "nine": 308, "ninja": [18, 27], "nippon": 250, "nise": 49, "no": [36, 41, 42, 44, 48, 50, 53, 55, 122, 124, 125, 132, 134, 135, 143, 149, 156, 159, 244, 254, 298, 302], "noble": [32, 45], "nodes": 74, "nogpgcheck": 47, "none": [31, 43, 53, 138, 165, 168, 175, 177, 179, 298, 310], "noneexpantiondrilldownmemos": 156, "nonexistent": [43, 44, 111, 115, 116, 132, 134, 135, 156], "norm": 45, "normaize": 43, "normalizations": [42, 43, 44, 45, 237], "normalizationsindex": 45, "normalize": [22, 42, 43, 44, 49, 52, 57, 92, 139, 230, 231, 232, 233, 234, 235, 237, 244], "normalizeauto": 191, "normalized": [42, 43, 44, 45, 138, 231, 232, 233, 234, 235], "normalizer": [22, 41, 42, 43, 44, 45, 49, 57, 74, 92, 111, 123, 132, 134, 135, 142, 152, 156, 162, 163, 164, 165, 180, 191, 193, 201, 202, 203, 205, 206, 224, 225, 226, 229, 230, 236, 240, 244, 245, 246, 247, 255, 260, 261, 275, 281, 301, 308, 310, 311, 314], "normalizerauto": [41, 42, 43, 44, 45, 50, 53, 111, 132, 134, 135, 138, 139, 142, 152, 155, 156, 161, 163, 165, 168, 180, 191, 192, 193, 201, 202, 203, 205, 206, 224, 225, 226, 229, 236, 240, 244, 245, 246, 247, 255, 260, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 275, 277, 279, 280, 281, 301, 308, 310, 311, 314], "normalizerhtml": [43, 44, 139, 155], "normalizernfkc": [41, 42, 43, 44, 53, 54, 123, 139, 155, 156, 203, 224, 229, 257, 258, 259, 275], "normalizers": [42, 43, 44, 45, 103, 139], "normalizertable": [42, 43, 44, 45, 139, 155, 191, 229], "normallexicon": 230, "normally": [64, 175], "norwegian": 260, "not": [27, 42, 47, 50, 85, 95, 137, 170, 298, 302], "note": [41, 85], "notes": 41, "nothing": [64, 221], "notice": [42, 45, 50, 111, 123, 129, 130, 166, 175, 177, 246, 247], "notrelated": 137, "now": [22, 52, 57, 182, 311], "np": [41, 42, 44, 224, 225], "np1": [44, 225], "np2": 225, "npp": [42, 44, 45, 224, 225], "nroonga": [21, 202, 203, 310], "nsis": 12, "nsubrecs": [41, 43, 44, 135, 156, 306, 307, 311], "nt": [270, 271], "ntdll": 166, "nterms": 108, "nthe": 42, "ntt": 56, "ntwaitforworkviaworkerfactory": 166, "nul": [39, 85, 273], "null": [11, 39, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 54, 61, 68, 81, 85, 111, 134, 141, 142, 155, 156, 164, 184, 191, 192, 193, 194, 205, 206, 208, 209, 211, 212, 219, 221, 231, 232, 233, 234, 235, 237, 275, 302], "numbat": [32, 45], "number": [22, 43, 45, 51, 57, 85, 95, 108, 118, 156, 175, 176, 182, 186, 225, 281], "numbers": [42, 50], "numeric": 44, "ny": 311, "obata": [37, 53], "obj": [41, 68, 74, 108], "object": [22, 42, 47, 50, 51, 52, 54, 57, 85, 92, 111, 124, 137, 155, 225, 298], "objname": [109, 120], "obtained": 85, "occurred": 95, "occurs": 43, "ocelot": [39, 48], "ocr": 42, "october": 49, "of": [41, 42, 47, 52, 55, 85, 95, 108, 118, 159, 175, 177, 179, 180, 181, 191, 192, 193, 205, 206, 210, 224, 281, 311], "off": [27, 49, 177], "offset": [44, 45, 52, 68, 85, 119, 159, 308], "offsets": [43, 44], "offsetted": 41, "ohkubo": 51, "ok": 121, "okapi": [41, 245, 247], "oknj": 54, "old": 85, "om": 277, "omitted": [43, 95, 241], "omitting": 42, "on": [17, 27, 42, 43, 44, 55, 64, 85, 95, 168, 177, 191, 192, 193, 205, 206, 292, 302], "one": [42, 51, 53, 85, 95, 175, 181, 205, 206, 224, 290], "oneiric": [39, 48], "onga": [205, 206], "ongaeshi": [37, 47, 48, 50], "onigmo": [41, 45, 49, 50, 51, 94, 158, 177, 244, 298, 308, 312], "oniguruma": 50, "only": [43, 50, 64, 85, 175, 177], "onp": [41, 42, 44, 224, 225], "onpp": [42, 44, 224, 225], "oo": [168, 208, 254], "oon": [42, 208, 209], "ooo": 254, "op": [41, 44, 68], "opaque": 298, "open": [18, 143, 205, 308], "openbsd": [50, 51], "opened": [142, 228], "operation": [137, 298, 302], "operator": [44, 50, 52, 231, 232, 233, 234, 235, 258, 259], "ophiuchus": 41, "option": [42, 44, 53, 95, 175, 181, 191, 193, 205], "optional": [27, 95], "options": [41, 42, 45, 50, 155, 173, 174, 175, 176, 177, 178, 179, 180, 181, 202, 203, 248, 290], "or": [27, 41, 42, 43, 44, 49, 64, 85, 95, 96, 132, 153, 156, 170, 175, 193, 196, 202, 203, 224, 243, 247, 262, 264, 275, 298, 302, 314, 315], "oracle": [39, 44], "orangain": 48, "orange": [211, 276, 278], "order": [41, 54], "ordered": 96, "org": [306, 312], "origin": [17, 18], "original": [64, 122, 135, 156, 313], "orl": 275, "os": [7, 8, 12, 26, 31, 37, 42, 47, 48, 49, 50, 94, 118, 124, 158, 176, 177, 298, 308, 312], "osdn": [12, 50], "os\u4e0a": 24, "other": [42, 50, 85, 175, 181], "others": [42, 43, 231, 232, 233, 234, 235], "otherwise": 85, "out": [52, 176], "output": [37, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 64, 91, 96, 97, 110, 111, 119, 132, 159, 178, 182, 184, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 225, 228, 241, 245, 246, 247, 275, 286, 301, 305, 307, 308, 310, 311, 315], "outputs": 181, "outputting": 64, "overcommit": 281, "owned": 68, "owner": 177, "package": [12, 22, 23], "packages": [12, 17, 24, 25, 27, 28, 31, 33], "pai": 51, "pair": [159, 179, 180, 250, 251, 253], "pangolin": 47, "parameter": [170, 175, 228], "parent": [135, 156], "parenthesized": 53, "parker": 50, "parse": 58, "partial": 11, "pass": 177, "passive": 42, "pat": [45, 51, 254], "patch": 55, "path": [18, 27, 29, 45, 53, 85, 114, 142, 151, 162, 164, 175, 176, 177, 292], "paths": 161, "patprefix": 313, "patricia": 155, "patsuffix": 313, "pattern": [53, 224, 225, 276], "pcre": [47, 52], "pen": [41, 42, 44, 96, 231, 234, 235, 272], "pens": 44, "pentium": 176, "people": 111, "performance": [42, 197, 205, 206, 290], "performed": 302, "period": 35, "permission": 298, "permitted": 137, "persistent": 112, "pg": 183, "pgp\u30ad\u30fc": 54, "pgroonga": [41, 42, 43, 45, 50, 54, 122, 156, 197, 224, 225, 228, 237, 245, 248], "php": [47, 290], "phrase": [41, 44, 224, 225], "physical": 108, "pid": [31, 36, 50, 51, 52, 53, 175], "pie": [276, 278], "pies": 278, "pikonyan": 307, "pip": 18, "pisces": 41, "pkg": [37, 50], "pkgrel": 12, "pkgver": 12, "plant": 44, "plants": 44, "platform": 27, "platforms": 85, "play": 314, "player": 110, "players": [110, 164], "please": 17, "plugin": [22, 39, 41, 42, 43, 45, 49, 50, 53, 54, 57, 59, 92, 103, 122, 124, 132, 133, 134, 135, 136, 137, 142, 151, 154, 156, 165, 180, 195, 197, 198, 208, 209, 211, 212, 219, 221, 222, 243, 255, 260, 261], "plugins": [151, 281], "po": [17, 51], "poedit": 17, "poeple": 111, "point": [40, 41, 74, 114, 153, 189, 190, 299], "pointed": 85, "pointer": 85, "points": [41, 42, 286], "poll": [41, 94, 158, 177, 298, 308, 312], "popular": 156, "port": [30, 175, 176, 180, 295, 298, 312], "porting": 55, "ports": 29, "portuguese": 260, "pos": 74, "position": [45, 85, 141, 155, 168, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280], "posix": [50, 225], "post": [12, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 125, 156, 178, 180, 224, 225, 291, 311], "posted": 311, "postgresql": [0, 42, 96, 197, 205, 206, 248], "posting": 41, "posts": 111, "post\u30e1\u30bd\u30c3\u30c9": 48, "poti": [42, 43], "power": [43, 44], "powersetdrilldownmemos": [43, 156], "poyonga": 290, "ppa": [22, 23, 49], "pre": [43, 44, 55, 180], "precise": 47, "predicate": 53, "prefix": [6, 14, 18, 22, 31, 39, 41, 50, 51, 57, 111, 159, 182, 205, 225, 240], "preset": 27, "presets": 27, "price": [41, 42, 132, 134, 135, 211, 305], "printf": [53, 74], "priority": 156, "proc": [50, 52, 85, 118], "process": [45, 53, 175], "processed": [41, 42, 149, 228], "processes": 175, "processid": 54, "processid\u304b": 54, "product": 42, "products": 42, "program": [27, 181], "progress": [45, 53], "project": [27, 225], "projects": 42, "prolonged": [231, 232, 233, 234, 235, 258, 259], "proonga": 290, "properties": 228, "protocol": [0, 174, 175, 178, 241, 290, 292, 295, 312], "provided": 42, "pthread": [39, 48], "ptr": 85, "pull": [12, 18, 29], "purchases": 42, "push": [12, 17, 18], "put": 224, "python": [12, 18, 290], "q1": 203, "q2": 203, "qps": [174, 176], "quantal": 47, "quantity": 41, "queries": [42, 176, 205, 206], "query": [0, 11, 22, 27, 31, 38, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 68, 91, 92, 111, 119, 132, 144, 145, 151, 159, 177, 179, 180, 181, 182, 191, 192, 193, 205, 206, 223, 224, 225, 226, 243, 244, 245, 246, 247, 250, 251, 253, 260, 261, 275, 276, 278, 290, 299, 301, 305, 307, 308, 310, 311, 312, 313, 314, 315], "queryexpandertsv": [22, 41, 44, 47, 48, 57, 144, 145, 151, 242], "question": 50, "quetzal": 47, "queue": [9, 302], "quiet": 298, "quit": [22, 52, 53, 57, 92, 175, 228, 298], "quiz": 307, "quorum": 52, "quote": 225, "raccoon": 307, "radimrehurek": 41, "radious": 189, "rakutan": 310, "raltime": 253, "ram": 176, "rand": [22, 52, 57, 182, 315], "range": [22, 49, 50, 52, 57, 92, 111, 114, 134, 162, 164, 298], "ranguba": [44, 49, 52, 91], "rank": [42, 286], "rapidjson": [41, 54, 94, 158, 177, 298, 308, 312], "raring": [48, 49], "raspberry": [276, 278], "rather": 290, "raw": [21, 141], "rc": [43, 45, 52, 84, 100, 124, 168, 228], "rch": 168, "rd": [42, 43, 299, 301], "rdbms": [0, 43, 44, 50, 197], "read": [42, 205, 206, 298], "reading": [53, 231, 232, 233, 234, 235, 274], "readings": [201, 240], "readme": [44, 48, 227], "reads": 181, "real": [42, 58, 205, 206], "realloc": [37, 52, 54], "really": [41, 43, 44, 132, 134, 135, 156, 224, 225], "realtime": [159, 253], "rebase": 12, "receive": 180, "received": 175, "receiver": 181, "recently": 107, "recommend": 290, "record": [22, 42, 50, 51, 52, 53, 57, 96, 134, 135, 156, 188, 283, 305, 308, 312], "records": [41, 42, 43, 45, 50, 96, 134, 156, 228], "recover": [41, 42, 53, 106], "rect": 188, "rectangle": 47, "recursive": [6, 7, 8, 12, 13, 18], "red": 31, "redhat": 39, "redmine": 49, "reference": [22, 41, 42, 43, 44, 48, 50, 53, 57, 92, 94, 137, 155, 156, 158, 163, 177, 298, 308, 312], "referenced": 124, "referencedbycolumn": 163, "referencedbytable": 163, "referencedtable": 163, "references": [137, 163], "referencetable": 163, "referred": [41, 149], "regexplexicon": [152, 244], "register": [22, 48, 50, 57, 92, 138, 144, 168, 311], "registered": [42, 85, 151, 205, 206], "regular": [177, 244], "reindex": [22, 50, 51, 52, 53, 57, 92], "related": 42, "release": [27, 43], "released": [41, 55, 149], "releases": 84, "remained": [228, 244], "remains": [54, 123], "remote": [12, 175, 177], "remove": [42, 43, 44, 53, 54, 137, 138, 143, 163], "removed": 151, "reopen": 131, "rep": 176, "repl": 45, "replaced": [179, 181], "replication": 245, "replied": 311, "replies": 310, "reply": 310, "repoforge": 47, "report": [42, 43, 44, 45, 53], "reported": [43, 44, 45], "reports": [44, 85], "representative": [43, 44], "request": [12, 18, 22, 42, 43, 44, 45, 48, 49, 50, 51, 52, 57, 92, 98, 99, 125, 177], "required": [21, 177, 292], "res": 176, "resizes": 85, "resolve": 228, "resource": [45, 298], "resources": 84, "rest": [74, 85], "restart": 296, "restarting": 296, "restructuredtext": 18, "result": [11, 41, 42, 44, 181, 188, 205, 206, 241, 298, 310], "results": [42, 47, 205, 206], "retry": 298, "return": [42, 43, 44, 53, 81, 84, 95, 96, 125, 302], "returned": 85, "returns": 85, "reverse": [12, 177], "rewrited": 55, "rf": [12, 177], "rhel": 44, "rid": [71, 74], "ringtail": [48, 49], "rl": [262, 264, 275], "rld": 275, "rlimit": [48, 228], "rm": [12, 177], "ro": 168, "roles": 111, "romanian": 260, "roon": 208, "roonga": [219, 224, 225], "root": [48, 50, 177, 312], "rose": 305, "row": [42, 205, 206], "rpm": [12, 24, 25, 37, 39, 43, 44, 47, 48, 49], "rroonga": [21, 41, 42, 43, 44, 45, 48, 49, 50, 61, 156, 196, 202, 203, 210, 221, 223, 224, 225, 245, 310], "rst": 18, "rtluserthreadstart": 166, "ruby": [0, 6, 8, 12, 21, 22, 27, 41, 42, 43, 47, 48, 49, 50, 52, 55, 57, 91, 92, 156, 191, 192, 193, 208, 221, 223, 244, 245, 290], "rubygems": 47, "rubyinstaller": 8, "run": [14, 22, 29, 175, 177, 289], "running": [153, 175], "runs": [175, 181], "runtime": 42, "russian": 260, "ryo": 52, "sa": [42, 159, 251], "sa\"": 42, "sae": [159, 251], "saer": [159, 251], "saerc": [159, 251], "saerch": [159, 251], "sagittarius": 41, "sako": 50, "salamander": [48, 49], "sales": 211, "same": [48, 290], "sample": [176, 181, 224], "sanz": [42, 43, 54], "sato": 45, "satoh": 39, "satoshi": 52, "satouyuzh": 53, "saturday": 212, "saucy": [48, 49], "say": [224, 225, 310], "scalar": [43, 155], "scan": 14, "schema": [22, 41, 43, 44, 50, 52, 53, 57, 92, 96, 142, 179, 224], "scope": 50, "score": [11, 41, 42, 43, 44, 45, 48, 50, 53, 91, 96, 114, 132, 134, 135, 156, 159, 164, 170, 188, 202, 203, 225, 245, 246, 247, 250, 251, 253, 286, 301, 307, 308, 310, 311, 315], "score1": 11, "score2": 11, "scorer": [22, 42, 50, 53, 119, 124, 188, 198, 223, 225, 245, 304, 307], "scorpio": 41, "script": [49, 51, 156, 176, 185, 189, 190, 199, 204], "scrt": 166, "se": [168, 250], "sea": [168, 250], "sear": 250, "searc": 250, "search": [39, 42, 43, 44, 47, 111, 156, 159, 168, 183, 191, 192, 193, 196, 197, 205, 206, 224, 225, 243, 245, 250, 251, 252, 253], "sebastian": 49, "sec": 173, "second": 173, "seconds": 173, "secs": 173, "section": [71, 85, 141, 155, 175], "sed": [39, 47, 50], "see": [42, 85, 111, 175, 228, 293, 294], "segment": [51, 108], "segments": 108, "segv": [36, 42, 48], "seki": 53, "select": [22, 36, 37, 38, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 61, 91, 92, 93, 94, 96, 98, 99, 107, 110, 111, 114, 121, 124, 132, 134, 148, 149, 150, 153, 158, 164, 170, 175, 177, 182, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 226, 228, 229, 243, 244, 245, 246, 247, 253, 260, 261, 275, 276, 278, 283, 286, 290, 299, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "selector": 119, "self": 176, "sen": 55, "senboku": 48, "send": [43, 180, 290], "sender": 181, "senna": [22, 35, 43, 44, 132, 134, 135, 156, 224, 225, 243], "sentense": 50, "separated": 64, "separator": [231, 232, 233, 234, 235, 258, 259], "sequence": [44, 96, 159, 179, 180, 250, 251, 253], "sequential": [42, 44, 183, 191, 193, 196], "serach": 251, "serch": [159, 251], "sergei": [50, 52], "sergey": 49, "serial": 110, "serihiro": 47, "server": [41, 47, 49, 50, 137, 175, 177, 195, 196, 219, 290, 292, 296, 307], "servers": 137, "service": [50, 251, 296], "services": 29, "session": 290, "set": [42, 45, 137, 176], "setting": 296, "settlements": 42, "setup": [18, 27], "seven": 308, "sh": [12, 21], "sha": 12, "shard": [41, 136], "sharding": [41, 50, 132, 133, 134, 135, 136, 137, 248], "share": [31, 45, 197, 227], "shark": 44, "sharks": 44, "shell": 175, "shibanao": [42, 43], "shibuya": 37, "shidara": 39, "shift": [31, 277], "shimada": 37, "shimamura": [50, 53, 54], "shimoda": 37, "shimomura": 47, "shinonon": [43, 44], "shinya": 47, "shiro": 54, "sho": 48, "shoes": 42, "shop": [42, 198], "shopping": 226, "shops": [198, 299], "short": 28, "shorttext": [37, 39, 41, 42, 43, 44, 45, 49, 51, 52, 53, 58, 74, 90, 91, 95, 96, 110, 111, 112, 114, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 140, 141, 142, 143, 149, 150, 152, 155, 156, 159, 161, 162, 163, 164, 165, 170, 175, 176, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 236, 237, 240, 244, 245, 246, 247, 250, 251, 253, 254, 255, 260, 261, 275, 276, 278, 281, 286, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "should": [85, 170, 228], "show": [53, 224, 225], "shows": [42, 64], "shutdown": [22, 37, 41, 51, 52, 54, 57, 92, 124, 175, 177, 244, 292, 298], "sid": [12, 39, 49, 74, 108], "sigabrt": 44, "sigcont": 48, "sigint": 39, "sign": [111, 231, 232, 233, 234, 235, 258, 259], "sigstop": 48, "sigusr": 39, "silent": 21, "simd": 45, "simdjson": [45, 94, 158, 177, 298, 308, 312], "similar": [47, 159, 175], "similarity": 197, "since": [151, 170, 173], "sis": 39, "site": [152, 305, 306, 308, 312, 315], "sitecountry": [306, 312], "sitedomain": [306, 312], "sites": [122, 126, 127, 128], "six": 308, "size": [41, 43, 74, 85, 108, 141, 142, 155, 303], "sizeof": [50, 68], "sjis": [31, 55, 175], "skip": 205, "slash": 225, "sleepy": 226, "slice": 52, "slices": [41, 42, 51, 52, 54], "small": [45, 53, 231, 235], "smaller": 42, "smith": 51, "snake": 50, "sneakers": 42, "snippet": [22, 41, 42, 43, 44, 47, 48, 50, 51, 52, 54, 55, 57, 134, 156, 182], "snippet3": 206, "so": 205, "soccer": 307, "socket": [298, 302], "socre": 41, "soerr": 302, "soft": 281, "software": 32, "solaris": [7, 8, 39, 47, 50], "solr": 225, "some": [42, 50, 53, 84, 179], "song": 54, "sort": [12, 41, 42, 43, 45, 50, 51, 52, 53, 195, 196, 197, 198, 202, 245, 246, 247, 286, 307, 308, 315], "sortby": [39, 42, 51, 119, 159], "sort\u30ad\u30fc": 36, "sound": [44, 230, 231, 232, 233, 234, 235, 251, 258, 259], "soundkitchen": [39, 47], "source": [27, 41, 43, 44, 45, 50, 52, 53, 95, 112, 114, 123, 142, 197, 307, 308, 310, 311], "sourceforge": [12, 50], "sources": [52, 141, 155], "sozaki": 52, "space": [50, 85, 224, 244, 302], "span": [41, 43, 44, 45, 191, 192, 193, 194, 206, 275], "spanish": 260, "spec": [12, 37, 47, 48, 52], "specified": [85, 95], "specifies": [175, 224], "specify": [17, 175, 177, 179, 181], "specifying": 85, "speed": 252, "spelling": 314, "sphinx": [3, 15, 16, 18, 49, 50, 51], "sphr": 188, "spil": 50, "sports": 307, "sql": [42, 44, 156, 245, 306], "squeeze": 48, "src": 41, "srpm": 52, "ss": [225, 228, 244], "ssd": [41, 111, 161], "ssssss": 228, "st": [168, 225, 277], "stable": 93, "stack": [48, 298], "stage": [41, 42, 43, 44, 51, 52, 197, 286], "standalone": [175, 181], "standard": [27, 282], "standing": 290, "stargazy": 278, "start": [41, 42, 43, 44, 50, 94, 96, 97, 158, 177, 226, 296, 298, 302, 308, 312], "started": [41, 43, 44, 95, 132, 134, 135, 156, 224, 225], "starting": [85, 296], "starttime": [41, 50, 94, 97, 158, 177, 241, 298, 308, 312], "stateful": 290, "states": 121, "static": 81, "statistics": 141, "status": [22, 36, 37, 41, 43, 44, 45, 47, 48, 50, 51, 54, 57, 74, 92, 94, 97, 121, 149, 156, 175, 176, 177, 178, 241, 290, 308, 312], "statuses": 42, "steming": 260, "steve": 51, "sticker": [41, 42, 43, 156], "still": [41, 149, 153], "stock": 53, "stop": [47, 50, 175, 177, 296], "stopping": 296, "storage": [42, 43, 44, 191, 192, 193], "store": [41, 68], "stored": 181, "stores": 68, "str": [68, 85], "stream": [41, 96], "streaming": [27, 31, 125], "strerror": 49, "stretch": 41, "strftime": 53, "strict": 49, "string": [11, 22, 41, 42, 43, 44, 47, 49, 50, 51, 57, 68, 85, 96, 132, 134, 135, 156, 182, 185, 195, 275], "string1": 185, "string2": 185, "strings": 42, "strip": [43, 44], "strlen": 85, "structure": 42, "studio": [8, 27, 41, 42, 43, 44, 47, 48, 50, 51], "su": 51, "sub": [22, 41, 43, 44, 48, 50, 53, 54, 57, 182, 195, 201], "subclass": [53, 274], "subject": 48, "sublime": 27, "submit": [159, 180, 250, 251, 253], "subrec": 74, "subrecord": 48, "subscript": [231, 232, 233, 234, 235, 258, 259], "substituted": 42, "substitutions": 42, "succeeded": [114, 121, 127, 129, 152, 170], "success": 298, "successfully": 85, "successor": 225, "such": [17, 42, 47, 151, 179, 181, 205, 206], "sudo": [12, 14, 18, 21, 24, 25, 27, 28, 30, 31, 32, 47, 281, 296, 303, 312], "sufficient": [85, 302], "suffix": [179, 181, 205], "suffixsearchterms": [224, 225], "suggest": [22, 37, 39, 54, 57, 92, 180, 181, 250, 251, 252, 253], "suggestion": 179, "suitable": 175, "suited": [42, 205, 206], "sum": [12, 41, 49, 52, 135, 156], "summary": [22, 176, 289], "sums": 12, "sunday": 212, "sunos": 49, "super": 42, "superior": [42, 205, 206], "superscript": [231, 232, 233, 234, 235, 258, 259], "support": [42, 55], "supported": [55, 177], "supports": [42, 55, 85, 181], "sutamin": 41, "swedish": 260, "swig": 55, "switch": 18, "syllabics": [231, 232, 233, 234, 235, 258, 259], "symbol": [43, 44, 231, 232, 233, 234, 235, 237], "synonym": [43, 44, 156, 314], "synonymgroups": 43, "synonyms": [43, 44, 243], "syntax": [51, 58, 156, 175, 298], "syscall": [49, 308], "sysctl": [50, 281, 303], "system": [42, 43, 44, 132, 134, 135, 156, 205, 206, 224, 225, 281, 282, 302], "systemctl": 296, "systemd": [47, 50, 51], "systems": [42, 205, 206], "tab": 64, "table": [11, 22, 34, 37, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 74, 91, 92, 93, 94, 105, 110, 113, 119, 121, 122, 124, 126, 127, 128, 132, 134, 135, 136, 137, 140, 143, 149, 150, 152, 159, 170, 175, 176, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 236, 237, 240, 244, 245, 246, 247, 248, 250, 251, 253, 255, 260, 261, 262, 275, 276, 278, 281, 286, 292, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "tablecursor": 50, "tablegroupflags": 50, "tablename": 93, "tables": [179, 281], "tag": [12, 41, 42, 43, 44, 110, 132, 134, 135, 156, 195, 196, 221, 307], "tags": [12, 41, 42, 43, 44, 45, 50, 91, 112, 156, 161, 195, 196, 219, 221, 307], "tahr": 49, "tail": [12, 298], "tajima": 47, "takagi": 52, "takahiro": 37, "takashi": [39, 42, 43, 54, 121], "takayama": 50, "takayuki": 39, "takes": 153, "takoyaki": 45, "takuto": 37, "tar": [12, 27, 31], "target": [27, 41, 43, 45, 49, 53, 68, 143, 173, 231, 232, 233, 234, 235], "targets": [43, 237], "taro": 307, "task": 42, "tasks": 42, "tasuku": 55, "tatsuya": 47, "taurus": 41, "tcp": [51, 175, 180], "te": [168, 277], "tel": 42, "tellists": 42, "tels": 42, "telsindex": 42, "temple": 41, "temporary": 175, "term": [42, 108, 314], "termexpansions": 42, "terminal": 311, "terms": [41, 42, 43, 44, 45, 108, 111, 123, 124, 132, 134, 135, 142, 155, 156, 163, 165, 175, 191, 192, 193, 202, 203, 205, 206, 224, 225, 245, 246, 247, 255, 260, 261, 275, 281, 301, 308, 310], "termux": 45, "teruya": 50, "test": [14, 54, 156, 176, 305, 308, 310, 311, 312], "testdb": [176, 181], "tex": 168, "text": [27, 41, 42, 43, 44, 45, 47, 50, 58, 90, 95, 111, 125, 127, 132, 134, 135, 141, 142, 152, 155, 156, 163, 168, 176, 202, 203, 205, 206, 224, 225, 237, 241, 244, 245, 246, 247, 254, 276, 278, 281, 292, 310], "tf": [41, 74, 245, 246, 247], "than": [51, 244, 290], "thanks": 311, "thas": [44, 96], "that": [42, 44, 47, 64, 68, 85, 95, 96, 137, 163, 175, 197, 205, 206, 225, 228, 290], "the": [16, 27, 41, 42, 43, 44, 45, 47, 55, 64, 68, 85, 95, 118, 125, 132, 134, 135, 137, 143, 153, 156, 163, 175, 177, 179, 180, 181, 188, 205, 206, 224, 225, 281, 290, 302, 311], "theater": 314, "theatre": 314, "them": 68, "then": 85, "there": [224, 290], "thesaurus": [43, 44, 156], "these": [42, 205, 206], "they": 44, "this": [27, 41, 42, 43, 44, 45, 47, 64, 85, 96, 132, 134, 135, 149, 156, 175, 177, 179, 205, 206, 224, 225, 228, 231, 234, 235, 272, 292, 305, 308, 310, 312, 314], "thorsten": 51, "thread": [9, 22, 42, 50, 52, 53, 57, 85, 92, 105, 118, 133, 143, 163, 175, 176], "threadid": 54, "threads": 118, "threasd": 175, "three": [95, 305, 308], "threshold": [39, 42, 43, 45, 50, 120], "through": 177, "thursday": 212, "thus": [179, 181], "tim": 52, "time": [22, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 53, 57, 90, 132, 134, 135, 136, 137, 140, 141, 142, 143, 152, 153, 155, 156, 159, 161, 173, 175, 176, 177, 180, 182, 199, 250, 251, 253, 301, 305, 311], "timeout": 51, "times": [41, 42], "timestamp": [41, 42, 44, 51, 132, 134, 135, 136, 137, 140, 143, 152, 156, 211], "timestamps": [42, 137], "timezone": 42, "timgates": 41, "title": [41, 42, 43, 44, 48, 49, 52, 53, 111, 122, 125, 126, 127, 128, 152, 156, 163, 202, 210, 245, 305, 306, 307, 308, 310, 312], "titles": [224, 225], "tittle": 310, "tiwawan": 50, "tld": 306, "tls": 51, "tmp": [6, 27, 31, 42, 48, 159, 175, 243, 244, 292, 298, 308, 312], "to": [22, 41, 42, 43, 44, 47, 51, 55, 64, 68, 74, 85, 95, 111, 115, 122, 132, 134, 135, 143, 156, 170, 175, 177, 181, 205, 206, 224, 225, 228, 289, 311], "tobby": [202, 203], "todo": [6, 14, 52, 53, 62, 63, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 86, 88, 90, 91, 95, 111, 125, 134, 138, 148, 156, 179, 182, 205, 207, 220, 224, 225, 248, 281, 283, 292, 309], "token": [41, 42, 45, 50, 52, 122, 165, 176, 255, 257, 258, 259, 260, 261], "tokenbigram": [22, 41, 42, 43, 44, 45, 57, 111, 132, 134, 135, 142, 152, 155, 156, 161, 163, 165, 168, 169, 175, 180, 191, 192, 193, 202, 203, 205, 206, 210, 224, 225, 226, 245, 246, 247, 251, 254, 255, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271, 274, 275, 279, 280, 281, 299, 301, 308, 310, 311, 314], "tokenbigramignoreblank": [22, 45, 57, 155, 169, 263, 301], "tokenbigramignoreblanksplitsymbol": [22, 57, 155, 169, 263, 301], "tokenbigramignoreblanksplitsymbolalpha": [22, 52, 57, 155, 169, 263, 301], "tokenbigramignoreblanksplitsymbolalphadigit": [22, 52, 57, 155, 169, 263, 301], "tokenbigramsplitsymbol": [22, 37, 53, 57, 155, 169, 263, 275, 301], "tokenbigramsplitsymbolalpha": [22, 57, 155, 156, 168, 169, 263, 264, 299, 301], "tokenbigramsplitsymbolalphadigit": [22, 42, 44, 57, 110, 155, 169, 202, 251, 263, 301], "tokenbigramsplitxxx": 264, "tokenbigrm": 110, "tokenbigrma": 168, "tokendelimit": [22, 45, 57, 155, 168, 169, 180, 253, 257, 258, 259, 263, 273], "tokendelimitnull": [22, 38, 57, 155, 169, 263], "tokendelmit": 53, "tokendocumentvectorbm": [41, 155, 169], "tokendocumentvectortfidf": [41, 155, 169], "tokenfilerstem": 42, "tokenfilternfkc": [22, 41, 44, 53, 57, 155, 256], "tokenfilterstem": [22, 28, 32, 42, 43, 49, 52, 53, 57, 256], "tokenfilterstopword": [22, 42, 43, 45, 49, 50, 57, 165, 255, 256], "tokenh": 45, "tokenize": [22, 45, 48, 49, 50, 57, 92, 165, 169, 231, 232, 233, 234, 235, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280], "tokenizer": [22, 47, 49, 52, 57, 92, 225, 275, 298], "tokenizers": [142, 168, 169], "tokenkytea": 47, "tokenmecab": [22, 44, 45, 47, 53, 54, 57, 103, 142, 155, 156, 169, 225, 232, 233, 234, 257, 258, 259, 263, 299, 301], "tokenngram": [22, 41, 42, 43, 44, 45, 53, 54, 57, 123, 155, 156, 169, 203, 224, 225, 263], "tokenpattern": [22, 54, 57, 155, 169, 263], "tokenregexp": [22, 50, 51, 57, 152, 155, 169, 244, 263], "tokens": [41, 43, 44, 168], "tokenstopword": 53, "tokentable": [22, 54, 57, 155, 169, 263], "tokentrigram": [22, 50, 57, 155, 168, 169, 263], "tokenunigram": [22, 57, 155, 169, 263], "tokyogeopoint": [39, 51, 90, 141, 142, 155, 189, 190, 315], "tom": [202, 203], "tomita": 37, "tomo": 307, "tomoatsu": 37, "tomohiro": 54, "tomotaka": 39, "tomygx": 50, "too": [42, 50, 183, 196, 298, 310], "tood": [85, 160], "tool": 21, "top": [39, 190], "torinky": 51, "tortoisegit": 8, "toshi": 45, "toshio": 45, "totable": 110, "total": [108, 141, 176], "tower": 41, "toybox": 305, "tpreleasecleanupgroupmembers": 166, "tr": 28, "trace": [43, 44, 96], "tracker": 19, "transfer": [0, 290, 298], "translate": 17, "translation": 17, "travel": 311, "travi": 48, "travis": [20, 22, 47, 48, 49], "trie": 155, "tried": 311, "trigram": [53, 275], "tritonn": [43, 44, 132, 134, 135, 156, 224, 225], "trixie": 44, "true": [36, 41, 42, 43, 44, 45, 48, 49, 50, 51, 58, 91, 94, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 170, 177, 180, 183, 184, 186, 188, 189, 190, 192, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 245, 246, 247, 255, 257, 258, 259, 260, 261, 274, 275, 276, 278, 282, 286, 298, 305, 306, 307, 308, 310, 312, 313, 314, 315], "truncate": [22, 39, 48, 49, 50, 51, 53, 57, 92, 123, 124], "truncated": 48, "truncation": 39, "trusty": 49, "try": [41, 311], "ts": [270, 271], "tsu": 50, "tsv": [50, 241, 298], "tuesday": 212, "turn": 177, "tutorial": 85, "tweet": 226, "tweets": 226, "twiter": 47, "twitter": [3, 22, 311], "two": [95, 181], "tx": 277, "txt": [16, 17], "type": [41, 42, 43, 44, 45, 51, 54, 61, 64, 71, 74, 85, 96, 114, 123, 138, 159, 161, 176, 184, 197, 250, 251, 253, 286, 305, 306, 307, 308, 310, 311, 313, 315], "typedef": 81, "types": [42, 43, 44, 138, 159, 197, 231, 232, 233, 234, 235, 237, 250, 251, 253], "typo": [39, 49], "ubuntu": [14, 18, 21, 22, 23, 27, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "ueno": [37, 38, 47], "ui": 156, "uint": [34, 37, 41, 42, 43, 44, 45, 47, 48, 49, 51, 52, 58, 81, 90, 91, 95, 96, 110, 111, 112, 114, 121, 124, 132, 134, 135, 141, 142, 149, 150, 155, 156, 161, 162, 163, 164, 170, 180, 183, 185, 186, 195, 201, 210, 211, 212, 224, 225, 226, 229, 244, 260, 261, 276, 278, 281, 286, 301, 306, 307, 308, 310, 312, 313, 314, 315], "ul": 168, "ull": 168, "ultra": 307, "umask": 49, "umemoto": 39, "unbiased": 41, "unchanged": 85, "under": [177, 181], "underlying": 42, "unicode": [41, 44, 45, 50, 53, 54, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259], "unicorn": 50, "unified": 53, "unify": [41, 42, 43, 44, 53, 54, 203, 225, 257], "uninstall": 47, "unique": 153, "united": 121, "universe": 32, "unix": [3, 5, 8, 23, 31, 42, 49, 95, 211], "unknown": [54, 58, 166, 298], "unlink": 68, "unlocked": 85, "unlocks": 85, "unmanaged": 108, "unmatch": 43, "unpatched": 55, "unsigned": [49, 61, 68, 71, 74, 85], "unsplit": 11, "unsupported": 298, "until": 85, "up": 241, "update": [12, 28, 32, 42, 47, 53, 54, 71, 298], "updated": [17, 55, 301], "updates": [42, 205, 206], "updating": 42, "upgraded": 41, "upstream": 12, "uptime": [36, 41, 94, 97, 158, 177, 241, 298, 308, 312], "uri": [96, 177, 178, 180], "url": [12, 33, 39, 41, 49, 122, 178, 312], "usa": 306, "usage": [42, 175, 224], "use": [17, 40, 41, 42, 43, 44, 50, 53, 54, 64, 68, 85, 95, 108, 109, 132, 135, 151, 156, 170, 175, 180, 183, 196, 224, 225, 245, 257, 258, 259, 284, 290, 310], "used": [42, 64, 84, 107, 110, 170, 175, 181, 290, 311], "useful": [42, 95, 175, 245, 310], "user": [41, 42, 44, 45, 85, 137, 149, 150, 176, 177, 180, 183, 186, 193, 195, 202, 203, 206, 210, 225, 281, 307], "userdefinedtable": 237, "username": 307, "users": [41, 42, 44, 45, 51, 53, 58, 74, 95, 98, 99, 110, 112, 114, 121, 124, 137, 140, 141, 143, 149, 150, 155, 156, 164, 166, 170, 177, 183, 186, 202, 203, 228, 292], "uses": [42, 43, 64, 156, 181, 197], "using": [42, 55, 64, 310], "usr": [14, 31, 144, 145, 151, 175, 177], "usually": 181, "utc": 225, "utf": [31, 37, 47, 48, 51, 53, 55, 74, 175, 180, 225, 241, 277], "utopic": 50, "uubntu": 14, "uuid": 51, "uuuuuu": 225, "uvactor": 45, "uvector": [41, 45], "uzulla": 39, "v1": 11, "v2": 11, "va": 41, "valgrind": 14, "value": [41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 71, 74, 85, 94, 96, 110, 123, 125, 141, 142, 154, 155, 162, 168, 177, 184, 191, 193, 197, 224, 225, 231, 232, 233, 234, 235, 244, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 279, 280, 286, 308, 312], "valuen": [195, 196], "values": [42, 45, 64, 175], "var": [11, 31, 85, 112, 173, 175, 177], "variable": 85, "variables": 85, "variety": 307, "vars": 85, "vary": 156, "varying": 85, "vc": [41, 54], "vcruntime": 41, "vector": [22, 41, 42, 43, 44, 47, 48, 50, 51, 52, 53, 57, 132, 134, 135, 155, 156, 182], "verbose": 96, "version": [28, 29, 39, 41, 44, 45, 54, 55, 58, 74, 85, 94, 96, 97, 98, 99, 110, 111, 112, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 146, 149, 150, 152, 153, 155, 156, 157, 158, 160, 161, 163, 166, 167, 170, 171, 173, 175, 176, 177, 184, 186, 187, 191, 192, 193, 195, 196, 197, 198, 203, 205, 207, 208, 209, 211, 212, 219, 220, 221, 222, 224, 225, 227, 232, 233, 234, 235, 236, 237, 241, 244, 246, 247, 248, 257, 258, 259, 277, 282, 283, 285, 286, 287, 288, 298, 308, 312], "vervet": [50, 51], "very": [41, 42, 43, 44, 95, 125, 132, 134, 135, 156, 191, 192, 193, 195, 206, 219, 224, 225, 245], "video": 307, "virgo": 41, "visual": [8, 27, 33, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51], "visualstudio": [43, 44], "vivid": [50, 51], "vm": [47, 228, 303], "vmstat": 303, "voiced": 230, "void": [40, 74, 81, 84, 85], "vojtovich": 49, "volumes": 29, "vs": [33, 42, 166], "waits": 85, "wal": 42, "wanabe": 48, "want": [175, 290], "wareohji": 47, "warn": [129, 175], "warning": [129, 130, 175, 177, 244, 247], "warp": 49, "was": 302, "watcom": 27, "watson": 45, "way": 181, "we": 290, "weakness": [42, 205, 206], "web": [31, 36, 156, 159, 205, 206, 224, 251, 253], "webclips": 194, "wednesday": 212, "week": 173, "weeks": 173, "weight": [41, 42, 43, 44, 47, 52, 74, 91, 111, 141, 155, 156, 180, 245, 305], "welcome": [43, 44, 45, 132, 134, 135, 156, 224, 225, 311], "well": [42, 205, 206], "werewolf": [50, 51], "wget": [27, 28, 31], "wgs": [39, 41, 45, 51, 90, 141, 142, 155, 188, 189, 190, 305, 306, 307, 311, 312, 315], "wheezy": 39, "when": [42, 95, 175, 290], "which": [85, 175, 181], "whombx": 48, "wi": [42, 43], "wi2": 42, "wibowo": 48, "widely": 42, "width": 42, "wiedenroth": 49, "wiki": 177, "wikipedia": [240, 282], "will": [85, 175, 290], "wily": [50, 51], "window": [22, 41, 42, 52, 53, 57, 283, 284], "windows": [3, 5, 6, 7, 22, 23, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 85, 157, 158, 166, 176, 302], "windymelt": 45, "wing": [47, 48], "with": [6, 21, 27, 30, 31, 33, 39, 41, 42, 43, 44, 45, 49, 50, 51, 53, 85, 91, 108, 111, 112, 138, 141, 155, 166, 175, 177, 181, 205, 206, 224, 225, 231, 232, 233, 234, 235, 237, 244, 308], "without": [42, 177, 205, 206], "wmake": 27, "wo": [262, 264, 275], "wolfgang": 54, "woman": 42, "wonderland": 111, "wor": 275, "word": [44, 47, 156, 224, 225, 231, 232, 233, 234, 235, 258, 259], "words": 225, "work": [12, 27, 166], "worker": [9, 292], "works": [18, 85], "world": [41, 42, 43, 123, 156, 262, 264, 272, 275, 310], "write": [14, 40, 148, 156, 160], "written": 170, "wsaenobufs": 302, "wsasend": 53, "www": 12, "xcode": 27, "xenial": [42, 43, 51], "xerus": [42, 43, 51], "xml": [37, 39, 40, 47, 48, 49, 64, 178, 241, 292, 298], "xt": [168, 277], "xvf": [27, 31], "xx": 42, "xxhash": [41, 44, 94, 158, 177, 298, 308, 312], "xxx": [43, 44, 45, 48, 50, 51, 52, 53, 54, 156, 175, 225, 231, 235], "xxxxx": 302, "xyzabc": 41, "x\u30df\u30ea": [225, 282], "yagisumi": 54, "yahoo": 56, "yak": [51, 52], "yakkety": [51, 52], "yamada": [231, 232, 233, 234, 235], "yamaguchi": 39, "yappo": [48, 49, 55], "yay": 41, "year": [41, 173], "years": [58, 173], "yes": [14, 41, 43, 44, 45, 50, 51, 52, 53, 96, 97, 122, 124, 125, 132, 134, 135, 137, 143, 149, 156, 159, 163, 174], "yito": [47, 48], "yoji": 39, "yoku": [48, 49], "york": [188, 311], "yoshimura": [42, 43], "yoshioka": 47, "you": [17, 42, 64, 68, 85, 170, 175, 177, 179, 180, 181, 224, 290], "younger": 111, "your": [12, 17, 18, 21, 39], "yssrku": 44, "yu": 54, "yuki": 39, "yum": 47, "yunqiang": 51, "yutaro": [50, 53, 54], "yuya": 50, "yy": [58, 156], "yyy": 44, "yyyy": [42, 43, 44, 225, 228], "yyyymm": 248, "yyyymmdd": [132, 134, 135, 248], "zangruochen": 44, "zapus": 52, "zcat": 51, "zenigata": 307, "zeromq": 31, "zesty": 52, "zhanzhao": [43, 44], "zip": [22, 23, 27, 42, 43, 47], "zlib": [31, 37, 39, 41, 47, 48, 49, 94, 111, 141, 155, 158, 177, 298, 308, 312], "zsh": [12, 31], "zstandard": [31, 41, 51, 94, 111, 141, 158, 177, 298, 308, 312], "zstd": 53, "zunda": 39, "zwgetcontextthread": 166, "{\"": [41, 42, 43, 44, 45, 50, 52, 91, 96, 108, 111, 132, 133, 134, 135, 136, 137, 141, 154, 156, 159, 176, 180, 183, 191, 192, 193, 196, 197, 202, 203, 211, 224, 225, 226, 237, 244, 246, 247, 250, 251, 253, 260, 261, 275, 276, 278, 310], "{\"_": [41, 42, 44, 58, 156, 183, 186, 195, 198, 224, 225, 305, 307, 315], "{,": 44, "{..": 41, "{\\": 42, "{\\\"": 41, "{a": 156, "{additional": 44, "{ascii": 44, "{b": 156, "{c": 156, "{column": 244, "{d": 156, "{id": 53, "{key": 156, "{label": [135, 156], "{language": 17, "{logical": 248, "{max": 44, "{min": 44, "{name": [132, 134, 135, 156, 225], "{path": 31, "{prefix": [31, 144, 145, 151, 197, 227], "{table": 156, "{time": [53, 228], "{user": 281, "{yyyymm": 248, "{yyyymmdd": 248, "| _": [201, 315], "| b": 54, "| c": [44, 225], "| d": 54, "| f": 54, "| n": 225, "| y": 48, "|+": 175, "|-": [111, 224, 225], "|..": 49, "|:": [43, 228], "|<": [43, 58, 228], "|>": [43, 228], "|[": 272, "|allow": [44, 156, 202, 224], "|b": 244, "|blank": 43, "|cache": 74, "|capital": [45, 231, 235], "|column": 111, "|correct": [159, 180], "|destination": 74, "|disable": 42, "|enable": 168, "|full": 244, "|ga": 156, "|http": 176, "|index": 111, "|info": 244, "|invalid": 111, "|key": [51, 161, 224, 225, 313], "|mark": 51, "|message": [173, 175], "|missing": 111, "|n": 50, "|ng": 156, "|on": 156, "|oo": 156, "|orange": 276, "|persistent": [112, 114, 142, 164], "|pid": [51, 173], "|query": [44, 156], "|result": 74, "|ring": 180, "|ro": 156, "|score": 74, "|size": 74, "|suggest": 159, "|table": 161, "|weight": [41, 43], "|with": [41, 42, 43, 44, 45, 49, 91, 111, 112, 123, 132, 134, 135, 138, 142, 152, 155, 156, 180, 191, 192, 193, 202, 203, 205, 206, 210, 224, 225, 226, 244, 245, 246, 247, 260, 261, 275, 281, 301, 308, 310, 311, 314], "||": [11, 45, 47, 48, 52, 53, 132, 134, 135, 156, 202, 225, 245, 310], "}\n#": 44, "}\"": 41, "}#": 228, "}$": 44, "}'": [42, 52], "}(": 74, "})": [41, 42, 44, 156, 183, 191, 193, 196, 205, 208, 209], "}*": 44, "},": [41, 42, 43, 44, 45, 74, 91, 94, 96, 114, 123, 135, 136, 137, 139, 141, 142, 155, 156, 158, 164, 169, 170, 176, 177, 194, 197, 201, 202, 219, 221, 224, 225, 226, 231, 232, 233, 234, 235, 237, 244, 274, 298, 307, 308, 310, 311, 312, 313, 314], "}.": [112, 114, 142, 143, 156, 164], "}..": 42, "}/": [17, 18, 31, 51, 144, 145, 151, 197, 227], "}:": [180, 228, 244], "}\\": [51, 225], "}]": [42, 43, 44, 50, 51, 52, 97, 125, 153, 154, 175, 176, 241], "}_": [132, 134, 135, 248], "}attr": 48, "}e": 225, "}|": [44, 53, 225, 228], "}}": [42, 45, 91, 156], "~ \"": [50, 225, 244], "~\"": [51, 52, 202], "~$": 42, "~${": 244, "~*": 68, "~number": 225, "~uint": 50, "\u00a9\"": [231, 232, 233, 234, 235, 257, 258, 259], "\u00b7\"": [231, 232, 233, 234, 235, 258, 259], "\u00b7\u00b7": [231, 232, 233, 234, 235, 258, 259], "\u00b7\u1427": [231, 232, 233, 234, 235, 258, 259], "\u00e8o": 45, "\u01b0\u1edd": 45, "\u02d7\"": [231, 232, 233, 234, 235, 258, 259], "\u058a\"": [231, 232, 233, 234, 235, 258, 259], "\u058a\u2010": [231, 232, 233, 234, 235, 257, 258, 259], "\u1427\"": [231, 232, 233, 234, 235, 258, 259], "\u1eb1n": [45, 231, 235], "\u2010\"": [231, 232, 233, 234, 235, 258, 259], "\u2011\u2012": [231, 232, 233, 234, 235, 257, 258, 259], "\u2013\u2043": [231, 232, 233, 234, 235, 257, 258, 259], "\u2014\"": [231, 232, 233, 234, 235, 258, 259], "\u2014\u2015": [231, 232, 233, 234, 235, 258, 259], "\u2022\"": [231, 232, 233, 234, 235, 258, 259], "\u2022\u2219": [231, 232, 233, 234, 235, 258, 259], "\u2026\u3001": 212, "\u2026\uff09": 251, "\u2043\"": [231, 232, 233, 234, 235, 258, 259], "\u207b\"": [231, 232, 233, 234, 235, 258, 259], "\u207b\u208b": [231, 232, 233, 234, 235, 257, 258, 259], "\u208b\"": [231, 232, 233, 234, 235, 258, 259], "\u2170\"": 43, "\u2171\"": 43, "\u2172\"": 43, "\u2191\u30ad\u30fc": 45, "\u2192id": 254, "\u2212\"": [231, 232, 233, 234, 235, 257, 258, 259], "\u2219\"": [231, 232, 233, 234, 235, 258, 259], "\u22c5\"": [231, 232, 233, 234, 235, 258, 259], "\u22c5\u2e31\u30fb": [231, 232, 233, 234, 235, 258, 259], "\u2500\"": [231, 232, 233, 234, 235, 258, 259], "\u2500\u2501\uff70": [231, 232, 233, 234, 235, 258, 259], "\u2501\"": [231, 232, 233, 234, 235, 258, 259], "\u25a1\u25a1": 10, "\u25cb\u25cb": 10, "\u2e31\"": [231, 232, 233, 234, 235, 258, 259], "\u3001 \"": 196, "\u3001\"": [39, 42, 44, 45, 47, 48, 51, 52, 53, 54, 184, 194, 196, 210, 231, 232, 233, 234, 235, 250, 251, 252, 253, 258, 259, 272, 282, 308, 311, 314], "\u3001\"\u30fc": [231, 232, 233, 234, 235], "\u3001#": 311, "\u3001$": 12, "\u3001'": [49, 175, 202, 225, 282, 305], "\u3001(": [176, 183, 282], "\u3001-": [37, 176, 282], "\u3001.": [14, 17], "\u3001/": [308, 312], "\u3001:": [176, 302], "\u3001[": [54, 308], "\u3001_": 308, "\u3001`": 43, "\u3001c": 308, "\u3001\u00d7": 10, "\u3001\u300c": [36, 45, 53, 56, 111, 134, 137, 141, 156, 175, 240, 245, 246, 247, 250, 262, 299, 301, 306, 307, 315], "\u3001\u6708": 212, "\u3002\"": [42, 48, 49, 51, 52, 184, 196, 251, 257, 258, 259, 274, 295, 301, 306, 311, 312], "\u3002#": [37, 39, 311], "\u3002'": [231, 232, 233, 234, 235, 274], "\u3002(": [11, 12, 41, 42, 43, 44, 52, 53, 54, 74, 105, 106, 121, 156, 175, 176, 186, 278, 302, 310], "\u3002)": [41, 42, 43, 44, 53, 54, 105, 106, 121, 156, 176, 186, 302, 310], "\u3002-": 31, "\u3002:": [10, 14, 17, 18, 39, 42, 43, 44, 50, 51, 52, 93, 97, 99, 108, 112, 115, 116, 117, 119, 123, 125, 126, 127, 128, 129, 132, 134, 135, 139, 141, 142, 143, 152, 153, 155, 156, 157, 158, 159, 162, 163, 169, 170, 173, 175, 176, 177, 178, 180, 183, 191, 193, 195, 196, 202, 203, 208, 209, 211, 212, 219, 221, 222, 224, 225, 228, 230, 236, 245, 246, 247, 250, 251, 252, 253, 275, 278, 281, 292, 299, 301, 302, 303, 308], "\u3002[": [41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 308], "\u3002_": [89, 308], "\u3002adjuster": 49, "\u3002amazon": 156, "\u3002apache": [12, 42, 158], "\u3002api": 223, "\u3002ascii": [224, 225], "\u3002bash": 50, "\u3002between": 51, "\u3002blogs": 301, "\u3002c": [0, 16, 100], "\u3002callback": 11, "\u3002centos": 50, "\u3002cmake": 27, "\u3002column": [11, 308], "\u3002command": 93, "\u3002cpu": 156, "\u3002cpu\u30b3\u30a2": 292, "\u3002ctrl\u30ad\u30fc": 308, "\u3002db": [11, 39, 298, 308], "\u3002debian": [14, 31, 53], "\u3002docker": [42, 43], "\u3002drilldown": 53, "\u3002eclipse": 17, "\u3002ecmascript": 156, "\u3002ftp": 176, "\u3002functions": 14, "\u3002gdb": [6, 14], "\u3002geopoint": 311, "\u3002gguf": 227, "\u3002gnr": 223, "\u3002gnu": 5, "\u3002google": 224, "\u3002gqtp": [100, 174, 298], "\u3002grn": [11, 223], "\u3002groonga": [0, 3, 18, 24, 25, 28, 29, 31, 32, 33, 41, 43, 45, 47, 48, 49, 50, 51, 52, 54, 58, 84, 87, 93, 111, 156, 175, 176, 177, 224, 225, 227, 228, 241, 244, 248, 250, 254, 281, 295, 308, 310, 312], "\u3002header": 41, "\u3002host": 298, "\u3002html": 192, "\u3002http": [48, 50], "\u3002id": [51, 111], "\u3002ieee": 111, "\u3002int": 48, "\u3002iptables": 312, "\u3002jis": 240, "\u3002json": [45, 51], "\u3002key": 299, "\u3002linux": [42, 281], "\u3002listen": 52, "\u3002llama": [45, 227], "\u3002lz": 111, "\u3002lz4": 51, "\u3002make": 176, "\u3002memcached": 51, "\u3002messagepack": [31, 95], "\u3002mroonga": 0, "\u3002mruby": [50, 53], "\u3002munin": [28, 32], "\u3002mysql": [24, 25, 28, 32, 248], "\u3002n": [138, 168, 301], "\u3002nginx": 51, "\u3002ocr": 42, "\u3002openbsd": 51, "\u3002os": 118, "\u3002output": [49, 122], "\u3002pcre": 177, "\u3002phi": 45, "\u3002point": [189, 190], "\u3002post": 292, "\u3002postgresql": 52, "\u3002rapidjson": 45, "\u3002rdbms": 175, "\u3002red": 31, "\u3002rk": 240, "\u3002rroonga": 223, "\u3002ruby": 244, "\u3002run": 14, "\u3002scan": 14, "\u3002set": 176, "\u3002sql": 156, "\u3002squeeze": 14, "\u3002table": 121, "\u3002tag": 307, "\u3002tokendelimit": 253, "\u3002tokenizer": 52, "\u3002travis": 21, "\u3002true": 51, "\u3002tsv": [95, 243], "\u3002ubuntu": 45, "\u3002unicode": [231, 257], "\u3002unix": 158, "\u3002utf": [48, 180, 230, 236], "\u3002value": 89, "\u3002video": 307, "\u3002wal": 45, "\u3002windows": 53, "\u3002xml": 95, "\u3002zlib": 111, "\u3002zstandard": 111, "\u3002\u00d7": 10, "\u3002\u2193": 175, "\u3002\u3002": 239, "\u3002\u300c": [49, 56, 111, 118, 132, 134, 135, 137, 138, 141, 143, 156, 161, 165, 168, 195, 224, 225, 244, 247, 262, 307, 310], "\u3002\u300d": [52, 272, 301], "\u3002\u3044": 11, "\u3002\u3044\u304f\u3064\u304b": [142, 180, 227, 244], "\u3002\u3044\u307e": 40, "\u3002\u3056\u3063\u304f\u308a": 91, "\u3002\u3057\u304b": 111, "\u3002\u3057\u304b\u3057": [0, 6, 7, 8, 23, 39, 41, 44, 45, 91, 111, 114, 137, 149, 156, 164, 175, 188, 224, 225, 226, 227, 229, 237, 245, 247, 251, 262, 264, 277, 282, 292], "\u3002\u3057\u304b\u3082": 291, "\u3002\u3059": [53, 176, 226], "\u3002\u3059\u3050": 177, "\u3002\u3059\u3053\u3057": 45, "\u3002\u3059\u3079\u3066": [14, 17, 111, 156, 202, 203, 208, 209], "\u3002\u3064\u307e\u308a": [42, 43, 45, 52, 111, 124, 131, 156, 171, 173, 180, 202, 203, 224, 225, 246, 268, 271, 308, 314], "\u3002\u3069": [43, 44, 111, 203, 219], "\u3002\u3069\u3063\u3061": 111, "\u3002\u3069\u308c": 180, "\u3002\u307e\u305a": [111, 301], "\u3002\u307e\u305f": [0, 11, 42, 43, 44, 45, 93, 111, 123, 124, 156, 174, 175, 176, 178, 186, 225, 231, 232, 233, 234, 235, 243, 247, 251, 282, 298, 302, 305, 308, 310, 315], "\u3002\u307e\u3060": 49, "\u3002\u30a8\u30f3": 45, "\u3002\u30ad\u30fc": [43, 51, 52, 58, 155, 156, 171], "\u3002\u30bf\u30b0": [91, 132, 134, 135, 156, 193, 307], "\u3002\u30d0\u30b0": 19, "\u3002\u30df\u30ea": 305, "\u3002\u30ed\u30b0": [161, 177, 228], "\u3002\u4f8b": [8, 50, 143, 161, 226, 237], "\u3002\u52d5\u7684": 156, "\u3002\u5404": [18, 132, 134, 135, 156, 224, 225], "\u3002\u7701\u7565\u53ef\u80fd": 192, "\u3002\u7a7a": 141, "\u3002\u975e": 156, "\u3002\uff01": 272, "\u3002\uff01\uff1f": 272, "\u3002\uff08": [17, 21, 37, 39, 43, 44, 45, 50, 53, 54, 108, 111, 124, 133, 134, 135, 153, 156, 175, 180, 193, 206, 223, 224, 225, 239, 250, 251, 253, 254, 274, 281, 282, 296, 299], "\u3002\uff09": [17, 21, 36, 37, 39, 43, 50, 111, 124, 133, 134, 135, 141, 153, 156, 161, 180, 193, 206, 224, 225, 239, 251, 253, 254, 274, 296, 299], "\u300c\"": 175, "\u300c#": 37, "\u300c,": [122, 161], "\u300ca": 245, "\u300calice": 311, "\u300carray": 141, "\u300cbill": 299, "\u300cbilliard": 299, "\u300cbob": 311, "\u300cbuffer": 141, "\u300ccharlie": 311, "\u300cchunk": 141, "\u300ccomments": 311, "\u300cdelete": 12, "\u300cgoogle": 56, "\u300cgrand": 311, "\u300cgroonga": [49, 156, 180, 223, 281], "\u300chello": 156, "\u300cn": 53, "\u300cnew": 311, "\u300cnihon": 250, "\u300cnippon": 250, "\u300cparenthesized": 53, "\u300cpopular": 156, "\u300csenna": 156, "\u300csupported": 227, "\u300cthe": 245, "\u300cthey": [245, 246, 247], "\u300cthread": 53, "\u300cu": 53, "\u300cusers": 311, "\u300cview": 12, "\u300c\u25cb": [50, 132, 134, 135], "\u300c\u3059": 52, "\u300c\u305b": 56, "\u300c\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8": 141, "\u300c\u30d1\u30b9": 178, "\u300c\u30e9\u30d9\u30eb": 156, "\u300c\u4eba": 111, "\u300c\u5024": [155, 161], "\u300c\u52d5\u7684": 156, "\u300c\u5e74": 50, "\u300c\u5f0f": 68, "\u300c\u6240\u5728\u5730": 90, "\u300c\u6771\u4eac\u90fd": 301, "\u300c\u697d\u3057": 299, "\u300c\u697d\u3057\u3044": 299, "\u300c\uff76": 230, "\u300d:": 230, "\u300d]": 272, "\u300d\u3001": [49, 307, 311], "\u300d\u3002": 223, "\u300d\u300c": [53, 141], "\u300d\uff08": [122, 156, 161, 299], "\u300d\uff09": 53, "\u3041\u3042": [44, 231, 232, 233, 234, 235], "\u3041\u3042\u3043\u3044\u3045\u3046": [231, 232, 233, 234, 235, 258, 259], "\u3041\u3044\u304a\u308a\u3093": [231, 235], "\u3041\u30fc": [44, 231, 232, 233, 234, 235], "\u3042i": 44, "\u3042i\u3046": 44, "\u3042\u3042": [44, 231, 232, 233, 234, 235], "\u3042\u3042\u3042": 44, "\u3042\u3042\u3044\u3044\u3046": [231, 232, 233, 234, 235, 258, 259], "\u3042\u3044\u3046": [231, 232, 233, 234, 235, 257, 258, 259], "\u3042\u3044\u307e\u3044": 161, "\u3042\u3046": 44, "\u3042\u304d": 313, "\u3042\u304d\u3089": 49, "\u3042\u304f": 61, "\u3042\u3052\u308b": [22, 198, 300], "\u3042\u305f\u308a": [37, 39, 43, 56, 141], "\u3042\u3063": [17, 27, 41, 42, 43, 44, 47, 48, 51, 52, 53, 54, 56, 74, 89, 93, 111, 125, 137, 156, 157, 159, 176, 225, 244, 286, 292, 307], "\u3042\u3063\u3055\u308a": 56, "\u3042\u3068": [17, 43, 118, 183, 196, 281, 302], "\u3042\u3068\u3082": 99, "\u3042\u306a\u305f": [2, 6, 12, 18, 44, 45, 50, 96, 111, 156, 244, 245, 246, 247], "\u3042\u307e\u308a": [10, 41, 111, 161, 175, 310], "\u3042\u3084\u304b\u3063": 56, "\u3042\u3089\u304b\u3058\u3081": [12, 282], "\u3042\u3089\u3086\u308b": 143, "\u3042\u3089\u308f\u3057": 314, "\u3042\u308a": [0, 1, 2, 3, 6, 8, 10, 11, 12, 13, 14, 16, 17, 18, 19, 23, 24, 25, 27, 28, 31, 32, 33, 34, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 68, 74, 81, 84, 89, 90, 91, 93, 94, 95, 96, 99, 110, 111, 112, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 173, 175, 176, 177, 180, 183, 186, 188, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 206, 208, 210, 219, 223, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 240, 241, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 286, 290, 292, 296, 298, 299, 301, 302, 303, 305, 306, 308, 310, 311, 312, 314, 315], "\u3042\u308a\u3048": 111, "\u3042\u308b": [0, 1, 2, 5, 6, 7, 8, 10, 11, 12, 17, 18, 20, 27, 31, 33, 37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 68, 91, 93, 94, 96, 100, 105, 108, 109, 111, 112, 113, 118, 119, 120, 121, 122, 124, 130, 132, 134, 135, 137, 138, 141, 142, 147, 149, 156, 157, 158, 159, 161, 162, 163, 168, 173, 174, 175, 176, 177, 180, 183, 185, 186, 188, 189, 190, 195, 196, 198, 199, 201, 202, 204, 205, 206, 208, 210, 219, 223, 224, 225, 227, 228, 237, 239, 243, 244, 245, 250, 251, 254, 257, 258, 259, 265, 272, 275, 277, 281, 282, 286, 292, 298, 301, 302, 303, 305, 306, 307, 308, 310, 312, 313, 315], "\u3042\u308b\u3044": [0, 11, 41, 44, 49, 93, 96, 111, 125, 137, 142, 161, 163, 177, 189, 190, 196, 224, 225, 237, 281, 298], "\u3042\u308c": [6, 12, 43, 45, 51, 52, 58, 61, 74, 111, 137, 161, 163, 175, 176, 183, 196, 226, 231, 232, 233, 234, 235, 301], "\u3042\u308c\u3053\u308c": 10, "\u3042\u308f\u305b": [111, 178, 248, 281], "\u3042\u308f\u305b\u308b": 47, "\u3042\u30a4\uff73": [231, 232, 233, 234, 235, 257, 258, 259], "\u3042\u30fc": [44, 231, 232, 233, 234, 235], "\u3043\u3044": [44, 231, 232, 233, 234, 235], "\u3043\u30fc": [44, 231, 232, 233, 234, 235], "\u3044b": [299, 301], "\u3044\u3044": [2, 10, 44, 56, 231, 232, 233, 234, 235, 237], "\u3044\u3044\u306d": [132, 134, 135, 156, 224, 225], "\u3044\u3046": 156, "\u3044\u304d": [10, 12, 302, 308], "\u3044\u304f": [3, 4, 22, 51, 56, 98, 111, 154, 156, 168, 244], "\u3044\u304f\u3064": [3, 244], "\u3044\u304f\u3064\u304b": [1, 2, 8, 11, 14, 31, 41, 43, 44, 48, 50, 51, 53, 56, 89, 111, 117, 122, 124, 125, 132, 134, 135, 137, 138, 141, 149, 150, 153, 156, 157, 161, 165, 168, 171, 180, 182, 202, 203, 224, 225, 229, 237, 244, 245, 248, 257, 262, 281, 291], "\u3044\u304f\u3064\u304b\u3082": 45, "\u3044\u304f\u3089": [0, 51], "\u3044\u305a\u308c": [44, 89, 93, 282], "\u3044\u305a\u308c\u304b": [43, 44], "\u3044\u3063": [156, 158, 237, 244], "\u3044\u3064": [52, 250], "\u3044\u3066": [41, 44, 51, 52, 90], "\u3044\u307e": 302, "\u3044\u307e\u305b": [6, 26, 41, 42, 43, 44, 45, 48, 49, 51, 53, 54, 95, 96, 111, 132, 134, 135, 137, 156, 159, 161, 168, 177, 197, 224, 225, 227, 231, 235, 239, 243, 244, 245, 246, 247, 248, 254, 262, 264, 274, 278, 291, 292, 302], "\u3044\u307e\u307e\u3067": [42, 43, 275], "\u3044\u308b": [0, 6, 10, 11, 12, 14, 17, 18, 21, 26, 27, 31, 32, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 74, 81, 91, 94, 96, 99, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 118, 120, 121, 123, 124, 125, 126, 127, 131, 132, 133, 134, 135, 139, 140, 141, 142, 143, 144, 145, 149, 151, 152, 153, 154, 155, 156, 158, 161, 162, 164, 167, 168, 169, 173, 175, 176, 177, 178, 180, 183, 188, 193, 194, 195, 196, 197, 205, 206, 210, 224, 225, 226, 228, 229, 237, 240, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 260, 261, 262, 264, 265, 266, 267, 268, 276, 279, 280, 292, 296, 299, 301, 302, 303, 305, 306, 307, 308, 310, 311, 312, 313, 315], "\u3044\u308c": [31, 47, 50, 51, 99, 137, 142, 219, 224, 225, 264, 305, 310], "\u3044\u308d\u3044\u308d": [22, 304, 311], "\u3044\u308f\u3086\u308b": [56, 307], "\u3044\u30fc": [44, 231, 232, 233, 234, 235], "\u3045\u3046": [44, 231, 232, 233, 234, 235], "\u3045\u30fc": [44, 231, 232, 233, 234, 235], "\u3046\u3046": [44, 231, 232, 233, 234, 235], "\u3046\u3048": [39, 47], "\u3046\u3048\u3048": [231, 232, 233, 234, 235, 258, 259], "\u3046\u3061": [11, 39, 43, 44, 47, 50, 54, 56, 93, 108, 111, 132, 141, 156, 158, 171, 183, 239], "\u3046\u3061\u3044": 175, "\u3046\u3061\u3069\u308c": 149, "\u3046\u3063\u304b\u308a": 48, "\u3046\u307e\u304f": [3, 4, 22, 50, 51], "\u3046\u30fc": [44, 231, 232, 233, 234, 235], "\u3047\u3048": [44, 231, 232, 233, 234, 235, 258, 259], "\u3047\u304a": [231, 232, 233, 234, 235, 257, 258, 259], "\u3047\u30fc": [44, 231, 232, 233, 234, 235], "\u3048\u3048": [44, 231, 232, 233, 234, 235], "\u3048\u30fc": [44, 231, 232, 233, 234, 235], "\u3049\u304a": [44, 231, 232, 233, 234, 235], "\u3049\u30fc": [44, 231, 232, 233, 234, 235], "\u304a\u3044": [0, 12, 14, 17, 39, 48, 51, 52, 53, 89, 180, 305, 308], "\u304a\u304a": [44, 231, 232, 233, 234, 235], "\u304a\u304a\u3084\u3084\u3086\u3086": [231, 232, 233, 234, 235, 258, 259], "\u304a\u304b": 31, "\u304a\u304b\u3052": 244, "\u304a\u304b\u3057": 37, "\u304a\u304b\u3057\u3044": 51, "\u304a\u304b\u3057\u304f": 37, "\u304a\u304d": [0, 12, 52, 56, 58], "\u304a\u304d\u307e\u3057\u3087": 305, "\u304a\u304f": [12, 225, 305], "\u304a\u3051": [156, 240], "\u304a\u3051\u308b": [0, 34, 47, 48, 56, 224, 282, 305, 307, 308], "\u304a\u3053": [0, 305], "\u304a\u3053\u306a\u3063": 308, "\u304a\u3055\u3089\u3044\u3057": 10, "\u304a\u3059\u3059\u3081": [124, 196, 292], "\u304a\u3059\u3059\u3081\u3057": [41, 42, 44, 123, 224, 225, 244, 296], "\u304a\u305d\u3089\u304f": [42, 51], "\u304a\u3070": [36, 39, 48, 50, 51, 54], "\u304a\u3070\u305f": [39, 48, 50, 51, 54], "\u304a\u3083": [231, 232, 233, 234, 235, 258, 259], "\u304a\u3088\u3073": [0, 8, 22, 23, 44, 47, 52, 53, 56, 156, 175, 305, 308], "\u304a\u3089": [43, 56], "\u304a\u308a": [41, 49, 315], "\u304a\u30fc": [44, 231, 232, 233, 234, 235], "\u304a\u4f7f\u3044": 42, "\u304a\u5e97": 43, "\u304a\u5f85\u3061": 2, "\u304a\u77e5\u3089": 22, "\u304a\u9858\u3044": [10, 176], "\u304by": 48, "\u304b\u3042": [44, 231, 232, 233, 234, 235], "\u304b\u3048\u3063": [94, 156], "\u304b\u3048\u308b": [50, 210], "\u304b\u304b\u304d\u304d\u304f\u304f\u3051\u3051": [231, 232, 233, 234, 235, 258, 259], "\u304b\u304b\u3063": [43, 52, 95, 96, 156], "\u304b\u304b\u308a": [45, 51, 53, 173, 224, 225, 226, 274], "\u304b\u304b\u308b": [153, 173, 226, 308], "\u304b\u304b\u308f\u3089\u305a": 53, "\u304b\u304c\u304d\u304e\u304f\u3050\u3051\u3052": [231, 232, 233, 234, 235, 258, 259], "\u304b\u304e\u308a": 176, "\u304b\u3051": [48, 109], "\u304b\u3051\u308b": [10, 177], "\u304b\u3053\u308c": 52, "\u304b\u3057\u3089": [45, 143], "\u304b\u305a": [47, 49, 51], "\u304b\u305a\u3072\u3053\u3055\u3093": 47, "\u304b\u305f": [50, 51], "\u304b\u3061": [156, 299], "\u304b\u3061\u3083\u3093": [137, 163], "\u304b\u3064": [41, 43, 44, 45, 48, 53, 54, 156, 173, 208, 225, 299], "\u304b\u3064\u3059\u3079": 224, "\u304b\u3068": [56, 156], "\u304b\u3069": [41, 42, 43, 44, 45, 49, 50, 54, 105, 106, 122, 123, 124, 125, 132, 134, 135, 137, 140, 143, 149, 150, 156, 159, 163, 173, 177, 183, 189, 190, 195, 224, 301, 303, 308, 315], "\u304b\u3069\u3046": [12, 31, 41, 43, 44, 45, 50, 51, 94, 100, 111, 115, 124, 129, 135, 142, 152, 155, 156, 170, 183, 186, 202, 203, 210, 301], "\u304b\u306a\u308a": 49, "\u304b\u307e\u3044": 308, "\u304b\u3082": [10, 42, 43, 44, 49, 50, 54, 56, 81, 95, 96, 111, 114, 125, 126, 127, 132, 134, 138, 139, 140, 153, 154, 155, 156, 158, 161, 163, 164, 169, 173, 180, 195, 205, 224, 225, 244, 245, 246, 247, 310], "\u304b\u3084": 105, "\u304b\u3089": [0, 3, 9, 11, 12, 17, 18, 22, 23, 26, 27, 34, 36, 37, 39, 40, 41, 42, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 87, 93, 94, 95, 96, 105, 106, 110, 111, 114, 118, 121, 122, 124, 125, 132, 134, 135, 137, 140, 141, 142, 144, 149, 151, 152, 153, 156, 157, 158, 159, 161, 163, 164, 167, 173, 174, 175, 176, 177, 183, 188, 189, 193, 194, 196, 198, 201, 203, 204, 205, 206, 208, 209, 210, 219, 220, 223, 224, 225, 226, 227, 228, 229, 231, 234, 235, 239, 243, 244, 245, 246, 247, 250, 251, 252, 253, 254, 261, 262, 264, 265, 266, 267, 268, 272, 274, 276, 278, 282, 286, 292, 295, 296, 298, 301, 302, 305, 308, 310, 311, 314, 315], "\u304b\u308b": 52, "\u304b\u308f": [43, 44, 52], "\u304b\u308f\u304b\u3063": 149, "\u304b\u308f\u304b\u308a": [43, 44, 54], "\u304b\u308f\u308a": [42, 49, 50, 51, 301], "\u304b\u30fc": [44, 231, 232, 233, 234, 235], "\u304c\u3042": [44, 231, 232, 233, 234, 235], "\u304c\u3042\u308a": [12, 19, 141, 156, 188, 243, 248, 260, 261], "\u304c\u3042\u308c": [51, 248], "\u304c\u3044": [58, 156], "\u304c\u3044\u304f\u3064\u304b": [134, 141], "\u304c\u304e\u3052\u3054": [231, 235], "\u304c\u3053\u306e": [156, 224], "\u304c\u3059": [52, 125, 140], "\u304c\u305d\u306e": 111, "\u304c\u305d\u308c\u305e\u308c": 156, "\u304c\u305f\u304f": 156, "\u304c\u3061": [111, 262], "\u304c\u3063": [27, 31, 41, 42, 43, 44, 45, 53, 54, 111, 112, 132, 134, 135, 156, 244, 272, 274], "\u304c\u3064\u3044": [37, 44, 47, 81, 91, 156, 248, 254], "\u304c\u3064\u304d": 173, "\u304c\u3069": [43, 44, 53, 155, 228, 281], "\u304c\u3072\u3068\u3064": 243, "\u304c\u3088\u308a": 43, "\u304c\u308b": [54, 310], "\u304c\u308f\u304b\u3063": 111, "\u304c\u308f\u304b\u308a": [42, 43, 54, 110, 111, 135, 156, 194, 265, 266, 267, 268, 302, 311], "\u304c\u308f\u304b\u308b": 188, "\u304c\u308f\u304b\u308c": 156, "\u304c\u30fc": [44, 231, 232, 233, 234, 235], "\u304d\u3044": [44, 231, 232, 233, 234, 235], "\u304d\u30fc": [44, 231, 232, 233, 234, 235], "\u304e\u3044": [44, 231, 232, 233, 234, 235], "\u304e\u30fc": [44, 231, 232, 233, 234, 235], "\u304f\u3046": [44, 231, 232, 233, 234, 235], "\u304f\u3060": [0, 2, 5, 6, 7, 8, 12, 17, 18, 24, 25, 26, 27, 28, 30, 31, 32, 33, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 54, 87, 90, 91, 96, 98, 99, 100, 104, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 176, 177, 178, 180, 186, 188, 194, 197, 201, 202, 203, 205, 210, 224, 225, 227, 228, 237, 240, 243, 244, 254, 264, 281, 282, 290, 292, 296, 301, 303, 305, 306, 308, 311, 312, 313, 315], "\u304f\u308c": [10, 275], "\u304f\u308c\u308b": [0, 16, 17, 31, 43, 118, 124], "\u304f\u30fc": [44, 231, 232, 233, 234, 235], "\u3050\u3046": [44, 231, 232, 233, 234, 235], "\u3050\u3088\u3046": 188, "\u3050\u308b": [50, 51, 52, 223, 224, 225], "\u3050\u308b\u3093": [224, 225, 307], "\u3050\u30fc": [44, 231, 232, 233, 234, 235], "\u3051\u3048": [44, 231, 232, 233, 234, 235], "\u3051\u3069": 173, "\u3051\u30fc": [44, 231, 232, 233, 234, 235], "\u3052\u3048": [44, 231, 232, 233, 234, 235], "\u3053\u3046": [10, 43], "\u3053\u3046\u3059\u308c": 10, "\u3053\u304a": [44, 231, 232, 233, 234, 235], "\u3053\u3053": [12, 21, 95, 96, 111, 126, 156, 159, 224, 225, 229, 237, 243, 301, 302, 305, 308, 311, 315], "\u3053\u3053\u304b\u3089": 111, "\u3053\u3053\u3055": [231, 232, 233, 234, 235, 258, 259], "\u3053\u3053\u3067": [12, 302], "\u3053\u3054": [231, 232, 233, 234, 235, 258, 259], "\u3053\u3061\u3089": [17, 180, 194, 198, 202, 243, 308, 310], "\u3053\u3068": [0, 1, 3, 6, 7, 8, 9, 10, 11, 12, 14, 17, 18, 20, 21, 23, 24, 25, 26, 27, 28, 31, 32, 33, 36, 37, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 61, 84, 87, 89, 90, 91, 93, 94, 96, 98, 99, 100, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 130, 132, 134, 135, 137, 138, 141, 143, 144, 145, 147, 149, 150, 151, 152, 153, 156, 157, 161, 162, 163, 164, 165, 167, 168, 171, 173, 174, 175, 176, 177, 178, 180, 183, 185, 186, 188, 189, 190, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 208, 209, 210, 223, 224, 225, 226, 227, 228, 229, 231, 232, 233, 234, 235, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 272, 274, 275, 276, 281, 282, 291, 292, 295, 296, 298, 301, 302, 303, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "\u3053\u306a\u3044": [49, 50], "\u3053\u306e": [0, 2, 3, 5, 6, 7, 8, 11, 12, 17, 18, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 61, 68, 74, 81, 85, 87, 90, 91, 92, 95, 96, 98, 99, 100, 101, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 176, 177, 180, 182, 183, 186, 188, 189, 191, 192, 193, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 222, 224, 225, 226, 227, 228, 231, 232, 233, 234, 235, 237, 238, 240, 241, 243, 244, 245, 246, 247, 248, 249, 250, 251, 253, 254, 257, 258, 259, 264, 265, 266, 268, 274, 275, 276, 277, 278, 281, 283, 286, 291, 292, 298, 299, 301, 305, 306, 307, 308, 309, 310, 311, 314, 315], "\u3053\u308c": [0, 6, 11, 12, 16, 17, 18, 27, 31, 34, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 84, 91, 96, 99, 107, 110, 111, 114, 124, 125, 126, 127, 128, 132, 133, 134, 135, 137, 140, 142, 144, 145, 149, 151, 152, 153, 156, 157, 161, 164, 168, 175, 177, 180, 183, 186, 188, 193, 197, 201, 202, 205, 206, 210, 211, 224, 225, 226, 227, 229, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 262, 264, 272, 274, 276, 281, 292, 298, 299, 301, 303, 305, 306, 310, 311, 314, 315], "\u3053\u308c\u3089": [3, 17, 18, 24, 25, 28, 31, 32, 41, 42, 43, 44, 45, 47, 48, 89, 90, 91, 104, 111, 124, 132, 133, 134, 135, 137, 138, 142, 144, 145, 149, 151, 156, 171, 173, 175, 177, 180, 188, 195, 203, 206, 223, 224, 225, 230, 241, 244, 245, 248, 252, 253, 254, 292, 301, 306, 307, 308, 311], "\u3053\u30fc": [44, 231, 232, 233, 234, 235], "\u3054\u304a": [44, 231, 232, 233, 234, 235], "\u3054\u3068": [9, 12, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 54, 90, 125, 133, 156, 158, 168, 191, 192, 202, 205, 245, 281, 286, 302, 303, 309], "\u3054\u307f": [10, 44, 48], "\u3054\u3089\u3093\u304f": 13, "\u3054\u30fc": [44, 231, 232, 233, 234, 235], "\u3054\u89a7\u304f": [14, 308], "\u3055\u3042": [44, 231, 232, 233, 234, 235], "\u3055\u3044": [0, 2, 5, 6, 7, 8, 12, 14, 17, 18, 24, 25, 26, 27, 28, 30, 31, 32, 33, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 87, 90, 91, 96, 98, 99, 100, 104, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 176, 177, 178, 180, 186, 188, 194, 197, 201, 202, 203, 205, 210, 224, 225, 227, 228, 237, 240, 243, 244, 254, 264, 281, 282, 290, 292, 296, 301, 303, 305, 306, 308, 311, 312, 313, 315], "\u3055\u304c": 302, "\u3055\u304d": 305, "\u3055\u3056\u3057\u3058\u3059": [231, 232, 233, 234, 235, 258, 259], "\u3055\u3057\u3057\u3059\u3059\u305b": [231, 232, 233, 234, 235, 258, 259], "\u3055\u305b": 10, "\u3055\u306a\u304f": [224, 225], "\u3055\u307e\u3056\u307e\u306a": [22, 304, 311], "\u3055\u3089": 310, "\u3055\u3089\u306b": [0, 34, 49, 50, 56, 91, 93, 132, 134, 135, 183, 196, 203, 252, 254, 302, 307, 308], "\u3055\u3093": [6, 17, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 91, 111, 132, 134, 135, 137, 156, 161, 163, 165, 168, 231, 232, 233, 234, 235, 244, 247, 252, 274, 281, 292, 306], "\u3055\u30fc": [44, 231, 232, 233, 234, 235], "\u3056\u3042": [44, 231, 232, 233, 234, 235], "\u3056\u3058\u305c\u305e": [231, 235], "\u3056\u30fc": [44, 231, 232, 233, 234, 235], "\u3057\u3044": [44, 231, 232, 233, 234, 235, 299, 301], "\u3057\u3046\u308b": 49, "\u3057\u304b": [17, 41, 43, 45, 49, 50, 58, 94, 111, 132, 134, 135, 156, 161, 177, 195, 224, 225, 244, 246, 247, 262, 264, 277, 278, 292, 305, 310], "\u3057\u304b\u3057": [17, 41, 43, 44, 45, 52, 111, 135, 137, 143, 156, 186, 225, 243, 244, 247, 264, 281, 292, 299, 301, 310], "\u3057\u304d\u3044": [41, 42, 43, 44, 53, 54, 186], "\u3057\u304d\u3063": [197, 227], "\u3057\u304d\u308c": 47, "\u3057\u304f": 48, "\u3057\u3059\u304e\u308b": 41, "\u3057\u305f": 103, "\u3057\u3064\u3064": 14, "\u3057\u3066": [6, 10, 12, 14, 17, 18, 31, 32, 37, 42, 43, 45, 47, 48, 156, 173, 177, 197, 301, 306, 307, 308], "\u3057\u306a\u3044": [44, 50], "\u3057\u306a\u304f": 41, "\u3057\u307e": 10, "\u3057\u307e\u3044": [10, 18, 43, 44, 45, 52, 149, 163, 176, 246, 251, 301, 305, 313], "\u3057\u307e\u3046": [0, 10, 12, 18, 37, 39, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 94, 125, 156, 163, 173, 264], "\u3057\u307e\u3057": [43, 44, 48, 53], "\u3057\u307e\u3057\u3087": [18, 91, 163, 245, 246, 247, 264, 314], "\u3057\u307e\u3059": [12, 44, 45, 111, 132, 134, 135, 156, 180, 186, 197, 202, 224, 225, 252, 275, 276, 299, 311], "\u3057\u307e\u305b": [10, 31, 45, 134, 135, 156, 177, 180, 244, 250, 272, 301], "\u3057\u307e\u3063": [49, 51, 52], "\u3057\u3084\u3059\u3044": [45, 180, 237], "\u3057\u3084\u3059\u304f": [18, 42, 47, 51], "\u3057\u3084\u3059\u304f\u3057": 42, "\u3057\u3088": [11, 39, 43, 45, 48, 51, 52, 114, 115, 125, 137, 156, 163, 164, 188, 226, 305], "\u3057\u3089": 45, "\u3057\u308a": 10, "\u3057\u308c": [10, 42, 43, 44, 49, 50, 54, 56, 81, 95, 96, 111, 114, 125, 126, 127, 132, 134, 138, 139, 140, 153, 154, 155, 156, 158, 161, 163, 164, 169, 173, 180, 195, 205, 224, 225, 244, 245, 246, 247, 310], "\u3057\u30fc": [44, 231, 232, 233, 234, 235], "\u3058\u3044": [44, 231, 232, 233, 234, 235], "\u3058\u304d": 99, "\u3058\u3083\u3093": 56, "\u3058\u308b": 54, "\u3058\u30fc": [44, 231, 232, 233, 234, 235], "\u3059\u3046": [44, 231, 232, 233, 234, 235], "\u3059\u304e\u307e\u305b": 307, "\u3059\u304e\u308b": [45, 53, 91], "\u3059\u304f": 210, "\u3059\u3050": [0, 54, 153, 157, 180, 292], "\u3059\u3053\u308c\u3089": 156, "\u3059\u3067": [12, 41, 42, 45, 49, 81, 114, 124, 164, 168, 226, 240, 281, 299], "\u3059\u3068": 111, "\u3059\u306a\u308f\u3061": 305, "\u3059\u3079": [11, 18, 39, 43, 44, 45, 49, 50, 53, 54, 90, 93, 94, 109, 110, 111, 122, 124, 125, 127, 132, 134, 135, 136, 137, 141, 149, 152, 156, 163, 164, 168, 170, 173, 176, 177, 195, 219, 224, 225, 231, 235, 250, 254, 264, 281, 292, 298, 311], "\u3059\u3079\u304d": 11, "\u3059\u3079\u3066": [31, 37, 39, 42, 44, 45, 47, 49, 50, 53, 58, 74, 91, 93, 94, 98, 99, 110, 111, 112, 114, 124, 125, 132, 137, 149, 150, 156, 160, 161, 164, 168, 176, 177, 183, 224, 225, 228, 244, 260, 268, 271, 281, 306, 308], "\u3059\u308b": [0, 1, 2, 3, 4, 9, 11, 17, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 68, 74, 81, 84, 85, 89, 93, 95, 96, 97, 98, 104, 106, 107, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 138, 140, 141, 143, 144, 145, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 170, 172, 173, 174, 175, 176, 178, 180, 183, 184, 185, 186, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 208, 209, 210, 211, 212, 219, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232, 233, 234, 235, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 249, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 272, 274, 275, 276, 277, 278, 279, 280, 281, 282, 286, 291, 292, 295, 296, 298, 299, 300, 302, 304, 305, 307, 308, 309, 311, 312, 313, 314, 315], "\u3059\u308b\u304b": 306, "\u3059\u308c": [0, 18, 42, 43, 44, 46, 50, 144, 151, 156, 176, 183, 192, 195, 224, 225, 274, 306, 308], "\u3059\u30fc": [44, 231, 232, 233, 234, 235], "\u305a\u3041\u305a\u3043\u305a\u3047\u305a\u3049": [231, 235], "\u305a\u3046": [44, 231, 232, 233, 234, 235], "\u305a\u305b": [231, 232, 233, 234, 235, 258, 259], "\u305a\u3064": [111, 156, 175, 176, 281, 310], "\u305a\u306b": [18, 91], "\u305a\u308c": [0, 11, 93, 125, 130, 175, 188, 282, 298, 305], "\u305a\u308c\u308b": [44, 45], "\u305a\u30fc": [44, 231, 232, 233, 234, 235], "\u305b\u3044": [48, 49, 51, 52], "\u305b\u3044\u305c\u3044": 161, "\u305b\u3048": [44, 231, 232, 233, 234, 235], "\u305b\u304b\u306d": 51, "\u305b\u305a": [111, 128], "\u305b\u306a": [224, 225], "\u305b\u308b": [0, 11, 14, 42, 43, 45, 53, 111, 161, 180, 191, 192, 193, 201, 202, 231, 235, 257, 258, 259, 296], "\u305b\u308c": [0, 110], "\u305b\u3093\u306a": 56, "\u305b\u30fc": [44, 231, 232, 233, 234, 235], "\u305c\u3048": [44, 231, 232, 233, 234, 235], "\u305c\u30fc": [44, 231, 232, 233, 234, 235], "\u305d\u3046": [10, 12, 18, 21, 31, 41, 42, 52, 74, 131, 140, 141, 142, 153, 155, 156, 183, 195, 196, 219, 225], "\u305d\u3046\u3044\u3046": 56, "\u305d\u3046\u3044\u3063": 52, "\u305d\u304a": [44, 231, 232, 233, 234, 235], "\u305d\u3053": [56, 134, 156, 301, 305], "\u305d\u3053\u306b": 162, "\u305d\u3053\u307e\u3067": 54, "\u305d\u3057": [22, 111], "\u305d\u3057\u3066": [0, 31, 44, 111, 156, 168, 205, 206, 305, 306, 310, 311], "\u305d\u305d\u305f": [231, 232, 233, 234, 235, 258, 259], "\u305d\u305e": [231, 232, 233, 234, 235, 258, 259], "\u305d\u3061\u3089": [31, 51, 52], "\u305d\u306e": [0, 6, 7, 10, 11, 12, 17, 18, 22, 23, 24, 25, 28, 30, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 74, 91, 93, 94, 96, 99, 100, 106, 111, 112, 121, 122, 123, 124, 125, 132, 134, 135, 137, 142, 149, 150, 152, 153, 156, 158, 161, 163, 167, 173, 175, 176, 177, 183, 186, 195, 201, 202, 205, 219, 221, 224, 225, 228, 229, 237, 245, 247, 248, 250, 254, 260, 264, 272, 274, 275, 276, 278, 281, 282, 295, 298, 299, 301, 303, 306, 307, 308, 310, 311, 312, 313, 315], "\u305d\u306e\u3046\u3061": 156, "\u305d\u306e\u305b\u3044": 52, "\u305d\u306e\u307e\u307e": 41, "\u305d\u306e\u3088\u3046": 121, "\u305d\u306e\u5f8c": [12, 43, 44, 58, 94, 111, 156, 225], "\u305d\u308c": [11, 12, 17, 30, 33, 37, 41, 43, 44, 50, 53, 56, 111, 112, 124, 132, 135, 156, 161, 163, 177, 194, 198, 221, 224, 225, 244, 253, 264, 282, 299, 301, 305, 306, 308, 310, 314], "\u305d\u308c\u304b\u3089": [91, 156], "\u305d\u308c\u305e\u308c": [6, 11, 14, 18, 31, 41, 43, 44, 49, 52, 56, 95, 111, 125, 156, 161, 168, 175, 180, 191, 193, 195, 202, 219, 225, 241, 254, 286, 298, 299, 301, 305, 306, 308, 310, 315], "\u305d\u308c\u3086\u3048": [224, 305], "\u305d\u308c\u3089": [27, 42, 44, 50, 52, 53, 58, 60, 81, 90, 124, 137, 156, 157, 163, 171, 174, 231, 243, 244, 292], "\u305d\u308d\u305d\u308d": 308, "\u305d\u3093\u306a": [31, 161], "\u305d\u30fc": [44, 231, 232, 233, 234, 235], "\u305e\u3044": [134, 135], "\u305e\u304a": [44, 231, 232, 233, 234, 235], "\u305e\u308c": [11, 12, 156, 177, 225, 253], "\u305e\u30fc": [44, 231, 232, 233, 234, 235], "\u305f\u3042": [44, 231, 232, 233, 234, 235], "\u305f\u3044": [6, 7, 8, 16, 18, 24, 25, 27, 28, 30, 31, 32, 34, 39, 41, 42, 43, 49, 51, 52, 54, 56, 58, 90, 110, 111, 114, 132, 133, 137, 138, 140, 143, 149, 154, 155, 156, 161, 163, 165, 168, 173, 175, 176, 177, 180, 194, 196, 201, 205, 206, 224, 243, 244, 250, 253, 260, 262, 264, 274, 275, 282, 298, 305, 306, 307, 308, 310, 312], "\u305f\u3044\u304f\u3064\u304b": [51, 237], "\u305f\u304b": [39, 41, 50, 54, 96, 117, 124, 126, 127, 128, 153, 156, 180, 251], "\u305f\u304b\u3063": [45, 251, 314], "\u305f\u304c\u3063": 111, "\u305f\u304f": [6, 17, 39, 41, 43, 44, 45, 48, 50, 51, 56, 81, 91, 111, 123, 132, 134, 135, 137, 156, 161, 163, 165, 168, 244, 247, 252, 281, 292, 306], "\u305f\u3051": 56, "\u305f\u3051\u3069": 156, "\u305f\u3055\u3093": [36, 39, 48, 50, 51, 52, 54], "\u305f\u3057\u304d\u3044": 186, "\u305f\u3059\u3079\u3066": 156, "\u305f\u3060": [41, 42, 43, 44, 45, 54, 91, 111, 237], "\u305f\u3060\u3044": 41, "\u305f\u3060\u304d": 52, "\u305f\u3060\u3051": 47, "\u305f\u3060\u3057": [34, 36, 39, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 89, 111, 134, 141, 156, 158, 175, 186, 224, 225, 231, 235, 244, 272, 299], "\u305f\u3060\u3061": [231, 232, 233, 234, 235, 258, 259], "\u305f\u3061": 248, "\u305f\u3061\u3061\u3064\u3064": [231, 232, 233, 234, 235, 258, 259], "\u305f\u3068\u3048": [137, 156, 157, 301], "\u305f\u3069\u3063": 311, "\u305f\u3069\u308b": [56, 307], "\u305f\u3070\u304b\u308a": 226, "\u305f\u3073": [12, 51, 93, 176, 315], "\u305f\u3076\u3093": 31, "\u305f\u3079": [257, 258, 259], "\u305f\u307b\u3046": 156, "\u305f\u307e\u307e": [51, 292], "\u305f\u3081": [0, 1, 2, 3, 4, 5, 6, 8, 12, 14, 17, 19, 21, 22, 23, 24, 25, 27, 28, 31, 32, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 68, 81, 84, 87, 91, 94, 95, 98, 100, 106, 108, 111, 114, 121, 122, 123, 124, 125, 126, 132, 134, 137, 141, 142, 143, 149, 150, 155, 161, 163, 164, 173, 174, 175, 176, 177, 178, 180, 183, 184, 186, 188, 189, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 228, 229, 237, 243, 244, 245, 246, 247, 248, 250, 251, 253, 254, 257, 258, 259, 260, 261, 272, 274, 275, 276, 278, 281, 286, 292, 296, 298, 299, 301, 303, 305, 306, 307, 308, 309, 310, 311, 313, 315], "\u305f\u3081\u3057": 315, "\u305f\u3082\u306e": 56, "\u305f\u3089": [10, 12, 17, 18, 31, 37, 41, 43, 44, 49, 50, 51, 54, 56, 81, 84, 111, 118, 126, 127, 128, 134, 137, 142, 149, 150, 152, 153, 156, 157, 163, 167, 173, 180, 183, 198, 210, 225, 237, 246, 250, 264, 292, 296, 310], "\u305f\u308a": [0, 3, 10, 12, 41, 43, 44, 45, 49, 50, 51, 52, 54, 96, 111, 123, 124, 125, 155, 156, 161, 191, 223, 244, 254, 282, 296], "\u305f\u308f\u3051": 56, "\u305f\u30fc": [44, 231, 232, 233, 234, 235], "\u3060\u3042": [44, 231, 232, 233, 234, 235], "\u3060\u3044": [39, 49], "\u3060\u304b\u3089": [132, 135, 156], "\u3060\u3051": [3, 6, 11, 17, 18, 23, 27, 28, 31, 32, 33, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 56, 68, 84, 96, 97, 99, 100, 107, 111, 112, 114, 121, 124, 125, 128, 132, 133, 134, 135, 137, 140, 141, 142, 144, 149, 151, 153, 154, 156, 158, 161, 163, 164, 167, 168, 170, 173, 177, 178, 180, 183, 194, 198, 202, 205, 206, 210, 219, 221, 224, 225, 226, 227, 228, 243, 244, 245, 246, 247, 248, 254, 262, 267, 268, 274, 276, 291, 292, 296, 301, 305, 310], "\u3060\u3051\u304d\u3061\u3093": 51, "\u3060\u3055\u3044": [0, 3, 6, 7, 12, 13, 14, 17, 18, 19, 21, 23, 27, 31, 32, 41, 44, 47, 49, 50, 52, 54, 74, 91, 94, 95, 110, 111, 132, 133, 134, 135, 137, 140, 141, 143, 150, 156, 158, 161, 163, 177, 180, 195, 197, 201, 202, 203, 206, 219, 224, 225, 232, 233, 234, 235, 236, 243, 244, 248, 250, 257, 258, 259, 283, 292, 298, 306, 308], "\u3060\u3057": [39, 176], "\u3060\u3059": 51, "\u3060\u3063": [41, 43, 47, 50, 51, 53, 56, 93, 123, 124, 142, 156, 186, 225, 286, 301, 302], "\u3060\u3068": [10, 156], "\u3060\u3089": 125, "\u3060\u308d": 56, "\u3060\u30fc": [44, 231, 232, 233, 234, 235], "\u3061\u3044": [44, 231, 232, 233, 234, 235], "\u3061\u3083\u3093": 307, "\u3061\u3083\u3093\u306d\u308b": 56, "\u3061\u308b": 111, "\u3061\u30fc": [44, 231, 232, 233, 234, 235], "\u3062\u3044": [44, 231, 232, 233, 234, 235], "\u3062\u3064\u3065": [231, 232, 233, 234, 235, 258, 259], "\u3062\u30fc": [44, 231, 232, 233, 234, 235], "\u3064\u3044": 311, "\u3064\u3046": [44, 231, 232, 233, 234, 235], "\u3064\u304b": 38, "\u3064\u304b\u3046": [43, 44], "\u3064\u304b\u3063": 53, "\u3064\u304d": [34, 49, 51, 52, 91, 107, 154, 156, 167, 194, 243, 246], "\u3064\u3051": [41, 42, 43, 156, 180, 188], "\u3064\u3051\u308b": [10, 49, 51, 91, 156, 295, 313], "\u3064\u3064": [56, 202, 301], "\u3064\u3065\u3044": 311, "\u3064\u3065\u304f": 180, "\u3064\u3076\u3084\u304d": 226, "\u3064\u307e\u308a": [43, 50, 111, 118, 156, 168, 272], "\u3064\u30fc": [44, 231, 232, 233, 234, 235], "\u3065\u3046": [44, 231, 232, 233, 234, 235], "\u3065\u3051": [47, 48, 202], "\u3065\u3051\u308b": 58, "\u3065\u30fc": [44, 231, 232, 233, 234, 235], "\u3066\u3048": [44, 231, 232, 233, 234, 235], "\u3066\u304d": 100, "\u3066\u304f": 14, "\u3066\u307f\u307e\u3057\u3087": 315, "\u3066\u308c": 137, "\u3066\u30fc": [44, 231, 232, 233, 234, 235], "\u3067\u3042\u3044\u307e\u3044": 156, "\u3067\u3044": [41, 50, 156, 225, 305, 311], "\u3067\u3044\u3046": [229, 306], "\u3067\u3048": [44, 231, 232, 233, 234, 235], "\u3067\u304d": [0, 1, 6, 7, 10, 11, 12, 13, 14, 17, 18, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 61, 68, 84, 87, 89, 90, 91, 93, 94, 96, 97, 98, 99, 100, 101, 106, 107, 110, 111, 112, 114, 115, 116, 117, 118, 122, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 138, 140, 141, 142, 143, 144, 145, 149, 151, 152, 153, 154, 155, 156, 157, 159, 161, 164, 165, 166, 167, 168, 171, 173, 174, 175, 176, 177, 178, 180, 183, 184, 185, 186, 188, 189, 190, 191, 192, 193, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 208, 209, 210, 219, 223, 224, 225, 226, 227, 228, 229, 231, 232, 233, 234, 235, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 272, 274, 275, 276, 277, 278, 281, 291, 292, 295, 296, 298, 301, 302, 303, 305, 306, 307, 308, 309, 310, 312, 313, 314, 315], "\u3067\u304d\u305a": 54, "\u3067\u304d\u308b": [0, 3, 6, 9, 12, 14, 27, 31, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 68, 91, 96, 106, 110, 111, 122, 133, 137, 143, 155, 156, 159, 161, 171, 175, 176, 177, 180, 183, 184, 189, 195, 202, 203, 206, 224, 225, 226, 239, 240, 243, 244, 246, 247, 248, 250, 264, 275, 281, 292, 301, 305, 306, 311, 312, 313], "\u3067\u304f": [3, 18, 21, 23, 49, 91, 111, 156, 161, 180, 201, 225, 243], "\u3067\u3053\u306e": [44, 53, 281], "\u3067\u3057": [41, 42, 43, 44, 45, 46, 49, 50, 51, 52, 53, 56, 225, 245, 302, 305], "\u3067\u3057\u304b": [7, 34, 42, 262, 277], "\u3067\u3057\u304d\u3044": 42, "\u3067\u3057\u3087": [0, 6, 20, 31, 49, 53, 111, 125, 141, 142, 149, 156, 173, 180, 205, 225, 226, 306], "\u3067\u3059": [0, 3, 6, 7, 8, 10, 11, 12, 14, 16, 17, 18, 19, 21, 24, 25, 27, 28, 31, 32, 34, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 103, 106, 107, 108, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 173, 174, 175, 176, 177, 178, 180, 181, 183, 184, 186, 188, 189, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 286, 291, 292, 295, 296, 298, 299, 301, 302, 303, 305, 306, 308, 309, 310, 311, 312, 314, 315], "\u3067\u3059\u306d": 10, "\u3067\u3059\u3079\u3066": 171, "\u3067\u305d\u3046": 133, "\u3067\u3060\u3051": 111, "\u3067\u3064\u306a\u3052\u308b": 156, "\u3067\u3069": [111, 133, 156, 159], "\u3067\u3069\u3053": 100, "\u3067\u306a\u3044": 155, "\u3067\u306a\u3051\u308c": [45, 124, 143, 149, 155, 224, 225, 237], "\u3067\u306b": [43, 51, 52, 53, 125, 140, 144, 151, 226, 301], "\u3067\u306e": [49, 52, 206, 265, 266, 267, 268], "\u3067\u306e\u307f": [41, 111], "\u3067\u306f": 49, "\u3067\u307b\u3068\u3093\u3069": [43, 111], "\u3067\u307e\u3068\u3081": 243, "\u3067\u307f": 0, "\u3067\u3082": [0, 14, 17, 18, 19, 23, 28, 31, 32, 33, 39, 41, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 100, 111, 124, 135, 137, 149, 156, 161, 163, 176, 177, 180, 191, 192, 193, 205, 206, 210, 224, 227, 228, 237, 240, 244, 247, 248, 250, 254, 274, 275, 298, 299, 301, 308, 310, 312, 315], "\u3067\u3082\u3059\u3079\u3066": [51, 264], "\u3067\u3082\u3063\u3068\u3082": 92, "\u3067\u3084": 56, "\u3067\u3088\u308a": [42, 49, 54], "\u3067\u30fc": [44, 231, 232, 233, 234, 235], "\u3067\u5024": [175, 308], "\u3068\u3044\u3044": 244, "\u3068\u3044\u3046": [0, 9, 10, 14, 17, 31, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 68, 91, 93, 98, 99, 108, 111, 118, 124, 126, 127, 128, 132, 134, 135, 138, 140, 141, 143, 144, 145, 149, 151, 152, 153, 154, 156, 158, 159, 161, 163, 167, 168, 171, 173, 175, 176, 177, 178, 180, 188, 193, 197, 201, 202, 203, 206, 210, 223, 224, 225, 229, 231, 236, 237, 241, 243, 244, 245, 246, 247, 248, 250, 251, 254, 260, 261, 262, 264, 265, 266, 267, 268, 272, 274, 277, 278, 281, 282, 292, 298, 299, 301, 302, 305, 306, 307, 308, 310, 311, 312, 315], "\u3068\u3044\u3051": [50, 125, 150, 156, 161, 205, 224, 237, 278, 298, 303, 310], "\u3068\u3044\u3063": [43, 44, 47, 48, 49, 50, 51, 91, 111, 125, 132, 134, 135, 137, 143, 156, 173, 188, 202, 223, 224, 225, 228, 254, 292, 315], "\u3068\u3048": [0, 31, 34, 44, 45, 49, 50, 58, 68, 93, 94, 110, 111, 114, 125, 132, 134, 135, 141, 142, 155, 156, 157, 158, 164, 175, 180, 193, 203, 206, 219, 224, 225, 237, 240, 244, 245, 246, 247, 264, 272, 281, 299, 315], "\u3068\u304a": [44, 231, 232, 233, 234, 235], "\u3068\u304a\u308a": [34, 43, 44, 45, 111, 124, 149, 175, 176, 197, 305, 306, 315], "\u3068\u304b": 56, "\u3068\u304b\u3048\u3063": 156, "\u3068\u304d": [0, 6, 7, 9, 10, 11, 12, 24, 25, 27, 28, 30, 31, 32, 36, 37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 58, 81, 90, 91, 94, 95, 96, 97, 99, 101, 103, 106, 110, 111, 112, 114, 118, 124, 125, 126, 131, 132, 133, 134, 135, 137, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 155, 156, 157, 159, 160, 161, 163, 164, 166, 167, 168, 173, 175, 177, 178, 180, 188, 191, 201, 202, 203, 206, 223, 224, 225, 226, 228, 229, 231, 232, 233, 234, 235, 237, 240, 243, 244, 248, 250, 251, 252, 253, 262, 275, 281, 282, 292, 298, 299, 305, 306, 307, 308, 311, 312], "\u3068\u304d\u3057\u304b": 118, "\u3068\u304d\u3069\u304d": [42, 51], "\u3068\u3053": 18, "\u3068\u3053\u306e": [137, 149, 156, 244, 250, 281], "\u3068\u3053\u308d": [16, 17, 40, 50, 52, 111, 132, 135, 154, 156, 198, 201, 264], "\u3068\u3053\u308d\u3044\u304f\u3064\u304b": 91, "\u3068\u3055\u3089\u306b": 6, "\u3068\u3057": [11, 41, 42, 45, 48, 49, 51, 58, 111, 114, 137, 156, 163, 164, 174, 175, 176, 177, 183, 188, 196, 198, 225, 226, 243, 250, 251, 252, 253, 264, 272, 282, 305, 307, 310], "\u3068\u3057\u3066": [0, 11, 12, 14, 15, 17, 18, 20, 24, 25, 27, 28, 30, 31, 32, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 61, 84, 87, 89, 90, 91, 93, 96, 100, 111, 112, 115, 117, 121, 126, 127, 128, 129, 132, 134, 135, 136, 137, 140, 141, 152, 154, 156, 158, 159, 161, 163, 166, 167, 170, 175, 176, 177, 180, 185, 188, 191, 193, 195, 197, 202, 203, 205, 206, 223, 224, 225, 229, 239, 240, 243, 244, 245, 246, 248, 250, 251, 252, 254, 255, 260, 262, 264, 274, 275, 278, 290, 292, 295, 298, 299, 301, 305, 306, 307, 308, 309, 310, 312, 314, 315], "\u3068\u3057\u307e\u3057\u3087": [310, 314], "\u3068\u3059\u3050": 226, "\u3068\u3059\u3079\u3066": [47, 124, 133, 149, 152, 156, 173], "\u3068\u3059\u308b": [42, 43, 45, 53], "\u3068\u3059\u308c": 0, "\u3068\u305d\u306e": [42, 45, 93, 98, 137, 149, 180, 246], "\u3068\u3063": 177, "\u3068\u3064\u3044": 315, "\u3068\u3066": [0, 43, 44, 52, 56, 125, 156, 224, 225, 250, 254, 292], "\u3068\u3068": [16, 17, 231, 232, 233, 234, 235, 258, 259], "\u3068\u3068\u3082": 74, "\u3068\u3068\u3082\u306b": 305, "\u3068\u3069": [110, 231, 232, 233, 234, 235, 249, 258, 259], "\u3068\u306a\u3063": 48, "\u3068\u306a\u308a": [44, 53, 111, 142, 156, 191, 193, 206, 224, 292, 312], "\u3068\u306e": [50, 51, 134, 135, 225], "\u3068\u307f": [44, 48, 156, 178, 224, 275], "\u3068\u3082": [50, 54, 56, 111, 132, 134, 135, 149, 156, 176, 195, 203, 205, 206, 210, 224, 225, 237, 278, 281, 303, 315], "\u3068\u3082\u3063\u3068": 31, "\u3068\u3088\u3044": 31, "\u3068\u308a": [14, 51, 194, 198, 221], "\u3068\u308a\u3068\u3093": [224, 225], "\u3068\u308b": 56, "\u3068\u308f\u304b\u308a": [248, 302], "\u3068\u308f\u304b\u308b": 12, "\u3068\u30fc": [44, 231, 232, 233, 234, 235], "\u3068\u4f3c": 45, "\u3068\u4f3c\u305f": 96, "\u3069\u3046": [10, 36, 41, 42, 45, 47, 50, 52, 94, 109, 111, 113, 117, 119, 126, 127, 128, 130, 132, 134, 135, 137, 141, 156, 158, 173, 177, 180, 183, 196, 219, 264, 301, 306], "\u3069\u304a": [44, 231, 232, 233, 234, 235], "\u3069\u304a\u308a": [51, 54], "\u3069\u3053": [31, 39, 43, 49, 54], "\u3069\u3061\u3089": [17, 19, 50, 51, 54, 87, 134, 156, 163, 180, 203, 252, 292, 308, 310], "\u3069\u3061\u3089\u304b": [34, 193, 205, 206, 224, 225], "\u3069\u306e": [31, 43, 46, 52, 111, 156, 168, 188, 189, 225, 239, 244, 251, 306, 310], "\u3069\u306e\u304f\u3089\u3044": [41, 96, 156], "\u3069\u308c": [41, 90, 95, 96, 111, 112, 124, 125, 126, 127, 128, 133, 137, 149, 150, 152, 155, 156, 161, 163, 201, 224, 225, 264, 292], "\u3069\u3093": [162, 237], "\u3069\u3093\u306a": [52, 96, 111, 180], "\u3069\u30fc": [44, 231, 232, 233, 234, 235], "\u306a\u3042": [44, 231, 232, 233, 234, 235], "\u306a\u3044": [0, 9, 11, 12, 14, 17, 18, 21, 23, 31, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 74, 81, 90, 91, 93, 94, 95, 96, 99, 101, 103, 106, 107, 108, 110, 111, 112, 115, 116, 118, 122, 123, 124, 125, 131, 132, 133, 134, 135, 140, 141, 142, 143, 149, 150, 153, 154, 155, 156, 157, 158, 159, 161, 167, 168, 173, 174, 175, 176, 177, 178, 180, 184, 191, 192, 193, 194, 196, 201, 202, 205, 206, 210, 219, 223, 224, 225, 226, 237, 239, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 261, 262, 264, 272, 274, 275, 276, 277, 278, 298, 299, 301, 303, 305, 306, 308, 310, 311, 313], "\u306a\u304a": [12, 111, 224, 299], "\u306a\u304a\u3053\u306e": 176, "\u306a\u304a\u3057": 49, "\u306a\u304a\u3059": [49, 152], "\u306a\u304b": [10, 41, 149], "\u306a\u304b\u3063": [41, 42, 43, 47, 49, 50, 51, 52, 54, 93, 97, 99, 106, 109, 111, 113, 119, 126, 127, 128, 130, 137, 143, 152, 156, 157, 173, 175, 176, 183, 186, 205, 208, 210, 225, 244, 246, 301, 308], "\u306a\u304c\u3089": [0, 12, 43, 47, 132, 134, 135, 156, 168, 180, 264, 308], "\u306a\u304c\u308a": 52, "\u306a\u304c\u308b": 47, "\u306a\u304e": 210, "\u306a\u304f": [0, 3, 10, 12, 18, 21, 27, 31, 36, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 91, 111, 112, 123, 124, 126, 131, 135, 137, 141, 144, 149, 151, 156, 161, 163, 173, 176, 177, 183, 197, 202, 205, 206, 210, 219, 223, 224, 225, 237, 239, 240, 244, 245, 246, 247, 254, 267, 268, 281, 286, 292, 296, 305, 306, 308, 310, 314], "\u306a\u304f\u3059": 124, "\u306a\u304f\u3059\u3079": 197, "\u306a\u3051\u308c": [21, 31, 41, 45, 46, 47, 51, 52, 54, 68, 74, 87, 91, 100, 110, 111, 112, 114, 125, 131, 132, 134, 135, 137, 142, 149, 153, 156, 161, 164, 175, 176, 177, 178, 180, 183, 194, 195, 196, 201, 203, 210, 224, 225, 237, 243, 244, 245, 246, 247, 253, 305], "\u306a\u3055": [44, 178, 204], "\u306a\u3055\u3093": 3, "\u306a\u3057": [41, 45, 48, 49, 50, 52, 53, 58, 93, 100, 107, 123, 135, 141, 143, 149, 156, 167, 175, 189, 194, 202, 210, 224, 231, 232, 233, 234, 235, 251, 257, 258, 259, 272, 274, 275, 282, 286, 291, 298, 305], "\u306a\u3059": 190, "\u306a\u305c": [6, 7, 8, 34, 41, 44, 50, 58, 96, 110, 111, 118, 124, 132, 134, 135, 137, 141, 142, 149, 156, 161, 167, 173, 175, 180, 201, 205, 219, 224, 225, 229, 240, 244, 245, 246, 247, 250, 251, 261, 262, 264, 265, 266, 267, 268, 274, 286], "\u306a\u305c\u306a\u3089": 134, "\u306a\u305f": [50, 248], "\u306a\u305f\u3081": 44, "\u306a\u3063": [0, 6, 10, 12, 14, 24, 25, 26, 28, 30, 32, 33, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 91, 93, 94, 95, 108, 111, 118, 125, 126, 134, 141, 156, 168, 197, 208, 209, 224, 225, 228, 246, 248, 250, 281, 292, 296, 301, 302, 305, 308, 310, 311, 312], "\u306a\u3068": [53, 231, 232, 233, 234, 235, 257, 258, 259], "\u306a\u3068\u304d": [0, 52], "\u306a\u3068\u3057\u3066": [257, 258, 259], "\u306a\u3069": [0, 6, 7, 8, 11, 12, 13, 17, 20, 31, 39, 41, 42, 43, 45, 47, 49, 50, 51, 52, 53, 54, 56, 58, 93, 104, 108, 110, 111, 124, 125, 131, 141, 142, 143, 154, 156, 158, 161, 168, 171, 175, 176, 180, 192, 193, 195, 206, 219, 223, 224, 225, 226, 228, 237, 239, 243, 244, 245, 246, 247, 250, 251, 253, 254, 264, 277, 282, 292, 299, 301, 305, 308, 309, 311, 312], "\u306a\u306a\u3069": [224, 225], "\u306a\u306b": [45, 81, 111, 123, 132, 137, 143, 149, 163, 175, 250], "\u306a\u306b\u3088\u308b": [53, 274], "\u306a\u306b\u5bfe\u3057": [224, 225], "\u306a\u306e": [18, 44, 50, 250], "\u306a\u3073": [50, 51, 52], "\u306a\u3078": 53, "\u306a\u3082\u306e": 244, "\u306a\u3084\u308a\u304b\u305f": 314, "\u306a\u3088\u3046": 51, "\u306a\u3089": [6, 7, 8, 11, 14, 21, 24, 25, 28, 32, 34, 41, 43, 44, 47, 48, 49, 50, 51, 54, 56, 58, 74, 91, 93, 96, 99, 110, 111, 118, 121, 124, 127, 132, 134, 135, 137, 141, 142, 147, 149, 155, 156, 157, 158, 161, 167, 173, 175, 176, 177, 180, 194, 201, 205, 219, 224, 225, 229, 240, 244, 245, 246, 247, 250, 251, 261, 262, 264, 265, 266, 267, 268, 274, 281, 286, 303, 310], "\u306a\u308a": [0, 6, 10, 18, 21, 27, 31, 34, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 68, 74, 87, 89, 91, 93, 94, 95, 96, 99, 100, 107, 109, 110, 111, 112, 118, 120, 123, 124, 125, 126, 127, 128, 131, 132, 134, 135, 137, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 163, 164, 166, 167, 173, 175, 176, 177, 178, 180, 188, 189, 195, 197, 201, 203, 205, 206, 224, 225, 226, 230, 237, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 253, 260, 262, 275, 276, 279, 280, 282, 286, 295, 298, 301, 305, 306, 307, 308, 310, 311, 312, 313, 315], "\u306a\u308b": [0, 10, 11, 12, 17, 23, 28, 31, 32, 33, 36, 37, 38, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 81, 94, 109, 111, 120, 121, 122, 124, 126, 127, 128, 131, 132, 134, 135, 137, 141, 142, 152, 155, 156, 161, 163, 173, 175, 176, 177, 180, 183, 186, 189, 190, 191, 193, 196, 201, 202, 208, 209, 224, 225, 226, 231, 232, 233, 234, 235, 248, 253, 257, 258, 259, 274, 281, 282, 301, 305, 306, 308], "\u306a\u308c": [93, 111], "\u306a\u308f": 51, "\u306a\u3093": [56, 93], "\u306a\u30fc": [44, 231, 232, 233, 234, 235], "\u306a\u8981\u7d20": 45, "\u306b\u3042\u308a": [6, 7, 8, 18, 138, 161], "\u306b\u3044": [44, 231, 232, 233, 234, 235], "\u306b\u3044\u304f\u3064": 225, "\u306b\u3044\u304f\u3064\u304b": [45, 48, 50], "\u306b\u304a\u3044": [29, 52, 93, 305], "\u306b\u304a\u3059\u3059\u3081": 124, "\u306b\u304b\u304f": 56, "\u306b\u304d": 52, "\u306b\u304f\u3044": [0, 43, 52], "\u306b\u304f\u3044\u304b": 264, "\u306b\u304f\u304f": 50, "\u306b\u304f\u3089\u3079": 310, "\u306b\u304f\u308b": 301, "\u306b\u3053\u306e": 111, "\u306b\u3057": [27, 31, 48, 49, 50, 58, 125, 133, 156, 201, 224, 225], "\u306b\u3059": [43, 51, 301], "\u306b\u3059\u3050": 226, "\u306b\u3059\u3079\u3066": [43, 94, 110, 156], "\u306b\u3059\u308b": [34, 53, 111, 224, 292], "\u306b\u305b": 52, "\u306b\u305d\u306e": [156, 180], "\u306b\u3064": [47, 52], "\u306b\u3064\u3044\u3066": [0, 3, 7, 11, 12, 18, 19, 20, 21, 22, 27, 31, 39, 41, 42, 43, 44, 47, 48, 49, 50, 52, 53, 54, 58, 91, 92, 93, 95, 99, 100, 104, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 172, 173, 175, 180, 182, 185, 186, 188, 189, 190, 193, 199, 202, 203, 204, 210, 224, 225, 240, 243, 244, 245, 246, 247, 248, 250, 251, 253, 260, 262, 274, 281, 282, 283, 290, 292, 298, 299, 302, 303, 305, 306, 308, 309, 310, 311, 315], "\u306b\u3064\u304d": 228, "\u306b\u3064\u3051": [56, 225, 237], "\u306b\u3064\u3076\u3084\u3051": 10, "\u306b\u3064\u3076\u3084\u3051\u308b": 10, "\u306b\u3066": [47, 48, 50, 188], "\u306b\u3068\u3063": [10, 50], "\u306b\u3068\u3063\u3066": [10, 168, 262], "\u306b\u3069": [11, 41, 43, 156], "\u306b\u306b": 44, "\u306b\u307e\u3068\u3081": [12, 51], "\u306b\u307e\u3068\u3081\u308b": 51, "\u306b\u3082": [51, 156, 175, 224, 244, 299], "\u306b\u3088": 47, "\u306b\u3088\u304f": [41, 111, 161, 245], "\u306b\u3088\u3063": [0, 9, 11, 31, 41, 42, 43, 44, 45, 48, 52, 53, 54, 56, 91, 93, 108, 109, 111, 113, 119, 120, 122, 123, 130, 147, 162, 174, 175, 178, 186, 191, 208, 223, 272, 275, 298, 299, 305, 307, 308], "\u306b\u3088\u3063\u3066": [0, 14, 41, 42, 43, 45, 48, 54, 56, 89, 93, 111, 123, 301, 305, 308], "\u306b\u3088\u3089": 111, "\u306b\u3088\u308a": [0, 12, 27, 34, 41, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 94, 108, 111, 125, 156, 177, 188, 203, 208, 264, 282, 292, 295, 298, 301, 305, 308, 310, 312, 313], "\u306b\u3088\u308b": [0, 10, 22, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 53, 54, 149, 175, 177, 188, 224, 225, 276, 282, 304, 305, 308, 311, 315], "\u306b\u30fc": [44, 231, 232, 233, 234, 235], "\u306b\u5bfe\u3057": [0, 11, 18, 36, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 91, 106, 110, 111, 135, 142, 144, 149, 150, 151, 153, 156, 159, 170, 173, 174, 195, 210, 224, 225, 244, 246, 253, 264, 299, 306, 307, 308, 310, 314, 315], "\u306b\u5bfe\u3057\u7570": 202, "\u306b\u5bfe\u3059\u308b": [0, 11, 22, 37, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 111, 136, 142, 153, 155, 156, 159, 163, 180, 304, 305, 307, 308, 311, 312], "\u306b\u5bfe\u5fdc": [39, 40, 41, 43, 47, 49, 52, 132, 134, 135, 175, 178], "\u306b\u5bfe\u5fdc\u4ed8\u3051": 250, "\u306b\u5bfe\u6297": 56, "\u306b\u5bfe\u8c61": [39, 43, 44], "\u306b\u6708": 52, "\u306b\u95a2\u3057": [11, 48, 50, 51, 53, 134, 135, 176], "\u306b\u95a2\u3059\u308b": [2, 22, 39, 40, 41, 42, 47, 48, 49, 50, 51, 52, 53, 57, 155, 177, 224, 225, 228, 250, 281, 311], "\u306b\u95a2\u308f\u3089": 124, "\u306c\u3046": [44, 231, 232, 233, 234, 235], "\u306c\u30fc": [44, 231, 232, 233, 234, 235], "\u306d\u3048": [44, 231, 232, 233, 234, 235], "\u306d\u308b": 56, "\u306d\u30fc": [44, 231, 232, 233, 234, 235], "\u306e\u3042\u3068": [47, 224], "\u306e\u3044": [0, 11, 93, 125, 130, 175, 188, 282, 298], "\u306e\u3044\u305a\u308c": [53, 74, 112, 208, 314], "\u306e\u3044\u305a\u308c\u304b": [189, 190], "\u306e\u3046\u3061": [112, 180, 224], "\u306e\u304a": [44, 231, 232, 233, 234, 235], "\u306e\u304b": [41, 111, 156, 299, 302, 311], "\u306e\u304b\u308f\u308a": [49, 51], "\u306e\u304f\u3089\u3044": [41, 43, 53, 111, 281], "\u306e\u3059": 118, "\u306e\u3059\u3050": 224, "\u306e\u3059\u3079\u3066": [45, 132, 134, 135, 156, 167, 203, 224, 225, 292], "\u306e\u305e\u3044": 264, "\u306e\u3067": [0, 1, 10, 12, 17, 21, 26, 27, 33, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 94, 95, 110, 111, 124, 132, 134, 135, 149, 154, 156, 161, 177, 178, 183, 188, 197, 202, 205, 210, 225, 243, 250, 257, 281, 292, 296, 299, 301, 302, 303, 305, 308, 310, 311], "\u306e\u3067\u3057\u3087": [156, 244], "\u306e\u3069": [41, 219], "\u306e\u3069\u3061\u3089": [31, 156, 180, 225], "\u306e\u3069\u3061\u3089\u304b": [156, 183, 224, 225], "\u306e\u3069\u308c": [111, 161, 175, 180, 219, 250], "\u306e\u306b": [22, 27, 42, 43, 44, 47, 48, 49, 51, 52, 54, 111, 124, 131, 138, 165, 191, 262, 276, 300, 306], "\u306e\u3079\u304d": 156, "\u306e\u307b\u3046": 42, "\u306e\u307b\u304b": [282, 305], "\u306e\u307f": [0, 11, 12, 17, 21, 24, 31, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 61, 89, 91, 94, 105, 111, 122, 124, 131, 134, 135, 137, 141, 149, 153, 156, 157, 158, 159, 166, 173, 177, 183, 191, 192, 193, 196, 201, 202, 206, 208, 210, 231, 235, 236, 239, 244, 248, 250, 264, 274, 276, 277, 278, 286, 299, 301, 302, 305, 308, 310, 313], "\u306e\u307f\u3057\u304b": 252, "\u306e\u3088\u3046": [12, 27, 41, 42, 43, 44, 48, 49, 50, 51, 53, 54, 58, 61, 99, 111, 112, 156, 161, 171, 175, 180, 186, 191, 201, 205, 223, 224, 225, 244, 245, 264, 275, 277], "\u306e\u30fc": [44, 231, 232, 233, 234, 235], "\u306f\u3042": [44, 231, 232, 233, 234, 235], "\u306f\u3042\u306a\u305f": 6, "\u306f\u3044": 305, "\u306f\u3044\u304f\u3064\u304b": [34, 95, 163, 173, 224, 292], "\u306f\u3044\u3051": [53, 111, 121, 127, 149, 173, 180, 225, 237], "\u306f\u3044\u305a\u308c": 208, "\u306f\u3044\u3064": 52, "\u306f\u3044\u308f\u3086\u308b": 50, "\u306f\u3046\u307e\u304f": 44, "\u306f\u304d\u3063\u3068": 244, "\u306f\u3053\u306e": [41, 42, 50, 142, 155, 156, 158, 205, 210, 247, 264, 303], "\u306f\u3057": 53, "\u306f\u3057\u304d\u3044": 43, "\u306f\u3058\u307e\u308a": 93, "\u306f\u3058\u307e\u308b": 52, "\u306f\u3058\u3081": [17, 22, 43, 44, 56, 57, 93, 111, 159, 231, 232, 233, 234, 235, 249], "\u306f\u3058\u3081\u308b": 125, "\u306f\u3059\u3079\u3066": [107, 111, 115, 116, 117, 118, 123, 124, 125, 126, 127, 128, 132, 134, 140, 141, 142, 143, 146, 149, 150, 152, 154, 155, 156, 157, 158, 161, 163, 165, 166, 167, 168, 177, 193, 195, 223, 225, 230, 246, 247, 264, 308], "\u306f\u305a": [41, 42, 43, 44, 45, 47, 123, 176, 231, 232, 233, 234, 235, 244, 274, 281], "\u306f\u305d\u308c\u305e\u308c": 43, "\u306f\u305d\u308c\u3089": 137, "\u306f\u3068": 254, "\u306f\u3069": [43, 44, 111, 156, 161, 250], "\u306f\u3069\u3061\u3089": [180, 292], "\u306f\u3069\u3061\u3089\u304b": [224, 225], "\u306f\u3069\u308c": 225, "\u306f\u306a\u304f": 244, "\u306f\u307b\u3068\u3093\u3069": 156, "\u306f\u307e\u3060": [42, 135, 197, 227, 247, 292], "\u306f\u307f": 3, "\u306f\u308f\u304b\u308a": [52, 197], "\u306f\u30fc": [44, 231, 232, 233, 234, 235], "\u306f\u6708": [225, 248], "\u3070\u3042": [44, 231, 232, 233, 234, 235, 248], "\u3070\u3044\u304a\u308a\u3093": [231, 235], "\u3070\u3044\u3051": [21, 31, 45, 46, 47, 51, 54, 68, 87, 91, 110, 111, 112, 114, 124, 125, 132, 134, 135, 143, 149, 156, 161, 164, 177, 178, 180, 201, 203, 210, 224, 225, 237, 243, 244, 245, 246, 247], "\u3070\u304b\u308a": 50, "\u3070\u3053\u306e": 50, "\u3070\u3059\u3079\u3066": 264, "\u3070\u305d\u306e": 310, "\u3070\u3069": 58, "\u3070\u3071": [231, 232, 233, 234, 235, 258, 259], "\u3070\u3073\u3076\u3079\u307c": [231, 235], "\u3070\u3088\u3044": 45, "\u3070\u308c\u308b": 37, "\u3070\u30fc": [44, 231, 232, 233, 234, 235], "\u3071\u3042": [44, 231, 232, 233, 234, 235], "\u3071\u30fc": [44, 231, 232, 233, 234, 235], "\u3072\u3044": [44, 231, 232, 233, 234, 235], "\u3072\u3053\u3055\u3093": [47, 49, 51], "\u3072\u3068\u3064": [47, 185, 224], "\u3072\u3068\u308a": 56, "\u3072\u3072\u3072\u3075\u3075\u3075": [231, 232, 233, 234, 235, 258, 259], "\u3072\u3073\u3074\u3075\u3076\u3077": [231, 232, 233, 234, 235, 258, 259], "\u3072\u3089": [53, 201, 224, 225, 231, 232, 233, 234, 235, 240, 250, 257, 258, 259, 264], "\u3072\u308d": 313, "\u3072\u308d\u3086\u304d": 313, "\u3072\u30fc": [44, 231, 232, 233, 234, 235], "\u3073\u3044": [44, 231, 232, 233, 234, 235], "\u3073\u30fc": [44, 231, 232, 233, 234, 235], "\u3074\u3044": [44, 231, 232, 233, 234, 235], "\u3074\u30fc": [44, 231, 232, 233, 234, 235], "\u3075\u3046": [44, 231, 232, 233, 234, 235], "\u3075\u306a\u3068": 49, "\u3075\u308a": 159, "\u3075\u30fc": [44, 231, 232, 233, 234, 235], "\u3076\u3046": [44, 231, 232, 233, 234, 235], "\u3076\u3093": 10, "\u3076\u30fc": [44, 231, 232, 233, 234, 235], "\u3077\u3046": [44, 231, 232, 233, 234, 235], "\u3077\u30fc": [44, 231, 232, 233, 234, 235], "\u3078\u3048": [44, 231, 232, 233, 234, 235], "\u3078\u3059\u3079\u3066": [50, 110], "\u3078\u3068": [49, 156, 303, 312, 314], "\u3078\u306e": [31, 53, 305], "\u3078\u3079\u307a": [231, 232, 233, 234, 235, 258, 259], "\u3078\u307b\u307b\u307b": [231, 232, 233, 234, 235, 258, 259], "\u3078\u30fc": [44, 231, 232, 233, 234, 235], "\u3079\u3048": [44, 231, 232, 233, 234, 235], "\u3079\u304d": [6, 7, 8, 12, 42, 43, 44, 45, 50, 51, 52, 56, 112, 134, 141, 143, 149, 152, 156, 173, 175, 177, 180, 225, 230, 298], "\u3079\u304d\u304b": [43, 156], "\u3079\u304f": [45, 308], "\u3079\u3066": [44, 51, 58, 134, 136, 141, 156, 177, 306], "\u3079\u30fc": [44, 231, 232, 233, 234, 235], "\u3079\u30fc\u30b9": 49, "\u307a\u3048": [44, 231, 232, 233, 234, 235], "\u307a\u30fc": [44, 231, 232, 233, 234, 235], "\u307b\u3046": [43, 49, 156], "\u307b\u304a": [44, 231, 232, 233, 234, 235], "\u307b\u304b": [0, 305], "\u307b\u3057\u3044": 54, "\u307b\u3057\u304f": [44, 45, 156], "\u307b\u3068": 42, "\u307b\u3068\u3093\u3069": [42, 50, 52], "\u307b\u3069": [41, 56, 159, 161, 173, 175, 264, 296, 305, 308], "\u307b\u307c": [41, 225], "\u307b\u307c\u307d": [231, 232, 233, 234, 235, 258, 259], "\u307b\u30fc": [44, 231, 232, 233, 234, 235], "\u307c\u304a": [44, 231, 232, 233, 234, 235], "\u307c\u30fc": [44, 231, 232, 233, 234, 235], "\u307d\u304a": [44, 231, 232, 233, 234, 235], "\u307d\u30fc": [44, 231, 232, 233, 234, 235], "\u307e\u3042": [44, 231, 232, 233, 234, 235], "\u307e\u3055": 56, "\u307e\u3057": [6, 10, 12, 17, 18, 27, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 111, 124, 132, 134, 135, 156, 161, 177, 186, 188, 224, 225, 229, 244, 251, 262, 275, 296, 301, 302, 306, 307, 311], "\u307e\u3057\u3087": [18, 132, 134, 135, 156, 188, 307, 308], "\u307e\u3059": [0, 1, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 68, 74, 81, 84, 85, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 181, 182, 183, 184, 185, 186, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 286, 290, 291, 292, 295, 296, 298, 299, 301, 302, 303, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "\u307e\u305a": [17, 18, 31, 43, 44, 111, 156, 176, 177, 211, 212, 219, 225, 231, 232, 233, 234, 235, 299, 301, 302, 306, 308, 310, 311, 314], "\u307e\u305b": [0, 6, 7, 10, 12, 17, 18, 27, 31, 34, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 68, 74, 81, 84, 85, 87, 89, 91, 94, 95, 96, 98, 100, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 147, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 173, 175, 176, 177, 178, 180, 183, 186, 188, 191, 193, 195, 201, 202, 203, 205, 206, 210, 219, 224, 225, 226, 229, 230, 236, 237, 239, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 276, 277, 278, 279, 280, 281, 282, 286, 290, 292, 296, 298, 299, 301, 303, 305, 306, 308, 310, 312, 314], "\u307e\u305f": [3, 5, 8, 12, 14, 18, 19, 21, 23, 31, 39, 40, 41, 42, 43, 44, 45, 49, 50, 51, 53, 54, 56, 58, 81, 87, 94, 95, 108, 109, 110, 111, 112, 113, 118, 119, 120, 122, 124, 126, 127, 128, 130, 132, 134, 135, 141, 142, 143, 147, 149, 152, 153, 155, 156, 161, 162, 170, 173, 175, 176, 177, 178, 183, 188, 193, 196, 202, 206, 208, 209, 219, 224, 225, 228, 231, 241, 244, 248, 254, 272, 274, 282, 292, 302, 311, 313, 315], "\u307e\u305f\u3044": [41, 47, 132, 134, 135, 188, 248], "\u307e\u305f\u3050": [22, 47, 188, 304], "\u307e\u3060": [39, 41, 42, 45, 48, 49, 51, 53, 54, 93, 96, 103, 135, 154, 156, 158, 159, 180, 225, 245, 248, 298], "\u307e\u3064\u308f": 48, "\u307e\u3067": [11, 12, 17, 34, 41, 42, 45, 46, 48, 49, 51, 54, 56, 61, 99, 111, 125, 132, 137, 156, 175, 176, 183, 209, 226, 244, 254, 281, 302, 306, 308, 310, 311, 313], "\u307e\u3068\u3081": [10, 27, 49, 111], "\u307e\u3068\u3081\u3066": [0, 111, 305, 306], "\u307e\u3068\u3081\u308b": [111, 156, 177, 272], "\u307e\u307e": [10, 46, 48, 50, 52, 53, 74, 93, 163, 173, 180, 225, 306], "\u307e\u307e\u3067": 301, "\u307e\u3082": 56, "\u307e\u308a": [50, 156, 208, 209], "\u307e\u308b": [53, 54], "\u307e\u308c": [45, 156], "\u307e\u308d\u3086\u304d": 313, "\u307e\u308f\u3059": 156, "\u307e\u308f\u308a": 3, "\u307e\u30fc": [44, 231, 232, 233, 234, 235], "\u307f\u3044": [44, 231, 232, 233, 234, 235], "\u307f\u304c": 11, "\u307f\u305f\u3059": 311, "\u307f\u3064\u3051": 18, "\u307f\u3066": 315, "\u307f\u306a\u3055": 11, "\u307f\u306a\u3057": [51, 156], "\u307f\u306a\u3059": [45, 156, 231, 235], "\u307f\u307e\u3057\u3087": [18, 111, 132, 156, 163, 225, 245, 246, 247, 276, 278, 305, 306, 307, 308, 310, 311, 314, 315], "\u307f\u308b": 111, "\u307f\u30fc": [44, 231, 232, 233, 234, 235], "\u3080\u3046": [44, 231, 232, 233, 234, 235], "\u3080\u3089": 52, "\u3080\u308b": [224, 225], "\u3080\u308b\u3093": [224, 225], "\u3080\u30fc": [44, 231, 232, 233, 234, 235], "\u3081\u3048": [44, 231, 232, 233, 234, 235], "\u3082\u3042\u3052": 111, "\u3082\u3044\u308d\u3044\u308d\u3057": 132, "\u3082\u3046": [47, 74, 124, 177, 185, 186, 226, 276, 305, 310], "\u3082\u3046\u307e\u304f": 31, "\u3082\u304a": [44, 231, 232, 233, 234, 235], "\u3082\u304b\u304b\u308f\u3089": [54, 276], "\u3082\u304d\u3061\u3093": 177, "\u3082\u3053\u306e": [41, 44, 45, 124], "\u3082\u3057": [6, 21, 31, 34, 41, 42, 43, 44, 45, 48, 49, 50, 51, 53, 54, 61, 74, 81, 90, 96, 98, 99, 100, 111, 118, 124, 125, 126, 128, 134, 135, 137, 142, 149, 150, 152, 153, 156, 157, 158, 161, 163, 173, 176, 177, 178, 183, 188, 195, 196, 197, 198, 210, 224, 225, 231, 232, 233, 234, 235, 243, 244, 245, 246, 248, 281, 292, 310], "\u3082\u3057x": 48, "\u3082\u3057\u3042": 50, "\u3082\u3057\u304b\u3057": 264, "\u3082\u3057\u304f": [47, 48, 49, 50, 124, 129, 134, 149, 177, 183, 191, 192, 193, 205, 206, 224, 225, 282, 298, 303, 305, 310], "\u3082\u3057\u3053\u306e": [44, 142, 156, 303], "\u3082\u3057\u3054": 47, "\u3082\u3057\u305d\u308c\u3089": 90, "\u3082\u3057\u307e\u305b": 81, "\u3082\u3057\u3088\u308a": 96, "\u3082\u3057\u308c": [243, 264, 274], "\u3082\u3057\u4f7f\u3063": 127, "\u3082\u3057\u547c\u3070": 52, "\u3082\u3057\u578b": 155, "\u3082\u3059": [144, 151], "\u3082\u3059\u3050": 157, "\u3082\u3059\u3079": 156, "\u3082\u305b": 173, "\u3082\u3061\u308d\u3093": [176, 306], "\u3082\u3063\u3068": [6, 156], "\u3082\u3063\u3068\u3082": [14, 98], "\u3082\u3064": [43, 50, 121, 306], "\u3082\u3064\u3051": 175, "\u3082\u3068": [12, 52, 156, 302], "\u3082\u3068\u3082": 52, "\u3082\u3069\u3061\u3089": 247, "\u3082\u306e": [11, 12, 17, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 56, 61, 91, 93, 132, 134, 135, 137, 142, 155, 156, 173, 174, 175, 176, 177, 188, 189, 196, 201, 204, 230, 244, 245, 247, 251, 260, 275, 298, 305, 308, 310], "\u3082\u3088\u308a": 247, "\u3082\u3089\u3048": [10, 56], "\u3082\u3089\u3048\u308b": 10, "\u3082\u3089\u3063": [12, 308], "\u3082\u308a": 50, "\u3082\u308c\u308b": 50, "\u3082\u30fc": [44, 231, 232, 233, 234, 235], "\u3082\u4f7f\u3063": 45, "\u3083\u3042": [44, 231, 232, 233, 234, 235], "\u3083\u3093": 56, "\u3083\u3093\u306d\u308b": 56, "\u3083\u30fc": [44, 231, 232, 233, 234, 235], "\u3084\u3042": [44, 231, 232, 233, 234, 235], "\u3084\u304c": 93, "\u3084\u3057": 156, "\u3084\u3059": [54, 197], "\u3084\u3059\u3044": [36, 43, 44, 50, 156, 175, 193, 206, 223], "\u3084\u3059\u3044\u304b": 243, "\u3084\u3059\u304b\u3063": 54, "\u3084\u3059\u304f": [18, 37, 43, 45, 49, 54, 97, 156, 175], "\u3084\u3059\u304f\u3057": [50, 52], "\u3084\u305d\u306e": 121, "\u3084\u3063": [111, 219], "\u3084\u307e": 49, "\u3084\u307e\u3060": 49, "\u3084\u307e\u306d": [48, 49], "\u3084\u3081": [39, 41, 42, 44, 45, 48, 49, 50, 51, 52, 53, 54, 99], "\u3084\u3081\u307e\u3057\u3087": [245, 246, 247], "\u3084\u3081\u308b": [44, 45, 51], "\u3084\u3085\u3086\u3087": [231, 232, 233, 234, 235, 258, 259], "\u3084\u3089": 12, "\u3084\u308a": [19, 314], "\u3084\u30fc": [44, 231, 232, 233, 234, 235], "\u3085\u3046": [44, 231, 232, 233, 234, 235], "\u3085\u30fc": [44, 231, 232, 233, 234, 235], "\u3086\u3046": [44, 231, 232, 233, 234, 235], "\u3086\u304d": [45, 313], "\u3086\u304d\u3072\u308d": 313, "\u3086\u308b": 186, "\u3086\u308c": [43, 53, 274, 275], "\u3086\u30fc": [44, 231, 232, 233, 234, 235], "\u3087\u304a": [44, 231, 232, 233, 234, 235], "\u3087\u30fc": [44, 231, 232, 233, 234, 235], "\u3088\u3044": [17, 18, 43, 44, 91, 110, 111, 124, 141, 156, 180, 224, 225, 292, 306, 310], "\u3088\u3044\u304b": 46, "\u3088\u3046": [0, 6, 10, 11, 12, 14, 21, 27, 29, 31, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 74, 87, 90, 91, 93, 95, 96, 98, 108, 110, 111, 118, 121, 122, 123, 124, 125, 131, 132, 133, 134, 135, 137, 138, 140, 141, 142, 143, 144, 145, 149, 150, 151, 153, 156, 157, 160, 161, 163, 164, 166, 168, 175, 176, 177, 180, 188, 189, 193, 197, 202, 203, 206, 210, 224, 225, 226, 229, 231, 232, 233, 234, 235, 237, 239, 243, 244, 245, 246, 247, 248, 249, 252, 254, 257, 258, 259, 260, 261, 264, 272, 274, 275, 276, 278, 279, 280, 281, 292, 296, 298, 299, 301, 302, 303, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "\u3088\u3046\u3053\u305d": 156, "\u3088\u304a": [44, 231, 232, 233, 234, 235], "\u3088\u304b\u3063": [56, 301], "\u3088\u304f": [27, 41, 42, 45, 51, 56, 91, 111, 124, 132, 134, 135, 156, 175, 183, 244, 262], "\u3088\u3063": 315, "\u3088\u3063\u3066": [27, 87, 168, 239, 282, 309, 315], "\u3088\u3073": 11, "\u3088\u308a": [6, 11, 18, 23, 31, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 74, 91, 94, 99, 111, 118, 134, 141, 142, 153, 156, 161, 173, 175, 176, 177, 183, 186, 188, 189, 191, 192, 193, 196, 197, 224, 225, 226, 228, 243, 244, 245, 246, 247, 250, 253, 264, 274, 277, 281, 282, 299, 301, 305, 306, 310, 311], "\u3088\u308e\u308f": [231, 232, 233, 234, 235, 258, 259], "\u3088\u308f\u308f\u304b\u304b\u3051\u3051": [231, 232, 233, 234, 235, 258, 259], "\u3088\u30fc": [44, 231, 232, 233, 234, 235], "\u3089\u3042": [44, 231, 232, 233, 234, 235], "\u3089\u308c": [0, 10, 11, 37, 39, 41, 43, 45, 47, 48, 51, 53, 54, 61, 74, 109, 110, 111, 112, 121, 134, 142, 153, 156, 162, 168, 224, 254, 274, 275, 308, 310, 314], "\u3089\u308c\u308b": [0, 11, 45, 47, 48, 49, 51, 56, 111, 156, 175, 244, 299], "\u3089\u30fc": [44, 231, 232, 233, 234, 235], "\u308b\u3046": [44, 231, 232, 233, 234, 235], "\u308c\u3048": [44, 231, 232, 233, 234, 235], "\u308c\u305a": [51, 93], "\u308c\u307e\u305b": [31, 42, 50, 58, 93, 108, 111, 149, 150, 156, 157, 163, 175, 192, 228, 243, 310], "\u308c\u3084\u3059\u3044": 42, "\u308c\u3084\u3059\u304f\u3057": 41, "\u308c\u308b": [0, 9, 11, 12, 14, 17, 27, 31, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 74, 81, 89, 91, 93, 94, 96, 106, 107, 108, 111, 124, 132, 133, 134, 135, 138, 153, 154, 156, 159, 161, 163, 175, 176, 183, 186, 188, 196, 203, 205, 206, 208, 209, 210, 224, 225, 226, 229, 239, 244, 250, 251, 253, 254, 257, 258, 259, 262, 275, 276, 278, 282, 298, 299, 301, 308, 315], "\u308c\u30fc": [44, 231, 232, 233, 234, 235], "\u308d\u304a": [44, 231, 232, 233, 234, 235], "\u308d\u30fc": [44, 231, 232, 233, 234, 235], "\u308e\u3042": [44, 231, 232, 233, 234, 235], "\u308e\u30fc": [44, 231, 232, 233, 234, 235], "\u308f\u3042": [44, 231, 232, 233, 234, 235], "\u308f\u304b\u3061": 299, "\u308f\u304b\u3063": 173, "\u308f\u304b\u3089": 156, "\u308f\u304b\u308a": [37, 49, 50, 52, 111, 156, 264, 306], "\u308f\u304b\u308b": 49, "\u308f\u304b\u308c": 156, "\u308f\u3051": [42, 45, 125, 143, 156, 165, 168, 225, 250, 281, 305], "\u308f\u305f\u3057": [257, 258, 259], "\u308f\u30fc": [44, 231, 232, 233, 234, 235], "\u3090\u3044": [44, 231, 232, 233, 234, 235], "\u3090\u30fc": [44, 231, 232, 233, 234, 235], "\u3091\u3046": [44, 231, 232, 233, 234, 235], "\u3091\u30fc": [44, 231, 232, 233, 234, 235], "\u3092\u304a": [44, 231, 232, 233, 234, 235], "\u3092\u304a\u3053": 311, "\u3092\u304b\u308f\u308a": 74, "\u3092\u3054": [14, 232, 233, 234, 235, 236, 258, 259], "\u3092\u3054\u89a7\u304f": [0, 7, 257], "\u3092\u3057": 224, "\u3092\u3064\u3051": [44, 156, 224, 225], "\u3092\u3064\u3051\u308b": [6, 175, 225], "\u3092\u3079\u304d": 156, "\u3092\u307e\u3060": 103, "\u3092\u3088\u308a": 51, "\u3092\u30fc": [44, 231, 232, 233, 234, 235], "\u3092\u901a\u3057": [175, 308], "\u3093\u304c": [224, 225], "\u3093\u3057": [111, 127, 140, 173], "\u3093\u3057\u304d": 223, "\u3093\u3069": 42, "\u3093\u3093": [44, 231, 232, 233, 234, 235], "\u3093\u30fc": [44, 231, 232, 233, 234, 235], "\u3094-": [44, 231, 232, 233, 234, 235], "\u3094\u3041": [54, 231, 235], "\u3094\u3043": [54, 231, 235], "\u3094\u3049": [54, 231, 235], "\u3094\u3094": [54, 231, 235], "\u3094\u30fc": [44, 231, 232, 233, 234, 235], "\u3095-": [44, 231, 232, 233, 234, 235], "\u3095\u304b": [231, 232, 233, 234, 235, 258, 259], "\u3095\u30fc": [44, 231, 232, 233, 234, 235], "\u3096-": [44, 231, 232, 233, 234, 235], "\u3096\u3048": [44, 231, 232, 233, 234, 235], "\u3096\u3051": [231, 232, 233, 234, 235, 258, 259], "\u3096\u30fc": [44, 231, 232, 233, 234, 235], "\u309d\u309e": [231, 232, 233, 234, 235, 257, 258, 259], "\u30a1\u30a2": [44, 231, 232, 233, 234, 235], "\u30a1\u30a2\u30a3\u30a4\u30a5\u30a6\u30a7\u30a8\u30a9\u30aa\u30e3\u30e4\u30e5\u30e6\u30e7\u30e8\u30ee\u30ef": [231, 232, 233, 234, 235, 258, 259], "\u30a1\u30fc": [44, 231, 232, 233, 234, 235], "\u30a2\u30a1\u30a4\u30a3\u30a6\u30a5\u30a8\u30a7\u30aa\u30a9": [231, 232, 233, 234, 235, 257, 258, 259], "\u30a2\u30a2": [44, 231, 232, 233, 234, 235], "\u30a2\u30a2\u30a4\u30a4\u30a6\u30a6\u30a8\u30a8\u30aa\u30aa\u30e4\u30e4\u30e6\u30e6\u30e8\u30e8\u30ef\u30ef\u30ab\u30ab\u30b1\u30b1": [231, 232, 233, 234, 235, 258, 259], "\u30a2\u30aa\u30c4\u30c5\u30e9\u30d5\u30b8": 44, "\u30a2\u30aa\u30cf\u30bf": 44, "\u30a2\u30ab\u30a6\u30f3\u30c8": [2, 12, 49], "\u30a2\u30ab\u30a6\u30f3\u30c8groonga": 10, "\u30a2\u30af\u30bb\u30b5": [51, 53], "\u30a2\u30af\u30bb\u30b5\u30fc": [41, 50, 54], "\u30a2\u30af\u30bb\u30b9": [17, 18, 37, 39, 47, 48, 49, 51, 52, 58, 60, 114, 156, 164, 174, 175, 177, 178, 281, 305, 312], "\u30a2\u30af\u30bb\u30b9\u30ed\u30b0": [177, 250, 251, 253, 291, 296], "\u30a2\u30b8\u30e3\u30b9\u30bf\u30fc": [91, 156], "\u30a2\u30c3\u30c8\u30de\u30fc\u30af": [111, 161], "\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9": [12, 42, 43, 44, 45, 46, 49, 50, 51, 53, 54, 291], "\u30a2\u30c3\u30d7\u30b9\u30c8\u30ea\u30fc\u30e0": 18, "\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8": 54, "\u30a2\u30c6\u30cd": 44, "\u30a2\u30c9\u30ec\u30b9": [39, 175, 176, 180, 298, 312], "\u30a2\u30ca\u30a6\u30f3\u30b9": [12, 43], "\u30a2\u30d4\u30fc\u30eb": [12, 56], "\u30a2\u30d5\u30ea\u30ab": 56, "\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3": [0, 20, 42, 45, 52, 71, 156, 175, 205, 206, 225, 228], "\u30a2\u30e1\u30ea\u30ab": 188, "\u30a2\u30e9\u30fc\u30c8": [175, 228], "\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0": [107, 111, 188, 223, 247], "\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8": [49, 111, 132, 134, 135, 156, 161, 168, 244, 251, 264, 267, 268, 270, 271, 299, 301], "\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u30d9\u30fc\u30b9": 156, "\u30a2\u30f2\u30cf\u30bf": 44, "\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 47, "\u30a2\u30f3\u30ab\u30fc": 50, "\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2": [89, 111, 161], "\u30a2\u30f3\u30c0\u30fc\u30d5\u30ed\u30fc": 53, "\u30a2\u30f3\u30d1\u30c3\u30af": 41, "\u30a2\u30f3\u30de\u30c3\u30d7": [50, 53, 118], "\u30a2\u30f3\u30ed\u30c3\u30af": 53, "\u30a2\u30fc": [44, 231, 232, 233, 234, 235], "\u30a2\u30fc\u30ab\u30a4\u30d6": [17, 27, 33], "\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": [3, 4, 22, 27], "\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u30fc": [49, 158, 175], "\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8": 43, "\u30a3\u30a4": [44, 231, 232, 233, 234, 235], "\u30a3\u30fc": [44, 231, 232, 233, 234, 235], "\u30a4\u30a4": [44, 231, 232, 233, 234, 235], "\u30a4\u30bf\u30ea\u30a2": 53, "\u30a4\u30d9\u30f3\u30c8": 50, "\u30a4\u30d9\u30f3\u30c8\u30ed\u30b0": 50, "\u30a4\u30e1\u30fc\u30b8": [22, 23, 43, 53], "\u30a4\u30e9\u30af\u30ea\u30aa": 44, "\u30a4\u30f3\u30af\u30ea\u30e1\u30f3\u30c8": [52, 98], "\u30a4\u30f3\u30af\u30eb\u30fc\u30c9": 50, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9": 39, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc": 50, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [0, 3, 7, 12, 21, 22, 24, 25, 28, 29, 30, 31, 32, 33, 37, 39, 41, 42, 44, 45, 47, 48, 50, 51, 52, 53, 54, 103, 156, 174, 175, 176, 178, 260, 274, 296], "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 39, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8": [37, 39], "\u30a4\u30f3\u30b9\u30da\u30af\u30b7\u30e7\u30f3": [48, 50], "\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": [3, 47], "\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8": [0, 22, 176, 223], "\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u30d3\u30b8\u30cd\u30b9": 56, "\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u30e6\u30fc\u30b6\u30fc": 56, "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [54, 125, 180, 241], "\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9": 41, "\u30a4\u30f3\u30c6\u30b0\u30ec\u30fc\u30b7\u30e7\u30f3": 21, "\u30a4\u30f3\u30c7\u30af\u30b9": 56, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [22, 37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 74, 87, 91, 94, 96, 104, 106, 108, 109, 112, 113, 122, 123, 124, 132, 133, 134, 135, 137, 141, 149, 155, 156, 161, 163, 165, 173, 183, 186, 196, 224, 225, 237, 239, 246, 247, 254, 262, 277, 301, 304, 308, 311], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0": [22, 36, 41, 42, 44, 48, 49, 50, 51, 52, 53, 54, 57, 74, 108, 112, 123, 124, 141, 142, 149, 152, 155, 156, 165, 173, 195, 201, 224, 225, 237, 244, 246, 247, 304, 307, 310], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ad\u30fc": 45, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30a4\u30ba": [34, 52, 141], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30fc\u30c1": 195, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c1\u30a7\u30c3\u30af": 123, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb": [48, 54, 111], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30da\u30fc\u30b8": 41, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30e2\u30b8\u30e5\u30fc\u30eb": 50, "\u30a4\u30f3\u30c7\u30f3\u30c8": 74, "\u30a4\u30f3\u30dd\u30fc\u30c8": [43, 47], "\u30a4\u30f3\u30e1\u30e2\u30ea": 52, "\u30a4\u30fc": [44, 231, 232, 233, 234, 235], "\u30a5\u30a6": [44, 231, 232, 233, 234, 235], "\u30a5\u30fc": [44, 231, 232, 233, 234, 235], "\u30a6\u30a3\u30f3\u30c9\u30a6": [22, 41, 51, 52, 53, 54, 57, 286], "\u30a6\u30a4\u30f3\u30c9\u30a6": [41, 53, 54, 132, 134, 135], "\u30a6\u30a6": [44, 231, 232, 233, 234, 235], "\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6": [175, 177, 178], "\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9": 175, "\u30a6\u30a9\u30fc\u30e0\u30a2\u30c3\u30d7": [175, 177], "\u30a6\u30fc": [44, 231, 232, 233, 234, 235], "\u30a7\u30a8": [44, 231, 232, 233, 234, 235], "\u30a7\u30fc": [44, 231, 232, 233, 234, 235], "\u30a8\u30a4\u30ea\u30a2\u30b9": [22, 50, 52, 53, 57, 129], "\u30a8\u30a8": [44, 231, 232, 233, 234, 235], "\u30a8\u30af\u30b9\u30dd\u30fc\u30c8": 37, "\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3": [31, 43, 44, 45, 53, 54, 156, 175, 186], "\u30a8\u30b9\u30b1\u30fc\u30d7": [42, 43, 47, 48, 49, 52, 68, 191, 192, 193, 205, 206, 225], "\u30a8\u30c7\u30a3\u30bf": 17, "\u30a8\u30dd\u30c3\u30af": 42, "\u30a8\u30e9\u30fc": [22, 23, 28, 31, 32, 33, 36, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 61, 68, 84, 93, 100, 101, 106, 109, 110, 111, 113, 115, 117, 118, 119, 121, 124, 126, 127, 128, 129, 130, 132, 134, 135, 137, 143, 144, 145, 149, 150, 151, 152, 156, 157, 160, 161, 163, 164, 166, 170, 175, 224, 228, 300, 302], "\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9": [47, 49, 51, 52, 53, 308], "\u30a8\u30e9\u30fc\u30c1\u30a7\u30c3\u30af": [39, 45, 47, 49], "\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8": [6, 22, 36, 37, 39, 40, 47, 48, 49, 50, 51, 52, 53, 54, 93, 95, 111, 300], "\u30a8\u30e9\u30fc\u30ec\u30dd\u30fc\u30c8": 47, "\u30a8\u30e9\u30fc\u30ed\u30b0": [45, 111, 296, 302], "\u30a8\u30f3": [45, 197], "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0": [31, 36, 49, 50, 51, 53, 68, 74, 225, 230, 236], "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u30b3\u30f3\u30d0\u30fc\u30bf\u30fc": 53, "\u30a8\u30f3\u30b3\u30fc\u30c9": [37, 46, 180, 230], "\u30a8\u30f3\u30b8\u30f3": [0, 56, 156, 244, 245, 246, 247, 305, 307], "\u30a8\u30f3\u30b8\u30f3\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2": 56, "\u30a8\u30f3\u30c8\u30ea": [61, 132, 134, 135, 156, 210, 224, 225], "\u30a8\u30f3\u30c8\u30ea\u30fc": [42, 50, 132, 134, 135, 156], "\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8": 180, "\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8uri": 180, "\u30a8\u30fc": [44, 231, 232, 233, 234, 235], "\u30a9\u30a6": [44, 231, 232, 233, 234, 235], "\u30a9\u30aa": [44, 231, 232, 233, 234, 235], "\u30a9\u30fc": [44, 231, 232, 233, 234, 235], "\u30aa\u30a6": [44, 231, 232, 233, 234, 235], "\u30aa\u30a6\u30b3\u30a6\u30bd\u30a6\u30c8\u30a6\u30ce\u30a6": [231, 232, 233, 234, 235], "\u30aa\u30aa": [44, 231, 232, 233, 234, 235], "\u30aa\u30aa\u30b3\u30aa\u30bd\u30aa\u30c8\u30aa\u30ce\u30aa": [231, 232, 233, 234, 235], "\u30aa\u30aa\u30c4\u30c5\u30e9\u30d5\u30b8": 44, "\u30aa\u30b9\u30b9\u30e1": [6, 8, 23, 28, 32, 33, 45, 58, 156, 177, 244, 262, 264], "\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea": 37, "\u30aa\u30d5\u30bb\u30c3\u30c8": [44, 47, 50, 54, 156, 159], "\u30aa\u30d5\u30e9\u30a4\u30f3": [45, 53], "\u30aa\u30d5\u30e9\u30a4\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [40, 50, 51], "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [22, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 54, 57, 58, 61, 74, 87, 91, 106, 108, 109, 120, 124, 126, 127, 128, 138, 139, 140, 141, 143, 144, 145, 149, 150, 151, 152, 155, 156, 158, 168, 169, 173, 199, 202, 223, 225, 254], "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8id": 53, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30d5\u30a1\u30a4\u30eb": 173, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb": [42, 44, 51], "\u30aa\u30d6\u30b8\u30a7\u30c8": 41, "\u30aa\u30d7\u30b7\u30e7\u30f3": [6, 14, 18, 23, 30, 31, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 96, 102, 110, 111, 124, 131, 138, 156, 161, 165, 168, 173, 178, 180, 182, 183, 191, 193, 196, 205, 206, 223, 224, 225, 228, 229, 232, 233, 234, 237, 241, 244, 250, 251, 253, 255, 257, 258, 259, 260, 261, 272, 274, 275, 290, 292, 295, 298, 299, 301, 308, 310, 311, 312, 313], "\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6": 53, "\u30aa\u30da\u30ec\u30fc\u30bf": [50, 51], "\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 50, "\u30aa\u30e9\u30f3\u30c0": 53, "\u30aa\u30ea\u30b8\u30ca\u30eb": 56, "\u30aa\u30f3\u30e9\u30a4\u30f3": 45, "\u30aa\u30fc": [44, 231, 232, 233, 234, 235], "\u30aa\u30fc\u30c8\u30b3\u30f3\u30d7\u30ea\u30fc\u30c8": [43, 44], "\u30aa\u30fc\u30ca\u30fc": [48, 50], "\u30aa\u30fc\u30d0\u30d5\u30ed\u30fc": 54, "\u30aa\u30fc\u30d0\u30d8\u30c3\u30c9": 186, "\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc": [39, 48, 49, 50, 53, 54], "\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af": [39, 50], "\u30aa\u30fc\u30d0\u30fc\u30d8\u30c3\u30c9": [49, 53, 125, 141, 186, 296], "\u30aa\u30fc\u30d0\u30fc\u30e9\u30c3\u30d7": 44, "\u30aa\u30fc\u30d7\u30f3": [39, 41, 42, 43, 47, 48, 50, 51, 56, 61], "\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9": 56, "\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30b3\u30df\u30e5\u30cb\u30c6\u30a3": 21, "\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2": 21, "\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30e9\u30a4\u30bb\u30f3\u30b9": 45, "\u30ab\u30a2": [44, 231, 232, 233, 234, 235], "\u30ab\u30a2\u30ad\u30a4\u30af\u30a6\u30b1\u30a8\u30b3\u30aa": [231, 232, 233, 234, 235], "\u30ab\u30a6\u30f3\u30bf": 51, "\u30ab\u30a6\u30f3\u30c8": [41, 48, 52, 132, 311], "\u30ab\u30a6\u30f3\u30c8\u30e2\u30fc\u30c9": [41, 43], "\u30ab\u30ab\u30ad\u30ad\u30af\u30af\u30b1\u30b1\u30b3\u30b3\u30b5\u30b5\u30b7\u30b7\u30b9\u30b9\u30bb\u30bb\u30bd\u30bd\u30bf\u30bf\u30c1\u30c1\u30c4\u30c4\u30c6\u30c6\u30c8\u30c8\u30cf\u30cf\u30cf\u30d2\u30d2\u30d2\u30d5\u30d5\u30d5\u30d8\u30d8\u30d8\u30db\u30db\u30db": [231, 232, 233, 234, 235], "\u30ab\u30ac\u30ad\u30ae\u30af\u30b0\u30b1\u30b2\u30b3\u30b4\u30b5\u30b6\u30b7\u30b8\u30b9\u30ba\u30bb\u30bc\u30bd\u30be\u30bf\u30c0\u30c1\u30c2\u30c4\u30c5\u30c6\u30c7\u30c8\u30c9\u30cf\u30d0\u30d1\u30d2\u30d3\u30d4\u30d5\u30d6\u30d7\u30d8\u30d9\u30da\u30db\u30dc\u30dd": [231, 232, 233, 234, 235, 258, 259], "\u30ab\u30b9\u30b1\u30fc\u30c9": [48, 49], "\u30ab\u30b9\u30bf\u30de\u30a4\u30ba": [6, 27, 31, 42, 47, 48, 49, 50, 51, 52, 53, 54, 111, 119, 122, 138, 156, 161, 165, 168, 175, 202, 205, 206, 219, 224, 225, 228, 229, 245, 250, 255, 281, 306], "\u30ab\u30b9\u30bf\u30e0": [81, 167, 177], "\u30ab\u30b9\u30bf\u30e0\u30b9\u30b3\u30a2\u30e9\u30fc": 245, "\u30ab\u30b9\u30bf\u30e0\u30bb\u30ec\u30af\u30bf": 47, "\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0": 49, "\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb": 51, "\u30ab\u30bf\u30ab\u30ca": [53, 54, 159, 201, 230, 231, 232, 233, 234, 235, 240, 250, 257, 258, 259, 264], "\u30ab\u30c3\u30b3": 44, "\u30ab\u30c6\u30b4\u30ea": [125, 156, 165, 168], "\u30ab\u30d0\u30ec\u30c3\u30b8": 3, "\u30ab\u30d0\u30fc": 14, "\u30ab\u30e9\u30e0": [0, 22, 31, 36, 37, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 90, 91, 96, 105, 109, 112, 113, 114, 118, 119, 120, 121, 124, 125, 126, 127, 128, 137, 140, 142, 143, 149, 150, 152, 155, 159, 161, 164, 170, 173, 175, 180, 183, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 206, 208, 209, 210, 211, 219, 221, 224, 225, 226, 237, 239, 243, 244, 245, 248, 250, 251, 252, 253, 254, 261, 281, 282, 301, 304, 305, 307, 311, 313, 314, 315], "\u30ab\u30e9\u30e0n": 210, "\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [22, 47, 304], "\u30ab\u30e9\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 114, "\u30ab\u30e9\u30e0\u30ab\u30e9\u30e0": 141, "\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2": [22, 305], "\u30ab\u30e9\u30e0\u30d1\u30e9\u30e1\u30fc\u30bf": 51, "\u30ab\u30e9\u30e0\u30d9\u30fc\u30b9": [224, 225], "\u30ab\u30eb\u30c6\u30c3\u30c8": 56, "\u30ab\u30ec": [231, 232, 233, 234, 235, 274], "\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": [17, 176], "\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30fc": [111, 161], "\u30ab\u30ec\u30fc": 299, "\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9": 299, "\u30ab\u30f3\u30b8": 201, "\u30ab\u30f3\u30de": [122, 125, 161, 225, 306, 308], "\u30ab\u30fc": [44, 231, 232, 233, 234, 235], "\u30ab\u30fc\u30ad\u30fc\u30af\u30fc\u30b1\u30fc\u30b3\u30fc": [231, 232, 233, 234, 235], "\u30ab\u30fc\u30bd\u30eb": [37, 39, 41, 50], "\u30ab\u30fc\u30cd\u30eb": 281, "\u30ab\u30fc\u30cd\u30eb\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": [47, 281], "\u30ac\u30a2": [44, 231, 232, 233, 234, 235], "\u30ac\u30ae\u30b2\u30b4": [231, 232, 233, 234, 235], "\u30ac\u30c6\u30de\u30e9": 44, "\u30ac\u30fc": [44, 231, 232, 233, 234, 235], "\u30ac\u30fc\u30b8\u30e4\u30fc\u30d0\u30fc\u30c9": 44, "\u30ac\u30fc\u30ba\u30a3\u30e4\u30fc\u30d0\u30fc\u30c9": 44, "\u30ad\u30a4": [44, 231, 232, 233, 234, 235], "\u30ad\u30e3\u30b9\u30c8": [37, 40, 41, 42, 43, 44, 47, 48, 51, 52, 53, 54, 132, 134, 135, 156, 184, 224, 246, 247, 311], "\u30ad\u30e3\u30c3\u30b7\u30e5": [0, 36, 41, 42, 43, 44, 47, 50, 51, 52, 53, 61, 107, 158, 175], "\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc": 107, "\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 61, "\u30ad\u30e3\u30c3\u30b7\u30e5\u30b5\u30a4\u30ba": 177, "\u30ad\u30e3\u30c3\u30b7\u30e5\u30d2\u30c3\u30c8": 48, "\u30ad\u30e3\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb": 177, "\u30ad\u30e3\u30f3\u30bb\u30eb": [45, 51, 52, 98, 99, 153], "\u30ad\u30e3\u30f3\u30bb\u30eb\u30ea\u30af\u30a8\u30b9\u30c8": 153, "\u30ad\u30fc": [34, 37, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 58, 74, 89, 91, 96, 110, 111, 115, 116, 117, 120, 121, 132, 134, 135, 137, 141, 153, 155, 156, 158, 161, 163, 171, 173, 175, 180, 202, 203, 208, 209, 224, 225, 229, 231, 232, 233, 234, 235, 237, 240, 254, 262, 278, 282, 305, 308], "\u30ad\u30fc\u30b5\u30a4\u30ba": [34, 41, 42, 43, 50, 104, 115, 116, 117, 141, 161, 254], "\u30ad\u30fc\u30b5\u30dd\u30fc\u30c8": 254, "\u30ad\u30fc\u30c7\u30fc\u30bf": 161, "\u30ad\u30fc\u30dc\u30fc\u30c9": 156, "\u30ad\u30fc\u30ef\u30fc\u30c9": [0, 22, 36, 38, 42, 43, 44, 45, 47, 48, 51, 52, 53, 54, 133, 156, 161, 191, 192, 193, 202, 205, 206, 224, 244, 245, 246, 247, 252, 275, 276, 278, 299, 300, 302, 308, 310], "\u30ae\u30a4": [44, 231, 232, 233, 234, 235], "\u30ae\u30e3\u30c3\u30d7": [42, 286], "\u30ae\u30fc": [44, 231, 232, 233, 234, 235], "\u30af\u30a6": [44, 231, 232, 233, 234, 235], "\u30af\u30a8\u30ea": [3, 4, 22, 37, 39, 42, 47, 48, 49, 50, 51, 52, 53, 159, 174, 183, 194, 196, 202, 210, 250, 251, 252, 253, 299, 301, 304, 306, 308, 310, 311, 315], "\u30af\u30a8\u30eaapi": 50, "\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": 11, "\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6": 49, "\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6\u30fc": 49, "\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5": 177, "\u30af\u30a8\u30ea\u30d1\u30bf\u30f3": 174, "\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9": 36, "\u30af\u30a8\u30ea\u30d1\u30e9\u30e1\u30fc\u30bf": 47, "\u30af\u30a8\u30ea\u30da\u30a2": 252, "\u30af\u30a8\u30ea\u30ed\u30b0": [39, 47, 52, 250, 251, 253], "\u30af\u30a8\u30ea\u30fc": [22, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 54, 57, 68, 132, 134, 135, 144, 145, 151, 159, 178, 180, 183, 186, 195, 196, 201, 202, 203, 223, 225, 228, 240, 243, 244, 245, 246, 247, 250, 253, 260, 261, 262, 264, 274, 275, 278, 306], "\u30af\u30a8\u30ea\u30fcapi": [92, 100], "\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 241, "\u30af\u30a8\u30ea\u30fc\u30aa\u30da\u30ec\u30fc\u30bf\u30fc": 41, "\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5": [42, 43, 51, 107], "\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc": 107, "\u30af\u30a8\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8": 156, "\u30af\u30a8\u30ea\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": 292, "\u30af\u30a8\u30ea\u30fc\u30d1\u30fc\u30b5\u30fc": 156, "\u30af\u30a8\u30ea\u30fc\u30ed\u30b0": [22, 41, 42, 43, 44, 45, 49, 50, 52, 53, 54, 57, 74, 124, 131, 175, 177, 296], "\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb": 175, "\u30af\u30a9\u30fc\u30c8": [138, 168, 224], "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8": [8, 22, 41, 45, 47, 49, 58, 99, 175, 177, 180, 290, 298], "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3": 49, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30b5\u30a4\u30c9": 99, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9": [53, 147], "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9": [37, 47], "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea": [1, 296], "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc": 49, "\u30af\u30e9\u30c3\u30b7\u30e5": [37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 114, 123, 124, 127, 164, 173], "\u30af\u30e9\u30c3\u30b7\u30e5\u30b1\u30fc\u30b9": 42, "\u30af\u30e9\u30c3\u30b7\u30e5\u30bb\u30fc\u30d5": 45, "\u30af\u30e9\u30c3\u30b7\u30e5\u30d0\u30b0": 50, "\u30af\u30e9\u30c3\u30b7\u30e5\u30ea\u30ab\u30d0\u30ea\u30fc": [43, 44], "\u30af\u30ea\u30a2": [39, 47, 51, 52], "\u30af\u30ea\u30a2\u30b3\u30fc\u30c9": 56, "\u30af\u30ea\u30a2\u30fc": [41, 42, 43, 51, 173], "\u30af\u30ea\u30c3\u30af": [18, 156], "\u30af\u30ea\u30c6\u30a3\u30ab\u30eb": [45, 51], "\u30af\u30ea\u30c6\u30a3\u30ab\u30eb\u30bb\u30af\u30b7\u30e7\u30f3": 51, "\u30af\u30ea\u30fc\u30f3": 12, "\u30af\u30ea\u30fc\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 6, "\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb": [42, 43], "\u30af\u30ed\u30fc\u30ba": [41, 149, 150], "\u30af\u30ed\u30fc\u30e9\u30fc": 56, "\u30af\u30ed\u30fc\u30e9\u30fc\u30b7\u30b9\u30c6\u30e0": 56, "\u30af\u30ed\u30fc\u30f3": [3, 12, 31], "\u30af\u30fc": [44, 231, 232, 233, 234, 235], "\u30b0\u30a1": 44, "\u30b0\u30a1\u30b0\u30a3\u30b0\u30a7\u30b0\u30a9": [231, 232, 233, 234, 235], "\u30b0\u30a1\u30c6\u30de\u30e9": 44, "\u30b0\u30a3": 44, "\u30b0\u30a6": [44, 231, 232, 233, 234, 235], "\u30b0\u30a7": 44, "\u30b0\u30a9": 44, "\u30b0\u30e9\u30d5": 0, "\u30b0\u30e9\u30e0": 275, "\u30b0\u30eb\u30f3\u30ac": 56, "\u30b0\u30eb\u30fc\u30d7": [0, 12, 41, 43, 44, 47, 48, 49, 50, 51, 52, 54, 89, 132, 134, 135, 156, 254, 306], "\u30b0\u30eb\u30fc\u30d7\u30ad\u30fc": [41, 132, 134, 135, 156], "\u30b0\u30ed\u30fc\u30d0\u30eb": [47, 60], "\u30b0\u30ed\u30fc\u30d0\u30eb\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 61, "\u30b0\u30fc": [44, 231, 232, 233, 234, 235], "\u30b1\u30a8": [44, 231, 232, 233, 234, 235], "\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc": 239, "\u30b1\u30fc": [44, 231, 232, 233, 234, 235], "\u30b1\u30fc\u30b9": [18, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 58, 61, 94, 111, 114, 123, 124, 132, 133, 134, 135, 149, 156, 161, 164, 177, 180, 183, 196, 224, 225, 244, 245, 246, 247, 262, 264, 277, 301, 306, 315], "\u30b2\u30a8": [44, 231, 232, 233, 234, 235], "\u30b2\u30c3\u30c8": 2, "\u30b2\u30fc": [44, 231, 232, 233, 234, 235], "\u30b2\u30fc\u30e0": 286, "\u30b3\u30a2": [31, 94, 156, 177, 180, 292], "\u30b3\u30a6": [44, 231, 232, 233, 234, 235], "\u30b3\u30aa": [44, 231, 232, 233, 234, 235], "\u30b3\u30b5\u30a4\u30f3": 45, "\u30b3\u30b9\u30c8": [54, 226], "\u30b3\u30cd\u30af\u30b7\u30e7\u30f3": [41, 50], "\u30b3\u30d4\u30fc": [41, 42, 43, 47, 50, 51, 54, 58, 110, 114, 122, 160, 164], "\u30b3\u30de\u30f3\u30c9": [11, 12, 13, 14, 18, 21, 22, 27, 29, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 61, 91, 93, 95, 96, 98, 99, 102, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 176, 177, 178, 180, 182, 192, 193, 197, 198, 202, 203, 206, 208, 209, 210, 211, 212, 219, 221, 222, 224, 241, 243, 244, 245, 250, 251, 252, 253, 254, 262, 281, 282, 292, 298, 299, 303, 304, 305, 313, 314, 315], "\u30b3\u30de\u30f3\u30c9url": 292, "\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": 11, "\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf": 11, "\u30b3\u30de\u30f3\u30c9\u30a8\u30e9\u30fc": 42, "\u30b3\u30de\u30f3\u30c9\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 142, "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3": [22, 37, 44, 45, 49, 50, 51, 52, 57, 92, 96, 125, 156, 158, 191, 192, 193, 194, 291], "\u30b3\u30de\u30f3\u30c9\u30d1\u30fc\u30b5\u30fc": 244, "\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8": [47, 176], "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3": [6, 12, 17, 18, 27, 31, 39, 49, 50, 122, 155, 177, 244, 292], "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": [54, 125], "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3": [31, 93, 176, 291], "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9": 241, "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b7\u30a7\u30eb": 224, "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b9\u30bf\u30a4\u30eb": [96, 125, 244], "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30d1\u30e9\u30e1\u30fc\u30bf": 52, "\u30b3\u30de\u30f3\u30c9\u30ea\u30b9\u30c8": 175, "\u30b3\u30df\u30c3\u30c8": [6, 18], "\u30b3\u30df\u30e5\u30cb\u30c6\u30a3": [17, 18, 19, 22, 56], "\u30b3\u30e1\u30f3\u30c8": [37, 44, 48, 175, 176, 210, 243, 310], "\u30b3\u30e1\u30f3\u30c8id": 311, "\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8": 310, "\u30b3\u30e1\u30f3\u30c8\u30ab\u30e9\u30e0": 310, "\u30b3\u30e1\u30f3\u30c8\u30c6\u30fc\u30d6\u30eb": 310, "\u30b3\u30f3\u30bd\u30fc\u30eb": 74, "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8": [61, 74, 158, 175, 177, 210, 228], "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8id": [45, 175, 228], "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u30a2\u30c9\u30ec\u30b9": 53, "\u30b3\u30f3\u30c6\u30f3\u30c4": [56, 278], "\u30b3\u30f3\u30c6\u30f3\u30c8\u30bf\u30a4\u30d7": 298, "\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3": 51, "\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30bf\u30fc": 56, "\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8": [22, 51], "\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb": [43, 49, 52, 237], "\u30b3\u30f3\u30d1\u30a4\u30e9": [39, 49], "\u30b3\u30f3\u30d1\u30a4\u30e9\u30fc": [6, 31], "\u30b3\u30f3\u30d1\u30a4\u30eb": [40, 48], "\u30b3\u30f3\u30d1\u30a4\u30eb\u30a8\u30e9\u30fc": [50, 54], "\u30b3\u30f3\u30d1\u30a4\u30eb\u30ac\u30a4\u30c9": 27, "\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0": 12, "\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u30fc": 240, "\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb": 93, "\u30b3\u30f3\u30d5\u30ea\u30af\u30c8": 52, "\u30b3\u30f3\u30de": 111, "\u30b3\u30fc": [44, 231, 232, 233, 234, 235], "\u30b3\u30fc\u30c9": [17, 48, 49, 50, 51, 156, 168, 302], "\u30b3\u30fc\u30eb\u30d0\u30c3\u30af": 11, "\u30b4\u30a6": [44, 231, 232, 233, 234, 235], "\u30b4\u30aa": [44, 231, 232, 233, 234, 235], "\u30b4\u30df": [37, 39, 41, 53, 108, 141], "\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8": [108, 141], "\u30b4\u30df\u30c7\u30fc\u30bf": 180, "\u30b4\u30df\u30ce\u30fc\u30c9": 45, "\u30b4\u30fc": [44, 231, 232, 233, 234, 235], "\u30b5\u30a2": [44, 231, 232, 233, 234, 235], "\u30b5\u30a4\u30ba": [0, 23, 28, 32, 33, 34, 39, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 81, 98, 108, 117, 123, 141, 142, 161, 171, 175, 205, 206, 221, 254, 281, 298, 303, 305], "\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0": [120, 141], "\u30b5\u30a4\u30c8": [156, 223, 305, 307], "\u30b5\u30a4\u30c9\u30e1\u30cb\u30e5\u30fc": 156, "\u30b5\u30b8\u30a7\u30b9\u30c8": [22, 31, 37, 39, 47, 49, 57, 159, 179, 252], "\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf": 180, "\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de": 251, "\u30b5\u30d6\u30a8\u30e9\u30fc": 53, "\u30b5\u30d6\u30af\u30e9\u30b9": 53, "\u30b5\u30d6\u30bb\u30c3\u30c8": 282, "\u30b5\u30d6\u30df\u30c3\u30c8": 180, "\u30b5\u30d6\u30ec\u30b3\u30fc\u30c9": [52, 135], "\u30b5\u30dd\u30fc\u30c8": [0, 1, 6, 7, 10, 21, 26, 27, 31, 32, 36, 37, 39, 40, 41, 42, 44, 47, 48, 49, 50, 51, 52, 53, 54, 93, 111, 132, 134, 135, 153, 154, 156, 158, 161, 167, 168, 173, 176, 177, 195, 201, 219, 224, 225, 226, 231, 235, 236, 239, 240, 241, 243, 244, 248, 254, 260, 274, 277, 292, 295, 296, 305, 306, 310, 312], "\u30b5\u30de\u30ea": 48, "\u30b5\u30ed\u30b2\u30fc\u30c8\u30da\u30a2": 52, "\u30b5\u30f3": 274, "\u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3": 188, "\u30b5\u30f3\u30d7\u30eb": [37, 38, 47, 48, 156, 177, 188, 195, 310], "\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3": 37, "\u30b5\u30f3\u30d7\u30eb\u30b7\u30e3\u30fc\u30c9": 136, "\u30b5\u30f3\u30d7\u30eb\u30b9\u30ad\u30fc\u30de": [137, 142, 155, 186, 194, 195, 196, 197, 198, 202, 203, 208, 209, 210, 211, 212, 219, 221, 245, 246, 247], "\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf": [110, 121, 122, 132, 134, 135, 156, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 237, 244, 245, 246, 247, 276, 278, 286, 310], "\u30b5\u30fc": [44, 231, 232, 233, 234, 235], "\u30b5\u30fc\u30d0": [21, 22, 23, 28, 32, 33, 39, 47, 48, 54, 108, 109, 113, 119, 120, 122, 130, 147, 157, 162, 175, 176, 178, 295], "\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0": 176, "\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9": 175, "\u30b5\u30fc\u30d0\u30fc": [1, 22, 24, 25, 28, 32, 39, 41, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 56, 57, 81, 94, 153, 156, 157, 167, 172, 175, 177, 180, 241, 291, 292, 293, 298], "\u30b5\u30fc\u30d0\u30fcid": 39, "\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8": [22, 24, 25, 28, 32, 47, 49, 50, 289], "\u30b5\u30fc\u30d0\u30fc\u30d7\u30ed\u30bb\u30b9": [48, 105, 157], "\u30b5\u30fc\u30d0\u30fc\u30e2\u30c7\u30eb": [175, 298], "\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9": 50, "\u30b5\u30fc\u30d3\u30b9": [0, 21, 47, 48, 49, 56, 157, 281], "\u30b5\u30fc\u30d3\u30b9\u30b9\u30af\u30ea\u30d7\u30c8": 48, "\u30b6\u30a2": [44, 231, 232, 233, 234, 235], "\u30b6\u30b8\u30bc\u30be": [231, 232, 233, 234, 235], "\u30b6\u30fc": [44, 231, 232, 233, 234, 235], "\u30b7\u30a4": [44, 231, 232, 233, 234, 235], "\u30b7\u30a7\u30a2": 2, "\u30b7\u30a7\u30eb": [31, 50, 175, 176, 224, 244], "\u30b7\u30b0\u30ca\u30eb": [39, 49], "\u30b7\u30b9\u30c6\u30e0": [0, 3, 6, 22, 27, 31, 32, 39, 42, 49, 50, 51, 54, 94, 111, 118, 123, 124, 125, 156, 175, 203, 226, 240, 250, 281, 304], "\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9": 302, "\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8": 48, "\u30b7\u30b9\u30c6\u30e0\u30b3\u30fc\u30eb": 52, "\u30b7\u30b9\u30c6\u30e0\u30ed\u30b1\u30fc\u30eb": 53, "\u30b7\u30ca\u30ea\u30aa": 52, "\u30b7\u30e3\u30c3\u30c8\u30c0\u30a6\u30f3": 157, "\u30b7\u30e3\u30c3\u30d5\u30eb": 111, "\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0": [22, 27, 50, 57, 136, 254], "\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0\u30d0\u30fc\u30b8\u30e7\u30f3": [134, 135], "\u30b7\u30e3\u30fc\u30c9": [41, 43, 44, 50, 52, 54, 132, 134, 135, 136, 137, 248], "\u30b7\u30e3\u30fc\u30c9\u30ad\u30fc": [132, 134, 135, 137], "\u30b7\u30e3\u30fc\u30d7": [111, 161], "\u30b7\u30f3\u30b0\u30eb\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [111, 237], "\u30b7\u30f3\u30b0\u30eb\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0": 111, "\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8": [48, 138, 168, 175, 308], "\u30b7\u30f3\u30b0\u30eb\u30b9\u30ec\u30c3\u30c9\u30e2\u30c7\u30eb": 167, "\u30b7\u30f3\u30b0\u30eb\u30b9\u30ec\u30c3\u30c9\u30e2\u30fc\u30c9": 51, "\u30b7\u30f3\u30bf\u30c3\u30af\u30b9": [44, 49], "\u30b7\u30f3\u30bf\u30c3\u30af\u30b9\u30a8\u30e9\u30fc": [42, 43, 44, 49, 50, 51, 52], "\u30b7\u30f3\u30d7\u30eb": [50, 223, 291, 296, 306], "\u30b7\u30fc": [44, 231, 232, 233, 234, 235], "\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb": [41, 42, 50], "\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30b5\u30fc\u30c1": [41, 42, 45, 50, 51, 52, 53, 54, 183, 195, 196, 226], "\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30b9\u30ad\u30e3\u30f3": [50, 201], "\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30de\u30c3\u30c1": 53, "\u30b7\u30fc\u30b1\u30f3\u30b9": [96, 250, 251, 253], "\u30b8\u30a4": [44, 231, 232, 233, 234, 235], "\u30b8\u30a7\u30cd\u30ec\u30fc\u30bf": 27, "\u30b8\u30a7\u30cd\u30ec\u30fc\u30bf\u30fc": 27, "\u30b8\u30aa\u30b5\u30fc\u30c1": [22, 39, 304], "\u30b8\u30e7\u30d6": [54, 158], "\u30b8\u30f3\u30d9\u30a4\u30b6\u30e1": 44, "\u30b8\u30fc": [44, 231, 232, 233, 234, 235], "\u30b9\u30a6": [44, 231, 232, 233, 234, 235], "\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3": 53, "\u30b9\u30ab\u30e9\u30fc": [51, 52, 53, 90, 91, 134, 141, 156], "\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0": [42, 43, 58, 87, 91, 112, 141, 155], "\u30b9\u30ab\u30e9\u30fc\u30c7\u30fc\u30bf": 91, "\u30b9\u30ad\u30c3\u30d7": [48, 49, 50, 51], "\u30b9\u30ad\u30e3\u30f3": [191, 192, 193], "\u30b9\u30ad\u30fc\u30de": [42, 50, 58, 68, 110, 121, 122, 125, 132, 134, 135, 149, 150, 155, 156, 163, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 237, 244, 245, 246, 247, 248, 276, 278, 281, 286, 310], "\u30b9\u30af\u30ea\u30d7\u30c8": [12, 22, 31, 37, 38, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 57, 68, 111, 112, 125, 141, 142, 154, 155, 156, 176, 186, 210, 223, 224, 244], "\u30b9\u30b1\u30fc\u30d7": 244, "\u30b9\u30b3\u30a2": [11, 41, 42, 47, 50, 51, 52, 53, 89, 91, 111, 156, 159, 245, 246, 247, 301, 310, 315], "\u30b9\u30b3\u30a2\u30e9\u30fc": [22, 41, 50, 53, 57, 156, 246, 247], "\u30b9\u30b3\u30a2\u30fc": [41, 42, 50, 54, 91, 180, 245, 246, 247], "\u30b9\u30b3\u30a2\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb": 245, "\u30b9\u30b3\u30fc\u30d7": 244, "\u30b9\u30bf\u30a4\u30eb": [50, 52, 56, 96, 125, 141, 175, 191, 193], "\u30b9\u30bf\u30c3\u30af": [43, 44], "\u30b9\u30bf\u30c3\u30af\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc": [48, 51], "\u30b9\u30bf\u30c3\u30af\u30b5\u30a4\u30ba": 43, "\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3": 175, "\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30fc\u30f3\u30e2\u30fc\u30c9": [41, 50], "\u30b9\u30bf\u30f3\u30d0\u30a4": 45, "\u30b9\u30c3\u30c8\u30d7\u30ef\u30fc\u30c9": 53, "\u30b9\u30c6\u30c3\u30d7": [18, 110, 244], "\u30b9\u30c6\u30df\u30f3\u30b0": [42, 43, 49, 52, 53, 260], "\u30b9\u30c6\u30df\u30f3\u30b0\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0": 260, "\u30b9\u30c6\u30fc\u30b8": [41, 42, 45, 52, 53, 54, 132, 134, 135, 156], "\u30b9\u30c6\u30fc\u30bf\u30b9": [48, 50, 51, 100, 158, 173, 298], "\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9": 47, "\u30b9\u30c6\u30fc\u30c8\u30d5\u30eb": [53, 298], "\u30b9\u30c6\u30fc\u30c8\u30ec\u30b9": 53, "\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9": [42, 43, 45, 49, 54, 156, 261, 309], "\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3": 49, "\u30b9\u30c8\u30ea\u30fc\u30e0": [41, 49, 51], "\u30b9\u30c8\u30ec\u30fc\u30b8": [22, 41, 43, 101, 111, 161], "\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3": 22, "\u30b9\u30c8\u30ec\u30fc\u30b8\u30e2\u30fc\u30c9": 48, "\u30b9\u30cb\u30da\u30c3\u30c8": [42, 43, 48, 51, 205, 206], "\u30b9\u30d1\u30de\u30fc": [245, 246, 247], "\u30b9\u30d1\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb": [50, 52], "\u30b9\u30d1\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb\u30b5\u30dd\u30fc\u30c8": 50, "\u30b9\u30d4\u30fc\u30c9": 56, "\u30b9\u30da\u30a4\u30f3": [53, 188], "\u30b9\u30da\u30eb": 243, "\u30b9\u30da\u30fc\u30b9": [39, 41, 42, 44, 45, 48, 50, 53, 156, 224], "\u30b9\u30e9\u30a4\u30b9": 53, "\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8": [39, 292], "\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30b0\u30e9\u30d5": 41, "\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30c1\u30e3\u30fc\u30c8": 39, "\u30b9\u30ec\u30c3\u30c9": [0, 9, 41, 42, 45, 50, 51, 52, 53, 54, 81, 94, 105, 118, 127, 133, 156, 157, 158, 163, 166, 167, 175, 176, 180, 203, 292], "\u30b9\u30ec\u30c3\u30c9\u30ab\u30a6\u30f3\u30c8": 54, "\u30b9\u30ec\u30c3\u30c9\u30bb\u30fc\u30d5": [50, 51, 52], "\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb": 81, "\u30b9\u30ed\u30fc\u30af\u30a8\u30ea": 42, "\u30b9\u30ed\u30fc\u30af\u30a8\u30ea\u30fc": [42, 50, 177], "\u30b9\u30ed\u30fc\u30ed\u30b0": [43, 44], "\u30b9\u30ef\u30c3\u30d7": [43, 281], "\u30b9\u30fc": [44, 231, 232, 233, 234, 235], "\u30b9\u30fc\u30d7": 299, "\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc": 299, "\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc": 299, "\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9": 299, "\u30ba\u30a1": 44, "\u30ba\u30a1\u30ba\u30a3\u30ba\u30a7\u30ba\u30a9": [231, 232, 233, 234, 235], "\u30ba\u30a3": 44, "\u30ba\u30a6": [44, 231, 232, 233, 234, 235], "\u30ba\u30a7": 44, "\u30ba\u30a9": 44, "\u30ba\u30ec": 275, "\u30ba\u30fc": [44, 231, 232, 233, 234, 235], "\u30bb\u30a8": [44, 231, 232, 233, 234, 235], "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3": [22, 42, 43, 53, 54, 304], "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc": [43, 49, 50, 52], "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u30ea\u30b9\u30af": 49, "\u30bb\u30af\u30b7\u30e7\u30f3": [3, 17, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 42, 49, 50, 52, 53, 58, 90, 91, 92, 94, 95, 107, 110, 111, 112, 114, 115, 116, 117, 118, 123, 124, 125, 126, 127, 128, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 170, 173, 175, 177, 180, 182, 188, 193, 224, 227, 238, 243, 244, 245, 246, 247, 249, 250, 251, 253, 281, 283, 298, 306, 310], "\u30bb\u30af\u30b7\u30e7\u30f3id": [41, 53], "\u30bb\u30af\u30b7\u30e7\u30f3\u30b5\u30dd\u30fc\u30c8": 111, "\u30bb\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u30d5\u30a9\u30eb\u30c8": 47, "\u30bb\u30b0\u30e1\u30f3\u30c8": [49, 51, 54, 108, 120, 141], "\u30bb\u30b0\u30e1\u30f3\u30c8id": 141, "\u30bb\u30c3\u30b7\u30e7\u30f3": [147, 175, 298], "\u30bb\u30c3\u30b7\u30e7\u30f3id": 180, "\u30bb\u30c3\u30c8": [11, 41, 42, 43, 44, 50, 53, 109, 111, 165, 195, 202, 203, 205, 299], "\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7": [17, 48, 51], "\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u30b9\u30af\u30ea\u30d7\u30c8": 21, "\u30bb\u30de\u30f3\u30c6\u30a3\u30c3\u30af\u30b5\u30fc\u30c1": 45, "\u30bb\u30df\u30b3\u30ed\u30f3": 176, "\u30bb\u30ec\u30af\u30bf": [51, 52], "\u30bb\u30ec\u30af\u30bf\u30fc": [41, 50, 201, 202, 203], "\u30bb\u30f3\u30c6\u30f3\u30b9": [41, 42, 43], "\u30bb\u30f3\u30c8\u30e9\u30eb\u30d1\u30fc\u30af": 311, "\u30bb\u30fc": [44, 231, 232, 233, 234, 235], "\u30bb\u30fc\u30d6\u30eb": 53, "\u30bb\u30fc\u30f4\u30a7\u30eb": 53, "\u30bb\u30fc\u30f4\u30eb": 53, "\u30bc\u30a8": [44, 231, 232, 233, 234, 235], "\u30bc\u30ed\u30b3\u30d4\u30fc": 41, "\u30bc\u30fc": [44, 231, 232, 233, 234, 235], "\u30bd\u30a6": [44, 231, 232, 233, 234, 235], "\u30bd\u30aa": [44, 231, 232, 233, 234, 235], "\u30bd\u30b1\u30c3\u30c8": [47, 108, 109, 113, 119, 120, 122, 130, 147, 162], "\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc": [22, 300], "\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9": 302, "\u30bd\u30d5\u30c8": 243, "\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2": [3, 7, 12, 21, 22, 23, 50, 56], "\u30bd\u30fc": [44, 231, 232, 233, 234, 235], "\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8": 307, "\u30bd\u30fc\u30b9": [12, 22, 23, 39, 41, 45, 47, 51, 52, 53, 111, 112, 142, 155, 173], "\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6": [6, 7, 8, 12, 27, 31, 44], "\u30bd\u30fc\u30b9\u30ab\u30e9\u30e0": [41, 49, 50, 51, 54, 110, 112, 124, 141, 142, 149, 155], "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9": [6, 7, 8, 14, 22, 23, 31, 33, 48, 51, 52, 156, 302], "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u30c7\u30a3\u30c6\u30af\u30c8\u30ea": 27, "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 27, "\u30bd\u30fc\u30b9\u30c6\u30fc\u30d6\u30eb": [41, 42, 142, 160], "\u30bd\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb": 17, "\u30bd\u30fc\u30b9\u30ec\u30b3\u30fc\u30c9": 41, "\u30bd\u30fc\u30c8": [22, 36, 37, 39, 41, 42, 48, 50, 51, 52, 54, 122, 132, 134, 135, 136, 156, 159, 180, 239, 254, 304, 307], "\u30bd\u30fc\u30c8\u30ad\u30fc": [36, 41, 42, 51, 52, 54, 132, 134, 135, 156, 159, 286], "\u30bd\u30fc\u30c8\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9": 41, "\u30be\u30a6": [44, 231, 232, 233, 234, 235], "\u30be\u30aa": [44, 231, 232, 233, 234, 235], "\u30be\u30fc": [44, 231, 232, 233, 234, 235], "\u30bf\u30a2": [44, 231, 232, 233, 234, 235], "\u30bf\u30a4\u30c8\u30eb": [43, 90, 132, 134, 135, 156, 224, 225, 245, 246, 247, 305, 307, 310], "\u30bf\u30a4\u30d7": [39, 43, 44, 50, 156, 176, 292], "\u30bf\u30a4\u30d7id": 51, "\u30bf\u30a4\u30df\u30f3\u30b0": [41, 42, 43, 45, 47, 52, 54, 156, 308], "\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8": [48, 175], "\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7": [38, 42, 51, 53, 173, 175, 180, 228, 250, 251, 253], "\u30bf\u30b0": [12, 22, 37, 39, 43, 44, 47, 48, 49, 53, 90, 91, 132, 134, 135, 156, 161, 191, 192, 193, 194, 205, 206, 225, 245, 246, 247, 254, 304, 311], "\u30bf\u30b0\u30c6\u30ad\u30b9\u30c8": [272, 273], "\u30bf\u30d6": [241, 243, 298], "\u30bf\u30fc": [44, 231, 232, 233, 234, 235], "\u30bf\u30fc\u30b2\u30c3\u30c8": [47, 51], "\u30bf\u30fc\u30b2\u30c3\u30c8\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 61, "\u30bf\u30fc\u30df\u30ca\u30eb": [175, 177], "\u30c0\u30a2": [44, 231, 232, 233, 234, 235], "\u30c0\u30a4\u30a2\u30ed\u30b0": 48, "\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8": 292, "\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0": [58, 291], "\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9": [12, 22, 23, 31, 33, 176, 227], "\u30c0\u30d6\u30eb": [39, 47, 161, 224, 225, 254], "\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8": [138, 168, 175, 308], "\u30c0\u30e1\u30fc\u30b8": 301, "\u30c0\u30f3\u30d7": [37, 41, 42, 43, 47, 48, 50, 51, 52, 54, 122, 175, 228, 281], "\u30c0\u30fc": [44, 231, 232, 233, 234, 235], "\u30c1\u30a4": [44, 231, 232, 233, 234, 235], "\u30c1\u30a7\u30c3\u30af": [37, 39, 41, 42, 47, 48, 49, 50, 51, 52, 53, 54, 96, 108, 123, 124, 137, 140, 163, 173, 174, 176, 180, 183, 224, 225], "\u30c1\u30a7\u30c3\u30af\u30b5\u30e0": 12, "\u30c1\u30a7\u30c3\u30af\u30dc\u30c3\u30af\u30b9": 42, "\u30c1\u30a7\u30f3\u30b8\u30ed\u30b0": 12, "\u30c1\u30b8\u30df": 44, "\u30c1\u30c2\u30df": 44, "\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0": [22, 50], "\u30c1\u30e3\u30cd\u30eb": 53, "\u30c1\u30e3\u30f3\u30af": [41, 50, 51, 53, 108, 141], "\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba": 108, "\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8": 108, "\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb": [22, 39, 47, 49, 50, 305, 308], "\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0": [22, 48, 50, 57, 91, 156, 303], "\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": 281, "\u30c1\u30fc": [44, 231, 232, 233, 234, 235], "\u30c1\u30fc\u30e0": 12, "\u30c2\u30a4": [44, 231, 232, 233, 234, 235], "\u30c2\u30fc": [44, 231, 232, 233, 234, 235], "\u30c4\u30a4\u30fc\u30c8": [2, 12], "\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3": 12, "\u30c4\u30a6": [44, 231, 232, 233, 234, 235], "\u30c4\u30ba\u30e9": 44, "\u30c4\u30ea\u30fc": [49, 56, 96], "\u30c4\u30fc": [44, 231, 232, 233, 234, 235], "\u30c4\u30fc\u30eb": [17, 22, 41, 42, 50, 54, 96, 174, 175, 178, 227, 292, 296, 304, 308], "\u30c5\u30a1": 44, "\u30c5\u30a1\u30c5\u30a3\u30c5\u30a7\u30c5\u30a9": [231, 232, 233, 234, 235], "\u30c5\u30a3": 44, "\u30c5\u30a6": [44, 231, 232, 233, 234, 235], "\u30c5\u30a7": 44, "\u30c5\u30a9": 44, "\u30c5\u30fc": [44, 231, 232, 233, 234, 235], "\u30c6\u30a8": [44, 231, 232, 233, 234, 235], "\u30c6\u30ad\u30b9\u30c8": [17, 37, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 68, 74, 91, 111, 135, 138, 156, 161, 165, 168, 176, 191, 192, 193, 194, 197, 205, 206, 224, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 244, 257, 258, 259, 262, 264, 265, 266, 267, 268, 272, 275, 277], "\u30c6\u30ad\u30b9\u30c8\u30ab\u30e9\u30e0": 50, "\u30c6\u30ad\u30b9\u30c8\u30c7\u30fc\u30bf": [51, 161], "\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb": 176, "\u30c6\u30ad\u30b9\u30c8\u30d9\u30fc\u30b9": 45, "\u30c6\u30af\u30b9\u30c8": 156, "\u30c6\u30af\u30cb\u30c3\u30af": [245, 246, 247], "\u30c6\u30b9\u30c8": [3, 4, 6, 7, 8, 22, 23, 28, 32, 33, 37, 47, 49, 50, 51, 54, 133, 177, 301, 311], "\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9": 14, "\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0": 176, "\u30c6\u30f3\u30dd\u30e9\u30ea\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9": 52, "\u30c6\u30fc": [44, 231, 232, 233, 234, 235], "\u30c6\u30fc\u30d6\u30eb": [11, 22, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 74, 87, 89, 104, 105, 108, 109, 112, 113, 114, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 132, 134, 135, 136, 138, 140, 142, 143, 149, 150, 152, 155, 156, 159, 160, 162, 164, 165, 170, 173, 175, 177, 180, 183, 188, 192, 195, 196, 198, 201, 202, 210, 221, 224, 225, 229, 237, 240, 243, 244, 248, 250, 253, 255, 261, 276, 278, 281, 292, 295, 301, 304, 306, 307, 309, 313, 314], "\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [162, 164], "\u30c6\u30fc\u30d6\u30eb\u30d7\u30e9\u30b0\u30a4\u30f3": 47, "\u30c7\u30a3\u30b9\u30af": [36, 50, 51, 52, 118, 124, 140, 175, 177, 310], "\u30c7\u30a3\u30b9\u30afi": 161, "\u30c7\u30a3\u30b9\u30af\u30d5\u30eb": 50, "\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3": [31, 37, 44], "\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6": [47, 48, 54, 179, 292], "\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": [14, 17, 27, 31, 37, 39, 41, 47, 50, 53, 175, 176, 177, 243], "\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9": 48, "\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30fc": [6, 180, 197], "\u30c7\u30a3\u30f3\u30b0": [45, 197], "\u30c7\u30a8": [44, 231, 232, 233, 234, 235], "\u30c7\u30af\u30ea\u30e1\u30f3\u30c8": [42, 52], "\u30c7\u30b3\u30fc\u30c9": 46, "\u30c7\u30b6\u30a4\u30f3": 47, "\u30c7\u30b9": 274, "\u30c7\u30c3\u30c9\u30ed\u30c3\u30af": 52, "\u30c7\u30d0\u30c3\u30ac\u30fc": 6, "\u30c7\u30d0\u30c3\u30b0": [6, 8, 27, 49, 50, 51, 52, 56, 108, 168, 175, 177, 228], "\u30c7\u30d0\u30c3\u30b0\u30aa\u30d7\u30b7\u30e7\u30f3": 6, "\u30c7\u30d0\u30c3\u30b0\u30ec\u30d9\u30eb": 43, "\u30c7\u30d0\u30c3\u30b0\u30ed\u30b0": [45, 50, 51, 123], "\u30c7\u30d5\u30a9\u30eb\u30c8": [6, 11, 18, 27, 31, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 91, 93, 96, 111, 119, 122, 123, 125, 126, 127, 128, 132, 133, 134, 135, 137, 141, 143, 152, 156, 157, 158, 159, 161, 163, 165, 168, 173, 174, 175, 176, 177, 180, 183, 184, 186, 188, 189, 191, 193, 196, 202, 203, 205, 208, 209, 219, 224, 225, 226, 228, 231, 237, 241, 245, 247, 275, 281, 282, 292, 298, 299, 301, 305, 306, 308], "\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc": [47, 51, 53, 110, 161, 251], "\u30c7\u30d5\u30a9\u30eb\u30c8\u30dd\u30fc\u30c8": 49, "\u30c7\u30d5\u30e9\u30b0": 39, "\u30c7\u30d7\u30ed\u30a4": 177, "\u30c7\u30e1\u30ea\u30c3\u30c8": [52, 254], "\u30c7\u30ea\u30fc": 44, "\u30c7\u30f3\u30de\u30fc\u30af": 53, "\u30c7\u30fc": [44, 231, 232, 233, 234, 235], "\u30c7\u30fc\u30bf": [0, 11, 22, 23, 28, 32, 33, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 81, 91, 106, 112, 122, 125, 132, 134, 135, 141, 142, 156, 159, 173, 177, 178, 180, 188, 224, 225, 226, 239, 243, 245, 246, 247, 248, 249, 251, 252, 254, 281, 292, 298, 301, 304, 307, 310, 313], "\u30c7\u30fc\u30bf\u30ab\u30e9\u30e0": [41, 43, 50, 51, 52, 111, 141, 149, 152, 156, 173, 246, 247, 310], "\u30c7\u30fc\u30bf\u30b5\u30a4\u30ba": 51, "\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2": 61, "\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [87, 90], "\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0": [22, 57], "\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8": [159, 180, 250], "\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb": 176, "\u30c7\u30fc\u30bf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8": 292, "\u30c7\u30fc\u30bf\u30d9\u30fc": 39, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9": [0, 11, 20, 22, 31, 36, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 61, 89, 106, 108, 109, 112, 118, 120, 122, 124, 125, 126, 127, 128, 139, 140, 142, 143, 144, 149, 150, 151, 152, 155, 161, 163, 169, 171, 173, 175, 176, 177, 180, 181, 223, 224, 225, 229, 248, 250, 254, 281, 282, 291, 296, 298, 303, 304, 312], "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0": 51, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [52, 173], "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30aa\u30fc\u30d7\u30f3": 42, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b5\u30a4\u30ba": 281, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b9\u30ad\u30fc\u30de": 122, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb": [48, 281], "\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9": [36, 161, 311], "\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u30b3\u30de\u30f3\u30c9": 248, "\u30c7\u30fc\u30e2\u30f3": [36, 47, 48, 50, 175, 177, 180, 295, 312], "\u30c7\u30fc\u30e2\u30f3\u30d7\u30ed\u30bb\u30b9": 177, "\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9": [48, 49], "\u30c8\u30a6": [44, 231, 232, 233, 234, 235], "\u30c8\u30aa": [44, 231, 232, 233, 234, 235], "\u30c8\u30c3\u30d7": 12, "\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 14, "\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30fc": 27, "\u30c8\u30c3\u30d7\u30ec\u30d9\u30eb\u30c9\u30e1\u30a4\u30f3": 306, "\u30c8\u30d4\u30c3\u30af": 12, "\u30c8\u30e2": 307, "\u30c8\u30e9\u30a4": [39, 161, 224, 225, 254], "\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0": [22, 37], "\u30c8\u30ea\u30ac\u30fc": 12, "\u30c8\u30ea\u30b0\u30e9\u30e0": [275, 279], "\u30c8\u30ec\u30fc\u30b9\u30ed\u30b0": [22, 44, 57, 92], "\u30c8\u30ec\u30fc\u30b9\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea\u30fc": 96, "\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5": [262, 301], "\u30c8\u30fc": [44, 231, 232, 233, 234, 235], "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6": [22, 47, 56, 299], "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3": 47, "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3api": 47, "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc": [22, 24, 25, 28, 30, 32, 37, 38, 39, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 57, 102, 111, 124, 132, 134, 135, 142, 155, 156, 161, 165, 168, 169, 224, 225, 237, 244, 251, 253, 262, 264, 274, 275, 276, 277, 278, 299, 300], "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fcapi": 47, "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 50, "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3": [49, 168], "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30e2\u30fc\u30b8\u30e5\u30fc\u30eb": 262, "\u30c8\u30fc\u30af\u30ca\u30a4\u30ba": [31, 39, 41, 43, 44, 50, 51, 53, 56, 123, 156, 165, 168, 224, 225, 229, 237, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 266, 267, 268, 269, 270, 271, 272, 274, 275, 279, 280, 299, 301, 308], "\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u30e2\u30fc\u30c9": [51, 165, 168], "\u30c8\u30fc\u30af\u30f3": [37, 39, 41, 43, 44, 45, 48, 49, 50, 51, 53, 54, 111, 123, 156, 161, 165, 168, 224, 225, 229, 251, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 272, 274, 275, 276, 278, 279, 280, 299], "\u30c8\u30fc\u30af\u30f3id": 41, "\u30c8\u30fc\u30af\u30f3\u30ab\u30e9\u30e0": 41, "\u30c8\u30fc\u30af\u30f3\u30b5\u30a4\u30ba": 44, "\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf": [49, 53], "\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc": [22, 28, 32, 41, 42, 43, 44, 49, 50, 51, 52, 53, 54, 57, 124, 142, 155, 161, 165, 168, 255, 257, 258, 259, 260, 261], "\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 50, "\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3": 255, "\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb": 255, "\u30c8\u30fc\u30bf\u30eb": [42, 43], "\u30c8\u30fc\u30bf\u30eb\u30b5\u30a4\u30ba": 41, "\u30c9\u30a4\u30c4": 53, "\u30c9\u30a6": [44, 231, 232, 233, 234, 235], "\u30c9\u30aa": [44, 231, 232, 233, 234, 235], "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8": [3, 5, 6, 7, 8, 16, 17, 23, 27, 31, 37, 39, 40, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 56, 87, 95, 102, 111, 137, 156, 168, 176, 177, 180, 224, 225, 244, 247, 262, 281, 303], "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30c4\u30fc\u30eb": [15, 18], "\u30c9\u30e1\u30a4\u30f3": [49, 51, 306], "\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3": [22, 39, 41, 43, 44, 48, 49, 50, 51, 52, 54, 134, 254, 282, 304, 307, 311], "\u30c9\u30fc": [44, 231, 232, 233, 234, 235], "\u30ca\u30a2": [44, 231, 232, 233, 234, 235], "\u30ca\u30ce": [37, 41, 95, 96, 228], "\u30ca\u30de\u30a8": [231, 232, 233, 234, 235, 274], "\u30ca\u30fc": [44, 231, 232, 233, 234, 235], "\u30cb\u30a4": [44, 231, 232, 233, 234, 235], "\u30cb\u30b3\u30b9\u30ab\u30b6\u30f3\u30b6\u30ad\u30b9": 44, "\u30cb\u30b3\u30b9\u30ab\u30b6\u30f3\u30c5\u30a1\u30ad\u30b9": 44, "\u30cb\u30c3\u30dd\u30f3": [201, 240, 250], "\u30cb\u30db\u30f3": [201, 240, 250], "\u30cb\u30db\u30f3\u30b4": 250, "\u30cb\u30db\u30f3\u30b8\u30f3": 250, "\u30cb\u30e5\u30fc\u30b9": [51, 226], "\u30cb\u30e5\u30fc\u30e8\u30fc\u30af": [74, 188, 311], "\u30cb\u30fc": [44, 231, 232, 233, 234, 235], "\u30cc\u30a6": [44, 231, 232, 233, 234, 235], "\u30cc\u30fc": [44, 231, 232, 233, 234, 235], "\u30cd\u30a8": [44, 231, 232, 233, 234, 235], "\u30cd\u30b9\u30c8": [42, 47, 48, 49, 50, 53, 54, 141, 310], "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af": [105, 292, 312], "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30a2\u30af\u30bb\u30b9": 105, "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc": [47, 298], "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d7\u30ed\u30c8\u30b3\u30eb": 47, "\u30cd\u30fc": [44, 231, 232, 233, 234, 235], "\u30ce\u30a4\u30ba": [42, 45, 180, 251, 274, 301], "\u30ce\u30a6": [44, 231, 232, 233, 234, 235], "\u30ce\u30a6\u30cf\u30a6": 56, "\u30ce\u30aa": [44, 231, 232, 233, 234, 235], "\u30ce\u30eb\u30a6\u30a7\u30fc": 53, "\u30ce\u30fc": [44, 231, 232, 233, 234, 235], "\u30ce\u30fc\u30c9": [47, 51], "\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc": [22, 24, 25, 28, 32, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 57, 102, 110, 111, 138, 139, 142, 155, 156, 161, 165, 168, 191, 192, 193, 225, 230, 231, 232, 233, 234, 235, 236, 237, 244, 264, 275, 279, 280], "\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 50, "\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d7\u30b7\u30e7\u30f3": 229, "\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3": [138, 229], "\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb": 229, "\u30ce\u30fc\u30de\u30e9\u30a4\u30ba": [42, 43, 44, 45, 48, 49, 54, 111, 138, 168, 257, 258, 259, 275, 308], "\u30cf\u30a2": [44, 231, 232, 233, 234, 235], "\u30cf\u30a4\u30d5\u30f3": [44, 53, 111, 161, 231, 232, 233, 234, 235, 257, 258, 259, 308], "\u30cf\u30a4\u30e9\u30a4\u30c8": [41, 45, 51, 53, 54, 191, 192, 193, 237, 275], "\u30cf\u30b9\u30ce\u30ab\u30c5\u30e9": 44, "\u30cf\u30ba": 274, "\u30cf\u30c3\u30b7\u30e5": [47, 50, 54, 108], "\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb": [39, 41, 42, 43, 48, 50, 52, 53, 54, 104, 122, 142, 161, 225, 254], "\u30cf\u30fc": [44, 231, 232, 233, 234, 235], "\u30d0\u30a2": [44, 231, 232, 233, 234, 235], "\u30d0\u30a4\u30aa\u30ea\u30f3": [53, 231, 235], "\u30d0\u30a4\u30b0\u30e9\u30e0": [44, 53, 262, 264, 266, 267, 268, 269, 270, 271, 275, 277, 301], "\u30d0\u30a4\u30b0\u30e9\u30e0\u30d9\u30fc\u30b9": 264, "\u30d0\u30a4\u30c8": [34, 37, 39, 43, 47, 48, 49, 50, 51, 52, 98, 100, 111, 141, 142, 155, 156, 158, 205, 206, 254, 282], "\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc": 47, "\u30d0\u30a4\u30c8\u30b5\u30a4\u30ba": [50, 68], "\u30d0\u30a4\u30c8\u30b7\u30fc\u30b1\u30f3\u30b9": 48, "\u30d0\u30a4\u30ca\u30ea\u30c7\u30fc\u30bf": [47, 54], "\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb": [1, 14, 22, 50, 51, 289, 312], "\u30d0\u30a4\u30ca\u30ea\u30fc": 95, "\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0": [20, 21, 223], "\u30d0\u30a4\u30f3\u30c9": 50, "\u30d0\u30af": 54, "\u30d0\u30b0": [10, 39, 42, 45, 48, 50, 51, 53, 54], "\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9": 50, "\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9\u30ea\u30ea\u30fc\u30b9": [47, 49, 50, 51], "\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8": [3, 22, 31, 49], "\u30d0\u30c3\u30af\u30a2\u30c3\u30d7": [106, 122], "\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5": [48, 68, 175, 224], "\u30d0\u30c3\u30af\u30c8\u30ec\u30fc\u30b9": [41, 42, 43, 44, 51, 52, 166], "\u30d0\u30c3\u30af\u30c8\u30ec\u30fc\u30b9\u30ed\u30ae\u30f3\u30b0\u30d7\u30ed\u30bb\u30b9": 42, "\u30d0\u30c3\u30c1\u30e2\u30fc\u30c9": 47, "\u30d0\u30c3\u30d5\u30a1": [47, 48, 51, 68, 108, 310], "\u30d0\u30c3\u30d5\u30a1id": 108, "\u30d0\u30c3\u30d5\u30a1\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc": 51, "\u30d0\u30c3\u30d5\u30a1\u30b5\u30a4\u30ba": 50, "\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8": 108, "\u30d0\u30c3\u30d5\u30a1\u30ea\u30f3\u30b0": 48, "\u30d0\u30c3\u30d5\u30a1\u30fc": [53, 54], "\u30d0\u30d3\u30d6\u30d9\u30dc": [53, 231, 235], "\u30d0\u30d3\u30d6\u30d9\u30dc\u30d6": [231, 232, 233, 234, 235, 258, 259], "\u30d0\u30e9\u30f3\u30b9": 44, "\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3": 53, "\u30d0\u30ea\u30e5\u30fc": 96, "\u30d0\u30ea\u30e5\u30fc\u30b5\u30dd\u30fc\u30c8": 254, "\u30d0\u30eb\u30af": 50, "\u30d0\u30eb\u30af\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [50, 51], "\u30d0\u30f3\u30c9\u30eb": [41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54], "\u30d0\u30fc": [44, 231, 232, 233, 234, 235], "\u30d0\u30fc\u30b8\u30e7\u30f3": [12, 17, 32, 35, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 85, 109, 132, 134, 135, 151, 156, 158, 175, 188, 191, 192, 193, 205, 206, 231, 232, 233, 234, 235, 236, 257, 258, 259, 284, 308], "\u30d0\u30fc\u30b8\u30e7\u30f3\u30a2\u30c3\u30d7": [42, 43], "\u30d0\u30fc\u30c1\u30e4\u30eb": 44, "\u30d1\u30a2": [44, 231, 232, 233, 234, 235], "\u30d1\u30b8\u30e7\u30f3": 44, "\u30d1\u30b9": [12, 27, 31, 37, 38, 39, 41, 44, 45, 49, 50, 52, 53, 111, 112, 142, 144, 145, 151, 161, 173, 174, 175, 176, 177, 178, 180, 181, 292, 298, 308], "\u30d1\u30b9\u30b9\u30bf\u30a4\u30eb": 244, "\u30d1\u30b9\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9": 54, "\u30d1\u30bd\u30b3\u30f3": 56, "\u30d1\u30bf\u30fc\u30f3": [50, 52, 53, 54, 95, 195, 208, 224, 225, 244, 276], "\u30d1\u30bf\u30fc\u30f3\u30de\u30c3\u30c1": 244, "\u30d1\u30c3\u30b1\u30fc\u30b8": [8, 23, 24, 25, 26, 27, 28, 31, 32, 33, 37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 54, 93, 94, 111, 156, 172, 177, 197, 260, 274, 296], "\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9": 37, "\u30d1\u30c3\u30b1\u30fc\u30b8\u30f3\u30b0": 41, "\u30d1\u30c3\u30b1\u30fc\u30b8\u30f3\u30b0\u30dd\u30ea\u30b7\u30fc": 48, "\u30d1\u30c3\u30c1": [3, 16, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "\u30d1\u30c8\u30ea\u30b7\u30a2": [22, 47, 299, 304, 308], "\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4": [37, 39, 43, 44, 48, 50, 51, 54, 104, 120, 161, 224, 225, 254], "\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30c6\u30fc\u30d6\u30eb": [41, 142, 224, 225], "\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30ce\u30fc\u30c9": 50, "\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9": [41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 54, 156, 174, 175, 177, 180, 196, 296], "\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0": 43, "\u30d1\u30e9\u30e1\u30fc\u30bf": [22, 27, 31, 39, 41, 42, 47, 48, 49, 51, 52, 53, 54, 61, 68, 74, 81, 85, 135, 156, 174, 180, 191, 299, 303, 304, 306, 308, 311, 312, 315], "\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": [39, 40, 41, 49, 50, 51, 53, 54, 97, 98, 99, 111, 124, 125, 126, 127, 128, 132, 133, 134, 137, 149, 150, 152, 153, 157, 161, 163, 168, 177, 178, 180, 195, 202, 203, 210, 219, 243, 281, 305], "\u30d1\u30ea": 188, "\u30d1\u30fc": [44, 231, 232, 233, 234, 235], "\u30d1\u30fc\u30b5\u30fc": [54, 244], "\u30d1\u30fc\u30b9": [39, 41, 44, 51, 52, 54, 68, 202, 223], "\u30d1\u30fc\u30b9\u30a8\u30e9\u30fc": 52, "\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3": 49, "\u30d2\u30a4": [44, 231, 232, 233, 234, 235], "\u30d2\u30c3\u30c8": [11, 41, 42, 43, 44, 45, 48, 51, 52, 53, 54, 156, 186, 226, 240, 250, 276, 299, 301, 311, 313], "\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2": [156, 223, 301], "\u30d2\u30e5\u30d9\u30cb": [188, 189], "\u30d2\u30fc": [44, 231, 232, 233, 234, 235], "\u30d3\u30a4": [44, 231, 232, 233, 234, 235], "\u30d3\u30b8\u30cd\u30b9": 56, "\u30d3\u30b8\u30e7\u30f3": 56, "\u30d3\u30c3\u30b0\u30a8\u30f3\u30c7\u30a3\u30a2\u30f3": 49, "\u30d3\u30c3\u30c8": [45, 50, 111, 224, 298, 305], "\u30d3\u30c3\u30c8\u30b7\u30d5\u30c8": 225, "\u30d3\u30e5\u30fc": 47, "\u30d3\u30eb\u30c8\u30a4\u30f3": [41, 48, 53], "\u30d3\u30eb\u30c9": [3, 4, 18, 21, 22, 23, 37, 39, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 111, 156, 243, 248], "\u30d3\u30eb\u30c9\u30a8\u30e9\u30fc": [45, 49, 50, 51, 52, 54], "\u30d3\u30eb\u30c9\u30aa\u30d7\u30b7\u30e7\u30f3": 31, "\u30d3\u30eb\u30c9\u30b7\u30b9\u30c6\u30e0": [5, 31], "\u30d3\u30eb\u30c9\u30bf\u30a4\u30e0": 6, "\u30d3\u30eb\u30c9\u30c4\u30fc\u30eb": [6, 44], "\u30d3\u30eb\u30c9\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 27, "\u30d3\u30eb\u30c9\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": [6, 27, 171], "\u30d3\u30eb\u30c9\u30d5\u30a1\u30a4\u30eb": 27, "\u30d3\u30fc": [44, 231, 232, 233, 234, 235], "\u30d4\u30a4": [44, 231, 232, 233, 234, 235], "\u30d4\u30ea\u30aa\u30c9": 310, "\u30d4\u30fc": [44, 231, 232, 233, 234, 235], "\u30d4\u30fc\u30af": 56, "\u30d5\u30a1\u30a4\u30e4\u30fc\u30a6\u30a9\u30fc\u30eb": 105, "\u30d5\u30a1\u30a4\u30eb": [3, 12, 22, 27, 31, 33, 36, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 81, 93, 99, 101, 108, 109, 113, 119, 120, 122, 130, 147, 153, 156, 162, 167, 173, 176, 177, 178, 197, 225, 228, 248, 250, 290, 291, 296, 298, 308], "\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba": 50, "\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0": 39, "\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf": 37, "\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u30fc": [47, 180], "\u30d5\u30a1\u30a4\u30eb\u30cf\u30f3\u30c9\u30eb": 52, "\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9": 27, "\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30fc\u30de\u30c3\u30c8": 243, "\u30d5\u30a1\u30a4\u30eb\u30de\u30c3\u30d4\u30f3\u30b0": 52, "\u30d5\u30a1\u30bb\u30c3\u30c8": 156, "\u30d5\u30a3\u30eb\u30bf": [47, 50, 51, 52], "\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0": [43, 48, 111], "\u30d5\u30a3\u30eb\u30bf\u30fc": [42, 43, 44, 53, 54, 111, 132, 134, 135, 141, 156, 210], "\u30d5\u30a3\u30eb\u30bf\u30fc\u30bf\u30a4\u30df\u30f3\u30b0": [52, 53], "\u30d5\u30a3\u30eb\u30bf\u30fc\u30c6\u30ad\u30b9\u30c8": 156, "\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9": 53, "\u30d5\u30a3\u30fc\u30eb\u30c9": 112, "\u30d5\u30a6": [44, 231, 232, 233, 234, 235], "\u30d5\u30a9\u30eb\u30c0": 27, "\u30d5\u30a9\u30eb\u30c0\u30fc": 33, "\u30d5\u30a9\u30ed\u30ef\u30fc": 12, "\u30d5\u30a9\u30ed\u30fc": 2, "\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8": 311, "\u30d5\u30a9\u30fc\u30ab\u30b9": [45, 231, 235], "\u30d5\u30a9\u30fc\u30af": 3, "\u30d5\u30a9\u30fc\u30af\u30ea\u30dd\u30b8\u30c8\u30ea": 18, "\u30d5\u30a9\u30fc\u30de\u30c3\u30c8": [42, 43, 44, 50, 52, 53, 54, 108, 122, 125, 132, 134, 135, 141, 159, 175, 177, 180, 225, 227, 248, 292, 311], "\u30d5\u30a9\u30fc\u30e0": [48, 156, 223, 224], "\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af": [51, 52], "\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af\u30e2\u30fc\u30c9": 50, "\u30d5\u30c3\u30af": 21, "\u30d5\u30e9\u30b0": [31, 34, 36, 39, 40, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 74, 91, 108, 109, 111, 112, 113, 119, 130, 132, 134, 135, 138, 141, 142, 155, 156, 161, 168, 173, 175, 202, 224, 225, 229, 230, 244, 254, 298, 305, 308, 309, 313], "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7": 120, "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3": [36, 120], "\u30d5\u30e9\u30c3\u30b7\u30e5": [50, 51, 52, 53, 124], "\u30d5\u30e9\u30c3\u30c8": 96, "\u30d5\u30e9\u30f3\u30b9": [53, 188, 260], "\u30d5\u30ea\u30fc\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u30e9\u30a4\u30bb\u30f3\u30b9": 45, "\u30d5\u30eb\u30d1\u30b9": 54, "\u30d5\u30ec\u30fc\u30ba": [41, 42, 43, 44, 45, 47, 51, 111], "\u30d5\u30ec\u30fc\u30ba\u30b0\u30eb\u30fc\u30d7": 44, "\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af": 14, "\u30d5\u30fc": [44, 231, 232, 233, 234, 235], "\u30d6\u30a2\u30fc\u30c1\u30e4\u30eb": 44, "\u30d6\u30a6": [44, 231, 232, 233, 234, 235], "\u30d6\u30c3\u30af\u30de\u30fc\u30af": 91, "\u30d6\u30d6\u30d6\u30d6\u30d6\u30d6": [231, 232, 233, 234, 235, 258, 259], "\u30d6\u30e9\u30a6\u30b6": [17, 31, 312], "\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9": [22, 304], "\u30d6\u30e9\u30a6\u30b6\u30fc\u30d9\u30fc\u30b9": [41, 42], "\u30d6\u30e9\u30b8\u30ea\u30a2": 188, "\u30d6\u30e9\u30b8\u30eb": [22, 188], "\u30d6\u30e9\u30f3\u30c1": [12, 44], "\u30d6\u30eb\u30fc\u30ce\u30fc\u30c8\u30b9\u30b1\u30fc\u30eb": 56, "\u30d6\u30ed\u30b0": [210, 226, 310, 311], "\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea": [12, 156, 224, 225, 310], "\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea\u30fc": [132, 134, 135], "\u30d6\u30ed\u30c3\u30af": [0, 48, 106, 177], "\u30d6\u30fc": [44, 231, 232, 233, 234, 235], "\u30d6\u30fc\u30ea\u30a2\u30f3": 282, "\u30d6\u30fc\u30eb": [53, 282, 305], "\u30d7\u30a6": [44, 231, 232, 233, 234, 235], "\u30d7\u30c3\u30b7\u30e5": [12, 18], "\u30d7\u30e9\u30b0\u30a4\u30f3": [0, 17, 24, 25, 27, 28, 31, 32, 36, 37, 38, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 53, 54, 103, 122, 132, 133, 134, 135, 136, 137, 142, 144, 145, 151, 154, 155, 156, 197, 198, 208, 209, 211, 212, 219, 221, 222, 229, 243, 248, 255], "\u30d7\u30e9\u30b0\u30a4\u30f3api": 49, "\u30d7\u30e9\u30b0\u30a4\u30f3id": 142, "\u30d7\u30e9\u30b0\u30de": 156, "\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0": [14, 17, 23, 27, 31, 39], "\u30d7\u30e9\u30f3": 41, "\u30d7\u30ea\u30bb\u30c3\u30c8": 23, "\u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8": [22, 50, 51, 57, 92], "\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8": 12, "\u30d7\u30ec\u30d3\u30e5\u30fc": 18, "\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9": [54, 81, 156, 177, 180, 248, 254, 308], "\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9": 291, "\u30d7\u30ec\u30fc\u30b9\u30db\u30eb\u30c0": 48, "\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0": 1, "\u30d7\u30ed\u30b0\u30e9\u30e0": [3, 37, 47, 52, 112, 175, 177, 180, 225], "\u30d7\u30ed\u30b0\u30ec\u30b9\u30ed\u30b0": 123, "\u30d7\u30ed\u30b0\u30ec\u30d0\u30f3\u30c9": 56, "\u30d7\u30ed\u30b7\u30fc\u30b8\u30e3": 201, "\u30d7\u30ed\u30b7\u30fc\u30b8\u30e3\u30fc": 41, "\u30d7\u30ed\u30b8\u30a7\u30af\u30c8": [0, 3, 12, 13, 17, 19, 21, 49, 296], "\u30d7\u30ed\u30bb\u30b9": [0, 41, 42, 47, 48, 50, 51, 53, 93, 101, 108, 111, 114, 124, 127, 144, 147, 151, 152, 158, 161, 164, 171, 173, 174, 175, 176, 177, 180, 228, 292, 308], "\u30d7\u30ed\u30bb\u30b9id": [45, 175, 298], "\u30d7\u30ed\u30bb\u30b9\u30ed\u30b0": [22, 42, 45, 50, 57, 111, 175, 296], "\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3": [177, 180], "\u30d7\u30ed\u30c8\u30b3\u30eb": [0, 1, 22, 47, 51, 100, 174, 176, 177, 295, 296, 312], "\u30d7\u30ed\u30d1\u30c6\u30a3": [51, 155], "\u30d7\u30ed\u30f3\u30d7\u30c8": 241, "\u30d7\u30fc": [44, 231, 232, 233, 234, 235], "\u30d8\u30a8": [44, 231, 232, 233, 234, 235], "\u30d8\u30c3\u30c0": [48, 49], "\u30d8\u30c3\u30c0\u30d5\u30a1\u30a4\u30eb": 47, "\u30d8\u30c3\u30c0\u30fc": [41, 47, 49, 50, 100, 125, 178, 292], "\u30d8\u30eb\u30d7": 14, "\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8": [37, 175], "\u30d8\u30fc": [44, 231, 232, 233, 234, 235], "\u30d9\u30a8": [44, 231, 232, 233, 234, 235], "\u30d9\u30af\u30bf": [36, 37, 47, 48, 51, 52], "\u30d9\u30af\u30bf\u30ab\u30e9\u30e0": [39, 47, 48], "\u30d9\u30af\u30bf\u30fc": [39, 41, 42, 43, 44, 48, 49, 51, 52, 53, 54, 91, 111, 121, 134, 156, 197, 219], "\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": [22, 41, 42, 43, 44, 48, 49, 50, 51, 52, 53, 87, 90, 112, 132, 134, 135, 141, 142, 155, 156, 220, 221, 250, 304, 311], "\u30d9\u30af\u30bf\u30fc\u30c7\u30fc\u30bf": [53, 91], "\u30d9\u30af\u30c8\u30eb": [41, 45, 53], "\u30d9\u30f3\u30c1\u30de\u30fc\u30af": 49, "\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb": 176, "\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30d7\u30ed\u30b0\u30e9\u30e0": 48, "\u30d9\u30fc": [44, 231, 232, 233, 234, 235], "\u30d9\u30fc\u30b7\u30c3\u30af": 292, "\u30d9\u30fc\u30b9": [0, 17, 24, 25, 28, 32, 37, 39, 41, 44, 47, 49, 54, 134, 153, 156, 168, 175, 177, 224, 225, 240, 245, 246, 247, 248, 274, 277, 291, 296], "\u30d9\u30fc\u30b9\u30d1\u30b9": 177, "\u30da\u30a2": [44, 50, 96, 141, 142, 156, 171, 186, 202, 203, 208, 209, 243, 250, 251, 252, 253, 305, 314], "\u30da\u30a8": [44, 231, 232, 233, 234, 235], "\u30da\u30f3": 272, "\u30da\u30fc": [44, 231, 232, 233, 234, 235], "\u30da\u30fc\u30b8": [2, 12, 17, 18, 22, 47, 48, 50, 156, 175, 178, 302, 308], "\u30da\u30fc\u30b8\u30ad\u30e3\u30c3\u30b7\u30e5": 42, "\u30da\u30fc\u30b8\u30e9\u30f3\u30af": [245, 246, 247], "\u30da\u30fc\u30b9": 111, "\u30da\u30fc\u30b9\u30c8": 47, "\u30db\u30a6": [44, 231, 232, 233, 234, 235], "\u30db\u30a6\u30b8\u30ed\u30b6\u30e1": 44, "\u30db\u30aa": [44, 231, 232, 233, 234, 235], "\u30db\u30aa\u30b8\u30ed\u30b6\u30e1": 44, "\u30db\u30b9\u30c8": [39, 41, 47, 174, 175, 176, 180, 298], "\u30db\u30fc": [44, 231, 232, 233, 234, 235], "\u30dc\u30a6": [44, 231, 232, 233, 234, 235], "\u30dc\u30aa": [44, 231, 232, 233, 234, 235], "\u30dc\u30bf\u30f3": [12, 17, 18, 47, 48], "\u30dc\u30c3\u30af\u30b9": 156, "\u30dc\u30c7\u30a3": [110, 111, 118, 124, 125, 131, 137, 140, 141, 143, 144, 145, 149, 150, 151, 157, 160, 161, 163, 164, 166, 167, 178, 180, 298], "\u30dc\u30e9\u30f3\u30c6\u30a3\u30a2\u30b5\u30fc\u30d3\u30b9": 56, "\u30dc\u30fc": [44, 231, 232, 233, 234, 235], "\u30dd\u30a4\u30f3\u30bf": 51, "\u30dd\u30a4\u30f3\u30c8": [91, 111, 243], "\u30dd\u30a6": [44, 231, 232, 233, 234, 235], "\u30dd\u30aa": [44, 231, 232, 233, 234, 235], "\u30dd\u30b9\u30c6\u30a3\u30f3\u30b0": [54, 111], "\u30dd\u30b9\u30c6\u30a3\u30f3\u30b0\u30ea\u30b9\u30c8": [41, 50, 51, 52, 53, 54, 141], "\u30dd\u30eb\u30c8\u30ac\u30eb": 53, "\u30dd\u30fc": [44, 231, 232, 233, 234, 235], "\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3": [39, 48, 54], "\u30dd\u30fc\u30c8": [48, 174, 175, 176, 180, 241, 292, 296, 298, 312], "\u30de\u30a2": [44, 231, 232, 233, 234, 235], "\u30de\u30a4\u30af\u30ed": [44, 225, 228, 282, 305, 311], "\u30de\u30a4\u30af\u30ed\u30d0\u30fc\u30b8\u30e7\u30f3": 41, "\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0": [22, 54, 304], "\u30de\u30a4\u30ca\u30fc": 41, "\u30de\u30af\u30c9\u30ca\u30eb\u30c9": 239, "\u30de\u30af\u30ed": [39, 41, 48, 50, 52, 302], "\u30de\u30b7\u30f3": [12, 175, 248], "\u30de\u30c3\u30c1": [11, 31, 36, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 68, 91, 132, 134, 135, 156, 183, 186, 191, 192, 193, 195, 197, 201, 202, 203, 205, 206, 210, 219, 223, 224, 244, 245, 246, 247, 261, 272, 276, 277, 278, 301, 310], "\u30de\u30c3\u30c1\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3": [31, 43, 156, 186], "\u30de\u30c3\u30c1\u30ec\u30b3\u30fc\u30c9": 134, "\u30de\u30c3\u30d4\u30f3\u30b0": [43, 44, 52, 303], "\u30de\u30c3\u30d7": [43, 50, 52, 118, 281], "\u30de\u30c9\u30ea\u30fc\u30c9": 188, "\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [41, 42, 48, 49, 50, 51, 53, 54, 112, 155, 237, 310], "\u30de\u30eb\u30c1\u30b3\u30a2": 0, "\u30de\u30eb\u30c1\u30b3\u30a2cpu": 31, "\u30de\u30eb\u30c1\u30b9\u30ec\u30c3\u30c9": [27, 31, 49, 50, 118, 153, 292], "\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3": 48, "\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 113, "\u30de\u30eb\u30c1\u30d0\u30a4\u30c8": [39, 44, 51], "\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9": [39, 292], "\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30d9\u30fc\u30b9": 228, "\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30e2\u30c7\u30eb": 49, "\u30de\u30eb\u30c1\u30e9\u30a4\u30f3\u30e2\u30fc\u30c9": 244, "\u30de\u30eb\u30c1\u30ef\u30fc\u30ab\u30fc": 177, "\u30de\u30f3\u30cf\u30c3\u30bf\u30f3": 45, "\u30de\u30fc": [44, 231, 232, 233, 234, 235], "\u30de\u30fc\u30af": 277, "\u30de\u30fc\u30af\u30a2\u30c3\u30d7": 50, "\u30de\u30fc\u30b8": [12, 17, 47, 53], "\u30df\u30a4": [44, 231, 232, 233, 234, 235], "\u30df\u30b9": 250, "\u30df\u30ea": [39, 41, 99, 175, 180, 225, 282, 305, 315], "\u30df\u30ea\u79d2": 282, "\u30df\u30eb\u30af": 45, "\u30df\u30fc": [44, 231, 232, 233, 234, 235], "\u30e0\u30a6": [44, 231, 232, 233, 234, 235], "\u30e0\u30fc": [44, 231, 232, 233, 234, 235], "\u30e1\u30a4\u30f3": 135, "\u30e1\u30a8": [44, 231, 232, 233, 234, 235], "\u30e1\u30a8\u30e1\u30a8": 44, "\u30e1\u30b8\u30e3\u30fc": 41, "\u30e1\u30b8\u30e3\u30fc\u30d0\u30fc\u30b8\u30e7\u30f3\u30a2\u30c3\u30d7": [42, 43, 44, 45, 53, 54], "\u30e1\u30b8\u30e3\u30fc\u30ea\u30ea\u30fc\u30b9": 46, "\u30e1\u30bd\u30c3\u30c9": 50, "\u30e1\u30bf": 173, "\u30e1\u30bf\u30c7\u30fc\u30bf": [51, 52, 53, 96, 111, 112, 124, 142, 154, 245, 246, 247, 274], "\u30e1\u30bf\u30d1\u30c3\u30b1\u30fc\u30b8": 47, "\u30e1\u30c3\u30bb\u30fc\u30b8": [6, 43, 49, 50, 51, 52, 53, 93, 111, 175, 302, 311], "\u30e1\u30c3\u30bb\u30fc\u30b8\u30dc\u30c7\u30a3": 48, "\u30e1\u30cb\u30e5\u30fc": 276, "\u30e1\u30e2": [245, 246, 247], "\u30e1\u30e2\u30ea": [23, 28, 32, 33, 37, 41, 42, 43, 47, 48, 49, 50, 51, 52, 54, 302, 303], "\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9": 14, "\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0": 37, "\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9": 51, "\u30e1\u30e2\u30ea\u30ea\u30fc\u30af": [14, 36, 37, 39, 41, 47, 48, 49, 50, 51, 52, 53, 54], "\u30e1\u30e2\u30ea\u30fc": [42, 43, 44, 45, 50, 51, 52, 54, 111, 118, 123, 124, 156, 161, 281, 302], "\u30e1\u30e2\u30ea\u30fc\u30a2\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3": 50, "\u30e1\u30e2\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5": [175, 177], "\u30e1\u30e2\u30ea\u30fc\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0": [175, 177], "\u30e1\u30e2\u30ea\u30fc\u30d6\u30ed\u30c3\u30af": 158, "\u30e1\u30e2\u30ea\u30fc\u30de\u30c3\u30d7": [52, 281], "\u30e1\u30e2\u30ea\u30fc\u30de\u30c3\u30d7\u30b5\u30a4\u30ba": [43, 158], "\u30e1\u30e2\u30ea\u30fc\u30ea\u30fc\u30af": [42, 50, 51, 158], "\u30e1\u30ea\u30c3\u30c8": [45, 156, 175, 177], "\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9": [43, 45, 278], "\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u30b3\u30b9\u30c8": [45, 274], "\u30e1\u30f3\u30d0\u30fc": 12, "\u30e1\u30fc": [44, 231, 232, 233, 234, 235], "\u30e1\u30fc\u30c8\u30eb": [188, 189], "\u30e1\u30fc\u30e1\u30fc": 44, "\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8": [3, 22, 50], "\u30e1\u30fc\u30eb": [12, 17, 19], "\u30e2\u30a6": [44, 231, 232, 233, 234, 235], "\u30e2\u30aa": [44, 231, 232, 233, 234, 235], "\u30e2\u30b8\u30e5\u30fc\u30eb": [0, 22, 37, 41, 50, 93, 262, 292], "\u30e2\u30c7\u30eb": [22, 45, 57, 197], "\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0": 48, "\u30e2\u30cb\u30bf\u30fc": [28, 32], "\u30e2\u30fc": [44, 231, 232, 233, 234, 235], "\u30e2\u30fc\u30c9": [11, 42, 44, 49, 50, 51, 52, 53, 143, 157, 168, 175, 195, 202, 219, 298, 308], "\u30e3\u30a2": [44, 231, 232, 233, 234, 235], "\u30e3\u30fc": [44, 231, 232, 233, 234, 235], "\u30e4\u30a2": [44, 231, 232, 233, 234, 235], "\u30e4\u30de\u30c0": [231, 232, 233, 234, 235, 274], "\u30e4\u30fc": [44, 231, 232, 233, 234, 235], "\u30e5\u30a6": [44, 231, 232, 233, 234, 235], "\u30e5\u30fc": [44, 231, 232, 233, 234, 235], "\u30e6\u30a6": [44, 231, 232, 233, 234, 235], "\u30e6\u30cb\u30b0\u30e9\u30e0": [275, 280], "\u30e6\u30cb\u30fc\u30af": [53, 180], "\u30e6\u30fc": [44, 231, 232, 233, 234, 235], "\u30e6\u30fc\u30af\u30ea\u30c3\u30c9": 45, "\u30e6\u30fc\u30b6": [11, 12, 47, 156, 176, 237, 250, 251, 252, 253, 282, 308], "\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0": 11, "\u30e6\u30fc\u30b6\u30fc": [3, 4, 6, 7, 8, 18, 22, 31, 42, 43, 44, 45, 49, 50, 51, 52, 54, 56, 81, 98, 111, 153, 156, 173, 177, 183, 210, 224, 225, 237, 240, 281, 292, 307, 314], "\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8": 10, "\u30e6\u30fc\u30b9\u30b1\u30fc\u30b9": [44, 91, 96, 110, 156, 264], "\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb": 37, "\u30e7\u30a6": 44, "\u30e7\u30aa": [44, 231, 232, 233, 234, 235], "\u30e7\u30fc": [44, 231, 232, 233, 234, 235], "\u30e8\u30a6": [44, 231, 232, 233, 234, 235], "\u30e8\u30aa": [44, 231, 232, 233, 234, 235], "\u30e8\u30fc": [44, 231, 232, 233, 234, 235], "\u30e9\u30a2": [44, 231, 232, 233, 234, 235], "\u30e9\u30a4\u30bb\u30f3\u30b9": [47, 56], "\u30e9\u30a4\u30bb\u30f3\u30b9\u30d5\u30a1\u30a4\u30eb": 54, "\u30e9\u30a4\u30d6\u30c9\u30a2": 56, "\u30e9\u30a4\u30d6\u30e9\u30ea": [20, 22, 27, 47, 48, 50, 52, 59, 223, 290, 308], "\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": 11, "\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc": [49, 50, 51, 84, 167, 175], "\u30e9\u30c6\u30f3": 53, "\u30e9\u30d9\u30eb": [43, 44, 48, 49, 50, 51, 52, 53, 54, 135, 156], "\u30e9\u30f3\u30ad\u30f3\u30b0": [49, 308], "\u30e9\u30f3\u30bf\u30a4\u30e0": 41, "\u30e9\u30f3\u30bf\u30a4\u30e0\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc": 33, "\u30e9\u30f3\u30c0\u30e0": 315, "\u30e9\u30f3\u30d7": 44, "\u30e9\u30fc": [44, 231, 232, 233, 234, 235], "\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0": 0, "\u30ea\u30a4": [44, 231, 232, 233, 234, 235], "\u30ea\u30ab\u30d0\u30ea\u30fc": 42, "\u30ea\u30af\u30a8\u30b9\u30c8": [41, 48, 49, 50, 51, 52, 54, 58, 92, 94, 108, 109, 113, 119, 120, 122, 130, 147, 153, 156, 157, 158, 162, 174, 177, 178, 180, 225, 228, 253, 292, 298], "\u30ea\u30af\u30a8\u30b9\u30c8gqtp": 298, "\u30ea\u30af\u30a8\u30b9\u30c8id": [22, 50, 51, 57, 92, 153, 157], "\u30ea\u30af\u30a8\u30b9\u30c8uri": 177, "\u30ea\u30af\u30a8\u30b9\u30c8\u30ad\u30e3\u30f3\u30bb\u30eb": 45, "\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8": [22, 45, 51, 57, 92, 175], "\u30ea\u30af\u30a8\u30b9\u30c8\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": 171, "\u30ea\u30af\u30a8\u30b9\u30c8\u30d8\u30c3\u30c0\u30fc": 125, "\u30ea\u30af\u30a8\u30b9\u30c8\u30dc\u30c7\u30a3": 178, "\u30ea\u30af\u30e9\u30c3\u30b7\u30e5": 47, "\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3": 50, "\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3\u30d0\u30b0": [45, 49], "\u30ea\u30b9\u30af": 173, "\u30ea\u30b9\u30c8": [13, 17, 43, 44, 47, 50, 51, 52, 68, 74, 124, 125, 133, 136, 141, 156, 161, 162, 175, 180, 224, 225, 229, 239, 243, 244, 307, 308, 310], "\u30ea\u30b9\u30c8\u30a2": [41, 51], "\u30ea\u30bb\u30c3\u30c8": 50, "\u30ea\u30bd\u30fc\u30b9": [49, 52, 56, 61, 84, 94, 99, 156, 197, 226], "\u30ea\u30bd\u30fc\u30b9\u30ea\u30fc\u30af": [42, 43], "\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9": [22, 41, 42, 47, 49, 51, 57, 92, 95, 153, 228, 298], "\u30ea\u30c6\u30e9\u30eb": [36, 39, 41, 45, 47, 50, 54, 191, 192, 193, 206, 208, 209, 224, 244, 277], "\u30ea\u30c8\u30eb\u30a8\u30f3\u30c7\u30a3\u30a2\u30f3": 111, "\u30ea\u30cd\u30fc\u30e0": [39, 50, 58, 110], "\u30ea\u30cf\u30c3\u30b7\u30e5": 45, "\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7": 292, "\u30ea\u30d3\u30eb\u30c9": [50, 52], "\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0": 12, "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9": [42, 49, 53], "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30ab\u30a6\u30f3\u30c8": 44, "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30ab\u30a6\u30f3\u30c8\u30e2\u30fc\u30c9": [149, 150], "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb": [22, 49, 226], "\u30ea\u30dd\u30b8\u30c8\u30ea": [3, 4, 22, 32, 39, 47, 48], "\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc": [3, 4, 12, 22, 32, 50, 54], "\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9": [22, 298, 304], "\u30ea\u30e2\u30fc\u30c8\u30db\u30b9\u30c8": 41, "\u30ea\u30e9\u30a4\u30bf\u30fc": 50, "\u30ea\u30ea\u30fc\u30b9": [3, 4, 6, 7, 8, 10, 22, 35, 93, 226], "\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea": [12, 51], "\u30ea\u30ea\u30fc\u30b9\u30b7\u30b9\u30c6\u30e0": 7, "\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb": 12, "\u30ea\u30ea\u30fc\u30b9\u30c1\u30fc\u30e0": 53, "\u30ea\u30ec\u30fc\u30b7\u30e7\u30ca\u30eb": 175, "\u30ea\u30f3\u30af": [12, 13, 47, 48, 49, 50, 52, 56, 156, 224, 225, 305], "\u30ea\u30f3\u30b4": 272, "\u30ea\u30fc": [44, 231, 232, 233, 234, 235], "\u30eb\u30a6": [44, 231, 232, 233, 234, 235], "\u30eb\u30fc": [44, 231, 232, 233, 234, 235], "\u30eb\u30fc\u30c8": 39, "\u30eb\u30fc\u30d7": [37, 44, 47, 49, 50, 51], "\u30eb\u30fc\u30de\u30cb\u30a2": 53, "\u30eb\u30fc\u30eb": [22, 37, 49, 53, 57, 132, 134, 135, 156, 168, 292], "\u30ec\u30a4\u30e4": 11, "\u30ec\u30a8": [44, 231, 232, 233, 234, 235], "\u30ec\u30b3\u30fc\u30c9": [0, 11, 22, 34, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 68, 89, 90, 91, 104, 110, 119, 121, 122, 123, 125, 132, 134, 135, 137, 141, 159, 161, 162, 170, 175, 183, 186, 191, 192, 193, 195, 196, 197, 201, 202, 203, 205, 206, 210, 223, 224, 225, 226, 239, 244, 245, 246, 247, 248, 253, 254, 278, 282, 286, 301, 304, 305, 306, 307, 310, 311, 313, 314, 315], "\u30ec\u30b3\u30fc\u30c9id": [22, 47, 51, 57, 91, 111, 305], "\u30ec\u30b3\u30fc\u30c9r": 11, "\u30ec\u30b3\u30fc\u30c9\u30d0\u30c3\u30c1": [96, 125], "\u30ec\u30b3\u30fc\u30c9\u30d0\u30c3\u30c1\u30b5\u30a4\u30ba": 125, "\u30ec\u30b9\u30c8\u30e9\u30f3": 0, "\u30ec\u30b9\u30dd\u30f3\u30b9": [39, 43, 47, 48, 49, 51, 52, 54, 61, 99, 100, 110, 125, 132, 134, 135, 156, 158, 177, 178, 180, 292, 298], "\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf": 292, "\u30ec\u30b9\u30dd\u30f3\u30b9\u30d8\u30c3\u30c0\u30fc": [50, 99, 292], "\u30ec\u30b9\u30dd\u30f3\u30b9\u30dc\u30c7\u30a3": 51, "\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3": 45, "\u30ec\u30d9\u30eb": [41, 42, 47, 49, 50, 96, 130, 166, 175, 228], "\u30ec\u30dd\u30fc\u30c8": 31, "\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0": 0, "\u30ec\u30fc": [44, 231, 232, 233, 234, 235], "\u30ec\u30fc\u30bf": 47, "\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0": 183, "\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3": 36, "\u30ed\u30a6": [44, 231, 232, 233, 234, 235], "\u30ed\u30aa": [44, 231, 232, 233, 234, 235], "\u30ed\u30ac\u30fc": 50, "\u30ed\u30ae\u30f3\u30b0": [45, 50], "\u30ed\u30b0": [12, 22, 36, 38, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 57, 106, 111, 124, 130, 131, 132, 156, 166, 173, 175, 176, 177, 180, 251, 254, 302], "\u30ed\u30b0\u30a4\u30f3": [12, 42, 43, 281], "\u30ed\u30b0\u30b5\u30a4\u30ba": 43, "\u30ed\u30b0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 49, "\u30ed\u30b0\u30d1\u30b9": 37, "\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb": [31, 50, 51, 93, 131, 156, 175, 176, 180, 228, 303], "\u30ed\u30b0\u30d5\u30a9\u30fc\u30de\u30c3\u30c8": 51, "\u30ed\u30b0\u30d5\u30e9\u30b0": [45, 54, 173, 175], "\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8": [47, 48, 50, 53, 54, 173, 244], "\u30ed\u30b0\u30ec\u30d9\u30eb": [43, 45, 50, 51, 52, 54, 111, 123, 129, 173, 175, 177, 228], "\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3": [50, 175], "\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30c8": [45, 50], "\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3": [47, 53], "\u30ed\u30b4": [41, 47], "\u30ed\u30b7\u30a2": 53, "\u30ed\u30b8\u30c3\u30af": 137, "\u30ed\u30c3\u30af": [36, 39, 42, 43, 44, 45, 47, 48, 50, 52, 53, 106, 109, 124, 125, 126, 127, 128, 173, 175], "\u30ed\u30c3\u30af\u30ab\u30a6\u30f3\u30c8": 44, "\u30ed\u30c3\u30af\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8": [48, 51], "\u30ed\u30c3\u30af\u30d5\u30ea\u30fc": [22, 39], "\u30ed\u30f3\u30c9\u30f3": 188, "\u30ed\u30fc": [44, 231, 232, 233, 234, 235], "\u30ed\u30fc\u30ab\u30eb": [12, 43, 225, 227], "\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3": 175, "\u30ed\u30fc\u30c6\u30fc\u30c8": 175, "\u30ed\u30fc\u30c9": [0, 22, 37, 39, 41, 42, 43, 45, 48, 49, 50, 51, 52, 54, 111, 118, 125, 140, 173, 175, 177, 225, 292, 304], "\u30ed\u30fc\u30c9\u30a8\u30e9\u30fc": 47, "\u30ed\u30fc\u30de": [53, 201, 231, 232, 233, 234, 235, 250, 257, 258, 259], "\u30ed\u30fc\u30de\u30b8": [201, 240], "\u30ee\u30a2": [44, 231, 232, 233, 234, 235], "\u30ee\u30fc": [44, 231, 232, 233, 234, 235], "\u30ef\u30a2": [44, 231, 232, 233, 234, 235], "\u30ef\u30a4\u30c9": 39, "\u30ef\u30fc": [44, 231, 232, 233, 234, 235], "\u30ef\u30fc\u30ab": [53, 177], "\u30ef\u30fc\u30ab\u30fc": [51, 52, 54, 131, 175, 177], "\u30ef\u30fc\u30ab\u30fc\u30b9\u30ec\u30c3\u30c9": [41, 48], "\u30ef\u30fc\u30ab\u30fc\u30d7\u30ed\u30bb\u30b9": [51, 131], "\u30ef\u30fc\u30b9\u30c8\u30b1\u30fc\u30b9": 52, "\u30f0\u30a4": [44, 231, 232, 233, 234, 235], "\u30f0\u30fc": [44, 231, 232, 233, 234, 235], "\u30f1\u30a6": [44, 231, 232, 233, 234, 235], "\u30f1\u30fc": [44, 231, 232, 233, 234, 235], "\u30f2\u30aa": [44, 231, 232, 233, 234, 235], "\u30f2\u30fc": [44, 231, 232, 233, 234, 235], "\u30f3\u30f3": [44, 231, 232, 233, 234, 235], "\u30f3\u30fc": [44, 231, 232, 233, 234, 235], "\u30f4\u30a1": 44, "\u30f4\u30a1\u30a4\u30aa\u30ea\u30f3": [53, 231, 235], "\u30f4\u30a1\u30f4\u30a3\u30f4\u30a5\u30f4\u30a7\u30f4\u30a9": [53, 231, 232, 233, 234, 235, 258, 259], "\u30f4\u30a1\u30f4\u30a3\u30f4\u30f4\u30a7\u30f4\u30a9": [53, 54, 231, 232, 233, 234, 235, 258, 259], "\u30f4\u30a1\u30f4\u30a3\u30f4\u30f4\u30a7\u30f4\u30a9\u30f4": [231, 232, 233, 234, 235, 258, 259], "\u30f4\u30a1\u30fc\u30c1\u30e3\u30eb": 44, "\u30f4\u30a2": 44, "\u30f4\u30a6": [44, 231, 232, 233, 234, 235], "\u30f4\u30a7\u30eb\u30c7": 44, "\u30f4\u30fc": [44, 231, 232, 233, 234, 235], "\u30f5\u30a2": [44, 231, 232, 233, 234, 235], "\u30f5\u30fc": [44, 231, 232, 233, 234, 235], "\u30f6\u30a8": [44, 231, 232, 233, 234, 235], "\u30f6\u30b1": [231, 232, 233, 234, 235, 258, 259], "\u30f6\u30fc": [44, 231, 232, 233, 234, 235], "\u30f6\u6708": 173, "\u30f7-": [44, 231, 232, 233, 234, 235], "\u30f7\u30a2": [44, 231, 232, 233, 234, 235], "\u30f7\u30fc": [44, 231, 232, 233, 234, 235], "\u30f8-": [44, 231, 232, 233, 234, 235], "\u30f8\u30a4": [44, 231, 232, 233, 234, 235], "\u30f8\u30fc": [44, 231, 232, 233, 234, 235], "\u30f9-": [44, 231, 232, 233, 234, 235], "\u30f9\u30a8": [44, 231, 232, 233, 234, 235], "\u30f9\u30fc": [44, 231, 232, 233, 234, 235], "\u30fa-": [44, 231, 232, 233, 234, 235], "\u30fa\u30a6": [44, 231, 232, 233, 234, 235], "\u30fa\u30aa": [44, 231, 232, 233, 234, 235], "\u30fa\u30fc": [44, 231, 232, 233, 234, 235], "\u30fbgroonga": 50, "\u30fbor": 315, "\u30fbroot": 50, "\u30fb\u30b5\u30fc\u30d0": 308, "\u30fb\u30c7\u30b9": 274, "\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0": 311, "\u30fb\u30e1\u30e2\u30ea\u30fc\u30ea\u30bd\u30fc\u30b9": 197, "\u30fb\u5024": [202, 203, 208, 209], "\u30fb\u5168": 119, "\u30fb\u5186": 0, "\u30fb\u6d6e\u52d5\u5c0f": 156, "\u30fb\u81ea\u5df1\u7d39": 311, "\u30fd\u30fe": [231, 232, 233, 234, 235, 257, 258, 259], "\u3315\uff41z": 275, "\u4e00\u3064": [0, 41, 42, 43, 44, 45, 51, 61, 93, 108, 109, 113, 119, 120, 122, 130, 138, 147, 162, 185, 186, 188, 189, 190, 194, 198, 199, 204, 210, 221, 282, 299, 305], "\u4e00\u4eba": 56, "\u4e00\u4f8b": 156, "\u4e00\u500b": 11, "\u4e00\u5207": 50, "\u4e00\u56de": 41, "\u4e00\u5b9a": [51, 111], "\u4e00\u5b9a\u91cf": 54, "\u4e00\u5b9f\u884c": 96, "\u4e00\u5bfe": 305, "\u4e00\u5de5": 313, "\u4e00\u5ea6": [12, 39, 41, 42, 43, 47, 49, 144, 151, 156, 177, 186, 226, 229, 243, 281, 306, 310], "\u4e00\u5f0f": [12, 45], "\u4e00\u610f": [89, 111, 153, 175], "\u4e00\u62ec\u3057": 41, "\u4e00\u6587": [231, 232, 233, 234, 235], "\u4e00\u6587\u5185": [224, 225], "\u4e00\u6587\u5b57": [49, 50], "\u4e00\u65b9": [0, 31, 43, 81, 84, 111, 156, 183, 193, 196, 202, 205, 206, 208, 210, 224, 225, 262, 301, 305, 308, 310], "\u4e00\u6642": [6, 22, 41, 42, 43, 44, 45, 50, 51, 52, 53, 57, 188], "\u4e00\u6642\u30c6\u30fc\u30d6\u30eb": [45, 50], "\u4e00\u6642\u7684": [50, 53, 163, 303], "\u4e00\u6642\u7d50\u679c": 47, "\u4e00\u6b69": 308, "\u4e00\u756a": [31, 91, 141, 156, 292], "\u4e00\u756a\u5de6": 225, "\u4e00\u756a\u901f\u3044": 58, "\u4e00\u77e2": 56, "\u4e00\u77ed": 0, "\u4e00\u7dd2": [36, 43, 44, 45, 47, 49, 91, 96, 124, 132, 135, 149, 156, 161, 178, 180, 188, 231, 235, 277, 301, 308], "\u4e00\u7fa4": 11, "\u4e00\u81f4": [11, 22, 36, 38, 40, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 58, 110, 111, 156, 159, 161, 201, 202, 208, 219, 254, 264, 301, 304, 308, 311, 314], "\u4e00\u81f4rk": [22, 50, 57, 201, 238], "\u4e00\u81f4\u3057": [43, 49, 54, 208, 299], "\u4e00\u81f4\u7528": 313, "\u4e00\u822c": [0, 43, 54, 61, 156, 186, 223, 224, 231, 235, 237, 274, 308, 310], "\u4e00\u822c\u7684": [0, 45, 156, 262, 264, 277], "\u4e00\u884c": [37, 175, 176], "\u4e00\u8981": 56, "\u4e00\u8996": [53, 231, 232, 233, 234, 235, 257, 258, 259], "\u4e00\u89a7": [12, 17, 22, 27, 42, 57, 108, 112, 138, 139, 142, 158, 161, 162, 169, 175, 177, 202, 224, 225, 301, 302, 307], "\u4e00\u8a9e": 301, "\u4e00\u8cab\u3057": 56, "\u4e00\u8cab\u6027": [10, 42, 50, 51], "\u4e00\u9023": 228, "\u4e00\u9047": 56, "\u4e00\u90e8": [42, 47, 50, 54, 113, 248, 252, 264, 308], "\u4e00\u9577": 0, "\u4e09\u3064": [188, 299], "\u4e09\u5ea6": 56, "\u4e09\u756a\u76ee": 225, "\u4e09\u8c37": 49, "\u4e09\u8c37\u3055\u3093": 49, "\u4e0a\u304c\u3063": 262, "\u4e0a\u3052\u308b": 301, "\u4e0a\u4f4d": [111, 301], "\u4e0a\u554f": 296, "\u4e0a\u66f8\u3044": 12, "\u4e0a\u66f8\u304d": [45, 51, 99, 315], "\u4e0a\u8a18": [17, 18, 21, 31, 34, 41, 42, 43, 44, 45, 47, 50, 54, 111, 124, 135, 156, 161, 173, 176, 183, 194, 202, 210, 231, 232, 233, 234, 235, 243, 251, 253, 262, 272, 274, 275, 276, 278, 298, 301, 302, 306, 308, 310, 315], "\u4e0a\u8a18url": 12, "\u4e0a\u8ff0": [195, 243], "\u4e0a\u91ce": 37, "\u4e0a\u9650": [9, 22, 50, 305], "\u4e0b\u304c\u3063": 262, "\u4e0b\u304c\u308a": [125, 156, 301], "\u4e0b\u304c\u308b": 111, "\u4e0b\u3052": [45, 50, 52], "\u4e0b\u3055\u3044": [1, 12, 23, 28, 32, 33, 47, 48, 52, 54, 168, 260, 274, 275], "\u4e0b\u4f4d": 111, "\u4e0b\u66f8\u304d": 239, "\u4e0b\u8a18": [11, 18, 45, 93, 108], "\u4e0b\u90e8": 12, "\u4e0d\u4fbf": 43, "\u4e0d\u504f": 41, "\u4e0d\u5177\u5408": [3, 47, 48, 49, 50, 51, 52, 53, 54], "\u4e0d\u53ef": 141, "\u4e0d\u5411\u304d": 111, "\u4e0d\u5909": 89, "\u4e0d\u5b89": 12, "\u4e0d\u5b89\u5b9a\u7248": 12, "\u4e0d\u5b8c\u5168": [39, 51], "\u4e0d\u5b9a": 43, "\u4e0d\u5fc5\u8981": [50, 51, 52, 99], "\u4e0d\u610f": 124, "\u4e0d\u6574\u5408": 36, "\u4e0d\u6b63": [14, 36, 37, 39, 43, 44, 48, 49, 50, 51, 74, 111, 124, 149, 161], "\u4e0d\u6b63\u78ba": 47, "\u4e0d\u7b49\u4fa1": 202, "\u4e0d\u80fd": 176, "\u4e0d\u8981": [0, 33, 41, 43, 44, 45, 47, 48, 49, 50, 124, 262, 272, 274, 295], "\u4e0d\u8db3": [23, 28, 32, 33, 41, 42, 43, 44, 49, 50, 54, 104, 302], "\u4e0d\u9069\u5207": [47, 49, 156], "\u4e0e\u3048": [11, 45, 47, 48, 51, 74, 175, 298, 301, 308], "\u4e0e\u3048\u308b": [93, 174, 175, 315], "\u4e14\u3064": 53, "\u4e16\u4ee3": 93, "\u4e16\u754c": [188, 189, 190, 282, 305, 315], "\u4e21\u65b9": [0, 41, 44, 91, 132, 134, 135, 141, 156, 202, 224, 225, 226, 244, 250, 254, 265, 266, 275, 276, 310, 311, 313], "\u4e21\u8005": [43, 315], "\u4e26\u3073": [41, 111, 197, 225, 299], "\u4e26\u3073\u9806": 315, "\u4e26\u3079": [22, 134, 304], "\u4e26\u3093": [41, 132, 134, 135], "\u4e26\u5217": [6, 22, 41, 43, 51, 57, 92, 156, 176, 203, 226, 228], "\u4e26\u5217\u6570": 94, "\u4e26\u884c": [42, 43, 44], "\u4e2d\u4e95": 48, "\u4e2d\u56fd": 188, "\u4e2d\u592e\u5024": 49, "\u4e2d\u5fc3": [41, 189], "\u4e2d\u65ad": [39, 41, 45, 47, 49, 53], "\u4e2d\u70b9": [53, 231, 232, 233, 234, 235, 258, 259], "\u4e2d\u7a0b\u5ea6": [23, 28, 32, 33], "\u4e2d\u8eab": [49, 176, 298, 308], "\u4e2d\u9593": [11, 299], "\u4e38\u3081": 211, "\u4e38\u62ec": 308, "\u4e3b\u30ad\u30fc": [22, 37, 47, 89, 125, 162, 304, 305, 306, 307, 308, 314], "\u4e3b\u5c0e": 180, "\u4e3b\u8981": 23, "\u4e43\u6bc5": 37, "\u4e57\u305b": 42, "\u4e57\u305b\u308b": 42, "\u4e57\u308a": 56, "\u4e57\u7b97": 53, "\u4e71\u6570": [204, 315], "\u4e88\u3081": [41, 42, 175, 282], "\u4e88\u5099": 123, "\u4e88\u5b9a": [5, 6, 16, 31, 39, 42, 43, 44, 45, 50, 54, 91, 93, 154, 188, 227, 244, 248, 292], "\u4e88\u60f3": [52, 183, 196], "\u4e88\u671f": [41, 45], "\u4e8b\u4ef6": 56, "\u4e8b\u524d": [31, 123, 133, 136, 137, 154, 156, 252, 301], "\u4e8b\u60c5": 56, "\u4e8b\u67c4": 10, "\u4e8b\u9805": [22, 50, 51, 57, 104, 248], "\u4e8c\u3064": [11, 93, 132, 134, 135, 138, 168, 176, 188, 196, 201, 202, 203, 210, 299], "\u4e8c\u756a\u76ee": 225, "\u4e8c\u90ce": 56, "\u4e8c\u91cd": [48, 49, 50, 224], "\u4e8c\u9805": [50, 51, 225], "\u4e92\u63db": [12, 24, 25, 28, 32, 42, 43, 44, 45, 46, 49, 50, 51, 52, 53, 54, 93, 132, 134, 135, 138, 225, 246, 247, 292], "\u4e92\u63db\u6027": 12, "\u4e94\u5165": 39, "\u4ea4\u63db": [44, 156], "\u4eac\u90fd": [44, 274, 299, 301], "\u4eba\u3068": 10, "\u4eba\u540d": [231, 232, 233, 234, 235, 274], "\u4eba\u5411\u3051": 50, "\u4eba\u6c17": [132, 134, 135], "\u4eba\u7269": 111, "\u4eca\u56de": [41, 42, 43, 44, 45, 46, 47, 51, 52, 54, 205, 206, 225, 308], "\u4eca\u5f8c": [39, 41, 43, 45, 51, 96, 154, 168, 244], "\u4ecb\u3057": [0, 312], "\u4ecb\u6587": 311, "\u4ed5\u65b9": 3, "\u4ed5\u69d8": [22, 37, 40, 43, 44, 47, 49, 93, 156, 159, 177, 277, 305], "\u4ed5\u7d44": [17, 50, 186, 292], "\u4ed5\u7d44\u307f": [47, 50, 177], "\u4ed8\u3044": [54, 111, 229, 310], "\u4ed8\u304d": [3, 22, 37, 42, 43, 44, 50, 51, 52, 91, 100, 111, 132, 134, 135, 137, 141, 155, 156, 159, 208, 230, 231, 235, 239, 244, 250, 253, 282, 304, 305, 308], "\u4ed8\u3051": [47, 98, 99, 121, 153, 157, 173, 175, 180, 183, 191, 192, 193, 276, 292, 298, 305, 308, 310], "\u4ed8\u3051\u308b": [9, 53, 54, 180, 225, 228, 229, 255, 308, 314], "\u4ed8\u3051\u65b9": 98, "\u4ed8\u4e0e": [89, 156, 176, 307, 313], "\u4ed8\u5c5e": [177, 178], "\u4ed8\u8d85\u7fa4": 52, "\u4ed8\u968f": 113, "\u4ee3\u308a": [47, 188, 224], "\u4ee3\u308f\u308a": [27, 31, 41, 42, 44, 50, 52, 54, 111, 135, 141, 149, 156, 158, 161, 175, 177, 191, 192, 193, 206, 208, 209, 224, 229, 232, 233, 234, 235, 236, 244, 258, 259, 262, 298], "\u4ee3\u5165": [11, 37, 48, 224, 315], "\u4ee3\u540d": 53, "\u4ee3\u540d\u8a5e": 274, "\u4ee3\u8868": [0, 43, 44, 56, 156], "\u4ee5\u4e0a": [11, 12, 14, 17, 34, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 56, 81, 87, 90, 91, 94, 111, 112, 131, 132, 134, 135, 137, 141, 142, 149, 152, 155, 156, 159, 161, 163, 175, 176, 177, 180, 186, 192, 195, 196, 201, 202, 203, 205, 206, 208, 210, 243, 244, 246, 248, 254, 255, 262, 264, 272, 281, 282, 298, 308], "\u4ee5\u4e0b": [11, 12, 14, 17, 18, 21, 27, 31, 33, 34, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 56, 58, 61, 64, 68, 74, 81, 84, 91, 94, 95, 96, 97, 98, 99, 100, 108, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 125, 126, 127, 128, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 144, 145, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 168, 169, 170, 173, 175, 176, 177, 178, 180, 183, 184, 186, 188, 189, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 222, 225, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 241, 243, 244, 245, 246, 247, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 272, 273, 274, 275, 276, 278, 279, 280, 281, 282, 286, 292, 295, 298, 299, 301, 302, 303, 305, 307, 308, 312, 315], "\u4ee5\u5185": [173, 224, 225, 250, 251, 311, 315], "\u4ee5\u524d": [22, 39, 41, 42, 44, 47, 48, 49, 50, 51, 52, 53, 54, 124, 132, 134, 135, 229, 230, 301, 305, 311], "\u4ee5\u5916": [0, 11, 18, 27, 37, 39, 41, 42, 43, 44, 48, 49, 52, 53, 54, 58, 61, 68, 84, 91, 111, 112, 125, 132, 135, 149, 150, 152, 156, 161, 163, 173, 175, 176, 195, 219, 224, 231, 239, 244, 254, 260, 261, 275, 282], "\u4ee5\u5f8c": 111, "\u4ee5\u964d": [12, 14, 17, 26, 27, 37, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 96, 114, 124, 125, 132, 134, 135, 153, 156, 164, 173, 175, 191, 192, 193, 194, 229, 230, 239, 264, 312], "\u4eee\u540d": 240, "\u4eee\u5b9a": 153, "\u4eee\u60f3": [48, 50, 306, 315], "\u4eee\u6570": 111, "\u4ef6\u540c": 50, "\u4ef6\u542b": [156, 311], "\u4ef6\u6570": [43, 49, 50, 51, 52, 53, 89, 132, 299, 301, 308], "\u4efb\u610f": [0, 3, 41, 175, 176, 302, 308], "\u4f1a\u793e": [49, 50, 51, 52, 56], "\u4f1d\u642c": 53, "\u4f1d\u7d71": 0, "\u4f34\u3063": 53, "\u4f3c\u305f": 230, "\u4f4d\u7f6e": [22, 39, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 57, 111, 112, 123, 138, 155, 209, 238, 245, 246, 247, 275, 304, 307, 308], "\u4f4e\u3044": [111, 301], "\u4f4e\u304f": [262, 301], "\u4f4e\u4e0b": [41, 42, 43, 48, 53, 54], "\u4f4e\u6a5f": 11, "\u4f4e\u6e1b": [37, 296], "\u4f4e\u901f": [41, 111, 161], "\u4f4f\u3093": 311, "\u4f4f\u6240": 47, "\u4f50\u85e4": [50, 51], "\u4f53\u8fd1": 189, "\u4f55\u3089\u304b": 282, "\u4f55\u500b": 156, "\u4f55\u5358": 156, "\u4f55\u5ea6": [48, 153], "\u4f55\u6587": 156, "\u4f55\u756a": [135, 286], "\u4f59\u308a": 225, "\u4f59\u5206": [41, 43, 44, 224, 225], "\u4f59\u8a08": 10, "\u4f5c\u3063": [18, 39, 54, 135, 140, 141, 143, 155, 156, 177, 180, 229, 250, 301, 306], "\u4f5c\u3089": [43, 44, 50, 56, 156, 237], "\u4f5c\u3089\u308c": [41, 49, 176], "\u4f5c\u3089\u308c\u308b": 173, "\u4f5c\u308a": [41, 42, 43, 49, 111, 152, 156, 158, 161, 180, 220, 228, 250, 251, 281, 310], "\u4f5c\u308a\u51fa\u3057": 44, "\u4f5c\u308a\u51fa\u3059": [44, 111], "\u4f5c\u308a\u76f4\u3057": [152, 173], "\u4f5c\u308a\u76f4\u3059": [50, 152, 237], "\u4f5c\u308b": [9, 17, 41, 42, 43, 45, 49, 50, 56, 87, 91, 110, 111, 132, 134, 135, 140, 143, 155, 156, 161, 175, 180, 201, 223, 225, 237, 244, 248, 251, 281, 307, 311, 314], "\u4f5c\u308c": [51, 126], "\u4f5c\u308c\u308b": [43, 44, 50, 111, 156], "\u4f5c\u6210": [22, 29, 36, 37, 39, 40, 41, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 87, 89, 90, 91, 131, 132, 134, 135, 137, 138, 156, 159, 163, 175, 176, 177, 180, 188, 201, 224, 225, 226, 250, 253, 254, 278, 281, 282, 295, 301, 304, 305, 307, 310, 313, 314], "\u4f5c\u6210\u6e08": 175, "\u4f5c\u696d": [10, 17, 54], "\u4f5c\u7528": 47, "\u4f75\u305b": 308, "\u4f75\u7528": 41, "\u4f7f\u3044": [0, 6, 7, 8, 11, 12, 15, 17, 18, 21, 22, 24, 25, 27, 28, 30, 31, 32, 39, 41, 42, 43, 44, 45, 46, 49, 50, 51, 52, 53, 58, 60, 68, 81, 87, 91, 95, 99, 111, 112, 121, 124, 125, 131, 132, 133, 134, 135, 138, 141, 149, 150, 155, 156, 157, 159, 161, 165, 168, 173, 175, 177, 178, 180, 183, 191, 193, 194, 195, 196, 201, 202, 205, 206, 208, 219, 223, 224, 225, 226, 227, 230, 237, 243, 244, 245, 249, 250, 251, 253, 255, 262, 264, 269, 270, 271, 273, 275, 277, 279, 280, 281, 282, 292, 305, 306, 310, 312], "\u4f7f\u3044\u5206\u3051": [299, 301], "\u4f7f\u3044\u5207\u3063": 43, "\u4f7f\u3044\u65b9": [0, 22, 57, 81, 225, 249, 308], "\u4f7f\u3044\u65b9\u3057": 237, "\u4f7f\u3046": [7, 11, 12, 16, 17, 21, 23, 24, 25, 27, 28, 31, 32, 34, 36, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 59, 61, 68, 81, 84, 87, 90, 91, 94, 95, 96, 98, 107, 110, 111, 112, 115, 116, 117, 118, 121, 122, 123, 124, 125, 132, 133, 134, 135, 136, 137, 138, 141, 143, 144, 149, 150, 151, 152, 154, 156, 157, 159, 161, 163, 168, 171, 173, 175, 176, 178, 183, 184, 186, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 223, 224, 225, 227, 228, 229, 230, 232, 233, 234, 236, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 260, 261, 262, 264, 265, 266, 267, 268, 272, 274, 282, 286, 292, 296, 298, 301, 303, 305, 308, 310, 312, 314], "\u4f7f\u3048": [6, 21, 34, 39, 41, 42, 43, 44, 48, 49, 50, 52, 53, 54, 58, 90, 110, 111, 118, 124, 125, 132, 134, 135, 143, 152, 153, 156, 157, 161, 168, 175, 177, 178, 180, 182, 183, 191, 193, 195, 219, 223, 224, 225, 240, 244, 245, 246, 247, 248, 257, 258, 259, 274, 275, 277, 283, 290, 291, 306, 308], "\u4f7f\u3048\u308b": [21, 27, 31, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 155, 156, 175, 197, 224, 244, 248, 278], "\u4f7f\u3063": [3, 5, 10, 11, 12, 17, 19, 20, 21, 22, 23, 24, 25, 28, 30, 31, 32, 33, 34, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 91, 94, 95, 96, 100, 103, 107, 108, 110, 111, 118, 124, 125, 127, 131, 132, 133, 134, 135, 137, 138, 140, 141, 143, 149, 152, 155, 156, 158, 161, 163, 167, 168, 173, 175, 177, 180, 183, 186, 193, 196, 197, 201, 202, 205, 206, 223, 224, 225, 227, 229, 230, 231, 232, 233, 234, 235, 236, 237, 243, 244, 245, 246, 247, 248, 251, 252, 257, 258, 259, 260, 261, 262, 264, 272, 274, 275, 277, 279, 280, 282, 292, 298, 299, 301, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "\u4f7f\u308f": [21, 27, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 58, 61, 94, 96, 100, 111, 124, 125, 131, 132, 133, 134, 135, 137, 140, 141, 149, 156, 161, 163, 168, 175, 177, 183, 202, 223, 224, 228, 229, 237, 240, 243, 244, 250, 254, 262, 264, 275, 276, 278, 298, 306, 307, 310, 314], "\u4f7f\u308f\u305a": 53, "\u4f7f\u7528": [11, 12, 27, 31, 36, 37, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 61, 74, 93, 94, 108, 110, 111, 112, 114, 121, 125, 132, 134, 135, 138, 139, 141, 153, 156, 157, 158, 164, 165, 168, 169, 170, 173, 175, 176, 177, 180, 186, 188, 191, 192, 193, 195, 197, 202, 206, 208, 209, 210, 211, 212, 224, 225, 231, 232, 233, 234, 235, 237, 240, 245, 257, 258, 259, 262, 272, 275, 278, 282, 292, 298, 299, 301, 305, 308, 310, 311, 312], "\u4f7f\u7528\u4f8b": 188, "\u4f8b\u3048": [18, 20, 21, 27, 31, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 91, 103, 105, 111, 121, 124, 132, 134, 135, 137, 138, 139, 156, 159, 161, 166, 168, 169, 173, 175, 176, 177, 183, 186, 191, 193, 196, 210, 223, 224, 225, 226, 229, 230, 231, 234, 235, 243, 244, 245, 248, 250, 251, 252, 253, 260, 262, 264, 272, 274, 275, 278, 292, 299, 301, 307, 308, 309, 310, 313, 314], "\u4f8b\u3068\u3057\u3066": [156, 276, 281, 305], "\u4f8b\u3068\u3068\u3082": 188, "\u4f8b\u306b": 156, "\u4f8b\u4ee5\u5916": [231, 232, 233, 234, 235, 274, 275], "\u4f8b\u5916": [49, 50, 52, 54, 110, 134, 135, 141, 154], "\u4f9d\u308a": [111, 141], "\u4f9d\u5b58": [12, 40, 42, 43, 45, 47, 49, 51, 111, 137, 141, 156, 180, 237, 245, 246, 247, 274], "\u4f9d\u7136": 52, "\u4f9d\u983c": [12, 156], "\u4fa1\u5024": 56, "\u4fa1\u683c": 51, "\u4fbf\u5229": [0, 1, 6, 31, 41, 42, 43, 44, 45, 50, 51, 52, 53, 54, 91, 95, 111, 124, 132, 133, 138, 142, 149, 152, 155, 156, 157, 165, 168, 175, 191, 223, 224, 225, 237, 240, 244, 250, 305], "\u4fbf\u5229\u30e1\u30bd\u30c3\u30c9": 52, "\u4fc2\u52a9\u8a5e": 274, "\u4fc2\u6570": [11, 156], "\u4fc3\u97f3": 53, "\u4fdd\u305f": [134, 135], "\u4fdd\u3064": [51, 54], "\u4fdd\u5b58": [22, 34, 42, 43, 45, 47, 48, 50, 51, 74, 90, 91, 110, 111, 112, 132, 134, 135, 141, 155, 156, 175, 177, 180, 188, 225, 229, 239, 244, 253, 254, 282, 303, 304, 307, 310, 311, 315], "\u4fdd\u6301": [41, 43, 51, 61, 91, 124, 305, 309, 311], "\u4fdd\u8a3c": [93, 108], "\u4fe1\u6d0b": 51, "\u4fe1\u983c": 173, "\u4fee\u5e73": 49, "\u4fee\u5fa9": 42, "\u4fee\u6b63": [12, 156, 188, 251, 312], "\u4fee\u6b63\u4e2d": 251, "\u4fee\u6b63\u5f8c": [45, 156], "\u500b\u3005": [11, 93, 134, 301], "\u500b\u4eba": [12, 18, 31], "\u500b\u5225": [27, 156], "\u500b\u5b9a": 9, "\u500b\u6240": 49, "\u500b\u6570": 47, "\u500d\u3057": 42, "\u500d\u7cbe": [41, 282], "\u5019\u88dc": [43, 44, 156, 159, 180, 201, 250, 251, 252], "\u5023\u3063": 18, "\u5024\u304b": [184, 188], "\u5024\u304c": 51, "\u5024\u3054": 306, "\u5024\u3054\u3068": 306, "\u5024\u3057": 195, "\u5024\u3059": 51, "\u5024\u305d\u306e": 91, "\u5024\u3060\u3051": 225, "\u5024\u3068": [111, 156, 224, 305], "\u5024\u3068\u3057\u3066": [44, 111, 175, 188, 212, 303, 311], "\u5024\u306a\u3057": 40, "\u5024\u306a\u3089": 48, "\u5024\u3088\u308a": [11, 43, 44, 91, 156], "\u5024\u4ee5": [42, 44, 186], "\u5024\u4ee5\u4e0a": 175, "\u5024\u5727": 111, "\u5024\u578b": 305, "\u5024\u57df": [87, 142], "\u5024\u6bce": 306, "\u5024\u7528": 39, "\u5024\u8a18": 225, "\u504f\u5dee": 41, "\u505c\u6b62": [45, 48, 50, 52, 93, 106, 114, 123, 164, 175, 177], "\u5065\u4f5c": 307, "\u5074\u9762": [0, 56], "\u5076\u6570": 225, "\u508d\u691c": 44, "\u5099\u8003": [48, 156, 180, 231], "\u50be\u5411": [111, 141, 156, 310], "\u512a\u308c": [0, 264, 274], "\u512a\u5148": [0, 50, 53, 118, 176, 250], "\u5143\u6c17": 48, "\u5145\u5206": 53, "\u5148\u60c5": 311, "\u5148\u884c": 42, "\u5148\u8aad": 272, "\u5148\u982d": [41, 43, 44, 45, 74, 132, 134, 135, 156, 177, 244, 277, 308], "\u5149\u7537": 48, "\u5165\u3063": [14, 47, 48, 50, 51, 54, 111, 112, 156, 195, 237, 250, 298, 302, 307, 308, 310], "\u5165\u308a": [124, 156, 225, 267, 268, 298, 302, 306, 308], "\u5165\u308b": [111, 162], "\u5165\u308c": [42, 156, 277, 301, 307, 311], "\u5165\u308c\u308b": [50, 111, 156, 237, 244], "\u5165\u529b": [36, 39, 40, 42, 43, 44, 48, 51, 52, 53, 54, 108, 109, 113, 119, 120, 122, 125, 130, 147, 156, 159, 162, 174, 175, 176, 197, 225, 240, 250, 251, 252, 253, 257, 258, 259, 298, 308], "\u5165\u529b\u30df\u30b9": 251, "\u5168\u304f": [50, 56], "\u5168\u304f\u7570\u306a\u308b": 56, "\u5168\u3066": [17, 41, 42, 43, 44, 53, 54, 156, 157, 166, 175, 177, 223, 226, 253, 257, 258, 259, 282, 310], "\u5168\u4e16\u754c": 48, "\u5168\u4ef6": [224, 225], "\u5168\u4f53": [22, 31, 41, 42, 48, 54, 57, 59, 141, 208, 224, 225, 245], "\u5168\u524a": 170, "\u5168\u63b2": 56, "\u5168\u6587": [22, 24, 25, 28, 31, 32, 41, 42, 43, 45, 47, 49, 52, 53, 59, 84, 91, 111, 112, 132, 134, 135, 156, 161, 175, 186, 202, 203, 219, 223, 224, 225, 227, 229, 239, 244, 254, 262, 296, 299, 300, 304, 305, 307, 309, 311], "\u5168\u6587\u691c": [22, 37, 304], "\u5168\u6587\u691c\u7d22": [47, 161, 175, 202], "\u5168\u7136": 45, "\u5168\u89d2": [39, 41, 45, 50, 53, 230, 231, 232, 233, 234, 235, 257, 258, 259, 308], "\u5168\u90e8": 298, "\u516c\u5e73": 48, "\u516c\u5f0f": [8, 27, 31, 39, 45, 102, 197, 227], "\u516c\u8a00": 56, "\u516c\u8f14": 48, "\u516c\u958b": [37, 39, 41, 48, 49, 50, 51, 52, 53, 61], "\u516c\u958b\u9375": 12, "\u5171\u548c\u56fd": 44, "\u5171\u6709": [2, 10, 12, 22, 31, 43, 47, 48, 61, 111, 175, 177, 307, 310], "\u5171\u901a": [10, 39, 41, 43, 134, 175, 225, 254, 282, 310], "\u5171\u901a\u63a5": [53, 254], "\u5177\u4f53": [42, 53, 111, 156, 301, 306, 310], "\u5177\u4f53\u4f8b": [110, 135], "\u5177\u5408": [156, 225], "\u5178\u578b": 50, "\u5185\u5bb9": [10, 12, 17, 18, 24, 25, 28, 30, 32, 33, 41, 42, 43, 45, 47, 49, 50, 53, 74, 87, 95, 112, 132, 134, 135, 156, 162, 173, 174, 176, 205, 206, 224, 225, 228, 237, 250, 253, 281, 296, 305, 308, 310, 311, 312], "\u5185\u5c71": 52, "\u5185\u7a4d": 45, "\u5185\u8a33": 301, "\u5185\u8fd1\u304f": 225, "\u5185\u90e8": [12, 40, 41, 42, 43, 44, 45, 46, 49, 50, 51, 61, 71, 74, 96, 124, 141, 142, 149, 227, 237, 305], "\u5186\u6ed1": 12, "\u518d\u3073": [49, 173], "\u518d\u4f5c": 50, "\u518d\u4f5c\u6210": 51, "\u518d\u5229": [41, 49, 50, 53, 89, 141, 175, 177, 254], "\u518d\u5b9f": 31, "\u518d\u5e30": [11, 41, 58, 109, 127, 156, 173, 177, 243], "\u518d\u5ea6": [11, 12, 41, 42, 43, 49, 50, 52], "\u518d\u691c": [156, 223], "\u518d\u69cb": [39, 42, 43, 44, 45, 53, 54, 173], "\u518d\u69cb\u7bc9": [42, 43], "\u518d\u73fe": [10, 48, 52, 54, 223, 262, 264, 274, 301], "\u518d\u751f": [31, 53, 177], "\u518d\u767a": [42, 43, 49], "\u518d\u8aad": 243, "\u518d\u8aad\u8fbc": 131, "\u518d\u8d77": [42, 43, 50, 52, 243, 281, 296], "\u518d\u8d77\u52d5": [144, 151, 175, 177, 281], "\u5197\u9577": [52, 237], "\u51aa\u7b49": [43, 44], "\u51e6\u7406": [0, 6, 11, 12, 17, 27, 31, 36, 37, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 89, 92, 94, 99, 100, 111, 124, 127, 132, 134, 135, 138, 142, 149, 156, 158, 161, 165, 168, 173, 176, 177, 193, 203, 206, 224, 225, 228, 237, 255, 262, 292, 298, 299, 315], "\u51fa\u3055": 48, "\u51fa\u3057": 311, "\u51fa\u3059": [52, 156, 180, 311], "\u51fa\u305b\u308b": [0, 52], "\u51fa\u529b": [0, 3, 14, 22, 31, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 68, 74, 91, 92, 93, 97, 99, 100, 107, 108, 110, 111, 112, 114, 115, 116, 117, 118, 119, 121, 122, 123, 124, 126, 127, 128, 129, 130, 132, 133, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 173, 175, 176, 177, 178, 180, 194, 228, 231, 232, 233, 234, 235, 257, 258, 259, 274, 282, 298, 302, 304], "\u51fa\u529b\u5024": 42, "\u51fa\u6765": [18, 31, 42, 53, 54, 168, 208, 307, 310], "\u51fa\u6765\u308b": [52, 311], "\u51fa\u73fe": [0, 41, 43, 44, 50, 56, 111, 112, 123, 135, 156, 159, 165, 180, 224, 225, 245, 246, 247, 309], "\u5206z": 282, "\u5206\u304b\u3061": 0, "\u5206\u3051": [12, 22, 52, 112], "\u5206\u3051\u308b": [208, 305], "\u5206\u307e": 248, "\u5206\u4e0d": 111, "\u5206\u5272": [0, 39, 50, 51, 104, 225, 254, 272, 299, 308], "\u5206\u5c90": 14, "\u5206\u6563": [56, 248], "\u5206\u6790": [0, 52, 54, 156], "\u5206\u77ed": 156, "\u5206\u843d": 111, "\u5206\u89e3": [11, 248], "\u5206\u914d": [132, 135], "\u5206\u96c6\u5408": 156, "\u5206\u985e": [156, 305, 306], "\u5207\u3089": 49, "\u5207\u308a": [26, 39, 41, 42, 43, 48, 49, 50, 51, 52, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 82, 83, 147, 156, 260], "\u5207\u308a\u4e0a\u3052\u308b": 134, "\u5207\u308a\u51fa\u3055": [44, 177, 296], "\u5207\u308a\u6368\u3066": 305, "\u5207\u308b": [49, 141, 177], "\u5207\u308c": [50, 52, 53], "\u5207\u65ad": 41, "\u5207\u8feb": 56, "\u5217\u4e2d": [51, 225], "\u5217\u578b": [49, 208, 209, 224, 305, 306], "\u5217\u5f0f": 68, "\u5217\u5f15": 11, "\u5217\u60c5": 168, "\u5217\u6307\u5411": 0, "\u5217\u6319": [50, 231, 235, 308], "\u5217\u8868": [68, 111, 282], "\u5217\u95a2": 51, "\u521d\u56de": [17, 41], "\u521d\u671f": [0, 37, 39, 47, 49, 53], "\u521d\u671f\u5024": [111, 174], "\u521d\u671f\u5316": [45, 47, 50, 51, 53, 84, 173], "\u5224\u5b9a": 315, "\u5224\u65ad": [41, 51, 56, 134, 137, 156, 225, 237, 302], "\u5225\u3005": [156, 306], "\u5225\u51e6": 156, "\u5225\u540d": [50, 175, 202], "\u5225\u9014": [45, 125, 282], "\u5229\u70b9": 0, "\u5229\u7528": [0, 1, 10, 12, 14, 17, 18, 22, 23, 26, 27, 28, 31, 32, 33, 39, 43, 44, 45, 47, 48, 49, 50, 51, 61, 95, 111, 122, 156, 157, 161, 168, 171, 173, 175, 176, 178, 192, 193, 195, 202, 219, 224, 225, 231, 232, 233, 234, 235, 236, 239, 250, 251, 253, 257, 258, 259, 282, 290, 298, 299, 301, 304, 305, 308], "\u5229\u7528\u4f8b": 0, "\u5230\u9054": [34, 41], "\u5236\u5fa1": [41, 42, 47, 52, 111, 133, 156, 177, 183, 202], "\u5236\u7d04": [34, 134], "\u5236\u9650": [22, 37, 39, 41, 43, 44, 47, 48, 49, 50, 51, 53, 56, 57, 104, 134, 135, 153, 156, 177, 188, 210, 223, 224, 225, 245, 246, 248, 281, 292, 304, 310, 312], "\u523b\u307f": 156, "\u5247\u3063": 248, "\u524a\u6e1b": [43, 50, 51, 52, 54, 173], "\u524a\u9664": [0, 6, 12, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 89, 105, 110, 111, 113, 115, 123, 125, 143, 149, 156, 170, 171, 173, 175, 177, 197, 231, 234, 235, 244, 254], "\u524a\u9664\u5f8c": 52, "\u524d\u3082\u3063": 50, "\u524d\u4ed8": [132, 134, 135], "\u524d\u5411\u3051": 124, "\u524d\u56de": [12, 43], "\u524d\u5f8c": [43, 175, 308], "\u524d\u63d0": [3, 58], "\u524d\u65b9": [11, 22, 36, 38, 40, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 54, 57, 110, 111, 159, 161, 201, 202, 219, 238, 254, 264, 299, 304, 308], "\u524d\u8005": [58, 180, 224, 225, 230, 243, 315], "\u524d\u8ff0": [45, 56, 111, 156, 161, 177, 195, 229, 237, 301], "\u526f\u8a5e": 156, "\u5270\u4f59": 49, "\u5272\u3063": [245, 247], "\u5272\u308a": [45, 153, 162, 168, 225, 254, 305], "\u5272\u308a\u5f53\u3066": [37, 94, 156], "\u5272\u308a\u5f53\u3066\u308b": [98, 254, 305, 308], "\u5272\u308b": 247, "\u5272\u5408": [42, 158], "\u5275\u696d": 56, "\u52a0\u3048": [11, 21, 42, 43, 44, 51, 124, 274, 305, 313], "\u52a0\u3048\u308b": [39, 124], "\u52a0\u308f\u308b": 10, "\u52a0\u7b97": [41, 51, 53, 89, 91], "\u52a3\u5316": [50, 149], "\u52a9\u52d5\u8a5e": 274, "\u52a9\u8a5e": [156, 274], "\u52aa\u529b": 56, "\u52b9\u304b": 45, "\u52b9\u304d": 41, "\u52b9\u679c": [41, 42, 43, 53, 54, 111, 133, 311], "\u52b9\u7387": [41, 50, 51, 91, 111, 124, 141, 177, 202, 203, 224, 225, 310], "\u52c9\u5f37": [264, 279, 280], "\u52d5\u3044": [45, 50, 81, 149], "\u52d5\u304b": [44, 48, 49, 50, 52, 118, 180, 224, 244], "\u52d5\u304b\u3057": [180, 281], "\u52d5\u304b\u3059": 50, "\u52d5\u304d": [44, 50, 53, 56, 149, 156, 167, 202, 203, 248, 292], "\u52d5\u304d\u51fa\u3057": 12, "\u52d5\u304d\u51fa\u3059": 12, "\u52d5\u304f": [31, 39, 45, 47, 281, 291], "\u52d5\u4f5c": [3, 17, 31, 37, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 93, 111, 131, 134, 135, 156, 166, 176, 177, 228, 231, 232, 233, 234, 235, 249, 275, 291, 305], "\u52d5\u5c0f": [41, 111, 282], "\u52d5\u6642": 52, "\u52d5\u74b0": 174, "\u52d5\u751f": 141, "\u52d5\u753b": 307, "\u52d5\u7684": [0, 22, 37, 40, 41, 42, 43, 44, 45, 50, 51, 52, 53, 54, 57, 111, 177, 275, 299, 308], "\u52dd\u624b": 43, "\u52e7\u3081": 49, "\u5316\u51e6": [39, 89], "\u5316\u524d": 89, "\u5316\u5bfe": [17, 42, 43, 231, 232, 233, 234, 235, 237, 258, 259], "\u5316\u5f8c": [54, 237], "\u5316\u65b9": [138, 229], "\u5316\u6642": 39, "\u5316\u6f0f\u308c": 47, "\u5316\u7528": 42, "\u5316\u81ea\u4f53": 257, "\u5316\u95a2": 37, "\u5317\u4eac": 188, "\u5317\u534a\u7403": 47, "\u5317\u5e02": 51, "\u533a\u5207": [142, 156], "\u533a\u5207\u3063": [138, 156, 165, 168, 180, 298], "\u533a\u5207\u3089": 39, "\u533a\u5207\u308a": [0, 42, 43, 47, 50, 53, 111, 122, 125, 156, 159, 161, 168, 174, 175, 180, 202, 205, 224, 225, 241, 253, 262, 264, 272, 273, 279, 280, 282, 305, 306, 308], "\u533a\u5207\u308b": [27, 31, 37, 156, 175, 243], "\u533a\u5225": [51, 156, 237, 244, 282, 313], "\u5341\u5206": [41, 42, 43, 51, 52, 53, 54, 96, 111, 134, 183, 196, 197, 206, 301, 303], "\u5341\u5206\u304b": 101, "\u5341\u5206\u6c17": 156, "\u5343\u8f09": 56, "\u534a\u5206": 42, "\u534a\u5f84": 189, "\u534a\u6fc1": [53, 231, 232, 233, 234, 235, 258, 259], "\u534a\u7121": [39, 161], "\u534a\u89d2": [53, 230, 231, 232, 233, 234, 235, 257, 258, 259, 308], "\u5354\u529b": [3, 4, 22, 51], "\u5354\u8b70": 56, "\u5357\u534a": 47, "\u5358\u306b": 48, "\u5358\u4f4d": [0, 37, 39, 41, 42, 50, 92, 95, 96, 99, 141, 158, 171, 173, 175, 180, 188, 189, 205, 206, 208, 209, 211, 225, 228, 279, 280, 282, 298, 299, 308, 311], "\u5358\u4f53": [0, 176], "\u5358\u72ec": [45, 111, 176], "\u5358\u7cbe": [41, 111, 282], "\u5358\u7d14": [11, 98, 111, 189, 313], "\u5358\u8a9e": [41, 47, 132, 134, 135, 156, 223, 224, 243, 245, 246, 247, 250, 252, 264, 308, 309, 310, 311], "\u5358\u8a9e\u9593": 44, "\u535a\u4e4b": [50, 51, 56], "\u5360\u3081\u308b": 42, "\u5370\u8c61": 56, "\u5371\u6a5f": [56, 175, 228], "\u5371\u967a": [12, 52, 114, 126, 127, 128, 137, 143, 163, 164, 292], "\u5373\u5024": 51, "\u5373\u5ea7": [50, 51], "\u5373\u6642": [22, 42, 54], "\u539f\u56e0": [10, 12, 22, 42, 43, 44, 50, 51, 173, 176, 300, 302, 303], "\u539f\u578b": 54, "\u539f\u99c5": 315, "\u53b3\u5bc6": [49, 50, 51, 186, 250], "\u53b3\u683c": 54, "\u53c2\u52a0": [2, 3], "\u53c2\u7167": [1, 6, 7, 8, 12, 17, 18, 21, 22, 24, 25, 26, 27, 28, 30, 31, 32, 33, 36, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 87, 98, 99, 100, 102, 104, 105, 106, 107, 110, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 169, 170, 173, 176, 177, 180, 186, 188, 195, 197, 202, 203, 210, 224, 225, 227, 228, 237, 240, 243, 244, 260, 264, 274, 281, 282, 290, 296, 301, 303, 304, 306, 310, 311, 315], "\u53c2\u7167\u5024": 51, "\u53c2\u7167\u5143": [105, 305], "\u53c2\u7167\u5148": [48, 53], "\u53c2\u7167\u578b": [43, 156], "\u53c2\u7167\u91cd": 43, "\u53c2\u8003": [12, 22, 57, 308], "\u53ca\u3073": 176, "\u53cb\u4eba": 307, "\u53cc\u65b9": 10, "\u53cd\u6620": [0, 11, 12, 180, 281], "\u53cd\u8ee2": [42, 225], "\u53ce\u307e\u308a\u304d\u3089": 50, "\u53ce\u96c6": [0, 54], "\u53d6\u3063": 45, "\u53d6\u308a": 51, "\u53d6\u308a\u51fa\u3055": 305, "\u53d6\u308a\u51fa\u3057": 308, "\u53d6\u308a\u51fa\u3059": [11, 37, 305], "\u53d6\u308a\u51fa\u305b\u308b": 51, "\u53d6\u308a\u5f97\u308b": 282, "\u53d6\u308a\u8fbc\u307e": 12, "\u53d6\u308a\u8fbc\u307f": [39, 42], "\u53d6\u308a\u8fbc\u3080\u969b": 42, "\u53d6\u308a\u9664\u304d": [11, 54, 194], "\u53d6\u308a\u9664\u304f": 274, "\u53d6\u308b": [44, 45, 178, 180, 225, 298], "\u53d6\u5f97": [10, 22, 23, 41, 42, 43, 45, 49, 50, 51, 52, 53, 54, 61, 96, 106, 107, 111, 112, 116, 132, 136, 142, 156, 166, 171, 180, 186, 225, 250, 251, 253, 274, 304, 306, 307, 310], "\u53d7\u3051": [9, 45, 47, 48, 49, 50, 51, 53, 54, 56, 98, 99, 153, 157, 173, 177, 178, 180, 183, 188, 225, 276, 292, 295, 298, 308, 314], "\u53d7\u3051\u308b": [49, 296], "\u53d7\u3051\u4ed8\u3051": [37, 47, 53, 157, 225], "\u53d7\u3051\u53d6\u3063": [0, 43], "\u53d7\u3051\u53d6\u308a": [11, 177, 180, 183, 184, 193, 308], "\u53d7\u4ed8": [48, 314], "\u53d7\u4fe1": [125, 180], "\u53e4\u3044": [41, 44, 45, 47, 50, 51, 52, 114, 164, 229, 311], "\u53e4\u304f": [49, 51], "\u53e5\u70b9": 274, "\u53ef\u5426": 308, "\u53ef\u5909": [39, 112, 120, 141, 142, 298], "\u53ef\u5909\u9577": [124, 141], "\u53ef\u80fd": [10, 11, 12, 14, 18, 22, 27, 39, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 56, 64, 89, 93, 94, 106, 108, 112, 123, 128, 144, 145, 151, 156, 159, 173, 175, 176, 178, 186, 192, 208, 224, 225, 254, 257, 276, 277, 290, 292, 298, 299, 301, 307, 308, 311, 313, 315], "\u53ef\u8aad": 49, "\u53f3\u4e0a": 36, "\u53f3\u4e0b": [36, 190], "\u53f3\u8fba": [37, 39, 42, 43, 50, 51], "\u5404\u5024": 142, "\u5404\u51fa": [134, 156], "\u5404\u52d5": 156, "\u5404\u52d9": 50, "\u5404\u5358": 156, "\u5404\u547d": 176, "\u5404\u6a5f": 45, "\u5404\u7a2e": [31, 111], "\u5404\u7d22": 308, "\u5404\u8981": [42, 43, 91, 96, 111, 156, 219], "\u5404\u8a00": 260, "\u5404\u8a9e": 108, "\u5404\u8fd1": 44, "\u5404\u90e8": 156, "\u5404\u958b": 56, "\u5408\u308f": [45, 94, 156], "\u5408\u308f\u305b": [43, 47, 111, 225, 272], "\u5408\u7406": 264, "\u5408\u81f4": [308, 315], "\u5408\u8a08": [34, 41, 43, 49, 94, 104, 108, 132, 134, 135, 156, 158, 176, 245, 254, 301, 303], "\u5409\u5ca1": 50, "\u5409\u7530": 48, "\u540c\u3058": [0, 18, 22, 31, 36, 37, 39, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 68, 91, 93, 95, 96, 98, 110, 111, 132, 134, 135, 137, 144, 149, 150, 151, 152, 153, 156, 159, 162, 168, 175, 176, 177, 180, 202, 203, 205, 208, 224, 225, 229, 230, 231, 232, 233, 234, 235, 236, 243, 244, 245, 246, 247, 251, 257, 258, 259, 275, 282, 286, 292, 300, 305, 306, 308, 310], "\u540c\u3058\u4f8b": 310, "\u540c\u3058\u5024": [111, 134, 135, 156, 177, 308], "\u540c\u3058\u578b": [90, 91], "\u540c\u3058\u6570": [175, 177, 292], "\u540c\u3058\u6642": 54, "\u540c\u3058\u6708": 50, "\u540c\u3058\u8a9e": 43, "\u540c\u3058\u91cd\u307f": 202, "\u540c\u3058\u97f3\u3068": [231, 232, 233, 234, 235, 257, 258, 259], "\u540c\u540d": [12, 131], "\u540c\u6642": [0, 9, 41, 43, 44, 50, 51, 52, 53, 93, 94, 125, 156, 176, 180, 272, 315], "\u540c\u671f": 176, "\u540c\u68b1": [17, 27, 37, 47, 49], "\u540c\u69d8": [11, 12, 42, 43, 45, 52, 53, 54, 56, 111, 156, 176, 239, 298, 305, 315], "\u540c\u7a0b": 111, "\u540c\u7b49": [41, 42, 50, 124, 176, 299], "\u540c\u7fa9": [43, 44, 45, 51, 243], "\u540dn": 162, "\u540d\u524d": [17, 22, 37, 38, 39, 42, 43, 44, 47, 50, 51, 52, 53, 54, 56, 57, 58, 74, 93, 96, 108, 110, 111, 112, 113, 114, 119, 121, 123, 124, 125, 132, 134, 135, 137, 138, 139, 140, 141, 142, 143, 149, 150, 155, 156, 161, 162, 163, 164, 168, 169, 175, 177, 180, 197, 202, 208, 225, 231, 232, 233, 234, 235, 236, 237, 248, 250, 254, 274, 292, 295, 298, 305, 308, 311], "\u540d\u79f0": 50, "\u540d\u8a5e": [53, 231, 232, 233, 234, 235, 274], "\u540d\u9806": 135, "\u5411\u3044": [49, 95, 111, 156, 254], "\u5411\u3051": [3, 6, 11, 22, 24, 25, 27, 28, 30, 31, 32, 33, 42, 43, 44, 45, 48, 49, 50, 51, 54, 224], "\u5411\u4e0a": [18, 39, 41, 43, 44, 45, 50, 51, 52, 54, 111, 156, 177, 223, 225, 292, 296], "\u5426\u304b": [134, 183], "\u5426\u5b9a": [11, 50, 156, 272], "\u542b\u307e": [6, 11, 12, 27, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 96, 110, 111, 112, 118, 124, 132, 134, 135, 137, 144, 145, 149, 150, 151, 154, 156, 157, 160, 161, 162, 163, 164, 165, 180, 183, 195, 196, 202, 205, 206, 219, 224, 225, 243, 245, 246, 247, 253, 264, 272, 275, 276, 292, 299, 308, 310, 311], "\u542b\u307e\u308c": [0, 12, 48, 95, 132, 135, 144, 145, 151, 156, 161, 166, 183, 205, 206, 299, 310], "\u542b\u307e\u308c\u308b": [0, 11, 44, 51, 134, 156, 175, 192, 193, 202, 301, 305, 308], "\u542b\u307f": [41, 44, 50, 96, 125, 132, 135, 141], "\u542b\u3080": [9, 11, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 74, 91, 110, 111, 123, 132, 134, 135, 155, 156, 159, 164, 174, 191, 224, 225, 228, 246, 247, 275, 276, 278, 299, 308, 310, 311], "\u542b\u3080\u5024": [175, 308], "\u542b\u3080\u5168\u3066": 114, "\u542b\u3081": [12, 41, 42, 44, 51, 156, 183, 224, 243], "\u542b\u3081\u308b": [12, 39, 40, 49, 51, 53, 122, 132, 134, 135, 137, 138, 156, 168, 183, 224, 243, 308], "\u542b\u3093": [11, 43, 44, 45, 49, 51, 52, 53, 94, 134, 137, 141, 155, 156, 205, 206, 224, 225, 245, 246, 251, 252, 262, 265, 266, 267, 268, 286, 305, 310, 311], "\u5438\u53ce": 308, "\u5468\u4e0a": 189, "\u5468\u8fba": [42, 43, 44, 47, 205, 206, 302], "\u547c\u3070": [41, 48, 50, 51, 52, 81, 149, 156, 225, 245, 282, 308], "\u547c\u3073": [11, 41, 42, 43, 84, 87, 91, 111, 141, 156, 175, 176, 205, 206, 305], "\u547c\u3073\u51fa\u3055": [41, 156], "\u547c\u3073\u51fa\u3057": [0, 11, 37, 41, 47, 49, 50, 52, 53, 54, 122, 134, 156, 223], "\u547c\u3073\u51fa\u3059": [41, 133, 167, 185, 189, 190, 199, 204, 223], "\u547c\u3076": [14, 41, 47, 50, 81, 84, 114, 149, 164, 223], "\u547c\u3076\u524d": 84, "\u547c\u3093": [49, 84, 149, 156, 299, 306], "\u547d\u4ee4": 175, "\u547d\u540d": [47, 56, 132, 134, 135], "\u548c\u3068": 41, "\u548c\u5e83": 48, "\u54c1\u8a5e": [53, 231, 232, 233, 234, 235, 274], "\u552f\u4e00": 167, "\u5546\u6750": 56, "\u554f\u3044\u5408\u308f": 11, "\u554f\u308f": 225, "\u554f\u984c": [12, 17, 36, 37, 38, 39, 41, 44, 47, 48, 49, 50, 51, 52, 53, 54, 61, 108, 137, 143, 176, 177, 224, 225, 264, 303, 308], "\u559c\u3073": [16, 17], "\u56db\u3064": 299, "\u56db\u5247": 49, "\u56db\u6368": 39, "\u56db\u89d2\u5f62": 239, "\u56de\u51fa": 41, "\u56de\u52d5": 176, "\u56de\u540c": 50, "\u56de\u547c": 37, "\u56de\u6307\u5b9a": [195, 224], "\u56de\u6570": [43, 47, 52, 156, 281], "\u56de\u66f8": 56, "\u56de\u691c": 41, "\u56de\u7279": 176, "\u56de\u7e70\u308a": 176, "\u56de\u9001\u308b": 153, "\u56de\u907f": [12, 22, 49, 50, 51, 163, 300, 301], "\u56de\u9589": 54, "\u56f0\u3063": 10, "\u56f0\u96e3": [0, 47], "\u56f2\u3044": 191, "\u56f2\u3046": 41, "\u56f2\u307e": [193, 206], "\u56f2\u307f": [175, 192, 193, 205, 206], "\u56f2\u3080": [48, 308], "\u56f2\u3093": 225, "\u56fa\u5b9a": [41, 45, 49, 52, 112, 142, 156, 161, 298, 308], "\u56fa\u5b9a\u9577": [37, 141], "\u56fa\u6709": [91, 274], "\u56fd\u3054": 306, "\u56fd\u5185": 56, "\u56fd\u540d": 306, "\u56fd\u969b": [17, 44], "\u56fd\u969b\u5316": [3, 15, 22, 43, 44, 51], "\u570f\u5185": 311, "\u571f\u66dc": 212, "\u571f\u66dc\u65e5": 212, "\u5727\u7e2e": [31, 39, 41, 47, 48, 49, 50, 51, 53, 111, 141, 155, 291], "\u5730\u56f3": 0, "\u5730\u57df": 0, "\u5730\u5f62": [188, 189], "\u5730\u70b9": [188, 315], "\u5730\u7cfb": 188, "\u578b\u304b": 282, "\u578b\u3068\u3057\u3066": 282, "\u578b\u540d": [112, 134, 155, 156], "\u578b\u5909": 39, "\u578b\u60c5": 47, "\u578b\u6307": 47, "\u578b\u7528": 68, "\u57cb\u3081\u8fbc\u307f": [193, 206], "\u57cb\u3081\u8fbc\u3080": 176, "\u57f7\u7b46": [18, 239, 309], "\u57fa\u3065\u3044": 43, "\u57fa\u3065\u304f": 53, "\u57fa\u6570": 225, "\u57fa\u672c": [0, 22, 27, 47, 49, 110, 156, 299, 301, 304, 305], "\u57fa\u672c\u5f62": 274, "\u57fa\u6e96": [0, 12, 134, 156, 305, 308], "\u5800\u672c": 53, "\u5800\u6c5f": 56, "\u5831\u4ee5": 168, "\u5831\u544a": [3, 10, 22, 37, 38, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 96, 143, 156, 173, 176], "\u5834\u5408": [6, 7, 10, 11, 12, 17, 18, 21, 22, 23, 27, 28, 31, 32, 33, 34, 36, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 61, 68, 74, 81, 90, 91, 93, 96, 99, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 130, 131, 132, 133, 134, 135, 137, 138, 140, 141, 142, 143, 149, 152, 153, 155, 156, 158, 159, 161, 163, 164, 167, 168, 170, 173, 174, 175, 176, 177, 178, 180, 183, 184, 186, 188, 189, 191, 192, 193, 196, 197, 201, 202, 204, 205, 206, 208, 209, 212, 219, 224, 225, 226, 228, 229, 237, 241, 243, 244, 245, 247, 248, 250, 251, 252, 254, 260, 261, 262, 264, 272, 274, 275, 278, 279, 280, 281, 282, 286, 292, 298, 299, 301, 302, 303, 306, 307, 308, 311, 312, 314, 315], "\u5834\u6240": [2, 31, 37, 41, 49, 51, 53, 141, 175, 176, 311], "\u5883\u754c": [47, 53, 134, 188], "\u5897\u3048": [45, 91, 96, 111, 154, 156, 158, 168, 244, 247, 310], "\u5897\u3048\u308b": [50, 56, 139, 156, 169, 180], "\u5897\u3084": [6, 42, 50, 81, 91, 149, 150, 156], "\u5897\u3084\u3059": [14, 54, 81, 91, 149, 156, 244, 281], "\u5897\u5206": [156, 173], "\u5897\u52a0": [42, 43, 48, 111, 156, 286], "\u5897\u5927": 188, "\u58ca\u3057": [50, 173], "\u58ca\u3059": 47, "\u58ca\u308c": [37, 39, 42, 43, 44, 45, 47, 50, 51, 52, 53, 54, 106, 108, 123, 142, 143, 152, 163, 173], "\u58ca\u308c\u308b": [36, 37, 39, 41, 46, 47, 48, 49, 50, 51, 54, 123, 125, 126, 127, 128], "\u5909\u3048": [56, 110], "\u5909\u3048\u308b": [53, 56, 110, 156, 262, 301], "\u5909\u308a": 49, "\u5909\u308f\u3063": [31, 56, 110, 264], "\u5909\u308f\u3089": 43, "\u5909\u308f\u308a": [45, 50, 107, 108, 153, 156, 208, 264, 299, 315], "\u5909\u308f\u308b": [43, 44, 111, 277, 301], "\u5909\u5316": [0, 50, 53], "\u5909\u63db": [39, 41, 43, 45, 50, 51, 52, 53, 100, 177, 225, 227, 229, 254, 282, 311], "\u5909\u6570": [12, 14, 31, 38, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 85, 149, 150, 156, 225, 243], "\u5909\u66f4": [3, 12, 21, 22, 31, 36, 39, 40, 41, 42, 46, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 89, 91, 93, 108, 111, 114, 118, 124, 125, 131, 132, 138, 141, 154, 156, 159, 163, 164, 171, 176, 177, 183, 188, 191, 192, 196, 205, 206, 225, 231, 232, 233, 234, 235, 241, 243, 254, 275, 291, 300, 308], "\u5916\u56fd\u88fd": 56, "\u5916\u90e8": [9, 27, 31, 43], "\u591a\u3044": [41, 43, 44, 45, 111, 156, 173, 224, 225, 240, 301], "\u591a\u304b\u3063": 302, "\u591a\u304f": [39, 41, 42, 43, 44, 45, 52, 53, 54, 56, 111, 123, 124, 135, 142, 156, 161, 177, 197, 201, 206, 224, 225, 227, 244, 247, 264, 277, 291, 296, 301, 305, 308], "\u591a\u3059\u304e": 37, "\u591a\u3059\u304e\u308b": [52, 53, 156, 302], "\u591a\u5f69": 0, "\u591a\u6570": 52, "\u591a\u69d8": 0, "\u591a\u6bb5": [51, 156], "\u591a\u8a00": 56, "\u591a\u91cd": [156, 174], "\u591a\u9762": [0, 56], "\u5927\u304d": [41, 43, 44, 47, 52, 53, 91, 94, 108, 111, 156, 161, 173, 177, 231, 232, 233, 234, 235, 254, 258, 259, 281], "\u5927\u304d\u3044": [11, 39, 41, 42, 43, 45, 49, 50, 51, 52, 53, 54, 99, 105, 111, 118, 125, 141, 156, 161, 173, 186, 224, 225, 254, 262, 281], "\u5927\u304d\u304b\u3063": [43, 44, 156], "\u5927\u304d\u304f": [37, 42, 43, 44, 54, 93, 111, 122, 141, 156, 173, 189, 246, 253, 305], "\u5927\u304d\u3051\u308c": 52, "\u5927\u304d\u3055": 254, "\u5927\u304d\u3059\u304e\u308b": 149, "\u5927\u304d\u306a": [41, 43, 44, 51, 156, 281, 292], "\u5927\u306a\u308a": 202, "\u5927\u4e08": 19, "\u5927\u4e08\u592b": [10, 31, 51], "\u5927\u4e8b": [224, 243], "\u5927\u5207": 0, "\u5927\u5225": 305, "\u5927\u5c0f": [134, 135], "\u5927\u5e45": [51, 54], "\u5927\u624b": 56, "\u5927\u62b5": 177, "\u5927\u6587": [156, 244], "\u5927\u6587\u5b57": [49, 53, 111, 161, 201, 244, 308], "\u5927\u898f": 56, "\u5927\u898f\u6a21": [0, 51], "\u5927\u8cb4": 47, "\u5927\u91cf": [11, 34, 41, 42, 43, 44, 45, 49, 51, 52, 54, 111, 134, 156, 161, 163, 173, 245, 246, 254, 307, 308], "\u5927\u95a2": 49, "\u592a\u90ce": [45, 307], "\u592b\u5fc5": 313, "\u5931\u308f": [47, 52, 257, 258, 259], "\u5931\u52b9": [107, 177], "\u5931\u6557": [12, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 85, 110, 111, 114, 115, 117, 118, 121, 124, 126, 127, 128, 129, 132, 134, 137, 144, 145, 149, 150, 151, 152, 156, 160, 161, 163, 164, 166, 170, 184, 224, 244, 302, 308], "\u5947\u5999": 244, "\u5947\u6570": 225, "\u5968\u6271\u3044": 49, "\u597d\u304d": 17, "\u597d\u6a5f": 56, "\u59a5\u5f53": [50, 51, 156, 254], "\u59a5\u5f53\u6027": 51, "\u59cb\u307e\u3063": [95, 96, 156, 228, 240, 252], "\u59cb\u307e\u3089": 156, "\u59cb\u307e\u308b": [44, 49, 51, 56, 89, 156, 176, 224, 225, 243, 250, 252, 264, 292], "\u59cb\u3081": [17, 18, 56, 156], "\u59cb\u70b9": 308, "\u59d4\u306d\u308b": 56, "\u5b09\u3057\u304f": [10, 45], "\u5b50\u5348\u7dda": 188, "\u5b57\u5165": 240, "\u5b57\u5217": [39, 44, 45, 49, 51, 52, 111, 112, 115, 116, 117, 142, 155, 161, 208, 209, 224, 282], "\u5b57\u524d": [231, 232, 233, 234, 235], "\u5b57\u5c0f": [156, 244], "\u5b57\u8a31": 156, "\u5b57\u9762": 45, "\u5b58\u5728": [0, 27, 31, 36, 37, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 89, 111, 115, 116, 122, 125, 132, 134, 135, 137, 140, 153, 156, 173, 176, 177, 183, 189, 190, 197, 224, 227, 248, 264, 296, 298, 299, 303, 306, 308, 310, 315], "\u5b66\u3073": [132, 134, 135, 156, 188, 306, 310], "\u5b66\u3093": 311, "\u5b66\u7fd2": [37, 48, 159, 249], "\u5b66\u7fd2\u7528": 180, "\u5b89\u5168": [43, 50, 111, 149], "\u5b89\u5b9a": [0, 12, 40, 42, 43, 44, 45, 93, 96, 108, 156, 197, 227], "\u5b89\u5fc3": 10, "\u5b89\u9054": 56, "\u5b8c\u4e86": [17, 18, 41, 43, 54, 99, 111, 156, 228], "\u5b8c\u5168": [11, 41, 58, 111, 133, 141, 156, 161, 225, 254, 301, 314], "\u5b8c\u74a7": 247, "\u5b8c\u7d50": 10, "\u5b9a\u5024": 47, "\u5b9a\u5b50": 244, "\u5b9a\u6570": [50, 52, 53], "\u5b9a\u7248": 12, "\u5b9a\u7fa9": [11, 42, 43, 44, 47, 49, 50, 53, 58, 89, 110, 111, 113, 119, 121, 122, 125, 132, 134, 135, 142, 149, 150, 156, 162, 175, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 225, 226, 237, 243, 244, 245, 246, 247, 248, 275, 276, 278, 282, 286, 298, 308, 310], "\u5b9f\u4f53": [17, 142], "\u5b9f\u4f8b": [3, 4, 22], "\u5b9f\u51e6": 11, "\u5b9f\u6570": 282, "\u5b9f\u65bd": [12, 56, 106], "\u5b9f\u73fe": [0, 3, 4, 22, 49, 111, 156, 177, 201, 223, 225, 244, 254, 306, 308], "\u5b9f\u7528": 49, "\u5b9f\u7a3c": 174, "\u5b9f\u884c": [0, 3, 17, 22, 23, 29, 31, 33, 38, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 81, 89, 92, 93, 95, 96, 98, 99, 105, 106, 107, 108, 109, 111, 113, 114, 115, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 143, 144, 147, 149, 150, 151, 152, 153, 154, 156, 157, 159, 162, 163, 164, 166, 167, 170, 173, 178, 180, 186, 188, 194, 196, 202, 203, 210, 223, 225, 228, 243, 244, 248, 250, 251, 253, 265, 266, 267, 268, 277, 281, 290, 292, 298, 302, 308, 312, 314, 315], "\u5b9f\u884c\u4f8b": [14, 43, 47, 58, 91, 93, 95, 107, 110, 111, 112, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 177, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 226, 228, 229, 230, 232, 233, 234, 236, 237, 240, 244, 245, 246, 247, 250, 251, 253, 255, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 286, 298, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315], "\u5b9f\u88c5": [17, 39, 41, 42, 44, 45, 47, 49, 50, 51, 53, 81, 99, 110, 111, 135, 154, 156, 177, 178, 188, 224, 225, 247, 248, 291], "\u5b9f\u904b": 54, "\u5b9f\u969b": [18, 34, 44, 45, 48, 51, 52, 58, 81, 111, 132, 134, 135, 137, 156, 158, 173, 245, 281, 301, 307, 310], "\u5b9f\u9a13": [18, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 61, 96, 132, 138, 145, 154, 156, 186, 197, 227, 244, 246, 277], "\u5bae\u4e0b": 51, "\u5bb9\u91cf": [41, 50, 52, 101, 108], "\u5bc4\u3063": 260, "\u5bc4\u4e0e": 111, "\u5bfe\u51e6": [41, 49, 275], "\u5bfe\u5fdc": [0, 9, 11, 14, 18, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 110, 124, 135, 149, 150, 156, 159, 173, 175, 186, 199, 228, 230, 237, 244, 248, 250, 251, 252, 253, 254, 274, 291, 308], "\u5bfe\u7167": 202, "\u5bfe\u7b56": [22, 53, 274, 300], "\u5bfe\u8a71": [298, 308], "\u5bfe\u8c61": [0, 9, 11, 12, 14, 17, 18, 31, 39, 40, 41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 68, 74, 87, 93, 96, 103, 104, 105, 109, 113, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 134, 135, 137, 140, 141, 143, 149, 150, 152, 153, 156, 159, 161, 168, 173, 174, 180, 183, 184, 186, 191, 192, 193, 195, 196, 197, 198, 202, 203, 205, 206, 208, 209, 211, 219, 221, 224, 225, 228, 237, 244, 245, 246, 247, 275, 292, 299, 301, 307, 308, 310, 311], "\u5c02\u7528": [1, 12, 17, 27, 42, 43, 143, 298, 312], "\u5c06\u6765": [41, 43, 44, 48, 91, 132, 138, 139, 141, 154, 169, 188, 197, 227, 248, 292, 298], "\u5c0e\u5165": [3, 14, 15, 17, 22, 45, 49, 50, 93], "\u5c0f\u3055": [50, 51, 53, 141, 231, 232, 233, 234, 235, 258, 259], "\u5c0f\u3055\u3044": [11, 34, 38, 42, 44, 91, 111, 125, 134, 156, 161, 183, 186, 189, 196, 224, 228, 246, 254, 262], "\u5c0f\u3055\u304f": [34, 41, 45, 49, 50, 111, 134, 188, 189, 226, 244, 254, 281, 292], "\u5c0f\u3055\u3051\u308c": 52, "\u5c0f\u3055\u3059\u304e\u308b": 149, "\u5c0f\u3055\u306a": 51, "\u5c0f\u306a\u308a": [202, 223], "\u5c0f\u5024": [132, 134, 135, 137], "\u5c0f\u6570": [39, 43, 45, 50, 95, 99, 111, 175, 282, 305, 311], "\u5c0f\u6570\u70b9": 305, "\u5c0f\u6587\u5b57": [45, 53, 111, 161, 168, 201, 229, 244, 308], "\u5c0f\u897f": 48, "\u5c11\u304f": 303, "\u5c11\u3057": [31, 41, 43, 44, 54, 56, 247], "\u5c11\u3057\u9045\u3044": [175, 177], "\u5c11\u3057\u9055\u3044": 156, "\u5c11\u3057\u9577\u3044": 156, "\u5c11\u306a\u3044": [41, 49, 52, 53, 111, 156, 223, 224, 225, 226, 243], "\u5c11\u306a\u304f": [0, 10, 41, 50, 54, 56, 104, 111, 118, 149, 156, 195, 203, 205, 206, 224, 225, 226, 237, 281], "\u5c11\u306a\u3051\u308c": 161, "\u5c11\u6570": 53, "\u5c1a\u4e5f": 48, "\u5c3a\u5ea6": 0, "\u5c45\u308b": 56, "\u5c55\u958b": [22, 27, 31, 33, 39, 43, 44, 47, 48, 51, 52, 57, 118, 144, 145, 151, 156, 202, 243], "\u5c55\u958b\u5f8c": [42, 156], "\u5c55\u958b\u7528": 39, "\u5c5e\u3057": [87, 282, 306], "\u5c5e\u3059\u308b": 162, "\u5c5e\u6027": [38, 138, 139, 162, 168, 169, 194], "\u5c65\u6b74": [12, 45], "\u5c71\u672c": 49, "\u5c71\u7530": [45, 231, 232, 233, 234, 235, 274], "\u5ca9\u4e95": [47, 48, 51], "\u5ca9\u677e": 51, "\u5cf6\u6d25": 54, "\u5cf6\u7530": 47, "\u5d8b\u7530": 47, "\u5de6\u4e0a": [36, 190], "\u5de6\u4e0b": 36, "\u5de6\u5074": 44, "\u5de6\u53f3": 308, "\u5de6\u8fba": 51, "\u5de8\u5927": [42, 43, 45, 54], "\u5dee\u5206": [43, 111, 176], "\u5dee\u96c6\u5408": 225, "\u5e02\u5185": 239, "\u5e02\u771f": 51, "\u5e03\u6559": 3, "\u5e38\u306b": 50, "\u5e73\u4eee": 54, "\u5e73\u5747": [41, 43, 49, 94, 156], "\u5e73\u884c": 42, "\u5e74\u9f62": [0, 111, 161], "\u5e83\u3044": 18, "\u5e83\u304f": [12, 244], "\u5e97\u540d": 42, "\u5ea6y": 282, "\u5ea6\u3068": 39, "\u5ea6\u5206": 282, "\u5ea6\u5408\u3044": 301, "\u5ea6\u6570": [39, 225, 305, 315], "\u5ea6\u6d6e": [41, 111, 282], "\u5ea6\u8868": 37, "\u5ea7\u6a19": [39, 41, 188, 189, 190, 225, 239, 311], "\u5ea7\u6a19\u5024": 39, "\u5ec3\u6b62": [5, 6, 31, 93, 240], "\u5f0f\u3068": 42, "\u5f0f\u3082": 225, "\u5f0f\u5168": [224, 225], "\u5f0f\u8868": 68, "\u5f0f\u96c6": 208, "\u5f0f\u96c6\u5408": [208, 244], "\u5f15\u3044": 225, "\u5f15\u304d\u51fa\u3059": 0, "\u5f15\u304d\u7d99": 56, "\u5f15\u304d\u7d9a\u304d": [44, 45, 48], "\u5f15\u304d\u8d77\u3053\u3057": 54, "\u5f15\u304d\u8d77\u3053\u3059": [47, 48, 149], "\u5f15\u304d\u8d77\u3059": [47, 48, 51], "\u5f15\u6570": [11, 22, 36, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 93, 102, 139, 144, 145, 151, 169, 184, 206, 212, 225, 230, 236, 244, 245, 248, 264, 265, 266, 267, 268, 269, 270, 271, 273, 276, 277, 278, 279, 280, 283, 295, 298, 302, 305, 306, 308, 310, 312, 314], "\u5f15\u7528": [48, 175], "\u5f15\u7d9a": 26, "\u5f15\u8a9e": 308, "\u5f31\u70b9": 0, "\u5f35\u3063": [48, 50, 137, 156, 163], "\u5f35\u3089": [47, 48, 50, 54, 124, 149, 246, 247, 305], "\u5f35\u308b": [163, 224, 225], "\u5f35\u308c\u308b": 48, "\u5f37\u304f": [42, 44, 56], "\u5f37\u3081": 56, "\u5f37\u5236": [36, 41, 47, 49, 50, 51, 52, 53, 143, 157, 173], "\u5f37\u529b": [53, 156, 244], "\u5f37\u5316": [37, 39, 49, 54], "\u5f53\u3066": [45, 53, 153, 162, 168, 254], "\u5f53\u3066\u308b": [153, 305], "\u5f53\u6642": 56, "\u5f53\u8a72": 93, "\u5f62\u5bb9": 156, "\u5f62\u5f0f": [11, 18, 22, 27, 36, 39, 40, 41, 42, 43, 44, 47, 49, 51, 53, 54, 57, 64, 92, 96, 97, 99, 100, 107, 108, 110, 111, 112, 114, 115, 116, 117, 118, 121, 122, 123, 124, 126, 127, 128, 129, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 173, 174, 175, 176, 177, 178, 185, 189, 190, 199, 204, 225, 228, 241, 282, 298, 305, 308, 310], "\u5f62\u614b": [0, 31, 156, 225, 274], "\u5f62\u72b6": 239, "\u5f71\u97ff": [12, 41, 43, 45, 47, 48, 49, 50, 51, 52, 54, 149, 175, 177, 246], "\u5f79\u5272": [111, 202, 203, 308], "\u5f79\u7acb\u3061": [42, 48, 54, 111], "\u5f85\u305f": [41, 45, 156], "\u5f85\u3061": [42, 106, 156], "\u5f85\u3061\u53d7\u3051\u308b": [298, 312], "\u5f85\u3063": 42, "\u5f85\u3064": [99, 134], "\u5f8c\u304b\u3089": 122, "\u5f8c\u3059\u3050": 43, "\u5f8c\u308d": [54, 272], "\u5f8c\u59cb": 52, "\u5f8c\u65b9": [11, 22, 43, 44, 46, 47, 49, 50, 51, 53, 54, 202, 244, 246, 247, 292, 299, 304], "\u5f8c\u65e5": [43, 54], "\u5f8c\u7d9a": [45, 52, 53, 149, 205], "\u5f8c\u8005": [58, 180, 224, 225, 230, 243, 315], "\u5f8c\u8ff0": [11, 12, 156, 210, 244, 248], "\u5f93\u3044": 18, "\u5f93\u3046": 37, "\u5f93\u3063": [156, 292], "\u5f93\u6765": [41, 45, 49, 52, 53, 156], "\u5f97\u305f\u3044": 45, "\u5f97\u3089\u308c": [43, 167, 196], "\u5f97\u308b": [53, 177, 240], "\u5fa9\u65e7": [40, 41, 45, 50, 106, 173], "\u5faa\u74b0": 51, "\u5fc3\u304c": 14, "\u5fc3\u914d": 23, "\u5fc5\u305a": [18, 45, 87, 93, 106, 111, 132, 134, 135, 156, 161, 201, 244, 245, 298], "\u5fc5\u8981": [0, 3, 7, 10, 11, 12, 14, 17, 21, 22, 23, 31, 34, 36, 37, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 61, 74, 81, 84, 91, 94, 95, 96, 111, 112, 118, 123, 124, 125, 126, 132, 133, 134, 135, 137, 138, 141, 144, 149, 151, 153, 156, 157, 161, 163, 168, 173, 175, 176, 177, 180, 186, 192, 193, 195, 196, 198, 201, 202, 203, 206, 208, 210, 224, 225, 226, 227, 236, 237, 240, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 260, 274, 278, 281, 292, 298, 301, 303, 308, 310, 312, 314], "\u5fc5\u9808": [31, 43, 44, 131, 144, 145, 151, 154, 177, 181, 186, 191, 192, 194, 196, 197, 198, 201, 208, 210, 221, 278, 292, 308, 312], "\u5fd8\u308c": [39, 91, 124, 201], "\u5fd8\u308c\u308b": [126, 150], "\u5fdc\u3058": [0, 45, 52, 156, 176, 244], "\u5fdc\u7528": 0, "\u5fdc\u7b54": [0, 41, 42, 43, 44, 48, 51, 54], "\u601d\u3044": [17, 56], "\u601d\u3044\u51fa\u3057": 156, "\u601d\u3046": [244, 306, 310], "\u601d\u3063": 16, "\u6027\u5225": 0, "\u6027\u80fd": [0, 50, 53, 124, 125, 134, 149, 156, 291, 310], "\u6052\u4f8b": 46, "\u6069\u6075": 296, "\u60aa\u3044": 41, "\u60aa\u5316": 43, "\u60aa\u5f71": 43, "\u60aa\u610f": [180, 225], "\u60c5\u5831": [2, 3, 12, 17, 22, 31, 36, 37, 39, 40, 41, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 96, 111, 112, 124, 134, 141, 142, 144, 151, 154, 155, 156, 158, 159, 162, 173, 175, 228, 229, 238, 245, 246, 247, 301, 304, 305, 307, 308, 309], "\u60c5\u5831\u540d": 162, "\u60f3\u5b9a": [41, 45, 52, 108, 111, 122, 307], "\u610f\u5473": [11, 31, 41, 42, 45, 48, 50, 51, 53, 58, 68, 91, 99, 111, 112, 124, 127, 141, 143, 149, 150, 152, 153, 156, 158, 159, 173, 175, 176, 177, 224, 225, 240, 243, 244, 247, 257, 258, 259, 262, 281, 306, 308, 315], "\u610f\u56f3": [42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 202, 205, 210, 224, 246, 310], "\u610f\u8b58": [54, 161], "\u611f\u3058": 10, "\u614e\u91cd": 14, "\u6163\u308c": 306, "\u6163\u7fd2": 47, "\u6210\u308a": [156, 298], "\u6210\u308a\u7acb\u3063": 11, "\u6210\u529f": [12, 31, 41, 50, 51, 52, 61, 68, 84, 85, 100, 109, 110, 111, 113, 114, 115, 117, 118, 119, 121, 124, 126, 127, 128, 129, 130, 131, 137, 144, 145, 149, 150, 151, 152, 160, 161, 163, 164, 166, 170, 298, 308], "\u6210\u679c": [3, 18], "\u6210\u7acb": [44, 56], "\u623b\u3057": [51, 118], "\u623b\u3063": 177, "\u623b\u308a": 47, "\u623b\u308a\u5024": [54, 61, 68, 74, 81, 84, 85], "\u6240\u5b9a": [161, 255, 299, 301], "\u6240\u5c5e": 114, "\u6240\u6709": 50, "\u6240\u8981": 43, "\u624b\u52d5": [27, 42, 45, 177, 180, 227], "\u624b\u66f8\u304d": 42, "\u624b\u6bb5": [11, 68], "\u624b\u9593": 10, "\u624b\u9806": [3, 4, 10, 18, 22, 27, 31, 42, 47, 48, 51, 54, 106, 125, 156, 180, 253], "\u6253\u3061": 12, "\u6253\u3061\u5207\u308a": 48, "\u6271\u3044": [41, 42, 43, 49, 50, 51, 52, 53, 93, 250, 265, 266, 267, 268, 269, 270, 271, 299, 305], "\u6271\u3046": [0, 2, 40, 41, 48, 100, 134, 225, 278, 281, 301, 302, 303], "\u6271\u3048": [41, 42, 51, 111, 309], "\u6271\u3048\u308b": [41, 42, 48, 49, 303], "\u6271\u3063": [36, 42, 48, 311], "\u6271\u308f": [47, 48, 49, 50, 51, 56, 156, 168, 176, 224, 225, 229, 239, 301, 305], "\u627f\u8a8d": 49, "\u6280\u8853": 56, "\u628a\u63e1": [10, 124], "\u6291\u3048": 301, "\u6291\u5236": [42, 47, 48, 49, 53], "\u6295\u3052": 53, "\u6295\u5165": [36, 301], "\u6295\u7a3f": [12, 156], "\u6295\u7a3f\u5834\u6240": 311, "\u629c\u304d\u51fa\u3059": 0, "\u629c\u3051": [39, 48, 49, 50, 51], "\u629c\u3051\u308b": 308, "\u62bc\u3057": 308, "\u62bc\u3059": [17, 308], "\u62bd\u51fa": [42, 43, 44, 47, 52, 54, 134, 156, 161, 193, 205, 206, 209, 210, 228, 231, 232, 233, 234, 235, 249, 260, 262, 272, 276], "\u62c5\u5f53": 12, "\u62c5\u5f53\u8005": 12, "\u62d2\u5426": 105, "\u62d7\u97f3": 53, "\u62e1\u5145": 56, "\u62e1\u5927": 10, "\u62e1\u5f35": [22, 39, 49, 52, 54, 56, 161, 244, 304], "\u62e1\u5f35\u578b": 305, "\u62e1\u5f35\u5b50": [37, 41, 144, 145, 151, 176, 178, 197, 241], "\u6301\u305f": [41, 53, 142], "\u6301\u3061": [11, 44, 87, 112, 142, 155, 156, 168, 175, 177, 186, 191, 244], "\u6301\u3063": [0, 10, 41, 42, 43, 44, 47, 53, 91, 96, 112, 132, 134, 135, 138, 139, 141, 142, 156, 168, 169, 175, 224, 225, 229, 237, 251, 272, 310], "\u6301\u3064": [0, 9, 39, 41, 42, 43, 45, 53, 54, 89, 111, 112, 125, 132, 134, 135, 139, 156, 169, 188, 210, 225, 229, 237, 239, 251, 305, 306, 307, 308, 310], "\u6301\u3064\u3059\u3079": 156, "\u6301\u3064\u65b0\u3057\u3044": 42, "\u6301\u3066": [112, 255], "\u6301\u3066\u308b": 50, "\u6307\u3057": 305, "\u6307\u5b9a": [0, 6, 8, 11, 12, 22, 27, 30, 31, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 64, 68, 74, 87, 89, 91, 96, 97, 99, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 161, 163, 164, 165, 167, 168, 170, 173, 174, 175, 176, 177, 178, 181, 183, 184, 185, 186, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 219, 221, 223, 225, 226, 231, 232, 233, 234, 235, 237, 239, 240, 241, 243, 244, 245, 246, 247, 250, 254, 257, 258, 259, 260, 261, 264, 272, 274, 275, 276, 278, 286, 291, 292, 295, 298, 299, 301, 304, 305, 306, 307, 311, 312, 313, 315], "\u6307\u6570": [111, 225], "\u6307\u793a": [250, 308, 312], "\u6307\u91dd": [3, 4, 22, 51], "\u6319\u304c\u3063": 262, "\u6319\u52d5": [22, 37, 41, 43, 45, 47, 49, 50, 52, 53, 74, 94, 122, 137, 156, 171, 175, 205, 244, 246, 264, 301], "\u632f\u308b": [52, 156], "\u632f\u821e": 188, "\u632f\u821e\u3044": [47, 48, 49, 183, 202], "\u633f\u5165": [12, 41, 47, 74, 156, 175, 205, 206, 308], "\u6349\u3048\u308b": 56, "\u6355\u7372": 208, "\u6368\u3066": [39, 56, 156], "\u6368\u3066\u308b": 56, "\u6392\u4ed6": [51, 52, 111], "\u639b\u3051": 225, "\u63a1\u7528": [0, 41, 56, 141, 167, 298, 301], "\u63a2\u3057": [0, 41, 156, 176, 262], "\u63a2\u3059": [198, 240, 262, 310], "\u63a2\u7d22": 0, "\u63a5\u5c3e": [231, 232, 233, 234, 235, 274], "\u63a5\u7d9a": [1, 9, 41, 47, 53, 147, 156, 175, 176, 302, 308], "\u63a5\u7d9a\u5148": 174, "\u63a5\u8fd1": 11, "\u63a5\u982d": [39, 43, 53, 225, 254], "\u63a8\u5968": [23, 31, 41, 43, 44, 47, 49, 50, 51, 52, 93, 95, 156, 180, 281, 312], "\u63a8\u5b9a": [50, 53, 54], "\u63a8\u6e2c": 43, "\u63a8\u79fb": 93, "\u63a8\u9032": 48, "\u63d0\u4f9b": [0, 1, 11, 12, 21, 24, 25, 26, 28, 32, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 59, 84, 93, 94, 96, 111, 112, 132, 133, 156, 166, 167, 172, 175, 177, 180, 188, 202, 227, 237, 244, 245, 247, 248, 252, 254, 291, 292, 306], "\u63d0\u6848": [10, 22, 37, 39, 40, 43, 47, 48, 49, 50, 51, 53, 57, 159, 249], "\u63db\u3048": [50, 58, 111, 175, 244, 314], "\u63db\u3048\u308b": [45, 50, 53, 56, 58, 87, 163], "\u63db\u6642": 39, "\u63e1\u308b": 56, "\u63fa\u308c": [56, 314], "\u642d\u8f09": 0, "\u643a\u5e2f": 0, "\u64a4\u53bb": 39, "\u64a4\u5ec3": [37, 49], "\u64cd\u4f5c": [0, 11, 22, 41, 42, 43, 48, 50, 54, 57, 68, 96, 111, 114, 140, 149, 156, 164, 175, 223, 225, 240, 298, 304, 305], "\u64ec\u4f3c": [41, 50, 87, 112, 155, 156, 224, 225, 315], "\u64ec\u967d": 45, "\u652f\u3048": 54, "\u652f\u3048\u308b": 54, "\u652f\u63f4": 252, "\u6539\u540d": [39, 47], "\u6539\u5584": [36, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 124], "\u6539\u884c": [39, 40, 42, 50, 74, 175, 272], "\u6539\u8a02": 51, "\u654f\u90ce": 52, "\u6559\u3048": 275, "\u6570\u3005": 56, "\u6570\u3048": [158, 208, 209, 224, 306], "\u6570\u3048\u308b": [132, 134, 135, 156, 306], "\u6570\u500d": 41, "\u6570\u5024": [11, 22, 36, 37, 41, 44, 46, 50, 51, 53, 91, 98, 107, 132, 134, 135, 142, 149, 154, 156, 189, 224, 225, 299, 304, 308], "\u6570\u5206": 134, "\u6570\u591a\u304f": 51, "\u6570\u5b57": [42, 49, 53, 111, 132, 134, 135, 156, 161, 176, 244, 251, 264, 268, 271, 275, 301, 302], "\u6570\u70b9": [41, 111, 156, 282], "\u6570\u73e0": 210, "\u6570\u9806": 135, "\u6574\u3063": 14, "\u6574\u5217": [0, 308], "\u6574\u5408": [36, 51], "\u6574\u5f62": [50, 97, 308], "\u6574\u6570": [42, 43, 44, 50, 51, 89, 91, 96, 100, 111, 141, 156, 167, 175, 186, 204, 282, 298, 305, 311], "\u6574\u7406": [47, 48], "\u6587\u5316": 56, "\u6587\u5b57": [0, 11, 36, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 56, 68, 74, 91, 111, 112, 129, 130, 138, 155, 156, 161, 165, 168, 171, 175, 180, 184, 185, 186, 188, 189, 190, 191, 192, 193, 195, 203, 205, 206, 207, 208, 209, 224, 225, 228, 229, 230, 231, 232, 233, 234, 235, 237, 243, 250, 251, 257, 258, 259, 262, 264, 265, 266, 267, 268, 271, 272, 273, 275, 279, 280, 282, 299, 305, 306, 307, 308, 310, 311, 314, 315], "\u6587\u5b57\u5217": [22, 41, 42, 43, 44, 45, 47, 48, 49, 51, 68, 74, 90, 91, 95, 96, 98, 111, 112, 116, 134, 138, 142, 156, 168, 180, 184, 185, 188, 191, 192, 193, 201, 205, 206, 208, 209, 210, 223, 224, 237, 282, 304, 306, 308, 311, 314], "\u6587\u5b57\u6570": [44, 132, 134, 135, 156, 195, 205, 206, 207, 225], "\u6587\u5b57\u6bce": 156, "\u6587\u5b57\u7a2e": 244, "\u6587\u66f8": [0, 41, 49, 52, 53, 54, 111, 202, 223, 226, 245, 246, 247, 252, 261, 299, 305, 308, 314], "\u6587\u66f8\u4e2d": [245, 246], "\u6587\u66f8\u5185": 261, "\u6587\u672b": [224, 225], "\u6587\u691c": 111, "\u6587\u6cd5": [22, 304], "\u6587\u8108": 210, "\u6587\u982d": 272, "\u65ad\u7247": 205, "\u65b0\u3057\u3044": [0, 3, 6, 12, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 58, 61, 81, 96, 110, 111, 114, 126, 131, 133, 157, 161, 164, 167, 175, 177, 180, 229, 252, 298, 308], "\u65b0\u3057\u304f": [10, 42, 44, 45, 49, 93, 111, 133, 156, 220, 223, 226, 308], "\u65b0\u3057\u3051\u308c": 173, "\u65b0\u305f": 11, "\u65b0\u4efb": 12, "\u65b0\u5bbf": 315, "\u65b0\u5bbf\u99c5": 315, "\u65b0\u65e7": 50, "\u65b0\u898f": [12, 44, 52, 53, 56, 111, 176], "\u65b0\u898f\u30ec\u30b3\u30fc\u30c9": 51, "\u65b0\u898f\u30ed\u30b0": 131, "\u65b0\u8a9e": [274, 278], "\u65b9\u3005": 56, "\u65b9\u5f0f": [0, 308, 310], "\u65b9\u5f62": [188, 189], "\u65b9\u6cd5": [0, 4, 10, 12, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 94, 122, 124, 132, 135, 141, 155, 156, 161, 171, 173, 175, 176, 177, 180, 186, 188, 189, 195, 197, 202, 208, 219, 223, 225, 228, 241, 243, 245, 247, 249, 260, 262, 264, 269, 270, 271, 274, 275, 279, 280, 281, 282, 292, 295, 298, 299, 300, 305, 306, 308, 310, 311, 312], "\u65e2\u5b58": [0, 1, 12, 41, 42, 43, 46, 47, 49, 50, 51, 52, 53, 54, 58, 111, 131, 132, 134, 135, 156, 173, 176, 177, 186, 195, 227, 248, 296, 298, 305, 308], "\u65e2\u5b9a": [47, 52, 310], "\u65e2\u5b9a\u5024": 296, "\u65e2\u77e5": 278, "\u65e5\u3005": 10, "\u65e5\u4ed8": [0, 12, 188], "\u65e5\u5358\u4f4d": 211, "\u65e5\u6642": [22, 132, 134, 135, 282, 304, 311], "\u65e5\u66dc\u65e5": 212, "\u65e5\u672c": [12, 18, 42, 44, 49, 53, 56, 156, 189, 190, 201, 224, 225, 240, 250, 264, 265, 266, 267, 268, 274, 282, 315], "\u65e5\u672c\u4eba": 250, "\u65e5\u672c\u6e2c": 188, "\u65e5\u672c\u8a9e": [0, 2, 17, 19, 41, 44, 47, 56, 156, 224, 225, 240, 250, 264, 274, 275, 279, 280, 301], "\u65e5\u6b21": 50, "\u6607\u9806": [122, 134, 135, 136, 156, 198, 306, 308, 315], "\u660e\u3089\u304b": 56, "\u660e\u6587\u5316": 302, "\u660e\u78ba": [49, 54, 56], "\u660e\u793a": [18, 31, 44, 45, 47, 48, 50, 96, 111, 124, 156, 175, 176, 177, 188, 205, 236, 250, 254, 292, 310], "\u660e\u793a\u7684": [124, 157, 241], "\u6628\u65e5": 54, "\u662f\u975e": 54, "\u6642groonga": [43, 44], "\u6642\u3005": 42, "\u6642\u3060\u3051": [44, 53], "\u6642\u306b": [39, 45], "\u6642\u306e": 45, "\u6642\u3084": 156, "\u6642\u4ee3": [0, 56], "\u6642\u4ee5\u5916": 37, "\u6642\u523b": [42, 50, 53, 95, 173, 176, 199, 211, 212, 251, 311], "\u6642\u63a5": [94, 156], "\u6642\u671f": [42, 50, 56], "\u6642\u70b9": [43, 47, 56, 61, 74, 93, 96, 156, 166], "\u6642\u9593": [0, 6, 37, 39, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 95, 96, 106, 123, 156, 157, 158, 173, 176, 177, 180, 211, 224, 226, 228, 248, 282, 305, 308], "\u666e\u53ca": 0, "\u666e\u6bb5": 12, "\u666e\u901a": [10, 205, 206, 225], "\u6697\u9ed9": 310, "\u66d6\u6627": [51, 53], "\u66dc\u65e5": 212, "\u66f2\u540d": 42, "\u66f4\u306b": 43, "\u66f4\u65b0": [3, 11, 18, 22, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 93, 111, 123, 125, 141, 156, 173, 226, 237, 249, 254, 274, 305, 307, 308, 310], "\u66f8\u3044": [49, 50, 224, 225, 244, 311], "\u66f8\u304b": [18, 41, 47, 50, 131, 248, 311], "\u66f8\u304d": [0, 50, 56, 156, 176, 244, 301], "\u66f8\u304d\u51fa\u3057": [54, 124, 149, 150], "\u66f8\u304d\u51fa\u3059": 124, "\u66f8\u304d\u5f8c": 299, "\u66f8\u304d\u63db\u3048": 21, "\u66f8\u304d\u8fbc\u307f": [31, 42, 50, 101, 106, 125, 127], "\u66f8\u304d\u8fbc\u3080": [50, 176], "\u66f8\u304d\u8fbc\u3081\u308b": [49, 101], "\u66f8\u304f": [42, 45, 49, 175, 224, 244, 310], "\u66f8\u3051": 41, "\u66f8\u3051\u308b": [47, 48, 49, 50], "\u66f8\u5f0f": [22, 53, 140, 141, 143, 156, 202, 295, 298, 304, 312], "\u66ff\u3048": [12, 22, 41, 43, 49, 50, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 111, 301, 304], "\u66ff\u3048\u308b": [26, 41, 42, 51, 52, 197, 260, 308], "\u66ff\u308f\u308b": 50, "\u6700\u3082": [108, 156, 186, 198], "\u6700\u4e0a": 111, "\u6700\u4e0b\u4f4d": 111, "\u6700\u4e2d": [0, 18, 51, 143], "\u6700\u4f4e": 44, "\u6700\u521d": [3, 10, 39, 41, 42, 43, 44, 49, 50, 51, 53, 54, 95, 111, 153, 156, 161, 175, 183, 191, 192, 193, 195, 197, 205, 206, 219, 224, 225, 243, 244, 245, 277, 296, 305, 308, 310], "\u6700\u5927": [34, 36, 37, 39, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 54, 58, 61, 81, 94, 107, 111, 115, 116, 117, 118, 132, 133, 134, 135, 137, 141, 142, 156, 158, 161, 163, 167, 171, 175, 176, 180, 183, 203, 204, 205, 206, 224, 225, 245, 246, 254, 292, 298, 303], "\u6700\u5927\u5024": [41, 47, 49, 51, 132, 134, 135, 137, 141, 156, 246], "\u6700\u5927\u7dcf": [50, 141, 161, 254], "\u6700\u5c0f": [24, 25, 28, 32, 50, 156, 183, 296], "\u6700\u5c0f\u5024": [41, 49, 132, 134, 135, 137, 156, 225], "\u6700\u5c0f\u9650": 177, "\u6700\u5f8c": [37, 41, 42, 43, 44, 45, 47, 50, 156, 168, 176, 177, 205, 224, 225, 244, 264, 277, 286, 301, 302, 305], "\u6700\u65b0": [2, 6, 7, 8, 12, 27, 39, 50, 51, 107], "\u6700\u7d42": [18, 43, 52, 91, 156], "\u6700\u8fd1": [45, 51], "\u6700\u9069": [41, 42, 43, 44, 45, 50, 51, 52, 53, 54, 177], "\u6700\u9577": [39, 43, 98, 176, 225], "\u6708\u6b21": 50, "\u6709\u5229": 134, "\u6709\u529b": 159, "\u6709\u52b9": [0, 6, 12, 18, 27, 31, 32, 39, 40, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 94, 96, 111, 112, 125, 132, 134, 135, 143, 149, 150, 156, 158, 161, 168, 175, 176, 177, 180, 197, 198, 208, 209, 211, 212, 219, 221, 222, 224, 228, 244, 248, 305, 312], "\u6709\u7121": [53, 191, 192, 231, 232, 233, 234, 235, 258, 259, 305], "\u6709\u7528": [41, 42, 43, 44, 45, 49, 50, 51, 52, 53, 54, 58, 95, 99, 111, 112, 123, 143, 156, 161, 177, 227, 254, 274, 292, 308], "\u6709\u76ca": [0, 156], "\u6709\u9650": 56, "\u671b\u307e\u3057\u3044": [0, 10], "\u671b\u307e\u3057\u304f": 74, "\u671f\u5316": [44, 45, 47, 52], "\u671f\u5f85": [0, 42, 43, 44, 45, 52, 54, 56, 111, 156, 224, 240, 244, 274, 305], "\u671f\u5f85\u901a\u308a": 278, "\u6728\u66dc\u65e5": 212, "\u672a\u4f7f": 49, "\u672a\u4f7f\u7528": 298, "\u672a\u51e6\u7406": 158, "\u672a\u521d": [44, 45, 47, 52], "\u672a\u52a0": 141, "\u672a\u5727": 111, "\u672a\u5b9a": 305, "\u672a\u5b9a\u7fa9": 49, "\u672a\u5b9f\u88c5": 135, "\u672a\u5bfe": [47, 53], "\u672a\u6765": 56, "\u672a\u6e80": [53, 99, 175, 224], "\u672a\u77e5": 40, "\u672a\u7ba1": 141, "\u672a\u8a2d": 47, "\u672a\u958b\u653e": 37, "\u672b\u5c3e": [43, 137, 173, 244, 272], "\u672b\u6c38": 50, "\u672c\u4f53": [3, 12], "\u672c\u5bb6": 12, "\u672c\u5f53": [53, 156, 250, 314], "\u672c\u6587": [194, 310], "\u672c\u6765": [43, 44, 45, 123], "\u672c\u756a": [50, 134], "\u672c\u8a9e": [264, 265, 266, 267, 268, 279], "\u672c\u8cea": 176, "\u6749\u672c": 50, "\u6749\u672c\u6dbc": 50, "\u6751\u4e0a": [48, 49, 50, 51, 52, 53], "\u6761\u4ef6": [3, 11, 22, 37, 41, 42, 43, 44, 45, 47, 48, 50, 52, 53, 54, 68, 119, 137, 149, 159, 163, 175, 186, 195, 202, 203, 205, 208, 209, 210, 219, 223, 225, 237, 272, 282, 301, 304, 308, 311, 313], "\u6761\u4ef6\u5f0f": [47, 53], "\u6771\u4eac": [44, 188, 274, 299, 301, 315], "\u6771\u4eac\u90fd": [44, 274, 299, 301], "\u6790\u5668": [0, 156, 274], "\u6790\u7cfb": 225, "\u6797\u6a8e": [257, 258, 259], "\u679c\u305f": 308, "\u67af\u308c": [1, 296], "\u67d4\u8edf": [0, 42, 111, 202, 223], "\u6817\u5c71": [49, 50], "\u682a\u5f0f": [49, 50, 51, 52, 56], "\u683c\u7d0d": [0, 11, 34, 39, 41, 42, 43, 45, 53, 54, 58, 89, 104, 111, 132, 134, 135, 142, 156, 161, 162, 175, 201, 225, 226, 239, 248, 254, 299, 305, 306, 307, 308, 311, 314], "\u6848\u5185": [10, 12, 50], "\u68ee\u5927": 56, "\u68ee\u7530": 307, "\u691c\u51fa": [6, 31, 36, 37, 39, 41, 43, 44, 45, 47, 50, 51, 52, 53, 96, 168, 205], "\u691c\u67fb": 54, "\u691c\u77e5": [31, 42, 44, 54], "\u691c\u7d22": [11, 12, 22, 24, 25, 27, 28, 31, 32, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 68, 84, 87, 89, 110, 111, 112, 119, 123, 159, 168, 171, 175, 183, 186, 191, 192, 193, 195, 196, 201, 202, 203, 205, 206, 210, 219, 223, 226, 227, 229, 231, 235, 238, 244, 245, 246, 247, 248, 254, 260, 261, 262, 264, 274, 275, 276, 277, 278, 282, 292, 296, 297, 300, 304, 305, 306, 309], "\u691c\u7d22\u4f8b": 3, "\u691c\u8a0e": [141, 245, 246, 247, 296, 301], "\u691c\u8a3c": [49, 174], "\u6955\u5186": [188, 189], "\u696d\u8005": 56, "\u6975\u4ed8": [188, 189], "\u697d\u3057": [299, 301], "\u697d\u3057\u3044": [299, 301], "\u6982\u5ff5": 93, "\u6982\u7b97": 165, "\u6982\u8981": [22, 50, 57, 59, 256, 263], "\u69cb\u3044": [17, 193, 206, 237], "\u69cb\u308f": 173, "\u69cb\u60f3": 56, "\u69cb\u6210": [11, 24, 25, 28, 32, 41, 42, 43, 49, 74, 111, 156, 224, 296, 308], "\u69cb\u6587": [22, 38, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 57, 68, 91, 223, 245], "\u69cb\u7bc9": [3, 22, 41, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 94, 111, 225, 262, 299], "\u69cb\u9020": [0, 11, 41, 42, 95, 96, 254, 307], "\u69cb\u9020\u4f53": [49, 51, 53], "\u69d8\u3005": [3, 11, 17, 42, 302, 315], "\u6a19\u6e96": [31, 36, 40, 41, 42, 43, 49, 50, 52, 93, 108, 109, 113, 119, 120, 122, 125, 130, 147, 162, 174, 175, 177, 178, 245, 298, 308], "\u6a19\u8a18": 49, "\u6a29\u8868": 49, "\u6a29\u9650": [31, 48, 50, 312], "\u6a2a\u5c71": [48, 49, 51], "\u6a2a\u65ad": 56, "\u6a5f\u4f1a": 56, "\u6a5f\u68b0": 49, "\u6a5f\u80fd": [0, 6, 11, 31, 36, 37, 39, 40, 41, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 58, 91, 96, 99, 110, 132, 133, 134, 135, 138, 145, 156, 157, 158, 159, 161, 163, 166, 167, 173, 175, 176, 177, 180, 186, 197, 201, 202, 223, 224, 225, 227, 231, 235, 238, 240, 243, 244, 246, 248, 249, 250, 251, 252, 253, 254, 291, 292, 296, 306, 311, 312], "\u6b20\u304b\u305b": 56, "\u6b20\u70b9": 0, "\u6b20\u843d": 48, "\u6b21\u5143": 45, "\u6b21\u56de": 93, "\u6b21\u90ce": 307, "\u6b32\u3057\u3044": [96, 141, 248], "\u6b32\u3057\u304f": [43, 44], "\u6b32\u6c42": 56, "\u6b53\u8fce": 3, "\u6b62\u3081": [45, 49, 50, 81], "\u6b62\u3081\u308b": [45, 58], "\u6b63\u3057\u3044": [42, 43, 44, 45, 50, 54, 56, 102, 156, 224, 243, 251, 252], "\u6b63\u3057\u304f": [12, 18, 41, 44, 45, 47, 48, 49, 50, 51, 52, 54, 74, 124, 134, 135, 224, 250], "\u6b63\u53f2": 56, "\u6b63\u5e38": [12, 50, 51, 101, 134, 135, 176], "\u6b63\u5f0f": [49, 51], "\u6b63\u76f4": 56, "\u6b63\u78ba": [42, 43, 54, 111, 133, 224, 305, 308], "\u6b63\u898f": [22, 40, 41, 42, 43, 44, 47, 49, 50, 51, 52, 53, 54, 57, 138, 161, 165, 168, 191, 192, 193, 197, 202, 205, 229, 230, 231, 232, 233, 234, 235, 236, 237, 243, 257, 258, 259, 272, 276, 277], "\u6b63\u898f\u5316": [47, 138, 237], "\u6b63\u8ca0": 42, "\u6b66\u8005": 50, "\u6b74\u53f2": 56, "\u6b86\u3069": 54, "\u6b8a\u547d": 176, "\u6b8b\u3063": [37, 45, 48, 52, 53, 56, 123, 163, 173], "\u6b8b\u3089": 52, "\u6b8b\u308a": [42, 43, 53, 93, 125, 134, 156, 161, 165, 243], "\u6b8b\u308b": 39, "\u6b8b\u5ff5": 305, "\u6b8b\u7559": [43, 173], "\u6bb5\u843d": 112, "\u6bb5\u968e": [52, 281], "\u6bcd\u97f3": [44, 231, 232, 233, 234, 235], "\u6bce\u56de": 3, "\u6bce\u5e74": 46, "\u6bd4\u3079": [49, 51, 111, 226], "\u6bd4\u8f03": [22, 37, 41, 47, 49, 50, 51, 53, 111, 123, 156, 176, 195, 219, 224, 276, 289, 291], "\u6bd4\u8f03\u6642": 53, "\u6c17\u3065\u3044": 205, "\u6c17\u3065\u3051\u308b": 51, "\u6c17\u306b": [17, 112, 149], "\u6c17\u4ed8\u3051\u308b": 52, "\u6c17\u8efd": [10, 18, 49], "\u6c34\u66dc\u65e5": 212, "\u6c38\u7d9a": [22, 52, 53, 57, 112, 171, 175, 177], "\u6c38\u7d9a\u5316": 52, "\u6c42\u307e\u308a": 0, "\u6c42\u3081": [0, 43, 185], "\u6c42\u3081\u308b": [0, 188, 189, 306], "\u6c4e\u7528": [45, 175, 176, 177], "\u6c7a\u3057": 150, "\u6c7a\u307e\u308a": 243, "\u6c7a\u307e\u308b": 308, "\u6c7a\u3081": [52, 110, 111, 134, 156, 161], "\u6c7a\u3081\u308b": [11, 43, 44, 156], "\u6c7a\u5b9a": [43, 56, 156, 183, 196], "\u6c7a\u65ad": 56, "\u6ca2\u5c71": 41, "\u6cbf\u3046": 49, "\u6ce2\u62ec\u5f27": 125, "\u6ce8\u610f": [18, 39, 41, 42, 43, 44, 45, 48, 51, 53, 54, 91, 94, 111, 124, 125, 137, 138, 143, 153, 156, 161, 163, 175, 176, 177, 180, 194, 205, 224, 225, 237, 275, 281, 292, 301, 305, 306, 308, 313], "\u6ce8\u76ee": [111, 156, 306], "\u6ce8\u8a18": 48, "\u6d0b\u5fd7": [49, 51], "\u6d0b\u723e": 39, "\u6d3b\u304b\u3059": 156, "\u6d3b\u52d5": 56, "\u6d3b\u7528": [50, 56, 274, 296], "\u6d41\u3057": 12, "\u6d41\u308c": [3, 156, 298], "\u6d41\u91cf": 292, "\u6d45\u898b": 48, "\u6d69\u4e8c": 47, "\u6d6e\u52d5": [43, 45, 50, 95, 111, 305], "\u6d88\u3048": [18, 177, 254], "\u6d88\u305b": 177, "\u6d88\u53bb": [48, 53], "\u6d88\u8cbb": [42, 44, 99, 226], "\u6df1\u523b": [47, 49, 301], "\u6df7\u3056\u3063": 264, "\u6df7\u305c": [159, 305], "\u6df7\u305c\u308b": 91, "\u6df7\u4e71": 51, "\u6df7\u540c": [54, 156], "\u6df7\u5728": [41, 50, 53, 56], "\u6dfb\u4ed8": 47, "\u6e05\u5ddd": 51, "\u6e08\u307f": [10, 12, 24, 25, 28, 32, 39, 41, 42, 47, 48, 50, 51, 53, 136, 168, 180, 243, 250, 251, 252, 282, 296], "\u6e08\u3080": 50, "\u6e1b\u3063": [50, 51], "\u6e1b\u3089": [41, 42, 43, 44, 45, 47, 50, 51, 54, 81, 111, 149, 150, 186, 251, 254, 275, 314], "\u6e1b\u308b": [43, 240], "\u6e1b\u5c11": 41, "\u6e1b\u5c11\u5f8c": 81, "\u6e21\u3055": [11, 43, 47, 48, 52, 74, 81, 188], "\u6e21\u3057": [6, 11, 27, 49, 50, 153, 167, 173, 180, 224, 308, 312], "\u6e21\u3059": [40, 50, 225, 308], "\u6e21\u308b": 54, "\u6e2c\u4f4d": 0, "\u6e2c\u5730": [188, 189, 190, 282, 305, 315], "\u6e2c\u5730\u7cfb": 282, "\u6e2c\u5b9a": [44, 176], "\u6e2c\u7528": 36, "\u6e80\u3055": 48, "\u6e80\u3059": [48, 50], "\u6e80\u305f": [11, 41, 43, 44, 45, 51, 137, 163, 210, 224, 225, 237, 244, 315], "\u6e96\u5099": [17, 22, 41, 45, 71, 132, 134, 135, 156, 177, 197, 224, 225, 301, 304], "\u6e96\u62e0": [48, 177], "\u6ec5\u591a": 42, "\u6f0f\u308c": [0, 41, 45, 47, 51, 124, 223, 314], "\u6f14\u7b97": [31, 37, 41, 44, 45, 47, 48, 49, 50, 51, 53, 54, 195, 223, 225], "\u6f14\u7b97\u5b50": [11, 37, 41, 42, 43, 44, 47, 48, 50, 51, 52, 54, 110, 156, 201, 202], "\u6f22\u5b57": [201, 240, 264], "\u6fc1\u70b9": [53, 230, 231, 232, 233, 234, 235, 258, 259], "\u7027\u5185": 48, "\u706b\u66dc\u65e5": 212, "\u70b9\u3005": 56, "\u70b9\u4ee5\u4e0b": 305, "\u70b9\u6570": [43, 45, 50, 95, 111, 305], "\u70b9\u9593": [188, 239], "\u7121\u3044": [42, 45, 54, 123, 253, 272], "\u7121\u3057": [52, 53, 124, 133, 149, 244, 275], "\u7121\u52b9": [6, 18, 31, 40, 41, 42, 43, 44, 45, 47, 48, 50, 52, 53, 54, 74, 102, 134, 143, 149, 156, 175, 177, 180, 224, 228, 250], "\u7121\u540d": [43, 44], "\u7121\u8996": [37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 111, 121, 122, 124, 138, 153, 156, 168, 175, 201, 224, 225, 243, 254, 265, 266, 267, 268, 275, 278, 301], "\u7121\u9650": [37, 44, 47, 49, 50], "\u7121\u99c4": [0, 41, 45, 51], "\u7136\u8a00": 51, "\u7167\u5408": 43, "\u7169\u96d1": [43, 44], "\u7206\u767a": 56, "\u7247\u4eee": 54, "\u725b\u4e73": 45, "\u7269\u7406": [43, 52], "\u7279\u306b": [11, 41, 43], "\u7279\u5225": [31, 68, 100, 111, 125, 156, 168, 224, 244, 250], "\u7279\u5316": [17, 205, 206, 225], "\u7279\u5b9a": [0, 12, 31, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 71, 91, 110, 121, 132, 156, 223, 231, 232, 233, 234, 235, 274, 276, 310, 311], "\u7279\u5fb4": [22, 54, 57, 111, 244, 247, 278, 307, 310], "\u7279\u6027": 254, "\u7279\u6709": 91, "\u7279\u6b8a": [41, 48, 95, 191, 192, 193, 206, 231, 235, 274, 308], "\u72b6\u614b": [0, 10, 12, 28, 32, 34, 37, 41, 43, 45, 47, 49, 50, 51, 52, 53, 54, 58, 105, 108, 174, 175, 250, 301, 308], "\u72b6\u6cc1": [0, 22, 52, 156, 225, 301, 302], "\u72d9\u3063": 111, "\u72ec\u7acb": [133, 177], "\u72ec\u81ea": [0, 50, 52, 95, 174, 230, 298, 305], "\u72ed\u3081\u308b": [124, 149], "\u7372\u5f97": [42, 44, 50, 124, 126, 128], "\u7389\u91ce": [49, 51], "\u73fe\u308c": [142, 168], "\u73fe\u308c\u308b": 301, "\u73fe\u4ee3": [0, 56], "\u73fe\u5728": [0, 41, 43, 44, 45, 50, 53, 54, 56, 58, 60, 61, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 107, 110, 114, 123, 133, 156, 158, 161, 163, 164, 166, 174, 175, 176, 183, 196, 199, 205, 239, 308, 309, 311], "\u73fe\u5728groonga": [42, 43], "\u73fe\u5728\u5730": 311, "\u73fe\u5730": [42, 43], "\u73fe\u5b9f": 306, "\u73fe\u6642\u70b9": [197, 227], "\u73fe\u72b6": [41, 42, 43, 45, 53, 93, 96, 156], "\u73fe\u7528": 123, "\u73fe\u983b": 49, "\u7403\u9762": [188, 189], "\u7406\u7531": [0, 31, 47, 48, 50, 111, 156, 161, 250, 292, 296, 302], "\u7406\u89e3": [18, 137, 156, 163, 308], "\u74b0\u5883": [0, 3, 6, 23, 27, 31, 33, 39, 40, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 53, 54, 118, 149, 150, 156, 176, 177, 180, 243], "\u751f\u3058": [109, 113, 119, 130], "\u751f\u307e": 56, "\u751f\u534a": 56, "\u751f\u6210": [3, 6, 12, 22, 27, 31, 41, 44, 45, 52, 53, 57, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 89, 111, 112, 132, 134, 135, 141, 142, 155, 156, 197, 204, 262, 299, 310], "\u751f\u6210\u5143": 45, "\u7523\u691c": 56, "\u7528\u3044": [0, 14, 22, 36, 39, 51, 52, 61, 189, 244, 301, 304, 307, 308, 310, 311, 312], "\u7528\u3044\u308b": [0, 22, 23, 298, 305, 307, 308, 309, 315], "\u7528\u5909": 49, "\u7528\u610f": [11, 12, 27, 31, 41, 54, 156, 173, 176, 188, 250, 251, 252, 253, 260, 274, 281, 302], "\u7528\u8a9e\u96c6": [22, 57, 108], "\u7528\u9014": [0, 23, 24, 25, 28, 32, 33, 48, 49, 51, 91, 95, 111, 156, 244, 248, 254, 296], "\u7530\u592a": 45, "\u7530\u592a\u90ce": 45, "\u7530\u6cbc": 49, "\u7530\u8fba": 48, "\u7531\u6765": [180, 223], "\u753b\u9762": [12, 36, 49], "\u754c\u9688": 22, "\u7551\u30b1": [49, 50], "\u7551\u30f6": 49, "\u756a\u3081": [42, 45], "\u756a\u53f7": [42, 43, 48, 49, 89, 96, 155, 156, 174, 175, 176, 180, 208, 244, 275, 292, 296, 298, 312], "\u756a\u76ee": [41, 48, 52, 53, 96, 112, 124, 132, 134, 135, 138, 156, 168, 205, 208, 219, 224, 225, 244, 245, 286, 305, 308], "\u7570\u306a\u3063": [41, 50, 52], "\u7570\u306a\u308a": [49, 52, 191, 224], "\u7570\u306a\u308b": [22, 41, 43, 45, 47, 49, 52, 53, 176, 202, 245, 275, 300, 305], "\u7570\u4f53": 56, "\u7570\u5e38": [108, 176], "\u7570\u7a2e": 56, "\u7591\u4f3c": [44, 47, 48, 49, 89, 111, 125, 204], "\u7591\u554f": 310, "\u767a\u3057": 56, "\u767a\u5c55": 56, "\u767a\u63ee": 0, "\u767a\u751f": [0, 31, 36, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 101, 106, 143, 161, 301, 302], "\u767a\u8005": 56, "\u767a\u898b": [54, 123], "\u767a\u899a": [12, 42, 51], "\u767a\u97f3": [45, 56, 231, 235], "\u767b\u5834": [43, 111, 156], "\u767b\u9332": [0, 3, 11, 22, 32, 37, 38, 41, 42, 43, 44, 45, 47, 48, 50, 52, 58, 103, 108, 122, 125, 132, 133, 134, 135, 136, 137, 138, 139, 144, 145, 149, 151, 154, 156, 168, 169, 197, 198, 208, 209, 211, 212, 219, 221, 222, 224, 225, 226, 240, 243, 250, 251, 252, 254, 278, 305, 308, 315], "\u7686\u5ddd": [49, 51], "\u76e3\u8996": 43, "\u76ee\u304f\u3089\u3044": 161, "\u76ee\u4ee5\u964d": [41, 156], "\u76ee\u5b89": 12, "\u76ee\u7684": [31, 48, 168, 180, 310], "\u76ee\u8996": 95, "\u76f4\u3057": [50, 281], "\u76f4\u3059": [18, 152, 173], "\u76f4\u4e0b": 39, "\u76f4\u5217": 156, "\u76f4\u524d": 272, "\u76f4\u5f8c": [43, 44], "\u76f4\u611f": 313, "\u76f4\u63a5": [42, 54, 122, 156, 311], "\u76f4\u7a4d": [44, 45], "\u76f4\u7d14": 56, "\u76f4\u8fd1": 173, "\u76f4\u8fd1n": 173, "\u76f8\u5bfe": [39, 41, 111, 138, 156, 161], "\u76f8\u5bfe\u30d1\u30b9": [41, 49], "\u76f8\u5f53": [44, 45, 95, 306, 308, 315], "\u76f8\u624b": 10, "\u76f8\u95a2": 156, "\u7701\u30b9\u30da\u30fc\u30b9\u30d0\u30fc\u30b8\u30e7\u30f3": 50, "\u7701\u7565": [12, 44, 48, 107, 112, 126, 127, 128, 144, 145, 151, 152, 156, 175, 176, 186, 189, 192, 204, 208, 224, 225, 250, 254, 257, 276, 298, 305, 308, 312], "\u7701\u7565\u6642": [208, 209], "\u771f\u306a\u3089": 225, "\u771f\u507d": [43, 48, 50, 51, 186, 202, 203, 224, 225, 282, 305], "\u771f\u507d\u5024": [22, 304], "\u7740\u304f": 56, "\u7740\u76ee": [44, 111], "\u77e5\u3089": [41, 46, 262], "\u77e5\u308a": [46, 132, 155], "\u77e5\u308b": 306, "\u77e5\u8b58": 176, "\u77e9\u5f62": [0, 190, 315], "\u77ed\u3044": [37, 41, 42, 43, 50, 156, 311], "\u77ed\u3044\u65b9": 44, "\u77ed\u304f": [0, 43, 54, 226], "\u77ed\u6642\u9593": 0, "\u77ed\u671f\u9593": 149, "\u77ed\u7e2e": [6, 41, 42, 45, 50, 51], "\u7834\u58ca": [125, 173], "\u7834\u640d": [41, 42, 43, 45, 51, 52, 53, 54, 106, 123], "\u78ba\u4fdd": [43, 51, 53, 54, 68, 141, 303], "\u78ba\u5b9a": 159, "\u78ba\u5b9f": [52, 53, 111, 251], "\u78ba\u7387": 159, "\u78ba\u7acb": 56, "\u78ba\u8a8d": [3, 10, 27, 36, 42, 43, 44, 45, 49, 51, 54, 95, 100, 101, 102, 105, 106, 111, 117, 122, 123, 124, 137, 138, 141, 156, 163, 171, 173, 176, 177, 180, 183, 224, 244, 264, 302, 303, 305, 308], "\u78ba\u8a8d\u5f8c": 12, "\u78ef\u90e8": 48, "\u793a\u3055": 162, "\u793a\u3057": [12, 45, 59, 96, 100, 110, 111, 132, 138, 141, 155, 156, 188, 196, 239, 245, 262, 264, 295, 298, 301, 306, 308, 310, 312], "\u793a\u3059": [58, 74, 95, 100, 111, 121, 125, 126, 132, 134, 135, 137, 142, 149, 150, 155, 156, 162, 183, 184, 186, 188, 189, 190, 191, 192, 193, 194, 195, 196, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 228, 245, 246, 247, 286, 292, 305, 313], "\u793a\u3059\u4f8b": 111, "\u793a\u677f": 56, "\u793e\u4f1a": 56, "\u793e\u5185": 56, "\u793e\u5275": 56, "\u793e\u540d": 56, "\u798f\u5ca1": 56, "\u79cb\u8449": 315, "\u79d2\u3088\u308a": 38, "\u79d2\u5358": [43, 282, 305], "\u79d2\u5f62": 282, "\u79d2\u5f8c": 99, "\u79d2\u60c5": 39, "\u79d2\u6570": [95, 225, 282, 305, 311], "\u79d2\u672a": 44, "\u79d2\u8868": [225, 301, 305, 315], "\u79d2\u9593": 39, "\u79fb\u52d5": [16, 18, 39, 47, 110, 141], "\u79fb\u884c": [39, 46, 93, 156], "\u7a0b\u5ea6": [39, 48, 52, 308], "\u7a2e\u5225": 138, "\u7a2e\u985e": [1, 11, 22, 39, 41, 50, 51, 53, 58, 74, 89, 90, 91, 100, 110, 140, 141, 155, 156, 159, 161, 168, 175, 176, 180, 224, 225, 237, 245, 246, 247, 250, 251, 253, 254, 264, 298, 301, 304, 308, 312], "\u7a32\u7530": 48, "\u7a3c\u50cd": 56, "\u7a4d\u307f\u91cd\u306a\u3063": 48, "\u7a4d\u7528": 156, "\u7a4d\u7b97": [11, 156], "\u7a7a\u304d": [42, 53, 94, 108, 156, 303], "\u7a7a\u6587": [44, 45, 49, 51, 52, 111, 112, 115, 116, 117, 142, 155, 208, 209, 224, 282], "\u7a7a\u6e2f": 44, "\u7a7a\u767d": [0, 43, 44, 45, 50, 53, 54, 138, 156, 168, 175, 205, 224, 225, 253, 262, 264, 265, 266, 267, 268, 272, 273, 275, 279, 280, 301, 308], "\u7a7a\u9593": [91, 111, 141], "\u7a7a\u96c6\u5408": 156, "\u7a81\u7136": 48, "\u7acb\u3061\u3057": 156, "\u7acb\u3061\u4e0a\u304c\u3063": 176, "\u7acb\u3061\u4e0a\u3052": 176, "\u7acb\u3064": [173, 244], "\u7acb\u3064\u304b": 274, "\u7acb\u3066": [53, 56], "\u7acb\u5834": 3, "\u7acb\u5ddd": 51, "\u7adc\u4e4b": 51, "\u7aef\u672b": 0, "\u7af9\u4e2d": 56, "\u7b26\u53f7": [42, 50, 100, 111, 282, 298, 305], "\u7b2c\u4e00": 41, "\u7b49\u3057\u3044": [11, 156, 195, 224, 225], "\u7b49\u3057\u304f": [11, 224, 225], "\u7b49\u4fa1": [37, 45, 49, 50, 51, 54, 156, 202, 219, 223], "\u7b49\u5024": 37, "\u7b87\u6240": [44, 48, 111, 205, 206], "\u7b97\u51fa": [41, 47, 49], "\u7b97\u8853": [41, 44, 48], "\u7ba1\u7406": [12, 17, 18, 22, 27, 31, 36, 39, 40, 41, 42, 45, 47, 49, 52, 56, 57, 58, 98, 108, 118, 141, 153, 171, 173, 175, 178, 243, 254, 299, 304], "\u7bc0\u7d04": 52, "\u7bc4\u56f2": [0, 18, 22, 45, 47, 48, 49, 50, 51, 54, 89, 93, 111, 133, 137, 156, 183, 189, 190, 239, 244, 254, 301, 304, 305, 311], "\u7bc4\u56f2\u5916": 49, "\u7be0\u7530": [43, 44, 49, 50, 51], "\u7c21\u5358": [12, 31, 42, 45, 49, 54, 112, 114, 132, 138, 139, 158, 164, 165, 168, 169, 170, 177, 186, 188, 194, 198, 201, 202, 208, 209, 211, 212, 219, 224, 225, 228, 245, 247, 291, 292, 301, 308, 312], "\u7c21\u6613": [49, 188], "\u7c21\u7565": [48, 196], "\u7cbe\u5ea6": [41, 50, 51, 56, 111, 225], "\u7cfb\u5ea7": [189, 190], "\u7d00\u5143": 50, "\u7d10\u4ed8": 197, "\u7d10\u4ed8\u3051": 45, "\u7d14\u56fd": 56, "\u7d14\u7c8b": 264, "\u7d1b\u3089\u308f\u3057\u3044": 244, "\u7d20\u6280": 56, "\u7d20\u65b9": 0, "\u7d20\u65e9": 52, "\u7d20\u6734": 306, "\u7d20\u89e3": [0, 31, 156, 225, 274], "\u7d20\u9593": 111, "\u7d22\u5f15": [11, 22, 36, 37, 49, 52, 87, 111, 299, 301, 305, 308], "\u7d22\u6642": 37, "\u7d22\u7528": [22, 304], "\u7d2f\u7a4d\u548c": [132, 134, 135, 156], "\u7d30\u304b\u3044": 56, "\u7d30\u5206": [274, 305], "\u7d39\u4ecb": [3, 12, 18, 43, 44, 45, 49, 132, 134, 135, 156, 257, 311], "\u7d42\u3048": 56, "\u7d42\u308f\u3063": [50, 84, 156, 173], "\u7d42\u308f\u308b": [132, 149, 156, 224, 225, 226], "\u7d42\u4e86": [12, 37, 41, 43, 47, 48, 49, 50, 53, 84, 93, 124, 134, 147, 153, 156, 157, 171, 173, 175, 176, 188, 191, 192, 205, 206], "\u7d42\u4e86\u30bf\u30b0": [191, 192], "\u7d42\u7aef": [47, 68, 208, 209], "\u7d44\u307f\u5408\u308f": [0, 11, 42, 45, 111, 156, 161, 180, 183, 191, 201, 202, 231, 235, 257, 258, 259], "\u7d44\u307f\u5408\u308f\u305b": [0, 11, 27, 42, 43, 44, 45, 49, 51, 111, 156, 231, 232, 233, 234, 235, 264, 274, 275, 301, 308], "\u7d44\u307f\u5408\u308f\u305b\u308b": 201, "\u7d44\u307f\u8fbc\u307f": [22, 43, 44, 50, 53, 57, 92, 111, 122, 138, 141, 142, 168, 176, 177, 182, 188, 243, 283], "\u7d44\u307f\u8fbc\u3080": [0, 11, 175, 177], "\u7d44\u307f\u8fbc\u3093": [0, 49, 50], "\u7d44\u5408": 202, "\u7d44\u8fbc": [74, 108, 109, 113, 119, 120, 122, 124, 130, 147, 162, 185, 189, 190, 199, 204, 282], "\u7d44\u8fbc\u578b": [22, 57], "\u7d4c\u55b6": 56, "\u7d4c\u5ea6": [22, 225, 282, 305, 311, 315], "\u7d4c\u7531": [12, 29, 37, 42, 47, 49, 54, 108, 109, 113, 119, 120, 122, 130, 147, 162, 176, 180, 253], "\u7d4c\u7def": [56, 282, 305, 315], "\u7d4c\u7def\u5ea6": [22, 304, 315], "\u7d4c\u904e": [39, 93, 95, 158, 180, 225, 282, 305, 311], "\u7d50\u3073\u3064\u3044": [9, 310], "\u7d50\u3073\u3064\u304f": 9, "\u7d50\u5408": [11, 43, 203, 223, 224], "\u7d50\u5408\u5f0f": 47, "\u7d50\u57ce": [49, 51], "\u7d50\u679c": [0, 11, 12, 14, 21, 22, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 89, 94, 95, 97, 107, 110, 122, 123, 125, 132, 134, 135, 138, 153, 154, 156, 173, 186, 195, 196, 202, 203, 205, 210, 223, 225, 230, 240, 243, 244, 245, 250, 251, 253, 254, 262, 265, 266, 267, 268, 274, 276, 292, 299, 300, 304, 310, 311, 314, 315], "\u7d5e\u308a\u8fbc\u307e": [42, 53, 197], "\u7d5e\u308a\u8fbc\u307f": [0, 53, 195, 308], "\u7d5e\u308a\u8fbc\u3080": [49, 132, 134, 135, 156, 183, 196, 252], "\u7d5e\u308a\u8fbc\u3081": [42, 43], "\u7d5e\u308a\u8fbc\u3081\u308b": [43, 186], "\u7d5e\u308a\u8fbc\u3093": [0, 43, 48, 183, 196], "\u7d5e\u8fbc": [22, 304], "\u7d71\u5408": [0, 47, 48, 227], "\u7d71\u8a08": [52, 54], "\u7d76\u5bfe": [41, 52, 56, 111, 144, 145, 151, 156, 161, 198], "\u7d99\u627f": 48, "\u7d99\u7d9a": [21, 47, 158, 175, 278], "\u7d9a\u3044": [56, 301], "\u7d9a\u304d": 56, "\u7d9a\u3051": [43, 56, 99, 173, 176], "\u7d9a\u3051\u308b": [46, 156, 173, 274], "\u7d9a\u6570": [94, 156], "\u7dad\u6301": [0, 43, 44, 45, 51, 149, 246, 247, 292], "\u7db2\u7f85": 177, "\u7dbf\u3005": 56, "\u7dca\u6025": [175, 228], "\u7dcf\u548c": 156, "\u7dcf\u6570": 134, "\u7dcf\u91cf": 281, "\u7de0\u5f79": 56, "\u7de8\u96c6": [3, 14, 31, 36, 43, 44, 47, 51, 156, 177, 185, 225, 243], "\u7de9\u3044": 53, "\u7de9\u304f": 184, "\u7de9\u3084\u304b": 50, "\u7de9\u548c": 281, "\u7def\u5ea6": [22, 225, 282, 305, 311, 315], "\u7e1b\u308a": 56, "\u7e26\u68d2": [111, 161], "\u7e2e\u6a5f": 111, "\u7e41\u6804": 56, "\u7e4b\u3050": 56, "\u7e4b\u3052": 49, "\u7e4b\u3052\u308b": 10, "\u7e70\u308a\u8fd4\u3057": [17, 41, 43, 44, 52, 54, 111, 176, 225], "\u7e70\u308a\u8fd4\u3057\u6570": 176, "\u7e70\u308a\u8fd4\u3059": [37, 42], "\u7f6e\u3044": [12, 49], "\u7f6e\u304b": [31, 177, 178, 243], "\u7f6e\u304d": [37, 45, 50, 53, 58, 111, 175, 244, 314], "\u7f6e\u304d\u63db\u3048": [17, 49, 175, 224, 248], "\u7f6e\u304f": [31, 41, 50, 281], "\u7f6e\u304f\u4f8b": 31, "\u7f6e\u63db": [51, 111, 156, 202, 225, 314], "\u7f72\u540d": 47, "\u7fa9\u8a9e": [43, 44, 243], "\u7ffb\u8a33": [3, 43, 44, 49, 54], "\u8003\u3048": [0, 10, 43, 44, 56, 94, 156, 163, 225, 281, 292, 306, 308], "\u8003\u3048\u308b": [43, 44, 245, 246, 247], "\u8003\u3048\u65b9": [49, 56], "\u8003\u308b": 244, "\u8003\u616e": [42, 43, 247, 301, 314], "\u8005\u9593": 56, "\u805e\u3044": 56, "\u8077\u5834": 198, "\u80a5\u5927": [43, 49, 52], "\u80cc\u666f": [191, 193], "\u8106\u5f31": 54, "\u811a\u6ce8": [113, 188, 189, 190, 308], "\u81a8\u5927": [0, 54], "\u81ea\u4f53": [49, 111, 224], "\u81ea\u5206": [10, 12, 17, 18, 23, 41, 111, 137, 163, 176, 177, 240], "\u81ea\u52d5": [12, 17, 31, 39, 41, 42, 43, 45, 47, 49, 50, 52, 54, 60, 62, 63, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 82, 83, 87, 89, 111, 112, 124, 141, 142, 144, 145, 149, 150, 151, 156, 173, 176, 177, 186, 197, 205, 224, 225, 254, 295, 307, 308, 313], "\u81ea\u52d5\u5207\u308a": 49, "\u81ea\u52d5\u751f\u6210": [45, 87, 90, 91, 141], "\u81ea\u52d5\u7684": [111, 132, 134, 135, 156, 176], "\u81ea\u5df1": 311, "\u81ea\u5df1\u7d39": 311, "\u81ea\u7136": 52, "\u81ea\u7531": [0, 11, 89, 228, 298], "\u81ea\u793e": 56, "\u81ea\u8eab": [31, 39, 41, 43, 47, 50, 168, 175, 243], "\u81f3\u308b": 305, "\u81f4\u547d": 47, "\u8208\u5473": [0, 50, 244], "\u821e\u3044": [52, 156], "\u826f\u3044": [10, 43, 111, 225, 302, 310], "\u826f\u3044\u4f8b": 10, "\u826f\u304f": [41, 43, 50, 310], "\u826f\u4e8c": 49, "\u82b1\u5b50": 307, "\u82e6\u624b": 0, "\u82f1\u8a9e": [2, 12, 17, 18, 19, 39, 49, 51, 52, 53, 54, 156, 205, 260, 264], "\u83ab\u5927": 253, "\u840e\u7e2e": 10, "\u843d\u3061": [37, 48, 51], "\u843d\u3061\u308b": [37, 39, 41, 48], "\u843d\u3068": 111, "\u8457\u4f5c": 49, "\u84c4\u7a4d": 56, "\u884c\u3044": [11, 12, 18, 43, 44, 45, 50, 51, 56, 156, 174, 175, 176, 202, 299, 301, 307, 308, 310, 311], "\u884c\u3046": [3, 10, 14, 37, 43, 45, 47, 49, 52, 53, 156, 161, 174, 188, 202, 225, 255, 296, 299, 307, 310, 311, 313, 315], "\u884c\u3048": [14, 49, 202, 224, 308], "\u884c\u3048\u308b": [47, 307], "\u884c\u304d": 56, "\u884c\u304f": 56, "\u884c\u3063": [14, 49, 52, 53, 306, 315], "\u884c\u306a\u308f": 47, "\u884c\u308f": [43, 53, 56, 156, 174, 176, 307], "\u884c\u52d5": 56, "\u884c\u6307\u5411": 0, "\u884c\u6570": [39, 53, 175, 180], "\u884c\u6642": 31, "\u884c\u672b": 244, "\u884c\u756a": 39, "\u884c\u76ee": 176, "\u884c\u982d": 244, "\u885d\u7a81": [53, 125], "\u8868\u3057": [11, 89, 93, 95, 100, 134, 142, 156, 239, 244, 247, 275, 282, 302, 308], "\u8868\u3059": [11, 43, 53, 129, 143, 168, 188, 204, 239, 244, 305, 307], "\u8868\u3059\u578b": 282, "\u8868\u5185": 156, "\u8868\u53d6": 56, "\u8868\u73fe": [3, 22, 41, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 68, 91, 95, 108, 111, 202, 205, 212, 223, 272, 276, 277, 282, 305, 310], "\u8868\u7528": 161, "\u8868\u793a": [0, 22, 31, 36, 37, 39, 40, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 74, 93, 108, 111, 132, 134, 135, 156, 158, 162, 175, 176, 198, 201, 228, 241, 298, 301, 304, 305, 307, 310, 315], "\u8868\u8a08": 243, "\u8868\u8a18": [17, 39, 43, 47, 48, 51, 53, 91, 188, 225, 274, 275, 282, 305, 314, 315], "\u88d5\u4e5f": [49, 51], "\u88dc\u3046": 0, "\u88dc\u5b8c": [22, 37, 48, 51, 57, 144, 145, 151, 159, 180, 201, 240, 249, 253], "\u88dc\u5b8c\u7528": 180, "\u88dc\u5b8c\u8a9e": 250, "\u88dc\u6b63": [22, 57, 159, 249], "\u88dc\u8db3": [53, 54, 177], "\u88fd\u4f5c\u6240": 54, "\u88fd\u54c1": 51, "\u88fd\u691c": 56, "\u8907\u6570": [0, 10, 11, 22, 27, 31, 36, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 58, 61, 68, 74, 90, 91, 96, 98, 111, 121, 132, 134, 135, 138, 149, 152, 153, 156, 159, 161, 162, 165, 168, 175, 176, 177, 178, 180, 186, 191, 192, 195, 196, 202, 203, 224, 225, 228, 231, 232, 233, 234, 235, 238, 244, 245, 248, 250, 264, 272, 274, 275, 276, 286, 291, 299, 301, 304, 305, 307, 308, 309, 311], "\u8907\u96d1": [11, 42, 43, 47, 48, 50, 156, 225, 244, 272], "\u897f\u66a6": 225, "\u897f\u6751": 56, "\u897f\u6b27\u8a9e": 56, "\u8981\u3089": 56, "\u8981\u4ef6": 12, "\u8981\u6c42": [10, 41, 42, 44, 48, 51, 53, 134, 210, 295, 308], "\u8981\u7d04": 12, "\u8981\u7d20": [11, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 54, 56, 91, 95, 96, 100, 111, 112, 142, 155, 156, 176, 205, 206, 219, 308], "\u8981\u7d20\u6570": 156, "\u8987\u6a29": 56, "\u898b\u3048\u308b": 6, "\u898b\u305a": 44, "\u898b\u305b": [156, 248], "\u898b\u305f\u3044": 45, "\u898b\u3064": [37, 47, 50, 53, 159], "\u898b\u3064\u304b\u3063": [134, 156, 219, 252, 262, 264, 302], "\u898b\u3064\u304b\u308a": [52, 156, 201, 262, 264, 274, 302], "\u898b\u3064\u304b\u308b": 47, "\u898b\u3064\u304b\u308c": 10, "\u898b\u3064\u3051": [10, 36, 41, 47, 54, 134, 156, 250, 274, 275], "\u898b\u3064\u3051\u308b": [42, 43, 56, 114, 149, 156, 164, 177, 201, 229, 240, 262, 264], "\u898b\u3066": [56, 95, 110, 111, 132, 134, 135, 141, 150, 156, 161, 177, 195, 202, 203, 219, 250, 283], "\u898b\u3084\u3059\u304f": 54, "\u898b\u308b": [54, 100, 110, 123, 156, 302], "\u898b\u4ed8": 48, "\u898b\u4ed8\u3051": 48, "\u898b\u76f4\u3057": 49, "\u898b\u7a4d": 50, "\u898b\u7a4d\u308b": [51, 303], "\u898b\u8fbc\u3081": [49, 111], "\u898b\u8fbc\u3081\u308b": 111, "\u898f\u5247": [47, 132, 134, 135], "\u8996\u899a": [0, 155], "\u899a\u3048": 56, "\u899a\u3048\u308b": 18, "\u89a7\u4e0b": 14, "\u89aa\u5207": 37, "\u89b3\u70b9": [49, 196, 225, 303], "\u89d2\u62ec\u5f27": 125, "\u89e3\u50cf": 37, "\u89e3\u653e": [41, 42, 43, 49, 50, 51, 52, 61, 84, 118, 126, 128, 158], "\u89e3\u6790": [3, 22, 39, 42, 47, 52, 156, 177, 300], "\u89e3\u6c7a": [10, 22, 39, 41, 42, 47, 50, 51, 52, 57, 108, 111, 143, 161, 245, 246, 247, 248, 264, 303], "\u89e3\u6c7a\u7b56": 10, "\u89e3\u6d88": [36, 43, 48, 50, 51, 91, 120], "\u89e3\u8aac": 54, "\u89e3\u91c8": [11, 37, 42, 122, 224, 272], "\u89e3\u9664": [36, 42, 52, 109, 125, 127, 144, 145, 175], "\u89e6\u308b": 50, "\u89e6\u308c": 308, "\u89e6\u308c\u308b": 264, "\u8a00\u3044": [50, 87, 163, 210], "\u8a00\u3046": [91, 111, 133, 224, 247, 250], "\u8a00\u3048": [224, 278, 301], "\u8a00\u308f": 56, "\u8a00\u53ca": [210, 311], "\u8a00\u8449": 45, "\u8a00\u8a9e": [1, 3, 11, 18, 20, 21, 22, 37, 41, 45, 48, 52, 53, 57, 156, 175, 197, 264, 274], "\u8a00\u8a9e\u540d": 17, "\u8a02\u6b63": 243, "\u8a08\u6e2c": [14, 36, 39], "\u8a08\u753b": [53, 56], "\u8a08\u7b97": [0, 36, 41, 42, 44, 45, 47, 48, 49, 52, 53, 111, 132, 134, 135, 154, 156, 158, 180, 185, 188, 189, 197, 198, 224, 225, 239, 245, 246, 247, 250, 251, 253, 281, 282, 286, 315], "\u8a18\u3057": 56, "\u8a18\u4e8b": [226, 310], "\u8a18\u53f7": [37, 42, 43, 44, 45, 53, 175, 231, 232, 233, 234, 235, 258, 259, 264, 265, 266, 267, 268, 269, 270, 271, 274, 275, 299, 301, 308], "\u8a18\u6cd5": [53, 225, 310], "\u8a18\u8f09": [27, 43, 47, 51, 94, 111, 302], "\u8a18\u8ff0": [11, 41, 42, 45, 50, 51, 175, 176, 308, 310, 311], "\u8a18\u9332": [0, 42, 43, 45, 47, 50, 51, 52, 54, 89, 111, 124, 144, 151, 156, 166, 228], "\u8a2d\u5b9a": [12, 14, 20, 22, 24, 25, 27, 28, 30, 31, 32, 36, 37, 38, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 59, 61, 74, 81, 89, 91, 102, 104, 105, 107, 111, 115, 116, 117, 124, 125, 129, 130, 133, 134, 156, 157, 158, 167, 175, 179, 183, 184, 196, 202, 237, 243, 244, 250, 275, 281, 291, 296, 303, 310, 315], "\u8a2d\u5b9a\u5024": [36, 303], "\u8a2d\u5b9a\u6e08\u307f": 296, "\u8a2d\u6a02": 39, "\u8a2d\u7acb": 56, "\u8a2d\u8a08": [45, 156, 296], "\u8a31\u5bb9": [42, 44, 53, 224, 225], "\u8a3a\u65ad": 51, "\u8a3c\u5de6": 56, "\u8a55\u4fa1": [11, 41, 42, 43, 44, 45, 48, 50, 52, 53, 111, 125, 154, 155, 156, 186, 210, 224, 225, 244], "\u8a66\u3057": [10, 50, 175], "\u8a66\u3059": [6, 175, 262, 291], "\u8a66\u3059\u4f8b": 262, "\u8a66\u884c": 0, "\u8a70\u3081": 74, "\u8a71\u3057": 3, "\u8a71\u984c": 2, "\u8a72\u5f53": [49, 61, 111, 140, 183, 191, 192, 193, 195, 196, 205, 206, 302, 310], "\u8a72\u5f53\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 50, "\u8a72\u5f53\u884c": 52, "\u8a73\u3057\u3044": 156, "\u8a73\u3057\u304f": [0, 305, 308], "\u8a73\u7d30": [1, 14, 17, 24, 25, 27, 28, 30, 31, 32, 41, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 61, 74, 87, 90, 91, 95, 96, 98, 110, 111, 118, 124, 132, 134, 135, 137, 141, 142, 144, 145, 149, 150, 151, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 168, 173, 176, 177, 202, 203, 224, 225, 228, 240, 243, 244, 260, 274, 281, 282, 283, 296, 301, 306, 308, 315], "\u8a87\u308b": 56, "\u8a8d\u8a3c": [177, 291, 312], "\u8a8d\u8b58": [10, 42], "\u8a95\u751f": 22, "\u8a9e\u3059": 44, "\u8a9e\u4ee5": [156, 225, 274], "\u8a9e\u5165": 240, "\u8a9e\u53e5": [48, 50, 52, 53, 307], "\u8a9e\u570f": 56, "\u8a9e\u5bfe": 56, "\u8a9e\u5c3e": 56, "\u8a9e\u5c55": 45, "\u8a9e\u5e79": [42, 260], "\u8a9e\u5f59": [22, 34, 44, 50, 51, 53, 124, 149, 156, 161, 163, 165, 229, 237, 244, 254, 261, 299, 304, 310], "\u8a9e\u5f59\u8868": [53, 111, 165, 244, 308, 310], "\u8a9e\u6271": 299, "\u8a9e\u691c": 156, "\u8a9e\u7248": 12, "\u8a9e\u7528": [260, 274], "\u8a9e\u8a33": [18, 53], "\u8a9e\u8a71": 18, "\u8aa4\u3063": [12, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 123], "\u8aa4\u308a": [41, 47, 48, 49, 50, 51, 52, 53, 208], "\u8aa4\u52d5\u4f5c": 50, "\u8aa4\u5b57": [37, 39, 44, 47, 48, 50, 51, 54, 243], "\u8aa4\u5dee": [39, 188, 189], "\u8aa4\u8a18": 42, "\u8aa4\u8a8d": 42, "\u8aac\u660e": [3, 5, 6, 7, 8, 11, 12, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 47, 48, 49, 50, 51, 53, 54, 57, 58, 90, 91, 92, 94, 95, 96, 100, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 146, 147, 149, 150, 152, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 172, 173, 175, 177, 178, 180, 182, 193, 194, 202, 224, 225, 228, 237, 238, 243, 244, 245, 246, 247, 248, 249, 250, 251, 253, 264, 281, 283, 298, 299, 301, 302, 305, 306, 308], "\u8aad\u307f": [0, 12, 36, 53, 97, 201, 223, 231, 232, 233, 234, 235, 249, 274], "\u8aad\u307f\u3084\u3059\u3044": 40, "\u8aad\u307f\u51fa\u3057": 0, "\u8aad\u307f\u53d6\u308a": [114, 164, 175], "\u8aad\u307f\u8fbc\u307e\u305a": 41, "\u8aad\u307f\u8fbc\u307f": [39, 48, 49, 53, 144, 151, 243, 308], "\u8aad\u307f\u8fbc\u3080": [36, 253], "\u8aad\u307f\u8fbc\u3081": 53, "\u8aad\u307f\u8fbc\u3081\u308b": 122, "\u8aad\u307f\u8fbc\u3093": [125, 298], "\u8aad\u307f\u98db\u3070": 308, "\u8aad\u3081": 47, "\u8aad\u3093": [3, 21], "\u8ab0\u304b": 3, "\u8ab0\u304c": 311, "\u8ab0\u3067": 49, "\u8ab2\u7a0b": 48, "\u8ab2\u984c": [3, 22, 56], "\u8abf\u3079": [43, 189, 190, 306], "\u8abf\u3079\u308b": [43, 48, 74, 165, 189, 190, 303], "\u8abf\u6574": [41, 42, 44, 51, 52, 53, 111, 156, 223, 262, 301, 303], "\u8abf\u67fb": [50, 74, 141, 302], "\u8ad6\u7406": [0, 11, 34, 42, 43, 44, 47, 50, 51, 108, 132, 134, 135, 136, 156, 195, 202, 248], "\u8ad6\u7406\u548c": [11, 156, 202, 225, 262], "\u8ad6\u7406\u5dee": 202, "\u8ad6\u7406\u7a4d": 202, "\u8af8\u6761": 34, "\u8b58\u5225": 180, "\u8b66\u544a": [6, 37, 40, 42, 43, 47, 48, 49, 52, 53, 54, 93, 111, 156, 175, 228], "\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8": 43, "\u8b70\u8ad6": 19, "\u8ca0\u3051": 56, "\u8ca0\u62c5": 10, "\u8ca0\u6570": 47, "\u8ca0\u8377": [37, 177], "\u8ca2\u732e": [18, 48], "\u8cb4\u6587": 56, "\u8cc7\u6599": 233, "\u8cc7\u672c": 56, "\u8ce2\u304f": 118, "\u8d64\u9053": 188, "\u8d70\u67fb": 49, "\u8d77\u304d": 53, "\u8d77\u3053\u3057": 44, "\u8d77\u3053\u3063": [44, 54, 114, 164], "\u8d77\u3053\u308a": [42, 54, 314], "\u8d77\u52d5": [33, 37, 42, 45, 47, 48, 50, 93, 105, 158, 175, 176, 178, 241, 292, 295, 308], "\u8d77\u52d5\u6642": 180, "\u8d77\u6e90": [22, 305], "\u8d77\u70b9": 41, "\u8d85\u3048": [42, 43, 48, 51, 54, 104, 301], "\u8d85\u3048\u308b": [41, 47, 52, 54, 254, 303, 305], "\u8d85\u904e": [48, 141, 303], "\u8d8a\u3048": [49, 50, 301], "\u8d8a\u3048\u308b": [49, 50, 51, 301], "\u8db3\u3057": 225, "\u8db3\u308a": [39, 243], "\u8ddd\u96e2": [0, 36, 41, 43, 44, 45, 47, 51, 156, 185, 188, 189, 198, 224, 225, 239, 315], "\u8ee2\u7f6e": [22, 41, 43, 47, 50, 51, 87, 111, 225, 307, 308], "\u8ee2\u9001": 42, "\u8efd\u3044": [114, 140, 142, 164], "\u8efd\u5fae": [175, 177], "\u8f09\u305b\u308b": 12, "\u8f9e\u63a2": 43, "\u8f9e\u66f8": [30, 36, 37, 47, 48, 49, 50, 51, 156, 274, 301], "\u8f9e\u691c": [39, 225, 254], "\u8f9e\u7121": 53, "\u8fbc\u307f": 243, "\u8fbf\u308b": 12, "\u8fce\u3048": 56, "\u8fd1\u3044": [41, 44, 45, 51, 54, 141, 174, 198, 225, 248], "\u8fd1\u3044\u9806": 239, "\u8fd1\u304f": [0, 239], "\u8fd1\u4f3c": [39, 47, 188, 189], "\u8fd1\u508d": [41, 42, 43, 44, 45, 47, 49, 51, 202, 223], "\u8fd4\u3055": [41, 42, 43, 44, 47, 49, 51, 52, 53, 54, 93, 108, 159, 208, 209], "\u8fd4\u3057": [11, 41, 42, 43, 44, 45, 48, 49, 50, 51, 52, 54, 81, 85, 107, 111, 112, 114, 115, 116, 117, 121, 123, 125, 126, 127, 128, 129, 131, 132, 133, 134, 136, 139, 140, 141, 142, 143, 152, 153, 154, 155, 156, 158, 159, 165, 167, 168, 169, 170, 183, 184, 185, 186, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 210, 211, 212, 219, 221, 225, 246, 247, 250, 251, 252, 253, 292, 308, 311, 314, 315], "\u8fd4\u3059": [36, 37, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 68, 81, 109, 113, 118, 119, 120, 123, 130, 132, 134, 135, 142, 156, 159, 167, 175, 176, 180, 183, 197, 198, 199, 225, 292, 298, 315], "\u8fd4\u3059\u304b": 159, "\u8fd4\u3059\u4f8b": 221, "\u8fd4\u3059\u65b0\u3057\u3044": [50, 51], "\u8fd4\u305b": 195, "\u8fd4\u3063": [49, 50, 167, 224, 225], "\u8fd4\u3089": 41, "\u8fd4\u308a": [41, 111, 132, 134, 135, 156, 163, 167, 306, 315], "\u8fd4\u308a\u5024": [48, 49, 50, 51], "\u8fd4\u308b": [37, 50, 51], "\u8fd4\u4fe1": [10, 310, 311], "\u8fd4\u4fe1\u5143": 311, "\u8fd4\u4fe1\u5148": 311, "\u8fd4\u5024": 108, "\u8fd4\u5374": [43, 45, 51, 162, 208, 209, 308], "\u8ff0\u3079": 308, "\u8ff0\u8a9e": 50, "\u8ffd\u3046": 302, "\u8ffd\u3063": 302, "\u8ffd\u52a0": [0, 3, 11, 12, 22, 24, 25, 27, 28, 31, 32, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 57, 58, 68, 74, 89, 96, 98, 99, 111, 119, 124, 125, 142, 156, 168, 175, 177, 201, 224, 225, 226, 232, 233, 234, 235, 243, 248, 252, 254, 255, 260, 261, 274, 296, 298, 301, 305, 306, 307, 308, 310, 313], "\u8ffd\u8a18": [12, 47, 50, 54], "\u8ffd\u8de1": [3, 22], "\u9000\u907f": 118, "\u9001\u3063": [3, 16, 17, 18, 19], "\u9001\u3089": 45, "\u9001\u308a": [12, 18, 178, 298], "\u9001\u308a\u65b9": [3, 18, 22, 31, 312], "\u9001\u308b": [3, 17, 19, 45, 178, 292, 298], "\u9001\u4fe1": [41, 42, 43, 48, 53, 54, 108, 109, 113, 119, 120, 122, 130, 147, 153, 162, 176, 180], "\u9006\u306b": [307, 311], "\u9006\u5f15": 307, "\u9006\u5f15\u304d": [22, 304, 311], "\u9006\u6587\u66f8\u51fa": 49, "\u9006\u9806": 308, "\u9010\u6b21": [0, 49, 94, 244, 277], "\u9014\u4e2d": [44, 47, 49, 175, 250, 251, 298], "\u901a\u3058": [18, 53], "\u901a\u308a": [6, 12, 21, 31, 32, 41, 42, 43, 44, 45, 53, 58, 64, 74, 96, 110, 111, 112, 121, 122, 123, 125, 132, 133, 134, 135, 136, 138, 142, 149, 150, 155, 156, 157, 159, 161, 162, 168, 173, 175, 177, 178, 180, 183, 184, 186, 188, 189, 191, 192, 193, 194, 195, 196, 198, 201, 202, 203, 205, 206, 208, 209, 210, 211, 212, 219, 221, 224, 225, 228, 231, 232, 233, 234, 235, 237, 239, 240, 244, 245, 246, 247, 253, 258, 259, 260, 264, 266, 267, 268, 276, 278, 281, 286, 301, 310], "\u901a\u4fe1": [3, 4, 22, 174, 176, 177, 178, 180], "\u901a\u5e38": [41, 42, 43, 44, 45, 47, 49, 50, 52, 54, 58, 81, 89, 95, 111, 112, 118, 123, 124, 132, 133, 134, 135, 137, 141, 142, 143, 155, 156, 158, 168, 173, 175, 177, 180, 186, 206, 224, 230, 236, 240, 243, 244, 272, 281, 282, 305, 308], "\u901a\u77e5": [12, 153, 175, 228], "\u901f\u3044": [41, 44, 49, 50, 111, 134, 156, 183, 196, 254], "\u901f\u304f": [31, 42, 50, 52, 111, 161, 307], "\u901f\u3084\u304b": 93, "\u901f\u5ea6": [39, 43, 45, 48, 50, 52, 54, 111, 176, 254, 307], "\u9023\u4f53\u5316": 274, "\u9023\u643a": 0, "\u9023\u7d50": [41, 47, 48, 50, 310], "\u9023\u7d61": 17, "\u9023\u7d9a": [48, 50, 111, 168, 251, 265, 266, 267, 268, 275, 299, 301], "\u9032\u3081": [3, 4, 22, 51], "\u9032\u3093": 0, "\u9032\u6357": 54, "\u9032\u6570": [108, 225], "\u9045\u3044": [43, 54, 111, 188, 245, 254], "\u9045\u304f": [41, 42, 43, 44, 50, 51, 54, 94, 111, 156, 175, 177, 189, 224, 225, 244, 247, 306], "\u9045\u3089": 51, "\u904b\u7528": [0, 52], "\u904e\u53bb": [12, 51], "\u904e\u7a0b": [52, 54, 89], "\u9054\u3057": 281, "\u9054\u3059\u308b": 34, "\u9055\u3044": [43, 45, 53, 111, 134, 141, 156, 161, 188, 195, 224, 244, 265, 266, 267, 268, 269, 270, 271, 273, 279, 280, 292, 305, 308, 310, 315], "\u9055\u3046": [18, 37, 41, 111, 135, 180, 224, 225], "\u9055\u3063": 250, "\u9069\u3057": [0, 90, 111, 161, 226, 245, 246], "\u9069\u5207": [0, 37, 41, 43, 44, 49, 50, 51, 52, 53, 54, 56, 111, 125, 132, 135, 149, 156, 161, 168, 176, 178, 205, 244, 247, 262, 264, 272, 273, 308], "\u9069\u5408": [262, 264, 274, 301, 308], "\u9069\u5408\u7387": 262, "\u9069\u5b9c": [12, 49], "\u9069\u7528": [42, 43, 44, 45, 49, 51, 52, 53, 54, 68, 111, 132, 134, 135, 156, 167, 225, 281, 308], "\u9078\u3070": [56, 125], "\u9078\u3073": [34, 252], "\u9078\u3076": [0, 125, 156, 177], "\u9078\u3079": 156, "\u9078\u3093": [51, 97, 125, 161], "\u9078\u629e": [0, 12, 41, 49, 50, 51, 68, 134, 156, 180, 188, 196, 201], "\u907f\u3051\u308b": [41, 43, 149, 156], "\u90e8\u5206": [11, 14, 31, 42, 43, 49, 50, 51, 52, 53, 54, 56, 95, 156, 180, 195, 197, 205, 208, 209, 224, 225, 237, 301, 311], "\u90fd\u6c11": [299, 301], "\u914d\u4e0b": [18, 41, 178], "\u914d\u5217": [11, 37, 39, 41, 42, 45, 47, 49, 51, 53, 54, 91, 95, 96, 108, 112, 134, 138, 139, 141, 142, 155, 156, 161, 162, 168, 169, 205, 206, 224, 254, 299, 305, 307, 308, 311], "\u914d\u5e03": [23, 24, 28, 29, 32, 33, 45, 47, 49], "\u914d\u7f6e": [12, 111, 227, 308], "\u91cd\u3044": [0, 52, 124, 156], "\u91cd\u304f": 301, "\u91cd\u306a\u3063": 48, "\u91cd\u306d": 56, "\u91cd\u307f": [22, 41, 42, 43, 44, 45, 47, 48, 52, 54, 111, 112, 155, 156, 202, 224, 245, 301, 304], "\u91cd\u307f\u3064\u304d": 49, "\u91cd\u307f\u4ed8\u304d": [41, 42, 43, 44, 45, 49, 156], "\u91cd\u307f\u4ed8\u3051": [156, 301], "\u91cd\u8907": [41, 43, 44, 49, 50, 51, 54], "\u91cd\u8981": [0, 10, 12, 14, 27, 31, 50, 56, 61, 91, 92, 106, 111, 156, 161, 168, 177, 226, 245, 246, 247, 262, 292, 309, 310], "\u91cd\u8996": [226, 301], "\u91ce\u9996": 49, "\u91cf\u6307": 244, "\u91cf\u8a08": 36, "\u9234\u6728": 47, "\u932f\u8aa4": 0, "\u9577\u3044": [45, 50, 51, 74, 156], "\u9577\u3044\u5f0f": [43, 44], "\u9577\u3044\u65b9": 44, "\u9577\u304f": [43, 51, 156], "\u9577\u3055": [47, 53, 176, 305], "\u9577\u3059\u304e\u308b": [48, 52], "\u9577\u5185": [49, 50], "\u9577\u5185\u6b69": [49, 50], "\u9577\u578b": [112, 141], "\u9577\u65b9\u5f62": 39, "\u9577\u6642\u9593": [153, 173], "\u9577\u671f\u9593": 54, "\u9577\u751f\u304d": 161, "\u9577\u91ce": 49, "\u9577\u97f3": [44, 53, 231, 232, 233, 234, 235, 258, 259], "\u9589\u3058": [39, 42, 44, 51, 163, 254], "\u9589\u3058\u308b": [36, 39, 42, 50, 254], "\u958b\u3044": [37, 39, 42, 43, 48, 50, 52, 53, 109, 120, 124, 163, 173, 224, 229], "\u958b\u304b": [42, 50, 52, 124, 142, 173], "\u958b\u304d": [18, 61, 142, 152, 163, 281], "\u958b\u304f": [39, 42, 47, 50, 51, 52, 61, 229, 281, 308], "\u958b\u304f\u969b": 47, "\u958b\u3051": [42, 47, 50], "\u958b\u3051\u308b": 47, "\u958b\u59cb": [14, 39, 41, 42, 43, 48, 49, 114, 164, 176, 188, 191, 192, 205, 206, 208, 209, 228], "\u958b\u653e": [43, 50, 52, 54, 106, 128], "\u958b\u7528": 45, "\u958b\u767a": [0, 3, 6, 7, 8, 12, 21, 22, 23, 24, 25, 28, 30, 32, 33, 47, 48, 49, 50, 51, 52, 54, 56, 93], "\u9593groonga": 106, "\u9593\u9055\u3063": [39, 42, 44, 47, 48, 49, 50, 51, 53, 173, 251, 252], "\u9593\u9694": [41, 54], "\u95a2\u308f\u3089": [45, 156, 176], "\u95a2\u4fc2": [11, 13, 22, 40, 41, 47, 51, 111, 114, 164, 224, 304, 305, 311], "\u95a2\u4fc2\u5f0f": 3, "\u95a2\u6570": [11, 22, 36, 37, 40, 41, 42, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 57, 58, 74, 81, 85, 102, 111, 140, 141, 142, 167, 175, 180, 183, 185, 186, 188, 189, 190, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 208, 209, 210, 211, 212, 219, 221, 222, 245, 246, 247, 286, 315], "\u95a2\u9023": [0, 2, 3, 10, 21, 22, 24, 25, 28, 31, 32, 39, 40, 41, 44, 45, 47, 48, 49, 50, 51, 52, 54, 81, 90, 121, 124, 149, 168, 173, 175, 180, 197, 223, 228, 229, 244, 252, 253, 281, 283, 296, 303, 304, 305, 308], "\u95b2\u89a7": 312, "\u95be\u5024": [22, 31, 39, 49, 50, 156, 159, 175, 299, 300], "\u9632\u304e": [48, 52, 53, 163], "\u9632\u3050": [125, 137, 225, 247], "\u9632\u3052": 41, "\u9632\u6b62": 43, "\u964d\u5411\u3051": 124, "\u964d\u9806": [134, 156, 159, 180, 286, 308], "\u9650\u3089": 10, "\u9650\u308a": [11, 42, 43, 45, 52, 89, 123, 167, 299, 301], "\u9650\u5b9a": [41, 173, 244], "\u9650\u6587": [39, 161], "\u9664\u3044": [43, 132, 137, 176, 196, 205, 206, 208, 209, 231, 232, 233, 234, 235, 274], "\u9664\u304f": [47, 135, 156], "\u9664\u53bb": [37, 43, 48, 51, 111, 165, 194, 261, 272, 274], "\u9664\u5916": [41, 42, 53, 122, 274], "\u9664\u7b97": [49, 52, 53], "\u9665\u3063": 47, "\u968e\u5c64": 11, "\u968f\u6642": 125, "\u969b\u7b49": 54, "\u969c\u5bb3": [52, 54], "\u96a0\u3055": 53, "\u96a3\u308a\u5408\u3063": 264, "\u96a3\u63a5": [0, 44, 156, 224], "\u96c5\u5e83": 49, "\u96c6\u307e\u3063": 306, "\u96c6\u307e\u308a": [156, 180], "\u96c6\u3081": [111, 306], "\u96c6\u3081\u308b": 111, "\u96c6\u5408": [41, 43, 44, 47, 87, 91, 142, 156, 223, 244], "\u96c6\u8a08": [22, 41, 43, 44, 50, 156, 306], "\u96e2\u308c": [44, 51, 225, 315], "\u96e3\u3057\u3044": [0, 54], "\u96fb\u8a71": [42, 275], "\u9759\u7684": [3, 22, 41, 43, 44, 47, 48, 49, 50, 51, 52, 57, 94, 175, 178, 308], "\u975eascii": [264, 265, 266, 267, 268, 275, 279, 280], "\u975e\u308f": 299, "\u975e\u308f\u304b\u3061": 301, "\u975e\u4e92": [43, 47, 48, 49, 50, 51, 52, 111], "\u975e\u4e92\u63db": [39, 49, 50], "\u975e\u5168": 111, "\u975e\u5206": 156, "\u975e\u5e38": [41, 42, 43, 44, 47, 51, 54, 106, 156, 244, 245, 246, 247, 292], "\u975e\u63a8": [39, 41, 44, 45, 47, 48, 49, 50, 51, 52, 85, 109, 135, 151, 156, 158, 161, 175, 188, 232, 233, 234, 235, 236, 258, 259, 284], "\u975e\u63a8\u5968": [47, 50], "\u975e\u7ba1": 42, "\u975e\u81ea": [51, 141], "\u975e\u81ea\u7acb": [231, 232, 233, 234, 235, 274], "\u975e\u81ea\u7acb\u8a9e": [231, 232, 233, 234, 235, 274], "\u975e\u82f1": 18, "\u975e\u8ca0": 111, "\u9762\u5012": [43, 44], "\u97f3\u3068": 53, "\u9805\u76ee": [36, 41, 42, 43, 44, 50, 52, 53, 54, 58, 108, 115, 116, 117, 156, 161, 171, 177, 292, 296, 309], "\u9806\u4f4d": [42, 286], "\u9806\u5e8f": [41, 42, 43, 44, 45, 51, 53, 132, 134, 135, 156, 162, 301, 308], "\u9806\u6b21": [174, 175, 298, 308], "\u9806\u756a": [43, 134, 135, 156, 175, 203, 224, 225, 301, 308], "\u9813\u632b": 56, "\u9818\u57df": [31, 41, 43, 47, 49, 53, 54, 104, 111, 141, 315], "\u982d\u6587": 298, "\u982d\u8f9e": [53, 254], "\u983b\u51fa": [42, 50], "\u983b\u5ea6": [41, 50, 52, 159, 165], "\u983b\u7e41": [31, 42, 52], "\u9855\u8457": 264, "\u985e\u3059\u308b": 53, "\u985e\u4f3c": [11, 45, 47, 48, 49, 52, 53, 54, 159, 197, 202, 223], "\u985e\u4f3c\u5ea6": 52, "\u985e\u7d39": 301, "\u985e\u7fa9": 156, "\u9867\u307f": 56, "\u98df\u3044\u9055\u3063": 173, "\u98df\u3079": [257, 258, 259], "\u99c4\u76ee": 10, "\u9ad8\u3044": [0, 45, 53, 94, 106, 108, 111, 156, 159, 177, 180, 262, 308], "\u9ad8\u3044\u9806": 308, "\u9ad8\u304f": [50, 91, 111, 246, 301, 310], "\u9ad8\u307e\u3063": 0, "\u9ad8\u3081\u308b": 111, "\u9ad8\u5ea6": [223, 224, 254], "\u9ad8\u6a5f": [0, 11], "\u9ad8\u7cbe": 0, "\u9ad8\u901f": [0, 11, 36, 39, 41, 42, 45, 46, 48, 51, 53, 54, 56, 87, 94, 111, 132, 134, 135, 156, 161, 188, 189, 224, 225, 239, 244, 245, 247, 254, 277, 291, 292, 307, 308], "\u9b3c\u96f2": [50, 51, 52], "\u9bae\u5ea6": 226, "\u9df2\u7530": 48, "\u9df2\u7530\u57fa": 48, "\u9ed2\u3044\u70b9": 239, "\ufe63\uff0d": [231, 232, 233, 234, 235, 258, 259], "\uff01\"": [41, 45, 156], "\uff01:": 31, "\uff01\u300d": [132, 134, 135, 156, 224, 225], "\uff01\u3057": 2, "\uff01\uff08": 17, "\uff01\uff09": [250, 251], "\uff01\uff1f": 272, "\uff08,": 308, "\uff08-": [156, 308], "\uff08=": [34, 94, 117, 137, 156, 158, 171], "\uff08@": [37, 39], "\uff08age": 161, "\uff08and": 223, "\uff08ci": 21, "\uff08document": [49, 247], "\uff08eol": [50, 52, 53], "\uff08gnu": 31, "\uff08groonga": 50, "\uff08homebrew": 12, "\uff08http": [24, 25, 28, 32, 296], "\uff08kana": 240, "\uff08least": 107, "\uff08longest": [39, 225], "\uff08messagepack": 31, "\uff08n": 53, "\uff08nginx": 296, "\uff08node": 21, "\uff08normalization": [41, 44, 53, 54, 230, 231, 232, 233, 234, 235, 236, 257, 258, 259], "\uff08not": 223, "\uff08or": 223, "\uff08perl": 177, "\uff08personal": [22, 23], "\uff08pid": 228, "\uff08piro": [49, 51], "\uff08romaji": 240, "\uff08rroonga": 50, "\uff08ruby": 21, "\uff08score": 156, "\uff08term": [245, 246, 247], "\uff08tf": 245, "\uff08tokenbigram": 301, "\uff08tokenmecab": 301, "\uff08true": 305, "\uff08truncate": 173, "\uff08world": 282, "\uff08\u2252": 12, "\uff08\u300c": [230, 301], "\uff08\u3064\u307e\u308a": [124, 149], "\uff08\u3069": 156, "\uff08\u307b\u307c": 156, "\uff08\u307e\u3060": 53, "\uff08\u30ad\u30fc": 50, "\uff08\u4f8b": [50, 53], "\uff08\uff1d": 248, "\uff09.": 45, "\uff09:": [154, 228, 299], "\uff09\u3001": [245, 246, 247, 254, 299], "\uff09\u3002": [12, 44, 50, 53, 228, 301, 308], "\uff09\u300d": [90, 272], "\uff09\u304b": 34, "\uff09\u307e\u305f": [138, 168, 224, 225], "\uff09\uff08": [111, 161], "\uff11\u3064": [9, 18, 112], "\uff11\u5bfe": 9, "\uff12\u3061": 56, "\uff12\u3064": [18, 42, 315], "\uff13\u3064": [43, 44, 156, 282], "\uff1a\u300c": 53, "\uff1b[": 12, "\uff1f]": 272, "\uff1f\u300c": 272, "\uff1f\u300d": [111, 306], "\uff1f\uff09": [50, 156], "\uff4d\uff59\uff53\uff51\uff4c": [191, 192, 193], "\uff65\"": [231, 232, 233, 234, 235, 258, 259], "\uffef\"": 277, "\ufff0\"": [275, 277], "\ufffecrch": 168, "\ufffetext": 168}, "titles": ["1. Groonga\u306e\u7279\u5fb4", "6. \u30af\u30e9\u30a4\u30a2\u30f3\u30c8", "3. \u30b3\u30df\u30e5\u30cb\u30c6\u30a3", "12. Groonga\u3078\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5", "12.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831", "12.3.2. \u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5", "GNU Autotools\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5", "12.3.2.1. GNU/Linux\u307e\u305f\u306fUnix\u4e0a\u3067CMake\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5", "12.3.2.2. Windows\u4e0a\u3067CMake\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5", "12.3.3. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3", "12.3.4. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd", "12.3.5. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe", "12.3.7. \u30ea\u30ea\u30fc\u30b9\u624b\u9806", "12.3.1. \u30ea\u30dd\u30b8\u30c8\u30ea", "12.3.8. \u30c6\u30b9\u30c8\u65b9\u6cd5", "12.2. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u95a2\u9023\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5", "12.2.3. C API", "12.2.2. \u56fd\u969b\u5316", "12.2.1. \u5c0e\u5165", "12.1. \u30d0\u30b0\u30ec\u30dd\u30fc\u30c8\u306e\u9001\u308a\u65b9", "11. \u958b\u767a", "11.1. Travis CI", "Groonga \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8", "2. \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb", "2.5. AlmaLinux", "2.6. Amazon Linux", "CentOS", "2.8. \u305d\u306e\u4ed6: CMake\u3092\u4f7f\u3063\u3066\u30d3\u30eb\u30c9", "2.3. Debian GNU/Linux", "2.7. Docker", "2.2. macOS", "\u305d\u306e\u4ed6", "2.4. Ubuntu", "2.1. Windows", "9. \u5236\u9650\u4e8b\u9805", "\u304a\u77e5\u3089\u305b", "\u30d0\u30fc\u30b8\u30e7\u30f30\u7cfb\u306e\u304a\u77e5\u3089\u305b", "\u30d0\u30fc\u30b8\u30e7\u30f31.0\u7cfb\u306e\u304a\u77e5\u3089\u305b", "\u30d0\u30fc\u30b8\u30e7\u30f31.1\u7cfb\u306e\u304a\u77e5\u3089\u305b", "News - 1.2.x", "\u304a\u77e5\u3089\u305b - 1.3\u7cfb", "\u304a\u77e5\u3089\u305b - 10\u7cfb", "\u304a\u77e5\u3089\u305b - 11\u7cfb", "\u304a\u77e5\u3089\u305b - 12\u7cfb", "\u304a\u77e5\u3089\u305b - 13\u7cfb", "\u304a\u77e5\u3089\u305b - 14\u7cfb", "\u304a\u77e5\u3089\u305b - 15\u7cfb", "\u304a\u77e5\u3089\u305b - 2\u7cfb", "\u304a\u77e5\u3089\u305b - 3\u7cfb", "\u304a\u77e5\u3089\u305b - 4\u7cfb", "\u304a\u77e5\u3089\u305b - 5\u7cfb", "\u304a\u77e5\u3089\u305b - 6\u7cfb", "\u304a\u77e5\u3089\u305b - 7\u7cfb", "\u304a\u77e5\u3089\u305b - 8\u7cfb", "\u304a\u77e5\u3089\u305b - 9\u7cfb", "News in Senna period", "13. Groonga\u306e\u8d77\u6e90\u4ee5\u524d\u306b\u3064\u3044\u3066", "7. \u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb", "7.19. \u30a8\u30a4\u30ea\u30a2\u30b9", "7.26. API", "7.26.2. \u5168\u4f53\u8a2d\u5b9a", "7.26.4. grn_cache
", "7.26.5. grn_column
", "7.26.6. grn_command_version
", "7.26.7. grn_content_type
", "7.26.8. grn_ctx
", "7.26.9. grn_db
", "7.26.10. grn_encoding
", "7.26.11. grn_expr", "7.26.12. grn_geo
", "7.26.13. grn_hook
", "7.26.14. grn_ii
", "7.26.15. grn_index_cursor
", "7.26.16. grn_info
", "7.26.17. grn_inspect
", "7.26.18. grn_match_escalation
", "7.26.19. grn_obj
", "7.26.20. grn_proc
", "7.26.21. grn_search
", "7.26.22. grn_table
", "7.26.23. grn_table_cursor
", "7.26.24. grn_thread_*
", "7.26.25. grn_type
", "7.26.26. grn_user_data
", "7.26.1. \u6982\u8981", "7.26.3. Plugin", "7.12. Cast", "7.6. \u30ab\u30e9\u30e0", "7.6.3.1. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0", "7.6.2.3. \u64ec\u4f3c\u30ab\u30e9\u30e0", "7.6.2.1. \u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0", "7.6.2.2. \u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0", "7.3. \u30b3\u30de\u30f3\u30c9", "7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3", "7.3.2. \u4e26\u5217\u5b9f\u884c", "7.3.3. \u51fa\u529b\u5f62\u5f0f", "7.3.4. \u30c8\u30ec\u30fc\u30b9\u30ed\u30b0\u306e\u51fa\u529b", "7.3.5. \u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8", "7.3.6. \u30ea\u30af\u30a8\u30b9\u30c8ID", "7.3.7. \u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8", "7.3.8. \u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9", "7.3.8.3.3. -6: GRN_INPUT_OUTPUT_ERROR
", "7.3.8.3.5. -22: GRN_INVALID_ARGUMENT
", "7.3.8.3.2. -3: GRN_NO_SUCH_FILE_OR_DIRECTORY
", "7.3.8.3.4. -13: GRN_NOT_ENOUGH_SPACE
", "7.3.8.3.1. -2: GRN_OPERATION_NOT_PERMITTED
", "7.3.8.3.6. -34: GRN_RESOURCE_DEADLOCK_AVOIDED
", "7.3.9. cache_limit
", "7.3.10. check
", "7.3.11. clearlock
", "7.3.12. column_copy
", "7.3.13. column_create
", "7.3.14. column_list
", "7.3.15. column_remove
", "7.3.16. column_rename
", "7.3.17. config_delete
", "7.3.18. config_get
", "7.3.19. config_set
", "7.3.20. database_unmap
", "7.3.21. define_selector
", "7.3.22. defrag
", "7.3.23. delete
", "7.3.24. dump
", "7.3.25. index_column_diff
", "7.3.26. io_flush
", "7.3.27. load
", "7.3.28. lock_acquire
", "7.3.29. lock_clear
", "7.3.30. lock_release
", "7.3.31. log_level
", "7.3.32. log_put
", "7.3.33. log_reopen
", "7.3.34. logical_count
", "7.3.35. logical_parameters
", "7.3.36. logical_range_filter
", "7.3.37. logical_select
", "7.3.38. logical_shard_list
", "7.3.39. logical_table_remove
", "7.3.40. normalize
", "7.3.41. normalizer_list
", "7.3.42. object_exist
", "7.3.43. object_inspect
", "7.3.44. object_list
", "7.3.45. object_remove
", "7.3.46. plugin_register
", "7.3.47. plugin_unregister
", "7.3.48. query_expand
", "7.3.49. quit
", "7.3.50. range_filter
", "7.3.51. reference_acquire
", "7.3.52. reference_release
", "7.3.53. register
", "7.3.54. reindex
", "7.3.55. request_cancel
", "7.3.56. ruby_eval
", "7.3.57. schema
", "7.3.58. select
", "7.3.59. shutdown
", "7.3.60. status
", "7.3.61. suggest
", "7.3.62. table_copy
", "7.3.63. table_create
", "7.3.64. table_list
", "7.3.65. table_remove
", "7.3.66. table_rename
", "7.3.67. table_tokenize
", "7.3.68. thread_dump
", "7.3.69. thread_limit
", "7.3.70. tokenize
", "7.3.71. tokenizer_list
", "7.3.72. truncate
", "7.18. \u8a2d\u5b9a", "7.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb", "7.1.1. grndb
", "7.1.2. grnslap", "7.1.3. groonga
\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb", "7.1.4. groonga-benchmark", "7.1.5. groonga-httpd", "7.1.6. Groonga HTTP\u30b5\u30fc\u30d0\u30fc", "7.1.7. groonga-suggest-create-dataset", "7.1.8. groonga-suggest-httpd
", "7.1.9. groonga-suggest-learner", "7.15. \u95a2\u6570", "7.15.1. between
", "7.15.2. cast_loose
", "7.15.3. edit_distance", "7.15.4. escalate
", "7.15.5. fuzzy_search
", "7.15.6. geo_distance
", "7.15.7. geo_in_circle", "7.15.8. geo_in_rectangle", "7.15.9. highlight
", "7.15.10. highlight_full
", "7.15.11. highlight_html
", "7.15.12. html_untag
", "7.15.13. in_records
", "7.15.14. in_values
", "7.15.15. language_model_vectorize
", "7.15.16. math_abs
", "7.15.17. now", "7.15.18. number_classify
", "7.15.19. prefix_rk_search
", "7.15.20. query
", "7.15.21. query_parallel_or
", "7.15.22. rand", "7.15.23. snippet
", "7.15.24. snippet_html
", "7.15.25. string_length
", "7.15.26. string_slice
", "7.15.27. string_substring
", "7.15.28. sub_filter
", "7.15.29. time_classify_day
", "7.15.30. time_classify_day_of_week
", "7.15.31. time_classify_hour
", "7.15.32. time_classify_minute
", "7.15.33. time_classify_month
", "7.15.34. time_classify_second
", "7.15.35. time_classify_week
", "7.15.36. time_classify_year
", "7.15.37. vector_find
", "7.15.38. vector_new
", "7.15.39. vector_size
", "7.15.40. vector_slice
", "7.13. grn_expr", "7.13.1. \u30af\u30a8\u30ea\u30fc\u69cb\u6587", "7.13.2. \u30b9\u30af\u30ea\u30d7\u30c8\u69cb\u6587", "7.21. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9", "7.23. \u8a00\u8a9e\u30e2\u30c7\u30eb", "7.24. \u30ed\u30b0", "7.7. \u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc", "7.7.2.1. NormalizerAuto
", "7.7.2.2. NormalizerNFKC
", "7.7.2.3. NormalizerNFKC100
", "7.7.2.4. NormalizerNFKC121
", "7.7.2.5. NormalizerNFKC130
", "7.7.2.6. NormalizerNFKC150
", "7.7.2.7. NormalizerNFKC51
", "7.7.2.8. NormalizerTable
", "7.17. \u64cd\u4f5c\u65b9\u6cd5", "7.17.1. \u4f4d\u7f6e\u60c5\u5831\u691c\u7d22", "7.17.2. \u524d\u65b9\u4e00\u81f4RK\u691c\u7d22", "7.2. \u51fa\u529b", "7.10. \u30af\u30a8\u30ea\u30fc\u5c55\u958b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u4e00\u89a7", "7.10.1. QueryExpanderTSV", "7.14. \u6b63\u898f\u8868\u73fe", "7.11. \u30b9\u30b3\u30a2\u30e9\u30fc", "7.11.3.1. scorer_tf_at_most
", "7.11.3.2. scorer_tf_idf
", "7.22. \u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0", "7.20. \u30b5\u30b8\u30a7\u30b9\u30c8", "7.20.2. \u88dc\u5b8c", "7.20.3. \u88dc\u6b63", "7.20.1. \u306f\u3058\u3081\u306b", "7.20.4. \u63d0\u6848", "7.5. \u30c6\u30fc\u30d6\u30eb", "7.9.1. \u6982\u8981", "7.9. \u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc", "7.9.2. TokenFilterNFKC
", "7.9.3. TokenFilterNFKC100
", "7.9.4. TokenFilterNFKC150
", "7.9.5. TokenFilterStem
", "7.9.6. TokenFilterStopWord
", "7.8.1. \u6982\u8981", "7.8. \u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc", "7.8.2. TokenBigram
", "7.8.3. TokenBigramIgnoreBlank
", "7.8.4. TokenBigramIgnoreBlankSplitSymbol
", "7.8.5. TokenBigramIgnoreBlankSplitSymbolAlpha
", "7.8.6. TokenBigramIgnoreBlankSplitSymbolAlphaDigit
", "7.8.7. TokenBigramSplitSymbol
", "7.8.8. TokenBigramSplitSymbolAlpha
", "7.8.9. TokenBigramSplitSymbolAlphaDigit
", "7.8.10. TokenDelimit
", "7.8.11. TokenDelimitNull
", "7.8.12. TokenMecab
", "7.8.13. TokenNgram
", "7.8.14. TokenPattern
", "7.8.15. TokenRegexp
", "7.8.16. TokenTable
", "7.8.17. TokenTrigram
", "7.8.18. TokenUnigram
", "7.25. \u30c1\u30e5\u30fc\u30cb\u30f3\u30b0", "7.4. \u30c7\u30fc\u30bf\u578b", "7.16. \u30a6\u30a3\u30f3\u30c9\u30a6\u95a2\u6570", "7.16.1. record_number
", "7.16.2. window_count
", "7.16.3. window_rank
", "7.16.4. window_record_number
", "7.16.5. window_sum
", "5. \u30b5\u30fc\u30d0\u30fc", "5.3. GQTP", "5.2. HTTP", "5.2.1. \u6bd4\u8f03", "5.2.2. groonga", "5.2.3. groonga-httpd", "5.4. Memcached\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb", "5.1. \u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8", "8. \u4ed5\u69d8", "8.1. GQTP", "8.2. \u691c\u7d22", "10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0", "10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b", "10.2. \u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u89e3\u6790\u65b9\u6cd5", "10.3. mmap Cannot allocate memory\u30a8\u30e9\u30fc\u3092\u56de\u907f\u3059\u308b\u306b\u306f", "4. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb", "4.3. \u3044\u308d\u3044\u308d\u306a\u30c7\u30fc\u30bf\u306e\u4fdd\u5b58", "4.5. \u30c9\u30ea\u30eb\u30c0\u30a6\u30f3", "4.6. \u30bf\u30b0\u691c\u7d22\u30fb\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d", "4.1. \u57fa\u672c\u7684\u306a\u64cd\u4f5c", "4.9. \u5168\u6587\u691c\u7d22\u7528\u306e\u8a9e\u5f59\u8868\u306e\u4f5c\u6210", "4.7. match_columns\u30d1\u30e9\u30e1\u30fc\u30bf", "4.10. \u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210", "4.2. \u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9", "4.8. \u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22", "4.11. \u30af\u30a8\u30ea\u62e1\u5f35", "4.4. \u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6"], "titleterms": {"\":": [183, 191, 193, 196], "\"]": 45, "\"default": 191, "\"html": 191, "\"normalizer": 191, "\"normalizers": 191, "\"option": [183, 196], "\"sequential": [191, 193], "\"}": [183, 191, 196], "()": [11, 45], "(geopoint": 311, "(v": 11, "--": 94, "-apache": 31, "-arrow": 31, "-benchmark": 176, "-clear": 173, "-command": 93, "-compose": 29, "-create": 179, "-dataset": 179, "-dcmake": 27, "-default": 31, "-dgrn": 27, "-enable": 31, "-encoding": 31, "-escalation": 31, "-flags": 173, "-force": 173, "-g": 27, "-gqtp": 296, "-help": 31, "-http": 296, "-httpd": [177, 180, 181, 294, 296], "-later": 45, "-learner": [180, 181], "-level": 173, "-localstatedir": 31, "-lock": 173, "-log": [31, 173], "-lz4": 31, "-match": 31, "-message": 31, "-munin": 31, "-n": 94, "-pack": 31, "-package": 31, "-path": [31, 173], "-platform": 31, "-plugins": 31, "-prefix": 31, "-server": 296, "-since": 173, "-suggest": [179, 180, 181], "-target": 173, "-threshold": 31, "-truncate": 173, "-version": 93, "-with": 31, "-workers": 94, "-zlib": 31, ".[\"": 45, ".cpp": 45, ".edit": [17, 18], ".group": [132, 134, 135, 156], ".max": 281, ".maxfileperproc": 281, ".overcommit": 281, ".po": [17, 18], ".sort": [132, 134, 135, 156], "/linux": [7, 27, 28], "/rpm": 45, "10": 41, "11": 42, "12": 43, "13": 44, "14": 45, "15": 46, "2\u7cfb": 47, "3\u7cfb": 48, "4\u7cfb": 49, "5\u7cfb": 50, "6\u7cfb": 51, "7\u7cfb": 52, "8\u7cfb": 53, "9\u7cfb": 54, ":*": 142, ":bump": 12, ":fix": 142, ":var": 142, ":version": 12, "=doc": 18, "=encoding": 31, "=message": 31, "=number": 31, "=path": 31, "=paths": [27, 31], "=platform": 31, "[\"": 45, "[$": [132, 134, 135, 156], "[column": 45, "[gqtp": 45, "[index": 45, "[language": 45, "[logical": 45, "[status": 45, "_*": 81, "_abs": 198, "_acquire": [126, 149], "_alphabet": [231, 235, 275], "_and": [231, 232, 233, 234, 235, 258, 259], "_apache": 27, "_api": 11, "_argument": 102, "_array": 141, "_arrow": 27, "_at": 246, "_auto": 177, "_avoided": 106, "_base": 177, "_bfloat": 141, "_blank": 275, "_border": [132, 134, 135, 137, 183], "_bu": [231, 232, 233, 234, 235, 258, 259], "_buffer": 141, "_cache": [61, 177], "_calc": [135, 156], "_cancel": 153, "_case": [231, 232, 233, 234, 235, 258, 259], "_chunk": 141, "_chunks": 141, "_circle": 189, "_class": [191, 193, 274], "_classify": [200, 211, 212, 213, 214, 215, 216, 217, 218], "_clear": 127, "_close": 191, "_code": 228, "_column": [45, 62, 123, 141, 165, 195], "_columns": [134, 135, 156, 202, 203, 310], "_command": 63, "_compress": 141, "_config": 31, "_content": 64, "_copy": [110, 160], "_count": [132, 149, 281, 285], "_create": [45, 111, 161, 177], "_ctx": 65, "_cursor": [72, 80], "_dat": 254, "_data": 83, "_database": 177, "_day": [211, 212], "_db": 66, "_deadlock": 106, "_default": 94, "_delete": 115, "_di": [231, 232, 233, 234, 235], "_diff": [45, 123], "_digit": 275, "_directory": 103, "_distance": [156, 185, 188], "_dot": [45, 231, 232, 233, 234, 235, 258, 259], "_du": [231, 232, 233, 234, 235], "_dump": 166, "_encoding": 67, "_enough": 104, "_equal": 11, "_error": 101, "_errors": 125, "_escalation": [75, 135, 156], "_escape": [191, 192], "_eval": 154, "_exist": 140, "_expand": 146, "_expander": [135, 156, 202, 203], "_expansion": 156, "_expansions": 156, "_expr": [11, 68, 223], "_file": 103, "_filter": [45, 132, 134, 135, 141, 148, 155, 156, 210], "_filters": [142, 155, 161, 168], "_find": 219, "_flags": [135, 156], "_float": 141, "_flush": 124, "_form": 274, "_full": [141, 192], "_garbage": 141, "_generator": 141, "_geo": 69, "_get": 116, "_gu": [231, 232, 233, 234, 235], "_hash": [45, 122, 254], "_header": 112, "_hook": 70, "_hour": 213, "_html": [192, 193, 206], "_hyphen": [231, 232, 233, 234, 235, 258, 259], "_id": [123, 141, 228], "_idf": 247, "_ids": 125, "_id\u30ed\u30b0\u30d5\u30e9\u30b0": 45, "_ii": 71, "_in": [141, 189, 190], "_index": [72, 133, 134], "_indexes": 122, "_info": 73, "_information": 112, "_input": 101, "_inspect": [74, 141], "_install": [27, 31], "_invalid": 102, "_kana": [231, 232, 233, 234, 235, 258, 259], "_katakana": [231, 232, 233, 234, 235, 258, 259], "_key": [45, 46, 132, 134, 135, 137, 141, 254], "_keys": [132, 134, 135, 156], "_latin": [231, 235], "_length": [156, 207], "_level": [123, 129, 177], "_limit": [107, 135, 156, 167, 177], "_list": [112, 136, 139, 142, 162, 169], "_location": 275, "_log": [123, 177], "_loose": 184, "_map": 281, "_mark": [231, 232, 233, 234, 235, 258, 259], "_match": 75, "_max": [141, 156], "_memory": 281, "_method": 141, "_middle": [45, 231, 232, 233, 234, 235, 258, 259], "_minute": 214, "_mode": [191, 193, 202, 203], "_model": [45, 197], "_month": 215, "_most": 246, "_mruby": 27, "_n": [94, 141, 156, 180, 186, 205], "_name": [110, 114, 124, 126, 127, 128, 141, 149, 150, 152, 160, 164, 170, 192, 195, 197], "_new": 220, "_next": 141, "_no": [103, 254], "_not": [104, 105, 115, 117, 126, 128], "_number": [284, 287], "_o": [231, 232, 233, 234, 235], "_obj": 76, "_of": [141, 212], "_offset": [135, 156], "_open": 191, "_opened": 124, "_operation": 105, "_operator": [202, 203], "_or": [103, 115, 117, 126, 128, 183, 203], "_output": [101, 135, 156], "_pack": 31, "_parallel": 203, "_parameters": 133, "_pat": [45, 46, 254], "_path": [27, 31, 177, 180, 181], "_permitted": 105, "_physical": 141, "_plugins": 122, "_position": 141, "_prefix": [27, 31, 156], "_proc": 77, "_processes": 177, "_prolonged": [231, 232, 233, 234, 235, 258, 259], "_put": 130, "_query": 177, "_range": [45, 134], "_rank": 286, "_ratio": 156, "_raw": 141, "_reading": 274, "_record": 287, "_records": [122, 141, 156, 195], "_rectangle": 190, "_register": 144, "_release": [128, 149, 150], "_remove": [113, 137, 143, 163], "_rename": [114, 164], "_reopen": 131, "_resource": 106, "_results": 205, "_rk": 201, "_romaji": [231, 232, 233, 234, 235, 258, 259], "_schema": 122, "_search": [78, 187, 201], "_second": 216, "_section": 141, "_segment": 141, "_segments": 141, "_select": [11, 135], "_selector": 119, "_set": [117, 156], "_shard": 136, "_size": [45, 141, 221], "_slice": [208, 222], "_small": [231, 232, 233, 234, 235], "_sort": [135, 156], "_sortby": [135, 156], "_sound": [231, 232, 233, 234, 235, 258, 259], "_sounds": [231, 232, 233, 234, 235, 258, 259], "_source": [141, 275], "_space": 104, "_stamp": 228, "_statistics": 141, "_status": 228, "_string": [202, 203, 210], "_substring": 209, "_such": 103, "_sum": 288, "_symbol": [45, 231, 234, 235, 275], "_table": [11, 79, 80, 110, 122, 125, 132, 134, 135, 136, 137, 141, 156, 195], "_tag": [191, 193], "_tagn": [191, 192], "_target": [135, 156], "_tf": [246, 247], "_thread": 81, "_threshold": [135, 156], "_time": 228, "_to": [231, 232, 233, 234, 235, 258, 259], "_tokenize": [156, 165], "_tokenizer": 161, "_total": 141, "_trailing": [231, 232, 233, 234, 235], "_transposition": 156, "_type": [64, 82, 125, 141, 142, 161, 188, 298], "_types": [135, 156], "_unmanaged": 141, "_unmap": 118, "_unregister": 145, "_untag": 194, "_use": 141, "_user": 83, "_v": [231, 232, 233, 234, 235, 258, 259], "_value": [123, 141, 183, 196], "_values": [135, 156, 196], "_vector": 156, "_vectorize": [45, 197], "_version": [63, 93, 237], "_voiced": [231, 232, 233, 234, 235, 258, 259], "_week": [212, 217], "_weight": 141, "_with": [27, 156, 231, 235], "_wo": [231, 232, 233, 234, 235], "_workers": [94, 156], "_year": 218, "_zu": [231, 232, 233, 234, 235], "aarch": 45, "access": 177, "adjuster": 156, "algorithm": 260, "allocate": 303, "almalinux": 24, "amazon": [25, 45], "apache": [12, 94, 96], "api": [16, 59], "approximate": 188, "archive": 32, "arg": 11, "arrow": [12, 94, 96], "auto": 149, "autotools": 6, "avx": 45, "between": 183, "bigram": 311, "body": 95, "bookworm": 28, "bool": 282, "cache": [107, 132, 134, 135, 156], "calc": 135, "callback": 11, "candidate": 180, "cannot": 303, "cast": [86, 184], "centos": 26, "changes": 55, "check": [108, 173], "ci": 21, "clang": 14, "clearlock": 109, "clone": 17, "close": [191, 192], "cmake": [7, 8, 18, 27], "column": [110, 111, 112, 113, 114, 141, 142, 155, 183, 191, 192, 201, 211, 246, 247], "columns": [125, 132, 134, 135, 156, 261], "command": [93, 155], "comments": 311, "condition": [186, 195], "config": [115, 116, 117], "configure": [6, 31], "contain": 11, "context": [45, 228], "cpu\u30b3\u30a2": 292, "cutter": 14, "data": [141, 181], "database": [118, 141, 180, 181], "db": 11, "deb": 45, "debian": 28, "default": [93, 94, 161, 202, 203], "define": 119, "defrag": [45, 120], "delete": [45, 121], "delimiter": 272, "dependent": [137, 163], "desctipion": 179, "dev": 12, "disable": 31, "docker": [12, 29], "domain": [112, 306], "drilldown": [135, 156], "drilldowns": [135, 156], "dump": 122, "each": 125, "edit": 185, "elapsed": 228, "ellipsoid": 188, "equal": 11, "escalate": 186, "exit": 179, "facebook": [2, 12], "features": 45, "files": [179, 181], "filter": [132, 134, 135, 156, 210], "flags": [111, 112, 132, 134, 135, 138, 142, 156, 161, 165, 168, 202, 203, 298], "float": [46, 282], "force": [137, 143], "freebsd": 281, "from": [110, 160, 181], "fuzzy": [156, 187], "generated": 141, "generator": [27, 45, 111, 112], "geo": [188, 189, 190], "geoindex": 311, "geopoint": [282, 311], "get": 180, "gnu": [6, 7, 27, 28], "gqtp": [9, 290, 296, 298], "greater": 11, "grn": [11, 45, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 94, 101, 102, 103, 104, 105, 106, 223], "grndb": 173, "grnslap": 174, "groonga": [0, 3, 4, 5, 6, 7, 8, 9, 11, 12, 17, 18, 22, 43, 44, 45, 55, 56, 94, 175, 176, 177, 178, 179, 180, 181, 293, 294, 296], "gzip": 292, "hashtags": 311, "header": [95, 112, 115, 116, 117, 126, 128, 142, 155], "highlight": [191, 192, 193], "homebrew": [12, 30], "how": 290, "html": [17, 18, 191, 194], "http": [178, 241, 291, 296, 312], "https": 292, "id": [98, 112, 153], "ifexists": 125, "ignore": 275, "in": [55, 195, 196], "include": 274, "index": [45, 123, 141, 155, 165, 246, 247], "input": 125, "install": 31, "int": 282, "io": 124, "javascript": 315, "json": [45, 95, 96], "kern": 281, "key": [115, 116, 117, 156, 161], "keys": [135, 156], "keywordn": [191, 192], "label": [135, 156], "language": [45, 197], "lcov": 14, "learning": 181, "length": [208, 209], "less": 11, "level": 129, "lgpl": 45, "libmemcached": 14, "limit": [134, 135, 156], "linux": [25, 45, 281], "llama": 45, "load": [45, 125, 135, 156], "location": 188, "lock": [125, 126, 127, 128], "log": [129, 130, 131, 181], "logical": [132, 133, 134, 135, 136, 137], "longtext": 282, "loose": 275, "macos": [27, 30], "macports": 30, "make": [6, 31], "match": [135, 156, 202, 203, 310], "math": 198, "max": [107, 132, 134, 135, 137, 167, 183, 205], "memcached": 295, "memory": 303, "message": 228, "messagepack": 95, "min": [132, 134, 135, 137, 183], "mmap": 303, "mode": [11, 157, 165, 168, 195, 219], "model": 197, "mroonga": 0, "msys": 12, "name": [111, 112, 114, 123, 132, 134, 135, 140, 141, 143, 156, 161, 163, 164, 208], "near": 11, "new": [114, 164], "news": [39, 55], "nginx": 177, "nginx\u30ed\u30b0": 177, "nofile": 281, "none": 156, "normalize": 138, "normalized": 237, "normalizer": [138, 139, 155, 161, 168, 192], "normalizerauto": 230, "normalizernfkc": [45, 231, 232, 233, 234, 235, 236], "normalizers": 155, "normalizertable": 237, "normalizerxxx": 191, "not": 11, "now": 199, "nth": [208, 209], "null": 225, "number": 200, "object": [140, 141, 142, 143], "objects": 142, "of": [183, 196], "offset": [134, 135, 156], "only": [45, 124], "open": [191, 192], "option": [183, 196], "options": [208, 209], "or": [45, 191], "order": 134, "os": 43, "output": [125, 134, 135, 156], "package": 32, "path": [111, 112, 161], "pattern": 272, "period": 55, "phi": 45, "pid": 228, "pkg": 31, "plugin": [85, 144, 145, 155], "plugins": 155, "po": 18, "point": 188, "position": 123, "post": [132, 134, 135, 177, 292], "power": 156, "ppa": [12, 32], "prefix": [11, 201], "preset": 18, "proc": 142, "progress": [123, 228], "protocol": 298, "proxy": 177, "pull": 17, "query": [135, 146, 156, 201, 202, 203, 228, 298], "queryexpandertsv": 243, "quit": 147, "rake": 12, "rand": 204, "range": [112, 133, 142, 148], "rapidjson": 45, "record": [123, 284], "recover": 173, "rectangle": 188, "recursive": [124, 149, 150], "redmine": 10, "reference": [149, 150], "regexp": 208, "register": 151, "reindex": 152, "release": 12, "remove": [45, 231, 234, 235, 275], "report": 275, "request": [17, 153], "return": [187, 228], "ruby": 154, "run": 290, "schema": 155, "scope": 210, "score": 180, "scorer": [135, 156, 246, 247, 315], "script": 154, "select": [135, 156], "senna": [55, 56], "shard": [132, 134, 135, 137], "shorttext": 282, "shutdown": 157, "similar": 11, "size": 298, "slices": 156, "snippet": [205, 206], "sort": [122, 134, 135, 156], "sortby": [135, 156], "source": [111, 155], "sources": [112, 142], "sphere": 188, "sphinx": 17, "stage": [132, 134, 135, 156], "status": [158, 179, 298], "string": [138, 165, 168, 207, 208, 209], "sub": 210, "succeeded": [115, 117, 126, 128], "suffix": 11, "suggest": 159, "summary": [187, 257, 290], "synopstis": 179, "syntax": 187, "table": [45, 46, 111, 112, 114, 123, 125, 141, 142, 155, 156, 160, 161, 162, 163, 164, 165, 254], "tables": [122, 155], "target": [124, 126, 127, 128, 149, 150, 152, 170, 196, 198, 208, 209, 221, 237, 274], "text": [193, 197, 282], "thread": [166, 167], "threshold": 186, "time": [211, 212, 213, 214, 215, 216, 217, 218, 228, 282], "to": [110, 160, 290], "token": [123, 142, 155, 161, 168], "tokenbigram": 264, "tokenbigramignoreblank": 265, "tokenbigramignoreblanksplitsymbol": 266, "tokenbigramignoreblanksplitsymbolalpha": 267, "tokenbigramignoreblanksplitsymbolalphadigit": 268, "tokenbigramsplitsymbol": 269, "tokenbigramsplitsymbolalpha": 270, "tokenbigramsplitsymbolalphadigit": 271, "tokendelimit": 272, "tokendelimitnull": 273, "tokenfilternfkc": [45, 257, 258, 259], "tokenfilterstem": 260, "tokenfilterstopword": 261, "tokenize": 168, "tokenizer": [155, 168, 169], "tokenizers": 155, "tokenmecab": [231, 235, 274], "tokenngram": 275, "tokenpattern": 276, "tokenregexp": 277, "tokentable": 278, "tokentrigram": 279, "tokenunigram": 280, "tokyogeopoint": 282, "travis": 21, "true": [191, 193], "truncate": 170, "tsv": [95, 243], "twitter": [2, 10, 12], "type": [111, 112, 132, 134, 135, 141, 142, 155, 156, 180], "types": 155, "ubuntu": [12, 32], "uint": 282, "unicode": 237, "unify": [45, 231, 232, 233, 234, 235, 258, 259, 275], "unix": [7, 27], "usage": 187, "use": [134, 192, 274], "users": 311, "value": [116, 117, 132, 134, 135, 156, 161, 183, 187, 195, 196, 219], "values": 125, "vector": [141, 219, 220, 221, 222], "version": 231, "vm": 281, "wal": 45, "web": 18, "wgs": 282, "width": 205, "window": [132, 134, 135, 156, 285, 286, 287, 288], "windows": [8, 12, 27, 33], "worker": 177, "xml": 95, "zip": 33, "}]": [132, 134, 135, 156], "\u3042\u3044\u307e\u3044": 156, "\u3042\u3052\u308b": 301, "\u3042\u308a": [224, 225], "\u3042\u308b": [45, 311], "\u3044\u304f": 10, "\u3044\u304f\u3064\u304b": 45, "\u3044\u308b": [137, 163, 239], "\u3044\u308d\u3044\u308d": 305, "\u3046\u307e\u304f": 10, "\u304a\u304f": 10, "\u304a\u3055\u3089\u3044": 10, "\u304a\u3088\u3073": [27, 31], "\u304a\u6c17": 311, "\u304a\u77e5\u3089": [35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "\u304b\u3082": 45, "\u304b\u3089": [6, 7, 8, 10, 24, 25, 28, 30, 31, 32, 33, 43, 44, 45, 180, 240], "\u304c\u3063": 310, "\u3053\u3061\u3089": 10, "\u3053\u3068": 45, "\u3054\u3068": [94, 310], "\u3055\u307e\u3056\u307e\u306a": 315, "\u3057\u308c": 45, "\u3059\u308b": [5, 6, 7, 8, 10, 12, 14, 18, 19, 91, 94, 99, 111, 131, 137, 177, 181, 250, 251, 253, 301, 303, 306, 310], "\u305d\u3057": 56, "\u305d\u306e": [27, 31, 244], "\u305f\u3081": [10, 11, 135, 156], "\u3060\u3051": [10, 12, 91], "\u3065\u3051": 93, "\u3066\u308b": 311, "\u3067\u304d": [137, 163, 282], "\u3067\u304d\u308b": [10, 11, 94], "\u3068\u3044\u3046": 142, "\u3068\u304d": 45, "\u3068\u3057\u3066": [46, 282], "\u3068\u308a": 10, "\u306a\u3044": [10, 45, 137, 163, 282], "\u306a\u304b\u3063": 45, "\u306a\u3057": [225, 292], "\u306b\u3064\u3044\u3066": 56, "\u306b\u3088\u308b": [208, 306, 310, 313], "\u306b\u5bfe\u3059\u308b": 310, "\u306b\u95a2\u3059\u308b": 282, "\u306e\u306b": 301, "\u306e\u307f": 14, "\u306f\u3058\u3081": 252, "\u3078\u3068": 10, "\u307e\u305f": [7, 27, 310], "\u307e\u305f\u3050": 310, "\u307e\u3067": [43, 44], "\u307e\u3068\u3081": 12, "\u3084\u3081": 43, "\u3084\u308a": 10, "\u3088\u3046": [250, 251, 253], "\u308c\u308b": 45, "\u30a2\u30af\u30bb\u30b9\u30ed\u30b0": 292, "\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9": 292, "\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9": 12, "\u30a2\u30f3\u30ab\u30fc": 244, "\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3": 9, "\u30a4\u30e1\u30fc\u30b8": [12, 29], "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [6, 8, 14, 17, 18, 23, 27, 243], "\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9": 11, "\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8": 56, "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": [34, 45, 111, 226, 244, 307, 310], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0": [45, 87, 88, 111, 308], "\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb": 161, "\u30a6\u30a3\u30f3\u30c9\u30a6": [132, 134, 135, 156, 283], "\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8": 12, "\u30a8\u30a4\u30ea\u30a2\u30b9": 58, "\u30a8\u30b9\u30b1\u30fc\u30d7": [224, 244], "\u30a8\u30e9\u30fc": [45, 95, 303], "\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8": 302, "\u30a8\u30f3\u30c8\u30ea\u30fc": 45, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": [142, 242], "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb": 225, "\u30aa\u30d7\u30b7\u30e7\u30f3": [27, 94, 174, 175, 176, 179, 181, 231, 235], "\u30ab\u30b9\u30b1\u30fc\u30c9": 121, "\u30ab\u30d0\u30ec\u30c3\u30b8": 14, "\u30ab\u30e9\u30e0": [34, 45, 87, 89, 110, 111, 132, 134, 135, 141, 156, 163, 188, 306, 308, 310], "\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 310, "\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2": 0, "\u30ad\u30e3\u30b9\u30c8": 45, "\u30ad\u30e3\u30c3\u30b7\u30e5": [132, 134, 135, 156, 177], "\u30ad\u30fc": [45, 46], "\u30ad\u30fc\u30ef\u30fc\u30c9": [301, 311], "\u30af\u30a8\u30ea": [0, 11, 314], "\u30af\u30a8\u30ea\u30fc": [156, 177, 224, 242], "\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5": 177, "\u30af\u30a8\u30ea\u30fc\u30ed\u30b0": 228, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8": 1, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9": 175, "\u30af\u30e9\u30b9": 244, "\u30af\u30ed\u30fc\u30f3": 18, "\u30b0\u30eb\u30fc\u30d7": [224, 225, 244], "\u30b1\u30fc\u30b9": [137, 163], "\u30b3\u30de\u30f3\u30c9": [92, 94, 171, 173, 175, 248, 308, 312], "\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3": [93, 292], "\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb": 176, "\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3": [175, 180, 241], "\u30b3\u30df\u30e5\u30cb\u30c6\u30a3": 2, "\u30b3\u30e1\u30f3\u30c8": 311, "\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8": [3, 15], "\u30b4\u30df\u30a8\u30f3\u30c8\u30ea\u30fc": 45, "\u30b5\u30a4\u30ba": 111, "\u30b5\u30b8\u30a7\u30b9\u30c8": [180, 249], "\u30b5\u30dd\u30fc\u30c8": [43, 45, 46, 94], "\u30b5\u30f3\u30d7\u30eb": [174, 176], "\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf": [224, 225], "\u30b5\u30fc\u30d0": [0, 298, 312], "\u30b5\u30fc\u30d0\u30fc": [178, 289, 296], "\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8": 296, "\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9": 175, "\u30b7\u30b9\u30c6\u30e0": [19, 311], "\u30b7\u30d5\u30c8": 225, "\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0": 248, "\u30b8\u30aa\u30b5\u30fc\u30c1": 307, "\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0": [90, 111], "\u30b9\u30af\u30ea\u30d7\u30c8": 225, "\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb": 176, "\u30b9\u30b3\u30a2\u30e9\u30fc": 245, "\u30b9\u30b3\u30a2\u30fc": 156, "\u30b9\u30bf\u30a4\u30eb": 156, "\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30fc\u30f3\u30e2\u30fc\u30c9": 175, "\u30b9\u30c8\u30ec\u30fc\u30b8": 0, "\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3": 0, "\u30b9\u30e9\u30a4\u30b9": 156, "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3": 312, "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc": 225, "\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7": 180, "\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc": 302, "\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2": [6, 8, 18, 27], "\u30bd\u30fc\u30b9": [24, 25, 28, 30, 31, 32, 33], "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9": [12, 27], "\u30bd\u30fc\u30c8": [306, 315], "\u30bf\u30a4\u30d7\u30df\u30b9": 156, "\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8": 99, "\u30bf\u30b0": 307, "\u30bf\u30b0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9": 161, "\u30bf\u30b9\u30af": 12, "\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0": 292, "\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9": 27, "\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8": [6, 7, 8], "\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0": 2, "\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb": 304, "\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0": 281, "\u30c4\u30a4\u30fc\u30c8": 10, "\u30c4\u30fc\u30eb": [31, 177, 312], "\u30c6\u30b9\u30c8": [12, 14, 134], "\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb": 14, "\u30c6\u30fc\u30d6\u30eb": [34, 110, 111, 137, 141, 161, 163, 181, 254, 282, 305, 308, 310, 311], "\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6": 177, "\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 12, "\u30c7\u30d0\u30c3\u30ac": 14, "\u30c7\u30d5\u30a9\u30eb\u30c8": [94, 99], "\u30c7\u30fc\u30bf": [111, 161, 250, 253, 282, 305, 308, 311], "\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0": 87, "\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9": [141, 292, 308], "\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9": 177, "\u30c7\u30fc\u30e2\u30f3": 298, "\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9": 175, "\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0": [176, 300], "\u30c8\u30ec\u30fc\u30b9\u30ed\u30b0": 96, "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6": 0, "\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc": [263, 301], "\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc": 256, "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8": [12, 15, 18, 22], "\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3": [135, 156, 306], "\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc": 229, "\u30ce\u30fc\u30de\u30eb\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0": 90, "\u30ce\u30fc\u30de\u30eb\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": 91, "\u30cf\u30a4\u30e9\u30a4\u30c8": 44, "\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0": 311, "\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb": 295, "\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8": 19, "\u30d0\u30fc\u30b8\u30e7\u30f3": [36, 37, 38, 93, 237], "\u30d1\u30bf\u30fc\u30f3": 45, "\u30d1\u30c3\u30b1\u30fc\u30b8": [12, 45], "\u30d1\u30c3\u30c1": [17, 18], "\u30d1\u30c8\u30ea\u30b7\u30a2": 313, "\u30d1\u30e9\u30e1\u30fc\u30bf": [93, 310], "\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc": [135, 156], "\u30d3\u30c3\u30c8": 225, "\u30d3\u30eb\u30c9": [5, 6, 7, 8, 12, 24, 25, 27, 28, 30, 31, 32, 33], "\u30d5\u30a1\u30a4\u30eb": [11, 17, 18, 45, 94, 172, 175, 243, 281, 292], "\u30d5\u30a9\u30ed\u30fc": 311, "\u30d5\u30a9\u30fc\u30af": 18, "\u30d5\u30a9\u30fc\u30de\u30c3\u30c8": [45, 96, 156, 228, 243], "\u30d5\u30ec\u30fc\u30ba": [224, 225], "\u30d6\u30e9\u30a6\u30b6": 18, "\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9": 312, "\u30d6\u30e9\u30b8\u30eb": 56, "\u30d7\u30ea\u30bb\u30c3\u30c8": 27, "\u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8": 97, "\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8": 18, "\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9": 292, "\u30d7\u30ed\u30b0\u30ec\u30b9\u30ed\u30b0": 45, "\u30d7\u30ed\u30bb\u30b9": [94, 281], "\u30d7\u30ed\u30bb\u30b9\u30ed\u30b0": 228, "\u30d7\u30ed\u30c8\u30b3\u30eb": 298, "\u30d7\u30ed\u30d1\u30c6\u30a3": 142, "\u30d8\u30c3\u30c0\u30fc": 298, "\u30d9\u30af\u30bf\u30fc": [45, 282], "\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0": [45, 91, 111, 305], "\u30da\u30fc\u30b8\u30f3\u30b0": 156, "\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0": 311, "\u30de\u30b7\u30f3": 45, "\u30de\u30c3\u30c1": 225, "\u30de\u30c3\u30c1\u30ab\u30e9\u30e0": 224, "\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0": 111, "\u30df\u30c3\u30b7\u30f3\u30b0\u30e2\u30fc\u30c9": 111, "\u30e1\u30e2\u30ea": 281, "\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8": [2, 19], "\u30e2\u30b8\u30e5\u30fc\u30eb": 177, "\u30e2\u30c7\u30eb": 227, "\u30e6\u30fc\u30b6\u30fc": [10, 180, 311], "\u30e6\u30fc\u30b6\u30fcid": 311, "\u30e9\u30a4\u30bb\u30f3\u30b9": 45, "\u30e9\u30a4\u30d6\u30e9\u30ea": [0, 31], "\u30ea\u30af\u30a8\u30b9\u30c8": [98, 99], "\u30ea\u30af\u30a8\u30b9\u30c8id": 98, "\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8": 99, "\u30ea\u30bd\u30fc\u30b9": [137, 163], "\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9": [45, 99, 100], "\u30ea\u30c6\u30e9\u30eb": 225, "\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7": 177, "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9": [60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85], "\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb": 57, "\u30ea\u30dd\u30b8\u30c8\u30ea": [12, 13, 17, 18], "\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc": [5, 6, 7, 8], "\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9": 312, "\u30ea\u30ea\u30fc\u30b9": [12, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9": 12, "\u30eb\u30fc\u30eb": 248, "\u30ec\u30b3\u30fc\u30c9": [111, 156, 308], "\u30ec\u30b3\u30fc\u30c9id": 254, "\u30ec\u30b9\u30dd\u30f3\u30b9": 45, "\u30ed\u30b0": 228, "\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30c8": 131, "\u30ed\u30c3\u30af\u30d5\u30ea\u30fc": 0, "\u30ed\u30fc\u30c9": [91, 308, 311], "\u30ed\u30fc\u30de": 240, "\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af": 14, "\u4e00\u6642": 254, "\u4e00\u6642\u30c6\u30fc\u30d6\u30eb": 254, "\u4e00\u7dd2": [137, 163], "\u4e00\u81f4": [224, 225, 250, 299, 313], "\u4e00\u81f4rk": [240, 250], "\u4e00\u89a7": [100, 171, 173, 229, 242, 248, 311], "\u4e00\u90e8": 137, "\u4e0a\u9650": 34, "\u4e0d\u6b63": 45, "\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9": 14, "\u4e0d\u6b63\u30e2\u30fc\u30c9": 111, "\u4e0d\u7b49\u4fa1": [224, 225], "\u4e26\u3079": 308, "\u4e26\u5217": [45, 94], "\u4e3b\u30ad\u30fc": [282, 313], "\u4e57\u7b97": 225, "\u4e8b\u524d": 12, "\u4e8b\u9805": [34, 176, 282], "\u4ed5\u65b9": 17, "\u4ed5\u69d8": 297, "\u4ed8\u304d": [18, 45, 224, 225, 307], "\u4ed8\u4e0e": 310, "\u4ee3\u5165": 225, "\u4ee3\u5165\u5f0f": 224, "\u4ee5\u4e0a": [224, 225], "\u4ee5\u4e0b": 224, "\u4ee5\u4e0b\u6f14": 225, "\u4ee5\u524d": 56, "\u4efb\u610f": 18, "\u4f4d\u7f6e": [0, 93, 188, 208, 239, 311, 315], "\u4f5c\u308a\u65b9": [90, 91], "\u4f5c\u308b": 6, "\u4f5c\u6210": [12, 111, 161, 308, 309, 311], "\u4f5c\u696d": 12, "\u4f7f\u3044": 299, "\u4f7f\u3044\u65b9": [58, 88, 90, 91, 94, 96, 97, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 176, 177, 178, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 226, 230, 231, 232, 233, 234, 235, 236, 237, 240, 241, 243, 244, 245, 246, 247, 250, 251, 253, 257, 258, 259, 260, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 284, 285, 286, 287, 288], "\u4f7f\u3046": [177, 180, 188, 231, 235], "\u4f7f\u3048": 45, "\u4f7f\u3063": [6, 7, 8, 27], "\u4f7f\u7528": [45, 281], "\u4f8b\u3048": 10, "\u4f9d\u5b58": 31, "\u4fdd\u5b58": [161, 305], "\u4fee\u6b63": [36, 37, 38, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55], "\u5165\u308a": 311, "\u5165\u529b": 180, "\u5165\u6f14": 225, "\u5168\u4f53": 60, "\u5168\u6587": [0, 301, 308, 310, 315], "\u5168\u6587\u691c": [111, 308, 309], "\u5168\u6587\u691c\u7d22": 224, "\u516c\u958b": 12, "\u5171\u6709": 0, "\u5171\u8d77": [250, 251, 253], "\u5171\u901a": 142, "\u518d\u5229": 45, "\u518d\u8d77\u52d5": 296, "\u51e6\u7406": 45, "\u51fa\u529b": [17, 95, 96, 134, 135, 156, 241, 308], "\u5206\u3051": 299, "\u521d\u671f": 45, "\u5229\u7528": [94, 137, 163, 177, 315], "\u5236\u5fa1": 225, "\u5236\u9650": [34, 91, 176, 243, 254, 282, 306], "\u524a\u6e1b": [137, 163], "\u524a\u9664": [121, 137, 163], "\u524d\u63d0": 12, "\u524d\u65b9": [224, 225, 240, 250, 313], "\u5270\u4f59": 225, "\u5272\u308a": 98, "\u52a0\u7b97": 225, "\u52b9\u7387": 45, "\u52d5\u4f5c": [14, 250, 251, 253], "\u52d5\u7684": [132, 134, 135, 156, 226], "\u5316\u51e6": 45, "\u5354\u529b": 10, "\u5358\u8a9e": 225, "\u5373\u6642": 0, "\u539f\u56e0": [101, 102, 103, 104, 105, 106, 301], "\u53c2\u7167": [0, 90, 91, 111, 163, 298, 305, 307], "\u53c2\u7167\u91cd": 45, "\u53c2\u8003": [6, 7, 8, 58, 95, 98, 99, 100, 107, 109, 111, 112, 115, 116, 117, 119, 121, 125, 126, 128, 129, 130, 131, 136, 138, 139, 142, 144, 145, 146, 148, 151, 153, 154, 155, 156, 159, 161, 165, 168, 169, 178, 179, 180, 184, 191, 192, 193, 201, 202, 203, 205, 206, 210, 223, 229, 230, 231, 232, 233, 234, 235, 237, 240, 243, 246, 247, 254, 255, 272, 274, 275, 276, 278, 286], "\u53cd\u6620": 18, "\u53d6\u308a\u6d88\u3057": 12, "\u53d6\u5f97": [12, 29, 308], "\u53ef\u80fd": [0, 110, 111, 115, 116, 117, 118, 122, 124, 125, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 155, 157, 158, 160, 161, 163, 165, 166, 167, 168, 177, 180, 183, 188, 193, 195, 202, 203, 205, 209, 219, 231, 232, 233, 234, 235, 237, 246, 247, 258, 259, 260, 261, 272, 274, 275], "\u5404\u7a2e": 12, "\u540c\u3058": 301, "\u540c\u6642": 45, "\u540c\u68b1": 45, "\u540d\u524d": [89, 174, 176, 179, 185, 189, 190, 199, 204, 282], "\u5411\u3051": [4, 12], "\u5426\u5b9a": 225, "\u547c\u3073\u51fa\u3057": 225, "\u547d\u4ee4": 176, "\u548c\u4ee3": 225, "\u548c\u6f14": 225, "\u554f\u984c": [42, 43, 45], "\u56de\u907f": 303, "\u56fa\u6709": 142, "\u56fd\u969b\u5316": 17, "\u5727\u7e2e": 292, "\u57fa\u672c": [137, 163, 225, 308], "\u5831\u544a": [19, 45], "\u5834\u5408": [29, 94, 95, 310], "\u5834\u6240": [10, 243], "\u58ca\u308c": 137, "\u58ca\u308c\u308b": 45, "\u5909\u63db": 240, "\u5909\u6570": 94, "\u5909\u66f4": [18, 37, 43, 44, 45, 110, 292, 301], "\u5909\u66f4\u70b9": 12, "\u5927\u304d\u306a": [111, 161], "\u5927\u306a\u308a": [224, 225], "\u5b66\u7fd2": [180, 250, 251, 252, 253], "\u5b8c\u5168": 299, "\u5b9f\u4f8b": 11, "\u5b9f\u65bd": 131, "\u5b9f\u73fe": 11, "\u5b9f\u884c": [6, 8, 11, 12, 14, 18, 27, 45, 94, 172, 175, 176, 177], "\u5b9f\u9a13": [39, 45], "\u5bfe\u5fdc": [10, 239, 292], "\u5bfe\u7b56": [101, 102, 103, 104, 105, 106, 301, 303], "\u5bfe\u8c61": [111, 163], "\u5c0e\u5165": 18, "\u5c0f\u3055": 111, "\u5c0f\u306a\u308a": [224, 225], "\u5c0f\u6570": 225, "\u5c55\u958b": 242, "\u5dee\u5206": 45, "\u5dee\u6f14": 225, "\u5e38\u99d0": 94, "\u5ea7\u6a19\u5024": 225, "\u5f15\u6570": [45, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 147, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 170, 174, 175, 176, 180, 181, 183, 185, 186, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 201, 202, 203, 204, 205, 208, 209, 210, 211, 219, 220, 221, 231, 232, 233, 234, 235, 237, 246, 247, 257, 258, 259, 260, 261, 272, 274, 275, 281, 286], "\u5f53\u3066\u308b": 98, "\u5f62\u5f0f": 95, "\u5f8c\u65b9": [224, 225, 313], "\u5fc5\u8981": [6, 8, 18, 27, 45, 194, 197], "\u5fc5\u9808": [94, 110, 111, 112, 114, 115, 116, 117, 118, 124, 125, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 153, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 170, 180, 183, 188, 193, 195, 202, 203, 205, 209, 211, 219, 237, 246, 247], "\u6027\u80fd": [177, 292], "\u60c5\u5831": [0, 4, 10, 14, 239, 311, 315], "\u611f\u8b1d": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54], "\u6210\u529f": 95, "\u6210\u679c": 17, "\u623b\u308a\u5024": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 246, 247, 284, 285, 286, 287, 288], "\u624b\u9806": 12, "\u6271\u3048\u308b": 111, "\u6295\u7a3f": 311, "\u629c\u3051": 45, "\u62bd\u51fa": [208, 225, 253], "\u62e1\u5f35": 314, "\u6307\u5b9a": [93, 94, 180, 188, 224, 282, 308, 310], "\u6307\u91dd": 10, "\u6319\u52d5": 299, "\u6392\u4ed6": 225, "\u63a5\u7d9a": 298, "\u63d0\u4f9b": 10, "\u63d0\u6848": [252, 253], "\u64cd\u4f5c": [238, 308], "\u64ec\u4f3c": 89, "\u64ec\u967d\u6027": 45, "\u6539\u826f": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "\u6570\u5024": 305, "\u6574\u6570": 225, "\u6587\u5b57": 244, "\u6587\u5b57\u5217": [225, 305], "\u6587\u66f8": [224, 225, 251], "\u6587\u6cd5": 315, "\u65b0\u3057\u3044": [17, 18], "\u65b0\u3057\u304f": 43, "\u65b0\u898f": 43, "\u65b9\u6cd5": [3, 5, 6, 7, 8, 14, 15, 17, 18, 45, 58, 91, 93, 98, 99, 110, 226, 227, 238, 250, 251, 253, 301, 302, 303], "\u65e2\u5b58": 45, "\u65e2\u77e5": [42, 43], "\u65e5\u6642": 305, "\u660e\u793a\u7684": 188, "\u6642\u9593": [225, 311], "\u66f4\u65b0": [0, 12, 17, 250], "\u66f8\u304d": 299, "\u66f8\u5f0f": [174, 176, 181, 185, 189, 190, 199, 204, 308], "\u66ff\u3048": 308, "\u6700\u521d": 12, "\u6700\u5927": 281, "\u6709\u52b9": 99, "\u6761\u4ef6": [12, 156, 194, 197, 224, 315], "\u6761\u4ef6\u5f0f": 224, "\u683c\u7d0d": 282, "\u691c\u51fa": 14, "\u691c\u7d22": [0, 91, 132, 134, 135, 156, 161, 224, 225, 239, 240, 250, 251, 253, 299, 301, 307, 308, 310, 311, 313, 314, 315], "\u691c\u7d22\u4f8b": 11, "\u6982\u8981": [0, 44, 58, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 90, 91, 93, 94, 95, 96, 97, 98, 99, 100, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 173, 175, 177, 178, 180, 181, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 227, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 243, 244, 245, 246, 247, 248, 254, 255, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 284, 285, 286, 287, 288], "\u69cb\u6587": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 173, 175, 177, 178, 180, 183, 184, 186, 188, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 224, 225, 230, 231, 232, 233, 234, 235, 236, 237, 244, 246, 247, 257, 258, 259, 260, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 284, 285, 286, 287, 288], "\u69cb\u7bc9": [14, 45, 226], "\u69d8\u3005": 14, "\u6a5f\u80fd": [43, 239], "\u6b63\u898f": [45, 208, 224, 225, 244], "\u6bce\u56de": 12, "\u6bd4\u8f03": [225, 292], "\u6c38\u7d9a": 254, "\u6ce8\u610f\u70b9": 94, "\u6d41\u308c": 17, "\u6d6e\u52d5": 225, "\u6e1b\u7b97": 225, "\u6e96\u5099": [12, 18, 314], "\u6f14\u7b97\u5b50": 225, "\u70b9\u6570": 225, "\u7279\u5b9a": 14, "\u7279\u5fb4": [0, 254], "\u7279\u6709": 177, "\u7279\u6b8a": 176, "\u72b6\u6cc1": [56, 94], "\u72ec\u81ea": 225, "\u7406\u7531": 10, "\u74b0\u5883": [12, 14, 94], "\u751f\u6210": [17, 18, 87, 90, 91], "\u7528\u3044": 315, "\u7528\u3044\u308b": 29, "\u7528\u8a9e\u96c6": 248, "\u754c\u9688": 56, "\u7570\u306a\u308b": 301, "\u767b\u9332": [12, 19], "\u76f4\u7a4d": [224, 225], "\u7701\u7565": [110, 111, 115, 116, 117, 118, 122, 124, 125, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 149, 150, 155, 157, 158, 160, 161, 163, 165, 166, 167, 168, 180, 183, 188, 193, 195, 202, 203, 205, 209, 219, 231, 232, 233, 234, 235, 237, 246, 247, 258, 259, 260, 261, 272, 274, 275], "\u771f\u507d\u5024": [225, 305], "\u78ba\u8a8d": [12, 17, 18, 94], "\u7a2e\u985e": [111, 142, 305], "\u7a4d\u4ee3": 225, "\u7a4d\u6f14": 225, "\u7b26\u53f7": 225, "\u7b49\u4fa1": [224, 225], "\u7b97\u5b50": 225, "\u7b97\u8853": 225, "\u7ba1\u7406": [177, 227, 312], "\u7bc4\u56f2": [161, 308], "\u7c21\u5358": [134, 135, 156, 231, 232, 233, 234, 235, 237, 257, 258, 259, 272, 274, 275], "\u7d22\u5f15": 0, "\u7d22\u7528": [111, 308, 309], "\u7d42\u4e86": [45, 177, 296, 298], "\u7d44\u307f\u8fbc\u307f": [175, 229, 245], "\u7d44\u8fbc\u578b": 282, "\u7d4c\u5ea6": 0, "\u7d4c\u7def\u5ea6": 305, "\u7d50\u5408\u5f0f": 224, "\u7d50\u679c": [176, 180, 301, 306, 308], "\u7d5e\u8fbc": 315, "\u7de8\u96c6": [17, 18], "\u7def\u5ea6": 0, "\u7ffb\u8a33": [17, 18], "\u81ea\u52d5\u751f\u6210": 111, "\u884c\u3046": 12, "\u8868\u73fe": [11, 45, 208, 224, 225, 244], "\u8868\u793a": 308, "\u88dc\u5b8c": [250, 252], "\u88dc\u6b63": [251, 252], "\u88dc\u8db3": 12, "\u8907\u6570": [292, 306, 310], "\u89e3\u6790": [14, 302], "\u89e3\u6c7a": 58, "\u8a00\u8a9e": [17, 227], "\u8a2d\u5b9a": [21, 60, 94, 99, 110, 171, 177, 292], "\u8a31\u5bb9": 156, "\u8a73\u7d30": 100, "\u8a8d\u8a3c": 292, "\u8a95\u751f": 56, "\u8a98\u5c0e": 10, "\u8a9e\u5f59": [308, 309], "\u8a9e\u5f59\u8868": 161, "\u8aac\u660e": [89, 174, 176, 185, 189, 190, 199, 204, 282], "\u8aad\u307f": [240, 250], "\u8ab2\u984c": 19, "\u8ad6\u7406": [137, 225], "\u8ad6\u7406\u548c": 224, "\u8ad6\u7406\u5dee": 224, "\u8ad6\u7406\u7a4d": 224, "\u8d77\u52d5": [180, 296, 298, 312], "\u8d77\u6e90": 56, "\u8ee2\u7f6e": 0, "\u8fd1\u508d": [224, 225], "\u8fd4\u3055": 45, "\u8fd4\u5024": [185, 189, 190, 199, 204], "\u8ffd\u52a0": [17, 18, 45, 229], "\u8ffd\u8de1": 19, "\u9001\u308a\u65b9": [17, 19], "\u9001\u308b": 18, "\u9001\u4fe1": 312, "\u9006\u5f15\u304d": 307, "\u901a\u4fe1": 9, "\u9032\u3081": 10, "\u9045\u5ef6": 45, "\u904e\u53bb": 10, "\u9055\u3044": 135, "\u9069\u7528": 91, "\u9078\u629e": 244, "\u90e8\u5206": 299, "\u914d\u5217": 225, "\u91cd\u307f": [91, 310], "\u91cd\u307f\u4ed8\u304d": [91, 111], "\u91cf\u6307\u5b9a\u5b50": 244, "\u958b\u3051\u308b": 281, "\u958b\u767a": [4, 10, 20], "\u9593\u9055\u3063": 45, "\u95a2\u4fc2": [31, 132, 134, 135, 156, 307], "\u95a2\u4fc2\u5f0f": 11, "\u95a2\u6570": [14, 132, 134, 135, 156, 182, 225, 227, 283], "\u95a2\u9023": [15, 132, 134, 135, 137, 156, 177, 181, 310], "\u95be\u5024": 301, "\u9650\u308a": 137, "\u9664\u7b97": 225, "\u96c6\u8a08": 0, "\u9759\u7684": [14, 45, 226], "\u975e\u308f\u304b\u3061": 299, "\u9806\u5e8f": [224, 225], "\u9818\u57df": 45, "\u985e\u4f3c": [224, 225, 251], "\u9ad8\u5ea6": [135, 156, 231, 232, 233, 234, 235, 237, 257, 258, 259, 272, 274, 275], "\uff08personal": 32}})
\ No newline at end of file