rroonga 4.0.3-x64-mingw32 → 4.0.4-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +13 -5
 - data/Gemfile +1 -1
 - data/README.textile +1 -1
 - data/Rakefile +8 -1
 - data/bin/grndump +1 -1
 - data/bin/grntest-log-analyze +1 -1
 - data/bin/groonga-database-inspect +1 -1
 - data/bin/groonga-index-dump +1 -1
 - data/doc/text/news.textile +28 -0
 - data/ext/groonga/extconf.rb +12 -2
 - data/ext/groonga/rb-grn-accessor.c +2 -1
 - data/ext/groonga/rb-grn-array-cursor.c +1 -1
 - data/ext/groonga/rb-grn-array.c +1 -1
 - data/ext/groonga/rb-grn-column.c +1 -1
 - data/ext/groonga/rb-grn-context.c +7 -5
 - data/ext/groonga/rb-grn-database.c +1 -1
 - data/ext/groonga/rb-grn-double-array-trie-cursor.c +1 -1
 - data/ext/groonga/rb-grn-double-array-trie.c +1 -1
 - 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 +1 -1
 - data/ext/groonga/rb-grn-fix-size-column.c +1 -1
 - data/ext/groonga/rb-grn-geo-point.c +1 -1
 - data/ext/groonga/rb-grn-hash-cursor.c +1 -1
 - data/ext/groonga/rb-grn-hash.c +1 -1
 - data/ext/groonga/rb-grn-index-column.c +1 -1
 - data/ext/groonga/rb-grn-index-cursor.c +1 -1
 - data/ext/groonga/rb-grn-logger.c +1 -1
 - data/ext/groonga/rb-grn-normalizer.c +1 -1
 - data/ext/groonga/rb-grn-object.c +71 -45
 - 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 +1 -1
 - data/ext/groonga/rb-grn-plugin.c +1 -1
 - data/ext/groonga/rb-grn-posting.c +1 -1
 - data/ext/groonga/rb-grn-procedure-type.c +40 -0
 - data/ext/groonga/rb-grn-procedure.c +17 -4
 - data/ext/groonga/rb-grn-query-logger.c +1 -1
 - data/ext/groonga/rb-grn-record.c +1 -1
 - data/ext/groonga/rb-grn-snippet.c +1 -1
 - data/ext/groonga/rb-grn-table-cursor-key-support.c +1 -1
 - data/ext/groonga/rb-grn-table-cursor.c +1 -1
 - data/ext/groonga/rb-grn-table-key-support.c +1 -1
 - data/ext/groonga/rb-grn-table.c +3 -2
 - data/ext/groonga/rb-grn-type.c +1 -1
 - data/ext/groonga/rb-grn-utils.c +1 -1
 - data/ext/groonga/rb-grn-variable-size-column.c +55 -27
 - data/ext/groonga/rb-grn-variable.c +1 -1
 - data/ext/groonga/rb-grn.h +4 -2
 - data/ext/groonga/rb-groonga.c +3 -2
 - data/extconf.rb +1 -1
 - data/lib/1.9/groonga.so +0 -0
 - data/lib/2.0/groonga.so +0 -0
 - data/lib/2.1/groonga.so +0 -0
 - data/lib/groonga/column.rb +1 -1
 - data/lib/groonga/context/command-executor.rb +1 -1
 - data/lib/groonga/context.rb +1 -1
 - data/lib/groonga/database-inspector.rb +1 -1
 - data/lib/groonga/database.rb +1 -1
 - data/lib/groonga/dumper.rb +1 -1
 - data/lib/groonga/expression-builder-19.rb +1 -1
 - data/lib/groonga/expression-builder.rb +1 -1
 - data/lib/groonga/geo-point.rb +1 -1
 - data/lib/groonga/grntest-log.rb +1 -1
 - data/lib/groonga/index-column.rb +1 -1
 - data/lib/groonga/logger.rb +1 -1
 - data/lib/groonga/memory-pool.rb +1 -2
 - data/lib/groonga/pagination.rb +1 -1
 - data/lib/groonga/patricia-trie.rb +1 -1
 - data/lib/groonga/posting.rb +1 -1
 - data/lib/groonga/query-logger.rb +1 -1
 - data/lib/groonga/record.rb +6 -2
 - data/lib/groonga/schema.rb +1 -1
 - data/lib/groonga/statistic-measurer.rb +1 -1
 - data/lib/groonga/sub-records.rb +1 -1
 - data/lib/groonga/table.rb +1 -1
 - data/lib/groonga.rb +1 -1
 - data/misc/grnop2ruby.rb +1 -1
 - data/rroonga-build.rb +4 -4
 - data/rroonga.gemspec +3 -3
 - data/test/groonga-test-utils.rb +4 -4
 - data/test/run-test.rb +1 -1
 - data/test/test-accessor.rb +1 -1
 - data/test/test-array.rb +1 -1
 - data/test/test-column.rb +1 -1
 - data/test/test-command-select.rb +1 -1
 - data/test/test-context.rb +21 -16
 - data/test/test-convert.rb +1 -1
 - data/test/test-database-dumper.rb +1 -1
 - data/test/test-database-inspector.rb +1 -1
 - data/test/test-database.rb +38 -25
 - data/test/test-double-array-trie.rb +1 -1
 - data/test/test-encoding.rb +1 -1
 - data/test/test-exception.rb +12 -7
 - data/test/test-expression-builder.rb +1 -1
 - data/test/test-expression.rb +1 -1
 - data/test/test-fix-size-column.rb +1 -1
 - data/test/test-geo-point.rb +1 -1
 - data/test/test-gqtp.rb +1 -1
 - data/test/test-hash.rb +1 -1
 - data/test/test-index-column.rb +1 -1
 - data/test/test-index-cursor.rb +1 -1
 - data/test/test-lock-timeout.rb +1 -1
 - data/test/test-logger.rb +1 -1
 - data/test/test-memory-pool.rb +1 -1
 - data/test/test-normalizer.rb +1 -1
 - data/test/test-pagination.rb +1 -1
 - data/test/test-patricia-trie.rb +1 -1
 - data/test/test-plugin.rb +1 -1
 - data/test/test-procedure.rb +9 -2
 - data/test/test-record.rb +1 -1
 - data/test/test-remote.rb +1 -1
 - data/test/test-schema-create-table.rb +1 -1
 - data/test/test-schema-dumper.rb +1 -1
 - data/test/test-schema-type.rb +1 -1
 - data/test/test-schema.rb +1 -1
 - data/test/test-snippet.rb +1 -1
 - data/test/test-statistic-measurer.rb +1 -1
 - data/test/test-sub-records.rb +1 -1
 - data/test/test-table-dumper.rb +1 -1
 - data/test/test-table-key-support.rb +1 -1
 - data/test/test-table-offset-and-limit.rb +1 -1
 - data/test/test-table-select-mecab.rb +1 -1
 - data/test/test-table-select-normalize.rb +1 -1
 - data/test/test-table-select-weight.rb +1 -1
 - data/test/test-table-select.rb +1 -1
 - data/test/test-table-traverse.rb +1 -1
 - data/test/test-table.rb +1 -1
 - data/test/test-type.rb +1 -1
 - data/test/test-variable-size-column.rb +136 -67
 - data/test/test-variable.rb +1 -1
 - data/test/test-vector-column.rb +1 -1
 - data/test/test-version.rb +1 -1
 - data/vendor/local/bin/groonga-benchmark.exe +0 -0
 - data/vendor/local/bin/groonga.exe +0 -0
 - data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
 - data/vendor/local/bin/libgroonga-0.dll +0 -0
 - data/vendor/local/bin/libmecab-1.dll +0 -0
 - data/vendor/local/bin/libmsgpack-3.dll +0 -0
 - data/vendor/local/bin/libmsgpackc-2.dll +0 -0
 - data/vendor/local/bin/libstdc++-6.dll +0 -0
 - data/vendor/local/bin/libwinpthread-1.dll +0 -0
 - data/vendor/local/bin/mecab-config +0 -0
 - data/vendor/local/bin/mecab.exe +0 -0
 - data/vendor/local/include/groonga/groonga/plugin.h +11 -83
 - data/vendor/local/include/groonga/groonga/tokenizer.h +10 -5
 - data/vendor/local/include/groonga/groonga.h +38 -5
 - data/vendor/local/include/msgpack/fbuffer.h +47 -0
 - data/vendor/local/include/msgpack/fbuffer.hpp +56 -0
 - data/vendor/local/include/msgpack/object.hpp +12 -3
 - data/vendor/local/include/msgpack/pack.h +7 -3
 - data/vendor/local/include/msgpack/pack.hpp +26 -7
 - data/vendor/local/include/msgpack/pack_template.h +34 -7
 - data/vendor/local/include/msgpack/sbuffer.h +3 -2
 - data/vendor/local/include/msgpack/sbuffer.hpp +1 -1
 - data/vendor/local/include/msgpack/sysdep.h +27 -14
 - data/vendor/local/include/msgpack/type/define.hpp +747 -561
 - data/vendor/local/include/msgpack/type/float.hpp +24 -4
 - data/vendor/local/include/msgpack/type/int.hpp +78 -13
 - data/vendor/local/include/msgpack/type/tr1/unordered_map.hpp +31 -10
 - data/vendor/local/include/msgpack/type/tr1/unordered_set.hpp +30 -10
 - data/vendor/local/include/msgpack/type.hpp +2 -1
 - data/vendor/local/include/msgpack/unpack.h +9 -9
 - data/vendor/local/include/msgpack/unpack_define.h +16 -14
 - data/vendor/local/include/msgpack/unpack_template.h +19 -8
 - data/vendor/local/include/msgpack/version.h +1 -1
 - data/vendor/local/include/msgpack/vrefbuffer.h +10 -9
 - data/vendor/local/include/msgpack/vrefbuffer.hpp +4 -2
 - data/vendor/local/include/msgpack/zbuffer.h +3 -2
 - data/vendor/local/include/msgpack/zbuffer.hpp +4 -2
 - data/vendor/local/include/msgpack/zone.h +5 -4
 - data/vendor/local/include/msgpack/zone.hpp +10 -1
 - data/vendor/local/include/msgpack.h +1 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +1 -1
 - 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 +1 -1
 - data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.la +1 -1
 - 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 +2 -2
 - data/vendor/local/lib/libmsgpack.a +0 -0
 - data/vendor/local/lib/libmsgpack.dll.a +0 -0
 - data/vendor/local/lib/libmsgpack.la +1 -1
 - data/vendor/local/lib/libmsgpackc.a +0 -0
 - data/vendor/local/lib/libmsgpackc.dll.a +0 -0
 - data/vendor/local/lib/libmsgpackc.la +1 -1
 - data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
 - data/vendor/local/lib/pkgconfig/msgpack.pc +10 -0
 - 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/sbin/groonga-httpd-restart +0 -0
 - data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt +2 -6
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +7 -26
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +9 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +13 -15
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +5 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/1.3.x.txt +49 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +617 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +536 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +149 -1194
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/plugin.txt +122 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/vector.txt +0 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/check.txt +50 -55
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/clearlock.txt +25 -31
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_remove.txt +26 -29
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/define_selector.txt +20 -26
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/defrag.txt +26 -29
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/dump.txt +28 -28
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_level.txt +20 -26
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_put.txt +20 -26
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_reopen.txt +29 -34
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/quit.txt +20 -20
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/shutdown.txt +19 -20
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/status.txt +19 -24
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +78 -87
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_list.txt +20 -22
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt +19 -24
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +27 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-benchmark.txt +17 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt +17 -8
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +132 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +100 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/server/http/comparison.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt +6 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/drilldown.txt +3 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt +28 -25
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt +26 -21
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt +17 -12
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/search.txt +44 -42
 - data/vendor/local/share/doc/groonga/en/html/_static/basic.css +0 -18
 - data/vendor/local/share/doc/groonga/en/html/_static/groonga.css +2 -0
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/community.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/development.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +136 -26
 - data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/index.html +56 -56
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +43 -50
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +59 -35
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +40 -44
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +20 -22
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +20 -22
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +33 -35
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +26 -28
 - data/vendor/local/share/doc/groonga/en/html/install.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/news/0.x.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +160 -0
 - data/vendor/local/share/doc/groonga/en/html/news/2.x.html +804 -0
 - data/vendor/local/share/doc/groonga/en/html/news/3.x.html +727 -0
 - data/vendor/local/share/doc/groonga/en/html/news/senna.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/news.html +320 -1367
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +23 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +23 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +28 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +30 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +40 -42
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +20 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +35 -37
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +25 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +226 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +17 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +33 -35
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +73 -85
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +50 -62
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +53 -65
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +45 -57
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +49 -59
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +47 -51
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +44 -56
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +45 -57
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +54 -63
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +42 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +20 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +41 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +52 -64
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +201 -213
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +74 -81
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +42 -54
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +174 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +20 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +31 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +38 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +25 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +22 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +311 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +278 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +42 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +37 -39
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +53 -55
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +39 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +40 -42
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +39 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference.html +41 -41
 - data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
 - data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/server/http.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/server/package.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/server.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/spec/search.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/spec.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/suggest.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +28 -29
 - data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +52 -52
 - data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +57 -56
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +22 -24
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +20 -22
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +71 -69
 - data/vendor/local/share/doc/groonga/en/html/tutorial.html +32 -34
 - data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt +2 -6
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +7 -26
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +9 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +13 -15
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.3.x.txt +49 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +617 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +536 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +149 -1194
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/plugin.txt +122 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/vector.txt +0 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/check.txt +50 -55
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/clearlock.txt +25 -31
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_remove.txt +26 -29
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/define_selector.txt +20 -26
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/defrag.txt +26 -29
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/dump.txt +28 -28
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt +20 -26
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_put.txt +20 -26
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_reopen.txt +29 -34
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/quit.txt +20 -20
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/shutdown.txt +19 -20
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/status.txt +19 -24
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +78 -87
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt +19 -24
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +27 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-benchmark.txt +17 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt +17 -8
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +132 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +100 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/server/http/comparison.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt +6 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt +3 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt +28 -25
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt +26 -21
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt +17 -12
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/search.txt +44 -42
 - data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +0 -18
 - data/vendor/local/share/doc/groonga/ja/html/_static/groonga.css +2 -0
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/community.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/development.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +136 -26
 - data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/index.html +53 -53
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +44 -50
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +62 -36
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +33 -35
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +34 -36
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +26 -28
 - data/vendor/local/share/doc/groonga/ja/html/install.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +180 -0
 - data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +950 -0
 - data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +831 -0
 - data/vendor/local/share/doc/groonga/ja/html/news/senna.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/news.html +354 -1643
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +24 -26
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +23 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +28 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +30 -32
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +40 -42
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +35 -37
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +25 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +226 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +17 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/command.html +33 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +73 -85
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +50 -62
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +42 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +53 -65
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +27 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +45 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +49 -59
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +47 -51
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +44 -56
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +45 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +54 -63
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +27 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +42 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +41 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +52 -64
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +195 -207
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +74 -81
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +42 -54
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +172 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +26 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +31 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +38 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/function.html +25 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +18 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +22 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +294 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +266 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +42 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +37 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +55 -62
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +39 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +39 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +39 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +41 -41
 - data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
 - data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/server.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/spec/search.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/spec.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/suggest.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +24 -26
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +28 -31
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +33 -35
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +43 -43
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +39 -38
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +68 -64
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +29 -31
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb +2 -2
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro-import.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene-import.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/index.html +2 -2
 - data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.7.2.min.js +4 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.18.custom.min.js +356 -0
 - data/vendor/local/share/groonga/examples/dictionary/init-db.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb +0 -0
 - data/vendor/local/share/groonga/html/admin/css/groonga-admin.css +11 -0
 - data/vendor/local/share/groonga/html/admin/index.html +75 -75
 - data/vendor/local/share/groonga/html/admin/index.ja.html +301 -0
 - data/vendor/local/share/groonga/html/admin/js/groonga-admin.ja.js +1372 -0
 - data/vendor/local/share/groonga/html/admin/js/groonga-admin.js +28 -28
 - data/vendor/local/share/license/groonga/README.md +49 -0
 - data/vendor/local/share/man/ja/man1/groonga.1 +1934 -1247
 - data/vendor/local/share/man/man1/groonga.1 +2008 -1240
 - metadata +112 -84
 - data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.6.0.min.js +0 -16
 - data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.12.min.js +0 -406
 - data/vendor/local/share/license/groonga/AUTHORS +0 -17
 
