rroonga 1.2.7-x86-mingw32 → 1.3.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +1 -0
- data/Rakefile +1 -0
- data/bin/grntest-log-analyze +123 -0
- data/bin/groonga-query-log-extract +117 -0
- data/ext/groonga/rb-grn-accessor.c +7 -5
- data/ext/groonga/rb-grn-array-cursor.c +1 -1
- data/ext/groonga/rb-grn-array.c +34 -44
- data/ext/groonga/rb-grn-column.c +74 -38
- data/ext/groonga/rb-grn-context.c +41 -16
- data/ext/groonga/rb-grn-database.c +50 -43
- data/ext/groonga/rb-grn-double-array-trie-cursor.c +40 -0
- data/ext/groonga/rb-grn-double-array-trie.c +530 -0
- data/ext/groonga/rb-grn-encoding-support.c +1 -1
- data/ext/groonga/rb-grn-encoding.c +1 -1
- data/ext/groonga/rb-grn-exception.c +1 -1
- data/ext/groonga/rb-grn-expression-builder.c +1 -1
- data/ext/groonga/rb-grn-expression.c +63 -51
- data/ext/groonga/rb-grn-fix-size-column.c +7 -7
- data/ext/groonga/rb-grn-hash-cursor.c +1 -1
- data/ext/groonga/rb-grn-hash.c +42 -39
- data/ext/groonga/rb-grn-index-column.c +35 -31
- data/ext/groonga/rb-grn-index-cursor.c +1 -1
- data/ext/groonga/rb-grn-logger.c +23 -18
- data/ext/groonga/rb-grn-object.c +69 -40
- data/ext/groonga/rb-grn-operator.c +1 -1
- data/ext/groonga/rb-grn-patricia-trie-cursor.c +1 -1
- data/ext/groonga/rb-grn-patricia-trie.c +122 -90
- data/ext/groonga/rb-grn-plugin.c +8 -7
- data/ext/groonga/rb-grn-posting.c +1 -1
- data/ext/groonga/rb-grn-procedure.c +1 -1
- data/ext/groonga/rb-grn-query.c +12 -12
- data/ext/groonga/rb-grn-record.c +1 -1
- data/ext/groonga/rb-grn-snippet.c +26 -19
- data/ext/groonga/rb-grn-table-cursor-key-support.c +1 -1
- data/ext/groonga/rb-grn-table-cursor.c +4 -3
- data/ext/groonga/rb-grn-table-key-support.c +23 -23
- data/ext/groonga/rb-grn-table.c +280 -149
- data/ext/groonga/rb-grn-type.c +11 -7
- data/ext/groonga/rb-grn-utils.c +81 -9
- data/ext/groonga/rb-grn-variable-size-column.c +1 -1
- data/ext/groonga/rb-grn-variable.c +2 -2
- data/ext/groonga/rb-grn-view-accessor.c +1 -1
- data/ext/groonga/rb-grn-view-cursor.c +1 -1
- data/ext/groonga/rb-grn-view-record.c +1 -1
- data/ext/groonga/rb-grn-view.c +43 -34
- data/ext/groonga/rb-grn.h +10 -2
- data/ext/groonga/rb-groonga.c +1 -1
- data/lib/1.8/groonga.so +0 -0
- data/lib/1.9/groonga.so +0 -0
- data/lib/groonga/context.rb +16 -41
- data/lib/groonga/dumper.rb +41 -10
- data/lib/groonga/expression-builder-19.rb +40 -0
- data/lib/groonga/expression-builder.rb +56 -26
- data/lib/groonga/grntest-log.rb +206 -0
- data/lib/groonga/pagination.rb +21 -19
- data/lib/groonga/patricia-trie.rb +7 -10
- data/lib/groonga/posting.rb +1 -1
- data/lib/groonga/query-log.rb +348 -0
- data/lib/groonga/record.rb +47 -143
- data/lib/groonga/schema.rb +679 -406
- data/lib/groonga/view-record.rb +4 -10
- data/lib/groonga.rb +4 -2
- data/rroonga-build.rb +1 -1
- data/test/groonga-test-utils.rb +8 -0
- data/test/test-array.rb +25 -4
- data/test/test-column.rb +8 -8
- data/test/test-database.rb +2 -3
- data/test/test-double-array-trie.rb +164 -0
- data/test/test-expression-builder.rb +2 -2
- data/test/test-expression.rb +10 -9
- data/test/test-gqtp.rb +2 -2
- data/test/test-hash.rb +32 -8
- data/test/test-patricia-trie.rb +34 -10
- data/test/test-query-log.rb +258 -0
- data/test/test-record.rb +6 -5
- data/test/test-schema-create-table.rb +8 -0
- data/test/test-schema-dumper.rb +6 -0
- data/test/test-schema.rb +491 -234
- data/test/test-table-select.rb +9 -0
- data/test/test-table.rb +17 -24
- data/vendor/local/bin/grntest.exe +0 -0
- data/vendor/local/bin/groonga-query-log-analyzer +22 -17
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-1.dll +0 -0
- data/vendor/local/bin/mecab-config +2 -2
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/include/groonga/groonga.h +251 -5
- data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +1 -1
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmecab.la +1 -1
- data/vendor/local/lib/pkgconfig/groonga.pc +3 -2
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_images/geo-points.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt +32 -31
- data/vendor/local/share/doc/groonga/en/html/_sources/commands/select.txt +7 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt +6 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/executables/grntest.txt +6 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/geolocation_search.txt +52 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/index.txt +1 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/install.txt +31 -40
- data/vendor/local/share/doc/groonga/en/html/_sources/news/senna.txt +109 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +118 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources/tutorial/tutorial03.txt → en/html/_sources/tutorial/data.txt} +5 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/{tutorial05.txt → drilldown.txt} +8 -7
- data/vendor/local/share/doc/groonga/{source/tutorial/tutorial06.txt → en/html/_sources/tutorial/index.txt} +8 -8
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/introduction.txt +297 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/{tutorial09.txt → lexicon.txt} +0 -0
- data/vendor/local/share/doc/groonga/{source/tutorial/tutorial07.txt → en/html/_sources/tutorial/match_columns.txt} +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/{tutorial10.txt → micro_blog.txt} +17 -17
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +103 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/{tutorial08.txt → patricia_trie.txt} +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt +57 -0
- data/vendor/local/share/doc/groonga/{source/tutorial/tutorial04.txt → en/html/_sources/tutorial/search.txt} +17 -12
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial.txt +11 -2
- data/vendor/local/share/doc/groonga/en/html/_static/groonga.css +9 -0
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/command_version.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/commands/cache_limit.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/check.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/clearlock.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/column_create.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/column_list.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/column_remove.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/define_selector.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/commands/defrag.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/delete.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/dump.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/commands/load.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/commands/log_level.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/commands/log_put.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/commands/log_reopen.html +38 -38
- data/vendor/local/share/doc/groonga/en/html/commands/quit.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/commands/select.html +44 -39
- data/vendor/local/share/doc/groonga/en/html/commands/shutdown.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/commands/status.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/suggest.html +47 -47
- data/vendor/local/share/doc/groonga/en/html/commands/table_create.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/table_list.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/table_remove.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/view_add.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands.html +41 -41
- data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +13 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/contribution.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/executables/grnslap.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/executables/grntest.html +55 -55
- data/vendor/local/share/doc/groonga/en/html/executables/groonga-http.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/executables/groonga-suggest-create-dataset.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/executables/groonga.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/executables.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/expr.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/functions/edit_distance.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/functions/geo_distance.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/functions/geo_in_circle.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/functions/geo_in_rectangle.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/functions/now.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/functions/rand.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/functions.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/genindex.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +176 -0
- data/vendor/local/share/doc/groonga/en/html/index.html +149 -138
- data/vendor/local/share/doc/groonga/en/html/install.html +57 -65
- data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/log.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +281 -0
- data/vendor/local/share/doc/groonga/en/html/news.html +219 -65
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/pseudo_column.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/reference.html +69 -69
- data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/spec.html +15 -15
- data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial03.html → data.html} +32 -32
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial05.html → drilldown.html} +31 -31
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial06.html → index.html} +44 -44
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +438 -0
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial09.html → lexicon.html} +16 -16
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial07.html → match_columns.html} +39 -39
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial10.html → micro_blog.html} +43 -43
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +236 -0
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial08.html → patricia_trie.html} +27 -27
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +197 -0
- data/vendor/local/share/doc/groonga/en/html/tutorial/{tutorial04.html → search.html} +41 -35
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +60 -55
- data/vendor/local/share/doc/groonga/en/html/type.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_images/geo-points.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/characteristic.txt +32 -31
- data/vendor/local/share/doc/groonga/ja/html/_sources/commands/select.txt +7 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt +6 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/executables/grntest.txt +6 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/geolocation_search.txt +52 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/index.txt +1 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/install.txt +31 -40
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/senna.txt +109 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +118 -0
- data/vendor/local/share/doc/groonga/{en/html/_sources/tutorial/tutorial03.txt → ja/html/_sources/tutorial/data.txt} +5 -5
- data/vendor/local/share/doc/groonga/{source/tutorial/tutorial05.txt → ja/html/_sources/tutorial/drilldown.txt} +8 -7
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/{tutorial06.txt → index.txt} +8 -8
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/introduction.txt +297 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/{tutorial09.txt → lexicon.txt} +0 -0
- data/vendor/local/share/doc/groonga/{en/html/_sources/tutorial/tutorial07.txt → ja/html/_sources/tutorial/match_columns.txt} +4 -4
- data/vendor/local/share/doc/groonga/{source/tutorial/tutorial10.txt → ja/html/_sources/tutorial/micro_blog.txt} +17 -17
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +103 -0
- data/vendor/local/share/doc/groonga/{source/tutorial/tutorial08.txt → ja/html/_sources/tutorial/patricia_trie.txt} +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt +57 -0
- data/vendor/local/share/doc/groonga/{en/html/_sources/tutorial/tutorial04.txt → ja/html/_sources/tutorial/search.txt} +17 -12
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial.txt +11 -2
- data/vendor/local/share/doc/groonga/ja/html/_static/groonga.css +9 -0
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/command_version.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/commands/cache_limit.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/check.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/clearlock.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/column_create.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/column_list.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/column_remove.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/define_selector.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/commands/defrag.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/delete.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/dump.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/commands/load.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/commands/log_level.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/commands/log_put.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/commands/log_reopen.html +38 -38
- data/vendor/local/share/doc/groonga/ja/html/commands/quit.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/commands/select.html +44 -39
- data/vendor/local/share/doc/groonga/ja/html/commands/shutdown.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/commands/status.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/suggest.html +47 -47
- data/vendor/local/share/doc/groonga/ja/html/commands/table_create.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/table_list.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/table_remove.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/view_add.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands.html +41 -41
- data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +13 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/executables/grnslap.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/executables/grntest.html +55 -55
- data/vendor/local/share/doc/groonga/ja/html/executables/groonga-http.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/executables/groonga-suggest-create-dataset.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/executables/groonga.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/executables.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/expr.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/functions/edit_distance.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/functions/geo_distance.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/functions/geo_in_circle.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/functions/geo_in_rectangle.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/functions/now.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/functions/rand.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/functions.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +17 -17
- data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +165 -0
- data/vendor/local/share/doc/groonga/ja/html/index.html +144 -133
- data/vendor/local/share/doc/groonga/ja/html/install.html +52 -65
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -17
- data/vendor/local/share/doc/groonga/ja/html/log.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +282 -0
- data/vendor/local/share/doc/groonga/ja/html/news.html +203 -63
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/pseudo_column.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/reference.html +69 -69
- data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/spec.html +15 -15
- data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +19 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial03.html → data.html} +31 -31
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial05.html → drilldown.html} +31 -31
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial06.html → index.html} +44 -44
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial01.html → introduction.html} +140 -129
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial09.html → lexicon.html} +16 -16
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial07.html → match_columns.html} +39 -39
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial10.html → micro_blog.html} +43 -43
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial02.html → network.html} +56 -58
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial08.html → patricia_trie.html} +27 -27
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +198 -0
- data/vendor/local/share/doc/groonga/ja/html/tutorial/{tutorial04.html → search.html} +41 -35
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +59 -54
- data/vendor/local/share/doc/groonga/ja/html/type.html +30 -30
- data/vendor/local/share/doc/groonga/source/characteristic.txt +32 -31
- data/vendor/local/share/doc/groonga/source/commands/select.txt +7 -1
- data/vendor/local/share/doc/groonga/source/commands/suggest-completion.log +5 -0
- data/vendor/local/share/doc/groonga/source/commands/suggest-correction.log +5 -0
- data/vendor/local/share/doc/groonga/source/commands/suggest-learn-completion.log +13 -0
- data/vendor/local/share/doc/groonga/source/commands/suggest-learn-correction.log +15 -0
- data/vendor/local/share/doc/groonga/source/commands/suggest-learn-suggestion.log +9 -0
- data/vendor/local/share/doc/groonga/source/commands/suggest-mixed.log +5 -0
- data/vendor/local/share/doc/groonga/source/commands/suggest-suggestion.log +5 -0
- data/vendor/local/share/doc/groonga/source/conf.py +1 -1
- data/vendor/local/share/doc/groonga/source/contribution/documentation/i18n.txt +6 -0
- data/vendor/local/share/doc/groonga/source/example/completion-1.log +2 -2
- data/vendor/local/share/doc/groonga/source/example/correction-1.log +2 -2
- data/vendor/local/share/doc/groonga/source/example/suggestion-1.log +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial03-1.log → tutorial/data-1.log} +0 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial03-2.log → tutorial/data-2.log} +0 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial03-3.log → tutorial/data-3.log} +0 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial05-1.log → tutorial/drilldown-1.log} +6 -6
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-2.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial05-3.log → tutorial/drilldown-3.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-4.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial05-5.log → tutorial/drilldown-5.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial05-6.log → tutorial/drilldown-6.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-1.log +25 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial06-2.log → tutorial/index-2.log} +4 -4
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-3.log +21 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial06-4.log → tutorial/index-4.log} +3 -3
- data/vendor/local/share/doc/groonga/source/example/{tutorial06-5.log → tutorial/index-5.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial06-6.log → tutorial/index-6.log} +5 -5
- data/vendor/local/share/doc/groonga/source/example/{tutorial06-7.log → tutorial/index-7.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-1.log +18 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-10.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial01-11.log → tutorial/introduction-11.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial01-12.log → tutorial/introduction-12.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-13.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-14.log +9 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-15.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-16.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial01-17.log → tutorial/introduction-17.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-2.log +10 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-3.log +10 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-4.log +7 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial01-5.log → tutorial/introduction-5.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial01-6.log → tutorial/introduction-6.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial01-7.log → tutorial/introduction-7.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial01-8.log → tutorial/introduction-8.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-9.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial07-1.log → tutorial/match_columns-1.log} +8 -8
- data/vendor/local/share/doc/groonga/source/example/{tutorial07-2.log → tutorial/match_columns-2.log} +4 -4
- data/vendor/local/share/doc/groonga/source/example/{tutorial07-3.log → tutorial/match_columns-3.log} +7 -7
- data/vendor/local/share/doc/groonga/source/example/{tutorial07-4.log → tutorial/match_columns-4.log} +4 -4
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-1.log → tutorial/micro_blog-1.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-10.log → tutorial/micro_blog-10.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-2.log → tutorial/micro_blog-2.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-3.log → tutorial/micro_blog-3.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-4.log → tutorial/micro_blog-4.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-5.log → tutorial/micro_blog-5.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-6.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-7.log → tutorial/micro_blog-7.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-8.log → tutorial/micro_blog-8.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/{tutorial10-9.log → tutorial/micro_blog-9.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/network-1.log +8 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial02-2.log → tutorial/network-2.log} +1 -1
- data/vendor/local/share/doc/groonga/source/example/{tutorial02-3.log → tutorial/network-3.log} +3 -3
- data/vendor/local/share/doc/groonga/source/example/{tutorial08-1.log → tutorial/patricia_trie-1.log} +4 -4
- data/vendor/local/share/doc/groonga/source/example/{tutorial08-2.log → tutorial/patricia_trie-2.log} +6 -6
- data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-1.log +27 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-2.log +7 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-3.log +7 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial04-1.log → tutorial/search-1.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-2.log +7 -0
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-3.log +7 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial04-4.log → tutorial/search-4.log} +4 -4
- data/vendor/local/share/doc/groonga/source/example/{tutorial04-5.log → tutorial/search-5.log} +2 -2
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-6.log +5 -0
- data/vendor/local/share/doc/groonga/source/example/{tutorial04-7.log → tutorial/search-7.log} +2 -2
- data/vendor/local/share/doc/groonga/source/executables/grntest.txt +6 -6
- data/vendor/local/share/doc/groonga/source/geolocation_search.txt +52 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/array.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/array.svg +188 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/columns.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/columns.svg +501 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/hash-table.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/hash-table.svg +275 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.svg +899 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.svg +249 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.svg +275 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/prefix-search.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/prefix-search.svg +743 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record-id.svg +261 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record.svg +228 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.svg +241 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-index-column-value.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-index-column-value.svg +879 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-token-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-token-id.svg +879 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram.svg +879 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-choose-tokenizer.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-choose-tokenizer.svg +602 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-index-column-value.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-index-column-value.svg +600 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.svg +600 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-initial-state.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-initial-state.svg +600 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.svg +917 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-result.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-result.svg +600 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.svg +600 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-token-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-token-id.svg +600 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.svg +561 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-initial.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-initial.svg +389 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-first-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-first-token.svg +469 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-second-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-second-token.svg +514 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.svg +595 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-second-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-second-token.svg +600 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-first-data.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-first-data.svg +424 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-second-data.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-second-data.svg +549 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/vector-column.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/vector-column.svg +241 -0
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-2bit.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-2bit.svg +203 -0
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-4bit.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-4bit.svg +264 -0
- data/vendor/local/share/doc/groonga/source/images/geo-in-rectangle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-distance.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-distance.svg +317 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-circle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-circle.svg +306 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-rectangle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-rectangle.svg +304 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-sort.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-sort.svg +383 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points.svg +296 -0
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-circle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-circle.svg +287 -0
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-rectangle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-rectangle.svg +174 -0
- data/vendor/local/share/doc/groonga/source/index.txt +1 -0
- data/vendor/local/share/doc/groonga/source/install.txt +31 -40
- data/vendor/local/share/doc/groonga/source/news/senna.txt +109 -0
- data/vendor/local/share/doc/groonga/source/news.txt +118 -0
- data/vendor/local/share/doc/groonga/source/tutorial/{tutorial03.txt → data.txt} +5 -5
- data/vendor/local/share/doc/groonga/{ja/html/_sources/tutorial/tutorial05.txt → source/tutorial/drilldown.txt} +8 -7
- data/vendor/local/share/doc/groonga/{en/html/_sources/tutorial/tutorial06.txt → source/tutorial/index.txt} +8 -8
- data/vendor/local/share/doc/groonga/source/tutorial/introduction.txt +297 -0
- data/vendor/local/share/doc/groonga/source/tutorial/{tutorial09.txt → lexicon.txt} +0 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources/tutorial/tutorial07.txt → source/tutorial/match_columns.txt} +4 -4
- data/vendor/local/share/doc/groonga/{ja/html/_sources/tutorial/tutorial10.txt → source/tutorial/micro_blog.txt} +17 -17
- data/vendor/local/share/doc/groonga/source/tutorial/network.txt +103 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources/tutorial/tutorial08.txt → source/tutorial/patricia_trie.txt} +4 -4
- data/vendor/local/share/doc/groonga/source/tutorial/query_expansion.txt +57 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources/tutorial/tutorial04.txt → source/tutorial/search.txt} +17 -12
- data/vendor/local/share/doc/groonga/source/tutorial.txt +11 -2
- data/vendor/local/share/man/ja/man1/groonga.1 +449 -772
- data/vendor/local/share/man/man1/groonga.1 +591 -875
- metadata +232 -124
- data/vendor/local/etc/groonga/init.d/redhat/groonga +0 -160
- data/vendor/local/etc/groonga/init.d/redhat/sysconfig/groonga +0 -8
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/tutorial01.txt +0 -296
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/tutorial02.txt +0 -102
- data/vendor/local/share/doc/groonga/en/html/tutorial/tutorial01.html +0 -409
- data/vendor/local/share/doc/groonga/en/html/tutorial/tutorial02.html +0 -235
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/tutorial01.txt +0 -296
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/tutorial02.txt +0 -102
- data/vendor/local/share/doc/groonga/source/example/tutorial01-1.log +0 -6
- data/vendor/local/share/doc/groonga/source/example/tutorial01-10.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial01-13.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial01-14.log +0 -9
- data/vendor/local/share/doc/groonga/source/example/tutorial01-15.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial01-16.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial01-2.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial01-3.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial01-4.log +0 -7
- data/vendor/local/share/doc/groonga/source/example/tutorial01-9.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial02-1.log +0 -8
- data/vendor/local/share/doc/groonga/source/example/tutorial04-2.log +0 -7
- data/vendor/local/share/doc/groonga/source/example/tutorial04-3.log +0 -7
- data/vendor/local/share/doc/groonga/source/example/tutorial04-6.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial05-2.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial05-4.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial06-1.log +0 -25
- data/vendor/local/share/doc/groonga/source/example/tutorial06-3.log +0 -21
- data/vendor/local/share/doc/groonga/source/example/tutorial10-6.log +0 -5
- data/vendor/local/share/doc/groonga/source/tutorial/tutorial01.txt +0 -296
- data/vendor/local/share/doc/groonga/source/tutorial/tutorial02.txt +0 -102
- data/vendor/local/share/groonga/munin/plugins/groonga_cpu_load +0 -47
- data/vendor/local/share/groonga/munin/plugins/groonga_cpu_time +0 -57
- data/vendor/local/share/groonga/munin/plugins/groonga_disk +0 -162
- data/vendor/local/share/groonga/munin/plugins/groonga_memory +0 -51
- data/vendor/local/share/groonga/munin/plugins/groonga_n_records +0 -110
- data/vendor/local/share/groonga/munin/plugins/groonga_query_performance +0 -133
- data/vendor/local/share/groonga/munin/plugins/groonga_status +0 -84
data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.svg
ADDED
@@ -0,0 +1,917 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
13
|
+
width="300"
|
14
|
+
height="300"
|
15
|
+
id="svg2"
|
16
|
+
version="1.1"
|
17
|
+
inkscape:version="0.48.1 r9760"
|
18
|
+
sodipodi:docname="patricia-trie.svg">
|
19
|
+
<defs
|
20
|
+
id="defs4">
|
21
|
+
<marker
|
22
|
+
inkscape:stockid="Arrow1Mend"
|
23
|
+
orient="auto"
|
24
|
+
refY="0"
|
25
|
+
refX="0"
|
26
|
+
id="Arrow1Mend"
|
27
|
+
style="overflow:visible">
|
28
|
+
<path
|
29
|
+
id="path4577"
|
30
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
|
31
|
+
style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;marker-start:none"
|
32
|
+
transform="matrix(-0.4,0,0,-0.4,-4,0)"
|
33
|
+
inkscape:connector-curvature="0" />
|
34
|
+
</marker>
|
35
|
+
<marker
|
36
|
+
inkscape:stockid="Arrow1Lend"
|
37
|
+
orient="auto"
|
38
|
+
refY="0"
|
39
|
+
refX="0"
|
40
|
+
id="Arrow1Lend"
|
41
|
+
style="overflow:visible">
|
42
|
+
<path
|
43
|
+
id="path4571"
|
44
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
|
45
|
+
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
|
46
|
+
transform="matrix(-0.8,0,0,-0.8,-10,0)"
|
47
|
+
inkscape:connector-curvature="0" />
|
48
|
+
</marker>
|
49
|
+
<linearGradient
|
50
|
+
id="linearGradient2846">
|
51
|
+
<stop
|
52
|
+
id="stop2848"
|
53
|
+
offset="0.0000000"
|
54
|
+
style="stop-color:#8a8a8a;stop-opacity:1.0000000;" />
|
55
|
+
<stop
|
56
|
+
id="stop2850"
|
57
|
+
offset="1.0000000"
|
58
|
+
style="stop-color:#484848;stop-opacity:1.0000000;" />
|
59
|
+
</linearGradient>
|
60
|
+
<linearGradient
|
61
|
+
id="linearGradient2366">
|
62
|
+
<stop
|
63
|
+
id="stop2368"
|
64
|
+
offset="0"
|
65
|
+
style="stop-color:#ffffff;stop-opacity:1;" />
|
66
|
+
<stop
|
67
|
+
style="stop-color:#ffffff;stop-opacity:0.21904762;"
|
68
|
+
offset="0.50000000"
|
69
|
+
id="stop2374" />
|
70
|
+
<stop
|
71
|
+
id="stop2370"
|
72
|
+
offset="1.0000000"
|
73
|
+
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
74
|
+
</linearGradient>
|
75
|
+
<linearGradient
|
76
|
+
inkscape:collect="always"
|
77
|
+
id="linearGradient4477">
|
78
|
+
<stop
|
79
|
+
style="stop-color:#000000;stop-opacity:1;"
|
80
|
+
offset="0"
|
81
|
+
id="stop4479" />
|
82
|
+
<stop
|
83
|
+
style="stop-color:#000000;stop-opacity:0;"
|
84
|
+
offset="1"
|
85
|
+
id="stop4481" />
|
86
|
+
</linearGradient>
|
87
|
+
<linearGradient
|
88
|
+
id="linearGradient4467">
|
89
|
+
<stop
|
90
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
91
|
+
offset="0"
|
92
|
+
id="stop4469" />
|
93
|
+
<stop
|
94
|
+
style="stop-color:#ffffff;stop-opacity:0.24761905;"
|
95
|
+
offset="1.0000000"
|
96
|
+
id="stop4471" />
|
97
|
+
</linearGradient>
|
98
|
+
<linearGradient
|
99
|
+
id="linearGradient4454">
|
100
|
+
<stop
|
101
|
+
style="stop-color:#729fcf;stop-opacity:0.20784314;"
|
102
|
+
offset="0.0000000"
|
103
|
+
id="stop4456" />
|
104
|
+
<stop
|
105
|
+
style="stop-color:#729fcf;stop-opacity:0.67619050;"
|
106
|
+
offset="1.0000000"
|
107
|
+
id="stop4458" />
|
108
|
+
</linearGradient>
|
109
|
+
<linearGradient
|
110
|
+
id="linearGradient4440">
|
111
|
+
<stop
|
112
|
+
style="stop-color:#7d7d7d;stop-opacity:1;"
|
113
|
+
offset="0"
|
114
|
+
id="stop4442" />
|
115
|
+
<stop
|
116
|
+
id="stop4448"
|
117
|
+
offset="0.50000000"
|
118
|
+
style="stop-color:#b1b1b1;stop-opacity:1.0000000;" />
|
119
|
+
<stop
|
120
|
+
style="stop-color:#686868;stop-opacity:1.0000000;"
|
121
|
+
offset="1.0000000"
|
122
|
+
id="stop4444" />
|
123
|
+
</linearGradient>
|
124
|
+
<radialGradient
|
125
|
+
gradientUnits="userSpaceOnUse"
|
126
|
+
gradientTransform="matrix(1,0,0,0.284916,0,30.08928)"
|
127
|
+
r="15.821514"
|
128
|
+
fy="42.07798"
|
129
|
+
fx="24.306795"
|
130
|
+
cy="42.07798"
|
131
|
+
cx="24.306795"
|
132
|
+
id="radialGradient4548"
|
133
|
+
xlink:href="#linearGradient4542"
|
134
|
+
inkscape:collect="always" />
|
135
|
+
<linearGradient
|
136
|
+
id="linearGradient259">
|
137
|
+
<stop
|
138
|
+
style="stop-color:#fafafa;stop-opacity:1.0000000;"
|
139
|
+
offset="0.0000000"
|
140
|
+
id="stop260" />
|
141
|
+
<stop
|
142
|
+
style="stop-color:#bbbbbb;stop-opacity:1.0000000;"
|
143
|
+
offset="1.0000000"
|
144
|
+
id="stop261" />
|
145
|
+
</linearGradient>
|
146
|
+
<linearGradient
|
147
|
+
id="linearGradient269">
|
148
|
+
<stop
|
149
|
+
style="stop-color:#a3a3a3;stop-opacity:1.0000000;"
|
150
|
+
offset="0.0000000"
|
151
|
+
id="stop270" />
|
152
|
+
<stop
|
153
|
+
style="stop-color:#4c4c4c;stop-opacity:1.0000000;"
|
154
|
+
offset="1.0000000"
|
155
|
+
id="stop271" />
|
156
|
+
</linearGradient>
|
157
|
+
<radialGradient
|
158
|
+
gradientUnits="userSpaceOnUse"
|
159
|
+
fy="114.5684"
|
160
|
+
fx="20.892099"
|
161
|
+
r="5.256"
|
162
|
+
cy="114.5684"
|
163
|
+
cx="20.892099"
|
164
|
+
id="aigrd2">
|
165
|
+
<stop
|
166
|
+
id="stop15566"
|
167
|
+
style="stop-color:#F0F0F0"
|
168
|
+
offset="0" />
|
169
|
+
<stop
|
170
|
+
id="stop15568"
|
171
|
+
style="stop-color:#9a9a9a;stop-opacity:1.0000000;"
|
172
|
+
offset="1.0000000" />
|
173
|
+
</radialGradient>
|
174
|
+
<radialGradient
|
175
|
+
gradientUnits="userSpaceOnUse"
|
176
|
+
fy="64.567902"
|
177
|
+
fx="20.892099"
|
178
|
+
r="5.257"
|
179
|
+
cy="64.567902"
|
180
|
+
cx="20.892099"
|
181
|
+
id="aigrd3">
|
182
|
+
<stop
|
183
|
+
id="stop15573"
|
184
|
+
style="stop-color:#F0F0F0"
|
185
|
+
offset="0" />
|
186
|
+
<stop
|
187
|
+
id="stop15575"
|
188
|
+
style="stop-color:#9a9a9a;stop-opacity:1.0000000;"
|
189
|
+
offset="1.0000000" />
|
190
|
+
</radialGradient>
|
191
|
+
<linearGradient
|
192
|
+
id="linearGradient15662">
|
193
|
+
<stop
|
194
|
+
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
195
|
+
offset="0.0000000"
|
196
|
+
id="stop15664" />
|
197
|
+
<stop
|
198
|
+
style="stop-color:#f8f8f8;stop-opacity:1.0000000;"
|
199
|
+
offset="1.0000000"
|
200
|
+
id="stop15666" />
|
201
|
+
</linearGradient>
|
202
|
+
<linearGradient
|
203
|
+
id="linearGradient4542"
|
204
|
+
inkscape:collect="always">
|
205
|
+
<stop
|
206
|
+
id="stop4544"
|
207
|
+
offset="0"
|
208
|
+
style="stop-color:#000000;stop-opacity:1;" />
|
209
|
+
<stop
|
210
|
+
id="stop4546"
|
211
|
+
offset="1"
|
212
|
+
style="stop-color:#000000;stop-opacity:0;" />
|
213
|
+
</linearGradient>
|
214
|
+
<linearGradient
|
215
|
+
id="linearGradient5048">
|
216
|
+
<stop
|
217
|
+
id="stop5050"
|
218
|
+
offset="0"
|
219
|
+
style="stop-color:black;stop-opacity:0;" />
|
220
|
+
<stop
|
221
|
+
style="stop-color:black;stop-opacity:1;"
|
222
|
+
offset="0.5"
|
223
|
+
id="stop5056" />
|
224
|
+
<stop
|
225
|
+
id="stop5052"
|
226
|
+
offset="1"
|
227
|
+
style="stop-color:black;stop-opacity:0;" />
|
228
|
+
</linearGradient>
|
229
|
+
<inkscape:perspective
|
230
|
+
id="perspective113"
|
231
|
+
inkscape:persp3d-origin="24 : 16 : 1"
|
232
|
+
inkscape:vp_z="48 : 24 : 1"
|
233
|
+
inkscape:vp_y="0 : 1000 : 0"
|
234
|
+
inkscape:vp_x="0 : 24 : 1"
|
235
|
+
sodipodi:type="inkscape:persp3d" />
|
236
|
+
<radialGradient
|
237
|
+
inkscape:collect="always"
|
238
|
+
xlink:href="#linearGradient4477"
|
239
|
+
id="radialGradient4303"
|
240
|
+
gradientUnits="userSpaceOnUse"
|
241
|
+
gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"
|
242
|
+
cx="24.130018"
|
243
|
+
cy="37.967922"
|
244
|
+
fx="24.130018"
|
245
|
+
fy="37.967922"
|
246
|
+
r="16.528622" />
|
247
|
+
<linearGradient
|
248
|
+
inkscape:collect="always"
|
249
|
+
xlink:href="#linearGradient2846"
|
250
|
+
id="linearGradient4305"
|
251
|
+
gradientUnits="userSpaceOnUse"
|
252
|
+
x1="27.366341"
|
253
|
+
y1="26.580296"
|
254
|
+
x2="31.335964"
|
255
|
+
y2="30.557772" />
|
256
|
+
<linearGradient
|
257
|
+
inkscape:collect="always"
|
258
|
+
xlink:href="#linearGradient4440"
|
259
|
+
id="linearGradient4307"
|
260
|
+
gradientUnits="userSpaceOnUse"
|
261
|
+
gradientTransform="matrix(1.334593,0,0,1.291292,-6.973842,-7.460658)"
|
262
|
+
x1="30.65625"
|
263
|
+
y1="34"
|
264
|
+
x2="33.21875"
|
265
|
+
y2="31.0625" />
|
266
|
+
<linearGradient
|
267
|
+
inkscape:collect="always"
|
268
|
+
xlink:href="#linearGradient2366"
|
269
|
+
id="linearGradient4309"
|
270
|
+
gradientUnits="userSpaceOnUse"
|
271
|
+
x1="18.292673"
|
272
|
+
y1="13.602121"
|
273
|
+
x2="17.500893"
|
274
|
+
y2="25.743469" />
|
275
|
+
<radialGradient
|
276
|
+
inkscape:collect="always"
|
277
|
+
xlink:href="#linearGradient4454"
|
278
|
+
id="radialGradient4311"
|
279
|
+
gradientUnits="userSpaceOnUse"
|
280
|
+
cx="18.240929"
|
281
|
+
cy="21.817987"
|
282
|
+
fx="18.240929"
|
283
|
+
fy="21.817987"
|
284
|
+
r="8.3085051" />
|
285
|
+
<radialGradient
|
286
|
+
inkscape:collect="always"
|
287
|
+
xlink:href="#linearGradient4467"
|
288
|
+
id="radialGradient4313"
|
289
|
+
gradientUnits="userSpaceOnUse"
|
290
|
+
gradientTransform="matrix(2.592963,0,0,2.252104,-25.05975,-18.941)"
|
291
|
+
cx="15.414371"
|
292
|
+
cy="13.078408"
|
293
|
+
fx="15.414371"
|
294
|
+
fy="13.078408"
|
295
|
+
r="6.65625" />
|
296
|
+
<radialGradient
|
297
|
+
inkscape:collect="always"
|
298
|
+
xlink:href="#linearGradient4477"
|
299
|
+
id="radialGradient4499"
|
300
|
+
gradientUnits="userSpaceOnUse"
|
301
|
+
gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"
|
302
|
+
cx="24.130018"
|
303
|
+
cy="37.967922"
|
304
|
+
fx="24.130018"
|
305
|
+
fy="37.967922"
|
306
|
+
r="16.528622" />
|
307
|
+
<linearGradient
|
308
|
+
inkscape:collect="always"
|
309
|
+
xlink:href="#linearGradient2846"
|
310
|
+
id="linearGradient4501"
|
311
|
+
gradientUnits="userSpaceOnUse"
|
312
|
+
x1="27.366341"
|
313
|
+
y1="26.580296"
|
314
|
+
x2="31.335964"
|
315
|
+
y2="30.557772" />
|
316
|
+
<linearGradient
|
317
|
+
inkscape:collect="always"
|
318
|
+
xlink:href="#linearGradient4440"
|
319
|
+
id="linearGradient4503"
|
320
|
+
gradientUnits="userSpaceOnUse"
|
321
|
+
gradientTransform="matrix(1.334593,0,0,1.291292,-6.973842,-7.460658)"
|
322
|
+
x1="30.65625"
|
323
|
+
y1="34"
|
324
|
+
x2="33.21875"
|
325
|
+
y2="31.0625" />
|
326
|
+
<linearGradient
|
327
|
+
inkscape:collect="always"
|
328
|
+
xlink:href="#linearGradient2366"
|
329
|
+
id="linearGradient4505"
|
330
|
+
gradientUnits="userSpaceOnUse"
|
331
|
+
x1="18.292673"
|
332
|
+
y1="13.602121"
|
333
|
+
x2="17.500893"
|
334
|
+
y2="25.743469" />
|
335
|
+
<radialGradient
|
336
|
+
inkscape:collect="always"
|
337
|
+
xlink:href="#linearGradient4454"
|
338
|
+
id="radialGradient4507"
|
339
|
+
gradientUnits="userSpaceOnUse"
|
340
|
+
cx="18.240929"
|
341
|
+
cy="21.817987"
|
342
|
+
fx="18.240929"
|
343
|
+
fy="21.817987"
|
344
|
+
r="8.3085051" />
|
345
|
+
<radialGradient
|
346
|
+
inkscape:collect="always"
|
347
|
+
xlink:href="#linearGradient4467"
|
348
|
+
id="radialGradient4509"
|
349
|
+
gradientUnits="userSpaceOnUse"
|
350
|
+
gradientTransform="matrix(2.592963,0,0,2.252104,-25.05975,-18.941)"
|
351
|
+
cx="15.414371"
|
352
|
+
cy="13.078408"
|
353
|
+
fx="15.414371"
|
354
|
+
fy="13.078408"
|
355
|
+
r="6.65625" />
|
356
|
+
<radialGradient
|
357
|
+
inkscape:collect="always"
|
358
|
+
xlink:href="#linearGradient4477"
|
359
|
+
id="radialGradient4539"
|
360
|
+
gradientUnits="userSpaceOnUse"
|
361
|
+
gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"
|
362
|
+
cx="24.130018"
|
363
|
+
cy="37.967922"
|
364
|
+
fx="24.130018"
|
365
|
+
fy="37.967922"
|
366
|
+
r="16.528622" />
|
367
|
+
<linearGradient
|
368
|
+
inkscape:collect="always"
|
369
|
+
xlink:href="#linearGradient2846"
|
370
|
+
id="linearGradient4541"
|
371
|
+
gradientUnits="userSpaceOnUse"
|
372
|
+
x1="27.366341"
|
373
|
+
y1="26.580296"
|
374
|
+
x2="31.335964"
|
375
|
+
y2="30.557772" />
|
376
|
+
<linearGradient
|
377
|
+
inkscape:collect="always"
|
378
|
+
xlink:href="#linearGradient4440"
|
379
|
+
id="linearGradient4543"
|
380
|
+
gradientUnits="userSpaceOnUse"
|
381
|
+
gradientTransform="matrix(1.334593,0,0,1.291292,-6.973842,-7.460658)"
|
382
|
+
x1="30.65625"
|
383
|
+
y1="34"
|
384
|
+
x2="33.21875"
|
385
|
+
y2="31.0625" />
|
386
|
+
<linearGradient
|
387
|
+
inkscape:collect="always"
|
388
|
+
xlink:href="#linearGradient2366"
|
389
|
+
id="linearGradient4545"
|
390
|
+
gradientUnits="userSpaceOnUse"
|
391
|
+
x1="18.292673"
|
392
|
+
y1="13.602121"
|
393
|
+
x2="17.500893"
|
394
|
+
y2="25.743469" />
|
395
|
+
<radialGradient
|
396
|
+
inkscape:collect="always"
|
397
|
+
xlink:href="#linearGradient4454"
|
398
|
+
id="radialGradient4547"
|
399
|
+
gradientUnits="userSpaceOnUse"
|
400
|
+
cx="18.240929"
|
401
|
+
cy="21.817987"
|
402
|
+
fx="18.240929"
|
403
|
+
fy="21.817987"
|
404
|
+
r="8.3085051" />
|
405
|
+
<radialGradient
|
406
|
+
inkscape:collect="always"
|
407
|
+
xlink:href="#linearGradient4467"
|
408
|
+
id="radialGradient4549"
|
409
|
+
gradientUnits="userSpaceOnUse"
|
410
|
+
gradientTransform="matrix(2.592963,0,0,2.252104,-25.05975,-18.941)"
|
411
|
+
cx="15.414371"
|
412
|
+
cy="13.078408"
|
413
|
+
fx="15.414371"
|
414
|
+
fy="13.078408"
|
415
|
+
r="6.65625" />
|
416
|
+
<radialGradient
|
417
|
+
inkscape:collect="always"
|
418
|
+
xlink:href="#linearGradient4477"
|
419
|
+
id="radialGradient4551"
|
420
|
+
gradientUnits="userSpaceOnUse"
|
421
|
+
gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"
|
422
|
+
cx="24.130018"
|
423
|
+
cy="37.967922"
|
424
|
+
fx="24.130018"
|
425
|
+
fy="37.967922"
|
426
|
+
r="16.528622" />
|
427
|
+
<linearGradient
|
428
|
+
inkscape:collect="always"
|
429
|
+
xlink:href="#linearGradient2846"
|
430
|
+
id="linearGradient4553"
|
431
|
+
gradientUnits="userSpaceOnUse"
|
432
|
+
x1="27.366341"
|
433
|
+
y1="26.580296"
|
434
|
+
x2="31.335964"
|
435
|
+
y2="30.557772" />
|
436
|
+
<linearGradient
|
437
|
+
inkscape:collect="always"
|
438
|
+
xlink:href="#linearGradient4440"
|
439
|
+
id="linearGradient4555"
|
440
|
+
gradientUnits="userSpaceOnUse"
|
441
|
+
gradientTransform="matrix(1.334593,0,0,1.291292,-6.973842,-7.460658)"
|
442
|
+
x1="30.65625"
|
443
|
+
y1="34"
|
444
|
+
x2="33.21875"
|
445
|
+
y2="31.0625" />
|
446
|
+
<linearGradient
|
447
|
+
inkscape:collect="always"
|
448
|
+
xlink:href="#linearGradient2366"
|
449
|
+
id="linearGradient4557"
|
450
|
+
gradientUnits="userSpaceOnUse"
|
451
|
+
x1="18.292673"
|
452
|
+
y1="13.602121"
|
453
|
+
x2="17.500893"
|
454
|
+
y2="25.743469" />
|
455
|
+
<radialGradient
|
456
|
+
inkscape:collect="always"
|
457
|
+
xlink:href="#linearGradient4454"
|
458
|
+
id="radialGradient4559"
|
459
|
+
gradientUnits="userSpaceOnUse"
|
460
|
+
cx="18.240929"
|
461
|
+
cy="21.817987"
|
462
|
+
fx="18.240929"
|
463
|
+
fy="21.817987"
|
464
|
+
r="8.3085051" />
|
465
|
+
<radialGradient
|
466
|
+
inkscape:collect="always"
|
467
|
+
xlink:href="#linearGradient4467"
|
468
|
+
id="radialGradient4561"
|
469
|
+
gradientUnits="userSpaceOnUse"
|
470
|
+
gradientTransform="matrix(2.592963,0,0,2.252104,-25.05975,-18.941)"
|
471
|
+
cx="15.414371"
|
472
|
+
cy="13.078408"
|
473
|
+
fx="15.414371"
|
474
|
+
fy="13.078408"
|
475
|
+
r="6.65625" />
|
476
|
+
</defs>
|
477
|
+
<sodipodi:namedview
|
478
|
+
id="base"
|
479
|
+
pagecolor="#ffffff"
|
480
|
+
bordercolor="#666666"
|
481
|
+
borderopacity="1.0"
|
482
|
+
inkscape:pageopacity="0.0"
|
483
|
+
inkscape:pageshadow="2"
|
484
|
+
inkscape:zoom="1.4"
|
485
|
+
inkscape:cx="222.20806"
|
486
|
+
inkscape:cy="146.57255"
|
487
|
+
inkscape:document-units="px"
|
488
|
+
inkscape:current-layer="layer1"
|
489
|
+
showgrid="false"
|
490
|
+
inkscape:window-width="1498"
|
491
|
+
inkscape:window-height="859"
|
492
|
+
inkscape:window-x="55"
|
493
|
+
inkscape:window-y="123"
|
494
|
+
inkscape:window-maximized="0" />
|
495
|
+
<metadata
|
496
|
+
id="metadata7">
|
497
|
+
<rdf:RDF>
|
498
|
+
<cc:Work
|
499
|
+
rdf:about="">
|
500
|
+
<dc:format>image/svg+xml</dc:format>
|
501
|
+
<dc:type
|
502
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
503
|
+
<dc:title></dc:title>
|
504
|
+
</cc:Work>
|
505
|
+
</rdf:RDF>
|
506
|
+
</metadata>
|
507
|
+
<g
|
508
|
+
inkscape:label="レイヤー 1"
|
509
|
+
inkscape:groupmode="layer"
|
510
|
+
id="layer1"
|
511
|
+
transform="translate(0,-752.36218)">
|
512
|
+
<rect
|
513
|
+
y="1007.0802"
|
514
|
+
x="101.50763"
|
515
|
+
height="40.406101"
|
516
|
+
width="65.378448"
|
517
|
+
id="rect3768"
|
518
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:block;overflow:visible;enable-background:accumulate" />
|
519
|
+
<rect
|
520
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
|
521
|
+
id="rect3770"
|
522
|
+
width="65.378448"
|
523
|
+
height="40.406101"
|
524
|
+
x="101.50763"
|
525
|
+
y="841.45575" />
|
526
|
+
<rect
|
527
|
+
y="965.67401"
|
528
|
+
x="101.50763"
|
529
|
+
height="40.406101"
|
530
|
+
width="65.378448"
|
531
|
+
id="rect3776"
|
532
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:block;overflow:visible;enable-background:accumulate" />
|
533
|
+
<rect
|
534
|
+
y="924.26794"
|
535
|
+
x="101.50763"
|
536
|
+
height="40.406101"
|
537
|
+
width="65.378448"
|
538
|
+
id="rect3788"
|
539
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:block;overflow:visible;enable-background:accumulate" />
|
540
|
+
<rect
|
541
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
|
542
|
+
id="rect3794"
|
543
|
+
width="65.378448"
|
544
|
+
height="40.406101"
|
545
|
+
x="101.50763"
|
546
|
+
y="882.86182" />
|
547
|
+
<rect
|
548
|
+
y="800.04962"
|
549
|
+
x="101.50763"
|
550
|
+
height="40.406101"
|
551
|
+
width="65.378448"
|
552
|
+
id="rect3796"
|
553
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:block;overflow:visible;enable-background:accumulate" />
|
554
|
+
<text
|
555
|
+
xml:space="preserve"
|
556
|
+
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
557
|
+
x="11.382526"
|
558
|
+
y="829.8111"
|
559
|
+
id="text3804"
|
560
|
+
sodipodi:linespacing="125%"><tspan
|
561
|
+
sodipodi:role="line"
|
562
|
+
id="tspan3806"
|
563
|
+
x="11.382526"
|
564
|
+
y="829.8111">record</tspan></text>
|
565
|
+
<text
|
566
|
+
sodipodi:linespacing="125%"
|
567
|
+
id="text3856"
|
568
|
+
y="871.01068"
|
569
|
+
x="11.382526"
|
570
|
+
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
571
|
+
xml:space="preserve"><tspan
|
572
|
+
y="871.01068"
|
573
|
+
x="11.382526"
|
574
|
+
id="tspan3858"
|
575
|
+
sodipodi:role="line">record</tspan></text>
|
576
|
+
<text
|
577
|
+
xml:space="preserve"
|
578
|
+
style="font-size:60px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
579
|
+
x="-964.81012"
|
580
|
+
y="-64.016457"
|
581
|
+
id="text3862"
|
582
|
+
sodipodi:linespacing="125%"
|
583
|
+
transform="matrix(0,-1,-1,0,0,0)"><tspan
|
584
|
+
sodipodi:role="line"
|
585
|
+
id="tspan3864"
|
586
|
+
x="-964.81012"
|
587
|
+
y="-64.016457">...</tspan></text>
|
588
|
+
<text
|
589
|
+
xml:space="preserve"
|
590
|
+
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
591
|
+
x="125.77357"
|
592
|
+
y="795.64789"
|
593
|
+
id="text3885"
|
594
|
+
sodipodi:linespacing="125%"><tspan
|
595
|
+
sodipodi:role="line"
|
596
|
+
id="tspan3887"
|
597
|
+
x="125.77357"
|
598
|
+
y="795.64789">id</tspan></text>
|
599
|
+
<text
|
600
|
+
xml:space="preserve"
|
601
|
+
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
602
|
+
x="128.82686"
|
603
|
+
y="829.12433"
|
604
|
+
id="text3889"
|
605
|
+
sodipodi:linespacing="125%"><tspan
|
606
|
+
sodipodi:role="line"
|
607
|
+
id="tspan3891"
|
608
|
+
x="128.82686"
|
609
|
+
y="829.12433">1</tspan></text>
|
610
|
+
<text
|
611
|
+
xml:space="preserve"
|
612
|
+
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
613
|
+
x="127.59685"
|
614
|
+
y="870.79077"
|
615
|
+
id="text3893"
|
616
|
+
sodipodi:linespacing="125%"><tspan
|
617
|
+
sodipodi:role="line"
|
618
|
+
id="tspan3895"
|
619
|
+
x="127.59685"
|
620
|
+
y="870.79077">2</tspan></text>
|
621
|
+
<text
|
622
|
+
transform="matrix(0,-1,-1,0,0,0)"
|
623
|
+
sodipodi:linespacing="125%"
|
624
|
+
id="text3919"
|
625
|
+
y="-132.23076"
|
626
|
+
x="-913.02441"
|
627
|
+
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
628
|
+
xml:space="preserve"><tspan
|
629
|
+
y="-132.23076"
|
630
|
+
x="-913.02441"
|
631
|
+
id="tspan3921"
|
632
|
+
sodipodi:role="line">...</tspan></text>
|
633
|
+
<text
|
634
|
+
xml:space="preserve"
|
635
|
+
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
636
|
+
x="47.794804"
|
637
|
+
y="773.41211"
|
638
|
+
id="text3942"
|
639
|
+
sodipodi:linespacing="125%"><tspan
|
640
|
+
sodipodi:role="line"
|
641
|
+
id="tspan3944"
|
642
|
+
x="47.794804"
|
643
|
+
y="773.41211">Hash Table/Patricia Trie</tspan></text>
|
644
|
+
<rect
|
645
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
|
646
|
+
id="rect3965"
|
647
|
+
width="65.378448"
|
648
|
+
height="40.406101"
|
649
|
+
x="167.50763"
|
650
|
+
y="1007.0802" />
|
651
|
+
<rect
|
652
|
+
y="841.45575"
|
653
|
+
x="167.50763"
|
654
|
+
height="40.406101"
|
655
|
+
width="65.378448"
|
656
|
+
id="rect3967"
|
657
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:block;overflow:visible;enable-background:accumulate" />
|
658
|
+
<rect
|
659
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
|
660
|
+
id="rect3969"
|
661
|
+
width="65.378448"
|
662
|
+
height="40.406101"
|
663
|
+
x="167.50763"
|
664
|
+
y="965.67401" />
|
665
|
+
<rect
|
666
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
|
667
|
+
id="rect3971"
|
668
|
+
width="65.378448"
|
669
|
+
height="40.406101"
|
670
|
+
x="167.50763"
|
671
|
+
y="924.26794" />
|
672
|
+
<rect
|
673
|
+
y="882.86182"
|
674
|
+
x="167.50763"
|
675
|
+
height="40.406101"
|
676
|
+
width="65.378448"
|
677
|
+
id="rect3973"
|
678
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:block;overflow:visible;enable-background:accumulate" />
|
679
|
+
<rect
|
680
|
+
style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
|
681
|
+
id="rect3975"
|
682
|
+
width="65.378448"
|
683
|
+
height="40.406101"
|
684
|
+
x="167.50763"
|
685
|
+
y="800.04962" />
|
686
|
+
<text
|
687
|
+
sodipodi:linespacing="125%"
|
688
|
+
id="text3977"
|
689
|
+
y="792.255"
|
690
|
+
x="183.02498"
|
691
|
+
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
692
|
+
xml:space="preserve"><tspan
|
693
|
+
y="792.255"
|
694
|
+
x="183.02498"
|
695
|
+
id="tspan3979"
|
696
|
+
sodipodi:role="line">key</tspan></text>
|
697
|
+
<text
|
698
|
+
sodipodi:linespacing="125%"
|
699
|
+
id="text3981"
|
700
|
+
y="829.30292"
|
701
|
+
x="176.6617"
|
702
|
+
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
703
|
+
xml:space="preserve"><tspan
|
704
|
+
y="829.30292"
|
705
|
+
x="176.6617"
|
706
|
+
id="tspan3983"
|
707
|
+
sodipodi:role="line">"1st"</tspan></text>
|
708
|
+
<text
|
709
|
+
sodipodi:linespacing="125%"
|
710
|
+
id="text3985"
|
711
|
+
y="870.61218"
|
712
|
+
x="173.7906"
|
713
|
+
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
714
|
+
xml:space="preserve"><tspan
|
715
|
+
y="870.61218"
|
716
|
+
x="173.7906"
|
717
|
+
id="tspan3987"
|
718
|
+
sodipodi:role="line">"2nd"</tspan></text>
|
719
|
+
<text
|
720
|
+
xml:space="preserve"
|
721
|
+
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
722
|
+
x="-913.02441"
|
723
|
+
y="-199.06685"
|
724
|
+
id="text3989"
|
725
|
+
sodipodi:linespacing="125%"
|
726
|
+
transform="matrix(0,-1,-1,0,0,0)"><tspan
|
727
|
+
sodipodi:role="line"
|
728
|
+
id="tspan3991"
|
729
|
+
x="-913.02441"
|
730
|
+
y="-199.06685">...</tspan></text>
|
731
|
+
<g
|
732
|
+
transform="matrix(0.78671347,0,0,0.78671347,252.54915,846.37351)"
|
733
|
+
style="display:inline"
|
734
|
+
inkscape:label="Magnifying Glass"
|
735
|
+
id="g4253">
|
736
|
+
<g
|
737
|
+
transform="matrix(0.665377,0,0,0.665377,15.98645,17.90835)"
|
738
|
+
id="g4285">
|
739
|
+
<path
|
740
|
+
transform="matrix(1.446431,0,0,1.51999,-10.97453,-17.75168)"
|
741
|
+
d="m 40.65864,37.967922 a 16.528622,3.9332814 0 1 1 -33.0572434,0 16.528622,3.9332814 0 1 1 33.0572434,0 z"
|
742
|
+
sodipodi:ry="3.9332814"
|
743
|
+
sodipodi:rx="16.528622"
|
744
|
+
sodipodi:cy="37.967922"
|
745
|
+
sodipodi:cx="24.130018"
|
746
|
+
id="path4287"
|
747
|
+
style="opacity:0.17112301;color:#000000;fill:url(#radialGradient4539);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
|
748
|
+
sodipodi:type="arc" />
|
749
|
+
<path
|
750
|
+
style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4541);stroke-width:3.00581574;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
|
751
|
+
d="m 18.627569,3.1435548 c -8.13913,0 -14.7448008,6.6056711 -14.7448008,14.7448012 0,8.13913 6.6056708,14.744802 14.7448008,14.744802 3.479555,0 6.551001,-1.384393 9.073723,-3.402647 -0.205377,1.006881 -0.07803,2.035368 0.756144,2.759925 l 10.964084,9.52741 c 1.233416,1.071329 3.087462,0.93096 4.15879,-0.302457 1.071328,-1.233418 0.930959,-3.087462 -0.302457,-4.15879 L 32.313769,27.529188 c -0.671527,-0.583279 -1.492878,-0.755969 -2.306238,-0.642722 1.9867,-2.512422 3.364839,-5.548803 3.364839,-8.99811 0,-8.1391301 -6.605671,-14.7448012 -14.744801,-14.7448012 z m -0.07562,1.2261833 c 7.639459,0 13.291775,4.7889505 13.291775,13.2917749 0,8.675113 -5.81669,13.291775 -13.291775,13.291775 -7.302949,0 -13.2917734,-5.478092 -13.2917734,-13.291775 0,-7.9841069 5.8246384,-13.291775 13.2917734,-13.2917749 z"
|
752
|
+
id="path4289"
|
753
|
+
sodipodi:nodetypes="csscccscccscczzzz"
|
754
|
+
inkscape:connector-curvature="0" />
|
755
|
+
<path
|
756
|
+
id="path4291"
|
757
|
+
d="m 18.602905,3.0803551 c -8.16544,0 -14.7924642,6.627024 -14.7924642,14.7924639 0,8.16544 6.6270242,14.792464 14.7924642,14.792464 3.490803,0 6.572177,-1.388867 9.103055,-3.413645 -0.206041,1.010136 -0.07829,2.041947 0.758587,2.768846 l 10.999526,9.558207 c 1.237403,1.074792 3.097442,0.93397 4.172233,-0.303435 1.074791,-1.237404 0.933968,-3.097442 -0.303435,-4.172233 L 32.333346,27.544815 c -0.673698,-0.585164 -1.497704,-0.758413 -2.313693,-0.644799 1.993122,-2.520544 3.375716,-5.56674 3.375716,-9.027197 0,-8.1654399 -6.627024,-14.7924639 -14.792464,-14.7924639 z m -0.07586,3.1860692 c 6.281108,2e-7 11.378818,5.0977107 11.378818,11.3788187 0,6.281108 -5.09771,11.378818 -11.378818,11.378818 -6.281108,0 -11.3788184,-5.09771 -11.3788184,-11.378818 2e-7,-6.281108 5.0977104,-11.3788187 11.3788184,-11.3788187 z"
|
758
|
+
style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;visibility:visible;display:inline;overflow:visible"
|
759
|
+
inkscape:connector-curvature="0" />
|
760
|
+
<path
|
761
|
+
sodipodi:nodetypes="ccccc"
|
762
|
+
id="path4293"
|
763
|
+
d="m 39.507004,41.57769 c -0.478672,-2.273187 1.39733,-4.811422 3.584053,-4.788375 0,0 -10.760367,-9.258111 -10.760367,-9.258111 -2.944791,-0.05671 -4.269502,2.272616 -3.776814,4.599922 l 10.953128,9.446564 z"
|
764
|
+
style="color:#000000;fill:url(#linearGradient4543);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
|
765
|
+
inkscape:connector-curvature="0" />
|
766
|
+
<path
|
767
|
+
transform="matrix(1.245743,0,0,1.245743,-3.425346,-6.177033)"
|
768
|
+
d="m 28.549437,18.920233 a 11.048544,11.048544 0 1 1 -22.0970883,0 11.048544,11.048544 0 1 1 22.0970883,0 z"
|
769
|
+
sodipodi:ry="11.048544"
|
770
|
+
sodipodi:rx="11.048544"
|
771
|
+
sodipodi:cy="18.920233"
|
772
|
+
sodipodi:cx="17.500893"
|
773
|
+
id="path4295"
|
774
|
+
style="color:#000000;fill:none;stroke:url(#linearGradient4545);stroke-width:1.20643401;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
|
775
|
+
sodipodi:type="arc" />
|
776
|
+
<rect
|
777
|
+
transform="matrix(0.752986,0.658037,-0.648902,0.760872,0,0)"
|
778
|
+
ry="2.837393"
|
779
|
+
rx="3.2112026"
|
780
|
+
y="0.14086054"
|
781
|
+
x="40.373337"
|
782
|
+
height="4.4404783"
|
783
|
+
width="19.048439"
|
784
|
+
id="rect4297"
|
785
|
+
style="opacity:0.43315507;color:#000000;fill:none;stroke:#ffffff;stroke-width:1.50295389;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" />
|
786
|
+
<path
|
787
|
+
transform="matrix(1.398614,0,0,1.398614,-6.224338,-8.298958)"
|
788
|
+
d="m 25.897786,18.478292 a 8.3085051,8.3085051 0 1 1 -16.61701,0 8.3085051,8.3085051 0 1 1 16.61701,0 z"
|
789
|
+
sodipodi:ry="8.3085051"
|
790
|
+
sodipodi:rx="8.3085051"
|
791
|
+
sodipodi:cy="18.478292"
|
792
|
+
sodipodi:cx="17.589281"
|
793
|
+
id="path4299"
|
794
|
+
style="color:#000000;fill:url(#radialGradient4547);fill-opacity:1;fill-rule:evenodd;stroke:#3063a3;stroke-width:1.07456946;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible"
|
795
|
+
sodipodi:type="arc" />
|
796
|
+
<path
|
797
|
+
id="path4301"
|
798
|
+
d="m 18.156915,7.3966938 c -5.20759,0 -9.4245469,4.2169572 -9.4245469,9.4245472 0,1.503975 0.4203072,2.887773 1.0471719,4.149903 1.25238,0.461613 2.582757,0.775683 3.994767,0.775683 6.170955,0 11.099282,-4.861637 11.480106,-10.937129 C 23.523449,8.7641668 21.044374,7.3966938 18.156915,7.3966938 z"
|
799
|
+
style="opacity:0.83422457;color:#000000;fill:url(#radialGradient4549);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
|
800
|
+
inkscape:connector-curvature="0" />
|
801
|
+
</g>
|
802
|
+
</g>
|
803
|
+
<g
|
804
|
+
id="g4479"
|
805
|
+
inkscape:label="Magnifying Glass"
|
806
|
+
style="display:inline"
|
807
|
+
transform="matrix(0.78671347,0,0,0.78671347,251.83487,794.88998)">
|
808
|
+
<g
|
809
|
+
id="g4481"
|
810
|
+
transform="matrix(0.665377,0,0,0.665377,15.98645,17.90835)">
|
811
|
+
<path
|
812
|
+
sodipodi:type="arc"
|
813
|
+
style="opacity:0.17112301;color:#000000;fill:url(#radialGradient4551);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
|
814
|
+
id="path4483"
|
815
|
+
sodipodi:cx="24.130018"
|
816
|
+
sodipodi:cy="37.967922"
|
817
|
+
sodipodi:rx="16.528622"
|
818
|
+
sodipodi:ry="3.9332814"
|
819
|
+
d="m 40.65864,37.967922 a 16.528622,3.9332814 0 1 1 -33.0572434,0 16.528622,3.9332814 0 1 1 33.0572434,0 z"
|
820
|
+
transform="matrix(1.446431,0,0,1.51999,-10.97453,-17.75168)" />
|
821
|
+
<path
|
822
|
+
inkscape:connector-curvature="0"
|
823
|
+
sodipodi:nodetypes="csscccscccscczzzz"
|
824
|
+
id="path4485"
|
825
|
+
d="m 18.627569,3.1435548 c -8.13913,0 -14.7448008,6.6056711 -14.7448008,14.7448012 0,8.13913 6.6056708,14.744802 14.7448008,14.744802 3.479555,0 6.551001,-1.384393 9.073723,-3.402647 -0.205377,1.006881 -0.07803,2.035368 0.756144,2.759925 l 10.964084,9.52741 c 1.233416,1.071329 3.087462,0.93096 4.15879,-0.302457 1.071328,-1.233418 0.930959,-3.087462 -0.302457,-4.15879 L 32.313769,27.529188 c -0.671527,-0.583279 -1.492878,-0.755969 -2.306238,-0.642722 1.9867,-2.512422 3.364839,-5.548803 3.364839,-8.99811 0,-8.1391301 -6.605671,-14.7448012 -14.744801,-14.7448012 z m -0.07562,1.2261833 c 7.639459,0 13.291775,4.7889505 13.291775,13.2917749 0,8.675113 -5.81669,13.291775 -13.291775,13.291775 -7.302949,0 -13.2917734,-5.478092 -13.2917734,-13.291775 0,-7.9841069 5.8246384,-13.291775 13.2917734,-13.2917749 z"
|
826
|
+
style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4553);stroke-width:3.00581574;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" />
|
827
|
+
<path
|
828
|
+
inkscape:connector-curvature="0"
|
829
|
+
style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;visibility:visible;display:inline;overflow:visible"
|
830
|
+
d="m 18.602905,3.0803551 c -8.16544,0 -14.7924642,6.627024 -14.7924642,14.7924639 0,8.16544 6.6270242,14.792464 14.7924642,14.792464 3.490803,0 6.572177,-1.388867 9.103055,-3.413645 -0.206041,1.010136 -0.07829,2.041947 0.758587,2.768846 l 10.999526,9.558207 c 1.237403,1.074792 3.097442,0.93397 4.172233,-0.303435 1.074791,-1.237404 0.933968,-3.097442 -0.303435,-4.172233 L 32.333346,27.544815 c -0.673698,-0.585164 -1.497704,-0.758413 -2.313693,-0.644799 1.993122,-2.520544 3.375716,-5.56674 3.375716,-9.027197 0,-8.1654399 -6.627024,-14.7924639 -14.792464,-14.7924639 z m -0.07586,3.1860692 c 6.281108,2e-7 11.378818,5.0977107 11.378818,11.3788187 0,6.281108 -5.09771,11.378818 -11.378818,11.378818 -6.281108,0 -11.3788184,-5.09771 -11.3788184,-11.378818 2e-7,-6.281108 5.0977104,-11.3788187 11.3788184,-11.3788187 z"
|
831
|
+
id="path4487" />
|
832
|
+
<path
|
833
|
+
inkscape:connector-curvature="0"
|
834
|
+
style="color:#000000;fill:url(#linearGradient4555);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
|
835
|
+
d="m 39.507004,41.57769 c -0.478672,-2.273187 1.39733,-4.811422 3.584053,-4.788375 0,0 -10.760367,-9.258111 -10.760367,-9.258111 -2.944791,-0.05671 -4.269502,2.272616 -3.776814,4.599922 l 10.953128,9.446564 z"
|
836
|
+
id="path4489"
|
837
|
+
sodipodi:nodetypes="ccccc" />
|
838
|
+
<path
|
839
|
+
sodipodi:type="arc"
|
840
|
+
style="color:#000000;fill:none;stroke:url(#linearGradient4557);stroke-width:1.20643401;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
|
841
|
+
id="path4491"
|
842
|
+
sodipodi:cx="17.500893"
|
843
|
+
sodipodi:cy="18.920233"
|
844
|
+
sodipodi:rx="11.048544"
|
845
|
+
sodipodi:ry="11.048544"
|
846
|
+
d="m 28.549437,18.920233 a 11.048544,11.048544 0 1 1 -22.0970883,0 11.048544,11.048544 0 1 1 22.0970883,0 z"
|
847
|
+
transform="matrix(1.245743,0,0,1.245743,-3.425346,-6.177033)" />
|
848
|
+
<rect
|
849
|
+
style="opacity:0.43315507;color:#000000;fill:none;stroke:#ffffff;stroke-width:1.50295389;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
|
850
|
+
id="rect4493"
|
851
|
+
width="19.048439"
|
852
|
+
height="4.4404783"
|
853
|
+
x="40.373337"
|
854
|
+
y="0.14086054"
|
855
|
+
rx="3.2112026"
|
856
|
+
ry="2.837393"
|
857
|
+
transform="matrix(0.752986,0.658037,-0.648902,0.760872,0,0)" />
|
858
|
+
<path
|
859
|
+
sodipodi:type="arc"
|
860
|
+
style="color:#000000;fill:url(#radialGradient4559);fill-opacity:1;fill-rule:evenodd;stroke:#3063a3;stroke-width:1.07456946;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible"
|
861
|
+
id="path4495"
|
862
|
+
sodipodi:cx="17.589281"
|
863
|
+
sodipodi:cy="18.478292"
|
864
|
+
sodipodi:rx="8.3085051"
|
865
|
+
sodipodi:ry="8.3085051"
|
866
|
+
d="m 25.897786,18.478292 a 8.3085051,8.3085051 0 1 1 -16.61701,0 8.3085051,8.3085051 0 1 1 16.61701,0 z"
|
867
|
+
transform="matrix(1.398614,0,0,1.398614,-6.224338,-8.298958)" />
|
868
|
+
<path
|
869
|
+
inkscape:connector-curvature="0"
|
870
|
+
style="opacity:0.83422457;color:#000000;fill:url(#radialGradient4561);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
|
871
|
+
d="m 18.156915,7.3966938 c -5.20759,0 -9.4245469,4.2169572 -9.4245469,9.4245472 0,1.503975 0.4203072,2.887773 1.0471719,4.149903 1.25238,0.461613 2.582757,0.775683 3.994767,0.775683 6.170955,0 11.099282,-4.861637 11.480106,-10.937129 C 23.523449,8.7641668 21.044374,7.3966938 18.156915,7.3966938 z"
|
872
|
+
id="path4497" />
|
873
|
+
</g>
|
874
|
+
</g>
|
875
|
+
<text
|
876
|
+
sodipodi:linespacing="125%"
|
877
|
+
id="text4511"
|
878
|
+
y="816.98151"
|
879
|
+
x="253.11256"
|
880
|
+
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
881
|
+
xml:space="preserve"><tspan
|
882
|
+
y="816.98151"
|
883
|
+
x="253.11256"
|
884
|
+
id="tspan4513"
|
885
|
+
sodipodi:role="line">1</tspan></text>
|
886
|
+
<text
|
887
|
+
xml:space="preserve"
|
888
|
+
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
889
|
+
x="243.43347"
|
890
|
+
y="858.82648"
|
891
|
+
id="text4515"
|
892
|
+
sodipodi:linespacing="125%"><tspan
|
893
|
+
sodipodi:role="line"
|
894
|
+
id="tspan4517"
|
895
|
+
x="243.43347"
|
896
|
+
y="858.82648">"2nd"</tspan></text>
|
897
|
+
<path
|
898
|
+
style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
|
899
|
+
d="m 253.84563,57.58294 c 0,0 -57.05992,-19.368654 -112.05992,5.274203"
|
900
|
+
id="path4563"
|
901
|
+
inkscape:connector-curvature="0"
|
902
|
+
transform="translate(0,752.36218)"
|
903
|
+
sodipodi:nodetypes="cc" />
|
904
|
+
<path
|
905
|
+
sodipodi:nodetypes="cc"
|
906
|
+
inkscape:connector-curvature="0"
|
907
|
+
id="path5195"
|
908
|
+
d="m 241.70277,852.26655 c 0,0 -14.7617,-11.00643 -31.97635,1.19769"
|
909
|
+
style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)" />
|
910
|
+
<path
|
911
|
+
style="fill:none;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
|
912
|
+
d="m 181.34616,851.00386 c 0,0 -18.54977,-7.4709 -37.53219,4.22815"
|
913
|
+
id="path5197"
|
914
|
+
inkscape:connector-curvature="0"
|
915
|
+
sodipodi:nodetypes="cc" />
|
916
|
+
</g>
|
917
|
+
</svg>
|