rroonga 9.0.3-x86-mingw32 → 9.0.7-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (769) hide show
  1. checksums.yaml +4 -4
  2. data/doc/text/news.md +30 -0
  3. data/ext/groonga/rb-grn-context.c +27 -0
  4. data/ext/groonga/rb-grn-flushable.c +7 -0
  5. data/ext/groonga/rb-grn-index-column.c +28 -0
  6. data/ext/groonga/rb-grn-index-cursor.c +19 -0
  7. data/ext/groonga/rb-grn-logger.c +17 -3
  8. data/ext/groonga/rb-grn-object.c +236 -22
  9. data/ext/groonga/rb-grn-table.c +68 -42
  10. data/ext/groonga/rb-grn.h +1 -1
  11. data/lib/2.3/groonga.so +0 -0
  12. data/lib/2.4/groonga.so +0 -0
  13. data/lib/2.5/groonga.so +0 -0
  14. data/lib/2.6/groonga.so +0 -0
  15. data/lib/groonga/dumper.rb +3 -0
  16. data/lib/groonga/record.rb +2 -2
  17. data/test/groonga-test-utils.rb +28 -5
  18. data/test/run-test.rb +0 -2
  19. data/test/test-accessor.rb +63 -7
  20. data/test/test-context.rb +25 -0
  21. data/test/test-exception.rb +5 -0
  22. data/test/test-flushable.rb +51 -6
  23. data/test/test-index-column.rb +67 -6
  24. data/test/test-index-cursor.rb +26 -0
  25. data/test/test-logger.rb +56 -11
  26. data/test/test-plugin.rb +1 -0
  27. data/test/test-query-logger.rb +4 -3
  28. data/test/test-record.rb +2 -1
  29. data/test/test-remote.rb +40 -10
  30. data/test/test-schema-dumper.rb +13 -0
  31. data/test/test-table.rb +21 -1
  32. data/test/test-variable.rb +23 -7
  33. data/vendor/local/bin/generate-pdb.bat +21 -21
  34. data/vendor/local/bin/grndb.exe +0 -0
  35. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  36. data/vendor/local/bin/groonga-suggest-create-dataset.exe +0 -0
  37. data/vendor/local/bin/groonga.exe +0 -0
  38. data/vendor/local/bin/libgroonga-0.dll +0 -0
  39. data/vendor/local/bin/libmecab-2.dll +0 -0
  40. data/vendor/local/bin/libmsgpackc.dll +0 -0
  41. data/vendor/local/bin/libonigmo-6.dll +0 -0
  42. data/vendor/local/bin/libpcre-1.dll +0 -0
  43. data/vendor/local/bin/libpcrecpp-0.dll +0 -0
  44. data/vendor/local/bin/libpcreposix-0.dll +0 -0
  45. data/vendor/local/bin/lz4.exe +0 -0
  46. data/vendor/local/bin/lz4c.exe +0 -0
  47. data/vendor/local/bin/lz4cat.exe +0 -0
  48. data/vendor/local/bin/mecab.exe +0 -0
  49. data/vendor/local/bin/pcregrep.exe +0 -0
  50. data/vendor/local/bin/pcretest.exe +0 -0
  51. data/vendor/local/bin/unlz4.exe +0 -0
  52. data/vendor/local/bin/zlib1.dll +0 -0
  53. data/vendor/local/cmake/RapidJSONConfig.cmake +3 -0
  54. data/vendor/local/cmake/RapidJSONConfigVersion.cmake +10 -0
  55. data/vendor/local/include/groonga/groonga/expr.h +16 -0
  56. data/vendor/local/include/groonga/groonga/obj.h +8 -0
  57. data/vendor/local/include/groonga/groonga/output.h +5 -0
  58. data/vendor/local/include/groonga/groonga/version.h +2 -2
  59. data/vendor/local/include/rapidjson/allocators.h +271 -0
  60. data/vendor/local/include/rapidjson/document.h +2575 -0
  61. data/vendor/local/include/rapidjson/encodedstream.h +299 -0
  62. data/vendor/local/include/rapidjson/encodings.h +716 -0
  63. data/vendor/local/include/rapidjson/error/en.h +74 -0
  64. data/vendor/local/include/rapidjson/error/error.h +155 -0
  65. data/vendor/local/include/rapidjson/filereadstream.h +99 -0
  66. data/vendor/local/include/rapidjson/filewritestream.h +104 -0
  67. data/vendor/local/include/rapidjson/fwd.h +151 -0
  68. data/vendor/local/include/rapidjson/internal/biginteger.h +290 -0
  69. data/vendor/local/include/rapidjson/internal/diyfp.h +258 -0
  70. data/vendor/local/include/rapidjson/internal/dtoa.h +245 -0
  71. data/vendor/local/include/rapidjson/internal/ieee754.h +78 -0
  72. data/vendor/local/include/rapidjson/internal/itoa.h +304 -0
  73. data/vendor/local/include/rapidjson/internal/meta.h +181 -0
  74. data/vendor/local/include/rapidjson/internal/pow10.h +55 -0
  75. data/vendor/local/include/rapidjson/internal/regex.h +701 -0
  76. data/vendor/local/include/rapidjson/internal/stack.h +230 -0
  77. data/vendor/local/include/rapidjson/internal/strfunc.h +55 -0
  78. data/vendor/local/include/rapidjson/internal/strtod.h +269 -0
  79. data/vendor/local/include/rapidjson/internal/swap.h +46 -0
  80. data/vendor/local/include/rapidjson/istreamwrapper.h +115 -0
  81. data/vendor/local/include/rapidjson/memorybuffer.h +70 -0
  82. data/vendor/local/include/rapidjson/memorystream.h +71 -0
  83. data/vendor/local/include/rapidjson/msinttypes/inttypes.h +316 -0
  84. data/vendor/local/include/rapidjson/msinttypes/stdint.h +300 -0
  85. data/vendor/local/include/rapidjson/ostreamwrapper.h +81 -0
  86. data/vendor/local/include/rapidjson/pointer.h +1358 -0
  87. data/vendor/local/include/rapidjson/prettywriter.h +255 -0
  88. data/vendor/local/include/rapidjson/rapidjson.h +615 -0
  89. data/vendor/local/include/rapidjson/reader.h +1879 -0
  90. data/vendor/local/include/rapidjson/schema.h +2006 -0
  91. data/vendor/local/include/rapidjson/stream.h +179 -0
  92. data/vendor/local/include/rapidjson/stringbuffer.h +117 -0
  93. data/vendor/local/include/rapidjson/writer.h +610 -0
  94. data/vendor/local/lib/groonga/plugins/functions/index_column.a +0 -0
  95. data/vendor/local/lib/groonga/plugins/functions/index_column.dll +0 -0
  96. data/vendor/local/lib/groonga/plugins/functions/index_column.dll.a +0 -0
  97. data/vendor/local/lib/groonga/plugins/functions/index_column.la +1 -1
  98. data/vendor/local/lib/groonga/plugins/functions/math.a +0 -0
  99. data/vendor/local/lib/groonga/plugins/functions/math.dll +0 -0
  100. data/vendor/local/lib/groonga/plugins/functions/math.dll.a +0 -0
  101. data/vendor/local/lib/groonga/plugins/functions/math.la +1 -1
  102. data/vendor/local/lib/groonga/plugins/functions/number.a +0 -0
  103. data/vendor/local/lib/groonga/plugins/functions/number.dll +0 -0
  104. data/vendor/local/lib/groonga/plugins/functions/number.dll.a +0 -0
  105. data/vendor/local/lib/groonga/plugins/functions/number.la +1 -1
  106. data/vendor/local/lib/groonga/plugins/functions/string.a +0 -0
  107. data/vendor/local/lib/groonga/plugins/functions/string.dll +0 -0
  108. data/vendor/local/lib/groonga/plugins/functions/string.dll.a +0 -0
  109. data/vendor/local/lib/groonga/plugins/functions/string.la +1 -1
  110. data/vendor/local/lib/groonga/plugins/functions/time.a +0 -0
  111. data/vendor/local/lib/groonga/plugins/functions/time.dll +0 -0
  112. data/vendor/local/lib/groonga/plugins/functions/time.dll.a +0 -0
  113. data/vendor/local/lib/groonga/plugins/functions/time.la +1 -1
  114. data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
  115. data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
  116. data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
  117. data/vendor/local/lib/groonga/plugins/functions/vector.la +1 -1
  118. data/vendor/local/lib/groonga/plugins/normalizers/mysql.a +0 -0
  119. data/vendor/local/lib/groonga/plugins/normalizers/mysql.dll +0 -0
  120. data/vendor/local/lib/groonga/plugins/normalizers/mysql.dll.a +0 -0
  121. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  122. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  123. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  124. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +1 -1
  125. data/vendor/local/lib/groonga/plugins/sharding/dynamic_columns.rb +44 -18
  126. data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +9 -8
  127. data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +48 -15
  128. data/vendor/local/lib/groonga/plugins/sharding/logical_select.rb +84 -58
  129. data/vendor/local/lib/groonga/plugins/sharding/range_expression_builder.rb +1 -1
  130. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  131. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  132. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  133. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +1 -1
  134. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
  135. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
  136. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
  137. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +1 -1
  138. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  139. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  140. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  141. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +1 -1
  142. data/vendor/local/lib/groonga/scripts/ruby/command.rb +3 -4
  143. data/vendor/local/lib/groonga/scripts/ruby/command_line/grndb.rb +267 -77
  144. data/vendor/local/lib/groonga/scripts/ruby/command_line_parser.rb +96 -0
  145. data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters/optimizer.rb +1 -1
  146. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/binary_operation.rb +30 -7
  147. data/vendor/local/lib/groonga/scripts/ruby/initialize/pre.rb +5 -0
  148. data/vendor/local/lib/groonga/scripts/ruby/loggable.rb +8 -0
  149. data/vendor/local/lib/groonga/scripts/ruby/logger/flags.rb +70 -0
  150. data/vendor/local/lib/groonga/scripts/ruby/query_loggable.rb +8 -0
  151. data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +1 -1
  152. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +2 -2
  153. data/vendor/local/lib/groonga/scripts/ruby/time.rb +9 -0
  154. data/vendor/local/lib/libgroonga.a +0 -0
  155. data/vendor/local/lib/libgroonga.dll.a +0 -0
  156. data/vendor/local/lib/libgroonga.la +1 -1
  157. data/vendor/local/lib/liblz4.dll +0 -0
  158. data/vendor/local/lib/liblz4.dll.1 +0 -0
  159. data/vendor/local/lib/liblz4.dll.1.8.2 +0 -0
  160. data/vendor/local/lib/libmecab.dll.a +0 -0
  161. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  162. data/vendor/local/lib/libonigmo.a +0 -0
  163. data/vendor/local/lib/libonigmo.dll.a +0 -0
  164. data/vendor/local/lib/libonigmo.la +1 -1
  165. data/vendor/local/lib/libpcre.dll.a +0 -0
  166. data/vendor/local/lib/libpcrecpp.dll.a +0 -0
  167. data/vendor/local/lib/libpcreposix.dll.a +0 -0
  168. data/vendor/local/lib/libz.dll.a +0 -0
  169. data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
  170. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  171. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  172. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  173. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  174. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  175. data/vendor/local/share/doc/RapidJSON/examples/CMakeLists.txt +42 -0
  176. data/vendor/local/share/doc/RapidJSON/examples/capitalize/capitalize.cpp +67 -0
  177. data/vendor/local/share/doc/RapidJSON/examples/condense/condense.cpp +32 -0
  178. data/vendor/local/share/doc/RapidJSON/examples/filterkey/filterkey.cpp +135 -0
  179. data/vendor/local/share/doc/RapidJSON/examples/filterkeydom/filterkeydom.cpp +170 -0
  180. data/vendor/local/share/doc/RapidJSON/examples/jsonx/jsonx.cpp +207 -0
  181. data/vendor/local/share/doc/RapidJSON/examples/messagereader/messagereader.cpp +105 -0
  182. data/vendor/local/share/doc/RapidJSON/examples/parsebyparts/parsebyparts.cpp +173 -0
  183. data/vendor/local/share/doc/RapidJSON/examples/pretty/pretty.cpp +30 -0
  184. data/vendor/local/share/doc/RapidJSON/examples/prettyauto/prettyauto.cpp +56 -0
  185. data/vendor/local/share/doc/RapidJSON/examples/schemavalidator/schemavalidator.cpp +72 -0
  186. data/vendor/local/share/doc/RapidJSON/examples/serialize/serialize.cpp +173 -0
  187. data/vendor/local/share/doc/RapidJSON/examples/simpledom/simpledom.cpp +29 -0
  188. data/vendor/local/share/doc/RapidJSON/examples/simplereader/simplereader.cpp +42 -0
  189. data/vendor/local/share/doc/RapidJSON/examples/simplewriter/simplewriter.cpp +36 -0
  190. data/vendor/local/share/doc/RapidJSON/examples/tutorial/tutorial.cpp +151 -0
  191. data/vendor/local/share/doc/RapidJSON/readme.md +160 -0
  192. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  193. data/vendor/local/share/doc/groonga/en/html/_static/documentation_options.js +1 -1
  194. data/vendor/local/share/doc/groonga/en/html/characteristic.html +3 -3
  195. data/vendor/local/share/doc/groonga/en/html/client.html +3 -3
  196. data/vendor/local/share/doc/groonga/en/html/community.html +3 -3
  197. data/vendor/local/share/doc/groonga/en/html/contribution.html +3 -3
  198. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +3 -3
  199. data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +3 -3
  200. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +3 -3
  201. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +3 -3
  202. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +3 -3
  203. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +3 -3
  204. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +3 -3
  205. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +3 -3
  206. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +3 -3
  207. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +3 -3
  208. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +3 -3
  209. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +3 -3
  210. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +3 -3
  211. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +3 -3
  212. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +3 -3
  213. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +3 -3
  214. data/vendor/local/share/doc/groonga/en/html/development.html +3 -3
  215. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +3 -3
  216. data/vendor/local/share/doc/groonga/en/html/genindex.html +3 -3
  217. data/vendor/local/share/doc/groonga/en/html/index.html +11 -7
  218. data/vendor/local/share/doc/groonga/en/html/install.html +5 -4
  219. data/vendor/local/share/doc/groonga/en/html/install/centos.html +6 -6
  220. data/vendor/local/share/doc/groonga/en/html/install/debian.html +79 -8
  221. data/vendor/local/share/doc/groonga/en/html/install/docker.html +3 -3
  222. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +6 -6
  223. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +6 -6
  224. data/vendor/local/share/doc/groonga/en/html/install/others.html +6 -6
  225. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +6 -6
  226. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +6 -6
  227. data/vendor/local/share/doc/groonga/en/html/install/windows.html +12 -12
  228. data/vendor/local/share/doc/groonga/en/html/limitations.html +3 -3
  229. data/vendor/local/share/doc/groonga/en/html/news.html +498 -206
  230. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +3 -3
  231. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +3 -3
  232. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +3 -3
  233. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +3 -3
  234. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +3 -3
  235. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +3 -3
  236. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +3 -3
  237. data/vendor/local/share/doc/groonga/en/html/news/4.x.html +3 -3
  238. data/vendor/local/share/doc/groonga/en/html/news/5.x.html +3 -3
  239. data/vendor/local/share/doc/groonga/en/html/news/6.x.html +3 -3
  240. data/vendor/local/share/doc/groonga/en/html/news/senna.html +3 -3
  241. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  242. data/vendor/local/share/doc/groonga/en/html/reference.html +9 -6
  243. data/vendor/local/share/doc/groonga/en/html/reference/alias.html +3 -3
  244. data/vendor/local/share/doc/groonga/en/html/reference/api.html +3 -3
  245. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +3 -3
  246. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +3 -3
  247. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +3 -3
  248. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +3 -3
  249. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +3 -3
  250. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +3 -3
  251. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +3 -3
  252. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +3 -3
  253. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +3 -3
  254. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +3 -3
  255. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +3 -3
  256. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +3 -3
  257. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +3 -3
  258. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +3 -3
  259. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_inspect.html +3 -3
  260. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +3 -3
  261. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +3 -3
  262. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +3 -3
  263. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +3 -3
  264. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +3 -3
  265. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +3 -3
  266. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +3 -3
  267. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +3 -3
  268. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +3 -3
  269. data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +3 -3
  270. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +3 -3
  271. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +3 -3
  272. data/vendor/local/share/doc/groonga/en/html/reference/column.html +3 -3
  273. data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +3 -3
  274. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +3 -3
  275. data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +3 -3
  276. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +3 -3
  277. data/vendor/local/share/doc/groonga/en/html/reference/command.html +3 -3
  278. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +3 -3
  279. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +3 -3
  280. data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +3 -3
  281. data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +3 -3
  282. data/vendor/local/share/doc/groonga/en/html/reference/command/request_timeout.html +3 -3
  283. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +3 -3
  284. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +3 -3
  285. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +3 -3
  286. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +3 -3
  287. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +3 -3
  288. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +3 -3
  289. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +3 -3
  290. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +3 -3
  291. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +3 -3
  292. data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +3 -3
  293. data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +3 -3
  294. data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +3 -3
  295. data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +3 -3
  296. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +3 -3
  297. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +3 -3
  298. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +3 -3
  299. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +3 -3
  300. data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +3 -3
  301. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +3 -3
  302. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +3 -3
  303. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +3 -3
  304. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +3 -3
  305. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +3 -3
  306. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +3 -3
  307. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +3 -3
  308. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +3 -3
  309. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +3 -3
  310. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +77 -4
  311. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +3 -3
  312. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +3 -3
  313. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +3 -3
  314. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +3 -3
  315. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +3 -3
  316. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +3 -3
  317. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +78 -54
  318. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_list.html +3 -3
  319. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +3 -3
  320. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +3 -3
  321. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +3 -3
  322. data/vendor/local/share/doc/groonga/en/html/reference/commands/query_expand.html +3 -3
  323. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +3 -3
  324. data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +3 -3
  325. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +3 -3
  326. data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +3 -3
  327. data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +3 -3
  328. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +3 -3
  329. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +3 -3
  330. data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +3 -3
  331. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +3 -3
  332. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +3 -3
  333. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +3 -3
  334. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +3 -3
  335. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_copy.html +3 -3
  336. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +3 -3
  337. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +3 -3
  338. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +3 -3
  339. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +3 -3
  340. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +3 -3
  341. data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +3 -3
  342. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +3 -3
  343. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +3 -3
  344. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +3 -3
  345. data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +6 -6
  346. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +3 -3
  347. data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +58 -4
  348. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +3 -3
  349. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +3 -3
  350. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +3 -3
  351. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +3 -3
  352. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +3 -3
  353. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +3 -3
  354. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +3 -3
  355. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +3 -3
  356. data/vendor/local/share/doc/groonga/en/html/reference/function.html +3 -3
  357. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +3 -3
  358. data/vendor/local/share/doc/groonga/en/html/reference/functions/cast_loose.html +3 -3
  359. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +3 -3
  360. data/vendor/local/share/doc/groonga/en/html/reference/functions/fuzzy_search.html +3 -3
  361. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +11 -19
  362. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +3 -3
  363. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +3 -3
  364. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +3 -3
  365. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +3 -3
  366. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +3 -3
  367. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_records.html +3 -3
  368. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +3 -3
  369. data/vendor/local/share/doc/groonga/en/html/reference/functions/math_abs.html +3 -3
  370. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +3 -3
  371. data/vendor/local/share/doc/groonga/en/html/reference/functions/number_classify.html +3 -3
  372. data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +3 -3
  373. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +3 -3
  374. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +3 -3
  375. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +3 -3
  376. data/vendor/local/share/doc/groonga/en/html/reference/functions/string_length.html +3 -3
  377. data/vendor/local/share/doc/groonga/en/html/reference/functions/string_substring.html +3 -3
  378. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +3 -3
  379. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day.html +3 -3
  380. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day_of_week.html +3 -3
  381. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_hour.html +3 -3
  382. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_minute.html +3 -3
  383. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_month.html +3 -3
  384. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_second.html +3 -3
  385. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_week.html +3 -3
  386. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_year.html +3 -3
  387. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_find.html +3 -3
  388. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_new.html +3 -3
  389. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +3 -3
  390. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_slice.html +3 -3
  391. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +3 -3
  392. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +3 -3
  393. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +3 -3
  394. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +3 -3
  395. data/vendor/local/share/doc/groonga/en/html/reference/log.html +3 -3
  396. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +3 -3
  397. data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_auto.html +3 -3
  398. data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc100.html +3 -3
  399. data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc51.html +3 -3
  400. data/vendor/local/share/doc/groonga/en/html/reference/operations.html +3 -3
  401. data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +3 -3
  402. data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +3 -3
  403. data/vendor/local/share/doc/groonga/en/html/reference/output.html +3 -3
  404. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +3 -3
  405. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +3 -3
  406. data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +3 -3
  407. data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +3 -3
  408. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +3 -3
  409. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +3 -3
  410. data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +3 -3
  411. data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +3 -3
  412. data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +3 -3
  413. data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +3 -3
  414. data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +3 -3
  415. data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +3 -3
  416. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +3 -3
  417. data/vendor/local/share/doc/groonga/en/html/reference/token_filter/summary.html +3 -3
  418. data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +7 -7
  419. data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_nfkc100.html +3 -3
  420. data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stem.html +3 -3
  421. data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stop_word.html +3 -3
  422. data/vendor/local/share/doc/groonga/en/html/reference/tokenizer/summary.html +3 -3
  423. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +9 -6
  424. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram.html +3 -3
  425. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank.html +3 -3
  426. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +3 -3
  427. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +3 -3
  428. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +3 -3
  429. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol.html +3 -3
  430. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +3 -3
  431. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +3 -3
  432. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit.html +3 -3
  433. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit_null.html +3 -3
  434. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_mecab.html +8 -8
  435. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_ngram.html +1005 -0
  436. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_pattern.html +240 -0
  437. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_regexp.html +21 -21
  438. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_table.html +246 -0
  439. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_trigram.html +20 -20
  440. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_unigram.html +15 -15
  441. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +3 -3
  442. data/vendor/local/share/doc/groonga/en/html/reference/types.html +3 -3
  443. data/vendor/local/share/doc/groonga/en/html/reference/window_function.html +3 -3
  444. data/vendor/local/share/doc/groonga/en/html/reference/window_functions/record_number.html +3 -3
  445. data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_count.html +3 -3
  446. data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_record_number.html +3 -3
  447. data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_sum.html +3 -3
  448. data/vendor/local/share/doc/groonga/en/html/search.html +3 -3
  449. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  450. data/vendor/local/share/doc/groonga/en/html/server.html +3 -3
  451. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +3 -3
  452. data/vendor/local/share/doc/groonga/en/html/server/http.html +3 -3
  453. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +3 -3
  454. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +3 -3
  455. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +3 -3
  456. data/vendor/local/share/doc/groonga/en/html/server/memcached.html +3 -3
  457. data/vendor/local/share/doc/groonga/en/html/server/package.html +3 -3
  458. data/vendor/local/share/doc/groonga/en/html/spec.html +3 -3
  459. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +3 -3
  460. data/vendor/local/share/doc/groonga/en/html/spec/search.html +3 -3
  461. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +3 -3
  462. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +3 -3
  463. data/vendor/local/share/doc/groonga/en/html/troubleshooting/how_to_analyze_error_message.html +3 -3
  464. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +3 -3
  465. data/vendor/local/share/doc/groonga/en/html/tutorial.html +3 -3
  466. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +3 -3
  467. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +3 -3
  468. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +3 -3
  469. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +3 -3
  470. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +3 -3
  471. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +68 -6
  472. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +37 -4
  473. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +3 -3
  474. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +3 -3
  475. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +3 -3
  476. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +3 -3
  477. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  478. data/vendor/local/share/doc/groonga/ja/html/_static/documentation_options.js +1 -1
  479. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +3 -3
  480. data/vendor/local/share/doc/groonga/ja/html/client.html +3 -3
  481. data/vendor/local/share/doc/groonga/ja/html/community.html +3 -3
  482. data/vendor/local/share/doc/groonga/ja/html/contribution.html +3 -3
  483. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +3 -3
  484. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +3 -3
  485. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +3 -3
  486. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +3 -3
  487. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +3 -3
  488. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +3 -3
  489. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +3 -3
  490. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +3 -3
  491. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +3 -3
  492. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +3 -3
  493. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +3 -3
  494. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +3 -3
  495. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +3 -3
  496. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +3 -3
  497. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +3 -3
  498. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +3 -3
  499. data/vendor/local/share/doc/groonga/ja/html/development.html +3 -3
  500. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +3 -3
  501. data/vendor/local/share/doc/groonga/ja/html/genindex.html +3 -3
  502. data/vendor/local/share/doc/groonga/ja/html/index.html +11 -7
  503. data/vendor/local/share/doc/groonga/ja/html/install.html +5 -4
  504. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +6 -6
  505. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +69 -8
  506. data/vendor/local/share/doc/groonga/ja/html/install/docker.html +3 -3
  507. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +6 -6
  508. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +6 -6
  509. data/vendor/local/share/doc/groonga/ja/html/install/others.html +6 -6
  510. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +6 -6
  511. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +6 -6
  512. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +12 -12
  513. data/vendor/local/share/doc/groonga/ja/html/limitations.html +3 -3
  514. data/vendor/local/share/doc/groonga/ja/html/news.html +494 -206
  515. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +3 -3
  516. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +3 -3
  517. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +3 -3
  518. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +3 -3
  519. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +3 -3
  520. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +3 -3
  521. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +3 -3
  522. data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +3 -3
  523. data/vendor/local/share/doc/groonga/ja/html/news/5.x.html +3 -3
  524. data/vendor/local/share/doc/groonga/ja/html/news/6.x.html +3 -3
  525. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +3 -3
  526. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  527. data/vendor/local/share/doc/groonga/ja/html/reference.html +9 -6
  528. data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +3 -3
  529. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +3 -3
  530. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +3 -3
  531. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +3 -3
  532. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +3 -3
  533. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +3 -3
  534. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +3 -3
  535. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +3 -3
  536. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +3 -3
  537. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +3 -3
  538. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +3 -3
  539. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +3 -3
  540. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +3 -3
  541. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +3 -3
  542. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +3 -3
  543. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +3 -3
  544. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_inspect.html +3 -3
  545. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +3 -3
  546. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +3 -3
  547. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +3 -3
  548. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +3 -3
  549. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +3 -3
  550. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +3 -3
  551. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +3 -3
  552. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +3 -3
  553. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +3 -3
  554. data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +3 -3
  555. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +3 -3
  556. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +3 -3
  557. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +3 -3
  558. data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +3 -3
  559. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +3 -3
  560. data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +3 -3
  561. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +3 -3
  562. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +3 -3
  563. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +3 -3
  564. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +3 -3
  565. data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +3 -3
  566. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +3 -3
  567. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_timeout.html +3 -3
  568. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +3 -3
  569. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +3 -3
  570. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +3 -3
  571. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +3 -3
  572. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +3 -3
  573. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +3 -3
  574. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +3 -3
  575. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +3 -3
  576. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +3 -3
  577. data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +3 -3
  578. data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +3 -3
  579. data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +3 -3
  580. data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +3 -3
  581. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +3 -3
  582. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +3 -3
  583. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +3 -3
  584. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +3 -3
  585. data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +3 -3
  586. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +3 -3
  587. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +3 -3
  588. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +3 -3
  589. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +3 -3
  590. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +3 -3
  591. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +3 -3
  592. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +3 -3
  593. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +3 -3
  594. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +3 -3
  595. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +75 -4
  596. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +7 -7
  597. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +3 -3
  598. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +3 -3
  599. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +3 -3
  600. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +3 -3
  601. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +3 -3
  602. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +73 -54
  603. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_list.html +3 -3
  604. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +3 -3
  605. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +3 -3
  606. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +3 -3
  607. data/vendor/local/share/doc/groonga/ja/html/reference/commands/query_expand.html +3 -3
  608. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +3 -3
  609. data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +3 -3
  610. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +3 -3
  611. data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +3 -3
  612. data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +3 -3
  613. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +3 -3
  614. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +3 -3
  615. data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +3 -3
  616. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +7 -7
  617. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +3 -3
  618. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +3 -3
  619. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +3 -3
  620. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_copy.html +3 -3
  621. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +3 -3
  622. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +3 -3
  623. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +3 -3
  624. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +3 -3
  625. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +3 -3
  626. data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +3 -3
  627. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +3 -3
  628. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +3 -3
  629. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +3 -3
  630. data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +6 -6
  631. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +3 -3
  632. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +57 -4
  633. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +3 -3
  634. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +3 -3
  635. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +3 -3
  636. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +3 -3
  637. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +3 -3
  638. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +3 -3
  639. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +3 -3
  640. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +3 -3
  641. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +3 -3
  642. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +3 -3
  643. data/vendor/local/share/doc/groonga/ja/html/reference/functions/cast_loose.html +3 -3
  644. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +3 -3
  645. data/vendor/local/share/doc/groonga/ja/html/reference/functions/fuzzy_search.html +3 -3
  646. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +11 -19
  647. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +3 -3
  648. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +3 -3
  649. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +3 -3
  650. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +3 -3
  651. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +3 -3
  652. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_records.html +3 -3
  653. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +3 -3
  654. data/vendor/local/share/doc/groonga/ja/html/reference/functions/math_abs.html +3 -3
  655. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +3 -3
  656. data/vendor/local/share/doc/groonga/ja/html/reference/functions/number_classify.html +3 -3
  657. data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +3 -3
  658. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +3 -3
  659. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +3 -3
  660. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +3 -3
  661. data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_length.html +3 -3
  662. data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_substring.html +3 -3
  663. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +3 -3
  664. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day.html +3 -3
  665. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day_of_week.html +3 -3
  666. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_hour.html +3 -3
  667. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_minute.html +3 -3
  668. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_month.html +3 -3
  669. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_second.html +3 -3
  670. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_week.html +3 -3
  671. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_year.html +3 -3
  672. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_find.html +3 -3
  673. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_new.html +3 -3
  674. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +3 -3
  675. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_slice.html +3 -3
  676. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +3 -3
  677. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +3 -3
  678. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +3 -3
  679. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +3 -3
  680. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +3 -3
  681. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +3 -3
  682. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_auto.html +3 -3
  683. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc100.html +3 -3
  684. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc51.html +3 -3
  685. data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +3 -3
  686. data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +3 -3
  687. data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +3 -3
  688. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +3 -3
  689. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +3 -3
  690. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +3 -3
  691. data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +3 -3
  692. data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +3 -3
  693. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +3 -3
  694. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +3 -3
  695. data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +3 -3
  696. data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +3 -3
  697. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +3 -3
  698. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +3 -3
  699. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +3 -3
  700. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +3 -3
  701. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +3 -3
  702. data/vendor/local/share/doc/groonga/ja/html/reference/token_filter/summary.html +3 -3
  703. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +7 -7
  704. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_nfkc100.html +3 -3
  705. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stem.html +3 -3
  706. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stop_word.html +3 -3
  707. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizer/summary.html +3 -3
  708. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +9 -6
  709. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram.html +3 -3
  710. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank.html +3 -3
  711. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +3 -3
  712. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +3 -3
  713. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +3 -3
  714. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol.html +3 -3
  715. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +3 -3
  716. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +3 -3
  717. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit.html +3 -3
  718. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit_null.html +3 -3
  719. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_mecab.html +8 -8
  720. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_ngram.html +998 -0
  721. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_pattern.html +240 -0
  722. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_regexp.html +21 -21
  723. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_table.html +242 -0
  724. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_trigram.html +20 -20
  725. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_unigram.html +15 -15
  726. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +3 -3
  727. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +3 -3
  728. data/vendor/local/share/doc/groonga/ja/html/reference/window_function.html +3 -3
  729. data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/record_number.html +3 -3
  730. data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_count.html +3 -3
  731. data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_record_number.html +3 -3
  732. data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_sum.html +3 -3
  733. data/vendor/local/share/doc/groonga/ja/html/search.html +3 -3
  734. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  735. data/vendor/local/share/doc/groonga/ja/html/server.html +3 -3
  736. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +3 -3
  737. data/vendor/local/share/doc/groonga/ja/html/server/http.html +3 -3
  738. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +3 -3
  739. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +3 -3
  740. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +3 -3
  741. data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +3 -3
  742. data/vendor/local/share/doc/groonga/ja/html/server/package.html +3 -3
  743. data/vendor/local/share/doc/groonga/ja/html/spec.html +3 -3
  744. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +3 -3
  745. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +3 -3
  746. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +3 -3
  747. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +3 -3
  748. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/how_to_analyze_error_message.html +3 -3
  749. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +3 -3
  750. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +3 -3
  751. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +3 -3
  752. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +3 -3
  753. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +3 -3
  754. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +3 -3
  755. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +3 -3
  756. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +64 -6
  757. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +37 -4
  758. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +3 -3
  759. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +3 -3
  760. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +3 -3
  761. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +3 -3
  762. data/vendor/local/share/groonga/COPYING +502 -0
  763. data/vendor/local/share/groonga/mruby/LEGAL +58 -54
  764. data/vendor/local/share/license/mruby/AUTHORS +6 -2
  765. data/vendor/local/share/license/mruby/LEGAL +1 -1
  766. data/vendor/local/share/license/mruby/{MITL → LICENSE} +1 -1
  767. data/vendor/local/share/license/mruby/README.md +3 -3
  768. data/vendor/local/share/license/rapidjson/license.txt +57 -0
  769. metadata +126 -60
@@ -5,7 +5,7 @@
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
6
6
  <head>
7
7
  <meta charset="utf-8" />
8
- <title>7.8.14. TokenTrigram &#8212; Groonga v9.0.2ドキュメント</title>
8
+ <title>7.8.17. TokenTrigram &#8212; Groonga v9.0.6ドキュメント</title>
9
9
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
10
10
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
11
11
 
@@ -19,8 +19,8 @@
19
19
  <link rel="shortcut icon" href="../../_static/favicon.ico"/>
20
20
  <link rel="index" title="索引" href="../../genindex.html" />
21
21
  <link rel="search" title="検索" href="../../search.html" />
22
- <link rel="next" title="7.8.15. TokenUnigram" href="token_unigram.html" />
23
- <link rel="prev" title="7.8.13. TokenRegexp" href="token_regexp.html" />
22
+ <link rel="next" title="7.8.18. TokenUnigram" href="token_unigram.html" />
23
+ <link rel="prev" title="7.8.16. TokenTable" href="token_table.html" />
24
24
  </head><body>
25
25
  <div class="header">
26
26
  <h1 class="title">
@@ -46,12 +46,12 @@
46
46
  <a href="../../genindex.html" title="総合索引"
47
47
  accesskey="I">索引</a></li>
48
48
  <li class="right" >
49
- <a href="token_unigram.html" title="7.8.15. TokenUnigram"
49
+ <a href="token_unigram.html" title="7.8.18. TokenUnigram"
50
50
  accesskey="N">次へ</a> |</li>
51
51
  <li class="right" >
52
- <a href="token_regexp.html" title="7.8.13. TokenRegexp"
52
+ <a href="token_table.html" title="7.8.16. TokenTable"
53
53
  accesskey="P">前へ</a> |</li>
54
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
54
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
55
55
  <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> &#187;</li>
56
56
  <li class="nav-item nav-item-2"><a href="../tokenizers.html" accesskey="U">7.8. トークナイザー</a> &#187;</li>
57
57
  </ul>
@@ -63,20 +63,20 @@
63
63
  <div class="body" role="main">
64
64
 
65
65
  <div class="section" id="tokentrigram">
66
- <span id="token-trigram"></span><h1>7.8.14. <code class="docutils literal notranslate"><span class="pre">TokenTrigram</span></code><a class="headerlink" href="#tokentrigram" title="このヘッドラインへのパーマリンク">¶</a></h1>
66
+ <span id="token-trigram"></span><h1>7.8.17. <code class="docutils literal notranslate"><span class="pre">TokenTrigram</span></code><a class="headerlink" href="#tokentrigram" title="このヘッドラインへのパーマリンク">¶</a></h1>
67
67
  <div class="section" id="summary">
68
- <h2>7.8.14.1. 概要<a class="headerlink" href="#summary" title="このヘッドラインへのパーマリンク">¶</a></h2>
68
+ <h2>7.8.17.1. 概要<a class="headerlink" href="#summary" title="このヘッドラインへのパーマリンク">¶</a></h2>
69
69
  <p><code class="docutils literal notranslate"><span class="pre">TokenTrigram</span></code> は <a class="reference internal" href="token_bigram.html#token-bigram"><span class="std std-ref">TokenBigram</span></a> と似ています。違いはトークンの単位です。</p>
70
70
  </div>
71
71
  <div class="section" id="syntax">
72
- <h2>7.8.14.2. 構文<a class="headerlink" href="#syntax" title="このヘッドラインへのパーマリンク">¶</a></h2>
72
+ <h2>7.8.17.2. 構文<a class="headerlink" href="#syntax" title="このヘッドラインへのパーマリンク">¶</a></h2>
73
73
  <p><code class="docutils literal notranslate"><span class="pre">TokenTrigram</span></code> には、引数がありません。</p>
74
74
  <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>TokenTrigram
75
75
  </pre></div>
76
76
  </div>
77
77
  </div>
78
78
  <div class="section" id="usage">
79
- <h2>7.8.14.3. 使い方<a class="headerlink" href="#usage" title="このヘッドラインへのパーマリンク">¶</a></h2>
79
+ <h2>7.8.17.3. 使い方<a class="headerlink" href="#usage" title="このヘッドラインへのパーマリンク">¶</a></h2>
80
80
  <p>ノーマライザーを使っている場合は <code class="docutils literal notranslate"><span class="pre">TokenTrigram</span></code> はASCIIの文字には空白区切りのようなトークナイズ方法を使います。非ASCII文字にはトリグラムのトークナイズ方法を使います。</p>
81
81
  <p><code class="docutils literal notranslate"><span class="pre">TokenTrigram</span></code> が非ASCII文字をトークナイズすると、以下の例のように <code class="docutils literal notranslate"><span class="pre">TokenTrigram</span></code> は各トークンが3文字となります。</p>
82
82
  <p>実行例:</p>
@@ -139,20 +139,20 @@
139
139
  <div class="sphinxsidebarwrapper">
140
140
  <h3><a href="../../index.html">目次</a></h3>
141
141
  <ul>
142
- <li><a class="reference internal" href="#">7.8.14. <code class="docutils literal notranslate"><span class="pre">TokenTrigram</span></code></a><ul>
143
- <li><a class="reference internal" href="#summary">7.8.14.1. 概要</a></li>
144
- <li><a class="reference internal" href="#syntax">7.8.14.2. 構文</a></li>
145
- <li><a class="reference internal" href="#usage">7.8.14.3. 使い方</a></li>
142
+ <li><a class="reference internal" href="#">7.8.17. <code class="docutils literal notranslate"><span class="pre">TokenTrigram</span></code></a><ul>
143
+ <li><a class="reference internal" href="#summary">7.8.17.1. 概要</a></li>
144
+ <li><a class="reference internal" href="#syntax">7.8.17.2. 構文</a></li>
145
+ <li><a class="reference internal" href="#usage">7.8.17.3. 使い方</a></li>
146
146
  </ul>
147
147
  </li>
148
148
  </ul>
149
149
 
150
150
  <h4>前のトピックへ</h4>
151
- <p class="topless"><a href="token_regexp.html"
152
- title="前の章へ">7.8.13. <code class="docutils literal notranslate"><span class="pre">TokenRegexp</span></code></a></p>
151
+ <p class="topless"><a href="token_table.html"
152
+ title="前の章へ">7.8.16. <code class="docutils literal notranslate"><span class="pre">TokenTable</span></code></a></p>
153
153
  <h4>次のトピックへ</h4>
154
154
  <p class="topless"><a href="token_unigram.html"
155
- title="次の章へ">7.8.15. <code class="docutils literal notranslate"><span class="pre">TokenUnigram</span></code></a></p>
155
+ title="次の章へ">7.8.18. <code class="docutils literal notranslate"><span class="pre">TokenUnigram</span></code></a></p>
156
156
  <div id="searchbox" style="display: none" role="search">
157
157
  <h3>クイック検索</h3>
158
158
  <div class="searchformwrapper">
@@ -174,12 +174,12 @@
174
174
  <a href="../../genindex.html" title="総合索引"
175
175
  >索引</a></li>
176
176
  <li class="right" >
177
- <a href="token_unigram.html" title="7.8.15. TokenUnigram"
177
+ <a href="token_unigram.html" title="7.8.18. TokenUnigram"
178
178
  >次へ</a> |</li>
179
179
  <li class="right" >
180
- <a href="token_regexp.html" title="7.8.13. TokenRegexp"
180
+ <a href="token_table.html" title="7.8.16. TokenTable"
181
181
  >前へ</a> |</li>
182
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
182
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
183
183
  <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> &#187;</li>
184
184
  <li class="nav-item nav-item-2"><a href="../tokenizers.html" >7.8. トークナイザー</a> &#187;</li>
185
185
  </ul>
@@ -5,7 +5,7 @@
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
6
6
  <head>
7
7
  <meta charset="utf-8" />
8
- <title>7.8.15. TokenUnigram &#8212; Groonga v9.0.2ドキュメント</title>
8
+ <title>7.8.18. TokenUnigram &#8212; Groonga v9.0.6ドキュメント</title>
9
9
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
10
10
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
11
11
 
@@ -20,7 +20,7 @@
20
20
  <link rel="index" title="索引" href="../../genindex.html" />
21
21
  <link rel="search" title="検索" href="../../search.html" />
22
22
  <link rel="next" title="7.9. トークンフィルター" href="../token_filters.html" />
23
- <link rel="prev" title="7.8.14. TokenTrigram" href="token_trigram.html" />
23
+ <link rel="prev" title="7.8.17. TokenTrigram" href="token_trigram.html" />
24
24
  </head><body>
25
25
  <div class="header">
26
26
  <h1 class="title">
@@ -49,9 +49,9 @@
49
49
  <a href="../token_filters.html" title="7.9. トークンフィルター"
50
50
  accesskey="N">次へ</a> |</li>
51
51
  <li class="right" >
52
- <a href="token_trigram.html" title="7.8.14. TokenTrigram"
52
+ <a href="token_trigram.html" title="7.8.17. TokenTrigram"
53
53
  accesskey="P">前へ</a> |</li>
54
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
54
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
55
55
  <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> &#187;</li>
56
56
  <li class="nav-item nav-item-2"><a href="../tokenizers.html" accesskey="U">7.8. トークナイザー</a> &#187;</li>
57
57
  </ul>
@@ -63,20 +63,20 @@
63
63
  <div class="body" role="main">
64
64
 
65
65
  <div class="section" id="tokenunigram">
66
- <span id="token-unigram"></span><h1>7.8.15. <code class="docutils literal notranslate"><span class="pre">TokenUnigram</span></code><a class="headerlink" href="#tokenunigram" title="このヘッドラインへのパーマリンク">¶</a></h1>
66
+ <span id="token-unigram"></span><h1>7.8.18. <code class="docutils literal notranslate"><span class="pre">TokenUnigram</span></code><a class="headerlink" href="#tokenunigram" title="このヘッドラインへのパーマリンク">¶</a></h1>
67
67
  <div class="section" id="summary">
68
- <h2>7.8.15.1. 概要<a class="headerlink" href="#summary" title="このヘッドラインへのパーマリンク">¶</a></h2>
68
+ <h2>7.8.18.1. 概要<a class="headerlink" href="#summary" title="このヘッドラインへのパーマリンク">¶</a></h2>
69
69
  <p><code class="docutils literal notranslate"><span class="pre">TokenUnigram</span></code> は <a class="reference internal" href="token_bigram.html#token-bigram"><span class="std std-ref">TokenBigram</span></a> と似ています。違いはトークンの単位です。</p>
70
70
  </div>
71
71
  <div class="section" id="syntax">
72
- <h2>7.8.15.2. 構文<a class="headerlink" href="#syntax" title="このヘッドラインへのパーマリンク">¶</a></h2>
72
+ <h2>7.8.18.2. 構文<a class="headerlink" href="#syntax" title="このヘッドラインへのパーマリンク">¶</a></h2>
73
73
  <p><code class="docutils literal notranslate"><span class="pre">TokenUnigram</span></code> には、引数がありません。</p>
74
74
  <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>TokenUnigram
75
75
  </pre></div>
76
76
  </div>
77
77
  </div>
78
78
  <div class="section" id="usage">
79
- <h2>7.8.15.3. 使い方<a class="headerlink" href="#usage" title="このヘッドラインへのパーマリンク">¶</a></h2>
79
+ <h2>7.8.18.3. 使い方<a class="headerlink" href="#usage" title="このヘッドラインへのパーマリンク">¶</a></h2>
80
80
  <p>ノーマライザーを使っている場合は <code class="docutils literal notranslate"><span class="pre">TokenUnigram</span></code> はASCIIの文字には空白区切りのようなトークナイズ方法を使います。非ASCII文字にはユニグラムのトークナイズ方法を使います。</p>
81
81
  <p><code class="docutils literal notranslate"><span class="pre">TokenUnigram</span></code> が非ASCII文字をトークナイズすると、以下の例のように <code class="docutils literal notranslate"><span class="pre">TokenUnigram</span></code> は各トークンが1文字となります。</p>
82
82
  <p>実行例:</p>
@@ -139,17 +139,17 @@
139
139
  <div class="sphinxsidebarwrapper">
140
140
  <h3><a href="../../index.html">目次</a></h3>
141
141
  <ul>
142
- <li><a class="reference internal" href="#">7.8.15. <code class="docutils literal notranslate"><span class="pre">TokenUnigram</span></code></a><ul>
143
- <li><a class="reference internal" href="#summary">7.8.15.1. 概要</a></li>
144
- <li><a class="reference internal" href="#syntax">7.8.15.2. 構文</a></li>
145
- <li><a class="reference internal" href="#usage">7.8.15.3. 使い方</a></li>
142
+ <li><a class="reference internal" href="#">7.8.18. <code class="docutils literal notranslate"><span class="pre">TokenUnigram</span></code></a><ul>
143
+ <li><a class="reference internal" href="#summary">7.8.18.1. 概要</a></li>
144
+ <li><a class="reference internal" href="#syntax">7.8.18.2. 構文</a></li>
145
+ <li><a class="reference internal" href="#usage">7.8.18.3. 使い方</a></li>
146
146
  </ul>
147
147
  </li>
148
148
  </ul>
149
149
 
150
150
  <h4>前のトピックへ</h4>
151
151
  <p class="topless"><a href="token_trigram.html"
152
- title="前の章へ">7.8.14. <code class="docutils literal notranslate"><span class="pre">TokenTrigram</span></code></a></p>
152
+ title="前の章へ">7.8.17. <code class="docutils literal notranslate"><span class="pre">TokenTrigram</span></code></a></p>
153
153
  <h4>次のトピックへ</h4>
154
154
  <p class="topless"><a href="../token_filters.html"
155
155
  title="次の章へ">7.9. トークンフィルター</a></p>
@@ -177,9 +177,9 @@
177
177
  <a href="../token_filters.html" title="7.9. トークンフィルター"
178
178
  >次へ</a> |</li>
179
179
  <li class="right" >
180
- <a href="token_trigram.html" title="7.8.14. TokenTrigram"
180
+ <a href="token_trigram.html" title="7.8.17. TokenTrigram"
181
181
  >前へ</a> |</li>
182
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
182
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
183
183
  <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> &#187;</li>
184
184
  <li class="nav-item nav-item-2"><a href="../tokenizers.html" >7.8. トークナイザー</a> &#187;</li>
185
185
  </ul>
@@ -5,7 +5,7 @@
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
6
6
  <head>
7
7
  <meta charset="utf-8" />
8
- <title>7.24. チューニング &#8212; Groonga v9.0.2ドキュメント</title>
8
+ <title>7.24. チューニング &#8212; Groonga v9.0.6ドキュメント</title>
9
9
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
10
10
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
11
11
 
@@ -51,7 +51,7 @@
51
51
  <li class="right" >
52
52
  <a href="log.html" title="7.23. ログ"
53
53
  accesskey="P">前へ</a> |</li>
54
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
54
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
55
55
  <li class="nav-item nav-item-1"><a href="../reference.html" accesskey="U">7. リファレンスマニュアル</a> &#187;</li>
56
56
  </ul>
57
57
  </div>
@@ -230,7 +230,7 @@ vm.max_map_count = 131072
230
230
  <li class="right" >
231
231
  <a href="log.html" title="7.23. ログ"
232
232
  >前へ</a> |</li>
233
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
233
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
234
234
  <li class="nav-item nav-item-1"><a href="../reference.html" >7. リファレンスマニュアル</a> &#187;</li>
235
235
  </ul>
236
236
  </div>
@@ -5,7 +5,7 @@
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
6
6
  <head>
7
7
  <meta charset="utf-8" />
8
- <title>7.4. データ型 &#8212; Groonga v9.0.2ドキュメント</title>
8
+ <title>7.4. データ型 &#8212; Groonga v9.0.6ドキュメント</title>
9
9
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
10
10
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
11
11
 
@@ -51,7 +51,7 @@
51
51
  <li class="right" >
52
52
  <a href="commands/truncate.html" title="7.3.67. truncate"
53
53
  accesskey="P">前へ</a> |</li>
54
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
54
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
55
55
  <li class="nav-item nav-item-1"><a href="../reference.html" accesskey="U">7. リファレンスマニュアル</a> &#187;</li>
56
56
  </ul>
57
57
  </div>
@@ -235,7 +235,7 @@
235
235
  <li class="right" >
236
236
  <a href="commands/truncate.html" title="7.3.67. truncate"
237
237
  >前へ</a> |</li>
238
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
238
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
239
239
  <li class="nav-item nav-item-1"><a href="../reference.html" >7. リファレンスマニュアル</a> &#187;</li>
240
240
  </ul>
241
241
  </div>
@@ -5,7 +5,7 @@
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
6
6
  <head>
7
7
  <meta charset="utf-8" />
8
- <title>7.16. ウィンドウ関数 &#8212; Groonga v9.0.2ドキュメント</title>
8
+ <title>7.16. ウィンドウ関数 &#8212; Groonga v9.0.6ドキュメント</title>
9
9
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
10
10
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
11
11
 
@@ -51,7 +51,7 @@
51
51
  <li class="right" >
52
52
  <a href="functions/vector_slice.html" title="7.15.34. vector_slice"
53
53
  accesskey="P">前へ</a> |</li>
54
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
54
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
55
55
  <li class="nav-item nav-item-1"><a href="../reference.html" accesskey="U">7. リファレンスマニュアル</a> &#187;</li>
56
56
  </ul>
57
57
  </div>
@@ -117,7 +117,7 @@
117
117
  <li class="right" >
118
118
  <a href="functions/vector_slice.html" title="7.15.34. vector_slice"
119
119
  >前へ</a> |</li>
120
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
120
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
121
121
  <li class="nav-item nav-item-1"><a href="../reference.html" >7. リファレンスマニュアル</a> &#187;</li>
122
122
  </ul>
123
123
  </div>
@@ -5,7 +5,7 @@
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
6
6
  <head>
7
7
  <meta charset="utf-8" />
8
- <title>7.16.1. record_number &#8212; Groonga v9.0.2ドキュメント</title>
8
+ <title>7.16.1. record_number &#8212; Groonga v9.0.6ドキュメント</title>
9
9
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
10
10
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
11
11
 
@@ -51,7 +51,7 @@
51
51
  <li class="right" >
52
52
  <a href="../window_function.html" title="7.16. ウィンドウ関数"
53
53
  accesskey="P">前へ</a> |</li>
54
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
54
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
55
55
  <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> &#187;</li>
56
56
  <li class="nav-item nav-item-2"><a href="../window_function.html" accesskey="U">7.16. ウィンドウ関数</a> &#187;</li>
57
57
  </ul>
@@ -134,7 +134,7 @@ instead.</p>
134
134
  <li class="right" >
135
135
  <a href="../window_function.html" title="7.16. ウィンドウ関数"
136
136
  >前へ</a> |</li>
137
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
137
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
138
138
  <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> &#187;</li>
139
139
  <li class="nav-item nav-item-2"><a href="../window_function.html" >7.16. ウィンドウ関数</a> &#187;</li>
140
140
  </ul>
@@ -5,7 +5,7 @@
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
6
6
  <head>
7
7
  <meta charset="utf-8" />
8
- <title>7.16.2. window_count &#8212; Groonga v9.0.2ドキュメント</title>
8
+ <title>7.16.2. window_count &#8212; Groonga v9.0.6ドキュメント</title>
9
9
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
10
10
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
11
11
 
@@ -51,7 +51,7 @@
51
51
  <li class="right" >
52
52
  <a href="record_number.html" title="7.16.1. record_number"
53
53
  accesskey="P">前へ</a> |</li>
54
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
54
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
55
55
  <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> &#187;</li>
56
56
  <li class="nav-item nav-item-2"><a href="../window_function.html" accesskey="U">7.16. ウィンドウ関数</a> &#187;</li>
57
57
  </ul>
@@ -133,7 +133,7 @@
133
133
  <li class="right" >
134
134
  <a href="record_number.html" title="7.16.1. record_number"
135
135
  >前へ</a> |</li>
136
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
136
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
137
137
  <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> &#187;</li>
138
138
  <li class="nav-item nav-item-2"><a href="../window_function.html" >7.16. ウィンドウ関数</a> &#187;</li>
139
139
  </ul>
@@ -5,7 +5,7 @@
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
6
6
  <head>
7
7
  <meta charset="utf-8" />
8
- <title>7.16.3. window_record_number &#8212; Groonga v9.0.2ドキュメント</title>
8
+ <title>7.16.3. window_record_number &#8212; Groonga v9.0.6ドキュメント</title>
9
9
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
10
10
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
11
11
 
@@ -51,7 +51,7 @@
51
51
  <li class="right" >
52
52
  <a href="window_count.html" title="7.16.2. window_count"
53
53
  accesskey="P">前へ</a> |</li>
54
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
54
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
55
55
  <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> &#187;</li>
56
56
  <li class="nav-item nav-item-2"><a href="../window_function.html" accesskey="U">7.16. ウィンドウ関数</a> &#187;</li>
57
57
  </ul>
@@ -133,7 +133,7 @@
133
133
  <li class="right" >
134
134
  <a href="window_count.html" title="7.16.2. window_count"
135
135
  >前へ</a> |</li>
136
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
136
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
137
137
  <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> &#187;</li>
138
138
  <li class="nav-item nav-item-2"><a href="../window_function.html" >7.16. ウィンドウ関数</a> &#187;</li>
139
139
  </ul>
@@ -5,7 +5,7 @@
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
6
6
  <head>
7
7
  <meta charset="utf-8" />
8
- <title>7.16.4. window_sum &#8212; Groonga v9.0.2ドキュメント</title>
8
+ <title>7.16.4. window_sum &#8212; Groonga v9.0.6ドキュメント</title>
9
9
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
10
10
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
11
11
 
@@ -51,7 +51,7 @@
51
51
  <li class="right" >
52
52
  <a href="window_record_number.html" title="7.16.3. window_record_number"
53
53
  accesskey="P">前へ</a> |</li>
54
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
54
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
55
55
  <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> &#187;</li>
56
56
  <li class="nav-item nav-item-2"><a href="../window_function.html" accesskey="U">7.16. ウィンドウ関数</a> &#187;</li>
57
57
  </ul>
@@ -133,7 +133,7 @@
133
133
  <li class="right" >
134
134
  <a href="window_record_number.html" title="7.16.3. window_record_number"
135
135
  >前へ</a> |</li>
136
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
136
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
137
137
  <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> &#187;</li>
138
138
  <li class="nav-item nav-item-2"><a href="../window_function.html" >7.16. ウィンドウ関数</a> &#187;</li>
139
139
  </ul>
@@ -5,7 +5,7 @@
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
6
6
  <head>
7
7
  <meta charset="utf-8" />
8
- <title>検索 &#8212; Groonga v9.0.2ドキュメント</title>
8
+ <title>検索 &#8212; Groonga v9.0.6ドキュメント</title>
9
9
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
10
10
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
11
11
 
@@ -48,7 +48,7 @@
48
48
  <li class="right" style="margin-right: 10px">
49
49
  <a href="genindex.html" title="総合索引"
50
50
  accesskey="I">索引</a></li>
51
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
51
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
52
52
  </ul>
53
53
  </div>
54
54
 
@@ -92,7 +92,7 @@
92
92
  <li class="right" style="margin-right: 10px">
93
93
  <a href="genindex.html" title="総合索引"
94
94
  >索引</a></li>
95
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
95
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
96
96
  </ul>
97
97
  </div>
98
98
  <div class="footer" role="contentinfo">
@@ -1 +1 @@
1
- Search.setIndex({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/centos","install/debian","install/docker","install/fedora","install/mac_os_x","install/others","install/solaris","install/ubuntu","install/windows","limitations","news","news/0.x","news/1.0.x","news/1.1.x","news/1.2.x","news/1.3.x","news/2.x","news/3.x","news/4.x","news/5.x","news/6.x","news/senna","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/output_format","reference/command/pretty_print","reference/command/request_id","reference/command/request_timeout","reference/command/return_code","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/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/register","reference/commands/reindex","reference/commands/request_cancel","reference/commands/ruby_eval","reference/commands/ruby_load","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_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/fuzzy_search","reference/functions/geo_distance","reference/functions/geo_in_circle","reference/functions/geo_in_rectangle","reference/functions/highlight_full","reference/functions/highlight_html","reference/functions/html_untag","reference/functions/in_records","reference/functions/in_values","reference/functions/math_abs","reference/functions/now","reference/functions/number_classify","reference/functions/prefix_rk_search","reference/functions/query","reference/functions/rand","reference/functions/snippet_html","reference/functions/string_length","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/log","reference/normalizers","reference/normalizers/normalizer_auto","reference/normalizers/normalizer_nfkc100","reference/normalizers/normalizer_nfkc51","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_nfkc100","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_regexp","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_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.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},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.rst","contribution/report.rst","development.rst","development/travis-ci.rst","index.rst","install.rst","install/centos.rst","install/debian.rst","install/docker.rst","install/fedora.rst","install/mac_os_x.rst","install/others.rst","install/solaris.rst","install/ubuntu.rst","install/windows.rst","limitations.rst","news.rst","news/0.x.rst","news/1.0.x.rst","news/1.1.x.rst","news/1.2.x.rst","news/1.3.x.rst","news/2.x.rst","news/3.x.rst","news/4.x.rst","news/5.x.rst","news/6.x.rst","news/senna.rst","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/output_format.rst","reference/command/pretty_print.rst","reference/command/request_id.rst","reference/command/request_timeout.rst","reference/command/return_code.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/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/register.rst","reference/commands/reindex.rst","reference/commands/request_cancel.rst","reference/commands/ruby_eval.rst","reference/commands/ruby_load.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_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/fuzzy_search.rst","reference/functions/geo_distance.rst","reference/functions/geo_in_circle.rst","reference/functions/geo_in_rectangle.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/math_abs.rst","reference/functions/now.rst","reference/functions/number_classify.rst","reference/functions/prefix_rk_search.rst","reference/functions/query.rst","reference/functions/rand.rst","reference/functions/snippet_html.rst","reference/functions/string_length.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/log.rst","reference/normalizers.rst","reference/normalizers/normalizer_auto.rst","reference/normalizers/normalizer_nfkc100.rst","reference/normalizers/normalizer_nfkc51.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_nfkc100.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_regexp.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_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"],objects:{"":{GRN_COLUMN_NAME_ID:[51,0,1,"c.GRN_COLUMN_NAME_ID"],GRN_COLUMN_NAME_ID_LEN:[51,0,1,"c.GRN_COLUMN_NAME_ID_LEN"],GRN_COLUMN_NAME_KEY:[51,0,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_KEY_LEN:[51,0,1,"c.GRN_COLUMN_NAME_KEY_LEN"],GRN_COLUMN_NAME_NSUBRECS:[51,0,1,"c.GRN_COLUMN_NAME_NSUBRECS"],GRN_COLUMN_NAME_NSUBRECS_LEN:[51,0,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],GRN_COLUMN_NAME_SCORE:[51,0,1,"c.GRN_COLUMN_NAME_SCORE"],GRN_COLUMN_NAME_SCORE_LEN:[51,0,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE:[51,0,1,"c.GRN_COLUMN_NAME_VALUE"],GRN_COLUMN_NAME_VALUE_LEN:[51,0,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],GRN_COMMAND_VERSION_MAX:[52,0,1,"c.GRN_COMMAND_VERSION_MAX"],GRN_COMMAND_VERSION_MIN:[52,0,1,"c.GRN_COMMAND_VERSION_MIN"],GRN_COMMAND_VERSION_STABLE:[52,0,1,"c.GRN_COMMAND_VERSION_STABLE"],GRN_OBJ_APPEND:[65,0,1,"c.GRN_OBJ_APPEND"],GRN_OBJ_COMPARE:[65,0,1,"c.GRN_OBJ_COMPARE"],GRN_OBJ_DECR:[65,0,1,"c.GRN_OBJ_DECR"],GRN_OBJ_GET:[65,0,1,"c.GRN_OBJ_GET"],GRN_OBJ_INCR:[65,0,1,"c.GRN_OBJ_INCR"],GRN_OBJ_LOCK:[65,0,1,"c.GRN_OBJ_LOCK"],GRN_OBJ_PREPEND:[65,0,1,"c.GRN_OBJ_PREPEND"],GRN_OBJ_SET:[65,0,1,"c.GRN_OBJ_SET"],GRN_OBJ_SET_MASK:[65,0,1,"c.GRN_OBJ_SET_MASK"],GRN_OBJ_UNLOCK:[65,0,1,"c.GRN_OBJ_UNLOCK"],GRN_PLUGIN_ERROR:[74,0,1,"c.GRN_PLUGIN_ERROR"],GRN_PLUGIN_FIN:[74,1,1,"c.GRN_PLUGIN_FIN"],GRN_PLUGIN_FREE:[74,0,1,"c.GRN_PLUGIN_FREE"],GRN_PLUGIN_INIT:[74,1,1,"c.GRN_PLUGIN_INIT"],GRN_PLUGIN_LOG:[74,0,1,"c.GRN_PLUGIN_LOG"],GRN_PLUGIN_MALLOC:[74,0,1,"c.GRN_PLUGIN_MALLOC"],GRN_PLUGIN_REALLOC:[74,0,1,"c.GRN_PLUGIN_REALLOC"],GRN_PLUGIN_REGISTER:[74,1,1,"c.GRN_PLUGIN_REGISTER"],grn_builtin_type:[71,2,1,"c.grn_builtin_type"],grn_cache:[50,2,1,"c.grn_cache"],grn_cache_close:[50,1,1,"c.grn_cache_close"],grn_cache_current_get:[50,1,1,"c.grn_cache_current_get"],grn_cache_current_set:[50,1,1,"c.grn_cache_current_set"],grn_cache_get_max_n_entries:[50,1,1,"c.grn_cache_get_max_n_entries"],grn_cache_open:[50,1,1,"c.grn_cache_open"],grn_cache_set_max_n_entries:[50,1,1,"c.grn_cache_set_max_n_entries"],grn_column_create:[51,1,1,"c.grn_column_create"],grn_column_index:[51,1,1,"c.grn_column_index"],grn_column_index_update:[51,1,1,"c.grn_column_index_update"],grn_column_name:[51,1,1,"c.grn_column_name"],grn_column_rename:[51,1,1,"c.grn_column_rename"],grn_column_table:[51,1,1,"c.grn_column_table"],grn_column_truncate:[51,1,1,"c.grn_column_truncate"],grn_command_version:[52,2,1,"c.grn_command_version"],grn_content_type:[53,2,1,"c.grn_content_type"],grn_ctx:[54,2,1,"c.grn_ctx"],grn_ctx_at:[54,1,1,"c.grn_ctx_at"],grn_ctx_close:[54,1,1,"c.grn_ctx_close"],grn_ctx_db:[54,1,1,"c.grn_ctx_db"],grn_ctx_fin:[54,1,1,"c.grn_ctx_fin"],grn_ctx_get:[54,1,1,"c.grn_ctx_get"],grn_ctx_get_all_tables:[54,1,1,"c.grn_ctx_get_all_tables"],grn_ctx_get_command_version:[54,1,1,"c.grn_ctx_get_command_version"],grn_ctx_get_match_escalation_threshold:[64,1,1,"c.grn_ctx_get_match_escalation_threshold"],grn_ctx_get_output_type:[54,1,1,"c.grn_ctx_get_output_type"],grn_ctx_init:[54,1,1,"c.grn_ctx_init"],grn_ctx_is_opened:[54,1,1,"c.grn_ctx_is_opened"],grn_ctx_open:[54,1,1,"c.grn_ctx_open"],grn_ctx_set_command_version:[54,1,1,"c.grn_ctx_set_command_version"],grn_ctx_set_finalizer:[54,1,1,"c.grn_ctx_set_finalizer"],grn_ctx_set_match_escalation_threshold:[64,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_ctx_set_output_type:[54,1,1,"c.grn_ctx_set_output_type"],grn_ctx_use:[54,1,1,"c.grn_ctx_use"],grn_db:[55,2,1,"c.grn_db"],grn_db_create:[55,1,1,"c.grn_db_create"],grn_db_create_optarg:[55,2,1,"c.grn_db_create_optarg"],grn_db_open:[55,1,1,"c.grn_db_open"],grn_db_recover:[55,1,1,"c.grn_db_recover"],grn_db_touch:[55,1,1,"c.grn_db_touch"],grn_db_unmap:[55,1,1,"c.grn_db_unmap"],grn_encoding:[56,2,1,"c.grn_encoding"],grn_encoding_parse:[56,1,1,"c.grn_encoding_parse"],grn_encoding_to_string:[56,1,1,"c.grn_encoding_to_string"],grn_expr_add_var:[57,1,1,"c.grn_expr_add_var"],grn_expr_alloc:[57,1,1,"c.grn_expr_alloc"],grn_expr_append_const:[57,1,1,"c.grn_expr_append_const"],grn_expr_append_const_int:[57,1,1,"c.grn_expr_append_const_int"],grn_expr_append_const_str:[57,1,1,"c.grn_expr_append_const_str"],grn_expr_append_op:[57,1,1,"c.grn_expr_append_op"],grn_expr_close:[57,1,1,"c.grn_expr_close"],grn_expr_compile:[57,1,1,"c.grn_expr_compile"],grn_expr_create:[57,1,1,"c.grn_expr_create"],grn_expr_exec:[57,1,1,"c.grn_expr_exec"],grn_expr_get_keywords:[57,1,1,"c.grn_expr_get_keywords"],grn_expr_get_var_by_offset:[57,1,1,"c.grn_expr_get_var_by_offset"],grn_expr_syntax_escape:[57,1,1,"c.grn_expr_syntax_escape"],grn_expr_syntax_escape_query:[57,1,1,"c.grn_expr_syntax_escape_query"],grn_fin:[73,1,1,"c.grn_fin"],grn_geo_cursor_next:[58,1,1,"c.grn_geo_cursor_next"],grn_geo_cursor_open_in_rectangle:[58,1,1,"c.grn_geo_cursor_open_in_rectangle"],grn_geo_estimate_in_rectangle:[58,1,1,"c.grn_geo_estimate_in_rectangle"],grn_geo_point:[58,2,1,"c.grn_geo_point"],grn_geo_select_in_rectangle:[58,1,1,"c.grn_geo_select_in_rectangle"],grn_get_default_command_version:[52,1,1,"c.grn_get_default_command_version"],grn_get_default_encoding:[56,1,1,"c.grn_get_default_encoding"],grn_get_default_match_escalation_threshold:[64,1,1,"c.grn_get_default_match_escalation_threshold"],grn_get_lock_timeout:[49,1,1,"c.grn_get_lock_timeout"],grn_hook_entry:[59,2,1,"c.grn_hook_entry"],grn_ii:[60,2,1,"c.grn_ii"],grn_ii_buffer:[60,2,1,"c.grn_ii_buffer"],grn_ii_buffer_append:[60,1,1,"c.grn_ii_buffer_append"],grn_ii_buffer_close:[60,1,1,"c.grn_ii_buffer_close"],grn_ii_buffer_commit:[60,1,1,"c.grn_ii_buffer_commit"],grn_ii_buffer_open:[60,1,1,"c.grn_ii_buffer_open"],grn_index_cursor_next:[61,1,1,"c.grn_index_cursor_next"],grn_index_cursor_open:[61,1,1,"c.grn_index_cursor_open"],grn_info_type:[62,2,1,"c.grn_info_type"],grn_init:[73,1,1,"c.grn_init"],grn_inspect:[63,1,1,"c.grn_inspect"],grn_inspect_encoding:[63,1,1,"c.grn_inspect_encoding"],grn_inspect_indented:[63,1,1,"c.grn_inspect_indented"],grn_inspect_limited:[63,1,1,"c.grn_inspect_limited"],grn_inspect_name:[63,1,1,"c.grn_inspect_name"],grn_inspect_query_log_flags:[63,1,1,"c.grn_inspect_query_log_flags"],grn_inspect_type:[63,1,1,"c.grn_inspect_type"],grn_obj:[65,2,1,"c.grn_obj"],grn_obj_add_hook:[59,1,1,"c.grn_obj_add_hook"],grn_obj_cast_by_id:[65,1,1,"c.grn_obj_cast_by_id"],grn_obj_check:[65,1,1,"c.grn_obj_check"],grn_obj_clear_lock:[65,1,1,"c.grn_obj_clear_lock"],grn_obj_close:[65,1,1,"c.grn_obj_close"],grn_obj_column:[65,1,1,"c.grn_obj_column"],grn_obj_db:[55,1,1,"c.grn_obj_db"],grn_obj_defrag:[65,1,1,"c.grn_obj_defrag"],grn_obj_delete_by_id:[65,1,1,"c.grn_obj_delete_by_id"],grn_obj_delete_hook:[59,1,1,"c.grn_obj_delete_hook"],grn_obj_expire:[65,1,1,"c.grn_obj_expire"],grn_obj_get_element_info:[62,1,1,"c.grn_obj_get_element_info"],grn_obj_get_hook:[59,1,1,"c.grn_obj_get_hook"],grn_obj_get_info:[62,1,1,"c.grn_obj_get_info"],grn_obj_get_nhooks:[59,1,1,"c.grn_obj_get_nhooks"],grn_obj_get_range:[65,1,1,"c.grn_obj_get_range"],grn_obj_get_value:[65,1,1,"c.grn_obj_get_value"],grn_obj_get_values:[65,1,1,"c.grn_obj_get_values"],grn_obj_id:[65,1,1,"c.grn_obj_id"],grn_obj_is_builtin:[65,1,1,"c.grn_obj_is_builtin"],grn_obj_is_index_column:[65,1,1,"c.grn_obj_is_index_column"],grn_obj_is_locked:[65,1,1,"c.grn_obj_is_locked"],grn_obj_is_vector_column:[65,1,1,"c.grn_obj_is_vector_column"],grn_obj_lock:[65,1,1,"c.grn_obj_lock"],grn_obj_name:[65,1,1,"c.grn_obj_name"],grn_obj_path:[65,1,1,"c.grn_obj_path"],grn_obj_path_by_id:[65,1,1,"c.grn_obj_path_by_id"],grn_obj_reinit:[65,1,1,"c.grn_obj_reinit"],grn_obj_remove:[65,1,1,"c.grn_obj_remove"],grn_obj_rename:[65,1,1,"c.grn_obj_rename"],grn_obj_search:[67,1,1,"c.grn_obj_search"],grn_obj_set_element_info:[62,1,1,"c.grn_obj_set_element_info"],grn_obj_set_finalizer:[66,1,1,"c.grn_obj_set_finalizer"],grn_obj_set_info:[62,1,1,"c.grn_obj_set_info"],grn_obj_set_value:[65,1,1,"c.grn_obj_set_value"],grn_obj_unlink:[65,1,1,"c.grn_obj_unlink"],grn_obj_unlock:[65,1,1,"c.grn_obj_unlock"],grn_obj_user_data:[72,1,1,"c.grn_obj_user_data"],grn_p:[63,1,1,"c.grn_p"],grn_p_geo_point:[63,1,1,"c.grn_p_geo_point"],grn_p_ii_values:[63,1,1,"c.grn_p_ii_values"],grn_plugin_charlen:[74,1,1,"c.grn_plugin_charlen"],grn_plugin_command_create:[74,1,1,"c.grn_plugin_command_create"],grn_plugin_expr_var_init:[74,1,1,"c.grn_plugin_expr_var_init"],grn_plugin_isspace:[74,1,1,"c.grn_plugin_isspace"],grn_plugin_mutex:[74,2,1,"c.grn_plugin_mutex"],grn_plugin_mutex_close:[74,1,1,"c.grn_plugin_mutex_close"],grn_plugin_mutex_lock:[74,1,1,"c.grn_plugin_mutex_lock"],grn_plugin_mutex_open:[74,1,1,"c.grn_plugin_mutex_open"],grn_plugin_mutex_unlock:[74,1,1,"c.grn_plugin_mutex_unlock"],grn_plugin_proc_alloc:[74,1,1,"c.grn_plugin_proc_alloc"],grn_plugin_proc_get_var:[74,1,1,"c.grn_plugin_proc_get_var"],grn_plugin_proc_get_var_by_offset:[74,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_plugin_win32_base_dir:[74,1,1,"c.grn_plugin_win32_base_dir"],grn_plugin_windows_base_dir:[74,1,1,"c.grn_plugin_windows_base_dir"],grn_proc_create:[66,1,1,"c.grn_proc_create"],grn_proc_func:[66,2,1,"c.grn_proc_func"],grn_proc_get_info:[66,1,1,"c.grn_proc_get_info"],grn_proc_type:[66,2,1,"c.grn_proc_type"],grn_search_optarg:[67,2,1,"c.grn_search_optarg"],grn_set_default_command_version:[52,1,1,"c.grn_set_default_command_version"],grn_set_default_encoding:[56,1,1,"c.grn_set_default_encoding"],grn_set_default_match_escalation_threshold:[64,1,1,"c.grn_set_default_match_escalation_threshold"],grn_set_lock_timeout:[49,1,1,"c.grn_set_lock_timeout"],grn_table_add:[68,1,1,"c.grn_table_add"],grn_table_at:[68,1,1,"c.grn_table_at"],grn_table_columns:[68,1,1,"c.grn_table_columns"],grn_table_create:[68,1,1,"c.grn_table_create"],grn_table_cursor:[69,2,1,"c.grn_table_cursor"],grn_table_cursor_close:[69,1,1,"c.grn_table_cursor_close"],grn_table_cursor_delete:[69,1,1,"c.grn_table_cursor_delete"],grn_table_cursor_get_key:[69,1,1,"c.grn_table_cursor_get_key"],grn_table_cursor_get_value:[69,1,1,"c.grn_table_cursor_get_value"],grn_table_cursor_next:[69,1,1,"c.grn_table_cursor_next"],grn_table_cursor_open:[69,1,1,"c.grn_table_cursor_open"],grn_table_cursor_set_value:[69,1,1,"c.grn_table_cursor_set_value"],grn_table_cursor_table:[69,1,1,"c.grn_table_cursor_table"],grn_table_delete:[68,1,1,"c.grn_table_delete"],grn_table_delete_by_id:[68,1,1,"c.grn_table_delete_by_id"],grn_table_difference:[68,1,1,"c.grn_table_difference"],grn_table_get:[68,1,1,"c.grn_table_get"],grn_table_get_key:[68,1,1,"c.grn_table_get_key"],grn_table_group:[68,1,1,"c.grn_table_group"],grn_table_group_flags:[68,2,1,"c.grn_table_group_flags"],grn_table_group_result:[68,2,1,"c.grn_table_group_result"],grn_table_lcp_search:[68,1,1,"c.grn_table_lcp_search"],grn_table_rename:[68,1,1,"c.grn_table_rename"],grn_table_setoperation:[68,1,1,"c.grn_table_setoperation"],grn_table_size:[68,1,1,"c.grn_table_size"],grn_table_sort:[68,1,1,"c.grn_table_sort"],grn_table_sort_flags:[68,2,1,"c.grn_table_sort_flags"],grn_table_sort_key:[68,2,1,"c.grn_table_sort_key"],grn_table_truncate:[68,1,1,"c.grn_table_truncate"],grn_table_update:[68,1,1,"c.grn_table_update"],grn_table_update_by_id:[68,1,1,"c.grn_table_update_by_id"],grn_thread_get_limit:[70,1,1,"c.grn_thread_get_limit"],grn_thread_get_limit_func:[70,2,1,"c.grn_thread_get_limit_func"],grn_thread_set_get_limit_func:[70,1,1,"c.grn_thread_set_get_limit_func"],grn_thread_set_limit:[70,1,1,"c.grn_thread_set_limit"],grn_thread_set_limit_func:[70,2,1,"c.grn_thread_set_limit_func"],grn_thread_set_set_limit_func:[70,1,1,"c.grn_thread_set_set_limit_func"],grn_type_create:[71,1,1,"c.grn_type_create"],grn_user_data:[72,2,1,"c.grn_user_data"]},"groonga-benchmark":{"--dir":[154,4,1,"cmdoption-groonga-benchmark-dir"],"--ftp":[154,4,1,"cmdoption-groonga-benchmark-ftp"],"--groonga":[154,4,1,"cmdoption-groonga-benchmark-groonga"],"--host":[154,4,1,"cmdoption-groonga-benchmark-i"],"--log-output-dir":[154,4,1,"cmdoption-groonga-benchmark-log-output-dir"],"--port":[154,4,1,"cmdoption-groonga-benchmark-p"],"--protocol":[154,4,1,"cmdoption-groonga-benchmark-protocol"],"-i":[154,4,1,"cmdoption-groonga-benchmark-i"],"-p":[154,4,1,"cmdoption-groonga-benchmark-p"],db:[154,4,1,"cmdoption-groonga-benchmark-arg-db"],script:[154,4,1,"cmdoption-groonga-benchmark-arg-script"]},"groonga-suggest-httpd":{"--daemon":[158,4,1,"cmdoption-groonga-suggest-httpd-d"],"--disable-max-fd-check":[158,4,1,"cmdoption-groonga-suggest-httpd-disable-max-fd-check"],"--log-base-path":[158,4,1,"cmdoption-groonga-suggest-httpd-l"],"--n-lines-per-log-file":[158,4,1,"cmdoption-groonga-suggest-httpd-n-lines-per-log-file"],"--n-threads":[158,4,1,"cmdoption-groonga-suggest-httpd-t"],"--port":[158,4,1,"cmdoption-groonga-suggest-httpd-p"],"--receive-endpoint":[158,4,1,"cmdoption-groonga-suggest-httpd-r"],"--send-endpoint":[158,4,1,"cmdoption-groonga-suggest-httpd-s"],"-d":[158,4,1,"cmdoption-groonga-suggest-httpd-d"],"-l":[158,4,1,"cmdoption-groonga-suggest-httpd-l"],"-p":[158,4,1,"cmdoption-groonga-suggest-httpd-p"],"-r":[158,4,1,"cmdoption-groonga-suggest-httpd-r"],"-s":[158,4,1,"cmdoption-groonga-suggest-httpd-s"],"-t":[158,4,1,"cmdoption-groonga-suggest-httpd-t"]},"groonga-suggest-learner":{"--daemon":[159,4,1,"cmdoption-groonga-suggest-learner-d"],"--log-base-path":[159,4,1,"cmdoption-groonga-suggest-learner-l"],"--log-level":[159,4,1,"cmdoption-groonga-suggest-learner-log-level"],"--log-path":[159,4,1,"cmdoption-groonga-suggest-learner-log-path"],"--receive-endpoint":[159,4,1,"cmdoption-groonga-suggest-learner-r"],"--send-endpoint":[159,4,1,"cmdoption-groonga-suggest-learner-s"],"-d":[159,4,1,"cmdoption-groonga-suggest-learner-d"],"-l":[159,4,1,"cmdoption-groonga-suggest-learner-l"],"-r":[159,4,1,"cmdoption-groonga-suggest-learner-r"],"-s":[159,4,1,"cmdoption-groonga-suggest-learner-s"]},grn_db_create_optarg:{builtin_type_names:[55,3,1,"c.grn_db_create_optarg.builtin_type_names"],n_builtin_type_names:[55,3,1,"c.grn_db_create_optarg.n_builtin_type_names"]},grnslap:{"-P":[152,4,1,"cmdoption-grnslap-p"],"-m":[152,4,1,"cmdoption-grnslap-m"],dest:[152,4,1,"cmdoption-grnslap-arg-dest"]},groonga:{"--address":[153,4,1,"cmdoption-groonga-a"],"--bind-address":[153,4,1,"cmdoption-groonga-bind-address"],"--cache-base-path":[153,4,1,"cmdoption-groonga-cache-base-path"],"--cache-limit":[153,4,1,"cmdoption-groonga-cache-limit"],"--config-path":[153,4,1,"cmdoption-groonga-config-path"],"--default-match-escalation-threshold":[153,4,1,"cmdoption-groonga-default-match-escalation-threshold"],"--default-request-timeout":[153,4,1,"cmdoption-groonga-default-request-timeout"],"--document-root":[153,4,1,"cmdoption-groonga-document-root"],"--encoding":[153,4,1,"cmdoption-groonga-e"],"--help":[153,4,1,"cmdoption-groonga-h"],"--log-flags":[153,4,1,"cmdoption-groonga-log-flags"],"--log-level":[153,4,1,"cmdoption-groonga-l"],"--log-path":[153,4,1,"cmdoption-groonga-log-path"],"--log-rotate-threshold-size":[153,4,1,"cmdoption-groonga-log-rotate-threshold-size"],"--max-threads":[153,4,1,"cmdoption-groonga-t"],"--pid-path":[153,4,1,"cmdoption-groonga-pid-path"],"--port":[153,4,1,"cmdoption-groonga-p"],"--protocol":[153,4,1,"cmdoption-groonga-protocol"],"--query-log-path":[153,4,1,"cmdoption-groonga-query-log-path"],"--query-log-rotate-threshold-size":[153,4,1,"cmdoption-groonga-query-log-rotate-threshold-size"],"--server-id":[153,4,1,"cmdoption-groonga-i"],"-a":[153,4,1,"cmdoption-groonga-a"],"-c":[153,4,1,"cmdoption-groonga-c"],"-d":[153,4,1,"cmdoption-groonga-d"],"-e":[153,4,1,"cmdoption-groonga-e"],"-h":[153,4,1,"cmdoption-groonga-h"],"-i":[153,4,1,"cmdoption-groonga-i"],"-l":[153,4,1,"cmdoption-groonga-l"],"-n":[153,4,1,"cmdoption-groonga-n"],"-p":[153,4,1,"cmdoption-groonga-p"],"-s":[153,4,1,"cmdoption-groonga-s"],"-t":[153,4,1,"cmdoption-groonga-t"],command:[153,4,1,"cmdoption-groonga-arg-command"],dest:[153,4,1,"cmdoption-groonga-arg-dest"]}},objnames:{"0":["c","macro","C \u306e\u30de\u30af\u30ed"],"1":["c","function","C \u306e\u95a2\u6570"],"2":["c","type","C \u306e\u30c7\u30fc\u30bf\u578b"],"3":["c","member","C \u306e\u30e1\u30f3\u30d0\u5909\u6570"],"4":["std","cmdoption","\u30d7\u30ed\u30b0\u30e9\u30e0\u30aa\u30d7\u30b7\u30e7\u30f3"]},objtypes:{"0":"c:macro","1":"c:function","2":"c:type","3":"c:member","4":"std:cmdoption"},terms:{"!!":[105,155,228,229,230,231,232,233,234,235,267,271],"!(":34,"!(n":197,"!)":155,"!=":177,"![":236,"!\"":[40,63,83,112,114,115,135,146,155,171,191,196,197,198,211,228,229,230,231,232,233,234,235,252,265,267,268,270,271,272],"!\\":[196,197],"!condition":197,"!xxx":42,"#'":153,"#<":63,"#=":63,"#[":43,"#arguments":43,"#command":43,"#delete":43,"#each":43,"#github":34,"#groonga":[209,271],"#group":43,"#i":34,"#index":43,"#inspect":43,"#key":43,"#name":43,"#proxy":155,"#remove":43,"#scalar":43,"#select":34,"#set":154,"#value":43,"#vector":43,"#with":43,"#worker":155,"#{":[34,199],"#{l":199,"$(":[24,25,27,28,31],"$\"":177,"$groonga":12,"$home":12,"$prefix":38,"${":[17,44,112,114,115,123,135,158,177,197,210,214,242],"%'":42,"%.*":63,"%\"":210,"%\\":32,"%post":40,"& (":[34,197],"& _":275,"& b":[34,197],"& x":42,"& y":41,"&!":197,"&&":[43,135,182,197,261,273],"&..":272,"&arg":210,"&filter":131,"&frequency":158,"&gt":[168,169,179],"&lt":[168,169,179],"&n":158,"&q":158,"&query":272,"&request":[44,131],"&s":158,"&t":158,"' -":28,"' \"":236,"'(":153,"')":[42,152,153],"',":[42,65,157],"'-":[41,153],"'.":[17,65],"'..":41,"';":153,"'='":153,"'>":170,"'\"":[34,40,41],"'\u3002":153,"'column":40,"'config":153,"'fixed":43,"'grn":56,"'hay":11,"'haystack":11,"'ja":17,"'localhost":[152,153],"'m":[198,224,270,271],"'n":153,"'needle":11,"'now":271,"'or":40,"'pid":153,"'query":40,"'s":[17,83,92,105,112,114,115,135,182,196,197,198,250],"'t":[49,53,54,55,57,65,123,155],"'tokenmecab":34,"'ve":271,"'vector":43,"(!":11,"(&":[43,54,57,63],"('":[78,153,268],"((":[63,80,135],"((x":243,"()":[3,34,35,36,37,38,39,40,41,42,43,44,49,50,53,54,55,57,61,63,65,69,70,73,74,112,114,115,145,163,165,166,167,174,176,178,211,245,246,247,248,275],"(+":34,"(-":[63,197],"(.":12,"(..":[41,44],"(<":11,"(=":[11,87,197],"(>":[11,34],"(?":[43,236],"([":[178,236],"(\"":[34,40,41,56,63,112,115,131,135,153,165,168,169,177,179,202,223,224,225,236,238,262,268],"(\u300c":12,"(_":[43,44,115,138,171,176,197,216,217,219],"(a":21,"(age":161,"(anonymous":104,"(anonymouse":63,"(argument":197,"(arugment":197,"(body":[168,169],"(byte":[51,68],"(categories":34,"(cmp":42,"(column":[34,42,161,168,176,179,211,212,213],"(com":262,"(comments":182,"(condition":171,"(conditions":171,"(content":[34,112,114,115,135,170,179,211],"(created":[114,184],"(ctx":[11,34,50,51,54,57,63,262],"(cutter":14,"(cve":[34,42],"(database":263,"(debian":256,"(default":43,"(drilldown":78,"(fedora":256,"(get":152,"(grn":[34,43,54,57],"(groonga":70,"(html":170,"(ii":34,"(index":[212,213],"(init":54,"(int":[70,162],"(keyword":57,"(location":[165,267,271,275],"(match":177,"(message":[212,213],"(mroonga":209,"(msghdr":43,"(n":[34,112,114,115,135],"(name":74,"(news":12,"(nginx":256,"(nil":63,"(null":42,"(packages":12,"(point":[165,166,167],"(popular":135,"(pos":[166,167],"(ptr":36,"(q":70,"(r":[154,210],"(readings":176,"(scan":14,"(scope":182,"(score":43,"(select":197,"(string":[44,163],"(tab":209,"(table":42,"(tag":172,"(tags":[191,193],"(target":[172,173,193],"(text":169,"(time":184,"(title":[41,163,211],"(twitter":44,"(type":162,"(u":[202,223],"(uint":70,"(unknown":63,"(vector":[112,191],"(void":70,"(wgs":275,"(windows":154,"(x":42,"(xxx":[34,41],"(~":34,")'":[34,112,114,115,135,138,162,168,169,173,179,182,184,191,193,196,197,202,216,217,219,223,236,238,267,271,275],"))":[43,63,135,197,209],"),":[41,63,171],")-":12,").":[12,179,256,262],")..":12,")/":43,"):":[12,34,104,123,236,256,268],");":[11,43,50,51,54,57,63,70,262],")=":263,")[":34,")\"":[34,41,114,135,170,179,210,211,212,213],")\\":210,")\\\\":236,")\u3001":42,")\u300d":153,")\u3059\u3079\u3066":161,")]":[41,104],")disk":210,")grn":[43,63],")groonga":209,")hello":43,")mroonga":209,")offset":[68,69],")senna":209,"*'":[114,115,135],"*)":63,"**":[12,51,55,63,65,66,69,110,121],"***":110,"*,":28,"*.":44,"*/":[54,57,70,73],"*\"":[34,37,42,43,114,115,135,236,270],"*added":68,"*bottom":58,"*bsd":[7,8,36,38],"*buffer":[63,65],"*cache":50,"*column":51,"*ctx":[50,51,54,55,57,58,59,60,61,62,63,64,65,66,67,68,69,71,72,74],"*cursor":58,"*data":[59,70],"*db":[54,55,65],"*dest":68,"*destination":65,"*escaped":57,"*expr":57,"*fin":66,"*func":[54,66],"*grn":70,"*ic":61,"*ii":60,"*indent":63,"*index":[58,61],"*init":66,"*key":68,"*keybuf":68,"*keys":68,"*keywords":57,"*max":69,"*min":69,"*mutex":74,"*n":177,"*name":[51,54,56,57,65,66,68,71,74],"*namebuf":[51,65],"*newvalue":51,"*next":66,"*nvars":66,"*obj":[51,55,57,59,62,63,65,66,67,72],"*oldvalue":51,"*optarg":[55,67],"*path":[51,55,68],"*point":63,"*proc":59,"*query":[57,67],"*res":[58,67,68],"*result":68,"*results":68,"*s":[42,177],"*section":51,"*source":65,"*src":68,"*str":[57,74],"*string":57,"*table":[51,65,68,69],"*tables":54,"*target":57,"*tc":[61,69],"*tid":61,"*top":58,"*type":51,"*user":[66,74],"*value":[60,62,65,68,69],"*valuebuf":62,"*var":74,"*vars":[66,74],"+ \"":[40,43],"+ y":243,"+(":236,"++":[0,6,7,12,24,27,29,34,38,39,42,43,54,57,70,153,250],"+-":[57,155],"+\"":[34,135],"+a":196,"+c":153,"+ff":[43,201,202,223],"+ff0":43,"+ff2":34,"+ffef":239,"+fff":239,"+fffe":146,"+or":210,", [":[117,144],", \"":[34,80,105,168,171,236,270],", {":[155,252],",!=":34,",'":[243,265],",(":63,",.":12,",..":141,",<":34,",<=":34,",==":34,",>=":34,",[":261,",[\"":261,",\"":[42,43,89,103,207,236,267,270,271],",\")":236,",\"domain":266,",\"http":265,",\"link":265,",\"links":265,",\"location":[267,275],",\"tags":267,",\"title":268,",\\\"":105,",\n#":[47,80,99,112,114,115,117,121,122,123,134,135,142,146,177,196,197,202,211,223,226,228,229,230,231,232,234,235,236,238,239,240,241,265,267,268,271,272,275],",\n[":[43,103,105,179],",\n]":[114,135,182,261,265,273,275],",\n{":[80,103,105,112,114,115,117,135,138,155,171,172,176,177,182,184,196,197,200,206,210,211,212,213,216,217,219,224,225,266,270,273],",_":[80,114,115,135,138,177,197,266,267,268,271,275],",{":[84,153,154,207],"- \"":42,"-(":[12,197],"-+":155,"--":[8,12,32,34,36,37,38,40,41,42,44,49,50,51,52,54,55,56,57,58,59,61,62,63,64,65,66,67,68,69,70,71,72,74,80,92,104,105,112,114,115,117,122,130,134,135,142,144,146,153,154,155,158,162,168,169,170,171,172,173,176,177,179,184,191,197,202,209,210,211,212,213,219,221,223,224,225,261,266,267,271,274,275],"->":[34,36,43,63,117,142,262],"-\"":[202,223],"-\u02d7":[202,223],"-_":[135,211,212,213],"-a":[40,153,196],"-add":55,"-address":[38,40,43,153],"-adjuster":[80,135],"-admin":40,"-aki":42,"-analyzer":[38,40],"-api":16,"-apt":31,"-archive":25,"-autoreconf":12,"-backlog":34,"-base":[34,153,158,159],"-benchmark":[22,40,41,42,46,150],"-binary":[155,252],"-bind":[40,43,153],"-blog":271,"-bugs":[43,44],"-build":14,"-by":25,"-bye":[112,114,115,135,144,196,197,225],"-c":[24,27,34,44,153,258],"-cache":[35,41,43,153,155],"-canceler":86,"-check":[36,38,158],"-chroot":12,"-ci":[41,42],"-ci\u4e0a":41,"-clear":34,"-client":[34,250],"-code":[12,42],"-column":44,"-columns":[34,44,112,114,115,135],"-command":[21,34,36,158,170,252],"-commnad":82,"-common":[31,40],"-compose":[22,23],"-condition":34,"-conditional":38,"-config":[25,29,35,36,38,40,43,153],"-core":12,"-create":[22,37,41,43,44,46,55,138,150,158,216,217],"-cutter":12,"-d":[153,155,158,159,255,258,272],"-daemon":[158,159],"-databases":[93,95,122,123,143,258,268,272],"-dataset":[22,37,41,43,44,46,138,150,158,216,217],"-db":39,"-dcmake":[7,8],"-dd":[197,199],"-deafult":38,"-deb":12,"-debug":[6,36],"-default":[23,34,39,40,41,44,153,197,252],"-dep":12,"-dependent":[44,117,142],"-dev":[2,12,14,25,31,34,38,40,41,42,43,44],"-devel":[24,27],"-dgrn":[7,8],"-dir":154,"-directory":40,"-disable":[36,38,42,158],"-doc":39,"-document":[3,12,17,153,156],"-docutils":12,"-drilldown":[34,42,43,44,135,266],"-drilldowns":[44,115,135],"-dump":43,"-e":153,"-each":[34,38],"-eanble":6,"-efficient":80,"-enable":[3,6,18,36],"-encoding":[23,38,153,197,252],"-encodiong":197,"-endpoint":[158,159],"-escalation":[23,36,40,135,149,153,261],"-essential":[25,31],"-event":43,"-existence":41,"-fd":[38,158],"-file":[35,38,43,83,158],"-files":18,"-filter":[25,31,34,38,40,42,43,44,80,92,135,160,169,177,179,182,197,210,271,273],"-flags":[34,153],"-force":[34,117,123],"-frequency":38,"-fstack":34,"-ftp":154,"-full":12,"-g":[8,32],"-get":[12,18,25,31,40],"-gobject":43,"-gqtp":[22,24,25,27,31,40,42,43,249],"-gram":[0,34,44,146,197,259,261,268],"-groonga":[12,13,154,271],"-gtqp":25,"-h":[153,155,252],"-help":[23,41,153],"-hiragana":[202,223],"-history":38,"-host":154,"-html":[36,40],"-http":[22,40,41,42,44,155,249],"-httpd":[22,24,25,27,31,34,38,40,42,43,44,46,50,131,145,150,157,199,218,249,251,252],"-i":[34,43,153,154],"-id":[40,131,153],"-idf":[211,212,213],"-in":[12,65],"-index":43,"-infinity":34,"-inverse":[211,213],"-ipadic":[27,28,238],"-j":[6,7,29],"-jemalloc":42,"-jinja":12,"-jp":[41,239,262],"-jumandic":27,"-key":[12,39],"-keyring":[25,40],"-keys":12,"-known":179,"-l":[153,158,159],"-latest":24,"-launchpad":12,"-leak":36,"-leaner":159,"-learner":[22,36,42,44,46,150,157,218],"-level":[34,42,43,153,159],"-libedit":36,"-libevent":39,"-libstemmer":42,"-limit":[35,41,43,135,153],"-line":21,"-lines":[38,158],"-listen":34,"-load":[34,115,135],"-localstatedir":23,"-lock":34,"-log":[23,34,38,40,42,43,153,154,155,158,159,199],"-lz4":23,"-m":152,"-match":[23,34,36,40,42,43,92,135,149,153,177,196,211,261,268,270],"-max":[38,153,158],"-mecab":[24,25,27,28,31,40,41,42],"-memcached":44,"-memory":36,"-message":23,"-minus":[202,223],"-mm":[197,199],"-mode":17,"-mruby":[6,12,42],"-msgpack":252,"-munin":[23,24,25,27,31,39],"-mysql":[24,25,27,31,34,44,118,200],"-n":[34,38,114,153,158,268],"-neologd":238,"-nightly":12,"-normalizer":[24,25,27,31,34,40,43,44,118,176,200,201],"-offset":[43,135],"-only":34,"-org":12,"-oriented":179,"-output":[34,40,41,43,44,114,135,154,168,169,170,179],"-p":[152,153,154,158,258,272],"-pack":23,"-package":[12,23,44],"-packages":12,"-paginate":12,"-patch":17,"-path":[12,23,34,35,36,38,40,42,43,138,153,158,159,199],"-per":[38,158],"-pgp":12,"-pid":[35,38,43,153],"-pinus":34,"-pip":18,"-platform":23,"-platorm":44,"-plugin":13,"-plugins":[23,24,25,27,31,39],"-point":243,"-port":[153,154,158],"-ppa":12,"-prefix":[6,23,155],"-properties":31,"-protector":34,"-protocol":[153,154,156,255,272],"-query":[34,38,40,41,42,43,44,92,153,155,168,169,177,179,196,209,256,268,271,273],"-r":[158,159],"-raw":105,"-receive":[158,159],"-recursive":[34,104],"-release":[24,27,40,44],"-repository":[12,31,40],"-request":[44,86,153],"-restart":44,"-root":[36,153,156],"-rotate":[43,153],"-rpm":12,"-ruby":[6,12,40],"-s":[153,158,159,258],"-scorer":160,"-search":[42,236,237],"-searchu":237,"-secret":12,"-send":[158,159],"-separated":43,"-server":[22,24,25,27,31,38,39,40,41,42,43,153,249],"-show":35,"-sister":92,"-size":[43,153],"-slices":[44,135],"-sort":[34,44,173],"-sortby":[41,44],"-source":12,"-sphinx":18,"-src":[12,25],"-static":38,"-stem":[25,31,34,42],"-strings":39,"-suggest":[22,36,37,38,40,41,42,43,44,46,138,150,216,217,218],"-t":[153,158],"-talk":[2,12,41,43],"-tar":30,"-target":[43,44],"-terminated":[66,74],"-test":[12,14],"-text":[236,237],"-threads":[153,158],"-threshold":[23,36,40,43,135,149,153,261],"-time":179,"-timeout":[44,86,153],"-token":[25,31,34,42,44],"-tokenizer":[24,25,27,31,40,41],"-truncate":34,"-type":[38,92,105,155,216,217,219,252],"-unauthenticated":40,"-uploader":12,"-use":43,"-values":[43,44],"-version":[12,34,36,214,252],"-w":12,"-windows":43,"-with":[6,12,23,28,39,40,42,44,135,149,197],"-wno":38,"-word":135,"-working":40,"-x":[12,41],"-xx":12,"-yyy":17,"-zlib":23,".$":[115,135],".'":[40,41],".(":12,".)":[41,44,65,104,197,199,211,242],".*":28,".*s":63,".,":[114,122,134,135,158,172],".-":17,"..":[6,7,12,17,34,40,41,44,63,70,74,80,85,89,92,93,105,114,116,121,122,131,134,135,138,140,153,155,156,158,172,177,196,197,210,211,212,213,252,268],"...":[34,38,40,41,42,43,44,49,50,51,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,75,84,89,105,114,131,135,138,141,153,154,155,156,168,171,182,196,197,198,207,210,214,236,271],"./":[17,26,29],".:":159,".>":214,".\"":[44,135,168,169,177,179,197,198,211,236,239,265,267,268,270,272,274],".\\\\":236,".]":[44,80,89,105,115,131,135,138,141,197],"._":[41,42,65,92,112,114,115,135,142,171,196,197,265,266],".age":[47,92,104,134],".am":18,".am\u30d5\u30a1\u30a4\u30eb":12,".asc":12,".askmonty":42,".blog":261,".body":[90,101,270,274],".builtin":55,".c":[34,45,96,99,123,135,142,262],".clean":[12,112,115,117],".co":[45,135],".column":[41,42,47,91,96,97,98,104,121],".com":[6,7,8,12,13,17,21,34,262,265,266,268,270,272,275],".comment":[270,271],".compress":121,".conf":[43,44,155,242,256,263],".content":[112,114,115,122,134,135,142,182,196,197,198,242,270],".context":142,".created":[112,114,115],".current":43,".d":[25,242,263],".data":135,".db":[26,41,153,258,268,272],".ddl":154,".deb":12,".debian":12,".description":271,".dll":[34,74],".domain":43,".dump":38,".en":12,".entries":[242,270],".entry":130,".exe":[32,34],".execute":[114,115],".facebook":12,".flags":68,".garbage":41,".git":[6,7,8,12,13,17],".github":17,".githubusercontent":21,".gpg":[12,25],".grn":[103,155],".groonga":[12,17,24,25,27,28,29,30,31,32,154],".group":[34,182],".gz":[12,17,24,25,27,28,29,30,31],".h":[16,43,74],".hash":271,".high":91,".html":[12,17,153,155],".htpasswd":[155,252],".index":[43,104,130,134,135],".jp":[12,43,45,135],".js":12,".js\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":21,".json":[155,207],".kentaro":41,".key":[68,142],".label":[135,176],".lemon":[47,135],".list":[12,25],".load":154,".location":271,".log":[29,43,82,117,151,153,154,155,158,256],".logs":[117,130],".max":[171,263],".md":12,".md\u30d5\u30a1\u30a4\u30eb":12,".me":[2,12,43],".memos":[122,134],".microsoft":262,".mo\u30d5\u30a1\u30a4\u30eb":17,".msgpack":207,".n":[55,112,114,115,135,196,197,242],".name":[89,104,151,182,271],".ncpu":28,".ne":45,".nested":135,".net":[2,12,265,266,267,268,272,275],".nginx":155,".noarch":24,".o":267,".offset":68,".org":[12,17,24,25,27,28,29,30,31,32,42,43,80,103,105,154,155,170,265,266,267,268,272,275],".osdn":[2,12],".output":156,".overcommit":40,".patch":17,".pc":[37,38],".pdb":34,".people":92,".php":12,".pid":153,".po":3,".po\u30d5\u30a1\u30a4\u30eb":[3,12],".position":121,".posted":271,".rb":[36,42,112,114,115,117,133],".readings":176,".real":[47,96,97,98],".reference":142,".remove":117,".roles":92,".roonga":[196,197],".rpm":[24,27],".rst":12,".run":112,".score":148,".scr":154,".section":121,".select":[154,197],".serial":91,".service":40,".sh":[6,12,14,17,21,40],".site":130,".size":121,".so":[124,125,129],".sort":34,".source":43,".sourceforge":[2,12],".spec":38,".ssssss":199,".statistics":121,".status":154,".sub":[115,135],".synonym":135,".t":239,".tag":[91,112,114,115,135,171],".tar":17,".timestamp":[120,123],".title":[106,107,108,130,142,265,270],".to":91,".travis":21,".tsv":[207,209],".txt":239,".type":63,".user":171,".users":104,".uuuuuu":197,".value":135,".weight":[41,121],".x":12,".xml":207,".years":47,".yml":[12,21,26],".zip":17,".}":[80,89,105,197],"/ '":65,"/$":17,"/${":158,"/'":42,"/(":12,"/*":[16,17,54,70,73,155,256,263],"/+":12,"/.":38,"/..":[12,44,155,158],"/;":155,"/?":158,"/\"":[80,105,239,265,266,267,268,272,275],"/\u65e5":271,"/\u6708":271,"/\uff09":36,"/_":12,"/aba":[266,268,275],"/acccess":256,"/admin":[38,153],"/afr":[266,268,275],"/alice":239,"/api":252,"/apt":[12,25],"/archive":12,"/atv":[266,268,275],"/base":12,"/bc":12,"/bin":29,"/blog":12,"/branches":14,"/c":[0,6,7,16,250],"/cache":155,"/centos":[12,24,256],"/com":262,"/command":[14,155,156,210,272],"/commands":[42,93,95,122,123,143],"/commit":34,"/commits":42,"/config":149,"/copyright":42,"/coremodule":155,"/cpuinfo":[24,25,27,31],"/cutter":12,"/d":[34,42,155,210,252],"/data":[21,26],"/database":[135,155,252],"/db":[26,103,138,151,155,159,210,256],"/db1":252,"/db2":252,"/dd":197,"/debian":[12,25],"/default":[40,256],"/desktop":262,"/dev":12,"/dic":28,"/dictionary":36,"/disk":210,"/doc":12,"/docs":155,"/en":[12,155],"/en\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0":2,"/entry":270,"/etc":[12,25,28,40,155,209,242,256,263],"/eval":132,"/example":158,"/examples":12,"/executables":158,"/f":12,"/false":[35,265],"/fedora":[27,36,40],"/files":[12,18],"/function":12,"/functions":14,"/gat":[266,268,275],"/github":34,"/gqtp":[41,256],"/grndb":151,"/grntest":12,"/groonga":[6,7,8,12,13,16,17,21,24,25,26,27,28,29,30,31,32,34,36,38,40,41,43,93,95,112,114,115,117,122,123,124,125,129,143,151,153,155,158,209,242,256,258,268,272],"/header":30,"/hoge":153,"/home":239,"/homebrew":12,"/horimoto":[112,115,117],"/hostname":[153,154],"/hosts":12,"/html":[17,18,38,252],"/http":[155,256],"/httpd":[155,256],"/in":43,"/index":[12,17,153],"/introduction":[258,268,272],"/ipadic":28,"/issues":34,"/ja":[12,17,18,44,262],"/ja\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0":2,"/javascript":38,"/json":[38,105,155,252],"/key":65,"/keyrings":25,"/kytea":146,"/lc":[12,17],"/learn":158,"/lib":[28,114,124,125,129,151,155,256],"/library":262,"/limits":242,"/linux":[3,5,8,12,18,22,23,34,38],"/lists":12,"/load":[34,44,105,133,155,252],"/local":[6,7,12,28,29,114,155],"/locale":[12,17,18],"/log":[29,43,151,153,155,158,256],"/logical":[112,114,115,117],"/lzo":[36,38,41],"/magazine":135,"/mailarchive":12,"/managers":[155,252],"/master":[17,21],"/math":173,"/max":[34,42],"/mecab":28,"/mecabrc":28,"/meetup":43,"/message":12,"/min":34,"/mm":197,"/modules":[36,155],"/mpisel":44,"/mroonga":34,"/mruby":34,"/ms":262,"/munin":29,"/mxcl":12,"/news":12,"/nfs":29,"/ngx":155,"/nightly":12,"/non":41,"/null":[6,7,35],"/number":135,"/o":140,"/other":155,"/packages":12,"/php":43,"/pipermail":42,"/plain":43,"/plugins":[29,36,41,112,114,115,117,124,125,129],"/ppa":[12,31],"/projects":12,"/pull":12,"/query":[124,125,129],"/rab":[266,268,275],"/reference":158,"/release":[112,115,117],"/repositories":12,"/request":131,"/result":39,"/rroonga":42,"/run":[12,14,153],"/rurema":42,"/sbin":28,"/security":242,"/select":[131,155,272],"/setup":21,"/sharding":[112,114,115,117],"/share":[25,38,153],"/shm":155,"/shutdown":[153,155,252],"/source":[12,16,17,18,24,25,27,28,29,30,31,32],"/sources":[12,25],"/span":[168,169,179],"/srpm":12,"/status":[152,155,207,252,272],"/stem":224,"/stop":[103,144,221,225],"/string":[44,112,114,115,135,171,181],"/suggest":158,"/synonyms":209,"/sysconfig":256,"/sysctl":[28,242,263],"/tab":43,"/test":239,"/time":[34,114,184],"/tmp":[6,7,209,252],"/to":[26,155,252],"/travis":21,"/tsv":[124,125,129,209],"/ubuntu":[12,40,256],"/unit":14,"/usr":[29,153],"/var":[29,43,151,153,155,256],"/vdw":[266,268,275],"/vector":[43,112,114,115,135,191,193,194],"/version":43,"/webplus":135,"/wgs":275,"/windows":[12,32,262],"/work":[12,112,115,117],"/x":252,"/xml":252,"/yum":12,"/zlib":34,"/~":12,"0c":235,"0d":86,"0e":154,"0f":44,"0garbage":34,"0mq":41,"0x":[34,39,86,196,243,258,265],"0xc":258,"10":[154,162,268],"11":[80,123,135,177,197,242,261],"1\u305a":[78,82],"1\u3064":[10,33,34,38,41,42,44,47,57,63,76,80,88,91,92,93,96,97,104,106,107,108,112,113,114,115,116,117,120,121,123,124,125,129,130,131,132,133,134,135,136,138,140,142,145,146,148,149,153,154,155,158,169,171,172,176,177,179,182,184,196,197,199,210,211,212,213,214,218,220,226,228,236,242,252,258,265,267,270,271],"1\u30f6\u6708":214,"1\u4ef6":[261,271],"1\u56de":155,"1\u5ea6":[73,115],"1\u6708":[34,197,243,265,271],"1\u884c":[105,154],"1byte":258,"1f":43,"1g":[25,31],"1gb":43,"1o":210,"1st":105,"1tib":[33,140,220],"1usec":44,"2\u3064":[19,24,25,27,31,41,42,43,92,93,98,112,113,114,115,117,123,135,139,140,142,143,144,145,158,161,163,171,172,176,177,182,191,196,199,210,211,212,219,226,228,236,251,252,256,265,266,268,270,271],"2\u3064\u3081":[131,171,196,197,252,270],"2a":34,"2byte":258,"2e":[202,223],"2ff":44,"2grn":42,"2nd":105,"3\u3064":[14,34,41,83,95,104,118,135,161,162,168,171,179,191,195,265,266,268,270],"3d":34,"3ki":36,"4\u3064":[91,153,171,179,211,220,238],"4byte":258,"4e":263,"4gib":[33,44,140,220,258],"4kib":[33,43,47,96,97,98,149,220],"4mib":121,"5\u3064":161,"5b":[98,149],"5c":34,"5d":86,"5f":154,"6elz":42,"6gib":242,"7\u3064":137,"7\u6708":[34,43],"7a":34,"7e":154,"7ed":86,"7f":44,"7fa":86,"8bit":243,"8byte":258,"8r":[29,40,63,153],"9\u3064":268,"9e":201,"9f":207,": n":152,":!":196,":#":[42,44],":#{":[34,199],":$":[18,196,197,273],":(":63,":..":[104,135],":/":[12,13,17,21,24,25,26,27,28,29,30,31,32,34,42,80,103,105,131,135,152,153,155,156,158,170,207,252,262,265,266,267,268,270,272,275],"::":[34,43,87,112,114,115,117,158],":<":[135,196],":=":[135,196],":>":[135,196],":@":[115,135,177,196,265,267,268,271,272],":[":[63,154,210],":\"":[34,57,112,210,268],":\\":[8,32,210],":\\\"":105,":\u5206":271,":\u79d2":271,":^":[196,273],":available":63,":bob":271,":byte":71,":clear":12,":column":104,":commands":149,":dat":[104,121],":doc":149,":fix":121,":groonga":[6,7,8,12,31,44,135,196],":hash":[104,121,122],":index":121,":latest":26,":mm":[197,199],":mroonga":34,":no":121,":none":63,":order":43,":pat":[63,121,122],":port":[153,155,156],":set":42,":shorttext":63,":ss":[197,199],":table":104,":value":[135,196],":var":[63,104,121,122],":xxx":34,":{":63,":~":[196,210],";/":[168,169],";\"":[34,40],";b":[168,169],";rroonga":[168,169],"< n":197,"< t1":11,"< y":41,"<#{":[34,199],"<%":63,"<-":252,"<..":214,"</":[123,168,169,170,179,207],"<=":[41,155,171,177,197,271],"<[":117,"<\"":[34,63,177],"<directory":159,"<encoding":153,"<endpoint":159,"<gqtp":154,"<groonga":154,"<ip":[153,154],"<level":159,"<limit":153,"<log":153,"<max":153,"<nan":34,"<object":34,"<path":[153,159],"<port":[153,154],"<protocol":153,"<span":[168,169,179],"<table":63,"<threshold":153,"<timeout":153,"<type":63,"= '":34,"= \"":[42,135,197],"= n":197,"= y":41,"=$":[12,17,29],"='":170,"=(":12,"=)":11,"=-":[29,34,138],"=.":28,"=..":12,"=/":[6,7,12,14,25,29,153,209],"==":[44,177,197],"=\"":[30,112,114,115,117,135,168,169,171,179,207],"=\\":[168,169,170,179],"=_":138,"=`":18,"=add":146,"=allow":135,"=arg":210,"=auto":[135,138],"=bookmarks":105,"=c":[8,32],"=centos":29,"=column":[112,114,115,135],"=complete":158,"=dat":39,"=encoding":23,"=epel":24,"=fedora":12,"=g":158,"=get":144,"=gr":158,"=graceful":136,"=gro":158,"=groo":158,"=groonga":[12,155,158],"=grooon":158,"=i":12,"=json":105,"=largetable":131,"=message":23,"=no":[34,103,104,105,112,114,115,117,123,142],"=none":[115,118,135,144,146],"=null":[88,92,103,104,105,106,107,108,112,113,114,115,117,121,130,135,140,144,145,146],"=number":[23,149],"=on":[7,8],"=pat":[39,104],"=path":23,"=platform":23,"=query":158,"=r":40,"=site":272,"=sjis":29,"=squeeze":12,"=submit":158,"=table":140,"=title":272,"=true":131,"=unique":131,"=users":[155,252],"=vs":262,"=x":44,"=xxx":44,"=yes":[12,14,34,39,41,43,44,103,104,135],"> %":63,"> \"":43,"> y":41,">#{":[34,199],">(":123,">,":63,">.":[168,169],">:":[47,112,114,115],"><":[57,207],">=":[41,123,177,197],">>":[41,197],">\"":[34,41,47,86,99,112,114,115,123,135,142,168,170,177],">\\":63,">\n<":207,">alloc":207,">cache":207,">command":207,">default":207,">max":207,">n":207,">rroonga":[168,169],">starttime":207,">uptime":207,">version":207,"?!":236,"?-":34,"??":135,"?arg":210,"?argument":156,"?i":210,"?id":131,"?max":[34,43],"?msg":12,"?parameter":155,"?table":[44,105,131,155,252,272],"@$":177,"@'":268,"@\"":[34,177,191],"@^":177,"@ceekz":41,"@do":42,"@github":[6,7,8,12],"@groonga":[2,12],"@kiske":40,"@lists":[2,12],"@naoina":[40,41],"@orangain":41,"@packages":12,"@s":36,"@soundkitchen":[38,40],"@tomotaka":38,"@uzulla":38,"@wareohji":40,"@x":34,"@yappo":[41,42],"@yito":[40,41],"@~":[177,210],"[#":[38,39,40,42],"[$":[34,43,44],"[(":[104,210],"[,":166,"[..":[44,115,135],"[2":153,"[:":272,"[@":[38,40,41,42],"[[":[47,80,91,92,95,102,105,112,117,131,132,133,135,141,143,144,148,153,161,165,168,169,171,173,176,179,191,196,197,198,211,216,225,261,265,267,270,271,273],"[[\"":89,"[\"":[43,80,89,92,93,114,135,138,179,191,193,197,216,261,265,267,271,274],"[\"-":26,"[\u3002":236,"[\u8a9e":89,"[\uff09":236,"[]":271,"[admin":[38,40,41,44],"[api":43,"[apt":40,"[args":153,"[backslash":196,"[benchmark":42,"[bernard":43,"[bindings":43,"[cache":34,"[centos":44,"[cmake":[34,43,44],"[column":[42,105],"[content":[112,114,115,135],"[count":[112,114,115],"[dat":[34,39,40],"[dd":210,"[deb":[38,40,41,42,43,44],"[debian":44,"[doc":[34,38,39,40,41,42,43,44],"[dump":[40,41,42],"[element":[80,197],"[example":[42,43],"[examples":44,"[fedora":[40,42],"[functions":34,"[geo":[38,41],"[github":[34,42],"[gqtp":41,"[grn":43,"[grntest":38,"[groonga":[12,38,40,42,43,44],"[hash":44,"[header":[83,88,91,92,95,96,97,98,99,102,104,106,107,108,109,112,117,118,119,120,121,122,123,124,125,129,130,132,133,134,136,139,140,142,143,145,146,147,148],"[hh":43,"[highlighter":34,"[hour2":114,"[http":[40,41,42,43,44],"[httpd":[34,40,41,42,43,44],"[ii":34,"[index":[34,42],"[info":210,"[is":[112,114,115,135],"[ja":44,"[key":43,"[label":[34,43,44,115,135],"[label1":[42,115,135],"[label2":[115,135],"[launchpad":12,"[libedit":38,"[linux":40,"[load":[34,40,42],"[log":34,"[logical":43,"[macports":38,"[mdev":43,"[mecab":43,"[mrb":[34,43],"[mruby":[34,42,43,44],"[munin":[38,40,41,42],"[n":[41,42,112,114,115,135],"[name":[112,114,115,135],"[name1":[112,114,115,135],"[name2":[112,114,115,135],"[normalizer":42,"[nsubrecs":115,"[object":92,"[optimizer":34,"[os":42,"[output":39,"[pat":40,"[php":[40,42],"[pkg":[38,40],"[plugin":[34,42,43],"[power8":42,"[query":34,"[record":115,"[rpm":[34,38,39,40,41,42,43,44],"[sharding":[34,43],"[snippet":[42,179],"[solaris":40,"[sort":44,"[space":196,"[suggest":[39,40,41],"[table":[41,92],"[tag":[115,135],"[terms":104,"[test":40,"[the":105,"[token":41,"[tokendelimit":34,"[tokenfilterstem":34,"[tokenfilterstopword":34,"[tokenizer":[40,41,44],"[tokenmecab":34,"[tokenngram":34,"[travis":41,"[ubuntu":44,"[users":104,"[vector":[34,112,114,115,135],"[warning":210,"[windows":[34,38,40,41,42,43,44],"[xxxxx":262,"[yum":40,"[{":[105,155,252],"\" (":[202,223],"\"#":38,"\"#\"":154,"\"#{":197,"\"%":210,"\"'":[34,40,41,42,43,80,91,92,112,114,115,135,176,196,197,210,259,261],"\"(":41,"\")":[34,40,41,42,43,56,63,112,115,131,135,161,163,165,167,171,172,176,177,191,197,224,225,238,262,267,275],"\"*":[40,63],"\",":[26,34,41,43,44,47,63,80,83,89,91,92,93,95,96,99,102,103,105,112,114,115,117,121,122,123,131,134,135,137,138,141,142,143,144,148,153,154,155,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,201,202,210,211,212,213,216,217,219,223,224,225,236,238,240,241,258,261,265,266,267,268,270,271,272,273,274,275],"\"-":[38,165,202,223],"\".":[197,250,266],"\"/":[93,95,112,114,115,117,122,143,153,239,275],"\":":[34,43,44,47,80,84,89,91,92,95,102,103,105,112,113,114,115,116,117,118,119,121,122,131,132,133,134,135,137,138,143,144,146,147,148,153,154,155,158,161,162,165,168,169,170,171,172,173,176,177,182,184,191,193,196,197,198,200,201,202,203,206,207,210,211,212,213,216,217,219,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,252,258,265,266,267,268,270,271,272,273,274,275],"\";":[154,155,252],"\"<":[41,168,169],"\"=":171,"\">":[168,169,179,207],"\"?":[135,207],"\"@":[171,271],"\"[":[34,40,86,96,99,112,114,115,123,135,142,210],"\"\"":[39,44,91,96,97,182,196,197,210,243],"\"\\":[43,210],"\"\\\\":210,"\"\\n":43,"\"\u00b7":[202,223],"\"\u2015":[202,223],"\"\u3001":[216,266],"\"\u3002":42,"\"\u308a\u3093\u3054":223,"\"\u308d\u3086\u304d":273,"\"\u30ac":201,"\"\u30ce":238,"\"\u30cf":238,"\"\u30d0\u30d3\u30d6\u30d9\u30dc":[202,223],"\"\u30d6":[202,223],"\"\u30df\u30ea":197,"\"\u30fb":[202,223],"\"\u30fc":[202,223],"\"\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc":[202,223],"\"\u52c9":241,"\"\u59d3":238,"\"\u5f37":[228,240,241],"\"\u5f7c":[202,238],"\"\u672c":[229,230,231,232,241],"\"\u8a9e":[229,230,231,232,241],"\"\uff09":[35,216,265,275],"\"\uff65":[202,223],"\"\uff70":[202,223],"\"]":[26,43,44,63,80,92,93,96,97,98,103,112,114,115,117,135,153,176,179,191,193,197,216,261,267,268,271,274],"\"_":[41,44,47,80,83,91,92,93,95,102,103,105,112,114,115,117,121,135,138,143,144,148,155,158,161,162,165,170,171,172,173,176,177,182,184,191,193,196,197,198,200,206,210,211,212,213,216,217,219,224,225,252,261,265,266,267,268,270,271,272,273,274,275],"\"a":[42,63,115,135,146,182],"\"ab":218,"\"adventurer":92,"\"alice":[92,121],"\"always":113,"\"apple":200,"\"application":38,"\"auto":113,"\"b":[63,115,135,182],"\"black":200,"\"block":265,"\"book":197,"\"c":[63,115,135,182],"\"canceled":131,"\"co":218,"\"color":200,"\"column":[105,121,122],"\"complete":218,"\"content":[135,196,197,224,225],"\"correction":218,"\"created":[112,114,115],"\"d":[63,226,228],"\"dav":171,"\"db":121,"\"ddl":42,"\"double":197,"\"droonga":[171,191],"\"e":[63,138,146,216,239],"\"element":80,"\"ellip":166,"\"ellipsoid":166,"\"engine":[216,217,219],"\"equal":[177,191],"\"f":63,"\"fast":115,"\"flower":265,"\"force":34,"\"fulltext":146,"\"g":63,"\"good":[112,115,135,197],"\"gr":140,"\"greater":177,"\"gronga":218,"\"groonga":[80,103,135,140,171,179,182,191,197,218,270],"\"h":146,"\"hello":[144,225],"\"http":80,"\"i":[83,114,115,135,196,197,198,224,270,271],"\"include":117,"\"index":121,"\"is":265,"\"k":267,"\"key":121,"\"keyword":135,"\"label":135,"\"large":121,"\"less":177,"\"lic":171,"\"localhost":258,"\"lz4":121,"\"match":[177,191],"\"medium":121,"\"message":[210,212,213],"\"monkey":265,"\"mroonga":[80,103,135,182,191,197],"\"mysql":[80,218],"\"n":[44,83,105,112,114,115,121,122,135,137,155,196,197,258,268,272],"\"name":[121,177],"\"near":[171,177,191],"\"never":113,"\"no":40,"\"normal":121,"\"not":177,"\"null":40,"\"o":[226,228],"\"pgroonga":103,"\"popular":135,"\"pp":42,"\"prefix":177,"\"proc":122,"\"rect":[40,166],"\"rectangle":[40,165,166],"\"regexp":177,"\"requires":40,"\"roonga":218,"\"ruby":80,"\"s":[138,146,216,217,234,235],"\"saerch":217,"\"say":197,"\"scalar":121,"\"se":216,"\"sea":216,"\"search":[196,216,217,219],"\"sequence":[138,216,217,219],"\"serach":217,"\"service":217,"\"similar":[171,177,191],"\"small":121,"\"sound":217,"\"sphere":166,"\"sphr":166,"\"starttime":[84,207],"\"suffix":[171,177,191],"\"sug":218,"\"suggest":218,"\"t":[146,239],"\"table":[121,122,153],"\"tags":80,"\"text":38,"\"theater":274,"\"theatre":274,"\"timestamp":117,"\"tritonn":135,"\"type":[122,138],"\"unknown":56,"\"uptime":207,"\"utf":56,"\"value":135,"\"vector":[41,121],"\"version":207,"\"visual":8,"\"web":[217,219],"\"weight":265,"\"x":[34,41,42,197],"\"xxx":41,"\"y":34,"\"you":196,"\"yyyy":197,"\"zlib":121,"\"zstd":121,"\"}":[47,91,92,102,103,105,112,113,114,115,116,117,121,135,138,155,162,171,172,176,177,182,184,193,196,197,198,200,206,210,212,213,216,217,219,224,225,252,265,266,267,270,273,275],"\\%":32,"\\'":153,"\\(":196,"\\[(":210,"\\\"":[57,105,168,169,170,179,182,210,259],"\\\"_":105,"\\\"a":182,"\\\"}":105,"\\\\":[43,57,168,176,182,210,236],"\\\\\"":176,"\\\\\\":[43,210],"\\\\r":236,"\\\\z":210,"\\a":[43,44,210,239],"\\ahello":43,"\\ahost":210,"\\bin":32,"\\groonga":32,"\\n":[63,210],"\\s":236,"\\u":237,"\\ud":34,"\\udf":34,"\\z":[210,239],"\u00a9\"":202,"\u00b7\"":[202,223],"\u00b7\u00b7":[202,223],"\u00b7\u1427":[202,223],"\u02d7\"":[202,223],"\u058a\"":[202,223],"\u058a\u2010":[202,223],"\u1427\"":[202,223],"\u2010\"":[202,223],"\u2011\u2012":[202,223],"\u2013\u2043":[202,223],"\u2014\"":[202,223],"\u2014\u2015":[202,223],"\u2022\"":[202,223],"\u2022\u2219":[202,223],"\u2026\u3001":184,"\u2026\uff09":217,"\u2043\"":[202,223],"\u207b\"":[202,223],"\u207b\u208b":[202,223],"\u208b\"":[202,223],"\u2192id":220,"\u2212\"":[202,223],"\u2219\"":[202,223],"\u22c5\"":[202,223],"\u22c5\u2e31\u30fb":[202,223],"\u2500\"":[202,223],"\u2500\u2501\uff70":[202,223],"\u2501\"":[202,223],"\u25a1\u25a1":10,"\u25cb\u25cb":10,"\u2e31\"":[202,223],"\u3001 \"":172,"\u3001#":271,"\u3001$":12,"\u3001'":[42,56,153,177,197,243,265],"\u3001(":[68,69,154,161,243],"\u3001-":[36,154,243],"\u3001.":[14,17],"\u3001/":[268,272],"\u3001:":[154,262],"\u3001[":268,"\u3001\"":[34,38,40,41,44,162,170,172,182,202,216,217,218,219,223,236,243,268,271,274],"\u3001\u00d7":10,"\u3001\u300c":[34,35,92,114,117,121,135,153,206,211,212,213,216,226,259,261,266,267,275],"\u3001\u6708":184,"\u3001_":268,"\u3001c":268,"\u3002#":[36,38,271],"\u3002'":[65,202,238],"\u3002(":[11,12,27,34,49,63,66,69,102,135,153,154,256,262,270],"\u3002)":[34,69,102,135,154,262,270],"\u3002-":[29,59,69],"\u3002.":17,"\u3002:":[10,12,14,17,18,34,38,43,44,82,84,86,89,96,97,98,100,105,106,107,108,109,112,114,115,119,121,122,123,130,131,134,135,136,137,138,141,142,147,148,151,153,154,155,156,158,169,171,177,184,191,193,194,197,199,201,203,211,212,213,216,217,218,219,242,252,259,261,262,263,268],"\u3002[":[34,40,41,42,43,44,268],"\u3002\"":[34,41,42,44,162,172,217,223,238,255,261,266,271,272],"\u3002\u00d7":10,"\u3002\u2193":153,"\u3002\u3002":205,"\u3002\u300c":[42,92,99,112,114,115,117,118,121,123,135,140,144,146,171,196,197,210,213,226,267,270],"\u3002\u300d":[34,236,261],"\u3002\u3044":11,"\u3002\u3044\u304f\u3064\u304b":[122,158,210],"\u3002\u3044\u307e":39,"\u3002\u3056\u3063\u304f\u308a":80,"\u3002\u3057\u304b":92,"\u3002\u3057\u304b\u3057":[0,6,7,8,23,38,80,92,95,117,135,143,153,165,198,200,211,213,217,226,228,239,243,252],"\u3002\u3057\u304b\u3082":251,"\u3002\u3059":[34,154,198],"\u3002\u3059\u3050":155,"\u3002\u3059\u3079\u3066":[14,17,135],"\u3002\u3064\u307e\u308a":[34,49,92,104,105,135,149,151,158,196,212,232,235,268,274],"\u3002\u3069":191,"\u3002\u3069\u308c":158,"\u3002\u307e\u305a":261,"\u3002\u307e\u305f":[0,11,82,104,135,152,153,154,156,197,209,213,217,243,258,262,265,268,270,275],"\u3002\u307e\u3060":42,"\u3002\u30ad\u30fc":[34,44,47,134,135,149],"\u3002\u30bf\u30b0":[80,112,114,115,135,169,267],"\u3002\u30d0\u30b0":19,"\u3002\u30df\u30ea":265,"\u3002\u30ed\u30b0":[140,155,199],"\u3002\u4f8b":[8,43,65,123,140],"\u3002\u52d5\u7684":135,"\u3002\u5404":[112,114,115,135],"\u3002\u7701\u7565\u53ef\u80fd":168,"\u3002\u7a7a":121,"\u3002\uff01":236,"\u3002\uff01\uff1f":236,"\u3002\uff08":[17,21,34,36,38,43,54,69,89,92,104,113,114,115,131,135,153,158,169,179,195,196,197,205,216,217,219,220,238,242,243,259],"\u3002\uff09":[17,21,35,36,38,43,69,92,104,113,114,115,121,131,135,140,158,169,179,196,197,205,217,219,220,238,259],"\u3002_":[78,268],"\u3002adjuster":42,"\u3002amazon":135,"\u3002api":195,"\u3002apt":12,"\u3002ascii":[196,197],"\u3002bash":43,"\u3002between":44,"\u3002blogs":261,"\u3002buf":51,"\u3002c":[0,16,87],"\u3002callback":11,"\u3002centos":43,"\u3002column":[11,51,268],"\u3002command":82,"\u3002cpu\u30b3\u30a2":252,"\u3002ctrl\u30ad\u30fc":268,"\u3002cursor":69,"\u3002db":[11,38,54,258,268],"\u3002debian":[14,34],"\u3002drilldown":34,"\u3002eclipse":17,"\u3002ecmascript":135,"\u3002ftp":154,"\u3002functions":14,"\u3002gdb":[6,7,14],"\u3002geopoint":271,"\u3002gnr":195,"\u3002gnu":5,"\u3002google":196,"\u3002gqtp":[87,152,258],"\u3002grn":[11,195],"\u3002groonga":[0,3,24,25,26,27,29,31,32,34,40,41,42,43,44,47,73,76,82,92,135,153,154,155,196,197,199,207,210,214,216,220,242,255,268,270,272],"\u3002hook":59,"\u3002host":258,"\u3002html":168,"\u3002http":[41,43],"\u3002id":[44,54],"\u3002int":41,"\u3002iptables":272,"\u3002jis":206,"\u3002json":44,"\u3002key":[68,259],"\u3002keys":68,"\u3002linux":242,"\u3002listen":34,"\u3002lz":92,"\u3002lz4":44,"\u3002make":154,"\u3002max":69,"\u3002memcached":44,"\u3002messagepack":[29,83],"\u3002min":69,"\u3002mroonga":[0,65],"\u3002mruby":[34,43],"\u3002munin":[24,25,27,31],"\u3002mysql":[24,25,27,31,214],"\u3002n":[118,146,261],"\u3002name":[51,54,68],"\u3002nginx":44,"\u3002null":[54,55,68],"\u3002obj":65,"\u3002offset":59,"\u3002openbsd":44,"\u3002optarg":55,"\u3002os":99,"\u3002output":[42,103],"\u3002pcre":155,"\u3002point":[166,167],"\u3002post":252,"\u3002postgresql":34,"\u3002rdbms":153,"\u3002rk":206,"\u3002rroonga":195,"\u3002ruby":210,"\u3002run":14,"\u3002scan":14,"\u3002set":154,"\u3002sql":135,"\u3002squeeze":14,"\u3002table":[68,72,102],"\u3002tag":267,"\u3002timeout":65,"\u3002tokendelimit":219,"\u3002tokenizer":34,"\u3002travis":21,"\u3002true":44,"\u3002tsv":[83,209],"\u3002unix":137,"\u3002utf":[41,158,201,203],"\u3002value":[65,78],"\u3002video":267,"\u3002windows":[5,34],"\u3002xml":83,"\u3002zlib":92,"\u3002zstandard":92,"\u300c#":36,"\u300c,":[103,140],"\u300c\"":153,"\u300c\u25cb":[43,112,114,115],"\u300c\u3059":34,"\u300c\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":121,"\u300c\u30e9\u30d9\u30eb":135,"\u300c\u4eba":92,"\u300c\u5024":[134,140],"\u300c\u52d5\u7684":135,"\u300c\u5e74":43,"\u300c\u5f0f":57,"\u300c\u6771\u4eac\u90fd":261,"\u300c\u697d\u3057":259,"\u300c\u697d\u3057\u3044":259,"\u300c\uff76":201,"\u300ca":211,"\u300calice":271,"\u300carray":121,"\u300cbill":259,"\u300cbilliard":259,"\u300cbob":271,"\u300cbuffer":121,"\u300ccharlie":271,"\u300cchunk":121,"\u300ccomments":271,"\u300cdelete":12,"\u300cgrand":271,"\u300cgroonga":[42,135,158,195,242],"\u300chello":135,"\u300cn":34,"\u300cnew":271,"\u300cnihon":216,"\u300cnippon":216,"\u300cparenthesized":34,"\u300cpopular":135,"\u300csenna":135,"\u300cthe":211,"\u300cthey":[211,212,213],"\u300cthread":34,"\u300cu":34,"\u300cusers":271,"\u300cview":12,"\u300d:":201,"\u300d\u3001":[42,267,271],"\u300d\u3002":195,"\u300d\u300c":[34,121],"\u300d\uff08":[103,135,140,259],"\u300d\uff09":34,"\u300d]":236,"\u3041\u3042\u3043\u3044\u3045\u3046":[202,223],"\u3042\u3042\u3044\u3044\u3046":[202,223],"\u3042\u3044\u3046":[202,223],"\u3042\u3044\u307e\u3044":140,"\u3042\u304d":273,"\u3042\u304d\u3089":42,"\u3042\u304f":50,"\u3042\u3052\u308b":[22,173,260],"\u3042\u305f\u308a":[36,38,121],"\u3042\u3063":[12,17,27,34,40,41,44,51,63,65,68,78,82,105,117,135,136,138,154,197,210,252,267],"\u3042\u3068":[12,17,99,242,262],"\u3042\u3068\u3082":86,"\u3042\u306a\u305f":[2,6,7,8,12,43,92,210,211,212,213],"\u3042\u307e\u308a":[10,68,153,270],"\u3042\u3089\u304b\u3058\u3081":[12,27,243],"\u3042\u3089\u3086\u308b":123,"\u3042\u3089\u308f\u3057":274,"\u3042\u308a":[0,1,2,3,5,6,7,8,10,11,12,13,14,16,17,18,19,23,24,25,27,29,31,32,33,34,38,40,41,42,43,44,47,49,50,54,57,61,63,65,68,69,70,73,78,80,82,83,86,91,92,93,96,97,98,99,102,103,104,105,106,107,108,111,112,113,114,115,116,117,118,119,120,121,122,123,124,127,129,130,131,134,135,136,137,138,139,140,141,142,143,144,145,146,147,151,153,154,155,156,158,161,165,168,169,170,171,172,173,176,177,179,182,191,193,195,198,199,200,201,202,203,204,206,207,209,210,211,212,213,214,215,216,217,218,220,221,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,250,252,256,258,259,261,262,263,265,266,268,270,271,272,274,275],"\u3042\u308b":[0,1,2,5,6,7,8,10,11,12,17,20,29,32,34,36,38,40,41,42,43,44,47,57,61,65,69,80,82,87,89,90,92,93,94,99,100,101,102,103,104,110,111,112,114,115,117,121,122,127,135,136,137,138,140,141,142,146,151,152,153,154,155,156,158,161,163,165,166,167,171,172,173,174,176,177,178,179,182,191,195,196,197,199,205,209,210,211,216,217,220,223,229,236,239,242,243,252,258,261,262,263,265,266,267,268,270,272,273,275],"\u3042\u308b\u3044":[0,11,27,42,51,67,68,82,92,105,117,122,140,142,155,166,167,172,196,197,242,258],"\u3042\u308c":[6,7,12,34,44,47,50,63,92,117,140,142,153,154,161,172,198,261],"\u3042\u308c\u3053\u308c":10,"\u3042\u308f\u305b":[214,242],"\u3042\u308f\u305b\u308b":40,"\u3042\u30a4\uff73":[202,223],"\u3044\u3044":[2,10],"\u3044\u3044\u306d":[112,114,115,135,196,197],"\u3044\u3046":135,"\u3044\u304d":[10,12,262,268],"\u3044\u304f":[3,4,22,44,85,132,135,146,210],"\u3044\u304f\u3064":[3,210],"\u3044\u304f\u3064\u304b":[1,2,8,11,12,14,27,29,34,41,43,44,78,92,98,103,104,105,112,114,115,117,118,121,131,135,136,140,144,146,149,158,160,177,196,197,200,210,211,214,226,242,251],"\u3044\u304f\u3089":[0,44],"\u3044\u305a\u308c":[78,82,243],"\u3044\u3063":[137,210],"\u3044\u3064":[34,216],"\u3044\u3066":[34,44],"\u3044\u307e":[133,262],"\u3044\u307e\u305b":[6,34,41,42,44,83,92,112,114,115,117,135,138,140,146,155,196,197,205,209,210,211,212,213,214,220,226,228,238,251,252,262],"\u3044\u308b":[0,6,7,10,11,12,14,17,18,21,25,29,31,34,35,36,37,38,39,40,41,42,43,44,47,48,51,54,59,63,65,66,68,69,70,80,83,86,88,89,90,91,92,93,94,95,99,101,102,104,105,106,107,111,112,113,114,115,119,120,121,122,123,124,125,129,130,131,132,133,134,135,137,140,141,143,145,146,147,151,153,154,155,156,158,161,165,169,170,171,172,177,179,182,196,197,198,200,206,209,210,211,212,213,214,215,216,217,218,220,224,225,226,228,229,230,231,232,240,241,252,256,259,261,262,263,265,266,267,268,270,271,272,273,275],"\u3044\u308c":[40,43,44,65,86,117,122,191,228,265],"\u3044\u308d\u3044\u308d":[22,264,271],"\u3044\u308f\u3086\u308b":267,"\u3044b":[259,261],"\u3046\u3048":[38,40],"\u3046\u3048\u3048":[202,223],"\u3046\u3061":[11,34,38,40,43,51,65,68,69,82,89,92,112,121,137,149,161,205],"\u3046\u3061\u3044":153,"\u3046\u3063\u304b\u308a":41,"\u3046\u307e\u304f":[3,4,22,43,44],"\u3047\u3048":[202,223],"\u3047\u304a":[202,223],"\u304a\u3044":[0,12,14,17,34,38,41,44,51,65,68,78,158,265,268],"\u304a\u304a\u3084\u3084\u3086\u3086":[202,223],"\u304a\u304b":29,"\u304a\u304b\u3052":210,"\u304a\u304b\u3057":36,"\u304a\u304b\u3057\u3044":44,"\u304a\u304b\u3057\u304f":36,"\u304a\u304d":[0,12,34,47],"\u304a\u304d\u307e\u3057\u3087":265,"\u304a\u304f":[12,197,265],"\u304a\u3051":[135,206],"\u304a\u3051\u308b":[0,33,40,41,196,243,265,267,268],"\u304a\u3053":[0,265],"\u304a\u3053\u306a\u3063":268,"\u304a\u3055\u3089\u3044\u3057":10,"\u304a\u3059\u3059\u3081":[104,172,252],"\u304a\u3059\u3059\u3081\u3057":[12,196,197,210,256],"\u304a\u305d\u3089\u304f":44,"\u304a\u3070":[35,38,41,43,44],"\u304a\u3070\u305f":[38,41,43,44],"\u304a\u3083":[202,223],"\u304a\u3088":49,"\u304a\u3088\u3073":[0,12,29,34,40,66,153,265,268],"\u304a\u3089":12,"\u304a\u308a":[42,275],"\u304a\u5f85\u3061":2,"\u304a\u77e5\u3089":22,"\u304a\u9858\u3044":[10,154],"\u304b\u3048\u308b":[43,182],"\u304b\u304b\u304d\u304d\u304f\u304f\u3051\u3051":[202,223],"\u304b\u304b\u3063":[34,83],"\u304b\u304b\u308a":[34,44,151,196,197,198,238],"\u304b\u304b\u308b":[68,131,151,198,268],"\u304b\u304b\u308f\u3089\u305a":34,"\u304b\u304c\u304d\u304e\u304f\u3050\u3051\u3052":[202,223],"\u304b\u304e\u308a":154,"\u304b\u3051":[41,90],"\u304b\u3051\u308b":[10,155],"\u304b\u3053\u308c":34,"\u304b\u3057\u3089":123,"\u304b\u305a":[40,42,44],"\u304b\u305a\u3072\u3053\u3055\u3093":40,"\u304b\u305f":[43,44],"\u304b\u3061":[135,259],"\u304b\u3061\u3083\u3093":[117,142],"\u304b\u3064":[34,41,69,135,151,197,259],"\u304b\u3069":[42,43,54,103,104,105,112,114,115,117,120,123,135,138,142,151,155,161,166,167,171,196,261,263,268,275],"\u304b\u3069\u3046":[29,43,44,87,96,104,109,115,122,130,134,148,161,177,182,261],"\u304b\u306a\u308a":42,"\u304b\u307e\u3044":268,"\u304b\u3082":[10,42,43,70,83,92,95,105,106,107,112,114,118,119,120,131,132,133,134,137,140,142,143,147,151,158,171,196,197,210,211,212,213,270],"\u304b\u3089":[0,3,9,11,12,17,22,23,30,33,34,35,36,38,39,40,41,42,43,44,47,51,54,61,65,68,69,82,83,91,92,95,99,102,103,104,105,112,114,115,117,120,121,122,124,129,130,131,135,136,137,138,140,142,143,145,151,152,153,154,155,161,165,166,169,170,172,173,176,178,179,182,191,192,195,196,197,198,199,200,205,209,210,211,212,213,216,217,218,219,220,225,226,228,229,230,231,232,236,238,243,252,255,258,261,262,265,268,270,271,274,275],"\u304b\u308b":34,"\u304b\u308f":34,"\u304b\u308f\u308a":[27,42,43,44,261],"\u304by":41,"\u304c\u3042\u308a":[12,19,121,135,156,165,209,214,224,225],"\u304c\u3042\u308c":[44,214],"\u304c\u3044":47,"\u304c\u3044\u304f\u3064\u304b":[114,121],"\u304c\u3053\u306e":196,"\u304c\u3059":[34,68,105,120],"\u304c\u3061":[92,226],"\u304c\u3063":[34,93,112,114,115,210,236,238],"\u304c\u3064\u3044":[36,40,70,80,135,214,220],"\u304c\u3064\u304d":151,"\u304c\u3069":[34,134,199,242],"\u304c\u3072\u3068\u3064":209,"\u304c\u308b":270,"\u304c\u308f\u304b\u3063":92,"\u304c\u308f\u304b\u308a":[91,92,115,170,229,230,231,232,262,271],"\u304c\u308f\u304b\u308b":165,"\u304c\u308f\u304b\u308c":135,"\u304f\u3060":[0,2,6,7,8,12,17,24,25,27,28,29,30,31,32,34,40,41,42,43,44,49,64,80,85,86,87,88,91,92,93,95,96,97,98,99,102,104,106,107,108,109,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,151,153,154,155,156,158,165,170,176,177,182,196,197,206,209,210,220,228,242,243,250,252,256,261,263,265,266,268,271,272,273,275],"\u304f\u308c":10,"\u304f\u308c\u308b":[0,16,17,99,104],"\u3050\u3088\u3046":165,"\u3050\u308b":[34,43,44,195,196,197],"\u3050\u308b\u3093":[196,197,267],"\u3051\u3069":151,"\u3053\u3046":10,"\u3053\u3046\u3059\u308c":10,"\u3053\u3053":[12,21,83,106,135,138,196,197,200,209,261,262,265,268,271,275],"\u3053\u3053\u3055":[202,223],"\u3053\u3053\u3067":[12,262],"\u3053\u3054":[202,223],"\u3053\u3061\u3089":[17,158,170,173,177,209,268,270],"\u3053\u3068":[0,1,3,6,7,8,9,10,11,14,17,20,21,23,24,25,27,29,31,32,34,35,36,38,39,40,41,42,43,44,47,48,50,51,54,59,61,65,68,69,73,78,80,82,83,85,86,87,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,110,111,112,114,115,117,118,121,123,124,125,127,129,130,131,133,135,136,140,141,142,143,144,145,146,149,151,152,153,154,155,156,158,163,165,166,167,168,169,170,171,173,174,176,177,178,179,182,195,196,197,198,199,200,202,205,206,207,209,210,211,212,213,214,216,217,218,219,220,221,223,224,225,226,228,236,238,242,243,251,252,255,256,258,261,262,263,265,266,267,268,269,270,271,272,273,274,275],"\u3053\u306a\u3044":[42,43],"\u3053\u306e":[0,2,3,5,6,7,8,11,12,17,18,20,21,23,24,25,26,27,28,29,30,31,32,33,34,38,39,40,41,42,43,44,47,48,49,50,57,63,68,69,70,74,80,81,83,85,86,87,88,91,92,93,95,96,97,98,99,104,105,106,107,108,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,153,154,155,158,160,161,165,166,168,169,171,173,176,177,179,181,182,184,191,193,194,196,197,198,199,202,204,206,207,209,210,211,212,213,214,215,216,217,219,220,223,228,229,230,232,238,239,242,244,251,252,258,259,261,265,266,267,268,269,270,271,274,275],"\u3053\u308c":[0,6,7,8,11,12,16,17,18,29,33,34,38,40,41,42,43,44,47,50,55,73,80,86,88,91,92,95,104,106,107,108,112,113,114,115,117,120,122,124,125,129,130,131,135,136,140,143,146,153,155,158,161,165,169,176,177,179,182,196,197,198,200,209,210,211,212,213,214,216,217,218,219,220,226,228,236,238,242,252,258,259,261,263,265,266,270,271,274,275],"\u3053\u308c\u3089":[3,12,24,25,27,29,30,31,40,41,78,80,92,104,112,113,114,115,117,122,124,125,129,135,149,151,153,155,156,158,165,171,195,196,197,201,207,210,211,214,218,219,220,252,261,266,267,268,271],"\u3054\u3068":[9,12,34,40,41,43,44,54,113,137,146,168,177,211,242,262,263,269],"\u3054\u307f":[10,41],"\u3054\u3089\u3093\u304f":13,"\u3054\u89a7\u304f":[14,268],"\u3055\u3044":[0,2,6,7,8,12,14,17,24,25,27,28,29,30,31,32,34,40,41,42,43,44,49,64,80,85,86,87,88,91,92,93,95,96,97,98,99,102,104,106,107,108,109,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,151,153,154,155,156,158,165,170,176,177,182,196,197,206,209,210,220,228,242,243,250,252,256,261,263,265,266,268,271,272,273,275],"\u3055\u304c":262,"\u3055\u304d":265,"\u3055\u3056\u3057\u3058\u3059":[202,223],"\u3055\u3057\u3057\u3059\u3059\u305b":[202,223],"\u3055\u305b":10,"\u3055\u307e\u3056\u307e\u306a":[22,264,271],"\u3055\u3089":270,"\u3055\u3089\u306b":[0,33,42,43,80,82,112,114,115,218,220,262,267,268],"\u3055\u3093":[6,7,17,34,36,37,38,39,40,41,42,43,44,92,112,114,115,117,135,140,142,144,146,179,202,210,213,218,238,242,252,266],"\u3057\u3044":[259,261],"\u3057\u3046\u308b":42,"\u3057\u304b":[17,42,43,47,92,112,114,115,135,140,155,171,196,197,210,212,213,226,228,239,252,265,270],"\u3057\u304b\u3057":[17,34,115,117,123,135,197,209,210,213,228,242,252,259,261,270],"\u3057\u304d\u3044":34,"\u3057\u304d\u308c":40,"\u3057\u304f":41,"\u3057\u3064\u3064":14,"\u3057\u3066":[10,12,14,17,31,36,40,41,68,135,151,155,261,266,267,268],"\u3057\u306a\u3044":43,"\u3057\u307e":10,"\u3057\u307e\u3044":[10,34,142,154,212,217,261,265,273],"\u3057\u307e\u3046":[0,10,12,34,36,38,40,41,42,43,44,105,142,151,228],"\u3057\u307e\u3057":[34,41],"\u3057\u307e\u3057\u3087":[80,142,211,212,213,228,274],"\u3057\u307e\u3059":[112,114,115,135,158,177,196,197,218,259,271],"\u3057\u307e\u305b":[10,29,114,115,135,155,158,210,216,236,261],"\u3057\u307e\u3063":[34,42,44],"\u3057\u3084\u3059\u3044":158,"\u3057\u3084\u3059\u304f":[40,44],"\u3057\u3088":[11,34,38,41,44,49,54,62,95,96,105,117,142,143,165,198,265],"\u3057\u308a":10,"\u3057\u308c":[10,42,43,70,83,92,95,105,106,107,112,114,118,119,120,131,132,133,134,137,140,142,143,147,151,158,171,196,197,210,211,212,213,270],"\u3058\u304d":[86,179],"\u3059\u304e\u307e\u305b":267,"\u3059\u304e\u308b":[34,80],"\u3059\u304f":182,"\u3059\u3050":[0,131,136,158,252],"\u3059\u3053\u308c\u3089":135,"\u3059\u3067":[12,42,70,95,104,143,146,198,206,242,259],"\u3059\u306a\u308f\u3061":265,"\u3059\u3079":[11,34,38,42,43,82,90,91,103,104,105,107,112,114,115,116,117,121,130,135,142,143,146,148,151,154,155,171,191,197,216,220,228,242,252,258,271],"\u3059\u3079\u304d":11,"\u3059\u3079\u3066":[29,34,36,38,40,42,43,47,63,68,80,82,85,86,91,92,93,95,104,105,112,117,135,139,140,143,146,154,155,161,197,199,210,224,232,235,242,266,268],"\u3059\u308b":[0,1,2,3,4,9,11,17,18,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,38,39,40,41,42,43,44,47,49,50,51,54,55,57,59,61,62,63,64,65,66,67,68,69,70,71,73,74,78,82,83,84,85,88,89,90,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118,120,121,123,124,125,127,129,130,131,132,134,135,136,137,138,139,140,141,142,143,144,145,146,148,150,151,152,153,154,156,158,161,162,163,165,166,167,168,169,170,171,172,173,174,176,177,178,179,181,182,184,191,193,194,195,196,197,198,199,200,202,205,206,207,209,210,211,212,213,214,215,218,220,221,223,224,225,226,228,229,236,238,239,240,241,242,243,251,252,255,256,258,259,260,262,264,265,267,268,269,271,272,273,274,275],"\u3059\u308b\u304b":266,"\u3059\u308c":[0,12,43,68,124,129,135,154,161,168,171,196,197,238,266,268],"\u305a\u305b":[202,223],"\u305a\u3064":[153,154,242,270],"\u305a\u306b":80,"\u305a\u308c":[0,11,68,82,105,110,153,165,243,258,265],"\u305b\u3044":[34,41,42,44],"\u305b\u3044\u305c\u3044":140,"\u305b\u304b\u306d":44,"\u305b\u305a":108,"\u305b\u306a":[196,197],"\u305b\u308b":[0,11,12,14,34,92,140,156,158,168,169,176,177,223,256],"\u305b\u308c":[0,91],"\u305d\u3046":[10,21,34,54,63,120,121,122,131,134,161,171,172,191,197],"\u305d\u3046\u3044\u3063":34,"\u305d\u3053":[12,114,135,261,265],"\u305d\u3053\u306b":141,"\u305d\u3057\u3066":[0,135,146,179,265,266,270,271],"\u305d\u305d\u305f":[202,223],"\u305d\u305e":[202,223],"\u305d\u3061\u3089":[29,34,44],"\u305d\u306e":[0,10,11,12,17,22,23,32,34,40,41,42,43,44,47,49,50,54,56,59,63,65,66,68,69,80,82,86,87,93,102,103,104,105,112,114,115,117,122,130,131,135,140,142,145,151,153,154,155,161,171,176,177,191,193,196,197,199,200,211,213,214,216,220,224,228,236,238,242,243,255,258,259,261,263,266,267,268,270,271,272,273,275],"\u305d\u306e\u305b\u3044":34,"\u305d\u306e\u307e\u307e":12,"\u305d\u306e\u3088\u3046":102,"\u305d\u306e\u5f8c":[47,54,135,197],"\u305d\u306e\u969b":12,"\u305d\u308c":[11,12,17,27,28,32,34,36,43,61,65,69,71,92,93,104,112,115,135,140,142,155,170,173,193,196,197,210,219,228,243,259,261,265,266,268,270,274],"\u305d\u308c\u304b\u3089":[80,135],"\u305d\u308c\u305e\u308c":[6,7,8,11,12,14,29,34,42,65,68,83,105,135,140,146,153,156,158,171,177,191,197,207,220,258,259,261,265,266,268,270,275],"\u305d\u308c\u3086\u3048":[196,265],"\u305d\u308c\u3089":[12,34,43,47,49,51,70,104,117,135,136,142,149,152,209,210,252],"\u305d\u308d\u305d\u308d":268,"\u305d\u3093\u306a":[29,140],"\u305e\u3044":[114,115],"\u305e\u308c":[11,12,61,135,155,197,219],"\u305f\u3044":[6,7,8,16,24,25,27,28,29,31,33,34,38,42,44,47,51,68,91,92,95,112,113,117,118,120,123,132,133,134,135,140,142,144,146,151,153,154,155,158,170,172,176,196,209,210,216,219,224,226,228,238,243,258,265,266,267,268,270,272],"\u305f\u3044\u304f\u3064\u304b":44,"\u305f\u304b":[38,43,98,104,106,107,108,131,135,158,217],"\u305f\u304b\u3063":[217,274],"\u305f\u304f":[6,7,17,38,41,43,44,70,92,112,114,115,117,135,140,142,144,146,179,210,213,218,242,252,266],"\u305f\u3051\u3069":135,"\u305f\u3055\u3093":[34,35,38,41,43,44],"\u305f\u3059\u3079\u3066":135,"\u305f\u3060":[27,34,80],"\u305f\u3060\u304d":34,"\u305f\u3060\u3051":40,"\u305f\u3060\u3057":[33,34,35,38,41,42,43,44,69,78,114,121,137,153,156,196,197,210,236,259],"\u305f\u3060\u3061":[202,223],"\u305f\u3061":214,"\u305f\u3061\u3061\u3064\u3064":[202,223],"\u305f\u3068\u3048":[117,135,136,261],"\u305f\u3069\u3063":271,"\u305f\u3069\u308b":267,"\u305f\u3070\u304b\u308a":198,"\u305f\u3073":[12,44,82,154,275],"\u305f\u3076\u3093":29,"\u305f\u3079":223,"\u305f\u307b\u3046":135,"\u305f\u307e\u307e":[44,252],"\u305f\u3081":[0,1,2,3,4,6,7,12,14,17,19,21,22,23,24,25,27,29,30,31,32,34,38,40,41,42,43,44,47,50,55,57,61,68,69,70,73,76,80,83,85,87,89,92,95,102,103,104,105,106,112,114,117,121,122,123,134,140,142,143,151,152,153,154,155,158,161,162,165,166,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,199,200,209,210,211,212,213,214,216,217,219,220,223,224,225,236,238,242,252,256,258,259,261,263,265,266,267,268,269,270,271,273,275],"\u305f\u3081\u3057":275,"\u305f\u3089":[10,12,17,29,36,42,43,44,54,70,73,99,106,107,108,114,117,122,130,131,135,136,142,145,151,158,161,173,177,182,197,212,216,228,252,256],"\u305f\u308a":[0,3,10,34,42,43,44,59,104,134,135,140,195,210,220,243,256],"\u3060\u3044":[38,42],"\u3060\u304b\u3089":[112,115,135],"\u3060\u3051":[3,6,7,11,17,23,24,25,27,31,32,34,38,40,42,43,44,57,68,73,84,86,87,88,92,95,102,104,105,108,112,113,114,115,117,120,121,122,124,129,131,132,135,137,140,142,143,145,146,148,151,155,158,159,161,169,170,173,179,182,191,193,196,197,198,199,209,210,211,212,213,214,220,226,231,232,238,251,252,256,261,265,270],"\u3060\u3051\u304d\u3061\u3093":44,"\u3060\u3055\u3044":[0,3,12,13,14,17,18,19,21,23,29,30,31,34,40,42,43,63,80,83,91,92,112,113,114,115,117,120,121,123,135,137,140,142,155,158,171,176,177,191,196,197,203,209,210,214,216,244,252,258,266,268],"\u3060\u3057":[38,154],"\u3060\u3059":44,"\u3060\u3063":[34,40,43,44,68,82,104,122,135,197,261,262],"\u3060\u3068":10,"\u3061\u3083\u3093":267,"\u3062\u3064\u3065":[202,223],"\u3064\u3044":271,"\u3064\u304b":37,"\u3064\u304b\u3063":34,"\u3064\u304d":[33,34,42,44,80,88,132,133,135,145,170,209,212],"\u3064\u3051":[135,158,165],"\u3064\u3051\u308b":[10,42,44,80,135,255,273],"\u3064\u3064":[177,261],"\u3064\u3065\u3044":271,"\u3064\u3065\u304f":158,"\u3064\u3076\u3084\u304d":198,"\u3064\u307e\u308a":[12,43,92,99,135,146,236],"\u3065\u3051":[40,41,177],"\u3065\u3051\u308b":47,"\u3066\u304d":87,"\u3066\u304f":14,"\u3066\u307f\u307e\u3057\u3087":275,"\u3066\u308c":117,"\u3067\u3044":[43,135,197,265,271],"\u3067\u3044\u3046":[200,266],"\u3067\u304d":[0,1,6,7,8,10,11,12,13,14,17,18,21,24,25,26,27,28,29,31,33,34,35,36,38,40,41,42,43,44,47,48,50,51,54,55,57,59,61,65,68,69,73,78,80,82,83,84,85,86,87,88,91,92,93,95,96,97,98,99,103,104,105,106,107,108,112,113,114,115,116,118,120,121,122,123,124,125,129,130,131,132,133,134,135,136,138,140,143,144,145,146,149,151,152,153,154,155,156,158,161,162,163,165,166,167,168,169,171,172,173,174,176,177,178,179,182,191,195,196,197,198,199,200,202,205,206,207,209,210,211,212,213,214,216,217,218,219,220,221,223,224,225,226,228,236,238,239,242,251,252,255,256,258,261,262,263,265,266,267,268,269,270,272,273,274,275],"\u3067\u304d\u305a":34,"\u3067\u304d\u308b":[0,3,6,7,8,9,12,14,34,38,39,40,41,42,43,44,49,57,61,72,80,91,92,103,113,117,123,134,135,138,140,149,153,154,155,158,161,162,166,171,179,196,198,205,206,209,210,212,213,214,216,228,242,252,261,265,266,271,272,273],"\u3067\u304f":[3,21,23,42,80,92,135,140,158,176,197,209],"\u3067\u3053\u306e":[34,242],"\u3067\u3057":[30,34,42,43,44,197,211,262,265],"\u3067\u3057\u304b":[7,33,226,239],"\u3067\u3057\u3087":[0,6,7,20,29,34,42,92,121,122,135,151,158,197,198,266],"\u3067\u3059":[0,3,6,7,8,10,11,12,14,16,17,18,19,21,24,25,27,29,30,31,32,33,34,38,40,41,42,43,44,47,49,50,51,53,54,55,57,60,63,65,66,68,70,72,73,76,78,80,81,82,83,84,85,86,87,88,89,91,92,93,95,96,97,98,99,102,103,104,105,106,107,108,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,158,159,161,162,165,166,168,169,170,171,172,173,176,177,179,182,184,191,193,195,196,197,198,199,200,201,202,203,205,206,207,209,210,211,212,213,214,216,217,218,219,220,221,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,251,252,255,256,258,259,261,262,263,265,266,268,269,270,271,272,274,275],"\u3067\u3059\u306d":10,"\u3067\u3059\u3079\u3066":149,"\u3067\u305d\u3046":113,"\u3067\u3060\u3051":92,"\u3067\u3064\u306a\u3052\u308b":135,"\u3067\u3069":[113,138],"\u3067\u3069\u3053":87,"\u3067\u306a\u3051\u308c":[104,123,134,196,197],"\u3067\u306b":[34,44,105,120,124,129,198,261],"\u3067\u306e":[34,42,83,179,229,230,231,232],"\u3067\u306f":42,"\u3067\u307e\u3068\u3081":209,"\u3067\u307f":0,"\u3067\u3082":[0,12,14,17,19,23,24,25,27,29,31,32,34,38,40,41,42,43,44,47,87,104,115,117,135,140,142,154,155,158,169,177,179,182,206,210,213,214,216,220,238,258,259,261,268,270,272,275],"\u3067\u3082\u3059\u3079\u3066":[44,228],"\u3067\u3082\u3063\u3068\u3082":81,"\u3067\u3088\u308a":42,"\u3067\u5024":[153,268],"\u3068\u3044\u3044":210,"\u3068\u3044\u3046":[0,9,10,12,14,17,29,34,38,40,41,42,43,44,47,57,80,82,85,86,89,92,99,104,106,107,108,112,114,115,118,120,121,123,124,125,129,130,131,132,135,137,138,140,142,145,146,149,151,153,154,155,156,158,165,169,176,177,179,182,195,196,197,200,207,209,210,211,212,213,214,216,217,220,224,225,226,228,229,230,231,232,236,238,239,242,243,252,258,259,261,262,265,266,267,268,270,271,272,275],"\u3068\u3044\u3051":[43,105,135,140,258,263],"\u3068\u3044\u3063":[27,40,41,42,43,44,80,105,112,114,115,117,123,135,165,195,196,197,199,220,252,275],"\u3068\u3048":[0,29,33,42,43,47,56,57,82,91,92,95,105,112,114,115,121,122,134,135,136,137,143,158,169,179,191,206,210,211,212,213,228,236,242,259,275],"\u3068\u304a\u308a":[33,104,154,265,266,275],"\u3068\u304d":[0,6,7,9,10,11,12,24,25,27,28,29,31,34,35,36,38,40,41,42,43,44,47,54,61,66,68,69,70,80,83,84,86,91,92,95,99,104,105,106,112,113,114,115,117,120,121,122,123,124,125,129,130,134,135,136,138,139,140,142,143,145,146,151,153,155,158,165,176,177,179,195,196,197,198,199,200,206,209,210,214,216,217,218,219,226,242,243,252,258,259,265,266,267,268,271,272],"\u3068\u304d\u3057\u304b":99,"\u3068\u304d\u3069\u304d":44,"\u3068\u3053\u306e":[117,135,210,216,242],"\u3068\u3053\u308d":[16,17,34,39,43,105,112,115,132,133,173,176,228],"\u3068\u3053\u308d\u3044\u304f\u3064\u304b":80,"\u3068\u3055\u3089\u306b":[6,7],"\u3068\u3057":[11,41,42,44,47,54,95,117,133,135,142,143,152,153,154,155,165,173,197,198,209,216,217,218,219,228,236,243,265,267,270],"\u3068\u3057\u3066":[0,11,12,14,15,17,18,20,24,25,27,28,29,31,34,36,38,39,40,41,42,43,44,47,48,50,51,54,65,66,67,73,78,82,87,92,96,98,102,106,107,108,109,112,114,115,116,117,120,121,130,132,133,135,137,138,140,142,145,148,153,154,155,158,163,165,169,171,177,179,195,196,197,200,205,206,209,210,211,212,214,216,217,218,220,221,224,226,228,238,250,252,255,258,259,261,265,266,267,268,269,270,272,274,275],"\u3068\u3057\u307e\u3057\u3087":[270,274],"\u3068\u3057\u307e\u305b":49,"\u3068\u3059\u3050":198,"\u3068\u3059\u3079\u3066":[40,104,113,130,135,151],"\u3068\u3059\u308b":34,"\u3068\u3059\u308c":0,"\u3068\u305d\u306e":[82,85,117,158,212],"\u3068\u3063":155,"\u3068\u3064\u3044":275,"\u3068\u3066":[0,34,135,196,197,216,220,252],"\u3068\u3068":[16,17,202,223],"\u3068\u3068\u3082":63,"\u3068\u3068\u3082\u306b":265,"\u3068\u3069":[91,202,215,223],"\u3068\u306a\u3063":41,"\u3068\u306a\u308a":[34,122,169,179,196,252,272],"\u3068\u306e":[43,44,114,115,197],"\u3068\u307f":[41,135,156,196],"\u3068\u3082":[34,43,92,112,114,115,135,154,171,179,182,196,197,242,263,275],"\u3068\u3082\u3063\u3068":29,"\u3068\u3088\u3044":29,"\u3068\u308a":[14,44,54,156,170,173,193],"\u3068\u308a\u3068\u3093":[196,197],"\u3068\u308b":65,"\u3068\u308f\u304b\u308a":[214,262],"\u3068\u308f\u304b\u308b":12,"\u3069\u3046":[10,34,35,40,43,55,65,90,92,94,98,100,106,107,108,110,111,112,114,115,117,121,135,151,155,158,191,228,261,266],"\u3069\u304a\u308a":[34,44],"\u3069\u3053":[29,38,42],"\u3069\u3061\u3089":[19,34,43,44,54,76,114,142,158,218,252,268,270],"\u3069\u3061\u3089\u304b":[33,169,179,196,197],"\u3069\u306e":[29,34,135,146,165,166,197,205,210,217,266,270],"\u3069\u308c":[83,92,93,104,105,106,107,108,113,117,130,134,135,140,142,176,197,228,252],"\u3069\u3093":141,"\u3069\u3093\u306a":[34,158],"\u306a\u3044":[0,9,11,12,14,17,21,23,29,30,33,34,35,36,37,38,39,40,41,42,43,44,47,50,54,55,63,65,68,69,70,80,82,83,86,88,89,91,92,93,96,97,99,103,104,105,112,113,114,115,120,121,122,123,131,132,133,134,135,136,137,138,140,145,146,151,152,153,154,155,156,158,162,168,169,170,172,176,179,182,191,195,196,197,198,205,207,209,210,211,212,213,214,216,217,218,220,225,226,228,236,238,239,258,259,261,263,265,266,268,270,271,273],"\u306a\u304a":[12,196,259],"\u306a\u304a\u3053\u306e":154,"\u306a\u304a\u3057":42,"\u306a\u304a\u3059":[42,130],"\u306a\u304b":10,"\u306a\u304b\u3063":[34,40,42,43,44,82,84,86,90,94,100,106,107,108,110,111,117,123,130,135,136,151,153,154,161,177,182,197,210,212,261,268],"\u306a\u304c\u3089":[0,12,40,112,114,115,135,146,158,228,268],"\u306a\u304c\u308a":34,"\u306a\u304c\u308b":40,"\u306a\u304e":182,"\u306a\u304f":[0,3,10,12,21,29,34,35,36,38,40,41,42,43,44,47,54,65,93,104,106,115,117,121,124,129,135,140,142,151,154,155,161,177,179,182,191,195,196,197,205,206,210,211,212,213,220,231,232,242,252,256,265,266,268,270,274],"\u306a\u304f\u3059":104,"\u306a\u3051\u308c":[21,29,34,40,44,50,51,54,57,62,63,65,68,76,80,87,91,92,93,95,105,112,114,115,117,122,131,135,140,143,153,154,155,158,161,170,171,172,176,182,196,197,209,210,211,212,213,219,265],"\u306a\u3055":[156,178],"\u306a\u3055\u3093":3,"\u306a\u3057":[34,41,42,43,47,69,82,87,88,115,121,123,135,145,153,166,170,177,182,196,202,217,223,236,238,243,251,258,265],"\u306a\u3059":167,"\u306a\u305c":[6,7,8,33,43,47,91,92,99,104,112,114,115,117,121,122,135,140,145,151,158,176,191,196,197,200,206,210,211,212,213,216,217,225,226,228,229,230,231,232,238],"\u306a\u305c\u306a\u3089":114,"\u306a\u305f":[43,214],"\u306a\u3063":[0,6,7,8,10,12,14,34,36,38,39,40,41,42,43,44,80,82,83,89,99,105,106,114,121,135,146,196,197,199,212,214,216,242,252,256,261,262,265,268,270,271,272],"\u306a\u3068":[34,202,223],"\u306a\u3068\u304d":[0,34],"\u306a\u3068\u3057\u3066":223,"\u306a\u3069":[0,5,6,7,8,11,12,13,17,20,29,34,38,40,42,43,44,47,55,65,82,89,91,104,105,111,121,122,123,132,133,135,140,146,149,153,154,158,168,169,171,179,191,195,196,197,198,205,209,210,211,212,213,216,217,219,220,228,239,243,252,259,261,265,268,269,271,272],"\u306a\u306a\u3069":[196,197],"\u306a\u306b":[70,92,112,117,123,142,216],"\u306a\u306b\u3088\u308b":[34,238],"\u306a\u306b\u5bfe\u3057":[196,197],"\u306a\u306e":[43,216],"\u306a\u3073":[34,43,44],"\u306a\u3078":34,"\u306a\u3082\u306e":[12,51,210],"\u306a\u3084\u308a\u304b\u305f":274,"\u306a\u3088\u3046":44,"\u306a\u3089":[6,7,8,11,14,21,24,25,27,31,33,40,41,42,43,44,47,51,55,63,65,68,80,82,86,91,92,99,102,104,107,112,114,115,117,121,122,127,134,135,136,137,140,145,151,153,154,155,158,170,176,191,196,197,200,206,210,211,212,213,216,217,225,226,228,229,230,231,232,238,242,263,270],"\u306a\u308a":[0,6,7,8,10,12,21,33,34,38,40,41,42,43,44,47,50,51,54,55,57,63,65,68,76,78,80,82,83,86,87,88,90,91,92,99,101,104,105,106,107,108,112,114,115,117,121,122,123,124,125,129,130,131,134,135,136,137,138,139,140,142,143,145,153,154,155,156,158,165,166,171,176,179,196,197,198,201,206,207,209,210,211,212,213,214,216,217,219,224,226,240,241,243,255,258,261,265,266,267,268,270,271,272,273,275],"\u306a\u308b":[0,10,11,12,17,23,24,25,27,29,31,32,34,35,36,37,40,41,42,43,44,54,55,65,70,90,92,101,102,103,104,106,107,108,112,114,115,117,121,122,130,134,135,140,142,151,153,154,155,158,161,166,167,172,176,177,179,196,197,198,202,214,219,223,238,242,243,261,265,266,268],"\u306a\u308c":82,"\u306a\u308f":44,"\u306a\u3093":82,"\u306b\u3042\u308a":[6,7,8,18,118,140],"\u306b\u3044\u304f\u3064\u304b":[41,43],"\u306b\u304a\u3044":[12,26,34,82,265],"\u306b\u304a\u3059\u3059\u3081":104,"\u306b\u304d":34,"\u306b\u304f\u3044":[0,34],"\u306b\u304f\u3044\u304b":228,"\u306b\u304f\u304f":43,"\u306b\u304f\u308b":261,"\u306b\u3057":[41,42,43,47,105,113,135,176,196,197],"\u306b\u3059":[44,261],"\u306b\u3059\u3050":198,"\u306b\u3059\u3079\u3066":91,"\u306b\u3059\u308b":[33,34,252],"\u306b\u305b":34,"\u306b\u305d\u306e":158,"\u306b\u3064":[34,40],"\u306b\u3064\u3044\u3066":[0,3,7,11,12,18,19,20,21,24,25,27,28,29,30,31,34,38,40,41,42,43,47,49,61,65,69,80,81,82,83,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,153,158,160,163,165,166,167,169,174,177,178,182,196,206,209,210,211,212,213,214,216,217,219,226,238,242,243,244,250,252,258,259,262,263,265,266,268,269,270,271,275],"\u306b\u3064\u304d":199,"\u306b\u3064\u3051":197,"\u306b\u3064\u3076\u3084\u3051":10,"\u306b\u3064\u3076\u3084\u3051\u308b":10,"\u306b\u3066":[12,40,41,43,165],"\u306b\u3068\u3063":[10,43],"\u306b\u3068\u3063\u3066":[10,146,226],"\u306b\u3069":[11,135],"\u306b\u307e\u3068\u3081":[12,44],"\u306b\u307e\u3068\u3081\u308b":44,"\u306b\u3082":[44,135,210,259],"\u306b\u3088":40,"\u306b\u3088\u304f":211,"\u306b\u3088\u3063":[0,9,11,34,41,54,65,68,80,82,89,90,94,100,101,103,110,111,127,141,152,153,156,195,236,258,259,265,267,268],"\u306b\u3088\u3063\u3066":[0,14,41,54,78,82,261,265,268],"\u306b\u3088\u308a":[0,12,33,34,40,41,42,43,44,89,92,135,155,165,228,243,252,255,258,261,265,268,270,272,273],"\u306b\u3088\u308b":[0,10,12,22,34,38,39,40,41,42,43,153,155,165,197,243,264,265,268,271,275],"\u306b\u5bfe\u3057":[0,11,12,34,35,40,41,42,43,44,59,65,68,80,91,92,115,122,124,129,131,135,138,148,151,152,156,171,182,196,197,210,212,219,228,259,266,267,268,270,274,275],"\u306b\u5bfe\u3057\u7570":177,"\u306b\u5bfe\u3059\u308b":[0,11,12,22,34,36,38,41,42,43,44,69,92,116,122,131,134,135,138,142,158,264,265,267,268,271,272],"\u306b\u5bfe\u5fdc":[34,38,39,40,42,51,54,59,62,65,66,68,71,111,112,114,115,153,156],"\u306b\u5bfe\u5fdc\u4ed8\u3051":216,"\u306b\u5bfe\u8c61":38,"\u306b\u6708":34,"\u306b\u95a2\u3057":[11,34,41,43,44,54,114,115,154],"\u306b\u95a2\u3059\u308b":[2,22,34,38,39,40,41,42,43,44,46,64,69,134,155,196,197,199,216,242,271],"\u306b\u95a2\u308f\u3089":104,"\u306e\u3042\u3068":40,"\u306e\u3044":[0,11,68,82,105,110,153,165,243,258],"\u306e\u3044\u305a\u308c":[34,63,93,274],"\u306e\u3044\u305a\u308c\u304b":[67,68,71,166,167],"\u306e\u3046\u3061":[93,158,196],"\u306e\u304b":[135,259,262,271],"\u306e\u304b\u308f\u308a":[42,44],"\u306e\u304f\u3089\u3044":[34,92,242],"\u306e\u3059":99,"\u306e\u3059\u3079\u3066":[112,114,115,135,145,252],"\u306e\u305e\u3044":228,"\u306e\u3067":[0,1,10,12,17,21,32,34,38,40,41,42,43,44,83,91,104,112,114,115,132,133,135,140,155,156,161,165,177,182,197,209,216,242,252,256,259,261,262,263,265,268,270,271],"\u306e\u3067\u3057\u3087":[135,210],"\u306e\u3069":191,"\u306e\u3069\u3061\u3089":[135,158,197],"\u306e\u3069\u3061\u3089\u304b":[135,161,196,197],"\u306e\u3069\u308c":[92,140,153,158,191,216],"\u306e\u306b":[22,34,40,41,42,44,104,118,144,226,260,266],"\u306e\u306b\u5bfe\u3057":54,"\u306e\u307b\u304b":[243,265],"\u306e\u307f":[0,11,17,21,34,42,43,44,50,51,65,66,68,69,72,78,103,104,105,111,114,115,117,121,131,135,137,138,151,155,156,168,169,176,177,179,182,203,205,210,214,216,228,238,239,259,261,262,265,268,270,273],"\u306e\u307f\u3057\u304b":218,"\u306e\u3088\u3046":[34,41,42,43,44,47,50,86,93,135,140,149,153,158,176,195,196,197,210,211,228,239],"\u306f\u3042\u306a\u305f":6,"\u306f\u3044":265,"\u306f\u3044\u304f\u3064\u304b":[33,49,83,142,151,196,252],"\u306f\u3044\u3051":[34,54,65,92,102,107,151,158,197],"\u306f\u3044\u3064":34,"\u306f\u3044\u308f\u3086\u308b":43,"\u306f\u304d\u3063\u3068":210,"\u306f\u3053\u306e":[43,122,134,135,137,182,213,228,263],"\u306f\u3057":34,"\u306f\u3058\u307e\u308a":82,"\u306f\u3058\u307e\u308b":34,"\u306f\u3058\u3081":[17,22,46,82,92,138,202,215],"\u306f\u3059\u3079\u3066":[88,92,96,97,98,99,104,105,106,107,108,112,114,120,121,122,123,126,130,132,133,134,135,136,137,140,142,144,145,146,155,169,171,195,197,201,212,213,228,268],"\u306f\u305a":[18,40,154,202,210,238,242],"\u306f\u305d\u306e":54,"\u306f\u305d\u308c\u3089":117,"\u306f\u3061\u3087\u3046":197,"\u306f\u3068":220,"\u306f\u3069":[92,135,140,216],"\u306f\u3069\u3061\u3089":[158,252],"\u306f\u3069\u3061\u3089\u304b":[196,197],"\u306f\u3069\u308c":197,"\u306f\u306a\u304f":210,"\u306f\u307b\u3068\u3093\u3069":135,"\u306f\u307e\u305a":12,"\u306f\u307e\u3060":[115,213,252],"\u306f\u307e\u3068\u3081\u3066":12,"\u306f\u307f":3,"\u306f\u308f\u304b\u308a":34,"\u306f\u6708":[197,214],"\u3070\u3042":214,"\u3070\u3044\u3051":[21,29,40,44,51,54,57,62,65,68,76,80,91,92,93,95,104,105,112,114,115,123,135,140,143,155,158,176,182,196,197,209,210,211,212,213],"\u3070\u304b\u308a":[12,43],"\u3070\u3053\u306e":43,"\u3070\u3059\u3079\u3066":228,"\u3070\u3069":47,"\u3070\u3071":[202,223],"\u3070\u308c\u308b":36,"\u3072\u3053\u3055\u3093":[40,42,44],"\u3072\u3068\u3064":[40,163,196],"\u3072\u3072\u3072\u3075\u3075\u3075":[202,223],"\u3072\u3073\u3074\u3075\u3076\u3077":[202,223],"\u3072\u3089":[34,176,196,197,202,206,216,223,228],"\u3072\u308d":273,"\u3072\u308d\u3086\u304d":273,"\u3075\u306a\u3068":42,"\u3075\u308a":138,"\u3076\u3093":10,"\u3078\u3059\u3079\u3066":[43,91],"\u3078\u3068":[42,135,263,272,274],"\u3078\u306e":[29,34,265],"\u3078\u3079\u307a":[202,223],"\u3078\u307b\u307b\u307b":[202,223],"\u3079\u304d":[6,7,8,12,34,43,44,65,93,114,121,123,130,135,151,153,155,158,197,201,258],"\u3079\u304f":268,"\u3079\u3066":[44,47,114,116,121,135,155,266],"\u3079\u30fc\u30b9":42,"\u307b\u3046":42,"\u307b\u304b":[0,265],"\u307b\u3057\u304f":135,"\u307b\u3068\u3093\u3069":[34,43,54],"\u307b\u3069":[138,140,151,153,228,256,265,268],"\u307b\u307c":197,"\u307b\u307c\u307d":[202,223],"\u307e\u3057":[6,7,8,10,12,17,18,34,38,40,41,42,43,44,92,104,112,114,115,135,140,155,165,196,197,200,210,217,226,261,262,266,267,271],"\u307e\u3057\u3087":[112,114,115,135,165,267,268],"\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,38,40,41,42,43,44,47,48,49,50,51,52,54,55,56,57,59,61,62,63,64,65,66,67,68,69,70,71,72,73,74,76,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,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,158,159,160,161,162,163,165,166,167,168,169,170,171,172,173,174,176,177,178,179,180,181,182,184,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,209,210,211,212,213,214,215,216,217,218,219,220,221,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,250,251,252,255,256,258,259,261,262,263,265,266,267,268,269,270,271,272,273,274,275],"\u307e\u305a":[12,17,29,32,154,155,184,191,197,202,259,261,262,266,268,270,271,274],"\u307e\u305b":[0,6,7,10,12,17,25,29,33,34,38,40,41,42,43,44,47,49,50,51,54,57,61,62,63,65,68,69,70,73,74,76,78,80,83,85,87,88,91,92,93,95,96,97,98,99,102,104,105,106,107,108,111,112,113,114,115,116,117,118,119,120,121,122,123,127,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,147,151,153,154,155,158,161,165,169,171,176,177,179,182,191,196,197,198,200,201,203,205,209,210,211,212,213,214,216,217,218,219,220,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,250,252,256,258,259,261,263,265,266,268,270,272,274],"\u307e\u305f":[3,5,8,12,14,19,21,29,34,38,39,42,43,44,47,51,54,68,70,76,83,89,90,91,92,93,94,99,100,101,103,104,106,107,108,110,111,112,114,115,121,122,123,127,130,131,135,140,141,148,151,153,154,155,161,165,169,179,191,196,197,199,207,210,214,220,236,238,243,252,262,271,273,275],"\u307e\u305f\u3044":[40,112,114,115,165,214],"\u307e\u305f\u3050":[22,40,165,264],"\u307e\u3060":[12,34,38,41,42,44,82,115,132,133,135,137,138,158,179,197,211,214,258],"\u307e\u3064\u308f":41,"\u307e\u3067":[11,12,17,33,34,41,42,44,49,50,86,112,117,135,153,154,161,198,210,220,242,262,266,268,270,271,273],"\u307e\u3068\u3081":[10,42],"\u307e\u3068\u3081\u3066":[0,12,265,266],"\u307e\u3068\u3081\u308b":[155,236],"\u307e\u307e":[10,12,34,41,43,63,82,142,151,158,197,266],"\u307e\u307e\u3067":261,"\u307e\u308a":[43,135],"\u307e\u308b":34,"\u307e\u308d\u3086\u304d":273,"\u307e\u308f\u3059":135,"\u307e\u308f\u308a":3,"\u307f\u304c":11,"\u307f\u305f\u3059":271,"\u307f\u3066":275,"\u307f\u306a\u3055":11,"\u307f\u306a\u3057":44,"\u307f\u307e\u3057\u3087":[112,135,142,197,211,212,213,265,266,267,268,270,271,274,275],"\u3080\u3089":34,"\u3080\u308b":[196,197],"\u3080\u308b\u3093":[196,197],"\u3082\u3044\u308d\u3044\u308d\u3057":112,"\u3082\u3046":[40,54,63,104,155,163,198,265,270],"\u3082\u3046\u307e\u304f":29,"\u3082\u304d\u3061\u3093":155,"\u3082\u3053\u306e":104,"\u3082\u3057":[6,7,21,29,33,34,41,42,43,44,50,63,70,83,85,86,87,92,99,104,105,106,108,114,115,117,122,130,131,135,136,137,140,142,151,154,155,161,165,171,172,173,177,182,196,197,209,210,211,212,214,242,252],"\u3082\u3057\u3042":43,"\u3082\u3057\u304b\u3057":228,"\u3082\u3057\u304f":[12,27,40,41,42,43,68,69,104,109,114,155,161,168,169,179,196,197,243,258,263,265,270],"\u3082\u3057\u3053\u306e":[122,263],"\u3082\u3057\u3054":40,"\u3082\u3057\u307e\u305b":70,"\u3082\u3057\u308c":[209,228,238],"\u3082\u3057\u4f7f\u3063":107,"\u3082\u3057\u547c\u3070":34,"\u3082\u3057\u578b":134,"\u3082\u3057x":41,"\u3082\u3059":[124,129],"\u3082\u3059\u3050":136,"\u3082\u305b":151,"\u3082\u3061\u308d\u3093":[154,266],"\u3082\u3063\u3068":[6,7,135],"\u3082\u3063\u3068\u3082":[14,85],"\u3082\u3064":[43,102,266],"\u3082\u3068":[12,34,262],"\u3082\u3068\u3082":34,"\u3082\u3069\u3061\u3089":213,"\u3082\u306e":[11,12,17,32,34,40,41,42,43,44,50,68,69,82,112,114,115,117,122,134,135,152,153,154,155,165,166,172,176,178,201,210,211,213,217,224,258,265,268,270],"\u3082\u3088\u308a":213,"\u3082\u3089\u3048":10,"\u3082\u3089\u3048\u308b":10,"\u3082\u3089\u3063":[12,268],"\u3082\u308a":43,"\u3082\u308c\u308b":43,"\u3084\u304c":82,"\u3084\u3057":135,"\u3084\u3059\u3044":[35,43,135,153,169,179,195],"\u3084\u3059\u3044\u304b":209,"\u3084\u3059\u304b\u3063":34,"\u3084\u3059\u304f":[36,42,84,135],"\u3084\u3059\u304f\u3057":[34,43],"\u3084\u305d\u306e":102,"\u3084\u3063":[92,191],"\u3084\u307e":42,"\u3084\u307e\u3060":42,"\u3084\u307e\u306d":[41,42],"\u3084\u3081":[34,38,41,42,43,44,86],"\u3084\u3081\u307e\u3057\u3087":[211,212,213],"\u3084\u3081\u308b":44,"\u3084\u3085\u3086\u3087":[202,223],"\u3084\u3089":12,"\u3084\u308a":[19,274],"\u3086\u304d":273,"\u3086\u304d\u3072\u308d":273,"\u3086\u308c":[34,238],"\u3088\u3044":[17,65,91,92,104,121,135,158,196,197,252,266,270],"\u3088\u3046":[0,6,7,8,10,11,12,14,21,26,29,34,35,36,38,39,40,41,42,43,44,47,51,63,68,80,82,83,85,89,91,92,99,102,103,104,105,112,113,114,115,117,118,120,121,122,123,124,125,129,131,135,136,139,140,142,143,146,153,154,155,156,158,165,166,169,177,179,182,196,197,198,200,202,205,209,210,211,212,213,214,215,218,220,223,224,225,228,236,238,240,241,242,252,256,258,259,261,262,263,265,266,267,268,271,272,273,274,275],"\u3088\u304b\u3063":261,"\u3088\u304f":[44,80,92,104,112,114,115,135,153,161,210,226],"\u3088\u3063":275,"\u3088\u3063\u3066":[76,146,205,243,269,275],"\u3088\u3073":11,"\u3088\u308a":[6,7,11,18,23,29,34,36,38,40,41,42,43,44,63,69,80,86,92,99,114,121,122,131,135,140,153,154,155,165,166,172,196,197,198,199,209,210,211,212,213,216,219,228,238,239,242,243,259,261,265,266,270,271],"\u3088\u308e\u308f":[202,223],"\u3088\u308f\u308f\u304b\u304b\u3051\u3051":[202,223],"\u3089\u308c":[0,10,11,34,36,38,40,41,44,50,63,90,91,93,102,114,122,131,135,141,146,220,238,268,270,274],"\u3089\u308c\u308b":[0,11,40,41,42,44,51,69,210,259],"\u308c\u305a":[44,82],"\u308c\u307e\u305b":[29,43,47,68,82,89,135,136,142,153,168,199,209,270],"\u308c\u308b":[0,9,11,12,14,17,29,34,38,40,41,42,43,44,47,50,54,59,63,66,69,70,78,80,82,88,89,104,111,112,113,114,115,118,131,132,133,135,138,140,142,153,154,161,165,172,179,182,198,200,205,210,216,217,219,220,223,226,243,258,259,261,268,275],"\u308f\u304b\u3061":259,"\u308f\u304b\u3063":151,"\u308f\u304b\u3089":135,"\u308f\u304b\u308a":[34,36,42,43,135,228,266],"\u308f\u304b\u308b":42,"\u308f\u304b\u308c":135,"\u308f\u3051":[105,123,135,144,146,197,216,242,265],"\u308f\u305f\u3057":223,"\u3092\u304a\u3053":271,"\u3092\u304b\u308f\u308a":63,"\u3092\u3054":14,"\u3092\u3054\u89a7\u304f":[0,18],"\u3092\u3064\u3051":[135,196],"\u3092\u3064\u3051\u308b":[6,7,197],"\u3092\u3088\u308a":44,"\u3092\u901a\u3057":[153,268],"\u3093\u304c":[196,197],"\u3093\u3057":[107,120,151],"\u3093\u3057\u304d":195,"\u3095\u304b":[202,223],"\u3096\u3051":[202,223],"\u309d\u309e":[202,223],"\u30a1\u30a2\u30a3\u30a4\u30a5\u30a6\u30a7\u30a8\u30a9\u30aa\u30e3\u30e4\u30e5\u30e6\u30e7\u30e8\u30ee\u30ef":[202,223],"\u30a2\u30a1\u30a4\u30a3\u30a6\u30a5\u30a8\u30a7\u30aa\u30a9":[202,223],"\u30a2\u30a2\u30a4\u30a4\u30a6\u30a6\u30a8\u30a8\u30aa\u30aa\u30e4\u30e4\u30e6\u30e6\u30e8\u30e8\u30ef\u30ef\u30ab\u30ab\u30b1\u30b1":[202,223],"\u30a2\u30ab\u30a6\u30f3\u30c8":[2,12,42],"\u30a2\u30ab\u30a6\u30f3\u30c8groonga":10,"\u30a2\u30af\u30bb\u30b5":[34,44,65],"\u30a2\u30af\u30bb\u30b5\u30fc":43,"\u30a2\u30af\u30bb\u30b9":[12,17,34,36,38,40,41,42,44,47,49,68,95,135,143,152,153,155,156,242,265,272],"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":[216,217,219,251,256],"\u30a2\u30b8\u30e3\u30b9\u30bf\u30fc":[80,135],"\u30a2\u30c3\u30c8\u30de\u30fc\u30af":[92,140],"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":[12,34,42,43,44,251],"\u30a2\u30c9\u30ec\u30b9":[38,68,153,154,158,258,272],"\u30a2\u30ca\u30a6\u30f3\u30b9":12,"\u30a2\u30d4\u30fc\u30eb":12,"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":[0,20,34,60,135,153,197,199],"\u30a2\u30e1\u30ea\u30ab":165,"\u30a2\u30e9\u30fc\u30c8":[153,199],"\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":[88,165,195,213],"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[42,69,92,112,114,115,135,140,146,210,217,228,231,232,234,235,259,261],"\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":40,"\u30a2\u30f3\u30ab\u30fc":43,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":[78,92,140],"\u30a2\u30f3\u30c0\u30fc\u30d5\u30ed\u30fc":34,"\u30a2\u30f3\u30de\u30c3\u30d7":[34,43,99],"\u30a2\u30f3\u30ed\u30c3\u30af":34,"\u30a2\u30fc\u30ab\u30a4\u30d6":[12,17,32],"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[3,4,12,22],"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u30fc":[42,153],"\u30a4\u30bf\u30ea\u30a2":34,"\u30a4\u30d9\u30f3\u30c8":43,"\u30a4\u30d9\u30f3\u30c8\u30ed\u30b0":43,"\u30a4\u30e1\u30fc\u30b8":[22,23,34],"\u30a4\u30f3\u30af\u30ea\u30e1\u30f3\u30c8":[34,85],"\u30a4\u30f3\u30af\u30eb\u30fc\u30c9":43,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9":[12,38],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":[22,23,43],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[0,3,12,21,22,24,25,26,27,28,29,30,31,32,34,36,38,40,41,43,44,152,153,154,156,238,256],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":38,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[36,38],"\u30a4\u30f3\u30b9\u30da\u30af\u30b7\u30e7\u30f3":[41,43],"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[3,40],"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":[0,154,195],"\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":[158,207],"\u30a4\u30f3\u30c6\u30b0\u30ec\u30fc\u30b7\u30e7\u30f3":21,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[22,34,36,38,40,41,42,43,44,46,51,61,63,76,80,89,90,93,94,103,104,112,113,114,115,117,121,134,135,140,142,144,151,196,197,205,212,213,220,226,239,261,264,268,271],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[22,34,35,41,42,43,44,46,61,63,65,76,89,93,104,121,122,130,134,135,144,151,171,176,196,197,210,212,213,264,267,270],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30a4\u30ba":[33,34,121],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30fc\u30c1":171,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":[34,41,92],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30e2\u30b8\u30e5\u30fc\u30eb":43,"\u30a4\u30f3\u30c7\u30f3\u30c8":63,"\u30a4\u30f3\u30dd\u30fc\u30c8":40,"\u30a4\u30f3\u30e1\u30e2\u30ea":34,"\u30a6\u30a3\u30f3\u30c9\u30a6":[22,34,44,46],"\u30a6\u30a4\u30f3\u30c9\u30a6":[34,112,114,115],"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6":[153,155,156],"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9":153,"\u30a6\u30a9\u30fc\u30e0\u30a2\u30c3\u30d7":[153,155],"\u30a8\u30a4\u30ea\u30a2\u30b9":[22,34,43,46,109],"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8":36,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":[29,34,64,135,153],"\u30a8\u30b9\u30b1\u30fc\u30d7":[34,40,41,42,57,168,169,179,197],"\u30a8\u30c7\u30a3\u30bf":17,"\u30a8\u30e9\u30fc":[12,22,23,24,25,27,29,31,32,34,35,38,39,40,41,42,43,44,50,51,54,55,57,65,73,82,87,90,91,92,94,96,98,99,100,102,104,106,107,108,109,110,111,112,114,115,117,123,124,125,129,130,135,136,139,140,142,143,148,153,196,199,260,262],"\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":[34,40,42,44,268],"\u30a8\u30e9\u30fc\u30c1\u30a7\u30c3\u30af":[38,40,42],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":[6,7,22,34,35,36,38,39,40,41,42,43,44,82,83,260],"\u30a8\u30e9\u30fc\u30ec\u30dd\u30fc\u30c8":40,"\u30a8\u30e9\u30fc\u30ed\u30b0":[256,262],"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":[29,34,35,42,43,44,54,56,57,63,197,201,203],"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u30b3\u30f3\u30d0\u30fc\u30bf\u30fc":34,"\u30a8\u30f3\u30b3\u30fc\u30c9":[36,156,158,201],"\u30a8\u30f3\u30b8\u30f3":[0,135,210,211,212,213,265,267],"\u30a8\u30f3\u30c8\u30ea":[50,51,112,114,115,135,182,196,197],"\u30a8\u30f3\u30c8\u30ea\u30fc":[43,112,114,115,135],"\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8":158,"\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8uri":158,"\u30aa\u30b9\u30b9\u30e1":[6,7,8,23,24,25,27,31,32,47,135,155,210,226,228],"\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea":36,"\u30aa\u30d5\u30bb\u30c3\u30c8":[40,43,135,138],"\u30aa\u30d5\u30e9\u30a4\u30f3":34,"\u30aa\u30d5\u30e9\u30a4\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[39,43,44],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[22,34,38,40,42,43,44,46,47,50,51,54,63,65,68,76,80,89,90,101,104,106,107,108,118,119,120,121,123,124,125,129,130,134,135,137,146,147,151,174,195,197,220],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30d5\u30a1\u30a4\u30eb":151,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":[44,179],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8id":34,"\u30aa\u30d7\u30b7\u30e7\u30f3":[6,7,8,12,14,18,24,25,27,28,29,30,31,34,35,36,38,39,40,41,42,43,44,54,55,91,92,104,118,135,140,144,146,151,156,158,160,161,169,179,195,196,197,199,200,202,207,210,216,217,219,221,223,224,225,236,238,250,252,255,258,259,261,268,270,271,272,273],"\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6":34,"\u30aa\u30da\u30ec\u30fc\u30bf":[43,44],"\u30aa\u30da\u30ec\u30fc\u30bf\u30fc":43,"\u30aa\u30e9\u30f3\u30c0":34,"\u30aa\u30fc\u30ca\u30fc":[41,43],"\u30aa\u30fc\u30d0\u30d5\u30ed\u30fc":34,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":[34,38,41,42,43],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af":[38,43],"\u30aa\u30fc\u30d0\u30fc\u30d8\u30c3\u30c9":[34,42,121,256],"\u30aa\u30fc\u30d7\u30f3":[38,40,41,43,44,50],"\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,"\u30ab\u30a6\u30f3\u30bf":44,"\u30ab\u30a6\u30f3\u30c8":[34,41,112,271],"\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":[202,223],"\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":[202,223],"\u30ab\u30b9\u30b1\u30fc\u30c9":[41,42],"\u30ab\u30b9\u30bf\u30de\u30a4\u30ba":[6,7,8,29,34,40,41,42,43,44,92,100,103,118,135,140,144,146,153,177,179,191,196,199,200,211,216,221,242,266],"\u30ab\u30b9\u30bf\u30e0":[70,145,155],"\u30ab\u30b9\u30bf\u30e0\u30b9\u30b3\u30a2\u30e9\u30fc":211,"\u30ab\u30b9\u30bf\u30e0\u30bb\u30ec\u30af\u30bf":40,"\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0":42,"\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":44,"\u30ab\u30bf\u30ab\u30ca":[34,69,138,176,201,202,206,216,223,228],"\u30ab\u30c6\u30b4\u30ea":[105,135,144,146],"\u30ab\u30d0\u30ec\u30c3\u30b8":3,"\u30ab\u30d0\u30fc":14,"\u30ab\u30e9\u30e0":[0,22,29,34,35,36,38,39,40,41,42,43,44,46,47,51,61,65,68,90,93,94,95,99,100,101,102,104,105,106,107,108,117,120,122,123,130,134,138,140,143,148,151,153,158,161,168,169,170,171,172,173,176,177,179,182,191,193,196,197,198,205,209,210,211,214,216,217,218,219,220,225,242,243,261,264,265,267,271,273,274,275],"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[22,40,264],"\u30ab\u30e9\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":95,"\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2":[22,265],"\u30ab\u30e9\u30e0\u30d1\u30e9\u30e1\u30fc\u30bf":44,"\u30ab\u30e9\u30e0\u30d9\u30fc\u30b9":[196,197],"\u30ab\u30e9\u30e0id":68,"\u30ab\u30e9\u30e0n":182,"\u30ab\u30ec":[202,238],"\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[12,17,154],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9":69,"\u30ab\u30ec\u30fc":259,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":259,"\u30ab\u30f3\u30b8":176,"\u30ab\u30f3\u30de":[103,105,140,197,266,268],"\u30ab\u30fc\u30bd\u30eb":[36,38,43,61,69],"\u30ab\u30fc\u30cd\u30eb":242,"\u30ab\u30fc\u30cd\u30eb\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[40,242],"\u30ad\u30e3\u30b9\u30c8":[34,36,39,40,41,44,112,114,115,135,162,196,212,213,271],"\u30ad\u30e3\u30c3\u30b7\u30e5":[0,34,35,40,43,44,50,55,88,137,153],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":88,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":50,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30b5\u30a4\u30ba":155,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d2\u30c3\u30c8":41,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb":155,"\u30ad\u30e3\u30f3\u30bb\u30eb":[34,44,85,86,131],"\u30ad\u30e3\u30f3\u30bb\u30eb\u30ea\u30af\u30a8\u30b9\u30c8":131,"\u30ad\u30fc":[33,34,36,39,40,41,42,43,44,47,51,63,66,68,78,80,91,92,96,97,98,102,112,114,115,117,121,131,134,135,137,140,142,149,151,153,158,177,196,197,200,206,220,226,243,265,268],"\u30ad\u30fc\u30b5\u30a4\u30ba":[33,43,96,97,98,121,140,220],"\u30ad\u30fc\u30b5\u30dd\u30fc\u30c8":220,"\u30ad\u30fc\u30c7\u30fc\u30bf":140,"\u30ad\u30fc\u30dc\u30fc\u30c9":135,"\u30ad\u30fc\u30ef\u30fc\u30c9":[0,22,34,35,37,40,41,44,113,135,140,168,169,177,179,196,210,211,212,213,218,259,260,262,268,270],"\u30af\u30a8\u30ea":[3,4,22,34,36,38,40,41,42,43,44,67,138,152,161,170,172,177,182,216,217,218,219,259,261,264,266,268,270,271,275],"\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6":42,"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6\u30fc":42,"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5":155,"\u30af\u30a8\u30ea\u30d1\u30bf\u30f3":152,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":35,"\u30af\u30a8\u30ea\u30d1\u30e9\u30e1\u30fc\u30bf":40,"\u30af\u30a8\u30ea\u30da\u30a2":218,"\u30af\u30a8\u30ea\u30ed\u30b0":[34,38,40,216,217,219],"\u30af\u30a8\u30ea\u30fc":[22,34,40,42,43,44,46,57,112,114,115,124,125,129,135,138,158,171,176,177,195,197,199,206,209,210,211,212,213,216,219,224,225,226,228,238,266],"\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":207,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":[44,88],"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":88,"\u30af\u30a8\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8":135,"\u30af\u30a8\u30ea\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":252,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":[22,34,42,43,46,63,104,153,155,256],"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":153,"\u30af\u30a8\u30ea\u30fcapi":[81,87],"\u30af\u30a8\u30eaapi":43,"\u30af\u30a9\u30fc\u30c8":[118,146,196],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":[8,22,40,42,47,86,153,155,158,250,258],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":42,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30b5\u30a4\u30c9":86,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9":[34,127],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":[36,40,156],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea":[1,256],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":42,"\u30af\u30e9\u30c3\u30b7\u30e5":[34,36,38,40,41,42,43,44,95,104,107,143,151],"\u30af\u30e9\u30c3\u30b7\u30e5\u30d0\u30b0":43,"\u30af\u30ea\u30a2":[34,38,40,44,65],"\u30af\u30ea\u30a2\u30fc":[44,151],"\u30af\u30ea\u30c3\u30af":135,"\u30af\u30ea\u30c6\u30a3\u30ab\u30eb":44,"\u30af\u30ea\u30c6\u30a3\u30ab\u30eb\u30bb\u30af\u30b7\u30e7\u30f3":44,"\u30af\u30ea\u30fc\u30f3":12,"\u30af\u30ea\u30fc\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[6,7],"\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb":12,"\u30af\u30ed\u30fc\u30f3":29,"\u30b0\u30e9\u30d5":0,"\u30b0\u30eb\u30fc\u30d7":[0,12,34,40,41,42,43,44,68,78,112,114,115,135,220,266],"\u30b0\u30eb\u30fc\u30d7\u30ad\u30fc":[112,114,115,135],"\u30b0\u30ed\u30fc\u30d0\u30eb":[40,49],"\u30b0\u30ed\u30fc\u30d0\u30eb\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":50,"\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc":205,"\u30b1\u30fc\u30b9":[34,42,43,44,47,50,55,92,95,104,112,113,114,115,135,140,143,155,158,196,197,210,211,212,213,226,228,239,261,266,275],"\u30b2\u30c3\u30c8":2,"\u30b3\u30a2":[29,155,158,252],"\u30b3\u30b9\u30c8":[68,198],"\u30b3\u30cd\u30af\u30b7\u30e7\u30f3":43,"\u30b3\u30d4\u30fc":[12,40,43,44,47,51,59,65,68,91,95,103,139,143],"\u30b3\u30de\u30f3\u30c9":[11,12,13,14,18,21,22,25,26,34,35,36,38,39,40,41,42,43,44,46,47,50,80,82,83,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,154,155,158,160,168,169,173,177,179,181,182,184,191,193,194,207,209,210,211,216,217,218,219,220,226,242,243,252,258,259,263,264,265,273,274,275],"\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\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":122,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[22,34,36,42,43,44,46,54,81,105,137,156,168,169,170,251],"\u30b3\u30de\u30f3\u30c9\u30d1\u30fc\u30b5\u30fc":210,"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":[32,40,154],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[6,7,8,12,17,18,29,32,38,42,43,103,134,155,210,252],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3":[29,82,83,154,251],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":207,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b7\u30a7\u30eb":196,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b9\u30bf\u30a4\u30eb":[105,210],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30d1\u30e9\u30e1\u30fc\u30bf":34,"\u30b3\u30de\u30f3\u30c9\u30ea\u30b9\u30c8":153,"\u30b3\u30de\u30f3\u30c9url":252,"\u30b3\u30df\u30c3\u30c8":[6,7,12],"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":[17,19,22],"\u30b3\u30e1\u30f3\u30c8":[36,41,153,154,182,209,270],"\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8":270,"\u30b3\u30e1\u30f3\u30c8\u30ab\u30e9\u30e0":270,"\u30b3\u30e1\u30f3\u30c8\u30c6\u30fc\u30d6\u30eb":270,"\u30b3\u30e1\u30f3\u30c8id":271,"\u30b3\u30f3\u30bd\u30fc\u30eb":63,"\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8":[50,54,63,65,137,155,182],"\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u30a2\u30c9\u30ec\u30b9":34,"\u30b3\u30f3\u30c6\u30f3\u30c8\u30bf\u30a4\u30d7":258,"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3":44,"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[22,44],"\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb":[34,42],"\u30b3\u30f3\u30d1\u30a4\u30e9":[38,42],"\u30b3\u30f3\u30d1\u30a4\u30e9\u30fc":[6,7,29],"\u30b3\u30f3\u30d1\u30a4\u30eb":[39,41],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30a8\u30e9\u30fc":[34,43],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":12,"\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u30fc":206,"\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb":82,"\u30b3\u30f3\u30d5\u30ea\u30af\u30c8":34,"\u30b3\u30f3\u30de":92,"\u30b3\u30fc\u30c9":[17,41,42,43,44,135,146,262],"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":11,"\u30b4\u30df":[34,36,38,89,121],"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":[89,121],"\u30b4\u30df\u30c7\u30fc\u30bf":158,"\u30b5\u30a4\u30ba":[0,23,24,25,27,31,32,33,34,38,40,41,42,43,44,47,51,62,65,68,69,70,85,89,98,121,122,140,149,153,179,193,220,242,258,263,265],"\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":[101,121],"\u30b5\u30a4\u30c8":[12,135,195,265,267],"\u30b5\u30a4\u30c9\u30e1\u30cb\u30e5\u30fc":135,"\u30b5\u30b8\u30a7\u30b9\u30c8":[22,29,36,38,40,42,46,138,157,218],"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf":158,"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de":217,"\u30b5\u30d6\u30a8\u30e9\u30fc":34,"\u30b5\u30d6\u30af\u30e9\u30b9":34,"\u30b5\u30d6\u30bb\u30c3\u30c8":[68,243],"\u30b5\u30d6\u30bf\u30b9\u30af":12,"\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":12,"\u30b5\u30d6\u30df\u30c3\u30c8":158,"\u30b5\u30d6\u30ec\u30b3\u30fc\u30c9":[34,115],"\u30b5\u30dd\u30fc\u30c8":[0,1,6,7,8,10,12,21,29,31,34,35,36,38,39,40,41,42,43,44,69,82,92,105,112,114,115,131,132,133,135,137,140,145,146,151,154,155,171,176,179,191,196,197,198,203,205,206,207,209,210,214,220,224,238,239,252,255,256,265,266,270,272],"\u30b5\u30de\u30ea":41,"\u30b5\u30ed\u30b2\u30fc\u30c8\u30da\u30a2":34,"\u30b5\u30f3":238,"\u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3":165,"\u30b5\u30f3\u30d7\u30eb":[36,37,40,41,135,155,165,171,270],"\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":36,"\u30b5\u30f3\u30d7\u30eb\u30b7\u30e3\u30fc\u30c9":116,"\u30b5\u30f3\u30d7\u30eb\u30b9\u30ad\u30fc\u30de":[117,122,134,170,171,172,173,177,182,184,191,193,211,212,213],"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[91,102,103,112,114,115,135,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,210,211,212,213,270],"\u30b5\u30fc\u30d0":[12,21,22,23,24,25,27,31,32,38,40,41,89,90,94,100,101,103,110,111,127,141,153,154,156,255],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0":154,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9":153,"\u30b5\u30fc\u30d0\u30fc":[1,22,24,25,27,31,34,38,40,41,42,43,46,70,131,145,150,153,155,158,207,251,252,258],"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":[22,40,42,43,249],"\u30b5\u30fc\u30d0\u30fc\u30d7\u30ed\u30bb\u30b9":[41,136],"\u30b5\u30fc\u30d0\u30fc\u30e2\u30c7\u30eb":[153,258],"\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9":43,"\u30b5\u30fc\u30d0\u30fcid":38,"\u30b5\u30fc\u30d3\u30b9":[0,21,25,40,41,42,136,242],"\u30b5\u30fc\u30d3\u30b9\u30b9\u30af\u30ea\u30d7\u30c8":41,"\u30b7\u30a7\u30a2":2,"\u30b7\u30a7\u30eb":[29,43,153,154,196,210],"\u30b7\u30b0\u30ca\u30eb":[38,42],"\u30b7\u30b9\u30c6\u30e0":[0,3,6,22,29,31,38,42,43,44,92,99,104,153,198,206,216,242,264],"\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":262,"\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":41,"\u30b7\u30b9\u30c6\u30e0\u30b3\u30fc\u30eb":34,"\u30b7\u30b9\u30c6\u30e0\u30ed\u30b1\u30fc\u30eb":34,"\u30b7\u30ca\u30ea\u30aa":34,"\u30b7\u30e3\u30c3\u30c8\u30c0\u30a6\u30f3":136,"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0":[22,43,46,116,220],"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0\u30d0\u30fc\u30b8\u30e7\u30f3":[114,115],"\u30b7\u30e3\u30fc\u30c9":[34,43,112,114,115,116,117,214],"\u30b7\u30e3\u30fc\u30c9\u30ad\u30fc":[112,114,115,117],"\u30b7\u30e3\u30fc\u30d7":[92,140],"\u30b7\u30f3\u30b0\u30eb\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":92,"\u30b7\u30f3\u30b0\u30eb\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":92,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":[41,118,146,153,268],"\u30b7\u30f3\u30b0\u30eb\u30b9\u30ec\u30c3\u30c9\u30e2\u30c7\u30eb":145,"\u30b7\u30f3\u30b0\u30eb\u30b9\u30ec\u30c3\u30c9\u30e2\u30fc\u30c9":44,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9":42,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9\u30a8\u30e9\u30fc":[34,42,43,44],"\u30b7\u30f3\u30d7\u30eb":[43,195,251,266],"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb":43,"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30b5\u30fc\u30c1":[34,43,44,171,198],"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30b9\u30ad\u30e3\u30f3":[43,176],"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30de\u30c3\u30c1":34,"\u30b7\u30fc\u30b1\u30f3\u30b9":[216,217,219],"\u30b8\u30aa\u30b5\u30fc\u30c1":[22,38,264],"\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3":34,"\u30b9\u30ab\u30e9":51,"\u30b9\u30ab\u30e9\u30fc":[34,44,80,114,135],"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":[22,46,47,76,80,93,121,134],"\u30b9\u30ab\u30e9\u30fc\u30c7\u30fc\u30bf":80,"\u30b9\u30ad\u30c3\u30d7":[12,41,42,43,44],"\u30b9\u30ad\u30e3\u30f3":[168,169],"\u30b9\u30ad\u30fc\u30de":[43,47,57,91,102,103,105,112,114,115,134,135,142,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,210,211,212,213,214,242,270],"\u30b9\u30af\u30ea\u30d7\u30c8":[22,29,34,36,37,40,41,42,43,44,46,57,105,132,133,135,154,182,195,196,210],"\u30b9\u30b1\u30fc\u30d7":210,"\u30b9\u30b3\u30a2":[11,34,40,43,44,78,80,92,135,138,211,212,213,261,275],"\u30b9\u30b3\u30a2\u30e9\u30fc":[22,34,43,46,135,212,213],"\u30b9\u30b3\u30a2\u30fc":[43,80,158,211,212,213],"\u30b9\u30b3\u30a2\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":211,"\u30b9\u30b3\u30fc\u30d7":210,"\u30b9\u30bf\u30a4\u30eb":[34,43,105,121,153],"\u30b9\u30bf\u30c3\u30af\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":[41,44],"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3":[153,156],"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30fc\u30f3\u30e2\u30fc\u30c9":43,"\u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc":32,"\u30b9\u30c3\u30c8\u30d7\u30ef\u30fc\u30c9":34,"\u30b9\u30c6\u30c3\u30d7":[91,210],"\u30b9\u30c6\u30df\u30f3\u30b0":[34,42,224],"\u30b9\u30c6\u30df\u30f3\u30b0\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":224,"\u30b9\u30c6\u30fc\u30b8":[34,112,114,115,135],"\u30b9\u30c6\u30fc\u30bf\u30b9":[41,43,44,87,137,151,258],"\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9":40,"\u30b9\u30c6\u30fc\u30c8\u30d5\u30eb":[34,258],"\u30b9\u30c6\u30fc\u30c8\u30ec\u30b9":34,"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9":[34,42,135,225,269],"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":42,"\u30b9\u30c8\u30ea\u30fc\u30e0":[42,44],"\u30b9\u30c8\u30ec\u30fc\u30b8":22,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":22,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30e2\u30fc\u30c9":41,"\u30b9\u30cb\u30da\u30c3\u30c8":[41,44,179],"\u30b9\u30d1\u30de\u30fc":[211,212,213],"\u30b9\u30d1\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":[34,43],"\u30b9\u30d1\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb\u30b5\u30dd\u30fc\u30c8":43,"\u30b9\u30da\u30a4\u30f3":[34,165],"\u30b9\u30da\u30eb":209,"\u30b9\u30da\u30fc\u30b9":[34,38,41,43,135],"\u30b9\u30e9\u30a4\u30b9":34,"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8":[38,252],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30c1\u30e3\u30fc\u30c8":38,"\u30b9\u30ec\u30c3\u30c9":[0,9,34,43,44,54,70,99,107,113,137,142,145,153,154,158,199,252],"\u30b9\u30ec\u30c3\u30c9\u30ab\u30a6\u30f3\u30c8":34,"\u30b9\u30ec\u30c3\u30c9\u30bb\u30fc\u30d5":[34,43,44],"\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb":70,"\u30b9\u30ed\u30fc\u30af\u30a8\u30ea\u30fc":[43,155],"\u30b9\u30ef\u30c3\u30d7":242,"\u30b9\u30fc\u30d7":259,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":259,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":259,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":259,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":[22,34,264],"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":[34,42,43],"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u30ea\u30b9\u30af":42,"\u30bb\u30af\u30b7\u30e7\u30f3":[3,12,17,20,21,23,24,25,26,27,28,29,30,31,32,34,42,43,47,51,80,81,83,88,91,92,93,95,96,97,98,99,104,105,106,107,108,112,113,114,115,116,117,118,120,121,122,123,126,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,148,151,153,155,158,160,165,169,196,204,209,210,211,212,213,215,216,217,219,242,244,258,266,270],"\u30bb\u30af\u30b7\u30e7\u30f3\u30b5\u30dd\u30fc\u30c8":92,"\u30bb\u30af\u30b7\u30e7\u30f3id":34,"\u30bb\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u30d5\u30a9\u30eb\u30c8":40,"\u30bb\u30b0\u30e1\u30f3\u30c8":[34,42,44,65,89,101,121],"\u30bb\u30c3\u30b7\u30e7\u30f3":[127,153,258],"\u30bb\u30c3\u30b7\u30e7\u30f3id":158,"\u30bb\u30c3\u30c8":[11,34,43,65,68,69,90,144,171,259],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":[17,41,44],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u30b9\u30af\u30ea\u30d7\u30c8":21,"\u30bb\u30df\u30b3\u30ed\u30f3":154,"\u30bb\u30ec\u30af\u30bf":[34,44],"\u30bb\u30ec\u30af\u30bf\u30fc":[43,176],"\u30bb\u30f3\u30c8\u30e9\u30eb\u30d1\u30fc\u30af":271,"\u30bb\u30fc\u30d6\u30eb":34,"\u30bb\u30fc\u30f4\u30a7\u30eb":34,"\u30bb\u30fc\u30f4\u30eb":34,"\u30bd\u30b1\u30c3\u30c8":[40,89,90,94,100,101,103,110,111,127,141],"\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc":[22,260],"\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":262,"\u30bd\u30d5\u30c8":209,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":[3,12,21,43],"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8":267,"\u30bd\u30fc\u30b9":[12,18,22,23,30,34,38,40,44,122,134,151],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":[6,7,8,12,29],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":12,"\u30bd\u30fc\u30b9\u30ab\u30e9\u30e0":[34,42,43,44,91,93,104,121,122,134],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":[6,7,8,14,29,30,34,41,44,83,262],"\u30bd\u30fc\u30b9\u30c6\u30fc\u30d6\u30eb":[122,139],"\u30bd\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":17,"\u30bd\u30fc\u30b9\u30d5\u30a9\u30eb\u30c0":32,"\u30bd\u30fc\u30c8":[22,34,35,36,38,41,43,44,68,103,112,114,115,116,135,138,158,205,220,264,267],"\u30bd\u30fc\u30c8\u30ad\u30fc":[34,35,44,68,112,114,115,135,138],"\u30bf\u30a4\u30c8\u30eb":[112,114,115,135,196,197,211,212,213,265,267,270],"\u30bf\u30a4\u30d7":[38,43,59,135,154,252],"\u30bf\u30a4\u30d7id":44,"\u30bf\u30a4\u30df\u30f3\u30b0":[34,40,135,268],"\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[41,49,153],"\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7":[34,37,44,151,153,158,199,216,217,219],"\u30bf\u30b0":[12,22,34,36,38,40,41,42,80,112,114,115,135,140,168,169,170,179,197,211,212,213,220,264,271],"\u30bf\u30b0\u30c6\u30ad\u30b9\u30c8":[236,237],"\u30bf\u30d6":[207,209,258],"\u30bf\u30fc\u30b2\u30c3\u30c8":[40,44],"\u30bf\u30fc\u30b2\u30c3\u30c8\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":50,"\u30bf\u30fc\u30df\u30ca\u30eb":[153,155],"\u30c0\u30a4\u30a2\u30ed\u30b0":41,"\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8":252,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":[47,251],"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":[24,25,27,28,29,30,31,32,154],"\u30c0\u30d6\u30eb":[38,40,140,196,197,220],"\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":[118,146,153,268],"\u30c0\u30e1\u30fc\u30b8":261,"\u30c0\u30f3\u30d7":[34,36,40,41,43,44,103,153,199,242],"\u30c1\u30a7\u30c3\u30af":[34,36,38,40,41,42,43,44,54,89,104,117,120,142,151,152,154,158,161],"\u30c1\u30a7\u30c3\u30af\u30b5\u30e0":12,"\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0":[22,43],"\u30c1\u30e3\u30cd\u30eb":34,"\u30c1\u30e3\u30f3\u30af":[34,43,44,89,121],"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba":89,"\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8":89,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":[22,38,40,42,43,265,268],"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0":[22,41,43,46,80,135,263],"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":242,"\u30c1\u30fc\u30e0":12,"\u30c4\u30a4\u30fc\u30c8":[2,12],"\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3":12,"\u30c4\u30ea\u30fc":42,"\u30c4\u30fc\u30eb":[17,22,23,32,43,152,153,156,252,256,264,268],"\u30c6\u30ad\u30b9\u30c8":[12,17,34,36,40,41,43,44,57,63,80,92,115,118,140,144,146,154,168,169,170,179,200,201,202,203,206,210,223,226,228,229,230,231,232,236,239],"\u30c6\u30ad\u30b9\u30c8\u30ab\u30e9\u30e0":43,"\u30c6\u30ad\u30b9\u30c8\u30c7\u30fc\u30bf":[44,140],"\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":154,"\u30c6\u30af\u30cb\u30c3\u30af":[211,212,213],"\u30c6\u30b9\u30c8":[3,4,6,7,8,12,22,23,24,25,27,31,32,36,40,42,43,44,113,155,261,271],"\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9":14,"\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf":12,"\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":154,"\u30c6\u30f3\u30dd\u30e9\u30ea\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":34,"\u30c6\u30fc\u30d6\u30eb":[11,22,34,35,36,38,39,40,41,42,43,44,46,47,63,65,67,68,69,76,78,89,90,93,94,95,99,100,101,102,103,104,105,106,107,108,112,114,115,116,118,120,122,123,130,134,135,138,139,141,143,144,148,151,153,155,158,161,165,168,171,172,173,176,182,193,196,197,200,206,209,210,214,216,219,221,225,242,252,255,261,264,266,267,269,273,274],"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[141,143],"\u30c6\u30fc\u30d6\u30eb\u30d7\u30e9\u30b0\u30a4\u30f3":40,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id":61,"\u30c7\u30a3\u30b9\u30af":[34,35,43,44,99,104,120,153,155,270],"\u30c7\u30a3\u30b9\u30af\u30d5\u30eb":43,"\u30c7\u30a3\u30b9\u30afi":140,"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3":[12,29,36],"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":[40,41,157,252],"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[14,17,29,34,36,38,40,43,153,154,155,209],"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9":41,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30fc":[6,7,158],"\u30c7\u30af\u30ea\u30e1\u30f3\u30c8":34,"\u30c7\u30b6\u30a4\u30f3":40,"\u30c7\u30b9":238,"\u30c7\u30c3\u30c9\u30ed\u30c3\u30af":34,"\u30c7\u30d0\u30c3\u30ac\u30fc":[6,7],"\u30c7\u30d0\u30c3\u30b0":[6,7,12,34,42,43,44,89,146,153,155,199],"\u30c7\u30d0\u30c3\u30b0\u30aa\u30d7\u30b7\u30e7\u30f3":[6,7],"\u30c7\u30d0\u30c3\u30b0\u30ed\u30b0":[43,44],"\u30c7\u30d5\u30a9\u30eb\u30c8":[6,7,8,11,18,29,33,34,35,36,38,39,40,41,42,43,44,49,52,54,56,64,80,82,92,100,103,105,106,107,108,111,112,113,114,115,117,121,123,130,135,136,137,138,140,142,144,146,151,152,153,154,155,158,161,162,165,166,177,191,196,197,198,199,207,211,213,242,243,252,258,259,261,265,266,268],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[34,40,44,91,140,217],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30dd\u30fc\u30c8":42,"\u30c7\u30d5\u30e9\u30b0":38,"\u30c7\u30d7\u30ed\u30a4":155,"\u30c7\u30e1\u30ea\u30c3\u30c8":[34,220],"\u30c7\u30f3\u30de\u30fc\u30af":34,"\u30c7\u30fc\u30bf":[0,11,22,23,24,25,27,31,32,34,35,36,38,39,40,41,42,43,44,46,47,70,80,93,103,105,112,114,115,121,122,135,138,151,155,158,165,196,197,198,205,209,211,212,213,214,215,217,218,220,242,252,258,261,264,267,273],"\u30c7\u30fc\u30bf\u30ab\u30e9\u30e0":[34,43,44,92,121,130,135,151,212,213,270],"\u30c7\u30fc\u30bf\u30b5\u30a4\u30ba":44,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2":50,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[76,80],"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0":76,"\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8":[138,158,216],"\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb":154,"\u30c7\u30fc\u30bf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":252,"\u30c7\u30fc\u30bf\u30d9\u30fc":38,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[0,11,20,22,29,34,35,38,40,41,42,43,44,50,55,78,89,90,93,99,101,103,104,105,106,107,108,119,120,122,123,124,129,130,134,140,142,147,149,151,153,154,155,158,159,195,196,197,200,214,216,220,242,243,251,256,258,263,264,272],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":44,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[34,151],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b5\u30a4\u30ba":242,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b9\u30ad\u30fc\u30de":103,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":[41,242],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":[35,140,271],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u30b3\u30de\u30f3\u30c9":214,"\u30c7\u30fc\u30e2\u30f3":[35,40,41,43,153,155,158,255,272],"\u30c7\u30fc\u30e2\u30f3\u30d7\u30ed\u30bb\u30b9":155,"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":[41,42],"\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":14,"\u30c8\u30c3\u30d7\u30da\u30fc\u30b8":12,"\u30c8\u30c3\u30d7\u30ec\u30d9\u30eb\u30c9\u30e1\u30a4\u30f3":266,"\u30c8\u30d4\u30c3\u30af":12,"\u30c8\u30e2":267,"\u30c8\u30e9\u30a4":[38,140,196,197,220],"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[22,36],"\u30c8\u30ea\u30b0\u30e9\u30e0":240,"\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5":[226,261],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":[22,40,259],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3":40,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3api":40,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[22,24,25,27,28,31,34,36,37,38,40,41,43,44,46,92,104,112,114,115,122,134,135,140,144,146,147,196,197,210,217,219,226,228,238,239,259,260],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":43,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[42,146],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30e2\u30fc\u30b8\u30e5\u30fc\u30eb":226,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fcapi":40,"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":[29,34,38,43,44,135,144,146,197,200,217,219,221,223,224,225,226,228,230,231,232,233,234,235,236,238,240,241,259,261,268],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u30e2\u30fc\u30c9":[44,144,146],"\u30c8\u30fc\u30af\u30f3":[34,36,38,41,42,43,44,92,140,144,146,197,200,217,219,220,221,223,224,225,226,228,236,238,240,241,259],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf":[34,42],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":[22,25,31,34,42,43,44,46,104,122,134,140,144,146,221,223,224,225],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":43,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":221,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":221,"\u30c9\u30a4\u30c4":34,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[3,5,6,7,8,16,17,18,23,29,34,36,38,39,40,41,42,43,44,64,76,83,92,117,135,146,154,155,158,196,197,210,213,226,242,263],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30c4\u30fc\u30eb":[15,18],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8":12,"\u30c9\u30e1\u30a4\u30f3":[42,44,266],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[22,34,38,41,42,43,44,114,220,243,264,267,271],"\u30ca\u30ce":[36,83,199],"\u30ca\u30de\u30a8":[202,238],"\u30cb\u30c3\u30dd\u30f3":[176,206,216],"\u30cb\u30db\u30f3":[176,206,216],"\u30cb\u30db\u30f3\u30b4":216,"\u30cb\u30db\u30f3\u30b8\u30f3":216,"\u30cb\u30e5\u30fc\u30b9":[44,198],"\u30cb\u30e5\u30fc\u30e8\u30fc\u30af":[63,165,271],"\u30cd\u30b9\u30c8":[34,40,41,42,43,121,270],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":[252,272],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":[40,258],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d7\u30ed\u30c8\u30b3\u30eb":40,"\u30ce\u30a4\u30ba":[158,217,238,261],"\u30ce\u30eb\u30a6\u30a7\u30fc":34,"\u30ce\u30fc\u30c9":[40,44,69],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":[22,24,25,27,31,34,40,41,42,43,44,46,91,92,118,119,122,134,135,140,144,146,168,169,197,201,202,203,210,228,240,241],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":43,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d7\u30b7\u30e7\u30f3":200,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[118,200],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":200,"\u30ce\u30fc\u30de\u30e9\u30a4\u30ba":[34,41,42,118,146,223,268],"\u30cf\u30a4\u30d5\u30f3":[34,92,140,202,223,268],"\u30cf\u30a4\u30e9\u30a4\u30c8":[34,44,168,169],"\u30cf\u30ba":238,"\u30cf\u30c3\u30b7\u30e5":[40,43,89],"\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb":[34,38,41,43,103,122,140,197,220],"\u30d0\u30a4\u30aa\u30ea\u30f3":34,"\u30d0\u30a4\u30b0\u30e9\u30e0":[34,226,228,230,231,232,233,234,235,239,261],"\u30d0\u30a4\u30b0\u30e9\u30e0\u30d9\u30fc\u30b9":228,"\u30d0\u30a4\u30c8":[33,34,36,38,40,41,42,43,44,51,54,69,85,87,121,122,134,135,179,220,243],"\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":40,"\u30d0\u30a4\u30c8\u30b5\u30a4\u30ba":[43,57],"\u30d0\u30a4\u30c8\u30b7\u30fc\u30b1\u30f3\u30b9":41,"\u30d0\u30a4\u30ca\u30ea":[12,32],"\u30d0\u30a4\u30ca\u30ea\u30c7\u30fc\u30bf":[34,40],"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":[1,14,22,43,44,249,272],"\u30d0\u30a4\u30ca\u30ea\u30fc":83,"\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":[20,21,195],"\u30d0\u30a4\u30f3\u30c9":43,"\u30d0\u30af":34,"\u30d0\u30b0":[10,34,38,41,43,44],"\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9":43,"\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9\u30ea\u30ea\u30fc\u30b9":[40,42,43,44],"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":[3,22,29,42],"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7":103,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":[41,57,153,196],"\u30d0\u30c3\u30af\u30c8\u30ec\u30fc\u30b9":[34,44],"\u30d0\u30c3\u30c1\u30e2\u30fc\u30c9":40,"\u30d0\u30c3\u30d5\u30a1":[40,41,44,51,57,59,62,65,68,89,270],"\u30d0\u30c3\u30d5\u30a1\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":44,"\u30d0\u30c3\u30d5\u30a1\u30b5\u30a4\u30ba":43,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8":89,"\u30d0\u30c3\u30d5\u30a1\u30ea\u30f3\u30b0":41,"\u30d0\u30c3\u30d5\u30a1\u30fc":34,"\u30d0\u30c3\u30d5\u30a1id":89,"\u30d0\u30d3\u30d6\u30d9\u30dc":34,"\u30d0\u30d3\u30d6\u30d9\u30dc\u30d6":[202,223],"\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3":34,"\u30d0\u30ea\u30e5\u30fc\u30b5\u30dd\u30fc\u30c8":220,"\u30d0\u30eb\u30af":43,"\u30d0\u30eb\u30af\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[43,44],"\u30d0\u30f3\u30c9\u30eb":[34,41,42,43,44],"\u30d0\u30fc\u30b8\u30e7\u30f3":[18,25,29,31,34,38,40,41,42,43,44,47,51,55,63,74,84,85,86,90,91,92,96,97,98,99,103,104,105,106,107,108,112,113,114,115,116,117,120,121,122,123,124,125,126,129,130,131,134,135,136,137,139,142,145,148,149,151,153,162,164,165,169,171,172,173,180,181,184,191,192,193,194,196,197,202,210,212,213,214,223,239,244,245,246,247,248,268],"\u30d1\u30b9":[12,29,34,36,37,38,42,43,55,93,122,124,125,129,151,152,153,154,155,156,158,159,252,258,268],"\u30d1\u30b9\u30b9\u30bf\u30a4\u30eb":210,"\u30d1\u30bf\u30fc\u30f3":[34,43,83,171,196,197,210],"\u30d1\u30bf\u30fc\u30f3\u30de\u30c3\u30c1":210,"\u30d1\u30c3\u30b1\u30fc\u30b8":[8,23,24,25,27,30,31,32,34,36,38,40,41,42,43,44,82,150,155,238,256],"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9":36,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30f3\u30b0\u30dd\u30ea\u30b7\u30fc":41,"\u30d1\u30c3\u30c1":[16,34,36,38,40,41,42,43,44],"\u30d1\u30c8\u30ea\u30b7\u30a2":[22,40,69,259,264,268],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4":[36,38,41,43,44,140,196,197,220],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30c6\u30fc\u30d6\u30eb":[122,196,197],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30ce\u30fc\u30c9":43,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":[34,41,42,43,44,135,152,153,155,158,172,256],"\u30d1\u30e9\u30e1\u30fc\u30bf":[22,34,38,40,41,42,44,49,50,51,52,54,55,56,57,58,59,61,62,63,64,65,66,67,68,69,70,71,72,74,115,152,158,259,263,264,266,268,271,272,275],"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[32,34,38,39,42,43,44,84,85,86,92,104,105,106,107,108,112,113,114,117,130,131,136,140,142,146,155,158,171,177,182,191,209,242,265],"\u30d1\u30ea":165,"\u30d1\u30fc\u30b5\u30fc":[12,196,210],"\u30d1\u30fc\u30b9":[34,38,44,56,57,177,195],"\u30d1\u30fc\u30b9\u30a8\u30e9\u30fc":34,"\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3":42,"\u30d2\u30c3\u30c8":[11,34,41,44,135,198,206,216,259,261,271,273],"\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2":[135,195,261],"\u30d2\u30e5\u30d9\u30cb":[165,166],"\u30d3\u30c3\u30b0\u30a8\u30f3\u30c7\u30a3\u30a2\u30f3":42,"\u30d3\u30c3\u30c8":[43,69,196,258,265],"\u30d3\u30c3\u30c8\u30b7\u30d5\u30c8":197,"\u30d3\u30e5\u30fc":40,"\u30d3\u30eb\u30c8\u30a4\u30f3":[34,41],"\u30d3\u30eb\u30c9":[3,4,18,21,22,23,30,34,36,38,40,41,42,43,209,214],"\u30d3\u30eb\u30c9\u30a8\u30e9\u30fc":[34,42,43,44],"\u30d3\u30eb\u30c9\u30aa\u30d7\u30b7\u30e7\u30f3":[29,32],"\u30d3\u30eb\u30c9\u30b7\u30b9\u30c6\u30e0":[5,29],"\u30d3\u30eb\u30c9\u30bf\u30a4\u30e0":[6,7],"\u30d3\u30eb\u30c9\u30c4\u30fc\u30eb":6,"\u30d3\u30eb\u30c9\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[6,7,8,149],"\u30d4\u30ea\u30aa\u30c9":270,"\u30d5\u30a1\u30a4\u30eb":[3,22,29,32,34,35,38,39,40,41,42,43,44,46,65,70,82,83,86,89,90,94,100,101,103,110,111,127,131,135,141,145,151,154,155,156,197,199,214,216,250,251,256,258,268],"\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba":43,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0":38,"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf":36,"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u30fc":[40,158],"\u30d5\u30a1\u30a4\u30eb\u30cf\u30f3\u30c9\u30eb":34,"\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9":[51,55,65,68],"\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":209,"\u30d5\u30a1\u30a4\u30eb\u30de\u30c3\u30d4\u30f3\u30b0":34,"\u30d5\u30a1\u30bb\u30c3\u30c8":135,"\u30d5\u30a3\u30eb\u30bf":[34,40,43,44],"\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0":41,"\u30d5\u30a3\u30eb\u30bf\u30fc":[34,112,114,115,135,182],"\u30d5\u30a3\u30eb\u30bf\u30fc\u30bf\u30a4\u30df\u30f3\u30b0":34,"\u30d5\u30a3\u30eb\u30bf\u30fc\u30c6\u30ad\u30b9\u30c8":135,"\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9":34,"\u30d5\u30a3\u30fc\u30eb\u30c9":93,"\u30d5\u30a9\u30eb\u30c0\u30fc":32,"\u30d5\u30a9\u30ed\u30ef\u30fc":12,"\u30d5\u30a9\u30ed\u30fc":2,"\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8":271,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[34,43,89,103,105,112,114,115,121,138,153,158,197,214,252,271],"\u30d5\u30a9\u30fc\u30e0":[41,135,195,196],"\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af":[34,44],"\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af\u30e2\u30fc\u30c9":43,"\u30d5\u30c3\u30af":21,"\u30d5\u30e9\u30b0":[33,34,35,38,39,40,42,43,44,54,63,69,80,89,90,92,93,94,100,110,111,112,114,115,118,121,122,134,135,140,146,151,153,177,196,197,200,201,210,220,258,265,268,269,273],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":101,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3":[35,101],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8":65,"\u30d5\u30e9\u30c3\u30b7\u30e5":[34,43,44,104],"\u30d5\u30e9\u30f3\u30b9":[34,165,224],"\u30d5\u30ec\u30fc\u30ba":[40,44,92],"\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af":14,"\u30d6\u30c3\u30af\u30de\u30fc\u30af":80,"\u30d6\u30d6\u30d6\u30d6\u30d6\u30d6":[202,223],"\u30d6\u30e9\u30a6\u30b6":[12,17,29,272],"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":[22,264],"\u30d6\u30e9\u30b8\u30ea\u30a2":165,"\u30d6\u30e9\u30b8\u30eb":165,"\u30d6\u30ed\u30b0":[182,198,270,271],"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea":[12,135,196,197,270],"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea\u30fc":[112,114,115],"\u30d6\u30ed\u30c3\u30af":[0,41,155],"\u30d6\u30fc\u30ea\u30a2\u30f3":243,"\u30d6\u30fc\u30eb":[34,243,265],"\u30d7\u30e9\u30b0\u30a4\u30f3":[0,17,24,25,27,29,31,34,35,36,37,38,40,41,42,43,44,103,112,113,114,115,116,117,122,124,125,129,132,133,134,135,173,177,181,184,191,193,194,200,209,214,221],"\u30d7\u30e9\u30b0\u30a4\u30f3api":42,"\u30d7\u30e9\u30b0\u30a4\u30f3id":122,"\u30d7\u30e9\u30b0\u30de":135,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0":[14,17,18,23,29,38],"\u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8":[22,43,44,46,81],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9":[70,155,158,214,220,268],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":251,"\u30d7\u30ec\u30fc\u30b9\u30db\u30eb\u30c0":41,"\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":1,"\u30d7\u30ed\u30b0\u30e9\u30e0":[3,34,36,40,93,153,155,158,197],"\u30d7\u30ed\u30b7\u30fc\u30b8\u30e3":176,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[0,3,12,13,17,19,21,42,256],"\u30d7\u30ed\u30bb\u30b9":[0,34,40,41,43,44,82,89,95,104,107,124,127,129,130,137,143,149,151,152,153,154,155,158,199,252,268],"\u30d7\u30ed\u30bb\u30b9\u30ed\u30b0":[22,43,46,256],"\u30d7\u30ed\u30bb\u30b9id":[153,258],"\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3":[155,158],"\u30d7\u30ed\u30c8\u30b3\u30eb":[0,1,22,40,44,87,152,154,155,255,256,272],"\u30d7\u30ed\u30d1\u30c6\u30a3":[44,134],"\u30d7\u30ed\u30f3\u30d7\u30c8":207,"\u30d8\u30c3\u30c0":[41,42],"\u30d8\u30c3\u30c0\u30d5\u30a1\u30a4\u30eb":40,"\u30d8\u30c3\u30c0\u30fc":[40,42,43,87,252],"\u30d8\u30eb\u30d7":14,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8":[36,153],"\u30d9\u30af\u30bf":[34,35,36,40,41,44,65],"\u30d9\u30af\u30bf\u30ab\u30e9\u30e0":[38,40,41],"\u30d9\u30af\u30bf\u30fc":[34,38,41,42,44,80,102,114,135,191],"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[22,34,41,42,43,44,46,65,76,93,112,114,115,121,122,134,135,192,193,216,264,271],"\u30d9\u30af\u30bf\u30fc\u30c7\u30fc\u30bf":[34,80],"\u30d9\u30af\u30c8\u30eb":34,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af":42,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb":154,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30d7\u30ed\u30b0\u30e9\u30e0":41,"\u30d9\u30fc\u30b7\u30c3\u30af":252,"\u30d9\u30fc\u30b9":[0,17,36,38,40,42,68,69,114,131,146,153,155,196,197,206,211,212,213,214,238,239,251,256],"\u30d9\u30fc\u30b9\u30d1\u30b9":155,"\u30da\u30a2":[43,121,122,135,149,209,216,217,218,219,265,274],"\u30da\u30f3":236,"\u30da\u30fc\u30b8":[2,12,17,22,40,41,43,135,153,156,262,268],"\u30da\u30fc\u30b8\u30e9\u30f3\u30af":[211,212,213],"\u30da\u30fc\u30b9\u30c8":40,"\u30db\u30b9\u30c8":[12,38,40,152,153,154,158,258],"\u30db\u30b9\u30c8\u30de\u30b7\u30f3":12,"\u30dc\u30bf\u30f3":[12,17,40,41],"\u30dc\u30c3\u30af\u30b9":135,"\u30dc\u30c7\u30a3":[91,92,99,104,105,117,120,121,123,124,125,129,136,139,140,142,143,145,158,258],"\u30dd\u30a4\u30f3\u30bf":[44,54,65,66,68,69,72],"\u30dd\u30a4\u30f3\u30c8":[80,92,209],"\u30dd\u30b9\u30c6\u30a3\u30f3\u30b0":92,"\u30dd\u30b9\u30c6\u30a3\u30f3\u30b0\u30ea\u30b9\u30c8":[34,43,44,121],"\u30dd\u30eb\u30c8\u30ac\u30eb":34,"\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3":[38,41],"\u30dd\u30fc\u30c8":[41,152,153,154,158,207,252,256,258,272],"\u30de\u30a4\u30af\u30ed":[197,199,243,265,271],"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":[22,264],"\u30de\u30af\u30c9\u30ca\u30eb\u30c9":205,"\u30de\u30af\u30ed":[34,38,41,43,65,262],"\u30de\u30b7\u30f3":[12,153,214],"\u30de\u30c3\u30c1":[11,29,34,35,38,41,42,43,44,57,67,80,112,114,115,135,161,168,169,171,176,177,179,182,191,195,196,210,211,212,213,225,236,239,261,270],"\u30de\u30c3\u30c1\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":29,"\u30de\u30c3\u30c1\u30ec\u30b3\u30fc\u30c9":114,"\u30de\u30c3\u30d4\u30f3\u30b0":[34,263],"\u30de\u30c3\u30d7":[34,43,99,242],"\u30de\u30c9\u30ea\u30fc\u30c9":165,"\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[34,41,42,43,44,93,134,270],"\u30de\u30eb\u30c1\u30b3\u30a2":0,"\u30de\u30eb\u30c1\u30b3\u30a2cpu":29,"\u30de\u30eb\u30c1\u30b9\u30ec\u30c3\u30c9":[42,43,99,131,252],"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3":41,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":94,"\u30de\u30eb\u30c1\u30d0\u30a4\u30c8":[38,44],"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9":[38,252],"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30d9\u30fc\u30b9":199,"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30e2\u30c7\u30eb":42,"\u30de\u30eb\u30c1\u30e9\u30a4\u30f3\u30e2\u30fc\u30c9":210,"\u30de\u30eb\u30c1\u30ef\u30fc\u30ab\u30fc":155,"\u30de\u30fc\u30af":239,"\u30de\u30fc\u30af\u30a2\u30c3\u30d7":43,"\u30de\u30fc\u30b8":[17,34,40],"\u30df\u30b9":216,"\u30df\u30ea":[38,86,153,158,197,243,265,275],"\u30df\u30ea\u79d2":243,"\u30e1\u30a4\u30f3":115,"\u30e1\u30b8\u30e3\u30fc\u30d0\u30fc\u30b8\u30e7\u30f3\u30a2\u30c3\u30d7":34,"\u30e1\u30bd\u30c3\u30c9":43,"\u30e1\u30bf":151,"\u30e1\u30bf\u30c7\u30fc\u30bf":[34,44,92,93,104,122,132,133,211,212,213,238],"\u30e1\u30bf\u30d1\u30c3\u30b1\u30fc\u30b8":40,"\u30e1\u30c3\u30bb\u30fc\u30b8":[6,7,34,42,43,44,82,262,271],"\u30e1\u30c3\u30bb\u30fc\u30b8\u30dc\u30c7\u30a3":41,"\u30e1\u30e2":[211,212,213],"\u30e1\u30e2\u30ea":[23,24,25,27,31,32,34,36,40,41,42,43,44,50,54,65,262,263],"\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":14,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0":36,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9":44,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":[14,34,35,36,38,40,41,42,43,44],"\u30e1\u30e2\u30ea\u30fc":[34,43,44,92,99,104,135,140,242,262],"\u30e1\u30e2\u30ea\u30fc\u30a2\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3":43,"\u30e1\u30e2\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":[153,155],"\u30e1\u30e2\u30ea\u30fc\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0":[153,155],"\u30e1\u30e2\u30ea\u30fc\u30d6\u30ed\u30c3\u30af":137,"\u30e1\u30e2\u30ea\u30fc\u30de\u30c3\u30d7":[34,242],"\u30e1\u30e2\u30ea\u30fc\u30ea\u30fc\u30af":[43,44,137],"\u30e1\u30ea\u30c3\u30c8":[135,153,155],"\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u30b3\u30b9\u30c8":238,"\u30e1\u30f3\u30d0":68,"\u30e1\u30f3\u30d0\u30fc":12,"\u30e1\u30fc\u30c8\u30eb":[165,166],"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[3,12,22,43],"\u30e1\u30fc\u30eb":[12,17,19],"\u30e2\u30b8\u30e5\u30fc\u30eb":[0,22,36,43,82,226,252],"\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0":41,"\u30e2\u30cb\u30bf\u30fc":[24,25,27,31],"\u30e2\u30fc\u30c9":[11,34,42,43,44,123,136,146,153,156,171,177,191,258,268],"\u30e4\u30de\u30c0":[202,238],"\u30e6\u30cb\u30b0\u30e9\u30e0":241,"\u30e6\u30cb\u30fc\u30af":[34,158],"\u30e6\u30fc\u30b6":[11,12,40,135,154,216,217,218,219,243,268],"\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf":72,"\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0":11,"\u30e6\u30fc\u30b6\u30fc":[3,4,6,7,8,22,29,34,42,43,44,70,83,85,92,131,135,151,155,161,182,196,197,206,242,252,267,274],"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8":10,"\u30e6\u30fc\u30b9\u30b1\u30fc\u30b9":[80,91,228],"\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":36,"\u30e9\u30a4\u30bb\u30f3\u30b9":40,"\u30e9\u30a4\u30d6\u30e9\u30ea":[20,22,23,34,40,41,43,48,54,195,196,250,268],"\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":[42,43,44,73,145,153],"\u30e9\u30c6\u30f3":34,"\u30e9\u30d9\u30eb":[34,41,42,43,44,115,135],"\u30e9\u30f3\u30ad\u30f3\u30b0":[42,268],"\u30e9\u30f3\u30c0\u30e0":275,"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0":0,"\u30ea\u30af\u30a8\u30b9\u30c8":[34,41,42,43,44,47,81,89,90,94,100,101,103,110,111,127,131,135,136,137,141,152,155,156,158,197,199,219,252,258],"\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[22,44,46,81,153],"\u30ea\u30af\u30a8\u30b9\u30c8\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":149,"\u30ea\u30af\u30a8\u30b9\u30c8gqtp":258,"\u30ea\u30af\u30a8\u30b9\u30c8id":[22,43,44,46,81,131,136],"\u30ea\u30af\u30a8\u30b9\u30c8uri":155,"\u30ea\u30af\u30e9\u30c3\u30b7\u30e5":40,"\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3":43,"\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3\u30d0\u30b0":42,"\u30ea\u30b9\u30af":151,"\u30ea\u30b9\u30c8":[12,13,17,34,40,43,44,57,63,104,105,113,116,121,135,140,141,153,158,196,197,200,205,209,210,267,268],"\u30ea\u30b9\u30c8\u30a2":44,"\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7":12,"\u30ea\u30bb\u30c3\u30c8":43,"\u30ea\u30bd\u30fc\u30b9":[34,42,50,73,86,198],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":[22,40,42,44,46,81,83,131,199,258],"\u30ea\u30c6\u30e9\u30eb":[35,38,40,43,168,169,179,196,210,239],"\u30ea\u30c8\u30e9\u30a4":49,"\u30ea\u30cd\u30fc\u30e0":[38,43,47,91],"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7":252,"\u30ea\u30d3\u30eb\u30c9":[34,43],"\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":12,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[34,42],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":[22,42,198],"\u30ea\u30dd\u30b8\u30c8\u30ea":[3,4,12,22,25,27,31,38,40,41],"\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf":12,"\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc":[3,4,22,31,43],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":[22,258,264],"\u30ea\u30e9\u30a4\u30bf\u30fc":43,"\u30ea\u30ea\u30fc\u30b9":[3,4,6,7,8,10,22,27,82,177,198],"\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea":[12,44],"\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":34,"\u30ea\u30ea\u30fc\u30b9\u30d0\u30fc\u30b8\u30e7\u30f3":12,"\u30ea\u30ec\u30fc\u30b7\u30e7\u30ca\u30eb":153,"\u30ea\u30f3\u30af":[12,13,34,40,41,42,43,135,196,197,265],"\u30ea\u30f3\u30b4":236,"\u30eb\u30fc\u30c8":38,"\u30eb\u30fc\u30d7":[36,40,42,43,44],"\u30eb\u30fc\u30de\u30cb\u30a2":34,"\u30eb\u30fc\u30eb":[22,34,36,42,46,112,114,115,135,146,252],"\u30ec\u30a4\u30e4":11,"\u30ec\u30b3\u30fc\u30c9":[0,11,22,33,34,36,38,40,41,42,43,44,47,51,57,61,62,65,67,68,69,78,80,91,100,102,103,105,112,114,115,117,121,138,140,141,148,153,161,168,169,171,172,176,177,179,182,195,196,197,198,205,210,211,212,213,214,219,220,243,261,264,265,266,267,270,271,273,274,275],"\u30ec\u30b3\u30fc\u30c9id":[22,40,44,46,61,65,68,265],"\u30ec\u30b3\u30fc\u30c9r":11,"\u30ec\u30b9\u30c8\u30e9\u30f3":0,"\u30ec\u30b9\u30dd\u30f3\u30b9":[34,38,40,41,42,44,50,86,87,91,105,112,114,115,135,137,155,158,252,258],"\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf":252,"\u30ec\u30b9\u30dd\u30f3\u30b9\u30d8\u30c3\u30c0\u30fc":[43,86,252],"\u30ec\u30b9\u30dd\u30f3\u30b9\u30dc\u30c7\u30a3":44,"\u30ec\u30d9\u30eb":[40,42,43,110,153,199],"\u30ec\u30dd\u30fc\u30c8":29,"\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0":0,"\u30ec\u30fc\u30bf":40,"\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0":161,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3":35,"\u30ed\u30ac\u30fc":43,"\u30ed\u30ae\u30f3\u30b0":[43,54],"\u30ed\u30b0":[12,22,34,35,37,38,40,42,43,44,46,92,104,110,112,135,151,153,154,155,158,217,220,262],"\u30ed\u30b0\u30a4\u30f3":[12,242],"\u30ed\u30b0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":42,"\u30ed\u30b0\u30d1\u30b9":36,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":[29,43,44,82,111,135,153,154,158,199,263],"\u30ed\u30b0\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":44,"\u30ed\u30b0\u30d5\u30e9\u30b0":[151,153],"\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8":[34,40,41,43,151,153,210],"\u30ed\u30b0\u30ec\u30d9\u30eb":[34,43,44,92,109,151,153,155,199],"\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":[43,153],"\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30c8":43,"\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3":[34,40],"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8":12,"\u30ed\u30b4":40,"\u30ed\u30b7\u30a2":34,"\u30ed\u30b8\u30c3\u30af":117,"\u30ed\u30c3\u30af":[34,35,38,40,41,43,49,65,90,104,105,106,107,108,151,153],"\u30ed\u30c3\u30af\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[41,44,49],"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":[22,38],"\u30ed\u30f3\u30c9\u30f3":165,"\u30ed\u30fc\u30ab\u30eb":[12,197],"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":153,"\u30ed\u30fc\u30c6\u30fc\u30c8":153,"\u30ed\u30fc\u30c9":[0,22,34,36,38,41,42,43,44,99,105,120,151,153,155,197,252,264],"\u30ed\u30fc\u30c9\u30a8\u30e9\u30fc":40,"\u30ed\u30fc\u30de":[34,176,202,216,223],"\u30ed\u30fc\u30de\u30b8":[176,206],"\u30ef\u30a4\u30c9":38,"\u30ef\u30fc\u30ab":[34,155],"\u30ef\u30fc\u30ab\u30fc":[34,44,155],"\u30ef\u30fc\u30ab\u30fc\u30b9\u30ec\u30c3\u30c9":41,"\u30ef\u30fc\u30ab\u30fc\u30d7\u30ed\u30bb\u30b9":44,"\u30ef\u30fc\u30b9\u30c8\u30b1\u30fc\u30b9":34,"\u30f4\u30a1\u30a4\u30aa\u30ea\u30f3":34,"\u30f4\u30a1\u30f4\u30a3\u30f4\u30a5\u30f4\u30a7\u30f4\u30a9":[34,202,223],"\u30f4\u30a1\u30f4\u30a3\u30f4\u30f4\u30a7\u30f4\u30a9":[34,202,223],"\u30f4\u30a1\u30f4\u30a3\u30f4\u30f4\u30a7\u30f4\u30a9\u30f4":[202,223],"\u30f6\u30b1":[202,223],"\u30fb\u30b5\u30fc\u30d0":268,"\u30fb\u30c7\u30b9":238,"\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":271,"\u30fb\u30d5\u30a1\u30a4\u30eb":18,"\u30fb\u5168":100,"\u30fb\u5186":0,"\u30fb\u6d6e\u52d5\u5c0f":135,"\u30fb\u81ea\u5df1\u7d39":271,"\u30fbgroonga":43,"\u30fbor":275,"\u30fbroot":43,"\u30fd\u30fe":[202,223],"\u33a1\"":[203,223],"\u4e00\u3064":[0,44,50,51,54,68,82,89,90,94,100,101,103,110,111,127,141,163,165,166,167,170,173,174,178,182,193,243,259,265],"\u4e00\u4ef6\u9032\u3081":69,"\u4e00\u500b":11,"\u4e00\u5207":43,"\u4e00\u5b9a":44,"\u4e00\u5bfe":265,"\u4e00\u5de5":273,"\u4e00\u5ea6":[38,40,42,49,124,129,135,155,198,200,209,242,266,270],"\u4e00\u5f0f":[12,65],"\u4e00\u610f":[78,92,131,153],"\u4e00\u62ec\u3057":68,"\u4e00\u6587\u5b57":[42,43],"\u4e00\u65b9":[0,70,73,92,135,169,177,179,182,196,197,226,261,265,268,270],"\u4e00\u6642":[6,7,22,34,43,44,46,65,165],"\u4e00\u6642\u30c6\u30fc\u30d6\u30eb":43,"\u4e00\u6642\u7684":[34,43,65,142,263],"\u4e00\u6642\u7d50\u679c":40,"\u4e00\u6b69":268,"\u4e00\u6c17":12,"\u4e00\u756a":[29,80,121,135,252],"\u4e00\u756a\u5de6":197,"\u4e00\u756a\u901f\u3044":47,"\u4e00\u77ed":0,"\u4e00\u7dd2":[35,40,42,51,54,80,104,112,115,135,140,158,165,239,261,268],"\u4e00\u7fa4":11,"\u4e00\u81f4":[11,12,22,34,35,37,39,40,42,43,44,47,54,68,69,91,92,135,138,140,176,177,191,220,228,261,264,268,271,274],"\u4e00\u81f4\u3057":[34,42,259],"\u4e00\u81f4\u7528":273,"\u4e00\u81f4rk":[22,43,46,176,204],"\u4e00\u822c":[0,50,65,135,195,196,238,268],"\u4e00\u822c\u7684":[0,226,228,239],"\u4e00\u884c":[36,153,154],"\u4e00\u8996":[34,202,223],"\u4e00\u89a7":[12,17,18,22,46,89,93,118,119,122,140,141,147,153,155,196,197,261,262,267],"\u4e00\u8a9e":261,"\u4e00\u8cab\u6027":[10,43,44],"\u4e00\u9023":199,"\u4e00\u90e8":[34,40,43,94,214,218,228,268],"\u4e00\u9577":0,"\u4e09\u3064":[165,259],"\u4e09\u756a\u76ee":197,"\u4e09\u8c37":42,"\u4e09\u8c37\u3055\u3093":42,"\u4e0a\u304c\u3063":226,"\u4e0a\u3052\u308b":261,"\u4e0a\u4f4d":[68,261],"\u4e0a\u554f":256,"\u4e0a\u66f8\u304d":[12,44,86,275],"\u4e0a\u8a18":[17,21,29,33,40,43,92,104,115,135,140,154,161,170,177,182,202,209,217,219,226,236,238,258,261,262,266,268,275],"\u4e0a\u8a18url":12,"\u4e0a\u8ff0":[171,209],"\u4e0a\u91ce":36,"\u4e0a\u9650":[9,22,43,51,61,68,69,265],"\u4e0b\u304c\u3063":226,"\u4e0b\u304c\u308a":[105,261],"\u4e0b\u3052":[34,43],"\u4e0b\u3055\u3044":[1,12,23,24,25,27,31,32,34,40,41,68,93,146,238],"\u4e0b\u66f8\u304d":205,"\u4e0b\u8a18":[11,69,82,89],"\u4e0b\u90e8":12,"\u4e0b\u9650":[61,69],"\u4e0d\u5177\u5408":[3,34,40,41,42,43,44],"\u4e0d\u53ef":121,"\u4e0d\u5909":78,"\u4e0d\u5b89":12,"\u4e0d\u5b89\u5b9a\u7248":12,"\u4e0d\u5b8c\u5168":[38,44],"\u4e0d\u5fc5\u8981":[34,43,44,86],"\u4e0d\u610f":104,"\u4e0d\u6574\u5408":35,"\u4e0d\u6b63":[14,35,36,38,41,42,43,44,63,92,104,140],"\u4e0d\u6b63\u78ba":40,"\u4e0d\u7b49\u4fa1":177,"\u4e0d\u80fd":154,"\u4e0d\u8981":[0,40,41,42,43,104,226,236,238,255],"\u4e0d\u8db3":[23,24,25,27,31,32,42,43,262],"\u4e0d\u9069\u5207":[40,42],"\u4e0e\u3048":[11,40,41,44,56,63,69,153,258,261,268],"\u4e0e\u3048\u308b":[82,152,153,275],"\u4e14\u3064":34,"\u4e16\u4ee3":82,"\u4e16\u754c":[165,166,167,243,265,275],"\u4e21\u65b9":[0,80,112,114,115,121,135,196,197,198,210,216,220,229,230,271,273],"\u4e21\u8005":275,"\u4e26\u3073":[197,259],"\u4e26\u3073\u9806":275,"\u4e26\u3079":[22,264],"\u4e26\u3093":[112,114,115],"\u4e26\u5217":[6,7,44,154,199],"\u4e2d\u4e95":41,"\u4e2d\u56fd":165,"\u4e2d\u592e\u5024":42,"\u4e2d\u5fc3":166,"\u4e2d\u65ad":[34,38,40,42,59],"\u4e2d\u70b9":[34,202,223],"\u4e2d\u7a0b\u5ea6":[23,24,25,27,31,32],"\u4e2d\u8eab":[42,154,258,268],"\u4e2d\u9593":[11,259],"\u4e38\u62ec":268,"\u4e3b\u30ad\u30fc":[22,36,40,78,105,141,264,265,266,267,268,274],"\u4e3b\u5c0e":158,"\u4e3b\u8981":23,"\u4e43\u6bc5":36,"\u4e57\u7b97":34,"\u4e71\u6570":[178,275],"\u4e88\u3081":[153,243],"\u4e88\u5b9a":[16,34,38,43,80,82,132,133,165,179,210,214,252],"\u4e88\u60f3":34,"\u4e8b\u524d":[12,113,116,117,132,133,135,218,261],"\u4e8b\u67c4":10,"\u4e8b\u9805":[22,43,44,46,214],"\u4e8c\u3064":[11,54,82,112,114,115,118,146,154,165,172,176,177,182,259],"\u4e8c\u756a\u76ee":197,"\u4e8c\u91cd":[41,42,43,196],"\u4e8c\u9805":[43,44,197],"\u4e92\u63db":[12,24,25,27,31,34,42,43,44,82,112,114,115,118,156,197,212,213,252],"\u4e92\u63db\u6027":12,"\u4e94\u5165":38,"\u4eac\u90fd":[238,259,261],"\u4eba\u3068":10,"\u4eba\u540d":[202,238],"\u4eba\u5411\u3051":43,"\u4eba\u6c17":[112,114,115],"\u4eba\u7269":92,"\u4eca\u56de":[34,40,44,179,197,268],"\u4eca\u5f8c":[38,44,111,132,146,210],"\u4ecb\u3057":[0,272],"\u4ecb\u6587":271,"\u4ed5\u65b9":3,"\u4ed5\u69d8":[22,36,39,40,42,64,82,135,138,155,156,239,265],"\u4ed5\u7d44":[17,43,252],"\u4ed5\u7d44\u307f":[40,43,155],"\u4ed8\u3044":[34,92,200,270],"\u4ed8\u304d":[3,22,30,34,36,43,44,80,87,92,112,114,115,117,121,134,135,138,196,201,205,210,216,219,243,264,265,268],"\u4ed8\u3051":[40,85,86,102,131,158,161,168,169,252,258,265,268,270],"\u4ed8\u3051\u308b":[9,34,158,197,200,221,268,274],"\u4ed8\u3051\u65b9":85,"\u4ed8\u4e0e":[51,68,78,135,154,267,273],"\u4ed8\u5c5e":[155,156],"\u4ed8\u8d85\u7fa4":34,"\u4ed8\u968f":94,"\u4ee3\u308a":[40,165,196],"\u4ee3\u308f\u308a":[29,32,34,43,92,115,121,135,137,140,153,155,168,169,179,196,200,203,210,226,258],"\u4ee3\u5165":[11,36,41,196,275],"\u4ee3\u540d":34,"\u4ee3\u540d\u8a5e":238,"\u4ee3\u8868":[0,135],"\u4ee5\u4e0a":[11,12,14,17,32,33,34,40,41,42,43,44,51,54,69,70,76,80,92,93,112,114,115,117,121,122,130,135,138,140,142,153,154,155,158,168,171,172,176,177,179,182,209,210,212,214,220,221,226,228,236,242,243,258,268],"\u4ee5\u4e0b":[11,12,14,17,18,21,25,29,32,33,34,38,40,42,43,44,47,50,51,53,54,55,57,63,65,70,73,76,80,83,84,85,86,87,89,91,92,93,95,96,97,98,99,102,103,104,105,106,107,108,110,112,113,114,115,117,118,119,120,121,122,124,125,129,130,131,134,135,136,137,138,139,140,141,142,143,144,146,147,148,151,153,154,155,156,158,161,162,165,166,168,169,170,171,172,173,176,177,179,181,182,184,191,193,194,197,199,200,201,202,203,205,207,209,210,211,212,213,216,217,218,219,220,221,223,224,225,226,228,236,237,238,240,241,242,243,252,255,258,259,261,262,263,265,267,268,272,275],"\u4ee5\u5185":[197,216,217,271,275],"\u4ee5\u524d":[34,38,40,41,42,43,44,104,112,114,115,200,201,261,265,271],"\u4ee5\u5916":[0,11,12,34,36,38,41,42,47,50,51,54,55,57,61,65,68,71,73,80,105,112,115,130,135,140,142,151,153,154,171,191,196,205,210,220,224,225,243],"\u4ee5\u964d":[12,14,17,34,36,38,41,42,43,44,95,104,105,112,114,115,131,143,153,168,169,170,200,201,205,228,272],"\u4eee\u540d":206,"\u4eee\u5b9a":131,"\u4eee\u60f3":[12,41,43,266,275],"\u4ef6\u540c":43,"\u4ef6\u542b":271,"\u4ef6\u6570":[34,42,43,44,65,68,78,112,259,261,268],"\u4efb\u547d":12,"\u4efb\u610f":[0,12,153,154,262,268],"\u4f1a\u793e":[34,42,43,44],"\u4f1d\u642c":34,"\u4f1d\u7d71":0,"\u4f34\u3063":34,"\u4f3c\u305f":201,"\u4f4d\u7f6e":[18,22,34,38,40,41,42,43,44,46,51,65,69,92,93,134,204,211,212,213,264,267,268],"\u4f4e\u3044":[92,261],"\u4f4e\u304f":[226,261],"\u4f4e\u4e0b":[34,41],"\u4f4e\u6a5f":11,"\u4f4e\u6e1b":[36,256],"\u4f4f\u3093":271,"\u4f4f\u6240":40,"\u4f50\u85e4":[43,44],"\u4f53\u8fd1":166,"\u4f55\u3089\u304b":243,"\u4f55\u500b":135,"\u4f55\u5ea6":[41,131],"\u4f55\u756a":115,"\u4f59\u308a":197,"\u4f59\u88d5":12,"\u4f59\u8a08":10,"\u4f5c\u3063":[34,38,68,69,115,120,121,123,134,135,155,158,200,216,261,266],"\u4f5c\u3089":[43,135],"\u4f5c\u3089\u308c":[42,154],"\u4f5c\u3089\u308c\u308b":151,"\u4f5c\u308a":[42,92,130,135,137,140,158,192,199,216,217,242,270],"\u4f5c\u308a\u76f4\u3057":[130,151],"\u4f5c\u308a\u76f4\u3059":[43,130],"\u4f5c\u308b":[7,8,9,17,42,43,80,91,92,112,114,115,120,123,134,135,140,153,158,176,195,197,210,214,217,242,267,271,274],"\u4f5c\u308c":[44,106],"\u4f5c\u308c\u308b":[43,92,135],"\u4f5c\u6210":[22,26,34,35,36,38,39,40,41,42,43,44,47,50,54,55,61,66,68,69,71,78,111,112,114,115,117,118,135,138,142,153,154,155,158,165,176,196,197,198,216,219,220,242,243,255,261,264,265,267,270,273,274],"\u4f5c\u6210\u6e08":153,"\u4f5c\u696d":[10,17,34],"\u4f5c\u7528":40,"\u4f75\u305b":268,"\u4f7f\u3044":[0,6,7,8,11,12,15,17,18,21,22,24,25,27,28,29,31,34,38,42,43,44,47,49,55,57,70,80,83,86,92,102,104,105,112,113,114,115,118,121,134,135,136,138,140,144,146,151,153,155,158,169,170,171,176,177,179,191,195,196,197,198,201,209,210,211,215,216,217,219,221,226,228,233,234,235,237,239,240,241,242,243,252,265,266,270,272],"\u4f7f\u3044\u5206\u3051":[259,261],"\u4f7f\u3044\u65b9":[0,22,46,70,196,197,215,268],"\u4f7f\u3046":[5,7,11,12,16,21,23,24,25,27,29,31,33,34,35,36,38,40,41,42,43,44,47,48,50,51,57,70,73,80,83,85,88,91,92,96,97,98,99,102,103,104,105,112,113,114,115,116,117,118,123,124,129,130,132,133,135,136,138,140,142,146,149,151,153,154,161,162,168,169,170,171,172,173,176,177,179,182,184,191,193,195,196,197,199,200,201,202,203,205,206,207,209,210,211,212,213,214,216,217,218,219,220,221,224,225,226,228,229,230,231,232,236,238,243,252,256,258,261,263,265,268,270,272,274],"\u4f7f\u3048":[6,8,21,33,34,38,41,42,43,47,91,92,99,104,112,114,115,123,130,131,135,140,146,153,155,158,160,161,171,191,195,196,197,206,210,211,212,213,214,223,238,239,244,250,251,266,268],"\u4f7f\u3048\u308b":[21,29,34,38,40,41,42,43,44,134,135,153,196,210,214],"\u4f7f\u3063":[3,5,10,11,12,17,18,19,20,21,23,24,25,27,28,29,31,32,33,34,39,40,41,42,43,44,47,54,61,63,70,73,80,83,87,88,89,91,92,99,104,105,107,112,113,114,115,117,118,120,121,123,130,133,134,135,137,140,142,145,146,151,153,155,158,169,172,176,177,179,195,196,197,200,201,202,203,209,210,211,212,213,214,217,218,223,224,225,226,228,236,238,239,240,241,243,252,258,259,261,265,266,267,268,270,271,272,273,274,275],"\u4f7f\u308f":[21,34,38,41,42,43,44,47,50,54,87,92,104,112,113,114,115,117,120,121,135,140,142,146,153,155,161,177,195,196,200,206,209,210,216,220,226,228,258,266,267,274],"\u4f7f\u308f\u305a":[34,177],"\u4f7f\u7528":[11,12,34,35,36,40,41,42,43,44,50,51,54,63,65,66,68,72,82,89,91,92,93,95,102,105,112,114,115,118,119,121,131,135,137,143,144,146,147,148,151,153,154,155,156,158,165,168,171,177,182,184,196,197,202,206,211,223,226,236,243,252,258,259,261,265,268,270,271,272],"\u4f7f\u7528\u4f8b":165,"\u4f8b\u3048":[18,20,21,29,34,40,41,42,43,44,65,80,102,104,112,114,115,117,118,119,135,138,140,146,147,153,154,155,182,195,196,197,198,200,201,209,210,211,214,216,217,218,219,224,226,228,236,238,252,259,261,267,268,269,270,273,274],"\u4f8b\u3068\u3057\u3066":[242,265],"\u4f8b\u3068\u3068\u3082":165,"\u4f8b\u4ee5\u5916":[202,238],"\u4f8b\u5916":[27,34,42,43,91,114,115,121,132,133],"\u4f9d\u308a":121,"\u4f9d\u5b58":[12,22,23,39,40,42,44,83,92,117,121,135,158,211,212,213,238],"\u4f9d\u7136":34,"\u4f9d\u983c":12,"\u4fa1\u683c":44,"\u4fbf\u5229":[0,1,6,7,29,34,43,44,51,80,83,92,104,112,113,118,122,130,134,135,136,144,146,153,195,196,206,210,216,265],"\u4fbf\u5229\u30e1\u30bd\u30c3\u30c9":34,"\u4fc2\u52a9\u8a5e":238,"\u4fc2\u6570":[11,135],"\u4fc3\u97f3":34,"\u4fdd\u305f":[114,115],"\u4fdd\u3064":44,"\u4fdd\u5b58":[22,33,40,41,43,44,63,80,91,92,93,112,114,115,121,134,135,153,155,158,165,197,200,205,210,219,220,243,263,264,267,270,271,275],"\u4fdd\u6301":[44,50,54,104,265,269,271],"\u4fdd\u8a3c":[82,89],"\u4fe1\u6d0b":44,"\u4fe1\u983c":151,"\u4fee\u5e73":42,"\u4fee\u6b63":[12,165,217,272],"\u4fee\u6b63\u4e2d":217,"\u500b\u3005":[11,82,114,261],"\u500b\u4eba":[12,29],"\u500b\u5225":[12,135],"\u500b\u5b9a":9,"\u500b\u6240":42,"\u500b\u6570":[40,51],"\u500d\u7cbe":243,"\u5019\u88dc":[138,158,176,216,217,218],"\u5024\u304b":[162,165],"\u5024\u304c":44,"\u5024\u3054":266,"\u5024\u3054\u3068":266,"\u5024\u3057":171,"\u5024\u3059":44,"\u5024\u3060\u3051":197,"\u5024\u3068":[135,196,265],"\u5024\u3068\u3057\u3066":[153,165,184,263,271],"\u5024\u306a\u3057":39,"\u5024\u306a\u3089":41,"\u5024\u3088\u308a":[11,135],"\u5024\u4ee5\u4e0a":153,"\u5024\u5727":92,"\u5024\u578b":265,"\u5024\u57df":[76,122],"\u5024\u6bce":266,"\u5024\u7528":38,"\u5024\u8a18":197,"\u505c\u6b62":[34,41,43,82,95,143,153,155],"\u5065\u4f5c":267,"\u5074\u9762":0,"\u5076\u6570":197,"\u5099\u8003":[41,135,158],"\u50be\u5411":[135,270],"\u512a\u308c":[0,228,238],"\u512a\u5148":[0,34,43,99,154,216],"\u5143\u6c17":41,"\u5145\u5206":34,"\u5148\u60c5":271,"\u5148\u8aad":236,"\u5148\u982d":[59,63,65,112,114,115,135,155,210,239,268],"\u5149\u7537":41,"\u5165\u3063":[14,40,41,43,44,83,92,135,171,216,258,262,267,268,270],"\u5165\u308a":[104,135,197,231,232,258,262,266,268],"\u5165\u308b":141,"\u5165\u308c":[135,239,261,267,271],"\u5165\u308c\u308b":[43,92,135,210],"\u5165\u529b":[34,35,38,39,41,44,83,89,90,94,100,101,103,105,110,111,127,135,138,141,152,153,154,197,206,216,217,218,219,223,258,268],"\u5165\u529b\u30df\u30b9":217,"\u5168\u304f":43,"\u5168\u3066":[17,34,68,135,153,155,195,198,219,223,243,270],"\u5168\u4e16\u754c":41,"\u5168\u4ef6":[69,196,197],"\u5168\u4f53":[22,29,34,41,46,48,121,211],"\u5168\u524a":148,"\u5168\u6587":[22,24,25,27,29,31,34,40,42,48,73,80,92,93,112,114,115,135,140,153,177,191,195,196,197,200,205,210,220,226,256,259,260,264,265,267,269,271],"\u5168\u6587\u691c":[22,36,264],"\u5168\u6587\u691c\u7d22":[40,140,153,177],"\u5168\u89d2":[34,38,43,69,201,202,223,268],"\u5168\u90e8":258,"\u5168suffix":68,"\u516c\u5e73":41,"\u516c\u5f0f":[8,27,38,177],"\u516c\u8f14":41,"\u516c\u958b":[34,36,38,41,42,43,44,50],"\u516c\u958b\u9375":12,"\u5171\u306b":[51,65],"\u5171\u6709":[2,10,12,22,29,40,41,50,92,153,155,267,270],"\u5171\u901a":[10,38,114,153,197,220,243,270],"\u5171\u901a\u63a5":[34,220],"\u5177\u4f53":[12,34,135,261,266,270],"\u5177\u4f53\u4f8b":[91,115],"\u5177\u5408":[135,197],"\u5178\u578b":43,"\u5185\u5bb9":[10,12,17,34,40,42,43,55,59,62,63,69,83,93,112,114,115,135,141,151,152,154,179,196,197,199,216,219,242,256,265,268,270,271,272],"\u5185\u5c71":34,"\u5185\u8a33":261,"\u5185\u8fd1\u304f":197,"\u5185\u90e8":[12,39,42,43,44,50,54,60,63,65,68,104,121,122,179,265],"\u5186\u6ed1":12,"\u518d\u3073":[42,151],"\u518d\u4f5c":43,"\u518d\u4f5c\u6210":44,"\u518d\u5229":[34,42,43,78,121,153,155,220],"\u518d\u5e30":[11,47,65,90,107,135,151,155,209],"\u518d\u5ea6":[11,12,34,42,43,49],"\u518d\u691c":195,"\u518d\u69cb":[34,38,151],"\u518d\u73fe":[10,34,41,195,226,228,238,261],"\u518d\u751f":[34,155],"\u518d\u767a":42,"\u518d\u8aad":[111,209],"\u518d\u8d77":[34,43,209,242,256],"\u518d\u8d77\u52d5":[124,129,153,155,242],"\u5197\u9577":34,"\u51e6\u7406":[0,6,7,11,17,34,35,36,40,41,42,43,44,59,78,81,86,87,92,104,107,112,114,115,118,122,135,137,140,144,146,151,154,155,169,179,196,197,199,221,226,252,258,259,275],"\u51fa\u3055":41,"\u51fa\u3057":271,"\u51fa\u3059":[34,135,158,271],"\u51fa\u305b\u308b":[0,34],"\u51fa\u529b":[0,3,14,22,29,34,35,36,38,39,40,41,42,43,44,46,54,57,61,63,80,81,82,84,86,87,88,89,91,92,93,95,96,97,98,99,100,102,103,104,106,107,108,109,110,112,113,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,136,137,138,139,140,141,142,143,145,146,147,148,151,153,154,156,158,170,199,202,223,238,243,258,262,264],"\u51fa\u6765":[18,34,146,267,270],"\u51fa\u6765\u308b":[34,271],"\u51fa\u73fe":[0,43,51,92,93,115,135,138,144,158,197,211,212,213,269],"\u5206\u304b\u3061":0,"\u5206\u3051":[12,22,34,93],"\u5206\u3051\u308b":[12,265],"\u5206\u307e":214,"\u5206\u5272":[0,38,43,44,197,220,236,259,268],"\u5206\u5c90":14,"\u5206\u6563":214,"\u5206\u6790":[0,34],"\u5206\u89e3":[11,214],"\u5206\u914d":[112,115],"\u5206\u985e":[135,265,266],"\u5206z":243,"\u5207\u3089":42,"\u5207\u308a":[12,34,38,41,42,43,44,63,127,135,224],"\u5207\u308a\u4e0a\u3052\u308b":114,"\u5207\u308a\u6368\u3066":265,"\u5207\u308b":[42,121,155],"\u5207\u308c":[34,43],"\u5217\u4e2d":[44,197],"\u5217\u578b":[42,196,265,266],"\u5217\u5f0f":57,"\u5217\u5f15":11,"\u5217\u60c5":146,"\u5217\u6307\u5411":0,"\u5217\u6319":[43,268],"\u5217\u8868":[57,243],"\u5217\u95a2":44,"\u521d\u56de":17,"\u521d\u671f":[0,34,36,38,40,42,55,65],"\u521d\u671f\u5024":152,"\u521d\u671f\u5316":[34,40,43,44,54,66,73,151],"\u5224\u5b9a":[65,275],"\u5224\u65ad":[44,55,114,117,135,197,262],"\u5225\u3005":[135,266],"\u5225\u540d":[43,153,177],"\u5225\u9014":[65,105,243],"\u5229\u70b9":0,"\u5229\u7528":[0,1,10,12,14,17,22,23,24,25,27,29,31,32,38,40,41,42,43,44,50,55,68,83,92,103,135,136,140,146,149,151,153,154,156,168,169,171,177,191,196,197,205,216,217,219,243,250,258,259,261,264,265,268],"\u5229\u7528\u4f8b":0,"\u5230\u9054":33,"\u5236\u5fa1":[34,40,113,135,155,161,177],"\u5236\u7d04":[33,114],"\u5236\u9650":[22,34,36,38,40,41,42,43,44,46,61,114,115,131,135,155,165,182,195,196,211,212,214,242,252,264,270,272],"\u523b\u307f":135,"\u5247\u3063":214,"\u524a\u6e1b":[34,43,44,151],"\u524a\u9664":[0,6,7,12,18,34,35,36,38,39,40,41,42,43,44,59,65,67,68,69,78,91,94,96,105,123,148,149,151,153,155,210,220],"\u524a\u9664\u5f8c":34,"\u524d\u3082\u3063":43,"\u524d\u4ed8":[112,114,115],"\u524d\u4ed8\u304d":65,"\u524d\u5411\u3051":104,"\u524d\u56de":12,"\u524d\u5f8c":[153,268],"\u524d\u63d0":[3,47],"\u524d\u65b9":[11,22,34,35,37,39,40,42,43,44,46,69,91,92,138,140,176,177,191,204,220,228,259,264,268],"\u524d\u8005":[47,158,201,209,275],"\u524d\u8ff0":[135,140,155,171,200,261],"\u5270\u4f59":42,"\u5272\u3063":[211,213],"\u5272\u308a":[54,131,141,146,197,220,265],"\u5272\u308a\u5f53\u3066":[36,50],"\u5272\u308a\u5f53\u3066\u308b":[85,220,265,268],"\u5272\u308b":213,"\u5272\u5408":137,"\u52a0\u3048":[11,12,21,44,104,238,265,273],"\u52a0\u3048\u308b":[38,104],"\u52a0\u308f\u308b":10,"\u52a0\u7b97":[34,44,65,78,80],"\u52a3\u5316":43,"\u52a9\u52d5\u8a5e":238,"\u52a9\u8a5e":238,"\u52b9\u679c":[34,113,271],"\u52b9\u7387":[43,44,92,104,121,155,270],"\u52c9\u5f37":[228,240,241],"\u52d5\u3044":[43,70],"\u52d5\u304b":[34,41,42,43,99,158,210],"\u52d5\u304b\u3057":[158,242],"\u52d5\u304b\u3059":43,"\u52d5\u304d":[34,43,135,145,214,252],"\u52d5\u304f":[29,38,40,242,251],"\u52d5\u4f5c":[3,17,34,36,38,41,42,43,44,82,114,115,154,155,199,202,215,251,265],"\u52d5\u5c0f":243,"\u52d5\u6642":34,"\u52d5\u74b0":152,"\u52d5\u753b":267,"\u52d5\u7684":[0,22,34,36,39,43,44,46,92,155,259,268],"\u52e7\u3081":42,"\u5316\u4f5c":12,"\u5316\u51e6":[38,78],"\u5316\u524d":78,"\u5316\u5bfe":[17,202,223],"\u5316\u65b9":[118,200],"\u5316\u6642":38,"\u5316\u6e08":[55,65],"\u5316\u6f0f\u308c":40,"\u5316\u95a2":36,"\u5317\u4eac":165,"\u5317\u534a\u7403":40,"\u5317\u5e02":44,"\u533a\u5207":122,"\u533a\u5207\u3063":[118,135,144,146,158,258],"\u533a\u5207\u3089":38,"\u533a\u5207\u308a":[0,34,40,43,92,103,105,135,138,140,146,152,153,158,177,196,197,207,219,226,228,236,237,240,241,243,265,266,268],"\u533a\u5207\u308b":[36,135,153,209],"\u533a\u5225":[44,135,210,243,273],"\u5341\u5206":[34,44,62,92,114,261,263],"\u5341\u5206\u6c17":135,"\u534a\u5f84":166,"\u534a\u6fc1":[34,202,223],"\u534a\u7121":[38,140],"\u534a\u89d2":[34,69,201,202,223,268],"\u5354\u529b":[3,4,22,44],"\u5357\u534a":40,"\u5358\u306b":[41,133],"\u5358\u4f4d":[0,36,38,43,71,81,83,86,121,137,149,153,158,165,166,179,197,199,240,241,243,258,259,268,271],"\u5358\u4f53":[0,154],"\u5358\u72ec":[51,154],"\u5358\u7d14":[11,85,166,273],"\u5358\u8a9e":[40,112,114,115,135,195,196,209,211,212,213,216,218,228,268,269,270,271],"\u535a\u4e4b":[43,44],"\u5360\u6709":65,"\u5371\u6a5f":[153,199],"\u5371\u967a":[12,34,95,106,107,108,117,123,142,143,252],"\u5373\u5024":44,"\u5373\u5ea7":[43,44],"\u5373\u6642":22,"\u539f\u56e0":[10,22,43,44,151,154,260,262,263],"\u539f\u99c5":275,"\u53b3\u5bc6":[42,43,44,216],"\u53c2\u52a0":[2,3],"\u53c2\u7167":[1,6,7,8,12,17,21,22,24,25,27,28,29,30,31,34,35,36,38,40,41,42,43,44,47,49,54,59,64,80,85,86,87,88,91,93,95,96,97,98,99,102,104,105,106,107,108,109,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,135,136,137,138,139,140,143,144,145,146,147,148,151,154,155,156,158,165,171,177,182,196,197,206,209,210,228,238,242,243,250,256,261,263,264,266,270,271,275],"\u53c2\u7167\u5024":44,"\u53c2\u7167\u5143":265,"\u53c2\u7167\u5148":[34,41],"\u53c2\u7167\u578b":135,"\u53c2\u8003":[12,22,46,268],"\u53ca\u3073":154,"\u53cb\u4eba":267,"\u53cc\u65b9":10,"\u53cd\u6620":[0,11,12,158,242],"\u53cd\u8ee2":197,"\u53ce\u307e\u308a\u304d\u3089":43,"\u53ce\u96c6":[0,83],"\u53d6\u308a":44,"\u53d6\u308a\u51fa\u3055":265,"\u53d6\u308a\u51fa\u3057":[61,69,268],"\u53d6\u308a\u51fa\u3059":[11,36,61,69,265],"\u53d6\u308a\u51fa\u305b\u308b":44,"\u53d6\u308a\u5f97\u308b":243,"\u53d6\u308a\u8fbc\u307e":12,"\u53d6\u308a\u8fbc\u307f":38,"\u53d6\u308a\u9664\u3044":68,"\u53d6\u308a\u9664\u304d":[11,34,170],"\u53d6\u308a\u9664\u304f":238,"\u53d6\u308b":[158,197,258],"\u53d6\u5f97":[10,22,23,34,42,43,44,49,50,54,61,62,65,66,68,69,88,92,93,97,112,116,122,135,149,158,197,216,217,219,238,264,266,267,270],"\u53d7\u3051":[9,34,40,41,42,43,44,85,86,131,155,158,161,165,197,252,255,258,268,274],"\u53d7\u3051\u308b":[42,256],"\u53d7\u3051\u4ed8\u3051":[34,36,40,136,197],"\u53d7\u3051\u53d6\u3063":0,"\u53d7\u3051\u53d6\u308a":[11,155,158,161,162,268],"\u53d7\u4ed8":[41,274],"\u53d7\u4fe1":158,"\u53e4\u3044":[12,40,43,44,95,143,200,271],"\u53e4\u304f":[42,44],"\u53e4\u3059\u304e\u308b":18,"\u53e5\u70b9":238,"\u53ef\u5426":268,"\u53ef\u5909":[38,93,101,121,122,258],"\u53ef\u5909\u9577":[104,121],"\u53ef\u80fd":[10,11,12,14,22,29,34,38,40,41,43,44,51,53,55,65,66,68,72,78,82,89,93,108,124,125,129,135,138,151,153,154,156,168,196,197,220,239,250,252,258,259,261,267,268,271,273,275],"\u53ef\u8aad":42,"\u53f3\u4e0a":35,"\u53f3\u4e0b":[35,167],"\u53f3\u8fba":[36,38,43,44],"\u5404\u5024":122,"\u5404\u51fa":[114,135],"\u5404\u52d5":135,"\u5404\u52d9":43,"\u5404\u547d":154,"\u5404\u56fd":12,"\u5404\u7a2e":12,"\u5404\u7d22":268,"\u5404\u8981":[80,92,191],"\u5404\u8a00":224,"\u5404\u8a9e":89,"\u5404os":238,"\u5408\u308f\u305b":[12,40,51,197,236],"\u5408\u7406":228,"\u5408\u81f4":[268,275],"\u5408\u8a08":[33,42,89,112,114,115,135,154,211,220,261,263],"\u5409\u5ca1":43,"\u5409\u7530":41,"\u540c\u3058":[0,22,34,35,36,38,42,43,44,54,57,69,80,82,83,85,91,92,111,112,114,115,117,124,129,130,131,135,138,141,146,153,154,155,156,158,177,197,200,201,209,210,211,212,213,217,223,243,252,260,265,266,268,270],"\u540c\u3058\u4f8b":270,"\u540c\u3058\u5024":[114,115,155,268],"\u540c\u3058\u578b":80,"\u540c\u3058\u6570":[153,155,252],"\u540c\u3058\u6708":43,"\u540c\u3058\u91cd\u307f":177,"\u540c\u3058\u97f3\u3068":[202,223],"\u540c\u6642":[0,9,34,43,44,68,69,82,105,135,154,158,236,275],"\u540c\u671f":[12,154],"\u540c\u68b1":[17,36,40,42],"\u540c\u69d8":[11,12,34,69,154,205,258,265,275],"\u540c\u7a0b":92,"\u540c\u7b49":[43,104,154,259],"\u540c\u7fa9":[44,209],"\u540d\u524d":[12,17,22,34,36,37,38,40,43,44,46,47,51,54,55,63,65,66,68,71,82,83,89,91,92,93,94,95,100,102,104,105,112,114,115,117,118,119,120,121,122,123,134,135,140,141,142,143,146,147,153,155,158,197,202,214,216,220,238,252,255,258,265,268,271],"\u540d\u79f0":43,"\u540d\u7b49":65,"\u540d\u8a5e":[34,202,238],"\u540d\u9806":115,"\u540dn":141,"\u5411\u3044":[42,83,92,135,220],"\u5411\u3051":[3,6,7,8,11,22,25,29,41,42,43,44,65,196],"\u5411\u4e0a":[34,38,43,44,155,195,197,252,256],"\u5426\u304b":[114,161],"\u5426\u5b9a":[11,43,135,236],"\u542b\u307e":[6,11,12,34,40,42,43,44,83,91,92,93,99,104,112,114,115,117,124,125,129,132,133,135,136,139,140,141,142,143,144,158,161,171,172,177,179,191,196,197,209,211,212,213,219,228,236,252,259,268,271],"\u542b\u307e\u308c":[0,12,41,83,112,115,124,125,129,135,140,161,179,259],"\u542b\u307e\u308c\u308b":[0,11,12,44,114,135,153,168,169,261,265,268],"\u542b\u307f":[43,69,83,105,112,115,121],"\u542b\u3080":[9,11,34,40,41,42,43,44,63,80,91,112,114,115,134,135,138,143,152,196,197,199,212,213,259,268,270,271],"\u542b\u3080\u5024":[153,268],"\u542b\u3080\u5168\u3066":95,"\u542b\u3081":[12,44,135,161,196,209],"\u542b\u3081\u308b":[12,34,38,39,42,44,103,112,114,115,117,118,135,146,161,196,209,268],"\u542b\u3093":[11,34,42,44,83,114,117,121,134,135,179,196,197,211,212,217,218,226,229,230,231,232,265,271],"\u5438\u53ce":268,"\u5468\u4e0a":166,"\u5468\u8fba":[40,179,262],"\u547c\u3070":[34,41,43,44,54,66,68,70,135,197,211,243,268],"\u547c\u3073":[11,73,80,121,135,153,154,179,265],"\u547c\u3073\u5143":54,"\u547c\u3073\u51fa\u3055":[59,135],"\u547c\u3073\u51fa\u3057":[0,11,34,36,40,42,43,54,103,114,135,195],"\u547c\u3073\u51fa\u3059":[113,145,163,166,167,174,178,195],"\u547c\u3076":[14,40,43,70,73,95,143,195],"\u547c\u3076\u524d":73,"\u547c\u3093":[42,73,135,259,266],"\u547c\u51fa":[51,62,65,68],"\u547d\u4ee4":153,"\u547d\u540d":[40,112,114,115],"\u548c\u5e83":41,"\u54c1\u8a5e":[34,202,238],"\u552f\u4e00":145,"\u554f\u3044\u5408\u308f":11,"\u554f\u984c":[12,17,34,35,36,37,38,40,41,42,43,44,50,54,89,117,123,154,155,196,197,228,263,268],"\u559c\u3073":[16,17],"\u56db\u3064":259,"\u56db\u5247":42,"\u56db\u6368":38,"\u56db\u89d2\u5f62":205,"\u56de\u52d5":154,"\u56de\u540c":43,"\u56de\u547c":36,"\u56de\u6307\u5b9a":[171,196],"\u56de\u6570":[34,40,242],"\u56de\u7279":154,"\u56de\u7e70\u308a":154,"\u56de\u9001\u308b":131,"\u56de\u907f":[12,22,42,43,44,142,260,261],"\u56f0\u3063":10,"\u56f0\u96e3":[0,40],"\u56f2\u307e":[169,179],"\u56f2\u307f":[153,168,169,179],"\u56f2\u3080":[41,179,268],"\u56f2\u3093":197,"\u56fa\u5b9a":[34,42,65,69,93,122,140,258,268],"\u56fa\u5b9a\u9577":[36,121],"\u56fa\u6709":[59,80,238],"\u56fd\u3054":266,"\u56fd\u540d":266,"\u56fd\u969b":17,"\u56fd\u969b\u5316":[3,15,18,22,44],"\u570f\u5185":271,"\u571f\u66dc":184,"\u571f\u66dc\u65e5":184,"\u5727\u7e2e":[29,34,38,40,41,42,43,44,51,92,121,134,251],"\u5730\u56f3":0,"\u5730\u57df":0,"\u5730\u5f62":[165,166],"\u5730\u70b9":[165,275],"\u5730\u7cfb":165,"\u578b\u304b":243,"\u578b\u3068\u3057\u3066":243,"\u578b\u540d":[93,114,134,135],"\u578b\u5909":38,"\u578b\u60c5":40,"\u578b\u6307":40,"\u578b\u7528":57,"\u57cb\u3081\u8fbc\u307e":12,"\u57cb\u3081\u8fbc\u307f":[169,179],"\u57cb\u3081\u8fbc\u3080":154,"\u57f7\u7b46":[18,205,269],"\u57fa\u3065\u3044":12,"\u57fa\u3065\u304f":34,"\u57fa\u6570":197,"\u57fa\u672c":[0,12,22,40,42,91,135,259,261,264,265],"\u57fa\u672c\u5f62":238,"\u57fa\u6e96":[0,12,265,268],"\u57fa\u76e4":54,"\u5800\u672c":34,"\u5831\u4ee5":146,"\u5831\u544a":[3,10,22,34,36,37,38,40,41,42,43,44,49,123,151,154],"\u5834\u5408":[5,6,7,10,11,17,18,21,22,23,24,25,27,29,30,31,32,33,34,35,36,38,40,41,42,43,44,50,51,54,55,56,57,59,61,63,65,68,69,70,71,80,82,86,88,89,90,91,92,93,94,95,97,99,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115,117,118,120,121,122,123,130,131,134,135,138,140,142,143,145,146,148,151,152,153,154,155,156,158,161,162,165,166,168,169,176,177,178,179,184,191,196,197,198,199,200,207,209,210,211,213,214,216,217,218,220,224,225,226,228,236,238,240,241,242,243,252,258,259,261,262,263,266,267,268,271,272,274,275],"\u5834\u6240":[2,12,34,36,42,44,83,121,153,154,271],"\u5883\u754c":[34,40,114,165],"\u5897\u3048":[80,92,132,135,137,146,210,213,270],"\u5897\u3048\u308b":[43,119,147,158],"\u5897\u3084":[6,7,43,70,80],"\u5897\u3084\u3059":[14,70,80,135,210,242],"\u5897\u5206":[135,151],"\u5897\u52a0":[41,135],"\u5897\u5927":165,"\u58ca\u3057":[43,151],"\u58ca\u3059":40,"\u58ca\u308c":[34,36,38,40,43,44,89,122,123,130,142,151],"\u58ca\u308c\u308b":[35,36,38,40,41,42,43,44,105,106,107,108],"\u5909\u3048":91,"\u5909\u3048\u308b":[34,91,135,226,261],"\u5909\u308a":42,"\u5909\u308f\u3063":[91,228],"\u5909\u308f\u308a":[43,88,89,131,135,228,259,275],"\u5909\u308f\u308b":[239,261],"\u5909\u5316":[0,34,43],"\u5909\u63db":[34,38,43,44,69,87,155,197,200,220,243,271],"\u5909\u6570":[12,14,30,34,37,38,39,40,41,42,43,44,66,74,135,197,209],"\u5909\u66f4":[12,18,21,22,29,34,35,38,39,40,41,42,43,44,47,50,52,54,55,56,64,65,68,78,80,82,89,92,95,99,104,105,112,118,121,132,133,138,142,143,149,154,155,165,168,197,202,207,209,220,251,260,268],"\u5909\u66f4\u5f8c":[52,54,56,64,65,68],"\u5916\u90e8":9,"\u591a\u3044":[92,151,196,197,206,261],"\u591a\u304b\u3063":262,"\u591a\u304f":[34,38,92,104,115,122,135,140,155,176,179,196,197,210,213,228,239,251,256,261,265,268],"\u591a\u3059\u304e":36,"\u591a\u3059\u304e\u308b":[34,135,262],"\u591a\u5f69":0,"\u591a\u6570":34,"\u591a\u69d8":0,"\u591a\u6bb5":44,"\u591a\u91cd":152,"\u591a\u9762":0,"\u5927\u304d":[34,40,80,89,92,140,151,155,202,220,223,242],"\u5927\u304d\u3044":[11,34,38,42,43,44,86,92,99,121,135,140,151,196,220,226,242],"\u5927\u304d\u304f":[36,82,92,103,121,151,166,212,219,265],"\u5927\u304d\u3051\u308c":34,"\u5927\u304d\u3055":220,"\u5927\u304d\u306a":[44,242,252],"\u5927\u306a\u308a":177,"\u5927\u4e08":19,"\u5927\u4e08\u592b":[10,29,44],"\u5927\u4e8b":[196,209],"\u5927\u5207":0,"\u5927\u5225":265,"\u5927\u5c0f":[114,115],"\u5927\u5e45":44,"\u5927\u62b5":155,"\u5927\u6587":[135,210],"\u5927\u6587\u5b57":[34,42,92,140,176,210,268],"\u5927\u898f\u6a21":[0,44],"\u5927\u8cb4":40,"\u5927\u91cf":[11,33,34,42,44,92,114,135,140,142,151,211,212,220,267,268],"\u5927\u95a2":42,"\u592a\u90ce":267,"\u592b\u5fc5":273,"\u5931\u308f":[12,34,40,223],"\u5931\u52b9":[88,155],"\u5931\u6557":[12,34,36,38,40,41,42,43,44,49,50,74,91,92,95,96,98,99,102,104,106,107,108,109,112,114,117,124,125,129,130,135,139,140,142,143,148,162,196,210,262,268],"\u5947\u5999":210,"\u5947\u6570":197,"\u5968\u6271\u3044":42,"\u597d\u304d":17,"\u59a5\u5f53":[43,44,135,220],"\u59a5\u5f53\u6027":44,"\u59cb\u307e\u3063":[83,199,206,218],"\u59cb\u307e\u308a":12,"\u59cb\u307e\u308b":[29,42,44,68,78,135,154,196,197,209,216,218,228,252],"\u59cb\u3081":17,"\u59cb\u70b9":268,"\u5b09\u3057\u304f":10,"\u5b50\u5348\u7dda":165,"\u5b57\u5165":206,"\u5b57\u5217":[34,38,42,44,96,97,98,140,196,243],"\u5b57\u5c0f":[135,210],"\u5b58\u5426":65,"\u5b58\u5728":[0,18,34,35,36,40,41,42,43,44,47,54,65,68,69,78,83,96,97,103,105,112,114,115,117,120,131,135,151,154,155,161,166,167,214,228,256,258,259,263,266,268,270,275],"\u5b66\u3073":[112,114,115,135,165,266,270],"\u5b66\u3093":271,"\u5b66\u7fd2":[36,41,138,215],"\u5b66\u7fd2\u7528":158,"\u5b89\u5168":[43,92,258],"\u5b89\u5b9a":[0,39,82,89],"\u5b89\u5fc3":10,"\u5b8c\u4e86":[12,17,86,135,199],"\u5b8c\u5168":[11,47,68,92,113,121,135,140,197,220,261,274],"\u5b8c\u74a7":213,"\u5b8c\u7d50":10,"\u5b9a\u5024":40,"\u5b9a\u5b50":210,"\u5b9a\u6570":[34,43],"\u5b9a\u7248":12,"\u5b9a\u7fa9":[11,34,40,42,43,47,51,59,66,68,71,78,91,92,94,100,102,103,105,112,114,115,122,135,141,153,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,209,210,211,212,213,214,243,258,268,270],"\u5b9f\u4f53":[54,122],"\u5b9f\u4f8b":[3,4,22],"\u5b9f\u51e6":[11,66],"\u5b9f\u6570":243,"\u5b9f\u65bd":12,"\u5b9f\u73fe":[0,3,4,22,42,92,135,155,176,195,197,210,220,266,268],"\u5b9f\u7528":42,"\u5b9f\u7a3c":152,"\u5b9f\u884c":[0,3,17,22,24,25,26,27,28,29,30,31,32,34,37,38,40,41,42,43,44,46,51,59,65,66,68,70,78,82,83,85,86,88,89,90,94,95,96,98,100,101,102,103,104,105,106,107,108,109,110,111,112,114,115,123,124,127,129,130,131,132,135,136,138,141,142,143,145,148,151,156,158,165,170,172,177,182,195,197,199,209,210,214,216,217,219,229,230,231,232,239,242,250,252,258,262,268,272,274,275],"\u5b9f\u884c\u4f8b":[14,40,47,80,82,83,88,91,92,93,95,96,97,98,99,102,104,105,106,107,108,109,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,132,133,134,135,136,137,138,140,141,142,143,144,145,146,147,148,155,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,199,200,201,202,203,206,210,211,212,213,216,217,219,221,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,258,265,266,267,268,270,271,272,273,274,275],"\u5b9f\u88c5":[17,34,38,40,42,43,44,70,86,91,92,115,132,133,135,155,156,165,213,214,251],"\u5b9f\u904b":34,"\u5b9f\u969b":[33,34,41,44,47,70,112,114,115,117,135,137,151,211,242,261,267,270],"\u5b9f\u9a13":[34,39,40,41,42,43,44,50,55,112,118,125,132,133,210,212,213,239],"\u5bae\u4e0b":44,"\u5bb9\u91cf":[34,43,89],"\u5bc4\u3063":224,"\u5bfe\u51e6":42,"\u5bfe\u5fdc":[0,9,11,14,34,35,36,37,38,39,40,41,42,43,44,47,51,55,65,68,69,91,104,115,135,138,153,174,199,201,210,214,216,217,218,219,220,238,251,268],"\u5bfe\u7167":177,"\u5bfe\u7b56":[22,34,238,260],"\u5bfe\u8a71":[258,268],"\u5bfe\u8c61":[0,9,11,12,14,17,18,29,34,38,39,42,43,44,51,54,55,57,61,63,65,67,68,69,76,82,90,94,96,97,98,100,101,102,103,104,105,106,107,108,112,114,115,117,120,121,123,130,131,135,138,140,146,151,152,158,162,168,169,171,172,173,177,179,191,193,196,197,199,210,211,212,213,252,259,261,267,268,270,271],"\u5bfe\u8c61column":51,"\u5bfe\u8c61ctx":54,"\u5bfe\u8c61cursor":[61,69],"\u5bfe\u8c61id":62,"\u5bfe\u8c61obj":62,"\u5bfe\u8c61object":[51,55,59,62,65,66,72],"\u5bfe\u8c61table":[51,65,68,69],"\u5bfe\u8c61table1":68,"\u5bfe\u8c61table2":68,"\u5c02\u7528":[1,12,17,123,258,272],"\u5c06\u6765":[41,80,112,118,119,132,133,147,165,214,252,258],"\u5c0e\u5165":[3,14,15,17,22,42,43,82],"\u5c0f\u3055":[34,43,44,121,202,223],"\u5c0f\u3055\u3044":[11,33,37,69,92,114,135,140,166,196,199,212,220,226],"\u5c0f\u3055\u304f":[33,42,43,114,165,166,198,210,220,242,252],"\u5c0f\u3055\u3051\u308c":34,"\u5c0f\u3055\u306a":44,"\u5c0f\u306a\u308a":[177,195],"\u5c0f\u5024":[112,114,115,117],"\u5c0f\u6570":[38,43,83,86,153,243,265,271],"\u5c0f\u6570\u70b9":265,"\u5c0f\u6587\u5b57":[34,69,92,140,146,176,200,210,268],"\u5c0f\u897f":41,"\u5c11\u304f":263,"\u5c11\u3057":[29,213],"\u5c11\u3057\u9045\u3044":[153,155],"\u5c11\u3057\u9055\u3044":135,"\u5c11\u306a\u3044":[34,42,92,135,195,196,197,198,209],"\u5c11\u306a\u304f":[0,10,34,43,92,99,135,171,179,196,197,198,242],"\u5c11\u306a\u3051\u308c":140,"\u5c11\u6570":34,"\u5c1a\u4e5f":41,"\u5c3a\u5ea6":0,"\u5c55\u958b":[12,22,29,32,34,38,40,41,44,46,99,124,125,129,135,177,209],"\u5c55\u958b\u5f8c":135,"\u5c55\u958b\u7528":38,"\u5c5e\u3057":[76,243,266],"\u5c5e\u3059\u308b":[51,65,69,141],"\u5c5e\u6027":[37,118,119,141,146,147,170],"\u5c65\u6b74":12,"\u5c71\u672c":42,"\u5c71\u7530":[202,238],"\u5ca9\u4e95":[40,41,44],"\u5ca9\u677e":44,"\u5cf6\u7530":40,"\u5d8b\u7530":40,"\u5de6\u4e0a":[35,167],"\u5de6\u4e0b":35,"\u5de6\u53f3":268,"\u5de6\u8fba":44,"\u5dee\u5206":154,"\u5dee\u96c6\u5408":197,"\u5e02\u5185":205,"\u5e02\u771f":44,"\u5e03\u6559":3,"\u5e38\u306b":43,"\u5e73\u5747":[42,135],"\u5e73\u884c":12,"\u5e74\u9f62":[0,92,140],"\u5e83\u304f":[12,210],"\u5ea6\u3068":38,"\u5ea6\u5206":243,"\u5ea6\u5408\u3044":261,"\u5ea6\u6570":[38,197,265,275],"\u5ea6\u6d6e":243,"\u5ea6\u8868":36,"\u5ea6y":243,"\u5ea7\u6a19":[38,165,166,167,197,205,271],"\u5ea7\u6a19\u5024":38,"\u5ec3\u6b62":[82,206],"\u5f0f\u5168":[196,197],"\u5f0f\u8868":57,"\u5f0f\u96c6\u5408":210,"\u5f15\u3044":197,"\u5f15\u304d\u51fa\u3059":0,"\u5f15\u304d\u7d9a\u304d":41,"\u5f15\u304d\u8d77\u3053\u3059":[40,41],"\u5f15\u304d\u8d77\u3059":[40,41,44],"\u5f15\u6570":[11,22,34,35,40,41,42,43,44,46,54,69,82,119,124,125,129,147,156,162,179,184,197,201,203,210,211,214,228,229,230,231,232,233,234,235,237,239,240,241,244,255,258,262,265,266,268,270,272,274],"\u5f15\u7528":[41,153],"\u5f15\u8a9e":268,"\u5f31\u70b9":0,"\u5f35\u3063":[41,43,117,135,142],"\u5f35\u3089":[34,40,41,43,51,104,212,213,265],"\u5f35\u308b":[142,196,197],"\u5f35\u308c\u308b":41,"\u5f37\u5236":[34,35,40,42,43,44,65,123,136,151],"\u5f37\u529b":[34,135,210],"\u5f37\u5316":[34,36,38,42],"\u5f53\u3066":[34,54,131,141,146,220],"\u5f53\u3066\u308b":[131,265],"\u5f53\u8a72":[65,82],"\u5f62\u5f0f":[11,22,34,35,38,39,40,42,44,46,53,54,56,81,84,86,87,88,89,91,92,93,95,96,97,98,99,102,103,104,106,107,108,109,112,113,114,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,152,153,154,155,156,163,166,167,174,178,179,197,199,207,243,258,265,268,270],"\u5f62\u614b":[0,29,197,238],"\u5f62\u72b6":205,"\u5f71\u97ff":[12,34,40,41,42,43,44,153,155,212],"\u5f79\u5272":[92,177,268],"\u5f79\u7acb\u3061":[34,41,92],"\u5f85\u3061\u53d7\u3051\u308b":[258,272],"\u5f85\u3064":[86,114],"\u5f8c\u304b\u3089":103,"\u5f8c\u308d":[34,236],"\u5f8c\u59cb":34,"\u5f8c\u65b9":[11,22,34,40,42,43,44,177,210,212,213,252,259,264],"\u5f8c\u7d9a":34,"\u5f8c\u8005":[47,158,201,209,275],"\u5f8c\u8ff0":[11,12,69,135,182,210,214],"\u5f93\u3046":36,"\u5f93\u3063":[67,68,69,135,156,252],"\u5f93\u6765":[34,42],"\u5f97\u3089\u308c":[145,172],"\u5f97\u308b":[34,155,206],"\u5fa9\u53f7":12,"\u5fa9\u65e7":[39,43,55,151],"\u5faa\u74b0":44,"\u5fc3\u304c":14,"\u5fc3\u914d":23,"\u5fc5\u305a":[68,76,82,92,112,114,115,135,140,176,210,211,258],"\u5fc5\u8981":[0,3,5,10,11,12,14,17,21,24,25,27,29,30,31,33,34,35,36,38,39,40,41,42,43,44,47,50,54,61,63,69,70,73,80,83,92,93,99,104,105,106,112,113,114,115,117,118,121,124,129,131,135,136,140,142,146,151,153,154,155,156,158,168,169,171,172,173,176,177,179,182,196,197,198,203,206,209,210,211,212,213,214,216,217,218,219,220,238,242,252,258,261,263,268,270,272,274],"\u5fc5\u9808":[29,32,124,125,129,132,133,155,159,168,170,172,173,176,182,193,252,268,272],"\u5fd8\u308c":[38,80,104,176],"\u5fd8\u308c\u308b":106,"\u5fdc\u3058":[0,34,62,154,210],"\u5fdc\u7528":0,"\u5fdc\u7b54":[0,41,44],"\u601d\u3044":17,"\u601d\u3044\u51fa\u3057":135,"\u601d\u3046":[210,266,270],"\u601d\u3063":16,"\u6027\u5225":0,"\u6027\u80fd":[0,12,34,43,104,105,114,135,251,270],"\u6069\u6075":256,"\u60aa\u610f":[158,197],"\u60c5\u5831":[2,3,12,17,22,29,34,35,36,38,39,40,41,42,43,44,46,50,51,54,59,62,83,92,93,104,114,121,122,124,129,132,133,134,135,138,141,151,153,199,200,204,211,212,213,261,264,265,267,268,269],"\u60c5\u5831\u540d":141,"\u60f3\u5b9a":[34,89,103,267],"\u610f\u5473":[11,29,34,41,43,44,47,57,80,86,93,104,107,121,123,130,131,135,137,138,151,153,154,155,196,197,206,209,210,213,223,226,242,266,268,275],"\u610f\u56f3":[34,40,41,42,43,44,177,182,196,212,270],"\u610f\u8b58":140,"\u611f\u3058":10,"\u614e\u91cd":14,"\u6163\u308c":266,"\u6163\u7fd2":40,"\u6210\u308a":[135,196,258],"\u6210\u308a\u7acb\u3063":11,"\u6210\u529f":[12,29,34,43,44,50,51,54,55,57,65,68,73,74,87,90,91,92,94,95,96,98,99,100,102,104,106,107,108,109,110,111,117,124,125,129,130,139,140,142,143,148,258,268],"\u6210\u679c":3,"\u623b\u3057":[44,99],"\u623b\u3063":155,"\u623b\u308a":[40,65],"\u623b\u308a\u5024":[49,50,51,54,55,57,61,63,65,68,70,73,74],"\u6240\u5b9a":[140,221,259,261],"\u6240\u5c5e":95,"\u6240\u6709":43,"\u624b\u52d5":[18,155,158],"\u624b\u6bb5":[11,57],"\u624b\u7d9a\u304d":[59,66],"\u624b\u9593":10,"\u624b\u9806":[3,4,10,18,22,29,32,40,41,44,105,158,219],"\u6253\u3061\u5207\u308a":41,"\u6253\u3063":12,"\u6253\u3064":12,"\u6253\u3064\u524d":12,"\u6271\u3044":[34,42,43,44,82,216,229,230,231,232,233,234,235,259,265],"\u6271\u3046":[0,2,39,41,87,114,197,242,261,262,263],"\u6271\u3048":[44,54,92,269],"\u6271\u3048\u308b":[41,42,263],"\u6271\u3063":[35,41,271],"\u6271\u308f":[40,41,42,43,44,54,135,146,154,196,200,205,261,265],"\u627f\u8a8d":42,"\u628a\u63e1":[10,104],"\u6291\u3048":261,"\u6291\u5236":[34,40,41,42],"\u6295\u3052":34,"\u6295\u5165":[35,261],"\u6295\u7a3f":12,"\u6295\u7a3f\u5834\u6240":271,"\u629c\u304d\u51fa\u3059":0,"\u629c\u3051":[38,41,42,43,44],"\u629c\u3051\u308b":268,"\u62bc\u3057":268,"\u62bc\u3059":[17,268],"\u62bd\u51fa":[34,40,114,135,140,169,179,182,199,202,215,224,226,236],"\u62c5\u5f53":12,"\u62c5\u5f53\u8005":12,"\u62d7\u97f3":34,"\u62e1\u5927":10,"\u62e1\u5f35":[22,34,38,42,140,210,264],"\u62e1\u5f35\u578b":265,"\u62e1\u5f35\u5b50":[36,124,125,129,154,207],"\u6301\u305f":[34,122],"\u6301\u3061":[11,76,93,122,134,135,146,153,155,210],"\u6301\u3063":[0,10,34,40,80,93,112,114,115,118,119,121,122,135,146,147,153,196,197,200,217,236,270],"\u6301\u3064":[0,9,34,38,68,78,92,93,105,112,114,115,119,135,147,165,182,197,200,205,217,265,266,267,268,270],"\u6301\u3064\u3059\u3079":135,"\u6301\u3066":[93,221],"\u6301\u3066\u308b":43,"\u6307\u3057":265,"\u6307\u3059\u5024":69,"\u6307\u5b9a":[0,6,7,8,11,12,22,28,29,30,32,33,34,35,36,38,39,40,41,42,43,44,51,52,53,54,55,56,57,59,61,62,63,64,65,66,67,68,69,71,72,76,78,80,83,84,86,88,89,90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,120,121,122,123,124,125,129,130,131,132,133,134,135,136,138,139,140,142,143,144,145,146,148,151,152,153,154,155,156,159,161,162,163,166,167,168,169,170,171,172,173,176,177,178,179,180,182,184,191,193,195,197,202,205,206,207,209,210,211,212,213,216,220,223,224,225,228,236,238,251,252,255,258,259,261,264,265,266,267,271,272,273,275],"\u6307\u6570":197,"\u6307\u6a19":65,"\u6307\u793a":[59,216,268,272],"\u6307\u91dd":[3,4,22,44],"\u6319\u304c\u3063":226,"\u6319\u52d5":[22,34,36,40,42,43,63,64,103,117,135,149,153,210,212,228,261],"\u632f\u308b":[34,135],"\u632f\u821e":165,"\u632f\u821e\u3044":[40,41,42,161,177],"\u633f\u5165":[12,40,59,63,153,179,268],"\u6368\u3066":38,"\u6392\u4ed6":[34,44],"\u639b\u3051":197,"\u63a1\u7528":[0,145,258,261],"\u63a2\u3057":[0,135,154,226],"\u63a2\u3059":[173,206,226,270],"\u63a2\u7d22":0,"\u63a5\u5c3e":[202,238],"\u63a5\u7d9a":[1,9,34,40,127,153,154,262,268],"\u63a5\u7d9a\u5148":152,"\u63a5\u8fd1":11,"\u63a5\u982d":[34,38,153,197,220],"\u63a8\u5968":[12,23,34,40,42,43,44,82,83,135,158,242,272],"\u63a8\u5b9a":[34,43],"\u63a8\u6e2c":29,"\u63a8\u79fb":82,"\u63a8\u9032":41,"\u63d0\u4f9b":[0,1,11,12,21,24,25,27,31,34,36,38,40,41,42,43,44,48,54,73,82,92,93,112,113,145,150,153,155,158,165,177,210,211,213,214,218,220,251,252,266],"\u63d0\u6848":[10,22,34,36,38,39,40,41,42,43,44,46,138,215],"\u63db\u3048":[43,47,65,69,153,210,274],"\u63db\u3048\u308b":[12,34,43,47,76,142],"\u63db\u6642":38,"\u63fa\u308c":274,"\u642d\u8f09":0,"\u643a\u5e2f":0,"\u64a4\u53bb":38,"\u64a4\u5ec3":[36,42],"\u64cd\u4f5c":[0,11,22,41,43,46,51,54,57,65,68,95,120,135,143,153,195,197,206,258,264,265],"\u64ec\u4f3c":[22,43,46,51,76,93,134,135,196,197,275],"\u652f\u63f4":218,"\u6539\u540d":[38,40],"\u6539\u5584":[34,35,38,40,41,42,43,44,104],"\u6539\u884c":[38,39,43,63,153,236],"\u6539\u8a02":44,"\u654f\u90ce":34,"\u6570\u3048":[137,266],"\u6570\u3048\u308b":[112,114,115,135,266],"\u6570\u5024":[11,22,34,35,36,43,44,80,85,88,112,114,115,122,132,135,166,196,197,259,264,268],"\u6570\u5206":114,"\u6570\u591a\u304f":44,"\u6570\u5b57":[34,42,92,112,114,115,135,140,154,210,217,228,232,235,261,262],"\u6570\u70b9":[135,243],"\u6570\u73e0":182,"\u6570\u9806":115,"\u6574\u3063":14,"\u6574\u5217":[0,268],"\u6574\u5408":[35,44,65],"\u6574\u5f62":[43,84,268],"\u6574\u6570":[43,44,78,80,87,121,135,145,153,178,243,258,265,271],"\u6574\u7406":[40,41],"\u6587\u5b57":[0,11,34,35,38,40,41,42,43,44,54,55,57,63,65,68,69,80,92,109,110,118,134,135,140,144,146,149,153,158,162,163,165,166,167,168,169,171,179,180,196,197,199,200,201,202,209,216,217,223,226,228,229,230,231,232,235,236,237,240,241,243,259,265,266,267,268,270,271,274,275],"\u6587\u5b57\u5217":[22,40,41,42,44,56,57,63,80,83,85,97,114,118,122,135,146,158,162,163,165,168,169,176,179,182,195,196,243,264,266,268,271,274],"\u6587\u5b57\u6570":[112,114,115,135,171,179,180,197],"\u6587\u5b57\u7a2e":210,"\u6587\u66f8":[0,18,34,42,92,177,195,198,211,212,213,218,225,259,265,268,274],"\u6587\u66f8\u4e2d":[211,212],"\u6587\u66f8\u5185":225,"\u6587\u691c":92,"\u6587\u6cd5":[22,264],"\u6587\u8108":182,"\u6587\u982d":236,"\u65ad\u7247":179,"\u65b0\u3057\u3044":[0,3,6,7,12,18,34,38,40,42,43,44,47,49,50,51,54,65,68,69,70,91,92,95,106,113,136,140,143,145,153,155,158,200,218,258,268],"\u65b0\u3057\u304f":[10,42,82,92,113,135,192,195,198,268],"\u65b0\u305f":[11,51,55,59,68],"\u65b0\u4efb":12,"\u65b0\u5bbf":275,"\u65b0\u5bbf\u99c5":275,"\u65b0\u65e7":43,"\u65b0\u898f":[12,18,34,50,154],"\u65b0\u898f\u30ec\u30b3\u30fc\u30c9":44,"\u65b0\u8a9e":238,"\u65b9\u5411":69,"\u65b9\u5f0f":[0,268,270],"\u65b9\u5f62":[165,166],"\u65b9\u6cd5":[0,4,10,18,21,22,23,24,25,26,27,28,29,30,31,32,34,38,40,41,42,43,44,46,103,104,112,115,121,134,135,140,149,151,153,154,155,158,165,166,171,177,179,191,195,207,209,211,213,215,226,228,233,234,235,238,240,241,242,243,252,255,258,259,260,265,266,268,270,271,272],"\u65e2\u5b58":[0,1,12,34,40,42,43,44,47,55,68,92,111,112,114,115,135,151,153,154,155,171,214,256,258,265,268],"\u65e2\u5b9a":[34,40],"\u65e2\u5b9a\u5024":256,"\u65e5\u3005":10,"\u65e5\u4ed8":[0,12,165],"\u65e5\u6642":[22,112,114,115,243,264,271],"\u65e5\u66dc\u65e5":184,"\u65e5\u672c":[12,34,42,166,167,176,196,197,206,216,228,229,230,231,232,238,243,275],"\u65e5\u672c\u4eba":216,"\u65e5\u672c\u6e2c":165,"\u65e5\u672c\u8a9e":[0,2,17,19,40,196,197,206,216,228,238,240,241,261],"\u65e5\u6b21":43,"\u6607\u964d":69,"\u6607\u9806":[65,68,69,103,114,115,116,135,173,266,268,275],"\u660e\u6587\u5316":262,"\u660e\u78ba":[34,42],"\u660e\u793a":[12,18,40,41,43,104,135,153,154,155,165,203,216,220,252,270],"\u660e\u793a\u7684":[104,136,207],"\u6642\u3060\u3051":34,"\u6642\u306b":38,"\u6642\u3084":135,"\u6642\u4ee3":0,"\u6642\u4ee5\u5916":36,"\u6642\u523b":[34,43,55,83,154,174,184,217,271],"\u6642\u671f":43,"\u6642\u70b9":[12,40,49,50,54,56,63,65,82,135],"\u6642\u9593":[0,6,7,34,36,38,41,42,43,44,49,83,136,137,151,154,158,196,198,199,214,243,265,268],"\u666e\u53ca":0,"\u666e\u6bb5":12,"\u666e\u901a":[10,197],"\u6697\u53f7":12,"\u6697\u9ed9":270,"\u66d6\u6627":[34,44],"\u66dc\u65e5":184,"\u66f4\u65b0":[3,11,22,34,38,40,41,42,43,44,51,55,59,62,65,68,82,92,105,121,135,198,215,220,238,265,267,268,270],"\u66f8\u3044":[42,43,196,197,210,271],"\u66f8\u304b":[18,40,43,214,271],"\u66f8\u304d":[0,43,135,154,210,261],"\u66f8\u304d\u51fa\u3057":[34,104],"\u66f8\u304d\u51fa\u3059":104,"\u66f8\u304d\u5f8c":259,"\u66f8\u304d\u63db\u3048":[12,21],"\u66f8\u304d\u8fbc\u307e":111,"\u66f8\u304d\u8fbc\u307f":[29,43,105,107],"\u66f8\u304d\u8fbc\u3080":[43,154],"\u66f8\u304d\u8fbc\u3081\u308b":42,"\u66f8\u304f":[42,153,196,210,270],"\u66f8\u3051\u308b":[40,41,42,43],"\u66f8\u5f0f":[22,34,120,121,123,135,177,255,258,264,272],"\u66ff\u3048":[12,22,42,43,261,264],"\u66ff\u3048\u308b":[34,44,224,268],"\u66ff\u308f\u308b":43,"\u6700\u3082":[54,89,135,173],"\u6700\u4e2d":[0,44,123],"\u6700\u521d":[3,10,34,38,42,43,44,54,83,92,131,135,140,161,168,169,171,179,191,196,197,209,210,211,239,256,265,268,270],"\u6700\u5927":[33,34,35,36,38,40,41,42,43,44,47,50,70,71,88,92,96,97,98,99,112,113,114,115,117,121,122,135,137,140,142,145,149,153,154,158,161,178,179,197,211,212,220,252,258,263],"\u6700\u5927\u5024":[40,42,44,112,114,115,117,121,135,212],"\u6700\u5927\u7dcf":[43,121,140,220],"\u6700\u5c0f":[24,25,27,31,43,135,161,256],"\u6700\u5c0f\u5024":[42,112,114,115,117,135,197],"\u6700\u5c0f\u9650":155,"\u6700\u5f8c":[12,36,40,43,54,135,146,154,155,197,210,228,239,261,262,265],"\u6700\u65b0":[2,6,7,8,12,38,43,44,88],"\u6700\u7d42":[34,55,80,135],"\u6700\u7d42\u66f4":55,"\u6700\u8fd1":44,"\u6700\u9069":[34,43,44,155],"\u6700\u9577":[38,85,154,197],"\u6708\u6b21":43,"\u6709\u3057":93,"\u6709\u5229":114,"\u6709\u529b":138,"\u6709\u52b9":[0,6,7,8,12,18,29,31,34,38,39,41,42,43,44,51,55,65,68,92,93,105,112,114,115,123,135,140,146,153,154,155,158,173,181,184,191,193,194,196,199,210,214,265,272],"\u6709\u7121":[34,168,202,223,265],"\u6709\u7528":[34,42,43,44,47,83,86,93,123,135,155,220,238,252,268],"\u6709\u76ca":0,"\u671b\u307e\u3057\u3044":[0,10,12],"\u671b\u307e\u3057\u304f":63,"\u671f\u5316":[34,40,54],"\u671f\u5f85":[0,34,206,210,238,265],"\u6728\u4e0a":69,"\u6728\u66dc\u65e5":184,"\u672a\u4f7f":42,"\u672a\u4f7f\u7528":258,"\u672a\u521d":[34,40],"\u672a\u52a0":121,"\u672a\u5b9a":265,"\u672a\u5b9a\u7fa9":42,"\u672a\u5b9f\u88c5":115,"\u672a\u5bfe":[34,40],"\u672a\u6765":12,"\u672a\u6e80":[34,69,86,153,196],"\u672a\u77e5":39,"\u672a\u7ba1":121,"\u672a\u8a2d":40,"\u672a\u958b\u653e":36,"\u672b\u5c3e":[59,65,69,117,151,210,236],"\u672b\u6c38":43,"\u672c\u4f53":[3,12],"\u672c\u5f53":[34,216,274],"\u672c\u6587":[170,270],"\u672c\u756a":[12,43,114],"\u672c\u8a9e":[228,229,230,231,232,240],"\u672c\u8cea":154,"\u6749\u672c":43,"\u6749\u672c\u6dbc":43,"\u6751\u4e0a":[34,41,42,43,44],"\u6761\u4ef6":[3,11,22,34,36,40,41,43,57,67,68,100,117,138,142,153,171,177,182,191,195,197,236,243,261,264,268,271,273],"\u6761\u4ef6\u5f0f":[34,40],"\u6771\u4eac":[165,238,259,261,275],"\u6771\u4eac\u90fd":[238,259,261],"\u6790\u5668":[0,238],"\u6790\u7cfb":197,"\u6797\u6a8e":223,"\u679c\u305f":268,"\u67af\u308c":[1,256],"\u67d4\u8edf":[0,92,177,195],"\u6817\u5c71":[42,43],"\u682a\u5f0f":[34,42,43,44],"\u683c\u7d0d":[0,11,33,34,38,47,50,51,55,59,62,65,67,68,78,112,114,115,122,135,140,141,153,176,197,198,205,214,220,259,265,266,267,268,271,274],"\u6848\u5185":[10,12,43],"\u68ee\u7530":267,"\u691c\u51fa":[6,29,34,35,36,38,40,43,44,146],"\u691c\u67fb":65,"\u691c\u7d22":[11,12,22,24,25,27,29,31,34,35,36,37,38,39,40,41,42,43,44,46,47,48,54,57,59,64,67,68,73,76,78,91,92,93,100,138,146,149,153,168,169,171,176,177,179,182,191,195,198,200,204,210,211,212,213,214,220,224,225,226,228,238,239,243,252,256,257,260,264,265,266,269],"\u691c\u7d22\u4f8b":3,"\u691c\u7d22id":68,"\u691c\u7d22key":68,"\u691c\u8a0e":[211,212,213,256,261],"\u691c\u8a3c":[42,152],"\u6955\u5186":[165,166],"\u6975\u4ed8":[165,166],"\u697d\u3057":[259,261],"\u697d\u3057\u3044":[259,261],"\u6982\u5ff5":82,"\u6982\u7b97":144,"\u6982\u8981":[22,43,46,48,222,227],"\u69cb\u3044":[12,17,169,179],"\u69cb\u308f":151,"\u69cb\u6210":[11,12,24,25,27,31,42,63,256,268],"\u69cb\u6587":[22,34,37,40,41,42,43,44,46,57,80,195,211],"\u69cb\u7bc9":[3,22,34,40,41,42,43,44,46,197,226,259],"\u69cb\u9020":[0,11,54,68,83,220,267],"\u69cb\u9020\u4f53":[34,42,44,54,61,66],"\u69d8\u3005":[3,11,262,275],"\u6a19\u6e96":[34,35,39,42,43,82,89,90,94,100,101,103,105,110,111,127,141,152,153,155,156,211,258,268],"\u6a19\u8a18":42,"\u6a29\u8868":42,"\u6a29\u9650":[29,41,43,272],"\u6a2a\u5c71":[41,42,44],"\u6a5f\u68b0":42,"\u6a5f\u80fd":[0,6,7,8,11,29,34,35,36,38,39,40,41,42,43,44,47,54,80,86,91,112,113,114,115,118,125,135,138,140,142,145,151,153,154,155,158,176,177,195,196,204,206,209,210,212,213,214,215,216,217,218,219,220,251,252,256,266,271,272],"\u6b20\u70b9":0,"\u6b20\u843d":41,"\u6b21\u56de":[12,82],"\u6b21\u671f":12,"\u6b21\u90ce":267,"\u6b32\u3057\u3044":[121,214],"\u6b53\u8fce":3,"\u6b62\u3081":[42,43,70],"\u6b62\u3081\u308b":47,"\u6b63\u3057\u3044":[43,196,209,217,218],"\u6b63\u3057\u304f":[34,40,41,42,43,44,63,104,114,115,196,216],"\u6b63\u5e38":[12,43,44,114,115,154],"\u6b63\u5f0f":[42,44],"\u6b63\u78ba":[92,113,265,268],"\u6b63\u898f":[22,34,39,40,42,43,44,46,68,118,140,144,146,168,169,177,200,201,202,203,209,223,236,239],"\u6b63\u898f\u5316":[40,118,179],"\u6b66\u8005":43,"\u6b8a\u547d":154,"\u6b8b\u3063":[34,36,41,142,151],"\u6b8b\u3089":34,"\u6b8b\u308a":[34,82,105,114,135,140,144,209],"\u6b8b\u308b":38,"\u6b8b\u5ff5":265,"\u6b8b\u7559":151,"\u6bb5\u843d":[51,93],"\u6bb5\u968e":[34,242],"\u6bce\u56de":3,"\u6bd4\u3079":[42,44,92,198],"\u6bd4\u8f03":[22,34,36,40,42,43,44,92,135,154,171,191,196,249,251],"\u6bd4\u8f03\u6642":34,"\u6c17\u3065\u3051\u308b":44,"\u6c17\u306b":[17,65,93],"\u6c17\u4ed8\u3051\u308b":34,"\u6c17\u8efd":[10,42],"\u6c34\u66dc\u65e5":184,"\u6c38\u7d9a":[22,34,46,51,65,68,93,149,153,155],"\u6c38\u7d9a\u5316":34,"\u6c42\u307e\u308a":0,"\u6c42\u3081":[0,163],"\u6c42\u3081\u308b":[0,165,166,266],"\u6c4e\u7528":[153,154,155],"\u6c7a\u307e\u308a":209,"\u6c7a\u307e\u308b":268,"\u6c7a\u3081":[34,91,92,114,135,140],"\u6c7a\u3081\u308b":[11,135],"\u6c7a\u5b9a":135,"\u6cbf\u3046":42,"\u6ce2\u62ec\u5f27":105,"\u6ce8\u610f":[12,34,38,41,44,68,80,92,104,117,123,131,135,140,142,153,154,155,158,170,196,197,242,252,261,265,266,268,273],"\u6ce8\u76ee":[135,266],"\u6ce8\u8a18":41,"\u6d0b\u5fd7":[42,44],"\u6d0b\u723e":38,"\u6d3b\u304b\u3059":135,"\u6d3b\u7528":[43,238,256],"\u6d41\u3057":12,"\u6d41\u308c":[3,135,258],"\u6d41\u91cf":252,"\u6d45\u898b":41,"\u6d69\u4e8c":40,"\u6d6e\u52d5":[43,83,265],"\u6d88\u3048":[155,220],"\u6d88\u305b":155,"\u6d88\u53bb":[34,41],"\u6d88\u8cbb":[86,198],"\u6df1\u523b":[40,42,261],"\u6df7\u3056\u3063":228,"\u6df7\u305c":[138,265],"\u6df7\u305c\u308b":80,"\u6df7\u4e71":44,"\u6df7\u540c":[34,135],"\u6df7\u5728":[34,43,156],"\u6dfb\u4ed8":40,"\u6e05\u5ddd":44,"\u6e08\u307f":[10,12,24,25,27,31,34,38,40,41,43,44,51,116,146,158,209,216,217,218,243,256],"\u6e08\u3080":43,"\u6e1b\u3063":[43,44],"\u6e1b\u3089":[40,43,44,70,92,217,220,274],"\u6e1b\u308b":206,"\u6e1b\u5c11\u5f8c":70,"\u6e1b\u7b97":65,"\u6e21\u3055":[11,34,40,41,63,66,70,165],"\u6e21\u3057":[6,7,8,11,42,43,131,145,151,158,196,268,272],"\u6e21\u3059":[39,43,197,268],"\u6e2c\u4f4d":0,"\u6e2c\u5730":[165,166,167,243,265,275],"\u6e2c\u5730\u7cfb":243,"\u6e2c\u5b9a":154,"\u6e2c\u7528":35,"\u6e80\u3055":41,"\u6e80\u3059":[41,43],"\u6e80\u305f":[11,44,117,142,182,210,275],"\u6e96\u5099":[17,18,22,51,60,62,65,68,112,114,115,135,155,196,197,261,264],"\u6e96\u62e0":[41,155],"\u6f0f\u308c":[0,12,40,44,104,195,274],"\u6f14\u7b97":[29,34,36,40,41,42,43,44,68,171,195,197],"\u6f14\u7b97\u5b50":[11,34,36,40,41,43,44,91,135,176],"\u6f22\u5b57":[176,206,228],"\u6fc1\u70b9":[34,201,202,223],"\u7027\u5185":41,"\u706b\u66dc\u65e5":184,"\u70b9\u4ee5\u4e0b":265,"\u70b9\u6570":[43,83,265],"\u70b9\u9593":[165,205],"\u7121\u3044":[12,219,236],"\u7121\u3057":[34,104,113,210],"\u7121\u52b9":[6,7,8,18,29,34,39,40,41,43,56,63,68,69,114,123,135,153,155,158,196,199,216],"\u7121\u540d":[65,68],"\u7121\u8996":[34,36,38,40,41,42,43,44,68,69,102,103,104,118,131,135,146,153,176,196,209,220,229,230,231,232,261],"\u7121\u9650":[36,40,42,43],"\u7121\u99c4":[0,44],"\u7136\u8a00":44,"\u7269\u7406":34,"\u7279\u306b":11,"\u7279\u5225":[29,49,57,87,105,135,146,196,210,216],"\u7279\u5316":[17,197],"\u7279\u5b9a":[0,29,34,41,42,43,44,60,68,80,91,102,112,135,195,202,238,270,271],"\u7279\u5fb4":[22,34,46,92,210,213,267,270],"\u7279\u6027":220,"\u7279\u6709":80,"\u7279\u6b8a":[41,65,83,156,168,169,179,238,268],"\u72b6\u614b":[0,10,12,24,25,27,31,33,34,36,40,42,43,44,47,54,89,152,153,216,261,268],"\u72b6\u6cc1":[0,34,59,135,197,261,262],"\u72ec\u7acb":[113,155],"\u72ec\u81ea":[0,34,43,83,152,201,258,265],"\u72ed\u3081\u308b":104,"\u7372\u5f97":[43,104,106,108],"\u7389\u91ce":[42,44],"\u73fe\u308c":[122,146],"\u73fe\u308c\u308b":261,"\u73fe\u4ee3":0,"\u73fe\u5728":[0,12,25,34,43,47,50,54,55,61,65,66,88,91,95,105,111,113,135,137,140,142,143,152,154,174,205,268,269,271],"\u73fe\u5728\u5730":271,"\u73fe\u5b9f":266,"\u73fe\u72b6":[34,82],"\u73fe\u983b":42,"\u7403\u9762":[165,166],"\u7406\u7531":[0,40,41,43,92,135,140,216,252,256,262],"\u7406\u89e3":[117,135,142,268],"\u7406\u95a2":66,"\u74b0\u5883":[0,3,6,7,8,23,29,32,34,38,39,41,42,43,44,68,99,154,155,158,209],"\u751f\u3058":[90,94,100,110,111],"\u751f\u6210":[3,6,34,61,69,78,112,114,115,135,178,226,259,270],"\u7528\u3044":[0,14,22,34,35,38,44,50,156,166,210,261,264,267,268,270,271,272],"\u7528\u3044\u308b":[0,22,23,65,258,265,267,268,269,275],"\u7528\u5909":42,"\u7528\u610f":[11,12,29,65,135,151,154,165,216,217,218,219,224,238,242,262],"\u7528\u8a9e\u96c6":[22,46,89],"\u7528\u9014":[0,23,24,25,27,31,32,41,42,44,80,83,92,135,210,214,220,256],"\u7530\u6cbc":42,"\u7530\u8fba":41,"\u7531\u6765":[158,195],"\u753b\u9762":[12,35,42],"\u7551\u30b1":[42,43],"\u7551\u30f6":42,"\u756a\u53f7":[12,41,42,51,78,134,135,152,153,154,158,210,252,256,258,272],"\u756a\u76ee":[34,41,68,69,93,104,112,114,115,118,135,146,191,196,197,210,211,265,268],"\u7570\u306a\u3063":[34,43,69],"\u7570\u306a\u308a":[34,42,196],"\u7570\u306a\u308b":[22,34,40,42,154,177,211,260,265],"\u7570\u5e38":[89,154],"\u7591\u4f3c":[40,41,42,78,92,105,178],"\u7591\u554f":270,"\u767a\u63ee":0,"\u767a\u751f":[0,12,29,34,35,40,41,42,43,44,54,65,68,83,123,140,261,262],"\u767a\u884c":258,"\u767a\u898b":34,"\u767a\u899a":44,"\u767b\u5834":92,"\u767b\u9332":[0,3,11,22,25,31,34,36,37,40,41,43,47,68,69,72,89,103,105,112,113,114,115,116,117,118,119,124,125,129,132,133,135,146,147,173,181,184,191,193,194,196,197,198,206,209,216,217,218,220,265,268,275],"\u7686\u5ddd":[42,44],"\u76ee\u304f\u3089\u3044":140,"\u76ee\u4ee5\u964d":135,"\u76ee\u5b89":12,"\u76ee\u7684":[29,41,146,158],"\u76ee\u8996":83,"\u76f4\u3057":[43,242],"\u76f4\u3059":[130,151],"\u76f4\u4e0b":38,"\u76f4\u524d":[59,236],"\u76f4\u5f8c":54,"\u76f4\u611f":273,"\u76f4\u63a5":[103,135,271],"\u76f8\u5bfe":[12,38,135],"\u76f8\u5bfe\u30d1\u30b9":42,"\u76f8\u5f53":[83,266,268,275],"\u76f8\u5fdc":68,"\u76f8\u624b":10,"\u7701\u30b9\u30da\u30fc\u30b9\u30d0\u30fc\u30b8\u30e7\u30f3":43,"\u7701\u7565":[12,41,51,88,93,106,107,108,124,125,129,130,135,153,154,166,168,178,216,220,258,265,268,272],"\u771f\u306a\u3089":197,"\u771f\u507d":[41,43,44,196,197,243,265],"\u771f\u507d\u5024":[22,264],"\u77e5\u3089":226,"\u77e5\u308a":[112,134],"\u77e5\u308b":266,"\u77e5\u8b58":154,"\u77e9\u5f62":[0,167,275],"\u77ed\u3044":[36,43,271],"\u77ed\u304f":[0,198],"\u77ed\u6642\u9593":0,"\u77ed\u7e2e":[6,7,43,44],"\u7834\u58ca":[68,105,151],"\u7834\u640d":[34,44],"\u7834\u68c4":[54,66],"\u78ba\u4fdd":[34,44,54,57,62,121,263],"\u78ba\u5b9a":138,"\u78ba\u5b9f":[34,217],"\u78ba\u7387":138,"\u78ba\u8a8d":[3,10,34,35,42,44,65,68,83,87,92,98,103,104,117,118,121,135,142,149,151,154,155,158,161,196,210,228,262,263,265,268],"\u78ef\u90e8":41,"\u793a\u3055":141,"\u793a\u3057":[12,48,87,91,92,112,118,121,134,135,165,172,205,211,226,228,255,258,261,266,268,270,272],"\u793a\u3059":[47,63,83,87,102,105,106,112,114,115,117,122,134,135,141,161,162,165,166,167,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,199,211,212,213,252,265,273],"\u79cb\u8449":275,"\u79d2\u3088\u308a":37,"\u79d2\u5358":[243,265],"\u79d2\u5f62":243,"\u79d2\u5f8c":86,"\u79d2\u60c5":38,"\u79d2\u6570":[83,197,243,265,271],"\u79d2\u8868":[197,261,265,275],"\u79d2\u9593":38,"\u79d8\u5bc6":12,"\u79fb\u52d5":[12,16,32,38,40,91,111,121],"\u79fb\u884c":[38,82],"\u7a0b\u5ea6":[34,38,41,268],"\u7a2e\u5225":118,"\u7a2e\u985e":[1,11,12,22,34,38,43,44,47,62,63,66,68,78,80,87,91,120,121,134,135,138,140,146,153,154,158,196,197,211,212,213,216,217,219,220,228,258,261,264,268,272],"\u7a32\u7530":41,"\u7a4d\u307f\u91cd\u306a\u3063":41,"\u7a4d\u7528":135,"\u7a4d\u7b97":[11,135],"\u7a7a\u304d":[34,89,263],"\u7a7a\u6587":[34,42,44,96,97,98,196,243],"\u7a7a\u767d":[0,34,43,118,146,153,196,219,226,228,229,230,231,232,236,237,240,241,261,268],"\u7a7a\u914d":134,"\u7a7a\u9593":[92,121],"\u7a81\u7136":41,"\u7acb\u3061":83,"\u7acb\u3061\u4e0a\u304c\u3063":154,"\u7acb\u3061\u4e0a\u3052":154,"\u7acb\u3064":[151,210],"\u7acb\u3064\u304b":238,"\u7acb\u3066":34,"\u7acb\u5834":3,"\u7acb\u5ddd":44,"\u7adc\u4e4b":44,"\u7aef\u672b":0,"\u7b26\u53f7":[43,87,243,258,265],"\u7b49\u3057\u3044":[11,65,135,171,196,197],"\u7b49\u3057\u304f":[11,196,197],"\u7b49\u4fa1":[36,42,43,44,135,177,191,195],"\u7b49\u5024":36,"\u7b87\u6240":[12,41,83,179],"\u7b97\u51fa":[40,42],"\u7b97\u8853":41,"\u7ba1\u7406":[12,18,22,29,34,35,38,39,40,42,47,54,85,89,99,121,131,149,151,153,156,209,220,259,264],"\u7bc0\u7d04":34,"\u7bc4\u56f2":[0,22,40,41,42,43,44,61,65,69,78,82,92,113,117,135,161,166,167,205,210,220,261,264,265,271],"\u7bc4\u56f2\u5916":42,"\u7be0\u7530":[42,43,44],"\u7c21\u5358":[12,29,42,93,95,112,118,119,137,143,144,146,147,148,155,165,170,173,176,177,184,191,196,197,211,213,251,252,261,268,272],"\u7c21\u6613":[42,165,256],"\u7c21\u7565":[41,172],"\u7cbe\u5ea6":[43,44,197],"\u7cfb\u5ea7":[166,167],"\u7d00\u5143":43,"\u7d14\u7c8b":228,"\u7d1b\u3089\u308f\u3057\u3044":210,"\u7d20\u65b9":0,"\u7d20\u65e9":34,"\u7d20\u6734":266,"\u7d20\u89e3":[0,29,197,238],"\u7d22\u5f15":[11,22,34,35,36,42,51,76,92,259,261,265,268],"\u7d22\u6642":36,"\u7d22\u7528":[22,264],"\u7d2f\u7a4d\u548c":[112,114,115,135],"\u7d30\u5206":[238,265],"\u7d39\u4ecb":[3,12,42,112,114,115,135,271],"\u7d42\u3048":12,"\u7d42\u308f\u3063":[43,73,151],"\u7d42\u308f\u308b":[112,196,197,198],"\u7d42\u4e86":[12,34,36,40,41,42,43,54,66,73,82,104,114,127,131,136,149,151,153,154,165,168],"\u7d42\u4e86\u30bf\u30b0":168,"\u7d42\u7aef":[40,54,55,57],"\u7d44\u307f\u5408\u308f":[0,11,92,135,140,158,161,176,223],"\u7d44\u307f\u5408\u308f\u305b":[0,11,12,42,44,202,228,238,261,268],"\u7d44\u307f\u5408\u308f\u305b\u308b":176,"\u7d44\u307f\u8fbc\u307f":[22,34,43,46,55,81,92,103,118,121,122,146,154,155,160,165,209,244],"\u7d44\u307f\u8fbc\u3080":[0,11,153,155],"\u7d44\u307f\u8fbc\u3093":[0,42,43],"\u7d44\u5408":177,"\u7d44\u8fbc":[63,89,90,94,100,101,103,104,110,111,127,141,163,166,167,174,178,243],"\u7d44\u8fbc\u578b":[22,46],"\u7d4c\u5ea6":[22,197,243,265,271,275],"\u7d4c\u7531":[12,26,34,36,40,42,89,90,94,100,101,103,110,111,127,141,154,158,219],"\u7d4c\u7def":[243,265,275],"\u7d4c\u7def\u5ea6":[22,264,275],"\u7d4c\u904e":[38,49,65,82,83,137,158,197,243,265,271],"\u7d50\u3073\u3064\u3044":[9,270],"\u7d50\u3073\u3064\u304f":9,"\u7d50\u5408":[11,195,196],"\u7d50\u5408\u5f0f":40,"\u7d50\u57ce":[42,44],"\u7d50\u679c":[0,11,12,14,21,22,34,36,38,40,41,42,43,44,67,68,78,83,84,88,91,103,105,112,114,115,118,131,132,133,135,151,156,171,172,177,182,195,197,201,206,209,210,211,216,217,219,220,226,229,230,231,232,238,252,259,260,264,270,271,274,275],"\u7d5e\u308a\u8fbc\u307e":34,"\u7d5e\u308a\u8fbc\u307f":[0,34,171,268],"\u7d5e\u308a\u8fbc\u3080":[42,112,114,115,135,218],"\u7d5e\u308a\u8fbc\u3093":[0,41],"\u7d5e\u8fbc":[22,264],"\u7d71\u5408":[0,40,41],"\u7d71\u8a08":34,"\u7d76\u5bfe":[12,34,124,125,129,135,173],"\u7d99\u627f":41,"\u7d99\u7d9a":[21,40,137,153],"\u7d9a\u3044":261,"\u7d9a\u3051":[86,151,154],"\u7d9a\u3051\u308b":[135,151,238],"\u7dad\u6301":[0,44,212,213,252],"\u7db2\u7f85":155,"\u7dca\u6025":[153,199],"\u7dcf\u6570":114,"\u7dcf\u91cf":242,"\u7de8\u96c6":[3,12,14,29,35,40,44,155,163,197,209],"\u7de9\u3044":34,"\u7de9\u304f":162,"\u7de9\u3084\u304b":43,"\u7de9\u548c":242,"\u7def\u5ea6":[22,197,243,265,271,275],"\u7e26\u68d2":[92,140],"\u7e2e\u6a5f":92,"\u7e4b\u3052":42,"\u7e4b\u3052\u308b":10,"\u7e70\u308a\u8fd4\u3057":[17,34,154,197],"\u7e70\u308a\u8fd4\u3057\u6570":154,"\u7e70\u308a\u8fd4\u3059":36,"\u7f6e\u3044":[12,42],"\u7f6e\u304b":[29,155,156,209],"\u7f6e\u304d":[12,34,36,43,47,65,69,153,210,274],"\u7f6e\u304d\u63db\u3048":[17,42,153,196,214],"\u7f6e\u304f":[29,43,242],"\u7f6e\u304f\u4f8b":29,"\u7f6e\u63db":[44,135,197,274],"\u7f72\u540d":40,"\u7fa9\u8a9e":209,"\u7ffb\u8a33":[3,18,34,42],"\u8003\u3048":[0,10,135,142,196,197,242,252,266,268],"\u8003\u3048\u308b":[211,212,213],"\u8003\u3048\u65b9":42,"\u8003\u308b":210,"\u8003\u616e":[213,261,274],"\u8077\u5834":173,"\u80a5\u5927":[34,42],"\u811a\u6ce8":[94,165,166,167,268],"\u81a8\u5927":[0,34],"\u81ea\u4f53":[42,196],"\u81ea\u5206":[10,12,17,23,92,117,142,154,155,206],"\u81ea\u52d5":[12,17,25,34,38,40,42,43,51,68,78,92,104,124,125,129,135,151,154,155,196,197,220,255,267,268,273],"\u81ea\u52d5\u5207\u308a":42,"\u81ea\u52d5\u7684":[112,114,115,135,154],"\u81ea\u5df1":271,"\u81ea\u5df1\u7d39":271,"\u81ea\u7136":34,"\u81ea\u7531":[0,11,78,199,258],"\u81ea\u8eab":[38,40,43,146,153,209],"\u81f3\u308b":265,"\u81f4\u547d":40,"\u8208\u5473":[0,43,210],"\u821e\u3044":[34,135],"\u826f\u3044":[10,197,262,270],"\u826f\u3044\u4f8b":10,"\u826f\u304f":[43,270],"\u826f\u4e8c":42,"\u82b1\u5b50":267,"\u82e6\u624b":0,"\u82f1\u8a9e":[2,12,17,18,19,34,38,42,44,224,228],"\u83ab\u5927":219,"\u840e\u7e2e":10,"\u843d\u3061":[36,41,44],"\u843d\u3061\u308b":[36,38,41],"\u8457\u4f5c":42,"\u884c\u3044":[11,12,43,44,65,68,69,152,153,154,177,259,261,267,268,270,271],"\u884c\u3046":[3,10,14,34,36,40,42,69,140,152,165,177,197,221,256,259,267,270,271,273,275],"\u884c\u3048":[14,42,177,196,268],"\u884c\u3048\u308b":[40,267],"\u884c\u3063":[12,14,34,42,266,275],"\u884c\u306a\u308f":40,"\u884c\u308f":[12,34,135,152,154,267],"\u884c\u6307\u5411":0,"\u884c\u6570":[34,38,153,158],"\u884c\u672b":210,"\u884c\u756a":[38,83],"\u884c\u76ee":[12,83,154],"\u884c\u982d":210,"\u885d\u7a81":[34,105],"\u8868\u3057":[11,78,82,83,87,114,122,135,205,210,213,243,262,268],"\u8868\u3059":[11,12,34,109,123,146,165,178,205,210,265,267],"\u8868\u3059\u578b":243,"\u8868\u308f":65,"\u8868\u73fe":[3,22,34,40,41,42,43,44,46,57,80,83,89,177,184,195,236,239,243,265,270],"\u8868\u7528":140,"\u8868\u793a":[0,12,22,29,34,35,36,38,39,40,41,42,43,44,63,82,89,112,114,115,135,141,153,154,173,176,207,258,261,264,265,267,275],"\u8868\u8a08":209,"\u8868\u8a18":[12,17,34,38,40,41,44,80,165,197,238,243,265,274,275],"\u88d5\u4e5f":[42,44],"\u88dc\u3046":0,"\u88dc\u5b8c":[22,36,41,44,46,124,125,129,138,158,176,206,215,219],"\u88dc\u5b8c\u7528":158,"\u88dc\u5b8c\u8a9e":216,"\u88dc\u6b63":[22,46,138,215],"\u88dc\u8db3":[34,155],"\u88fd\u54c1":44,"\u8907\u6570":[0,10,11,12,22,34,35,36,38,40,41,42,43,44,47,50,51,57,59,63,80,85,92,102,112,114,115,118,130,131,135,138,140,141,144,146,153,154,155,156,158,168,171,172,177,196,199,202,204,210,211,214,216,228,236,238,251,259,261,264,265,267,268,269,271],"\u8907\u96d1":[11,40,41,43,135,197,210,236],"\u897f\u66a6":197,"\u8981\u4ef6":12,"\u8981\u6c42":[10,34,41,44,114,182,255,268],"\u8981\u7d04":12,"\u8981\u7d20":[11,34,40,41,43,44,68,80,83,87,93,122,154,179,191,268],"\u898b\u3048\u308b":[6,7],"\u898b\u305b":[135,214],"\u898b\u3064":[34,36,40,43,138],"\u898b\u3064\u304b\u3063":[114,135,191,218,226,228,262],"\u898b\u3064\u304b\u3089":68,"\u898b\u3064\u304b\u308a":[34,135,176,226,228,238,262],"\u898b\u3064\u304b\u308b":40,"\u898b\u3064\u304b\u308c":10,"\u898b\u3064\u3051":[10,35,40,114,135,216,238],"\u898b\u3064\u3051\u308b":[95,135,143,155,176,200,206,226,228],"\u898b\u3066":[83,91,92,112,114,115,121,135,140,155,171,177,191,216,244],"\u898b\u306a\u3057":69,"\u898b\u308b":[87,91,135,262],"\u898b\u4ed8":41,"\u898b\u4ed8\u3051":41,"\u898b\u76f4\u3057":42,"\u898b\u7a4d":43,"\u898b\u7a4d\u308b":[44,263],"\u898b\u8fbc\u3081":42,"\u898f\u5247":[40,112,114,115],"\u898f\u683c":69,"\u8996\u899a":[0,134],"\u89a7\u4e0b":14,"\u89aa\u5207":36,"\u89b3\u70b9":[42,172,197,263],"\u89d2\u62ec\u5f27":105,"\u89e3\u50cf":36,"\u89e3\u653e":[34,42,43,44,50,54,61,65,69,73,99,106,108,137],"\u89e3\u6790":[3,22,34,38,40,135,155,260],"\u89e3\u6c7a":[10,22,34,38,40,43,44,46,89,123,211,212,213,214,228,263],"\u89e3\u6c7a\u7b56":10,"\u89e3\u6d88":[35,41,43,44,65,80,101],"\u89e3\u91c8":[11,36,103,196,236],"\u89e3\u9664":[34,35,65,90,105,107,124,125,153],"\u89e6\u308b":43,"\u89e6\u308c":268,"\u89e6\u308c\u308b":228,"\u8a00\u3044":[43,76,142,182],"\u8a00\u3046":[80,92,113,213,216],"\u8a00\u3048":[196,261],"\u8a00\u53ca":[182,271],"\u8a00\u8a9e":[1,3,11,20,21,34,36,41,153,228,238],"\u8a00\u8a9e\u540d":17,"\u8a02\u6b63":209,"\u8a08\u6e2c":[14,35,38],"\u8a08\u753b":34,"\u8a08\u7b97":[0,34,35,40,41,42,112,114,115,132,135,137,158,163,165,166,173,197,205,211,212,213,216,217,219,242,243,275],"\u8a18\u4e8b":[12,198,270],"\u8a18\u53f7":[34,36,153,202,223,228,229,230,231,232,233,234,235,238,259,261,268],"\u8a18\u6cd5":[34,197,270],"\u8a18\u8f09":[12,40,44,262],"\u8a18\u8ff0":[11,12,43,44,153,154,268,270,271],"\u8a18\u9332":[0,34,40,43,44,78,104,124,129,135,199],"\u8a2d\u5b9a":[14,20,22,24,25,27,28,31,32,34,35,36,37,40,41,42,43,44,46,47,48,50,54,62,63,66,70,78,80,88,96,97,98,104,105,109,110,113,135,136,145,153,157,162,177,209,210,216,242,251,256,263,270,275],"\u8a2d\u5b9a\u5024":[35,263],"\u8a2d\u5b9a\u6e08\u307f":256,"\u8a2d\u6a02":38,"\u8a2d\u8a08":[135,256],"\u8a31\u5bb9":34,"\u8a3a\u65ad":44,"\u8a55\u4fa1":[11,34,41,43,92,105,132,134,135,182,196,197,210],"\u8a66\u3057":[10,43,153],"\u8a66\u3059":[6,7,153,226,251],"\u8a66\u3059\u4f8b":226,"\u8a66\u884c":0,"\u8a70\u3081":63,"\u8a71\u3057":3,"\u8a71\u984c":2,"\u8a72\u5f53":[42,50,51,65,68,69,120,161,168,169,171,172,179,262,270],"\u8a72\u5f53\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":43,"\u8a72\u5f53\u884c":34,"\u8a73\u3057\u3044":135,"\u8a73\u3057\u304f":[0,265,268],"\u8a73\u7d30":[1,14,17,24,25,27,29,31,34,40,41,42,43,44,50,63,64,67,80,83,85,91,92,93,99,104,112,114,115,117,121,122,124,125,129,134,135,136,137,139,140,142,143,144,146,151,154,155,156,177,196,197,199,206,209,210,238,242,243,244,256,261,266,268,275],"\u8a8d\u8a3c":[155,251,272],"\u8a8d\u8b58":10,"\u8a9e\u4ee5":[197,238],"\u8a9e\u5165":206,"\u8a9e\u53e5":[34,41,43,267],"\u8a9e\u5e79":224,"\u8a9e\u5f59":[22,33,34,43,44,104,140,142,144,200,210,220,225,259,264,270],"\u8a9e\u5f59\u8868":[34,92,144,210,268,270],"\u8a9e\u6271":259,"\u8a9e\u691c":135,"\u8a9e\u7248":12,"\u8a9e\u7528":[224,238],"\u8a9e\u8a33":34,"\u8aa4\u3063":[12,34,40,41,42,43,44],"\u8aa4\u308a":[34,40,41,42,43,44],"\u8aa4\u52d5\u4f5c":43,"\u8aa4\u5b57":[34,36,38,40,41,43,44,209],"\u8aa4\u5dee":[38,165,166],"\u8aac\u660e":[3,5,6,7,8,11,12,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,40,41,42,43,44,46,47,80,81,83,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,126,127,130,131,132,133,134,135,136,137,139,140,141,142,143,144,145,146,147,148,150,151,153,155,158,160,169,170,177,196,197,204,209,210,211,212,213,214,215,216,217,219,228,242,244,258,259,261,262,265,266,268],"\u8aad\u307f":[0,12,34,35,84,176,195,202,215,238],"\u8aad\u307f\u3084\u3059\u3044":39,"\u8aad\u307f\u51fa\u3057":0,"\u8aad\u307f\u53d6\u308a":[95,143,153],"\u8aad\u307f\u8fbc\u307f":[34,38,41,42,124,129,133,209,268],"\u8aad\u307f\u8fbc\u3080":[35,133,219],"\u8aad\u307f\u8fbc\u3081":34,"\u8aad\u307f\u8fbc\u3081\u308b":103,"\u8aad\u307f\u8fbc\u3093":[105,133,258],"\u8aad\u307f\u98db\u3070":268,"\u8aad\u3081":40,"\u8aad\u3093":[3,21],"\u8ab0\u304b":3,"\u8ab0\u304c":271,"\u8ab0\u3067":42,"\u8ab2\u7a0b":41,"\u8ab2\u984c":[3,22],"\u8abf\u3079":[12,59,65,166,167,266],"\u8abf\u3079\u308b":[41,63,144,166,167,263],"\u8abf\u6574":[34,44,92,135,195,226,261,263],"\u8abf\u67fb":[43,63,121,262],"\u8ad6\u7406":[0,11,33,40,43,44,89,112,114,115,116,135,171,214],"\u8ad6\u7406\u548c":[11,135,197,226],"\u8af8\u6761":33,"\u8b58\u5225":158,"\u8b66\u544a":[6,7,34,36,39,40,41,42,82,135,153,199],"\u8b70\u8ad6":19,"\u8ca0\u62c5":10,"\u8ca0\u6570":[40,49],"\u8ca0\u8377":[36,155],"\u8ca2\u732e":41,"\u8ce2\u304f":99,"\u8d64\u9053":165,"\u8d70\u67fb":42,"\u8d77\u304d":34,"\u8d77\u3053\u3063":[95,143],"\u8d77\u3053\u308a":274,"\u8d77\u52d5":[12,25,32,36,40,41,43,82,137,153,154,156,207,252,255,268],"\u8d77\u52d5\u6642":158,"\u8d77\u6e90":265,"\u8d85\u3048":[41,44,261],"\u8d85\u3048\u308b":[34,40,69,220,263,265],"\u8d85\u904e":[41,263],"\u8d8a\u3048":[42,43,261],"\u8d8a\u3048\u308b":[42,43,44,261],"\u8db3\u3057":197,"\u8db3\u308a":[38,209],"\u8ddd\u96e2":[0,35,40,44,163,165,166,173,197,205,275],"\u8ee2\u7f6e":[22,40,43,44,51,76,92,197,267,268],"\u8efd\u3044":[95,120,122,143],"\u8efd\u5fae":[153,155],"\u8f09\u305b\u308b":12,"\u8f9e\u66f8":[27,28,35,36,40,41,42,43,44,238,261],"\u8f9e\u691c":[38,197,220],"\u8f9e\u7121":[34,153],"\u8fbc\u307f":[111,209],"\u8fbf\u308b":12,"\u8fd1\u3044":[34,44,69,152,173,197,214],"\u8fd1\u3044\u9806":205,"\u8fd1\u304f":[0,205],"\u8fd1\u4f3c":[38,40,165,166],"\u8fd1\u508d":[40,42,44,177,195],"\u8fd4\u3055":[34,40,42,44,56,65,82,89,138],"\u8fd4\u3057":[11,34,41,42,43,44,49,50,51,52,54,55,56,59,61,64,65,68,69,70,72,74,88,93,95,96,97,98,102,105,106,107,108,109,112,113,114,116,119,120,121,122,123,130,131,132,133,134,135,137,138,144,145,146,147,148,161,162,163,165,166,167,168,169,170,171,172,173,174,176,177,178,179,180,182,184,191,193,197,212,213,216,217,218,219,252,268,271,274,275],"\u8fd4\u3059":[34,35,36,38,40,41,42,43,44,51,54,57,70,90,94,99,100,101,110,111,112,114,115,122,135,138,145,153,154,158,161,173,174,197,252,258,275],"\u8fd4\u3059\u304b":138,"\u8fd4\u3059\u4f8b":193,"\u8fd4\u3059\u65b0\u3057\u3044":[43,44],"\u8fd4\u305b":171,"\u8fd4\u3063":[42,43,145,196,197],"\u8fd4\u308a":[112,114,115,135,142,145,266,275],"\u8fd4\u308a\u5024":[41,42,43,44],"\u8fd4\u308b":[36,43,44],"\u8fd4\u4fe1":[10,270,271],"\u8fd4\u4fe1\u5143":271,"\u8fd4\u4fe1\u5148":271,"\u8fd4\u5024":89,"\u8fd4\u5374":[44,141,268],"\u8ff0\u3079":268,"\u8ff0\u8a9e":43,"\u8ffd\u3046":262,"\u8ffd\u3063":262,"\u8ffd\u52a0":[0,3,11,12,18,22,24,25,27,29,31,33,34,35,36,37,38,39,40,41,42,43,44,46,47,51,55,57,59,63,65,67,68,74,78,84,85,86,91,92,96,97,98,99,100,103,104,105,106,107,108,112,113,114,115,116,117,120,121,122,123,124,125,126,130,131,134,135,136,137,139,142,145,146,148,149,151,153,155,162,164,169,171,172,173,176,180,181,184,191,192,193,194,196,197,198,202,209,210,212,213,214,218,220,221,223,225,238,239,244,246,247,248,256,258,261,265,266,267,268,270,273],"\u8ffd\u8a18":[12,40,43],"\u8ffd\u8de1":[3,22],"\u9000\u907f":99,"\u9001\u3063":[3,16,17,19],"\u9001\u308a":[12,258],"\u9001\u308a\u65b9":[3,22,29,272],"\u9001\u308b":[17,19,252,258],"\u9001\u4fe1":[34,41,89,90,94,100,101,103,110,111,127,131,141,154,158],"\u9006\u306b":[267,271],"\u9006\u5f15":267,"\u9006\u5f15\u304d":[22,264,271],"\u9006\u6587\u66f8\u51fa":42,"\u9006\u9806":268,"\u9010\u6b21":[0,42,210,239],"\u9014\u4e2d":[12,40,42,153,216,217,258],"\u901a\u3058":34,"\u901a\u308a":[6,7,8,12,18,21,29,31,34,47,53,63,91,92,93,102,103,105,112,113,114,115,116,118,122,134,135,136,138,140,141,146,151,153,155,158,161,162,165,166,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,199,202,205,206,210,211,212,213,219,223,224,228,230,231,232,242,261,270],"\u901a\u4fe1":[3,4,22,152,154,155,156,158],"\u901a\u5e38":[34,40,42,43,47,54,70,78,83,92,93,99,104,112,113,114,115,117,121,122,123,134,135,137,146,151,153,155,158,196,201,203,206,209,210,236,242,243,265,268],"\u901a\u77e5":[12,131,153,199],"\u901f\u3044":[42,43,92,114,220],"\u901f\u304f":[29,34,43,92,140,267],"\u901f\u3084\u304b":82,"\u901f\u5ea6":[34,38,41,43,92,154,220,267],"\u9023\u4f53\u5316":238,"\u9023\u643a":0,"\u9023\u7d50":[40,41,43,65,270],"\u9023\u7d61":17,"\u9023\u7d9a":[41,43,65,146,217,229,230,231,232,259,261],"\u9032\u3081":[3,4,22,44],"\u9032\u3093":0,"\u9032\u6357":34,"\u9032\u6570":[89,197],"\u9045\u3044":[92,165,211,220],"\u9045\u304f":[43,44,153,155,166,196,197,210,213,266],"\u9045\u3089":44,"\u904b\u7528":[0,34],"\u904e\u53bb":[12,44],"\u904e\u7a0b":[34,78],"\u9054\u3057":242,"\u9054\u3059\u308b":[33,69],"\u9055\u3044":[34,92,114,121,135,140,165,171,196,210,229,230,231,232,233,234,235,237,240,241,252,265,268,270,275],"\u9055\u3046":[36,92,115,158],"\u9055\u3063":216,"\u9069\u3057":[0,92,140,198,211,212],"\u9069\u5207":[0,34,36,42,43,44,92,112,115,135,140,146,154,210,213,226,228,236,237,268],"\u9069\u5408":[226,228,238,261,268],"\u9069\u5408\u7387":226,"\u9069\u5b9c":[12,42],"\u9069\u6642":59,"\u9069\u7528":[34,42,44,57,112,114,115,135,145,197,242,268],"\u9078\u3073":[33,218],"\u9078\u3076":[0,135,155],"\u9078\u3079":[5,135],"\u9078\u3093":[44,84,140],"\u9078\u629e":[0,12,42,43,44,57,114,135,158,165,172,176],"\u907f\u3051\u308b":135,"\u90e8\u5206":[11,14,29,34,42,43,44,83,135,158,171,196,197,261,271],"\u90fd\u6c11":[259,261],"\u914d\u4e0b":[12,156],"\u914d\u5217":[11,34,36,38,40,42,44,51,55,65,66,68,80,83,89,93,114,118,119,121,122,134,135,140,141,146,147,179,196,220,259,265,267,268,271],"\u914d\u5e03":[23,24,25,26,27,31,32,40,42],"\u914d\u7f6e":[12,268],"\u91cd\u3044":[0,34,104,135],"\u91cd\u304f":261,"\u91cd\u306a\u3063":41,"\u91cd\u307f":[22,34,40,41,92,93,134,135,177,196,211,261,264],"\u91cd\u307f\u3064\u304d":42,"\u91cd\u307f\u4ed8\u304d":[42,135],"\u91cd\u307f\u4ed8\u3051":[135,261],"\u91cd\u8907":[42,43,44,68],"\u91cd\u8981":[0,10,12,14,29,43,50,54,80,81,135,140,146,155,198,211,212,213,226,252,269],"\u91cd\u8996":[198,261],"\u91ce\u9996":42,"\u91cf\u6307":210,"\u91cf\u8a08":35,"\u9234\u6728":40,"\u932f\u8aa4":0,"\u9577\u3044":[43,44,63],"\u9577\u304f":44,"\u9577\u3055":[34,40,51,65,68,69,71,154,265],"\u9577\u3059\u304e\u308b":[34,41],"\u9577\u4ee5\u4e0a":[65,68],"\u9577\u5185":[42,43],"\u9577\u5185\u6b69":[42,43],"\u9577\u578b":[69,93,121],"\u9577\u65b9\u5f62":38,"\u9577\u6642\u9593":[131,151],"\u9577\u671f\u9593":34,"\u9577\u751f\u304d":140,"\u9577\u91ce":42,"\u9577\u97f3":[34,202,223],"\u9589\u3058":[38,44,142,220],"\u9589\u3058\u308b":[35,38,43,220],"\u958b\u3044":[34,36,38,41,43,90,101,104,142,151,200],"\u958b\u304b":[34,43,54,104,122,151],"\u958b\u304d":[50,55,122,130,142,242],"\u958b\u304f":[34,38,40,43,44,50,200,242,268],"\u958b\u304f\u969b":40,"\u958b\u3051":[40,43],"\u958b\u3051\u308b":40,"\u958b\u3053":55,"\u958b\u59cb":[14,38,41,42,65,95,135,143,154,165,168,199],"\u958b\u653e":[34,43,108],"\u958b\u767a":[0,3,5,6,7,8,12,21,22,23,24,25,27,31,32,34,40,41,42,43,44,82,83],"\u9593\u9055\u3063":[34,38,40,41,42,43,44,151,217,218],"\u95a2\u308f\u3089":[135,154],"\u95a2\u4fc2":[11,13,22,23,39,40,44,92,95,143,196,264,265,271],"\u95a2\u4fc2\u5f0f":3,"\u95a2\u6570":[11,22,34,35,36,39,40,41,43,44,46,47,49,54,63,66,70,74,83,111,120,121,122,145,153,158,161,163,165,166,167,169,170,171,172,173,174,176,177,178,181,182,184,191,193,194,211,212,213,275],"\u95a2\u9023":[0,2,3,10,12,21,22,24,25,27,29,31,34,38,39,40,41,42,43,44,70,102,104,146,151,158,195,200,210,218,219,242,244,256,263,264,265,268],"\u95b2\u89a7":272,"\u95be\u5024":[22,29,38,42,43,54,64,135,138,153,259,260],"\u9632\u304e":[34,41,142],"\u9632\u3050":[105,117,197,213],"\u964d\u5411\u3051":104,"\u964d\u9806":[68,69,135,138,158,268],"\u9650\u3063":65,"\u9650\u3089":10,"\u9650\u308a":[11,34,65,78,145,259,261],"\u9650\u5b9a":[151,210],"\u9650\u6587":[38,140],"\u9664\u3044":[112,117,154,172,179,202,238],"\u9664\u304f":[40,115,135],"\u9664\u3051":68,"\u9664\u53bb":[36,41,44,144,170,225,236,238],"\u9664\u5916":[34,103,238],"\u9664\u7b97":[34,42],"\u9665\u3063":40,"\u968e\u5c64":11,"\u969c\u5bb3":34,"\u96a0\u3055":34,"\u96a3\u308a\u5408\u3063":228,"\u96a3\u63a5":[0,196],"\u96c5\u5e83":42,"\u96c6\u307e\u3063":266,"\u96c6\u307e\u308a":[135,158],"\u96c6\u3081":266,"\u96c6\u5408":[40,68,76,80,122,135,195,210],"\u96c6\u8a08":[22,43,135,266],"\u96e2\u308c":[44,197,275],"\u96e3\u3057\u3044":0,"\u9759\u7684":[3,22,34,40,41,42,43,44,46,153,156,268],"\u975e\u308f":259,"\u975e\u308f\u304b\u3061":261,"\u975e\u4e92":[34,40,41,42,43,44],"\u975e\u4e92\u63db":[38,42,43],"\u975e\u5168":92,"\u975e\u516c\u958b":12,"\u975e\u5206":135,"\u975e\u5e38":[40,44,210,211,212,213,252],"\u975e\u63a8":[34,38,40,41,42,43,44,74,90,115,129,135,137,140,153,165,245],"\u975e\u63a8\u5968":[40,43],"\u975e\u81ea":44,"\u975e\u81ea\u7acb":[202,238],"\u975e\u81ea\u7acb\u8a9e":[202,238],"\u975eascii":[228,229,230,231,232,240,241],"\u97f3\u3068":34,"\u9805\u76ee":[34,35,43,47,89,96,97,98,135,140,149,252,256,269],"\u9806\u4f4d":59,"\u9806\u5e8f":[34,44,112,114,115,135,141,261,268],"\u9806\u6b21":[152,153,258,268],"\u9806\u756a":[12,61,69,114,115,135,153,196,197,261,268],"\u9818\u57df":[29,34,40,42,65,68,92,121,275],"\u982d\u6587":258,"\u982d\u8f9e":[34,220],"\u983b\u51fa":43,"\u983b\u5ea6":[34,43,138,144],"\u983b\u7e41":[29,34,68],"\u9855\u8457":228,"\u985e\u3059\u308b":34,"\u985e\u4f3c":[11,34,40,41,42,138,177,195],"\u985e\u4f3c\u5ea6":34,"\u985e\u7d39":261,"\u985e\u7fa9":135,"\u98df\u3044\u9055\u3063":151,"\u98df\u3079":223,"\u99c4\u76ee":10,"\u9ad8\u3044":[0,34,89,92,135,138,155,158,226,268],"\u9ad8\u3044\u9806":268,"\u9ad8\u304f":[43,80,212,261],"\u9ad8\u307e\u3063":0,"\u9ad8\u5ea6":[195,196,220],"\u9ad8\u6a5f":[0,11],"\u9ad8\u7cbe":0,"\u9ad8\u901f":[0,11,34,35,38,41,44,76,92,112,114,115,135,140,165,166,196,197,205,210,211,213,220,239,251,252,267,268],"\u9b3c\u96f2":[34,43,44],"\u9bae\u5ea6":198,"\u9df2\u7530":41,"\u9df2\u7530\u57fa":41,"\u9ed2\u3044\u70b9":205,"\ufe63\uff0d":[202,223],"\uff01:":29,"\uff01\u300d":[112,114,115,135,196,197],"\uff01\u3057":2,"\uff01\uff08":17,"\uff01\uff09":[216,217],"\uff01\uff1f":236,"\uff08*":5,"\uff08,":268,"\uff08-":[135,268],"\uff08.":12,"\uff08=":[33,98,117,135,137,149],"\uff08@":[36,38],"\uff08\u300c":[201,261],"\uff08\u3064\u307e\u308a":104,"\uff08\u3069":135,"\uff08\u307e\u3060":34,"\uff08\u30ad\u30fc":43,"\uff08\u4f8b":[34,43],"\uff08\u578b":71,"\uff08\u79d2":65,"\uff08\uff1d":214,"\uff08age":140,"\uff08and":195,"\uff08byte":[51,65],"\uff08ci":21,"\uff08document":[42,213],"\uff08eol":[34,43],"\uff08gnu":29,"\uff08groonga":43,"\uff08homebrew":12,"\uff08kana":206,"\uff08least":88,"\uff08longest":[38,197],"\uff08markdown":12,"\uff08messagepack":29,"\uff08n":34,"\uff08node":21,"\uff08normalization":[34,201,202,203,223],"\uff08not":195,"\uff08or":195,"\uff08perl":155,"\uff08personal":[22,23],"\uff08pid":199,"\uff08piro":[42,44],"\uff08proc":59,"\uff08romaji":206,"\uff08rroonga":43,"\uff08ruby":21,"\uff08score":135,"\uff08term":[211,212,213],"\uff08textile":12,"\uff08tf":211,"\uff08therubyracer":12,"\uff08todo":197,"\uff08tokenbigram":261,"\uff08tokenmecab":261,"\uff08true":265,"\uff08truncate":151,"\uff08virtualbox":12,"\uff08world":243,"\uff09:":[24,25,27,28,30,31,132,133,199,259],"\uff09\u3001":[12,211,212,213,220,259],"\uff09\u3002":[12,34,43,199,261,268],"\uff09\u300d":236,"\uff09\u304b":33,"\uff09\u307e\u305f":[118,146,196,197],"\uff09\uff08":[92,140],"\uff11\u3064":[9,93],"\uff11\u5bfe":9,"\uff12\u3064":275,"\uff13\u3064":243,"\uff1a\u300c":34,"\uff1b[":12,"\uff1f\u300c":236,"\uff1f\u300d":266,"\uff1f\uff09":43,"\uff1f]":236,"\uff4d\uff59\uff53\uff51\uff4c":[168,169],"\uff65\"":[202,223],"\uff76\uff9e":201,"\uffef\"":239,"\ufff0\"":239,"\ufffecrch":146,"\ufffetext":146,"] [":154,"] \u6708":43,"]%":210,"]'":[34,155,252],"](":[12,34],"])":[44,49,166,168,178,236],"]+":236,"],":[47,80,83,89,91,92,93,95,96,99,102,105,112,114,115,116,117,118,119,121,122,123,131,134,135,137,138,141,142,143,146,147,148,153,154,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,201,202,203,210,211,212,213,216,217,219,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,258,261,265,266,267,268,270,271,272,273,274,275],"].":[34,42,43,44,112,114,115,135],"]/":272,"]:":[34,44,210,262],"][":[34,38,39,40,41,42,43,44,47,92,96,117,123,135,142,196,210],"]\"":[34,40,41,105,210,271],"]\u3002":42,"]]":[43,63,100,102,117,144,153,154,271],"]]]":[100,197,261],"]ello":43,"]x":271,"]}":[43,89,176,182,265],"^ \"":[34,91,92,176,197],"^\"":177,"^commit":12,"_$":[92,138,140],"_')":78,"_*":[22,34,46,48,113],"_\"":[38,117],"_db\u30d5\u30e9\u30b0":38,"_{":41,"`/":18,"`hostname":153,"b\u30c6\u30fc\u30d6\u30eb":44,"boolean":[45,134],"byte":[40,43,51,65,68,154,179,258],"c\u30e9\u30f3\u30bf\u30a4\u30e0":43,"case":[74,129,159],"char":[42,51,54,55,56,57,63,65,66,68,70,71,74],"ci\u4e00\u822c":21,"ci\u4e0a":21,"class":[34,168,169,170,179,238],"const":[39,51,54,55,56,57,63,65,66,68,69,71,74],"continue":42,"cpu\u30b3\u30a2":[6,7,153,158,251],"d\u30ad\u30fc":268,"dat\u30ad\u30fc":41,"db)":104,"default":[34,40,63,84,86,92,112,114,115,122,130,134,135,137,138,141,142,143,144,153,154,155,158,162,168,169,171,179,182,191,196,197,198,207,210,211,212,213,221,224,225,242,252,258,261,268,270,271,272,274],"delete":[12,22,34,35,36,38,44,46,65,81,96,104,105],"dll\u30d1\u30b9":34,"do":[34,42,154],"double":[43,134,197],"else":[43,262],"enter\u30ad\u30fc":41,"enum":55,"error\u30bf\u30b0":40,"export":18,"false":[12,34,36,41,42,44,90,91,92,94,95,96,98,99,100,102,106,107,108,109,110,111,115,117,120,121,122,123,130,131,134,142,146,148,158,161,168,171,172,177,182,196,197,202,223,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,243,265,273],"final":[202,223],"float":[40,43,44,112,114,115,121,122,134,135,165,207,212,213,265],"for":[8,32,40,45,49,53,54,55,57,58,65,70,74,148,153,155,157,159,165,179,197,238,242,243,250,256,271],"function":[43,44,45,54,74,83,160,244,258],"geopoint\u9593":38,"get\u30e1\u30bd\u30c3\u30c9":156,"gib\u304f\u3089\u3044":242,"gmo\u30e1\u30c7\u30a3\u30a2":42,"html\u30bf\u30b0":170,"id\u9806":69,"if":[11,43,49,51,53,54,55,58,65,66,68,70,73,74,80,153,155,157,159,197,250,262],"import":12,"in":[11,14,22,34,40,42,43,44,46,51,53,54,55,57,58,65,74,89,92,129,135,146,153,159,160,179,196,250,256,271,274],"int":[34,36,40,41,42,43,44,49,50,51,54,55,57,58,59,60,61,63,64,65,66,68,69,70,71,74,80,91,95,115,121,122,134,135,138,140,143,148,158,161,162,165,173,177,178,196,197,207,211,212,213,216,217,219,261,265,266,267,268,270,271,275],"long":[43,60,64,131],"mo\u30d5\u30a1\u30a4\u30eb":17,"new":[12,47,54,65,70,74,91,135,153,165,271],"nginx\u3089\u3057\u3044":42,"null":[11,34,38,40,41,43,44,50,51,54,55,57,58,61,65,66,68,69,70,74,114,121,122,133,134,135,143,162,168,169,170,179,184,191,193,262],"package":[12,22,23,256],"po\u30d5\u30a1\u30a4\u30eb":17,"post\u30e1\u30bd\u30c3\u30c9":41,"processid\u304b":34,"return":[34,54,70,73,83,105,199,262],"sort\u30ad\u30fc":35,"static":70,"this":[40,51,53,54,55,65,74,112,114,115,135,153,155,157,179,196,197,236,252,265,268,270,272,274],"true":[35,41,42,43,44,47,80,90,91,92,93,94,95,96,97,98,99,100,102,104,105,106,107,108,109,110,111,112,113,114,115,116,117,120,121,122,123,124,125,129,130,131,132,133,134,135,136,139,140,142,143,144,148,158,161,162,165,166,167,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,202,206,210,211,212,213,221,223,224,225,238,243,265,266,267,268,270,273,274,275],"try":[49,271],"var":[11,29,74,93,151,153,155],"void":[39,49,52,55,56,63,64,65,68,69,70,73,74],"while":55,"with":[6,12,21,28,29,34,38,42,43,44,51,54,58,65,74,80,89,92,93,118,121,134,153,155,159,179,202,210,261,268],"x\u30df\u30ea":[197,243],"{\"":[34,43,80,89,112,113,114,115,116,117,121,132,133,138,154,168,169,177,196,197,198,210,212,213,216,217,219,224,225,270],"{\"_":[47,135,161,171,173,196,197,265,267,275],"{column":210,"{id":34,"{key":135,"{label":[115,135],"{language":17,"{logical":214,"{name":[112,114,115,135,197],"{path":29,"{prefix":[29,124,125,129],"{table":[135,177],"{time":[34,199],"{user":242,"{yyyymm":214,"{yyyymmdd":214,"| _":[176,275],"| c":197,"| n":197,"| y":41,"|..":42,"|:":199,"|<":[47,199],"|>":199,"|[":236,"|allow":[135,177,196],"|b":210,"|cache":63,"|column":92,"|correct":[138,158],"|destination":63,"|enable":146,"|full":210,"|ga":135,"|http":154,"|index":92,"|info":210,"|key":[44,140,196,197,273],"|mark":44,"|message":[151,153],"|n":43,"|ng":135,"|on":135,"|oo":135,"|persistent":[93,95,122,143],"|pid":[44,151],"|query":135,"|result":63,"|ring":158,"|ro":135,"|score":63,"|size":63,"|suggest":138,"|table":140,"|with":[42,80,92,93,112,114,115,118,122,130,134,135,158,168,169,177,179,182,196,197,198,210,211,212,213,224,225,242,261,268,270,271,274],"||":[11,34,40,41,112,114,115,135,197,211,270],"}'":34,"}(":63,"},":[63,80,95,115,116,117,119,121,122,134,135,143,146,147,148,154,165,170,176,177,191,193,196,197,198,202,210,226,228,229,230,231,232,233,234,235,236,238,239,267,268,270,271,273,274],"}.":[123,135,177],"}/":[17,29,44,124,125,129],"}:":[158,199,210],"}\\":[44,197],"}]":[34,43,44,84,105,131,132,133,153,154,207],"}_":[112,114,115,214],"}attr":41,"}e":197,"}|":[34,199],"}}":80,"~ \"":[43,197,210],"~${":210,"~*":57,"~\"":[34,44,177],"~number":197,"~uint":43,_a:[87,258],_abs:[22,34,46,160],_accept:262,_accepted:131,_accessor:43,_account:17,_acquire:[22,43,46,81,108],_add:[44,57,59,68],_address:[87,258,272],_adjust:[11,44,67,135],_adjuster:34,_age:[92,161],_algorithm:224,_all:[34,43,44,54],_alloc:[57,74],_allowed:[87,258],_alphabet:34,_already:[87,258],_and:[11,34,67],_animal:265,_api:57,_append:[11,34,57,60,65],_apply:34,_arg:87,_argument:[65,68,69,87,258],_arguments:43,_asc:68,_ascending:69,_asterisk:34,_at:[34,36,39,40,43,44,54,57,65,68,112,114,115,184,211,213,261],_auto:[40,41],_available:[87,258],_avg:135,_avoided:[65,87,258],_bad:87,_base:[34,43,74],_basic:[155,252],_batch:42,_be:134,_between:[34,42],_binary:40,_blank:[34,44,118],_block:[87,258],_blog:270,_body:[112,130,261,270,274],_bool:[36,44,54,65],_broken:87,_bu:34,_buffer:[54,60,87,158,258],_build:14,_builtin:[38,55,65,71],_bulk:[34,44,54,57],_busy:[87,258],_but:11,_by:[34,37,38,39,42,43,57,65,68,69,74,171,271],_byte:[87,134,258],_bytes:122,_cache:[22,34,41,43,46,48],_calc:42,_call:[11,87,131,258],_caller:34,_calloc:44,_cancel:[22,34,42,44,46,81,85,86,87],_canceler:44,_cas:87,_case:[34,43],_cast:[43,65],_character:57,_characters:57,_charlen:74,_check:[14,42,65],_checks:118,_child:[87,258],_chunk:[43,44],_chunked:43,_chunks:44,_circle:[22,38,41,44,46,160,267,271,275],_class:[34,135,202],_classify:[22,34,44,46,114,135,160],_clear:[22,34,38,42,43,46,65,81,90,106,108],_client:197,_clone:12,_close:[11,38,42,43,50,54,57,60,61,65,69,74],_code:[34,63,74,83,105,199],_column:[22,34,36,41,42,43,44,46,47,48,61,65,91,93,95,104,114,134,135,142,154,177,196,259],_columns:[22,34,36,40,41,42,43,44,68,80,91,92,100,112,138,160,162,165,168,169,170,171,172,173,176,179,182,184,191,193,196,197,198,199,211,212,213,224,225,261,264,265,266,267,268,271,274,275],_com:262,_command:[22,42,43,46,48,54,74,83,84,87,137,155,207,252,258,268,272],_comment:182,_commit:60,_compare:65,_compile:57,_compress:[44,51],_concurrency:152,_cond:70,_condition:34,_conditions:34,_conf:43,_config:[12,43,96],_configs:103,_configure:[34,41],_connected:[87,258],_connection:87,_const:[11,34,57],_content:[22,46,48,54,57,83,112,114,115,122,134,135,177,179,182,196,197,224,225,242,270],_control:[43,87,258],_controllen:43,_copy:[22,34,43,44,46,47,81],_corrupt:[34,87,258],_count:[22,34,43,46,81,84,114,115,137,153,155,207,214,244,258,263,268,272],_creat:34,_create:[11,22,34,37,38,40,41,42,43,44,46,47,51,55,57,66,68,71,74,80,81,91,93,95,102,103,104,105,106,107,108,112,114,115,116,117,120,121,122,123,130,134,135,142,143,144,148,153,154,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,201,206,210,211,212,213,214,220,221,224,225,242,261,265,266,267,268,270,271,273,274,275],_ctx:[22,34,38,40,42,43,44,46,48,49,50,51,53,55,57,58,59,60,61,62,63,64,65,66,67,68,69,71,72,74,87,113],_cumulative:[112,114,115,135],_current:50,_cursor:[22,34,36,41,43,44,46,48,58],_dat:[33,34,38,39,41,42,44,68,91,121,134,140,196,197],_data:[22,34,43,46,48,66,74,87,258],_database:[40,41,99,252],_dataset:[37,157,159,219],_date:12,_day:[22,34,44,46,160],_db:[22,36,37,38,39,42,43,44,46,48,54,57,65,104],_deadlock:[65,87,258],_debug:[7,14],_decr:65,_default:[34,40,43,52,56,63,64,252],_defrag:65,_del:43,_delete:[22,38,43,46,59,65,68,69,81,97,98,149],_delimited:45,_delimiter:[118,146],_denied:[87,258],_dependent:44,_desc:68,_descending:69,_descriptor:[87,258],_device:[87,258],_df:34,_diff:34,_difference:68,_digit:34,_dir:[12,34,38,43,74],_directory:[87,258],_disable:[34,44],_disk:34,_dist:40,_distance:[22,35,38,40,41,44,46,160,197,267,275],_domain:87,_dot:34,_down:[87,258],_drilldown:135,_dump:43,_ecmascript:[47,135],_element:[43,62],_elements:[44,122],_empty:[87,258],_enabl:34,_enable:[34,43,44],_enabled:43,_enc:[56,63,69],_encoding:[22,34,46,48,63,74],_end:87,_enough:[34,44,87,258],_entries:[50,88],_entry:59,_equal:177,_error:[34,43,47,74,87,135,258],_errors:34,_escalation:[22,29,34,36,46,48,54,149],_escape:57,_estimate:[38,43,58],_estimated:34,_euc:63,_eval:[22,34,41,46,81,133],_event:262,_exec:[34,43,54,57,87],_exist:[22,43,46,65,81,117,123],_exists:[87,258],_expand:[22,34,44,46,81],_expander:[41,44,209,274],_expanders:[124,125,129,209],_expansion:[38,41],_expire:[34,65],_expr:[3,22,34,40,42,43,44,46,48,54,66,74,100,102,135,163,165,166,167,174,178,210],_expression:[135,210],_extract:[43,45],_failure:73,_false:[34,54,65],_family:[34,44],_file:[43,83,87,155,209,252,258],_fileinfo:34,_filename:87,_files:[87,258],_filter:[22,34,41,42,43,44,46,81,87,113,122,137,160,171,176,214],_filtered:[34,44],_filters:[34,42,43,44,103,144,221,223,224,225],_fin:[40,43,54,57,73,74],_finalizer:[54,66],_find:[22,34,46,160],_fitlers:134,_flags:[34,40,43,44,51,57,63,68,71,74,177,196],_float:[43,71,122],_flow:[87,258],_flush:[22,34,43,44,46,81],_for:[11,43,105,135],_form:34,_format:[34,87,258],_free:74,_friends:267,_full:[12,22,34,42,44,46,160,169],_func:[34,42,54,66,70,74,145],_function:[43,74,87,131,211,258],_fuzzy:44,_geo:[22,38,43,46,48,63,122],_get:[22,34,38,39,40,42,43,44,46,49,50,51,52,54,56,57,59,62,63,64,65,66,68,69,70,74,81,96,98,145,149],_github:17,_global:43,_gqpt:154,_gqtp:154,_groonga:83,_group:[43,68],_gt:69,_hash:[33,34,43,44,47,58,68,69,80,91,92,102,104,105,106,107,108,112,114,115,116,117,120,121,122,123,130,134,135,140,142,158,161,162,165,170,171,172,173,176,177,184,191,193,197,198,200,211,242,265,266,267,268,270,271],_header:93,_hex:63,_highlighter:34,_hit:[84,137,155,207,258,268,272],_hits:[112,135],_hook:[22,46,48],_host:154,_hour:[22,44,46,114,160],_html:[22,34,38,40,41,42,43,44,46,114,135,153,160],_http:[154,155],_hugetlb:38,_hyphen:34,_i:[87,258],_id1:105,_id2:105,_id:[12,34,38,39,42,43,44,51,54,57,60,61,62,65,68,69,74,78,85,115,122,131,135,153,197,268,275],_idf:211,_ids:44,_if:65,_ii:[22,34,43,44,46,48,63,92],_illegal:87,_implemented:[87,258],_improper:87,_in:[22,35,36,38,41,42,44,46,58,63,83,87,134,160,258,267,271,275],_inappropriate:87,_incompatible:87,_incr:65,_indented:63,_index:[22,34,36,41,42,43,44,45,46,48,51,65,80,92,93,103,104,112,115,117,122,130,134,135,142,158,161,168,169,172,176,177,179,182,196,197,198,210,211,212,213,224,225,242,261,267,268,270,271,274],_indexer:39,_indexes:43,_info:[22,34,40,44,46,48,66],_information:93,_init:[38,40,42,43,54,57,63,65,70,73,74,199],_initialized:[87,258],_input:[43,83,87,197],_inspect:[22,34,44,46,48,81],_install:[7,8,21,23,32],_int:[43,44,57,65,71,122],_interrupted:[87,131],_interval:197,_invalid:[65,68,69,87],_io:[34,42,43,123],_ip:[258,272],_is:[34,38,43,44,54,65,83,87,131,258],_iso:34,_isspace:74,_items:176,_ito:38,_itoh:38,_ja:41,_jis:[29,239],_jp:[29,63],_json:53,_kana:[34,158],_katakana:34,_key:[33,34,35,36,38,39,40,41,42,43,44,47,51,58,63,68,69,71,78,80,91,92,93,95,102,103,104,105,106,107,108,116,120,122,123,130,134,135,138,140,142,143,144,148,153,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,206,210,211,212,213,216,221,224,225,242,261,265,266,267,268,270,271,273,274],_keys:[34,44,68,172,173,177,211,212,213,266,267,268,275],_keywords:[34,57],_koi:63,_label:43,_labeled:135,_large:[33,34,44,87,92,121,140,220,258],_latin:63,_lcp:68,_leading:[135,177],_leak:14,_left:[38,58,87,167,258],_len:[40,51,57,63],_length:[22,44,46,74,112,114,115,135,160,171,258],_level:[22,34,41,43,46,74,81,92,110,111,151,153,199],_lexicon:43,_likes:[83,112,114,115,135,196,197,242],_limit:[22,34,35,41,43,46,70,81,87,99,100,113,123,142,258,266],_limited:63,_line:134,_link:[87,258],_links:[87,258],_list:[22,34,35,36,38,40,42,43,44,46,81,87,95,117,143,153,214,258,268],_literal:42,_load:[22,41,46,81],_loaded:[44,105],_local:154,_location:[34,83,271],_lock:[34,38,49,65,70,74],_locked:65,_locks:[87,258],_log:[34,40,41,42,43,63,74],_logger:[34,40,43,63],_logical:43,_long:[87,258],_loose:[22,34,46,160],_lt:69,_lz4:[44,92],_lzo:[51,87],_malloc:74,_many:[42,87,258],_map:[34,263],_mark:34,_mask:65,_match:[22,42,44,46,48],_max:[44,50,52,61,87,135,145,178,258],_mecab:43,_medium:[92,121],_memo:177,_memory:[34,40,87,258],_message:[43,83,210,270],_messages:[12,17],_middle:34,_min:[34,43,44,52,61,135],_minute:[22,44,46,160],_mode:[34,42,171,191],_modified:271,_module:155,_month:[22,44,46,160],_most:[34,43,211,213],_mruby:[7,8],_msgpack:53,_mutex:[70,74],_n:[34,41,44,50,114,116,122,134,135],_nabe:42,_name:[37,42,43,47,51,63,65,83,92,96,97,98,105,114,115,116,134,135,140,156,177,182,214,258,272],_namen:171,_names:[43,55],_network:87,_new:[9,22,34,38,40,46,112,114,115,135,160],_next:[34,36,41,43,58,61,69],_nfthreads:70,_ngram:[34,44],_nhooks:59,_nil:[36,54,57,68,69],_no:[33,34,36,42,43,47,68,69,87,91,102,103,106,107,108,112,114,115,117,120,121,123,130,134,135,140,142,158,168,169,177,179,196,197,198,210,212,213,224,225,261,270],_nodelay:44,_nofile:[41,199],_none:[53,63],_normalize:[40,43,45,68,140,200,201],_normalizer:[43,87],_normalizers:43,_not:[65,67,87,95,102,107,109,130,131,135,148,177,258],_nromalize:200,_nsubrecs:[42,51,78,135,266],_null:43,_number:[22,34,44,46,83,105,115,244,255,258,272],_numbers:43,_o:[87,258],_obj:[11,22,34,38,39,40,41,42,43,44,46,48,51,54,55,57,58,59,60,61,62,63,66,67,68,69,71,72,74],_object:[34,87,122,123],_of:[22,34,46,87,104,105,134,160,238,258],_office:173,_offline:39,_offset:[34,42,43,57,74,87,100,258,266],_old:47,_on:[87,258],_one:134,_only:[44,87,258],_op:[11,34,43,44,57,67],_open:[34,36,38,40,43,50,54,55,58,60,61,69,74,87,123,258],_opened:[34,43,54],_operation:[87,258],_operator:[34,51,57,58,67,68],_optarg:[43,55,67],_optimize:34,_option:34,_options:[34,41,197],_or:[11,67,87,95,102,107,109,130,131,148,166,258,272],_order:34,_org:12,_otoj:14,_output:[42,43,54,87,100,258,266],_over:[87,258],_overlap:[34,44],_own:43,_p:63,_pack:23,_package:43,_parameters:[22,43,46,81,214],_parse:[43,56,57],_part:238,_pass:155,_pat:[33,36,41,43,44,63,68,69,80,91,92,93,95,103,104,112,114,115,117,121,122,130,134,135,140,142,143,144,148,153,158,168,169,171,172,176,177,179,182,196,197,206,210,211,212,213,221,224,225,242,261,267,268,270,271,273,274],_path:[12,34,39,40,41,42,43,65,123,151,153,154,156,207,250,255,258,268,272],_pattern:[43,171],_per:[38,54,112,114,115,135],_permission:87,_permitted:[87,258],_persistent:[34,51,68],_physical:34,_pipe:[87,258],_plugin:[34,37,38,42,43,44,74,87],_plugins:[34,38,43],_point:[58,63,122,166,267],_pop:43,_popular:[112,114,115,135],_port:154,_pos:34,_position:[34,44,51,92,93,112,114,115,122,130,134,135,158,168,169,177,179,182,196,197,198,210,211,212,213,224,225,242,261,268,270,271,274],_posting:[44,58,61],_pragma:135,_prefix:[7,8,23,32,34,36,43,69,146,202,223,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241],_preparer:[138,216,217,219],_prepend:65,_pretty:[84,135],_previous:50,_printf:42,_probability:[38,138],_proc:[22,34,42,43,44,46,48,54,74],_process:[87,258],_processes:[87,252,258],_prolonged:34,_proxy:155,_ptr:[43,54,57,74],_push:11,_put:[22,34,41,43,46,81,109,111,153],_pvector:[43,54,57],_ql:42,_qlog:40,_queries:[84,137,155,207,258,268,272],_query:[11,34,40,41,42,43,44,57,63,138,157,158,159,209,216,217,219],_range:[22,34,43,46,65,81,87,112,113,137,214],_rate:[84,137,155,207,258,268,272],_ratio:[34,42,44],_raw:34,_rc:[49,50,51,52,54,55,56,57,58,59,60,62,64,65,66,67,68,69,73,74],_read:87,_reader:43,_reading:[34,202,223],_realloc:74,_record:[22,34,46,65,105,115,244,245],_records:[22,34,40,41,43,44,46,105,160],_recover:[42,43,44,55],_rectangle:[22,35,36,38,41,44,46,58,160,275],_recursive:43,_recv:42,_reduce:34,_reference:[34,135],_refused:[87,258],_regexp:34,_register:[22,37,46,74,81,103,104,112,113,114,115,116,117,125,129,132,133,134,135,144,158,171,173,181,184,191,193,194,209,221,224,225],_reindex:43,_reinit:65,_release:[12,22,43,46,81,106],_removable:142,_remove:[22,34,38,40,41,42,43,44,46,65,81,91,104,153,214],_rename:[22,39,41,42,44,46,47,51,65,68,81,91,104],_reopen:[22,40,44,46,81,109,110],_repair:39,_request:[44,131],_res:154,_resource:[34,65,87],_resources:34,_result:[68,87,135],_results:68,_retry:87,_rewriter:44,_rewriters:34,_right:[38,58,167],_rk:[22,43,46,69,160,206],_roles:92,_romaji:34,_root:43,_rotate:43,_ruby:43,_s:42,_same:41,_scalar:[34,44,47,51,91,92,93,95,102,103,104,105,106,107,108,112,114,115,116,117,120,122,123,130,134,135,142,143,144,148,158,161,165,168,169,170,171,172,173,176,177,179,182,184,196,197,198,210,211,212,213,224,225,242,261,266,267,270,271,274],_scan:34,_schema:43,_score:[34,38,40,41,43,51,78,91,135,138,197,211,212,213,271,275],_scorer:[43,87],_script:132,_search:[22,34,38,40,43,44,46,48,68,115,138,160,202,206,223,236,238,240,241],_second:[22,44,46,160],_section:[34,42,43,44,51,92,93,134,270,271],_seek:[87,258],_seg:34,_segment:34,_segments:[34,44],_sel:[45,92],_select:[3,22,34,38,43,44,46,57,58,59,81,112,114,117,135,137,214,244],_selector:[22,42,43,46,81,153],_send:[44,50,53,54],_sequence:[87,258],_sequential:44,_serial:91,_set:[22,34,39,40,42,43,44,46,47,49,50,52,54,56,59,62,63,64,65,66,69,70,81,96,97,104,145,149],_setoperation:[34,44,68],_setpshared:41,_shard:[22,43,46,81,117,214],_show:34,_shutdowned:[87,258],_signal:70,_sis:[68,140,196,197,259,273],_size:[11,22,34,43,44,46,51,54,57,60,63,65,66,68,69,71,74,104,112,122,144,160],_sjis:63,_sjlj:42,_skip:[34,41,44],_slice:[22,34,44,46,160],_small:[87,92,121,258],_snip:[40,42],_sock:262,_socket:[87,258],_sort:[43,44,68,266],_sortby:[43,44,100],_sound:34,_sounds:34,_source:[12,34],_space:[87,121,258],_sparse:43,_speech:238,_split:44,_stable:[34,52],_stack:87,_stamp:[34,199],_started:83,_station:173,_stop:[34,42,43,144,225,262],_str:[57,271],_strerror:42,_string:[14,34,41,43,44,56,57,112,114,115,135],_substring:[22,44,46,160],_success:[49,50,51,54,55,57,65,73,74,87,199],_such:[87,258],_suffix:[38,43],_suggest:37,_sum:[22,34,46,112,114,115,135,244],_supported:[87,258],_symbol:34,_symbolic:[87,258],_synonyms:209,_syntax:[34,44,47,57,87,135],_system:[34,38,87,258],_t:[70,87],_table:[3,22,34,36,38,39,43,44,46,48,51,57,58,61,65,81,104,134,135,142,143,154,177,214],_tables:[41,43,54],_tag:[91,112,114,115,135,168,172],_tags:[267,271],_take:44,_target:[42,43],_temporarily:[34,87,258],_term:[43,45],_text:[14,42,43,44,57,63,115,118,135],_tf:[34,43,211],_thread:[22,43,46,48,145,154],_threads:145,_threshold:[29,34,36,38,43,54,64,138,149,158,216,217,219],_time:[34,43,83,84,137,155,199,258,268,272],_timeout:[34,44,49,86,87,258],_timestamp:130,_tiny:[43,44],_title:[103,130,154,268,270],_to:[34,43,44,56,113,270,271],_token:[34,42,43,44,87],_tokenize:[22,34,43,44,46,81,226],_tokenized:[118,146],_tokenizer:[34,40,43,44,63,87,92,112,114,115,122,130,134,135,141,142,143,144,153,154,158,168,169,177,179,182,196,197,198,210,211,212,213,221,224,225,242,261,268,270,271,274],_tokenizers:43,_too:[42,87,258],_touch:[36,55],_tp:152,_transposition:44,_true:[43,54,65],_truncate:[38,42,51,68],_ts:43,_tsv:[53,209],_type:[22,34,40,42,43,44,46,48,54,55,62,63,65,66,68,78,92,103,114,134,135,153,154,156,157,158,166,207,238,265,266,267,268,270,271,273],_types:[34,42,43,118,202,252],_uint:[43,71,122],_unavailable:[34,87,258],_unknown:87,_unlink:[54,65],_unlock:[65,70,74],_unmap:[22,34,43,46,55,81,123,130],_unregister:[22,43,46,81,104,124,129],_unsupported:87,_untag:[22,41,46,160],_update:[51,68,87,135,196],_usage:[34,121],_use:[42,43,54,87,113,258],_user:[22,46,48,66,74,155,252],_users:271,_utf:[56,63,69],_v:34,_valid:155,_value:[34,36,38,39,41,42,43,44,51,54,57,63,65,69,78,115,132,133,134,135,162,242],_values:[22,34,38,42,43,44,46,63,65,160],_valule:172,_var:[42,44,57,66,71,74,122],_vars:74,_vector:[34,41,42,43,51,54,57,65,80,91,92,93,102,112,114,115,135,158,176,182,191,193,265,267,271,274],_version:[12,22,38,42,43,44,46,48,54,84,87,137,155,156,168,169,170,179,207,252,258,268,272],_versions:12,_voiced:34,_void:44,_vprintf:42,_vsize:[54,57],_w:226,_week:[22,34,44,46,160],_weight:[42,51,80,92,93,134],_wgs:63,_when:83,_whole:270,_win:[43,74],_window:[34,87],_windows:[43,74],_with:[7,8,44,51,68,134,140,196,197,259,273],_word:[34,42,43,103,144,221,225],_would:[87,258],_xml:53,_xxx:135,_year:[22,44,46,160],_yyyymmdd:[112,114,115,117],_zlib:[44,51,87,92],_zone:155,_zstd:[44,87,92],aardvark:34,abc:[43,162],abcde:118,abi:43,about:[14,21,74,153,160,244],above:131,ac:201,accept:[36,262],accepts:[148,153],accesses:51,accessor:[43,65,68],accurate:179,acquire:49,acquires:49,acronym:250,actual:155,add:[17,31,40,42,65,114,135,146,160,239,244],added:[45,58,65,68],adding:65,additional:[34,41],address:[38,40,153,158,258],adjust:135,adjuster:[34,42,80,92,115],admin:[36,42,43,44],advanced:45,advantage:179,adventure:92,adventurer:92,after:58,again:[49,155],against:[51,55,153],age:[47,92,93,104,134,135,161],ages:[92,140,161],aggregate:179,ahost:210,aio:41,akio:[34,36,40],al:239,alert:[42,109,110,153,155],algorithm:34,ali:91,alias:[47,96,97,98],aliased:47,aliases:[47,96,97,98],alice:[47,91,92,95,121,135,143,148,155,161,171,177,196,252,271],alisa:177,all:[34,40,43,44,51,54,55,58,112,114,115,135,153,196,197,274],alloc:[44,84,137,153,155,207,258,268,272],allocate:[22,44,260],allocated:74,allocates:74,allow:[40,135,177,196],allowed:159,allows:179,almost:250,alpha:202,alpine:26,already:[49,74,159],also:[92,112,114,115,135,179,196,197,211,250],always:113,am:[169,179],amazon:34,amd:12,an:[55,58,68,74,155,236,262],and:[34,41,42,43,44,45,49,51,53,55,57,58,65,68,74,92,135,144,153,155,157,159,171,177,179,197,199,211,212,213,225,242,270,275],animation:267,ann:12,anonymous:104,another:43,any:43,aomi:34,apache:34,api:[1,3,11,15,22,34,36,37,38,39,40,41,42,43,44,45,46,49,50,51,54,55,60,65,70,73,74,87,195,252],appears:179,appended:65,apple:[200,236],application:[105,155,252],applications:179,applied:45,approximate:166,appveyor:42,april:12,apt:[12,18,21,25,31,40],aptitude:14,ar:[146,259,261],arai:43,aramaki:[36,38],arc:146,architecture:43,architectures:12,archive:[12,22,23],are:[17,41,44,49,55,57,58,74,80,157,159,179,199,211,212,213,250],arg:[210,258],argc:70,argument:[34,156,197,211],arguments:[74,134,153],argv:70,armenian:[202,223],armhf:42,arnaud:38,array:[34,89,121,134],arrow:34,art:271,arted:197,artful:34,article:270,articles:270,as:[17,40,54,74,135,146,153,155,157,159,179,250,256],ascending:114,ascii:[34,196,197,228,240,241],aspx:262,assigned:43,associated:74,assumed:66,at:[45,58,153,271],auth:[155,252],auto:[34,113,135,138],autoconf:[6,38],autogen:[6,12,17,40],automake:[6,36],automatically:55,autotools:[3,5,7],available:[45,74,262],avg:[42,115,135,152],aware:74,axaixiuxuexeoxo:[202,223],ba:34,back:[197,270],background:153,backlog:34,backup:[55,103],backward:148,bad:[41,42,44,258],bar:[202,223],base:[12,34,43,74,155,238],baseball:[267,270],based:[58,168,169,179,256],bash:29,be:[51,54,55,57,58,65,68,74,99,129,148,153,159,250,262],beaver:[31,34],became:256,because:[44,55,155,207,211,250,262],become:45,been:12,before:21,begin:152,bellefleur:34,bernard:43,beta:45,between:[22,34,41,42,44,46,65,159,160],bi:[259,261],bigram:[34,154,157,158,259,261],bigramlexicon:130,bill:[43,259,261],billiard:[259,261],bin:[18,32],binary:[0,207,243],bind:38,binding:[45,168,169],binlib:12,bionic:[31,34],bison:12,bit:[8,21,23,24,25,27,30,31,32,41,43,44,121,154,243],black:200,block:265,blog:[182,261,268,270],blogs:261,bm:[211,213],bob:[47,95,135,143,148,155,161,177,252,271],body:[34,90,94,101,107,130,168,169,252,261,270,274],bom:36,book:197,bookmark:[80,103],bookmarks:[80,103,105,117],books:92,bool:[34,41,43,44,91,112,114,115,121,122,134,135,144,166,167,196,225,265,273],boost:[158,216],boston:271,both:65,bottom:[38,58,167],box:[202,223],brad:44,brazil:266,brew:[18,28],british:274,broken:[51,55,123,258],brooklyn:271,browser:17,bsd:[5,29,42,43],buf:[51,65,68],buffer:[54,63,65,89,121,262],buffered:60,bug:[40,45],build:[8,12,21,25,31,32,41],builder:60,building:53,built:65,bulk:[43,57,65],bullet:[202,223],but:[148,153,159],buzz:158,by:[40,54,55,57,58,73,74,196,250,266],bye:270,bytes:[66,74],cache:[22,34,35,40,43,46,50,65,81,84,137,155,207,258,268,272],cafedomancer:44,cake:173,calc:[34,43,135],callback:158,called:74,caller:66,calling:[73,74],calloc:44,calros:161,camp:271,can:[17,49,53,54,55,74,129,134,148,153,155,179,211,250],canadian:[202,223],cancel:131,canceled:[86,131],candidate1:138,candidate2:138,candidate:138,cannot:[22,260],capital:34,carlos:[95,143,148],cas:258,cases:250,cast:[22,34,46,65,160,196],casted:65,casts:65,cat:12,cd:[12,17,24,25,27,28,29,30,31,32],cdbs:38,ce:[234,235,239],ceekz:41,center:166,centos6:40,centos:[12,18,22,23,29,34,36,38,40,41,42,43,44,256],central:271,cents:[228,233,234,235],cflags:30,ch:146,change:[40,155,252],changed:[45,155],character:[74,92],characteristics:179,charlie:271,check:[14,22,34,35,38,43,46,65,81],checked:12,checking:55,checks:[42,55,118,201,202,203],china:266,choose:153,christian:43,chroot:12,chunk:[34,89,121],chunked:34,chunks:263,ci:[20,22,40,41,42],ciritical:155,cities:165,city:[165,271],cjk:34,clang:[40,41,42],clean:14,clear:[42,65],clearlock:[22,35,40,42,46,81,153],clears:51,client:[153,155,158,211,250],clone:[3,6,7,8,12,13],close:34,clumns:242,cmake:[3,5,6,29,32,40,41,43,44],co:158,code:[17,148,199,207],codes:[12,73],coffee:173,col:65,color:200,column:[11,22,34,35,36,38,39,40,41,42,43,44,46,47,51,55,58,65,66,68,72,80,81,102,103,104,105,106,107,108,112,114,115,116,117,120,123,130,135,138,140,142,143,144,148,153,154,158,165,169,170,171,172,173,177,179,182,184,191,193,196,197,198,210,211,214,216,217,219,224,225,242,261,265,266,267,268,270,271,273,274,275],columnn:40,columns:[34,36,40,44,55,63,134,157,242],com:[9,266],come:271,comma:43,command:[21,26,40,43,44,52,54,63,74,84,123,137,148,151,153,155,156,157,168,169,170,179,207,210,250,258,268,272],commandinput:43,commands:250,comment:[43,182,270,271],comments:[182,270],commit:17,common:[38,68,69,197],compared:179,compatibility:[34,148,201,202,203,223],compatible:155,complete:[39,138,158,216,218],composition:[34,201,202,203,223],compress:[44,92,121,134],computed:74,cond:[41,70],condition:197,conditional:138,conditions:171,conf:263,config:[8,22,32,43,46,47,81,82,104,149],configuration:[41,155,158],configure:[3,14,17,23,24,25,27,28,30,31,36,38,39,40,42,135,197,214,261],confirm:17,conifugration:21,connection:258,connections:153,constant:[34,43],contain:40,container:57,content:[38,40,41,42,83,105,112,114,115,122,134,135,142,155,170,177,179,182,196,197,198,211,224,225,242,252,270],contents:74,context:[43,54,57,63,65,179],contrast:153,contrib:12,copa:43,copied:74,core:154,correct:[138,158,217],correction:217,corresponding:65,corrupt:117,cosmic:[31,34],cosmo:[41,42],could:262,count:[112,114,115,135],country:[102,266,272],cover:179,coverage:14,cp:34,cpu:[0,29,154,155,252],crch:146,create:[74,103,153],created:[74,112,114,115,184,271],createfilemapping:43,createrepo:12,creates:[57,74,157],crit:[109,110,153],critical:[74,109,153],ctrl:[153,258],ctx:[9,50,51,54,55,57,63,65,66,68,74],curl:[21,28,29,40,105,131,153,155,158,207,252],current:[47,63,70],currently:[53,55,155],cursor:[58,61,69],customize:155,cutter:[6,7],cuttlefish:[31,34],cve:34,cxxflags:30,daemon:[153,158,159,250],daiki:[36,37,40],dangerous:[51,55],dangling:117,danish:224,dash:[29,202,223],dat:[34,44,220],data:[55,59,70,105,155,162,207,252],database:[22,34,43,46,54,55,65,68,81,123,130,135,151,153,155,157,179,263],dataset:[157,158,159],datasets:157,date:154,dav:171,dave:161,david:171,day:198,db1:252,db2:252,db:[34,38,39,43,44,51,54,55,65,66,68,71,90,101,104,121,123,141,142,153,154,155,156,158,207,242,250,255,258,268,272],dbms:179,dcb:42,dcmake:[7,8,32],dd:[197,199],ddl:261,de:[17,63],deb:[12,25,31,40],debhelper:38,debian:[14,18,22,23,34,38,40,41,42,43,44,256],debootstrap:12,debug:[8,34,43,109,110,153,155],decrypt:12,defalt:36,defaul:162,define:[22,46,81,153],defines:157,defrag:[22,35,41,46,81],dejan:44,deleted:65,delimit:41,demo:267,dependent:[34,104],depends:45,deprecated:[82,245],derived:159,descending:43,describe:74,describes:153,description:[44,259,271],designed:250,desktop:[8,32],dest:[68,152,153],destination:65,detail:154,details:[12,74],dev:[6,7,25,31,155],develop:[82,224],developed:224,developer:271,developing:224,development:271,develops:224,dewangga:43,df:213,dgrn:[7,8],dh:12,dicrc:28,dictionary:[200,238],diff:[12,154],directory:[74,159,258],disable:[38,155,262],disables:155,disk:[121,210],dist:12,distance:165,distributions:12,dll:[38,40,42,44],doc:[12,16,17,18,274],docker:[22,23],dockerhub:26,docs:44,document:[12,36,153,168,169,179,197,211,213],documentation:21,documentations:[160,244],documents:[177,179],dodaisuke:34,doesn:[65,123,155],domain:[16,57,65,74,93,95,141,143,153,258,272],don:[53,57,155],done:49,donut:173,dot:[202,223],download:12,downloads:32,dragonfly:36,draw:267,drawings:[202,223],drilldown:[34,35,42,43,44,100,266,267,271],drilldowns:[34,43,44],drilldownss:135,droonga:[171,172,191,214],due:179,dump:[22,34,35,36,38,40,42,43,44,46,53,81,109,117,142,149,153,155],dutch:224,ea:[146,199],each:[57,138,216,217,219],ear:146,earch:146,earlier:148,easier:211,easy:211,ec:135,echo:123,ecmascript:[40,41,135,195,197],edge:9,edict:[42,44],edit:[12,22,35,44,46,160,197],editor:17,editrc:38,effective:153,eggs:270,eight:268,eito:41,el:[226,228,231,232],elapsed:[34,83,199,207],element:[43,80,197],elements:[44,63,80],elfring:40,ellip:165,em:[202,223],emacs:17,emerg:110,emerge:[109,153],emergency:[109,153,155],emfile:262,emoji:202,emphasize:170,empty:43,en:[138,146,216,234,235],enable:[6,12,17,25,36,41,146,155],enablerepo:24,enables:155,encoding:[56,63,74,153,207],ency:154,end:[152,168,207,258],endpoint:159,eng:[138,216],engi:[138,216],engin:[138,216],engine:[138,146,168,169,179,211,216,217,218,219],enginen:216,english:[14,135],enhanced:45,enqueue:9,entries:[43,91,105,106,107,108,112,114,115,135,142,151,168,169,196,197,242,270],entry:[59,90,91,94,100,101,102,112,115,130,135,270],entrykeys:142,env:209,environment:21,eof:153,eol:34,epel:[34,40],equivalent:63,er:210,eric:161,errbuf:34,errno:[42,43,262],error:[34,41,42,47,54,58,74,83,109,110,135,153,155,210,213,262,268],errors:105,errror:210,es:239,escape:57,escaped:57,estimate:43,estimated:[44,58,144],estimates:58,etc:[12,155,242,252],etime:152,euc:[29,41,153,239],ev:262,evaluated:132,event:[138,157,158,159,216,217,219],events:[158,252],ex:146,exact:[11,92],example:[135,153,265,266,267,268,270,272,275],examples:[36,114],excel:209,except:242,exclamation:43,exclude:[40,41,42,112,114,115,117,161],exe:[12,32],exec:258,executable:153,execute:[153,159],executed:272,executes:153,executing:54,executor:[114,115],exist:[65,123,211],existence:55,existing:[153,159],exists:[112,114,115,117,142],exit:[73,153],expander:177,expect:42,expired:34,explain:43,expr:[47,57,65,66,72],express:[8,32,40,41],expression:[34,43,44,57,133,135],expressions:155,ext:146,extracted:57,extracts:57,fa:146,fac:34,facebook:[22,40],factor:[42,135],failed:[34,44,49,96,123,268],failures:12,family:34,fast:[83,105,112,114,115,135,146,168,169,170,171,172,179,191,196,197,211,270],faster:250,favorite:17,favorited:271,favorites:271,fb:[202,223],fbnteqr:43,fc:[202,223],fd:262,feature:[17,55,211],fedora:[12,18,22,23,29,36,38,40,41],fgets:43,file:[36,123,153,155,258],filename:258,files:[12,155],filter:[34,36,40,41,43,44,47,80,91,92,100,102,161,165,171,172,173,176,177,195,197,206,210,219,259,261,266,267,271,273,275],filtered:[34,44,112,114,115,135],fin:66,finalizes:74,finds:68,finished:131,finnish:224,firefox:17,firewood:[40,41],first:[74,112,114,115,135,196,197,270,271],five:268,fix:[44,45,93,95],fixed:40,flag:63,flags:[33,34,43,44,51,54,57,61,63,65,68,69,71,74,89,93,95,121,134,141,143,153,154,220,265,266,267,268,270,271,273],floating:243,flower:265,fluent:13,flush:104,flushviewoffile:43,followee:271,follower:271,following:[51,74,153,157,159,250],fontaine:38,foo:34,force:[34,43,44,146,151,202,223,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241],foreground:153,fork:17,forks:153,form:[34,196,201,202,203,223,255,258,268],format:[17,45,53,74,156,207],formula:12,found:[58,68],four:268,frank:161,free:[36,42,54,89],freebsd:[22,43,46],freed:55,frees:74,french:224,freq:[158,219],frequency:[42,138,158,211,212,213,216,217,219],friday:184,friends:267,from:[44,45,54,55,57,58,74,153,173],fromtable:91,fsf:40,ftb:45,ftp:[12,154],fu:146,fuku1:34,ful:146,full:[43,121,134,146,179,210,211,236,237,262],fulltext:[146,168,169,179],fullwidth:[34,43],fumiyasu:38,func:[34,54,66,70,74],functions:[34,42,43,44,45,74,112,114,115,135,171,173,181,184,191,193,194],fuzzy:[22,44,46,160],ga:[146,154,201],garbage:[41,89],gb:[207,263],gc:44,gcc:[24,27,29,30,38,40,41],gdb:14,gem:12,gemfile:40,generate:74,generated:[74,157],generates:157,geo:[22,35,36,38,39,40,41,44,46,58,63,160,267,271,275],geodetic:243,geoindex:267,geopoint:[35,36,41,44,58,121,122,134,165,166,167,265,266,267,272,275],geoppoint:58,geosite:267,german:224,get:[38,40,42,58,144,146,272],getaddrinfo:40,getenv:43,gets:74,gettext:[17,18],ghz:154,gi:146,gib:[33,242],git:[6,7,8,12,13,17],github:[6,7,8,12,13,17,19,34,38,40,41,42,43,44],gitter:[2,43,44],gituub:44,glaser:44,glib:41,global:18,glossary:21,gnu:[3,5,8,12,18,22,23,29,30,34,38],gnupg:12,go:[198,250],golubchik:[34,43],gone:267,goo:[196,197],good:[112,114,115,135,144,171,191,196,197,198,225],google:[135,211,212,213,218],goroo:250,gpg:12,gpl:45,gps:0,gqtp:[0,1,3,22,24,25,27,31,34,40,41,42,43,87,152,153,154,249,257,272],gr:[135,146],graceful:136,grease:265,gregex:41,grep:[24,25,27,31,262],grn:[3,22,34,36,37,38,39,40,41,42,43,44,46,47,48,49,73,74,86,87,92,96,100,102,104,113,123,131,135,145,163,165,166,167,174,178,199,209,210,262,270],grndb:[22,34,42,43,44,46,123,150],grnline:268,grnslap:[22,46,150],grntest:[13,36,38,40,44],grnwrap:268,gro:179,gronga:[209,218],gronnga:218,gronoga:155,groo:135,grooga:34,groonga:[1,2,10,13,14,18,19,20,21,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,53,54,65,70,73,74,78,80,81,82,83,84,86,89,90,91,92,93,94,95,99,100,101,103,104,105,109,110,111,112,114,115,117,118,124,127,129,131,134,135,136,137,138,140,141,143,145,146,149,150,151,152,163,165,166,167,168,169,170,171,172,174,177,178,179,182,191,193,195,196,197,198,199,200,201,204,205,206,207,209,210,211,213,214,215,216,217,218,219,220,221,224,226,228,236,237,242,243,249,250,251,252,255,258,259,261,262,263,265,266,267,268,269,270,271,272,273,274,275],groongau:237,group:[68,266],grroonga:218,gt:[168,169],gtar:30,gted:17,gtihub:38,gui:134,gzcat:44,gzip:[29,40,251],halfwidth:[201,202,223],hana:267,hanako:102,handle:54,handled:155,hard:242,hardy:36,has:[12,45,58,68,74,117,157,211],hash:[34,134,220,271],hashidatks:34,hat:29,have:[53,55,198],haystack:11,hdd:154,he:[226,228,231,232],head:[42,152,258],header:[43,63,88,91,92,93,95,99,102,104,105,107,109,112,113,114,116,117,118,119,120,121,123,124,125,129,130,131,132,133,135,136,137,139,140,142,143,145,146,147,148],heavy:[202,223,250],hello:[112,114,115,135,144,196,197,198,225,226,228,231,232,236,239,270],help:[14,17,38],helpful:211,hendro:41,here:[74,153,157,159],hex:267,hh:[197,199],hideki:43,high:91,highlight:[22,34,42,43,44,46,160],hino:41,hiragana:202,hiroaki:43,hiroshi:[36,38,44],hirotaka:43,hiroyuki:43,hits:92,hmm:271,ho:239,hobby:199,hoge:163,home:[12,29,112,115,117,239],homebrew:[22,23,38,42,44],homepage:154,hook:[59,117],horikoshi:38,horizontal:[202,223],host:[154,158,210,258,272],hostname:[153,155,156],hottolink:45,hour:[49,114],how:[22,74,113,249],html:[3,12,14,22,38,40,41,42,44,46,155,156,160,168,169,179],http:[0,1,12,17,22,24,25,27,31,34,36,38,40,41,42,43,44,46,80,103,105,131,135,150,152,153,154,155,158,170,171,172,191,210,219,236,237,249,250,252,264,265,266,267,268,270,275],httpd:[12,39,40,41,42,44],httprewritemodule:155,https:[12,13,17,21,24,25,27,28,29,30,31,32,34,251,262],hw:28,hyphen:[202,223],ia:[259,261],ic:[61,239],ichii:38,id:[0,34,36,42,43,44,47,51,54,58,61,62,63,65,68,69,78,80,83,89,91,92,93,95,102,103,114,115,117,121,122,134,135,138,141,143,148,153,158,161,171,172,176,196,197,198,199,200,210,216,217,219,220,224,225,261,265,266,267,268,270,272,273,274,275],identifier:47,ideograph:34,ideographic:43,idf:42,ids:[58,80,91],ieee:243,ignore:[43,225],ignored:[40,55],ii:[34,44,210],il:[259,261],ill:259,illegal:258,image:26,immediate:[44,136],implementation:250,implemented:[43,45],improper:258,inappropriate:258,include:[16,34,42,112,114,115,117,158,161,202],includes:43,incompatible:258,indent:63,index:[12,34,42,43,44,45,51,55,58,60,61,92,93,117,179,196,197,242,267,270],indexblog:270,indexbuf:51,indexes:134,infinity:34,inflected:[34,238],info:[34,43,44,92,109,110,151,153,155,210,213],init:[25,29,40,42,66],initial:[34,112,114,115,135],initialize:54,initialized:[54,74],initializes:[73,74],innodb:0,input:[53,83,258],inspect:[34,43,44],inspected:63,install:[12,14,18,21,23,24,25,27,28,30,31,32,40,42,74,152,154],installer:12,instantly:179,instead:[74,90,129,153,245,256],intel:154,internal:42,internally:[53,54],interpreter:12,interrupted:258,into:54,introduction:103,inv:154,invalid:[74,104,258],inverted:179,io:[22,34,43,44,45,46,81,123],ip:[154,158,258,272],ipa:27,iptables:252,is:[17,34,40,42,43,44,49,51,53,54,55,57,58,65,66,68,74,80,86,112,114,115,123,131,135,142,144,146,153,155,157,159,168,169,170,171,172,177,179,191,196,197,199,207,210,211,225,236,245,250,252,256,258,265,268,270,272,274],isn:[54,55],iso:197,issue:19,issues:42,it:[51,53,54,55,57,58,65,68,73,74,83,105,112,114,115,135,148,153,159,196,197,198,199,211,250,256,267],itagaki:36,italian:224,item:[138,157,158,216,217,219,220],items:[135,176],its:[57,74,153],itself:80,ivh:27,iwai:[39,40],ja:[12,17],jacob:43,james:273,japan:[102,266,272],japanese:238,jason:273,javascript:[12,22,155,156,264,272],je:273,jeff:273,jekyll:12,jemalloc:42,jennifer:273,jersey:271,jessie:[12,25,34,41,42,43],jira:44,jiro:267,jis:[69,206],job:154,jobs:154,john:[102,273],joseph:273,jq:268,jquery:[36,42],json:[34,36,38,40,42,43,44,53,80,84,105,138,154,155,156,207,252,258,268],jsonp:[38,43,158],juman:27,just:[55,65,157,198,271],ka:201,kakesa:43,kamicup:34,kana:[138,157,158,216,217,219],kare:202,karmic:14,kashihara:42,katagiri:41,katakana:[201,202,223],kawada:42,kawaji:40,kb:263,kbytes:154,keeps:80,ken:267,kenichi:[36,38],key:[12,33,34,40,41,42,43,44,47,51,63,65,68,69,80,83,91,92,93,95,102,103,105,112,114,115,121,122,130,134,135,138,142,143,144,148,153,154,155,158,161,162,165,170,171,172,173,176,182,184,191,193,196,197,200,201,206,211,216,217,219,220,225,242,252,258,259,265,266,267,268,270,271,272,273,274,275],keybuf:68,keyid:12,keys:[42,43,63,68,155],keyword:[40,41,57,135,168,169,177,179,196,211,212,213],keywords:57,kib:[43,242],kinjirou:267,kiske:40,kk:210,klose:43,km:271,ko:45,koi:[29,40,153],korea:266,kuriyama:42,kwic:179,kytea:[29,34,40,41,146],label:[34,43,44,91,176],labeledarguments:34,lacked:262,langasek:44,language:17,larger:159,largetext:220,last:[40,158,271],lat:154,latency:154,latin1:40,latin:[29,34,40,153],latinovic:44,latitude:63,launch:159,launchpad:[12,31,42],layout:12,lc:17,ld:[226,228],learn:159,learned:159,left:58,length:[44,74],lenny:38,less:[44,210],let:198,letter:[34,201,202,223],level:[74,92,109,110,153,155,159,258],levels:155,lexicon:[34,43,103,130,140,154,177,182,198,270],lf:152,lgpl:45,li:[239,259,261],lib:[36,41,124,125,129,262],libedit:[27,29,35,36,38,40,43],libevent:[25,29,31],libgcc:42,libgroonga:20,liblz:25,liblzo:31,libmecab:[12,25,31],libmsgpack:[25,31],libraries:[211,250],library:[53,250],libstemmer:42,libtool:[6,43],libwinpthread:42,libzmq:[25,31],libzstd:25,lic:171,license:[12,45],light:[202,223,250],like:[51,250],limit:[34,38,58,68,69,100,138,155,199,219,266,267,268],line:[21,54,83,250],lines:14,link:[265,266,272],links:[265,266,272],linux:[22,26,34,46,154],lion:40,lisp:34,list:[12,157,159],listen:[40,153,155,252,262],lists:42,ll:[146,226,228,231,232,259,261],lldb:[6,7],llt:146,lo:[226,228,231,232],load:[22,34,35,36,38,39,40,41,43,44,46,47,80,81,82,90,91,92,95,102,103,104,112,114,117,121,138,143,144,148,153,155,158,159,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,206,210,211,212,213,214,216,217,219,224,225,243,261,265,266,267,268,270,271,273,274,275],loaded:[44,105,133],loadedlogs:34,loading:44,loads:159,local:153,locale:[17,34],localeoutput:34,localhost:[12,38,105,131,152,153,154,155,158,207,252],localstatedir:[29,36],location:[21,34,41,44,83,153,155,252,265,266,267,271,272,275],lock:[22,34,42,43,46,49,55,65,81,90],locked:74,locks:[74,179],log:[12,22,29,34,40,43,44,46,74,81,91,92,117,151,153,155,158,199],logaling:21,logical:[22,34,43,44,46,81,104,137,214,244],logicalcountcommand:112,logicalrangefiltercommand:114,logicalselectcommand:115,logicaltableremovecommand:117,logrotate:[40,42],logs:[91,112,114,115,116,117,120,123,130,135,140,158,159,210,212,213,214],logyyyymmddhhmmss:158,longer:45,longest:68,longitude:63,longitudexlatitude:41,longtext:[47,58,92,121,122,134],loose:[34,176],looseitems:176,love:270,lru:88,ls:12,lt:[146,168,169,179],lte:146,lts:[21,31],lucid:[12,36,41],lz4:[29,34,42,44,92,134],lz:[29,34,121,134],lzo:[38,40,42,51,258],m6:30,mac:[22,23,36,40,42,44],machine:153,macports:[22,23,38],magazine:135,mail:154,main:[12,25,70],maintenait:224,maintenant:224,maintenir:224,make:[14,17,18,23,24,25,27,28,30,31,42,74,152],makecache:40,makefile:[7,8,12],malloc:42,man:[35,44,161],managed:55,management:[21,55,179],manager:[155,252],managing:55,many:[80,157,211,250],map:38,mariadb:[41,42,44],mark:[43,201,202,223],marked:256,markup:16,markus:40,marverick:36,masaharu:[39,40],masahiro:36,masanori:44,masatoshi:[34,43],massachusetts:271,master:155,match:[22,29,34,41,42,43,44,54,80,92,100,149,155,168,169,179,196,198,199,211,212,213,224,225,259,261,264,268,271,274],matched:58,math:[22,34,46,160],matsuu:36,matthias:43,maverick:38,max:[34,40,42,44,69,70,84,89,99,121,135,137,152,154,155,171,178,197,207,212,242,258,268,272],maxos:34,may:[51,55,158],mb:[34,40],mbytes:154,mdev:44,me:[128,139,239],means:[53,58,65,74,155,199],mecab:[0,12,24,25,27,28,29,31,34,35,36,38,40,41,42,43,44,45,238],meerkat:38,memcache:255,memcached:[0,1,14,22,43,44,249,272],memcpy:34,memo:[42,177,211],memory:[22,74,210,260],memos:[43,122,134,171,172,184,191,193,211,224,225],memset:43,mercurial:12,message:[34,44,74,105,110,153,199,210,212,213,270],messagepack:[29,34,38,39,40,43,53,207,252,258],messages:41,metadata:[40,202,238],micro:271,microsoft:[8,32,43],middle:[202,223],migrated:[112,114,115,135,196,197],mike:102,millisecond:49,mime:[43,252],min:[34,40,42,49,69,135,152,154],minagawa:41,mingw:[12,34,38],minimum:74,minus:[202,223],mips:44,mitsuhiro:36,mix:34,miyashita:44,mizuhara:43,mkdir:103,mkostemp:42,mktime:43,ml:10,mlock:36,mm:[197,199],mmap:[22,41,260],mnt:26,mode:[42,43,44,45,153,239],moden:171,modern:271,modifier:[202,223],moero:267,monday:184,money:267,monkey:265,month:267,montywi:39,mooz:38,more:[74,153,159,179,211,258],moritapo:267,moritars:270,morning:198,most:58,mpaa:161,mrb:44,mroonga:[22,34,39,40,41,42,43,44,80,103,105,112,114,115,135,168,169,170,171,172,177,182,191,196,197,209,211,214,270],mruby:[6,7,8,34,41,42,43,44,132,133,214],msdn:262,msec:49,msg:[9,43],msgpack:[34,43,44,207,258],msvc:43,msyql:80,mte:45,multiple:250,multithread:68,munin:[24,25,27,29,31,35,38,40],murata:34,museum:271,music:[199,267],must:[51,55,57,58,65,74,99,159],mutex:[41,70,74],mv:111,my:[112,114,115,135,196,197,270],myamanishi3:34,myisam:0,mysql:[0,12,24,25,27,31,42,43,45,80,118,135,168,169,179,209,211],naist:238,nakamura:43,namae:202,name:[34,51,54,55,56,57,65,66,68,71,74,89,93,94,100,102,116,117,119,122,124,125,134,141,147,153,155,157,159,177,182,197,210,265,266,267,268,270,271,272,273,275],namebuf:[51,65],names:[91,92,122],nan:34,nanoseconds:199,naoina:[40,41],nargs:57,narwhal:38,natanael:43,natty:38,ne:146,need:[53,57,148,153],needed:[54,155],negative:[66,74],neologism:238,nested:41,net:266,netbsd:[36,41],netinet:43,network:258,never:113,newark:271,newids:91,newly:[148,179],newnames:91,news:[12,34],newvalue:51,next:[34,58,66],nfkc:[34,201,202,203,223],nfs:29,nfthreads:70,ng:146,nginx:[24,25,27,31,34,40,41,42,43,44,251,256],nginxhttpstubstatusmodule:42,ngram:34,ni:[176,206],nice:198,night:[198,274],niho:176,nihon:[176,216],niku:42,nil:63,nine:268,nippon:216,nise:42,no:[34,35,41,43,45,58,103,104,105,112,114,115,123,135,138,210,220,258,262],noarch:27,node:12,nodes:63,nogpgcheck:40,none:[29,34,118,135,144,146,153,155,157,258,270],nonexistent:[96,97,112,114,115,135],normalize:[22,34,42,46,81,119,201,202,203,210],normalized:[118,201,202,203],normalizer:[22,42,46,63,81,92,112,114,115,122,130,135,141,142,143,144,158,169,176,177,179,196,197,198,200,206,210,211,212,213,221,224,225,242,261,268,270,271,274],normalizerauto:[34,43,92,112,114,115,118,119,122,130,134,135,140,142,144,146,158,168,169,176,177,179,196,197,198,200,203,206,210,211,212,213,221,224,225,228,229,230,231,232,233,234,235,236,237,239,240,241,242,261,268,270,271,274],normalizernfkc:[34,119,134,200,223],normalizers:119,normally:[53,54,55,153],norwegian:224,not:[12,40,43,51,55,74,80,117,148,258,262],note:74,nothing:[53,193],notice:[43,92,109,110,153,155,212,213],notrelated:117,now:[22,34,46,160,256,271],nroonga:[21,177,270],nsis:12,nsubrecs:[51,115,135,266,267,271],nt:[234,235],nterms:89,nul:[38,55,74,237],number:[22,44,46,58,66,74,89,99,135,153,154,160,197,242],numbers:43,nvars:66,ny:271,obata:[34,36],obj:[51,55,57,59,62,63,65,66,67,72,89],object:[22,34,40,43,44,46,55,59,65,66,67,68,72,74,81,92,104,117,134,197,258],objname:[90,101],obsolete:256,obtained:74,occurred:58,ocelot:[38,41],october:42,of:[34,40,45,51,54,58,65,66,68,74,89,99,138,153,155,157,158,159,168,169,179,182,242,271],off:[42,155],official:12,offset:[34,55,57,58,59,65,68,69,74,100,138,268],ohkubo:44,ok:102,okapi:[211,213],old:[12,74],oldvalue:51,om:239,omitted:207,on:[17,45,53,55,58,65,68,74,146,155,168,169,179,252,262],one:[34,44,74,153,159,179,250],oneiric:[38,41],onga:179,ongaeshi:[36,40,41,43],onigmo:[42,43,44,210],oniguruma:43,only:[43,53,65,74,153,155],oo:[146,220],ooo:220,op:[51,57,58,67,68],opaque:258,open:[123,268],openbsd:[43,44],opened:[55,122,199],opens:[55,58],operation:[58,117,258,262],operator:[34,43,58,202,223],optarg:[55,67],option:[34,153,159],options:[43,151,152,153,154,155,157,158,159,177,214,250],or:[42,51,53,55,58,68,74,112,131,148,153,172,177,196,209,213,226,228,258,262,274,275],oracle:[22,23,38,40],orangain:41,org:[266,272],origin:17,original:[53,103,115,135,273],os:[5,7,8,12,18,22,23,36,40,41,42,43,44,55,99,104,154],osdn:[12,43],other:[43,49,51,55,74,153,159],others:202,otherwise:[65,74],out:[34,154],output:[34,36,39,40,41,42,43,44,53,54,80,84,91,92,100,112,138,156,160,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,197,199,207,211,212,213,261,265,267,268,270,271,275],outputs:159,outputting:53,overcommit:242,owned:57,owner:155,packages:[12,17,24,25,27,28,29,30,31,32,256],pai:44,pair:[138,157,158,216,217,219],pangolin:40,parallel:12,parameter:[58,65,66,68,148,153],parent:[115,135],parenthesized:34,parker:43,parse:47,partial:11,pass:155,passed:[12,55],passes:12,pat:[44,69,220],patch:45,path:[18,26,34,51,55,65,68,74,93,95,122,129,141,143,153,154,155,252],paths:140,patprefix:273,patricia:134,patsuffix:273,pattern:[34,196,197],pcre:[34,40],pen:236,pentium:154,people:92,performance:[179,250],performed:262,period:34,permission:258,permitted:117,persistent:[55,68,93],pg:161,pgroonga:[34,43,103,199,211,214],php:[40,250],physical:89,pid:[29,34,35,43,44,153,199],pikonyan:267,pip:[12,18],pkg:[25,29,30,36,43],platforms:74,play:274,player:91,players:[91,143],please:[17,55,256],plugin:[22,34,38,42,43,46,48,81,103,104,112,113,114,115,116,117,122,129,132,133,135,144,158,171,173,181,184,191,193,194,209,221,224,225],plugins:[129,242],po:[17,44],poedit:17,poeple:92,point:[39,58,63,95,131,166,167,259],pointed:74,pointer:74,popular:135,port:[28,153,154,158,255,258,272],porting:45,ports:26,portuguese:224,pos:63,position:[58,74,121,134,146,202,223,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241],posix:[43,197],post:[12,34,40,41,42,43,44,105,135,158,196,197,251,271],posted:271,postgresql:[0,179,214],posting:58,poyonga:250,ppa:[22,23,42],pre:[45,158],precise:[12,40],predicate:34,prefix:[6,12,14,18,22,29,38,43,44,46,68,69,92,138,160,197,206],previous:256,price:[112,114,115,265],printf:[34,63],priority:135,proc:[24,25,27,31,34,43,59,66,68,72,74,99,123,135],process:[34,51,55,153],processed:199,processes:153,processid:34,processor:[24,25,27,31],program:159,progress:[34,199],project:197,prolonged:[202,223],proonga:250,properties:199,protocol:[0,153,156,207,250,252,255,256,272],pthread:[38,41],ptr:74,pub:12,published:12,pull:[12,26],push:[12,17],pushes:54,put:196,pyenv:18,python:[12,18,250],qps:[152,154],quantal:40,queries:[154,179],query:[0,11,22,34,37,40,41,42,43,44,46,57,67,80,81,92,100,112,124,125,129,138,155,157,158,159,160,168,169,179,195,196,197,198,199,209,210,211,212,213,216,217,219,224,225,250,256,259,261,265,267,268,270,271,272,273,274,275],queryexpandertsv:[22,40,41,46,124,125,129,177,208],question:43,quetzal:40,queue:[9,262],quiet:258,quit:[12,22,34,46,81,153,199,258],quiz:267,quorum:34,quote:197,raccoon:267,radious:166,rake:12,rakutan:270,raltime:219,ram:154,rand:[22,34,46,160,275],range:[22,34,42,43,46,81,92,93,95,114,141,143,258],ranguba:[34,42,80],raring:[41,42],rather:250,raw:[21,121],rc:[34,54,73,87,104,146,199],rch:146,rd:[259,261],rdbms:[0,43],rdiscount:12,re:55,read:[179,258],reading:[34,202,238],readings:[176,206],readme:[12,41],reads:159,real:[47,179],realloc:[34,36],really:[112,114,115,135,196,197],realtime:[138,219],receive:158,received:153,receiver:159,recently:88,recommend:250,record:[22,34,43,44,46,58,65,68,80,114,115,135,165,244,265,268,272],records:[43,58,114,135,199],recover:34,recovered:55,recovers:55,rect:165,rectangle:[40,58],recursive:[6,7,8,12,13],red:29,redcloth:12,redhat:38,redmine:42,reference:[34,41,43,65,80,117,134,135,142],referenced:104,referencedbycolumn:142,referencedbytable:142,referencedtable:142,references:[117,142],referencetable:142,regexplexicon:[130,210],register:[22,41,43,46,81,118,124,146,271],registered:[74,129,179],regular:[155,210],reindex:[22,34,43,44,46,81],relation:65,release:[12,32],released:[12,45],releases:73,remained:[199,210],remote:153,remove:[34,65,117,118,123,142],removed:129,removep:65,removing:55,rep:154,replaced:[157,159],replication:211,replied:271,replies:270,reply:270,repoforge:40,report:34,reports:74,repositories:12,request:[12,22,34,41,42,43,44,46,81,85,86,105],required:[21,123,155,252],res2:68,res:[58,67,68,154],resizes:74,resource:258,resources:[54,55,73],rest:[63,74],restart:256,result:[11,68,159,165,179,207,258,270],results:[40,68,179],retry:258,returned:[58,74],returns:[51,58,68,74],reverse:[12,155],rewrited:45,rf:155,rid:[60,61,63],right:58,ringtail:[41,42],rl:[226,228],rlimit:[41,199],rm:155,ro:146,roles:92,romanian:224,roonga:[191,196,197],root:[41,43,155,272],rose:265,row:179,rpm:[12,24,27,36,38,40,41,42],rroonga:[21,41,42,43,50,172,177,182,193,195,211,270],ruby:[0,6,7,8,12,21,22,34,40,41,42,43,45,46,80,81,168,169,193,195,210,211,250],rubygems:40,rubyinstaller:8,run:[12,14,22,26,153,155,249],running:[55,131,153],runs:[153,159],russian:224,ryo:34,sa:[138,217],sae:[138,217],saer:[138,217],saerc:[138,217],saerch:[138,217],sako:43,salamander:[41,42],same:[41,49,80,250],sample:[154,159],satoh:38,satoshi:34,satouyuzh:34,saturday:184,saucy:[41,42],save:12,say:[196,197,270],scalar:134,scan:14,schema:[22,34,43,46,81,122,157],scope:43,score1:11,score2:11,score:[11,34,41,43,51,80,95,112,114,115,135,138,143,148,165,177,197,211,212,213,216,217,219,261,267,268,270,271,275],scorer:[22,34,43,100,104,165,173,195,197,211,264,267],script:[42,44,135,154,163,166,167,174,178],se:[146,216],sea:[146,216],sear:216,searc:216,search:[38,40,68,69,92,135,138,146,168,169,179,196,197,209,211,216,217,218,219],searched:58,sebastian:42,sec:49,section:[51,60,74,121,134,153],sed:[28,38,40,43],see:[74,92,153],segment:[44,89],segments:89,segv:[35,41],seki:34,select:[22,34,35,36,37,38,40,41,42,43,44,46,47,50,80,81,82,85,86,88,91,92,95,102,104,112,114,128,131,137,143,148,153,155,160,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,195,196,197,198,199,200,209,210,211,212,213,219,224,225,244,250,259,261,265,266,267,268,270,271,272,273,274,275],selector:100,selects:58,self:154,sen:45,senboku:41,send:[158,250],sender:159,senna:[34,112,114,115,135,196,197,209],sentense:43,separated:53,separator:[202,223],sequence:[138,157,158,216,217,219],serach:217,serch:[138,217],sergei:[34,43],sergey:42,serial:91,serihiro:40,serve:12,server:[40,42,43,117,153,155,171,172,191,250,252,256,267],servers:117,service:[43,217,256],services:26,session:250,set:[65,154],sets:54,seven:268,sh:[12,21],sha:12,shard:116,sharding:[43,112,113,114,115,116,117,214],share:29,shared:[49,51,55],shell:153,shibuya:36,shidara:38,shift:[29,239],shimada:36,shimamura:[34,43],shimoda:36,shimomura:40,shinya:40,shiro:34,sho:41,shop:173,shopping:198,shops:[173,259],shorttext:[34,36,38,42,44,47,58,63,69,80,83,91,92,93,95,102,103,104,105,106,107,108,112,114,115,116,117,120,121,122,123,130,134,135,138,140,141,142,143,144,148,153,154,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,206,210,211,212,213,216,217,219,220,221,224,225,242,261,265,266,267,268,270,271,272,273,274,275],should:[54,74,148],show:34,shows:53,shutdown:[22,34,36,44,46,81,104,153,155,210,252,258],sid:[12,38,42,63,89],sigcont:41,sigint:38,sign:[12,202,223],signed:25,signing:12,sigsegv:68,sigstop:41,sigusr:38,silent:21,similar:[40,138,153],simple:256,since:[129,148,256],sis:38,site:[130,265,266,268,272,275],sitecountry:[266,272],sitedomain:[266,272],sites:[103,106,107,108],six:268,size:[51,63,65,68,69,71,74,89,121,122,123,134,263],sizeof:[43,54,57],sjis:[29,45,153],slash:197,sleepy:198,slice:34,slices:[34,44],small:[34,123],smaller:80,smith:44,snake:43,snippet3:179,snippet:[22,34,40,41,43,44,45,46,114,135,160],so:[55,65,68],soccer:267,socket:[258,262],soerr:262,soft:242,software:31,solaris:[5,7,8,22,23,38,40,43],solr:197,some:[34,43,73,157],sort:[34,43,44,68,171,172,173,177,211,212,213,267,268,275],sortby:[38,44,100,138],sound:[201,202,217,223],soundkitchen:[38,40],source:[12,34,43,55,65,83,93,95,122,267,268,270,271],sourceforge:[12,43],sources:[12,34,93,121,134],sozaki:34,space:[43,74,80,196,210,262],span:[168,169,170,179],spanish:224,spec:[12,34,36,40,41],specified:[58,66,74],specifies:153,specify:[17,65,153,155,157,159],specifying:74,speed:218,spelling:274,sphinx:[3,12,15,16,18,42,43,44],sphr:165,spil:43,sports:267,sql:[135,211,266],squeeze:[12,41],src:68,srpm:34,ss:[197,199,210],ssh:12,ssssss:199,st:[146,197,239],stable:82,stack:[41,258],stage:[34,44],standalone:[153,159],standard:243,standing:250,start:[43,84,137,155,198,256,258,262,268,272],started:[83,112,114,115,135,196,197],starting:74,starttime:[43,84,137,155,207,258,268,272],stateful:250,states:102,statistics:121,status:[22,35,36,40,41,43,44,46,63,81,84,102,153,154,155,207,250,268,272],steming:224,steve:44,still:131,stock:34,stop:[40,43,153,155,256],storage:[168,169],store:[54,57,58,65],stored:159,stores:57,str:[57,74],strerror:42,stretch:[22,23],strftime:34,strict:42,string1:163,string2:163,string:[11,22,40,42,43,44,46,57,65,66,74,112,114,115,135,160,163,171],strlen:74,studio:[8,32,40,41,43,44],su:44,sub:[12,22,34,41,43,46,160,171,176],subclass:[34,238],subject:41,submit:[138,158,216,217,219],subrec:63,subrecord:41,subscript:[202,223],substitution:177,succeeded:[95,102,107,109,130,148],success:258,successfully:74,successor:197,such:[17,40,129,157,159,179],sudo:[12,14,18,21,24,25,27,28,29,30,31,40,242,256,263,272],sufficient:[74,262],suffix:[157,159],suffixsearchterms:[196,197],suggest:[22,36,38,46,81,158,159,216,217,218,219],suggestion:157,suitable:153,suited:179,sum:[34,42,115,135],summary:[22,154,249],sunday:184,sunos:42,superior:179,superscript:[202,223],support:45,supported:[45,155],supports:[45,74,159],swedish:224,swig:45,syllabics:[202,223],symbol:202,synonym:[135,274],synonyms:209,syntax:[44,47,135,153,258],syscall:[42,268],sysctl:[43,242,263],system:[30,112,114,115,135,179,196,197,242,243,262],systemctl:[25,256],systemd:[25,40,43,44],systems:179,tab:53,table:[11,22,33,34,36,38,39,40,41,42,43,44,46,47,51,54,55,58,61,63,65,66,68,69,80,81,82,91,94,100,102,103,104,106,107,108,112,114,115,116,117,120,123,130,138,148,153,154,158,159,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,201,206,210,211,212,213,214,216,217,219,221,224,225,226,242,252,261,265,266,267,268,270,271,272,273,274,275],tablecursor:43,tablegroupflags:43,tablename:82,tables:[54,55,157,242],tag:[12,91,112,114,115,135,171,172,193,267],tags:[43,80,93,135,140,171,172,191,193,267],tahr:[31,42],tail:[12,258],tajima:40,takagi:34,takahiro:36,takashi:[38,102],takayama:43,takayuki:38,takes:131,takuto:36,tar:[12,24,25,27,28,29,30,31],target:[32,34,42,51,55,57,58,65,123,151,202],taro:267,tasuku:45,tatsuya:40,tc:[61,69],tcp:[44,153,158],te:[146,239],temporary:[55,153],term:[89,274],terminal:271,terms:[89,92,104,112,114,115,122,134,135,142,144,153,168,169,177,179,196,197,211,212,213,221,224,225,242,261,268,270],teruya:43,test:[12,14,135,154,265,268,270,271,272],testdb:[154,159],tests:12,tex:146,text:[40,43,47,58,83,92,105,107,112,114,115,121,122,130,134,135,142,146,154,177,179,196,197,207,210,211,212,213,220,242,252,270],tf:[63,211,212,213],than:[44,80,210,250],thanks:271,that:[40,49,51,53,57,58,65,66,68,74,117,142,153,179,199,250],the:[16,40,45,49,51,53,54,55,57,58,65,66,68,74,99,105,112,114,115,117,123,131,135,142,153,155,157,158,159,165,179,196,197,242,250,256,262,271],theater:274,theatre:274,them:57,then:74,there:[80,196,250,256],therubyracer:12,thesaurus:135,these:[55,179],thorsten:44,thread:[9,22,34,43,46,51,55,68,74,81,99,113,123,142,153,154],threadid:34,threads:99,threasd:153,three:[265,268],threshold:[38,43,64,65,101],through:155,thursday:184,thus:[157,159],tid:61,tim:34,time:[22,34,38,40,41,42,43,44,46,112,114,115,116,117,120,121,122,123,130,131,134,135,138,140,151,153,154,158,160,174,199,216,217,219,261,265,271],timeout:[44,49,65],times:49,timestamp:[44,112,114,115,116,117,120,123,130,135],timestamps:117,title:[12,34,41,42,103,105,106,107,108,130,142,177,182,211,265,266,267,268,270,272],titles:[196,197],tiwawan:43,tld:266,tls:44,tmp:[6,7,12,41,93,95,114,122,123,138,143,153,209,210,252,258,268,272],to:[22,40,44,45,49,51,53,54,57,58,63,65,68,74,83,96,103,112,114,115,123,135,148,153,155,159,179,196,197,249,271],tobby:177,todo:[6,7,14,34,51,52,54,55,56,57,58,59,60,61,62,64,65,66,67,68,69,71,72,75,77,79,80,83,92,105,114,118,128,135,157,160,180,192,196,197,214,242,244,252,253,254,269,270],token:[34,43,103,144,154,221,223,224,225],tokenbigram:[22,46,92,112,114,115,122,130,134,135,140,142,144,146,147,153,158,168,169,177,179,182,196,197,198,211,212,213,217,220,221,224,225,226,227,229,230,231,232,233,234,235,238,240,241,242,259,261,268,270,271,274],tokenbigramignoreblank:[22,46,134,147,227,261],tokenbigramignoreblanksplitsymbol:[22,46,134,147,227,261],tokenbigramignoreblanksplitsymbolalpha:[22,34,46,134,147,227,261],tokenbigramignoreblanksplitsymbolalphadigit:[22,34,46,134,147,227,261],tokenbigramsplitsymbol:[22,34,36,46,134,147,227,261],tokenbigramsplitsymbolalpha:[22,46,134,135,146,147,227,228,259,261],tokenbigramsplitsymbolalphadigit:[22,46,91,134,147,177,217,227,261],tokenbigramsplitxxx:228,tokenbigrm:91,tokenbigrma:146,tokendelimit:[22,46,134,146,147,158,219,223,227,237],tokendelimitnull:[22,37,46,134,147,227],tokendelmit:34,tokenfilternfkc:[22,34,46,202,222],tokenfilterstem:[22,25,31,34,42,46,222],tokenfilterstopstem:224,tokenfilterstopword:[22,42,43,46,144,221,222,224],tokenize:[22,41,42,43,46,81,144,147,202,223,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241],tokenizer:[22,34,40,42,46,81,258],tokenizers:[146,147],tokenkytea:40,tokenmecab:[22,34,40,46,197,202,223,227,259,261],tokenngram:34,tokenpattern:34,tokenregexp:[22,43,44,46,130,134,147,210,227],tokens:146,tokenstopword:34,tokentable:34,tokentrigram:[22,43,46,134,146,147,227],tokenunigram:[22,46,134,147,227],tokyogeopoint:[38,44,58,121,122,134,166,167,275],tom:177,tomita:36,tomo:267,tomoatsu:36,tomotaka:38,tomygx:43,too:[43,123,258,270],tood:[74,139],tool:21,top:[38,58,167],torinky:44,tortoisegit:8,totable:91,total:[89,121,154],touch:55,toybox:265,tr:12,tracker:19,transfer:[0,250,256,258],transitional:256,translate:17,translation:17,travel:271,travi:41,travis:[20,22,40,41,42],travisci:12,trie:134,tried:271,tries:49,trigram:34,tritonn:[112,114,115,135,196,197],truncate:[22,34,38,41,42,43,44,46,51,81,104],truncated:41,truncation:38,trust:12,trusty:[12,31,42],ts:[234,235],tsu:43,tsv:[43,156,207,258],tuesday:184,turn:155,tutorial:74,tweet:198,tweets:198,twiter:40,twitter:[3,22,271],two:159,tx:239,txt:[16,17],type:[34,44,51,53,54,58,62,63,65,66,68,71,93,95,118,138,140,154,162,216,217,219,265,266,267,268,270,271,273,275],types:[118,138,201,202,203,216,217,219],typo:[38,42],ubuntu:[14,18,21,22,23,34,36,38,40,41,42,43,44],ueno:[36,37,40],ui:135,uid:12,uint:[33,34,36,40,41,42,44,47,70,80,83,91,92,93,95,102,104,112,114,115,121,122,134,135,140,141,142,143,148,158,161,163,171,176,182,184,196,197,198,200,210,224,225,242,261,266,267,268,270,272,273,274,275],ul:146,ull:146,ultra:267,umask:42,umemoto:38,unchanged:74,under:[155,159],unicode:[34,43,201,202,203,223],unicorn:43,unified:34,unify:34,uninstall:40,unique:131,united:102,universe:31,unix:[3,5,8,29,42,83],unknown:[34,47,258],unlink:57,unlock:65,unlocked:74,unlocks:74,unmanaged:89,unmaps:55,unpatched:45,unsafe:55,unsigned:[42,50,51,57,60,63,65,66,68,69,71,74],unsplit:11,unsupported:258,until:[49,74],up:207,update:[17,18,25,27,31,34,40,60,258],updated:[17,45,261],updates:179,updating:49,upgrade:12,upload:12,uptime:[35,84,137,155,207,258,268,272],uri:[155,156,158],url:[12,38,42,103,156,272],usa:266,usage:153,use:[17,34,39,43,51,53,54,55,57,74,83,89,90,112,115,129,135,148,153,158,196,197,211,223,245,250,256,270],used:[53,54,55,65,73,88,91,148,153,159,250,271],useful:[51,153,211,270],useless:55,user:[66,117,154,155,158,161,169,171,177,179,182,197,242,267],username:[32,267],users:[32,34,44,47,63,85,86,91,93,95,102,104,117,120,121,123,134,135,143,148,155,161,177,199,252],uses:[53,55,159],using:[45,53,270],usr:[14,25,28,29,124,125,129,153,155],usually:159,utc:197,utf:[29,34,36,40,41,44,45,56,63,153,158,197,207,239],utopic:43,uubntu:14,uuid:44,uuuuuu:197,uzulla:38,v1:11,v2:11,vagrant:12,valgrind:14,value:[34,40,41,42,43,44,49,51,62,63,65,66,68,69,74,80,91,105,121,122,132,133,134,141,146,155,156,162,196,197,202,210,223,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,268,272],valuebuf:62,valuen:[171,172],values:[51,53,65,153],variable:74,variables:74,variety:267,vars:[66,74],varying:74,vc:34,vector:[22,34,40,41,43,44,46,80,112,114,115,134,135,160],version:[12,26,38,45,52,54,84,131,137,154,155,207,214,258,268,272],versions:256,vervet:[43,44],very:[83,105,112,114,115,135,168,169,171,179,191,196,197,211],video:267,virtualbox:12,visual:[8,32,38,40,41,42,43,44],vivid:[12,43,44],vm:[12,40,263],vmstat:263,vmware:12,voiced:201,vojtovich:42,volumes:26,waits:[49,74],wanabe:41,want:[153,250],wareohji:40,warn:[109,153],warning:[109,110,153,155,210,213],warp:42,was:262,watch:12,way:159,wc:[24,25,27,31],we:250,weakness:179,web:[12,29,35,135,138,196,217,219],webclips:170,wednesday:184,weight:[34,40,51,63,80,121,134,135,158,211,265],welcome:[112,114,115,135,196,197,271],well:179,werewolf:[43,44],wget:[24,25,27,29,30,31],wgs:[38,44,58,121,122,134,165,166,167,265,266,267,271,272,275],wheezy:38,when:[51,55,65,153,250],whether:[55,65],which:[74,153,159],whombx:41,wibowo:41,wiedenroth:42,wiki:155,wikipedia:[206,243],will:[65,74,153,250],wily:[43,44],win:[8,32],window:[22,34,46,244,245],windows:[3,5,6,7,22,23,34,38,40,41,42,43,44,45,74,136,154,262],wing:[40,41],without:[155,179],wo:[226,228],wonderland:92,word:[40,135,196,197,202,223],words:197,worker:[9,252],works:74,world:[226,228,236,270],write:[14,39,128,135,139],written:148,wsaenobufs:262,wsasend:34,www:12,x6:12,xcode:28,xenial:[31,44],xerus:[31,44],xml:[36,38,39,40,41,42,53,156,207,252,258],xt:[146,239],xvzf:[24,25,27,28,29,30,31],xxx:[34,41,43,44,135,153,197],xxxx:12,xxxxx:262,yak:[34,44],yakkety:[34,44],yamada:202,yamaguchi:38,yappo:[41,42,45],years:47,yes:[14,34,43,44,84,103,104,105,112,114,115,117,123,135,138,142,152],yito:[40,41],yoji:38,yoku:[41,42],york:[165,271],yoshioka:40,you:[17,51,53,54,55,57,74,148,153,155,157,158,159,196,250],younger:92,your:[17,21,38],yuki:38,yum:[12,18,24,27,40],yunqiang:44,yutaro:[34,43],yuya:43,yy:[47,135],yyyy:[197,199],yyyymm:214,yyyymmdd:[112,114,115,214],zapus:34,zcat:44,zenigata:267,zeromq:29,zesty:34,zip:[12,22,23,40],zlib:[25,29,31,36,38,40,41,42,51,92,121,134,258],zsh:[12,29],zstandard:[29,44,92,121],zstd:34,zunda:38,zxvf:12},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","12.3.2.1. GNU Autotools\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5","12.3.2.2. 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.3. 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. CentOS","2.3. Debian GNU/Linux","2.8. Docker","2.6. Fedora","2.2. Mac OS X","2.9. \u305d\u306e\u4ed6","2.7. Oracle Solaris","2.4. Ubuntu","2.1. Windows","9. \u5236\u9650\u4e8b\u9805","\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","News - 1.2.x","News - 1.3.x","News - 2.x","News - 3.x","News - 4.x","News - 5.x","News - 6.x","News in Senna period","7. \u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb","7.19. \u30a8\u30a4\u30ea\u30a2\u30b9","7.25. API","7.25.2. \u5168\u4f53\u8a2d\u5b9a","7.25.4. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_cache</span></code>","7.25.5. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_column</span></code>","7.25.6. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_command_version</span></code>","7.25.7. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_content_type</span></code>","7.25.8. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_ctx</span></code>","7.25.9. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_db</span></code>","7.25.10. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_encoding</span></code>","7.25.11. grn_expr","7.25.12. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_geo</span></code>","7.25.13. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_hook</span></code>","7.25.14. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_ii</span></code>","7.25.15. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_index_cursor</span></code>","7.25.16. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_info</span></code>","7.25.17. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_inspect</span></code>","7.25.18. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_match_escalation</span></code>","7.25.19. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_obj</span></code>","7.25.20. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_proc</span></code>","7.25.21. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_search</span></code>","7.25.22. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_table</span></code>","7.25.23. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_table_cursor</span></code>","7.25.24. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_thread_*</span></code>","7.25.25. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_type</span></code>","7.25.26. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_user_data</span></code>","7.25.1. \u6982\u8981","7.25.3. Plugin","7.12. Cast","7.6. \u30ab\u30e9\u30e0","7.6.4. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0","7.6.3. \u64ec\u4f3c\u30ab\u30e9\u30e0","7.6.1. \u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0","7.6.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. \u51fa\u529b\u5f62\u5f0f","7.3.3. \u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8","7.3.4. \u30ea\u30af\u30a8\u30b9\u30c8ID","7.3.5. \u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8","7.3.6. \u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9","7.3.7. <code class=\"docutils literal notranslate\"><span class=\"pre\">cache_limit</span></code>","7.3.8. <code class=\"docutils literal notranslate\"><span class=\"pre\">check</span></code>","7.3.9. <code class=\"docutils literal notranslate\"><span class=\"pre\">clearlock</span></code>","7.3.10. <code class=\"docutils literal notranslate\"><span class=\"pre\">column_copy</span></code>","7.3.11. <code class=\"docutils literal notranslate\"><span class=\"pre\">column_create</span></code>","7.3.12. <code class=\"docutils literal notranslate\"><span class=\"pre\">column_list</span></code>","7.3.13. <code class=\"docutils literal notranslate\"><span class=\"pre\">column_remove</span></code>","7.3.14. <code class=\"docutils literal notranslate\"><span class=\"pre\">column_rename</span></code>","7.3.15. <code class=\"docutils literal notranslate\"><span class=\"pre\">config_delete</span></code>","7.3.16. <code class=\"docutils literal notranslate\"><span class=\"pre\">config_get</span></code>","7.3.17. <code class=\"docutils literal notranslate\"><span class=\"pre\">config_set</span></code>","7.3.18. <code class=\"docutils literal notranslate\"><span class=\"pre\">database_unmap</span></code>","7.3.19. <code class=\"docutils literal notranslate\"><span class=\"pre\">define_selector</span></code>","7.3.20. <code class=\"docutils literal notranslate\"><span class=\"pre\">defrag</span></code>","7.3.21. <code class=\"docutils literal notranslate\"><span class=\"pre\">delete</span></code>","7.3.22. <code class=\"docutils literal notranslate\"><span class=\"pre\">dump</span></code>","7.3.23. <code class=\"docutils literal notranslate\"><span class=\"pre\">io_flush</span></code>","7.3.24. <code class=\"docutils literal notranslate\"><span class=\"pre\">load</span></code>","7.3.25. <code class=\"docutils literal notranslate\"><span class=\"pre\">lock_acquire</span></code>","7.3.26. <code class=\"docutils literal notranslate\"><span class=\"pre\">lock_clear</span></code>","7.3.27. <code class=\"docutils literal notranslate\"><span class=\"pre\">lock_release</span></code>","7.3.28. <code class=\"docutils literal notranslate\"><span class=\"pre\">log_level</span></code>","7.3.29. <code class=\"docutils literal notranslate\"><span class=\"pre\">log_put</span></code>","7.3.30. <code class=\"docutils literal notranslate\"><span class=\"pre\">log_reopen</span></code>","7.3.31. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_count</span></code>","7.3.32. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_parameters</span></code>","7.3.33. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_range_filter</span></code>","7.3.34. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_select</span></code>","7.3.35. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_shard_list</span></code>","7.3.36. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_table_remove</span></code>","7.3.37. <code class=\"docutils literal notranslate\"><span class=\"pre\">normalize</span></code>","7.3.38. <code class=\"docutils literal notranslate\"><span class=\"pre\">normalizer_list</span></code>","7.3.39. <code class=\"docutils literal notranslate\"><span class=\"pre\">object_exist</span></code>","7.3.40. <code class=\"docutils literal notranslate\"><span class=\"pre\">object_inspect</span></code>","7.3.41. <code class=\"docutils literal notranslate\"><span class=\"pre\">object_list</span></code>","7.3.42. <code class=\"docutils literal notranslate\"><span class=\"pre\">object_remove</span></code>","7.3.43. <code class=\"docutils literal notranslate\"><span class=\"pre\">plugin_register</span></code>","7.3.44. <code class=\"docutils literal notranslate\"><span class=\"pre\">plugin_unregister</span></code>","7.3.45. <code class=\"docutils literal notranslate\"><span class=\"pre\">query_expand</span></code>","7.3.46. <code class=\"docutils literal notranslate\"><span class=\"pre\">quit</span></code>","7.3.47. <code class=\"docutils literal notranslate\"><span class=\"pre\">range_filter</span></code>","7.3.48. <code class=\"docutils literal notranslate\"><span class=\"pre\">register</span></code>","7.3.49. <code class=\"docutils literal notranslate\"><span class=\"pre\">reindex</span></code>","7.3.50. <code class=\"docutils literal notranslate\"><span class=\"pre\">request_cancel</span></code>","7.3.51. <code class=\"docutils literal notranslate\"><span class=\"pre\">ruby_eval</span></code>","7.3.52. <code class=\"docutils literal notranslate\"><span class=\"pre\">ruby_load</span></code>","7.3.53. <code class=\"docutils literal notranslate\"><span class=\"pre\">schema</span></code>","7.3.54. <code class=\"docutils literal notranslate\"><span class=\"pre\">select</span></code>","7.3.55. <code class=\"docutils literal notranslate\"><span class=\"pre\">shutdown</span></code>","7.3.56. <code class=\"docutils literal notranslate\"><span class=\"pre\">status</span></code>","7.3.57. <code class=\"docutils literal notranslate\"><span class=\"pre\">suggest</span></code>","7.3.58. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_copy</span></code>","7.3.59. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_create</span></code>","7.3.60. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_list</span></code>","7.3.61. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_remove</span></code>","7.3.62. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_rename</span></code>","7.3.63. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_tokenize</span></code>","7.3.64. <code class=\"docutils literal notranslate\"><span class=\"pre\">thread_limit</span></code>","7.3.65. <code class=\"docutils literal notranslate\"><span class=\"pre\">tokenize</span></code>","7.3.66. <code class=\"docutils literal notranslate\"><span class=\"pre\">tokenizer_list</span></code>","7.3.67. <code class=\"docutils literal notranslate\"><span class=\"pre\">truncate</span></code>","7.18. \u8a2d\u5b9a","7.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","7.1.1. <code class=\"docutils literal notranslate\"><span class=\"pre\">grndb</span></code>","7.1.2. grnslap","7.1.3. <code class=\"docutils literal notranslate\"><span class=\"pre\">groonga</span></code> \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. <code class=\"docutils literal notranslate\"><span class=\"pre\">groonga-suggest-httpd</span></code>","7.1.9. groonga-suggest-learner","7.15. \u95a2\u6570","7.15.1. <code class=\"docutils literal notranslate\"><span class=\"pre\">between</span></code>","7.15.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">cast_loose</span></code>","7.15.3. edit_distance","7.15.4. <code class=\"docutils literal notranslate\"><span class=\"pre\">fuzzy_search</span></code>","7.15.5. <code class=\"docutils literal notranslate\"><span class=\"pre\">geo_distance</span></code>","7.15.6. geo_in_circle","7.15.7. geo_in_rectangle","7.15.8. <code class=\"docutils literal notranslate\"><span class=\"pre\">highlight_full</span></code>","7.15.9. <code class=\"docutils literal notranslate\"><span class=\"pre\">highlight_html</span></code>","7.15.10. <code class=\"docutils literal notranslate\"><span class=\"pre\">html_untag</span></code>","7.15.11. <code class=\"docutils literal notranslate\"><span class=\"pre\">in_records</span></code>","7.15.12. <code class=\"docutils literal notranslate\"><span class=\"pre\">in_values</span></code>","7.15.13. <code class=\"docutils literal notranslate\"><span class=\"pre\">math_abs</span></code>","7.15.14. now","7.15.15. <code class=\"docutils literal notranslate\"><span class=\"pre\">number_classify</span></code>","7.15.16. <code class=\"docutils literal notranslate\"><span class=\"pre\">prefix_rk_search</span></code>","7.15.17. <code class=\"docutils literal notranslate\"><span class=\"pre\">query</span></code>","7.15.18. rand","7.15.19. <code class=\"docutils literal notranslate\"><span class=\"pre\">snippet_html</span></code>","7.15.20. <code class=\"docutils literal notranslate\"><span class=\"pre\">string_length</span></code>","7.15.21. <code class=\"docutils literal notranslate\"><span class=\"pre\">string_substring</span></code>","7.15.22. <code class=\"docutils literal notranslate\"><span class=\"pre\">sub_filter</span></code>","7.15.23. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_day</span></code>","7.15.24. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_day_of_week</span></code>","7.15.25. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_hour</span></code>","7.15.26. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_minute</span></code>","7.15.27. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_month</span></code>","7.15.28. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_second</span></code>","7.15.29. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_week</span></code>","7.15.30. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_year</span></code>","7.15.31. <code class=\"docutils literal notranslate\"><span class=\"pre\">vector_find</span></code>","7.15.32. <code class=\"docutils literal notranslate\"><span class=\"pre\">vector_new</span></code>","7.15.33. <code class=\"docutils literal notranslate\"><span class=\"pre\">vector_size</span></code>","7.15.34. <code class=\"docutils literal notranslate\"><span class=\"pre\">vector_slice</span></code>","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. \u30ed\u30b0","7.7. \u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc","7.7.2.1. <code class=\"docutils literal notranslate\"><span class=\"pre\">NormalizerAuto</span></code>","7.7.2.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">NormalizerNFKC100</span></code>","7.7.2.3. <code class=\"docutils literal notranslate\"><span class=\"pre\">NormalizerNFKC51</span></code>","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. <code class=\"docutils literal notranslate\"><span class=\"pre\">scorer_tf_at_most</span></code>","7.11.3.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">scorer_tf_idf</span></code>","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. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenFilterNFKC100</span></code>","7.9.3. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenFilterStem</span></code>","7.9.4. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenFilterStopWord</span></code>","7.8.1. \u6982\u8981","7.8. \u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc","7.8.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigram</span></code>","7.8.3. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramIgnoreBlank</span></code>","7.8.4. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramIgnoreBlankSplitSymbol</span></code>","7.8.5. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramIgnoreBlankSplitSymbolAlpha</span></code>","7.8.6. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramIgnoreBlankSplitSymbolAlphaDigit</span></code>","7.8.7. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramSplitSymbol</span></code>","7.8.8. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramSplitSymbolAlpha</span></code>","7.8.9. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramSplitSymbolAlphaDigit</span></code>","7.8.10. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenDelimit</span></code>","7.8.11. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenDelimitNull</span></code>","7.8.12. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenMecab</span></code>","7.8.13. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenRegexp</span></code>","7.8.14. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenTrigram</span></code>","7.8.15. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenUnigram</span></code>","7.24. \u30c1\u30e5\u30fc\u30cb\u30f3\u30b0","7.4. \u30c7\u30fc\u30bf\u578b","7.16. \u30a6\u30a3\u30f3\u30c9\u30a6\u95a2\u6570","7.16.1. <code class=\"docutils literal notranslate\"><span class=\"pre\">record_number</span></code>","7.16.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">window_count</span></code>","7.16.3. <code class=\"docutils literal notranslate\"><span class=\"pre\">window_record_number</span></code>","7.16.4. <code class=\"docutils literal notranslate\"><span class=\"pre\">window_sum</span></code>","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:{"()":11,"(geopoint":271,"(v":11,"-benchmark":154,"-clear":151,"-command":82,"-compose":26,"-create":157,"-dataset":157,"-default":29,"-document":18,"-encoding":29,"-escalation":29,"-examples":12,"-files":12,"-flags":151,"-force":151,"-gqtp":256,"-help":29,"-http":256,"-httpd":[155,158,159,254,256],"-latest":12,"-learner":[158,159],"-level":151,"-localstatedir":29,"-lock":151,"-log":[29,151],"-lz4":29,"-match":29,"-message":29,"-munin":29,"-pack":29,"-package":29,"-path":[29,151],"-platform":29,"-plugins":29,"-po":12,"-prefix":29,"-release":12,"-server":256,"-suggest":[157,158,159],"-target":151,"-threshold":29,"-truncate":151,"-version":82,"-with":29,"-zlib":29,".group":[112,114,115,135],".max":242,".maxfileperproc":242,".overcommit":242,".po":17,".po\u30d5\u30a1\u30a4\u30eb":17,".sort":[112,114,115,135],"/linux":[7,25],":*":122,":index":122,"=encoding":29,"=message":29,"=number":29,"=path":29,"=platform":29,"[$":[112,114,115,135],"\u3042\u3052\u308b":261,"\u3042\u308a":[196,197],"\u3042\u308b":271,"\u3044\u304f":10,"\u3044\u308b":[117,142,205],"\u3044\u308d\u3044\u308d":265,"\u3046\u307e\u304f":10,"\u304a\u304f":10,"\u304a\u3055\u3089\u3044":10,"\u304a\u6c17":271,"\u304a\u77e5\u3089":[34,35,36,37],"\u304b\u3089":[6,7,8,10,24,25,27,28,29,31,32,158,206],"\u304c\u3063":270,"\u3053\u3061\u3089":10,"\u3053\u3068":12,"\u3054\u3068":270,"\u3055\u307e\u3056\u307e\u306a":275,"\u3059\u308b":[5,6,7,8,10,12,14,19,80,86,92,117,155,159,216,217,219,261,263,266,270],"\u305d\u306e":[29,210],"\u305f\u3044":12,"\u305f\u3081":[10,11,115,135],"\u3060\u3051":[10,12,80],"\u3065\u3051":82,"\u3066\u308b":271,"\u3067\u304d":[117,142,243],"\u3067\u304d\u308b":[10,11],"\u3068\u3044\u3046":122,"\u3068\u3057\u3066":243,"\u3068\u308a":10,"\u306a\u3044":[10,117,142,243],"\u306a\u3057":[197,252],"\u306b\u3088\u308b":[266,270,273],"\u306b\u5bfe\u3059\u308b":270,"\u306b\u95a2\u3059\u308b":243,"\u306e\u306b":261,"\u306e\u307f":[12,14],"\u306f\u3058\u3081":218,"\u3078\u3068":10,"\u307e\u305f":[7,270],"\u307e\u305f\u3050":270,"\u307e\u3068\u3081":12,"\u3084\u308a":10,"\u3084\u308b":12,"\u3088\u3046":[216,217,219],"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":252,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":252,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"\u30a2\u30f3\u30ab\u30fc":210,"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":12,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":9,"\u30a4\u30e1\u30fc\u30b8":26,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":32,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[6,7,8,14,17,18,23,209],"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[33,92,198,210,267,270],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[77,92,268],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":140,"\u30a4\u30f3\u30dd\u30fc\u30c8":12,"\u30a6\u30a3\u30f3\u30c9\u30a6":[112,114,115,135,244],"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":12,"\u30a8\u30a4\u30ea\u30a2\u30b9":47,"\u30a8\u30b9\u30b1\u30fc\u30d7":[196,210],"\u30a8\u30e9\u30fc":[83,263],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":262,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[122,208],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":197,"\u30aa\u30d7\u30b7\u30e7\u30f3":[152,153,154,157,159],"\u30ab\u30b9\u30b1\u30fc\u30c9":102,"\u30ab\u30d0\u30ec\u30c3\u30b8":14,"\u30ab\u30e9\u30e0":[33,76,78,91,92,112,114,115,121,135,142,165,266,268,270],"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":270,"\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2":0,"\u30ad\u30e3\u30c3\u30b7\u30e5":[112,114,115,135,155],"\u30ad\u30fc\u30ef\u30fc\u30c9":[261,271],"\u30af\u30a8\u30ea":[0,11,274],"\u30af\u30a8\u30ea\u30fc":[155,196,208],"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":155,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":199,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":1,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":153,"\u30af\u30e9\u30b9":210,"\u30b0\u30eb\u30fc\u30d7":[196,197,210],"\u30b1\u30fc\u30b9":[117,142],"\u30b3\u30de\u30f3\u30c9":[81,149,151,153,156,214,268,272],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[82,252],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":154,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[153,158,207],"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":2,"\u30b3\u30e1\u30f3\u30c8":271,"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[3,15],"\u30b5\u30a4\u30ba":92,"\u30b5\u30b8\u30a7\u30b9\u30c8":[158,215],"\u30b5\u30f3\u30d7\u30eb":[152,154],"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[196,197],"\u30b5\u30fc\u30d0":[0,258,272],"\u30b5\u30fc\u30d0\u30fc":[156,249,256],"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":256,"\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9":153,"\u30b7\u30b9\u30c6\u30e0":[19,271],"\u30b7\u30d5\u30c8":197,"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0":214,"\u30b8\u30aa\u30b5\u30fc\u30c1":267,"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":[79,92],"\u30b9\u30af\u30ea\u30d7\u30c8":[12,197],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":154,"\u30b9\u30b3\u30a2\u30e9\u30fc":211,"\u30b9\u30b3\u30a2\u30fc":135,"\u30b9\u30bf\u30a4\u30eb":135,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30fc\u30f3\u30e2\u30fc\u30c9":153,"\u30b9\u30c8\u30ec\u30fc\u30b8":0,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":0,"\u30b9\u30e9\u30a4\u30b9":135,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":272,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":197,"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":158,"\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc":262,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":[6,7,8,18],"\u30bd\u30fc\u30b9":[24,25,27,28,29,31,32],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":12,"\u30bd\u30fc\u30c8":[266,275],"\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":86,"\u30bf\u30b0":267,"\u30bf\u30b0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":140,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":252,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":12,"\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":264,"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0":242,"\u30c4\u30a4\u30fc\u30c8":10,"\u30c4\u30fc\u30eb":[29,155,272],"\u30c6\u30b9\u30c8":[14,114],"\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":14,"\u30c6\u30fc\u30d6\u30eb":[33,91,92,117,121,140,142,159,177,220,243,265,268,270,271],"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":155,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":12,"\u30c7\u30d0\u30c3\u30ac":14,"\u30c7\u30d5\u30a9\u30eb\u30c8":86,"\u30c7\u30fc\u30bf":[92,140,216,219,243,265,268,271],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[121,252,268],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":155,"\u30c7\u30fc\u30e2\u30f3":258,"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":153,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[154,260],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":0,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[227,261],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":222,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[12,15,22],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[115,135,266],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":200,"\u30ce\u30fc\u30de\u30eb\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":80,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":271,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":255,"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":19,"\u30d0\u30fc\u30b8\u30e7\u30f3":[12,35,36,37,82],"\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba":12,"\u30d1\u30c3\u30b1\u30fc\u30b8":12,"\u30d1\u30c3\u30c1":17,"\u30d1\u30c8\u30ea\u30b7\u30a2":273,"\u30d1\u30e9\u30e1\u30fc\u30bf":[82,270],"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[115,135],"\u30d3\u30c3\u30c8":197,"\u30d3\u30eb\u30c9":[5,6,7,8,12,24,25,27,28,29,31,32],"\u30d5\u30a1\u30a4\u30eb":[11,12,17,18,150,153,209,242,252],"\u30d5\u30a9\u30ed\u30fc":271,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[135,199,209],"\u30d5\u30ec\u30fc\u30ba":196,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":272,"\u30d6\u30ed\u30b0":12,"\u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8":84,"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":252,"\u30d7\u30ed\u30bb\u30b9":242,"\u30d7\u30ed\u30bb\u30b9\u30ed\u30b0":199,"\u30d7\u30ed\u30c8\u30b3\u30eb":258,"\u30d7\u30ed\u30d1\u30c6\u30a3":122,"\u30d8\u30c3\u30c0\u30fc":258,"\u30d9\u30af\u30bf\u30fc":243,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[80,92,265],"\u30da\u30fc\u30b8\u30f3\u30b0":135,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":271,"\u30de\u30c3\u30c1":197,"\u30de\u30c3\u30c1\u30ab\u30e9\u30e0":196,"\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":92,"\u30e1\u30e2\u30ea":242,"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[2,19],"\u30e2\u30b8\u30e5\u30fc\u30eb":155,"\u30e6\u30fc\u30b6\u30fc":[10,158,271],"\u30e6\u30fc\u30b6\u30fcid":271,"\u30e9\u30a4\u30d6\u30e9\u30ea":[0,29],"\u30ea\u30af\u30a8\u30b9\u30c8":[85,86],"\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":86,"\u30ea\u30af\u30a8\u30b9\u30c8id":85,"\u30ea\u30bd\u30fc\u30b9":[117,142],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":[86,87],"\u30ea\u30c6\u30e9\u30eb":197,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7":155,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":46,"\u30ea\u30dd\u30b8\u30c8\u30ea":[13,17],"\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc":[5,6,7,8],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":272,"\u30ea\u30ea\u30fc\u30b9":[12,34,35,36,37,38,39,40,41,42,43,44],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":12,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":12,"\u30eb\u30fc\u30eb":214,"\u30ec\u30b3\u30fc\u30c9":[92,135,268],"\u30ec\u30b3\u30fc\u30c9id":220,"\u30ed\u30b0":[111,199],"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":0,"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":111,"\u30ed\u30fc\u30c9":[80,268,271],"\u30ed\u30fc\u30de":206,"\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":14,"\u4e00\u6642":220,"\u4e00\u6642\u30c6\u30fc\u30d6\u30eb":220,"\u4e00\u7dd2":[117,142],"\u4e00\u81f4":[196,197,216,259,273],"\u4e00\u81f4rk":[206,216],"\u4e00\u89a7":[87,149,151,200,208,214,271],"\u4e00\u90e8":117,"\u4e0a\u9650":33,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":14,"\u4e0d\u7b49\u4fa1":[196,197],"\u4e26\u3079":268,"\u4e26\u5217":12,"\u4e3b\u30ad\u30fc":[243,273],"\u4e57\u7b97":197,"\u4e8b\u9805":[33,154,243],"\u4ed5\u65b9":17,"\u4ed5\u69d8":257,"\u4ed8\u304d":[18,197,267],"\u4ed8\u4e0e":270,"\u4ee3\u5165":197,"\u4ee3\u5165\u5f0f":196,"\u4ee5\u4e0a":[196,197],"\u4ee5\u4e0b":196,"\u4ee5\u4e0b\u6f14":197,"\u4f4d\u7f6e":[0,82,165,205,271,275],"\u4f5c\u308a\u65b9":80,"\u4f5c\u308b":6,"\u4f5c\u6210":[12,92,140,268,269,271],"\u4f5c\u696d":12,"\u4f7f\u3044":259,"\u4f7f\u3044\u65b9":[47,77,79,80,84,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,151,153,154,155,158,159,161,162,164,165,168,169,170,171,172,173,175,176,177,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,198,201,202,203,206,207,209,210,211,212,213,216,217,219,223,224,225,228,229,230,231,232,233,234,235,236,237,238,239,240,241,245,246,247,248],"\u4f7f\u3046":[155,158,165],"\u4f7f\u3063":[6,7,8],"\u4f7f\u7528":242,"\u4f8b\u3048":10,"\u4f9d\u5b58":29,"\u4fdd\u5b58":[140,265],"\u4fee\u6b63":[34,35,36,37,38,40,41,42,43,44,45],"\u5165\u308a":271,"\u5165\u529b":158,"\u5165\u6f14":197,"\u5168\u4f53":49,"\u5168\u6587":[0,261,268,270,275],"\u5168\u6587\u691c":[92,268,269],"\u5168\u6587\u691c\u7d22":196,"\u516c\u958b":12,"\u5171\u6709":0,"\u5171\u8d77":[216,217,219],"\u5171\u901a":122,"\u518d\u8d77\u52d5":256,"\u51fa\u529b":[17,83,114,115,135,207,268],"\u5206\u3051":259,"\u5229\u7528":[117,142,155,275],"\u5236\u5fa1":197,"\u5236\u9650":[33,80,154,209,220,243,266],"\u524a\u6e1b":[117,142],"\u524a\u9664":[102,117,142],"\u524d\u63d0":12,"\u524d\u65b9":[196,197,206,216,273],"\u5270\u4f59":197,"\u5272\u308a":85,"\u52a0\u7b97":197,"\u52d5\u4f5c":[12,14,216,217,219],"\u52d5\u7684":[112,114,115,135,198],"\u5354\u529b":10,"\u5358\u8a9e":197,"\u5373\u6642":0,"\u539f\u56e0":261,"\u53c2\u7167":[0,92,142,258,265,267],"\u53c2\u7167\u578b":80,"\u53c2\u8003":[6,7,8,47,83,85,86,87,88,90,92,93,96,97,98,100,102,105,106,108,109,110,111,116,118,119,122,124,125,126,128,129,131,132,133,134,135,138,140,144,146,147,157,158,162,168,169,176,177,179,182,195,200,201,202,206,209,212,213,220,221,236,238],"\u53d6\u308a\u6d88\u3057":12,"\u53d6\u5f97":[12,26,268],"\u53e4\u3044":34,"\u53ef\u80fd":[0,91,92,96,97,98,99,103,104,105,112,113,114,115,116,117,118,120,121,122,123,126,134,136,137,139,140,142,144,145,146,155,158,161,165,169,171,177,191,202,212,213,223,224,225,236,238],"\u540c\u3058":261,"\u540d\u524d":[78,152,154,156,157,163,166,167,174,178,243],"\u5411\u3051":[4,12],"\u5426\u5b9a":[196,197],"\u547c\u3073\u51fa\u3057":197,"\u547d\u4ee4":154,"\u548c\u4ee3":197,"\u548c\u6f14":197,"\u56de\u907f":263,"\u56fa\u6709":122,"\u56fd\u969b\u5316":17,"\u5727\u7e2e":252,"\u57fa\u672c":[117,142,197,268],"\u5831\u544a":19,"\u5834\u5408":[12,26,83,270],"\u5834\u6240":[10,209],"\u58ca\u308c":117,"\u5909\u63db":206,"\u5909\u66f4":[36,91,252,261],"\u5909\u66f4\u70b9":12,"\u5927\u304d\u306a":[92,140],"\u5927\u306a\u308a":[196,197],"\u5b66\u7fd2":[158,216,217,218,219],"\u5b8c\u5168":259,"\u5b9f\u4f8b":11,"\u5b9f\u73fe":11,"\u5b9f\u884c":[6,7,8,11,12,14,18,150,153,154,155],"\u5b9f\u9a13":38,"\u5bc6\u9375":12,"\u5bfe\u5fdc":[10,205,252],"\u5bfe\u7b56":[261,263],"\u5bfe\u8c61":[92,142],"\u5c0e\u5165":18,"\u5c0f\u3055":92,"\u5c0f\u306a\u308a":[196,197],"\u5c0f\u6570":197,"\u5c55\u958b":208,"\u5dee\u6f14":197,"\u5ea7\u6a19\u5024":197,"\u5f15\u6570":[88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,126,127,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,148,152,153,154,158,159,161,163,165,166,167,168,169,170,171,172,173,176,177,178,182,191,192,193,202,212,213,223,224,225,236,238,242],"\u5f53\u3066\u308b":85,"\u5f62\u5f0f":83,"\u5f8c\u65b9":[196,197,273],"\u5fc5\u8981":[6,7,8,18,170],"\u5fc5\u9808":[91,92,93,95,96,97,98,99,104,105,112,113,114,115,116,117,118,120,121,122,123,126,131,134,135,136,137,139,140,142,143,144,145,146,148,158,161,165,169,171,177,191,212,213],"\u6027\u80fd":[155,252],"\u60c5\u5831":[0,4,10,14,205,271,275],"\u611f\u8b1d":[34,35,36,37,38,39,40,41,42,43,44],"\u6210\u529f":83,"\u6210\u679c":17,"\u623b\u308a\u5024":[88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,156,158,161,162,164,165,168,169,170,171,172,173,175,176,177,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,212,213,245,246,247,248],"\u624b\u9806":12,"\u6271\u3048\u308b":92,"\u6295\u7a3f":271,"\u62bd\u51fa":[197,219],"\u62e1\u5f35":274,"\u6307\u5b9a":[82,158,165,196,243,268,270],"\u6307\u91dd":10,"\u6319\u52d5":259,"\u6392\u4ed6":197,"\u63a5\u7d9a":258,"\u63d0\u4f9b":10,"\u63d0\u6848":[218,219],"\u64cd\u4f5c":[204,268],"\u64ec\u4f3c":78,"\u6539\u826f":[34,35,36,37,38,39,40,41,42,43,44,45],"\u6570\u5024":265,"\u6574\u6570":197,"\u6587\u5b57":210,"\u6587\u5b57\u5217":[197,265],"\u6587\u66f8":[196,197,217],"\u6587\u6cd5":275,"\u65b0\u3057\u3044":17,"\u65b9\u6cd5":[3,5,6,7,8,12,14,15,17,47,80,82,85,86,91,198,204,216,217,219,261,262,263],"\u65e5\u6642":265,"\u660e\u793a\u7684":165,"\u6642\u9593":[197,271],"\u66f4\u65b0":[0,12,17,18,216],"\u66f8\u304d":259,"\u66f8\u5f0f":[152,154,156,159,163,166,167,174,178,268],"\u66ff\u3048":268,"\u6700\u521d":12,"\u6700\u5927":242,"\u6709\u52b9":86,"\u6761\u4ef6":[12,135,170,196,275],"\u6761\u4ef6\u5f0f":196,"\u683c\u7d0d":243,"\u691c\u51fa":14,"\u691c\u7d22":[0,80,112,114,115,135,140,196,197,205,206,216,217,219,259,261,267,268,270,271,273,274,275],"\u691c\u7d22\u4f8b":11,"\u6982\u8981":[0,47,49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,77,79,80,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,151,153,155,156,158,159,161,162,164,165,168,169,170,171,172,173,175,176,177,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,200,201,202,203,206,209,210,211,212,213,214,220,221,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,245,246,247,248],"\u69cb\u6587":[88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,151,153,155,158,161,162,164,165,168,169,170,171,172,173,175,176,177,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,196,197,201,202,203,210,212,213,223,224,225,228,229,230,231,232,233,234,235,236,237,238,239,240,241,245,246,247,248],"\u69cb\u7bc9":[14,198],"\u69d8\u3005":14,"\u6a5f\u80fd":205,"\u6b63\u898f":[196,197,210],"\u6bce\u56de":12,"\u6bd4\u8f03":[197,252],"\u6c38\u7d9a":220,"\u6d41\u308c":17,"\u6d6e\u52d5":197,"\u6e1b\u7b97":197,"\u6e96\u5099":[12,274],"\u6f14\u7b97\u5b50":197,"\u70b9\u6570":197,"\u7279\u5b9a":[12,14],"\u7279\u5fb4":[0,220],"\u7279\u6709":155,"\u7279\u6b8a":154,"\u72ec\u81ea":197,"\u7406\u7531":10,"\u74b0\u5883":[12,14],"\u751f\u6210":[12,17,18],"\u7528\u3044":[111,275],"\u7528\u3044\u308b":26,"\u7528\u79d8":12,"\u7528\u8a9e\u96c6":214,"\u7570\u306a\u308b":261,"\u767b\u9332":[12,19],"\u7701\u7565":[91,92,96,97,98,99,103,104,105,112,113,114,115,116,117,118,120,121,122,123,126,134,136,137,139,140,142,144,145,146,158,161,165,169,171,177,191,202,212,213,223,224,225,236,238],"\u771f\u507d\u5024":[197,265],"\u77e5\u308a":12,"\u78ba\u8a8d":[12,17],"\u7a2e\u985e":[92,122,265],"\u7a4d\u4ee3":197,"\u7a4d\u6f14":197,"\u7b26\u53f7":197,"\u7b49\u4fa1":[196,197],"\u7b97\u5b50":197,"\u7b97\u8853":197,"\u7ba1\u7406":[155,272],"\u7bc4\u56f2":[140,268],"\u7c21\u5358":[114,115,135,202,223,236,238],"\u7d22\u5f15":0,"\u7d22\u7528":[92,268,269],"\u7d42\u4e86":[155,256,258],"\u7d44\u307f\u8fbc\u307f":[153,200,211],"\u7d44\u8fbc\u578b":243,"\u7d4c\u5ea6":0,"\u7d4c\u7def\u5ea6":265,"\u7d50\u5408\u5f0f":196,"\u7d50\u679c":[154,158,261,266,268],"\u7d5e\u8fbc":275,"\u7de8\u96c6":17,"\u7def\u5ea6":0,"\u7f6e\u63db":177,"\u7f72\u540d":12,"\u7ffb\u8a33":[12,17],"\u884c\u3046":12,"\u8868\u73fe":[11,196,197,210],"\u8868\u793a":268,"\u88dc\u5b8c":[216,218],"\u88dc\u6b63":[217,218],"\u8907\u6570":[252,266,270],"\u89e3\u6790":[14,262],"\u89e3\u6c7a":47,"\u8a00\u8a9e":17,"\u8a2d\u5b9a":[12,21,49,86,91,149,155,252],"\u8a8d\u8a3c":252,"\u8a98\u5c0e":10,"\u8a9e\u5f59":[268,269],"\u8a9e\u5f59\u8868":140,"\u8aac\u660e":[78,152,154,163,166,167,174,178,243],"\u8aad\u307f":[206,216],"\u8ab2\u984c":19,"\u8ad6\u7406":[117,196,197],"\u8ad6\u7406\u548c":196,"\u8ad6\u7406\u7a4d":196,"\u8d77\u52d5":[158,256,258,272],"\u8ee2\u7f6e":0,"\u8fd1\u508d":[196,197],"\u8fd4\u5024":[163,166,167,174,178],"\u8ffd\u52a0":[17,200],"\u8ffd\u8de1":19,"\u9001\u308a\u65b9":[17,19],"\u9001\u4fe1":272,"\u9006\u5f15\u304d":267,"\u901a\u4fe1":9,"\u9032\u3081":10,"\u904e\u53bb":10,"\u9055\u3044":115,"\u9069\u7528":80,"\u9078\u629e":210,"\u90e8\u5206":259,"\u914d\u5217":197,"\u91cd\u307f":[80,270],"\u91cd\u307f\u4ed8\u304d":[80,92],"\u91cf\u6307\u5b9a\u5b50":210,"\u958b\u3051\u308b":242,"\u958b\u767a":[4,10,20],"\u95a2\u4fc2":[29,112,114,115,135,267],"\u95a2\u4fc2\u5f0f":11,"\u95a2\u6570":[14,112,114,115,135,160,197,244],"\u95a2\u9023":[15,112,114,115,117,135,155,159,270],"\u95be\u5024":261,"\u9650\u308a":117,"\u9664\u7b97":197,"\u96c6\u8a08":0,"\u9759\u7684":[14,198],"\u975e\u308f\u304b\u3061":259,"\u985e\u4f3c":[196,197,217],"\u9ad8\u5ea6":[115,135,202,223,236,238],"\uff08personal":31,"_*":70,"cpu\u30b3\u30a2":252,"default":[82,140,177],"delete":102,"float":243,"in":[45,171,172],"int":243,"new":[95,143],"null":197,"package":31,"}]":[112,114,115,135],_abs:173,_acquire:106,_and:[202,223],_api:11,_array:121,_at:212,_auto:155,_base:155,_border:[112,114,115,117,161],_bu:[202,223],_buffer:121,_cache:[50,155],_calc:[115,135],_cancel:131,_case:[202,223],_chunk:121,_chunks:121,_circle:166,_class:238,_classify:[175,183,184,185,186,187,188,189,190],_clear:107,_column:[51,121,144,171],_columns:[114,115,135,177,270],_command:52,_compress:121,_content:53,_copy:[91,139],_count:[112,242,246],_create:[92,140,155],_ctx:54,_cursor:[61,69],_dat:220,_data:72,_database:155,_day:[183,184],_db:55,_delete:96,_distance:[163,165],_dot:[202,223],_encoding:56,_equal:11,_errors:105,_escalation:[64,115,135],_escape:168,_eval:132,_exist:120,_expand:126,_expander:[115,135,177],_expansion:135,_expr:[11,57,195],_filter:[112,114,115,128,134,135,182],_filters:[122,134,140,146],_find:191,_flags:[115,135],_flush:104,_form:238,_full:[121,168],_garbage:121,_geo:58,_get:97,_hash:[103,220],_hook:59,_hour:185,_html:[168,169,179],_hyphen:[202,223],_id:121,_idf:213,_ids:105,_ii:60,_in:[121,166,167],_index:[61,113,114],_indexes:103,_info:62,_inspect:[63,121],_install:29,_kana:[202,223],_katakana:[202,223],_key:[112,114,115,117,121,220],_keys:[112,114,115,135],_length:180,_level:[109,155],_limit:[88,115,135,145,155],_list:[93,116,119,122,141,147],_load:133,_log:155,_loose:162,_map:242,_mark:[202,223],_match:64,_max:121,_memory:242,_method:121,_middle:[202,223],_minute:186,_mode:177,_month:187,_most:212,_n:[121,158],_name:[91,95,104,106,107,108,121,130,139,143,148,168,171],_new:192,_no:220,_not:[96,98,106,108],_number:[245,247],_obj:65,_of:[121,184],_offset:[115,135],_opened:104,_or:[96,98,106,108,161],_output:[115,135],_pack:29,_parameters:113,_pat:220,_path:[155,158,159],_physical:121,_plugins:103,_position:121,_prefix:29,_proc:66,_processes:155,_prolonged:[202,223],_put:110,_query:155,_range:114,_raw:121,_reading:238,_record:247,_records:[103,121,171],_rectangle:167,_register:124,_release:108,_remove:[94,117,123,142],_rename:[95,143],_reopen:111,_rk:176,_romaji:[202,223],_schema:103,_search:[67,164,176],_second:188,_section:121,_segment:121,_segments:121,_select:[11,115],_selector:100,_set:98,_shard:116,_size:[121,193],_slice:194,_sort:[115,135],_sortby:[115,135],_sound:[202,223],_sounds:[202,223],_source:121,_statistics:121,_string:[177,182],_substring:181,_sum:248,_table:[11,68,69,91,103,105,112,114,115,116,117,121,171],_tagn:168,_target:[115,135],_tf:[212,213],_thread:70,_threshold:[115,135],_to:[202,223],_tokenize:144,_tokenizer:140,_total:121,_type:[53,71,105,121,122,140,165,258],_types:[115,135],_unmanaged:121,_unmap:99,_unregister:125,_untag:170,_use:121,_user:72,_v:[202,223],_value:[121,161,172],_values:[115,135,172],_version:[52,82],_voiced:[202,223],_week:[184,189],_weight:121,_year:190,adjuster:135,algorithm:224,allocate:263,api:[16,48],approximate:165,archive:31,arg:11,autotools:6,between:161,bigram:271,blogroonga:12,body:83,bool:243,cache:[88,112,114,115,135],calc:115,callback:11,candidate:158,cannot:263,cast:[75,162],centos:24,changes:45,check:[89,151],ci:21,clang:14,clearlock:90,clone:17,close:168,cmake:[7,8],column:[91,92,93,94,95,121,122,134,161,168,176,212,213],columns:[105,112,114,115,135,225],command:[82,134],comments:271,condition:171,config:[96,97,98],configure:[6,12,18,29],contain:11,cutter:[12,14],data:[121,159],database:[99,121,158,159],db:11,debian:[12,25],define:100,defrag:101,delimiter:236,dependent:[117,142],desctipion:157,docker:26,domain:266,drilldown:[115,135],drilldowns:[115,135],dump:103,each:105,edit:163,ellipsoid:165,enable:18,equal:11,exit:157,facebook:[2,12],fedora:27,files:[157,159],filter:[112,114,115,135,182],flags:[92,112,114,115,118,122,135,140,144,146,177,258],force:[117,123],freebsd:242,from:[91,139,159],fuzzy:164,geo:[165,166,167],geoindex:271,geopoint:[243,271],get:158,gnu:[6,7,25],gqtp:[9,250,256,258],greater:11,grn:[11,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,195],grndb:151,grnslap:152,grntest:12,groonga:[0,3,4,5,6,7,8,9,11,12,17,22,45,153,154,155,156,157,158,159,253,254,256],gzip:252,hashtags:271,hat:12,header:[83,96,97,98,106,108,122,134],highlight:[168,169],homebrew:[12,28],how:250,html:[17,18,170],http:[156,207,251,256,272],https:252,id:[85,131],ifexists:105,include:238,index:[121,134,144,212,213],input:105,install:29,invalid:[115,135],io:104,javascript:275,json:83,kern:242,key:[96,97,98,140],keys:[115,135],keywordn:168,label:[115,135],lcov:14,learning:159,less:11,libmemcached:14,limit:[114,115,135],linux:242,load:[105,115,135],location:165,lock:[105,106,107,108],log:[109,110,111,159],logical:[112,113,114,115,116,117],longtext:243,mac:28,macports:28,make:[6,7,12,29],marker:[115,135],match:[115,135,177,270],math:173,max:[88,112,114,115,117,145,161],memcached:255,memory:263,messagepack:83,min:[112,114,115,117,161],mmap:263,mode:[11,136,144,146,171,191],mroonga:0,name:[92,95,112,114,115,120,121,123,135,140,142,143],near:11,news:[38,39,40,41,42,43,44,45],nginx:155,nofile:242,normalize:118,normalizer:[118,119,134,140,146,168],normalizerauto:201,normalizernfkc:[202,203],normalizers:134,not:11,now:174,number:175,object:[120,121,122,123],objects:122,offset:[114,115,135],only:104,open:168,or:[115,135],oracle:30,order:114,os:28,output:[105,114,115,135],path:133,pattern:236,period:45,plugin:[74,124,125,134],plugins:134,po:12,point:165,post:[112,114,115,155,252],ppa:[12,31],prefix:[11,176],proc:122,protocol:258,proxy:155,pull:17,query:[115,126,135,176,177,258],queryexpandertsv:209,quit:127,rand:178,range:[113,122,128],record:245,recover:151,rectangle:165,recursive:104,red:12,redmine:10,register:129,reindex:130,request:[17,131],ruby:[132,133],run:250,schema:134,scope:182,score:158,scorer:[115,135,212,213,275],script:132,section:[115,135],select:[115,135],senna:45,shard:[112,114,115,117],shorttext:243,shutdown:136,similar:11,size:258,slices:135,snippet:179,solaris:30,sort:[103,114,115,135],sortby:[115,135],source:[92,134],sources:122,sphere:165,sphinx:17,stage:[112,114,115,135],status:[137,157,258],stretch:25,string:[118,144,146,180,181],sub:182,succeeded:[96,98,106,108],suffix:11,suggest:138,summary:250,synopstis:157,table:[92,93,95,105,121,122,134,135,139,140,141,142,143,144,220],tables:[103,134],target:[104,106,107,108,130,148,172,173,193,238],text:[169,243],thread:145,time:[183,184,185,186,187,188,189,190,243],tips:12,title:[115,135],to:[91,139,250],todo:179,token:[122,134,140,146],tokenbigram:228,tokenbigramignoreblank:229,tokenbigramignoreblanksplitsymbol:230,tokenbigramignoreblanksplitsymbolalpha:231,tokenbigramignoreblanksplitsymbolalphadigit:232,tokenbigramsplitsymbol:233,tokenbigramsplitsymbolalpha:234,tokenbigramsplitsymbolalphadigit:235,tokendelimit:236,tokendelimitnull:237,tokenfilternfkc:223,tokenfilterstem:224,tokenfilterstopword:225,tokenize:146,tokenizer:[134,146,147],tokenizers:134,tokenmecab:238,tokenregexp:239,tokentrigram:240,tokenunigram:241,tokyogeopoint:243,transition:[115,135],travis:21,truncate:148,tsv:[83,209],twitter:[2,10,12],type:[92,112,114,115,121,122,134,135,158],types:134,ubuntu:[12,31],uint:243,unify:[202,223],unix:7,update:12,use:[114,168,238],users:271,value:[97,98,112,114,115,135,140,171,172,191],values:105,vector:[191,192,193,194],vm:242,wgs:243,window:[112,114,115,135,246,247,248],windows:[8,12,32],worker:155,xml:83,zip:32}})
1
+ Search.setIndex({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/centos","install/debian","install/docker","install/fedora","install/mac_os_x","install/others","install/solaris","install/ubuntu","install/windows","limitations","news","news/0.x","news/1.0.x","news/1.1.x","news/1.2.x","news/1.3.x","news/2.x","news/3.x","news/4.x","news/5.x","news/6.x","news/senna","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/output_format","reference/command/pretty_print","reference/command/request_id","reference/command/request_timeout","reference/command/return_code","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/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/register","reference/commands/reindex","reference/commands/request_cancel","reference/commands/ruby_eval","reference/commands/ruby_load","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_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/fuzzy_search","reference/functions/geo_distance","reference/functions/geo_in_circle","reference/functions/geo_in_rectangle","reference/functions/highlight_full","reference/functions/highlight_html","reference/functions/html_untag","reference/functions/in_records","reference/functions/in_values","reference/functions/math_abs","reference/functions/now","reference/functions/number_classify","reference/functions/prefix_rk_search","reference/functions/query","reference/functions/rand","reference/functions/snippet_html","reference/functions/string_length","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/log","reference/normalizers","reference/normalizers/normalizer_auto","reference/normalizers/normalizer_nfkc100","reference/normalizers/normalizer_nfkc51","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_nfkc100","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_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.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},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.rst","contribution/report.rst","development.rst","development/travis-ci.rst","index.rst","install.rst","install/centos.rst","install/debian.rst","install/docker.rst","install/fedora.rst","install/mac_os_x.rst","install/others.rst","install/solaris.rst","install/ubuntu.rst","install/windows.rst","limitations.rst","news.rst","news/0.x.rst","news/1.0.x.rst","news/1.1.x.rst","news/1.2.x.rst","news/1.3.x.rst","news/2.x.rst","news/3.x.rst","news/4.x.rst","news/5.x.rst","news/6.x.rst","news/senna.rst","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/output_format.rst","reference/command/pretty_print.rst","reference/command/request_id.rst","reference/command/request_timeout.rst","reference/command/return_code.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/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/register.rst","reference/commands/reindex.rst","reference/commands/request_cancel.rst","reference/commands/ruby_eval.rst","reference/commands/ruby_load.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_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/fuzzy_search.rst","reference/functions/geo_distance.rst","reference/functions/geo_in_circle.rst","reference/functions/geo_in_rectangle.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/math_abs.rst","reference/functions/now.rst","reference/functions/number_classify.rst","reference/functions/prefix_rk_search.rst","reference/functions/query.rst","reference/functions/rand.rst","reference/functions/snippet_html.rst","reference/functions/string_length.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/log.rst","reference/normalizers.rst","reference/normalizers/normalizer_auto.rst","reference/normalizers/normalizer_nfkc100.rst","reference/normalizers/normalizer_nfkc51.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_nfkc100.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_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"],objects:{"":{GRN_COLUMN_NAME_ID:[51,0,1,"c.GRN_COLUMN_NAME_ID"],GRN_COLUMN_NAME_ID_LEN:[51,0,1,"c.GRN_COLUMN_NAME_ID_LEN"],GRN_COLUMN_NAME_KEY:[51,0,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_KEY_LEN:[51,0,1,"c.GRN_COLUMN_NAME_KEY_LEN"],GRN_COLUMN_NAME_NSUBRECS:[51,0,1,"c.GRN_COLUMN_NAME_NSUBRECS"],GRN_COLUMN_NAME_NSUBRECS_LEN:[51,0,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],GRN_COLUMN_NAME_SCORE:[51,0,1,"c.GRN_COLUMN_NAME_SCORE"],GRN_COLUMN_NAME_SCORE_LEN:[51,0,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE:[51,0,1,"c.GRN_COLUMN_NAME_VALUE"],GRN_COLUMN_NAME_VALUE_LEN:[51,0,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],GRN_COMMAND_VERSION_MAX:[52,0,1,"c.GRN_COMMAND_VERSION_MAX"],GRN_COMMAND_VERSION_MIN:[52,0,1,"c.GRN_COMMAND_VERSION_MIN"],GRN_COMMAND_VERSION_STABLE:[52,0,1,"c.GRN_COMMAND_VERSION_STABLE"],GRN_OBJ_APPEND:[65,0,1,"c.GRN_OBJ_APPEND"],GRN_OBJ_COMPARE:[65,0,1,"c.GRN_OBJ_COMPARE"],GRN_OBJ_DECR:[65,0,1,"c.GRN_OBJ_DECR"],GRN_OBJ_GET:[65,0,1,"c.GRN_OBJ_GET"],GRN_OBJ_INCR:[65,0,1,"c.GRN_OBJ_INCR"],GRN_OBJ_LOCK:[65,0,1,"c.GRN_OBJ_LOCK"],GRN_OBJ_PREPEND:[65,0,1,"c.GRN_OBJ_PREPEND"],GRN_OBJ_SET:[65,0,1,"c.GRN_OBJ_SET"],GRN_OBJ_SET_MASK:[65,0,1,"c.GRN_OBJ_SET_MASK"],GRN_OBJ_UNLOCK:[65,0,1,"c.GRN_OBJ_UNLOCK"],GRN_PLUGIN_ERROR:[74,0,1,"c.GRN_PLUGIN_ERROR"],GRN_PLUGIN_FIN:[74,1,1,"c.GRN_PLUGIN_FIN"],GRN_PLUGIN_FREE:[74,0,1,"c.GRN_PLUGIN_FREE"],GRN_PLUGIN_INIT:[74,1,1,"c.GRN_PLUGIN_INIT"],GRN_PLUGIN_LOG:[74,0,1,"c.GRN_PLUGIN_LOG"],GRN_PLUGIN_MALLOC:[74,0,1,"c.GRN_PLUGIN_MALLOC"],GRN_PLUGIN_REALLOC:[74,0,1,"c.GRN_PLUGIN_REALLOC"],GRN_PLUGIN_REGISTER:[74,1,1,"c.GRN_PLUGIN_REGISTER"],grn_builtin_type:[71,2,1,"c.grn_builtin_type"],grn_cache:[50,2,1,"c.grn_cache"],grn_cache_close:[50,1,1,"c.grn_cache_close"],grn_cache_current_get:[50,1,1,"c.grn_cache_current_get"],grn_cache_current_set:[50,1,1,"c.grn_cache_current_set"],grn_cache_get_max_n_entries:[50,1,1,"c.grn_cache_get_max_n_entries"],grn_cache_open:[50,1,1,"c.grn_cache_open"],grn_cache_set_max_n_entries:[50,1,1,"c.grn_cache_set_max_n_entries"],grn_column_create:[51,1,1,"c.grn_column_create"],grn_column_index:[51,1,1,"c.grn_column_index"],grn_column_index_update:[51,1,1,"c.grn_column_index_update"],grn_column_name:[51,1,1,"c.grn_column_name"],grn_column_rename:[51,1,1,"c.grn_column_rename"],grn_column_table:[51,1,1,"c.grn_column_table"],grn_column_truncate:[51,1,1,"c.grn_column_truncate"],grn_command_version:[52,2,1,"c.grn_command_version"],grn_content_type:[53,2,1,"c.grn_content_type"],grn_ctx:[54,2,1,"c.grn_ctx"],grn_ctx_at:[54,1,1,"c.grn_ctx_at"],grn_ctx_close:[54,1,1,"c.grn_ctx_close"],grn_ctx_db:[54,1,1,"c.grn_ctx_db"],grn_ctx_fin:[54,1,1,"c.grn_ctx_fin"],grn_ctx_get:[54,1,1,"c.grn_ctx_get"],grn_ctx_get_all_tables:[54,1,1,"c.grn_ctx_get_all_tables"],grn_ctx_get_command_version:[54,1,1,"c.grn_ctx_get_command_version"],grn_ctx_get_match_escalation_threshold:[64,1,1,"c.grn_ctx_get_match_escalation_threshold"],grn_ctx_get_output_type:[54,1,1,"c.grn_ctx_get_output_type"],grn_ctx_init:[54,1,1,"c.grn_ctx_init"],grn_ctx_is_opened:[54,1,1,"c.grn_ctx_is_opened"],grn_ctx_open:[54,1,1,"c.grn_ctx_open"],grn_ctx_set_command_version:[54,1,1,"c.grn_ctx_set_command_version"],grn_ctx_set_finalizer:[54,1,1,"c.grn_ctx_set_finalizer"],grn_ctx_set_match_escalation_threshold:[64,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_ctx_set_output_type:[54,1,1,"c.grn_ctx_set_output_type"],grn_ctx_use:[54,1,1,"c.grn_ctx_use"],grn_db:[55,2,1,"c.grn_db"],grn_db_create:[55,1,1,"c.grn_db_create"],grn_db_create_optarg:[55,2,1,"c.grn_db_create_optarg"],grn_db_open:[55,1,1,"c.grn_db_open"],grn_db_recover:[55,1,1,"c.grn_db_recover"],grn_db_touch:[55,1,1,"c.grn_db_touch"],grn_db_unmap:[55,1,1,"c.grn_db_unmap"],grn_encoding:[56,2,1,"c.grn_encoding"],grn_encoding_parse:[56,1,1,"c.grn_encoding_parse"],grn_encoding_to_string:[56,1,1,"c.grn_encoding_to_string"],grn_expr_add_var:[57,1,1,"c.grn_expr_add_var"],grn_expr_alloc:[57,1,1,"c.grn_expr_alloc"],grn_expr_append_const:[57,1,1,"c.grn_expr_append_const"],grn_expr_append_const_int:[57,1,1,"c.grn_expr_append_const_int"],grn_expr_append_const_str:[57,1,1,"c.grn_expr_append_const_str"],grn_expr_append_op:[57,1,1,"c.grn_expr_append_op"],grn_expr_close:[57,1,1,"c.grn_expr_close"],grn_expr_compile:[57,1,1,"c.grn_expr_compile"],grn_expr_create:[57,1,1,"c.grn_expr_create"],grn_expr_exec:[57,1,1,"c.grn_expr_exec"],grn_expr_get_keywords:[57,1,1,"c.grn_expr_get_keywords"],grn_expr_get_var_by_offset:[57,1,1,"c.grn_expr_get_var_by_offset"],grn_expr_syntax_escape:[57,1,1,"c.grn_expr_syntax_escape"],grn_expr_syntax_escape_query:[57,1,1,"c.grn_expr_syntax_escape_query"],grn_fin:[73,1,1,"c.grn_fin"],grn_geo_cursor_next:[58,1,1,"c.grn_geo_cursor_next"],grn_geo_cursor_open_in_rectangle:[58,1,1,"c.grn_geo_cursor_open_in_rectangle"],grn_geo_estimate_in_rectangle:[58,1,1,"c.grn_geo_estimate_in_rectangle"],grn_geo_point:[58,2,1,"c.grn_geo_point"],grn_geo_select_in_rectangle:[58,1,1,"c.grn_geo_select_in_rectangle"],grn_get_default_command_version:[52,1,1,"c.grn_get_default_command_version"],grn_get_default_encoding:[56,1,1,"c.grn_get_default_encoding"],grn_get_default_match_escalation_threshold:[64,1,1,"c.grn_get_default_match_escalation_threshold"],grn_get_lock_timeout:[49,1,1,"c.grn_get_lock_timeout"],grn_hook_entry:[59,2,1,"c.grn_hook_entry"],grn_ii:[60,2,1,"c.grn_ii"],grn_ii_buffer:[60,2,1,"c.grn_ii_buffer"],grn_ii_buffer_append:[60,1,1,"c.grn_ii_buffer_append"],grn_ii_buffer_close:[60,1,1,"c.grn_ii_buffer_close"],grn_ii_buffer_commit:[60,1,1,"c.grn_ii_buffer_commit"],grn_ii_buffer_open:[60,1,1,"c.grn_ii_buffer_open"],grn_index_cursor_next:[61,1,1,"c.grn_index_cursor_next"],grn_index_cursor_open:[61,1,1,"c.grn_index_cursor_open"],grn_info_type:[62,2,1,"c.grn_info_type"],grn_init:[73,1,1,"c.grn_init"],grn_inspect:[63,1,1,"c.grn_inspect"],grn_inspect_encoding:[63,1,1,"c.grn_inspect_encoding"],grn_inspect_indented:[63,1,1,"c.grn_inspect_indented"],grn_inspect_limited:[63,1,1,"c.grn_inspect_limited"],grn_inspect_name:[63,1,1,"c.grn_inspect_name"],grn_inspect_query_log_flags:[63,1,1,"c.grn_inspect_query_log_flags"],grn_inspect_type:[63,1,1,"c.grn_inspect_type"],grn_obj:[65,2,1,"c.grn_obj"],grn_obj_add_hook:[59,1,1,"c.grn_obj_add_hook"],grn_obj_cast_by_id:[65,1,1,"c.grn_obj_cast_by_id"],grn_obj_check:[65,1,1,"c.grn_obj_check"],grn_obj_clear_lock:[65,1,1,"c.grn_obj_clear_lock"],grn_obj_close:[65,1,1,"c.grn_obj_close"],grn_obj_column:[65,1,1,"c.grn_obj_column"],grn_obj_db:[55,1,1,"c.grn_obj_db"],grn_obj_defrag:[65,1,1,"c.grn_obj_defrag"],grn_obj_delete_by_id:[65,1,1,"c.grn_obj_delete_by_id"],grn_obj_delete_hook:[59,1,1,"c.grn_obj_delete_hook"],grn_obj_expire:[65,1,1,"c.grn_obj_expire"],grn_obj_get_element_info:[62,1,1,"c.grn_obj_get_element_info"],grn_obj_get_hook:[59,1,1,"c.grn_obj_get_hook"],grn_obj_get_info:[62,1,1,"c.grn_obj_get_info"],grn_obj_get_nhooks:[59,1,1,"c.grn_obj_get_nhooks"],grn_obj_get_range:[65,1,1,"c.grn_obj_get_range"],grn_obj_get_value:[65,1,1,"c.grn_obj_get_value"],grn_obj_get_values:[65,1,1,"c.grn_obj_get_values"],grn_obj_id:[65,1,1,"c.grn_obj_id"],grn_obj_is_builtin:[65,1,1,"c.grn_obj_is_builtin"],grn_obj_is_index_column:[65,1,1,"c.grn_obj_is_index_column"],grn_obj_is_locked:[65,1,1,"c.grn_obj_is_locked"],grn_obj_is_vector_column:[65,1,1,"c.grn_obj_is_vector_column"],grn_obj_lock:[65,1,1,"c.grn_obj_lock"],grn_obj_name:[65,1,1,"c.grn_obj_name"],grn_obj_path:[65,1,1,"c.grn_obj_path"],grn_obj_path_by_id:[65,1,1,"c.grn_obj_path_by_id"],grn_obj_reinit:[65,1,1,"c.grn_obj_reinit"],grn_obj_remove:[65,1,1,"c.grn_obj_remove"],grn_obj_rename:[65,1,1,"c.grn_obj_rename"],grn_obj_search:[67,1,1,"c.grn_obj_search"],grn_obj_set_element_info:[62,1,1,"c.grn_obj_set_element_info"],grn_obj_set_finalizer:[66,1,1,"c.grn_obj_set_finalizer"],grn_obj_set_info:[62,1,1,"c.grn_obj_set_info"],grn_obj_set_value:[65,1,1,"c.grn_obj_set_value"],grn_obj_unlink:[65,1,1,"c.grn_obj_unlink"],grn_obj_unlock:[65,1,1,"c.grn_obj_unlock"],grn_obj_user_data:[72,1,1,"c.grn_obj_user_data"],grn_p:[63,1,1,"c.grn_p"],grn_p_geo_point:[63,1,1,"c.grn_p_geo_point"],grn_p_ii_values:[63,1,1,"c.grn_p_ii_values"],grn_plugin_charlen:[74,1,1,"c.grn_plugin_charlen"],grn_plugin_command_create:[74,1,1,"c.grn_plugin_command_create"],grn_plugin_expr_var_init:[74,1,1,"c.grn_plugin_expr_var_init"],grn_plugin_isspace:[74,1,1,"c.grn_plugin_isspace"],grn_plugin_mutex:[74,2,1,"c.grn_plugin_mutex"],grn_plugin_mutex_close:[74,1,1,"c.grn_plugin_mutex_close"],grn_plugin_mutex_lock:[74,1,1,"c.grn_plugin_mutex_lock"],grn_plugin_mutex_open:[74,1,1,"c.grn_plugin_mutex_open"],grn_plugin_mutex_unlock:[74,1,1,"c.grn_plugin_mutex_unlock"],grn_plugin_proc_alloc:[74,1,1,"c.grn_plugin_proc_alloc"],grn_plugin_proc_get_var:[74,1,1,"c.grn_plugin_proc_get_var"],grn_plugin_proc_get_var_by_offset:[74,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_plugin_win32_base_dir:[74,1,1,"c.grn_plugin_win32_base_dir"],grn_plugin_windows_base_dir:[74,1,1,"c.grn_plugin_windows_base_dir"],grn_proc_create:[66,1,1,"c.grn_proc_create"],grn_proc_func:[66,2,1,"c.grn_proc_func"],grn_proc_get_info:[66,1,1,"c.grn_proc_get_info"],grn_proc_type:[66,2,1,"c.grn_proc_type"],grn_search_optarg:[67,2,1,"c.grn_search_optarg"],grn_set_default_command_version:[52,1,1,"c.grn_set_default_command_version"],grn_set_default_encoding:[56,1,1,"c.grn_set_default_encoding"],grn_set_default_match_escalation_threshold:[64,1,1,"c.grn_set_default_match_escalation_threshold"],grn_set_lock_timeout:[49,1,1,"c.grn_set_lock_timeout"],grn_table_add:[68,1,1,"c.grn_table_add"],grn_table_at:[68,1,1,"c.grn_table_at"],grn_table_columns:[68,1,1,"c.grn_table_columns"],grn_table_create:[68,1,1,"c.grn_table_create"],grn_table_cursor:[69,2,1,"c.grn_table_cursor"],grn_table_cursor_close:[69,1,1,"c.grn_table_cursor_close"],grn_table_cursor_delete:[69,1,1,"c.grn_table_cursor_delete"],grn_table_cursor_get_key:[69,1,1,"c.grn_table_cursor_get_key"],grn_table_cursor_get_value:[69,1,1,"c.grn_table_cursor_get_value"],grn_table_cursor_next:[69,1,1,"c.grn_table_cursor_next"],grn_table_cursor_open:[69,1,1,"c.grn_table_cursor_open"],grn_table_cursor_set_value:[69,1,1,"c.grn_table_cursor_set_value"],grn_table_cursor_table:[69,1,1,"c.grn_table_cursor_table"],grn_table_delete:[68,1,1,"c.grn_table_delete"],grn_table_delete_by_id:[68,1,1,"c.grn_table_delete_by_id"],grn_table_difference:[68,1,1,"c.grn_table_difference"],grn_table_get:[68,1,1,"c.grn_table_get"],grn_table_get_key:[68,1,1,"c.grn_table_get_key"],grn_table_group:[68,1,1,"c.grn_table_group"],grn_table_group_flags:[68,2,1,"c.grn_table_group_flags"],grn_table_group_result:[68,2,1,"c.grn_table_group_result"],grn_table_lcp_search:[68,1,1,"c.grn_table_lcp_search"],grn_table_rename:[68,1,1,"c.grn_table_rename"],grn_table_setoperation:[68,1,1,"c.grn_table_setoperation"],grn_table_size:[68,1,1,"c.grn_table_size"],grn_table_sort:[68,1,1,"c.grn_table_sort"],grn_table_sort_flags:[68,2,1,"c.grn_table_sort_flags"],grn_table_sort_key:[68,2,1,"c.grn_table_sort_key"],grn_table_truncate:[68,1,1,"c.grn_table_truncate"],grn_table_update:[68,1,1,"c.grn_table_update"],grn_table_update_by_id:[68,1,1,"c.grn_table_update_by_id"],grn_thread_get_limit:[70,1,1,"c.grn_thread_get_limit"],grn_thread_get_limit_func:[70,2,1,"c.grn_thread_get_limit_func"],grn_thread_set_get_limit_func:[70,1,1,"c.grn_thread_set_get_limit_func"],grn_thread_set_limit:[70,1,1,"c.grn_thread_set_limit"],grn_thread_set_limit_func:[70,2,1,"c.grn_thread_set_limit_func"],grn_thread_set_set_limit_func:[70,1,1,"c.grn_thread_set_set_limit_func"],grn_type_create:[71,1,1,"c.grn_type_create"],grn_user_data:[72,2,1,"c.grn_user_data"]},"groonga-benchmark":{"--dir":[154,4,1,"cmdoption-groonga-benchmark-dir"],"--ftp":[154,4,1,"cmdoption-groonga-benchmark-ftp"],"--groonga":[154,4,1,"cmdoption-groonga-benchmark-groonga"],"--host":[154,4,1,"cmdoption-groonga-benchmark-i"],"--log-output-dir":[154,4,1,"cmdoption-groonga-benchmark-log-output-dir"],"--port":[154,4,1,"cmdoption-groonga-benchmark-p"],"--protocol":[154,4,1,"cmdoption-groonga-benchmark-protocol"],"-i":[154,4,1,"cmdoption-groonga-benchmark-i"],"-p":[154,4,1,"cmdoption-groonga-benchmark-p"],db:[154,4,1,"cmdoption-groonga-benchmark-arg-db"],script:[154,4,1,"cmdoption-groonga-benchmark-arg-script"]},"groonga-suggest-httpd":{"--daemon":[158,4,1,"cmdoption-groonga-suggest-httpd-d"],"--disable-max-fd-check":[158,4,1,"cmdoption-groonga-suggest-httpd-disable-max-fd-check"],"--log-base-path":[158,4,1,"cmdoption-groonga-suggest-httpd-l"],"--n-lines-per-log-file":[158,4,1,"cmdoption-groonga-suggest-httpd-n-lines-per-log-file"],"--n-threads":[158,4,1,"cmdoption-groonga-suggest-httpd-t"],"--port":[158,4,1,"cmdoption-groonga-suggest-httpd-p"],"--receive-endpoint":[158,4,1,"cmdoption-groonga-suggest-httpd-r"],"--send-endpoint":[158,4,1,"cmdoption-groonga-suggest-httpd-s"],"-d":[158,4,1,"cmdoption-groonga-suggest-httpd-d"],"-l":[158,4,1,"cmdoption-groonga-suggest-httpd-l"],"-p":[158,4,1,"cmdoption-groonga-suggest-httpd-p"],"-r":[158,4,1,"cmdoption-groonga-suggest-httpd-r"],"-s":[158,4,1,"cmdoption-groonga-suggest-httpd-s"],"-t":[158,4,1,"cmdoption-groonga-suggest-httpd-t"]},"groonga-suggest-learner":{"--daemon":[159,4,1,"cmdoption-groonga-suggest-learner-d"],"--log-base-path":[159,4,1,"cmdoption-groonga-suggest-learner-l"],"--log-level":[159,4,1,"cmdoption-groonga-suggest-learner-log-level"],"--log-path":[159,4,1,"cmdoption-groonga-suggest-learner-log-path"],"--receive-endpoint":[159,4,1,"cmdoption-groonga-suggest-learner-r"],"--send-endpoint":[159,4,1,"cmdoption-groonga-suggest-learner-s"],"-d":[159,4,1,"cmdoption-groonga-suggest-learner-d"],"-l":[159,4,1,"cmdoption-groonga-suggest-learner-l"],"-r":[159,4,1,"cmdoption-groonga-suggest-learner-r"],"-s":[159,4,1,"cmdoption-groonga-suggest-learner-s"]},grn_db_create_optarg:{builtin_type_names:[55,3,1,"c.grn_db_create_optarg.builtin_type_names"],n_builtin_type_names:[55,3,1,"c.grn_db_create_optarg.n_builtin_type_names"]},grnslap:{"-P":[152,4,1,"cmdoption-grnslap-p"],"-m":[152,4,1,"cmdoption-grnslap-m"],dest:[152,4,1,"cmdoption-grnslap-arg-dest"]},groonga:{"--address":[153,4,1,"cmdoption-groonga-a"],"--bind-address":[153,4,1,"cmdoption-groonga-bind-address"],"--cache-base-path":[153,4,1,"cmdoption-groonga-cache-base-path"],"--cache-limit":[153,4,1,"cmdoption-groonga-cache-limit"],"--config-path":[153,4,1,"cmdoption-groonga-config-path"],"--default-match-escalation-threshold":[153,4,1,"cmdoption-groonga-default-match-escalation-threshold"],"--default-request-timeout":[153,4,1,"cmdoption-groonga-default-request-timeout"],"--document-root":[153,4,1,"cmdoption-groonga-document-root"],"--encoding":[153,4,1,"cmdoption-groonga-e"],"--help":[153,4,1,"cmdoption-groonga-h"],"--log-flags":[153,4,1,"cmdoption-groonga-log-flags"],"--log-level":[153,4,1,"cmdoption-groonga-l"],"--log-path":[153,4,1,"cmdoption-groonga-log-path"],"--log-rotate-threshold-size":[153,4,1,"cmdoption-groonga-log-rotate-threshold-size"],"--max-threads":[153,4,1,"cmdoption-groonga-t"],"--pid-path":[153,4,1,"cmdoption-groonga-pid-path"],"--port":[153,4,1,"cmdoption-groonga-p"],"--protocol":[153,4,1,"cmdoption-groonga-protocol"],"--query-log-path":[153,4,1,"cmdoption-groonga-query-log-path"],"--query-log-rotate-threshold-size":[153,4,1,"cmdoption-groonga-query-log-rotate-threshold-size"],"--server-id":[153,4,1,"cmdoption-groonga-i"],"-a":[153,4,1,"cmdoption-groonga-a"],"-c":[153,4,1,"cmdoption-groonga-c"],"-d":[153,4,1,"cmdoption-groonga-d"],"-e":[153,4,1,"cmdoption-groonga-e"],"-h":[153,4,1,"cmdoption-groonga-h"],"-i":[153,4,1,"cmdoption-groonga-i"],"-l":[153,4,1,"cmdoption-groonga-l"],"-n":[153,4,1,"cmdoption-groonga-n"],"-p":[153,4,1,"cmdoption-groonga-p"],"-s":[153,4,1,"cmdoption-groonga-s"],"-t":[153,4,1,"cmdoption-groonga-t"],command:[153,4,1,"cmdoption-groonga-arg-command"],dest:[153,4,1,"cmdoption-groonga-arg-dest"]}},objnames:{"0":["c","macro","C \u306e\u30de\u30af\u30ed"],"1":["c","function","C \u306e\u95a2\u6570"],"2":["c","type","C \u306e\u30c7\u30fc\u30bf\u578b"],"3":["c","member","C \u306e\u30e1\u30f3\u30d0\u5909\u6570"],"4":["std","cmdoption","\u30d7\u30ed\u30b0\u30e9\u30e0\u30aa\u30d7\u30b7\u30e7\u30f3"]},objtypes:{"0":"c:macro","1":"c:function","2":"c:type","3":"c:member","4":"std:cmdoption"},terms:{"!!":[105,155,228,229,230,231,232,233,234,235,270,274],"!(":34,"!(n":197,"!)":155,"!=":177,"![":236,"!\"":[40,63,83,112,114,115,135,146,155,171,191,196,197,198,211,228,229,230,231,232,233,234,235,255,268,270,271,273,274,275],"!\\":[196,197],"!condition":197,"!xxx":42,"#'":153,"#<":63,"#=":63,"#[":[43,239],"#arguments":43,"#command":43,"#delete":43,"#each":43,"#github":34,"#groonga":[209,274],"#group":43,"#i":34,"#index":43,"#inspect":43,"#key":43,"#name":43,"#proxy":155,"#remove":43,"#scalar":43,"#select":34,"#set":154,"#value":43,"#vector":43,"#with":43,"#worker":155,"#{":[34,199],"#{l":199,"$(":[24,25,27,28,31],"$\"":177,"$groonga":12,"$home":12,"$prefix":38,"${":[17,44,112,114,115,123,135,158,177,197,210,214,245],"%'":42,"%.*":63,"%\"":210,"%\\":32,"%post":40,"& (":[34,197],"& _":278,"& b":[34,197],"& x":42,"& y":41,"&!":197,"&&":[43,135,182,197,264,276],"&..":275,"&arg":210,"&filter":131,"&frequency":158,"&gt":[168,169,179],"&lt":[168,169,179],"&n":158,"&q":158,"&query":275,"&request":[44,131],"&s":158,"&t":158,"' -":28,"' \"":236,"'(":153,"')":[42,152,153],"',":[42,65,157],"'-":[41,153],"'.":[17,65],"'..":41,"';":153,"'='":153,"'>":170,"'\"":[34,40,41],"'\u3002":153,"'column":40,"'config":153,"'fixed":43,"'grn":56,"'hay":11,"'haystack":11,"'indexblog":273,"'ja":17,"'localhost":[152,153],"'m":[198,224,273,274],"'n":153,"'needle":11,"'now":274,"'or":40,"'pid":153,"'query":40,"'s":[17,83,92,105,112,114,115,135,182,196,197,198,253],"'t":[49,53,54,55,57,65,123,155],"'tokenmecab":34,"'ve":274,"'vector":43,"(!":11,"(&":[43,54,57,63],"('":[78,153,271],"((":[63,80,135],"((x":246,"()":[3,34,35,36,37,38,39,40,41,42,43,44,49,50,53,54,55,57,61,63,65,69,70,73,74,112,114,115,145,163,165,166,167,174,176,178,211,248,249,250,251,278],"(+":34,"(-":[63,197],"(.":12,"(..":[41,44],"(<":11,"(=":[11,87,197],"(>":[11,34],"(?":[43,236],"([":[178,236],"(\"":[34,40,41,56,63,112,115,131,135,153,165,168,169,177,179,202,223,224,225,236,238,239,240,242,265,271],"(\u300c":12,"(_":[43,44,115,138,171,176,197,216,217,219],"(a":21,"(age":161,"(anonymous":104,"(anonymouse":63,"(argument":197,"(arugment":197,"(body":[168,169,239],"(byte":[51,68],"(categories":34,"(cmp":42,"(column":[34,42,161,168,176,179,211,212,213],"(com":265,"(comments":182,"(condition":171,"(conditions":171,"(content":[34,112,114,115,135,170,179,211],"(created":[114,184],"(ctx":[11,34,50,51,54,57,63,265],"(cutter":14,"(cve":[34,42],"(database":266,"(debian":259,"(default":43,"(drilldown":78,"(fedora":259,"(get":152,"(grn":[34,43,54,57],"(groonga":70,"(html":170,"(ii":34,"(index":[212,213],"(init":54,"(int":[70,162],"(keyword":57,"(location":[165,270,274,278],"(match":177,"(message":[212,213],"(mroonga":209,"(msghdr":43,"(n":[34,112,114,115,135],"(name":74,"(news":12,"(nginx":259,"(nil":63,"(null":42,"(packages":12,"(point":[165,166,167],"(popular":135,"(pos":[166,167],"(ptr":36,"(q":70,"(r":[154,210],"(readings":176,"(scan":14,"(scope":182,"(score":43,"(select":197,"(string":[44,163],"(tab":209,"(table":42,"(tag":172,"(tags":[191,193],"(target":[172,173,193],"(text":169,"(time":184,"(title":[41,163,211],"(twitter":44,"(type":162,"(u":[202,223],"(uint":70,"(unknown":63,"(vc":34,"(vector":[112,191],"(void":70,"(wgs":278,"(windows":154,"(x":42,"(xxx":[34,41],"(~":34,")'":[34,112,114,115,135,138,162,168,169,173,179,182,184,191,193,196,197,202,216,217,219,223,236,238,239,270,274,278],"))":[43,63,135,197,209],"),":[41,63,171],")-":12,").":[12,179,259,265],")..":12,")/":43,"):":[12,34,104,123,236,259,271],");":[11,43,50,51,54,57,63,70,265],")=":266,")[":34,")\"":[34,41,114,135,170,179,210,211,212,213,239],")\\":210,")\\\\":236,")\u3001":42,")\u300d":153,")\u3059\u3079\u3066":161,")]":[41,104],")disk":210,")grn":[43,63],")groonga":209,")hello":43,")mroonga":209,")offset":[68,69],")senna":209,")ucrt\u30e9\u30f3\u30bf\u30a4\u30e0":34,"*'":[114,115,135],"*)":63,"**":[12,51,55,63,65,66,69,110,121],"***":110,"*,":28,"*.":44,"*/":[54,57,70,73],"*\"":[34,37,42,43,114,115,135,236,273],"*added":68,"*bottom":58,"*bsd":[7,8,36,38],"*buffer":[63,65],"*cache":50,"*column":51,"*ctx":[50,51,54,55,57,58,59,60,61,62,63,64,65,66,67,68,69,71,72,74],"*cursor":58,"*data":[59,70],"*db":[54,55,65],"*dest":68,"*destination":65,"*escaped":57,"*expr":57,"*fin":66,"*func":[54,66],"*grn":70,"*ic":61,"*ii":60,"*indent":63,"*index":[58,61],"*init":66,"*key":68,"*keybuf":68,"*keys":68,"*keywords":57,"*max":69,"*min":69,"*mutex":74,"*n":177,"*name":[51,54,56,57,65,66,68,71,74],"*namebuf":[51,65],"*newvalue":51,"*next":66,"*nvars":66,"*obj":[51,55,57,59,62,63,65,66,67,72],"*oldvalue":51,"*optarg":[55,67],"*path":[51,55,68],"*point":63,"*proc":59,"*query":[57,67],"*res":[58,67,68],"*result":68,"*results":68,"*s":[42,177],"*section":51,"*source":65,"*src":68,"*str":[57,74],"*string":57,"*table":[51,65,68,69],"*tables":54,"*target":57,"*tc":[61,69],"*tid":61,"*top":58,"*type":51,"*user":[66,74],"*value":[60,62,65,68,69],"*valuebuf":62,"*var":74,"*vars":[66,74],"+ \"":[40,43],"+ y":246,"+(":236,"++":[0,6,7,12,24,27,29,34,38,39,42,43,54,57,70,153,253],"+-":[57,155],"+\"":[34,135],"+a":196,"+c":153,"+ff":[43,201,202,223],"+ff0":43,"+ff2":34,"+ffef":241,"+fff":241,"+fffe":146,"+or":210,", [":[117,144],", \"":[34,80,105,168,171,236,273],", {":[155,255],",!=":34,",'":[246,268],",(":63,",.":12,",..":141,",<":34,",<=":34,",==":34,",>=":34,",[":264,",[\"":264,",\"":[42,43,89,103,207,236,270,273,274],",\")":236,",\"domain":269,",\"http":268,",\"link":268,",\"links":268,",\"location":[270,278],",\"tags":270,",\"title":271,",\\\"":105,",\n#":[47,80,99,112,114,115,117,121,122,123,134,135,142,146,177,196,197,202,211,223,226,228,229,230,231,232,234,235,236,238,239,241,243,244,268,270,271,274,275,278],",\n[":[43,103,105,165,179],",\n]":[114,135,182,264,268,276,278],",\n{":[80,103,105,112,114,115,117,135,138,155,171,172,176,177,182,184,196,197,200,206,210,211,212,213,216,217,219,224,225,240,242,269,273,276],",_":[80,114,115,135,138,177,197,269,270,271,274,278],",{":[84,153,154,207],"- \"":42,"-(":[12,197],"-+":155,"--":[8,12,32,34,36,37,38,40,41,42,44,49,50,51,52,54,55,56,57,58,59,61,62,63,64,65,66,67,68,69,70,71,72,74,80,92,104,105,112,114,115,117,122,130,134,135,142,144,146,153,154,155,158,162,168,169,170,171,172,173,176,177,179,184,191,197,202,209,210,211,212,213,219,221,223,224,225,239,264,269,270,273,274,277,278],"->":[34,36,43,63,117,142,265],"-\"":[202,223,239],"-\u02d7":[202,223],"-_":[135,211,212,213],"-a":[40,153,196],"-add":55,"-address":[38,40,43,153],"-adjuster":[80,135],"-admin":40,"-aki":42,"-analyzer":[38,40],"-api":16,"-apt":31,"-archive":25,"-autoreconf":12,"-backlog":34,"-base":[34,153,158,159],"-benchmark":[22,40,41,42,46,150],"-binary":[155,255],"-bind":[40,43,153],"-blog":274,"-bugs":[43,44],"-build":14,"-by":25,"-bye":[112,114,115,135,144,196,197,225],"-c":[24,27,34,44,153,261],"-cache":[35,41,43,153,155],"-canceler":86,"-check":[36,38,158],"-chroot":12,"-ci":[41,42],"-ci\u4e0a":41,"-clear":34,"-client":[34,253],"-code":[12,42],"-column":44,"-columns":[34,44,112,114,115,135],"-command":[21,34,36,158,170,255],"-commnad":82,"-common":[31,40],"-compose":[22,23],"-condition":34,"-conditional":38,"-config":[25,29,35,36,38,40,43,153],"-core":12,"-create":[22,37,41,43,44,46,55,138,150,158,216,217],"-cutter":12,"-d":[153,155,158,159,258,261,275],"-daemon":[158,159],"-databases":[93,95,122,123,143,261,271,275],"-dataset":[22,37,41,43,44,46,138,150,158,216,217],"-db":39,"-dcmake":[7,8],"-dd":[197,199],"-deafult":38,"-deb":12,"-debug":[6,36],"-default":[23,34,39,40,41,44,153,197,242,255],"-dep":12,"-dependent":[44,117,142],"-dev":[2,12,14,25,31,34,38,40,41,42,43,44],"-devel":[24,27],"-dgrn":[7,8],"-dir":154,"-directory":40,"-disable":[36,38,42,158],"-doc":39,"-document":[3,12,17,153,156],"-docutils":12,"-drilldown":[34,42,43,44,135,269],"-drilldowns":[44,115,135],"-dump":43,"-e":153,"-each":[34,38],"-eanble":6,"-efficient":80,"-enable":[3,6,18,36],"-encoding":[23,38,153,197,255],"-encodiong":197,"-endpoint":[158,159],"-escalation":[23,36,40,135,149,153,264],"-essential":[25,31],"-event":43,"-existence":41,"-fd":[38,158],"-file":[35,38,43,83,158],"-files":18,"-filter":[25,31,34,38,40,42,43,44,80,92,135,160,169,177,179,182,197,210,274,276],"-flags":[34,153],"-force":[34,117,123],"-frequency":38,"-fstack":34,"-ftp":154,"-full":12,"-g":[8,32],"-get":[12,18,25,31,40],"-gobject":43,"-gqtp":[22,24,25,27,31,40,42,43,252],"-gram":[0,34,44,146,197,262,264,271],"-groonga":[12,13,154,274],"-gtqp":25,"-h":[153,155,255],"-help":[23,41,153],"-hiragana":[202,223],"-history":38,"-host":154,"-html":[36,40],"-http":[22,40,41,42,44,155,252],"-httpd":[22,24,25,27,31,34,38,40,42,43,44,46,50,131,145,150,157,199,218,252,254,255],"-i":[34,43,153,154],"-id":[40,131,153],"-idf":[211,212,213],"-in":[12,65],"-index":43,"-infinity":34,"-inverse":[211,213],"-ipadic":[27,28,238],"-j":[6,7,29],"-jemalloc":42,"-jinja":12,"-jp":[41,241,265],"-jumandic":27,"-key":[12,39],"-keyring":[25,40],"-keys":12,"-known":179,"-l":[153,158,159],"-latest":24,"-launchpad":12,"-leak":36,"-leaner":159,"-learner":[22,36,42,44,46,150,157,218],"-level":[34,42,43,153,159],"-libedit":36,"-libevent":39,"-libstemmer":42,"-limit":[35,41,43,135,153],"-line":21,"-lines":[38,158],"-listen":34,"-load":[34,115,135],"-localstatedir":23,"-lock":34,"-log":[23,34,38,40,42,43,153,154,155,158,159,199],"-lz4":23,"-m":152,"-match":[23,34,36,40,42,43,92,135,149,153,177,196,211,264,271,273],"-max":[38,153,158],"-mecab":[24,25,27,28,31,40,41,42],"-memcached":44,"-memory":36,"-message":23,"-minus":[202,223],"-mm":[197,199],"-mode":17,"-mruby":[6,12,42],"-msgpack":255,"-munin":[23,24,25,27,31,39],"-mysql":[24,25,27,31,34,44,118,200],"-n":[34,38,114,153,158,271],"-neologd":238,"-nightly":12,"-normalizer":[24,25,27,31,34,40,43,44,118,176,200,201],"-nunit":151,"-offset":[43,135],"-onigmo":34,"-only":34,"-org":12,"-oriented":179,"-output":[34,40,41,43,44,114,135,154,168,169,170,179],"-p":[152,153,154,158,261,275],"-pack":23,"-package":[12,23,44],"-packages":12,"-paginate":12,"-patch":17,"-path":[12,23,34,35,36,38,40,42,43,138,153,158,159,199],"-per":[38,158],"-pgp":12,"-pid":[35,38,43,153],"-pinus":34,"-pip":18,"-platform":23,"-platorm":44,"-plugin":13,"-plugins":[23,24,25,27,31,39],"-point":246,"-port":[153,154,158],"-ppa":12,"-prefix":[6,23,155],"-properties":31,"-protector":34,"-protocol":[153,154,156,258,275],"-query":[34,38,40,41,42,43,44,92,153,155,168,169,177,179,196,209,240,242,259,271,274,276],"-r":[158,159],"-raw":105,"-receive":[158,159],"-recursive":[34,104],"-release":[24,27,34,40,44],"-repository":[12,31,40],"-request":[44,86,153],"-restart":44,"-root":[36,153,156],"-rotate":[43,153],"-rpm":12,"-ruby":[6,12,40],"-s":[153,158,159,261],"-scorer":160,"-search":[42,236,237],"-searchu":237,"-secret":12,"-send":[158,159],"-separated":43,"-server":[22,24,25,27,31,38,39,40,41,42,43,153,252],"-show":35,"-since":34,"-sister":92,"-size":[43,153],"-slices":[44,135],"-sort":[34,44,173],"-sortby":[41,44],"-source":12,"-sphinx":18,"-src":[12,25],"-static":38,"-stem":[25,31,34,42],"-strings":39,"-suggest":[22,36,37,38,40,41,42,43,44,46,138,150,216,217,218],"-t":[153,158],"-talk":[2,12,34,41,43],"-tar":30,"-target":[43,44],"-terminated":[66,74],"-test":[12,14],"-text":[236,237],"-threads":[153,158],"-threshold":[23,36,40,43,135,149,153,264],"-time":179,"-timeout":[44,86,153],"-token":[25,31,34,42,44],"-tokenizer":[24,25,27,31,40,41],"-truncate":34,"-type":[38,92,105,155,216,217,219,255],"-unauthenticated":40,"-uploader":12,"-use":43,"-values":[43,44],"-version":[12,34,36,214,255],"-w":12,"-windows":43,"-with":[6,12,23,28,39,40,42,44,135,149,197],"-without":34,"-wno":38,"-word":135,"-working":40,"-x":[12,41],"-xx":12,"-yyy":17,"-zlib":23,". \"":240,".$":[115,135],".'":[40,41],".(":12,".)":[41,44,65,104,197,199,211,245],".*":28,".*s":63,".,":[114,122,134,135,158,172],".-":17,"..":[6,7,12,17,34,40,41,44,63,70,74,80,85,89,92,93,105,114,116,121,122,131,134,135,138,140,153,155,156,158,172,177,196,197,210,211,212,213,240,255,271],"...":[34,38,40,41,42,43,44,49,50,51,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,75,84,89,105,114,131,135,138,141,153,154,155,156,168,171,182,196,197,198,207,210,214,236,274],"./":[17,26,29],".:":159,".>":214,".\"":[44,135,168,169,177,179,197,198,211,236,241,268,270,271,273,275,277],".\\\\":236,".]":[44,80,89,105,115,131,135,138,141,197],"._":[41,42,65,92,112,114,115,135,142,171,196,197,268,269],".age":[47,92,104,134],".am":18,".am\u30d5\u30a1\u30a4\u30eb":12,".asc":12,".askmonty":42,".blog":264,".body":[90,101,273,277],".builtin":55,".c":[34,45,96,99,123,135,142,265],".clean":[12,112,115,117],".co":[45,135],".column":[41,42,47,91,96,97,98,104,121],".com":[6,7,8,12,13,17,21,34,265,268,269,271,273,275,278],".comment":[273,274],".compress":121,".conf":[43,44,155,245,259,266],".content":[112,114,115,122,134,135,142,182,196,197,198,245,273],".context":142,".created":[112,114,115],".current":43,".d":[25,245,266],".data":135,".db":[26,41,153,261,271,275],".ddl":154,".deb":12,".debian":12,".description":274,".dll":[34,74],".domain":43,".dump":38,".en":12,".entries":[245,273],".entry":130,".exe":[32,34],".execute":[114,115],".facebook":12,".flags":68,".garbage":41,".git":[6,7,8,12,13,17],".github":17,".githubusercontent":21,".gpg":[12,25],".grn":[103,155],".groonga":[12,17,24,25,27,28,29,30,31,32,154],".group":[34,182],".gz":[12,17,24,25,27,28,29,30,31],".h":[16,43,74],".hash":274,".high":91,".html":[12,17,153,155],".htpasswd":[155,255],".index":[43,104,130,134,135],".jp":[12,43,45,135],".js":12,".js\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":21,".json":[155,207],".kentaro":41,".key":[68,142],".label":[135,176],".lemon":[47,135],".list":[12,25],".load":154,".location":274,".log":[29,34,43,82,117,151,153,154,155,158,259],".logs":[117,130],".max":[171,266],".md":12,".md\u30d5\u30a1\u30a4\u30eb":12,".me":[2,12,43],".memos":[122,134],".microsoft":265,".mo\u30d5\u30a1\u30a4\u30eb":17,".msgpack":207,".n":[55,112,114,115,135,196,197,245],".name":[89,104,151,182,274],".ncpu":28,".ne":45,".nested":135,".net":[2,12,268,269,270,271,275,278],".nginx":155,".noarch":24,".o":270,".offset":68,".org":[12,17,24,25,27,28,29,30,31,32,34,42,43,80,103,105,154,155,170,268,269,270,271,275,278],".osdn":[2,12],".output":156,".overcommit":40,".patch":17,".pc":[37,38],".pdb":34,".people":92,".php":12,".pid":153,".po":3,".po\u30d5\u30a1\u30a4\u30eb":[3,12],".position":121,".posted":274,".rb":[36,42,112,114,115,117,133],".readings":176,".real":[47,96,97,98],".reference":142,".remove":117,".repo":34,".roles":92,".roonga":[196,197],".rpm":[24,27],".rst":12,".run":112,".score":148,".scr":154,".section":121,".select":[154,197],".serial":91,".service":40,".sh":[6,12,14,17,21,40],".site":130,".size":121,".so":[124,125,129],".sort":34,".source":43,".sourceforge":[2,12],".spec":38,".ssssss":199,".statistics":121,".status":154,".sub":[115,135],".synonym":135,".t":241,".tag":[91,112,114,115,135,171],".tar":17,".timestamp":[120,123],".title":[106,107,108,130,142,268,273],".to":91,".travis":21,".tsv":[207,209],".txt":241,".type":63,".user":171,".users":104,".uuuuuu":197,".value":135,".weight":[41,121],".x":12,".xml":207,".years":47,".yml":[12,21,26],".yyy":34,".zip":17,".zzz":34,".}":[80,89,105,197],"/ '":65,"/$":17,"/${":158,"/'":42,"/(":12,"/*":[16,17,54,70,73,155,259,266],"/+":12,"/.":38,"/..":[12,44,155,158],"/;":155,"/?":158,"/\"":[80,105,241,268,269,270,271,275,278],"/\u65e5":274,"/\u6708":274,"/\uff09":36,"/_":12,"/aba":[269,271,278],"/acccess":259,"/admin":[38,153],"/afr":[269,271,278],"/alice":241,"/api":255,"/apt":[12,25],"/archive":12,"/atv":[269,271,278],"/base":12,"/bc":12,"/bin":29,"/blog":[12,34],"/branches":14,"/c":[0,6,7,16,253],"/cache":155,"/centos":[12,24,259],"/com":265,"/command":[14,155,156,210,275],"/commands":[42,93,95,122,123,143],"/commit":34,"/commits":42,"/copyright":42,"/coremodule":155,"/cpuinfo":[24,25,27,31],"/cutter":12,"/d":[34,42,155,210,255],"/data":[21,26],"/database":[135,155,255],"/db":[26,103,138,151,155,159,210,259],"/db1":255,"/db2":255,"/dd":197,"/debian":[12,25],"/default":[40,259],"/desktop":265,"/dev":12,"/dic":28,"/dictionary":36,"/disk":210,"/doc":12,"/docs":155,"/en":[12,155],"/en\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0":2,"/entry":273,"/etc":[12,25,28,40,155,209,245,259,266],"/eval":132,"/example":158,"/examples":12,"/executables":158,"/f":12,"/false":[35,268],"/fedora":[27,36,40],"/files":[12,18],"/function":12,"/functions":14,"/gat":[269,271,278],"/github":34,"/gqtp":[41,259],"/grndb":151,"/grntest":12,"/groonga":[6,7,8,12,13,16,17,21,24,25,26,27,28,29,30,31,32,34,36,38,40,41,43,93,95,112,114,115,117,122,123,124,125,129,143,151,153,155,158,209,245,259,261,271,275],"/header":30,"/hoge":153,"/home":241,"/homebrew":12,"/horimoto":[112,115,117],"/hostname":[153,154],"/hosts":12,"/html":[17,18,38,255],"/http":[155,259],"/httpd":[155,259],"/in":43,"/index":[12,17,153],"/introduction":[261,271,275],"/ipadic":28,"/issues":34,"/ja":[12,17,18,34,44,265],"/ja\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0":2,"/javascript":38,"/json":[38,105,155,255],"/key":65,"/keyrings":25,"/kytea":146,"/lc":[12,17],"/learn":158,"/lib":[28,114,124,125,129,151,155,259],"/library":265,"/limits":245,"/linux":[3,5,8,12,18,22,23,34,38],"/lists":12,"/load":[34,44,105,133,155,255],"/local":[6,7,12,28,29,114,155],"/locale":[12,17,18],"/log":[29,43,151,153,155,158,259],"/logical":[112,114,115,117],"/lzo":[36,38,41],"/magazine":135,"/mailarchive":12,"/managers":[155,255],"/master":[17,21],"/math":173,"/max":[34,42],"/mecab":28,"/mecabrc":28,"/meetup":43,"/message":12,"/min":34,"/mm":197,"/modules":[36,155],"/mpisel":44,"/mroonga":34,"/mruby":34,"/ms":265,"/munin":29,"/mxcl":12,"/news":12,"/nfs":29,"/ngx":155,"/nightly":12,"/non":41,"/null":[6,7,35],"/number":135,"/o":140,"/other":155,"/packages":12,"/php":43,"/pipermail":42,"/plain":43,"/plugins":[29,36,41,112,114,115,117,124,125,129],"/ppa":[12,31],"/projects":12,"/pull":12,"/query":[124,125,129],"/rab":[269,271,278],"/reference":158,"/release":[112,115,117],"/repositories":12,"/request":131,"/result":39,"/rroonga":42,"/run":[12,14,153],"/rurema":42,"/sbin":28,"/security":245,"/select":[131,155,275],"/setup":21,"/sharding":[112,114,115,117],"/share":[25,38,153],"/shm":155,"/shutdown":[153,155,255],"/source":[12,16,17,18,24,25,27,28,29,30,31,32],"/sources":[12,25],"/span":[168,169,179],"/srpm":12,"/status":[152,155,207,255,275],"/stem":224,"/stop":[103,144,221,225],"/string":[44,112,114,115,135,171,181],"/suggest":158,"/synonyms":209,"/sysconfig":259,"/sysctl":[28,245,266],"/tab":43,"/test":241,"/time":[34,114,184],"/tmp":[6,7,209,255],"/to":[26,155,255],"/travis":21,"/tsv":[124,125,129,209],"/ubuntu":[12,40,259],"/unit":14,"/usr":[29,153],"/var":[29,43,151,153,155,259],"/vdw":[269,271,278],"/vector":[43,112,114,115,135,191,193,194],"/version":43,"/webplus":135,"/wgs":278,"/windows":[12,32,265],"/work":[12,112,115,117],"/x":255,"/xml":255,"/yum":12,"/zlib":34,"/~":12,"0c":235,"0d":86,"0e":154,"0f":44,"0garbage":34,"0mq":41,"0x":[34,39,86,196,246,261,268],"0xc":261,"10":[154,162,271],"11":[80,123,135,177,197,245,264],"1\u305a":[78,82],"1\u3064":[10,33,34,38,41,42,44,47,57,63,76,80,88,91,92,93,96,97,104,106,107,108,112,113,114,115,116,117,120,121,123,124,125,129,130,131,132,133,134,135,136,138,140,142,145,146,148,149,153,154,155,158,169,171,172,176,177,179,182,184,196,197,199,210,211,212,213,214,218,220,226,228,236,240,245,255,261,268,270,273,274],"1\u30f6\u6708":214,"1\u4ef6":[264,274],"1\u56de":155,"1\u5897":34,"1\u5ea6":[73,115],"1\u6708":[34,197,246,268,274],"1\u884c":[105,154],"1byte":261,"1f":43,"1g":[25,31],"1gb":43,"1o":210,"1st":105,"1tib":[33,140,220],"1usec":44,"1year":151,"2\u3064":[19,24,25,27,31,41,42,43,92,93,98,112,113,114,115,117,123,135,139,140,142,143,144,145,158,161,163,171,172,176,177,182,191,196,199,210,211,212,219,226,228,236,254,255,259,268,269,271,273,274],"2\u3064\u3081":[131,171,196,197,255,273],"2a":34,"2byte":261,"2e":[202,223],"2ff":44,"2grn":42,"2nd":105,"3\u3064":[14,34,41,83,95,104,118,135,161,162,168,171,179,191,195,268,269,271,273],"3d":34,"3days":151,"3ki":36,"4\u3064":[91,153,171,179,211,220,238],"4byte":261,"4e":266,"4gib":[33,44,140,220,261],"4kib":[33,43,47,96,97,98,149,220],"4mib":121,"5\u3064":161,"5b":[98,149],"5c":34,"5d":86,"5f":154,"5weeks":151,"6elz":42,"6gib":245,"7\u3064":137,"7\u6708":[34,43],"7a":34,"7d":151,"7e":154,"7ed":86,"7f":44,"7fa":86,"8\u3064":239,"8bit":246,"8byte":261,"8r":[29,40,63,153],"9\u3064":271,"9e":201,"9f":207,": n":152,":!":196,":#":[42,44],":#{":[34,199],":$":[18,196,197,276],":(":63,":..":[104,135],":/":[12,13,17,21,24,25,26,27,28,29,30,31,32,34,42,80,103,105,131,135,152,153,155,156,158,170,207,255,265,268,269,270,271,273,275,278],"::":[34,43,87,112,114,115,117,158],":<":[135,196],":=":[135,196],":>":[135,196],":@":[115,135,177,196,268,270,271,274,275],":[":[63,154,210],":\"":[34,57,112,210,271],":\\":[8,32,210],":\\\"":105,":\u5206":274,":\u79d2":274,":^":[196,276],":available":63,":bob":274,":byte":71,":clear":12,":column":104,":dat":[104,121],":fix":121,":groonga":[6,7,8,12,31,44,135,196],":hash":[104,121,122],":index":121,":latest":26,":mm":[197,199],":mroonga":34,":no":121,":none":63,":order":43,":pat":[63,121,122],":port":[153,155,156],":set":42,":shorttext":63,":ss":[197,199],":table":104,":value":[135,196],":var":[63,104,121,122],":xxx":34,":{":63,":~":[196,210],";/":[168,169],";\"":[34,40],";b":[168,169],";rroonga":[168,169],"< n":197,"< t1":11,"< y":41,"<#{":[34,199],"<%":63,"<-":255,"<..":214,"</":[123,168,169,170,179,207,239],"<=":[41,155,171,177,197,274],"<[":117,"<\"":[34,63,177],"<directory":159,"<encoding":153,"<endpoint":159,"<gqtp":154,"<groonga":154,"<ip":[153,154],"<level":159,"<limit":153,"<log":153,"<max":153,"<nan":34,"<object":34,"<path":[153,159],"<port":[153,154],"<protocol":153,"<span":[168,169,179,239],"<table":63,"<threshold":153,"<timeout":153,"<type":63,"= '":34,"= \"":[42,135,197],"= n":197,"= y":41,"=$":[12,17,29],"='":170,"=(":12,"=)":11,"=-":[29,34,138,151],"=.":28,"=..":12,"=/":[6,7,12,14,25,29,153,209],"==":[34,44,177,197],"=\"":[30,112,114,115,117,135,168,169,171,179,207],"=\\":[168,169,170,179,239],"=_":138,"=`":18,"=add":146,"=allow":135,"=arg":210,"=auto":[135,138],"=bookmarks":105,"=c":[8,32],"=centos":29,"=column":[112,114,115,135],"=complete":158,"=dat":39,"=encoding":23,"=epel":24,"=fedora":12,"=g":158,"=get":144,"=gr":158,"=graceful":136,"=gro":158,"=groo":158,"=groonga":[12,155,158],"=grooon":158,"=i":12,"=json":105,"=largetable":131,"=message":23,"=no":[34,103,104,105,112,114,115,117,123,142],"=none":[115,118,135,144,146],"=null":[88,92,103,104,105,106,107,108,112,113,114,115,117,121,130,135,140,144,145,146],"=number":[23,149],"=on":[7,8],"=pat":[39,104],"=path":23,"=platform":23,"=query":158,"=r":40,"=site":275,"=sjis":29,"=squeeze":12,"=submit":158,"=table":140,"=title":275,"=true":131,"=unique":131,"=users":[155,255],"=vs":265,"=x":44,"=xxx":44,"=yes":[12,14,34,39,41,43,44,103,104,135],"> %":63,"> \"":43,"> y":41,">#{":[34,199],">(":123,">,":63,">.":[168,169],">:":[47,112,114,115],"><":[57,207],">=":[41,123,177,197],">>":[41,197],">\"":[34,41,47,86,99,112,114,115,123,135,142,168,170,177],">\\":63,">\n<":207,">\u3315":239,">\uff41z":239,">alloc":207,">cache":207,">command":207,">default":207,">max":207,">n":207,">rroonga":[168,169],">starttime":207,">uptime":207,">version":207,"?!":236,"?-":34,"??":135,"?arg":210,"?argument":156,"?i":210,"?id":131,"?max":[34,43],"?msg":12,"?parameter":155,"?table":[44,105,131,155,255,275],"@$":177,"@'":271,"@\"":[34,177,191],"@^":177,"@ceekz":41,"@do":42,"@github":[6,7,8,12],"@groonga":[2,12],"@kiske":40,"@lists":[2,12],"@naoina":[40,41],"@orangain":41,"@packages":12,"@s":36,"@soundkitchen":[38,40],"@tomotaka":38,"@uzulla":38,"@wareohji":40,"@x":34,"@yappo":[41,42],"@yito":[40,41],"@~":[177,210],"[#":[38,39,40,42],"[$":[34,43,44],"[(":[104,210],"[,":166,"[..":[44,115,135],"[2":153,"[:":275,"[@":[38,40,41,42],"[[":[47,80,91,92,95,102,105,112,117,131,132,133,135,141,143,144,148,153,161,165,168,169,171,173,176,179,191,196,197,198,211,216,225,239,240,242,264,268,270,273,276],"[[\"":89,"[\"":[43,80,89,92,93,114,135,138,179,191,193,197,216,264,268,270,274,277],"[\"-":26,"[\u3002":236,"[\u8a9e":89,"[\uff09":236,"[admin":[38,40,41,44],"[api":43,"[apt":40,"[args":153,"[backslash":196,"[benchmark":42,"[bernard":43,"[bindings":43,"[cache":34,"[centos":44,"[cmake":[34,43,44],"[column":[42,105],"[content":[112,114,115,135],"[count":[112,114,115],"[dat":[34,39,40],"[dd":210,"[deb":[38,40,41,42,43,44],"[debian":44,"[doc":[34,38,39,40,41,42,43,44],"[dump":[40,41,42],"[element":[80,197],"[example":[42,43],"[examples":44,"[fedora":[40,42],"[functions":34,"[geo":[34,38,41],"[github":[34,42],"[gqtp":41,"[grn":43,"[grntest":38,"[groonga":[12,38,40,42,43,44],"[hash":44,"[header":[83,88,91,92,95,96,97,98,99,102,104,106,107,108,109,112,117,118,119,120,121,122,123,124,125,129,130,132,133,134,136,139,140,142,143,145,146,147,148],"[hh":43,"[highlighter":34,"[hour2":114,"[http":[40,41,42,43,44],"[httpd":[34,40,41,42,43,44],"[ii":34,"[index":[34,42],"[info":210,"[is":[112,114,115,135],"[ja":44,"[key":43,"[label":[34,43,44,115,135],"[label1":[42,115,135],"[label2":[115,135],"[launchpad":12,"[libedit":38,"[linux":40,"[load":[34,40,42],"[log":34,"[logical":43,"[macports":38,"[mdev":43,"[mecab":43,"[mrb":[34,43],"[mruby":[34,42,43,44],"[munin":[38,40,41,42],"[n":[41,42,112,114,115,135],"[name":[112,114,115,135],"[name1":[112,114,115,135],"[name2":[112,114,115,135],"[normalizer":42,"[normalizers":34,"[nsubrecs":115,"[object":92,"[optimizer":34,"[os":42,"[output":39,"[pat":40,"[php":[40,42],"[pkg":[38,40],"[plugin":[34,42,43],"[power8":42,"[query":34,"[record":115,"[rpm":[34,38,39,40,41,42,43,44],"[sharding":[34,43],"[snippet":[42,179],"[solaris":40,"[sort":44,"[space":196,"[suggest":[39,40,41],"[table":[41,92],"[tag":[115,135],"[terms":104,"[test":40,"[the":105,"[token":41,"[tokendelimit":34,"[tokenfilters":34,"[tokenfilterstem":34,"[tokenfilterstopword":34,"[tokenizer":[40,41,44],"[tokenmecab":34,"[tokenngram":34,"[travis":41,"[ubuntu":44,"[users":104,"[vector":[34,112,114,115,135],"[warning":210,"[windows":[34,38,40,41,42,43,44],"[xxxxx":265,"[yum":40,"[{":[105,155,255],"\" (":[202,223],"\"#":38,"\"#\"":154,"\"#{":197,"\"%":210,"\"'":[34,40,41,42,43,80,91,92,112,114,115,135,176,196,197,210,262,264],"\"(":41,"\")":[34,40,41,42,43,56,63,112,115,131,135,161,163,165,167,171,172,176,177,191,197,224,225,238,240,242,265,270,278],"\"*":[40,63],"\",":[26,34,41,43,44,47,63,80,83,89,91,92,93,95,96,99,102,103,105,112,114,115,117,121,122,123,131,134,135,137,138,141,142,143,144,148,153,154,155,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,201,202,210,211,212,213,216,217,219,223,224,225,236,238,239,240,242,243,244,261,264,268,269,270,271,273,274,275,276,277,278],"\"-":[38,165,202,223],"\".":[197,253,269],"\"/":[93,95,112,114,115,117,122,143,153,241,278],"\":":[34,43,44,47,80,84,89,91,92,95,102,103,105,112,113,114,115,116,117,118,119,121,122,131,132,133,134,135,137,138,143,144,146,147,148,153,154,155,158,161,162,165,168,169,170,171,172,173,176,177,182,184,191,193,196,197,198,200,201,202,203,206,207,210,211,212,213,216,217,219,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,255,261,268,269,270,271,273,274,275,276,277,278],"\";":[154,155,255],"\"<":[41,168,169],"\"=":171,"\">":[168,169,179,207],"\"?":[135,207],"\"@":[171,274],"\"[":[34,40,86,96,99,112,114,115,123,135,142,210],"\"\"":[39,44,91,96,97,182,196,197,210,246],"\"\\":[43,210],"\"\\\\":210,"\"\\n":43,"\"\u00b7":[202,223],"\"\u2015":[202,223],"\"\u3001":[216,269],"\"\u3002":42,"\"\u308a\u3093\u3054":223,"\"\u308d\u3086\u304d":276,"\"\u30a2":239,"\"\u30ac":201,"\"\u30ce":238,"\"\u30cf":238,"\"\u30d0\u30d3\u30d6\u30d9\u30dc":[202,223],"\"\u30d6":[202,223],"\"\u30df\u30ea":197,"\"\u30fb":[202,223],"\"\u30fc":[202,223],"\"\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc":[202,223],"\"\u52c9":244,"\"\u59d3":238,"\"\u5f37":[228,243,244],"\"\u5f7c":[202,238],"\"\u672c":[229,230,231,232,244],"\"\u8a9e":[229,230,231,232,244],"\"\uff09":[35,216,268,278],"\"\uff65":[202,223],"\"\uff70":[202,223],"\"]":[26,43,44,63,80,92,93,96,97,98,103,112,114,115,117,135,153,165,176,179,191,193,197,216,264,270,271,274,277],"\"_":[41,44,47,80,83,91,92,93,95,102,103,105,112,114,115,117,121,135,138,143,144,148,155,158,161,162,165,170,171,172,173,176,177,182,184,191,193,196,197,198,200,206,210,211,212,213,216,217,219,224,225,240,242,255,264,268,269,270,271,273,274,275,276,277,278],"\"a":[42,63,115,135,146,182],"\"ab":218,"\"adventurer":92,"\"alice":[92,121],"\"always":113,"\"apple":200,"\"application":38,"\"auto":113,"\"b":[63,115,135,182],"\"black":200,"\"block":268,"\"book":197,"\"c":[63,115,135,182],"\"canceled":131,"\"co":218,"\"color":200,"\"column":[105,121,122],"\"complete":218,"\"content":[135,196,197,224,225],"\"correction":218,"\"created":[112,114,115],"\"cve":34,"\"d":[63,226,228,239],"\"dav":171,"\"db":121,"\"ddl":42,"\"double":197,"\"droonga":[171,191],"\"e":[63,138,146,216,239,241],"\"element":80,"\"ellip":166,"\"ellipsoid":166,"\"engine":[216,217,219],"\"equal":[177,191],"\"f":63,"\"fast":115,"\"flower":268,"\"force":34,"\"fulltext":146,"\"g":63,"\"good":[112,115,135,197],"\"gr":140,"\"greater":177,"\"gronga":218,"\"groonga":[80,103,135,140,171,179,182,191,197,218,273],"\"h":[146,239],"\"hello":[144,225],"\"http":80,"\"i":[83,114,115,135,196,197,198,224,273,274],"\"include":117,"\"index":121,"\"is":268,"\"k":270,"\"key":121,"\"keyword":[34,135],"\"l":239,"\"label":135,"\"large":121,"\"less":177,"\"lic":171,"\"localhost":261,"\"lz4":121,"\"match":[177,191],"\"medium":121,"\"message":[210,212,213],"\"monkey":268,"\"mroonga":[80,103,135,182,191,197],"\"mysql":[80,218],"\"n":[44,83,105,112,114,115,121,122,135,137,155,196,197,261,271,275],"\"name":[121,177,240,242],"\"near":[171,177,191],"\"never":113,"\"new":165,"\"no":40,"\"normal":121,"\"not":177,"\"null":40,"\"o":[226,228,239],"\"pgroonga":103,"\"popular":135,"\"pp":42,"\"prefix":177,"\"proc":122,"\"r":239,"\"rect":[40,166],"\"rectangle":[40,165,166],"\"regexp":177,"\"requires":40,"\"roonga":218,"\"ruby":80,"\"s":[138,146,216,217,234,235],"\"saerch":217,"\"say":197,"\"scalar":121,"\"se":216,"\"sea":216,"\"search":[196,216,217,219],"\"sequence":[138,216,217,219],"\"serach":217,"\"service":217,"\"similar":[171,177,191],"\"small":121,"\"sound":217,"\"sphere":166,"\"sphr":166,"\"starttime":[84,207],"\"suffix":[171,177,191],"\"sug":218,"\"suggest":218,"\"t":[146,241],"\"table":[121,122,153],"\"tags":80,"\"text":38,"\"theater":277,"\"theatre":277,"\"timestamp":117,"\"tritonn":135,"\"type":[122,138],"\"unknown":56,"\"uptime":207,"\"utf":56,"\"value":135,"\"vector":[41,121],"\"version":207,"\"visual":8,"\"w":239,"\"web":[217,219],"\"weight":268,"\"x":[34,41,42,197],"\"xxx":41,"\"y":34,"\"you":196,"\"yyyy":197,"\"zlib":121,"\"zstd":121,"\"}":[47,91,92,102,103,105,112,113,114,115,116,117,121,135,138,155,162,171,172,176,177,182,184,193,196,197,198,200,206,210,212,213,216,217,219,224,225,239,240,242,255,268,269,270,273,276,278],"\\%":32,"\\'":153,"\\(":196,"\\?":34,"\\[(":210,"\\\"":[57,105,168,169,170,179,182,210,239,262],"\\\"_":105,"\\\"a":182,"\\\"}":105,"\\\\":[43,57,168,176,182,210,236],"\\\\\"":176,"\\\\\\":[43,210],"\\\\r":236,"\\\\z":210,"\\a":[43,44,210,241],"\\ahello":43,"\\ahost":210,"\\bin":32,"\\groonga":32,"\\n":[63,210],"\\s":236,"\\u":237,"\\ud":34,"\\udf":34,"\\z":[210,241],"\u00a9\"":202,"\u00b7\"":[202,223],"\u00b7\u00b7":[202,223],"\u00b7\u1427":[202,223],"\u02d7\"":[202,223],"\u058a\"":[202,223],"\u058a\u2010":[202,223],"\u1427\"":[202,223],"\u2010\"":[202,223],"\u2011\u2012":[202,223],"\u2013\u2043":[202,223],"\u2014\"":[202,223],"\u2014\u2015":[202,223],"\u2022\"":[202,223],"\u2022\u2219":[202,223],"\u2026\u3001":184,"\u2026\uff09":217,"\u2043\"":[202,223],"\u207b\"":[202,223],"\u207b\u208b":[202,223],"\u208b\"":[202,223],"\u2192id":220,"\u2212\"":[202,223],"\u2219\"":[202,223],"\u22c5\"":[202,223],"\u22c5\u2e31\u30fb":[202,223],"\u2500\"":[202,223],"\u2500\u2501\uff70":[202,223],"\u2501\"":[202,223],"\u25a1\u25a1":10,"\u25cb\u25cb":10,"\u2e31\"":[202,223],"\u3001 \"":172,"\u3001#":274,"\u3001$":12,"\u3001'":[42,56,153,177,197,246,268],"\u3001(":[68,69,154,161,246],"\u3001-":[36,154,246],"\u3001.":[14,17],"\u3001/":[271,275],"\u3001:":[154,265],"\u3001[":[34,271],"\u3001\"":[34,38,40,41,44,162,170,172,182,202,216,217,218,219,223,236,246,271,274,277],"\u3001\u00d7":10,"\u3001\u300c":[34,35,92,114,117,121,135,153,206,211,212,213,216,226,262,264,269,270,278],"\u3001\u6708":184,"\u3001_":271,"\u3001c":271,"\u3002#":[36,38,274],"\u3002'":[65,202,238],"\u3002(":[11,12,27,34,49,63,66,69,102,135,153,154,242,259,265,273],"\u3002)":[34,69,102,135,154,265,273],"\u3002-":[29,59,69],"\u3002.":17,"\u3002:":[10,12,14,17,18,34,38,43,44,82,84,86,89,96,97,98,100,105,106,107,108,109,112,114,115,119,121,122,123,130,131,134,135,136,137,138,141,142,147,148,151,153,154,155,156,158,169,171,177,184,191,193,194,197,199,201,203,211,212,213,216,217,218,219,239,242,245,255,262,264,265,266,271],"\u3002[":[34,40,41,42,43,44,271],"\u3002\"":[34,41,42,44,162,172,217,223,238,258,264,269,274,275],"\u3002\u00d7":10,"\u3002\u2193":153,"\u3002\u3002":205,"\u3002\u300c":[42,92,99,112,114,115,117,118,121,123,135,140,144,146,171,196,197,210,213,226,270,273],"\u3002\u300d":[34,236,264],"\u3002\u3044":11,"\u3002\u3044\u304f\u3064\u304b":[122,158,210],"\u3002\u3044\u307e":39,"\u3002\u3056\u3063\u304f\u308a":80,"\u3002\u3057\u304b":92,"\u3002\u3057\u304b\u3057":[0,6,7,8,23,38,80,92,95,117,135,143,153,165,198,200,211,213,217,226,228,241,246,255],"\u3002\u3057\u304b\u3082":254,"\u3002\u3059":[34,154,198],"\u3002\u3059\u3050":155,"\u3002\u3059\u3079\u3066":[14,17,135],"\u3002\u3064\u307e\u308a":[34,49,92,104,105,135,149,151,158,196,212,232,235,271,277],"\u3002\u3069":191,"\u3002\u3069\u308c":158,"\u3002\u307e\u305a":264,"\u3002\u307e\u305f":[0,11,82,104,135,152,153,154,156,197,209,213,217,246,261,265,268,271,273,278],"\u3002\u307e\u3060":42,"\u3002\u30ad\u30fc":[34,44,47,134,135,149],"\u3002\u30bf\u30b0":[80,112,114,115,135,169,270],"\u3002\u30d0\u30b0":19,"\u3002\u30df\u30ea":268,"\u3002\u30ed\u30b0":[140,155,199],"\u3002\u4f8b":[8,43,65,123,140],"\u3002\u52d5\u7684":135,"\u3002\u5404":[112,114,115,135],"\u3002\u7701\u7565\u53ef\u80fd":168,"\u3002\u7a7a":121,"\u3002\uff01":236,"\u3002\uff01\uff1f":236,"\u3002\uff08":[17,21,34,36,38,43,54,69,89,92,104,113,114,115,131,135,153,158,169,179,195,196,197,205,216,217,219,220,238,245,246,262],"\u3002\uff09":[17,21,35,36,38,43,69,92,104,113,114,115,121,131,135,140,158,169,179,196,197,205,217,219,220,238,262],"\u3002_":[78,271],"\u3002adjuster":42,"\u3002amazon":135,"\u3002api":195,"\u3002apt":12,"\u3002ascii":[196,197],"\u3002bash":43,"\u3002between":44,"\u3002blogs":264,"\u3002buf":51,"\u3002c":[0,16,87],"\u3002callback":11,"\u3002centos":43,"\u3002column":[11,51,271],"\u3002command":82,"\u3002cpu\u30b3\u30a2":255,"\u3002ctrl\u30ad\u30fc":271,"\u3002cursor":69,"\u3002db":[11,38,54,261,271],"\u3002debian":[14,34],"\u3002drilldown":34,"\u3002eclipse":17,"\u3002ecmascript":135,"\u3002ftp":154,"\u3002functions":14,"\u3002gdb":[6,7,14],"\u3002geopoint":274,"\u3002gnr":195,"\u3002gnu":5,"\u3002google":196,"\u3002gqtp":[87,152,261],"\u3002grn":[11,195],"\u3002groonga":[0,3,24,25,26,27,29,31,32,34,40,41,42,43,44,47,73,76,82,92,135,153,154,155,196,197,199,207,210,214,216,220,245,258,271,273,275],"\u3002hook":59,"\u3002host":261,"\u3002html":168,"\u3002http":[41,43],"\u3002id":[44,54],"\u3002int":41,"\u3002iptables":275,"\u3002jis":206,"\u3002json":44,"\u3002key":[68,262],"\u3002keys":68,"\u3002linux":245,"\u3002listen":34,"\u3002lz":92,"\u3002lz4":44,"\u3002make":154,"\u3002max":69,"\u3002memcached":44,"\u3002messagepack":[29,83],"\u3002min":69,"\u3002mroonga":[0,65],"\u3002mruby":[34,43],"\u3002munin":[24,25,27,31],"\u3002mysql":[24,25,27,31,214],"\u3002n":[118,146,264],"\u3002name":[51,54,68],"\u3002nginx":44,"\u3002null":[54,55,68],"\u3002obj":65,"\u3002offset":59,"\u3002openbsd":44,"\u3002optarg":55,"\u3002os":99,"\u3002output":[42,103],"\u3002pcre":155,"\u3002point":[166,167],"\u3002post":255,"\u3002postgresql":34,"\u3002rdbms":153,"\u3002rk":206,"\u3002rroonga":195,"\u3002ruby":210,"\u3002run":14,"\u3002scan":14,"\u3002set":154,"\u3002sql":135,"\u3002squeeze":14,"\u3002table":[68,72,102],"\u3002tag":270,"\u3002timeout":65,"\u3002tokendelimit":219,"\u3002tokenizer":34,"\u3002travis":21,"\u3002true":44,"\u3002tsv":[83,209],"\u3002unix":137,"\u3002utf":[41,158,201,203],"\u3002value":[65,78],"\u3002video":270,"\u3002windows":[5,34],"\u3002xml":83,"\u3002zlib":92,"\u3002zstandard":92,"\u300c#":36,"\u300c,":[103,140],"\u300c\"":153,"\u300c\u25cb":[43,112,114,115],"\u300c\u3059":34,"\u300c\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":121,"\u300c\u30e9\u30d9\u30eb":135,"\u300c\u4eba":92,"\u300c\u5024":[134,140],"\u300c\u52d5\u7684":135,"\u300c\u5e74":43,"\u300c\u5f0f":57,"\u300c\u6771\u4eac\u90fd":264,"\u300c\u697d\u3057":262,"\u300c\u697d\u3057\u3044":262,"\u300c\uff76":201,"\u300ca":211,"\u300calice":274,"\u300carray":121,"\u300cbill":262,"\u300cbilliard":262,"\u300cbob":274,"\u300cbuffer":121,"\u300ccharlie":274,"\u300cchunk":121,"\u300ccomments":274,"\u300cdelete":12,"\u300cgrand":274,"\u300cgroonga":[42,135,158,195,245],"\u300chello":135,"\u300cn":34,"\u300cnew":274,"\u300cnihon":216,"\u300cnippon":216,"\u300cparenthesized":34,"\u300cpopular":135,"\u300csenna":135,"\u300cthe":211,"\u300cthey":[211,212,213],"\u300cthread":34,"\u300cu":34,"\u300cusers":274,"\u300cview":12,"\u300d:":201,"\u300d\u3001":[42,270,274],"\u300d\u3002":195,"\u300d\u300c":[34,121],"\u300d\uff08":[103,135,140,262],"\u300d\uff09":34,"\u300d]":236,"\u3041\u3042\u3043\u3044\u3045\u3046":[202,223],"\u3042\u3042\u3044\u3044\u3046":[202,223],"\u3042\u3044\u3046":[202,223],"\u3042\u3044\u307e\u3044":140,"\u3042\u304d":276,"\u3042\u304d\u3089":42,"\u3042\u304f":50,"\u3042\u3052\u308b":[22,173,263],"\u3042\u305f\u308a":[36,38,121],"\u3042\u3063":[12,17,27,34,40,41,44,51,63,65,68,78,82,105,117,135,136,138,154,197,210,255,270],"\u3042\u3068":[12,17,99,245,265],"\u3042\u3068\u3082":86,"\u3042\u306a\u305f":[2,6,7,8,12,43,92,210,211,212,213],"\u3042\u307e\u308a":[10,68,153,273],"\u3042\u3089\u304b\u3058\u3081":[12,27,246],"\u3042\u3089\u3086\u308b":123,"\u3042\u3089\u308f\u3057":277,"\u3042\u308a":[0,1,2,3,5,6,7,8,10,11,12,13,14,16,17,18,19,23,24,25,27,29,31,32,33,34,38,40,41,42,43,44,47,49,50,54,57,61,63,65,68,69,70,73,78,80,82,83,86,91,92,93,96,97,98,99,102,103,104,105,106,107,108,111,112,113,114,115,116,117,118,119,120,121,122,123,124,127,129,130,131,134,135,136,137,138,139,140,141,142,143,144,145,146,147,151,153,154,155,156,158,161,165,168,169,170,171,172,173,176,177,179,182,191,193,195,198,199,200,201,202,203,204,206,207,209,210,211,212,213,214,215,216,217,218,220,221,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,253,255,259,261,262,264,265,266,268,269,271,273,274,275,277,278],"\u3042\u308b":[0,1,2,5,6,7,8,10,11,12,17,20,29,32,34,36,38,40,41,42,43,44,47,57,61,65,69,80,82,87,89,90,92,93,94,99,100,101,102,103,104,110,111,112,114,115,117,121,122,127,135,136,137,138,140,141,142,146,151,152,153,154,155,156,158,161,163,165,166,167,171,172,173,174,176,177,178,179,182,191,195,196,197,199,205,209,210,211,216,217,220,223,229,236,241,245,246,255,261,264,265,266,268,269,270,271,273,275,276,278],"\u3042\u308b\u3044":[0,11,27,42,51,67,68,82,92,105,117,122,140,142,155,166,167,172,196,197,245,261],"\u3042\u308c":[6,7,12,34,44,47,50,63,92,117,140,142,153,154,161,172,198,264],"\u3042\u308c\u3053\u308c":10,"\u3042\u308f\u305b":[214,245],"\u3042\u308f\u305b\u308b":40,"\u3042\u30a4\uff73":[202,223],"\u3044\u3044":[2,10],"\u3044\u3044\u306d":[112,114,115,135,196,197],"\u3044\u3046":135,"\u3044\u304d":[10,12,265,271],"\u3044\u304f":[3,4,22,44,85,132,135,146,210],"\u3044\u304f\u3064":[3,210],"\u3044\u304f\u3064\u304b":[1,2,8,11,12,14,27,29,34,41,43,44,78,92,98,103,104,105,112,114,115,117,118,121,131,135,136,140,144,146,149,158,160,177,196,197,200,210,211,214,226,245,254],"\u3044\u304f\u3089":[0,44],"\u3044\u305a\u308c":[78,82,246],"\u3044\u3063":[137,210],"\u3044\u3064":[34,216],"\u3044\u3066":[34,44],"\u3044\u307e":[133,265],"\u3044\u307e\u305b":[6,34,41,42,44,83,92,112,114,115,117,135,138,140,146,155,196,197,205,209,210,211,212,213,214,220,226,228,238,242,254,255,265],"\u3044\u307e\u307e\u3067":239,"\u3044\u308b":[0,6,7,10,11,12,14,17,18,21,25,29,31,34,35,36,37,38,39,40,41,42,43,44,47,48,51,54,59,63,65,66,68,69,70,80,83,86,88,89,90,91,92,93,94,95,99,101,102,104,105,106,107,111,112,113,114,115,119,120,121,122,123,124,125,129,130,131,132,133,134,135,137,140,141,143,145,146,147,151,153,154,155,156,158,161,165,169,170,171,172,177,179,182,196,197,198,200,206,209,210,211,212,213,214,215,216,217,218,220,224,225,226,228,229,230,231,232,240,243,244,255,259,262,264,265,266,268,269,270,271,273,274,275,276,278],"\u3044\u308c":[40,43,44,65,86,117,122,191,228,268,273],"\u3044\u308d\u3044\u308d":[22,267,274],"\u3044\u308f\u3086\u308b":270,"\u3044b":[262,264],"\u3046\u3048":[38,40],"\u3046\u3048\u3048":[202,223],"\u3046\u3061":[11,34,38,40,43,51,65,68,69,82,89,92,112,121,137,149,161,205],"\u3046\u3061\u3044":153,"\u3046\u3063\u304b\u308a":41,"\u3046\u307e\u304f":[3,4,22,43,44],"\u3047\u3048":[202,223],"\u3047\u304a":[202,223],"\u304a\u3044":[0,12,14,17,34,38,41,44,51,65,68,78,158,268,271],"\u304a\u304a\u3084\u3084\u3086\u3086":[202,223],"\u304a\u304b":29,"\u304a\u304b\u3052":210,"\u304a\u304b\u3057":36,"\u304a\u304b\u3057\u3044":44,"\u304a\u304b\u3057\u304f":36,"\u304a\u304d":[0,12,34,47],"\u304a\u304d\u307e\u3057\u3087":268,"\u304a\u304f":[12,197,268],"\u304a\u3051":[135,206],"\u304a\u3051\u308b":[0,33,40,41,196,246,268,270,271],"\u304a\u3053":[0,268],"\u304a\u3053\u306a\u3063":271,"\u304a\u3055\u3089\u3044\u3057":10,"\u304a\u3059\u3059\u3081":[104,172,255],"\u304a\u3059\u3059\u3081\u3057":[12,196,197,210,259],"\u304a\u305d\u3089\u304f":44,"\u304a\u3070":[35,38,41,43,44],"\u304a\u3070\u305f":[38,41,43,44],"\u304a\u3083":[202,223],"\u304a\u3088":49,"\u304a\u3088\u3073":[0,12,29,34,40,66,153,268,271],"\u304a\u3089":12,"\u304a\u308a":[42,278],"\u304a\u5f85\u3061":2,"\u304a\u77e5\u3089":22,"\u304a\u9858\u3044":[10,154],"\u304b\u3048\u308b":[43,182],"\u304b\u304b\u304d\u304d\u304f\u304f\u3051\u3051":[202,223],"\u304b\u304b\u3063":[34,83],"\u304b\u304b\u308a":[34,44,151,196,197,198,238],"\u304b\u304b\u308b":[68,131,151,198,271],"\u304b\u304b\u308f\u3089\u305a":34,"\u304b\u304c\u304d\u304e\u304f\u3050\u3051\u3052":[202,223],"\u304b\u304e\u308a":154,"\u304b\u3051":[41,90],"\u304b\u3051\u308b":[10,155],"\u304b\u3053\u308c":34,"\u304b\u3057\u3089":123,"\u304b\u305a":[40,42,44],"\u304b\u305a\u3072\u3053\u3055\u3093":40,"\u304b\u305f":[43,44],"\u304b\u3061":[135,262],"\u304b\u3061\u3083\u3093":[117,142],"\u304b\u3064":[34,41,69,135,151,197,262],"\u304b\u3069":[34,42,43,54,103,104,105,112,114,115,117,120,123,135,138,142,151,155,161,166,167,171,196,264,266,271,278],"\u304b\u3069\u3046":[29,43,44,87,96,104,109,115,122,130,134,148,161,177,182,264],"\u304b\u306a\u308a":42,"\u304b\u307e\u3044":271,"\u304b\u3082":[10,42,43,70,83,92,95,105,106,107,112,114,118,119,120,131,132,133,134,137,140,142,143,147,151,158,171,196,197,210,211,212,213,273],"\u304b\u3089":[0,3,9,11,12,17,22,23,30,33,34,35,36,38,39,40,41,42,43,44,47,51,54,61,65,68,69,82,83,91,92,95,99,102,103,104,105,112,114,115,117,120,121,122,124,129,130,131,135,136,137,138,140,142,143,145,151,152,153,154,155,161,165,166,169,170,172,173,176,178,179,182,191,192,195,196,197,198,199,200,205,209,210,211,212,213,216,217,218,219,220,225,226,228,229,230,231,232,236,238,240,242,246,255,258,261,264,265,268,271,273,274,277,278],"\u304b\u308b":34,"\u304b\u308f":34,"\u304b\u308f\u304b\u308a":34,"\u304b\u308f\u308a":[27,42,43,44,264],"\u304by":41,"\u304c\u3042\u308a":[12,19,121,135,156,165,209,214,224,225],"\u304c\u3042\u308c":[44,214],"\u304c\u3044":47,"\u304c\u3044\u304f\u3064\u304b":[114,121],"\u304c\u3053\u306e":196,"\u304c\u3059":[34,68,105,120],"\u304c\u3061":[92,226],"\u304c\u3063":[34,93,112,114,115,210,236,238],"\u304c\u3064\u3044":[36,40,70,80,135,214,220],"\u304c\u3064\u304d":151,"\u304c\u3069":[34,134,199,245],"\u304c\u3072\u3068\u3064":209,"\u304c\u308b":273,"\u304c\u308f\u304b\u3063":92,"\u304c\u308f\u304b\u308a":[34,91,92,115,170,229,230,231,232,265,274],"\u304c\u308f\u304b\u308b":165,"\u304c\u308f\u304b\u308c":135,"\u304f\u3060":[0,2,6,7,8,12,17,24,25,27,28,29,30,31,32,34,40,41,42,43,44,49,64,80,85,86,87,88,91,92,93,95,96,97,98,99,102,104,106,107,108,109,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,151,153,154,155,156,158,165,170,176,177,182,196,197,206,209,210,220,228,245,246,253,255,259,264,266,268,269,271,274,275,276,278],"\u304f\u308c":[10,239],"\u304f\u308c\u308b":[0,16,17,99,104],"\u3050\u3088\u3046":165,"\u3050\u308b":[34,43,44,195,196,197],"\u3050\u308b\u3093":[196,197,270],"\u3051\u3069":151,"\u3053\u3046":10,"\u3053\u3046\u3059\u308c":10,"\u3053\u3053":[12,21,83,106,135,138,196,197,200,209,264,265,268,271,274,278],"\u3053\u3053\u3055":[202,223],"\u3053\u3053\u3067":[12,265],"\u3053\u3054":[202,223],"\u3053\u3061\u3089":[17,158,170,173,177,209,271,273],"\u3053\u3068":[0,1,3,6,7,8,9,10,11,14,17,20,21,23,24,25,27,29,31,32,34,35,36,38,39,40,41,42,43,44,47,48,50,51,54,59,61,65,68,69,73,78,80,82,83,85,86,87,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,110,111,112,114,115,117,118,121,123,124,125,127,129,130,131,133,135,136,140,141,142,143,144,145,146,149,151,152,153,154,155,156,158,163,165,166,167,168,169,170,171,173,174,176,177,178,179,182,195,196,197,198,199,200,202,205,206,207,209,210,211,212,213,214,216,217,218,219,220,221,223,224,225,226,228,236,238,239,240,245,246,254,255,258,259,261,264,265,266,268,269,270,271,272,273,274,275,276,277,278],"\u3053\u306a\u3044":[42,43],"\u3053\u306e":[0,2,3,5,6,7,8,11,12,17,18,20,21,23,24,25,26,27,28,29,30,31,32,33,34,38,39,40,41,42,43,44,47,48,49,50,57,63,68,69,70,74,80,81,83,85,86,87,88,91,92,93,95,96,97,98,99,104,105,106,107,108,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,153,154,155,158,160,161,165,166,168,169,171,173,176,177,179,181,182,184,191,193,194,196,197,198,199,202,204,206,207,209,210,211,212,213,214,215,216,217,219,220,223,228,229,230,232,238,239,240,241,242,245,247,254,255,261,262,264,268,269,270,271,272,273,274,277,278],"\u3053\u308c":[0,6,7,8,11,12,16,17,18,29,33,34,38,40,41,42,43,44,47,50,55,73,80,86,88,91,92,95,104,106,107,108,112,113,114,115,117,120,122,124,125,129,130,131,135,136,140,143,146,153,155,158,161,165,169,176,177,179,182,196,197,198,200,209,210,211,212,213,214,216,217,218,219,220,226,228,236,238,240,245,255,261,262,264,266,268,269,273,274,277,278],"\u3053\u308c\u3089":[3,12,24,25,27,29,30,31,40,41,78,80,92,104,112,113,114,115,117,122,124,125,129,135,149,151,153,155,156,158,165,171,195,196,197,201,207,210,211,214,218,219,220,255,264,269,270,271,274],"\u3054\u3068":[9,12,34,40,41,43,44,54,113,137,146,168,177,211,245,265,266,272],"\u3054\u307f":[10,41],"\u3054\u3089\u3093\u304f":13,"\u3054\u89a7\u304f":[14,271],"\u3055\u3044":[0,2,6,7,8,12,14,17,24,25,27,28,29,30,31,32,34,40,41,42,43,44,49,64,80,85,86,87,88,91,92,93,95,96,97,98,99,102,104,106,107,108,109,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,151,153,154,155,156,158,165,170,176,177,182,196,197,206,209,210,220,228,245,246,253,255,259,264,266,268,269,271,274,275,276,278],"\u3055\u304c":265,"\u3055\u304d":268,"\u3055\u3056\u3057\u3058\u3059":[202,223],"\u3055\u3057\u3057\u3059\u3059\u305b":[202,223],"\u3055\u305b":10,"\u3055\u307e\u3056\u307e\u306a":[22,267,274],"\u3055\u3089":273,"\u3055\u3089\u306b":[0,33,42,43,80,82,112,114,115,218,220,265,270,271],"\u3055\u3093":[6,7,17,34,36,37,38,39,40,41,42,43,44,92,112,114,115,117,135,140,142,144,146,179,202,210,213,218,238,245,255,269],"\u3057\u3044":[262,264],"\u3057\u3046\u308b":42,"\u3057\u304b":[17,42,43,47,92,112,114,115,135,140,155,171,196,197,210,212,213,226,228,241,242,255,268,273],"\u3057\u304b\u3057":[17,34,115,117,123,135,197,209,210,213,228,245,255,262,264,273],"\u3057\u304d\u3044":34,"\u3057\u304d\u308c":40,"\u3057\u304f":41,"\u3057\u3064\u3064":14,"\u3057\u3066":[10,12,14,17,31,36,40,41,68,135,151,155,264,269,270,271],"\u3057\u306a\u3044":43,"\u3057\u307e":10,"\u3057\u307e\u3044":[10,34,142,154,212,217,264,268,276],"\u3057\u307e\u3046":[0,10,12,34,36,38,40,41,42,43,44,105,142,151,228],"\u3057\u307e\u3057":[34,41],"\u3057\u307e\u3057\u3087":[80,142,211,212,213,228,277],"\u3057\u307e\u3059":[112,114,115,135,158,177,196,197,218,239,240,262,274],"\u3057\u307e\u305b":[10,29,114,115,135,155,158,210,216,236,264],"\u3057\u307e\u3063":[34,42,44],"\u3057\u3084\u3059\u3044":158,"\u3057\u3084\u3059\u304f":[40,44],"\u3057\u3088":[11,34,38,41,44,49,54,62,95,96,105,117,142,143,165,198,268],"\u3057\u308a":10,"\u3057\u308c":[10,42,43,70,83,92,95,105,106,107,112,114,118,119,120,131,132,133,134,137,140,142,143,147,151,158,171,196,197,210,211,212,213,273],"\u3058\u304d":[86,179],"\u3059\u304e\u307e\u305b":270,"\u3059\u304e\u308b":[34,80],"\u3059\u304f":182,"\u3059\u3050":[0,131,136,158,255],"\u3059\u3053\u308c\u3089":135,"\u3059\u3067":[12,42,70,95,104,143,146,198,206,245,262],"\u3059\u306a\u308f\u3061":268,"\u3059\u3079":[11,34,38,42,43,82,90,91,103,104,105,107,112,114,115,116,117,121,130,135,142,143,146,148,151,154,155,171,191,197,216,220,228,245,255,261,274],"\u3059\u3079\u304d":11,"\u3059\u3079\u3066":[29,34,36,38,40,42,43,47,63,68,80,82,85,86,91,92,93,95,104,105,112,117,135,139,140,143,146,154,155,161,197,199,210,224,232,235,245,269,271],"\u3059\u308b":[0,1,2,3,4,9,11,17,18,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,38,39,40,41,42,43,44,47,49,50,51,54,55,57,59,61,62,63,64,65,66,67,68,69,70,71,73,74,78,82,83,84,85,88,89,90,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118,120,121,123,124,125,127,129,130,131,132,134,135,136,137,138,139,140,141,142,143,144,145,146,148,150,151,152,153,154,156,158,161,162,163,165,166,167,168,169,170,171,172,173,174,176,177,178,179,181,182,184,191,193,194,195,196,197,198,199,200,202,205,206,207,209,210,211,212,213,214,215,218,220,221,223,224,225,226,228,229,236,238,239,240,241,242,243,244,245,246,254,255,258,259,261,262,263,265,267,268,270,271,272,274,275,276,277,278],"\u3059\u308b\u304b":269,"\u3059\u308c":[0,12,43,68,124,129,135,154,161,168,171,196,197,238,269,271],"\u305a\u305b":[202,223],"\u305a\u3064":[153,154,245,273],"\u305a\u306b":80,"\u305a\u308c":[0,11,68,82,105,110,153,165,246,261,268],"\u305b\u3044":[34,41,42,44],"\u305b\u3044\u305c\u3044":140,"\u305b\u304b\u306d":44,"\u305b\u305a":108,"\u305b\u306a":[196,197],"\u305b\u308b":[0,11,12,14,34,92,140,156,158,168,169,176,177,223,259],"\u305b\u308c":[0,91],"\u305d\u3046":[10,21,34,54,63,120,121,122,131,134,161,171,172,191,197],"\u305d\u3046\u3044\u3063":34,"\u305d\u3053":[12,114,135,264,268],"\u305d\u3053\u306b":141,"\u305d\u3057\u3066":[0,135,146,179,268,269,273,274],"\u305d\u305d\u305f":[202,223],"\u305d\u305e":[202,223],"\u305d\u3061\u3089":[29,34,44],"\u305d\u306e":[0,10,11,12,17,22,23,32,34,40,41,42,43,44,47,49,50,54,56,59,63,65,66,68,69,80,82,86,87,93,102,103,104,105,112,114,115,117,122,130,131,135,140,142,145,151,153,154,155,161,171,176,177,191,193,196,197,199,200,211,213,214,216,220,224,228,236,238,239,240,242,245,246,258,261,262,264,266,269,270,271,273,274,275,276,278],"\u305d\u306e\u305b\u3044":34,"\u305d\u306e\u307e\u307e":12,"\u305d\u306e\u3088\u3046":102,"\u305d\u306e\u5f8c":[47,54,135,197],"\u305d\u306e\u969b":12,"\u305d\u308c":[11,12,17,27,28,32,34,36,43,61,65,69,71,92,93,104,112,115,135,140,142,155,170,173,193,196,197,210,219,228,246,262,264,268,269,271,273,277],"\u305d\u308c\u304b\u3089":[80,135],"\u305d\u308c\u305e\u308c":[6,7,8,11,12,14,29,34,42,65,68,83,105,135,140,146,153,156,158,171,177,191,197,207,220,261,262,264,268,269,271,273,278],"\u305d\u308c\u3086\u3048":[196,268],"\u305d\u308c\u3089":[12,34,43,47,49,51,70,104,117,135,136,142,149,152,209,210,255],"\u305d\u308d\u305d\u308d":271,"\u305d\u3093\u306a":[29,140],"\u305e\u3044":[114,115],"\u305e\u308c":[11,12,61,135,155,197,219],"\u305f\u3044":[6,7,8,16,24,25,27,28,29,31,33,34,38,42,44,47,51,68,91,92,95,112,113,117,118,120,123,132,133,134,135,140,142,144,146,151,153,154,155,158,170,172,176,196,209,210,216,219,224,226,228,238,239,246,261,268,269,270,271,273,275],"\u305f\u3044\u304f\u3064\u304b":44,"\u305f\u304b":[34,38,43,98,104,106,107,108,131,135,158,217],"\u305f\u304b\u3063":[217,277],"\u305f\u304f":[6,7,17,38,41,43,44,70,92,112,114,115,117,135,140,142,144,146,179,210,213,218,245,255,269],"\u305f\u3051\u3069":135,"\u305f\u3055\u3093":[34,35,38,41,43,44],"\u305f\u3059\u3079\u3066":135,"\u305f\u3060":[27,34,80],"\u305f\u3060\u304d":34,"\u305f\u3060\u3051":40,"\u305f\u3060\u3057":[33,34,35,38,41,42,43,44,69,78,114,121,137,153,156,196,197,210,236,262],"\u305f\u3060\u3061":[202,223],"\u305f\u3061":214,"\u305f\u3061\u3061\u3064\u3064":[202,223],"\u305f\u3068\u3048":[117,135,136,264],"\u305f\u3069\u3063":274,"\u305f\u3069\u308b":270,"\u305f\u3070\u304b\u308a":198,"\u305f\u3073":[12,44,82,154,278],"\u305f\u3076\u3093":29,"\u305f\u3079":223,"\u305f\u307b\u3046":135,"\u305f\u307e\u307e":[44,255],"\u305f\u3081":[0,1,2,3,4,6,7,12,14,17,19,21,22,23,24,25,27,29,30,31,32,34,38,40,41,42,43,44,47,50,55,57,61,68,69,70,73,76,80,83,85,87,89,92,95,102,103,104,105,106,112,114,117,121,122,123,134,140,142,143,151,152,153,154,155,158,161,162,165,166,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,199,200,209,210,211,212,213,214,216,217,219,220,223,224,225,236,238,239,240,242,245,255,259,261,262,264,266,268,269,270,271,272,273,274,276,278],"\u305f\u3081\u3057":278,"\u305f\u3089":[10,12,17,29,36,42,43,44,54,70,73,99,106,107,108,114,117,122,130,131,135,136,142,145,151,158,161,173,177,182,197,212,216,228,255,259,273],"\u305f\u308a":[0,3,10,34,42,43,44,59,104,134,135,140,195,210,220,246,259],"\u3060\u3044":[38,42],"\u3060\u304b\u3089":[112,115,135],"\u3060\u3051":[3,6,7,11,17,23,24,25,27,31,32,34,38,40,42,43,44,57,68,73,84,86,87,88,92,95,102,104,105,108,112,113,114,115,117,120,121,122,124,129,131,132,135,137,140,142,143,145,146,148,151,155,158,159,161,169,170,173,179,182,191,193,196,197,198,199,209,210,211,212,213,214,220,226,231,232,238,240,254,255,259,264,268,273],"\u3060\u3051\u304d\u3061\u3093":44,"\u3060\u3055\u3044":[0,3,12,13,14,17,18,19,21,23,29,30,31,34,40,42,43,63,80,83,91,92,112,113,114,115,117,120,121,123,135,137,140,142,155,158,171,176,177,191,196,197,203,209,210,214,216,247,255,261,269,271],"\u3060\u3057":[38,154],"\u3060\u3059":44,"\u3060\u3063":[34,40,43,44,68,82,104,122,135,197,264,265],"\u3060\u3068":10,"\u3061\u3083\u3093":270,"\u3062\u3064\u3065":[202,223],"\u3064\u3044":274,"\u3064\u304b":37,"\u3064\u304b\u3063":34,"\u3064\u304d":[33,34,42,44,80,88,132,133,135,145,170,209,212],"\u3064\u3051":[135,158,165],"\u3064\u3051\u308b":[10,42,44,80,135,258,276],"\u3064\u3064":[177,264],"\u3064\u3065\u3044":274,"\u3064\u3065\u304f":158,"\u3064\u3076\u3084\u304d":198,"\u3064\u307e\u308a":[12,43,92,99,135,146,236],"\u3065\u3051":[40,41,177],"\u3065\u3051\u308b":47,"\u3066\u304d":87,"\u3066\u304f":14,"\u3066\u307f\u307e\u3057\u3087":278,"\u3066\u308c":117,"\u3067\u3044":[43,135,197,268,274],"\u3067\u3044\u3046":[200,269],"\u3067\u304d":[0,1,6,7,8,10,11,12,13,14,17,18,21,24,25,26,27,28,29,31,33,34,35,36,38,40,41,42,43,44,47,48,50,51,54,55,57,59,61,65,68,69,73,78,80,82,83,84,85,86,87,88,91,92,93,95,96,97,98,99,103,104,105,106,107,108,112,113,114,115,116,118,120,121,122,123,124,125,129,130,131,132,133,134,135,136,138,140,143,144,145,146,149,151,152,153,154,155,156,158,161,162,163,165,166,167,168,169,171,172,173,174,176,177,178,179,182,191,195,196,197,198,199,200,202,205,206,207,209,210,211,212,213,214,216,217,218,219,220,221,223,224,225,226,228,236,238,239,240,241,242,245,254,255,258,259,261,264,265,266,268,269,270,271,272,273,275,276,277,278],"\u3067\u304d\u305a":34,"\u3067\u304d\u308b":[0,3,6,7,8,9,12,14,34,38,39,40,41,42,43,44,49,57,61,72,80,91,92,103,113,117,123,134,135,138,140,149,153,154,155,158,161,162,166,171,179,196,198,205,206,209,210,212,213,214,216,228,239,245,255,264,268,269,274,275,276],"\u3067\u304f":[3,21,23,42,80,92,135,140,158,176,197,209],"\u3067\u3053\u306e":[34,245],"\u3067\u3057":[30,34,42,43,44,197,211,265,268],"\u3067\u3057\u304b":[7,33,226,241],"\u3067\u3057\u3087":[0,6,7,20,29,34,42,92,121,122,135,151,158,197,198,269],"\u3067\u3059":[0,3,6,7,8,10,11,12,14,16,17,18,19,21,24,25,27,29,30,31,32,33,34,38,40,41,42,43,44,47,49,50,51,53,54,55,57,60,63,65,66,68,70,72,73,76,78,80,81,82,83,84,85,86,87,88,89,91,92,93,95,96,97,98,99,102,103,104,105,106,107,108,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,158,159,161,162,165,166,168,169,170,171,172,173,176,177,179,182,184,191,193,195,196,197,198,199,200,201,202,203,205,206,207,209,210,211,212,213,214,216,217,218,219,220,221,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,254,255,258,259,261,262,264,265,266,268,269,271,272,273,274,275,277,278],"\u3067\u3059\u306d":10,"\u3067\u3059\u3079\u3066":149,"\u3067\u305d\u3046":113,"\u3067\u3060\u3051":92,"\u3067\u3064\u306a\u3052\u308b":135,"\u3067\u3069":[113,138],"\u3067\u3069\u3053":87,"\u3067\u306a\u3051\u308c":[104,123,134,196,197],"\u3067\u306b":[34,44,105,120,124,129,198,264],"\u3067\u306e":[34,42,83,179,229,230,231,232],"\u3067\u306f":42,"\u3067\u307e\u3068\u3081":209,"\u3067\u307f":0,"\u3067\u3082":[0,12,14,17,19,23,24,25,27,29,31,32,34,38,40,41,42,43,44,47,87,104,115,117,135,140,142,154,155,158,169,177,179,182,206,210,213,214,216,220,238,239,261,262,264,271,273,275,278],"\u3067\u3082\u3059\u3079\u3066":[44,228],"\u3067\u3082\u3063\u3068\u3082":81,"\u3067\u3088\u308a":[34,42],"\u3067\u5024":[153,271],"\u3068\u3044\u3044":210,"\u3068\u3044\u3046":[0,9,10,12,14,17,29,34,38,40,41,42,43,44,47,57,80,82,85,86,89,92,99,104,106,107,108,112,114,115,118,120,121,123,124,125,129,130,131,132,135,137,138,140,142,145,146,149,151,153,154,155,156,158,165,169,176,177,179,182,195,196,197,200,207,209,210,211,212,213,214,216,217,220,224,225,226,228,229,230,231,232,236,238,241,242,245,246,255,261,262,264,265,268,269,270,271,273,274,275,278],"\u3068\u3044\u3051":[43,105,135,140,242,261,266,273],"\u3068\u3044\u3063":[27,40,41,42,43,44,80,105,112,114,115,117,123,135,151,165,195,196,197,199,220,255,278],"\u3068\u3048":[0,29,33,42,43,47,56,57,82,91,92,95,105,112,114,115,121,122,134,135,136,137,143,158,169,179,191,206,210,211,212,213,228,236,245,262,278],"\u3068\u304a\u308a":[33,104,154,268,269,278],"\u3068\u304d":[0,6,7,9,10,11,12,24,25,27,28,29,31,34,35,36,38,40,41,42,43,44,47,54,61,66,68,69,70,80,83,84,86,91,92,95,99,104,105,106,112,113,114,115,117,120,121,122,123,124,125,129,130,134,135,136,138,139,140,142,143,145,146,151,153,155,158,165,176,177,179,195,196,197,198,199,200,206,209,210,214,216,217,218,219,226,239,245,246,255,261,262,268,269,270,271,274,275],"\u3068\u304d\u3057\u304b":99,"\u3068\u304d\u3069\u304d":44,"\u3068\u3053\u306e":[117,135,210,216,245],"\u3068\u3053\u308d":[16,17,34,39,43,105,112,115,132,133,173,176,228],"\u3068\u3053\u308d\u3044\u304f\u3064\u304b":80,"\u3068\u3055\u3089\u306b":[6,7],"\u3068\u3057":[11,41,42,44,47,54,95,117,133,135,142,143,152,153,154,155,165,173,197,198,209,216,217,218,219,228,236,246,268,270,273],"\u3068\u3057\u3066":[0,11,12,14,15,17,18,20,24,25,27,28,29,31,34,36,38,39,40,41,42,43,44,47,48,50,51,54,65,66,67,73,78,82,87,92,96,98,102,106,107,108,109,112,114,115,116,117,120,121,130,132,133,135,137,138,140,142,145,148,153,154,155,158,163,165,169,171,177,179,195,196,197,200,205,206,209,210,211,212,214,216,217,218,220,221,224,226,228,238,239,242,253,255,258,261,262,264,268,269,270,271,272,273,275,277,278],"\u3068\u3057\u307e\u3057\u3087":[273,277],"\u3068\u3057\u307e\u305b":49,"\u3068\u3059\u3050":198,"\u3068\u3059\u3079\u3066":[40,104,113,130,135,151],"\u3068\u3059\u308b":34,"\u3068\u3059\u308c":0,"\u3068\u305d\u306e":[82,85,117,158,212],"\u3068\u3063":155,"\u3068\u3064\u3044":278,"\u3068\u3066":[0,34,135,196,197,216,220,255],"\u3068\u3068":[16,17,202,223],"\u3068\u3068\u3082":63,"\u3068\u3068\u3082\u306b":268,"\u3068\u3069":[91,202,215,223],"\u3068\u306a\u3063":41,"\u3068\u306a\u308a":[34,122,169,179,196,255,275],"\u3068\u306e":[43,44,114,115,197],"\u3068\u307f":[41,135,156,196],"\u3068\u3082":[34,43,92,112,114,115,135,154,171,179,182,196,197,242,245,266,278],"\u3068\u3082\u3063\u3068":29,"\u3068\u3088\u3044":29,"\u3068\u308a":[14,44,54,156,170,173,193],"\u3068\u308a\u3068\u3093":[196,197],"\u3068\u308b":65,"\u3068\u308f\u304b\u308a":[214,265],"\u3068\u308f\u304b\u308b":12,"\u3069\u3046":[10,34,35,40,43,55,65,90,92,94,98,100,106,107,108,110,111,112,114,115,117,121,135,151,155,158,191,228,264,269],"\u3069\u304a\u308a":[34,44],"\u3069\u3053":[29,34,38,42],"\u3069\u3061\u3089":[19,34,43,44,54,76,114,142,158,218,255,271,273],"\u3069\u3061\u3089\u304b":[33,169,179,196,197],"\u3069\u306e":[29,34,135,146,165,166,197,205,210,217,269,273],"\u3069\u308c":[83,92,93,104,105,106,107,108,113,117,130,134,135,140,142,176,197,228,255],"\u3069\u3093":141,"\u3069\u3093\u306a":[34,158],"\u306a\u3044":[0,9,11,12,14,17,21,23,29,30,33,34,35,36,37,38,39,40,41,42,43,44,47,50,54,55,63,65,68,69,70,80,82,83,86,88,89,91,92,93,96,97,99,103,104,105,112,113,114,115,120,121,122,123,131,132,133,134,135,136,137,138,140,145,146,151,152,153,154,155,156,158,162,168,169,170,172,176,179,182,191,195,196,197,198,205,207,209,210,211,212,213,214,216,217,218,220,225,226,228,236,238,239,240,241,242,261,262,264,266,268,269,271,273,274,276],"\u306a\u304a":[12,196,262],"\u306a\u304a\u3053\u306e":154,"\u306a\u304a\u3057":42,"\u306a\u304a\u3059":[42,130],"\u306a\u304b":10,"\u306a\u304b\u3063":[34,40,42,43,44,82,84,86,90,94,100,106,107,108,110,111,117,123,130,135,136,151,153,154,161,177,182,197,210,212,264,271],"\u306a\u304c\u3089":[0,12,40,112,114,115,135,146,158,228,271],"\u306a\u304c\u308a":34,"\u306a\u304c\u308b":40,"\u306a\u304e":182,"\u306a\u304f":[0,3,10,12,21,29,34,35,36,38,40,41,42,43,44,47,54,65,93,104,106,115,117,121,124,129,135,140,142,151,154,155,161,177,179,182,191,195,196,197,205,206,210,211,212,213,220,231,232,245,255,259,268,269,271,273,277],"\u306a\u304f\u3059":104,"\u306a\u3051\u308c":[21,29,34,40,44,50,51,54,57,62,63,65,68,76,80,87,91,92,93,95,105,112,114,115,117,122,131,135,140,143,153,154,155,158,161,170,171,172,176,182,196,197,209,210,211,212,213,219,268],"\u306a\u3055":[156,178],"\u306a\u3055\u3093":3,"\u306a\u3057":[34,41,42,43,47,69,82,87,88,115,121,123,135,145,153,166,170,177,182,196,202,217,223,236,238,239,246,254,261,268],"\u306a\u3059":167,"\u306a\u305c":[6,7,8,33,43,47,91,92,99,104,112,114,115,117,121,122,135,140,145,151,158,176,191,196,197,200,206,210,211,212,213,216,217,225,226,228,229,230,231,232,238],"\u306a\u305c\u306a\u3089":114,"\u306a\u305f":[43,214],"\u306a\u3063":[0,6,7,8,10,12,14,34,36,38,39,40,41,42,43,44,80,82,83,89,99,105,106,114,121,135,146,196,197,199,212,214,216,245,255,259,264,265,268,271,273,274,275],"\u306a\u3068":[34,202,223],"\u306a\u3068\u304d":[0,34],"\u306a\u3068\u3057\u3066":223,"\u306a\u3069":[0,5,6,7,8,11,12,13,17,20,29,34,38,40,42,43,44,47,55,65,82,89,91,104,105,111,121,122,123,132,133,135,140,146,149,153,154,158,168,169,171,179,191,195,196,197,198,205,209,210,211,212,213,216,217,219,220,228,241,246,255,262,264,268,271,272,274,275],"\u306a\u306a\u3069":[196,197],"\u306a\u306b":[70,92,112,117,123,142,216],"\u306a\u306b\u3088\u308b":[34,238],"\u306a\u306b\u5bfe\u3057":[196,197],"\u306a\u306e":[43,216],"\u306a\u3073":[34,43,44],"\u306a\u3078":34,"\u306a\u3082\u306e":[12,51,210],"\u306a\u3084\u308a\u304b\u305f":277,"\u306a\u3088\u3046":44,"\u306a\u3089":[6,7,8,11,14,21,24,25,27,31,33,40,41,42,43,44,47,51,55,63,65,68,80,82,86,91,92,99,102,104,107,112,114,115,117,121,122,127,134,135,136,137,140,145,151,153,154,155,158,170,176,191,196,197,200,206,210,211,212,213,216,217,225,226,228,229,230,231,232,238,245,266,273],"\u306a\u308a":[0,6,7,8,10,12,21,33,34,38,40,41,42,43,44,47,50,51,54,55,57,63,65,68,76,78,80,82,83,86,87,88,90,91,92,99,101,104,105,106,107,108,112,114,115,117,121,122,123,124,125,129,130,131,134,135,136,137,138,139,140,142,143,145,151,153,154,155,156,158,165,166,171,176,179,196,197,198,201,206,207,209,210,211,212,213,214,216,217,219,224,226,239,240,243,244,246,258,261,264,268,269,270,271,273,274,275,276,278],"\u306a\u308b":[0,10,11,12,17,23,24,25,27,29,31,32,34,35,36,37,40,41,42,43,44,54,55,65,70,90,92,101,102,103,104,106,107,108,112,114,115,117,121,122,130,134,135,140,142,151,153,154,155,158,161,166,167,172,176,177,179,196,197,198,202,214,219,223,238,245,246,264,268,269,271],"\u306a\u308c":82,"\u306a\u308f":44,"\u306a\u3093":82,"\u306b\u3042\u308a":[6,7,8,18,118,140],"\u306b\u3044\u304f\u3064\u304b":[41,43],"\u306b\u304a\u3044":[12,26,34,82,268],"\u306b\u304a\u3059\u3059\u3081":104,"\u306b\u304d":34,"\u306b\u304f\u3044":[0,34],"\u306b\u304f\u3044\u304b":228,"\u306b\u304f\u304f":43,"\u306b\u304f\u3089\u3079":273,"\u306b\u304f\u308b":264,"\u306b\u3057":[41,42,43,47,105,113,135,176,196,197],"\u306b\u3059":[44,264],"\u306b\u3059\u3050":198,"\u306b\u3059\u3079\u3066":91,"\u306b\u3059\u308b":[33,34,255],"\u306b\u305b":34,"\u306b\u305d\u306e":158,"\u306b\u3064":[34,40],"\u306b\u3064\u3044\u3066":[0,3,7,11,12,18,19,20,21,24,25,27,28,29,30,31,34,38,40,41,42,43,47,49,61,65,69,80,81,82,83,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,153,158,160,163,165,166,167,169,174,177,178,182,196,206,209,210,211,212,213,214,216,217,219,226,238,245,246,247,253,255,261,262,265,266,268,269,271,272,273,274,278],"\u306b\u3064\u304d":199,"\u306b\u3064\u3051":197,"\u306b\u3064\u3076\u3084\u3051":10,"\u306b\u3064\u3076\u3084\u3051\u308b":10,"\u306b\u3066":[12,40,41,43,165],"\u306b\u3068\u3063":[10,43],"\u306b\u3068\u3063\u3066":[10,146,226],"\u306b\u3069":[11,135],"\u306b\u307e\u3068\u3081":[12,44],"\u306b\u307e\u3068\u3081\u308b":44,"\u306b\u3082":[44,135,210,262],"\u306b\u3088":40,"\u306b\u3088\u304f":211,"\u306b\u3088\u3063":[0,9,11,34,41,54,65,68,80,82,89,90,94,100,101,103,110,111,127,141,152,153,156,195,236,239,261,262,268,270,271],"\u306b\u3088\u3063\u3066":[0,14,34,41,54,78,82,264,268,271],"\u306b\u3088\u308a":[0,12,33,34,40,41,42,43,44,89,92,135,155,165,228,246,255,258,261,264,268,271,273,275,276],"\u306b\u3088\u308b":[0,10,12,22,34,38,39,40,41,42,43,153,155,165,197,240,246,267,268,271,274,278],"\u306b\u5bfe\u3057":[0,11,12,34,35,40,41,42,43,44,59,65,68,80,91,92,115,122,124,129,131,135,138,148,151,152,156,171,182,196,197,210,212,219,228,262,269,270,271,273,277,278],"\u306b\u5bfe\u3057\u7570":177,"\u306b\u5bfe\u3059\u308b":[0,11,12,22,34,36,38,41,42,43,44,69,92,116,122,131,134,135,138,142,158,267,268,270,271,274,275],"\u306b\u5bfe\u5fdc":[34,38,39,40,42,51,54,59,62,65,66,68,71,111,112,114,115,153,156],"\u306b\u5bfe\u5fdc\u4ed8\u3051":216,"\u306b\u5bfe\u8c61":38,"\u306b\u6708":34,"\u306b\u95a2\u3057":[11,34,41,43,44,54,114,115,154],"\u306b\u95a2\u3059\u308b":[2,22,34,38,39,40,41,42,43,44,46,64,69,134,155,196,197,199,216,245,274],"\u306b\u95a2\u308f\u3089":104,"\u306e\u3042\u3068":40,"\u306e\u3044":[0,11,68,82,105,110,153,165,246,261],"\u306e\u3044\u305a\u308c":[34,63,93,277],"\u306e\u3044\u305a\u308c\u304b":[67,68,71,166,167],"\u306e\u3046\u3061":[93,158,196],"\u306e\u304b":[135,262,265,274],"\u306e\u304b\u308f\u308a":[42,44],"\u306e\u304f\u3089\u3044":[34,92,245],"\u306e\u3059":99,"\u306e\u3059\u3079\u3066":[112,114,115,135,145,255],"\u306e\u305e\u3044":228,"\u306e\u3067":[0,1,10,12,17,21,32,34,38,40,41,42,43,44,83,91,104,112,114,115,132,133,135,140,155,156,161,165,177,182,197,209,216,245,255,259,262,264,265,266,268,271,273,274],"\u306e\u3067\u3057\u3087":[135,210],"\u306e\u3069":191,"\u306e\u3069\u3061\u3089":[135,158,197],"\u306e\u3069\u3061\u3089\u304b":[135,161,196,197],"\u306e\u3069\u308c":[92,140,153,158,191,216],"\u306e\u306b":[22,34,40,41,42,44,104,118,144,226,240,263,269],"\u306e\u306b\u5bfe\u3057":54,"\u306e\u307b\u304b":[246,268],"\u306e\u307f":[0,11,17,21,34,42,43,44,50,51,65,66,68,69,72,78,103,104,105,111,114,115,117,121,131,135,137,138,151,155,156,168,169,176,177,179,182,203,205,210,214,216,228,238,240,241,242,262,264,265,268,271,273,276],"\u306e\u307f\u3057\u304b":218,"\u306e\u3088\u3046":[34,41,42,43,44,47,50,86,93,135,140,149,153,158,176,195,196,197,210,211,228,239,241],"\u306f\u3042\u306a\u305f":6,"\u306f\u3044":268,"\u306f\u3044\u304f\u3064\u304b":[33,49,83,142,151,196,255],"\u306f\u3044\u3051":[34,54,65,92,102,107,151,158,197],"\u306f\u3044\u3064":34,"\u306f\u3044\u308f\u3086\u308b":43,"\u306f\u304d\u3063\u3068":210,"\u306f\u3053\u306e":[43,122,134,135,137,182,213,228,266],"\u306f\u3057":34,"\u306f\u3058\u307e\u308a":82,"\u306f\u3058\u307e\u308b":34,"\u306f\u3058\u3081":[17,22,46,82,92,138,202,215],"\u306f\u3059\u3079\u3066":[88,92,96,97,98,99,104,105,106,107,108,112,114,120,121,122,123,126,130,132,133,134,135,136,137,140,142,144,145,146,155,169,171,195,197,201,212,213,228,271],"\u306f\u305a":[18,40,154,202,210,238,245],"\u306f\u305d\u306e":54,"\u306f\u305d\u308c\u3089":117,"\u306f\u3061\u3087\u3046":197,"\u306f\u3068":220,"\u306f\u3069":[92,135,140,216],"\u306f\u3069\u3061\u3089":[158,255],"\u306f\u3069\u3061\u3089\u304b":[196,197],"\u306f\u3069\u308c":197,"\u306f\u306a\u304f":210,"\u306f\u307b\u3068\u3093\u3069":135,"\u306f\u307e\u305a":12,"\u306f\u307e\u3060":[115,213,255],"\u306f\u307e\u3068\u3081\u3066":12,"\u306f\u307f":3,"\u306f\u308f\u304b\u308a":34,"\u306f\u6708":[197,214],"\u3070\u3042":214,"\u3070\u3044\u3051":[21,29,40,44,51,54,57,62,65,68,76,80,91,92,93,95,104,105,112,114,115,123,135,140,143,155,158,176,182,196,197,209,210,211,212,213],"\u3070\u304b\u308a":[12,43],"\u3070\u3053\u306e":43,"\u3070\u3059\u3079\u3066":228,"\u3070\u305d\u306e":273,"\u3070\u3069":47,"\u3070\u3071":[202,223],"\u3070\u308c\u308b":36,"\u3072\u3053\u3055\u3093":[40,42,44],"\u3072\u3068\u3064":[40,163,196],"\u3072\u3072\u3072\u3075\u3075\u3075":[202,223],"\u3072\u3073\u3074\u3075\u3076\u3077":[202,223],"\u3072\u3089":[34,176,196,197,202,206,216,223,228],"\u3072\u308d":276,"\u3072\u308d\u3086\u304d":276,"\u3075\u306a\u3068":42,"\u3075\u308a":138,"\u3076\u3093":10,"\u3078\u3059\u3079\u3066":[43,91],"\u3078\u3068":[42,135,266,275,277],"\u3078\u306e":[29,34,268],"\u3078\u3079\u307a":[202,223],"\u3078\u307b\u307b\u307b":[202,223],"\u3079\u304d":[6,7,8,12,34,43,44,65,93,114,121,123,130,135,151,153,155,158,197,201,261],"\u3079\u304f":271,"\u3079\u3066":[44,47,114,116,121,135,155,269],"\u3079\u30fc\u30b9":42,"\u307b\u3046":42,"\u307b\u304b":[0,268],"\u307b\u3057\u304f":135,"\u307b\u3068\u3093\u3069":[34,43,54],"\u307b\u3069":[138,140,151,153,228,259,268,271],"\u307b\u307c":197,"\u307b\u307c\u307d":[202,223],"\u307e\u3057":[6,7,8,10,12,17,18,34,38,40,41,42,43,44,92,104,112,114,115,135,140,155,165,196,197,200,210,217,226,239,264,265,269,270,274],"\u307e\u3057\u3087":[112,114,115,135,165,270,271],"\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,38,40,41,42,43,44,47,48,49,50,51,52,54,55,56,57,59,61,62,63,64,65,66,67,68,69,70,71,72,73,74,76,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,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,158,159,160,161,162,163,165,166,167,168,169,170,171,172,173,174,176,177,178,179,180,181,182,184,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,209,210,211,212,213,214,215,216,217,218,219,220,221,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,258,259,261,262,264,265,266,268,269,270,271,272,273,274,275,276,277,278],"\u307e\u305a":[12,17,29,32,154,155,184,191,197,202,262,264,265,269,271,273,274,277],"\u307e\u305b":[0,6,7,10,12,17,25,29,33,34,38,40,41,42,43,44,47,49,50,51,54,57,61,62,63,65,68,69,70,73,74,76,78,80,83,85,87,88,91,92,93,95,96,97,98,99,102,104,105,106,107,108,111,112,113,114,115,116,117,118,119,120,121,122,123,127,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,147,151,153,154,155,158,161,165,169,171,176,177,179,182,191,196,197,198,200,201,203,205,209,210,211,212,213,214,216,217,218,219,220,225,226,228,229,230,231,232,233,234,235,236,237,238,240,241,242,243,244,245,246,253,255,259,261,262,264,266,268,269,271,273,275,277],"\u307e\u305f":[3,5,8,12,14,19,21,29,34,38,39,42,43,44,47,51,54,68,70,76,83,89,90,91,92,93,94,99,100,101,103,104,106,107,108,110,111,112,114,115,121,122,123,127,130,131,135,140,141,148,151,153,154,155,161,165,169,179,191,196,197,199,207,210,214,220,236,238,246,255,265,274,276,278],"\u307e\u305f\u3044":[40,112,114,115,165,214],"\u307e\u305f\u3050":[22,40,165,267],"\u307e\u3060":[12,34,38,41,42,44,82,115,132,133,135,137,138,158,179,197,211,214,261],"\u307e\u3064\u308f":41,"\u307e\u3067":[11,12,17,33,34,41,42,44,49,50,86,112,117,135,153,154,161,198,210,220,245,265,269,271,273,274,276],"\u307e\u3068\u3081":[10,42],"\u307e\u3068\u3081\u3066":[0,12,268,269],"\u307e\u3068\u3081\u308b":[155,236],"\u307e\u307e":[10,12,34,41,43,63,82,142,151,158,197,269],"\u307e\u307e\u3067":264,"\u307e\u308a":[43,135],"\u307e\u308b":34,"\u307e\u308d\u3086\u304d":276,"\u307e\u308f\u3059":135,"\u307e\u308f\u308a":3,"\u307f\u304c":11,"\u307f\u305f\u3059":274,"\u307f\u3066":278,"\u307f\u306a\u3055":11,"\u307f\u306a\u3057":44,"\u307f\u307e\u3057\u3087":[112,135,142,197,211,212,213,240,242,268,269,270,271,273,274,277,278],"\u3080\u3089":34,"\u3080\u308b":[196,197],"\u3080\u308b\u3093":[196,197],"\u3082\u3044\u308d\u3044\u308d\u3057":112,"\u3082\u3046":[40,54,63,104,155,163,198,240,268,273],"\u3082\u3046\u307e\u304f":29,"\u3082\u304b\u304b\u308f\u3089":240,"\u3082\u304d\u3061\u3093":155,"\u3082\u3053\u306e":104,"\u3082\u3057":[6,7,21,29,33,34,41,42,43,44,50,63,70,83,85,86,87,92,99,104,105,106,108,114,115,117,122,130,131,135,136,137,140,142,151,154,155,161,165,171,172,173,177,182,196,197,209,210,211,212,214,245,255,273],"\u3082\u3057\u3042":43,"\u3082\u3057\u304b\u3057":228,"\u3082\u3057\u304f":[12,27,40,41,42,43,68,69,104,109,114,155,161,168,169,179,196,197,246,261,266,268,273],"\u3082\u3057\u3053\u306e":[122,266],"\u3082\u3057\u3054":40,"\u3082\u3057\u307e\u305b":70,"\u3082\u3057\u308c":[209,228,238],"\u3082\u3057\u4f7f\u3063":107,"\u3082\u3057\u547c\u3070":34,"\u3082\u3057\u578b":134,"\u3082\u3057x":41,"\u3082\u3059":[124,129],"\u3082\u3059\u3050":136,"\u3082\u305b":151,"\u3082\u3061\u308d\u3093":[154,269],"\u3082\u3063\u3068":[6,7,135],"\u3082\u3063\u3068\u3082":[14,85],"\u3082\u3064":[43,102,269],"\u3082\u3068":[12,34,265],"\u3082\u3068\u3082":34,"\u3082\u3069\u3061\u3089":213,"\u3082\u306e":[11,12,17,32,34,40,41,42,43,44,50,68,69,82,112,114,115,117,122,134,135,151,152,153,154,155,165,166,172,176,178,201,210,211,213,217,224,239,261,268,271,273],"\u3082\u3088\u308a":213,"\u3082\u3089\u3048":10,"\u3082\u3089\u3048\u308b":10,"\u3082\u3089\u3063":[12,271],"\u3082\u308a":43,"\u3082\u308c\u308b":43,"\u3084\u304c":82,"\u3084\u3057":135,"\u3084\u3059":34,"\u3084\u3059\u3044":[35,43,135,153,169,179,195],"\u3084\u3059\u3044\u304b":209,"\u3084\u3059\u304b\u3063":34,"\u3084\u3059\u304f":[34,36,42,84,135],"\u3084\u3059\u304f\u3057":[34,43],"\u3084\u305d\u306e":102,"\u3084\u3063":[92,191],"\u3084\u307e":42,"\u3084\u307e\u3060":42,"\u3084\u307e\u306d":[41,42],"\u3084\u3081":[34,38,41,42,43,44,86],"\u3084\u3081\u307e\u3057\u3087":[211,212,213],"\u3084\u3081\u308b":44,"\u3084\u3085\u3086\u3087":[202,223],"\u3084\u3089":12,"\u3084\u308a":[19,277],"\u3086\u304d":276,"\u3086\u304d\u3072\u308d":276,"\u3086\u308c":[34,238,239],"\u3088\u3044":[17,65,91,92,104,121,135,158,196,197,255,269,273],"\u3088\u3046":[0,6,7,8,10,11,12,14,21,26,29,34,35,36,38,39,40,41,42,43,44,47,51,63,68,80,82,83,85,89,91,92,99,102,103,104,105,112,113,114,115,117,118,120,121,122,123,124,125,129,131,135,136,139,140,142,143,146,153,154,155,156,158,165,166,169,177,179,182,196,197,198,200,202,205,209,210,211,212,213,214,215,218,220,223,224,225,228,236,238,239,240,242,243,244,245,255,259,261,262,264,265,266,268,269,270,271,273,274,275,276,277,278],"\u3088\u304b\u3063":264,"\u3088\u304f":[44,80,92,104,112,114,115,135,153,161,210,226],"\u3088\u3063":278,"\u3088\u3063\u3066":[76,146,205,246,272,278],"\u3088\u3073":11,"\u3088\u308a":[6,7,11,18,23,29,34,36,38,40,41,42,43,44,63,69,80,86,92,99,114,121,122,131,135,140,151,153,154,155,165,166,172,196,197,198,199,209,210,211,212,213,216,219,228,238,241,245,246,262,264,268,269,273,274],"\u3088\u308e\u308f":[202,223],"\u3088\u308f\u308f\u304b\u304b\u3051\u3051":[202,223],"\u3089\u308c":[0,10,11,34,36,38,40,41,44,50,63,90,91,93,102,114,122,131,135,141,146,220,238,239,271,273,277],"\u3089\u308c\u308b":[0,11,40,41,42,44,51,69,210,262],"\u308c\u305a":[44,82],"\u308c\u307e\u305b":[29,43,47,68,82,89,135,136,142,153,168,199,209,273],"\u308c\u308b":[0,9,11,12,14,17,29,34,38,40,41,42,43,44,47,50,54,59,63,66,69,70,78,80,82,88,89,104,111,112,113,114,115,118,131,132,133,135,138,140,142,153,154,161,165,172,179,182,198,200,205,210,216,217,219,220,223,226,239,240,242,246,261,262,264,271,278],"\u308f\u304b\u3061":262,"\u308f\u304b\u3063":151,"\u308f\u304b\u3089":135,"\u308f\u304b\u308a":[34,36,42,43,135,228,269],"\u308f\u304b\u308b":42,"\u308f\u304b\u308c":135,"\u308f\u3051":[105,123,135,144,146,197,216,245,268],"\u308f\u305f\u3057":223,"\u3092\u304a\u3053":274,"\u3092\u304b\u308f\u308a":63,"\u3092\u3054":14,"\u3092\u3054\u89a7\u304f":[0,18],"\u3092\u3064\u3051":[135,196],"\u3092\u3064\u3051\u308b":[6,7,197],"\u3092\u3088\u308a":44,"\u3092\u901a\u3057":[153,271],"\u3093\u304c":[196,197],"\u3093\u3057":[107,120,151],"\u3093\u3057\u304d":195,"\u3094\u3041":34,"\u3094\u3043":34,"\u3094\u3049":34,"\u3094\u3094":34,"\u3095\u304b":[202,223],"\u3096\u3051":[202,223],"\u309d\u309e":[202,223],"\u30a1\u30a2\u30a3\u30a4\u30a5\u30a6\u30a7\u30a8\u30a9\u30aa\u30e3\u30e4\u30e5\u30e6\u30e7\u30e8\u30ee\u30ef":[202,223],"\u30a2\u30a1\u30a4\u30a3\u30a6\u30a5\u30a8\u30a7\u30aa\u30a9":[202,223],"\u30a2\u30a2\u30a4\u30a4\u30a6\u30a6\u30a8\u30a8\u30aa\u30aa\u30e4\u30e4\u30e6\u30e6\u30e8\u30e8\u30ef\u30ef\u30ab\u30ab\u30b1\u30b1":[202,223],"\u30a2\u30ab\u30a6\u30f3\u30c8":[2,12,42],"\u30a2\u30ab\u30a6\u30f3\u30c8groonga":10,"\u30a2\u30af\u30bb\u30b5":[34,44,65],"\u30a2\u30af\u30bb\u30b5\u30fc":43,"\u30a2\u30af\u30bb\u30b9":[12,17,34,36,38,40,41,42,44,47,49,68,95,135,143,152,153,155,156,245,268,275],"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":[216,217,219,254,259],"\u30a2\u30b8\u30e3\u30b9\u30bf\u30fc":[80,135],"\u30a2\u30c3\u30c8\u30de\u30fc\u30af":[92,140],"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":[12,34,42,43,44,254],"\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8":34,"\u30a2\u30c9\u30ec\u30b9":[38,68,153,154,158,261,275],"\u30a2\u30ca\u30a6\u30f3\u30b9":12,"\u30a2\u30d4\u30fc\u30eb":12,"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":[0,20,34,60,135,153,197,199],"\u30a2\u30e1\u30ea\u30ab":165,"\u30a2\u30e9\u30fc\u30c8":[153,199],"\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":[88,165,195,213],"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[42,69,92,112,114,115,135,140,146,210,217,228,231,232,234,235,262,264],"\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":40,"\u30a2\u30f3\u30ab\u30fc":43,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":[78,92,140],"\u30a2\u30f3\u30c0\u30fc\u30d5\u30ed\u30fc":34,"\u30a2\u30f3\u30de\u30c3\u30d7":[34,43,99],"\u30a2\u30f3\u30ed\u30c3\u30af":34,"\u30a2\u30fc\u30ab\u30a4\u30d6":[12,17,32],"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[3,4,12,22],"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u30fc":[42,153],"\u30a4\u30bf\u30ea\u30a2":34,"\u30a4\u30d9\u30f3\u30c8":43,"\u30a4\u30d9\u30f3\u30c8\u30ed\u30b0":43,"\u30a4\u30e1\u30fc\u30b8":[22,23,34],"\u30a4\u30f3\u30af\u30ea\u30e1\u30f3\u30c8":[34,85],"\u30a4\u30f3\u30af\u30eb\u30fc\u30c9":43,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9":[12,38],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":[22,23,43],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[0,3,12,21,22,24,25,26,27,28,29,30,31,32,34,36,38,40,41,43,44,152,153,154,156,238,259],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":38,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[36,38],"\u30a4\u30f3\u30b9\u30da\u30af\u30b7\u30e7\u30f3":[41,43],"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[3,40],"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":[0,154,195],"\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":[158,207],"\u30a4\u30f3\u30c6\u30b0\u30ec\u30fc\u30b7\u30e7\u30f3":21,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[22,34,36,38,40,41,42,43,44,46,51,61,63,76,80,89,90,93,94,103,104,112,113,114,115,117,121,134,135,140,142,144,151,196,197,205,212,213,220,226,241,264,267,271,274],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[22,34,35,41,42,43,44,46,61,63,65,76,89,93,104,121,122,130,134,135,144,151,171,176,196,197,210,212,213,267,270,273],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30a4\u30ba":[33,34,121],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30fc\u30c1":171,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":[34,41,92],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30e2\u30b8\u30e5\u30fc\u30eb":43,"\u30a4\u30f3\u30c7\u30f3\u30c8":63,"\u30a4\u30f3\u30dd\u30fc\u30c8":40,"\u30a4\u30f3\u30e1\u30e2\u30ea":34,"\u30a6\u30a3\u30f3\u30c9\u30a6":[22,34,44,46],"\u30a6\u30a4\u30f3\u30c9\u30a6":[34,112,114,115],"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6":[153,155,156],"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9":153,"\u30a6\u30a9\u30fc\u30e0\u30a2\u30c3\u30d7":[153,155],"\u30a8\u30a4\u30ea\u30a2\u30b9":[22,34,43,46,109],"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8":36,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":[29,34,64,135,153],"\u30a8\u30b9\u30b1\u30fc\u30d7":[34,40,41,42,57,168,169,179,197],"\u30a8\u30c7\u30a3\u30bf":17,"\u30a8\u30e9\u30fc":[12,22,23,24,25,27,29,31,32,34,35,38,39,40,41,42,43,44,50,51,54,55,57,65,73,82,87,90,91,92,94,96,98,99,100,102,104,106,107,108,109,110,111,112,114,115,117,123,124,125,129,130,135,136,139,140,142,143,148,153,196,199,263,265],"\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":[34,40,42,44,271],"\u30a8\u30e9\u30fc\u30c1\u30a7\u30c3\u30af":[38,40,42],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":[6,7,22,34,35,36,38,39,40,41,42,43,44,82,83,263],"\u30a8\u30e9\u30fc\u30ec\u30dd\u30fc\u30c8":40,"\u30a8\u30e9\u30fc\u30ed\u30b0":[259,265],"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":[29,34,35,42,43,44,54,56,57,63,197,201,203],"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u30b3\u30f3\u30d0\u30fc\u30bf\u30fc":34,"\u30a8\u30f3\u30b3\u30fc\u30c9":[36,156,158,201],"\u30a8\u30f3\u30b8\u30f3":[0,135,210,211,212,213,268,270],"\u30a8\u30f3\u30c8\u30ea":[50,51,112,114,115,135,182,196,197],"\u30a8\u30f3\u30c8\u30ea\u30fc":[43,112,114,115,135],"\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8":158,"\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8uri":158,"\u30aa\u30b9\u30b9\u30e1":[6,7,8,23,24,25,27,31,32,47,135,155,210,226,228],"\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea":36,"\u30aa\u30d5\u30bb\u30c3\u30c8":[34,40,43,135,138],"\u30aa\u30d5\u30e9\u30a4\u30f3":34,"\u30aa\u30d5\u30e9\u30a4\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[39,43,44],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[22,34,38,40,42,43,44,46,47,50,51,54,63,65,68,76,80,89,90,101,104,106,107,108,118,119,120,121,123,124,125,129,130,134,135,137,146,147,151,174,195,197,220],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30d5\u30a1\u30a4\u30eb":151,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":[44,179],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8id":34,"\u30aa\u30d7\u30b7\u30e7\u30f3":[6,7,8,12,14,18,24,25,27,28,29,30,31,34,35,36,38,39,40,41,42,43,44,54,55,91,92,104,118,135,140,144,146,151,156,158,160,161,169,179,195,196,197,199,200,202,207,210,216,217,219,221,223,224,225,236,238,239,253,255,258,261,262,264,271,273,274,275,276],"\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6":34,"\u30aa\u30da\u30ec\u30fc\u30bf":[43,44],"\u30aa\u30da\u30ec\u30fc\u30bf\u30fc":43,"\u30aa\u30e9\u30f3\u30c0":34,"\u30aa\u30fc\u30ca\u30fc":[41,43],"\u30aa\u30fc\u30d0\u30d5\u30ed\u30fc":34,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":[34,38,41,42,43],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af":[38,43],"\u30aa\u30fc\u30d0\u30fc\u30d8\u30c3\u30c9":[34,42,121,259],"\u30aa\u30fc\u30d7\u30f3":[38,40,41,43,44,50],"\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,"\u30ab\u30a6\u30f3\u30bf":44,"\u30ab\u30a6\u30f3\u30c8":[34,41,112,274],"\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":[202,223],"\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":[202,223],"\u30ab\u30b9\u30b1\u30fc\u30c9":[41,42],"\u30ab\u30b9\u30bf\u30de\u30a4\u30ba":[6,7,8,29,34,40,41,42,43,44,92,100,103,118,135,140,144,146,153,177,179,191,196,199,200,211,216,221,245,269],"\u30ab\u30b9\u30bf\u30e0":[70,145,155],"\u30ab\u30b9\u30bf\u30e0\u30b9\u30b3\u30a2\u30e9\u30fc":211,"\u30ab\u30b9\u30bf\u30e0\u30bb\u30ec\u30af\u30bf":40,"\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0":42,"\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":44,"\u30ab\u30bf\u30ab\u30ca":[34,69,138,176,201,202,206,216,223,228],"\u30ab\u30c6\u30b4\u30ea":[105,135,144,146],"\u30ab\u30d0\u30ec\u30c3\u30b8":3,"\u30ab\u30d0\u30fc":14,"\u30ab\u30e9\u30e0":[0,22,29,34,35,36,38,39,40,41,42,43,44,46,47,51,61,65,68,90,93,94,95,99,100,101,102,104,105,106,107,108,117,120,122,123,130,134,138,140,143,148,151,153,158,161,168,169,170,171,172,173,176,177,179,182,191,193,196,197,198,205,209,210,211,214,216,217,218,219,220,225,245,246,264,267,268,270,274,276,277,278],"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[22,40,267],"\u30ab\u30e9\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":95,"\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2":[22,268],"\u30ab\u30e9\u30e0\u30d1\u30e9\u30e1\u30fc\u30bf":44,"\u30ab\u30e9\u30e0\u30d9\u30fc\u30b9":[196,197],"\u30ab\u30e9\u30e0id":68,"\u30ab\u30e9\u30e0n":182,"\u30ab\u30ec":[202,238],"\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[12,17,154],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9":69,"\u30ab\u30ec\u30fc":262,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":262,"\u30ab\u30f3\u30b8":176,"\u30ab\u30f3\u30de":[103,105,140,197,269,271],"\u30ab\u30fc\u30bd\u30eb":[36,38,43,61,69],"\u30ab\u30fc\u30cd\u30eb":245,"\u30ab\u30fc\u30cd\u30eb\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[40,245],"\u30ad\u30e3\u30b9\u30c8":[34,36,39,40,41,44,112,114,115,135,162,196,212,213,274],"\u30ad\u30e3\u30c3\u30b7\u30e5":[0,34,35,40,43,44,50,55,88,137,153],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":88,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":50,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30b5\u30a4\u30ba":155,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d2\u30c3\u30c8":41,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb":155,"\u30ad\u30e3\u30f3\u30bb\u30eb":[34,44,85,86,131],"\u30ad\u30e3\u30f3\u30bb\u30eb\u30ea\u30af\u30a8\u30b9\u30c8":131,"\u30ad\u30fc":[33,34,36,39,40,41,42,43,44,47,51,63,66,68,78,80,91,92,96,97,98,102,112,114,115,117,121,131,134,135,137,140,142,149,151,153,158,177,196,197,200,206,220,226,242,246,268,271],"\u30ad\u30fc\u30b5\u30a4\u30ba":[33,43,96,97,98,121,140,220],"\u30ad\u30fc\u30b5\u30dd\u30fc\u30c8":220,"\u30ad\u30fc\u30c7\u30fc\u30bf":140,"\u30ad\u30fc\u30dc\u30fc\u30c9":135,"\u30ad\u30fc\u30ef\u30fc\u30c9":[0,22,34,35,37,40,41,44,113,135,140,168,169,177,179,196,210,211,212,213,218,239,240,242,262,263,265,271,273],"\u30af\u30a8\u30ea":[3,4,22,34,36,38,40,41,42,43,44,67,138,152,161,170,172,177,182,216,217,218,219,262,264,267,269,271,273,274,278],"\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6":42,"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6\u30fc":42,"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5":155,"\u30af\u30a8\u30ea\u30d1\u30bf\u30f3":152,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":35,"\u30af\u30a8\u30ea\u30d1\u30e9\u30e1\u30fc\u30bf":40,"\u30af\u30a8\u30ea\u30da\u30a2":218,"\u30af\u30a8\u30ea\u30ed\u30b0":[34,38,40,216,217,219],"\u30af\u30a8\u30ea\u30fc":[22,34,40,42,43,44,46,57,112,114,115,124,125,129,135,138,158,171,176,177,195,197,199,206,209,210,211,212,213,216,219,224,225,226,228,238,239,242,269],"\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":207,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":[44,88],"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":88,"\u30af\u30a8\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8":135,"\u30af\u30a8\u30ea\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":255,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":[22,34,42,43,46,63,104,153,155,259],"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":153,"\u30af\u30a8\u30ea\u30fcapi":[81,87],"\u30af\u30a8\u30eaapi":43,"\u30af\u30a9\u30fc\u30c8":[118,146,196],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":[8,22,40,42,47,86,153,155,158,253,261],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":42,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30b5\u30a4\u30c9":86,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9":[34,127],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":[36,40,156],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea":[1,259],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":42,"\u30af\u30e9\u30c3\u30b7\u30e5":[34,36,38,40,41,42,43,44,95,104,107,143,151],"\u30af\u30e9\u30c3\u30b7\u30e5\u30d0\u30b0":43,"\u30af\u30ea\u30a2":[34,38,40,44,65],"\u30af\u30ea\u30a2\u30fc":[44,151],"\u30af\u30ea\u30c3\u30af":135,"\u30af\u30ea\u30c6\u30a3\u30ab\u30eb":44,"\u30af\u30ea\u30c6\u30a3\u30ab\u30eb\u30bb\u30af\u30b7\u30e7\u30f3":44,"\u30af\u30ea\u30fc\u30f3":12,"\u30af\u30ea\u30fc\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[6,7],"\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb":12,"\u30af\u30ed\u30fc\u30f3":29,"\u30b0\u30e9\u30d5":0,"\u30b0\u30e9\u30e0":239,"\u30b0\u30eb\u30fc\u30d7":[0,12,34,40,41,42,43,44,68,78,112,114,115,135,220,269],"\u30b0\u30eb\u30fc\u30d7\u30ad\u30fc":[112,114,115,135],"\u30b0\u30ed\u30fc\u30d0\u30eb":[40,49],"\u30b0\u30ed\u30fc\u30d0\u30eb\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":50,"\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc":205,"\u30b1\u30fc\u30b9":[34,42,43,44,47,50,55,92,95,104,112,113,114,115,135,140,143,155,158,196,197,210,211,212,213,226,228,241,264,269,278],"\u30b2\u30c3\u30c8":2,"\u30b3\u30a2":[29,155,158,255],"\u30b3\u30b9\u30c8":[68,198],"\u30b3\u30cd\u30af\u30b7\u30e7\u30f3":43,"\u30b3\u30d4\u30fc":[12,40,43,44,47,51,59,65,68,91,95,103,139,143],"\u30b3\u30de\u30f3\u30c9":[11,12,13,14,18,21,22,25,26,34,35,36,38,39,40,41,42,43,44,46,47,50,80,82,83,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,154,155,158,160,168,169,173,177,179,181,182,184,191,193,194,207,209,210,211,216,217,218,219,220,226,245,246,255,261,262,266,267,268,276,277,278],"\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\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":122,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[22,34,36,42,43,44,46,54,81,105,137,156,168,169,170,254],"\u30b3\u30de\u30f3\u30c9\u30d1\u30fc\u30b5\u30fc":210,"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":[32,40,154],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[6,7,8,12,17,18,29,32,38,42,43,103,134,155,210,255],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3":[29,82,83,154,254],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":207,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b7\u30a7\u30eb":196,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b9\u30bf\u30a4\u30eb":[105,210],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30d1\u30e9\u30e1\u30fc\u30bf":34,"\u30b3\u30de\u30f3\u30c9\u30ea\u30b9\u30c8":153,"\u30b3\u30de\u30f3\u30c9url":255,"\u30b3\u30df\u30c3\u30c8":[6,7,12],"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":[17,19,22],"\u30b3\u30e1\u30f3\u30c8":[36,41,153,154,182,209,273],"\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8":273,"\u30b3\u30e1\u30f3\u30c8\u30ab\u30e9\u30e0":273,"\u30b3\u30e1\u30f3\u30c8\u30c6\u30fc\u30d6\u30eb":273,"\u30b3\u30e1\u30f3\u30c8id":274,"\u30b3\u30f3\u30bd\u30fc\u30eb":63,"\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8":[50,54,63,65,137,155,182],"\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u30a2\u30c9\u30ec\u30b9":34,"\u30b3\u30f3\u30c6\u30f3\u30c4":242,"\u30b3\u30f3\u30c6\u30f3\u30c8\u30bf\u30a4\u30d7":261,"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3":44,"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[22,44],"\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb":[34,42],"\u30b3\u30f3\u30d1\u30a4\u30e9":[38,42],"\u30b3\u30f3\u30d1\u30a4\u30e9\u30fc":[6,7,29],"\u30b3\u30f3\u30d1\u30a4\u30eb":[39,41],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30a8\u30e9\u30fc":[34,43],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":12,"\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u30fc":206,"\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb":82,"\u30b3\u30f3\u30d5\u30ea\u30af\u30c8":34,"\u30b3\u30f3\u30de":92,"\u30b3\u30fc\u30c9":[17,41,42,43,44,135,146,265],"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":11,"\u30b4\u30df":[34,36,38,89,121],"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":[89,121],"\u30b4\u30df\u30c7\u30fc\u30bf":158,"\u30b5\u30a4\u30ba":[0,23,24,25,27,31,32,33,34,38,40,41,42,43,44,47,51,62,65,68,69,70,85,89,98,121,122,140,149,153,179,193,220,245,261,266,268],"\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":[101,121],"\u30b5\u30a4\u30c8":[12,135,195,268,270],"\u30b5\u30a4\u30c9\u30e1\u30cb\u30e5\u30fc":135,"\u30b5\u30b8\u30a7\u30b9\u30c8":[22,29,36,38,40,42,46,138,157,218],"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf":158,"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de":217,"\u30b5\u30d6\u30a8\u30e9\u30fc":34,"\u30b5\u30d6\u30af\u30e9\u30b9":34,"\u30b5\u30d6\u30bb\u30c3\u30c8":[68,246],"\u30b5\u30d6\u30bf\u30b9\u30af":12,"\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":12,"\u30b5\u30d6\u30df\u30c3\u30c8":158,"\u30b5\u30d6\u30ec\u30b3\u30fc\u30c9":[34,115],"\u30b5\u30dd\u30fc\u30c8":[0,1,6,7,8,10,12,21,29,31,34,35,36,38,39,40,41,42,43,44,69,82,92,105,112,114,115,131,132,133,135,137,140,145,146,151,154,155,171,176,179,191,196,197,198,203,205,206,207,209,210,214,220,224,238,241,255,258,259,268,269,273,275],"\u30b5\u30de\u30ea":41,"\u30b5\u30ed\u30b2\u30fc\u30c8\u30da\u30a2":34,"\u30b5\u30f3":238,"\u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3":165,"\u30b5\u30f3\u30d7\u30eb":[36,37,40,41,135,155,165,171,273],"\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":36,"\u30b5\u30f3\u30d7\u30eb\u30b7\u30e3\u30fc\u30c9":116,"\u30b5\u30f3\u30d7\u30eb\u30b9\u30ad\u30fc\u30de":[117,122,134,170,171,172,173,177,182,184,191,193,211,212,213],"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[91,102,103,112,114,115,135,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,210,211,212,213,240,242,273],"\u30b5\u30fc\u30d0":[12,21,22,23,24,25,27,31,32,38,40,41,89,90,94,100,101,103,110,111,127,141,153,154,156,258],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0":154,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9":153,"\u30b5\u30fc\u30d0\u30fc":[1,22,24,25,27,31,34,38,40,41,42,43,46,70,131,145,150,153,155,158,207,254,255,261],"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":[22,40,42,43,252],"\u30b5\u30fc\u30d0\u30fc\u30d7\u30ed\u30bb\u30b9":[41,136],"\u30b5\u30fc\u30d0\u30fc\u30e2\u30c7\u30eb":[153,261],"\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9":43,"\u30b5\u30fc\u30d0\u30fcid":38,"\u30b5\u30fc\u30d3\u30b9":[0,21,25,40,41,42,136,245],"\u30b5\u30fc\u30d3\u30b9\u30b9\u30af\u30ea\u30d7\u30c8":41,"\u30b7\u30a7\u30a2":2,"\u30b7\u30a7\u30eb":[29,43,153,154,196,210],"\u30b7\u30b0\u30ca\u30eb":[38,42],"\u30b7\u30b9\u30c6\u30e0":[0,3,6,22,29,31,34,38,42,43,44,92,99,104,153,198,206,216,245,267],"\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":265,"\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":41,"\u30b7\u30b9\u30c6\u30e0\u30b3\u30fc\u30eb":34,"\u30b7\u30b9\u30c6\u30e0\u30ed\u30b1\u30fc\u30eb":34,"\u30b7\u30ca\u30ea\u30aa":34,"\u30b7\u30e3\u30c3\u30c8\u30c0\u30a6\u30f3":136,"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0":[22,43,46,116,220],"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0\u30d0\u30fc\u30b8\u30e7\u30f3":[114,115],"\u30b7\u30e3\u30fc\u30c9":[34,43,112,114,115,116,117,214],"\u30b7\u30e3\u30fc\u30c9\u30ad\u30fc":[112,114,115,117],"\u30b7\u30e3\u30fc\u30d7":[92,140],"\u30b7\u30f3\u30b0\u30eb\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":92,"\u30b7\u30f3\u30b0\u30eb\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":92,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":[41,118,146,153,271],"\u30b7\u30f3\u30b0\u30eb\u30b9\u30ec\u30c3\u30c9\u30e2\u30c7\u30eb":145,"\u30b7\u30f3\u30b0\u30eb\u30b9\u30ec\u30c3\u30c9\u30e2\u30fc\u30c9":44,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9":42,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9\u30a8\u30e9\u30fc":[34,42,43,44],"\u30b7\u30f3\u30d7\u30eb":[43,195,254,269],"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb":43,"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30b5\u30fc\u30c1":[34,43,44,171,198],"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30b9\u30ad\u30e3\u30f3":[43,176],"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb\u30de\u30c3\u30c1":34,"\u30b7\u30fc\u30b1\u30f3\u30b9":[216,217,219],"\u30b8\u30aa\u30b5\u30fc\u30c1":[22,38,267],"\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3":34,"\u30b9\u30ab\u30e9":51,"\u30b9\u30ab\u30e9\u30fc":[34,44,80,114,135],"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":[22,46,47,76,80,93,121,134],"\u30b9\u30ab\u30e9\u30fc\u30c7\u30fc\u30bf":80,"\u30b9\u30ad\u30c3\u30d7":[12,41,42,43,44],"\u30b9\u30ad\u30e3\u30f3":[168,169],"\u30b9\u30ad\u30fc\u30de":[43,47,57,91,102,103,105,112,114,115,134,135,142,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,210,211,212,213,214,240,242,245,273],"\u30b9\u30af\u30ea\u30d7\u30c8":[22,29,34,36,37,40,41,42,43,44,46,57,105,132,133,135,154,182,195,196,210],"\u30b9\u30b1\u30fc\u30d7":210,"\u30b9\u30b3\u30a2":[11,34,40,43,44,78,80,92,135,138,211,212,213,264,273,278],"\u30b9\u30b3\u30a2\u30e9\u30fc":[22,34,43,46,135,212,213],"\u30b9\u30b3\u30a2\u30fc":[34,43,80,158,211,212,213],"\u30b9\u30b3\u30a2\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":211,"\u30b9\u30b3\u30fc\u30d7":210,"\u30b9\u30bf\u30a4\u30eb":[34,43,105,121,153],"\u30b9\u30bf\u30c3\u30af\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":[41,44],"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3":[153,156],"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30fc\u30f3\u30e2\u30fc\u30c9":43,"\u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc":32,"\u30b9\u30c3\u30c8\u30d7\u30ef\u30fc\u30c9":34,"\u30b9\u30c6\u30c3\u30d7":[91,210],"\u30b9\u30c6\u30df\u30f3\u30b0":[34,42,224],"\u30b9\u30c6\u30df\u30f3\u30b0\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":224,"\u30b9\u30c6\u30fc\u30b8":[34,112,114,115,135],"\u30b9\u30c6\u30fc\u30bf\u30b9":[41,43,44,87,137,151,261],"\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9":40,"\u30b9\u30c6\u30fc\u30c8\u30d5\u30eb":[34,261],"\u30b9\u30c6\u30fc\u30c8\u30ec\u30b9":34,"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9":[34,42,135,225,272],"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":42,"\u30b9\u30c8\u30ea\u30fc\u30e0":[42,44],"\u30b9\u30c8\u30ec\u30fc\u30b8":22,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":22,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30e2\u30fc\u30c9":41,"\u30b9\u30cb\u30da\u30c3\u30c8":[41,44,179],"\u30b9\u30d1\u30de\u30fc":[211,212,213],"\u30b9\u30d1\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":[34,43],"\u30b9\u30d1\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb\u30b5\u30dd\u30fc\u30c8":43,"\u30b9\u30da\u30a4\u30f3":[34,165],"\u30b9\u30da\u30eb":209,"\u30b9\u30da\u30fc\u30b9":[34,38,41,43,135],"\u30b9\u30e9\u30a4\u30b9":34,"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8":[38,255],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30c1\u30e3\u30fc\u30c8":38,"\u30b9\u30ec\u30c3\u30c9":[0,9,34,43,44,54,70,99,107,113,137,142,145,153,154,158,199,255],"\u30b9\u30ec\u30c3\u30c9\u30ab\u30a6\u30f3\u30c8":34,"\u30b9\u30ec\u30c3\u30c9\u30bb\u30fc\u30d5":[34,43,44],"\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb":70,"\u30b9\u30ed\u30fc\u30af\u30a8\u30ea\u30fc":[43,155],"\u30b9\u30ef\u30c3\u30d7":245,"\u30b9\u30fc\u30d7":262,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":262,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":262,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":262,"\u30ba\u30ec":239,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":[22,34,267],"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":[34,42,43],"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u30ea\u30b9\u30af":42,"\u30bb\u30af\u30b7\u30e7\u30f3":[3,12,17,20,21,23,24,25,26,27,28,29,30,31,32,34,42,43,47,51,80,81,83,88,91,92,93,95,96,97,98,99,104,105,106,107,108,112,113,114,115,116,117,118,120,121,122,123,126,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,148,151,153,155,158,160,165,169,196,204,209,210,211,212,213,215,216,217,219,245,247,261,269,273],"\u30bb\u30af\u30b7\u30e7\u30f3\u30b5\u30dd\u30fc\u30c8":92,"\u30bb\u30af\u30b7\u30e7\u30f3id":34,"\u30bb\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u30d5\u30a9\u30eb\u30c8":40,"\u30bb\u30b0\u30e1\u30f3\u30c8":[34,42,44,65,89,101,121],"\u30bb\u30b0\u30e1\u30f3\u30c8id":121,"\u30bb\u30c3\u30b7\u30e7\u30f3":[127,153,261],"\u30bb\u30c3\u30b7\u30e7\u30f3id":158,"\u30bb\u30c3\u30c8":[11,34,43,65,68,69,90,144,171,262],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":[17,41,44],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u30b9\u30af\u30ea\u30d7\u30c8":21,"\u30bb\u30df\u30b3\u30ed\u30f3":154,"\u30bb\u30ec\u30af\u30bf":[34,44],"\u30bb\u30ec\u30af\u30bf\u30fc":[43,176],"\u30bb\u30f3\u30c8\u30e9\u30eb\u30d1\u30fc\u30af":274,"\u30bb\u30fc\u30d6\u30eb":34,"\u30bb\u30fc\u30f4\u30a7\u30eb":34,"\u30bb\u30fc\u30f4\u30eb":34,"\u30bd\u30b1\u30c3\u30c8":[40,89,90,94,100,101,103,110,111,127,141],"\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc":[22,263],"\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":265,"\u30bd\u30d5\u30c8":209,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":[3,12,21,43],"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8":270,"\u30bd\u30fc\u30b9":[12,18,22,23,30,34,38,40,44,122,134,151],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":[6,7,8,12,29],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":12,"\u30bd\u30fc\u30b9\u30ab\u30e9\u30e0":[34,42,43,44,91,93,104,121,122,134],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":[6,7,8,14,29,30,34,41,44,83,265],"\u30bd\u30fc\u30b9\u30c6\u30fc\u30d6\u30eb":[122,139],"\u30bd\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":17,"\u30bd\u30fc\u30b9\u30d5\u30a9\u30eb\u30c0":32,"\u30bd\u30fc\u30c8":[22,34,35,36,38,41,43,44,68,103,112,114,115,116,135,138,158,205,220,267,270],"\u30bd\u30fc\u30c8\u30ad\u30fc":[34,35,44,68,112,114,115,135,138],"\u30bf\u30a4\u30c8\u30eb":[112,114,115,135,196,197,211,212,213,268,270,273],"\u30bf\u30a4\u30d7":[38,43,59,135,154,255],"\u30bf\u30a4\u30d7id":44,"\u30bf\u30a4\u30df\u30f3\u30b0":[34,40,135,271],"\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[41,49,153],"\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7":[34,37,44,151,153,158,199,216,217,219],"\u30bf\u30b0":[12,22,34,36,38,40,41,42,80,112,114,115,135,140,168,169,170,179,197,211,212,213,220,267,274],"\u30bf\u30b0\u30c6\u30ad\u30b9\u30c8":[236,237],"\u30bf\u30d6":[207,209,261],"\u30bf\u30fc\u30b2\u30c3\u30c8":[40,44],"\u30bf\u30fc\u30b2\u30c3\u30c8\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":50,"\u30bf\u30fc\u30df\u30ca\u30eb":[153,155],"\u30c0\u30a4\u30a2\u30ed\u30b0":41,"\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8":255,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":[47,254],"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":[24,25,27,28,29,30,31,32,154],"\u30c0\u30d6\u30eb":[38,40,140,196,197,220],"\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":[118,146,153,271],"\u30c0\u30e1\u30fc\u30b8":264,"\u30c0\u30f3\u30d7":[34,36,40,41,43,44,103,153,199,245],"\u30c1\u30a7\u30c3\u30af":[34,36,38,40,41,42,43,44,54,89,104,117,120,142,151,152,154,158,161],"\u30c1\u30a7\u30c3\u30af\u30b5\u30e0":12,"\u30c1\u30e3\u30c3\u30c8\u30eb\u30fc\u30e0":[22,43],"\u30c1\u30e3\u30cd\u30eb":34,"\u30c1\u30e3\u30f3\u30af":[34,43,44,89,121],"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba":89,"\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8":89,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":[22,38,40,42,43,268,271],"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0":[22,41,43,46,80,135,266],"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":245,"\u30c1\u30fc\u30e0":12,"\u30c4\u30a4\u30fc\u30c8":[2,12],"\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3":12,"\u30c4\u30ea\u30fc":42,"\u30c4\u30fc\u30eb":[17,22,23,32,43,152,153,156,255,259,267,271],"\u30c6\u30ad\u30b9\u30c8":[12,17,34,36,40,41,43,44,57,63,80,92,115,118,140,144,146,154,168,169,170,179,200,201,202,203,206,210,223,226,228,229,230,231,232,236,239,241],"\u30c6\u30ad\u30b9\u30c8\u30ab\u30e9\u30e0":43,"\u30c6\u30ad\u30b9\u30c8\u30c7\u30fc\u30bf":[44,140],"\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":154,"\u30c6\u30af\u30cb\u30c3\u30af":[211,212,213],"\u30c6\u30b9\u30c8":[3,4,6,7,8,12,22,23,24,25,27,31,32,34,36,40,42,43,44,113,155,264,274],"\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9":14,"\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf":12,"\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":154,"\u30c6\u30f3\u30dd\u30e9\u30ea\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":34,"\u30c6\u30fc\u30d6\u30eb":[11,22,34,35,36,38,39,40,41,42,43,44,46,47,63,65,67,68,69,76,78,89,90,93,94,95,99,100,101,102,103,104,105,106,107,108,112,114,115,116,118,120,122,123,130,134,135,138,139,141,143,144,148,151,153,155,158,161,165,168,171,172,173,176,182,193,196,197,200,206,209,210,214,216,219,221,225,240,242,245,255,258,264,267,269,270,272,276,277],"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[141,143],"\u30c6\u30fc\u30d6\u30eb\u30d7\u30e9\u30b0\u30a4\u30f3":40,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id":61,"\u30c7\u30a3\u30b9\u30af":[34,35,43,44,99,104,120,153,155,273],"\u30c7\u30a3\u30b9\u30af\u30d5\u30eb":43,"\u30c7\u30a3\u30b9\u30afi":140,"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3":[12,29,36],"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":[40,41,157,255],"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[14,17,29,34,36,38,40,43,153,154,155,209],"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9":41,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30fc":[6,7,158],"\u30c7\u30af\u30ea\u30e1\u30f3\u30c8":34,"\u30c7\u30b6\u30a4\u30f3":40,"\u30c7\u30b9":238,"\u30c7\u30c3\u30c9\u30ed\u30c3\u30af":34,"\u30c7\u30d0\u30c3\u30ac\u30fc":[6,7],"\u30c7\u30d0\u30c3\u30b0":[6,7,12,34,42,43,44,89,146,153,155,199],"\u30c7\u30d0\u30c3\u30b0\u30aa\u30d7\u30b7\u30e7\u30f3":[6,7],"\u30c7\u30d0\u30c3\u30b0\u30ed\u30b0":[43,44],"\u30c7\u30d5\u30a9\u30eb\u30c8":[6,7,8,11,18,29,33,34,35,36,38,39,40,41,42,43,44,49,52,54,56,64,80,82,92,100,103,105,106,107,108,111,112,113,114,115,117,121,123,130,135,136,137,138,140,142,144,146,151,152,153,154,155,158,161,162,165,166,177,191,196,197,198,199,207,211,213,239,245,246,255,261,262,264,268,269,271],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[34,40,44,91,140,217],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30dd\u30fc\u30c8":42,"\u30c7\u30d5\u30e9\u30b0":38,"\u30c7\u30d7\u30ed\u30a4":155,"\u30c7\u30e1\u30ea\u30c3\u30c8":[34,220],"\u30c7\u30f3\u30de\u30fc\u30af":34,"\u30c7\u30fc\u30bf":[0,11,22,23,24,25,27,31,32,34,35,36,38,39,40,41,42,43,44,46,47,70,80,93,103,105,112,114,115,121,122,135,138,151,155,158,165,196,197,198,205,209,211,212,213,214,215,217,218,220,245,255,261,264,267,270,273,276],"\u30c7\u30fc\u30bf\u30ab\u30e9\u30e0":[34,43,44,92,121,130,135,151,212,213,273],"\u30c7\u30fc\u30bf\u30b5\u30a4\u30ba":44,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2":50,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[76,80],"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0":76,"\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8":[138,158,216],"\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb":154,"\u30c7\u30fc\u30bf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":255,"\u30c7\u30fc\u30bf\u30d9\u30fc":38,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[0,11,20,22,29,34,35,38,40,41,42,43,44,50,55,78,89,90,93,99,101,103,104,105,106,107,108,119,120,122,123,124,129,130,134,140,142,147,149,151,153,154,155,158,159,195,196,197,200,214,216,220,245,246,254,259,261,266,267,275],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":44,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[34,151],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b5\u30a4\u30ba":245,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30b9\u30ad\u30fc\u30de":103,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":[41,245],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":[35,140,274],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u30b3\u30de\u30f3\u30c9":214,"\u30c7\u30fc\u30e2\u30f3":[35,40,41,43,153,155,158,258,275],"\u30c7\u30fc\u30e2\u30f3\u30d7\u30ed\u30bb\u30b9":155,"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":[41,42],"\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":14,"\u30c8\u30c3\u30d7\u30da\u30fc\u30b8":12,"\u30c8\u30c3\u30d7\u30ec\u30d9\u30eb\u30c9\u30e1\u30a4\u30f3":269,"\u30c8\u30d4\u30c3\u30af":12,"\u30c8\u30e2":270,"\u30c8\u30e9\u30a4":[38,140,196,197,220],"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[22,36],"\u30c8\u30ea\u30b0\u30e9\u30e0":[239,243],"\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5":[226,264],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":[22,40,262],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3":40,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3api":40,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[22,24,25,27,28,31,34,36,37,38,40,41,43,44,46,92,104,112,114,115,122,134,135,140,144,146,147,196,197,210,217,219,226,228,238,239,240,241,242,262,263],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":43,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[42,146],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30e2\u30fc\u30b8\u30e5\u30fc\u30eb":226,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fcapi":40,"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":[29,34,38,43,44,135,144,146,197,200,217,219,221,223,224,225,226,228,230,231,232,233,234,235,236,238,239,243,244,262,264,271],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u30e2\u30fc\u30c9":[44,144,146],"\u30c8\u30fc\u30af\u30f3":[34,36,38,41,42,43,44,92,140,144,146,197,200,217,219,220,221,223,224,225,226,228,236,238,239,240,242,243,244,262],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf":[34,42],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":[22,25,31,34,42,43,44,46,104,122,134,140,144,146,221,223,224,225],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":43,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":221,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":221,"\u30c9\u30a4\u30c4":34,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[3,5,6,7,8,16,17,18,23,29,34,36,38,39,40,41,42,43,44,64,76,83,92,117,135,146,154,155,158,196,197,210,213,226,245,266],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30c4\u30fc\u30eb":[15,18],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8":12,"\u30c9\u30e1\u30a4\u30f3":[42,44,269],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[22,34,38,41,42,43,44,114,220,246,267,270,274],"\u30ca\u30ce":[36,83,199],"\u30ca\u30de\u30a8":[202,238],"\u30cb\u30c3\u30dd\u30f3":[176,206,216],"\u30cb\u30db\u30f3":[176,206,216],"\u30cb\u30db\u30f3\u30b4":216,"\u30cb\u30db\u30f3\u30b8\u30f3":216,"\u30cb\u30e5\u30fc\u30b9":[44,198],"\u30cb\u30e5\u30fc\u30e8\u30fc\u30af":[63,165,274],"\u30cd\u30b9\u30c8":[34,40,41,42,43,121,273],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":[255,275],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":[40,261],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d7\u30ed\u30c8\u30b3\u30eb":40,"\u30ce\u30a4\u30ba":[158,217,238,264],"\u30ce\u30eb\u30a6\u30a7\u30fc":34,"\u30ce\u30fc\u30c9":[40,44,69],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":[22,24,25,27,31,34,40,41,42,43,44,46,91,92,118,119,122,134,135,140,144,146,168,169,197,201,202,203,210,228,239,243,244],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":43,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d7\u30b7\u30e7\u30f3":200,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[118,200],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":200,"\u30ce\u30fc\u30de\u30e9\u30a4\u30ba":[34,41,42,118,146,223,239,271],"\u30cf\u30a4\u30d5\u30f3":[34,92,140,202,223,271],"\u30cf\u30a4\u30e9\u30a4\u30c8":[34,44,168,169,239],"\u30cf\u30ba":238,"\u30cf\u30c3\u30b7\u30e5":[34,40,43,89],"\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb":[34,38,41,43,103,122,140,197,220],"\u30d0\u30a4\u30aa\u30ea\u30f3":34,"\u30d0\u30a4\u30b0\u30e9\u30e0":[34,226,228,230,231,232,233,234,235,239,241,264],"\u30d0\u30a4\u30b0\u30e9\u30e0\u30d9\u30fc\u30b9":228,"\u30d0\u30a4\u30c8":[33,34,36,38,40,41,42,43,44,51,54,69,85,87,121,122,134,135,179,220,246],"\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":40,"\u30d0\u30a4\u30c8\u30b5\u30a4\u30ba":[43,57],"\u30d0\u30a4\u30c8\u30b7\u30fc\u30b1\u30f3\u30b9":41,"\u30d0\u30a4\u30ca\u30ea":[12,32],"\u30d0\u30a4\u30ca\u30ea\u30c7\u30fc\u30bf":[34,40],"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":[1,14,22,43,44,252,275],"\u30d0\u30a4\u30ca\u30ea\u30fc":83,"\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":[20,21,195],"\u30d0\u30a4\u30f3\u30c9":43,"\u30d0\u30af":34,"\u30d0\u30b0":[10,34,38,41,43,44],"\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9":43,"\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9\u30ea\u30ea\u30fc\u30b9":[40,42,43,44],"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":[3,22,29,42],"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7":103,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":[41,57,153,196],"\u30d0\u30c3\u30af\u30c8\u30ec\u30fc\u30b9":[34,44],"\u30d0\u30c3\u30c1\u30e2\u30fc\u30c9":40,"\u30d0\u30c3\u30d5\u30a1":[40,41,44,51,57,59,62,65,68,89,273],"\u30d0\u30c3\u30d5\u30a1\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":44,"\u30d0\u30c3\u30d5\u30a1\u30b5\u30a4\u30ba":43,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8":89,"\u30d0\u30c3\u30d5\u30a1\u30ea\u30f3\u30b0":41,"\u30d0\u30c3\u30d5\u30a1\u30fc":34,"\u30d0\u30c3\u30d5\u30a1id":89,"\u30d0\u30d3\u30d6\u30d9\u30dc":34,"\u30d0\u30d3\u30d6\u30d9\u30dc\u30d6":[202,223],"\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3":34,"\u30d0\u30ea\u30e5\u30fc\u30b5\u30dd\u30fc\u30c8":220,"\u30d0\u30eb\u30af":43,"\u30d0\u30eb\u30af\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[43,44],"\u30d0\u30f3\u30c9\u30eb":[34,41,42,43,44],"\u30d0\u30fc\u30b8\u30e7\u30f3":[18,25,29,31,34,38,40,41,42,43,44,47,51,55,63,74,84,85,86,90,91,92,96,97,98,99,103,104,105,106,107,108,112,113,114,115,116,117,120,121,122,123,124,125,126,129,130,131,134,135,136,137,139,142,145,148,149,151,153,162,164,165,169,171,172,173,180,181,184,191,192,193,194,196,197,202,210,212,213,214,223,241,247,248,249,250,251,271],"\u30d1\u30b9":[12,29,34,36,37,38,42,43,55,93,122,124,125,129,151,152,153,154,155,156,158,159,255,261,271],"\u30d1\u30b9\u30b9\u30bf\u30a4\u30eb":210,"\u30d1\u30b9\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9":34,"\u30d1\u30bf\u30fc\u30f3":[34,43,83,171,196,197,210,240],"\u30d1\u30bf\u30fc\u30f3\u30de\u30c3\u30c1":210,"\u30d1\u30c3\u30b1\u30fc\u30b8":[8,23,24,25,27,30,31,32,34,36,38,40,41,42,43,44,82,150,155,238,259],"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9":36,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30f3\u30b0\u30dd\u30ea\u30b7\u30fc":41,"\u30d1\u30c3\u30c1":[16,34,36,38,40,41,42,43,44],"\u30d1\u30c8\u30ea\u30b7\u30a2":[22,40,69,262,267,271],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4":[34,36,38,41,43,44,140,196,197,220],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30c6\u30fc\u30d6\u30eb":[122,196,197],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30ce\u30fc\u30c9":43,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":[34,41,42,43,44,135,152,153,155,158,172,259],"\u30d1\u30e9\u30e1\u30fc\u30bf":[22,34,38,40,41,42,44,49,50,51,52,54,55,56,57,58,59,61,62,63,64,65,66,67,68,69,70,71,72,74,115,152,158,262,266,267,269,271,274,275,278],"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[32,34,38,39,42,43,44,84,85,86,92,104,105,106,107,108,112,113,114,117,130,131,136,140,142,146,155,158,171,177,182,191,209,245,268],"\u30d1\u30ea":165,"\u30d1\u30fc\u30b5\u30fc":[12,34,196,210],"\u30d1\u30fc\u30b9":[34,38,44,56,57,177,195],"\u30d1\u30fc\u30b9\u30a8\u30e9\u30fc":34,"\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3":42,"\u30d2\u30c3\u30c8":[11,34,41,44,135,198,206,216,240,262,264,274,276],"\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2":[135,195,264],"\u30d2\u30e5\u30d9\u30cb":[165,166],"\u30d3\u30c3\u30b0\u30a8\u30f3\u30c7\u30a3\u30a2\u30f3":42,"\u30d3\u30c3\u30c8":[43,69,196,261,268],"\u30d3\u30c3\u30c8\u30b7\u30d5\u30c8":197,"\u30d3\u30e5\u30fc":40,"\u30d3\u30eb\u30c8\u30a4\u30f3":[34,41],"\u30d3\u30eb\u30c9":[3,4,18,21,22,23,30,34,36,38,40,41,42,43,209,214],"\u30d3\u30eb\u30c9\u30a8\u30e9\u30fc":[34,42,43,44],"\u30d3\u30eb\u30c9\u30aa\u30d7\u30b7\u30e7\u30f3":[29,32],"\u30d3\u30eb\u30c9\u30b7\u30b9\u30c6\u30e0":[5,29],"\u30d3\u30eb\u30c9\u30bf\u30a4\u30e0":[6,7],"\u30d3\u30eb\u30c9\u30c4\u30fc\u30eb":6,"\u30d3\u30eb\u30c9\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[6,7,8,149],"\u30d4\u30ea\u30aa\u30c9":273,"\u30d5\u30a1\u30a4\u30eb":[3,22,29,32,34,35,38,39,40,41,42,43,44,46,65,70,82,83,86,89,90,94,100,101,103,110,111,127,131,135,141,145,151,154,155,156,197,199,214,216,253,254,259,261,271],"\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba":43,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0":38,"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf":36,"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u30fc":[40,158],"\u30d5\u30a1\u30a4\u30eb\u30cf\u30f3\u30c9\u30eb":34,"\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9":[51,55,65,68],"\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":209,"\u30d5\u30a1\u30a4\u30eb\u30de\u30c3\u30d4\u30f3\u30b0":34,"\u30d5\u30a1\u30bb\u30c3\u30c8":135,"\u30d5\u30a3\u30eb\u30bf":[34,40,43,44],"\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0":41,"\u30d5\u30a3\u30eb\u30bf\u30fc":[34,112,114,115,135,182],"\u30d5\u30a3\u30eb\u30bf\u30fc\u30bf\u30a4\u30df\u30f3\u30b0":34,"\u30d5\u30a3\u30eb\u30bf\u30fc\u30c6\u30ad\u30b9\u30c8":135,"\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9":34,"\u30d5\u30a3\u30fc\u30eb\u30c9":93,"\u30d5\u30a9\u30eb\u30c0\u30fc":32,"\u30d5\u30a9\u30ed\u30ef\u30fc":12,"\u30d5\u30a9\u30ed\u30fc":2,"\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8":274,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[34,43,89,103,105,112,114,115,121,138,153,158,197,214,255,274],"\u30d5\u30a9\u30fc\u30e0":[41,135,195,196],"\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af":[34,44],"\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af\u30e2\u30fc\u30c9":43,"\u30d5\u30c3\u30af":21,"\u30d5\u30e9\u30b0":[33,34,35,38,39,40,42,43,44,54,63,69,80,89,90,92,93,94,100,110,111,112,114,115,118,121,122,134,135,140,146,151,153,177,196,197,200,201,210,220,261,268,271,272,276],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":101,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3":[35,101],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8":65,"\u30d5\u30e9\u30c3\u30b7\u30e5":[34,43,44,104],"\u30d5\u30e9\u30f3\u30b9":[34,165,224],"\u30d5\u30eb\u30d1\u30b9":34,"\u30d5\u30ec\u30fc\u30ba":[40,44,92],"\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af":14,"\u30d6\u30c3\u30af\u30de\u30fc\u30af":80,"\u30d6\u30d6\u30d6\u30d6\u30d6\u30d6":[202,223],"\u30d6\u30e9\u30a6\u30b6":[12,17,29,275],"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":[22,267],"\u30d6\u30e9\u30b8\u30ea\u30a2":165,"\u30d6\u30e9\u30b8\u30eb":165,"\u30d6\u30ed\u30b0":[182,198,273,274],"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea":[12,135,196,197,273],"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea\u30fc":[112,114,115],"\u30d6\u30ed\u30c3\u30af":[0,41,155],"\u30d6\u30fc\u30ea\u30a2\u30f3":246,"\u30d6\u30fc\u30eb":[34,246,268],"\u30d7\u30e9\u30b0\u30a4\u30f3":[0,17,24,25,27,29,31,34,35,36,37,38,40,41,42,43,44,103,112,113,114,115,116,117,122,124,125,129,132,133,134,135,173,177,181,184,191,193,194,200,209,214,221],"\u30d7\u30e9\u30b0\u30a4\u30f3api":42,"\u30d7\u30e9\u30b0\u30a4\u30f3id":122,"\u30d7\u30e9\u30b0\u30de":135,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0":[14,17,18,23,29,38],"\u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8":[22,43,44,46,81],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9":[34,70,155,158,214,220,271],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":254,"\u30d7\u30ec\u30fc\u30b9\u30db\u30eb\u30c0":41,"\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":1,"\u30d7\u30ed\u30b0\u30e9\u30e0":[3,34,36,40,93,153,155,158,197],"\u30d7\u30ed\u30b7\u30fc\u30b8\u30e3":176,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[0,3,12,13,17,19,21,42,259],"\u30d7\u30ed\u30bb\u30b9":[0,34,40,41,43,44,82,89,95,104,107,124,127,129,130,137,143,149,151,152,153,154,155,158,199,255,271],"\u30d7\u30ed\u30bb\u30b9\u30ed\u30b0":[22,43,46,259],"\u30d7\u30ed\u30bb\u30b9id":[153,261],"\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3":[155,158],"\u30d7\u30ed\u30c8\u30b3\u30eb":[0,1,22,40,44,87,152,154,155,258,259,275],"\u30d7\u30ed\u30d1\u30c6\u30a3":[44,134],"\u30d7\u30ed\u30f3\u30d7\u30c8":207,"\u30d8\u30c3\u30c0":[41,42],"\u30d8\u30c3\u30c0\u30d5\u30a1\u30a4\u30eb":40,"\u30d8\u30c3\u30c0\u30fc":[40,42,43,87,255],"\u30d8\u30eb\u30d7":14,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8":[36,153],"\u30d9\u30af\u30bf":[34,35,36,40,41,44,65],"\u30d9\u30af\u30bf\u30ab\u30e9\u30e0":[38,40,41],"\u30d9\u30af\u30bf\u30fc":[34,38,41,42,44,80,102,114,135,191],"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[22,34,41,42,43,44,46,65,76,93,112,114,115,121,122,134,135,192,193,216,267,274],"\u30d9\u30af\u30bf\u30fc\u30c7\u30fc\u30bf":[34,80],"\u30d9\u30af\u30c8\u30eb":34,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af":42,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb":154,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30d7\u30ed\u30b0\u30e9\u30e0":41,"\u30d9\u30fc\u30b7\u30c3\u30af":255,"\u30d9\u30fc\u30b9":[0,17,34,36,38,40,42,68,69,114,131,146,153,155,196,197,206,211,212,213,214,238,241,254,259],"\u30d9\u30fc\u30b9\u30d1\u30b9":155,"\u30da\u30a2":[43,121,122,135,149,209,216,217,218,219,268,277],"\u30da\u30f3":236,"\u30da\u30fc\u30b8":[2,12,17,22,40,41,43,135,153,156,265,271],"\u30da\u30fc\u30b8\u30e9\u30f3\u30af":[211,212,213],"\u30da\u30fc\u30b9\u30c8":40,"\u30db\u30b9\u30c8":[12,38,40,152,153,154,158,261],"\u30db\u30b9\u30c8\u30de\u30b7\u30f3":12,"\u30dc\u30bf\u30f3":[12,17,40,41],"\u30dc\u30c3\u30af\u30b9":135,"\u30dc\u30c7\u30a3":[91,92,99,104,105,117,120,121,123,124,125,129,136,139,140,142,143,145,158,261],"\u30dd\u30a4\u30f3\u30bf":[44,54,65,66,68,69,72],"\u30dd\u30a4\u30f3\u30c8":[80,92,209],"\u30dd\u30b9\u30c6\u30a3\u30f3\u30b0":[34,92],"\u30dd\u30b9\u30c6\u30a3\u30f3\u30b0\u30ea\u30b9\u30c8":[34,43,44,121],"\u30dd\u30eb\u30c8\u30ac\u30eb":34,"\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3":[38,41],"\u30dd\u30fc\u30c8":[41,152,153,154,158,207,255,259,261,275],"\u30de\u30a4\u30af\u30ed":[197,199,246,268,274],"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":[22,34,267],"\u30de\u30af\u30c9\u30ca\u30eb\u30c9":205,"\u30de\u30af\u30ed":[34,38,41,43,65,265],"\u30de\u30b7\u30f3":[12,153,214],"\u30de\u30c3\u30c1":[11,29,34,35,38,41,42,43,44,57,67,80,112,114,115,135,161,168,169,171,176,177,179,182,191,195,196,210,211,212,213,225,236,240,241,242,264,273],"\u30de\u30c3\u30c1\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":29,"\u30de\u30c3\u30c1\u30ec\u30b3\u30fc\u30c9":114,"\u30de\u30c3\u30d4\u30f3\u30b0":[34,266],"\u30de\u30c3\u30d7":[34,43,99,245],"\u30de\u30c9\u30ea\u30fc\u30c9":165,"\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[34,41,42,43,44,93,134,273],"\u30de\u30eb\u30c1\u30b3\u30a2":0,"\u30de\u30eb\u30c1\u30b3\u30a2cpu":29,"\u30de\u30eb\u30c1\u30b9\u30ec\u30c3\u30c9":[42,43,99,131,255],"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3":41,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":94,"\u30de\u30eb\u30c1\u30d0\u30a4\u30c8":[38,44],"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9":[38,255],"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30d9\u30fc\u30b9":199,"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30e2\u30c7\u30eb":42,"\u30de\u30eb\u30c1\u30e9\u30a4\u30f3\u30e2\u30fc\u30c9":210,"\u30de\u30eb\u30c1\u30ef\u30fc\u30ab\u30fc":155,"\u30de\u30fc\u30af":241,"\u30de\u30fc\u30af\u30a2\u30c3\u30d7":43,"\u30de\u30fc\u30b8":[17,34,40],"\u30df\u30b9":216,"\u30df\u30ea":[38,86,153,158,197,246,268,278],"\u30df\u30ea\u79d2":246,"\u30e1\u30a4\u30f3":115,"\u30e1\u30b8\u30e3\u30fc\u30d0\u30fc\u30b8\u30e7\u30f3\u30a2\u30c3\u30d7":34,"\u30e1\u30bd\u30c3\u30c9":43,"\u30e1\u30bf":151,"\u30e1\u30bf\u30c7\u30fc\u30bf":[34,44,92,93,104,122,132,133,211,212,213,238],"\u30e1\u30bf\u30d1\u30c3\u30b1\u30fc\u30b8":40,"\u30e1\u30c3\u30bb\u30fc\u30b8":[6,7,34,42,43,44,82,265,274],"\u30e1\u30c3\u30bb\u30fc\u30b8\u30dc\u30c7\u30a3":41,"\u30e1\u30cb\u30e5\u30fc":240,"\u30e1\u30e2":[211,212,213],"\u30e1\u30e2\u30ea":[23,24,25,27,31,32,34,36,40,41,42,43,44,50,54,65,265,266],"\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":14,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0":36,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u30e2\u30fc\u30c9":44,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":[14,34,35,36,38,40,41,42,43,44],"\u30e1\u30e2\u30ea\u30fc":[34,43,44,92,99,104,135,140,245,265],"\u30e1\u30e2\u30ea\u30fc\u30a2\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3":43,"\u30e1\u30e2\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":[153,155],"\u30e1\u30e2\u30ea\u30fc\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0":[153,155],"\u30e1\u30e2\u30ea\u30fc\u30d6\u30ed\u30c3\u30af":137,"\u30e1\u30e2\u30ea\u30fc\u30de\u30c3\u30d7":[34,245],"\u30e1\u30e2\u30ea\u30fc\u30ea\u30fc\u30af":[43,44,137],"\u30e1\u30ea\u30c3\u30c8":[135,153,155],"\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9":242,"\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u30b3\u30b9\u30c8":238,"\u30e1\u30f3\u30d0":68,"\u30e1\u30f3\u30d0\u30fc":12,"\u30e1\u30fc\u30c8\u30eb":[165,166],"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[3,12,22,43],"\u30e1\u30fc\u30eb":[12,17,19],"\u30e2\u30b8\u30e5\u30fc\u30eb":[0,22,36,43,82,226,255],"\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0":41,"\u30e2\u30cb\u30bf\u30fc":[24,25,27,31],"\u30e2\u30fc\u30c9":[11,34,42,43,44,123,136,146,153,156,171,177,191,261,271],"\u30e4\u30de\u30c0":[202,238],"\u30e6\u30cb\u30b0\u30e9\u30e0":[239,244],"\u30e6\u30cb\u30fc\u30af":[34,158],"\u30e6\u30fc\u30b6":[11,12,40,135,154,216,217,218,219,246,271],"\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf":72,"\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0":11,"\u30e6\u30fc\u30b6\u30fc":[3,4,6,7,8,22,29,34,42,43,44,70,83,85,92,131,135,151,155,161,182,196,197,206,245,255,270,277],"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8":10,"\u30e6\u30fc\u30b9\u30b1\u30fc\u30b9":[80,91,228],"\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":36,"\u30e9\u30a4\u30bb\u30f3\u30b9":40,"\u30e9\u30a4\u30bb\u30f3\u30b9\u30d5\u30a1\u30a4\u30eb":34,"\u30e9\u30a4\u30d6\u30e9\u30ea":[20,22,23,34,40,41,43,48,54,195,196,253,271],"\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":[42,43,44,73,145,153],"\u30e9\u30c6\u30f3":34,"\u30e9\u30d9\u30eb":[34,41,42,43,44,115,135],"\u30e9\u30f3\u30ad\u30f3\u30b0":[42,271],"\u30e9\u30f3\u30c0\u30e0":278,"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0":0,"\u30ea\u30af\u30a8\u30b9\u30c8":[34,41,42,43,44,47,81,89,90,94,100,101,103,110,111,127,131,135,136,137,141,152,155,156,158,197,199,219,255,261],"\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[22,44,46,81,153],"\u30ea\u30af\u30a8\u30b9\u30c8\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":149,"\u30ea\u30af\u30a8\u30b9\u30c8gqtp":261,"\u30ea\u30af\u30a8\u30b9\u30c8id":[22,43,44,46,81,131,136],"\u30ea\u30af\u30a8\u30b9\u30c8uri":155,"\u30ea\u30af\u30e9\u30c3\u30b7\u30e5":40,"\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3":43,"\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3\u30d0\u30b0":42,"\u30ea\u30b9\u30af":151,"\u30ea\u30b9\u30c8":[12,13,17,34,40,43,44,57,63,104,105,113,116,121,135,140,141,153,158,196,197,200,205,209,210,270,271,273],"\u30ea\u30b9\u30c8\u30a2":44,"\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7":12,"\u30ea\u30bb\u30c3\u30c8":43,"\u30ea\u30bd\u30fc\u30b9":[34,42,50,73,86,198],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":[22,40,42,44,46,81,83,131,199,261],"\u30ea\u30c6\u30e9\u30eb":[34,35,38,40,43,168,169,179,196,210,241],"\u30ea\u30c8\u30e9\u30a4":49,"\u30ea\u30cd\u30fc\u30e0":[38,43,47,91],"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7":255,"\u30ea\u30d3\u30eb\u30c9":[34,43],"\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":12,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[34,42],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":[22,42,198],"\u30ea\u30dd\u30b8\u30c8\u30ea":[3,4,12,22,25,27,31,38,40,41],"\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf":12,"\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc":[3,4,22,31,43],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":[22,261,267],"\u30ea\u30e9\u30a4\u30bf\u30fc":43,"\u30ea\u30ea\u30fc\u30b9":[3,4,6,7,8,10,22,27,82,177,198],"\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea":[12,44],"\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":34,"\u30ea\u30ea\u30fc\u30b9\u30d0\u30fc\u30b8\u30e7\u30f3":12,"\u30ea\u30ec\u30fc\u30b7\u30e7\u30ca\u30eb":153,"\u30ea\u30f3\u30af":[12,13,34,40,41,42,43,135,196,197,268],"\u30ea\u30f3\u30b4":236,"\u30eb\u30fc\u30c8":38,"\u30eb\u30fc\u30d7":[36,40,42,43,44],"\u30eb\u30fc\u30de\u30cb\u30a2":34,"\u30eb\u30fc\u30eb":[22,34,36,42,46,112,114,115,135,146,255],"\u30ec\u30a4\u30e4":11,"\u30ec\u30b3\u30fc\u30c9":[0,11,22,33,34,36,38,40,41,42,43,44,47,51,57,61,62,65,67,68,69,78,80,91,100,102,103,105,112,114,115,117,121,138,140,141,148,153,161,168,169,171,172,176,177,179,182,195,196,197,198,205,210,211,212,213,214,219,220,242,246,264,267,268,269,270,273,274,276,277,278],"\u30ec\u30b3\u30fc\u30c9id":[22,40,44,46,61,65,68,268],"\u30ec\u30b3\u30fc\u30c9r":11,"\u30ec\u30b9\u30c8\u30e9\u30f3":0,"\u30ec\u30b9\u30dd\u30f3\u30b9":[34,38,40,41,42,44,50,86,87,91,105,112,114,115,135,137,155,158,255,261],"\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf":255,"\u30ec\u30b9\u30dd\u30f3\u30b9\u30d8\u30c3\u30c0\u30fc":[43,86,255],"\u30ec\u30b9\u30dd\u30f3\u30b9\u30dc\u30c7\u30a3":44,"\u30ec\u30d9\u30eb":[40,42,43,110,153,199],"\u30ec\u30dd\u30fc\u30c8":29,"\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0":0,"\u30ec\u30fc\u30bf":40,"\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0":161,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3":35,"\u30ed\u30ac\u30fc":43,"\u30ed\u30ae\u30f3\u30b0":[43,54],"\u30ed\u30b0":[12,22,34,35,37,38,40,42,43,44,46,92,104,110,112,135,151,153,154,155,158,217,220,265],"\u30ed\u30b0\u30a4\u30f3":[12,245],"\u30ed\u30b0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":42,"\u30ed\u30b0\u30d1\u30b9":36,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":[29,43,44,82,111,135,153,154,158,199,266],"\u30ed\u30b0\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":44,"\u30ed\u30b0\u30d5\u30e9\u30b0":[34,151,153],"\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8":[34,40,41,43,151,153,210],"\u30ed\u30b0\u30ec\u30d9\u30eb":[34,43,44,92,109,151,153,155,199],"\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":[43,153],"\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30c8":43,"\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3":[34,40],"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8":12,"\u30ed\u30b4":40,"\u30ed\u30b7\u30a2":34,"\u30ed\u30b8\u30c3\u30af":117,"\u30ed\u30c3\u30af":[34,35,38,40,41,43,49,65,90,104,105,106,107,108,151,153],"\u30ed\u30c3\u30af\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[41,44,49],"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":[22,38],"\u30ed\u30f3\u30c9\u30f3":165,"\u30ed\u30fc\u30ab\u30eb":[12,197],"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":153,"\u30ed\u30fc\u30c6\u30fc\u30c8":153,"\u30ed\u30fc\u30c9":[0,22,34,36,38,41,42,43,44,99,105,120,151,153,155,197,255,267],"\u30ed\u30fc\u30c9\u30a8\u30e9\u30fc":40,"\u30ed\u30fc\u30de":[34,176,202,216,223],"\u30ed\u30fc\u30de\u30b8":[176,206],"\u30ef\u30a4\u30c9":38,"\u30ef\u30fc\u30ab":[34,155],"\u30ef\u30fc\u30ab\u30fc":[34,44,155],"\u30ef\u30fc\u30ab\u30fc\u30b9\u30ec\u30c3\u30c9":41,"\u30ef\u30fc\u30ab\u30fc\u30d7\u30ed\u30bb\u30b9":44,"\u30ef\u30fc\u30b9\u30c8\u30b1\u30fc\u30b9":34,"\u30f4\u30a1\u30a4\u30aa\u30ea\u30f3":34,"\u30f4\u30a1\u30f4\u30a3\u30f4\u30a5\u30f4\u30a7\u30f4\u30a9":[34,202,223],"\u30f4\u30a1\u30f4\u30a3\u30f4\u30f4\u30a7\u30f4\u30a9":[34,202,223],"\u30f4\u30a1\u30f4\u30a3\u30f4\u30f4\u30a7\u30f4\u30a9\u30f4":[202,223],"\u30f6\u30b1":[202,223],"\u30f6\u6708":151,"\u30fb\u30b5\u30fc\u30d0":271,"\u30fb\u30c7\u30b9":238,"\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":274,"\u30fb\u30d5\u30a1\u30a4\u30eb":18,"\u30fb\u5168":100,"\u30fb\u5186":0,"\u30fb\u6d6e\u52d5\u5c0f":135,"\u30fb\u81ea\u5df1\u7d39":274,"\u30fbgroonga":43,"\u30fbor":278,"\u30fbroot":43,"\u30fd\u30fe":[202,223],"\u3315\uff41z":239,"\u33a1\"":[203,223],"\u4e00\u3064":[0,44,50,51,54,68,82,89,90,94,100,101,103,110,111,127,141,163,165,166,167,170,173,174,178,182,193,246,262,268],"\u4e00\u4ef6\u9032\u3081":69,"\u4e00\u500b":11,"\u4e00\u5207":43,"\u4e00\u5b9a":44,"\u4e00\u5bfe":268,"\u4e00\u5de5":276,"\u4e00\u5ea6":[38,40,42,49,124,129,135,155,198,200,209,245,269,273],"\u4e00\u5f0f":[12,65],"\u4e00\u610f":[78,92,131,153],"\u4e00\u62ec\u3057":68,"\u4e00\u6587\u5b57":[42,43],"\u4e00\u65b9":[0,70,73,92,135,169,177,179,182,196,197,226,264,268,271,273],"\u4e00\u6642":[6,7,22,34,43,44,46,65,165],"\u4e00\u6642\u30c6\u30fc\u30d6\u30eb":43,"\u4e00\u6642\u7684":[34,43,65,142,266],"\u4e00\u6642\u7d50\u679c":40,"\u4e00\u6b69":271,"\u4e00\u6c17":12,"\u4e00\u756a":[29,80,121,135,255],"\u4e00\u756a\u5de6":197,"\u4e00\u756a\u901f\u3044":47,"\u4e00\u77ed":0,"\u4e00\u7dd2":[35,40,42,51,54,80,104,112,115,135,140,158,165,241,264,271],"\u4e00\u7fa4":11,"\u4e00\u81f4":[11,12,22,34,35,37,39,40,42,43,44,47,54,68,69,91,92,135,138,140,176,177,191,220,228,264,267,271,274,277],"\u4e00\u81f4\u3057":[34,42,262],"\u4e00\u81f4\u7528":276,"\u4e00\u81f4rk":[22,43,46,176,204],"\u4e00\u822c":[0,50,65,135,195,196,238,271,273],"\u4e00\u822c\u7684":[0,226,228,241],"\u4e00\u884c":[36,153,154],"\u4e00\u8996":[34,202,223],"\u4e00\u89a7":[12,17,18,22,46,89,93,118,119,122,140,141,147,153,155,196,197,264,265,270],"\u4e00\u8a9e":264,"\u4e00\u8cab\u6027":[10,43,44],"\u4e00\u9023":199,"\u4e00\u90e8":[34,40,43,94,214,218,228,271],"\u4e00\u9577":0,"\u4e09\u3064":[165,262],"\u4e09\u756a\u76ee":197,"\u4e09\u8c37":42,"\u4e09\u8c37\u3055\u3093":42,"\u4e0a\u304c\u3063":226,"\u4e0a\u3052\u308b":264,"\u4e0a\u4f4d":[68,264],"\u4e0a\u554f":259,"\u4e0a\u66f8\u304d":[12,44,86,278],"\u4e0a\u8a18":[17,21,29,33,40,43,92,104,115,135,140,151,154,161,170,177,182,202,209,217,219,226,236,238,239,240,242,261,264,265,269,271,273,278],"\u4e0a\u8a18url":12,"\u4e0a\u8ff0":[171,209],"\u4e0a\u91ce":36,"\u4e0a\u9650":[9,22,43,51,61,68,69,268],"\u4e0b\u304c\u3063":226,"\u4e0b\u304c\u308a":[105,264],"\u4e0b\u3052":[34,43],"\u4e0b\u3055\u3044":[1,12,23,24,25,27,31,32,34,40,41,68,93,146,238,239],"\u4e0b\u66f8\u304d":205,"\u4e0b\u8a18":[11,69,82,89],"\u4e0b\u90e8":12,"\u4e0b\u9650":[61,69],"\u4e0d\u5177\u5408":[3,34,40,41,42,43,44],"\u4e0d\u53ef":121,"\u4e0d\u5909":78,"\u4e0d\u5b89":12,"\u4e0d\u5b89\u5b9a\u7248":12,"\u4e0d\u5b8c\u5168":[38,44],"\u4e0d\u5fc5\u8981":[34,43,44,86],"\u4e0d\u610f":104,"\u4e0d\u6574\u5408":35,"\u4e0d\u6b63":[14,35,36,38,41,42,43,44,63,92,104,140],"\u4e0d\u6b63\u78ba":40,"\u4e0d\u7b49\u4fa1":177,"\u4e0d\u80fd":154,"\u4e0d\u8981":[0,40,41,42,43,104,226,236,238,258],"\u4e0d\u8db3":[23,24,25,27,31,32,34,42,43,265],"\u4e0d\u9069\u5207":[40,42],"\u4e0e\u3048":[11,40,41,44,56,63,69,153,261,264,271],"\u4e0e\u3048\u308b":[82,152,153,278],"\u4e14\u3064":34,"\u4e16\u4ee3":82,"\u4e16\u754c":[165,166,167,246,268,278],"\u4e21\u65b9":[0,80,112,114,115,121,135,196,197,198,210,216,220,229,230,239,240,273,274,276],"\u4e21\u8005":278,"\u4e26\u3073":[197,262],"\u4e26\u3073\u9806":278,"\u4e26\u3079":[22,114,267],"\u4e26\u3093":[112,114,115],"\u4e26\u5217":[6,7,44,154,199],"\u4e2d\u4e95":41,"\u4e2d\u56fd":165,"\u4e2d\u592e\u5024":42,"\u4e2d\u5fc3":166,"\u4e2d\u65ad":[34,38,40,42,59],"\u4e2d\u70b9":[34,202,223],"\u4e2d\u7a0b\u5ea6":[23,24,25,27,31,32],"\u4e2d\u8eab":[42,154,261,271],"\u4e2d\u9593":[11,262],"\u4e38\u62ec":271,"\u4e3b\u30ad\u30fc":[22,36,40,78,105,141,267,268,269,270,271,277],"\u4e3b\u5c0e":158,"\u4e3b\u8981":23,"\u4e43\u6bc5":36,"\u4e57\u7b97":34,"\u4e71\u6570":[178,278],"\u4e88\u3081":[153,246],"\u4e88\u5b9a":[16,34,38,43,80,82,132,133,165,179,210,214,255],"\u4e88\u60f3":34,"\u4e8b\u524d":[12,113,116,117,132,133,135,218,264],"\u4e8b\u67c4":10,"\u4e8b\u9805":[22,43,44,46,214],"\u4e8c\u3064":[11,54,82,112,114,115,118,146,154,165,172,176,177,182,262],"\u4e8c\u756a\u76ee":197,"\u4e8c\u91cd":[41,42,43,196],"\u4e8c\u9805":[43,44,197],"\u4e92\u63db":[12,24,25,27,31,34,42,43,44,82,112,114,115,118,156,197,212,213,255],"\u4e92\u63db\u6027":12,"\u4e94\u5165":38,"\u4eac\u90fd":[238,262,264],"\u4eba\u3068":10,"\u4eba\u540d":[202,238],"\u4eba\u5411\u3051":43,"\u4eba\u6c17":[112,114,115],"\u4eba\u7269":92,"\u4eca\u56de":[34,40,44,179,197,271],"\u4eca\u5f8c":[38,44,111,132,146,210],"\u4ecb\u3057":[0,275],"\u4ecb\u6587":274,"\u4ed5\u65b9":3,"\u4ed5\u69d8":[22,36,39,40,42,64,82,135,138,155,156,241,268],"\u4ed5\u7d44":[17,43,255],"\u4ed5\u7d44\u307f":[40,43,155],"\u4ed8\u3044":[34,92,200,273],"\u4ed8\u304d":[3,22,30,34,36,43,44,80,87,92,112,114,115,117,121,134,135,138,196,201,205,210,216,219,246,267,268,271],"\u4ed8\u3051":[40,85,86,102,131,151,158,161,168,169,240,255,261,268,271,273],"\u4ed8\u3051\u308b":[9,34,158,197,200,221,271,277],"\u4ed8\u3051\u65b9":85,"\u4ed8\u4e0e":[51,68,78,135,154,270,276],"\u4ed8\u5c5e":[155,156],"\u4ed8\u8d85\u7fa4":34,"\u4ed8\u968f":94,"\u4ee3\u308a":[40,165,196],"\u4ee3\u308f\u308a":[29,32,34,43,92,115,121,135,137,140,153,155,168,169,179,196,200,203,210,226,261],"\u4ee3\u5165":[11,36,41,196,278],"\u4ee3\u540d":34,"\u4ee3\u540d\u8a5e":238,"\u4ee3\u8868":[0,135],"\u4ee5\u4e0a":[11,12,14,17,32,33,34,40,41,42,43,44,51,54,69,70,76,80,92,93,112,114,115,117,121,122,130,135,138,140,142,153,154,155,158,168,171,172,176,177,179,182,209,210,212,214,220,221,226,228,236,245,246,261,271],"\u4ee5\u4e0b":[11,12,14,17,18,21,25,29,32,33,34,38,40,42,43,44,47,50,51,53,54,55,57,63,65,70,73,76,80,83,84,85,86,87,89,91,92,93,95,96,97,98,99,102,103,104,105,106,107,108,110,112,113,114,115,117,118,119,120,121,122,124,125,129,130,131,134,135,136,137,138,139,140,141,142,143,144,146,147,148,151,153,154,155,156,158,161,162,165,166,168,169,170,171,172,173,176,177,179,181,182,184,191,193,194,197,199,200,201,202,203,205,207,209,210,211,212,213,216,217,218,219,220,221,223,224,225,226,228,236,237,238,239,240,242,243,244,245,246,255,258,261,262,264,265,266,268,270,271,275,278],"\u4ee5\u5185":[151,197,216,217,274,278],"\u4ee5\u524d":[34,38,40,41,42,43,44,104,112,114,115,200,201,264,268,274],"\u4ee5\u5916":[0,11,12,34,36,38,41,42,47,50,51,54,55,57,61,65,68,71,73,80,105,112,115,130,135,140,142,151,153,154,171,191,196,205,210,220,224,225,239,246],"\u4ee5\u964d":[12,14,17,34,36,38,41,42,43,44,95,104,105,112,114,115,131,143,151,153,168,169,170,200,201,205,228,275],"\u4eee\u540d":206,"\u4eee\u5b9a":131,"\u4eee\u60f3":[12,41,43,269,278],"\u4ef6\u540c":43,"\u4ef6\u542b":274,"\u4ef6\u6570":[34,42,43,44,65,68,78,112,262,264,271],"\u4efb\u547d":12,"\u4efb\u610f":[0,12,153,154,265,271],"\u4f1a\u793e":[34,42,43,44],"\u4f1d\u642c":34,"\u4f1d\u7d71":0,"\u4f34\u3063":34,"\u4f3c\u305f":201,"\u4f4d\u7f6e":[18,22,34,38,40,41,42,43,44,46,51,65,69,92,93,134,204,211,212,213,239,267,270,271],"\u4f4e\u3044":[92,264],"\u4f4e\u304f":[226,264],"\u4f4e\u4e0b":[34,41],"\u4f4e\u6a5f":11,"\u4f4e\u6e1b":[36,259],"\u4f4f\u3093":274,"\u4f4f\u6240":40,"\u4f50\u85e4":[43,44],"\u4f53\u8fd1":166,"\u4f55\u3089\u304b":246,"\u4f55\u500b":135,"\u4f55\u5ea6":[41,131],"\u4f55\u756a":115,"\u4f59\u308a":197,"\u4f59\u88d5":12,"\u4f59\u8a08":10,"\u4f5c\u3063":[34,38,68,69,115,120,121,123,134,135,155,158,200,216,264,269],"\u4f5c\u3089":[43,135],"\u4f5c\u3089\u308c":[42,154],"\u4f5c\u3089\u308c\u308b":151,"\u4f5c\u308a":[42,92,130,135,137,140,158,192,199,216,217,245,273],"\u4f5c\u308a\u76f4\u3057":[130,151],"\u4f5c\u308a\u76f4\u3059":[43,130],"\u4f5c\u308b":[7,8,9,17,42,43,80,91,92,112,114,115,120,123,134,135,140,153,158,176,195,197,210,214,217,245,270,274,277],"\u4f5c\u308c":[44,106],"\u4f5c\u308c\u308b":[43,92,135],"\u4f5c\u6210":[22,26,34,35,36,38,39,40,41,42,43,44,47,50,54,55,61,66,68,69,71,78,111,112,114,115,117,118,135,138,142,153,154,155,158,165,176,196,197,198,216,219,220,242,245,246,258,264,267,268,270,273,276,277],"\u4f5c\u6210\u6e08":153,"\u4f5c\u696d":[10,17,34],"\u4f5c\u7528":40,"\u4f75\u305b":271,"\u4f7f\u3044":[0,6,7,8,11,12,15,17,18,21,22,24,25,27,28,29,31,34,38,42,43,44,47,49,55,57,70,80,83,86,92,102,104,105,112,113,114,115,118,121,134,135,136,138,140,144,146,151,153,155,158,169,170,171,176,177,179,191,195,196,197,198,201,209,210,211,215,216,217,219,221,226,228,233,234,235,237,239,241,243,244,245,246,255,268,269,273,275],"\u4f7f\u3044\u5206\u3051":[262,264],"\u4f7f\u3044\u65b9":[0,22,46,70,196,197,215,271],"\u4f7f\u3046":[5,7,11,12,16,21,23,24,25,27,29,31,33,34,35,36,38,40,41,42,43,44,47,48,50,51,57,70,73,80,83,85,88,91,92,96,97,98,99,102,103,104,105,112,113,114,115,116,117,118,121,123,124,129,130,132,133,135,136,138,140,142,146,149,151,153,154,161,162,168,169,170,171,172,173,176,177,179,182,184,191,193,195,196,197,199,200,201,202,203,205,206,207,209,210,211,212,213,214,216,217,218,219,220,221,224,225,226,228,229,230,231,232,236,238,246,255,259,261,264,266,268,271,273,275,277],"\u4f7f\u3048":[6,8,21,33,34,38,41,42,43,47,91,92,99,104,112,114,115,123,130,131,135,140,146,153,155,158,160,161,171,191,195,196,197,206,210,211,212,213,214,223,238,239,241,247,253,254,269,271],"\u4f7f\u3048\u308b":[21,29,34,38,40,41,42,43,44,134,135,153,196,210,214,242],"\u4f7f\u3063":[3,5,10,11,12,17,18,19,20,21,23,24,25,27,28,29,31,32,33,34,39,40,41,42,43,44,47,54,61,63,70,73,80,83,87,88,89,91,92,99,104,105,107,112,113,114,115,117,118,120,121,123,130,133,134,135,137,140,142,145,146,151,153,155,158,169,172,176,177,179,195,196,197,200,201,202,203,209,210,211,212,213,214,217,218,223,224,225,226,228,236,238,239,241,243,244,246,255,261,262,264,268,269,270,271,273,274,275,276,277,278],"\u4f7f\u308f":[21,34,38,41,42,43,44,47,50,54,87,92,104,112,113,114,115,117,120,121,135,140,142,146,153,155,161,177,195,196,200,206,209,210,216,220,226,228,239,240,242,261,269,270,273,277],"\u4f7f\u308f\u305a":[34,177],"\u4f7f\u7528":[11,12,34,35,36,40,41,42,43,44,50,51,54,63,65,66,68,72,82,89,91,92,93,95,102,105,112,114,115,118,119,121,131,135,137,143,144,146,147,148,151,153,154,155,156,158,165,168,171,177,182,184,196,197,202,206,211,223,226,236,239,242,246,255,261,262,264,268,271,273,274,275],"\u4f7f\u7528\u4f8b":165,"\u4f8b\u3048":[18,20,21,29,34,40,41,42,43,44,65,80,102,104,112,114,115,117,118,119,135,138,140,146,147,151,153,154,155,182,195,196,197,198,200,201,209,210,211,214,216,217,218,219,224,226,228,236,238,239,242,255,262,264,270,271,272,273,276,277],"\u4f8b\u3068\u3057\u3066":[240,245,268],"\u4f8b\u3068\u3068\u3082":165,"\u4f8b\u4ee5\u5916":[202,238],"\u4f8b\u5916":[27,34,42,43,91,114,115,121,132,133],"\u4f9d\u308a":121,"\u4f9d\u5b58":[12,22,23,39,40,42,44,83,92,117,121,135,158,211,212,213,238],"\u4f9d\u7136":34,"\u4f9d\u983c":12,"\u4fa1\u683c":44,"\u4fbf\u5229":[0,1,6,7,29,34,43,44,51,80,83,92,104,112,113,118,122,130,134,135,136,144,146,153,195,196,206,210,216,268],"\u4fbf\u5229\u30e1\u30bd\u30c3\u30c9":34,"\u4fc2\u52a9\u8a5e":238,"\u4fc2\u6570":[11,135],"\u4fc3\u97f3":34,"\u4fdd\u305f":[114,115],"\u4fdd\u3064":[34,44],"\u4fdd\u5b58":[22,33,40,41,43,44,63,80,91,92,93,112,114,115,121,134,135,153,155,158,165,197,200,205,210,219,220,246,266,267,270,273,274,278],"\u4fdd\u6301":[44,50,54,104,268,272,274],"\u4fdd\u8a3c":[82,89],"\u4fe1\u6d0b":44,"\u4fe1\u983c":151,"\u4fee\u5e73":42,"\u4fee\u6b63":[12,165,217,275],"\u4fee\u6b63\u4e2d":217,"\u500b\u3005":[11,82,114,264],"\u500b\u4eba":[12,29],"\u500b\u5225":[12,135],"\u500b\u5b9a":9,"\u500b\u6240":42,"\u500b\u6570":[40,51],"\u500d\u7cbe":246,"\u5019\u88dc":[138,158,176,216,217,218],"\u5024\u304b":[162,165],"\u5024\u304c":44,"\u5024\u3054":269,"\u5024\u3054\u3068":269,"\u5024\u3057":171,"\u5024\u3059":44,"\u5024\u3060\u3051":197,"\u5024\u3068":[135,196,268],"\u5024\u3068\u3057\u3066":[153,165,184,266,274],"\u5024\u306a\u3057":39,"\u5024\u306a\u3089":41,"\u5024\u3088\u308a":[11,135],"\u5024\u4ee5\u4e0a":153,"\u5024\u5727":92,"\u5024\u578b":268,"\u5024\u57df":[76,122],"\u5024\u6bce":269,"\u5024\u7528":38,"\u5024\u8a18":197,"\u505c\u6b62":[34,41,43,82,95,143,153,155],"\u5065\u4f5c":270,"\u5074\u9762":0,"\u5076\u6570":197,"\u5099\u8003":[41,135,158],"\u50be\u5411":[121,135,273],"\u512a\u308c":[0,228,238],"\u512a\u5148":[0,34,43,99,154,216],"\u5143\u6c17":41,"\u5145\u5206":34,"\u5148\u60c5":274,"\u5148\u8aad":236,"\u5148\u982d":[59,63,65,112,114,115,135,155,210,241,271],"\u5149\u7537":41,"\u5165\u3063":[14,40,41,43,44,83,92,135,171,216,261,265,270,271,273],"\u5165\u308a":[104,135,197,231,232,261,265,269,271],"\u5165\u308b":141,"\u5165\u308c":[135,241,264,270,274],"\u5165\u308c\u308b":[43,92,135,210],"\u5165\u529b":[34,35,38,39,41,44,83,89,90,94,100,101,103,105,110,111,127,135,138,141,152,153,154,197,206,216,217,218,219,223,261,271],"\u5165\u529b\u30df\u30b9":217,"\u5168\u304f":43,"\u5168\u3066":[17,34,68,135,153,155,195,198,219,223,246,273],"\u5168\u4e16\u754c":41,"\u5168\u4ef6":[69,196,197],"\u5168\u4f53":[22,29,34,41,46,48,121,211],"\u5168\u524a":148,"\u5168\u6587":[22,24,25,27,29,31,34,40,42,48,73,80,92,93,112,114,115,135,140,153,177,191,195,196,197,200,205,210,220,226,259,262,263,267,268,270,272,274],"\u5168\u6587\u691c":[22,36,267],"\u5168\u6587\u691c\u7d22":[40,140,153,177],"\u5168\u89d2":[34,38,43,69,201,202,223,271],"\u5168\u90e8":261,"\u5168suffix":68,"\u516c\u5e73":41,"\u516c\u5f0f":[8,27,38,177],"\u516c\u8f14":41,"\u516c\u958b":[34,36,38,41,42,43,44,50],"\u516c\u958b\u9375":12,"\u5171\u306b":[51,65],"\u5171\u6709":[2,10,12,22,29,40,41,50,92,153,155,270,273],"\u5171\u901a":[10,38,114,153,197,220,246,273],"\u5171\u901a\u63a5":[34,220],"\u5177\u4f53":[12,34,135,264,269,273],"\u5177\u4f53\u4f8b":[91,115],"\u5177\u5408":[135,197],"\u5178\u578b":43,"\u5185\u5bb9":[10,12,17,34,40,42,43,55,59,62,63,69,83,93,112,114,115,135,141,151,152,154,179,196,197,199,216,219,245,259,268,271,273,274,275],"\u5185\u5c71":34,"\u5185\u8a33":264,"\u5185\u8fd1\u304f":197,"\u5185\u90e8":[12,39,42,43,44,50,54,60,63,65,68,104,121,122,179,268],"\u5186\u6ed1":12,"\u518d\u3073":[42,151],"\u518d\u4f5c":43,"\u518d\u4f5c\u6210":44,"\u518d\u5229":[34,42,43,78,121,153,155,220],"\u518d\u5e30":[11,47,65,90,107,135,151,155,209],"\u518d\u5ea6":[11,12,34,42,43,49],"\u518d\u691c":195,"\u518d\u69cb":[34,38,151],"\u518d\u73fe":[10,34,41,195,226,228,238,264],"\u518d\u751f":[34,155],"\u518d\u767a":42,"\u518d\u8aad":[111,209],"\u518d\u8d77":[34,43,209,245,259],"\u518d\u8d77\u52d5":[124,129,153,155,245],"\u5197\u9577":34,"\u51e6\u7406":[0,6,7,11,17,34,35,36,40,41,42,43,44,59,78,81,86,87,92,104,107,112,114,115,118,122,135,137,140,144,146,151,154,155,169,179,196,197,199,221,226,255,261,262,278],"\u51fa\u3055":41,"\u51fa\u3057":274,"\u51fa\u3059":[34,135,158,274],"\u51fa\u305b\u308b":[0,34],"\u51fa\u529b":[0,3,14,22,29,34,35,36,38,39,40,41,42,43,44,46,54,57,61,63,80,81,82,84,86,87,88,89,91,92,93,95,96,97,98,99,100,102,103,104,106,107,108,109,110,112,113,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,136,137,138,139,140,141,142,143,145,146,147,148,151,153,154,156,158,170,199,202,223,238,246,261,265,267],"\u51fa\u6765":[18,34,146,270,273],"\u51fa\u6765\u308b":[34,274],"\u51fa\u73fe":[0,43,51,92,93,115,135,138,144,158,197,211,212,213,272],"\u5206\u304b\u3061":0,"\u5206\u3051":[12,22,34,93],"\u5206\u3051\u308b":[12,268],"\u5206\u307e":214,"\u5206\u5272":[0,38,43,44,197,220,236,262,271],"\u5206\u5c90":14,"\u5206\u6563":214,"\u5206\u6790":[0,34],"\u5206\u89e3":[11,214],"\u5206\u914d":[112,115],"\u5206\u985e":[135,268,269],"\u5206z":246,"\u5207\u3089":42,"\u5207\u308a":[12,34,38,41,42,43,44,63,127,135,224],"\u5207\u308a\u4e0a\u3052\u308b":114,"\u5207\u308a\u6368\u3066":268,"\u5207\u308b":[42,121,155],"\u5207\u308c":[34,43],"\u5217\u4e2d":[44,197],"\u5217\u578b":[42,196,268,269],"\u5217\u5f0f":57,"\u5217\u5f15":11,"\u5217\u60c5":146,"\u5217\u6307\u5411":0,"\u5217\u6319":[43,271],"\u5217\u8868":[57,246],"\u5217\u95a2":44,"\u521d\u56de":17,"\u521d\u671f":[0,34,36,38,40,42,55,65],"\u521d\u671f\u5024":152,"\u521d\u671f\u5316":[34,40,43,44,54,66,73,151],"\u5224\u5b9a":[65,278],"\u5224\u65ad":[44,55,114,117,135,197,265],"\u5225\u3005":[135,269],"\u5225\u540d":[43,153,177],"\u5225\u9014":[65,105,246],"\u5229\u70b9":0,"\u5229\u7528":[0,1,10,12,14,17,22,23,24,25,27,29,31,32,38,40,41,42,43,44,50,55,68,83,92,103,135,136,140,146,149,151,153,154,156,168,169,171,177,191,196,197,205,216,217,219,246,253,261,262,264,267,268,271],"\u5229\u7528\u4f8b":0,"\u5230\u9054":33,"\u5236\u5fa1":[34,40,113,135,155,161,177],"\u5236\u7d04":[33,114],"\u5236\u9650":[22,34,36,38,40,41,42,43,44,46,61,114,115,131,135,155,165,182,195,196,211,212,214,245,255,267,273,275],"\u523b\u307f":135,"\u5247\u3063":214,"\u524a\u6e1b":[34,43,44,151],"\u524a\u9664":[0,6,7,12,18,34,35,36,38,39,40,41,42,43,44,59,65,67,68,69,78,91,94,96,105,123,148,149,151,153,155,210,220],"\u524a\u9664\u5f8c":34,"\u524d\u3082\u3063":43,"\u524d\u4ed8":[112,114,115],"\u524d\u4ed8\u304d":65,"\u524d\u5411\u3051":104,"\u524d\u56de":12,"\u524d\u5f8c":[153,271],"\u524d\u63d0":[3,47],"\u524d\u65b9":[11,22,34,35,37,39,40,42,43,44,46,69,91,92,138,140,176,177,191,204,220,228,262,267,271],"\u524d\u8005":[47,158,201,209,278],"\u524d\u8ff0":[135,140,155,171,200,264],"\u5270\u4f59":42,"\u5272\u3063":[211,213],"\u5272\u308a":[54,131,141,146,197,220,268],"\u5272\u308a\u5f53\u3066":[36,50],"\u5272\u308a\u5f53\u3066\u308b":[85,220,268,271],"\u5272\u308b":213,"\u5272\u5408":137,"\u52a0\u3048":[11,12,21,44,104,238,268,276],"\u52a0\u3048\u308b":[38,104],"\u52a0\u308f\u308b":10,"\u52a0\u7b97":[34,44,65,78,80],"\u52a3\u5316":43,"\u52a9\u52d5\u8a5e":238,"\u52a9\u8a5e":238,"\u52b9\u679c":[34,113,274],"\u52b9\u7387":[43,44,92,104,121,155,273],"\u52c9\u5f37":[228,243,244],"\u52d5\u3044":[43,70],"\u52d5\u304b":[34,41,42,43,99,158,210],"\u52d5\u304b\u3057":[158,245],"\u52d5\u304b\u3059":43,"\u52d5\u304d":[34,43,135,145,214,255],"\u52d5\u304f":[29,38,40,245,254],"\u52d5\u4f5c":[3,17,34,36,38,41,42,43,44,82,114,115,154,155,199,202,215,239,254,268],"\u52d5\u5c0f":246,"\u52d5\u6642":34,"\u52d5\u74b0":152,"\u52d5\u753b":270,"\u52d5\u7684":[0,22,34,36,39,43,44,46,92,155,239,262,271],"\u52e7\u3081":42,"\u5316\u4f5c":12,"\u5316\u51e6":[38,78],"\u5316\u524d":78,"\u5316\u5bfe":[17,202,223],"\u5316\u5f8c":34,"\u5316\u65b9":[118,200],"\u5316\u6642":38,"\u5316\u6e08":[55,65],"\u5316\u6f0f\u308c":40,"\u5316\u95a2":36,"\u5317\u4eac":165,"\u5317\u534a\u7403":40,"\u5317\u5e02":44,"\u533a\u5207":122,"\u533a\u5207\u3063":[118,135,144,146,158,261],"\u533a\u5207\u3089":38,"\u533a\u5207\u308a":[0,34,40,43,92,103,105,135,138,140,146,152,153,158,177,196,197,207,219,226,228,236,237,243,244,246,268,269,271],"\u533a\u5207\u308b":[36,135,153,209],"\u533a\u5225":[44,135,210,246,276],"\u5341\u5206":[34,44,62,92,114,264,266],"\u5341\u5206\u6c17":135,"\u534a\u5f84":166,"\u534a\u6fc1":[34,202,223],"\u534a\u7121":[38,140],"\u534a\u89d2":[34,69,201,202,223,271],"\u5354\u529b":[3,4,22,44],"\u5357\u534a":40,"\u5358\u306b":[41,133],"\u5358\u4f4d":[0,36,38,43,71,81,83,86,121,137,149,151,153,158,165,166,179,197,199,243,244,246,261,262,271,274],"\u5358\u4f53":[0,154],"\u5358\u72ec":[51,154],"\u5358\u7d14":[11,85,166,276],"\u5358\u8a9e":[40,112,114,115,135,195,196,209,211,212,213,216,218,228,271,272,273,274],"\u535a\u4e4b":[43,44],"\u5360\u6709":65,"\u5371\u6a5f":[153,199],"\u5371\u967a":[12,34,95,106,107,108,117,123,142,143,255],"\u5373\u5024":44,"\u5373\u5ea7":[43,44],"\u5373\u6642":22,"\u539f\u56e0":[10,22,43,44,151,154,263,265,266],"\u539f\u99c5":278,"\u53b3\u5bc6":[42,43,44,216],"\u53b3\u683c":34,"\u53c2\u52a0":[2,3],"\u53c2\u7167":[1,6,7,8,12,17,21,22,24,25,27,28,29,30,31,34,35,36,38,40,41,42,43,44,47,49,54,59,64,80,85,86,87,88,91,93,95,96,97,98,99,102,104,105,106,107,108,109,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,135,136,137,138,139,140,143,144,145,146,147,148,151,154,155,156,158,165,171,177,182,196,197,206,209,210,228,238,245,246,253,259,264,266,267,269,273,274,278],"\u53c2\u7167\u5024":44,"\u53c2\u7167\u5143":268,"\u53c2\u7167\u5148":[34,41],"\u53c2\u7167\u578b":135,"\u53c2\u8003":[12,22,46,271],"\u53ca\u3073":154,"\u53cb\u4eba":270,"\u53cc\u65b9":10,"\u53cd\u6620":[0,11,12,158,245],"\u53cd\u8ee2":197,"\u53ce\u307e\u308a\u304d\u3089":43,"\u53ce\u96c6":[0,34,83],"\u53d6\u308a":44,"\u53d6\u308a\u51fa\u3055":268,"\u53d6\u308a\u51fa\u3057":[61,69,271],"\u53d6\u308a\u51fa\u3059":[11,36,61,69,268],"\u53d6\u308a\u51fa\u305b\u308b":44,"\u53d6\u308a\u5f97\u308b":246,"\u53d6\u308a\u8fbc\u307e":12,"\u53d6\u308a\u8fbc\u307f":38,"\u53d6\u308a\u9664\u3044":68,"\u53d6\u308a\u9664\u304d":[11,34,170],"\u53d6\u308a\u9664\u304f":238,"\u53d6\u308b":[158,197,261],"\u53d6\u5f97":[10,22,23,34,42,43,44,49,50,54,61,62,65,66,68,69,88,92,93,97,112,116,122,135,149,158,197,216,217,219,238,267,269,270,273],"\u53d7\u3051":[9,34,40,41,42,43,44,85,86,131,151,155,158,161,165,197,240,255,258,261,271,277],"\u53d7\u3051\u308b":[42,259],"\u53d7\u3051\u4ed8\u3051":[34,36,40,136,197],"\u53d7\u3051\u53d6\u3063":0,"\u53d7\u3051\u53d6\u308a":[11,155,158,161,162,271],"\u53d7\u4ed8":[41,277],"\u53d7\u4fe1":158,"\u53e4\u3044":[12,40,43,44,95,143,200,274],"\u53e4\u304f":[42,44],"\u53e4\u3059\u304e\u308b":18,"\u53e5\u70b9":238,"\u53ef\u5426":271,"\u53ef\u5909":[38,93,101,121,122,261],"\u53ef\u5909\u9577":[104,121],"\u53ef\u80fd":[10,11,12,14,22,29,34,38,40,41,43,44,51,53,55,65,66,68,72,78,82,89,93,108,124,125,129,135,138,151,153,154,156,168,196,197,220,240,241,253,255,261,262,264,270,271,274,276,278],"\u53ef\u8aad":42,"\u53f3\u4e0a":35,"\u53f3\u4e0b":[35,167],"\u53f3\u8fba":[36,38,43,44],"\u5404\u5024":122,"\u5404\u51fa":[114,135],"\u5404\u52d5":135,"\u5404\u52d9":43,"\u5404\u547d":154,"\u5404\u56fd":12,"\u5404\u7a2e":12,"\u5404\u7d22":271,"\u5404\u8981":[80,92,191],"\u5404\u8a00":224,"\u5404\u8a9e":89,"\u5404os":238,"\u5408\u308f\u305b":[12,40,51,197,236],"\u5408\u7406":228,"\u5408\u81f4":[271,278],"\u5408\u8a08":[33,42,89,112,114,115,135,154,211,220,264,266],"\u5409\u5ca1":43,"\u5409\u7530":41,"\u540c\u3058":[0,22,34,35,36,38,42,43,44,54,57,69,80,82,83,85,91,92,111,112,114,115,117,124,129,130,131,135,138,141,146,153,154,155,156,158,177,197,200,201,209,210,211,212,213,217,223,239,246,255,263,268,269,271,273],"\u540c\u3058\u4f8b":273,"\u540c\u3058\u5024":[114,115,155,271],"\u540c\u3058\u578b":80,"\u540c\u3058\u6570":[153,155,255],"\u540c\u3058\u6642":34,"\u540c\u3058\u6708":43,"\u540c\u3058\u91cd\u307f":177,"\u540c\u3058\u97f3\u3068":[202,223],"\u540c\u6642":[0,9,34,43,44,68,69,82,105,135,154,158,236,278],"\u540c\u671f":[12,154],"\u540c\u68b1":[17,36,40,42],"\u540c\u69d8":[11,12,34,69,154,205,261,268,278],"\u540c\u7a0b":92,"\u540c\u7b49":[43,104,154,262],"\u540c\u7fa9":[44,209],"\u540d\u524d":[12,17,22,34,36,37,38,40,43,44,46,47,51,54,55,63,65,66,68,71,82,83,89,91,92,93,94,95,100,102,104,105,112,114,115,117,118,119,120,121,122,123,134,135,140,141,142,143,146,147,153,155,158,197,202,214,216,220,238,255,258,261,268,271,274],"\u540d\u79f0":43,"\u540d\u7b49":65,"\u540d\u8a5e":[34,202,238],"\u540d\u9806":115,"\u540dn":141,"\u5411\u3044":[42,83,92,135,220],"\u5411\u3051":[3,6,7,8,11,22,25,29,41,42,43,44,65,196],"\u5411\u4e0a":[34,38,43,44,155,195,197,255,259],"\u5426\u304b":[114,161],"\u5426\u5b9a":[11,43,135,236],"\u542b\u307e":[6,11,12,34,40,42,43,44,83,91,92,93,99,104,112,114,115,117,124,125,129,132,133,135,136,139,140,141,142,143,144,158,161,171,172,177,179,191,196,197,209,211,212,213,219,228,236,239,240,255,262,271,273,274],"\u542b\u307e\u308c":[0,12,41,83,112,115,124,125,129,135,140,161,179,262,273],"\u542b\u307e\u308c\u308b":[0,11,12,44,114,135,153,168,169,264,268,271],"\u542b\u307f":[43,69,83,105,112,115,121],"\u542b\u3080":[9,11,34,40,41,42,43,44,63,80,91,112,114,115,134,135,138,143,152,196,197,199,212,213,239,240,242,262,271,273,274],"\u542b\u3080\u5024":[153,271],"\u542b\u3080\u5168\u3066":95,"\u542b\u3081":[12,44,135,161,196,209],"\u542b\u3081\u308b":[12,34,38,39,42,44,103,112,114,115,117,118,135,146,161,196,209,271],"\u542b\u3093":[11,34,42,44,83,114,117,121,134,135,179,196,197,211,212,217,218,226,229,230,231,232,268,273,274],"\u5438\u53ce":271,"\u5468\u4e0a":166,"\u5468\u8fba":[40,179,265],"\u547c\u3070":[34,41,43,44,54,66,68,70,135,197,211,246,271],"\u547c\u3073":[11,73,80,121,135,153,154,179,268],"\u547c\u3073\u5143":54,"\u547c\u3073\u51fa\u3055":[59,135],"\u547c\u3073\u51fa\u3057":[0,11,34,36,40,42,43,54,103,114,135,195],"\u547c\u3073\u51fa\u3059":[113,145,163,166,167,174,178,195],"\u547c\u3076":[14,40,43,70,73,95,143,195],"\u547c\u3076\u524d":73,"\u547c\u3093":[42,73,135,262,269],"\u547c\u51fa":[51,62,65,68],"\u547d\u4ee4":153,"\u547d\u540d":[40,112,114,115],"\u548c\u5e83":41,"\u54c1\u8a5e":[34,202,238],"\u552f\u4e00":145,"\u554f\u3044\u5408\u308f":11,"\u554f\u984c":[12,17,34,35,36,37,38,40,41,42,43,44,50,54,89,117,123,154,155,196,197,228,266,271],"\u559c\u3073":[16,17],"\u56db\u3064":262,"\u56db\u5247":42,"\u56db\u6368":38,"\u56db\u89d2\u5f62":205,"\u56de\u52d5":154,"\u56de\u540c":43,"\u56de\u547c":36,"\u56de\u6307\u5b9a":[171,196],"\u56de\u6570":[34,40,245],"\u56de\u7279":154,"\u56de\u7e70\u308a":154,"\u56de\u9001\u308b":131,"\u56de\u907f":[12,22,42,43,44,142,263,264],"\u56f0\u3063":10,"\u56f0\u96e3":[0,40],"\u56f2\u307e":[169,179],"\u56f2\u307f":[153,168,169,179],"\u56f2\u3080":[41,179,271],"\u56f2\u3093":197,"\u56fa\u5b9a":[34,42,65,69,93,122,140,261,271],"\u56fa\u5b9a\u9577":[36,121],"\u56fa\u6709":[59,80,238],"\u56fd\u3054":269,"\u56fd\u540d":269,"\u56fd\u969b":17,"\u56fd\u969b\u5316":[3,15,18,22,44],"\u570f\u5185":274,"\u571f\u66dc":184,"\u571f\u66dc\u65e5":184,"\u5727\u7e2e":[29,34,38,40,41,42,43,44,51,92,121,134,254],"\u5730\u56f3":0,"\u5730\u57df":0,"\u5730\u5f62":[165,166],"\u5730\u70b9":[165,278],"\u5730\u7cfb":165,"\u578b\u304b":246,"\u578b\u3068\u3057\u3066":246,"\u578b\u540d":[93,114,134,135],"\u578b\u5909":38,"\u578b\u60c5":40,"\u578b\u6307":40,"\u578b\u7528":57,"\u57cb\u3081\u8fbc\u307e":12,"\u57cb\u3081\u8fbc\u307f":[169,179],"\u57cb\u3081\u8fbc\u3080":154,"\u57f7\u7b46":[18,205,272],"\u57fa\u3065\u3044":12,"\u57fa\u3065\u304f":34,"\u57fa\u6570":197,"\u57fa\u672c":[0,12,22,40,42,91,135,262,264,267,268],"\u57fa\u672c\u5f62":238,"\u57fa\u6e96":[0,12,114,268,271],"\u57fa\u76e4":54,"\u5800\u672c":34,"\u5831\u4ee5":146,"\u5831\u544a":[3,10,22,34,36,37,38,40,41,42,43,44,49,123,151,154],"\u5834\u5408":[5,6,7,10,11,17,18,21,22,23,24,25,27,29,30,31,32,33,34,35,36,38,40,41,42,43,44,50,51,54,55,56,57,59,61,63,65,68,69,70,71,80,82,86,88,89,90,91,92,93,94,95,97,99,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115,117,118,120,121,122,123,130,131,134,135,138,140,142,143,145,146,148,151,152,153,154,155,156,158,161,162,165,166,168,169,176,177,178,179,184,191,196,197,198,199,200,207,209,210,211,213,214,216,217,218,220,224,225,226,228,236,238,239,242,243,244,245,246,255,261,262,264,265,266,269,270,271,274,275,277,278],"\u5834\u6240":[2,12,34,36,42,44,83,121,153,154,274],"\u5883\u754c":[34,40,114,165],"\u5897\u3048":[80,92,132,135,137,146,210,213,273],"\u5897\u3048\u308b":[43,119,147,158],"\u5897\u3084":[6,7,43,70,80],"\u5897\u3084\u3059":[14,34,70,80,135,210,245],"\u5897\u5206":[135,151],"\u5897\u52a0":[41,135],"\u5897\u5927":165,"\u58ca\u3057":[43,151],"\u58ca\u3059":40,"\u58ca\u308c":[34,36,38,40,43,44,89,122,123,130,142,151],"\u58ca\u308c\u308b":[34,35,36,38,40,41,42,43,44,105,106,107,108],"\u5909\u3048":91,"\u5909\u3048\u308b":[34,91,135,226,264],"\u5909\u308a":42,"\u5909\u308f\u3063":[91,228],"\u5909\u308f\u308a":[43,88,89,131,135,228,262,278],"\u5909\u308f\u308b":[241,264],"\u5909\u5316":[0,34,43],"\u5909\u63db":[34,38,43,44,69,87,155,197,200,220,246,274],"\u5909\u6570":[12,14,30,34,37,38,39,40,41,42,43,44,66,74,135,197,209],"\u5909\u66f4":[12,18,21,22,29,34,35,38,39,40,41,42,43,44,47,50,52,54,55,56,64,65,68,78,80,82,89,92,95,99,104,105,112,118,121,132,133,138,142,143,149,154,155,165,168,197,202,207,209,220,239,254,263,271],"\u5909\u66f4\u5f8c":[52,54,56,64,65,68],"\u5916\u90e8":9,"\u591a\u3044":[92,151,196,197,206,264],"\u591a\u304b\u3063":265,"\u591a\u304f":[34,38,92,104,115,122,135,140,155,176,179,196,197,210,213,228,241,254,259,264,268,271],"\u591a\u3059\u304e":36,"\u591a\u3059\u304e\u308b":[34,135,265],"\u591a\u5f69":0,"\u591a\u6570":34,"\u591a\u69d8":0,"\u591a\u6bb5":44,"\u591a\u91cd":152,"\u591a\u9762":0,"\u5927\u304d":[34,40,80,89,92,140,151,155,202,220,223,245],"\u5927\u304d\u3044":[11,34,38,42,43,44,86,92,99,121,135,140,151,196,220,226,245],"\u5927\u304d\u304f":[36,82,92,103,121,151,166,212,219,268],"\u5927\u304d\u3051\u308c":34,"\u5927\u304d\u3055":220,"\u5927\u304d\u306a":[44,245,255],"\u5927\u306a\u308a":177,"\u5927\u4e08":19,"\u5927\u4e08\u592b":[10,29,44],"\u5927\u4e8b":[196,209],"\u5927\u5207":0,"\u5927\u5225":268,"\u5927\u5c0f":[114,115],"\u5927\u5e45":[34,44],"\u5927\u62b5":155,"\u5927\u6587":[135,210],"\u5927\u6587\u5b57":[34,42,92,140,176,210,271],"\u5927\u898f\u6a21":[0,44],"\u5927\u8cb4":40,"\u5927\u91cf":[11,33,34,42,44,92,114,135,140,142,151,211,212,220,270,271],"\u5927\u95a2":42,"\u592a\u90ce":270,"\u592b\u5fc5":276,"\u5931\u308f":[12,34,40,223],"\u5931\u52b9":[88,155],"\u5931\u6557":[12,34,36,38,40,41,42,43,44,49,50,74,91,92,95,96,98,99,102,104,106,107,108,109,112,114,117,124,125,129,130,135,139,140,142,143,148,162,196,210,265,271],"\u5947\u5999":210,"\u5947\u6570":197,"\u5968\u6271\u3044":42,"\u597d\u304d":17,"\u59a5\u5f53":[43,44,135,220],"\u59a5\u5f53\u6027":44,"\u59cb\u307e\u3063":[83,199,206,218],"\u59cb\u307e\u308a":12,"\u59cb\u307e\u308b":[29,42,44,68,78,135,154,196,197,209,216,218,228,255],"\u59cb\u3081":17,"\u59cb\u70b9":271,"\u5b09\u3057\u304f":10,"\u5b50\u5348\u7dda":165,"\u5b57\u5165":206,"\u5b57\u5217":[34,38,42,44,96,97,98,140,196,246],"\u5b57\u5c0f":[135,210],"\u5b58\u5426":65,"\u5b58\u5728":[0,18,34,35,36,40,41,42,43,44,47,54,65,68,69,78,83,96,97,103,105,112,114,115,117,120,131,135,151,154,155,161,166,167,214,228,259,261,262,266,269,271,273,278],"\u5b66\u3073":[112,114,115,135,165,269,273],"\u5b66\u3093":274,"\u5b66\u7fd2":[36,41,138,215],"\u5b66\u7fd2\u7528":158,"\u5b89\u5168":[43,92,261],"\u5b89\u5b9a":[0,39,82,89],"\u5b89\u5fc3":10,"\u5b8c\u4e86":[12,17,34,86,135,199],"\u5b8c\u5168":[11,47,68,92,113,121,135,140,197,220,264,277],"\u5b8c\u74a7":213,"\u5b8c\u7d50":10,"\u5b9a\u5024":40,"\u5b9a\u5b50":210,"\u5b9a\u6570":[34,43],"\u5b9a\u7248":12,"\u5b9a\u7fa9":[11,34,40,42,43,47,51,59,66,68,71,78,91,92,94,100,102,103,105,112,114,115,122,135,141,153,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,209,210,211,212,213,214,239,240,242,246,261,271,273],"\u5b9f\u4f53":[54,122],"\u5b9f\u4f8b":[3,4,22],"\u5b9f\u51e6":[11,66],"\u5b9f\u6570":246,"\u5b9f\u65bd":12,"\u5b9f\u73fe":[0,3,4,22,42,92,135,155,176,195,197,210,220,269,271],"\u5b9f\u7528":42,"\u5b9f\u7a3c":152,"\u5b9f\u884c":[0,3,17,22,24,25,26,27,28,29,30,31,32,34,37,38,40,41,42,43,44,46,51,59,65,66,68,70,78,82,83,85,86,88,89,90,94,95,96,98,100,101,102,103,104,105,106,107,108,109,110,111,112,114,115,123,124,127,129,130,131,132,135,136,138,141,142,143,145,148,151,156,158,165,170,172,177,182,195,197,199,209,210,214,216,217,219,229,230,231,232,241,245,253,255,261,265,271,275,277,278],"\u5b9f\u884c\u4f8b":[14,40,47,80,82,83,88,91,92,93,95,96,97,98,99,102,104,105,106,107,108,109,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,132,133,134,135,136,137,138,140,141,142,143,144,145,146,147,148,155,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,199,200,201,202,203,206,210,211,212,213,216,217,219,221,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,261,268,269,270,271,273,274,275,276,277,278],"\u5b9f\u88c5":[17,34,38,40,42,43,44,70,86,91,92,115,132,133,135,155,156,165,213,214,254],"\u5b9f\u904b":34,"\u5b9f\u969b":[33,34,41,44,47,70,112,114,115,117,135,137,151,211,245,264,270,273],"\u5b9f\u9a13":[34,39,40,41,42,43,44,50,55,112,118,125,132,133,210,212,213,241],"\u5bae\u4e0b":44,"\u5bb9\u91cf":[34,43,89],"\u5bc4\u3063":224,"\u5bfe\u51e6":[42,239],"\u5bfe\u5fdc":[0,9,11,14,34,35,36,37,38,39,40,41,42,43,44,47,51,55,65,68,69,91,104,115,135,138,151,153,174,199,201,210,214,216,217,218,219,220,238,254,271],"\u5bfe\u7167":177,"\u5bfe\u7b56":[22,34,238,263],"\u5bfe\u8a71":[261,271],"\u5bfe\u8c61":[0,9,11,12,14,17,18,29,34,38,39,42,43,44,51,54,55,57,61,63,65,67,68,69,76,82,90,94,96,97,98,100,101,102,103,104,105,106,107,108,112,114,115,117,120,121,123,130,131,135,138,140,146,151,152,158,162,168,169,171,172,173,177,179,191,193,196,197,199,210,211,212,213,239,255,262,264,270,271,273,274],"\u5bfe\u8c61column":51,"\u5bfe\u8c61ctx":54,"\u5bfe\u8c61cursor":[61,69],"\u5bfe\u8c61id":62,"\u5bfe\u8c61obj":62,"\u5bfe\u8c61object":[51,55,59,62,65,66,72],"\u5bfe\u8c61table":[51,65,68,69],"\u5bfe\u8c61table1":68,"\u5bfe\u8c61table2":68,"\u5c02\u7528":[1,12,17,123,261,275],"\u5c06\u6765":[41,80,112,118,119,121,132,133,147,165,214,255,261],"\u5c0e\u5165":[3,14,15,17,22,42,43,82],"\u5c0f\u3055":[34,43,44,121,202,223],"\u5c0f\u3055\u3044":[11,33,37,69,92,114,135,140,166,196,199,212,220,226],"\u5c0f\u3055\u304f":[33,42,43,114,165,166,198,210,220,245,255],"\u5c0f\u3055\u3051\u308c":34,"\u5c0f\u3055\u306a":44,"\u5c0f\u306a\u308a":[177,195],"\u5c0f\u5024":[112,114,115,117],"\u5c0f\u6570":[38,43,83,86,153,246,268,274],"\u5c0f\u6570\u70b9":268,"\u5c0f\u6587\u5b57":[34,69,92,140,146,176,200,210,271],"\u5c0f\u897f":41,"\u5c11\u304f":266,"\u5c11\u3057":[29,34,213],"\u5c11\u3057\u9045\u3044":[153,155],"\u5c11\u3057\u9055\u3044":135,"\u5c11\u306a\u3044":[34,42,92,135,195,196,197,198,209],"\u5c11\u306a\u304f":[0,10,34,43,92,99,135,171,179,196,197,198,245],"\u5c11\u306a\u3051\u308c":140,"\u5c11\u6570":34,"\u5c1a\u4e5f":41,"\u5c3a\u5ea6":0,"\u5c55\u958b":[12,22,29,32,34,38,40,41,44,46,99,124,125,129,135,177,209],"\u5c55\u958b\u5f8c":135,"\u5c55\u958b\u7528":38,"\u5c5e\u3057":[76,246,269],"\u5c5e\u3059\u308b":[51,65,69,141],"\u5c5e\u6027":[37,118,119,141,146,147,170],"\u5c65\u6b74":12,"\u5c71\u672c":42,"\u5c71\u7530":[202,238],"\u5ca9\u4e95":[40,41,44],"\u5ca9\u677e":44,"\u5cf6\u6d25":34,"\u5cf6\u7530":40,"\u5d8b\u7530":40,"\u5de6\u4e0a":[35,167],"\u5de6\u4e0b":35,"\u5de6\u53f3":271,"\u5de6\u8fba":44,"\u5dee\u5206":154,"\u5dee\u96c6\u5408":197,"\u5e02\u5185":205,"\u5e02\u771f":44,"\u5e03\u6559":3,"\u5e38\u306b":43,"\u5e73\u4eee":34,"\u5e73\u5747":[42,135],"\u5e73\u884c":12,"\u5e74\u9f62":[0,92,140],"\u5e83\u304f":[12,210],"\u5ea6\u3068":38,"\u5ea6\u5206":246,"\u5ea6\u5408\u3044":264,"\u5ea6\u6570":[38,197,268,278],"\u5ea6\u6d6e":246,"\u5ea6\u8868":36,"\u5ea6y":246,"\u5ea7\u6a19":[38,165,166,167,197,205,274],"\u5ea7\u6a19\u5024":38,"\u5ec3\u6b62":[82,206],"\u5f0f\u5168":[196,197],"\u5f0f\u8868":57,"\u5f0f\u96c6\u5408":210,"\u5f15\u3044":197,"\u5f15\u304d\u51fa\u3059":0,"\u5f15\u304d\u7d9a\u304d":41,"\u5f15\u304d\u8d77\u3053\u3057":34,"\u5f15\u304d\u8d77\u3053\u3059":[40,41],"\u5f15\u304d\u8d77\u3059":[40,41,44],"\u5f15\u6570":[11,22,34,35,40,41,42,43,44,46,54,69,82,119,124,125,129,147,156,162,179,184,197,201,203,210,211,214,228,229,230,231,232,233,234,235,237,240,241,242,243,244,247,258,261,265,268,269,271,273,275,277],"\u5f15\u7528":[41,153],"\u5f15\u8a9e":271,"\u5f31\u70b9":0,"\u5f35\u3063":[41,43,117,135,142],"\u5f35\u3089":[34,40,41,43,51,104,212,213,268],"\u5f35\u308b":[142,196,197],"\u5f35\u308c\u308b":41,"\u5f37\u5236":[34,35,40,42,43,44,65,123,136,151],"\u5f37\u529b":[34,135,210],"\u5f37\u5316":[34,36,38,42],"\u5f53\u3066":[34,54,131,141,146,220],"\u5f53\u3066\u308b":[131,268],"\u5f53\u8a72":[65,82],"\u5f62\u5f0f":[11,22,34,35,38,39,40,42,44,46,53,54,56,81,84,86,87,88,89,91,92,93,95,96,97,98,99,102,103,104,106,107,108,109,112,113,114,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,151,152,153,154,155,156,163,166,167,174,178,179,197,199,207,246,261,268,271,273],"\u5f62\u614b":[0,29,197,238],"\u5f62\u72b6":205,"\u5f71\u97ff":[12,34,40,41,42,43,44,153,155,212],"\u5f79\u5272":[92,177,271],"\u5f79\u7acb\u3061":[34,41,92],"\u5f85\u3061\u53d7\u3051\u308b":[261,275],"\u5f85\u3064":[86,114],"\u5f8c\u304b\u3089":103,"\u5f8c\u308d":[34,236],"\u5f8c\u59cb":34,"\u5f8c\u65b9":[11,22,34,40,42,43,44,177,210,212,213,255,262,267],"\u5f8c\u65e5":34,"\u5f8c\u7d9a":34,"\u5f8c\u8005":[47,158,201,209,278],"\u5f8c\u8ff0":[11,12,69,135,182,210,214],"\u5f93\u3046":36,"\u5f93\u3063":[67,68,69,135,156,255],"\u5f93\u6765":[34,42],"\u5f97\u3089\u308c":[145,172],"\u5f97\u308b":[34,155,206],"\u5fa9\u53f7":12,"\u5fa9\u65e7":[39,43,55,151],"\u5faa\u74b0":44,"\u5fc3\u304c":14,"\u5fc3\u914d":23,"\u5fc5\u305a":[68,76,82,92,112,114,115,135,140,176,210,211,261],"\u5fc5\u8981":[0,3,5,10,11,12,14,17,21,24,25,27,29,30,31,33,34,35,36,38,39,40,41,42,43,44,47,50,54,61,63,69,70,73,80,83,92,93,99,104,105,106,112,113,114,115,117,118,121,124,129,131,135,136,140,142,146,151,153,154,155,156,158,168,169,171,172,173,176,177,179,182,196,197,198,203,206,209,210,211,212,213,214,216,217,218,219,220,238,242,245,255,261,264,266,271,273,275,277],"\u5fc5\u9808":[29,32,124,125,129,132,133,155,159,168,170,172,173,176,182,193,242,255,271,275],"\u5fd8\u308c":[38,80,104,176],"\u5fd8\u308c\u308b":106,"\u5fdc\u3058":[0,34,62,154,210],"\u5fdc\u7528":0,"\u5fdc\u7b54":[0,41,44],"\u601d\u3044":17,"\u601d\u3044\u51fa\u3057":135,"\u601d\u3046":[210,269,273],"\u601d\u3063":16,"\u6027\u5225":0,"\u6027\u80fd":[0,12,34,43,104,105,114,135,254,273],"\u6069\u6075":259,"\u60aa\u610f":[158,197],"\u60c5\u5831":[2,3,12,17,22,29,34,35,36,38,39,40,41,42,43,44,46,50,51,54,59,62,83,92,93,104,114,121,122,124,129,132,133,134,135,138,141,151,153,199,200,204,211,212,213,264,267,268,270,271,272],"\u60c5\u5831\u540d":141,"\u60f3\u5b9a":[34,89,103,270],"\u610f\u5473":[11,29,34,41,43,44,47,57,80,86,93,104,107,121,123,130,131,135,137,138,151,153,154,155,196,197,206,209,210,213,223,226,245,269,271,278],"\u610f\u56f3":[34,40,41,42,43,44,177,182,196,212,273],"\u610f\u8b58":140,"\u611f\u3058":10,"\u614e\u91cd":14,"\u6163\u308c":269,"\u6163\u7fd2":40,"\u6210\u308a":[135,196,261],"\u6210\u308a\u7acb\u3063":11,"\u6210\u529f":[12,29,34,43,44,50,51,54,55,57,65,68,73,74,87,90,91,92,94,95,96,98,99,100,102,104,106,107,108,109,110,111,117,124,125,129,130,139,140,142,143,148,261,271],"\u6210\u679c":3,"\u623b\u3057":[44,99],"\u623b\u3063":155,"\u623b\u308a":[40,65],"\u623b\u308a\u5024":[34,49,50,51,54,55,57,61,63,65,68,70,73,74],"\u6240\u5b9a":[140,221,262,264],"\u6240\u5c5e":95,"\u6240\u6709":43,"\u624b\u52d5":[18,155,158],"\u624b\u6bb5":[11,57],"\u624b\u7d9a\u304d":[59,66],"\u624b\u9593":10,"\u624b\u9806":[3,4,10,18,22,29,32,40,41,44,105,158,219],"\u6253\u3061\u5207\u308a":41,"\u6253\u3063":12,"\u6253\u3064":12,"\u6253\u3064\u524d":12,"\u6271\u3044":[34,42,43,44,82,216,229,230,231,232,233,234,235,262,268],"\u6271\u3046":[0,2,39,41,87,114,197,242,245,264,265,266],"\u6271\u3048":[44,54,92,272],"\u6271\u3048\u308b":[41,42,266],"\u6271\u3063":[35,41,274],"\u6271\u308f":[40,41,42,43,44,54,135,146,154,196,200,205,264,268],"\u627f\u8a8d":42,"\u628a\u63e1":[10,104],"\u6291\u3048":264,"\u6291\u5236":[34,40,41,42],"\u6295\u3052":34,"\u6295\u5165":[35,264],"\u6295\u7a3f":12,"\u6295\u7a3f\u5834\u6240":274,"\u629c\u304d\u51fa\u3059":0,"\u629c\u3051":[38,41,42,43,44],"\u629c\u3051\u308b":271,"\u62bc\u3057":271,"\u62bc\u3059":[17,271],"\u62bd\u51fa":[34,40,114,135,140,169,179,182,199,202,215,224,226,236,240],"\u62c5\u5f53":12,"\u62c5\u5f53\u8005":12,"\u62d7\u97f3":34,"\u62e1\u5927":10,"\u62e1\u5f35":[22,34,38,42,140,210,267],"\u62e1\u5f35\u578b":268,"\u62e1\u5f35\u5b50":[36,124,125,129,154,207],"\u6301\u305f":[34,122],"\u6301\u3061":[11,76,93,122,134,135,146,153,155,210],"\u6301\u3063":[0,10,34,40,80,93,112,114,115,118,119,121,122,135,146,147,153,196,197,200,217,236,273],"\u6301\u3064":[0,9,34,38,68,78,92,93,105,112,114,115,119,135,147,165,182,197,200,205,217,268,269,270,271,273],"\u6301\u3064\u3059\u3079":135,"\u6301\u3066":[93,221],"\u6301\u3066\u308b":43,"\u6307\u3057":268,"\u6307\u3059\u5024":69,"\u6307\u5b9a":[0,6,7,8,11,12,22,28,29,30,32,33,34,35,36,38,39,40,41,42,43,44,51,52,53,54,55,56,57,59,61,62,63,64,65,66,67,68,69,71,72,76,78,80,83,84,86,88,89,90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,120,121,122,123,124,125,129,130,131,132,133,134,135,136,138,139,140,142,143,144,145,146,148,151,152,153,154,155,156,159,161,162,163,166,167,168,169,170,171,172,173,176,177,178,179,180,182,184,191,193,195,197,202,205,206,207,209,210,211,212,213,216,220,223,224,225,228,236,238,239,240,242,254,255,258,261,262,264,267,268,269,270,274,275,276,278],"\u6307\u6570":197,"\u6307\u6a19":65,"\u6307\u793a":[59,216,271,275],"\u6307\u91dd":[3,4,22,44],"\u6319\u304c\u3063":226,"\u6319\u52d5":[22,34,36,40,42,43,63,64,103,117,135,149,153,210,212,228,264],"\u632f\u308b":[34,135],"\u632f\u821e":165,"\u632f\u821e\u3044":[40,41,42,161,177],"\u633f\u5165":[12,40,59,63,153,179,271],"\u6368\u3066":38,"\u6392\u4ed6":[34,44],"\u639b\u3051":197,"\u63a1\u7528":[0,121,145,261,264],"\u63a2\u3057":[0,135,154,226],"\u63a2\u3059":[173,206,226,273],"\u63a2\u7d22":0,"\u63a5\u5c3e":[202,238],"\u63a5\u7d9a":[1,9,34,40,127,153,154,265,271],"\u63a5\u7d9a\u5148":152,"\u63a5\u8fd1":11,"\u63a5\u982d":[34,38,153,197,220],"\u63a8\u5968":[12,23,34,40,42,43,44,82,83,135,158,245,275],"\u63a8\u5b9a":[34,43],"\u63a8\u6e2c":29,"\u63a8\u79fb":82,"\u63a8\u9032":41,"\u63d0\u4f9b":[0,1,11,12,21,24,25,27,31,34,36,38,40,41,42,43,44,48,54,73,82,92,93,112,113,145,150,153,155,158,165,177,210,211,213,214,218,220,254,255,269],"\u63d0\u6848":[10,22,34,36,38,39,40,41,42,43,44,46,138,215],"\u63db\u3048":[43,47,65,69,153,210,277],"\u63db\u3048\u308b":[12,34,43,47,76,142],"\u63db\u6642":38,"\u63fa\u308c":277,"\u642d\u8f09":0,"\u643a\u5e2f":0,"\u64a4\u53bb":38,"\u64a4\u5ec3":[36,42],"\u64cd\u4f5c":[0,11,22,34,41,43,46,51,54,57,65,68,95,120,135,143,153,195,197,206,261,267,268],"\u64ec\u4f3c":[22,43,46,51,76,93,134,135,196,197,278],"\u652f\u63f4":218,"\u6539\u540d":[38,40],"\u6539\u5584":[34,35,38,40,41,42,43,44,104],"\u6539\u884c":[38,39,43,63,153,236],"\u6539\u8a02":44,"\u654f\u90ce":34,"\u6559\u3048":239,"\u6570\u3048":[137,269],"\u6570\u3048\u308b":[112,114,115,135,269],"\u6570\u5024":[11,22,34,35,36,43,44,80,85,88,112,114,115,122,132,135,166,196,197,262,267,271],"\u6570\u5206":114,"\u6570\u591a\u304f":44,"\u6570\u5b57":[34,42,92,112,114,115,135,140,154,210,217,228,232,235,239,264,265],"\u6570\u70b9":[135,246],"\u6570\u73e0":182,"\u6570\u9806":115,"\u6574\u3063":14,"\u6574\u5217":[0,271],"\u6574\u5408":[35,44,65],"\u6574\u5f62":[43,84,271],"\u6574\u6570":[43,44,78,80,87,121,135,145,153,178,246,261,268,274],"\u6574\u7406":[40,41],"\u6587\u5b57":[0,11,34,35,38,40,41,42,43,44,54,55,57,63,65,68,69,80,92,109,110,118,134,135,140,144,146,149,153,158,162,163,165,166,167,168,169,171,179,180,196,197,199,200,201,202,209,216,217,223,226,228,229,230,231,232,235,236,237,239,243,244,246,262,268,269,270,271,273,274,277,278],"\u6587\u5b57\u5217":[22,40,41,42,44,56,57,63,80,83,85,97,114,118,122,135,146,158,162,163,165,168,169,176,179,182,195,196,246,267,269,271,274,277],"\u6587\u5b57\u6570":[112,114,115,135,171,179,180,197],"\u6587\u5b57\u7a2e":210,"\u6587\u66f8":[0,18,34,42,92,177,195,198,211,212,213,218,225,262,268,271,277],"\u6587\u66f8\u4e2d":[211,212],"\u6587\u66f8\u5185":225,"\u6587\u691c":92,"\u6587\u6cd5":[22,267],"\u6587\u8108":182,"\u6587\u982d":236,"\u65ad\u7247":179,"\u65b0\u3057\u3044":[0,3,6,7,12,18,34,38,40,42,43,44,47,49,50,51,54,65,68,69,70,91,92,95,106,113,136,140,143,145,153,155,158,200,218,261,271],"\u65b0\u3057\u304f":[10,42,82,92,113,135,192,195,198,271],"\u65b0\u3057\u3051\u308c":151,"\u65b0\u305f":[11,51,55,59,68],"\u65b0\u4efb":12,"\u65b0\u5bbf":278,"\u65b0\u5bbf\u99c5":278,"\u65b0\u65e7":43,"\u65b0\u898f":[12,18,34,50,154],"\u65b0\u898f\u30ec\u30b3\u30fc\u30c9":44,"\u65b0\u8a9e":[238,242],"\u65b9\u5411":69,"\u65b9\u5f0f":[0,271,273],"\u65b9\u5f62":[165,166],"\u65b9\u6cd5":[0,4,10,18,21,22,23,24,25,26,27,28,29,30,31,32,34,38,40,41,42,43,44,46,103,104,112,115,121,134,135,140,149,151,153,154,155,158,165,166,171,177,179,191,195,207,209,211,213,215,226,228,233,234,235,238,239,243,244,245,246,255,258,261,262,263,268,269,271,273,274,275],"\u65e2\u5b58":[0,1,12,34,40,42,43,44,47,55,68,92,111,112,114,115,135,151,153,154,155,171,214,259,261,268,271],"\u65e2\u5b9a":[34,40,273],"\u65e2\u5b9a\u5024":259,"\u65e2\u77e5":242,"\u65e5\u3005":10,"\u65e5\u4ed8":[0,12,165],"\u65e5\u6642":[22,112,114,115,246,267,274],"\u65e5\u66dc\u65e5":184,"\u65e5\u672c":[12,34,42,166,167,176,196,197,206,216,228,229,230,231,232,238,246,278],"\u65e5\u672c\u4eba":216,"\u65e5\u672c\u6e2c":165,"\u65e5\u672c\u8a9e":[0,2,17,19,40,196,197,206,216,228,238,243,244,264],"\u65e5\u6b21":43,"\u6607\u964d":69,"\u6607\u9806":[65,68,69,103,114,115,116,135,173,269,271,278],"\u660e\u6587\u5316":265,"\u660e\u78ba":[34,42],"\u660e\u793a":[12,18,40,41,43,104,135,153,154,155,165,203,216,220,255,273],"\u660e\u793a\u7684":[104,136,207],"\u6628\u65e5":34,"\u6642\u3060\u3051":34,"\u6642\u306b":38,"\u6642\u3084":135,"\u6642\u4ee3":0,"\u6642\u4ee5\u5916":36,"\u6642\u523b":[34,43,55,83,151,154,174,184,217,274],"\u6642\u671f":43,"\u6642\u70b9":[12,40,49,50,54,56,63,65,82,135],"\u6642\u9593":[0,6,7,34,36,38,41,42,43,44,49,83,136,137,151,154,158,196,198,199,214,246,268,271],"\u666e\u53ca":0,"\u666e\u6bb5":12,"\u666e\u901a":[10,197],"\u6697\u53f7":12,"\u6697\u9ed9":273,"\u66d6\u6627":[34,44],"\u66dc\u65e5":184,"\u66f4\u65b0":[3,11,22,34,38,40,41,42,43,44,51,55,59,62,65,68,82,92,105,121,135,151,198,215,220,238,268,270,271,273],"\u66f8\u3044":[42,43,196,197,210,274],"\u66f8\u304b":[18,40,43,214,274],"\u66f8\u304d":[0,43,135,154,210,264],"\u66f8\u304d\u51fa\u3057":[34,104],"\u66f8\u304d\u51fa\u3059":104,"\u66f8\u304d\u5f8c":262,"\u66f8\u304d\u63db\u3048":[12,21],"\u66f8\u304d\u8fbc\u307e":111,"\u66f8\u304d\u8fbc\u307f":[29,43,105,107],"\u66f8\u304d\u8fbc\u3080":[43,154],"\u66f8\u304d\u8fbc\u3081\u308b":42,"\u66f8\u304f":[42,153,196,210,273],"\u66f8\u3051\u308b":[40,41,42,43],"\u66f8\u5f0f":[22,34,120,121,123,135,177,258,261,267,275],"\u66ff\u3048":[12,22,42,43,264,267],"\u66ff\u3048\u308b":[34,44,224,271],"\u66ff\u308f\u308b":43,"\u6700\u3082":[54,89,135,173],"\u6700\u4e2d":[0,44,123],"\u6700\u521d":[3,10,34,38,42,43,44,54,83,92,131,135,140,161,168,169,171,179,191,196,197,209,210,211,241,259,268,271,273],"\u6700\u5927":[33,34,35,36,38,40,41,42,43,44,47,50,70,71,88,92,96,97,98,99,112,113,114,115,117,121,122,135,137,140,142,145,149,153,154,158,161,178,179,197,211,212,220,255,261,266],"\u6700\u5927\u5024":[40,42,44,112,114,115,117,121,135,212],"\u6700\u5927\u7dcf":[43,121,140,220],"\u6700\u5c0f":[24,25,27,31,43,135,161,259],"\u6700\u5c0f\u5024":[42,112,114,115,117,135,197],"\u6700\u5c0f\u9650":155,"\u6700\u5f8c":[12,36,40,43,54,135,146,154,155,197,210,228,241,264,265,268],"\u6700\u65b0":[2,6,7,8,12,38,43,44,88],"\u6700\u7d42":[34,55,80,135],"\u6700\u7d42\u66f4":55,"\u6700\u8fd1":44,"\u6700\u9069":[34,43,44,155],"\u6700\u9577":[38,85,154,197],"\u6708\u6b21":43,"\u6709\u3057":93,"\u6709\u5229":114,"\u6709\u529b":138,"\u6709\u52b9":[0,6,7,8,12,18,29,31,34,38,39,41,42,43,44,51,55,65,68,92,93,105,112,114,115,123,135,140,146,153,154,155,158,173,181,184,191,193,194,196,199,210,214,268,275],"\u6709\u7121":[34,168,202,223,268],"\u6709\u7528":[34,42,43,44,47,83,86,93,123,135,155,220,238,255,271],"\u6709\u76ca":0,"\u671b\u307e\u3057\u3044":[0,10,12],"\u671b\u307e\u3057\u304f":63,"\u671f\u5316":[34,40,54],"\u671f\u5f85":[0,34,206,210,238,268],"\u671f\u5f85\u901a\u308a":242,"\u6728\u4e0a":69,"\u6728\u66dc\u65e5":184,"\u672a\u4f7f":42,"\u672a\u4f7f\u7528":261,"\u672a\u521d":[34,40],"\u672a\u52a0":121,"\u672a\u5b9a":268,"\u672a\u5b9a\u7fa9":42,"\u672a\u5b9f\u88c5":115,"\u672a\u5bfe":[34,40],"\u672a\u6765":12,"\u672a\u6e80":[34,69,86,153,196],"\u672a\u77e5":39,"\u672a\u7ba1":121,"\u672a\u8a2d":40,"\u672a\u958b\u653e":36,"\u672b\u5c3e":[59,65,69,117,151,210,236],"\u672b\u6c38":43,"\u672c\u4f53":[3,12],"\u672c\u5f53":[34,216,277],"\u672c\u6587":[170,273],"\u672c\u756a":[12,43,114],"\u672c\u8a9e":[228,229,230,231,232,243],"\u672c\u8cea":154,"\u6749\u672c":43,"\u6749\u672c\u6dbc":43,"\u6751\u4e0a":[34,41,42,43,44],"\u6761\u4ef6":[3,11,22,34,36,40,41,43,57,67,68,100,117,138,142,153,171,177,182,191,195,197,236,246,264,267,271,274,276],"\u6761\u4ef6\u5f0f":[34,40],"\u6771\u4eac":[165,238,262,264,278],"\u6771\u4eac\u90fd":[238,262,264],"\u6790\u5668":[0,238],"\u6790\u7cfb":197,"\u6797\u6a8e":223,"\u679c\u305f":271,"\u67af\u308c":[1,259],"\u67d4\u8edf":[0,92,177,195],"\u6817\u5c71":[42,43],"\u682a\u5f0f":[34,42,43,44],"\u683c\u7d0d":[0,11,33,34,38,47,50,51,55,59,62,65,67,68,78,112,114,115,122,135,140,141,153,176,197,198,205,214,220,262,268,269,270,271,274,277],"\u6848\u5185":[10,12,43],"\u68ee\u7530":270,"\u691c\u51fa":[6,29,34,35,36,38,40,43,44,146],"\u691c\u67fb":[34,65],"\u691c\u7d22":[11,12,22,24,25,27,29,31,34,35,36,37,38,39,40,41,42,43,44,46,47,48,54,57,59,64,67,68,73,76,78,91,92,93,100,138,146,149,153,168,169,171,176,177,179,182,191,195,198,200,204,210,211,212,213,214,220,224,225,226,228,238,239,240,241,242,246,255,259,260,263,267,268,269,272],"\u691c\u7d22\u4f8b":3,"\u691c\u7d22id":68,"\u691c\u7d22key":68,"\u691c\u8a0e":[121,211,212,213,259,264],"\u691c\u8a3c":[42,152],"\u6955\u5186":[165,166],"\u6975\u4ed8":[165,166],"\u697d\u3057":[262,264],"\u697d\u3057\u3044":[262,264],"\u6982\u5ff5":82,"\u6982\u7b97":144,"\u6982\u8981":[22,43,46,48,222,227],"\u69cb\u3044":[12,17,169,179],"\u69cb\u308f":151,"\u69cb\u6210":[11,12,24,25,27,31,42,63,259,271],"\u69cb\u6587":[22,34,37,40,41,42,43,44,46,57,80,195,211],"\u69cb\u7bc9":[3,22,34,40,41,42,43,44,46,197,226,262],"\u69cb\u9020":[0,11,54,68,83,220,270],"\u69cb\u9020\u4f53":[34,42,44,54,61,66],"\u69d8\u3005":[3,11,265,278],"\u6a19\u6e96":[34,35,39,42,43,82,89,90,94,100,101,103,105,110,111,127,141,152,153,155,156,211,261,271],"\u6a19\u8a18":42,"\u6a29\u8868":42,"\u6a29\u9650":[29,41,43,275],"\u6a2a\u5c71":[41,42,44],"\u6a5f\u68b0":42,"\u6a5f\u80fd":[0,6,7,8,11,29,34,35,36,38,39,40,41,42,43,44,47,54,80,86,91,112,113,114,115,118,125,135,138,140,142,145,151,153,154,155,158,176,177,195,196,204,206,209,210,212,213,214,215,216,217,218,219,220,254,255,259,269,274,275],"\u6b20\u70b9":0,"\u6b20\u843d":41,"\u6b21\u56de":[12,82],"\u6b21\u671f":12,"\u6b21\u90ce":270,"\u6b32\u3057\u3044":[121,214],"\u6b53\u8fce":3,"\u6b62\u3081":[42,43,70],"\u6b62\u3081\u308b":47,"\u6b63\u3057\u3044":[43,196,209,217,218],"\u6b63\u3057\u304f":[34,40,41,42,43,44,63,104,114,115,196,216],"\u6b63\u5e38":[12,43,44,114,115,154],"\u6b63\u5f0f":[42,44],"\u6b63\u78ba":[34,92,113,268,271],"\u6b63\u898f":[22,34,39,40,42,43,44,46,68,118,140,144,146,168,169,177,200,201,202,203,209,223,236,240,241],"\u6b63\u898f\u5316":[40,118,179],"\u6b66\u8005":43,"\u6b8a\u547d":154,"\u6b8b\u3063":[34,36,41,142,151],"\u6b8b\u3089":34,"\u6b8b\u308a":[34,82,105,114,135,140,144,209],"\u6b8b\u308b":38,"\u6b8b\u5ff5":268,"\u6b8b\u7559":151,"\u6bb5\u843d":[51,93],"\u6bb5\u968e":[34,245],"\u6bce\u56de":3,"\u6bd4\u3079":[42,44,92,198],"\u6bd4\u8f03":[22,34,36,40,42,43,44,92,135,154,171,191,196,240,252,254],"\u6bd4\u8f03\u6642":34,"\u6c17\u3065\u3051\u308b":44,"\u6c17\u306b":[17,65,93],"\u6c17\u4ed8\u3051\u308b":34,"\u6c17\u8efd":[10,42],"\u6c34\u66dc\u65e5":184,"\u6c38\u7d9a":[22,34,46,51,65,68,93,149,153,155],"\u6c38\u7d9a\u5316":34,"\u6c42\u307e\u308a":0,"\u6c42\u3081":[0,163],"\u6c42\u3081\u308b":[0,165,166,269],"\u6c4e\u7528":[153,154,155],"\u6c7a\u307e\u308a":209,"\u6c7a\u307e\u308b":271,"\u6c7a\u3081":[34,91,92,114,135,140],"\u6c7a\u3081\u308b":[11,135],"\u6c7a\u5b9a":135,"\u6cbf\u3046":42,"\u6ce2\u62ec\u5f27":105,"\u6ce8\u610f":[12,34,38,41,44,68,80,92,104,117,123,131,135,140,142,153,154,155,158,170,196,197,239,245,255,264,268,269,271,276],"\u6ce8\u76ee":[135,269],"\u6ce8\u8a18":41,"\u6d0b\u5fd7":[42,44],"\u6d0b\u723e":38,"\u6d3b\u304b\u3059":135,"\u6d3b\u7528":[43,238,259],"\u6d41\u3057":12,"\u6d41\u308c":[3,135,261],"\u6d41\u91cf":255,"\u6d45\u898b":41,"\u6d69\u4e8c":40,"\u6d6e\u52d5":[43,83,268],"\u6d88\u3048":[155,220],"\u6d88\u305b":155,"\u6d88\u53bb":[34,41],"\u6d88\u8cbb":[86,198],"\u6df1\u523b":[40,42,264],"\u6df7\u3056\u3063":228,"\u6df7\u305c":[138,268],"\u6df7\u305c\u308b":80,"\u6df7\u4e71":44,"\u6df7\u540c":[34,135],"\u6df7\u5728":[34,43,156],"\u6dfb\u4ed8":40,"\u6e05\u5ddd":44,"\u6e08\u307f":[10,12,24,25,27,31,34,38,40,41,43,44,51,116,146,158,209,216,217,218,246,259],"\u6e08\u3080":43,"\u6e1b\u3063":[43,44],"\u6e1b\u3089":[34,40,43,44,70,92,217,220,239,277],"\u6e1b\u308b":206,"\u6e1b\u5c11\u5f8c":70,"\u6e1b\u7b97":65,"\u6e21\u3055":[11,34,40,41,63,66,70,165],"\u6e21\u3057":[6,7,8,11,42,43,131,145,151,158,196,271,275],"\u6e21\u3059":[39,43,197,271],"\u6e21\u308b":34,"\u6e2c\u4f4d":0,"\u6e2c\u5730":[165,166,167,246,268,278],"\u6e2c\u5730\u7cfb":246,"\u6e2c\u5b9a":154,"\u6e2c\u7528":35,"\u6e80\u3055":41,"\u6e80\u3059":[41,43],"\u6e80\u305f":[11,44,117,142,182,210,278],"\u6e96\u5099":[17,18,22,51,60,62,65,68,112,114,115,135,155,196,197,264,267],"\u6e96\u62e0":[41,155],"\u6f0f\u308c":[0,12,40,44,104,195,277],"\u6f14\u7b97":[29,34,36,40,41,42,43,44,68,171,195,197],"\u6f14\u7b97\u5b50":[11,34,36,40,41,43,44,91,135,176],"\u6f22\u5b57":[176,206,228],"\u6fc1\u70b9":[34,201,202,223],"\u7027\u5185":41,"\u706b\u66dc\u65e5":184,"\u70b9\u4ee5\u4e0b":268,"\u70b9\u6570":[43,83,268],"\u70b9\u9593":[165,205],"\u7121\u3044":[12,219,236],"\u7121\u3057":[34,104,113,210,239],"\u7121\u52b9":[6,7,8,18,29,34,39,40,41,43,56,63,68,69,114,123,135,153,155,158,196,199,216],"\u7121\u540d":[65,68],"\u7121\u8996":[34,36,38,40,41,42,43,44,68,69,102,103,104,118,131,135,146,153,176,196,209,220,229,230,231,232,242,264],"\u7121\u9650":[36,40,42,43],"\u7121\u99c4":[0,44],"\u7136\u8a00":44,"\u7247\u4eee":34,"\u7269\u7406":34,"\u7279\u306b":11,"\u7279\u5225":[29,49,57,87,105,135,146,196,210,216],"\u7279\u5316":[17,197],"\u7279\u5b9a":[0,29,34,41,42,43,44,60,68,80,91,102,112,135,195,202,238,240,273,274],"\u7279\u5fb4":[22,34,46,92,210,213,242,270,273],"\u7279\u6027":220,"\u7279\u6709":80,"\u7279\u6b8a":[41,65,83,156,168,169,179,238,271],"\u72b6\u614b":[0,10,12,24,25,27,31,33,34,36,40,42,43,44,47,54,89,152,153,216,264,271],"\u72b6\u6cc1":[0,34,59,135,197,264,265],"\u72ec\u7acb":[113,155],"\u72ec\u81ea":[0,34,43,83,152,201,261,268],"\u72ed\u3081\u308b":104,"\u7372\u5f97":[43,104,106,108],"\u7389\u91ce":[42,44],"\u73fe\u308c":[122,146],"\u73fe\u308c\u308b":264,"\u73fe\u4ee3":0,"\u73fe\u5728":[0,12,25,34,43,47,50,54,55,61,65,66,88,91,95,105,111,113,135,137,140,142,143,152,154,174,205,271,272,274],"\u73fe\u5728\u5730":274,"\u73fe\u5b9f":269,"\u73fe\u72b6":[34,82],"\u73fe\u983b":42,"\u7403\u9762":[165,166],"\u7406\u7531":[0,40,41,43,92,135,140,216,255,259,265],"\u7406\u89e3":[117,135,142,271],"\u7406\u95a2":66,"\u74b0\u5883":[0,3,6,7,8,23,29,32,34,38,39,41,42,43,44,68,99,154,155,158,209],"\u751f\u3058":[90,94,100,110,111],"\u751f\u6210":[3,6,34,61,69,78,112,114,115,135,178,226,262,273],"\u7528\u3044":[0,14,22,34,35,38,44,50,156,166,210,264,267,270,271,273,274,275],"\u7528\u3044\u308b":[0,22,23,65,261,268,270,271,272,278],"\u7528\u5909":42,"\u7528\u610f":[11,12,29,65,135,151,154,165,216,217,218,219,224,238,245,265],"\u7528\u8a9e\u96c6":[22,46,89],"\u7528\u9014":[0,23,24,25,27,31,32,41,42,44,80,83,92,135,210,214,220,259],"\u7530\u6cbc":42,"\u7530\u8fba":41,"\u7531\u6765":[158,195],"\u753b\u9762":[12,35,42],"\u7551\u30b1":[42,43],"\u7551\u30f6":42,"\u756a\u53f7":[12,41,42,51,78,134,135,152,153,154,158,210,239,255,259,261,275],"\u756a\u76ee":[34,41,68,69,93,104,112,114,115,118,135,146,191,196,197,210,211,268,271],"\u7570\u306a\u3063":[34,43,69],"\u7570\u306a\u308a":[34,42,196],"\u7570\u306a\u308b":[22,34,40,42,154,177,211,239,263,268],"\u7570\u5e38":[89,154],"\u7591\u4f3c":[40,41,42,78,92,105,178],"\u7591\u554f":273,"\u767a\u63ee":0,"\u767a\u751f":[0,12,29,34,35,40,41,42,43,44,54,65,68,83,123,140,264,265],"\u767a\u884c":261,"\u767a\u898b":34,"\u767a\u899a":44,"\u767b\u5834":92,"\u767b\u9332":[0,3,11,22,25,31,34,36,37,40,41,43,47,68,69,72,89,103,105,112,113,114,115,116,117,118,119,124,125,129,132,133,135,146,147,173,181,184,191,193,194,196,197,198,206,209,216,217,218,220,242,268,271,278],"\u7686\u5ddd":[42,44],"\u76ee\u304f\u3089\u3044":140,"\u76ee\u4ee5\u964d":135,"\u76ee\u5b89":12,"\u76ee\u7684":[29,41,146,158,273],"\u76ee\u8996":83,"\u76f4\u3057":[43,245],"\u76f4\u3059":[130,151],"\u76f4\u4e0b":38,"\u76f4\u524d":[59,236],"\u76f4\u5f8c":54,"\u76f4\u611f":276,"\u76f4\u63a5":[103,135,274],"\u76f4\u8fd1":151,"\u76f4\u8fd1n":151,"\u76f8\u5bfe":[12,38,135],"\u76f8\u5bfe\u30d1\u30b9":42,"\u76f8\u5f53":[83,269,271,278],"\u76f8\u5fdc":68,"\u76f8\u624b":10,"\u7701\u30b9\u30da\u30fc\u30b9\u30d0\u30fc\u30b8\u30e7\u30f3":43,"\u7701\u7565":[12,41,51,88,93,106,107,108,124,125,129,130,135,153,154,166,168,178,216,220,240,261,268,271,275],"\u771f\u306a\u3089":197,"\u771f\u507d":[41,43,44,196,197,246,268],"\u771f\u507d\u5024":[22,267],"\u77e5\u3089":226,"\u77e5\u308a":[112,134],"\u77e5\u308b":269,"\u77e5\u8b58":154,"\u77e9\u5f62":[0,167,278],"\u77ed\u3044":[36,43,274],"\u77ed\u304f":[0,34,198],"\u77ed\u6642\u9593":0,"\u77ed\u7e2e":[6,7,43,44],"\u7834\u58ca":[68,105,151],"\u7834\u640d":[34,44],"\u7834\u68c4":[54,66],"\u78ba\u4fdd":[34,44,54,57,62,121,266],"\u78ba\u5b9a":138,"\u78ba\u5b9f":[34,217],"\u78ba\u7387":138,"\u78ba\u8a8d":[3,10,34,35,42,44,65,68,83,87,92,98,103,104,117,118,121,135,142,149,151,154,155,158,161,196,210,228,265,266,268,271],"\u78ef\u90e8":41,"\u793a\u3055":141,"\u793a\u3057":[12,48,87,91,92,112,118,121,134,135,165,172,205,211,226,228,258,261,264,269,271,273,275],"\u793a\u3059":[47,63,83,87,102,105,106,112,114,115,117,122,134,135,141,161,162,165,166,167,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,199,211,212,213,255,268,276],"\u79cb\u8449":278,"\u79d2\u3088\u308a":37,"\u79d2\u5358":[246,268],"\u79d2\u5f62":246,"\u79d2\u5f8c":86,"\u79d2\u60c5":38,"\u79d2\u6570":[83,197,246,268,274],"\u79d2\u8868":[197,264,268,278],"\u79d2\u9593":38,"\u79d8\u5bc6":12,"\u79fb\u52d5":[12,16,32,38,40,91,111,121],"\u79fb\u884c":[38,82],"\u7a0b\u5ea6":[34,38,41,271],"\u7a2e\u5225":118,"\u7a2e\u985e":[1,11,12,22,34,38,43,44,47,62,63,66,68,78,80,87,91,120,121,134,135,138,140,146,153,154,158,196,197,211,212,213,216,217,219,220,228,261,264,267,271,275],"\u7a32\u7530":41,"\u7a4d\u307f\u91cd\u306a\u3063":41,"\u7a4d\u7528":135,"\u7a4d\u7b97":[11,135],"\u7a7a\u304d":[34,89,266],"\u7a7a\u6587":[34,42,44,96,97,98,196,246],"\u7a7a\u767d":[0,34,43,118,146,153,196,219,226,228,229,230,231,232,236,237,239,243,244,264,271],"\u7a7a\u914d":134,"\u7a7a\u9593":[92,121],"\u7a81\u7136":41,"\u7acb\u3061":83,"\u7acb\u3061\u4e0a\u304c\u3063":154,"\u7acb\u3061\u4e0a\u3052":154,"\u7acb\u3064":[151,210],"\u7acb\u3064\u304b":238,"\u7acb\u3066":34,"\u7acb\u5834":3,"\u7acb\u5ddd":44,"\u7adc\u4e4b":44,"\u7aef\u672b":0,"\u7b26\u53f7":[43,87,246,261,268],"\u7b49\u3057\u3044":[11,65,135,171,196,197],"\u7b49\u3057\u304f":[11,196,197],"\u7b49\u4fa1":[34,36,42,43,44,135,177,191,195],"\u7b49\u5024":36,"\u7b87\u6240":[12,41,83,179],"\u7b97\u51fa":[40,42],"\u7b97\u8853":41,"\u7ba1\u7406":[12,18,22,29,34,35,38,39,40,42,47,54,85,89,99,121,131,149,151,153,156,209,220,262,267],"\u7bc0\u7d04":34,"\u7bc4\u56f2":[0,22,34,40,41,42,43,44,61,65,69,78,82,92,113,117,135,161,166,167,205,210,220,264,267,268,274],"\u7bc4\u56f2\u5916":42,"\u7be0\u7530":[42,43,44],"\u7c21\u5358":[12,29,42,93,95,112,118,119,137,143,144,146,147,148,155,165,170,173,176,177,184,191,196,197,211,213,254,255,264,271,275],"\u7c21\u6613":[42,165,259],"\u7c21\u7565":[41,172],"\u7cbe\u5ea6":[43,44,197],"\u7cfb\u5ea7":[166,167],"\u7d00\u5143":43,"\u7d14\u7c8b":228,"\u7d1b\u3089\u308f\u3057\u3044":210,"\u7d20\u65b9":0,"\u7d20\u65e9":34,"\u7d20\u6734":269,"\u7d20\u89e3":[0,29,197,238],"\u7d22\u5f15":[11,22,34,35,36,42,51,76,92,262,264,268,271],"\u7d22\u6642":36,"\u7d22\u7528":[22,267],"\u7d2f\u7a4d\u548c":[112,114,115,135],"\u7d30\u5206":[238,268],"\u7d39\u4ecb":[3,12,42,112,114,115,135,274],"\u7d42\u3048":12,"\u7d42\u308f\u3063":[43,73,151],"\u7d42\u308f\u308b":[112,196,197,198],"\u7d42\u4e86":[12,34,36,40,41,42,43,54,66,73,82,104,114,127,131,136,149,151,153,154,165,168],"\u7d42\u4e86\u30bf\u30b0":168,"\u7d42\u7aef":[40,54,55,57],"\u7d44\u307f\u5408\u308f":[0,11,92,135,140,158,161,176,223],"\u7d44\u307f\u5408\u308f\u305b":[0,11,12,42,44,202,228,238,264,271],"\u7d44\u307f\u5408\u308f\u305b\u308b":176,"\u7d44\u307f\u8fbc\u307f":[22,34,43,46,55,81,92,103,118,121,122,146,154,155,160,165,209,247],"\u7d44\u307f\u8fbc\u3080":[0,11,153,155],"\u7d44\u307f\u8fbc\u3093":[0,42,43],"\u7d44\u5408":177,"\u7d44\u8fbc":[63,89,90,94,100,101,103,104,110,111,127,141,163,166,167,174,178,246],"\u7d44\u8fbc\u578b":[22,46],"\u7d4c\u5ea6":[22,197,246,268,274,278],"\u7d4c\u7531":[12,26,34,36,40,42,89,90,94,100,101,103,110,111,127,141,154,158,219],"\u7d4c\u7def":[246,268,278],"\u7d4c\u7def\u5ea6":[22,267,278],"\u7d4c\u904e":[38,49,65,82,83,137,158,197,246,268,274],"\u7d50\u3073\u3064\u3044":[9,273],"\u7d50\u3073\u3064\u304f":9,"\u7d50\u5408":[11,195,196],"\u7d50\u5408\u5f0f":40,"\u7d50\u57ce":[42,44],"\u7d50\u679c":[0,11,12,14,21,22,34,36,38,40,41,42,43,44,67,68,78,83,84,88,91,103,105,112,114,115,118,131,132,133,135,151,156,171,172,177,182,195,197,201,206,209,210,211,216,217,219,220,226,229,230,231,232,238,240,255,262,263,267,273,274,277,278],"\u7d5e\u308a\u8fbc\u307e":34,"\u7d5e\u308a\u8fbc\u307f":[0,34,171,271],"\u7d5e\u308a\u8fbc\u3080":[42,112,114,115,135,218],"\u7d5e\u308a\u8fbc\u3093":[0,41],"\u7d5e\u8fbc":[22,267],"\u7d71\u5408":[0,40,41],"\u7d71\u8a08":34,"\u7d76\u5bfe":[12,34,124,125,129,135,173],"\u7d99\u627f":41,"\u7d99\u7d9a":[21,40,137,153,242],"\u7d9a\u3044":264,"\u7d9a\u3051":[86,151,154],"\u7d9a\u3051\u308b":[135,151,238],"\u7dad\u6301":[0,44,212,213,255],"\u7db2\u7f85":155,"\u7dca\u6025":[153,199],"\u7dcf\u6570":114,"\u7dcf\u91cf":245,"\u7de8\u96c6":[3,12,14,29,35,40,44,155,163,197,209],"\u7de9\u3044":34,"\u7de9\u304f":162,"\u7de9\u3084\u304b":43,"\u7de9\u548c":245,"\u7def\u5ea6":[22,197,246,268,274,278],"\u7e26\u68d2":[92,140],"\u7e2e\u6a5f":92,"\u7e4b\u3052":42,"\u7e4b\u3052\u308b":10,"\u7e70\u308a\u8fd4\u3057":[17,34,154,197],"\u7e70\u308a\u8fd4\u3057\u6570":154,"\u7e70\u308a\u8fd4\u3059":36,"\u7f6e\u3044":[12,42],"\u7f6e\u304b":[29,155,156,209],"\u7f6e\u304d":[12,34,36,43,47,65,69,153,210,277],"\u7f6e\u304d\u63db\u3048":[17,42,153,196,214],"\u7f6e\u304f":[29,43,245],"\u7f6e\u304f\u4f8b":29,"\u7f6e\u63db":[44,135,197,277],"\u7f72\u540d":40,"\u7fa9\u8a9e":209,"\u7ffb\u8a33":[3,18,34,42],"\u8003\u3048":[0,10,135,142,196,197,245,255,269,271],"\u8003\u3048\u308b":[211,212,213],"\u8003\u3048\u65b9":42,"\u8003\u308b":210,"\u8003\u616e":[213,264,277],"\u8077\u5834":173,"\u80a5\u5927":[34,42],"\u8106\u5f31":34,"\u811a\u6ce8":[94,165,166,167,271],"\u81a8\u5927":[0,34],"\u81ea\u4f53":[42,196],"\u81ea\u5206":[10,12,17,23,92,117,142,154,155,206],"\u81ea\u52d5":[12,17,25,34,38,40,42,43,51,68,78,92,104,124,125,129,135,151,154,155,196,197,220,258,270,271,276],"\u81ea\u52d5\u5207\u308a":42,"\u81ea\u52d5\u7684":[112,114,115,135,154],"\u81ea\u5df1":274,"\u81ea\u5df1\u7d39":274,"\u81ea\u7136":34,"\u81ea\u7531":[0,11,78,199,261],"\u81ea\u8eab":[38,40,43,146,153,209],"\u81f3\u308b":268,"\u81f4\u547d":40,"\u8208\u5473":[0,43,210],"\u821e\u3044":[34,135],"\u826f\u3044":[10,197,265,273],"\u826f\u3044\u4f8b":10,"\u826f\u304f":[43,273],"\u826f\u4e8c":42,"\u82b1\u5b50":270,"\u82e6\u624b":0,"\u82f1\u8a9e":[2,12,17,18,19,34,38,42,44,224,228],"\u83ab\u5927":219,"\u840e\u7e2e":10,"\u843d\u3061":[36,41,44],"\u843d\u3061\u308b":[36,38,41],"\u8457\u4f5c":42,"\u884c\u3044":[11,12,43,44,65,68,69,152,153,154,177,262,264,270,271,273,274],"\u884c\u3046":[3,10,14,34,36,40,42,69,140,152,165,177,197,221,259,262,270,273,274,276,278],"\u884c\u3048":[14,42,177,196,271],"\u884c\u3048\u308b":[40,270],"\u884c\u3063":[12,14,34,42,269,278],"\u884c\u306a\u308f":40,"\u884c\u308f":[12,34,135,152,154,270],"\u884c\u6307\u5411":0,"\u884c\u6570":[34,38,153,158],"\u884c\u672b":210,"\u884c\u756a":[38,83],"\u884c\u76ee":[12,83,154],"\u884c\u982d":210,"\u885d\u7a81":[34,105],"\u8868\u3057":[11,78,82,83,87,114,122,135,205,210,213,239,246,265,271],"\u8868\u3059":[11,12,34,109,123,146,165,178,205,210,268,270],"\u8868\u3059\u578b":246,"\u8868\u308f":65,"\u8868\u73fe":[3,22,34,40,41,42,43,44,46,57,80,83,89,177,184,195,236,240,241,246,268,273],"\u8868\u7528":140,"\u8868\u793a":[0,12,22,29,34,35,36,38,39,40,41,42,43,44,63,82,89,112,114,115,135,141,153,154,173,176,207,261,264,267,268,270,273,278],"\u8868\u8a08":209,"\u8868\u8a18":[12,17,34,38,40,41,44,80,165,197,238,239,246,268,277,278],"\u88d5\u4e5f":[42,44],"\u88dc\u3046":0,"\u88dc\u5b8c":[22,36,41,44,46,124,125,129,138,158,176,206,215,219],"\u88dc\u5b8c\u7528":158,"\u88dc\u5b8c\u8a9e":216,"\u88dc\u6b63":[22,46,138,215],"\u88dc\u8db3":[34,155],"\u88fd\u4f5c\u6240":34,"\u88fd\u54c1":44,"\u8907\u6570":[0,10,11,12,22,34,35,36,38,40,41,42,43,44,47,50,51,57,59,63,80,85,92,102,112,114,115,118,130,131,135,138,140,141,144,146,153,154,155,156,158,168,171,172,177,196,199,202,204,210,211,214,216,228,236,238,239,240,254,262,264,267,268,270,271,272,274],"\u8907\u96d1":[11,40,41,43,135,197,210,236],"\u897f\u66a6":197,"\u8981\u4ef6":12,"\u8981\u6c42":[10,34,41,44,114,182,258,271],"\u8981\u7d04":12,"\u8981\u7d20":[11,34,40,41,43,44,68,80,83,87,93,122,154,179,191,271],"\u898b\u3048\u308b":[6,7],"\u898b\u305b":[135,214],"\u898b\u3064":[34,36,40,43,138],"\u898b\u3064\u304b\u3063":[114,135,191,218,226,228,265],"\u898b\u3064\u304b\u3089":68,"\u898b\u3064\u304b\u308a":[34,135,176,226,228,238,265],"\u898b\u3064\u304b\u308b":40,"\u898b\u3064\u304b\u308c":10,"\u898b\u3064\u3051":[10,34,35,40,114,135,216,238,239],"\u898b\u3064\u3051\u308b":[95,135,143,155,176,200,206,226,228],"\u898b\u3066":[83,91,92,112,114,115,121,135,140,155,171,177,191,216,247],"\u898b\u306a\u3057":69,"\u898b\u3084\u3059\u304f":34,"\u898b\u308b":[34,87,91,135,265],"\u898b\u4ed8":41,"\u898b\u4ed8\u3051":41,"\u898b\u76f4\u3057":42,"\u898b\u7a4d":43,"\u898b\u7a4d\u308b":[44,266],"\u898b\u8fbc\u3081":42,"\u898f\u5247":[40,112,114,115],"\u898f\u683c":69,"\u8996\u899a":[0,134],"\u89a7\u4e0b":14,"\u89aa\u5207":36,"\u89b3\u70b9":[42,172,197,266],"\u89d2\u62ec\u5f27":105,"\u89e3\u50cf":36,"\u89e3\u653e":[34,42,43,44,50,54,61,65,69,73,99,106,108,137],"\u89e3\u6790":[3,22,34,38,40,135,155,263],"\u89e3\u6c7a":[10,22,34,38,40,43,44,46,89,123,211,212,213,214,228,266],"\u89e3\u6c7a\u7b56":10,"\u89e3\u6d88":[35,41,43,44,65,80,101],"\u89e3\u8aac":34,"\u89e3\u91c8":[11,36,103,196,236],"\u89e3\u9664":[34,35,65,90,105,107,124,125,153],"\u89e6\u308b":43,"\u89e6\u308c":271,"\u89e6\u308c\u308b":228,"\u8a00\u3044":[43,76,142,182],"\u8a00\u3046":[80,92,113,213,216],"\u8a00\u3048":[196,242,264],"\u8a00\u53ca":[182,274],"\u8a00\u8a9e":[1,3,11,20,21,34,36,41,153,228,238],"\u8a00\u8a9e\u540d":17,"\u8a02\u6b63":209,"\u8a08\u6e2c":[14,35,38],"\u8a08\u753b":34,"\u8a08\u7b97":[0,34,35,40,41,42,112,114,115,132,135,137,158,163,165,166,173,197,205,211,212,213,216,217,219,245,246,278],"\u8a18\u4e8b":[12,198,273],"\u8a18\u53f7":[34,36,153,202,223,228,229,230,231,232,233,234,235,238,239,262,264,271],"\u8a18\u6cd5":[34,197,273],"\u8a18\u8f09":[12,40,44,265],"\u8a18\u8ff0":[11,12,43,44,153,154,271,273,274],"\u8a18\u9332":[0,34,40,43,44,78,104,124,129,135,199],"\u8a2d\u5b9a":[14,20,22,24,25,27,28,31,32,34,35,36,37,40,41,42,43,44,46,47,48,50,54,62,63,66,70,78,80,88,96,97,98,104,105,109,110,113,114,135,136,145,153,157,162,177,209,210,216,239,245,254,259,266,273,278],"\u8a2d\u5b9a\u5024":[35,266],"\u8a2d\u5b9a\u6e08\u307f":259,"\u8a2d\u6a02":38,"\u8a2d\u8a08":[135,259],"\u8a31\u5bb9":34,"\u8a3a\u65ad":44,"\u8a55\u4fa1":[11,34,41,43,92,105,132,134,135,182,196,197,210],"\u8a66\u3057":[10,43,153],"\u8a66\u3059":[6,7,153,226,254],"\u8a66\u3059\u4f8b":226,"\u8a66\u884c":0,"\u8a70\u3081":63,"\u8a71\u3057":3,"\u8a71\u984c":2,"\u8a72\u5f53":[42,50,51,65,68,69,120,161,168,169,171,172,179,265,273],"\u8a72\u5f53\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":43,"\u8a72\u5f53\u884c":34,"\u8a73\u3057\u3044":135,"\u8a73\u3057\u304f":[0,268,271],"\u8a73\u7d30":[1,14,17,24,25,27,29,31,34,40,41,42,43,44,50,63,64,67,80,83,85,91,92,93,99,104,112,114,115,117,121,122,124,125,129,134,135,136,137,139,140,142,143,144,146,151,154,155,156,177,196,197,199,206,209,210,238,245,246,247,259,264,269,271,278],"\u8a8d\u8a3c":[155,254,275],"\u8a8d\u8b58":10,"\u8a9e\u4ee5":[197,238],"\u8a9e\u5165":206,"\u8a9e\u53e5":[34,41,43,270],"\u8a9e\u5e79":224,"\u8a9e\u5f59":[22,33,34,43,44,104,140,142,144,200,210,220,225,262,267,273],"\u8a9e\u5f59\u8868":[34,92,144,210,271,273],"\u8a9e\u6271":262,"\u8a9e\u691c":135,"\u8a9e\u7248":12,"\u8a9e\u7528":[224,238],"\u8a9e\u8a33":34,"\u8aa4\u3063":[12,34,40,41,42,43,44],"\u8aa4\u308a":[34,40,41,42,43,44],"\u8aa4\u52d5\u4f5c":43,"\u8aa4\u5b57":[34,36,38,40,41,43,44,209],"\u8aa4\u5dee":[38,165,166],"\u8aac\u660e":[3,5,6,7,8,11,12,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,40,41,42,43,44,46,47,80,81,83,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,126,127,130,131,132,133,134,135,136,137,139,140,141,142,143,144,145,146,147,148,150,151,153,155,158,160,169,170,177,196,197,204,209,210,211,212,213,214,215,216,217,219,228,245,247,261,262,264,265,268,269,271],"\u8aad\u307f":[0,12,34,35,84,176,195,202,215,238],"\u8aad\u307f\u3084\u3059\u3044":39,"\u8aad\u307f\u51fa\u3057":0,"\u8aad\u307f\u53d6\u308a":[95,143,153],"\u8aad\u307f\u8fbc\u307f":[34,38,41,42,124,129,133,209,271],"\u8aad\u307f\u8fbc\u3080":[35,133,219],"\u8aad\u307f\u8fbc\u3081":34,"\u8aad\u307f\u8fbc\u3081\u308b":103,"\u8aad\u307f\u8fbc\u3093":[105,133,261],"\u8aad\u307f\u98db\u3070":271,"\u8aad\u3081":40,"\u8aad\u3093":[3,21],"\u8ab0\u304b":3,"\u8ab0\u304c":274,"\u8ab0\u3067":42,"\u8ab2\u7a0b":41,"\u8ab2\u984c":[3,22],"\u8abf\u3079":[12,59,65,166,167,269],"\u8abf\u3079\u308b":[41,63,144,166,167,266],"\u8abf\u6574":[34,44,92,135,195,226,264,266],"\u8abf\u67fb":[43,63,121,265],"\u8ad6\u7406":[0,11,33,40,43,44,89,112,114,115,116,135,171,214],"\u8ad6\u7406\u548c":[11,135,197,226],"\u8af8\u6761":33,"\u8b58\u5225":158,"\u8b66\u544a":[6,7,34,36,39,40,41,42,82,135,153,199],"\u8b70\u8ad6":19,"\u8ca0\u62c5":10,"\u8ca0\u6570":[40,49],"\u8ca0\u8377":[36,155],"\u8ca2\u732e":41,"\u8ce2\u304f":99,"\u8d64\u9053":165,"\u8d70\u67fb":42,"\u8d77\u304d":34,"\u8d77\u3053\u3063":[34,95,143],"\u8d77\u3053\u308a":277,"\u8d77\u52d5":[12,25,32,36,40,41,43,82,137,153,154,156,207,255,258,271],"\u8d77\u52d5\u6642":158,"\u8d77\u6e90":268,"\u8d85\u3048":[41,44,264],"\u8d85\u3048\u308b":[34,40,69,220,266,268],"\u8d85\u904e":[41,121,266],"\u8d8a\u3048":[42,43,264],"\u8d8a\u3048\u308b":[42,43,44,264],"\u8db3\u3057":197,"\u8db3\u308a":[38,209],"\u8ddd\u96e2":[0,35,40,44,163,165,166,173,197,205,278],"\u8ee2\u7f6e":[22,40,43,44,51,76,92,197,270,271],"\u8efd\u3044":[95,120,122,143],"\u8efd\u5fae":[153,155],"\u8f09\u305b\u308b":12,"\u8f9e\u66f8":[27,28,35,36,40,41,42,43,44,238,264],"\u8f9e\u691c":[38,197,220],"\u8f9e\u7121":[34,153],"\u8fbc\u307f":[111,209],"\u8fbf\u308b":12,"\u8fd1\u3044":[34,44,69,121,152,173,197,214],"\u8fd1\u3044\u9806":205,"\u8fd1\u304f":[0,205],"\u8fd1\u4f3c":[38,40,165,166],"\u8fd1\u508d":[40,42,44,177,195],"\u8fd4\u3055":[34,40,42,44,56,65,82,89,138],"\u8fd4\u3057":[11,34,41,42,43,44,49,50,51,52,54,55,56,59,61,64,65,68,69,70,72,74,88,93,95,96,97,98,102,105,106,107,108,109,112,113,114,116,119,120,121,122,123,130,131,132,133,134,135,137,138,144,145,146,147,148,161,162,163,165,166,167,168,169,170,171,172,173,174,176,177,178,179,180,182,184,191,193,197,212,213,216,217,218,219,255,271,274,277,278],"\u8fd4\u3059":[34,35,36,38,40,41,42,43,44,51,54,57,70,90,94,99,100,101,110,111,112,114,115,122,135,138,145,153,154,158,161,173,174,197,255,261,278],"\u8fd4\u3059\u304b":138,"\u8fd4\u3059\u4f8b":193,"\u8fd4\u3059\u65b0\u3057\u3044":[43,44],"\u8fd4\u305b":171,"\u8fd4\u3063":[42,43,145,196,197],"\u8fd4\u308a":[112,114,115,135,142,145,269,278],"\u8fd4\u308a\u5024":[41,42,43,44],"\u8fd4\u308b":[36,43,44],"\u8fd4\u4fe1":[10,273,274],"\u8fd4\u4fe1\u5143":274,"\u8fd4\u4fe1\u5148":274,"\u8fd4\u5024":89,"\u8fd4\u5374":[44,141,271],"\u8ff0\u3079":271,"\u8ff0\u8a9e":43,"\u8ffd\u3046":265,"\u8ffd\u3063":265,"\u8ffd\u52a0":[0,3,11,12,18,22,24,25,27,29,31,33,34,35,36,37,38,39,40,41,42,43,44,46,47,51,55,57,59,63,65,67,68,74,78,84,85,86,91,92,96,97,98,99,100,103,104,105,106,107,108,112,113,114,115,116,117,120,121,122,123,124,125,126,130,131,134,135,136,137,139,142,145,146,148,149,151,153,155,162,164,169,171,172,173,176,180,181,184,191,192,193,194,196,197,198,202,209,210,212,213,214,218,220,221,223,225,238,241,247,249,250,251,259,261,264,268,269,270,271,273,276],"\u8ffd\u8a18":[12,40,43],"\u8ffd\u8de1":[3,22],"\u9000\u907f":99,"\u9001\u3063":[3,16,17,19],"\u9001\u308a":[12,261],"\u9001\u308a\u65b9":[3,22,29,275],"\u9001\u308b":[17,19,255,261],"\u9001\u4fe1":[34,41,89,90,94,100,101,103,110,111,127,131,141,154,158],"\u9006\u306b":[270,274],"\u9006\u5f15":270,"\u9006\u5f15\u304d":[22,267,274],"\u9006\u6587\u66f8\u51fa":42,"\u9006\u9806":271,"\u9010\u6b21":[0,42,210,241],"\u9014\u4e2d":[12,40,42,153,216,217,261],"\u901a\u3058":34,"\u901a\u308a":[6,7,8,12,18,21,29,31,34,47,53,63,91,92,93,102,103,105,112,113,114,115,116,118,122,134,135,136,138,140,141,146,151,153,155,158,161,162,165,166,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,199,202,205,206,210,211,212,213,219,223,224,228,230,231,232,240,242,245,264,273],"\u901a\u4fe1":[3,4,22,152,154,155,156,158],"\u901a\u5e38":[34,40,42,43,47,54,70,78,83,92,93,99,104,112,113,114,115,117,121,122,123,134,135,137,146,151,153,155,158,196,201,203,206,209,210,236,245,246,268,271],"\u901a\u77e5":[12,131,153,199],"\u901f\u3044":[42,43,92,114,220],"\u901f\u304f":[29,34,43,92,140,270],"\u901f\u3084\u304b":82,"\u901f\u5ea6":[34,38,41,43,92,154,220,270],"\u9023\u4f53\u5316":238,"\u9023\u643a":0,"\u9023\u7d50":[40,41,43,65,273],"\u9023\u7d61":17,"\u9023\u7d9a":[41,43,65,146,217,229,230,231,232,262,264],"\u9032\u3081":[3,4,22,44],"\u9032\u3093":0,"\u9032\u6357":34,"\u9032\u6570":[89,197],"\u9045\u3044":[92,165,211,220],"\u9045\u304f":[43,44,153,155,166,196,197,210,213,269],"\u9045\u3089":44,"\u904b\u7528":[0,34],"\u904e\u53bb":[12,44],"\u904e\u7a0b":[34,78],"\u9054\u3057":245,"\u9054\u3059\u308b":[33,69],"\u9055\u3044":[34,92,114,121,135,140,165,171,196,210,229,230,231,232,233,234,235,237,243,244,255,268,271,273,278],"\u9055\u3046":[36,92,115,158],"\u9055\u3063":216,"\u9069\u3057":[0,92,140,198,211,212],"\u9069\u5207":[0,34,36,42,43,44,92,112,115,135,140,146,154,210,213,226,228,236,237,271],"\u9069\u5408":[226,228,238,264,271],"\u9069\u5408\u7387":226,"\u9069\u5b9c":[12,42],"\u9069\u6642":59,"\u9069\u7528":[34,42,44,57,112,114,115,135,145,197,245,271],"\u9078\u3073":[33,218],"\u9078\u3076":[0,135,155],"\u9078\u3079":[5,135],"\u9078\u3093":[44,84,140],"\u9078\u629e":[0,12,42,43,44,57,114,135,158,165,172,176],"\u907f\u3051\u308b":135,"\u90e8\u5206":[11,14,29,34,42,43,44,83,135,158,171,196,197,264,274],"\u90fd\u6c11":[262,264],"\u914d\u4e0b":[12,156],"\u914d\u5217":[11,34,36,38,40,42,44,51,55,65,66,68,80,83,89,93,114,118,119,121,122,134,135,140,141,146,147,179,196,220,262,268,270,271,274],"\u914d\u5e03":[23,24,25,26,27,31,32,40,42],"\u914d\u7f6e":[12,271],"\u91cd\u3044":[0,34,104,135],"\u91cd\u304f":264,"\u91cd\u306a\u3063":41,"\u91cd\u307f":[22,34,40,41,92,93,134,135,177,196,211,264,267],"\u91cd\u307f\u3064\u304d":42,"\u91cd\u307f\u4ed8\u304d":[42,135],"\u91cd\u307f\u4ed8\u3051":[135,264],"\u91cd\u8907":[34,42,43,44,68],"\u91cd\u8981":[0,10,12,14,29,43,50,54,80,81,135,140,146,155,198,211,212,213,226,255,272,273],"\u91cd\u8996":[198,264],"\u91ce\u9996":42,"\u91cf\u6307":210,"\u91cf\u8a08":35,"\u9234\u6728":40,"\u932f\u8aa4":0,"\u9577\u3044":[43,44,63],"\u9577\u304f":44,"\u9577\u3055":[34,40,51,65,68,69,71,154,268],"\u9577\u3059\u304e\u308b":[34,41],"\u9577\u4ee5\u4e0a":[65,68],"\u9577\u5185":[42,43],"\u9577\u5185\u6b69":[42,43],"\u9577\u578b":[69,93,121],"\u9577\u65b9\u5f62":38,"\u9577\u6642\u9593":[131,151],"\u9577\u671f\u9593":34,"\u9577\u751f\u304d":140,"\u9577\u91ce":42,"\u9577\u97f3":[34,202,223],"\u9589\u3058":[38,44,142,220],"\u9589\u3058\u308b":[35,38,43,220],"\u958b\u3044":[34,36,38,41,43,90,101,104,142,151,200],"\u958b\u304b":[34,43,54,104,122,151],"\u958b\u304d":[50,55,122,130,142,245],"\u958b\u304f":[34,38,40,43,44,50,200,245,271],"\u958b\u304f\u969b":40,"\u958b\u3051":[40,43],"\u958b\u3051\u308b":40,"\u958b\u3053":55,"\u958b\u59cb":[14,38,41,42,65,95,135,143,154,165,168,199],"\u958b\u653e":[34,43,108],"\u958b\u767a":[0,3,5,6,7,8,12,21,22,23,24,25,27,31,32,34,40,41,42,43,44,82,83],"\u9593\u9055\u3063":[34,38,40,41,42,43,44,151,217,218],"\u9593\u9694":34,"\u95a2\u308f\u3089":[135,154],"\u95a2\u4fc2":[11,13,22,23,39,40,44,92,95,143,196,267,268,274],"\u95a2\u4fc2\u5f0f":3,"\u95a2\u6570":[11,22,34,35,36,39,40,41,43,44,46,47,49,54,63,66,70,74,83,111,120,121,122,145,153,158,161,163,165,166,167,169,170,171,172,173,174,176,177,178,181,182,184,191,193,194,211,212,213,278],"\u95a2\u9023":[0,2,3,10,12,21,22,24,25,27,29,31,34,38,39,40,41,42,43,44,70,102,104,146,151,158,195,200,210,218,219,245,247,259,266,267,268,271],"\u95b2\u89a7":275,"\u95be\u5024":[22,29,38,42,43,54,64,135,138,153,262,263],"\u9632\u304e":[34,41,142],"\u9632\u3050":[105,117,197,213],"\u964d\u5411\u3051":104,"\u964d\u9806":[68,69,114,135,138,158,271],"\u9650\u3063":65,"\u9650\u3089":10,"\u9650\u308a":[11,34,65,78,145,262,264],"\u9650\u5b9a":[151,210],"\u9650\u6587":[38,140],"\u9664\u3044":[112,117,154,172,179,202,238],"\u9664\u304f":[40,115,135],"\u9664\u3051":68,"\u9664\u53bb":[36,41,44,144,170,225,236,238],"\u9664\u5916":[34,103,238],"\u9664\u7b97":[34,42],"\u9665\u3063":40,"\u968e\u5c64":11,"\u969c\u5bb3":34,"\u96a0\u3055":34,"\u96a3\u308a\u5408\u3063":228,"\u96a3\u63a5":[0,196],"\u96c5\u5e83":42,"\u96c6\u307e\u3063":269,"\u96c6\u307e\u308a":[135,158],"\u96c6\u3081":269,"\u96c6\u5408":[40,68,76,80,122,135,195,210],"\u96c6\u8a08":[22,43,135,269],"\u96e2\u308c":[44,197,278],"\u96e3\u3057\u3044":0,"\u96fb\u8a71":239,"\u9759\u7684":[3,22,34,40,41,42,43,44,46,153,156,271],"\u975e\u308f":262,"\u975e\u308f\u304b\u3061":264,"\u975e\u4e92":[34,40,41,42,43,44],"\u975e\u4e92\u63db":[38,42,43],"\u975e\u5168":92,"\u975e\u516c\u958b":12,"\u975e\u5206":135,"\u975e\u5e38":[40,44,210,211,212,213,255],"\u975e\u63a8":[34,38,40,41,42,43,44,74,90,115,129,135,137,140,153,165,248],"\u975e\u63a8\u5968":[40,43],"\u975e\u81ea":44,"\u975e\u81ea\u7acb":[202,238],"\u975e\u81ea\u7acb\u8a9e":[202,238],"\u975eascii":[228,229,230,231,232,243,244],"\u97f3\u3068":34,"\u9805\u76ee":[34,35,43,47,89,96,97,98,135,140,149,255,259,272],"\u9806\u4f4d":59,"\u9806\u5e8f":[34,44,112,114,115,135,141,264,271],"\u9806\u6b21":[152,153,261,271],"\u9806\u756a":[12,61,69,114,115,135,153,196,197,264,271],"\u9818\u57df":[29,34,40,42,65,68,92,121,278],"\u982d\u6587":261,"\u982d\u8f9e":[34,220],"\u983b\u51fa":43,"\u983b\u5ea6":[34,43,138,144],"\u983b\u7e41":[29,34,68],"\u9855\u8457":228,"\u985e\u3059\u308b":34,"\u985e\u4f3c":[11,34,40,41,42,138,177,195],"\u985e\u4f3c\u5ea6":34,"\u985e\u7d39":264,"\u985e\u7fa9":135,"\u98df\u3044\u9055\u3063":151,"\u98df\u3079":223,"\u99c4\u76ee":10,"\u9ad8\u3044":[0,34,89,92,135,138,155,158,226,271],"\u9ad8\u3044\u9806":271,"\u9ad8\u304f":[43,80,212,264,273],"\u9ad8\u307e\u3063":0,"\u9ad8\u5ea6":[195,196,220],"\u9ad8\u6a5f":[0,11],"\u9ad8\u7cbe":0,"\u9ad8\u901f":[0,11,34,35,38,41,44,76,92,112,114,115,135,140,165,166,196,197,205,210,211,213,220,241,254,255,270,271],"\u9b3c\u96f2":[34,43,44],"\u9bae\u5ea6":198,"\u9df2\u7530":41,"\u9df2\u7530\u57fa":41,"\u9ed2\u3044\u70b9":205,"\ufe63\uff0d":[202,223],"\uff01:":29,"\uff01\u300d":[112,114,115,135,196,197],"\uff01\u3057":2,"\uff01\uff08":17,"\uff01\uff09":[216,217],"\uff01\uff1f":236,"\uff08*":5,"\uff08,":271,"\uff08-":[135,271],"\uff08.":12,"\uff08=":[33,98,117,135,137,149],"\uff08@":[36,38],"\uff08\u300c":[201,264],"\uff08\u3064\u307e\u308a":104,"\uff08\u3069":135,"\uff08\u307e\u3060":34,"\uff08\u30ad\u30fc":43,"\uff08\u4f8b":[34,43],"\uff08\u578b":71,"\uff08\u79d2":65,"\uff08\uff1d":214,"\uff08age":140,"\uff08and":195,"\uff08byte":[51,65],"\uff08ci":21,"\uff08document":[42,213],"\uff08eol":[34,43],"\uff08gnu":29,"\uff08groonga":43,"\uff08homebrew":12,"\uff08kana":206,"\uff08least":88,"\uff08longest":[38,197],"\uff08markdown":12,"\uff08messagepack":29,"\uff08n":34,"\uff08node":21,"\uff08normalization":[34,201,202,203,223],"\uff08not":195,"\uff08or":195,"\uff08perl":155,"\uff08personal":[22,23],"\uff08pid":199,"\uff08piro":[42,44],"\uff08proc":59,"\uff08romaji":206,"\uff08rroonga":43,"\uff08ruby":21,"\uff08score":135,"\uff08term":[211,212,213],"\uff08textile":12,"\uff08tf":211,"\uff08therubyracer":12,"\uff08todo":197,"\uff08tokenbigram":264,"\uff08tokenmecab":264,"\uff08true":268,"\uff08truncate":151,"\uff08virtualbox":12,"\uff08world":246,"\uff09:":[24,25,27,28,30,31,132,133,199,262],"\uff09\u3001":[12,211,212,213,220,262],"\uff09\u3002":[12,34,43,199,264,271],"\uff09\u300d":236,"\uff09\u304b":33,"\uff09\u307e\u305f":[118,146,196,197],"\uff09\uff08":[92,140],"\uff11\u3064":[9,93],"\uff11\u5bfe":9,"\uff12\u3064":278,"\uff13\u3064":246,"\uff1a\u300c":34,"\uff1b[":12,"\uff1f\u300c":236,"\uff1f\u300d":269,"\uff1f\uff09":43,"\uff1f]":236,"\uff4d\uff59\uff53\uff51\uff4c":[168,169],"\uff65\"":[202,223],"\uff76\uff9e":201,"\uffef\"":241,"\ufff0\"":[239,241],"\ufffecrch":146,"\ufffetext":146,"] [":154,"] \u6708":43,"]%":210,"]'":[34,155,255],"](":[12,34],"])":[44,49,166,168,178,236],"]+":236,"],":[47,80,83,89,91,92,93,95,96,99,102,105,112,114,115,116,117,118,119,121,122,123,131,134,135,137,138,141,142,143,146,147,148,153,154,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,201,202,203,210,211,212,213,216,217,219,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,261,264,268,269,270,271,273,274,275,276,277,278],"].":[34,42,43,44,112,114,115,135],"]/":275,"]:":[34,44,210,265],"][":[34,38,39,40,41,42,43,44,47,92,96,117,123,135,142,196,210],"]\"":[34,40,41,105,210,274],"]\n#":239,"]\u3002":42,"]]":[43,63,100,102,117,144,153,154,239],"]]]":[100,197,264],"]ello":43,"]x":274,"]}":[43,89,176,182,268],"^ \"":[34,91,92,176,197],"^\"":177,"^commit":12,"_$":[92,138,140],"_')":78,"_*":[22,34,46,48,113],"_-":239,"_\"":[38,117],"_db\u30d5\u30e9\u30b0":38,"_{":41,"`/":18,"`hostname":153,"b\u30c6\u30fc\u30d6\u30eb":44,"boolean":[45,134],"byte":[40,43,51,65,68,154,179,261],"c\u30e9\u30f3\u30bf\u30a4\u30e0":43,"case":[74,129,159],"char":[42,51,54,55,56,57,63,65,66,68,70,71,74],"ci\u4e00\u822c":21,"ci\u4e0a":21,"class":[34,168,169,170,179,238,239],"const":[39,51,54,55,56,57,63,65,66,68,69,71,74],"continue":42,"cpu\u30b3\u30a2":[6,7,153,158,254],"d\u30ad\u30fc":271,"dat\u30ad\u30fc":41,"db)":104,"default":[34,40,63,84,86,92,112,114,115,122,130,134,135,137,138,141,142,143,144,153,154,155,158,162,168,169,171,179,182,191,196,197,198,207,210,211,212,213,221,224,225,239,240,242,245,255,261,264,271,273,274,275,277],"delete":[12,22,34,35,36,38,44,46,65,81,96,104,105],"dll\u30d1\u30b9":34,"do":[34,42,154],"double":[43,134,197],"else":[43,265],"enter\u30ad\u30fc":41,"enum":55,"error\u30bf\u30b0":40,"export":18,"false":[12,34,36,41,42,44,90,91,92,94,95,96,98,99,100,102,106,107,108,109,110,111,115,117,120,121,122,123,130,131,134,142,146,148,158,161,168,171,172,177,182,196,197,202,223,226,228,229,230,231,232,233,234,235,236,237,238,239,241,243,244,246,268,276],"final":[202,223],"float":[40,43,44,112,114,115,121,122,134,135,165,207,212,213,268],"for":[8,32,40,45,49,53,54,55,57,58,65,70,74,148,153,155,157,159,165,179,197,238,245,246,253,259,274],"function":[43,44,45,54,74,83,160,247,261],"geopoint\u9593":38,"get\u30e1\u30bd\u30c3\u30c9":156,"gib\u304f\u3089\u3044":245,"gmo\u30e1\u30c7\u30a3\u30a2":42,"html\u30bf\u30b0":170,"id\u9806":69,"if":[11,43,49,51,53,54,55,58,65,66,68,70,73,74,80,153,155,157,159,197,253,265],"import":12,"in":[11,14,22,34,40,42,43,44,46,51,53,54,55,57,58,65,74,89,92,129,135,146,153,159,160,179,196,253,259,274,277],"int":[34,36,40,41,42,43,44,49,50,51,54,55,57,58,59,60,61,63,64,65,66,68,69,70,71,74,80,91,95,115,121,122,134,135,138,140,143,148,158,161,162,165,173,177,178,196,197,207,211,212,213,216,217,219,264,268,269,270,271,273,274,278],"long":[43,60,64,131],"mo\u30d5\u30a1\u30a4\u30eb":17,"new":[12,47,54,65,70,74,91,135,153,274],"nginx\u3089\u3057\u3044":42,"null":[11,34,38,40,41,43,44,50,51,54,55,57,58,61,65,66,68,69,70,74,114,121,122,133,134,135,143,162,168,169,170,179,184,191,193,239,265],"package":[12,22,23,259],"po\u30d5\u30a1\u30a4\u30eb":17,"post\u30e1\u30bd\u30c3\u30c9":41,"processid\u304b":34,"return":[34,54,70,73,83,105,199,265],"sort\u30ad\u30fc":35,"static":70,"this":[40,51,53,54,55,65,74,112,114,115,135,153,155,157,179,196,197,236,255,268,271,273,275,277],"true":[35,41,42,43,44,47,80,90,91,92,93,94,95,96,97,98,99,100,102,104,105,106,107,108,109,110,111,112,113,114,115,116,117,120,121,122,123,124,125,129,130,131,132,133,134,135,136,139,140,142,143,144,148,158,161,162,165,166,167,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,202,206,210,211,212,213,221,223,224,225,238,239,240,242,246,268,269,270,271,273,276,277,278],"try":[49,274],"var":[11,29,74,93,151,153,155],"void":[39,49,52,55,56,63,64,65,68,69,70,73,74],"while":55,"with":[6,12,21,28,29,34,38,42,43,44,51,54,58,65,74,80,89,92,93,118,121,134,153,155,159,179,202,210,264,271],"x\u30df\u30ea":[197,246],"{\"":[34,43,80,89,112,113,114,115,116,117,121,132,133,138,154,168,169,177,196,197,198,210,212,213,216,217,219,224,225,239,240,242,273],"{\"_":[47,135,161,171,173,196,197,268,270,278],"{column":210,"{id":34,"{key":135,"{label":[115,135],"{language":17,"{logical":214,"{name":[112,114,115,135,197],"{path":29,"{prefix":[29,124,125,129],"{table":[135,177],"{time":[34,199],"{user":245,"{yyyymm":214,"{yyyymmdd":214,"| _":[176,278],"| c":197,"| n":197,"| y":41,"|..":42,"|:":199,"|<":[47,199],"|>":199,"|[":236,"|allow":[135,177,196],"|b":210,"|cache":63,"|column":92,"|correct":[138,158],"|destination":63,"|enable":146,"|full":210,"|ga":135,"|http":154,"|index":92,"|info":210,"|key":[44,140,196,197,276],"|mark":44,"|message":[151,153],"|n":43,"|ng":135,"|on":135,"|oo":135,"|orange":240,"|persistent":[93,95,122,143],"|pid":[44,151],"|query":135,"|result":63,"|ring":158,"|ro":135,"|score":63,"|size":63,"|suggest":138,"|table":140,"|with":[42,80,92,93,112,114,115,118,122,130,134,135,158,168,169,177,179,182,196,197,198,210,211,212,213,224,225,239,245,264,271,273,274,277],"||":[11,34,40,41,112,114,115,135,197,211,273],"}'":34,"}(":63,"},":[63,80,95,115,116,117,119,121,122,134,135,143,146,147,148,154,170,176,177,191,193,196,197,198,202,210,226,228,229,230,231,232,233,234,235,236,238,239,241,270,271,273,274,276,277],"}.":[123,135,177],"}/":[17,29,44,124,125,129],"}:":[158,199,210],"}\\":[44,197],"}]":[34,43,44,84,105,131,132,133,153,154,207],"}_":[112,114,115,214],"}attr":41,"}e":197,"}|":[34,199],"}}":80,"~ \"":[43,197,210],"~${":210,"~*":57,"~\"":[34,44,177],"~number":197,"~uint":43,__:239,_a:[87,261],_abs:[22,34,46,160],_accept:265,_accepted:131,_accessor:43,_account:17,_acquire:[22,43,46,81,108],_add:[34,44,57,59,68],_address:[87,261,275],_adjust:[11,44,67,135],_adjuster:34,_age:[92,161],_algorithm:224,_all:[34,43,44,54],_alloc:[57,74],_allowed:[87,261],_alphabet:34,_already:[87,261],_and:[11,34,67],_animal:268,_api:57,_append:[11,34,57,60,65],_apply:34,_arg:87,_argument:[65,68,69,87,261],_arguments:43,_asc:68,_ascending:69,_asterisk:34,_at:[34,36,39,40,43,44,54,57,65,68,112,114,115,184,211,213,264],_auto:[40,41],_available:[87,261],_avg:135,_avoided:[65,87,261],_bad:87,_base:[34,43,74],_basic:[155,255],_batch:42,_be:134,_between:[34,42],_binary:40,_blank:[34,44,118],_block:[87,261],_blog:273,_body:[112,130,264,273,277],_bool:[36,44,54,65],_broken:87,_bu:34,_buffer:[54,60,87,158,261],_build:14,_builtin:[38,55,65,71],_bulk:[34,44,54,57],_busy:[87,261],_but:11,_by:[34,37,38,39,42,43,57,65,68,69,74,171,274],_byte:[87,134,261],_bytes:122,_cache:[22,34,41,43,46,48],_calc:42,_call:[11,87,131,261],_caller:34,_calloc:44,_cancel:[22,34,42,44,46,81,85,86,87],_canceler:44,_cas:87,_case:[34,43],_cast:[43,65],_character:57,_characters:57,_charlen:74,_check:[14,42,65],_checks:118,_child:[87,261],_chunk:[43,44],_chunked:43,_chunks:44,_circle:[22,38,41,44,46,160,270,274,278],_class:[34,135,202],_classify:[22,34,44,46,114,135,160],_clear:[22,34,38,42,43,46,65,81,90,106,108],_client:197,_clone:12,_close:[11,38,42,43,50,54,57,60,61,65,69,74],_code:[34,63,74,83,105,199],_column:[22,34,36,41,42,43,44,46,47,48,61,65,91,93,95,104,114,134,135,142,154,177,196,262],_columns:[22,34,36,40,41,42,43,44,68,80,91,92,100,112,138,160,162,165,168,169,170,171,172,173,176,179,182,184,191,193,196,197,198,199,211,212,213,224,225,239,240,242,264,267,268,269,270,271,274,277,278],_com:265,_command:[22,42,43,46,48,54,74,83,84,87,137,155,207,255,261,271,275],_comment:182,_commit:60,_compare:65,_compile:57,_compress:[44,51],_concurrency:152,_cond:70,_condition:34,_conditions:34,_conf:43,_config:[12,43,96],_configs:103,_configure:[34,41],_connected:[87,261],_connection:87,_const:[11,34,57],_content:[22,46,48,54,57,83,112,114,115,122,134,135,177,179,182,196,197,224,225,245,273],_control:[43,87,261],_controllen:43,_copy:[22,34,43,44,46,47,81],_corrupt:[34,87,261],_count:[22,34,43,46,81,84,114,115,137,153,155,207,214,247,261,266,271,275],_creat:34,_create:[11,22,34,37,38,40,41,42,43,44,46,47,51,55,57,66,68,71,74,80,81,91,93,95,102,103,104,105,106,107,108,112,114,115,116,117,120,121,122,123,130,134,135,142,143,144,148,153,154,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,201,206,210,211,212,213,214,220,221,224,225,239,240,242,245,264,268,269,270,271,273,274,276,277,278],_ctx:[22,34,38,40,42,43,44,46,48,49,50,51,53,55,57,58,59,60,61,62,63,64,65,66,67,68,69,71,72,74,87,113],_cumulative:[112,114,115,135],_current:50,_cursor:[22,34,36,41,43,44,46,48,58],_dat:[33,34,38,39,41,42,44,68,91,121,134,140,196,197],_data:[22,34,43,46,48,66,74,87,261],_database:[40,41,99,255],_dataset:[37,157,159,219],_date:12,_day:[22,34,44,46,160],_db:[22,36,37,38,39,42,43,44,46,48,54,57,65,104],_deadlock:[65,87,261],_debug:[7,14],_decr:65,_default:[34,40,43,52,56,63,64,255],_defrag:65,_del:43,_delete:[22,38,43,46,59,65,68,69,81,97,98,149],_delimited:45,_delimiter:[118,146],_denied:[87,261],_dependent:44,_desc:68,_descending:69,_descriptor:[87,261],_device:[87,261],_df:34,_diff:34,_difference:68,_digit:34,_dir:[12,34,38,43,74],_directory:[87,261],_disable:[34,44],_disk:34,_dist:40,_distance:[22,34,35,38,40,41,44,46,160,197,270,278],_domain:87,_dot:34,_down:[87,261],_drilldown:135,_dump:43,_ecmascript:[47,135],_element:[43,62],_elements:[44,122],_empty:[87,261],_enabl:34,_enable:[34,43,44],_enabled:43,_enc:[56,63,69],_encoding:[22,34,46,48,63,74],_end:87,_enough:[34,44,87,261],_entries:[50,88],_entry:59,_equal:177,_error:[34,43,47,74,87,135,261],_errors:34,_escalation:[22,29,34,36,46,48,54,149],_escape:57,_estimate:[38,43,58],_estimated:34,_euc:63,_eval:[22,34,41,46,81,133],_event:265,_exec:[34,43,54,57,87],_exist:[22,43,46,65,81,117,123],_exists:[87,261],_expand:[22,34,44,46,81],_expander:[41,44,209,277],_expanders:[124,125,129,209],_expansion:[38,41],_expire:[34,65],_expr:[3,22,34,40,42,43,44,46,48,54,66,74,100,102,135,163,165,166,167,174,178,210],_expression:[135,210],_extract:[43,45],_failure:73,_false:[34,54,65],_family:[34,44],_file:[43,83,87,155,209,255,261],_fileinfo:34,_filename:87,_files:[87,261],_filter:[22,34,41,42,43,44,46,81,87,113,122,137,160,171,176,214],_filtered:[34,44],_filters:[34,42,43,44,103,144,221,223,224,225],_fin:[40,43,54,57,73,74],_finalizer:[54,66],_find:[22,34,46,160],_fitlers:134,_flags:[34,40,43,44,51,57,63,68,71,74,177,196],_float:[43,71,122],_flow:[87,261],_flush:[22,34,43,44,46,81],_for:[11,43,105,135],_form:34,_format:[34,87,261],_free:74,_friends:270,_full:[12,22,34,42,44,46,160,169],_func:[34,42,54,66,70,74,145],_function:[43,74,87,131,211,261],_fuzzy:44,_geo:[22,38,43,46,48,63,122],_get:[22,34,38,39,40,42,43,44,46,49,50,51,52,54,56,57,59,62,63,64,65,66,68,69,70,74,81,96,98,145,149],_github:17,_global:43,_gqpt:154,_gqtp:154,_groonga:83,_group:[43,68],_gt:69,_hash:[33,34,43,44,47,58,68,69,80,91,92,102,104,105,106,107,108,112,114,115,116,117,120,121,122,123,130,134,135,140,142,158,161,162,165,170,171,172,173,176,177,184,191,193,197,198,200,211,245,268,269,270,271,273,274],_header:93,_hex:63,_highlighter:34,_hit:[84,137,155,207,261,271,275],_hits:[112,135],_hook:[22,46,48],_host:154,_hour:[22,44,46,114,160],_html:[22,34,38,40,41,42,43,44,46,114,135,153,160,239],_http:[154,155],_hugetlb:38,_hyphen:34,_i:[87,261],_id1:105,_id2:105,_id:[12,34,38,39,42,43,44,51,54,57,60,61,62,65,68,69,74,78,85,115,122,131,135,153,197,271,278],_idf:211,_ids:44,_if:65,_ii:[22,34,43,44,46,48,63,92],_illegal:87,_implemented:[87,261],_improper:87,_in:[22,35,36,38,41,42,44,46,58,63,83,87,134,160,261,270,274,278],_inappropriate:87,_incompatible:87,_incr:65,_indented:63,_index:[22,34,36,41,42,43,44,45,46,48,51,65,80,92,93,103,104,112,115,117,122,130,134,135,142,158,161,168,169,172,176,177,179,182,196,197,198,210,211,212,213,224,225,239,240,242,245,264,270,271,273,274,277],_indexer:39,_indexes:43,_info:[22,34,40,44,46,48,66],_information:93,_init:[38,40,42,43,54,57,63,65,70,73,74,199],_initialized:[87,261],_input:[43,83,87,197],_inspect:[22,34,44,46,48,81],_install:[7,8,21,23,32],_int:[43,44,57,65,71,122],_interrupted:[87,131],_interval:197,_invalid:[65,68,69,87],_io:[34,42,43,123],_ip:[261,275],_is:[34,38,43,44,54,65,83,87,131,261],_iso:34,_isspace:74,_items:176,_ito:38,_itoh:38,_ja:41,_jis:[29,241],_jp:[29,63],_json:53,_kana:[34,158],_katakana:34,_key:[33,34,35,36,38,39,40,41,42,43,44,47,51,58,63,68,69,71,78,80,91,92,93,95,102,103,104,105,106,107,108,116,120,122,123,130,134,135,138,140,142,143,144,148,153,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,206,210,211,212,213,216,221,224,225,239,240,242,245,264,268,269,270,271,273,274,276,277],_keys:[34,44,68,172,173,177,211,212,213,269,270,271,278],_keywords:[34,57],_koi:63,_label:43,_labeled:135,_large:[33,34,44,87,92,121,140,220,261],_latin:63,_lcp:68,_leading:[135,177],_leak:14,_left:[38,58,87,167,261],_len:[40,51,57,63],_length:[22,44,46,74,112,114,115,135,160,171,261],_level:[22,34,41,43,46,74,81,92,110,111,151,153,199],_lexicon:43,_likes:[83,112,114,115,135,196,197,245],_limit:[22,34,35,41,43,46,70,81,87,99,100,113,123,142,261,269],_limited:63,_line:134,_link:[87,261],_links:[87,261],_list:[22,34,35,36,38,40,42,43,44,46,81,87,95,117,143,153,214,261,271],_literal:42,_load:[22,41,46,81],_loaded:[44,105],_local:154,_location:[34,83,274],_lock:[34,38,49,65,70,74],_locked:65,_locks:[87,261],_log:[34,40,41,42,43,63,74],_logger:[34,40,43,63],_logical:43,_long:[87,261],_loose:[22,34,46,160],_lt:69,_lz4:[44,92],_lzo:[51,87],_malloc:74,_many:[42,87,261],_map:[34,266],_mark:34,_mask:65,_match:[22,42,44,46,48],_max:[44,50,52,61,87,135,145,178,261],_mecab:43,_medium:[92,121],_memo:177,_memory:[34,40,87,261],_message:[43,83,210,273],_messages:[12,17],_middle:34,_min:[34,43,44,52,61,135],_minute:[22,44,46,160],_mode:[34,42,171,191],_modified:274,_module:155,_month:[22,44,46,160],_most:[34,43,211,213],_mruby:[7,8],_msgpack:53,_mutex:[70,74],_n:[34,41,44,50,114,116,122,134,135,240],_nabe:42,_name:[37,42,43,47,51,63,65,83,92,96,97,98,105,114,115,116,134,135,140,156,177,182,214,261,275],_namen:171,_names:[43,55],_network:87,_new:[9,22,34,38,40,46,112,114,115,135,160],_next:[34,36,41,43,58,61,69],_nfthreads:70,_ngram:[34,44],_nhooks:59,_nil:[36,54,57,68,69],_no:[33,34,36,42,43,47,68,69,87,91,102,103,106,107,108,112,114,115,117,120,121,123,130,134,135,140,142,158,168,169,177,179,196,197,198,210,212,213,224,225,239,240,242,264,273],_nodelay:44,_nofile:[41,199],_none:[53,63],_normalize:[40,43,45,68,140,200,201],_normalizer:[43,87],_normalizers:43,_not:[65,67,87,95,102,107,109,130,131,135,148,177,261],_nromalize:200,_nsubrecs:[42,51,78,135,269],_null:43,_number:[22,34,44,46,83,105,115,247,258,261,275],_numbers:43,_o:[87,261],_obj:[11,22,34,38,39,40,41,42,43,44,46,48,51,54,55,57,58,59,60,61,62,63,66,67,68,69,71,72,74],_object:[34,87,122,123],_of:[22,34,46,87,104,105,134,160,238,261],_office:173,_offline:39,_offset:[34,42,43,57,74,87,100,261,269],_old:47,_on:[87,261],_one:134,_only:[44,87,261],_op:[11,34,43,44,57,67],_open:[34,36,38,40,43,50,54,55,58,60,61,69,74,87,123,261],_opened:[34,43,54],_operation:[87,261],_operator:[34,51,57,58,67,68],_optarg:[43,55,67],_optimize:34,_option:34,_options:[34,41,197],_or:[11,67,87,95,102,107,109,130,131,148,166,261,275],_order:34,_org:12,_otoj:14,_output:[42,43,54,87,100,261,269],_over:[87,261],_overlap:[34,44],_own:43,_p:63,_pack:23,_package:43,_parameters:[22,43,46,81,214],_parse:[43,56,57],_part:238,_pass:155,_pat:[33,36,41,43,44,63,68,69,80,91,92,93,95,103,104,112,114,115,117,121,122,130,134,135,140,142,143,144,148,153,158,168,169,171,172,176,177,179,182,196,197,206,210,211,212,213,221,224,225,239,240,242,245,264,270,271,273,274,276,277],_path:[12,34,39,40,41,42,43,65,123,151,153,154,156,207,253,258,261,271,275],_pattern:[43,171],_per:[38,54,112,114,115,135],_permission:87,_permitted:[87,261],_persistent:[34,51,68],_physical:34,_pipe:[87,261],_plugin:[34,37,38,42,43,44,74,87],_plugins:[34,38,43],_point:[58,63,122,166,270],_pop:43,_popular:[112,114,115,135],_port:154,_pos:34,_position:[34,44,51,92,93,112,114,115,122,130,134,135,158,168,169,177,179,182,196,197,198,210,211,212,213,224,225,239,245,264,271,273,274,277],_posting:[34,44,58,61],_pragma:135,_prefix:[7,8,23,32,34,36,43,69,146,202,223,226,228,229,230,231,232,233,234,235,236,237,238,239,241,243,244],_preparer:[138,216,217,219],_prepend:65,_pretty:[84,135],_previous:50,_printf:42,_probability:[38,138],_proc:[22,34,42,43,44,46,48,54,74],_process:[87,261],_processes:[87,255,261],_prolonged:34,_proxy:155,_ptr:[43,54,57,74],_push:11,_put:[22,34,41,43,46,81,109,111,153],_pvector:[43,54,57],_ql:42,_qlog:40,_queries:[84,137,155,207,261,271,275],_query:[11,34,40,41,42,43,44,57,63,138,157,158,159,209,216,217,219],_range:[22,34,43,46,65,81,87,112,113,137,214],_rate:[84,137,155,207,261,271,275],_ratio:[34,42,44],_raw:34,_rc:[49,50,51,52,54,55,56,57,58,59,60,62,64,65,66,67,68,69,73,74],_read:87,_reader:43,_reading:[34,202,223],_realloc:74,_record:[22,34,46,65,105,115,247,248],_records:[22,34,40,41,43,44,46,105,160],_recover:[42,43,44,55],_rectangle:[22,34,35,36,38,41,44,46,58,160,278],_recursive:43,_recv:42,_reduce:34,_reference:[34,135],_refused:[87,261],_regexp:34,_register:[22,37,46,74,81,103,104,112,113,114,115,116,117,125,129,132,133,134,135,144,158,171,173,181,184,191,193,194,209,221,224,225],_reindex:43,_reinit:65,_release:[12,22,43,46,81,106],_removable:142,_remove:[22,34,38,40,41,42,43,44,46,65,81,91,104,153,214],_rename:[22,39,41,42,44,46,47,51,65,68,81,91,104],_reopen:[22,40,44,46,81,109,110],_repair:39,_request:[44,131],_res:154,_resource:[34,65,87],_resources:34,_result:[68,87,135],_results:68,_retry:87,_rewriter:44,_rewriters:34,_right:[38,58,167],_rk:[22,43,46,69,160,206],_roles:92,_romaji:34,_root:43,_rotate:43,_ruby:43,_s:42,_same:41,_scalar:[34,44,47,51,91,92,93,95,102,103,104,105,106,107,108,112,114,115,116,117,120,122,123,130,134,135,142,143,144,148,158,161,165,168,169,170,171,172,173,176,177,179,182,184,196,197,198,210,211,212,213,224,225,239,240,242,245,264,269,270,273,274,277],_scan:34,_schema:43,_score:[34,38,40,41,43,51,78,91,135,138,197,211,212,213,273,274,278],_scorer:[43,87],_script:132,_search:[22,34,38,40,43,44,46,48,68,115,138,160,202,206,223,236,238,239,243,244],_second:[22,44,46,160],_section:[34,42,43,44,51,92,93,134,273,274],_seek:[87,261],_seg:34,_segment:34,_segments:[34,44],_sel:[45,92],_select:[3,22,34,38,43,44,46,57,58,59,81,112,114,117,135,137,214,247],_selector:[22,42,43,46,81,153],_send:[44,50,53,54],_sequence:[87,261],_sequential:44,_serial:91,_set:[22,34,39,40,42,43,44,46,47,49,50,52,54,56,59,62,63,64,65,66,69,70,81,96,97,104,145,149],_setoperation:[34,44,68],_setpshared:41,_shard:[22,43,46,81,117,214],_show:34,_shutdowned:[87,261],_signal:70,_sis:[68,140,196,197,262,276],_size:[11,22,34,43,44,46,51,54,57,60,63,65,66,68,69,71,74,104,112,122,144,160],_sjis:63,_sjlj:42,_skip:[34,41,44],_slice:[22,34,44,46,160],_small:[87,92,121,261],_snip:[40,42],_sock:265,_socket:[87,261],_sort:[43,44,68,269],_sortby:[43,44,100],_sound:34,_sounds:34,_source:[12,34],_space:[87,121,261],_sparse:43,_speech:238,_split:44,_stable:[34,52],_stack:87,_stamp:[34,199],_started:83,_station:173,_statistics:34,_stop:[34,42,43,144,225,265],_str:[57,274],_strerror:42,_string:[14,34,41,43,44,56,57,112,114,115,135],_substring:[22,44,46,160],_success:[49,50,51,54,55,57,65,73,74,87,199],_such:[87,261],_suffix:[38,43],_suggest:37,_sum:[22,34,46,112,114,115,135,247],_supported:[87,261],_symbol:34,_symbolic:[87,261],_synonyms:209,_syntax:[34,44,47,57,87,135],_system:[34,38,87,261],_t:[70,87],_table:[3,22,34,36,38,39,43,44,46,48,51,57,58,61,65,81,104,134,142,143,154,177,214],_tables:[41,43,54],_tag:[91,112,114,115,135,168,172],_tags:[270,274],_take:44,_target:[42,43],_temporarily:[34,87,261],_term:[43,45],_text:[14,42,43,44,57,63,115,118,135],_tf:[34,43,211],_thread:[22,43,46,48,145,154],_threads:145,_threshold:[29,34,36,38,43,54,64,138,149,158,216,217,219],_time:[34,43,83,84,137,155,199,261,271,275],_timeout:[34,44,49,86,87,261],_timestamp:130,_tiny:[43,44],_title:[103,130,154,271,273],_to:[34,43,44,56,113,273,274],_token:[34,42,43,44,87],_tokenize:[22,34,43,44,46,81,226],_tokenized:[118,146],_tokenizer:[34,40,43,44,63,87,92,112,114,115,122,130,134,135,141,142,143,144,153,154,158,168,169,177,179,182,196,197,198,210,211,212,213,221,224,225,239,240,242,245,264,271,273,274,277],_tokenizers:43,_too:[42,87,261],_touch:[36,55],_tp:152,_transposition:44,_true:[43,54,65],_truncate:[38,42,51,68],_ts:43,_tsv:[53,209],_type:[22,34,40,42,43,44,46,48,54,55,62,63,65,66,68,78,92,103,114,134,135,153,154,156,157,158,166,207,238,268,269,270,271,273,274,276],_types:[34,42,43,118,202,255],_uint:[43,71,122],_unavailable:[34,87,261],_unknown:87,_unlink:[54,65],_unlock:[65,70,74],_unmap:[22,34,43,46,55,81,123,130],_unregister:[22,34,43,46,81,104,124,129],_unsupported:87,_untag:[22,41,46,160],_update:[51,68,87,135,196],_usage:[34,121],_use:[42,43,54,87,113,261],_user:[22,46,48,66,74,155,255],_users:274,_utf:[56,63,69],_v:34,_valid:155,_value:[34,36,38,39,41,42,43,44,51,54,57,63,65,69,78,115,132,133,134,135,162,245],_values:[22,34,38,42,43,44,46,63,65,160],_valule:172,_var:[42,44,57,66,71,74,122],_vars:74,_vector:[34,41,42,43,51,54,57,65,80,91,92,93,102,112,114,115,135,158,176,182,191,193,268,270,274,277],_version:[12,22,34,38,42,43,44,46,48,54,84,87,137,155,156,168,169,170,179,207,255,261,271,275],_versions:12,_voiced:34,_void:44,_vprintf:42,_vsize:[54,57],_w:226,_week:[22,34,44,46,160],_weight:[42,51,80,92,93,134],_wgs:63,_when:83,_whole:273,_win:[43,74],_window:[34,87],_windows:[43,74],_with:[7,8,44,51,68,134,140,196,197,262,276],_word:[34,42,43,103,144,221,225],_would:[87,261],_xml:53,_xxx:[121,135],_year:[22,44,46,160],_yyyymmdd:[112,114,115,117],_zlib:[44,51,87,92],_zone:155,_zstd:[44,87,92],aaa:34,aardvark:34,ab:239,abc:[43,162],abcd:239,abcde:118,abi:43,about:[14,21,74,153,160,247],above:[131,239],ac:201,accept:[36,265],accepts:[148,153],accesses:51,accessor:[43,65,68],accurate:179,acquire:49,acquires:49,acronym:253,actual:155,add:[17,31,40,42,65,114,135,146,160,241,247],added:[45,58,65,68],adding:65,additional:[34,41],address:[38,40,153,158,261],adjust:135,adjuster:[34,42,80,92,115],admin:[36,42,43,44],advanced:45,advantage:179,adventure:92,adventurer:92,after:58,again:[49,155],against:[51,55,153],age:[47,92,93,104,134,135,161],ages:[92,140,161],aggregate:179,ahost:210,aio:41,akio:[34,36,40],al:241,alert:[42,109,110,153,155],algorithm:34,ali:91,alias:[47,96,97,98],aliased:47,aliases:[47,96,97,98],alice:[47,91,92,95,121,135,143,148,155,161,171,177,196,255,274],alisa:177,all:[34,40,43,44,51,54,55,58,112,114,115,135,153,196,197,277],alloc:[44,84,137,153,155,207,261,271,275],allocate:[22,44,263],allocated:74,allocates:74,allow:[40,135,177,196],allowed:159,allows:179,almost:253,alpha:202,alpine:26,already:[49,74,159],also:[92,112,114,115,135,179,196,197,211,239,253],always:113,am:[169,179],amazon:34,amd:12,an:[55,58,68,74,155,236,265],and:[34,41,42,43,44,45,49,51,53,55,57,58,65,68,74,92,135,144,153,155,157,159,171,177,179,197,199,211,212,213,225,245,273,278],animation:270,ann:12,anonymous:104,another:43,any:43,aomi:34,apache:34,api:[1,3,11,15,22,34,36,37,38,39,40,41,42,43,44,45,46,49,50,51,54,55,60,65,70,73,74,87,195,255],appears:179,appended:65,apple:[200,236,240,242],application:[105,155,255],applications:179,applied:45,approximate:166,appveyor:42,april:12,apt:[12,18,21,25,31,40],aptitude:14,ar:[146,262,264],arai:43,aramaki:[36,38],arc:146,architecture:43,architectures:12,archive:[12,22,23],are:[17,41,44,49,55,57,58,74,80,157,159,179,199,211,212,213,253],arg:[210,261],argc:70,argument:[34,156,197,211],arguments:[74,134,153],argv:70,armenian:[202,223],armhf:42,arnaud:38,array:[34,89,121,134],arrow:34,art:274,arted:197,artful:34,article:273,articles:273,as:[17,40,54,74,135,146,153,155,157,159,179,253,259],ascending:114,ascii:[34,196,197,228,239,243,244],aspx:265,assigned:43,associated:74,assumed:66,at:[45,58,153,239,274],auth:[155,255],auto:[34,113,135,138],autoconf:[6,38],autogen:[6,12,17,40],automake:[6,36],automatically:55,autotools:[3,5,7],available:[45,74,265],avg:[42,115,135,152],aware:74,axaixiuxuexeoxo:[202,223],ba:34,back:[197,273],background:153,backlog:34,backup:[55,103],backward:148,bad:[41,42,44,261],bar:[202,223],base:[12,34,43,74,155,238],baseball:[270,273],based:[58,168,169,179,259],bash:29,bc:239,be:[51,54,55,57,58,65,68,74,99,129,148,153,159,253,265],beaver:[31,34],became:259,because:[44,55,155,207,211,253,265],become:45,been:12,before:21,begin:152,bellefleur:34,bernard:43,beta:45,between:[22,34,41,42,44,46,65,159,160],bi:[262,264],bigram:[34,154,157,158,262,264],bigramlexicon:130,bill:[43,262,264],billiard:[262,264],bin:[18,32],binary:[0,207,246],bind:38,binding:[45,168,169],binlib:12,bionic:[31,34],bison:12,bit:[8,21,23,24,25,27,30,31,32,41,43,44,121,154,246],black:200,block:268,blog:[182,264,271,273],blogs:264,bm:[211,213],bob:[47,95,135,143,148,155,161,177,255,274],body:[34,90,94,101,107,130,168,169,239,255,264,273,277],bom:36,book:197,bookmark:[80,103],bookmarks:[80,103,105,117],books:92,bool:[34,41,43,44,91,112,114,115,121,122,134,135,144,166,167,196,225,268,276],boost:[158,216],boston:274,both:65,bottom:[38,58,167],box:[202,223],brad:44,brazil:269,brew:[18,28],british:277,broken:[51,55,123,261],brooklyn:274,browser:17,bsd:[5,29,42,43],buf:[51,65,68],buffer:[54,63,65,89,121,265],buffered:60,bug:[40,45],build:[8,12,21,25,31,32,41],builder:60,building:53,built:65,bulk:[43,57,65],bullet:[202,223],buster:[22,23,34],but:[148,153,159],buzz:158,by:[40,54,55,57,58,73,74,196,253,269],bye:273,bytes:[66,74],cache:[22,34,35,40,43,46,50,65,81,84,137,155,207,261,271,275],cafedomancer:44,cake:173,calc:[34,43,135],callback:158,called:74,caller:66,calling:[73,74],calloc:44,calros:161,camp:274,can:[17,49,53,54,55,74,129,134,148,153,155,179,211,239,253],canadian:[202,223],cancel:131,canceled:[86,131],candidate1:138,candidate2:138,candidate:138,cannot:[22,263],capital:34,carlos:[95,143,148],cas:261,cases:253,cast:[22,34,46,65,160,196],casted:65,casts:65,cat:12,cd:[12,17,24,25,27,28,29,30,31,32,239],cdbs:38,ce:[234,235,241],ceekz:41,center:166,centos6:40,centos:[12,18,22,23,29,34,36,38,40,41,42,43,44,259],central:274,cents:[228,233,234,235],cflags:30,ch:146,change:[40,155,255],changed:[45,155],character:[74,92],characteristics:179,charlie:274,check:[14,22,34,35,38,43,46,65,81],checked:12,checking:55,checks:[42,55,118,201,202,203],china:269,choose:153,christian:43,chroot:12,chunk:[34,89,121],chunked:34,chunks:266,ci:[20,22,40,41,42],ciritical:155,cities:165,city:[165,274],cjk:34,clang:[40,41,42],clean:14,clear:[42,65],clearlock:[22,35,40,42,46,81,153],clears:51,client:[153,155,158,211,253],clone:[3,6,7,8,12,13],close:34,clumns:245,cmake:[3,5,6,29,32,40,41,43,44],co:158,code:[17,148,199,207],codes:[12,73],coffee:173,col:65,color:200,column:[11,22,34,35,36,38,39,40,41,42,43,44,46,47,51,55,58,65,66,68,72,80,81,102,103,104,105,106,107,108,112,114,115,116,117,120,123,130,135,138,140,142,143,144,148,153,154,158,165,169,170,171,172,173,177,179,182,184,191,193,196,197,198,210,211,214,216,217,219,224,225,239,240,242,245,264,268,269,270,271,273,274,276,277,278],columnn:40,columns:[34,36,40,44,55,63,134,157,245],com:[9,269],come:274,comma:43,command:[21,26,34,40,43,44,52,54,63,74,84,123,137,148,151,153,155,156,157,168,169,170,179,207,210,253,261,271,275],commandinput:43,commands:253,comment:[43,182,273,274],comments:[182,273],commit:17,common:[38,68,69,197],compared:179,compatibility:[34,148,201,202,203,223],compatible:155,complete:[39,138,158,216,218],composition:[34,201,202,203,223],compress:[44,92,121,134],computed:74,cond:[41,70],condition:197,conditional:138,conditions:171,conf:266,config:[8,22,32,43,46,47,81,82,104,149],configuration:[41,155,158],configure:[3,14,17,23,24,25,27,28,30,31,36,38,39,40,42,135,197,214,264],confirm:17,conifugration:21,connection:261,connections:153,constant:[34,43],contain:40,container:57,content:[38,40,41,42,83,105,112,114,115,122,134,135,142,155,170,177,179,182,196,197,198,211,224,225,245,255,273],contents:74,context:[43,54,57,63,65,179],contrast:153,contrib:12,copa:43,copied:74,copying:34,core:154,correct:[138,158,217],correction:217,corresponding:65,corrupt:117,cosmic:[31,34],cosmo:[41,42],could:265,count:[112,114,115,135],country:[102,269,275],cover:179,coverage:14,cp:34,cpu:[0,29,154,155,255],crch:146,create:[74,103,153],created:[74,112,114,115,184,274],createfilemapping:43,createrepo:12,creates:[57,74,157],crit:[109,110,153],critical:[74,109,153],ctrl:[153,261],ctx:[9,50,51,54,55,57,63,65,66,68,74],curl:[21,28,29,40,105,131,153,155,158,207,255],current:[47,63,70],currently:[53,55,155],cursor:[58,61,69],customize:155,cutter:[6,7],cuttlefish:[31,34],cve:34,cxxflags:30,daemon:[153,158,159,253],daiki:[36,37,40],dangerous:[51,55],dangling:117,danish:224,dash:[29,202,223],dat:[34,44,220],data:[55,59,70,105,155,162,207,255],database:[22,34,43,46,54,55,65,68,81,123,130,135,151,153,155,157,179,266],dataset:[157,158,159],datasets:157,date:154,dav:171,dave:161,david:171,day:[151,198],days:151,db1:255,db2:255,db:[34,38,39,43,44,51,54,55,65,66,68,71,90,101,104,121,123,141,142,153,154,155,156,158,207,245,253,258,261,271,275],dbms:179,dcb:42,dcmake:[7,8,32],dd:[197,199],ddl:264,de:[17,63],deb:[12,25,31,40],debhelper:38,debian:[14,18,22,23,34,38,40,41,42,43,44,259],debootstrap:12,debug:[8,34,43,109,110,153,155],decrypt:12,defalt:36,defaul:162,define:[22,46,81,153],defines:157,defrag:[22,35,41,46,81],dejan:44,deleted:65,delimit:41,demo:270,dependent:[34,104],depends:45,deprecated:[82,248],derived:159,descending:[43,114],describe:74,describes:153,description:[44,262,274],designed:253,desktop:[8,32],dest:[68,152,153],destination:65,detail:154,details:[12,74],dev:[6,7,25,31,155],develop:[82,224],developed:224,developer:274,developing:224,development:274,develops:224,dewangga:43,df:213,dgrn:[7,8],dh:12,dicrc:28,dictionary:[200,238],diff:[12,154],directory:[74,159,261],disable:[38,155,265],disables:155,disk:[121,210],dist:12,distance:165,distributions:12,dll:[38,40,42,44],doc:[12,16,17,18,277],docker:[22,23],dockerhub:26,docs:44,document:[12,36,153,168,169,179,197,211,213,239],documentation:21,documentations:[160,247],documents:[177,179],dodaisuke:34,doesn:[65,123,155],domain:[16,57,65,74,93,95,141,143,153,261,275],don:[53,57,155],done:49,donut:173,dot:[202,223],download:12,downloads:32,dragonfly:36,draw:270,drawings:[202,223],drilldown:[34,35,42,43,44,100,269,270,274],drilldowns:[34,43,44],drilldownss:135,droonga:[171,172,191,214],due:179,dump:[22,34,35,36,38,40,42,43,44,46,53,81,109,117,142,149,153,155],dutch:224,ea:[146,199],each:[57,138,216,217,219],ear:146,earch:146,earlier:148,easier:211,easy:211,ec:135,echo:123,ecmascript:[40,41,135,195,197],edge:9,edict:[42,44],edit:[12,22,35,44,46,160,197],editor:17,editrc:38,effective:153,eggs:273,eight:271,eito:41,el:[226,228,231,232,239],elapsed:[34,83,199,207],element:[43,80,197],elements:[44,63,80],elfring:40,ell:239,ellip:165,em:[202,223],emacs:17,emerg:110,emerge:[109,153],emergency:[109,153,155],emfile:265,emoji:202,emphasize:170,empty:43,en:[138,146,216,234,235],enable:[6,12,17,25,36,41,146,155],enablerepo:24,enables:155,encoding:[56,63,74,153,207],ency:154,end:[152,168,207,261],endpoint:159,eng:[138,216],engi:[138,216],engin:[138,216],engine:[138,146,168,169,179,211,216,217,218,219],enginen:216,english:[14,135],enhanced:45,enqueue:9,entries:[43,91,105,106,107,108,112,114,115,135,142,151,168,169,196,197,239,245,273],entry:[59,90,91,94,100,101,102,112,115,130,135,273],entrykeys:142,env:209,environment:21,eof:153,eol:34,epel:[34,40],equivalent:63,er:210,eric:161,errbuf:34,errno:[42,43,265],error:[34,41,42,47,54,58,74,83,109,110,135,153,155,210,213,265,271],errors:105,errror:210,es:241,escape:57,escaped:57,estimate:43,estimated:[44,58,144],estimates:58,etc:[12,155,245,255],etime:152,euc:[29,41,153,241],ev:265,evaluated:132,event:[138,157,158,159,216,217,219],events:[158,255],ex:146,exact:[11,92],example:[135,153,268,269,270,271,273,275,278],examples:[36,114,239],excel:209,except:[239,245],exclamation:43,exclude:[40,41,42,112,114,115,117,161],exe:[12,32],exec:261,executable:153,execute:[153,159],executed:275,executes:153,executing:54,executor:[114,115],exist:[65,123,211],existence:55,existing:[153,159],exists:[112,114,115,117,142],exit:[73,153],expander:177,expect:42,expired:34,explain:43,expr:[47,57,65,66,72],express:[8,32,40,41],expression:[34,43,44,57,133,135],expressions:155,ext:146,extracted:57,extracts:57,fa:146,fac:34,facebook:[22,40],factor:[42,135],failed:[34,44,49,96,123,271],failures:12,family:34,fast:[83,105,112,114,115,135,146,168,169,170,171,172,179,191,196,197,211,273],faster:253,favorite:17,favorited:274,favorites:274,fb:[202,223],fbnteqr:43,fc:[202,223],fd:265,feature:[17,55,211],fedora:[12,18,22,23,29,36,38,40,41],fgets:43,file:[36,123,153,155,261],filename:261,files:[12,155],filter:[34,36,40,41,43,44,47,80,91,92,100,102,161,165,171,172,173,176,177,195,197,206,210,219,262,264,269,270,274,276,278],filtered:[34,44,112,114,115,135],fin:66,finalizes:74,finds:68,finished:131,finnish:224,firefox:17,firewood:[40,41],first:[74,112,114,115,135,196,197,273,274],five:271,fix:[44,45,93,95],fixed:40,flag:63,flags:[33,34,43,44,51,54,57,61,63,65,68,69,71,74,89,93,95,121,134,141,143,153,154,220,268,269,270,271,273,274,276],floating:246,flower:268,fluent:13,flush:104,flushviewoffile:43,followee:274,follower:274,following:[51,74,153,157,159,253],fontaine:38,foo:34,foods:240,force:[34,43,44,146,151,202,223,226,228,229,230,231,232,233,234,235,236,237,238,239,241,243,244],foreground:153,fork:17,forks:153,form:[34,196,201,202,203,223,258,261,271],format:[17,45,53,74,156,207],formula:12,found:[58,68],four:271,frank:161,free:[36,42,54,89],freebsd:[22,43,46],freed:55,frees:74,french:224,freq:[158,219],frequency:[42,138,158,211,212,213,216,217,219],friday:184,friends:270,from:[44,45,54,55,57,58,74,153,173],fromtable:91,fsf:40,ftb:45,ftp:[12,154],fu:146,fuku1:34,ful:146,full:[43,121,134,146,179,210,211,236,237,265],fulltext:[146,168,169,179],fullwidth:[34,43],fumiyasu:38,func:[34,54,66,70,74],functions:[34,42,43,44,45,74,112,114,115,135,171,173,181,184,191,193,194],fuzzy:[22,44,46,160],ga:[146,154,201],garbage:[41,89],gb:[207,266],gc:44,gcc:[24,27,29,30,38,40,41],gdb:14,gem:12,gemfile:40,generate:74,generated:[74,157],generates:157,geo:[22,35,36,38,39,40,41,44,46,58,63,160,270,274,278],geodetic:246,geoindex:270,geopoint:[35,36,41,44,58,121,122,134,165,166,167,268,269,270,275,278],geoppoint:58,geosite:270,german:224,get:[38,40,42,58,144,146,275],getaddrinfo:40,getenv:43,gets:74,gettext:[17,18],ghz:154,gi:146,gib:[33,245],git:[6,7,8,12,13,17],github:[6,7,8,12,13,17,19,34,38,40,41,42,43,44],gitter:[2,43,44],gituub:44,glaser:44,glib:41,global:18,glossary:21,gnu:[3,5,8,12,18,22,23,29,30,34,38],gnupg:12,go:[198,253],golubchik:[34,43],gone:270,goo:[196,197],good:[112,114,115,135,144,171,191,196,197,198,225],google:[135,211,212,213,218],goroo:253,gpg:12,gpl:45,gps:0,gqtp:[0,1,3,22,24,25,27,31,34,40,41,42,43,87,152,153,154,252,260,275],gr:[135,146],graceful:136,grease:268,gregex:41,grep:[24,25,27,31,265],grmdb:151,grn:[3,22,34,36,37,38,39,40,41,42,43,44,46,47,48,49,73,74,86,87,92,96,100,102,104,113,123,131,135,145,163,165,166,167,174,178,199,209,210,265,273],grndb:[22,34,42,43,44,46,123,150],grnline:271,grnslap:[22,46,150],grntest:[13,36,38,40,44],grnwrap:271,gro:179,gronga:[209,218],gronnga:218,gronoga:155,groo:135,grooga:34,groonga:[1,2,10,13,14,18,19,20,21,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,53,54,65,70,73,74,78,80,81,82,83,84,86,89,90,91,92,93,94,95,99,100,101,103,104,105,109,110,111,112,114,115,117,118,124,127,129,131,134,135,136,137,138,140,141,143,145,146,149,150,151,152,163,165,166,167,168,169,170,171,172,174,177,178,179,182,191,193,195,196,197,198,199,200,201,204,205,206,207,209,210,211,213,214,215,216,217,218,219,220,221,224,226,228,236,237,239,245,246,252,253,254,255,258,261,262,264,265,266,268,269,270,271,272,273,274,275,276,277,278],groongau:237,group:[68,269],grroonga:218,gt:[168,169],gtar:30,gted:17,gtihub:38,gui:134,gzcat:44,gzip:[29,40,254],halfwidth:[201,202,223],hana:270,hanako:102,handle:54,handled:155,hard:245,hardy:36,has:[12,45,58,68,74,117,157,211],hash:[34,134,220,274],hashida:34,hashidatks:34,hat:29,have:[53,55,198],haystack:11,hdd:154,he:[226,228,231,232,239],head:[42,152,261],header:[43,63,88,91,92,93,95,99,102,104,105,107,109,112,113,114,116,117,118,119,120,121,123,124,125,129,130,131,132,133,135,136,137,139,140,142,143,145,146,147,148],heavy:[202,223,253],hel:239,hello:[112,114,115,135,144,196,197,198,225,226,228,231,232,236,239,241,273],help:[14,17,38],helpful:211,hendro:41,here:[74,153,157,159],hex:270,hh:[197,199],hideki:43,high:91,highlight:[22,34,42,43,44,46,160,239],hino:41,hiragana:202,hiroaki:43,hiroshi:[36,38,44],hirotaka:43,hiroyuki:43,hits:92,hmm:274,ho:241,hobby:199,hoge:163,home:[12,29,112,115,117,241],homebrew:[22,23,38,42,44],homepage:154,hook:[59,117],horikoshi:38,horizontal:[202,223],host:[154,158,210,261,275],hostname:[153,155,156],hottolink:45,hotwagner:34,hour:[49,114,151],hours:151,how:[22,74,113,252],html:[3,12,14,22,34,38,40,41,42,44,46,155,156,160,168,169,179],http:[0,1,12,17,22,24,25,27,31,34,36,38,40,41,42,43,44,46,80,103,105,131,135,150,152,153,154,155,158,170,171,172,191,210,219,236,237,252,253,255,267,268,269,270,271,273,278],httpd:[12,39,40,41,42,44],httprewritemodule:155,https:[12,13,17,21,24,25,27,28,29,30,31,32,34,254,265],hw:28,hyphen:[202,223],ia:[262,264],ic:[61,241],ichii:38,id:[0,34,36,42,43,44,47,51,54,58,61,62,63,65,68,69,78,80,83,89,91,92,93,95,102,103,114,115,117,121,122,134,135,138,141,143,148,153,158,161,171,172,176,196,197,198,199,200,210,216,217,219,220,224,225,240,242,264,268,269,270,271,273,275,276,277,278],identifier:47,ideograph:34,ideographic:43,idf:42,ids:[58,80,91],ieee:246,ignore:[43,225],ignored:[40,55],ii:[34,44,210],il:[262,264],ill:262,illegal:261,image:26,immediate:[44,136],implementation:253,implemented:[43,45],improper:261,inappropriate:261,include:[16,34,42,112,114,115,117,158,161,202],includes:43,incompatible:261,indent:63,index:[12,34,42,43,44,45,51,55,58,60,61,92,93,117,179,196,197,240,242,245,270,273],indexblog:273,indexbuf:51,indexes:134,infinity:34,inflected:[34,238],info:[34,43,44,92,109,110,151,153,155,210,213],init:[25,29,40,42,66],initial:[34,112,114,115,135],initialize:54,initialized:[54,74],initializes:[73,74],innodb:0,input:[53,83,261],inspect:[34,43,44],inspected:63,install:[12,14,18,21,23,24,25,27,28,30,31,32,40,42,74,152,154],installer:12,instantly:179,instead:[74,90,129,153,248,259],intel:154,internal:42,internally:[53,54],interpreter:12,interrupted:261,into:54,introduction:103,inv:154,invalid:[74,104,135,261],inverted:179,io:[22,34,43,44,45,46,81,123],ip:[154,158,261,275],ipa:27,iptables:255,is:[17,34,40,42,43,44,49,51,53,54,55,57,58,65,66,68,74,80,86,112,114,115,123,131,135,142,144,146,153,155,157,159,168,169,170,171,172,177,179,191,196,197,199,207,210,211,225,236,248,253,255,259,261,268,271,273,275,277],isn:[54,55],iso:[151,197],issue:19,issues:42,it:[51,53,54,55,57,58,65,68,73,74,83,105,112,114,115,135,148,153,159,196,197,198,199,211,253,259,270],itagaki:36,italian:224,item:[138,157,158,216,217,219,220],items:[135,176],its:[57,74,153],itself:80,ivh:27,iwai:[39,40],ja:[12,17],jacob:43,james:276,japan:[102,269,275],japanese:238,jason:276,javascript:[12,22,155,156,267,275],je:276,jeff:276,jekyll:12,jemalloc:42,jennifer:276,jersey:274,jessie:[12,25,34,41,42,43],jira:44,jiro:270,jis:[69,206],job:154,jobs:154,john:[102,276],josep:34,joseph:276,jq:271,jquery:[36,42],json:[34,36,38,40,42,43,44,53,80,84,105,138,154,155,156,207,255,261,271],jsonp:[38,43,158],juman:27,just:[55,65,157,198,274],ka:201,kakesa:43,kamicup:34,kana:[138,157,158,216,217,219],kare:202,karmic:14,kashihara:42,katagiri:41,katakana:[201,202,223],kato:34,kawada:42,kawaji:40,kb:266,kbytes:154,keeps:80,ken:270,kenichi:[36,38],key:[12,33,34,40,41,42,43,44,47,51,63,65,68,69,80,83,91,92,93,95,102,103,105,112,114,115,121,122,130,134,135,138,142,143,144,148,153,154,155,158,161,162,165,170,171,172,173,176,182,184,191,193,196,197,200,201,206,211,216,217,219,220,225,242,245,255,261,262,268,269,270,271,273,274,275,276,277,278],keybuf:68,keyid:12,keys:[42,43,63,68,155],keyword:[34,40,41,57,135,168,169,177,179,196,211,212,213,239],keywords:[57,240,242],kib:[43,245],kinjirou:270,kiske:40,kk:210,klose:43,km:274,ko:45,koi:[29,40,153],korea:269,kuriyama:42,kwic:179,kytea:[29,34,40,41,146],label:[34,43,44,91,176],labeledarguments:34,lacked:265,langasek:44,language:17,larger:159,largetext:220,last:[40,158,274],lat:154,latency:154,latin1:40,latin:[29,34,40,153],latinovic:44,latitude:63,launch:159,launchpad:[12,31,42],layout:12,lc:17,ld:[226,228,239],learn:159,learned:159,left:58,length:[44,74],lenny:38,less:[44,210],let:198,letter:[34,201,202,223],level:[74,92,109,110,153,155,159,261],levels:155,lexicon:[34,43,103,130,140,154,177,182,198,273],lf:152,lgpl:45,li:[241,262,264],lib:[36,41,124,125,129,265],libedit:[27,29,35,36,38,40,43],libevent:[25,29,31],libgcc:42,libgroonga:20,liblz:25,liblzo:31,libmecab:[12,25,31],libmsgpack:[25,31],libraries:[211,253],library:[53,253],libstemmer:42,libtool:[6,43],libwinpthread:42,libzmq:[25,31],libzstd:25,lic:171,license:[12,45],light:[202,223,253],like:[51,253],limit:[34,38,58,68,69,100,138,155,199,219,269,270,271],line:[21,54,83,253],lines:14,link:[268,269,275],links:[268,269,275],linux:[22,26,34,46,154],lion:40,lisp:34,list:[12,157,159],listen:[40,153,155,255,265],lists:42,ll:[146,226,228,231,232,239,262,264],lldb:[6,7],llo:239,llt:146,lo:[226,228,231,232,239],load:[22,34,35,36,38,39,40,41,43,44,46,47,80,81,82,90,91,92,95,102,103,104,112,114,117,121,138,143,144,148,153,155,158,159,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,206,210,211,212,213,214,216,217,219,224,225,239,240,242,246,264,268,269,270,271,273,274,276,277,278],loaded:[44,105,133],loadedlogs:34,loading:44,loads:159,local:153,locale:[17,34],localeoutput:34,localhost:[12,38,105,131,152,153,154,155,158,207,255],localstatedir:[29,36],location:[21,34,41,44,83,153,155,255,268,269,270,274,275,278],lock:[22,34,42,43,46,49,55,65,81,90],locked:74,locks:[74,179],log:[12,22,29,34,40,43,44,46,74,81,91,92,117,151,153,155,158,199],logaling:21,logical:[22,34,43,44,46,81,104,137,214,247],logicalcountcommand:112,logicalrangefiltercommand:114,logicalselectcommand:115,logicaltableremovecommand:117,logrotate:[40,42],logs:[91,112,114,115,116,117,120,123,130,135,140,158,159,210,212,213,214],logyyyymmddhhmmss:158,longer:45,longest:68,longitude:63,longitudexlatitude:41,longtext:[47,58,92,121,122,134],loose:[34,176],looseitems:176,love:273,lru:88,ls:12,lt:[146,168,169,179],lte:146,lts:[21,31],lucid:[12,36,41],lz4:[29,34,42,44,92,134],lz:[29,34,121,134],lzo:[38,40,42,51,261],m6:30,mac:[22,23,36,40,42,44],machine:153,macports:[22,23,38],magazine:135,mail:154,main:[12,25,70],maintenait:224,maintenant:224,maintenir:224,make:[14,17,18,23,24,25,27,28,30,31,42,74,152],makecache:40,makefile:[7,8,12],malloc:42,man:[35,44,161],managed:55,management:[21,55,179],manager:[155,255],managing:55,many:[80,157,211,253],map:38,mariadb:[41,42,44],mark:[43,201,202,223],marked:259,markup:16,markus:40,marverick:36,masaharu:[39,40],masahiro:36,masanori:44,masatoshi:[34,43],massachusetts:274,master:155,match:[22,29,34,41,42,43,44,54,80,92,100,149,155,168,169,179,196,198,199,211,212,213,224,225,239,240,242,262,264,267,271,274,277],matched:58,math:[22,34,46,160],matsuu:36,matthias:43,maverick:38,max:[34,40,42,44,69,70,84,89,99,121,135,137,152,154,155,171,178,197,207,212,245,261,271,275],maxos:34,may:[51,55,158],mb:[34,40],mbytes:154,mdev:44,me:[128,139,241],means:[53,58,65,74,155,199],mecab:[0,12,24,25,27,28,29,31,34,35,36,38,40,41,42,43,44,45,238],meerkat:38,memcache:258,memcached:[0,1,14,22,43,44,252,275],memcpy:34,memo:[42,177,211],memory:[22,74,210,263],memos:[43,122,134,171,172,184,191,193,211,224,225],memset:43,mercurial:12,message:[34,44,74,105,110,153,199,210,212,213,273],messagepack:[29,34,38,39,40,43,53,207,255,261],messages:41,metadata:[40,202,238],micro:274,microsoft:[8,32,43],middle:[202,223],migrated:[112,114,115,135,196,197],mike:102,millisecond:49,mime:[43,255],min:[34,40,42,49,69,135,151,152,154],minagawa:41,mingw:[12,34,38],minimum:74,mins:151,minus:[202,223],minute:151,minutes:151,mips:44,mitsuhiro:36,mix:34,miyashita:44,mizuhara:43,mkdir:103,mkostemp:42,mktime:43,ml:10,mlock:36,mm:[197,199],mmap:[22,41,263],mnt:26,mode:[42,43,44,45,153,241],moden:171,modern:274,modifier:[202,223],moero:270,monday:184,money:270,monkey:268,month:[151,270],months:151,montywi:39,mooz:38,more:[74,153,159,179,211,261],moritapo:270,moritars:273,morning:198,most:58,mpaa:161,mrb:44,mroonga:[22,34,39,40,41,42,43,44,80,103,105,112,114,115,135,168,169,170,171,172,177,182,191,196,197,209,211,214,273],mruby:[6,7,8,34,41,42,43,44,132,133,214],msdn:265,msec:49,msg:[9,43],msgpack:[34,43,44,207,261],msvc:43,msyql:80,mte:45,multiple:[239,253],multithread:68,munin:[24,25,27,29,31,35,38,40],murata:34,museum:274,music:[199,270],must:[51,55,57,58,65,74,99,159],mutex:[41,70,74],mv:111,my:[112,114,115,135,196,197,273],myamanishi3:34,myisam:0,mysql:[0,12,24,25,27,31,42,43,45,80,118,135,168,169,179,209,211],naist:238,nakamura:43,namae:202,name:[34,51,54,55,56,57,65,66,68,71,74,89,93,94,100,102,116,117,119,122,124,125,134,141,147,153,155,157,159,177,182,197,210,240,242,268,269,270,271,273,274,275,276,278],namebuf:[51,65],names:[91,92,122],nan:34,nanoseconds:199,naoina:[40,41],nargs:57,narwhal:38,natanael:43,natty:38,ne:146,need:[53,57,148,153],needed:[54,155],negative:[66,74],neologism:238,nested:41,net:269,netbsd:[36,41],netinet:43,network:261,never:113,newark:274,newids:91,newly:[148,179],newnames:91,news:[12,34],newvalue:51,next:[34,58,66,121],nfkc:[34,201,202,203,223],nfs:29,nfthreads:70,ng:146,nginx:[24,25,27,31,34,40,41,42,43,44,254,259],nginxhttpstubstatusmodule:42,ngram:[34,239],ni:[176,206],nice:198,night:[198,277],niho:176,nihon:[176,216],niku:42,nil:63,nine:271,nippon:216,nise:42,no:[34,35,41,43,45,58,103,104,105,112,114,115,123,135,138,210,220,261,265],noarch:27,node:12,nodes:63,nogpgcheck:40,none:[29,34,118,135,144,146,153,155,157,261,273],nonexistent:[96,97,112,114,115,135],normalize:[22,34,42,46,81,119,201,202,203,210],normalizeauto:239,normalized:[118,201,202,203],normalizer:[22,42,46,63,81,92,112,114,115,122,130,135,141,142,143,144,158,169,176,177,179,196,197,198,200,206,210,211,212,213,221,224,225,239,245,264,271,273,274,277],normalizerauto:[34,43,92,112,114,115,118,119,122,130,134,135,140,142,144,146,158,168,169,176,177,179,196,197,198,200,203,206,210,211,212,213,221,224,225,228,229,230,231,232,233,234,235,236,237,239,241,243,244,245,264,271,273,274,277],normalizernfkc:[34,119,134,200,223,239],normalizers:119,normally:[53,54,55,153],normaluzer:239,norwegian:224,not:[12,40,43,51,55,74,80,117,148,261,265],note:74,nothing:[53,193],notice:[43,92,109,110,153,155,212,213],notrelated:117,now:[22,34,46,160,259,274],nroonga:[21,177,273],nsis:12,nsubrecs:[51,115,135,269,270,274],nt:[234,235],nterms:89,nul:[38,55,74,237],number:[22,44,46,58,66,74,89,99,135,153,154,160,197,245],numbers:43,nvars:66,ny:274,obata:[34,36],obj:[51,55,57,59,62,63,65,66,67,72,89],object:[22,34,40,43,44,46,55,59,65,66,67,68,72,74,81,92,104,117,134,197,261],objname:[90,101],obsolete:259,obtained:74,occurred:58,ocelot:[38,41],october:42,of:[34,40,45,51,54,58,65,66,68,74,89,99,138,153,155,157,158,159,168,169,179,182,245,274],off:[42,155],official:12,offset:[34,55,57,58,59,65,68,69,74,100,138,271],ohkubo:44,ok:102,okapi:[211,213],old:[12,74],oldvalue:51,om:241,omitted:207,on:[17,45,53,55,58,65,68,74,146,155,168,169,179,255,265],one:[34,44,74,153,159,179,253],oneiric:[38,41],onga:179,ongaeshi:[36,40,41,43],onigmo:[42,43,44,210],oniguruma:43,only:[43,53,65,74,153,155],oo:[146,220],ooo:220,op:[51,57,58,67,68],opaque:261,open:[123,271],openbsd:[43,44],opened:[55,122,199],opens:[55,58],operation:[58,117,261,265],operator:[34,43,58,202,223],optarg:[55,67],option:[34,153,159],options:[43,151,152,153,154,155,157,158,159,177,214,239,253],or:[42,51,53,55,58,68,74,112,131,135,148,153,172,177,196,209,213,226,228,239,261,265,277,278],oracle:[22,23,38,40],orangain:41,orange:[240,242],order:34,org:[269,275],origin:17,original:[53,103,115,135,276],orl:239,os:[5,7,8,12,18,22,23,36,40,41,42,43,44,55,99,104,154],osdn:[12,43],other:[43,49,51,55,74,153,159],others:202,otherwise:[65,74],out:[34,154],output:[34,36,39,40,41,42,43,44,53,54,80,84,91,92,100,112,138,156,160,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,197,199,207,211,212,213,239,264,268,270,271,273,274,278],outputs:159,outputting:53,overcommit:245,owned:57,owner:155,packages:[12,17,24,25,27,28,29,30,31,32,259],pai:44,pair:[138,157,158,216,217,219],pangolin:40,parallel:12,parameter:[58,65,66,68,148,153],parent:[115,135],parenthesized:34,parker:43,parse:47,partial:11,pass:155,passed:[12,55],passes:12,pat:[44,69,220],patch:45,path:[18,26,34,51,55,65,68,74,93,95,122,129,141,143,153,154,155,255],paths:140,patprefix:276,patricia:134,patsuffix:276,pattern:[34,196,197,240],pcre:[34,40],pen:236,pentium:154,people:92,performance:[179,253],performed:265,period:34,permission:261,permitted:117,persistent:[55,68,93],pg:161,pgroonga:[34,43,103,199,211,214],php:[40,253],physical:89,pid:[29,34,35,43,44,153,199],pie:[240,242],pies:242,pikonyan:270,pip:[12,18],pkg:[25,29,30,36,43],platforms:74,play:277,player:91,players:[91,143],please:[17,55,259],plugin:[22,34,38,42,43,46,48,81,103,104,112,113,114,115,116,117,122,129,132,133,135,144,158,171,173,181,184,191,193,194,209,221,224,225],plugins:[129,245],po:[17,44],poedit:17,poeple:92,point:[39,58,63,95,131,166,167,262],pointed:74,pointer:74,popular:135,port:[28,153,154,158,258,261,275],porting:45,ports:26,portuguese:224,pos:63,position:[58,74,121,134,146,202,223,226,228,229,230,231,232,233,234,235,236,237,238,239,241,243,244],posix:[43,197],post:[12,34,40,41,42,43,44,105,135,158,196,197,254,274],posted:274,postgresql:[0,179,214],posting:58,poyonga:253,ppa:[22,23,42],pre:[45,158],precise:[12,40],predicate:34,prefix:[6,12,14,18,22,29,38,43,44,46,68,69,92,138,160,197,206],previous:259,price:[112,114,115,268],printf:[34,63],priority:135,proc:[24,25,27,31,34,43,59,66,68,72,74,99,123,135],process:[34,51,55,153],processed:199,processes:153,processid:34,processor:[24,25,27,31],program:159,progress:[34,199],project:197,prolonged:[202,223],proonga:253,properties:199,protocol:[0,153,156,207,253,255,258,259,275],pthread:[38,41],ptr:74,pub:12,published:12,pull:[12,26],push:[12,17],pushes:54,put:196,pyenv:18,python:[12,18,253],qps:[152,154],quantal:40,queries:[154,179],query:[0,11,22,34,37,40,41,42,43,44,46,57,67,80,81,92,100,112,124,125,129,138,155,157,158,159,160,168,169,179,195,196,197,198,199,209,210,211,212,213,216,217,219,224,225,239,240,242,253,259,262,264,268,270,271,273,274,275,276,277,278],queryexpandertsv:[22,40,41,46,124,125,129,177,208],question:43,quetzal:40,queue:[9,265],quiet:261,quit:[12,22,34,46,81,153,199,261],quiz:270,quorum:34,quote:197,raccoon:270,radious:166,rake:12,rakutan:273,raltime:219,ram:154,rand:[22,34,46,160,278],range:[22,34,42,43,46,81,92,93,95,114,141,143,261],ranguba:[34,42,80],rapidjson:34,raring:[41,42],raspberry:[240,242],rather:253,raw:[21,121],rc:[34,54,73,87,104,146,199],rch:146,rd:[262,264],rdbms:[0,43],rdiscount:12,re:55,read:[179,261],reading:[34,202,238],readings:[176,206],readme:[12,41],reads:159,real:[47,179],realloc:[34,36],really:[112,114,115,135,196,197],realtime:[138,219],receive:158,received:153,receiver:159,recently:88,recommend:253,record:[22,34,43,44,46,58,65,68,80,114,115,135,165,247,268,271,275],records:[43,58,114,135,199],recover:34,recovered:55,recovers:55,rect:165,rectangle:[40,58],recursive:[6,7,8,12,13],red:29,redcloth:12,redhat:38,redmine:42,reference:[34,41,43,65,80,117,134,135,142],referenced:104,referencedbycolumn:142,referencedbytable:142,referencedtable:142,references:[117,142],referencetable:142,regexplexicon:[130,210],register:[22,41,43,46,81,118,124,146,274],registered:[74,129,179],regular:[155,210],reindex:[22,34,43,44,46,81],relation:65,release:[12,32],released:[12,45],releases:73,remained:[199,210],remains:34,remote:153,remove:[34,65,117,118,123,142],removed:129,removep:65,removing:55,rep:154,replaced:[157,159],replication:211,replied:274,replies:273,reply:273,repoforge:40,report:34,reports:74,repositories:12,request:[12,22,34,41,42,43,44,46,81,85,86,105],required:[21,123,155,255],res2:68,res:[58,67,68,154],resizes:74,resource:261,resources:[54,55,73],rest:[63,74],restart:259,result:[11,68,159,165,179,207,261,273],results:[40,68,179],retry:261,returned:[58,74],returns:[51,58,68,74],reverse:[12,155],rewrited:45,rf:155,rid:[60,61,63],right:58,ringtail:[41,42],rl:[226,228,239],rld:239,rlimit:[41,199],rm:155,ro:146,roles:92,romanian:224,roonga:[191,196,197],root:[41,43,155,275],rose:268,row:179,rpm:[12,24,27,36,38,40,41,42],rroonga:[21,41,42,43,50,172,177,182,193,195,211,273],ruby:[0,6,7,8,12,21,22,34,40,41,42,43,45,46,80,81,168,169,193,195,210,211,253],rubygems:40,rubyinstaller:8,run:[12,14,22,26,153,155,252],running:[55,131,153],runs:[153,159],russian:224,ryo:34,sa:[138,217],sae:[138,217],saer:[138,217],saerc:[138,217],saerch:[138,217],sako:43,salamander:[41,42],same:[41,49,80,239,253],sample:[154,159],sanz:34,satoh:38,satoshi:34,satouyuzh:34,saturday:184,saucy:[41,42],save:12,say:[196,197,273],scalar:134,scan:14,schema:[22,34,43,46,81,122,157],scope:43,score1:11,score2:11,score:[11,34,41,43,51,80,95,112,114,115,135,138,143,148,165,177,197,211,212,213,216,217,219,264,270,271,273,274,278],scorer:[22,34,43,100,104,165,173,195,197,211,267,270],script:[42,44,135,154,163,166,167,174,178],se:[146,216],sea:[146,216],sear:216,searc:216,search:[38,40,68,69,92,135,138,146,168,169,179,196,197,209,211,216,217,218,219],searched:58,sebastian:42,sec:[49,151],second:151,seconds:151,secs:151,section:[51,60,74,121,134,153],sed:[28,38,40,43],see:[74,92,153],segment:[44,89],segments:89,segv:[35,41],seki:34,select:[22,34,35,36,37,38,40,41,42,43,44,46,47,50,80,81,82,85,86,88,91,92,95,102,104,112,114,128,131,137,143,148,153,155,160,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,195,196,197,198,199,200,209,210,211,212,213,219,224,225,239,240,242,247,253,262,264,268,269,270,271,273,274,275,276,277,278],selector:100,selects:58,self:154,sen:45,senboku:41,send:[158,253],sender:159,senna:[34,112,114,115,135,196,197,209],sentense:43,separated:53,separator:[202,223],sequence:[138,157,158,216,217,219],serach:217,serch:[138,217],sergei:[34,43],sergey:42,serial:91,serihiro:40,serve:12,server:[40,42,43,117,153,155,171,172,191,253,255,259,270],servers:117,service:[43,217,259],services:26,session:253,set:[65,154],sets:54,seven:271,sh:[12,21],sha:12,shard:116,sharding:[43,112,113,114,115,116,117,214],share:29,shared:[49,51,55],shell:153,shibuya:36,shidara:38,shift:[29,241],shimada:36,shimamura:[34,43],shimoda:36,shimomura:40,shinya:40,shiro:34,sho:41,shop:173,shopping:198,shops:[173,262],shorttext:[34,36,38,42,44,47,58,63,69,80,83,91,92,93,95,102,103,104,105,106,107,108,112,114,115,116,117,120,121,122,123,130,134,135,138,140,141,142,143,144,148,153,154,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,206,210,211,212,213,216,217,219,220,221,224,225,239,240,242,245,264,268,269,270,271,273,274,275,276,277,278],should:[54,74,148],show:34,shows:53,shutdown:[22,34,36,44,46,81,104,153,155,210,255,261],sid:[12,38,42,63,89],sigcont:41,sigint:38,sign:[12,202,223],signed:25,signing:12,sigsegv:68,sigstop:41,sigusr:38,silent:21,similar:[40,138,153],simple:259,since:[129,148,151,259],sis:38,site:[130,268,269,271,275,278],sitecountry:[269,275],sitedomain:[269,275],sites:[103,106,107,108],six:271,size:[51,63,65,68,69,71,74,89,121,122,123,134,266],sizeof:[43,54,57],sjis:[29,45,153],slash:197,sleepy:198,slice:34,slices:[34,44],small:[34,123],smaller:80,smith:44,snake:43,snippet3:179,snippet:[22,34,40,41,43,44,45,46,114,135,160],so:[55,65,68],soccer:270,socket:[261,265],soerr:265,soft:245,software:31,solaris:[5,7,8,22,23,38,40,43],solr:197,some:[34,43,73,157],sort:[34,43,44,68,171,172,173,177,211,212,213,270,271,278],sortby:[38,44,100,138],sound:[201,202,217,223],soundkitchen:[38,40],source:[12,34,43,55,65,83,93,95,122,270,271,273,274],sourceforge:[12,43],sources:[12,34,93,121,134],sozaki:34,space:[43,74,80,196,210,265],span:[168,169,170,179,239],spanish:224,spec:[12,34,36,40,41],specified:[58,66,74],specifies:153,specify:[17,65,153,155,157,159,239],specifying:74,speed:218,spelling:277,sphinx:[3,12,15,16,18,42,43,44],sphr:165,spil:43,sports:270,sql:[135,211,269],squeeze:[12,41],src:68,srpm:34,ss:[197,199,210],ssh:12,ssssss:199,st:[146,197,241],stable:82,stack:[41,261],stage:[34,44],standalone:[153,159],standard:246,standing:253,stargazy:242,start:[43,84,137,155,198,259,261,265,271,275],started:[83,112,114,115,135,196,197],starting:74,starttime:[43,84,137,155,207,261,271,275],stateful:253,states:102,statistics:121,status:[22,35,36,40,41,43,44,46,63,81,84,102,153,154,155,207,253,271,275],steming:224,steve:44,still:131,stock:34,stop:[40,43,153,155,259],storage:[168,169],store:[54,57,58,65],stored:159,stores:57,str:[57,74],strerror:42,stretch:[22,23],strftime:34,strict:42,string1:163,string2:163,string:[11,22,40,42,43,44,46,57,65,66,74,112,114,115,135,160,163,171,239],strlen:74,studio:[8,32,40,41,43,44],su:44,sub:[12,22,34,41,43,46,160,171,176],subclass:[34,238],subject:41,submit:[138,158,216,217,219],subrec:63,subrecord:41,subscript:[202,223],substitution:177,succeeded:[95,102,107,109,130,148],success:261,successfully:74,successor:197,such:[17,40,129,157,159,179],sudo:[12,14,18,21,24,25,27,28,29,30,31,40,245,259,266,275],sufficient:[74,265],suffix:[157,159],suffixsearchterms:[196,197],suggest:[22,34,36,38,46,81,158,159,216,217,218,219],suggestion:157,suitable:153,suited:179,sum:[34,42,115,135],summary:[22,154,252],sunday:184,sunos:42,superior:179,superscript:[202,223],support:45,supported:[45,155],supports:[45,74,159],swedish:224,swig:45,syllabics:[202,223],symbol:202,synonym:[135,277],synonyms:209,syntax:[44,47,135,153,261],syscall:[42,271],sysctl:[43,245,266],system:[30,112,114,115,135,179,196,197,245,246,265],systemctl:[25,259],systemd:[25,40,43,44],systems:179,tab:53,table:[11,22,33,34,36,38,39,40,41,42,43,44,46,47,51,54,55,58,61,63,65,66,68,69,80,81,82,91,94,100,102,103,104,106,107,108,112,114,115,116,117,120,123,130,138,148,153,154,158,159,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,201,206,210,211,212,213,214,216,217,219,221,224,225,226,239,240,242,245,255,264,268,269,270,271,273,274,275,276,277,278],tablecursor:43,tablegroupflags:43,tablename:82,tables:[54,55,157,245],tag:[12,91,112,114,115,135,171,172,193,270],tags:[43,80,93,135,140,171,172,191,193,270],tahr:[31,42],tail:[12,261],tajima:40,takagi:34,takahiro:36,takashi:[34,38,102],takayama:43,takayuki:38,takes:131,takuto:36,tar:[12,24,25,27,28,29,30,31],target:[32,34,42,51,55,57,58,65,123,151,202],taro:270,tasuku:45,tatsuya:40,tc:[61,69],tcp:[44,153,158],te:[146,241],temporary:[55,153],term:[89,277],terminal:274,terms:[89,92,104,112,114,115,122,134,135,142,144,153,168,169,177,179,196,197,211,212,213,221,224,225,239,245,264,271,273],teruya:43,test:[12,14,135,154,268,271,273,274,275],testdb:[154,159],tests:12,tex:146,text:[40,43,47,58,83,92,105,107,112,114,115,121,122,130,134,135,142,146,154,177,179,196,197,207,210,211,212,213,220,240,242,245,255,273],tf:[63,211,212,213],than:[44,80,210,253],thanks:274,that:[40,49,51,53,57,58,65,66,68,74,117,142,153,179,199,253],the:[16,40,45,49,51,53,54,55,57,58,65,66,68,74,99,105,112,114,115,117,123,131,135,142,153,155,157,158,159,165,179,196,197,239,245,253,259,265,274],theater:277,theatre:277,them:57,then:74,there:[80,196,253,259],therubyracer:12,thesaurus:135,these:[55,179],thorsten:44,thread:[9,22,34,43,46,51,55,68,74,81,99,113,123,142,153,154],threadid:34,threads:99,threasd:153,three:[268,271],threshold:[38,43,64,65,101],through:155,thursday:184,thus:[157,159],tid:61,tim:34,time:[22,34,38,40,41,42,43,44,46,112,114,115,116,117,120,121,122,123,130,131,134,135,138,140,151,153,154,158,160,174,199,216,217,219,239,264,268,274],timeout:[44,49,65],times:49,timestamp:[44,112,114,115,116,117,120,123,130,135],timestamps:117,title:[12,34,41,42,103,105,106,107,108,130,135,142,177,182,211,268,269,270,271,273,275],titles:[196,197],tittle:273,tiwawan:43,tld:269,tls:44,tmp:[6,7,12,41,93,95,114,122,123,138,143,153,209,210,255,261,271,275],to:[22,40,44,45,49,51,53,54,57,58,63,65,68,74,83,96,103,112,114,115,123,135,148,153,155,159,179,196,197,252,274],tobby:177,todo:[6,7,14,34,51,52,54,55,56,57,58,59,60,61,62,64,65,66,67,68,69,71,72,75,77,79,80,83,92,105,114,118,128,135,157,160,180,192,196,197,214,245,247,255,256,257,272],token:[34,43,103,144,154,221,223,224,225],tokenbigram:[22,46,92,112,114,115,122,130,134,135,140,142,144,146,147,153,158,168,169,177,179,182,196,197,198,211,212,213,217,220,221,224,225,226,227,229,230,231,232,233,234,235,238,239,243,244,245,262,264,271,273,274,277],tokenbigramignoreblank:[22,46,134,147,227,264],tokenbigramignoreblanksplitsymbol:[22,46,134,147,227,264],tokenbigramignoreblanksplitsymbolalpha:[22,34,46,134,147,227,264],tokenbigramignoreblanksplitsymbolalphadigit:[22,34,46,134,147,227,264],tokenbigramsplitsymbol:[22,34,36,46,134,147,227,239,264],tokenbigramsplitsymbolalpha:[22,46,134,135,146,147,227,228,262,264],tokenbigramsplitsymbolalphadigit:[22,46,91,134,147,177,217,227,264],tokenbigramsplitxxx:228,tokenbigrm:91,tokenbigrma:146,tokendelimit:[22,46,134,146,147,158,219,223,227,237],tokendelimitnull:[22,37,46,134,147,227],tokendelmit:34,tokenfilternfkc:[22,34,46,202,222],tokenfilterstem:[22,25,31,34,42,46,222],tokenfilterstopstem:224,tokenfilterstopword:[22,42,43,46,144,221,222,224],tokenize:[22,41,42,43,46,81,144,147,202,223,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],tokenizer:[22,34,40,42,46,81,239,261],tokenizers:[146,147],tokenkytea:40,tokenmecab:[22,34,40,46,197,202,223,227,262,264],tokenngram:[22,34,46,227],tokenpattern:[22,34,46,227],tokenregexp:[22,43,44,46,130,134,147,210,227],tokens:146,tokenstopword:34,tokentable:[22,34,46,227],tokentrigram:[22,43,46,134,146,147,227],tokenunigram:[22,46,134,147,227],tokyogeopoint:[38,44,58,121,122,134,166,167,278],tom:177,tomita:36,tomo:270,tomoatsu:36,tomohiro:34,tomotaka:38,tomygx:43,too:[43,123,261,273],tood:[74,139],tool:21,top:[38,58,167],torinky:44,tortoisegit:8,totable:91,total:[89,121,154],touch:55,toybox:268,tr:12,tracker:19,transfer:[0,253,259,261],transitional:259,translate:17,translation:17,travel:274,travi:41,travis:[20,22,40,41,42],travisci:12,trie:134,tried:274,tries:49,trigram:[34,239],tritonn:[112,114,115,135,196,197],truncate:[22,34,38,41,42,43,44,46,51,81,104],truncated:41,truncation:38,trust:12,trusty:[12,31,42],ts:[234,235],tsu:43,tsv:[43,156,207,261],tuesday:184,turn:155,tutorial:74,tweet:198,tweets:198,twiter:40,twitter:[3,22,274],two:159,tx:241,txt:[16,17],type:[34,44,51,53,54,58,62,63,65,66,68,71,93,95,118,138,140,154,162,216,217,219,268,269,270,271,273,274,276,278],types:[118,138,201,202,203,216,217,219],typo:[38,42],ubuntu:[14,18,21,22,23,34,36,38,40,41,42,43,44],ueno:[36,37,40],ui:135,uid:12,uint:[33,34,36,40,41,42,44,47,70,80,83,91,92,93,95,102,104,112,114,115,121,122,134,135,140,141,142,143,148,158,161,163,171,176,182,184,196,197,198,200,210,224,225,240,242,245,264,269,270,271,273,275,276,277,278],ul:146,ull:146,ultra:270,umask:42,umemoto:38,unchanged:74,under:[155,159],unicode:[34,43,201,202,203,223],unicorn:43,unified:34,unify:34,uninstall:40,unique:131,united:102,universe:31,unix:[3,5,8,29,42,83],unknown:[34,47,261],unlink:57,unlock:65,unlocked:74,unlocks:74,unmanaged:89,unmaps:55,unpatched:45,unsafe:55,unsigned:[42,50,51,57,60,63,65,66,68,69,71,74],unsplit:11,unsupported:261,until:[49,74],up:207,update:[17,18,25,27,31,34,40,60,261],updated:[17,45,264],updates:179,updating:49,upgrade:12,upload:12,uptime:[35,84,137,155,207,261,271,275],uri:[155,156,158],url:[12,38,42,103,156,275],usa:269,usage:153,use:[17,34,39,43,51,53,54,55,57,74,83,89,90,112,115,129,135,148,153,158,196,197,211,223,248,253,259,273],used:[53,54,55,65,73,88,91,148,153,159,253,274],useful:[51,153,211,273],useless:55,user:[66,117,154,155,158,161,169,171,177,179,182,197,245,270],username:[32,270],users:[32,34,44,47,63,85,86,91,93,95,102,104,117,120,121,123,134,135,143,148,155,161,177,199,255],uses:[53,55,159],using:[45,53,273],usr:[14,25,28,29,124,125,129,153,155],usually:159,utc:197,utf:[29,34,36,40,41,44,45,56,63,153,158,197,207,241],utopic:43,uubntu:14,uuid:44,uuuuuu:197,uzulla:38,v1:11,v2:11,vagrant:12,valgrind:14,value:[34,40,41,42,43,44,49,51,62,63,65,66,68,69,74,80,91,105,121,122,132,133,134,141,146,155,156,162,196,197,202,210,223,226,228,229,230,231,232,233,234,235,236,237,238,239,241,243,244,271,275],valuebuf:62,valuen:[171,172],values:[51,53,65,153],variable:74,variables:74,variety:270,vars:[66,74],varying:74,vc:34,vector:[22,34,40,41,43,44,46,80,112,114,115,134,135,160],version:[12,26,34,38,45,52,54,84,131,137,154,155,207,214,261,271,275],versions:259,vervet:[43,44],very:[83,105,112,114,115,135,168,169,171,179,191,196,197,211],video:270,virtualbox:12,visual:[8,32,38,40,41,42,43,44],vivid:[12,43,44],vm:[12,40,266],vmstat:266,vmware:12,voiced:201,vojtovich:42,volumes:26,waits:[49,74],wanabe:41,want:[153,253],wareohji:40,warn:[109,153],warning:[109,110,153,155,210,213],warp:42,was:265,watch:12,way:159,wc:[24,25,27,31],we:[239,253],weakness:179,web:[12,29,35,135,138,196,217,219],webclips:170,wednesday:184,week:151,weeks:151,weight:[34,40,51,63,80,121,134,135,158,211,268],welcome:[112,114,115,135,196,197,274],well:179,werewolf:[43,44],wget:[24,25,27,29,30,31],wgs:[38,44,58,121,122,134,165,166,167,268,269,270,274,275,278],wheezy:38,when:[51,55,65,153,253],whether:[55,65],which:[74,153,159],whombx:41,wibowo:41,wiedenroth:42,wiki:155,wikipedia:[206,246],will:[65,74,153,253],wily:[43,44],win:[8,32],window:[22,34,46,247,248],windows:[3,5,6,7,22,23,34,38,40,41,42,43,44,45,74,136,154,265],wing:[40,41],without:[155,179],wo:[226,228,239],wolfgang:34,wonderland:92,wor:239,word:[40,135,196,197,202,223],words:197,worker:[9,255],works:74,world:[226,228,236,239,273],write:[14,39,128,135,139],written:148,wsaenobufs:265,wsasend:34,www:12,x6:12,xcode:28,xenial:[31,44],xerus:[31,44],xml:[36,38,39,40,41,42,53,156,207,255,261],xt:[146,241],xvzf:[24,25,27,28,29,30,31],xxx:[34,41,43,44,135,153,197],xxxx:12,xxxxx:265,yagisumi:34,yak:[34,44],yakkety:[34,44],yamada:202,yamaguchi:38,yappo:[41,42,45],year:151,years:[47,151],yes:[14,34,43,44,84,103,104,105,112,114,115,117,123,135,138,142,152],yito:[40,41],yoji:38,yoku:[41,42],york:[165,274],yoshioka:40,you:[17,51,53,54,55,57,74,148,153,155,157,158,159,196,253],younger:92,your:[17,21,38],yuki:38,yum:[12,18,24,27,40],yunqiang:44,yutaro:[34,43],yuya:43,yy:[47,135],yyyy:[197,199],yyyymm:214,yyyymmdd:[112,114,115,214],zapus:34,zcat:44,zenigata:270,zeromq:29,zesty:34,zip:[12,22,23,40],zlib:[25,29,31,36,38,40,41,42,51,92,121,134,261],zsh:[12,29],zstandard:[29,44,92,121],zstd:34,zunda:38,zxvf:12},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","12.3.2.1. GNU Autotools\u3092\u4f7f\u3063\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc\u306eGroonga\u3092\u30d3\u30eb\u30c9\u3059\u308b\u65b9\u6cd5","12.3.2.2. 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.3. 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. CentOS","2.3. Debian GNU/Linux","2.8. Docker","2.6. Fedora","2.2. Mac OS X","2.9. \u305d\u306e\u4ed6","2.7. Oracle Solaris","2.4. Ubuntu","2.1. Windows","9. \u5236\u9650\u4e8b\u9805","\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","News - 1.2.x","News - 1.3.x","News - 2.x","News - 3.x","News - 4.x","News - 5.x","News - 6.x","News in Senna period","7. \u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb","7.19. \u30a8\u30a4\u30ea\u30a2\u30b9","7.25. API","7.25.2. \u5168\u4f53\u8a2d\u5b9a","7.25.4. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_cache</span></code>","7.25.5. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_column</span></code>","7.25.6. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_command_version</span></code>","7.25.7. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_content_type</span></code>","7.25.8. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_ctx</span></code>","7.25.9. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_db</span></code>","7.25.10. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_encoding</span></code>","7.25.11. grn_expr","7.25.12. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_geo</span></code>","7.25.13. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_hook</span></code>","7.25.14. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_ii</span></code>","7.25.15. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_index_cursor</span></code>","7.25.16. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_info</span></code>","7.25.17. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_inspect</span></code>","7.25.18. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_match_escalation</span></code>","7.25.19. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_obj</span></code>","7.25.20. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_proc</span></code>","7.25.21. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_search</span></code>","7.25.22. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_table</span></code>","7.25.23. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_table_cursor</span></code>","7.25.24. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_thread_*</span></code>","7.25.25. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_type</span></code>","7.25.26. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_user_data</span></code>","7.25.1. \u6982\u8981","7.25.3. Plugin","7.12. Cast","7.6. \u30ab\u30e9\u30e0","7.6.4. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0","7.6.3. \u64ec\u4f3c\u30ab\u30e9\u30e0","7.6.1. \u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0","7.6.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. \u51fa\u529b\u5f62\u5f0f","7.3.3. \u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8","7.3.4. \u30ea\u30af\u30a8\u30b9\u30c8ID","7.3.5. \u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8","7.3.6. \u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9","7.3.7. <code class=\"docutils literal notranslate\"><span class=\"pre\">cache_limit</span></code>","7.3.8. <code class=\"docutils literal notranslate\"><span class=\"pre\">check</span></code>","7.3.9. <code class=\"docutils literal notranslate\"><span class=\"pre\">clearlock</span></code>","7.3.10. <code class=\"docutils literal notranslate\"><span class=\"pre\">column_copy</span></code>","7.3.11. <code class=\"docutils literal notranslate\"><span class=\"pre\">column_create</span></code>","7.3.12. <code class=\"docutils literal notranslate\"><span class=\"pre\">column_list</span></code>","7.3.13. <code class=\"docutils literal notranslate\"><span class=\"pre\">column_remove</span></code>","7.3.14. <code class=\"docutils literal notranslate\"><span class=\"pre\">column_rename</span></code>","7.3.15. <code class=\"docutils literal notranslate\"><span class=\"pre\">config_delete</span></code>","7.3.16. <code class=\"docutils literal notranslate\"><span class=\"pre\">config_get</span></code>","7.3.17. <code class=\"docutils literal notranslate\"><span class=\"pre\">config_set</span></code>","7.3.18. <code class=\"docutils literal notranslate\"><span class=\"pre\">database_unmap</span></code>","7.3.19. <code class=\"docutils literal notranslate\"><span class=\"pre\">define_selector</span></code>","7.3.20. <code class=\"docutils literal notranslate\"><span class=\"pre\">defrag</span></code>","7.3.21. <code class=\"docutils literal notranslate\"><span class=\"pre\">delete</span></code>","7.3.22. <code class=\"docutils literal notranslate\"><span class=\"pre\">dump</span></code>","7.3.23. <code class=\"docutils literal notranslate\"><span class=\"pre\">io_flush</span></code>","7.3.24. <code class=\"docutils literal notranslate\"><span class=\"pre\">load</span></code>","7.3.25. <code class=\"docutils literal notranslate\"><span class=\"pre\">lock_acquire</span></code>","7.3.26. <code class=\"docutils literal notranslate\"><span class=\"pre\">lock_clear</span></code>","7.3.27. <code class=\"docutils literal notranslate\"><span class=\"pre\">lock_release</span></code>","7.3.28. <code class=\"docutils literal notranslate\"><span class=\"pre\">log_level</span></code>","7.3.29. <code class=\"docutils literal notranslate\"><span class=\"pre\">log_put</span></code>","7.3.30. <code class=\"docutils literal notranslate\"><span class=\"pre\">log_reopen</span></code>","7.3.31. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_count</span></code>","7.3.32. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_parameters</span></code>","7.3.33. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_range_filter</span></code>","7.3.34. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_select</span></code>","7.3.35. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_shard_list</span></code>","7.3.36. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_table_remove</span></code>","7.3.37. <code class=\"docutils literal notranslate\"><span class=\"pre\">normalize</span></code>","7.3.38. <code class=\"docutils literal notranslate\"><span class=\"pre\">normalizer_list</span></code>","7.3.39. <code class=\"docutils literal notranslate\"><span class=\"pre\">object_exist</span></code>","7.3.40. <code class=\"docutils literal notranslate\"><span class=\"pre\">object_inspect</span></code>","7.3.41. <code class=\"docutils literal notranslate\"><span class=\"pre\">object_list</span></code>","7.3.42. <code class=\"docutils literal notranslate\"><span class=\"pre\">object_remove</span></code>","7.3.43. <code class=\"docutils literal notranslate\"><span class=\"pre\">plugin_register</span></code>","7.3.44. <code class=\"docutils literal notranslate\"><span class=\"pre\">plugin_unregister</span></code>","7.3.45. <code class=\"docutils literal notranslate\"><span class=\"pre\">query_expand</span></code>","7.3.46. <code class=\"docutils literal notranslate\"><span class=\"pre\">quit</span></code>","7.3.47. <code class=\"docutils literal notranslate\"><span class=\"pre\">range_filter</span></code>","7.3.48. <code class=\"docutils literal notranslate\"><span class=\"pre\">register</span></code>","7.3.49. <code class=\"docutils literal notranslate\"><span class=\"pre\">reindex</span></code>","7.3.50. <code class=\"docutils literal notranslate\"><span class=\"pre\">request_cancel</span></code>","7.3.51. <code class=\"docutils literal notranslate\"><span class=\"pre\">ruby_eval</span></code>","7.3.52. <code class=\"docutils literal notranslate\"><span class=\"pre\">ruby_load</span></code>","7.3.53. <code class=\"docutils literal notranslate\"><span class=\"pre\">schema</span></code>","7.3.54. <code class=\"docutils literal notranslate\"><span class=\"pre\">select</span></code>","7.3.55. <code class=\"docutils literal notranslate\"><span class=\"pre\">shutdown</span></code>","7.3.56. <code class=\"docutils literal notranslate\"><span class=\"pre\">status</span></code>","7.3.57. <code class=\"docutils literal notranslate\"><span class=\"pre\">suggest</span></code>","7.3.58. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_copy</span></code>","7.3.59. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_create</span></code>","7.3.60. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_list</span></code>","7.3.61. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_remove</span></code>","7.3.62. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_rename</span></code>","7.3.63. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_tokenize</span></code>","7.3.64. <code class=\"docutils literal notranslate\"><span class=\"pre\">thread_limit</span></code>","7.3.65. <code class=\"docutils literal notranslate\"><span class=\"pre\">tokenize</span></code>","7.3.66. <code class=\"docutils literal notranslate\"><span class=\"pre\">tokenizer_list</span></code>","7.3.67. <code class=\"docutils literal notranslate\"><span class=\"pre\">truncate</span></code>","7.18. \u8a2d\u5b9a","7.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","7.1.1. <code class=\"docutils literal notranslate\"><span class=\"pre\">grndb</span></code>","7.1.2. grnslap","7.1.3. <code class=\"docutils literal notranslate\"><span class=\"pre\">groonga</span></code> \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. <code class=\"docutils literal notranslate\"><span class=\"pre\">groonga-suggest-httpd</span></code>","7.1.9. groonga-suggest-learner","7.15. \u95a2\u6570","7.15.1. <code class=\"docutils literal notranslate\"><span class=\"pre\">between</span></code>","7.15.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">cast_loose</span></code>","7.15.3. edit_distance","7.15.4. <code class=\"docutils literal notranslate\"><span class=\"pre\">fuzzy_search</span></code>","7.15.5. <code class=\"docutils literal notranslate\"><span class=\"pre\">geo_distance</span></code>","7.15.6. geo_in_circle","7.15.7. geo_in_rectangle","7.15.8. <code class=\"docutils literal notranslate\"><span class=\"pre\">highlight_full</span></code>","7.15.9. <code class=\"docutils literal notranslate\"><span class=\"pre\">highlight_html</span></code>","7.15.10. <code class=\"docutils literal notranslate\"><span class=\"pre\">html_untag</span></code>","7.15.11. <code class=\"docutils literal notranslate\"><span class=\"pre\">in_records</span></code>","7.15.12. <code class=\"docutils literal notranslate\"><span class=\"pre\">in_values</span></code>","7.15.13. <code class=\"docutils literal notranslate\"><span class=\"pre\">math_abs</span></code>","7.15.14. now","7.15.15. <code class=\"docutils literal notranslate\"><span class=\"pre\">number_classify</span></code>","7.15.16. <code class=\"docutils literal notranslate\"><span class=\"pre\">prefix_rk_search</span></code>","7.15.17. <code class=\"docutils literal notranslate\"><span class=\"pre\">query</span></code>","7.15.18. rand","7.15.19. <code class=\"docutils literal notranslate\"><span class=\"pre\">snippet_html</span></code>","7.15.20. <code class=\"docutils literal notranslate\"><span class=\"pre\">string_length</span></code>","7.15.21. <code class=\"docutils literal notranslate\"><span class=\"pre\">string_substring</span></code>","7.15.22. <code class=\"docutils literal notranslate\"><span class=\"pre\">sub_filter</span></code>","7.15.23. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_day</span></code>","7.15.24. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_day_of_week</span></code>","7.15.25. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_hour</span></code>","7.15.26. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_minute</span></code>","7.15.27. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_month</span></code>","7.15.28. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_second</span></code>","7.15.29. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_week</span></code>","7.15.30. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_year</span></code>","7.15.31. <code class=\"docutils literal notranslate\"><span class=\"pre\">vector_find</span></code>","7.15.32. <code class=\"docutils literal notranslate\"><span class=\"pre\">vector_new</span></code>","7.15.33. <code class=\"docutils literal notranslate\"><span class=\"pre\">vector_size</span></code>","7.15.34. <code class=\"docutils literal notranslate\"><span class=\"pre\">vector_slice</span></code>","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. \u30ed\u30b0","7.7. \u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc","7.7.2.1. <code class=\"docutils literal notranslate\"><span class=\"pre\">NormalizerAuto</span></code>","7.7.2.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">NormalizerNFKC100</span></code>","7.7.2.3. <code class=\"docutils literal notranslate\"><span class=\"pre\">NormalizerNFKC51</span></code>","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. <code class=\"docutils literal notranslate\"><span class=\"pre\">scorer_tf_at_most</span></code>","7.11.3.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">scorer_tf_idf</span></code>","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. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenFilterNFKC100</span></code>","7.9.3. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenFilterStem</span></code>","7.9.4. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenFilterStopWord</span></code>","7.8.1. \u6982\u8981","7.8. \u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc","7.8.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigram</span></code>","7.8.3. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramIgnoreBlank</span></code>","7.8.4. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramIgnoreBlankSplitSymbol</span></code>","7.8.5. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramIgnoreBlankSplitSymbolAlpha</span></code>","7.8.6. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramIgnoreBlankSplitSymbolAlphaDigit</span></code>","7.8.7. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramSplitSymbol</span></code>","7.8.8. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramSplitSymbolAlpha</span></code>","7.8.9. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramSplitSymbolAlphaDigit</span></code>","7.8.10. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenDelimit</span></code>","7.8.11. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenDelimitNull</span></code>","7.8.12. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenMecab</span></code>","7.8.13. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenNgram</span></code>","7.8.14. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenPattern</span></code>","7.8.15. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenRegexp</span></code>","7.8.16. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenTable</span></code>","7.8.17. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenTrigram</span></code>","7.8.18. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenUnigram</span></code>","7.24. \u30c1\u30e5\u30fc\u30cb\u30f3\u30b0","7.4. \u30c7\u30fc\u30bf\u578b","7.16. \u30a6\u30a3\u30f3\u30c9\u30a6\u95a2\u6570","7.16.1. <code class=\"docutils literal notranslate\"><span class=\"pre\">record_number</span></code>","7.16.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">window_count</span></code>","7.16.3. <code class=\"docutils literal notranslate\"><span class=\"pre\">window_record_number</span></code>","7.16.4. <code class=\"docutils literal notranslate\"><span class=\"pre\">window_sum</span></code>","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:{"()":11,"(geopoint":274,"(v":11,"-benchmark":154,"-clear":151,"-command":82,"-compose":26,"-create":157,"-dataset":157,"-default":29,"-document":18,"-encoding":29,"-escalation":29,"-examples":12,"-files":12,"-flags":151,"-force":151,"-gqtp":259,"-help":29,"-http":259,"-httpd":[155,158,159,257,259],"-latest":12,"-learner":[158,159],"-level":151,"-localstatedir":29,"-lock":151,"-log":[29,151],"-lz4":29,"-match":29,"-message":29,"-munin":29,"-pack":29,"-package":29,"-path":[29,151],"-platform":29,"-plugins":29,"-po":12,"-prefix":29,"-release":12,"-server":259,"-since":151,"-suggest":[157,158,159],"-target":151,"-threshold":29,"-truncate":151,"-version":82,"-with":29,"-zlib":29,".group":[112,114,115,135],".max":245,".maxfileperproc":245,".overcommit":245,".po":17,".po\u30d5\u30a1\u30a4\u30eb":17,".sort":[112,114,115,135],"/linux":[7,25],":*":122,":index":122,"=encoding":29,"=message":29,"=number":29,"=path":29,"=platform":29,"[$":[112,114,115,135],"\u3042\u3052\u308b":264,"\u3042\u308a":[196,197],"\u3042\u308b":274,"\u3044\u304f":10,"\u3044\u308b":[117,142,205],"\u3044\u308d\u3044\u308d":268,"\u3046\u307e\u304f":10,"\u304a\u304f":10,"\u304a\u3055\u3089\u3044":10,"\u304a\u6c17":274,"\u304a\u77e5\u3089":[34,35,36,37],"\u304b\u3089":[6,7,8,10,24,25,27,28,29,31,32,158,206],"\u304c\u3063":273,"\u3053\u3061\u3089":10,"\u3053\u3068":12,"\u3054\u3068":273,"\u3055\u307e\u3056\u307e\u306a":278,"\u3059\u308b":[5,6,7,8,10,12,14,19,80,86,92,117,155,159,216,217,219,264,266,269,273],"\u305d\u306e":[29,210],"\u305f\u3044":12,"\u305f\u3081":[10,11,115,135],"\u3060\u3051":[10,12,80],"\u3065\u3051":82,"\u3066\u308b":274,"\u3067\u304d":[117,142,246],"\u3067\u304d\u308b":[10,11],"\u3068\u3044\u3046":122,"\u3068\u3057\u3066":246,"\u3068\u308a":10,"\u306a\u3044":[10,117,142,246],"\u306a\u3057":[197,255],"\u306b\u3088\u308b":[269,273,276],"\u306b\u5bfe\u3059\u308b":273,"\u306b\u95a2\u3059\u308b":246,"\u306e\u306b":264,"\u306e\u307f":[12,14],"\u306f\u3058\u3081":218,"\u3078\u3068":10,"\u307e\u305f":[7,273],"\u307e\u305f\u3050":273,"\u307e\u3068\u3081":12,"\u3084\u308a":10,"\u3084\u308b":12,"\u3088\u3046":[216,217,219],"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":255,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":255,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"\u30a2\u30f3\u30ab\u30fc":210,"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":12,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":9,"\u30a4\u30e1\u30fc\u30b8":26,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":32,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[6,7,8,14,17,18,23,209],"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[33,92,198,210,270,273],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[77,92,271],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":140,"\u30a4\u30f3\u30dd\u30fc\u30c8":12,"\u30a6\u30a3\u30f3\u30c9\u30a6":[112,114,115,135,247],"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":12,"\u30a8\u30a4\u30ea\u30a2\u30b9":47,"\u30a8\u30b9\u30b1\u30fc\u30d7":[196,210],"\u30a8\u30e9\u30fc":[83,266],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":265,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[122,208],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":197,"\u30aa\u30d7\u30b7\u30e7\u30f3":[152,153,154,157,159],"\u30ab\u30b9\u30b1\u30fc\u30c9":102,"\u30ab\u30d0\u30ec\u30c3\u30b8":14,"\u30ab\u30e9\u30e0":[33,76,78,91,92,112,114,115,121,135,142,165,269,271,273],"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":273,"\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2":0,"\u30ad\u30e3\u30c3\u30b7\u30e5":[112,114,115,135,155],"\u30ad\u30fc\u30ef\u30fc\u30c9":[264,274],"\u30af\u30a8\u30ea":[0,11,277],"\u30af\u30a8\u30ea\u30fc":[155,196,208],"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":155,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":199,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":1,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":153,"\u30af\u30e9\u30b9":210,"\u30b0\u30eb\u30fc\u30d7":[196,197,210],"\u30b1\u30fc\u30b9":[117,142],"\u30b3\u30de\u30f3\u30c9":[81,149,151,153,156,214,271,275],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[82,255],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":154,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[153,158,207],"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":2,"\u30b3\u30e1\u30f3\u30c8":274,"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[3,15],"\u30b5\u30a4\u30ba":92,"\u30b5\u30b8\u30a7\u30b9\u30c8":[158,215],"\u30b5\u30f3\u30d7\u30eb":[152,154],"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[196,197],"\u30b5\u30fc\u30d0":[0,261,275],"\u30b5\u30fc\u30d0\u30fc":[156,252,259],"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":259,"\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9":153,"\u30b7\u30b9\u30c6\u30e0":[19,274],"\u30b7\u30d5\u30c8":197,"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0":214,"\u30b8\u30aa\u30b5\u30fc\u30c1":270,"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":[79,92],"\u30b9\u30af\u30ea\u30d7\u30c8":[12,197],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":154,"\u30b9\u30b3\u30a2\u30e9\u30fc":211,"\u30b9\u30b3\u30a2\u30fc":135,"\u30b9\u30bf\u30a4\u30eb":135,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30fc\u30f3\u30e2\u30fc\u30c9":153,"\u30b9\u30c8\u30ec\u30fc\u30b8":0,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":0,"\u30b9\u30e9\u30a4\u30b9":135,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":275,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":197,"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":158,"\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc":265,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":[6,7,8,18],"\u30bd\u30fc\u30b9":[24,25,27,28,29,31,32],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":12,"\u30bd\u30fc\u30c8":[269,278],"\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":86,"\u30bf\u30b0":270,"\u30bf\u30b0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":140,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":255,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":12,"\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":267,"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0":245,"\u30c4\u30a4\u30fc\u30c8":10,"\u30c4\u30fc\u30eb":[29,155,275],"\u30c6\u30b9\u30c8":[14,114],"\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":14,"\u30c6\u30fc\u30d6\u30eb":[33,91,92,117,121,140,142,159,177,220,246,268,271,273,274],"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":155,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":12,"\u30c7\u30d0\u30c3\u30ac":14,"\u30c7\u30d5\u30a9\u30eb\u30c8":86,"\u30c7\u30fc\u30bf":[92,140,216,219,246,268,271,274],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[121,255,271],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":155,"\u30c7\u30fc\u30e2\u30f3":261,"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":153,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[154,263],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":0,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[227,264],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":222,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[12,15,22],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[115,135,269],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":200,"\u30ce\u30fc\u30de\u30eb\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":80,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":274,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":258,"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":19,"\u30d0\u30fc\u30b8\u30e7\u30f3":[12,35,36,37,82],"\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba":12,"\u30d1\u30c3\u30b1\u30fc\u30b8":12,"\u30d1\u30c3\u30c1":17,"\u30d1\u30c8\u30ea\u30b7\u30a2":276,"\u30d1\u30e9\u30e1\u30fc\u30bf":[82,273],"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[115,135],"\u30d3\u30c3\u30c8":197,"\u30d3\u30eb\u30c9":[5,6,7,8,12,24,25,27,28,29,31,32],"\u30d5\u30a1\u30a4\u30eb":[11,12,17,18,150,153,209,245,255],"\u30d5\u30a9\u30ed\u30fc":274,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[135,199,209],"\u30d5\u30ec\u30fc\u30ba":196,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":275,"\u30d6\u30ed\u30b0":12,"\u30d7\u30ea\u30c6\u30a3\u30fc\u30d7\u30ea\u30f3\u30c8":84,"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":255,"\u30d7\u30ed\u30bb\u30b9":245,"\u30d7\u30ed\u30bb\u30b9\u30ed\u30b0":199,"\u30d7\u30ed\u30c8\u30b3\u30eb":261,"\u30d7\u30ed\u30d1\u30c6\u30a3":122,"\u30d8\u30c3\u30c0\u30fc":261,"\u30d9\u30af\u30bf\u30fc":246,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[80,92,268],"\u30da\u30fc\u30b8\u30f3\u30b0":135,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":274,"\u30de\u30c3\u30c1":197,"\u30de\u30c3\u30c1\u30ab\u30e9\u30e0":196,"\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":92,"\u30e1\u30e2\u30ea":245,"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[2,19],"\u30e2\u30b8\u30e5\u30fc\u30eb":155,"\u30e6\u30fc\u30b6\u30fc":[10,158,274],"\u30e6\u30fc\u30b6\u30fcid":274,"\u30e9\u30a4\u30d6\u30e9\u30ea":[0,29],"\u30ea\u30af\u30a8\u30b9\u30c8":[85,86],"\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":86,"\u30ea\u30af\u30a8\u30b9\u30c8id":85,"\u30ea\u30bd\u30fc\u30b9":[117,142],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":[86,87],"\u30ea\u30c6\u30e9\u30eb":197,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7":155,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":46,"\u30ea\u30dd\u30b8\u30c8\u30ea":[13,17],"\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc":[5,6,7,8],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":275,"\u30ea\u30ea\u30fc\u30b9":[12,34,35,36,37,38,39,40,41,42,43,44],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":12,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":12,"\u30eb\u30fc\u30eb":214,"\u30ec\u30b3\u30fc\u30c9":[92,135,271],"\u30ec\u30b3\u30fc\u30c9id":220,"\u30ed\u30b0":[111,199],"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":0,"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":111,"\u30ed\u30fc\u30c9":[80,271,274],"\u30ed\u30fc\u30de":206,"\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":14,"\u4e00\u6642":220,"\u4e00\u6642\u30c6\u30fc\u30d6\u30eb":220,"\u4e00\u7dd2":[117,142],"\u4e00\u81f4":[196,197,216,262,276],"\u4e00\u81f4rk":[206,216],"\u4e00\u89a7":[87,149,151,200,208,214,274],"\u4e00\u90e8":117,"\u4e0a\u9650":33,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":14,"\u4e0d\u7b49\u4fa1":[196,197],"\u4e26\u3079":271,"\u4e26\u5217":12,"\u4e3b\u30ad\u30fc":[246,276],"\u4e57\u7b97":197,"\u4e8b\u9805":[33,154,246],"\u4ed5\u65b9":17,"\u4ed5\u69d8":260,"\u4ed8\u304d":[18,197,270],"\u4ed8\u4e0e":273,"\u4ee3\u5165":197,"\u4ee3\u5165\u5f0f":196,"\u4ee5\u4e0a":[196,197],"\u4ee5\u4e0b":196,"\u4ee5\u4e0b\u6f14":197,"\u4f4d\u7f6e":[0,82,165,205,274,278],"\u4f5c\u308a\u65b9":80,"\u4f5c\u308b":6,"\u4f5c\u6210":[12,92,140,271,272,274],"\u4f5c\u696d":12,"\u4f7f\u3044":262,"\u4f7f\u3044\u65b9":[47,77,79,80,84,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,151,153,154,155,158,159,161,162,164,165,168,169,170,171,172,173,175,176,177,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,198,201,202,203,206,207,209,210,211,212,213,216,217,219,223,224,225,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,248,249,250,251],"\u4f7f\u3046":[155,158,165],"\u4f7f\u3063":[6,7,8],"\u4f7f\u7528":245,"\u4f8b\u3048":10,"\u4f9d\u5b58":29,"\u4fdd\u5b58":[140,268],"\u4fee\u6b63":[34,35,36,37,38,40,41,42,43,44,45],"\u5165\u308a":274,"\u5165\u529b":158,"\u5165\u6f14":197,"\u5168\u4f53":49,"\u5168\u6587":[0,264,271,273,278],"\u5168\u6587\u691c":[92,271,272],"\u5168\u6587\u691c\u7d22":196,"\u516c\u958b":12,"\u5171\u6709":0,"\u5171\u8d77":[216,217,219],"\u5171\u901a":122,"\u518d\u8d77\u52d5":259,"\u51fa\u529b":[17,83,114,115,135,207,271],"\u5206\u3051":262,"\u5229\u7528":[117,142,155,278],"\u5236\u5fa1":197,"\u5236\u9650":[33,80,154,209,220,246,269],"\u524a\u6e1b":[117,142],"\u524a\u9664":[102,117,142],"\u524d\u63d0":12,"\u524d\u65b9":[196,197,206,216,276],"\u5270\u4f59":197,"\u5272\u308a":85,"\u52a0\u7b97":197,"\u52d5\u4f5c":[12,14,216,217,219],"\u52d5\u7684":[112,114,115,135,198],"\u5354\u529b":10,"\u5358\u8a9e":197,"\u5373\u6642":0,"\u539f\u56e0":264,"\u53c2\u7167":[0,92,142,261,268,270],"\u53c2\u7167\u578b":80,"\u53c2\u8003":[6,7,8,47,83,85,86,87,88,90,92,93,96,97,98,100,102,105,106,108,109,110,111,116,118,119,122,124,125,126,128,129,131,132,133,134,135,138,140,144,146,147,157,158,162,168,169,176,177,179,182,195,200,201,202,206,209,212,213,220,221,236,238,239,240,242],"\u53d6\u308a\u6d88\u3057":12,"\u53d6\u5f97":[12,26,271],"\u53e4\u3044":34,"\u53ef\u80fd":[0,91,92,96,97,98,99,103,104,105,112,113,114,115,116,117,118,120,121,122,123,126,134,136,137,139,140,142,144,145,146,155,158,161,165,169,171,177,191,202,212,213,223,224,225,236,238,239],"\u540c\u3058":264,"\u540d\u524d":[78,152,154,156,157,163,166,167,174,178,246],"\u5411\u3051":[4,12],"\u5426\u5b9a":[196,197],"\u547c\u3073\u51fa\u3057":197,"\u547d\u4ee4":154,"\u548c\u4ee3":197,"\u548c\u6f14":197,"\u56de\u907f":266,"\u56fa\u6709":122,"\u56fd\u969b\u5316":17,"\u5727\u7e2e":255,"\u57fa\u672c":[117,142,197,271],"\u5831\u544a":19,"\u5834\u5408":[12,26,83,273],"\u5834\u6240":[10,209],"\u58ca\u308c":117,"\u5909\u63db":206,"\u5909\u66f4":[36,91,255,264],"\u5909\u66f4\u70b9":12,"\u5927\u304d\u306a":[92,140],"\u5927\u306a\u308a":[196,197],"\u5b66\u7fd2":[158,216,217,218,219],"\u5b8c\u5168":262,"\u5b9f\u4f8b":11,"\u5b9f\u73fe":11,"\u5b9f\u884c":[6,7,8,11,12,14,18,150,153,154,155],"\u5b9f\u9a13":38,"\u5bc6\u9375":12,"\u5bfe\u5fdc":[10,205,255],"\u5bfe\u7b56":[264,266],"\u5bfe\u8c61":[92,142],"\u5c0e\u5165":18,"\u5c0f\u3055":92,"\u5c0f\u306a\u308a":[196,197],"\u5c0f\u6570":197,"\u5c55\u958b":208,"\u5dee\u6f14":197,"\u5ea7\u6a19\u5024":197,"\u5f15\u6570":[88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,126,127,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,148,152,153,154,158,159,161,163,165,166,167,168,169,170,171,172,173,176,177,178,182,191,192,193,202,212,213,223,224,225,236,238,239,245],"\u5f53\u3066\u308b":85,"\u5f62\u5f0f":83,"\u5f8c\u65b9":[196,197,276],"\u5fc5\u8981":[6,7,8,18,170],"\u5fc5\u9808":[91,92,93,95,96,97,98,99,104,105,112,113,114,115,116,117,118,120,121,122,123,126,131,134,135,136,137,139,140,142,143,144,145,146,148,158,161,165,169,171,177,191,212,213],"\u6027\u80fd":[155,255],"\u60c5\u5831":[0,4,10,14,205,274,278],"\u611f\u8b1d":[34,35,36,37,38,39,40,41,42,43,44],"\u6210\u529f":83,"\u6210\u679c":17,"\u623b\u308a\u5024":[88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,156,158,161,162,164,165,168,169,170,171,172,173,175,176,177,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,212,213,248,249,250,251],"\u624b\u9806":12,"\u6271\u3048\u308b":92,"\u6295\u7a3f":274,"\u62bd\u51fa":[197,219],"\u62e1\u5f35":277,"\u6307\u5b9a":[82,158,165,196,246,271,273],"\u6307\u91dd":10,"\u6319\u52d5":262,"\u6392\u4ed6":197,"\u63a5\u7d9a":261,"\u63d0\u4f9b":10,"\u63d0\u6848":[218,219],"\u64cd\u4f5c":[204,271],"\u64ec\u4f3c":78,"\u6539\u826f":[34,35,36,37,38,39,40,41,42,43,44,45],"\u6570\u5024":268,"\u6574\u6570":197,"\u6587\u5b57":210,"\u6587\u5b57\u5217":[197,268],"\u6587\u66f8":[196,197,217],"\u6587\u6cd5":278,"\u65b0\u3057\u3044":17,"\u65b9\u6cd5":[3,5,6,7,8,12,14,15,17,47,80,82,85,86,91,198,204,216,217,219,264,265,266],"\u65e5\u6642":268,"\u660e\u793a\u7684":165,"\u6642\u9593":[197,274],"\u66f4\u65b0":[0,12,17,18,216],"\u66f8\u304d":262,"\u66f8\u5f0f":[152,154,156,159,163,166,167,174,178,271],"\u66ff\u3048":271,"\u6700\u521d":12,"\u6700\u5927":245,"\u6709\u52b9":86,"\u6761\u4ef6":[12,135,170,196,278],"\u6761\u4ef6\u5f0f":196,"\u683c\u7d0d":246,"\u691c\u51fa":14,"\u691c\u7d22":[0,80,112,114,115,135,140,196,197,205,206,216,217,219,262,264,270,271,273,274,276,277,278],"\u691c\u7d22\u4f8b":11,"\u6982\u8981":[0,47,49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,77,79,80,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,151,153,155,156,158,159,161,162,164,165,168,169,170,171,172,173,175,176,177,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,200,201,202,203,206,209,210,211,212,213,214,220,221,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,248,249,250,251],"\u69cb\u6587":[88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,151,153,155,158,161,162,164,165,168,169,170,171,172,173,175,176,177,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,196,197,201,202,203,210,212,213,223,224,225,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,248,249,250,251],"\u69cb\u7bc9":[14,198],"\u69d8\u3005":14,"\u6a5f\u80fd":205,"\u6b63\u898f":[196,197,210],"\u6bce\u56de":12,"\u6bd4\u8f03":[197,255],"\u6c38\u7d9a":220,"\u6d41\u308c":17,"\u6d6e\u52d5":197,"\u6e1b\u7b97":197,"\u6e96\u5099":[12,277],"\u6f14\u7b97\u5b50":197,"\u70b9\u6570":197,"\u7279\u5b9a":[12,14],"\u7279\u5fb4":[0,220],"\u7279\u6709":155,"\u7279\u6b8a":154,"\u72ec\u81ea":197,"\u7406\u7531":10,"\u74b0\u5883":[12,14],"\u751f\u6210":[12,17,18],"\u7528\u3044":[111,278],"\u7528\u3044\u308b":26,"\u7528\u79d8":12,"\u7528\u8a9e\u96c6":214,"\u7570\u306a\u308b":264,"\u767b\u9332":[12,19],"\u7701\u7565":[91,92,96,97,98,99,103,104,105,112,113,114,115,116,117,118,120,121,122,123,126,134,136,137,139,140,142,144,145,146,158,161,165,169,171,177,191,202,212,213,223,224,225,236,238,239],"\u771f\u507d\u5024":[197,268],"\u77e5\u308a":12,"\u78ba\u8a8d":[12,17],"\u7a2e\u985e":[92,122,268],"\u7a4d\u4ee3":197,"\u7a4d\u6f14":197,"\u7b26\u53f7":197,"\u7b49\u4fa1":[196,197],"\u7b97\u5b50":197,"\u7b97\u8853":197,"\u7ba1\u7406":[155,275],"\u7bc4\u56f2":[140,271],"\u7c21\u5358":[114,115,135,202,223,236,238,239],"\u7d22\u5f15":0,"\u7d22\u7528":[92,271,272],"\u7d42\u4e86":[155,259,261],"\u7d44\u307f\u8fbc\u307f":[153,200,211],"\u7d44\u8fbc\u578b":246,"\u7d4c\u5ea6":0,"\u7d4c\u7def\u5ea6":268,"\u7d50\u5408\u5f0f":196,"\u7d50\u679c":[154,158,264,269,271],"\u7d5e\u8fbc":278,"\u7de8\u96c6":17,"\u7def\u5ea6":0,"\u7f6e\u63db":177,"\u7f72\u540d":12,"\u7ffb\u8a33":[12,17],"\u884c\u3046":12,"\u8868\u73fe":[11,196,197,210],"\u8868\u793a":271,"\u88dc\u5b8c":[216,218],"\u88dc\u6b63":[217,218],"\u8907\u6570":[255,269,273],"\u89e3\u6790":[14,265],"\u89e3\u6c7a":47,"\u8a00\u8a9e":17,"\u8a2d\u5b9a":[12,21,49,86,91,149,155,255],"\u8a8d\u8a3c":255,"\u8a98\u5c0e":10,"\u8a9e\u5f59":[271,272],"\u8a9e\u5f59\u8868":140,"\u8aac\u660e":[78,152,154,163,166,167,174,178,246],"\u8aad\u307f":[206,216],"\u8ab2\u984c":19,"\u8ad6\u7406":[117,196,197],"\u8ad6\u7406\u548c":196,"\u8ad6\u7406\u7a4d":196,"\u8d77\u52d5":[158,259,261,275],"\u8ee2\u7f6e":0,"\u8fd1\u508d":[196,197],"\u8fd4\u5024":[163,166,167,174,178],"\u8ffd\u52a0":[17,200],"\u8ffd\u8de1":19,"\u9001\u308a\u65b9":[17,19],"\u9001\u4fe1":275,"\u9006\u5f15\u304d":270,"\u901a\u4fe1":9,"\u9032\u3081":10,"\u904e\u53bb":10,"\u9055\u3044":115,"\u9069\u7528":80,"\u9078\u629e":210,"\u90e8\u5206":262,"\u914d\u5217":197,"\u91cd\u307f":[80,273],"\u91cd\u307f\u4ed8\u304d":[80,92],"\u91cf\u6307\u5b9a\u5b50":210,"\u958b\u3051\u308b":245,"\u958b\u767a":[4,10,20],"\u95a2\u4fc2":[29,112,114,115,135,270],"\u95a2\u4fc2\u5f0f":11,"\u95a2\u6570":[14,112,114,115,135,160,197,247],"\u95a2\u9023":[15,112,114,115,117,135,155,159,273],"\u95be\u5024":264,"\u9650\u308a":117,"\u9664\u7b97":197,"\u96c6\u8a08":0,"\u9759\u7684":[14,198],"\u975e\u308f\u304b\u3061":262,"\u985e\u4f3c":[196,197,217],"\u9ad8\u5ea6":[115,135,202,223,236,238,239],"\uff08personal":31,"_*":70,"cpu\u30b3\u30a2":255,"default":[82,140,177],"delete":102,"float":246,"in":[45,171,172],"int":246,"new":[95,143],"null":197,"package":31,"}]":[112,114,115,135],_abs:173,_acquire:106,_alphabet:239,_and:[202,223],_api:11,_array:121,_at:212,_auto:155,_base:155,_blank:239,_border:[112,114,115,117,161],_bu:[202,223],_buffer:121,_cache:[50,155],_calc:[115,135],_cancel:131,_case:[202,223],_chunk:121,_chunks:121,_circle:166,_class:238,_classify:[175,183,184,185,186,187,188,189,190],_clear:107,_column:[51,121,144,171],_columns:[114,115,135,177,273],_command:52,_compress:121,_content:53,_copy:[91,139],_count:[112,245,249],_create:[92,140,155],_ctx:54,_cursor:[61,69],_dat:220,_data:72,_database:155,_day:[183,184],_db:55,_delete:96,_digit:239,_distance:[163,165],_dot:[202,223],_encoding:56,_equal:11,_errors:105,_escalation:[64,115,135],_escape:168,_eval:132,_exist:120,_expand:126,_expander:[115,135,177],_expansion:135,_expr:[11,57,195],_filter:[112,114,115,128,134,135,182],_filters:[122,134,140,146],_find:191,_flags:[115,135],_flush:104,_form:238,_full:[121,168],_garbage:121,_geo:58,_get:97,_hash:[103,220],_hook:59,_hour:185,_html:[168,169,179],_hyphen:[202,223],_id:121,_idf:213,_ids:105,_ii:60,_in:[121,166,167],_index:[61,113,114],_indexes:103,_info:62,_inspect:[63,121],_install:29,_kana:[202,223],_katakana:[202,223],_key:[112,114,115,117,121,220],_keys:[112,114,115,135],_length:180,_level:[109,155],_limit:[88,115,135,145,155],_list:[93,116,119,122,141,147],_load:133,_location:239,_log:155,_loose:162,_map:245,_mark:[202,223],_match:64,_max:121,_memory:245,_method:121,_middle:[202,223],_minute:186,_mode:177,_month:187,_most:212,_n:[121,158],_name:[91,95,104,106,107,108,121,130,139,143,148,168,171],_new:192,_next:121,_no:220,_not:[96,98,106,108],_number:[248,250],_obj:65,_of:[121,184],_offset:[115,135],_opened:104,_or:[96,98,106,108,161],_output:[115,135],_pack:29,_parameters:113,_pat:220,_path:[155,158,159],_physical:121,_plugins:103,_position:121,_prefix:29,_proc:66,_processes:155,_prolonged:[202,223],_put:110,_query:155,_range:114,_raw:121,_reading:238,_record:250,_records:[103,121,171],_rectangle:167,_register:124,_release:108,_remove:[94,117,123,142],_rename:[95,143],_reopen:111,_rk:176,_romaji:[202,223],_schema:103,_search:[67,164,176],_second:188,_section:121,_segment:121,_segments:121,_select:[11,115],_selector:100,_set:98,_shard:116,_size:[121,193],_slice:194,_sort:[115,135],_sortby:[115,135],_sound:[202,223],_sounds:[202,223],_source:[121,239],_statistics:121,_string:[177,182],_substring:181,_sum:251,_symbol:239,_table:[11,68,69,91,103,105,112,114,115,116,117,121,135,171],_tagn:168,_target:[115,135],_tf:[212,213],_thread:70,_threshold:[115,135],_to:[202,223],_tokenize:144,_tokenizer:140,_total:121,_type:[53,71,105,121,122,140,165,261],_types:[115,135],_unmanaged:121,_unmap:99,_unregister:125,_untag:170,_use:121,_user:72,_v:[202,223],_value:[121,161,172],_values:[115,135,172],_version:[52,82],_voiced:[202,223],_week:[184,189],_weight:121,_year:190,adjuster:135,algorithm:224,allocate:266,api:[16,48],approximate:165,archive:31,arg:11,autotools:6,between:161,bigram:274,blogroonga:12,body:83,bool:246,buster:25,cache:[88,112,114,115,135],calc:115,callback:11,candidate:158,cannot:266,cast:[75,162],centos:24,changes:45,check:[89,151],ci:21,clang:14,clearlock:90,clone:17,close:168,cmake:[7,8],column:[91,92,93,94,95,121,122,134,161,168,176,212,213],columns:[105,112,114,115,135,225],command:[82,134],comments:274,condition:171,config:[96,97,98],configure:[6,12,18,29],contain:11,cutter:[12,14],data:[121,159],database:[99,121,158,159],db:11,debian:[12,25],define:100,defrag:101,delimiter:236,dependent:[117,142],desctipion:157,docker:26,domain:269,drilldown:[115,135],drilldowns:[115,135],dump:103,each:105,edit:163,ellipsoid:165,enable:18,equal:11,exit:157,facebook:[2,12],fedora:27,files:[157,159],filter:[112,114,115,135,182],flags:[92,112,114,115,118,122,135,140,144,146,177,261],force:[117,123],freebsd:245,from:[91,139,159],fuzzy:164,geo:[165,166,167],geoindex:274,geopoint:[246,274],get:158,gnu:[6,7,25],gqtp:[9,253,259,261],greater:11,grn:[11,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,195],grndb:151,grnslap:152,grntest:12,groonga:[0,3,4,5,6,7,8,9,11,12,17,22,45,153,154,155,156,157,158,159,256,257,259],gzip:255,hashtags:274,hat:12,header:[83,96,97,98,106,108,122,134],highlight:[168,169],homebrew:[12,28],how:253,html:[17,18,170],http:[156,207,254,259,275],https:255,id:[85,131],ifexists:105,include:238,index:[121,134,144,212,213],input:105,install:29,io:104,javascript:278,json:83,kern:245,key:[96,97,98,140],keys:[115,135],keywordn:168,label:[115,135],lcov:14,learning:159,less:11,libmemcached:14,limit:[114,115,135],linux:245,load:[105,115,135],location:165,lock:[105,106,107,108],log:[109,110,111,159],logical:[112,113,114,115,116,117],longtext:246,loose:239,mac:28,macports:28,make:[6,7,12,29],match:[115,135,177,273],math:173,max:[88,112,114,115,117,145,161],memcached:258,memory:266,messagepack:83,min:[112,114,115,117,161],mmap:266,mode:[11,136,144,146,171,191],mroonga:0,name:[92,95,112,114,115,120,121,123,135,140,142,143],near:11,news:[38,39,40,41,42,43,44,45],nginx:155,nofile:245,normalize:118,normalizer:[118,119,134,140,146,168],normalizerauto:201,normalizernfkc:[202,203],normalizers:134,not:11,now:174,number:175,object:[120,121,122,123],objects:122,offset:[114,115,135],only:104,open:168,oracle:30,order:114,os:28,output:[105,114,115,135],path:133,pattern:236,period:45,plugin:[74,124,125,134],plugins:134,po:12,point:165,post:[112,114,115,155,255],ppa:[12,31],prefix:[11,176],proc:122,protocol:261,proxy:155,pull:17,query:[115,126,135,176,177,261],queryexpandertsv:209,quit:127,rand:178,range:[113,122,128],record:248,recover:151,rectangle:165,recursive:104,red:12,redmine:10,register:129,reindex:130,remove:239,report:239,request:[17,131],ruby:[132,133],run:253,schema:134,scope:182,score:158,scorer:[115,135,212,213,278],script:132,select:[115,135],senna:45,shard:[112,114,115,117],shorttext:246,shutdown:136,similar:11,size:261,slices:135,snippet:179,solaris:30,sort:[103,114,115,135],sortby:[115,135],source:[92,134],sources:122,sphere:165,sphinx:17,stage:[112,114,115,135],status:[137,157,261],stretch:25,string:[118,144,146,180,181],sub:182,succeeded:[96,98,106,108],suffix:11,suggest:138,summary:253,synopstis:157,table:[92,93,95,105,121,122,134,135,139,140,141,142,143,144,220],tables:[103,134],target:[104,106,107,108,130,148,172,173,193,238],text:[169,246],thread:145,time:[183,184,185,186,187,188,189,190,246],tips:12,to:[91,139,253],todo:179,token:[122,134,140,146],tokenbigram:228,tokenbigramignoreblank:229,tokenbigramignoreblanksplitsymbol:230,tokenbigramignoreblanksplitsymbolalpha:231,tokenbigramignoreblanksplitsymbolalphadigit:232,tokenbigramsplitsymbol:233,tokenbigramsplitsymbolalpha:234,tokenbigramsplitsymbolalphadigit:235,tokendelimit:236,tokendelimitnull:237,tokenfilternfkc:223,tokenfilterstem:224,tokenfilterstopword:225,tokenize:146,tokenizer:[134,146,147],tokenizers:134,tokenmecab:238,tokenngram:239,tokenpattern:240,tokenregexp:241,tokentable:242,tokentrigram:243,tokenunigram:244,tokyogeopoint:246,travis:21,truncate:148,tsv:[83,209],twitter:[2,10,12],type:[92,112,114,115,121,122,134,135,158],types:134,ubuntu:[12,31],uint:246,unify:[202,223,239],unix:7,update:12,use:[114,168,238],users:274,value:[97,98,112,114,115,135,140,171,172,191],values:105,vector:[191,192,193,194],vm:245,wgs:246,window:[112,114,115,135,249,250,251],windows:[8,12,32],worker:155,xml:83,zip:32}})
@@ -5,7 +5,7 @@
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
6
6
  <head>
7
7
  <meta charset="utf-8" />
8
- <title>5. サーバー &#8212; Groonga v9.0.2ドキュメント</title>
8
+ <title>5. サーバー &#8212; Groonga v9.0.6ドキュメント</title>
9
9
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
10
10
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
11
11
 
@@ -51,7 +51,7 @@
51
51
  <li class="right" >
52
52
  <a href="tutorial/query_expansion.html" title="4.11. クエリ拡張"
53
53
  accesskey="P">前へ</a> |</li>
54
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
54
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
55
55
  </ul>
56
56
  </div>
57
57
 
@@ -124,7 +124,7 @@
124
124
  <li class="right" >
125
125
  <a href="tutorial/query_expansion.html" title="4.11. クエリ拡張"
126
126
  >前へ</a> |</li>
127
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
127
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
128
128
  </ul>
129
129
  </div>
130
130
  <div class="footer" role="contentinfo">
@@ -5,7 +5,7 @@
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
6
6
  <head>
7
7
  <meta charset="utf-8" />
8
- <title>5.3. GQTP &#8212; Groonga v9.0.2ドキュメント</title>
8
+ <title>5.3. GQTP &#8212; Groonga v9.0.6ドキュメント</title>
9
9
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
10
10
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
11
11
 
@@ -51,7 +51,7 @@
51
51
  <li class="right" >
52
52
  <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
53
53
  accesskey="P">前へ</a> |</li>
54
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
54
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
55
55
  <li class="nav-item nav-item-1"><a href="../server.html" accesskey="U">5. サーバー</a> &#187;</li>
56
56
  </ul>
57
57
  </div>
@@ -149,7 +149,7 @@ line:</p>
149
149
  <li class="right" >
150
150
  <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
151
151
  >前へ</a> |</li>
152
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.2ドキュメント</a> &#187;</li>
152
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6ドキュメント</a> &#187;</li>
153
153
  <li class="nav-item nav-item-1"><a href="../server.html" >5. サーバー</a> &#187;</li>
154
154
  </ul>
155
155
  </div>