| 
         @@ -34,6 +34,32 @@ 
     | 
|
| 
       34 
34 
     | 
    
         
             
            		msgpack::type::make_define(__VA_ARGS__).msgpack_object(o, z); \
         
     | 
| 
       35 
35 
     | 
    
         
             
            	}
         
     | 
| 
       36 
36 
     | 
    
         | 
| 
      
 37 
     | 
    
         
            +
            // MSGPACK_ADD_ENUM must be used in the global namespace.
         
     | 
| 
      
 38 
     | 
    
         
            +
            #define MSGPACK_ADD_ENUM(enum) \
         
     | 
| 
      
 39 
     | 
    
         
            +
              namespace msgpack { \
         
     | 
| 
      
 40 
     | 
    
         
            +
                template <> \
         
     | 
| 
      
 41 
     | 
    
         
            +
                inline enum& operator>> (object o, enum& v) \
         
     | 
| 
      
 42 
     | 
    
         
            +
                { \
         
     | 
| 
      
 43 
     | 
    
         
            +
                  int tmp; \
         
     | 
| 
      
 44 
     | 
    
         
            +
                  o >> tmp; \
         
     | 
| 
      
 45 
     | 
    
         
            +
                  v = static_cast<enum>(tmp); \
         
     | 
| 
      
 46 
     | 
    
         
            +
                  return v; \
         
     | 
| 
      
 47 
     | 
    
         
            +
                } \
         
     | 
| 
      
 48 
     | 
    
         
            +
                template <> \
         
     | 
| 
      
 49 
     | 
    
         
            +
                inline void operator<< (object::with_zone& o, const enum& v) \
         
     | 
| 
      
 50 
     | 
    
         
            +
                { \
         
     | 
| 
      
 51 
     | 
    
         
            +
                  o << static_cast<int>(v); \
         
     | 
| 
      
 52 
     | 
    
         
            +
                } \
         
     | 
| 
      
 53 
     | 
    
         
            +
                namespace detail { \
         
     | 
| 
      
 54 
     | 
    
         
            +
                  template <typename Stream> \
         
     | 
| 
      
 55 
     | 
    
         
            +
                  struct packer_serializer<Stream, enum> { \
         
     | 
| 
      
 56 
     | 
    
         
            +
                    static packer<Stream>& pack(packer<Stream>& o, const enum& v) { \
         
     | 
| 
      
 57 
     | 
    
         
            +
                      return o << static_cast<int>(v); \
         
     | 
| 
      
 58 
     | 
    
         
            +
                    } \
         
     | 
| 
      
 59 
     | 
    
         
            +
                  }; \
         
     | 
| 
      
 60 
     | 
    
         
            +
                } \
         
     | 
| 
      
 61 
     | 
    
         
            +
              }
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
       37 
63 
     | 
    
         
             
            namespace msgpack {
         
     | 
| 
       38 
64 
     | 
    
         
             
            namespace type {
         
     | 
| 
       39 
65 
     | 
    
         | 
| 
         @@ -50,7 +76,7 @@ struct define<> { 
     | 
|
| 
       50 
76 
     | 
    
         
             
            	template <typename Packer>
         
     | 
| 
       51 
77 
     | 
    
         
             
            	void msgpack_pack(Packer& pk) const
         
     | 
| 
       52 
78 
     | 
    
         
             
            	{
         
     | 
| 
       53 
     | 
    
         
            -
            		pk.pack_array( 
     | 
| 
      
 79 
     | 
    
         
            +
            		pk.pack_array(0);
         
     | 
| 
       54 
80 
     | 
    
         
             
            	}
         
     | 
| 
       55 
81 
     | 
    
         
             
            	void msgpack_unpack(msgpack::object o)
         
     | 
| 
       56 
82 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -81,8 +107,13 @@ struct define<A0> { 
     | 
|
| 
       81 
107 
     | 
    
         
             
            	{
         
     | 
| 
       82 
108 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       83 
109 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       84 
     | 
    
         
            -
            		
         
     | 
| 
       85 
     | 
    
         
            -
             
     | 
| 
      
 110 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 111 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 112 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 113 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 114 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 115 
     | 
    
         
            +
            			}
         
     | 
| 
      
 116 
     | 
    
         
            +
            		}
         
     | 
| 
       86 
117 
     | 
    
         
             
            	}
         
     | 
| 
       87 
118 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       88 
119 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -114,9 +145,14 @@ struct define<A0, A1> { 
     | 
|
| 
       114 
145 
     | 
    
         
             
            	{
         
     | 
| 
       115 
146 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       116 
147 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       117 
     | 
    
         
            -
            		
         
     | 
| 
       118 
     | 
    
         
            -
             
     | 
| 
       119 
     | 
    
         
            -
             
     | 
| 
      
 148 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 149 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 150 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 151 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 152 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 153 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 154 
     | 
    
         
            +
            			}
         
     | 
| 
      
 155 
     | 
    
         
            +
            		}
         
     | 
| 
       120 
156 
     | 
    
         
             
            	}
         
     | 
| 
       121 
157 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       122 
158 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -151,10 +187,15 @@ struct define<A0, A1, A2> { 
     | 
|
| 
       151 
187 
     | 
    
         
             
            	{
         
     | 
| 
       152 
188 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       153 
189 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       154 
     | 
    
         
            -
            		
         
     | 
| 
       155 
     | 
    
         
            -
             
     | 
| 
       156 
     | 
    
         
            -
             
     | 
| 
       157 
     | 
    
         
            -
             
     | 
| 
      
 190 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 191 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 192 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 193 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 194 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 195 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 196 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 197 
     | 
    
         
            +
            			}
         
     | 
| 
      
 198 
     | 
    
         
            +
            		}
         
     | 
| 
       158 
199 
     | 
    
         
             
            	}
         
     | 
| 
       159 
200 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       160 
201 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -192,11 +233,16 @@ struct define<A0, A1, A2, A3> { 
     | 
|
| 
       192 
233 
     | 
    
         
             
            	{
         
     | 
| 
       193 
234 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       194 
235 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       195 
     | 
    
         
            -
            		
         
     | 
| 
       196 
     | 
    
         
            -
             
     | 
| 
       197 
     | 
    
         
            -
             
     | 
| 
       198 
     | 
    
         
            -
             
     | 
| 
       199 
     | 
    
         
            -
             
     | 
| 
      
 236 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 237 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 238 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 239 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 240 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 241 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 242 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 243 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 244 
     | 
    
         
            +
            			}
         
     | 
| 
      
 245 
     | 
    
         
            +
            		}
         
     | 
| 
       200 
246 
     | 
    
         
             
            	}
         
     | 
| 
       201 
247 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       202 
248 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -237,12 +283,17 @@ struct define<A0, A1, A2, A3, A4> { 
     | 
|
| 
       237 
283 
     | 
    
         
             
            	{
         
     | 
| 
       238 
284 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       239 
285 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       240 
     | 
    
         
            -
            		
         
     | 
| 
       241 
     | 
    
         
            -
             
     | 
| 
       242 
     | 
    
         
            -
             
     | 
| 
       243 
     | 
    
         
            -
             
     | 
| 
       244 
     | 
    
         
            -
             
     | 
| 
       245 
     | 
    
         
            -
             
     | 
| 
      
 286 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 287 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 288 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 289 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 290 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 291 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 292 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 293 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 294 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 295 
     | 
    
         
            +
            			}
         
     | 
| 
      
 296 
     | 
    
         
            +
            		}
         
     | 
| 
       246 
297 
     | 
    
         
             
            	}
         
     | 
| 
       247 
298 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       248 
299 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -286,13 +337,18 @@ struct define<A0, A1, A2, A3, A4, A5> { 
     | 
|
| 
       286 
337 
     | 
    
         
             
            	{
         
     | 
| 
       287 
338 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       288 
339 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       289 
     | 
    
         
            -
            		
         
     | 
| 
       290 
     | 
    
         
            -
             
     | 
| 
       291 
     | 
    
         
            -
             
     | 
| 
       292 
     | 
    
         
            -
             
     | 
| 
       293 
     | 
    
         
            -
             
     | 
| 
       294 
     | 
    
         
            -
             
     | 
| 
       295 
     | 
    
         
            -
             
     | 
| 
      
 340 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 341 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 342 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 343 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 344 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 345 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 346 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 347 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 348 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 349 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 350 
     | 
    
         
            +
            			}
         
     | 
| 
      
 351 
     | 
    
         
            +
            		}
         
     | 
| 
       296 
352 
     | 
    
         
             
            	}
         
     | 
| 
       297 
353 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       298 
354 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -339,14 +395,19 @@ struct define<A0, A1, A2, A3, A4, A5, A6> { 
     | 
|
| 
       339 
395 
     | 
    
         
             
            	{
         
     | 
| 
       340 
396 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       341 
397 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       342 
     | 
    
         
            -
            		
         
     | 
| 
       343 
     | 
    
         
            -
             
     | 
| 
       344 
     | 
    
         
            -
             
     | 
| 
       345 
     | 
    
         
            -
             
     | 
| 
       346 
     | 
    
         
            -
             
     | 
| 
       347 
     | 
    
         
            -
             
     | 
| 
       348 
     | 
    
         
            -
             
     | 
| 
       349 
     | 
    
         
            -
             
     | 
| 
      
 398 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 399 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 400 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 401 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 402 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 403 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 404 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 405 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 406 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 407 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 408 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 409 
     | 
    
         
            +
            			}
         
     | 
| 
      
 410 
     | 
    
         
            +
            		}
         
     | 
| 
       350 
411 
     | 
    
         
             
            	}
         
     | 
| 
       351 
412 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       352 
413 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -396,15 +457,20 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7> { 
     | 
|
| 
       396 
457 
     | 
    
         
             
            	{
         
     | 
| 
       397 
458 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       398 
459 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       399 
     | 
    
         
            -
            		
         
     | 
| 
       400 
     | 
    
         
            -
             
     | 
| 
       401 
     | 
    
         
            -
             
     | 
| 
       402 
     | 
    
         
            -
             
     | 
| 
       403 
     | 
    
         
            -
             
     | 
| 
       404 
     | 
    
         
            -
             
     | 
| 
       405 
     | 
    
         
            -
             
     | 
| 
       406 
     | 
    
         
            -
             
     | 
| 
       407 
     | 
    
         
            -
             
     | 
| 
      
 460 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 461 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 462 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 463 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 464 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 465 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 466 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 467 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 468 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 469 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 470 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 471 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 472 
     | 
    
         
            +
            			}
         
     | 
| 
      
 473 
     | 
    
         
            +
            		}
         
     | 
| 
       408 
474 
     | 
    
         
             
            	}
         
     | 
| 
       409 
475 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       410 
476 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -457,16 +523,21 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8> { 
     | 
|
| 
       457 
523 
     | 
    
         
             
            	{
         
     | 
| 
       458 
524 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       459 
525 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       460 
     | 
    
         
            -
            		
         
     | 
| 
       461 
     | 
    
         
            -
             
     | 
| 
       462 
     | 
    
         
            -
             
     | 
| 
       463 
     | 
    
         
            -
             
     | 
| 
       464 
     | 
    
         
            -
             
     | 
| 
       465 
     | 
    
         
            -
             
     | 
| 
       466 
     | 
    
         
            -
             
     | 
| 
       467 
     | 
    
         
            -
             
     | 
| 
       468 
     | 
    
         
            -
             
     | 
| 
       469 
     | 
    
         
            -
             
     | 
| 
      
 526 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 527 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 528 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 529 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 530 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 531 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 532 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 533 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 534 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 535 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 536 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 537 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 538 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 539 
     | 
    
         
            +
            			}
         
     | 
| 
      
 540 
     | 
    
         
            +
            		}
         
     | 
| 
       470 
541 
     | 
    
         
             
            	}
         
     | 
| 
       471 
542 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       472 
543 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -522,17 +593,22 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9> { 
     | 
|
| 
       522 
593 
     | 
    
         
             
            	{
         
     | 
| 
       523 
594 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       524 
595 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       525 
     | 
    
         
            -
            		
         
     | 
| 
       526 
     | 
    
         
            -
             
     | 
| 
       527 
     | 
    
         
            -
             
     | 
| 
       528 
     | 
    
         
            -
             
     | 
| 
       529 
     | 
    
         
            -
             
     | 
| 
       530 
     | 
    
         
            -
             
     | 
| 
       531 
     | 
    
         
            -
             
     | 
| 
       532 
     | 
    
         
            -
             
     | 
| 
       533 
     | 
    
         
            -
             
     | 
| 
       534 
     | 
    
         
            -
             
     | 
| 
       535 
     | 
    
         
            -
             
     | 
| 
      
 596 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 597 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 598 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 599 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 600 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 601 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 602 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 603 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 604 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 605 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 606 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 607 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 608 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 609 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 610 
     | 
    
         
            +
            			}
         
     | 
| 
      
 611 
     | 
    
         
            +
            		}
         
     | 
| 
       536 
612 
     | 
    
         
             
            	}
         
     | 
| 
       537 
613 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       538 
614 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -591,18 +667,23 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10> { 
     | 
|
| 
       591 
667 
     | 
    
         
             
            	{
         
     | 
| 
       592 
668 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       593 
669 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       594 
     | 
    
         
            -
            		
         
     | 
| 
       595 
     | 
    
         
            -
             
     | 
| 
       596 
     | 
    
         
            -
             
     | 
| 
       597 
     | 
    
         
            -
             
     | 
| 
       598 
     | 
    
         
            -
             
     | 
| 
       599 
     | 
    
         
            -
             
     | 
| 
       600 
     | 
    
         
            -
             
     | 
| 
       601 
     | 
    
         
            -
             
     | 
| 
       602 
     | 
    
         
            -
             
     | 
| 
       603 
     | 
    
         
            -
             
     | 
| 
       604 
     | 
    
         
            -
             
     | 
| 
       605 
     | 
    
         
            -
             
     | 
| 
      
 670 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 671 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 672 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 673 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 674 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 675 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 676 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 677 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 678 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 679 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 680 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 681 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 682 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 683 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 684 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 685 
     | 
    
         
            +
            			}
         
     | 
| 
      
 686 
     | 
    
         
            +
            		}
         
     | 
| 
       606 
687 
     | 
    
         
             
            	}
         
     | 
| 
       607 
688 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       608 
689 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -664,19 +745,24 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11> { 
     | 
|
| 
       664 
745 
     | 
    
         
             
            	{
         
     | 
| 
       665 
746 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       666 
747 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       667 
     | 
    
         
            -
            		
         
     | 
| 
       668 
     | 
    
         
            -
             
     | 
| 
       669 
     | 
    
         
            -
             
     | 
| 
       670 
     | 
    
         
            -
             
     | 
| 
       671 
     | 
    
         
            -
             
     | 
| 
       672 
     | 
    
         
            -
             
     | 
| 
       673 
     | 
    
         
            -
             
     | 
| 
       674 
     | 
    
         
            -
             
     | 
| 
       675 
     | 
    
         
            -
             
     | 
| 
       676 
     | 
    
         
            -
             
     | 
| 
       677 
     | 
    
         
            -
             
     | 
| 
       678 
     | 
    
         
            -
             
     | 
| 
       679 
     | 
    
         
            -
             
     | 
| 
      
 748 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 749 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 750 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 751 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 752 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 753 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 754 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 755 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 756 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 757 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 758 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 759 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 760 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 761 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 762 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 763 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 764 
     | 
    
         
            +
            			}
         
     | 
| 
      
 765 
     | 
    
         
            +
            		}
         
     | 
| 
       680 
766 
     | 
    
         
             
            	}
         
     | 
| 
       681 
767 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       682 
768 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -741,20 +827,25 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12> { 
     | 
|
| 
       741 
827 
     | 
    
         
             
            	{
         
     | 
| 
       742 
828 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       743 
829 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       744 
     | 
    
         
            -
            		
         
     | 
| 
       745 
     | 
    
         
            -
             
     | 
| 
       746 
     | 
    
         
            -
             
     | 
| 
       747 
     | 
    
         
            -
             
     | 
| 
       748 
     | 
    
         
            -
             
     | 
| 
       749 
     | 
    
         
            -
             
     | 
| 
       750 
     | 
    
         
            -
             
     | 
| 
       751 
     | 
    
         
            -
             
     | 
| 
       752 
     | 
    
         
            -
             
     | 
| 
       753 
     | 
    
         
            -
             
     | 
| 
       754 
     | 
    
         
            -
             
     | 
| 
       755 
     | 
    
         
            -
             
     | 
| 
       756 
     | 
    
         
            -
             
     | 
| 
       757 
     | 
    
         
            -
             
     | 
| 
      
 830 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 831 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 832 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 833 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 834 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 835 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 836 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 837 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 838 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 839 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 840 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 841 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 842 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 843 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 844 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 845 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 846 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 847 
     | 
    
         
            +
            			}
         
     | 
| 
      
 848 
     | 
    
         
            +
            		}
         
     | 
| 
       758 
849 
     | 
    
         
             
            	}
         
     | 
| 
       759 
850 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       760 
851 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -822,21 +913,26 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13> { 
     | 
|
| 
       822 
913 
     | 
    
         
             
            	{
         
     | 
| 
       823 
914 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       824 
915 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       825 
     | 
    
         
            -
            		
         
     | 
| 
       826 
     | 
    
         
            -
             
     | 
| 
       827 
     | 
    
         
            -
             
     | 
| 
       828 
     | 
    
         
            -
             
     | 
| 
       829 
     | 
    
         
            -
             
     | 
| 
       830 
     | 
    
         
            -
             
     | 
| 
       831 
     | 
    
         
            -
             
     | 
| 
       832 
     | 
    
         
            -
             
     | 
| 
       833 
     | 
    
         
            -
             
     | 
| 
       834 
     | 
    
         
            -
             
     | 
| 
       835 
     | 
    
         
            -
             
     | 
| 
       836 
     | 
    
         
            -
             
     | 
| 
       837 
     | 
    
         
            -
             
     | 
| 
       838 
     | 
    
         
            -
             
     | 
| 
       839 
     | 
    
         
            -
             
     | 
| 
      
 916 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 917 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 918 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 919 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 920 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 921 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 922 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 923 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 924 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 925 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 926 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 927 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 928 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 929 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 930 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 931 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 932 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 933 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 934 
     | 
    
         
            +
            			}
         
     | 
| 
      
 935 
     | 
    
         
            +
            		}
         
     | 
| 
       840 
936 
     | 
    
         
             
            	}
         
     | 
| 
       841 
937 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       842 
938 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -907,22 +1003,27 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14> { 
     | 
|
| 
       907 
1003 
     | 
    
         
             
            	{
         
     | 
| 
       908 
1004 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       909 
1005 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       910 
     | 
    
         
            -
            		
         
     | 
| 
       911 
     | 
    
         
            -
             
     | 
| 
       912 
     | 
    
         
            -
             
     | 
| 
       913 
     | 
    
         
            -
             
     | 
| 
       914 
     | 
    
         
            -
             
     | 
| 
       915 
     | 
    
         
            -
             
     | 
| 
       916 
     | 
    
         
            -
             
     | 
| 
       917 
     | 
    
         
            -
             
     | 
| 
       918 
     | 
    
         
            -
             
     | 
| 
       919 
     | 
    
         
            -
             
     | 
| 
       920 
     | 
    
         
            -
             
     | 
| 
       921 
     | 
    
         
            -
             
     | 
| 
       922 
     | 
    
         
            -
             
     | 
| 
       923 
     | 
    
         
            -
             
     | 
| 
       924 
     | 
    
         
            -
             
     | 
| 
       925 
     | 
    
         
            -
             
     | 
| 
      
 1006 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 1007 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 1008 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 1009 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 1010 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 1011 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 1012 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 1013 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 1014 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 1015 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 1016 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 1017 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 1018 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 1019 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 1020 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 1021 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 1022 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 1023 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 1024 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 1025 
     | 
    
         
            +
            			}
         
     | 
| 
      
 1026 
     | 
    
         
            +
            		}
         
     | 
| 
       926 
1027 
     | 
    
         
             
            	}
         
     | 
| 
       927 
1028 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       928 
1029 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -996,23 +1097,28 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       996 
1097 
     | 
    
         
             
            	{
         
     | 
| 
       997 
1098 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       998 
1099 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       999 
     | 
    
         
            -
            		
         
     | 
| 
       1000 
     | 
    
         
            -
             
     | 
| 
       1001 
     | 
    
         
            -
             
     | 
| 
       1002 
     | 
    
         
            -
             
     | 
| 
       1003 
     | 
    
         
            -
             
     | 
| 
       1004 
     | 
    
         
            -
             
     | 
| 
       1005 
     | 
    
         
            -
             
     | 
| 
       1006 
     | 
    
         
            -
             
     | 
| 
       1007 
     | 
    
         
            -
             
     | 
| 
       1008 
     | 
    
         
            -
             
     | 
| 
       1009 
     | 
    
         
            -
             
     | 
| 
       1010 
     | 
    
         
            -
             
     | 
| 
       1011 
     | 
    
         
            -
             
     | 
| 
       1012 
     | 
    
         
            -
             
     | 
| 
       1013 
     | 
    
         
            -
             
     | 
| 
       1014 
     | 
    
         
            -
             
     | 
| 
       1015 
     | 
    
         
            -
             
     | 
| 
      
 1100 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 1101 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 1102 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 1103 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 1104 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 1105 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 1106 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 1107 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 1108 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 1109 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 1110 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 1111 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 1112 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 1113 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 1114 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 1115 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 1116 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 1117 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 1118 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 1119 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 1120 
     | 
    
         
            +
            			}
         
     | 
| 
      
 1121 
     | 
    
         
            +
            		}
         
     | 
| 
       1016 
1122 
     | 
    
         
             
            	}
         
     | 
| 
       1017 
1123 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       1018 
1124 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -1089,24 +1195,29 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       1089 
1195 
     | 
    
         
             
            	{
         
     | 
| 
       1090 
1196 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       1091 
1197 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       1092 
     | 
    
         
            -
            		
         
     | 
| 
       1093 
     | 
    
         
            -
             
     | 
| 
       1094 
     | 
    
         
            -
             
     | 
| 
       1095 
     | 
    
         
            -
             
     | 
| 
       1096 
     | 
    
         
            -
             
     | 
| 
       1097 
     | 
    
         
            -
             
     | 
| 
       1098 
     | 
    
         
            -
             
     | 
| 
       1099 
     | 
    
         
            -
             
     | 
| 
       1100 
     | 
    
         
            -
             
     | 
| 
       1101 
     | 
    
         
            -
             
     | 
| 
       1102 
     | 
    
         
            -
             
     | 
| 
       1103 
     | 
    
         
            -
             
     | 
| 
       1104 
     | 
    
         
            -
             
     | 
| 
       1105 
     | 
    
         
            -
             
     | 
| 
       1106 
     | 
    
         
            -
             
     | 
| 
       1107 
     | 
    
         
            -
             
     | 
| 
       1108 
     | 
    
         
            -
             
     | 
| 
       1109 
     | 
    
         
            -
             
     | 
| 
      
 1198 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 1199 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 1200 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 1201 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 1202 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 1203 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 1204 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 1205 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 1206 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 1207 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 1208 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 1209 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 1210 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 1211 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 1212 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 1213 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 1214 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 1215 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 1216 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 1217 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 1218 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 1219 
     | 
    
         
            +
            			}
         
     | 
| 
      
 1220 
     | 
    
         
            +
            		}
         
     | 
| 
       1110 
1221 
     | 
    
         
             
            	}
         
     | 
| 
       1111 
1222 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       1112 
1223 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -1186,25 +1297,30 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       1186 
1297 
     | 
    
         
             
            	{
         
     | 
| 
       1187 
1298 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       1188 
1299 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       1189 
     | 
    
         
            -
            		
         
     | 
| 
       1190 
     | 
    
         
            -
             
     | 
| 
       1191 
     | 
    
         
            -
             
     | 
| 
       1192 
     | 
    
         
            -
             
     | 
| 
       1193 
     | 
    
         
            -
             
     | 
| 
       1194 
     | 
    
         
            -
             
     | 
| 
       1195 
     | 
    
         
            -
             
     | 
| 
       1196 
     | 
    
         
            -
             
     | 
| 
       1197 
     | 
    
         
            -
             
     | 
| 
       1198 
     | 
    
         
            -
             
     | 
| 
       1199 
     | 
    
         
            -
             
     | 
| 
       1200 
     | 
    
         
            -
             
     | 
| 
       1201 
     | 
    
         
            -
             
     | 
| 
       1202 
     | 
    
         
            -
             
     | 
| 
       1203 
     | 
    
         
            -
             
     | 
| 
       1204 
     | 
    
         
            -
             
     | 
| 
       1205 
     | 
    
         
            -
             
     | 
| 
       1206 
     | 
    
         
            -
             
     | 
| 
       1207 
     | 
    
         
            -
             
     | 
| 
      
 1300 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 1301 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 1302 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 1303 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 1304 
     | 
    
         
            +
            			case 18: ptr[17].convert(&a17);
         
     | 
| 
      
 1305 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 1306 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 1307 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 1308 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 1309 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 1310 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 1311 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 1312 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 1313 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 1314 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 1315 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 1316 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 1317 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 1318 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 1319 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 1320 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 1321 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 1322 
     | 
    
         
            +
            			}
         
     | 
| 
      
 1323 
     | 
    
         
            +
            		}
         
     | 
| 
       1208 
1324 
     | 
    
         
             
            	}
         
     | 
| 
       1209 
1325 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       1210 
1326 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -1287,26 +1403,31 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       1287 
1403 
     | 
    
         
             
            	{
         
     | 
| 
       1288 
1404 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       1289 
1405 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       1290 
     | 
    
         
            -
            		
         
     | 
| 
       1291 
     | 
    
         
            -
             
     | 
| 
       1292 
     | 
    
         
            -
             
     | 
| 
       1293 
     | 
    
         
            -
             
     | 
| 
       1294 
     | 
    
         
            -
             
     | 
| 
       1295 
     | 
    
         
            -
             
     | 
| 
       1296 
     | 
    
         
            -
             
     | 
| 
       1297 
     | 
    
         
            -
             
     | 
| 
       1298 
     | 
    
         
            -
             
     | 
| 
       1299 
     | 
    
         
            -
             
     | 
| 
       1300 
     | 
    
         
            -
             
     | 
| 
       1301 
     | 
    
         
            -
             
     | 
| 
       1302 
     | 
    
         
            -
             
     | 
| 
       1303 
     | 
    
         
            -
             
     | 
| 
       1304 
     | 
    
         
            -
             
     | 
| 
       1305 
     | 
    
         
            -
             
     | 
| 
       1306 
     | 
    
         
            -
             
     | 
| 
       1307 
     | 
    
         
            -
             
     | 
| 
       1308 
     | 
    
         
            -
             
     | 
| 
       1309 
     | 
    
         
            -
             
     | 
| 
      
 1406 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 1407 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 1408 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 1409 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 1410 
     | 
    
         
            +
            			case 19: ptr[18].convert(&a18);
         
     | 
| 
      
 1411 
     | 
    
         
            +
            			case 18: ptr[17].convert(&a17);
         
     | 
| 
      
 1412 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 1413 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 1414 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 1415 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 1416 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 1417 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 1418 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 1419 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 1420 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 1421 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 1422 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 1423 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 1424 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 1425 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 1426 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 1427 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 1428 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 1429 
     | 
    
         
            +
            			}
         
     | 
| 
      
 1430 
     | 
    
         
            +
            		}
         
     | 
| 
       1310 
1431 
     | 
    
         
             
            	}
         
     | 
| 
       1311 
1432 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       1312 
1433 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -1392,27 +1513,32 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       1392 
1513 
     | 
    
         
             
            	{
         
     | 
| 
       1393 
1514 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       1394 
1515 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       1395 
     | 
    
         
            -
            		
         
     | 
| 
       1396 
     | 
    
         
            -
             
     | 
| 
       1397 
     | 
    
         
            -
             
     | 
| 
       1398 
     | 
    
         
            -
             
     | 
| 
       1399 
     | 
    
         
            -
             
     | 
| 
       1400 
     | 
    
         
            -
             
     | 
| 
       1401 
     | 
    
         
            -
             
     | 
| 
       1402 
     | 
    
         
            -
             
     | 
| 
       1403 
     | 
    
         
            -
             
     | 
| 
       1404 
     | 
    
         
            -
             
     | 
| 
       1405 
     | 
    
         
            -
             
     | 
| 
       1406 
     | 
    
         
            -
             
     | 
| 
       1407 
     | 
    
         
            -
             
     | 
| 
       1408 
     | 
    
         
            -
             
     | 
| 
       1409 
     | 
    
         
            -
             
     | 
| 
       1410 
     | 
    
         
            -
             
     | 
| 
       1411 
     | 
    
         
            -
             
     | 
| 
       1412 
     | 
    
         
            -
             
     | 
| 
       1413 
     | 
    
         
            -
             
     | 
| 
       1414 
     | 
    
         
            -
             
     | 
| 
       1415 
     | 
    
         
            -
             
     | 
| 
      
 1516 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 1517 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 1518 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 1519 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 1520 
     | 
    
         
            +
            			case 20: ptr[19].convert(&a19);
         
     | 
| 
      
 1521 
     | 
    
         
            +
            			case 19: ptr[18].convert(&a18);
         
     | 
| 
      
 1522 
     | 
    
         
            +
            			case 18: ptr[17].convert(&a17);
         
     | 
| 
      
 1523 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 1524 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 1525 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 1526 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 1527 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 1528 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 1529 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 1530 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 1531 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 1532 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 1533 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 1534 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 1535 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 1536 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 1537 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 1538 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 1539 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 1540 
     | 
    
         
            +
            			}
         
     | 
| 
      
 1541 
     | 
    
         
            +
            		}
         
     | 
| 
       1416 
1542 
     | 
    
         
             
            	}
         
     | 
| 
       1417 
1543 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       1418 
1544 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -1501,28 +1627,33 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       1501 
1627 
     | 
    
         
             
            	{
         
     | 
| 
       1502 
1628 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       1503 
1629 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       1504 
     | 
    
         
            -
            		
         
     | 
| 
       1505 
     | 
    
         
            -
             
     | 
| 
       1506 
     | 
    
         
            -
             
     | 
| 
       1507 
     | 
    
         
            -
             
     | 
| 
       1508 
     | 
    
         
            -
             
     | 
| 
       1509 
     | 
    
         
            -
             
     | 
| 
       1510 
     | 
    
         
            -
             
     | 
| 
       1511 
     | 
    
         
            -
             
     | 
| 
       1512 
     | 
    
         
            -
             
     | 
| 
       1513 
     | 
    
         
            -
             
     | 
| 
       1514 
     | 
    
         
            -
             
     | 
| 
       1515 
     | 
    
         
            -
             
     | 
| 
       1516 
     | 
    
         
            -
             
     | 
| 
       1517 
     | 
    
         
            -
             
     | 
| 
       1518 
     | 
    
         
            -
             
     | 
| 
       1519 
     | 
    
         
            -
             
     | 
| 
       1520 
     | 
    
         
            -
             
     | 
| 
       1521 
     | 
    
         
            -
             
     | 
| 
       1522 
     | 
    
         
            -
             
     | 
| 
       1523 
     | 
    
         
            -
             
     | 
| 
       1524 
     | 
    
         
            -
             
     | 
| 
       1525 
     | 
    
         
            -
             
     | 
| 
      
 1630 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 1631 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 1632 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 1633 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 1634 
     | 
    
         
            +
            			case 21: ptr[20].convert(&a20);
         
     | 
| 
      
 1635 
     | 
    
         
            +
            			case 20: ptr[19].convert(&a19);
         
     | 
| 
      
 1636 
     | 
    
         
            +
            			case 19: ptr[18].convert(&a18);
         
     | 
| 
      
 1637 
     | 
    
         
            +
            			case 18: ptr[17].convert(&a17);
         
     | 
| 
      
 1638 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 1639 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 1640 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 1641 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 1642 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 1643 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 1644 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 1645 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 1646 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 1647 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 1648 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 1649 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 1650 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 1651 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 1652 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 1653 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 1654 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 1655 
     | 
    
         
            +
            			}
         
     | 
| 
      
 1656 
     | 
    
         
            +
            		}
         
     | 
| 
       1526 
1657 
     | 
    
         
             
            	}
         
     | 
| 
       1527 
1658 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       1528 
1659 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -1614,29 +1745,34 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       1614 
1745 
     | 
    
         
             
            	{
         
     | 
| 
       1615 
1746 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       1616 
1747 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       1617 
     | 
    
         
            -
            		
         
     | 
| 
       1618 
     | 
    
         
            -
             
     | 
| 
       1619 
     | 
    
         
            -
             
     | 
| 
       1620 
     | 
    
         
            -
             
     | 
| 
       1621 
     | 
    
         
            -
             
     | 
| 
       1622 
     | 
    
         
            -
             
     | 
| 
       1623 
     | 
    
         
            -
             
     | 
| 
       1624 
     | 
    
         
            -
             
     | 
| 
       1625 
     | 
    
         
            -
             
     | 
| 
       1626 
     | 
    
         
            -
             
     | 
| 
       1627 
     | 
    
         
            -
             
     | 
| 
       1628 
     | 
    
         
            -
             
     | 
| 
       1629 
     | 
    
         
            -
             
     | 
| 
       1630 
     | 
    
         
            -
             
     | 
| 
       1631 
     | 
    
         
            -
             
     | 
| 
       1632 
     | 
    
         
            -
             
     | 
| 
       1633 
     | 
    
         
            -
             
     | 
| 
       1634 
     | 
    
         
            -
             
     | 
| 
       1635 
     | 
    
         
            -
             
     | 
| 
       1636 
     | 
    
         
            -
             
     | 
| 
       1637 
     | 
    
         
            -
             
     | 
| 
       1638 
     | 
    
         
            -
             
     | 
| 
       1639 
     | 
    
         
            -
             
     | 
| 
      
 1748 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 1749 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 1750 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 1751 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 1752 
     | 
    
         
            +
            			case 22: ptr[21].convert(&a21);
         
     | 
| 
      
 1753 
     | 
    
         
            +
            			case 21: ptr[20].convert(&a20);
         
     | 
| 
      
 1754 
     | 
    
         
            +
            			case 20: ptr[19].convert(&a19);
         
     | 
| 
      
 1755 
     | 
    
         
            +
            			case 19: ptr[18].convert(&a18);
         
     | 
| 
      
 1756 
     | 
    
         
            +
            			case 18: ptr[17].convert(&a17);
         
     | 
| 
      
 1757 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 1758 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 1759 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 1760 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 1761 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 1762 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 1763 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 1764 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 1765 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 1766 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 1767 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 1768 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 1769 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 1770 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 1771 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 1772 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 1773 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 1774 
     | 
    
         
            +
            			}
         
     | 
| 
      
 1775 
     | 
    
         
            +
            		}
         
     | 
| 
       1640 
1776 
     | 
    
         
             
            	}
         
     | 
| 
       1641 
1777 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       1642 
1778 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -1731,30 +1867,35 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       1731 
1867 
     | 
    
         
             
            	{
         
     | 
| 
       1732 
1868 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       1733 
1869 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       1734 
     | 
    
         
            -
            		
         
     | 
| 
       1735 
     | 
    
         
            -
             
     | 
| 
       1736 
     | 
    
         
            -
             
     | 
| 
       1737 
     | 
    
         
            -
             
     | 
| 
       1738 
     | 
    
         
            -
             
     | 
| 
       1739 
     | 
    
         
            -
             
     | 
| 
       1740 
     | 
    
         
            -
             
     | 
| 
       1741 
     | 
    
         
            -
             
     | 
| 
       1742 
     | 
    
         
            -
             
     | 
| 
       1743 
     | 
    
         
            -
             
     | 
| 
       1744 
     | 
    
         
            -
             
     | 
| 
       1745 
     | 
    
         
            -
             
     | 
| 
       1746 
     | 
    
         
            -
             
     | 
| 
       1747 
     | 
    
         
            -
             
     | 
| 
       1748 
     | 
    
         
            -
             
     | 
| 
       1749 
     | 
    
         
            -
             
     | 
| 
       1750 
     | 
    
         
            -
             
     | 
| 
       1751 
     | 
    
         
            -
             
     | 
| 
       1752 
     | 
    
         
            -
             
     | 
| 
       1753 
     | 
    
         
            -
             
     | 
| 
       1754 
     | 
    
         
            -
             
     | 
| 
       1755 
     | 
    
         
            -
             
     | 
| 
       1756 
     | 
    
         
            -
             
     | 
| 
       1757 
     | 
    
         
            -
             
     | 
| 
      
 1870 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 1871 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 1872 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 1873 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 1874 
     | 
    
         
            +
            			case 23: ptr[22].convert(&a22);
         
     | 
| 
      
 1875 
     | 
    
         
            +
            			case 22: ptr[21].convert(&a21);
         
     | 
| 
      
 1876 
     | 
    
         
            +
            			case 21: ptr[20].convert(&a20);
         
     | 
| 
      
 1877 
     | 
    
         
            +
            			case 20: ptr[19].convert(&a19);
         
     | 
| 
      
 1878 
     | 
    
         
            +
            			case 19: ptr[18].convert(&a18);
         
     | 
| 
      
 1879 
     | 
    
         
            +
            			case 18: ptr[17].convert(&a17);
         
     | 
| 
      
 1880 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 1881 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 1882 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 1883 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 1884 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 1885 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 1886 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 1887 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 1888 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 1889 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 1890 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 1891 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 1892 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 1893 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 1894 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 1895 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 1896 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 1897 
     | 
    
         
            +
            			}
         
     | 
| 
      
 1898 
     | 
    
         
            +
            		}
         
     | 
| 
       1758 
1899 
     | 
    
         
             
            	}
         
     | 
| 
       1759 
1900 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       1760 
1901 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -1852,31 +1993,36 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       1852 
1993 
     | 
    
         
             
            	{
         
     | 
| 
       1853 
1994 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       1854 
1995 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       1855 
     | 
    
         
            -
            		
         
     | 
| 
       1856 
     | 
    
         
            -
             
     | 
| 
       1857 
     | 
    
         
            -
             
     | 
| 
       1858 
     | 
    
         
            -
             
     | 
| 
       1859 
     | 
    
         
            -
             
     | 
| 
       1860 
     | 
    
         
            -
             
     | 
| 
       1861 
     | 
    
         
            -
             
     | 
| 
       1862 
     | 
    
         
            -
             
     | 
| 
       1863 
     | 
    
         
            -
             
     | 
| 
       1864 
     | 
    
         
            -
             
     | 
| 
       1865 
     | 
    
         
            -
             
     | 
| 
       1866 
     | 
    
         
            -
             
     | 
| 
       1867 
     | 
    
         
            -
             
     | 
| 
       1868 
     | 
    
         
            -
             
     | 
| 
       1869 
     | 
    
         
            -
             
     | 
| 
       1870 
     | 
    
         
            -
             
     | 
| 
       1871 
     | 
    
         
            -
             
     | 
| 
       1872 
     | 
    
         
            -
             
     | 
| 
       1873 
     | 
    
         
            -
             
     | 
| 
       1874 
     | 
    
         
            -
             
     | 
| 
       1875 
     | 
    
         
            -
             
     | 
| 
       1876 
     | 
    
         
            -
             
     | 
| 
       1877 
     | 
    
         
            -
             
     | 
| 
       1878 
     | 
    
         
            -
             
     | 
| 
       1879 
     | 
    
         
            -
             
     | 
| 
      
 1996 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 1997 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 1998 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 1999 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 2000 
     | 
    
         
            +
            			case 24: ptr[23].convert(&a23);
         
     | 
| 
      
 2001 
     | 
    
         
            +
            			case 23: ptr[22].convert(&a22);
         
     | 
| 
      
 2002 
     | 
    
         
            +
            			case 22: ptr[21].convert(&a21);
         
     | 
| 
      
 2003 
     | 
    
         
            +
            			case 21: ptr[20].convert(&a20);
         
     | 
| 
      
 2004 
     | 
    
         
            +
            			case 20: ptr[19].convert(&a19);
         
     | 
| 
      
 2005 
     | 
    
         
            +
            			case 19: ptr[18].convert(&a18);
         
     | 
| 
      
 2006 
     | 
    
         
            +
            			case 18: ptr[17].convert(&a17);
         
     | 
| 
      
 2007 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 2008 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 2009 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 2010 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 2011 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 2012 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 2013 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 2014 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 2015 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 2016 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 2017 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 2018 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 2019 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 2020 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 2021 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 2022 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 2023 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 2024 
     | 
    
         
            +
            			}
         
     | 
| 
      
 2025 
     | 
    
         
            +
            		}
         
     | 
| 
       1880 
2026 
     | 
    
         
             
            	}
         
     | 
| 
       1881 
2027 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       1882 
2028 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -1977,32 +2123,37 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       1977 
2123 
     | 
    
         
             
            	{
         
     | 
| 
       1978 
2124 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       1979 
2125 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       1980 
     | 
    
         
            -
            		
         
     | 
| 
       1981 
     | 
    
         
            -
             
     | 
| 
       1982 
     | 
    
         
            -
             
     | 
| 
       1983 
     | 
    
         
            -
             
     | 
| 
       1984 
     | 
    
         
            -
             
     | 
| 
       1985 
     | 
    
         
            -
             
     | 
| 
       1986 
     | 
    
         
            -
             
     | 
| 
       1987 
     | 
    
         
            -
             
     | 
| 
       1988 
     | 
    
         
            -
             
     | 
| 
       1989 
     | 
    
         
            -
             
     | 
| 
       1990 
     | 
    
         
            -
             
     | 
| 
       1991 
     | 
    
         
            -
             
     | 
| 
       1992 
     | 
    
         
            -
             
     | 
| 
       1993 
     | 
    
         
            -
             
     | 
| 
       1994 
     | 
    
         
            -
             
     | 
| 
       1995 
     | 
    
         
            -
             
     | 
| 
       1996 
     | 
    
         
            -
             
     | 
| 
       1997 
     | 
    
         
            -
             
     | 
| 
       1998 
     | 
    
         
            -
             
     | 
| 
       1999 
     | 
    
         
            -
             
     | 
| 
       2000 
     | 
    
         
            -
             
     | 
| 
       2001 
     | 
    
         
            -
             
     | 
| 
       2002 
     | 
    
         
            -
             
     | 
| 
       2003 
     | 
    
         
            -
             
     | 
| 
       2004 
     | 
    
         
            -
             
     | 
| 
       2005 
     | 
    
         
            -
             
     | 
| 
      
 2126 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 2127 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 2128 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 2129 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 2130 
     | 
    
         
            +
            			case 25: ptr[24].convert(&a24);
         
     | 
| 
      
 2131 
     | 
    
         
            +
            			case 24: ptr[23].convert(&a23);
         
     | 
| 
      
 2132 
     | 
    
         
            +
            			case 23: ptr[22].convert(&a22);
         
     | 
| 
      
 2133 
     | 
    
         
            +
            			case 22: ptr[21].convert(&a21);
         
     | 
| 
      
 2134 
     | 
    
         
            +
            			case 21: ptr[20].convert(&a20);
         
     | 
| 
      
 2135 
     | 
    
         
            +
            			case 20: ptr[19].convert(&a19);
         
     | 
| 
      
 2136 
     | 
    
         
            +
            			case 19: ptr[18].convert(&a18);
         
     | 
| 
      
 2137 
     | 
    
         
            +
            			case 18: ptr[17].convert(&a17);
         
     | 
| 
      
 2138 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 2139 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 2140 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 2141 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 2142 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 2143 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 2144 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 2145 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 2146 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 2147 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 2148 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 2149 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 2150 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 2151 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 2152 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 2153 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 2154 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 2155 
     | 
    
         
            +
            			}
         
     | 
| 
      
 2156 
     | 
    
         
            +
            		}
         
     | 
| 
       2006 
2157 
     | 
    
         
             
            	}
         
     | 
| 
       2007 
2158 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       2008 
2159 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -2106,33 +2257,38 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       2106 
2257 
     | 
    
         
             
            	{
         
     | 
| 
       2107 
2258 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       2108 
2259 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       2109 
     | 
    
         
            -
            		
         
     | 
| 
       2110 
     | 
    
         
            -
             
     | 
| 
       2111 
     | 
    
         
            -
             
     | 
| 
       2112 
     | 
    
         
            -
             
     | 
| 
       2113 
     | 
    
         
            -
             
     | 
| 
       2114 
     | 
    
         
            -
             
     | 
| 
       2115 
     | 
    
         
            -
             
     | 
| 
       2116 
     | 
    
         
            -
             
     | 
| 
       2117 
     | 
    
         
            -
             
     | 
| 
       2118 
     | 
    
         
            -
             
     | 
| 
       2119 
     | 
    
         
            -
             
     | 
| 
       2120 
     | 
    
         
            -
             
     | 
| 
       2121 
     | 
    
         
            -
             
     | 
| 
       2122 
     | 
    
         
            -
             
     | 
| 
       2123 
     | 
    
         
            -
             
     | 
| 
       2124 
     | 
    
         
            -
             
     | 
| 
       2125 
     | 
    
         
            -
             
     | 
| 
       2126 
     | 
    
         
            -
             
     | 
| 
       2127 
     | 
    
         
            -
             
     | 
| 
       2128 
     | 
    
         
            -
             
     | 
| 
       2129 
     | 
    
         
            -
             
     | 
| 
       2130 
     | 
    
         
            -
             
     | 
| 
       2131 
     | 
    
         
            -
             
     | 
| 
       2132 
     | 
    
         
            -
             
     | 
| 
       2133 
     | 
    
         
            -
             
     | 
| 
       2134 
     | 
    
         
            -
             
     | 
| 
       2135 
     | 
    
         
            -
             
     | 
| 
      
 2260 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 2261 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 2262 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 2263 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 2264 
     | 
    
         
            +
            			case 26: ptr[25].convert(&a25);
         
     | 
| 
      
 2265 
     | 
    
         
            +
            			case 25: ptr[24].convert(&a24);
         
     | 
| 
      
 2266 
     | 
    
         
            +
            			case 24: ptr[23].convert(&a23);
         
     | 
| 
      
 2267 
     | 
    
         
            +
            			case 23: ptr[22].convert(&a22);
         
     | 
| 
      
 2268 
     | 
    
         
            +
            			case 22: ptr[21].convert(&a21);
         
     | 
| 
      
 2269 
     | 
    
         
            +
            			case 21: ptr[20].convert(&a20);
         
     | 
| 
      
 2270 
     | 
    
         
            +
            			case 20: ptr[19].convert(&a19);
         
     | 
| 
      
 2271 
     | 
    
         
            +
            			case 19: ptr[18].convert(&a18);
         
     | 
| 
      
 2272 
     | 
    
         
            +
            			case 18: ptr[17].convert(&a17);
         
     | 
| 
      
 2273 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 2274 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 2275 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 2276 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 2277 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 2278 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 2279 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 2280 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 2281 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 2282 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 2283 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 2284 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 2285 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 2286 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 2287 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 2288 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 2289 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 2290 
     | 
    
         
            +
            			}
         
     | 
| 
      
 2291 
     | 
    
         
            +
            		}
         
     | 
| 
       2136 
2292 
     | 
    
         
             
            	}
         
     | 
| 
       2137 
2293 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       2138 
2294 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -2239,34 +2395,39 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       2239 
2395 
     | 
    
         
             
            	{
         
     | 
| 
       2240 
2396 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       2241 
2397 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       2242 
     | 
    
         
            -
            		
         
     | 
| 
       2243 
     | 
    
         
            -
             
     | 
| 
       2244 
     | 
    
         
            -
             
     | 
| 
       2245 
     | 
    
         
            -
             
     | 
| 
       2246 
     | 
    
         
            -
             
     | 
| 
       2247 
     | 
    
         
            -
             
     | 
| 
       2248 
     | 
    
         
            -
             
     | 
| 
       2249 
     | 
    
         
            -
             
     | 
| 
       2250 
     | 
    
         
            -
             
     | 
| 
       2251 
     | 
    
         
            -
             
     | 
| 
       2252 
     | 
    
         
            -
             
     | 
| 
       2253 
     | 
    
         
            -
             
     | 
| 
       2254 
     | 
    
         
            -
             
     | 
| 
       2255 
     | 
    
         
            -
             
     | 
| 
       2256 
     | 
    
         
            -
             
     | 
| 
       2257 
     | 
    
         
            -
             
     | 
| 
       2258 
     | 
    
         
            -
             
     | 
| 
       2259 
     | 
    
         
            -
             
     | 
| 
       2260 
     | 
    
         
            -
             
     | 
| 
       2261 
     | 
    
         
            -
             
     | 
| 
       2262 
     | 
    
         
            -
             
     | 
| 
       2263 
     | 
    
         
            -
             
     | 
| 
       2264 
     | 
    
         
            -
             
     | 
| 
       2265 
     | 
    
         
            -
             
     | 
| 
       2266 
     | 
    
         
            -
             
     | 
| 
       2267 
     | 
    
         
            -
             
     | 
| 
       2268 
     | 
    
         
            -
             
     | 
| 
       2269 
     | 
    
         
            -
             
     | 
| 
      
 2398 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 2399 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 2400 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 2401 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 2402 
     | 
    
         
            +
            			case 27: ptr[26].convert(&a26);
         
     | 
| 
      
 2403 
     | 
    
         
            +
            			case 26: ptr[25].convert(&a25);
         
     | 
| 
      
 2404 
     | 
    
         
            +
            			case 25: ptr[24].convert(&a24);
         
     | 
| 
      
 2405 
     | 
    
         
            +
            			case 24: ptr[23].convert(&a23);
         
     | 
| 
      
 2406 
     | 
    
         
            +
            			case 23: ptr[22].convert(&a22);
         
     | 
| 
      
 2407 
     | 
    
         
            +
            			case 22: ptr[21].convert(&a21);
         
     | 
| 
      
 2408 
     | 
    
         
            +
            			case 21: ptr[20].convert(&a20);
         
     | 
| 
      
 2409 
     | 
    
         
            +
            			case 20: ptr[19].convert(&a19);
         
     | 
| 
      
 2410 
     | 
    
         
            +
            			case 19: ptr[18].convert(&a18);
         
     | 
| 
      
 2411 
     | 
    
         
            +
            			case 18: ptr[17].convert(&a17);
         
     | 
| 
      
 2412 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 2413 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 2414 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 2415 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 2416 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 2417 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 2418 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 2419 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 2420 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 2421 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 2422 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 2423 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 2424 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 2425 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 2426 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 2427 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 2428 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 2429 
     | 
    
         
            +
            			}
         
     | 
| 
      
 2430 
     | 
    
         
            +
            		}
         
     | 
| 
       2270 
2431 
     | 
    
         
             
            	}
         
     | 
| 
       2271 
2432 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       2272 
2433 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -2376,35 +2537,40 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       2376 
2537 
     | 
    
         
             
            	{
         
     | 
| 
       2377 
2538 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       2378 
2539 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       2379 
     | 
    
         
            -
            		
         
     | 
| 
       2380 
     | 
    
         
            -
             
     | 
| 
       2381 
     | 
    
         
            -
             
     | 
| 
       2382 
     | 
    
         
            -
             
     | 
| 
       2383 
     | 
    
         
            -
             
     | 
| 
       2384 
     | 
    
         
            -
             
     | 
| 
       2385 
     | 
    
         
            -
             
     | 
| 
       2386 
     | 
    
         
            -
             
     | 
| 
       2387 
     | 
    
         
            -
             
     | 
| 
       2388 
     | 
    
         
            -
             
     | 
| 
       2389 
     | 
    
         
            -
             
     | 
| 
       2390 
     | 
    
         
            -
             
     | 
| 
       2391 
     | 
    
         
            -
             
     | 
| 
       2392 
     | 
    
         
            -
             
     | 
| 
       2393 
     | 
    
         
            -
             
     | 
| 
       2394 
     | 
    
         
            -
             
     | 
| 
       2395 
     | 
    
         
            -
             
     | 
| 
       2396 
     | 
    
         
            -
             
     | 
| 
       2397 
     | 
    
         
            -
             
     | 
| 
       2398 
     | 
    
         
            -
             
     | 
| 
       2399 
     | 
    
         
            -
             
     | 
| 
       2400 
     | 
    
         
            -
             
     | 
| 
       2401 
     | 
    
         
            -
             
     | 
| 
       2402 
     | 
    
         
            -
             
     | 
| 
       2403 
     | 
    
         
            -
             
     | 
| 
       2404 
     | 
    
         
            -
             
     | 
| 
       2405 
     | 
    
         
            -
             
     | 
| 
       2406 
     | 
    
         
            -
             
     | 
| 
       2407 
     | 
    
         
            -
             
     | 
| 
      
 2540 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 2541 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 2542 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 2543 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 2544 
     | 
    
         
            +
            			case 28: ptr[27].convert(&a27);
         
     | 
| 
      
 2545 
     | 
    
         
            +
            			case 27: ptr[26].convert(&a26);
         
     | 
| 
      
 2546 
     | 
    
         
            +
            			case 26: ptr[25].convert(&a25);
         
     | 
| 
      
 2547 
     | 
    
         
            +
            			case 25: ptr[24].convert(&a24);
         
     | 
| 
      
 2548 
     | 
    
         
            +
            			case 24: ptr[23].convert(&a23);
         
     | 
| 
      
 2549 
     | 
    
         
            +
            			case 23: ptr[22].convert(&a22);
         
     | 
| 
      
 2550 
     | 
    
         
            +
            			case 22: ptr[21].convert(&a21);
         
     | 
| 
      
 2551 
     | 
    
         
            +
            			case 21: ptr[20].convert(&a20);
         
     | 
| 
      
 2552 
     | 
    
         
            +
            			case 20: ptr[19].convert(&a19);
         
     | 
| 
      
 2553 
     | 
    
         
            +
            			case 19: ptr[18].convert(&a18);
         
     | 
| 
      
 2554 
     | 
    
         
            +
            			case 18: ptr[17].convert(&a17);
         
     | 
| 
      
 2555 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 2556 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 2557 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 2558 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 2559 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 2560 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 2561 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 2562 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 2563 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 2564 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 2565 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 2566 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 2567 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 2568 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 2569 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 2570 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 2571 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 2572 
     | 
    
         
            +
            			}
         
     | 
| 
      
 2573 
     | 
    
         
            +
            		}
         
     | 
| 
       2408 
2574 
     | 
    
         
             
            	}
         
     | 
| 
       2409 
2575 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       2410 
2576 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -2517,36 +2683,41 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       2517 
2683 
     | 
    
         
             
            	{
         
     | 
| 
       2518 
2684 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       2519 
2685 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       2520 
     | 
    
         
            -
            		
         
     | 
| 
       2521 
     | 
    
         
            -
             
     | 
| 
       2522 
     | 
    
         
            -
             
     | 
| 
       2523 
     | 
    
         
            -
             
     | 
| 
       2524 
     | 
    
         
            -
             
     | 
| 
       2525 
     | 
    
         
            -
             
     | 
| 
       2526 
     | 
    
         
            -
             
     | 
| 
       2527 
     | 
    
         
            -
             
     | 
| 
       2528 
     | 
    
         
            -
             
     | 
| 
       2529 
     | 
    
         
            -
             
     | 
| 
       2530 
     | 
    
         
            -
             
     | 
| 
       2531 
     | 
    
         
            -
             
     | 
| 
       2532 
     | 
    
         
            -
             
     | 
| 
       2533 
     | 
    
         
            -
             
     | 
| 
       2534 
     | 
    
         
            -
             
     | 
| 
       2535 
     | 
    
         
            -
             
     | 
| 
       2536 
     | 
    
         
            -
             
     | 
| 
       2537 
     | 
    
         
            -
             
     | 
| 
       2538 
     | 
    
         
            -
             
     | 
| 
       2539 
     | 
    
         
            -
             
     | 
| 
       2540 
     | 
    
         
            -
             
     | 
| 
       2541 
     | 
    
         
            -
             
     | 
| 
       2542 
     | 
    
         
            -
             
     | 
| 
       2543 
     | 
    
         
            -
             
     | 
| 
       2544 
     | 
    
         
            -
             
     | 
| 
       2545 
     | 
    
         
            -
             
     | 
| 
       2546 
     | 
    
         
            -
             
     | 
| 
       2547 
     | 
    
         
            -
             
     | 
| 
       2548 
     | 
    
         
            -
             
     | 
| 
       2549 
     | 
    
         
            -
             
     | 
| 
      
 2686 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 2687 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 2688 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 2689 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 2690 
     | 
    
         
            +
            			case 29: ptr[28].convert(&a28);
         
     | 
| 
      
 2691 
     | 
    
         
            +
            			case 28: ptr[27].convert(&a27);
         
     | 
| 
      
 2692 
     | 
    
         
            +
            			case 27: ptr[26].convert(&a26);
         
     | 
| 
      
 2693 
     | 
    
         
            +
            			case 26: ptr[25].convert(&a25);
         
     | 
| 
      
 2694 
     | 
    
         
            +
            			case 25: ptr[24].convert(&a24);
         
     | 
| 
      
 2695 
     | 
    
         
            +
            			case 24: ptr[23].convert(&a23);
         
     | 
| 
      
 2696 
     | 
    
         
            +
            			case 23: ptr[22].convert(&a22);
         
     | 
| 
      
 2697 
     | 
    
         
            +
            			case 22: ptr[21].convert(&a21);
         
     | 
| 
      
 2698 
     | 
    
         
            +
            			case 21: ptr[20].convert(&a20);
         
     | 
| 
      
 2699 
     | 
    
         
            +
            			case 20: ptr[19].convert(&a19);
         
     | 
| 
      
 2700 
     | 
    
         
            +
            			case 19: ptr[18].convert(&a18);
         
     | 
| 
      
 2701 
     | 
    
         
            +
            			case 18: ptr[17].convert(&a17);
         
     | 
| 
      
 2702 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 2703 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 2704 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 2705 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 2706 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 2707 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 2708 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 2709 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 2710 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 2711 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 2712 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 2713 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 2714 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 2715 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 2716 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 2717 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 2718 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 2719 
     | 
    
         
            +
            			}
         
     | 
| 
      
 2720 
     | 
    
         
            +
            		}
         
     | 
| 
       2550 
2721 
     | 
    
         
             
            	}
         
     | 
| 
       2551 
2722 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       2552 
2723 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -2662,37 +2833,42 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       2662 
2833 
     | 
    
         
             
            	{
         
     | 
| 
       2663 
2834 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       2664 
2835 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       2665 
     | 
    
         
            -
            		
         
     | 
| 
       2666 
     | 
    
         
            -
             
     | 
| 
       2667 
     | 
    
         
            -
             
     | 
| 
       2668 
     | 
    
         
            -
             
     | 
| 
       2669 
     | 
    
         
            -
             
     | 
| 
       2670 
     | 
    
         
            -
             
     | 
| 
       2671 
     | 
    
         
            -
             
     | 
| 
       2672 
     | 
    
         
            -
             
     | 
| 
       2673 
     | 
    
         
            -
             
     | 
| 
       2674 
     | 
    
         
            -
             
     | 
| 
       2675 
     | 
    
         
            -
             
     | 
| 
       2676 
     | 
    
         
            -
             
     | 
| 
       2677 
     | 
    
         
            -
             
     | 
| 
       2678 
     | 
    
         
            -
             
     | 
| 
       2679 
     | 
    
         
            -
             
     | 
| 
       2680 
     | 
    
         
            -
             
     | 
| 
       2681 
     | 
    
         
            -
             
     | 
| 
       2682 
     | 
    
         
            -
             
     | 
| 
       2683 
     | 
    
         
            -
             
     | 
| 
       2684 
     | 
    
         
            -
             
     | 
| 
       2685 
     | 
    
         
            -
             
     | 
| 
       2686 
     | 
    
         
            -
             
     | 
| 
       2687 
     | 
    
         
            -
             
     | 
| 
       2688 
     | 
    
         
            -
             
     | 
| 
       2689 
     | 
    
         
            -
             
     | 
| 
       2690 
     | 
    
         
            -
             
     | 
| 
       2691 
     | 
    
         
            -
             
     | 
| 
       2692 
     | 
    
         
            -
             
     | 
| 
       2693 
     | 
    
         
            -
             
     | 
| 
       2694 
     | 
    
         
            -
             
     | 
| 
       2695 
     | 
    
         
            -
             
     | 
| 
      
 2836 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 2837 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 2838 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 2839 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 2840 
     | 
    
         
            +
            			case 30: ptr[29].convert(&a29);
         
     | 
| 
      
 2841 
     | 
    
         
            +
            			case 29: ptr[28].convert(&a28);
         
     | 
| 
      
 2842 
     | 
    
         
            +
            			case 28: ptr[27].convert(&a27);
         
     | 
| 
      
 2843 
     | 
    
         
            +
            			case 27: ptr[26].convert(&a26);
         
     | 
| 
      
 2844 
     | 
    
         
            +
            			case 26: ptr[25].convert(&a25);
         
     | 
| 
      
 2845 
     | 
    
         
            +
            			case 25: ptr[24].convert(&a24);
         
     | 
| 
      
 2846 
     | 
    
         
            +
            			case 24: ptr[23].convert(&a23);
         
     | 
| 
      
 2847 
     | 
    
         
            +
            			case 23: ptr[22].convert(&a22);
         
     | 
| 
      
 2848 
     | 
    
         
            +
            			case 22: ptr[21].convert(&a21);
         
     | 
| 
      
 2849 
     | 
    
         
            +
            			case 21: ptr[20].convert(&a20);
         
     | 
| 
      
 2850 
     | 
    
         
            +
            			case 20: ptr[19].convert(&a19);
         
     | 
| 
      
 2851 
     | 
    
         
            +
            			case 19: ptr[18].convert(&a18);
         
     | 
| 
      
 2852 
     | 
    
         
            +
            			case 18: ptr[17].convert(&a17);
         
     | 
| 
      
 2853 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 2854 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 2855 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 2856 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 2857 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 2858 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 2859 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 2860 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 2861 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 2862 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 2863 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 2864 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 2865 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 2866 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 2867 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 2868 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 2869 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 2870 
     | 
    
         
            +
            			}
         
     | 
| 
      
 2871 
     | 
    
         
            +
            		}
         
     | 
| 
       2696 
2872 
     | 
    
         
             
            	}
         
     | 
| 
       2697 
2873 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       2698 
2874 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -2811,38 +2987,43 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       2811 
2987 
     | 
    
         
             
            	{
         
     | 
| 
       2812 
2988 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       2813 
2989 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       2814 
     | 
    
         
            -
            		
         
     | 
| 
       2815 
     | 
    
         
            -
             
     | 
| 
       2816 
     | 
    
         
            -
             
     | 
| 
       2817 
     | 
    
         
            -
             
     | 
| 
       2818 
     | 
    
         
            -
             
     | 
| 
       2819 
     | 
    
         
            -
             
     | 
| 
       2820 
     | 
    
         
            -
             
     | 
| 
       2821 
     | 
    
         
            -
             
     | 
| 
       2822 
     | 
    
         
            -
             
     | 
| 
       2823 
     | 
    
         
            -
             
     | 
| 
       2824 
     | 
    
         
            -
             
     | 
| 
       2825 
     | 
    
         
            -
             
     | 
| 
       2826 
     | 
    
         
            -
             
     | 
| 
       2827 
     | 
    
         
            -
             
     | 
| 
       2828 
     | 
    
         
            -
             
     | 
| 
       2829 
     | 
    
         
            -
             
     | 
| 
       2830 
     | 
    
         
            -
             
     | 
| 
       2831 
     | 
    
         
            -
             
     | 
| 
       2832 
     | 
    
         
            -
             
     | 
| 
       2833 
     | 
    
         
            -
             
     | 
| 
       2834 
     | 
    
         
            -
             
     | 
| 
       2835 
     | 
    
         
            -
             
     | 
| 
       2836 
     | 
    
         
            -
             
     | 
| 
       2837 
     | 
    
         
            -
             
     | 
| 
       2838 
     | 
    
         
            -
             
     | 
| 
       2839 
     | 
    
         
            -
             
     | 
| 
       2840 
     | 
    
         
            -
             
     | 
| 
       2841 
     | 
    
         
            -
             
     | 
| 
       2842 
     | 
    
         
            -
             
     | 
| 
       2843 
     | 
    
         
            -
             
     | 
| 
       2844 
     | 
    
         
            -
             
     | 
| 
       2845 
     | 
    
         
            -
             
     | 
| 
      
 2990 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 2991 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 2992 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 2993 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 2994 
     | 
    
         
            +
            			case 31: ptr[30].convert(&a30);
         
     | 
| 
      
 2995 
     | 
    
         
            +
            			case 30: ptr[29].convert(&a29);
         
     | 
| 
      
 2996 
     | 
    
         
            +
            			case 29: ptr[28].convert(&a28);
         
     | 
| 
      
 2997 
     | 
    
         
            +
            			case 28: ptr[27].convert(&a27);
         
     | 
| 
      
 2998 
     | 
    
         
            +
            			case 27: ptr[26].convert(&a26);
         
     | 
| 
      
 2999 
     | 
    
         
            +
            			case 26: ptr[25].convert(&a25);
         
     | 
| 
      
 3000 
     | 
    
         
            +
            			case 25: ptr[24].convert(&a24);
         
     | 
| 
      
 3001 
     | 
    
         
            +
            			case 24: ptr[23].convert(&a23);
         
     | 
| 
      
 3002 
     | 
    
         
            +
            			case 23: ptr[22].convert(&a22);
         
     | 
| 
      
 3003 
     | 
    
         
            +
            			case 22: ptr[21].convert(&a21);
         
     | 
| 
      
 3004 
     | 
    
         
            +
            			case 21: ptr[20].convert(&a20);
         
     | 
| 
      
 3005 
     | 
    
         
            +
            			case 20: ptr[19].convert(&a19);
         
     | 
| 
      
 3006 
     | 
    
         
            +
            			case 19: ptr[18].convert(&a18);
         
     | 
| 
      
 3007 
     | 
    
         
            +
            			case 18: ptr[17].convert(&a17);
         
     | 
| 
      
 3008 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 3009 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 3010 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 3011 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 3012 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 3013 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 3014 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 3015 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 3016 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 3017 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 3018 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 3019 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 3020 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 3021 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 3022 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 3023 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 3024 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 3025 
     | 
    
         
            +
            			}
         
     | 
| 
      
 3026 
     | 
    
         
            +
            		}
         
     | 
| 
       2846 
3027 
     | 
    
         
             
            	}
         
     | 
| 
       2847 
3028 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       2848 
3029 
     | 
    
         
             
            	{
         
     | 
| 
         @@ -2964,39 +3145,44 @@ struct define<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A 
     | 
|
| 
       2964 
3145 
     | 
    
         
             
            	{
         
     | 
| 
       2965 
3146 
     | 
    
         
             
            		if(o.type != type::ARRAY) { throw type_error(); }
         
     | 
| 
       2966 
3147 
     | 
    
         
             
            		const size_t size = o.via.array.size;
         
     | 
| 
       2967 
     | 
    
         
            -
            		
         
     | 
| 
       2968 
     | 
    
         
            -
             
     | 
| 
       2969 
     | 
    
         
            -
             
     | 
| 
       2970 
     | 
    
         
            -
             
     | 
| 
       2971 
     | 
    
         
            -
             
     | 
| 
       2972 
     | 
    
         
            -
             
     | 
| 
       2973 
     | 
    
         
            -
             
     | 
| 
       2974 
     | 
    
         
            -
             
     | 
| 
       2975 
     | 
    
         
            -
             
     | 
| 
       2976 
     | 
    
         
            -
             
     | 
| 
       2977 
     | 
    
         
            -
             
     | 
| 
       2978 
     | 
    
         
            -
             
     | 
| 
       2979 
     | 
    
         
            -
             
     | 
| 
       2980 
     | 
    
         
            -
             
     | 
| 
       2981 
     | 
    
         
            -
             
     | 
| 
       2982 
     | 
    
         
            -
             
     | 
| 
       2983 
     | 
    
         
            -
             
     | 
| 
       2984 
     | 
    
         
            -
             
     | 
| 
       2985 
     | 
    
         
            -
             
     | 
| 
       2986 
     | 
    
         
            -
             
     | 
| 
       2987 
     | 
    
         
            -
             
     | 
| 
       2988 
     | 
    
         
            -
             
     | 
| 
       2989 
     | 
    
         
            -
             
     | 
| 
       2990 
     | 
    
         
            -
             
     | 
| 
       2991 
     | 
    
         
            -
             
     | 
| 
       2992 
     | 
    
         
            -
             
     | 
| 
       2993 
     | 
    
         
            -
             
     | 
| 
       2994 
     | 
    
         
            -
             
     | 
| 
       2995 
     | 
    
         
            -
             
     | 
| 
       2996 
     | 
    
         
            -
             
     | 
| 
       2997 
     | 
    
         
            -
             
     | 
| 
       2998 
     | 
    
         
            -
             
     | 
| 
       2999 
     | 
    
         
            -
             
     | 
| 
      
 3148 
     | 
    
         
            +
            		if(size > 0) {
         
     | 
| 
      
 3149 
     | 
    
         
            +
            			msgpack::object *ptr = o.via.array.ptr;
         
     | 
| 
      
 3150 
     | 
    
         
            +
            			switch(size) {
         
     | 
| 
      
 3151 
     | 
    
         
            +
            			default:
         
     | 
| 
      
 3152 
     | 
    
         
            +
            			case 32: ptr[31].convert(&a31);
         
     | 
| 
      
 3153 
     | 
    
         
            +
            			case 31: ptr[30].convert(&a30);
         
     | 
| 
      
 3154 
     | 
    
         
            +
            			case 30: ptr[29].convert(&a29);
         
     | 
| 
      
 3155 
     | 
    
         
            +
            			case 29: ptr[28].convert(&a28);
         
     | 
| 
      
 3156 
     | 
    
         
            +
            			case 28: ptr[27].convert(&a27);
         
     | 
| 
      
 3157 
     | 
    
         
            +
            			case 27: ptr[26].convert(&a26);
         
     | 
| 
      
 3158 
     | 
    
         
            +
            			case 26: ptr[25].convert(&a25);
         
     | 
| 
      
 3159 
     | 
    
         
            +
            			case 25: ptr[24].convert(&a24);
         
     | 
| 
      
 3160 
     | 
    
         
            +
            			case 24: ptr[23].convert(&a23);
         
     | 
| 
      
 3161 
     | 
    
         
            +
            			case 23: ptr[22].convert(&a22);
         
     | 
| 
      
 3162 
     | 
    
         
            +
            			case 22: ptr[21].convert(&a21);
         
     | 
| 
      
 3163 
     | 
    
         
            +
            			case 21: ptr[20].convert(&a20);
         
     | 
| 
      
 3164 
     | 
    
         
            +
            			case 20: ptr[19].convert(&a19);
         
     | 
| 
      
 3165 
     | 
    
         
            +
            			case 19: ptr[18].convert(&a18);
         
     | 
| 
      
 3166 
     | 
    
         
            +
            			case 18: ptr[17].convert(&a17);
         
     | 
| 
      
 3167 
     | 
    
         
            +
            			case 17: ptr[16].convert(&a16);
         
     | 
| 
      
 3168 
     | 
    
         
            +
            			case 16: ptr[15].convert(&a15);
         
     | 
| 
      
 3169 
     | 
    
         
            +
            			case 15: ptr[14].convert(&a14);
         
     | 
| 
      
 3170 
     | 
    
         
            +
            			case 14: ptr[13].convert(&a13);
         
     | 
| 
      
 3171 
     | 
    
         
            +
            			case 13: ptr[12].convert(&a12);
         
     | 
| 
      
 3172 
     | 
    
         
            +
            			case 12: ptr[11].convert(&a11);
         
     | 
| 
      
 3173 
     | 
    
         
            +
            			case 11: ptr[10].convert(&a10);
         
     | 
| 
      
 3174 
     | 
    
         
            +
            			case 10: ptr[9].convert(&a9);
         
     | 
| 
      
 3175 
     | 
    
         
            +
            			case 9: ptr[8].convert(&a8);
         
     | 
| 
      
 3176 
     | 
    
         
            +
            			case 8: ptr[7].convert(&a7);
         
     | 
| 
      
 3177 
     | 
    
         
            +
            			case 7: ptr[6].convert(&a6);
         
     | 
| 
      
 3178 
     | 
    
         
            +
            			case 6: ptr[5].convert(&a5);
         
     | 
| 
      
 3179 
     | 
    
         
            +
            			case 5: ptr[4].convert(&a4);
         
     | 
| 
      
 3180 
     | 
    
         
            +
            			case 4: ptr[3].convert(&a3);
         
     | 
| 
      
 3181 
     | 
    
         
            +
            			case 3: ptr[2].convert(&a2);
         
     | 
| 
      
 3182 
     | 
    
         
            +
            			case 2: ptr[1].convert(&a1);
         
     | 
| 
      
 3183 
     | 
    
         
            +
            			case 1: ptr[0].convert(&a0);
         
     | 
| 
      
 3184 
     | 
    
         
            +
            			}
         
     | 
| 
      
 3185 
     | 
    
         
            +
            		}
         
     | 
| 
       3000 
3186 
     | 
    
         
             
            	}
         
     | 
| 
       3001 
3187 
     | 
    
         
             
            	void msgpack_object(msgpack::object* o, msgpack::zone* z) const
         
     | 
| 
       3002 
3188 
     | 
    
         
             
            	{
         
     |