Catmandu-1.2024000755000765000024 014742222207 13435 5ustar00nsteenlastaff000000000000README100644000765000024 1015014742222207 14413 0ustar00nsteenlastaff000000000000Catmandu-1.2024NAME Catmandu - a data toolkit SYNOPSIS # From the command line # Convert data from one format to another $ catmandu convert JSON to CSV < data.json $ catmandu convert CSV to YAML < data.csv $ catmandu convert MARC to YAML < data.mrc # Fix data, add, delete, change fields $ catmandu convert JSON --fix 'move_field(title,my_title)' < data.json $ catmandu convert JSON --fix all_my_fixes.txt < data.json # Use a moustache preprocessor on the fix script $ catmandu convert JSON --fix all_my_fixes.txt --var opt1=foo --var opt2=bar < data.json # run a fix script $ catmandu run myfixes.fix # or, create an executable fix script $ cat myfixes.fix #!/usr/local/bin/catmandu run do importer(OAI,url:"http://biblio.ugent.be/oai") retain(_id) end $ chmod 755 myfixes.fix $ ./myfixes.fix DESCRIPTION Catmandu provides a command line tools for the conversion of various data formats including: JSON, YAML, RDF, CSV, TSV, XML and even Excel. Using extension modules, specialized conversions for metadata formats using in libraries, archives and museums is also supports. We provide support for MARC, MAB, MODS, OAI-PMH, PICA, PNX, RIS, LIDO, SRU and Z39.50. Specialized conversions require a mapping language. This is implemented in Catmandu using the `Fix` language. For a short introduction read Catmandu::Introduction. Online tutorials can be found at the end of this document. INSTALL From Source # Clone the directory git clone https://github.com/LibreCat/Catmandu # Build cd Catmandu cpanm -n -q --installdeps --skip-satisfied . perl Build.PL && ./Build && ./Build install Using Docker docker build -t librecat/catmandu . # Run catmandu with access to you local files at docker run -v :/home/catmandu/Home -it librecat/catmandu # E.g. docker run -v C:\Users\alice:/home/catmandu/Home -it librecat/catmandu INSTALL EXTENSIONS cpanm install # E.g. cpanm install Catmandu::MARC POPULAR EXTENSIONS Catmandu::Breaker Catmandu::Identifier Catmandu::MARC Catmandu::OAI Catmandu::PICA Catmandu::RDF Catmandu::SRU Catmandu::Stat Catmandu::Template Catmandu::Validator Catmandu::XLS Catmandu::XSD Catmandu::Z3950 SEE ALSO introduction Catmandu::Introduction documentation http://librecat.org/ blog https://librecatproject.wordpress.com/ step-by-step introduction from basics https://librecatproject.wordpress.com/2014/12/01/day-1-getting-catmandu/ command line client catmandu Perl API Catmandu::PerlAPI AUTHOR Nicolas Steenlant, CONTRIBUTORS Patrick Hochstenbach, patrick.hochstenbach at ugent.be Nicolas Franck, nicolas.franck at ugent.be Johann Rolschewski, jorol at cpan.org Vitali Peil, vitali.peil at uni-bielefeld.de Jakob Voss, nichtich at cpan.org Magnus Enger, magnus at enger.priv.no Christian Pietsch, christian.pietsch at uni-bielefeld.de Dave Sherohman, dave.sherohman at ub.lu.se Snorri Briem, snorri.briem at ub.lu.se Pieter De Praetere, pieter.de.praetere at helptux.be Doug Bell Upsana, me at upasana.me Stefan Weil Tom Hukins QUESTIONS, ISSUES & BUG REPORTS For any questions on the use of our modules please join our mailing list at: librecat-dev@lists.uni-bielefeld.de or send in your bug reports or feature requests to our issue tracker at: https://github.com/LibreCat/Catmandu/issues LICENSE AND COPYRIGHT This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information. Changes100644000765000024 5655414742222207 15050 0ustar00nsteenlastaff000000000000Catmandu-1.2024Revision history for Catmandu 1.2024 2025-01-16 16:23:49 CET - #402: Fix cli with Getopt::Long::Descriptive >= 0.116 1.2023 2025-01-12 18:37:51 CET - Moving from List::MoreUtils to List::SomeUtils (obs. plicease) 1.2022 2024-09-29 21:03:06 CEST - #399: removing smartmatch for perl 5.41.x support 1.2021 2023-11-06 10:41:11 CET - #397: Support empty paths - Updating documentation about CSV, TSV exports 1.2020 2023-02-08 16:29:37 CET - Reordering documentation focussing on command line functionality - Adding Catmandu::PerAPI documentation - Updating Catmandu::Introduction - Supporting fix on an Catmandu::Iterable (obs nichtich) 1.2019 2022-03-21 16:21:54 CET - wrap ->isa in eval - remove release tests from github actions matrix 1.2018 2022-03-09 16:26:23 CET - bump required version of Parser::MGC 1.2017 2022-03-09 15:59:27 CET - remove weird io test 1.2016 2021-09-17 09:07:55 CEST - new mapping fix - bump minimum required version of perl to 5.14, some dependencies already require this 1.2015 2021-01-22 16:23:42 CET - fix applying Readonly to bags that are not Droppable 1.2014 2021-01-15 15:29:19 CET - Path::Simple value argument is never stringified 1.2013 2020-07-09 09:47:03 CEST - rewritten Exporter::Count uses optimized count when available 1.2012 2020-05-25 14:14:08 CEST - support quote_space option in CSV exporter 1.2011 2019-12-20 14:08:54 CET - give commands access to the logger 1.2010 2019-11-26 12:20:03 CET - new Iterable every method - updated Iterable, Fix pod 1.2009 2019-11-04 16:03:36 CET - new is_float utility function - fix some bugs in emitting of strings that look like numbers 1.2008 2019-10-23 15:14:27 CEST - new disassoc fix - add missing dependency 1.2007 2019-09-25 15:48:32 CEST - Searchable stores get a new maximum_offset option to avoid deep paging if needed 1.2006 2019-09-19 17:38:31 CEST - add missing dependencies 1.2005 2019-09-19 11:04:58 CEST - switch to UUID::Tiny 1.2004 2019-08-28 14:00:59 CEST - new Flushable role for bags 1.2003 2019-08-19 13:47:43 CEST - switch to Data::UUID::MT to avoid file related problems (see https://github.com/rjbs/Data-UUID/issues/5 and https://github.com/rjbs/Data-UUID/issues/33). We now use the UUID v4 method instead of v3. 1.2002 2019-05-27 16:01:17 CEST - a Catmandu::Error can now build it's own message 1.2001 2019-05-22 15:32:43 CEST - new IterableOnce role for iterators that can only run once like importers - fix replacing the root object itself in the new builder versions of copy_field and move_field 1.20 2019-05-21 10:02:02 CEST - Fix::Builder and Path make writing fixes much easier - new eval fix - new cp,mv and rm shortcuts for copy_field, move_field and remove_field - CSV exporter accepts escaped whitespace literals as sep_char just like the TSV exporter - fix --transaction option in copy and import commands - bump required version of List::MoreUtils 1.10_03 2019-05-17 10:44:49 CEST - new cp,mv and rm shortcuts for copy_field, move_field and remove_field - CSV exporter accepts escaped whitespace literals as sep_char just like the TSV exporter - fix --transaction option in copy and import commands - fix bug in Emit 1.10_02 2018-11-09 09:09:02 CET - bump required version of List::MoreUtils 1.10_01 2018-11-08 15:38:48 CET - Fix::Builder and Path make writing fixes much easier - new eval fix 1.10 2018-08-30 10:38:16 CEST - split off Catmandu::FileStore - bring Dockerfile back to this repository - include fix now accepts glob patterns - the export and convert commands get a new --id-file option 1.09 2018-03-06 11:24:35 CET - add validator method to Catmandu - new Mock validator - new validate fix and valid fix condition - JSON importer byte buffer size is now configurable to optimize performance - command line help improvements 1.08 2018-02-02 14:48:51 CET - fix language gets support for namespaces - fix language gets support lexical blocks - filter fix gets a new invert option - Iterable map method can now return multiple values (or none) - cleanup cli error handling code - file store tests are now threadsafe 1.07 2017-11-09 10:03:51 CET - new Readonly plugin - new DKVP importer for delimited key-value pairs - new Store bags method - new Store default_options for bag 1.0606 2017-09-26 10:42:35 CEST - fix bug with numeric strings in fix preprocessing 1.0605 2017-09-21 10:58:21 CEST - fix touch command pod 1.0604 2017-09-21 10:35:26 CEST - new touch command and bag touch method - new Util::now function - remove dependency on LWP::UserAgent::Determined - add a basic vim syntax definiton for fix files - add, copy, join, move, remove, set, sort and split fix shortcuts 1.0603 2017-09-04 10:16:55 CEST - bags can have default plugins applied - add hard dependency on List::MoreUtils::XS 1.0602 2017-06-23 10:16:48 CEST - fix filestore permission bug on Windows 1.0601 2017-06-21 14:49:30 CEST - bugfix release 1.06 2017-06-20 15:48:00 CEST - new FileStores for handling binary data - new iterator bind - better bind performance - more pod 1.0507 2017-05-19 17:32:57 CEST - correctly handle escapes in fix langauge quoted strings 1.0506 2017-05-12 16:36:03 CEST - Catmandu gets new define_importer, define_exporter, define_store and define_fixer convenience methods - Versioning plugin get_version can now also return the current version 1.0505 2017-05-12 12:52:18 CEST - new compact fix - bag gets a convenience exists method - Versioning plugin get_version($id, 1) behaves correctly if no versions have been created yet 1.0504 2017-04-21 12:22:59 CEST - new string fix - new int fix - Datestamps plugin field names are now configurable 1.0503 2017-04-06 15:20:58 CEST - the store wide id_key is also aliased as id_field 1.0502 2017-04-06 15:15:57 CEST - id_key is now also a store wide option 1.0501 2017-04-06 14:34:00 CEST - id_key and version_key aliased as id_field and version_field 1.05 2017-03-31 13:51:48 CEST - Windows build was broken since 1.0304, should now build again - fix language has new elsif statement - fix language has new boolean keywords - fix language do statement aliased as bind - config is now reloadable - Plugin::Datestamps datetime format is now configurable - pod corrections 1.04 2017-03-23 13:56:32 CET - new error fix - new rename fix - new search_in_store fix - new import_from_string fix - new export_to_string fix - new valid fix condition ties Validator to fixes - new CQLSearchable role - new Iterable run method - relevant commands get new transaction, sort and sru-sortkeys options - remove deprecated data command - improved info command - inline use of fixes is now cached by default and much faster - solved memory leak in Fix::Base - the perl code generated by Fix is now a reusable standalone sub - more pod 1.0306 2017-02-09 15:22:04 CET - config command has new fix and preprocess options - memoize loggers 1.0305 2017-01-26 09:32:09 CET - fix command line repeated argument bug 1.0304 2016-11-23 11:21:32 CET - new index fix - fix command line argument utf8 bug 1.0303 2016-10-18 14:45:49 CEST - convert and export commands get a new id option 1.0302 2016-10-04 10:43:51 CEST - Hash store is now transactional for testing purposes 1.0301 2016-09-22 09:33:53 CEST - fix hashmap bind tests 1.03 2016-09-21 10:32:51 CEST - specialized id generators for bags - rewrite of the fix parser using Parser::MGC - Catmandu->fixer($fixer) echoes the $fixer back as expected 1.0201_02 2016-05-27 09:46:53 CEST - rewrite of the fix parser using Parser::MGC - Catmandu->fixer($fixer) echoes the $fixer back as expected 1.0201_01 2016-05-26 14:45:25 CEST - rewrite of the fix parser using Parser::MGC - Catmandu->fixer($fixer) echoes the $fixer back as expected 1.0201 2016-05-23 14:25:25 CEST - faster, simpler vacuum fix - update required version of Marpa 1.02 2016-05-20 11:33:38 CEST - all fixes and fix conditions can be used inline now - more fast type tests - fix type check bug 1.01 2016-05-10 13:03:58 CEST - configurable prefixes for internal store data keys (_id, _version, ...) - fix file or inline fix preprocessing with moustache templates - faster type tests with Ref::Util - is_true and is_false fix conditions have a new strict mode - new is_array, is_object, is_string, is_number and is_null fix conditions - new Importer http_timing and http_retry options - better info command - switch to Cpanel::JSON::XS - consistent interpretation of backslash in fixes with regexes - fix bugs relating to perltidy - more and better pod - more tests 1.0002_03 2016-04-28 10:00:55 CEST - fix file or inline fix preprocessing with moustache templates - faster type tests with Ref::Util - is_true and is_false fix conditions have a new strict mode - new is_array, is_object, is_string, is_number and is_null fix conditions - new Importer http_timing and http_retry options - better info command - switch to Cpanel::JSON::XS - consistent interpretation of backslash in fixes with regexes - fix bugs relating to perltidy - more and better pod - more tests 1.0002_02 2016-04-22 09:38:41 CEST - is_true and is_false fix conditions have a new strict mode - new is_array, is_object, is_string, is_number and is_null fix conditions - new Importer http_timing and http_retry options - better info command - switch to Cpanel::JSON::XS - consistent interpretation of backslash in fixes with regexes - fix bugs relating to perltidy - more and better pod - more tests 1.0002_01 2016-04-14 14:19:42 CEST - better info command - switch to Cpanel::JSON::XS - consistent interpretation of backslash in fixes with regexes - fix bugs relating to perltidy - more and better pod - more tests 1.0002 2016-04-01 13:36:28 CEST - fix debug mode dying if Perl::Tidy is missing - error messages now default to empty string - improved Importer::TSV and Exporter::TSV 1.0001 2016-03-03 16:28:16 CET - fix some pod typos - fix handling multivalued response http headers in Importer 1.00 2016-02-22 16:16:07 CET - fix os-dependent paths in tests - throw an error if an Importer file path doesn't exist - bump required version of URI::Template because we need variable names returned in order - pod fixes - lots of pod - lots of tests - new Exporter::Mock - new Importer::TSV and Exporter::TSV - new 'uri_decode' and 'uri_encode' fixes - new Droppable and Transactional roles for stores - new 'drop' command - switch to MooX::Role::Logger for logging - smarter CSV::Importer - new specialized TabularExporter base role - fix bug in 'array_to_sentence' helper function - fix $append bug in 'data_at' helper function - the 'data' command is deprecated. All it's functionality is now provided by the 'import', 'export', 'convert' and 'copy' commands - rename the 'move' command to the more accurate 'copy' - line delimited JSON is no longer the default for Importer::JSON and Exporter:JSON 1.00_03 2016-02-10 14:34:07 CET - fix os-dependent paths in tests - throw an error if an Importer file path doesn't exist 1.00_02 2016-02-09 10:17:58 CET - bump required version of URI::Template because we need variable names returned in order - pod fixes 1.00_01 2016-02-04 16:30:11 CET - lots of pod - lots of tests - new Exporter::Mock - new Importer::TSV and Exporter::TSV - new 'uri_decode' and 'uri_encode' fixes - new Droppable and Transactional roles for stores - new 'drop' command - switch to MooX::Role::Logger for logging - smarter CSV::Importer - new specialized TabularExporter base role - fix bug in 'array_to_sentence' helper function - fix $append bug in 'data_at' helper function - the 'data' command is deprecated. All it's functionality is now provided by the 'import', 'export', 'convert' and 'copy' commands - rename the 'move' command to the more accurate 'copy' - line delimited JSON is no longer the default for Importer::JSON and Exporter:JSON 0.9505 2015-12-02 10:36:58 CET - expand, collapse and vacuum fixes handle large arrays - more pod 0.9504 2015-11-03 11:30:48 CET - fix dereferencing bug in Util::is_string - move Dockerfile to it's own repository 0.9503 2015-10-29 16:32:28 CET - VERSION for all packages and cleanup 0.9502 2015-10-28 16:48:10 CET - new Store::Multi - new Exporter::Multi - new Importer::Multi - new MultiIterator - remove dependency on Data::Util so we can support perl 5.22 - fix typos - fix Fix::Bind::list single execution bug - .mailmap file 0.9501 2015-10-15 16:30:28 CEST - 'trim' fix remove diacritics mode 0.95 2015-10-08 11:46:02 CEST - Importer can now fetch remote data over http(s) - catmandu run command and executable fixes - catmandu interactive fix interpreter - 'importer' bind - more powerful 'list' and 'hashmap' bind - autocommit option on all addables (Exporter,Store,...) - 'expand_date' fix replaced by 'split_date' in the Catmandu-Fix-Date distribution - more pod and tests 0.9403 2015-09-17 16:44:45 CEST - make 'include' fix load path aware 0.9402 2015-09-16 14:30:07 CEST - rename Iterable 'sort' to 'sorted' to fix name conflict 0.9401 2015-09-15 11:19:57 CEST - new 'uniq' fix - new 'flatten' fix - new 'include' fix to load other fix files - Importer has a new 'data_path' option to import data substructure(s) instead - fix emitted null bug in the 'reject' and 'select' fixes - more pod and many typos corrected 0.94 2015-07-10 13:26:34 CEST - lots more pod and many typos corrected - more fix tests - new Text importer to import data similar to sed and awk - Modules importer supports multiple namespaces and module description - 'help' command now shows importer and exporter options - new utility functions 'pod_section' and 'array_split' - empty path now refers to the root in fixes - new 'assoc' fix - new 'perlcode' fix - new 'with' and 'visitor' binds - new 'in' fix condition - new 'any_equal', 'all_equal' fix conditions - new 'is_bool', 'is_true', 'is_false' fix conditions - utf8 support tests - more robust header detection in CSV exporter - more robust 'copy_field' fix - 'expand' and 'collapse' fixes have a new 'sep_char' option - add .dockerignore file - fix travis.yml - more robust 'lookup' and 'lookup_in_store' fixes - Iterable 'select' method aliased as 'grep' - Hash store has a new 'init_data' option - remove conflicting VERSION sub from CLI 0.9301 2015-02-24 11:17:36 CET - Cmd output test failed sometimes 0.93 2015-02-24 09:54:04 CET - Iterable can now behave like an external iterator (see next and rewind methods) - better Fix::Parser error handling - new hash_merge fix - fix Versioning bugs - more consistent Importer::JSON and Exporter::JSON parameter naming - fix regex bug in emit - new set_array and set_hash fixes - new filter fix - Iterable stop_if method - pod fixes 0.9210 2015-01-06 09:28:23 CET - fix log tests 0.9209 2014-12-04 13:58:02 CET - info command - ignore installed but depreciated commands - improved retain fix will replace retain_field - simple emitting fixes require a bit less boilerplate - JSON::XS is now required to avoid bugs in other implementations 0.9208 2014-11-20 09:50:56 CET - lazy and more robust fix building in Fix.pm 0.9207 2014-11-06 09:53:08 CET - greater_than, less_than fix conditions - fix bug in Paged - Exporter::JSON pod - sort_field fix handles undef values 0.9206 2014-10-07 09:06:43 CEST - remove orphan test 0.9205 2014-10-06 14:09:06 CEST - more pod - combine the various info modules in Importer::Modules - Bind::hashmap fix 0.9204 2014-06-13 09:44:48 CEST - fix issue #93 octal number bug 0.9203 2014-06-13 09:27:54 CEST - fix counting bugs 0.9202 2014-06-10 09:30:24 CEST - fix Logger bug 0.9201 2014-06-06 14:44:33 CEST - Iterable benchmark and format method pod 0.92 2014-06-06 13:06:01 CEST - catmandu debug flag and more informative error messages - more pod - bump required version of Moo - require YAML::XS to avoid YAML weirdness - fix CLI include path load order - MooX::Log::Any replaced by Catmandu::Logger because it doesn't set the correct category - config command can use any Exporter - Importer::JSON multiline is more robust - Exporter::JSON supports canonical, indent, space_before, space_after options - info commands and matching importers 0.9103 2014-05-23 10:24:52 CEST - fix script dir in build script - Fix::Parser handles empty comments - Exporter pod 0.9102 2014-05-20 14:07:46 CEST - Marpa requires Time::Piece 0.9101 2014-05-20 11:58:46 CEST - less_than, greater_than conditions 0.91 2014-05-20 09:29:01 CEST - adding monads in disguise Catmandu::Fix::Bind - much more pod - make travis a bit happier 0.9 2014-05-12 10:18:40 CEST - switch to Dist::Milla - Marpa based fix parser - Config::Onion based config loader - :up load path - move documentation to the Github wiki - Validators 0.8014 2014-04-03 - fix Paged bugs - more tests 0.8013 2014-03-27 - Importer::JSON multiline switch - Importer pod 0.8012 2014-03-24 - add missing List::MoreUtils dependency 0.8011 2014-03-18 - fix Paged bugs - array and hash fixes - more tests - more pod 0.8010 2014-03-11 - bump required version of YAML::Any - use List::Util::sum instead of List::Util::sum0 (not present in older versions) 0.8009 2014-03-07 - sort_field fix - fix undefined lib_path 0.8008 2014-03-05 - split off Catmandu::Exporter::Template 0.8007 2014-03-04 - rewrite Catmandu::Serializer - split off Catmandu::Serializer::storable - split off Catmandu::Serializer::messagepack - tests for Catmandu::Serializer 0.8006 2014-03-04 - expand_date fix - CLI --lib-path option - more tests - remove dependency on Data::SpreadPagination - Importer encoding is now an attribute - fixes inheriting from Fix::Base can now export their functionality as a function 0.8005 2013-12-20 - Catmandu::Plugin:: pod 0.8004 2013-12-18 - Exporter::CSV always_quote option 0.8003 2013-12-18 - fix bug in Store::bags 0.8002 2013-12-09 - fix pod 0.8001 2013-11-19 - add one step install to pod 0.8 2013-11-14 - Fix::Condition now supports otherwise clause - Fix, Fix::Condition bugfixes - TY RIS tag needs to come first for some exporters - fix version command 0.7002 2013-09-12 - sort keys extracted from a hash in Exporter::CSV and Importer::CSV 0.7001 2013-09-09 - fix bug in data command with option values evaling to false 0.7 2013-09-02 - JSON Exporter array option 0.6 2013-09-02 - Util::trim also removes vertical whitespace - updated introduction, developers guide - more tests - sum fix - travis - pod links 0.5004 2013-07-01 - lookup, lookup_in_store fixes handle -delete option with wildcard correctly 0.5003 2013-06-28 - lookup_in_store fix 0.5002 2013-06-26 - count fix - nothing fix 0.5001 2013-06-25 - trim fix nonword option 0.5 2013-06-12 - ArrayIterator pod - split off Store::DBI, - split off Importer::Atom - split off Exporter::Atom - split off Exporter::BibTeX - split off Exporter::XLS - remove dependency on Module::Info 0.4001 2013-06-20 - lookup fix tests, -default, -delete options 0.4 2013-06-19 - to_json fix - from_json fix 0.3 2013-06-18 - Exporter::JSON pod - lookup fix 0.2003 2013-05-27 - remove given/when statements (experimental since perl 5.16) - fix endless loop if iterators returned by Iterable group method are not consumed 0.2002 2013-05-08 - revert to IO::String because open with scalar ref has binmode bugs 0.2001 2013-05-07 - ArrayIterator - fix Util::is_instance() - avoid using IO::String 0.2 2013-04-24 - better config command - convert command - count command - delete command - export command - import command - move command 0.1003 2013-04-16 - fix Exporter::Template dynamic scope 0.1002 2013-04-02 - missing Env::fixers 0.1001 2013-03-28 - don't throw empty messages - bump required version of Throwable 0.1 2013-03-26 - logging with MooX::Log::Any - error hierarchy - Store forwards all Bag methods to the default Bag - make Perl::Tidy optional - namespace::clean - Sane exports Try::Tiny::ByClass - Sane no longer exports confess, use the Error classes - a new Env class takes care of loading the config and other environment related tasks - Buffer and Counter have better encapsulation - Iterable has a new benchmark method - Exporter::RIS AR tag - Exporter::BibTeX articleno field - rename Pager to Paged 0.0901 2013-03-07 - fix makefile 0.09 2013-03-06 - Exporter::Atom - fix pod 0.08 2013-02-26 - compile fixes to perl closure - tests for all fixes - fix typo in Importer::RIS - add doi field to Exporter::BibTeX 0.07 2013-02-07 - conditionals in fixes - append, prepend fixes 0.06 2013-02-05 - Util::io() can now take a callback to read to or write from - fixer method enables named fixers in config - default fixers, importers, exporters equivalent to default store 0.05 2012-12-04 - split off Catmandu::Store::ElasticSearch - split off Catmandu::Store::Solr - split off Plack::Session::Store::Catmandu - split off Dancer::Plugin::Catmandu::OAI - split off Dancer::Plugin::Catmandu::SRU - split off Dancer::Session::Catmandu - Exporter::Template dies if template isn't found - fix accidental creation of non-existing keys in Util::set_data() 0.0402 2012-11-12 - Store::Hash is no longer Searchable - remove dependency on Data::Visitor::Callback - bump required version of Moo to 1.0 - Util::write_file() - Util::join_path() - Util::normalize_path() - Util::segmented_path() - Util prefer io(binmode => ...) to io(encoding => ...) 0.0401 2012-10-24 - split off Store::SBCatDB - more Util docs 0.04 2012-10-24 - Util human output functions - Util xml functions - Util docs 0.0303 2012-10-15 - pass limit option in Store::ElasticSearch::Searcher and Store::Solr::Searcher - fix Exporter::CSV docs - custom header labels in Exporter::CSV and Exporter::XLS 0.0302 2012-09-25 - fix POST support in Dancer::Plugin::Catmandu::OAI - optimize Util::require_package 0.0301 2012-07-09 - fix typo in Catmandu->load 0.03 2012-07-06 - iterative version of CQL::ElasticSearch - Store::ElasticSearch searcher supports sort - faster Datestamps - Iterable->interleave() - Iterable->detect/select/reject(key => ['val', ...]) - Iterable->detect/select/reject(key => 'val') - fix Dancer::Plugin::Catmandu::SRU recordPosition - Cmd::config can take a key to show only a subset 0.02 2012-06-12 - remove guard feature from fixes - load split config files - Catmandu->roots() - support for nested object queries in CQL::ElasticSearch - improve Plugin::Versioning - more docs 0.0106 2012-05-29 - fix Store::DBI transaction method 0.0105 2012-05-21 - more docs 0.0104 2012-05-16 - more docs 0.0103 2012-05-14 - improve Plugin::Versioning - more docs - fix split on \r in tests - fix dependencies: parent.pm is only bundled with perl >= 5.10.1 0.0102 2012-05-09 - pass data to Bag->generate_id() - fix typo in Cmd::data - fix YAML loading 0.0101 2012-05-08 - fix dependencies 0.01 2012-05-05 - initial release LICENSE100644000765000024 4644614742222207 14561 0ustar00nsteenlastaff000000000000Catmandu-1.2024This software is copyright (c) 2025 by Nicolas Steenlant. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. Terms of the Perl programming language system itself a) the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version, or b) the "Artistic License" --- The GNU General Public License, Version 1, February 1989 --- This software is Copyright (c) 2025 by Nicolas Steenlant. This is free software, licensed under: The GNU General Public License, Version 1, February 1989 GNU GENERAL PUBLIC LICENSE Version 1, February 1989 Copyright (C) 1989 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The license agreements of most software companies try to keep users at the mercy of those companies. By contrast, our General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. The General Public License applies to the Free Software Foundation's software and to any other program whose authors commit to using it. You can use it for your programs, too. When we speak of free software, we are referring to freedom, not price. Specifically, the General Public License is designed to make sure that you have the freedom to give away or sell copies of free software, that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of a such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must tell them their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any work containing the Program or a portion of it, either verbatim or with modifications. Each licensee is addressed as "you". 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this General Public License and to the absence of any warranty; and give any other recipients of the Program a copy of this General Public License along with the Program. You may charge a fee for the physical act of transferring a copy. 2. You may modify your copy or copies of the Program or any portion of it, and copy and distribute such modifications under the terms of Paragraph 1 above, provided that you also do the following: a) cause the modified files to carry prominent notices stating that you changed the files and the date of any change; and b) cause the whole of any work that you distribute or publish, that in whole or in part contains the Program or any part thereof, either with or without modifications, to be licensed at no charge to all third parties under the terms of this General Public License (except that you may choose to grant warranty protection to some or all third parties, at your option). c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the simplest and most usual way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this General Public License. d) You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. Mere aggregation of another independent work with the Program (or its derivative) on a volume of a storage or distribution medium does not bring the other work under the scope of these terms. 3. You may copy and distribute the Program (or a portion or derivative of it, under Paragraph 2) in object code or executable form under the terms of Paragraphs 1 and 2 above provided that you also do one of the following: a) accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Paragraphs 1 and 2 above; or, b) accompany it with a written offer, valid for at least three years, to give any third party free (except for a nominal charge for the cost of distribution) a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Paragraphs 1 and 2 above; or, c) accompany it with the information you received as to where the corresponding source code may be obtained. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form alone.) Source code for a work means the preferred form of the work for making modifications to it. For an executable file, complete source code means all the source code for all modules it contains; but, as a special exception, it need not include source code for modules which are standard libraries that accompany the operating system on which the executable file runs, or for standard header files or definitions files that accompany that operating system. 4. You may not copy, modify, sublicense, distribute or transfer the Program except as expressly provided under this General Public License. Any attempt otherwise to copy, modify, sublicense, distribute or transfer the Program is void, and will automatically terminate your rights to use the Program under this License. However, parties who have received copies, or rights to use copies, from you under this General Public License will not have their licenses terminated so long as such parties remain in full compliance. 5. By copying, distributing or modifying the Program (or any work based on the Program) you indicate your acceptance of this license to do so, and all its terms and conditions. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. 7. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of the license which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the license, you may choose any version ever published by the Free Software Foundation. 8. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to humanity, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19xx name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (a program to direct compilers to make passes at assemblers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice That's all there is to it! --- The Perl Artistic License 1.0 --- This software is Copyright (c) 2025 by Nicolas Steenlant. This is free software, licensed under: The Perl Artistic License 1.0 The "Artistic License" Preamble The intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications. Definitions: "Package" refers to the collection of files distributed by the Copyright Holder, and derivatives of that collection of files created through textual modification. "Standard Version" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright Holder as specified below. "Copyright Holder" is whoever is named in the copyright or copyrights for the package. "You" is you, if you're thinking about copying or distributing this Package. "Reasonable copying fee" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the computing community at large as a market that must bear the fee.) "Freely Available" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it. 1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. 2. You may apply bug fixes, portability fixes and other modifications derived from the Public Domain or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version. 3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed file stating how and when you changed that file, and provided that you do at least ONE of the following: a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or placing the modifications on a major archive site such as uunet.uu.net, or by allowing the Copyright Holder to include your modifications in the Standard Version of the Package. b) use the modified Package only within your corporation or organization. c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided, and provide a separate manual page for each non-standard executable that clearly documents how it differs from the Standard Version. d) make other distribution arrangements with the Copyright Holder. 4. You may distribute the programs of this Package in object code or executable form, provided that you do at least ONE of the following: a) distribute a Standard Version of the executables and library files, together with instructions (in the manual page or equivalent) on where to get the Standard Version. b) accompany the distribution with the machine-readable source of the Package with your modifications. c) give non-standard executables non-standard names, and clearly document the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version. d) make other distribution arrangements with the Copyright Holder. 5. You may charge a reasonable copying fee for any distribution of this Package. You may charge any fee you choose for support of this Package. You may not charge a fee for this Package itself. However, you may distribute this Package in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution provided that you do not advertise this Package as a product of your own. You may embed this Package's interpreter within an executable of yours (by linking); this shall be construed as a mere form of aggregation, provided that the complete Standard Version of the interpreter is so embedded. 6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whoever generated them, and may be sold commercially, and may be aggregated with this Package. If such scripts or library files are aggregated with this Package via the so-called "undump" or "unexec" methods of producing a binary executable image, then distribution of such an image shall neither be construed as a distribution of this Package nor shall it fall under the restrictions of Paragraphs 3 and 4, provided that you do not represent such an executable image as a Standard Version of this Package. 7. C subroutines (or comparably compiled subroutines in other languages) supplied by you and linked into this Package in order to emulate subroutines and variables of the language defined by this Package shall not be considered part of this Package, but are the equivalent of input as in Paragraph 6, provided these subroutines do not change the language in any way that would cause it to fail the regression tests for the language. 8. Aggregation of this Package with a commercial distribution is always permitted provided that the use of this Package is embedded; that is, when no overt attempt is made to make this Package's interfaces visible to the end user of the commercial distribution. Such use shall not be construed as a distribution of this Package. 9. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. 10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. The End Makefile100644000765000024 114214742222207 15154 0ustar00nsteenlastaff000000000000Catmandu-1.2024usage: @echo "usage: make TARGET" @echo @echo "targets:" @echo " test" @echo " travis [FILE=<...>]" # Parallel testing test: carton exec "prove -l -j 4 -r t" # Travis like test/cover travis: carton exec 'cpanm --notest Perl::Tidy' carton exec 'cpanm --quiet --notest --skip-satisfied Devel::Cover' carton exec 'perl Build.PL && ./Build build' if [ -d cover_db ]; then rm -rf cover_db/ ; fi ifeq ($(strip $(FILE)),) carton exec 'cover -test' else carton exec "PERL5OPT=-MDevel::Cover env perl -Ilib $(FILE)" endif if [ -d cover_db ]; then rm -rf cover_db/ ; fi carton exec './Build realclean' cpanfile100644000765000024 405214742222207 15223 0ustar00nsteenlastaff000000000000Catmandu-1.2024requires 'perl', 'v5.16'; on 'test', sub { requires 'Log::Any::Adapter::Log4perl', 0; requires 'Log::Any::Test', '1.03'; requires 'Log::Log4perl' , 0; requires 'Test::Deep', '0.112'; requires 'Test::Exception', '0.43'; requires 'Test::LWP::UserAgent' , 0; requires 'Test::More', '0.99'; requires 'Test::Pod', 0; requires 'Capture::Tiny', 0; }; on 'develop', sub { requires 'Code::TidyAll', 0; requires 'Perl::Tidy', 0; requires 'Test::Code::TidyAll', '0.20'; requires 'Text::Diff', 0; # undeclared Test::Code::TidyAll plugin dependency }; requires 'Any::URI::Escape', 0; requires 'App::Cmd', '0.33'; requires 'Getopt::Long', 0; requires 'CGI::Expand', '2.02'; requires 'Class::Method::Modifiers', 0; requires 'Clone', '0.31'; requires 'Config::Onion', '1.004'; requires 'Cpanel::JSON::XS', '3.0213'; requires 'Data::Compare', '1.22'; requires 'Data::Util', '0.66'; requires 'HTTP::Request', 0; requires 'Hash::Merge::Simple', 0; requires 'IO::Handle::Util', '0.01'; requires 'LWP::UserAgent', 0; requires 'List::SomeUtils', '0.59'; requires 'Log::Any', 0; requires 'Log::Any::Adapter', 0; requires 'MIME::Types',0; requires 'Module::Build', '>=0.4229'; # travis ci requires 'Module::Info', 0; requires 'Moo', '>=1.004006'; requires 'MooX::Aliases', '>=0.001006'; requires 'Package::Stash', 0; requires 'Parser::MGC', '>=0.21'; requires 'Path::Iterator::Rule','0'; requires 'Path::Tiny', '0'; requires 'Role::Tiny', 0; requires 'Role::Tiny::With', 0; requires 'String::CamelCase', 0; requires 'Sub::Exporter', '0.982'; requires 'Sub::Quote', 0; requires 'Text::CSV', '1.21'; requires 'Text::Hogan::Compiler', '1.02'; requires 'Throwable', '0.200004'; requires 'Time::HiRes', 0; # not always installed? requires 'Try::Tiny::ByClass', '0.01'; requires 'URI', 0; requires 'URI::Template', 0.22; requires 'UUID::Tiny', '>=1.04'; requires 'Unicode::Normalize', '0'; requires 'YAML::XS', '>=0.83'; requires 'asa', 0; # undeclared dependency? requires 'namespace::clean', '>=0.24'; recommends 'Log::Log4perl', '1.44'; recommends 'Log::Any::Adapter::Log4perl', '0.06'; dist.ini100644000765000024 40714742222207 15143 0ustar00nsteenlastaff000000000000Catmandu-1.2024name = Catmandu author = Nicolas Steenlant [@Milla] installer = ModuleBuild [ExecDir] dir = bin [ReadmeAnyFromPod / ReadmePodInRoot] type = markdown filename = README.md location = root source_filename = lib/Catmandu/Introduction.pod Build.PL100644000765000024 544214742222207 15017 0ustar00nsteenlastaff000000000000Catmandu-1.2024 # This file was automatically generated by Dist::Zilla::Plugin::ModuleBuild v6.032. use strict; use warnings; use Module::Build 0.28; my %module_build_args = ( "build_requires" => { "Module::Build" => "0.4229" }, "configure_requires" => { "Module::Build" => "0.28" }, "dist_abstract" => "a data toolkit", "dist_author" => [ "Nicolas Steenlant, C<< >>" ], "dist_name" => "Catmandu", "dist_version" => "1.2024", "license" => "perl", "module_name" => "Catmandu", "recommends" => { "Log::Any::Adapter::Log4perl" => "0.06", "Log::Log4perl" => "1.44" }, "recursive_test_files" => 1, "requires" => { "Any::URI::Escape" => 0, "App::Cmd" => "0.33", "CGI::Expand" => "2.02", "Class::Method::Modifiers" => 0, "Clone" => "0.31", "Config::Onion" => "1.004", "Cpanel::JSON::XS" => "3.0213", "Data::Compare" => "1.22", "Data::Util" => "0.66", "Getopt::Long" => 0, "HTTP::Request" => 0, "Hash::Merge::Simple" => 0, "IO::Handle::Util" => "0.01", "LWP::UserAgent" => 0, "List::SomeUtils" => "0.59", "Log::Any" => 0, "Log::Any::Adapter" => 0, "MIME::Types" => 0, "Module::Build" => "0.4229", "Module::Info" => 0, "Moo" => "1.004006", "MooX::Aliases" => "0.001006", "Package::Stash" => 0, "Parser::MGC" => "0.21", "Path::Iterator::Rule" => 0, "Path::Tiny" => 0, "Role::Tiny" => 0, "Role::Tiny::With" => 0, "String::CamelCase" => 0, "Sub::Exporter" => "0.982", "Sub::Quote" => 0, "Text::CSV" => "1.21", "Text::Hogan::Compiler" => "1.02", "Throwable" => "0.200004", "Time::HiRes" => 0, "Try::Tiny::ByClass" => "0.01", "URI" => 0, "URI::Template" => "0.22", "UUID::Tiny" => "1.04", "Unicode::Normalize" => 0, "YAML::XS" => "0.83", "asa" => 0, "namespace::clean" => "0.24", "perl" => "v5.16.0" }, "script_files" => [ "bin/catmandu" ], "test_requires" => { "Capture::Tiny" => 0, "Log::Any::Adapter::Log4perl" => 0, "Log::Any::Test" => "1.03", "Log::Log4perl" => 0, "Test::Deep" => "0.112", "Test::Exception" => "0.43", "Test::LWP::UserAgent" => 0, "Test::More" => "0.99", "Test::Pod" => 0 } ); my %fallback_build_requires = ( "Capture::Tiny" => 0, "Log::Any::Adapter::Log4perl" => 0, "Log::Any::Test" => "1.03", "Log::Log4perl" => 0, "Module::Build" => "0.4229", "Test::Deep" => "0.112", "Test::Exception" => "0.43", "Test::LWP::UserAgent" => 0, "Test::More" => "0.99", "Test::Pod" => 0 ); unless ( eval { Module::Build->VERSION(0.4004) } ) { delete $module_build_args{test_requires}; $module_build_args{build_requires} = \%fallback_build_requires; } my $build = Module::Build->new(%module_build_args); $build->create_build_script; META.yml100644000765000024 637414742222207 15001 0ustar00nsteenlastaff000000000000Catmandu-1.2024--- abstract: 'a data toolkit' author: - 'Nicolas Steenlant, C<< >>' build_requires: Capture::Tiny: '0' Log::Any::Adapter::Log4perl: '0' Log::Any::Test: '1.03' Log::Log4perl: '0' Module::Build: '0.4229' Test::Deep: '0.112' Test::Exception: '0.43' Test::LWP::UserAgent: '0' Test::More: '0.99' Test::Pod: '0' configure_requires: Module::Build: '0.28' dynamic_config: 0 generated_by: 'Dist::Milla version v1.0.22, Dist::Zilla version 6.032, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: '1.4' name: Catmandu no_index: directory: - eg - examples - inc - share - t - xt recommends: Log::Any::Adapter::Log4perl: '0.06' Log::Log4perl: '1.44' requires: Any::URI::Escape: '0' App::Cmd: '0.33' CGI::Expand: '2.02' Class::Method::Modifiers: '0' Clone: '0.31' Config::Onion: '1.004' Cpanel::JSON::XS: '3.0213' Data::Compare: '1.22' Data::Util: '0.66' Getopt::Long: '0' HTTP::Request: '0' Hash::Merge::Simple: '0' IO::Handle::Util: '0.01' LWP::UserAgent: '0' List::SomeUtils: '0.59' Log::Any: '0' Log::Any::Adapter: '0' MIME::Types: '0' Module::Build: '0.4229' Module::Info: '0' Moo: '1.004006' MooX::Aliases: '0.001006' Package::Stash: '0' Parser::MGC: '0.21' Path::Iterator::Rule: '0' Path::Tiny: '0' Role::Tiny: '0' Role::Tiny::With: '0' String::CamelCase: '0' Sub::Exporter: '0.982' Sub::Quote: '0' Text::CSV: '1.21' Text::Hogan::Compiler: '1.02' Throwable: '0.200004' Time::HiRes: '0' Try::Tiny::ByClass: '0.01' URI: '0' URI::Template: '0.22' UUID::Tiny: '1.04' Unicode::Normalize: '0' YAML::XS: '0.83' asa: '0' namespace::clean: '0.24' perl: v5.16.0 resources: bugtracker: https://github.com/LibreCat/Catmandu/issues homepage: https://github.com/LibreCat/Catmandu repository: https://github.com/LibreCat/Catmandu.git version: '1.2024' x_contributors: - 'Christian Pietsch ' - 'Dave Sherohman ' - 'Doug Bell ' - 'EC2 Default User ' - 'EC2 Default User ' - 'EC2 Default User ' - 'EC2 Default User ' - 'Graham Ollis ' - 'Jakob Voß ' - 'Johann Rolschewski ' - 'Magnus Enger ' - 'Matthias Vandermaesen ' - 'Mohammad S Anwar ' - 'Nicolas Franck ' - 'Nicolas Franck ' - 'Nicolas Steenlant ' - 'Patrick Hochstenbach ' - 'Pieter De Praetere ' - 'Snorri Briem ' - 'Stefan Weil ' - 'Tom Hukins ' - 'Upasana Shukla ' - 'Vitali Peil ' - 'Zakariyya Mughal ' x_generated_by_perl: v5.40.0 x_serialization_backend: 'YAML::Tiny version 1.74' x_spdx_expression: 'Artistic-1.0-Perl OR GPL-1.0-or-later' x_static_install: 0 MANIFEST100644000765000024 2716614742222207 14703 0ustar00nsteenlastaff000000000000Catmandu-1.2024# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.032. Build.PL Changes Dockerfile LICENSE MANIFEST META.json META.yml Makefile README benchmark/clone.pl benchmark/data.json benchmark/util_vs_data_util.pl bin/catmandu cpanfile dist.ini docker/apt.txt lib/Catmandu.pm lib/Catmandu/Addable.pm lib/Catmandu/ArrayIterator.pm lib/Catmandu/Bag.pm lib/Catmandu/Bag/IdGenerator.pm lib/Catmandu/Bag/IdGenerator/Mock.pm lib/Catmandu/Bag/IdGenerator/UUID.pm lib/Catmandu/Buffer.pm lib/Catmandu/CLI.pm lib/Catmandu/CQLSearchable.pm lib/Catmandu/Cmd.pm lib/Catmandu/Cmd/compile.pm lib/Catmandu/Cmd/config.pm lib/Catmandu/Cmd/convert.pm lib/Catmandu/Cmd/copy.pm lib/Catmandu/Cmd/count.pm lib/Catmandu/Cmd/delete.pm lib/Catmandu/Cmd/drop.pm lib/Catmandu/Cmd/export.pm lib/Catmandu/Cmd/help.pm lib/Catmandu/Cmd/import.pm lib/Catmandu/Cmd/info.pm lib/Catmandu/Cmd/run.pm lib/Catmandu/Cmd/touch.pm lib/Catmandu/Config.pod lib/Catmandu/Counter.pm lib/Catmandu/Droppable.pm lib/Catmandu/Emit.pm lib/Catmandu/Env.pm lib/Catmandu/Error.pm lib/Catmandu/Expander.pm lib/Catmandu/Exporter.pm lib/Catmandu/Exporter/CSV.pm lib/Catmandu/Exporter/Count.pm lib/Catmandu/Exporter/JSON.pm lib/Catmandu/Exporter/Mock.pm lib/Catmandu/Exporter/Multi.pm lib/Catmandu/Exporter/Null.pm lib/Catmandu/Exporter/TSV.pm lib/Catmandu/Exporter/Text.pm lib/Catmandu/Exporter/YAML.pm lib/Catmandu/Fix.pm lib/Catmandu/Fix/Base.pm lib/Catmandu/Fix/Bind.pm lib/Catmandu/Fix/Bind/Group.pm lib/Catmandu/Fix/Bind/benchmark.pm lib/Catmandu/Fix/Bind/each.pm lib/Catmandu/Fix/Bind/hashmap.pm lib/Catmandu/Fix/Bind/identity.pm lib/Catmandu/Fix/Bind/importer.pm lib/Catmandu/Fix/Bind/iterate.pm lib/Catmandu/Fix/Bind/list.pm lib/Catmandu/Fix/Bind/maybe.pm lib/Catmandu/Fix/Bind/timeout.pm lib/Catmandu/Fix/Bind/visitor.pm lib/Catmandu/Fix/Bind/with.pm lib/Catmandu/Fix/Builder.pm lib/Catmandu/Fix/Condition.pm lib/Catmandu/Fix/Condition/Builder.pm lib/Catmandu/Fix/Condition/Builder/Simple.pm lib/Catmandu/Fix/Condition/SimpleAllTest.pm lib/Catmandu/Fix/Condition/SimpleAnyTest.pm lib/Catmandu/Fix/Condition/SimpleCompareTest.pm lib/Catmandu/Fix/Condition/all_equal.pm lib/Catmandu/Fix/Condition/all_match.pm lib/Catmandu/Fix/Condition/any_equal.pm lib/Catmandu/Fix/Condition/any_match.pm lib/Catmandu/Fix/Condition/exists.pm lib/Catmandu/Fix/Condition/greater_than.pm lib/Catmandu/Fix/Condition/in.pm lib/Catmandu/Fix/Condition/is_array.pm lib/Catmandu/Fix/Condition/is_false.pm lib/Catmandu/Fix/Condition/is_null.pm lib/Catmandu/Fix/Condition/is_number.pm lib/Catmandu/Fix/Condition/is_object.pm lib/Catmandu/Fix/Condition/is_string.pm lib/Catmandu/Fix/Condition/is_true.pm lib/Catmandu/Fix/Condition/less_than.pm lib/Catmandu/Fix/Condition/valid.pm lib/Catmandu/Fix/Has.pm lib/Catmandu/Fix/Inlineable.pm lib/Catmandu/Fix/Namespace.pm lib/Catmandu/Fix/Namespace/perl.pm lib/Catmandu/Fix/Parser.pm lib/Catmandu/Fix/SimpleGetValue.pm lib/Catmandu/Fix/add.pm lib/Catmandu/Fix/add_field.pm lib/Catmandu/Fix/add_to_exporter.pm lib/Catmandu/Fix/add_to_store.pm lib/Catmandu/Fix/append.pm lib/Catmandu/Fix/array.pm lib/Catmandu/Fix/assoc.pm lib/Catmandu/Fix/capitalize.pm lib/Catmandu/Fix/clone.pm lib/Catmandu/Fix/code.pm lib/Catmandu/Fix/collapse.pm lib/Catmandu/Fix/compact.pm lib/Catmandu/Fix/copy.pm lib/Catmandu/Fix/copy_field.pm lib/Catmandu/Fix/count.pm lib/Catmandu/Fix/cp.pm lib/Catmandu/Fix/disassoc.pm lib/Catmandu/Fix/downcase.pm lib/Catmandu/Fix/error.pm lib/Catmandu/Fix/eval.pm lib/Catmandu/Fix/expand.pm lib/Catmandu/Fix/expand_date.pm lib/Catmandu/Fix/export_to_string.pm lib/Catmandu/Fix/filter.pm lib/Catmandu/Fix/flatten.pm lib/Catmandu/Fix/format.pm lib/Catmandu/Fix/from_json.pm lib/Catmandu/Fix/hash.pm lib/Catmandu/Fix/import.pm lib/Catmandu/Fix/import_from_string.pm lib/Catmandu/Fix/include.pm lib/Catmandu/Fix/index.pm lib/Catmandu/Fix/int.pm lib/Catmandu/Fix/join.pm lib/Catmandu/Fix/join_field.pm lib/Catmandu/Fix/log.pm lib/Catmandu/Fix/lookup.pm lib/Catmandu/Fix/lookup_in_store.pm lib/Catmandu/Fix/mapping.pm lib/Catmandu/Fix/move.pm lib/Catmandu/Fix/move_field.pm lib/Catmandu/Fix/mv.pm lib/Catmandu/Fix/nothing.pm lib/Catmandu/Fix/parse_text.pm lib/Catmandu/Fix/paste.pm lib/Catmandu/Fix/perlcode.pm lib/Catmandu/Fix/prepend.pm lib/Catmandu/Fix/random.pm lib/Catmandu/Fix/reject.pm lib/Catmandu/Fix/remove.pm lib/Catmandu/Fix/remove_field.pm lib/Catmandu/Fix/rename.pm lib/Catmandu/Fix/replace_all.pm lib/Catmandu/Fix/retain.pm lib/Catmandu/Fix/retain_field.pm lib/Catmandu/Fix/reverse.pm lib/Catmandu/Fix/rm.pm lib/Catmandu/Fix/search_in_store.pm lib/Catmandu/Fix/set.pm lib/Catmandu/Fix/set_array.pm lib/Catmandu/Fix/set_field.pm lib/Catmandu/Fix/set_hash.pm lib/Catmandu/Fix/sleep.pm lib/Catmandu/Fix/sort.pm lib/Catmandu/Fix/sort_field.pm lib/Catmandu/Fix/split.pm lib/Catmandu/Fix/split_field.pm lib/Catmandu/Fix/string.pm lib/Catmandu/Fix/substring.pm lib/Catmandu/Fix/sum.pm lib/Catmandu/Fix/to_json.pm lib/Catmandu/Fix/trim.pm lib/Catmandu/Fix/uniq.pm lib/Catmandu/Fix/upcase.pm lib/Catmandu/Fix/uri_decode.pm lib/Catmandu/Fix/uri_encode.pm lib/Catmandu/Fix/vacuum.pm lib/Catmandu/Fix/validate.pm lib/Catmandu/Fixable.pm lib/Catmandu/Flushable.pm lib/Catmandu/Hits.pm lib/Catmandu/IdGenerator.pm lib/Catmandu/IdGenerator/Mock.pm lib/Catmandu/IdGenerator/UUID.pm lib/Catmandu/Importer.pm lib/Catmandu/Importer/CSV.pm lib/Catmandu/Importer/DKVP.pm lib/Catmandu/Importer/JSON.pm lib/Catmandu/Importer/Mock.pm lib/Catmandu/Importer/Modules.pm lib/Catmandu/Importer/Multi.pm lib/Catmandu/Importer/Null.pm lib/Catmandu/Importer/TSV.pm lib/Catmandu/Importer/Text.pm lib/Catmandu/Importer/YAML.pm lib/Catmandu/Interactive.pm lib/Catmandu/Introduction.pod lib/Catmandu/Iterable.pm lib/Catmandu/IterableOnce.pm lib/Catmandu/Iterator.pm lib/Catmandu/Logger.pm lib/Catmandu/MultiIterator.pm lib/Catmandu/Paged.pm lib/Catmandu/Path.pm lib/Catmandu/Path/simple.pm lib/Catmandu/PerlAPI.pod lib/Catmandu/Pluggable.pm lib/Catmandu/Plugin/Datestamps.pm lib/Catmandu/Plugin/Readonly.pm lib/Catmandu/Plugin/Readonly/Droppable.pm lib/Catmandu/Plugin/Readonly/Searchable.pm lib/Catmandu/Plugin/Versioning.pm lib/Catmandu/Sane.pm lib/Catmandu/Searchable.pm lib/Catmandu/Serializer.pm lib/Catmandu/Serializer/json.pm lib/Catmandu/Store.pm lib/Catmandu/Store/Hash.pm lib/Catmandu/Store/Hash/Bag.pm lib/Catmandu/Store/Multi.pm lib/Catmandu/Store/Multi/Bag.pm lib/Catmandu/TabularExporter.pm lib/Catmandu/Transactional.pm lib/Catmandu/Util.pm lib/Catmandu/Util/Path.pm lib/Catmandu/Util/Regex.pm lib/Catmandu/Validator.pm lib/Catmandu/Validator/Mock.pm lib/Catmandu/Validator/Simple.pm misc/vim/syntax/catmandu-fix.vim t/Catmandu-Addable.t t/Catmandu-ArrayIterator.t t/Catmandu-Bag.t t/Catmandu-Buffer.t t/Catmandu-CLI.t t/Catmandu-CQLSearchable.t t/Catmandu-Cmd-compile.t t/Catmandu-Cmd-config.t t/Catmandu-Cmd-convert.t t/Catmandu-Cmd-copy.t t/Catmandu-Cmd-count.t t/Catmandu-Cmd-delete.t t/Catmandu-Cmd-export.t t/Catmandu-Cmd-help.t t/Catmandu-Cmd-import.t t/Catmandu-Cmd-info.t t/Catmandu-Cmd-run.t t/Catmandu-Cmd-touch.t t/Catmandu-Cmd.t t/Catmandu-Counter.t t/Catmandu-Env.t t/Catmandu-Error.t t/Catmandu-Exporter-CSV.t t/Catmandu-Exporter-Count.t t/Catmandu-Exporter-JSON.t t/Catmandu-Exporter-Mock.t t/Catmandu-Exporter-Multi.t t/Catmandu-Exporter-Null.t t/Catmandu-Exporter-TSV.t t/Catmandu-Exporter-Text.t t/Catmandu-Exporter-YAML.t t/Catmandu-Exporter.t t/Catmandu-Fix-Base.t t/Catmandu-Fix-Bind-Group.t t/Catmandu-Fix-Bind-benchmark.t t/Catmandu-Fix-Bind-each.t t/Catmandu-Fix-Bind-hashmap.t t/Catmandu-Fix-Bind-identity.t t/Catmandu-Fix-Bind-importer.t t/Catmandu-Fix-Bind-iterate.t t/Catmandu-Fix-Bind-list.t t/Catmandu-Fix-Bind-maybe.t t/Catmandu-Fix-Bind-timeout.t t/Catmandu-Fix-Bind-visitor.t t/Catmandu-Fix-Bind-with.t t/Catmandu-Fix-Bind.t t/Catmandu-Fix-Condition-all_equal.t t/Catmandu-Fix-Condition-all_match.t t/Catmandu-Fix-Condition-any_equal.t t/Catmandu-Fix-Condition-any_match.t t/Catmandu-Fix-Condition-exists.t t/Catmandu-Fix-Condition-greater_than.t t/Catmandu-Fix-Condition-in.t t/Catmandu-Fix-Condition-is_array.t t/Catmandu-Fix-Condition-is_false.t t/Catmandu-Fix-Condition-is_null.t t/Catmandu-Fix-Condition-is_number.t t/Catmandu-Fix-Condition-is_object.t t/Catmandu-Fix-Condition-is_string.t t/Catmandu-Fix-Condition-is_true.t t/Catmandu-Fix-Condition-less_than.t t/Catmandu-Fix-Condition-valid.t t/Catmandu-Fix-Condition.t t/Catmandu-Fix-Inlineable.t t/Catmandu-Fix-Parser.t t/Catmandu-Fix-add_field.t t/Catmandu-Fix-add_to_exporter.t t/Catmandu-Fix-add_to_store.t t/Catmandu-Fix-append.t t/Catmandu-Fix-array.t t/Catmandu-Fix-assoc.t t/Catmandu-Fix-capitalize.t t/Catmandu-Fix-clone.t t/Catmandu-Fix-code.t t/Catmandu-Fix-collapse.t t/Catmandu-Fix-compact.t t/Catmandu-Fix-copy.t t/Catmandu-Fix-copy_field.t t/Catmandu-Fix-count.t t/Catmandu-Fix-cp.t t/Catmandu-Fix-disassoc.t t/Catmandu-Fix-downcase.t t/Catmandu-Fix-error.t t/Catmandu-Fix-eval.t t/Catmandu-Fix-expand.t t/Catmandu-Fix-expand_date.t t/Catmandu-Fix-export_to_string.t t/Catmandu-Fix-filter.t t/Catmandu-Fix-flatten.t t/Catmandu-Fix-format.t t/Catmandu-Fix-from_json.t t/Catmandu-Fix-hash.t t/Catmandu-Fix-import_from_string.t t/Catmandu-Fix-include.t t/Catmandu-Fix-index.t t/Catmandu-Fix-int.t t/Catmandu-Fix-join_field.t t/Catmandu-Fix-log.t t/Catmandu-Fix-lookup.t t/Catmandu-Fix-lookup_in_store.t t/Catmandu-Fix-mapping.t t/Catmandu-Fix-move.t t/Catmandu-Fix-move_field.t t/Catmandu-Fix-mv.t t/Catmandu-Fix-nothing.t t/Catmandu-Fix-parse_text.t t/Catmandu-Fix-paste.t t/Catmandu-Fix-perlcode.t t/Catmandu-Fix-prepend.t t/Catmandu-Fix-random.t t/Catmandu-Fix-reject.t t/Catmandu-Fix-remove.t t/Catmandu-Fix-remove_field.t t/Catmandu-Fix-rename.t t/Catmandu-Fix-replace_all.t t/Catmandu-Fix-retain.t t/Catmandu-Fix-retain_field.t t/Catmandu-Fix-reverse.t t/Catmandu-Fix-rm.t t/Catmandu-Fix-search_in_store.t t/Catmandu-Fix-set_array.t t/Catmandu-Fix-set_field.t t/Catmandu-Fix-set_hash.t t/Catmandu-Fix-sleep.t t/Catmandu-Fix-sort_field.t t/Catmandu-Fix-split_field.t t/Catmandu-Fix-string.t t/Catmandu-Fix-substring.t t/Catmandu-Fix-sum.t t/Catmandu-Fix-to_json.t t/Catmandu-Fix-trim.t t/Catmandu-Fix-uniq.t t/Catmandu-Fix-upcase.t t/Catmandu-Fix-uri_decode.t t/Catmandu-Fix-uri_encode.t t/Catmandu-Fix-uri_encode_decode.t t/Catmandu-Fix-vacuum.t t/Catmandu-Fix-validate.t t/Catmandu-Fix.t t/Catmandu-Fixable.t t/Catmandu-Flushable.t t/Catmandu-Hits.t t/Catmandu-IdGenerator-Mock.t t/Catmandu-IdGenerator-UUID.t t/Catmandu-IdGenerator.t t/Catmandu-Importer-CSV.t t/Catmandu-Importer-JSON.t t/Catmandu-Importer-Mock.t t/Catmandu-Importer-Modules.t t/Catmandu-Importer-Multi.t t/Catmandu-Importer-TSV.t t/Catmandu-Importer-Text.t t/Catmandu-Importer-YAML.t t/Catmandu-Importer.t t/Catmandu-Interactive.t t/Catmandu-Iterable.t t/Catmandu-IterableOnce.t t/Catmandu-Iterator.t t/Catmandu-MultiIterator.t t/Catmandu-Paged.t t/Catmandu-Path-simple.t t/Catmandu-Pluggable.t t/Catmandu-Plugin-Datestamps.t t/Catmandu-Plugin-Readonly.t t/Catmandu-Plugin-Versioning.t t/Catmandu-Sane.t t/Catmandu-Searchable.t t/Catmandu-Serializer.t t/Catmandu-Store-Hash.t t/Catmandu-Store-Multi-Bag.t t/Catmandu-Store-Multi.t t/Catmandu-Store.t t/Catmandu-Util.t t/Catmandu-Validator-Mock.t t/Catmandu-Validator-Simple.t t/Catmandu-Validator.t t/Catmandu.t t/author-pod-syntax.t t/catmandu.yml t/csv_test.json t/data2/000/000/001/test.txt t/data2/000/000/002/test.pdf t/data2/000/000/002/test.txt t/data2/000/000/003/test.txt t/field_mapping.csv t/fix-include-glob/fix-1.fix t/fix-include-glob/fix-2.fix t/fix-include-glob/fix-3.fix t/fix-level-1.fix t/fix-level-2.fix t/fix-level-3.fix t/lib/Catmandu/Fix/undef_error.pm t/lib/Catmandu/Importer/Values.pm t/lib/Catmandu/Serializer/dumper.pm t/lib/T/Fix/Condition/is_42.pm t/lib/T/Fix/test.pm t/log4perl.conf t/myfixes.fix t/non_ascii.json t/non_ascii.yaml t/planet_ids.txt t/planets.csv t/planets.tab t/run.fix t/russian.txt t/script.pl t/small.json t/small.yaml t/variables.fix t000755000765000024 014742222207 13621 5ustar00nsteenlastaff000000000000Catmandu-1.2024run.fix100644000765000024 10414742222207 15250 0ustar00nsteenlastaff000000000000Catmandu-1.2024/tadd_field(hello, world) add_to_exporter(., JSON, line_delimited: 1) META.json100644000765000024 1203714742222207 15162 0ustar00nsteenlastaff000000000000Catmandu-1.2024{ "abstract" : "a data toolkit", "author" : [ "Nicolas Steenlant, C<< >>" ], "dynamic_config" : 0, "generated_by" : "Dist::Milla version v1.0.22, Dist::Zilla version 6.032, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", "version" : 2 }, "name" : "Catmandu", "no_index" : { "directory" : [ "eg", "examples", "inc", "share", "t", "xt" ] }, "prereqs" : { "build" : { "requires" : { "Module::Build" : "0.4229" } }, "configure" : { "requires" : { "Module::Build" : "0.28" } }, "develop" : { "requires" : { "Code::TidyAll" : "0", "Dist::Milla" : "v1.0.22", "Perl::Tidy" : "0", "Test::Code::TidyAll" : "0.20", "Test::Pod" : "1.41", "Text::Diff" : "0" } }, "runtime" : { "recommends" : { "Log::Any::Adapter::Log4perl" : "0.06", "Log::Log4perl" : "1.44" }, "requires" : { "Any::URI::Escape" : "0", "App::Cmd" : "0.33", "CGI::Expand" : "2.02", "Class::Method::Modifiers" : "0", "Clone" : "0.31", "Config::Onion" : "1.004", "Cpanel::JSON::XS" : "3.0213", "Data::Compare" : "1.22", "Data::Util" : "0.66", "Getopt::Long" : "0", "HTTP::Request" : "0", "Hash::Merge::Simple" : "0", "IO::Handle::Util" : "0.01", "LWP::UserAgent" : "0", "List::SomeUtils" : "0.59", "Log::Any" : "0", "Log::Any::Adapter" : "0", "MIME::Types" : "0", "Module::Build" : "0.4229", "Module::Info" : "0", "Moo" : "1.004006", "MooX::Aliases" : "0.001006", "Package::Stash" : "0", "Parser::MGC" : "0.21", "Path::Iterator::Rule" : "0", "Path::Tiny" : "0", "Role::Tiny" : "0", "Role::Tiny::With" : "0", "String::CamelCase" : "0", "Sub::Exporter" : "0.982", "Sub::Quote" : "0", "Text::CSV" : "1.21", "Text::Hogan::Compiler" : "1.02", "Throwable" : "0.200004", "Time::HiRes" : "0", "Try::Tiny::ByClass" : "0.01", "URI" : "0", "URI::Template" : "0.22", "UUID::Tiny" : "1.04", "Unicode::Normalize" : "0", "YAML::XS" : "0.83", "asa" : "0", "namespace::clean" : "0.24", "perl" : "v5.16.0" } }, "test" : { "requires" : { "Capture::Tiny" : "0", "Log::Any::Adapter::Log4perl" : "0", "Log::Any::Test" : "1.03", "Log::Log4perl" : "0", "Test::Deep" : "0.112", "Test::Exception" : "0.43", "Test::LWP::UserAgent" : "0", "Test::More" : "0.99", "Test::Pod" : "0" } } }, "release_status" : "stable", "resources" : { "bugtracker" : { "web" : "https://github.com/LibreCat/Catmandu/issues" }, "homepage" : "https://github.com/LibreCat/Catmandu", "repository" : { "type" : "git", "url" : "https://github.com/LibreCat/Catmandu.git", "web" : "https://github.com/LibreCat/Catmandu" } }, "version" : "1.2024", "x_contributors" : [ "Christian Pietsch ", "Dave Sherohman ", "Doug Bell ", "EC2 Default User ", "EC2 Default User ", "EC2 Default User ", "EC2 Default User ", "Graham Ollis ", "Jakob Vo\u00df ", "Johann Rolschewski ", "Magnus Enger ", "Matthias Vandermaesen ", "Mohammad S Anwar ", "Nicolas Franck ", "Nicolas Franck ", "Nicolas Steenlant ", "Patrick Hochstenbach ", "Pieter De Praetere ", "Snorri Briem ", "Stefan Weil ", "Tom Hukins ", "Upasana Shukla ", "Vitali Peil ", "Zakariyya Mughal " ], "x_generated_by_perl" : "v5.40.0", "x_serialization_backend" : "Cpanel::JSON::XS version 4.38", "x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later", "x_static_install" : 0 } Dockerfile100644000765000024 145514742222207 15515 0ustar00nsteenlastaff000000000000Catmandu-1.2024# Minimal Dockerfile of a base image with Catmandu core on Debian stretch FROM debian:stretch-slim LABEL LibreCat community ADD docker/apt.txt . # Perl packages used by Catmandu (if available as Debian package) and cpanm RUN apt-get update && apt-get install -y --no-install-recommends \ $(grep -vE "^\s*#" apt.txt | tr "\n" " ") cpanminus \ && rm -rf /var/lib/apt/lists/* ADD . /tmp/catmandu WORKDIR /tmp/catmandu # install from source RUN cpanm -n -q --installdeps --skip-satisfied . RUN perl Build.PL && ./Build && ./Build install # cleanup sources WORKDIR / RUN rm -rf /tmp/catmandu # make user feel home RUN adduser --home /home/catmandu --uid 1000 --disabled-password --gecos "" catmandu WORKDIR /home/catmandu USER catmandu # Default command CMD ["bash"] script.pl100644000765000024 30314742222207 15576 0ustar00nsteenlastaff000000000000Catmandu-1.2024/tuse Catmandu::Fix; sub { my ($data, $reject) = @_; if ($data->{answer} == 2) { return $reject; } else { $data->{answer} ||= 42; return $data; } } bin000755000765000024 014742222207 14126 5ustar00nsteenlastaff000000000000Catmandu-1.2024catmandu100755000765000024 2044514742222207 16035 0ustar00nsteenlastaff000000000000Catmandu-1.2024/bin#!perl use Catmandu; use Catmandu::CLI; use Cwd (); Catmandu->default_load_path(Cwd::getcwd); Catmandu::CLI->run // exit(2); =head1 NAME catmandu - LibreCat command line tools =head1 SYNOPSIS catmandu [-D|-D2|-D3] [-I path] [-L path] [COMMAND] [-?hqv] [long options...] [ARGS] catmandu --version catmandu help # convert catmandu convert JSON to YAML < file.json catmandu convert YAML to JSON < file.yaml catmandu convert YAML < file.yaml # 'to JSON' is implicit catmandu convert MARC < records.mrc catmandu convert MARC --fix 'marc_map(245,title)' < records.mrc catmandu convert MARC --fix myfixes.txt < records.mrc catmandu convert OAI --url https://biblio.ugent.be/oai catmandu convert SRU --base http://www.unicat.be/sru --query dna # import catmandu import JSON to MongoDB --database_name mydb < records.json catmandu import MARC to MongoDB --database_name mydb < records.mrc catmandu import MARC to ElasticSearch --index_name mydb < records.mrc catmandu import MARC to ElasticSearch --index_name mydb --fix 'marc_map("245a","title")' < records.mrc # export catmandu export MongoDB --database_name mydb --bag data to JSON catmandu export MongoDB --database_name mydb --bag data to JSON --fix 'retain("_id")' catmandu export Solr --url http://localhost:8983/solr to JSON catmandu export ElasticSearch --index_name mydb to JSON # copy catmandu copy MongoDB --database_name mydb to ElasticSearch --index_name mydb # show the contents of catmandu.yml catmandu config # count items in a store catmandu count test1 # delete items from store catmandu delete test1 -q 'title:"My Rabbit"' # run a fix script $ catmandu run myfixes.fix # or, create an executable fix script $ cat myfixes.fix #!/usr/local/bin/catmandu run do importer(OAI,url:"http://biblio.ugent.be/oai") retain(_id) end $ chmod 755 myfixes.fix $ ./myfixes.fix # configuration $ cat catmandu.yml --- store: test1: package: MongoDB options: database_name: mydb catmandu import JSON to test1 < records.json # show installed commands $ catmandu info $ catmandu info --namespace XML =head1 COMMANDS =head2 help COMMAND Documentation about command line options. =head2 config Display the contents of the catmandu.yml files in your project. =head2 convert IMPORTER [OPTIONS] [[--fix FIX]] to EXPORTER [OPTIONS] Convert data from one format to another format with help of Ls and Ls. All options given on the command line will be send to the Importer or Exporter as initialization parameters. E.g. catmandu convert OAI --url BASEURL --metadataPrefx PREFIX \ to \ CSV --header 1 --sep_char '|' Look at the documentation of all the importers and exporters to see which options are available. All importers accept one or more --fix options with the name of a fix file or file command. catmandu convert JSON --fix fixes.txt catmandu convert JSON --fix 'remove_field(abc)' The JSON exporter is implicit and is optional. catmandu convert YAML to JSON catmandu convert YAML # shorter =head2 copy STORE [OPTIONS] [-q QUERY] [--limit LIMIT] [[--fix FIX]] to STORE [OPTIONS] Copy items from one L to another. All options given on the command line will be send to the Stores as initialization parameters. Optionally a QUERY and LIMIT can be provided to selectively export items from the Store. Optionally a FIX can be provided to be executed on all the items before they are stored. =head2 count STORE [OPTIONS] Count the number of items in a L. All options given on the command line will be send to the store as initialization parameters. E.g. catmandu count MongoDB --database_name mydb --bag data =head2 delete STORE [OPTIONS] [-q QUERY] Delete items from a L. All options given on the command line will be send to the store as initialization parameters. Optionally a QUERY can be provided to select the items to delete. E.g. catmandu delete MongoDB --database_name mydb --bag data -q "title:Delete me" =head2 export STORE [OPTIONS] [-q QUERY] [--limit LIMIT] [[--fix FIX]] to EXPORTER [OPTIONS] Export items from a L using a L. All options given on the command line will be send to the Store or Exporter as initialization parameters. Optionally a QUERY and LIMIT can be provided to selectively export items from the Store. Optionally a FIX can be provided to be executed on all the items before they are exporter by the exporter. E.g. catmandu export MongoDB --database_name mydb --bag data -q "title:Perl" =head2 import IMPORTER [OPTIONS] [[--fix FIX]] to STORE [OPTIONS] Import items from a L to a L. All options given on the command line will be send to the Importer or Store as initialization parameters. Optionally a FIX can be provided to be executed on all the items before they are stored into the Store. catmandu import JSON to MongoDB --database_name mydb < records.json =head2 info [OPTIONS] List installed Catmandu modules (importers, exporters, stores, and fixes). =head2 run [FIX] Execute a fix script or run an interactive Fix shell. =head1 OPTIONS =over 4 =item -v Verbose output. This includes progress of operations. =item -h =item -? =item --lib-path PATH =item -I Specifies Perl library include paths, like perl's -I option. This option is repeatable. =item --load-path PATH =item -L PATH Search upwards from this path for configuration files and accompanying lib directories. This option is repeatable. =item --var [NAME]=[VALUE] Catmandu such as convert, import and export accept command line variables that can be read by any fix script provided. For instance, if provenance information need to be added to the output, then this can be provided via the command line: $ catmandu convert MARC --fix myfixes.txt --var source=Springer --var date=2016 < data.mrc with myfixes.txt a file like: add_field(source,{{source}}) add_field(data,{{date}}) ...(other fixes)... =item --debug [LEVEL] =item -D[LEVEL] Set the debugging level for Catmandu. LEVEL is one of: 1 - WARN messages 2 - INFO messages 3 - DEBUG messages Requires an installation of L and L. By default an internal log4perl configuration file is used that sends all debug messages to stderr. Optionally in the catmandu.yml the path to a log4perl configuration file can be set. E.g. catmandu.yml: log4perl: /etc/log4perl.conf or log4perl: " log4perl.category.Catmandu=$level,$appender log4perl.appender.STDOUT=Log::Log4perl::Appender::Screen log4perl.appender.STDOUT.stderr=0 log4perl.appender.STDOUT.utf8=1 log4perl.appender.STDOUT.layout=PatternLayout log4perl.appender.STDOUT.layout.ConversionPattern=%d [%P] - %p %l %M time=%r : %m%n log4perl.appender.STDERR=Log::Log4perl::Appender::Screen log4perl.appender.STDERR.stderr=0 log4perl.appender.STDERR.utf8=1 log4perl.appender.STDERR.layout=PatternLayout log4perl.appender.STDERR.layout.ConversionPattern=%d [%P] - %l : %m%n " See also L to enable logging for your own Catmandu packages. =back =head1 DATA OPTIONS =over 4 =item --fix EXPRESSION =item --fix FILE When exporting or storing apply a fix EXPRESSION or all the fixes in FILE on each item. This option is repeatable. =item --start NUM When exporting or storing data skip the first NUM items. =item --total NUM When exporting of storing data process only a total NUM of items. =item --replace When storing data first delete all the items in the Store or Bag. =item --query QUERY =item --cql-query QUERY | -q QUERY When a Store is searchable execute and return the results. Using the --cql-query or -q option the CQL query language can be used (if supported). =item --sort SORT =item --sru-sortkeys SORT Set the sort order for the results returned from a searchable Store. --sru-sortkeys is only available if the Store supports CQL. =item --limit NUM Limit the number of results returned from the searchable results to NUM. =item --count Report the number of items processed. =item --version Return the installed version of Catmandu. =back =head1 SEE ALSO L L L L L L L L =cut Catmandu.t100644000765000024 676114742222207 15714 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t#!/usr/bin/env perl use strict; use warnings; use Test::More; use Test::Exception; use Log::Any::Adapter; use Data::Dumper; use Cwd; use File::Spec; my $pkg; BEGIN { $pkg = 'Catmandu'; use_ok $pkg; } require_ok $pkg; # logging Log::Any::Adapter->set('Test'); isa_ok(Catmandu->log, 'Log::Any::Proxy', 'logger test'); isa_ok(Catmandu->log->adapter, 'Log::Any::Adapter::Test', 'logger test'); Catmandu->log->debug('debug test'); Catmandu->log->info('info test'); Catmandu->log->warn('warn test'); Catmandu->log->adapter->contains_ok(qr/debug test/, 'debug log'); Catmandu->log->adapter->contains_ok(qr/info test/, 'info log'); Catmandu->log->adapter->contains_ok(qr/warn test/, 'info log'); # default load path ok(my $curr_path = Catmandu->default_load_path, 'get current path'); Catmandu->default_load_path('/tmp'); is(Catmandu->default_load_path, '/tmp', 'got default_load_path'); Catmandu->default_load_path($curr_path); is(Catmandu->default_load_path, $curr_path, 'got default_load_path 2'); # load Catmandu->load; is(Catmandu->config->{test}, 'ok', 'load and conf test'); is(Catmandu->default_store, 'default', 'default store'); is(Catmandu->default_fixer, 'default', 'default fixer'); is(Catmandu->default_importer, 'default', 'default importer'); is(Catmandu->default_exporter, 'default', 'default exporter'); isa_ok(Catmandu->importer, 'Catmandu::Importer::YAML', 'importer test'); isa_ok(Catmandu->importer('mock'), 'Catmandu::Importer::Mock', 'importer test'); isa_ok(Catmandu->exporter, 'Catmandu::Exporter::YAML', 'exporter test'); isa_ok(Catmandu->exporter('csv'), 'Catmandu::Exporter::CSV', 'exporter test'); isa_ok(Catmandu->store, 'Catmandu::Store::Hash', 'store test'); isa_ok(Catmandu->store('hash'), 'Catmandu::Store::Hash', 'store test'); isa_ok(Catmandu->fixer, 'Catmandu::Fix', 'fixer test'); isa_ok(Catmandu->validator('test'), 'Catmandu::Validator::Mock', 'validator test'); # store caching { my $s1 = Catmandu->store('hash'); my $s2 = Catmandu->store('hash'); ok($s1 == $s2); $s2 = Catmandu->store('hash', foo => 'bar'); ok($s1 != $s2); } like(Catmandu->export_to_string({foo => 'bar'}, 'JSON'), qr/{"foo":"bar"}/, 'export_to_string'); my ($root_vol, $root_path, $root_file) = File::Spec->splitpath(File::Spec->catfile(getcwd(), 't')); my $root = File::Spec->catfile($root_path, $root_file); is(Catmandu->root, $root, 'root'); is_deeply(Catmandu->roots, [$root], 'roots'); is(Catmandu->default_importer_package, 'JSON', 'default_importer_package'); is(Catmandu->default_exporter_package, 'JSON', 'default_exporter_package'); my $exporter = Catmandu->exporter('Mock'); Catmandu->export({n => 1}, $exporter); is_deeply($exporter->as_arrayref, [{n => 1}]); # set config Catmandu->config({test => 'reload'}); is(Catmandu->config->{test}, 'reload', 'reload config'); # define Catmandu->define_importer(foo => JSON => line_delimited => 1); is_deeply(Catmandu->config->{importer}{foo}, {package => 'JSON', options => {line_delimited => 1}}); Catmandu->define_exporter(foo => JSON => line_delimited => 1); is_deeply(Catmandu->config->{exporter}{foo}, {package => 'JSON', options => {line_delimited => 1}}); Catmandu->define_store(foo => HASH => init_data => [{_id => 1}]); is_deeply(Catmandu->config->{store}{foo}, {package => 'HASH', options => {init_data => [{_id => 1}]}}); Catmandu->define_fixer(foo => ['capitalize(foo)']); is_deeply(Catmandu->config->{fixer}{foo}, ['capitalize(foo)']); done_testing; small.json100644000765000024 14114742222207 15740 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t{"hello":"ვეპხის ტყაოსანი შოთა რუსთაველი"} small.yaml100644000765000024 14114742222207 15731 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t--- hello: ვეპხის ტყაოსანი შოთა რუსთაველი myfixes.fix100644000765000024 21114742222207 16127 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t# For use in t/Catmandu-Fix.t add_field(utf8_name,'ვეპხის ტყაოსანი შოთა რუსთაველი')planets.csv100644000765000024 13114742222207 16117 0ustar00nsteenlastaff000000000000Catmandu-1.2024/tenglish,latin,_id Sun,Sol,Sun Mercury,Mercurius,Mercury Moon,Luna,Moon Earth,Terra,Earth planets.tab100644000765000024 7714742222207 16063 0ustar00nsteenlastaff000000000000Catmandu-1.2024/tenglish latin Sun Sol Mercury Mercurius Moon Luna Earth Terra russian.txt100644000765000024 76514742222207 16176 0ustar00nsteenlastaff000000000000Catmandu-1.2024/tНа берегу пустынных волн Стоял он, дум великих полн, И вдаль глядел. Пред ним широко Река неслася; бедный чёлн По ней стремился одиноко. По мшистым, топким берегам Чернели избы здесь и там, Приют убогого чухонца; И лес, неведомый лучам В тумане спрятанного солнца, Кругом шумел.docker000755000765000024 014742222207 14625 5ustar00nsteenlastaff000000000000Catmandu-1.2024apt.txt100644000765000024 140014742222207 16305 0ustar00nsteenlastaff000000000000Catmandu-1.2024/docker# Catmandu dependencies as Debian packages # This list is used to build Docker images. See also # https://salsa.debian.org/perl-team/modules/packages/libcatmandu-perl libany-uri-escape-perl libasa-perl libcgi-expand-perl libclone-perl libconfig-onion-perl libcpanel-json-xs-perl libdata-compare-perl libdata-util-perl libdata-uuid-perl libhash-merge-simple-perl libio-handle-util-perl liblist-moreutils-perl liblog-any-perl libmime-types-perl libmodule-info-perl libmoo-perl libmoox-aliases-perl libnamespace-clean-perl libparser-mgc-perl libpath-iterator-rule-perl libpath-tiny-perl libsub-exporter-perl libtext-csv-perl libtext-hogan-perl libthrowable-perl libtry-tiny-byclass-perl liburi-perl liburi-template-perl libwww-perl libyaml-libyaml-perl build-essential catmandu.yml100644000765000024 123614742222207 16302 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t--- test: ok importer: default: package: YAML mock: package: Mock exporter: default: package: YAML csv: package: CSV store: default: package: Hash hash: package: Hash test: package: Hash options: init_data: - _id: Sun value: Sol - _id: Mercury value: Mercurius - _id: Moon value: Luna - _id: Earth value: Terra validator: test: package: Mock options: message: invalid reject: 1 fixer: default: - nothing() other: - nothing() lib000755000765000024 014742222207 14124 5ustar00nsteenlastaff000000000000Catmandu-1.2024Catmandu.pm100644000765000024 2075214742222207 16404 0ustar00nsteenlastaff000000000000Catmandu-1.2024/libpackage Catmandu; use Catmandu::Sane; our $VERSION = '1.2024'; use Catmandu::Env; use Catmandu::Util qw(:is); use File::Spec; use namespace::clean; use Sub::Exporter::Util qw(curry_method); use Sub::Exporter -setup => { exports => [ config => curry_method, log => curry_method, store => curry_method, fixer => curry_method, importer => curry_method, exporter => curry_method, validator => curry_method, export => curry_method, export_to_string => curry_method, import_from_string => curry_method ], collectors => {'-load' => \'_import_load', ':load' => \'_import_load',}, }; sub _import_load { my ($self, $value, $data) = @_; if (is_array_ref $value) { $self->load(@$value); } else { $self->load; } 1; } sub _env { my ($class, $env) = @_; state $loaded_env; $loaded_env = $env if defined $env; $loaded_env ||= Catmandu::Env->new(load_paths => $class->default_load_path); } sub log {$_[0]->_env->log} sub default_load_path { # TODO move to Catmandu::Env my ($class, $path) = @_; state $default_path; $default_path = $path if defined $path; $default_path //= do { my $script = File::Spec->rel2abs($0); my ($script_vol, $script_path, $script_name) = File::Spec->splitpath($script); my @dirs = grep length, File::Spec->splitdir($script_path); if ($dirs[-1] eq 'bin') { pop @dirs; File::Spec->catdir(File::Spec->rootdir, @dirs); } else { $script_path; } }; } sub load { my $class = shift; my $paths = [@_ ? @_ : $class->default_load_path]; my $env = Catmandu::Env->new(load_paths => $paths); $class->_env($env); $class; } sub roots { $_[0]->_env->roots; } sub root { $_[0]->_env->root; } sub config { my ($class, $config) = @_; if ($config) { my $env = Catmandu::Env->new(load_paths => $class->_env->load_paths); $env->_set_config($config); $class->_env($env); } $class->_env->config; } sub default_store {$_[0]->_env->default_store} sub store { my $class = shift; $class->_env->store(@_); } sub default_fixer {$_[0]->_env->default_fixer} sub fixer { my $class = shift; $class->_env->fixer(@_); } sub default_importer {$_[0]->_env->default_importer} sub default_importer_package {$_[0]->_env->default_importer_package} sub importer { my $class = shift; $class->_env->importer(@_); } sub default_exporter {$_[0]->_env->default_exporter} sub default_exporter_package {$_[0]->_env->default_exporter_package} sub exporter { my $class = shift; $class->_env->exporter(@_); } sub validator { my $class = shift; $class->_env->validator(@_); } sub export { my $class = shift; my $data = shift; my $exporter = $class->_env->exporter(@_); is_hash_ref($data) ? $exporter->add($data) : $exporter->add_many($data); $exporter->commit; return; } sub export_to_string { my $class = shift; my $data = shift; my $name = shift; my %opts = ref $_[0] ? %{$_[0]} : @_; my $str = ""; my $exporter = $class->_env->exporter($name, %opts, file => \$str); is_hash_ref($data) ? $exporter->add($data) : $exporter->add_many($data); $exporter->commit; $str; } sub import_from_string { my $class = shift; my $str = shift; my $name = shift; my %opts = ref $_[0] ? %{$_[0]} : @_; $class->_env->importer($name, %opts, file => \$str)->to_array(); } sub define_importer { my $class = shift; my $name = shift; my $package = shift; my $options = ref $_[0] ? $_[0] : {@_}; $class->config->{importer}{$name} = {package => $package, options => $options}; } sub define_exporter { my $class = shift; my $name = shift; my $package = shift; my $options = ref $_[0] ? $_[0] : {@_}; $class->config->{exporter}{$name} = {package => $package, options => $options}; } sub define_store { my $class = shift; my $name = shift; my $package = shift; my $options = ref $_[0] ? $_[0] : {@_}; $class->config->{store}{$name} = {package => $package, options => $options}; } sub define_fixer { my $class = shift; my $name = shift; my $fixes = ref $_[0] ? $_[0] : [@_]; $class->config->{fixer}{$name} = $fixes; } 1; __END__ =pod =head1 NAME Catmandu - a data toolkit =head1 SYNOPSIS # From the command line # Convert data from one format to another $ catmandu convert JSON to CSV < data.json $ catmandu convert CSV to YAML < data.csv $ catmandu convert MARC to YAML < data.mrc # Fix data, add, delete, change fields $ catmandu convert JSON --fix 'move_field(title,my_title)' < data.json $ catmandu convert JSON --fix all_my_fixes.txt < data.json # Use a moustache preprocessor on the fix script $ catmandu convert JSON --fix all_my_fixes.txt --var opt1=foo --var opt2=bar < data.json # run a fix script $ catmandu run myfixes.fix # or, create an executable fix script $ cat myfixes.fix #!/usr/local/bin/catmandu run do importer(OAI,url:"http://biblio.ugent.be/oai") retain(_id) end $ chmod 755 myfixes.fix $ ./myfixes.fix =head1 DESCRIPTION Catmandu provides a command line tools for the conversion of various data formats including: JSON, YAML, RDF, CSV, TSV, XML and even Excel. Using extension modules, specialized conversions for metadata formats using in libraries, archives and museums is also supports. We provide support for MARC, MAB, MODS, OAI-PMH, PICA, PNX, RIS, LIDO, SRU and Z39.50. Specialized conversions require a mapping language. This is implemented in Catmandu using the `Fix` language. For a short introduction read L. Online tutorials can be found at the end of this document. =head1 INSTALL =head2 From Source # Clone the directory git clone https://github.com/LibreCat/Catmandu # Build cd Catmandu cpanm -n -q --installdeps --skip-satisfied . perl Build.PL && ./Build && ./Build install =head2 Using Docker docker build -t librecat/catmandu . # Run catmandu with access to you local files at docker run -v :/home/catmandu/Home -it librecat/catmandu # E.g. docker run -v C:\Users\alice:/home/catmandu/Home -it librecat/catmandu =head1 INSTALL EXTENSIONS cpanm install # E.g. cpanm install Catmandu::MARC =head1 POPULAR EXTENSIONS L L L L L L L L L L L L L =head1 SEE ALSO =over 4 =item introduction L =item documentation L =item blog L =item step-by-step introduction from basics L =item command line client L =item Perl API L =back =head1 AUTHOR Nicolas Steenlant, C<< >> =head1 CONTRIBUTORS Patrick Hochstenbach, C<< patrick.hochstenbach at ugent.be >> Nicolas Franck, C<< nicolas.franck at ugent.be >> Johann Rolschewski, C<< jorol at cpan.org >> Vitali Peil, C<< vitali.peil at uni-bielefeld.de >> Jakob Voss, C<< nichtich at cpan.org >> Magnus Enger, C<< magnus at enger.priv.no >> Christian Pietsch, C<< christian.pietsch at uni-bielefeld.de >> Dave Sherohman, C<< dave.sherohman at ub.lu.se >> Snorri Briem, C<< snorri.briem at ub.lu.se >> Pieter De Praetere, C<< pieter.de.praetere at helptux.be >> Doug Bell Upsana, C<< me at upasana.me >> Stefan Weil Tom Hukins =head1 QUESTIONS, ISSUES & BUG REPORTS For any questions on the use of our modules please join our mailing list at: librecat-dev@lists.uni-bielefeld.de or send in your bug reports or feature requests to our issue tracker at: https://github.com/LibreCat/Catmandu/issues =head1 LICENSE AND COPYRIGHT This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See L for more information. =cut csv_test.json100644000765000024 4414742222207 16444 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t{"ok":1,"foo":"bar"} {"fob":"test"} log4perl.conf100644000765000024 111114742222207 16352 0ustar00nsteenlastaff000000000000Catmandu-1.2024/tlog4perl.category.Catmandu=DEBUG,STDERR log4perl.categoty.Catmandu::Fix::log=TRACE,STDERR log4perl.appender.STDOUT=Log::Log4perl::Appender::Screen log4perl.appender.STDOUT.stderr=0 log4perl.appender.STDOUT.utf8=1 log4perl.appender.STDOUT.layout=PatternLayout log4perl.appender.STDOUT.layout.ConversionPattern=%d [%P] - %p %l %M time=%r : %m%n log4perl.appender.STDERR=Log::Log4perl::Appender::Screen log4perl.appender.STDERR.stderr=1 log4perl.appender.STDERR.utf8=1 log4perl.appender.STDERR.layout=PatternLayout log4perl.appender.STDERR.layout.ConversionPattern=%d [%P] - %l : %m%nvariables.fix100644000765000024 25614742222207 16424 0ustar00nsteenlastaff000000000000Catmandu-1.2024/tmove_field({{source}}, {{target}}) {{#others}} add_field(other_{{.}},{{.}}) {{/others}} {{#beer}} add_field(drunk,yes) {{/beer}} {{#milk}} set_field(drunk,no) {{/milk}}Catmandu-Bag.t100644000765000024 1127514742222207 16417 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t#!/usr/bin/env perl use strict; use warnings; use Test::More; use Test::Exception; use Role::Tiny; use Catmandu::Util; my $pkg; BEGIN { $pkg = 'Catmandu::Bag'; use_ok $pkg; } require_ok $pkg; { package T::BagWithoutGet; use Moo; sub generator { } sub add { } sub delete { } sub delete_all { } package T::BagWithoutDelete; use Moo; sub generator { } sub add { } sub get { } sub delete_all { } package T::BagWithoutDeleteAll; use Moo; sub generator { } sub add { } sub get { } sub delete { } package T::Store; use Moo; with 'Catmandu::Store'; package T::Bag; #mock array based bag use Moo; use Clone; with $pkg; has bag => (is => 'ro', default => sub {[]}); sub generator { my $bag = $_[0]->bag; my $n = 0; sub { return $bag->[$n++] if $n < @$bag; return; }; } sub add { my ($self, $data) = @_; $data = Clone::clone($data); my $bag = $self->bag; my $key = $self->id_key; for (my $i = 0; $i < @$bag; $i++) { if ($bag->[$i]->{$key} eq $data->{$key}) { $bag->[$i] = $data; return; } } push @$bag, $data; } sub get { my ($self, $id) = @_; my $bag = $self->bag; my $key = $self->id_key; for (my $i = 0; $i < @$bag; $i++) { if ($bag->[$i]->{$key} eq $id) { return $bag->[$i]; } } return; } sub delete { my ($self, $id) = @_; my $bag = $self->bag; my $key = $self->id_key; for (my $i = 0; $i < @$bag; $i++) { if ($bag->[$i]->{$key} eq $id) { splice @$bag, $i, 1; return; } } } sub delete_all { my ($self) = @_; my $bag = $self->bag; splice @$bag; } package T::BagData; use Moo; package T::IdGenerator; use Catmandu::Util; use Moo; with 'Catmandu::Bag::IdGenerator'; sub generate { my ($self, $bag) = @_; die unless Catmandu::Util::is_instance($bag, 'T::Bag'); 1; } } throws_ok {Role::Tiny->apply_role_to_package('T::BagWithoutGet', $pkg)} qr/missing get/; throws_ok {Role::Tiny->apply_role_to_package('T::BagWithoutDelete', $pkg)} qr/missing delete/; throws_ok {Role::Tiny->apply_role_to_package('T::BagWithoutDeleteAll', $pkg)} qr/missing delete_all/; my $b = T::Bag->new(store => T::Store->new, name => 'test'); ok $b->does('Catmandu::Iterable'); ok $b->does('Catmandu::Addable'); can_ok $b, 'generate_id'; can_ok $b, 'commit'; can_ok $b, 'exists'; can_ok $b, 'get_or_add'; can_ok $b, 'to_hash'; ok Catmandu::Util::is_value($b->generate_id); throws_ok {$b->add(T::BagData->new)} qr/should be hash ref/; throws_ok {$b->add([])} qr/should be hash ref/; throws_ok {$b->add("")} qr/should be hash ref/; throws_ok {$b->add({_id => T::BagData->new})} qr/should be value/; throws_ok {$b->add({_id => *STDOUT})} qr/should be value/; lives_ok {$b->add({_id => ""})}; lives_ok {$b->add({_id => "0"})}; lives_ok {$b->add({_id => 0})}; $b->add_many([{}, {}, {}]); $b->delete_all; is $b->count, 0; my $data = {a => {shrimp => 'shrieks'}}; $b->add($data); ok Catmandu::Util::is_value($data->{_id}); is_deeply $b->get($data->{_id}), $data; is $b->exists($data->{_id}), 1; $b->delete($data->{_id}); is $b->get($data->{_id}), undef; is $b->exists($data->{_id}), 0; $b->add($data); is_deeply $b->get_or_add($data->{_id}, {a => {pony => 'wails'}}), $data; is_deeply $b->to_hash, {$data->{_id} => $data}; $b->touch('datestamp'); ok $b->all(sub {$_[0]->{datestamp}}); # store custom key_prefix $b = T::Bag->new(store => T::Store->new(key_prefix => 'my_'), name => 'test'); is $b->id_key, 'my_id'; # custom id_key $b = T::Bag->new( store => T::Store->new(key_prefix => '__'), name => 'test', id_key => 'my_id' ); $data = $b->add({}); is $data->{_id}, undef; is $data->{__id}, undef; ok exists($data->{my_id}); isnt $b->get($data->{my_id}), undef; $b->delete($data->{my_id}); is $b->get($data->{my_id}), undef; # id_field alias $b = T::Bag->new( store => T::Store->new(key_prefix => '__'), name => 'test', id_field => 'my_id' ); $data = $b->add({}); is $data->{_id}, undef; is $data->{__id}, undef; ok exists($data->{my_id}); isnt $b->get($data->{my_id}), undef; $b->delete($data->{my_id}); is $b->get($data->{my_id}), undef; # custom id generator $b = T::Bag->new( store => T::Store->new, name => 'test', id_generator => T::IdGenerator->new, ); lives_ok {$b->generate_id}; done_testing; Catmandu-CLI.t100644000765000024 705214742222207 16313 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t#!/usr/bin/env perl use strict; use warnings; use Test::More; use Test::Exception; use App::Cmd::Tester; my $pkg; BEGIN { $pkg = 'Catmandu::CLI'; use_ok $pkg; } require_ok $pkg; { package Catmandu::Fix::thisFixThrowsAnError; use Catmandu::Sane; use Moo; sub fix {Catmandu::FixError->throw("bad boy");} } # check -I / --lib_path if ($^O ne 'MSWin32') { # /dev/null required # TODO Catmandu dies if testing with output to STDOUT my $res; $res = test_app( 'Catmandu::CLI' => [ qw( -I t/lib convert Values --values 1;2;8 to JSON --file /dev/null ) ] ); ok !$res->error; is $res->stderr, ""; $res = test_app( 'Catmandu::CLI' => [ qw( -I t/lib convert Values --values 1;2;8 to NotFound --file /dev/null ) ] ); ok !$res->error; like $res->stderr, qr/Oops! Can't find the exporter 'NotFound'/; } { my $result = test_app(qq|Catmandu::CLI| => [qw(-D3 help)]); like $result->stderr, qr/(debug activated|Log::Log4perl)/, 'see some debug information'; } { my $result = test_app(qq|Catmandu::CLI| => [qw(convert help)]); like $result->stderr, qr/Did you mean 'catmandu help convert'/, 'wrong order help command'; } { my $result = test_app( qq|Catmandu::CLI| => [qw(convert Null to Null --fix testing123() )]); like $result->stderr, qr/Oops/, 'wrong fix error'; } { my $result = test_app( qq|Catmandu::CLI| => [qw(convert Null to Null --fix), "test("]); like $result->stderr, qr/Oops/, 'syntax error'; } { my $result = test_app(qq|Catmandu::CLI| => [qw(convert Null to Null --fix thisFixThrowsAnError())]); like $result->stderr, qr/One of your fixes threw an error/, 'fix error'; } { my $result = test_app( qq|Catmandu::CLI| => [qw(convert Null to Null --fix add_field())]); like $result->stderr, qr/Oops/, 'wrong arguments'; } { my $result = test_app(qq|Catmandu::CLI| => [qw(convert Null to Testing123 )]); like $result->stderr, qr/Catmandu::Exporter::Testing123/, 'wrong exporter error'; } { my $result = test_app(qq|Catmandu::CLI| => [qw(-D convert Null to Null)]); like $result->stderr, qr/debug activated/, 'debug activated'; } { Catmandu->config->{log4perl} = < [qw(-D convert Null to Null)]); like $result->stderr, qr/defined in catmandu\.yml/, 'debug activated via catmandu.yml'; } { Catmandu->config->{log4perl} = 't/log4perl.conf'; my $result = test_app(qq|Catmandu::CLI| => [qw(-D convert Null to Null)]); like $result->stderr, qr/file: t\/log4perl\.conf/, 'debug activated via t/log4perl.conf'; } { my $result = test_app(qq|Catmandu::CLI| => [qw(convert JSON --file http://google.com/nonononono to Null)]); like $result->stderr, qr/Oops! Got a HTTP error/, 'Got an HTTP error'; } done_testing; Catmandu-Cmd.t100644000765000024 307314742222207 16406 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t#!/usr/bin/env perl use strict; use warnings; use Test::More; use Test::Exception; use App::Cmd::Tester; my $pkg; BEGIN { $pkg = 'Catmandu::Cmd'; use_ok $pkg; } require_ok $pkg; use Catmandu::CLI; my $result = test_app(qq|Catmandu::CLI| => [qw()]); like $result->stdout, qr/help:/, 'printed what we expected'; is $result->error, undef, 'threw no exceptions'; is $result->stderr, '', 'nothing sent to sderr'; $result = test_app('Catmandu::CLI' => [qw(help)]); like $result->stdout, qr/commands:/, 'printed what we expected'; is $result->error, undef, 'threw no exceptions'; is $result->stderr, '', 'nothing sent to sderr'; $result = test_app('Catmandu::CLI' => [qw(-h)]); like $result->stdout, qr/commands:/, 'printed what we expected'; is $result->error, undef, 'threw no exceptions'; is $result->stderr, '', 'nothing sent to sderr'; $result = test_app('Catmandu::CLI' => [qw(--help)]); like $result->stdout, qr/commands:/, 'printed what we expected'; is $result->error, undef, 'threw no exceptions'; is $result->stderr, '', 'nothing sent to sderr'; $result = test_app('Catmandu::CLI' => [qw(version)]); like $result->stdout, qr/version $Catmandu::VERSION/, 'printed what we expected'; is $result->error, undef, 'threw no exceptions'; is $result->stderr, '', 'nothing sent to sderr'; $result = test_app('Catmandu::CLI' => [qw(--version)]); like $result->stdout, qr/version $Catmandu::VERSION/, 'printed what we expected'; is $result->error, undef, 'threw no exceptions'; is $result->stderr, '', 'nothing sent to sderr'; done_testing 20; Catmandu-Env.t100644000765000024 173714742222207 16440 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t#!/usr/bin/env perl use strict; use warnings; use Test::More; use Test::Exception; my $pkg; BEGIN { $pkg = 'Catmandu::Env'; use_ok $pkg; } require_ok $pkg; my $env = Catmandu::Env->new(load_paths => [qw(t/)]); ok $env, qq|new|; like $env->root, qr/t$/, 'got root'; isa_ok $env->store, qq|Catmandu::Store::Hash|, qq|store()|; isa_ok $env->store('hash'), qq|Catmandu::Store::Hash|, qq|store(hash)|; isa_ok $env->fixer, qq|Catmandu::Fix|, qq|fixer|; isa_ok $env->fixer('other'), qq|Catmandu::Fix|, qq|fixer(other)|; isa_ok $env->importer, qq|Catmandu::Importer::YAML|, qq|importer()|; isa_ok $env->importer('mock'), qq|Catmandu::Importer::Mock|, qq|importer(mock)|; isa_ok $env->exporter, qq|Catmandu::Exporter::YAML|, qq|exporter()|; isa_ok $env->exporter('csv'), qq|Catmandu::Exporter::CSV|, qq|exporter(csv)|; isa_ok $env->validator('test'), qq|Catmandu::Validator::Mock|, qq|validator(mock)|; done_testing; Catmandu-Fix.t100644000765000024 1672114742222207 16455 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t#!/usr/bin/env perl use strict; use utf8; use warnings; use Test::More; use Test::Exception; use IO::File; use Catmandu::Importer::Mock; use Catmandu::Util qw(:is); my $pkg; BEGIN { $pkg = 'Catmandu::Fix'; use_ok $pkg; } require_ok $pkg; my $fixer = Catmandu::Fix->new(fixes => []); ok $fixer, 'create a new fixer'; is_deeply $fixer->fix({}), {}, 'fixing hashes'; is_deeply $fixer->fix({name => 'value'}), {name => 'value'}; is_deeply $fixer->fix({name => {name => 'value'}}), {name => {name => 'value'}}; is_deeply $fixer->fix({name => [{name => 'value'}]}), {name => [{name => 'value'}]}; throws_ok {$fixer->fix(IO::File->new("fix([]), [], 'fixing arrays'; is_deeply $fixer->fix([{name => 'value'}]), [{name => 'value'}]; is_deeply $fixer->fix([{name => {name => 'value'}}]), [{name => {name => 'value'}}]; is_deeply $fixer->fix([{name => [{name => 'value'}]}]), [{name => [{name => 'value'}]}]; ok $fixer->fix(Catmandu::Importer::Mock->new(size => 13)), 'fixing iterators'; my $it = $fixer->fix(Catmandu::Importer::Mock->new(size => 13)); can_ok $it, 'count'; is $it->count, 13; my $gen_n = 3; my $ref = $fixer->fix( sub { return undef unless $gen_n--; return {n => $gen_n}; } ); ok $ref, 'fixing a coderef'; ok is_code_ref($ref); is $ref->()->{n}, 2; is $ref->()->{n}, 1; is $ref->()->{n}, 0; is $ref->(), undef; # test logging can_ok $fixer, 'log'; isa_ok $fixer->log, 'Log::Any::Proxy'; isa_ok $fixer->log->adapter, 'Log::Any::Adapter::Null'; # test error handling { package DieFix; use Moo; with 'Catmandu::Fix::Base'; sub emit {'die;'} } $fixer = Catmandu::Fix->new(fixes => [DieFix->new]); throws_ok { $fixer->fix({}); } 'Catmandu::FixError'; $fixer = Catmandu::Fix->new(fixes => ['t/myfixes.fix']); ok $fixer; is_deeply $fixer->fix({}), {utf8_name => 'ვეპხის ტყაოსანი შოთა რუსთაველი' }, 'fixing utf8'; open(FH, '<:encoding(UTF-8)', 't/myfixes.fix'); $fixer = Catmandu::Fix->new(fixes => [\*FH]); ok $fixer; is_deeply $fixer->fix({}), {utf8_name => 'ვეპხის ტყაოსანი შოთა რუსთაველი' }, 'fixing utf8'; close(FH); $fixer = Catmandu::Fix->new(fixes => [IO::File->new('< t/myfixes.fix')]); ok $fixer; is_deeply $fixer->fix({}), {utf8_name => 'ვეპხის ტყაოსანი შოთა რუსთაველი' }, 'fixing utf8'; # get $fixer = Catmandu::Fix->new(fixes => ['copy_field(data.$first,test)']); is_deeply $fixer->fix({data => [qw(0 1 2)]}), {data => [qw(0 1 2)], test => 0}, 'get $first test'; $fixer = Catmandu::Fix->new(fixes => ['copy_field(data.$last,test)']); is_deeply $fixer->fix({data => [qw(0 1 2)]}), {data => [qw(0 1 2)], test => 2}, 'get $last test'; $fixer = Catmandu::Fix->new(fixes => ['copy_field(data.1,test)']); is_deeply $fixer->fix({data => [qw(0 1 2)]}), {data => [qw(0 1 2)], test => 1}, 'get position test arary'; $fixer = Catmandu::Fix->new(fixes => ['copy_field(data.1,test)']); is_deeply $fixer->fix({data => {1 => 1}}), {data => {1 => 1}, test => 1}, 'get position test hash'; $fixer = Catmandu::Fix->new(fixes => ['copy_field(data.*,test)']); is_deeply $fixer->fix({data => [qw(0 1 2)]}), {data => [qw(0 1 2)], test => 2}, 'get star test arary'; # set $fixer = Catmandu::Fix->new(fixes => ['copy_field(data,test.1)']); is_deeply $fixer->fix({data => 1}), {data => 1, test => [undef, 1]}, 'set position test'; $fixer = Catmandu::Fix->new(fixes => ['copy_field(data,test.$first)']); is_deeply $fixer->fix({data => 1, test => [qw(0 1 2)]}), {data => 1, test => [qw(1 1 2)]}, 'set $first test'; $fixer = Catmandu::Fix->new(fixes => ['copy_field(data,test.$last)']); is_deeply $fixer->fix({data => 1, test => [qw(0 1 2)]}), {data => 1, test => [qw(0 1 1)]}, 'set $last test'; $fixer = Catmandu::Fix->new(fixes => ['copy_field(data,test.$prepend)']); is_deeply $fixer->fix({data => 1, test => [qw(0 1 2)]}), {data => 1, test => [qw(1 0 1 2)]}, 'set $prepend test'; $fixer = Catmandu::Fix->new(fixes => ['copy_field(data,test.$append)']); is_deeply $fixer->fix({data => 1, test => [qw(0 1 2)]}), {data => 1, test => [qw(0 1 2 1)]}, 'set $append test'; $fixer = Catmandu::Fix->new(fixes => ['copy_field(data,test.*)']); is_deeply $fixer->fix({data => 1, test => [qw(0 1 2)]}), {data => 1, test => [qw(1 1 1)]}, 'set star test'; $fixer = Catmandu::Fix->new(fixes => ['copy_field(data,test.1)']); is_deeply $fixer->fix({data => 1, test => {}}), {data => 1, test => {1 => 1}}, 'set hash test'; # non matching paths are ignored $fixer = Catmandu::Fix->new(fixes => ['upcase(data.0)']); is_deeply $fixer->fix({}), {}, 'non matching paths are ignored'; # delete $fixer = Catmandu::Fix->new(fixes => ['remove_field(data.$first)']); is_deeply $fixer->fix({data => [qw(0 1 2)]}), {data => [qw(1 2)]}, 'remove $first test'; $fixer = Catmandu::Fix->new(fixes => ['remove_field(data.$last)']); is_deeply $fixer->fix({data => [qw(0 1 2)]}), {data => [qw(0 1)]}, 'remove $last test'; $fixer = Catmandu::Fix->new(fixes => ['remove_field(data.1)']); is_deeply $fixer->fix({data => [qw(0 1 2)]}), {data => [qw(0 2)]}, 'remove position test arary'; $fixer = Catmandu::Fix->new(fixes => ['remove_field(data.1)']); is_deeply $fixer->fix({data => {1 => 1}}), {data => {}}, 'remove position test hash'; $fixer = Catmandu::Fix->new(fixes => ['remove_field(data.*)']); is_deeply $fixer->fix({data => [qw(0 1 2)]}), {data => []}, 'remove star test arary'; # retain $fixer = Catmandu::Fix->new(fixes => ['retain_field(data.$first)']); is_deeply $fixer->fix({data => [qw(0 1 2)]}), {data => [qw(0)]}, 'retain_field $first test'; $fixer = Catmandu::Fix->new(fixes => ['retain_field(data.$last)']); is_deeply $fixer->fix({data => [qw(0 1 2)]}), {data => [qw(2)]}, 'retain_field $last test'; $fixer = Catmandu::Fix->new(fixes => ['retain_field(data.1)']); is_deeply $fixer->fix({data => [qw(0 1 2)]}), {data => [qw(1)]}, 'retain_field position test arary'; $fixer = Catmandu::Fix->new(fixes => ['retain_field(data.1)']); is_deeply $fixer->fix({data => {1 => 1, 2 => 2}}), {data => {1 => 1}}, 'retain_field position test hash'; $fixer = Catmandu::Fix->new(fixes => ['retain_field(data.*)']); is_deeply $fixer->fix({data => [qw(0 1 2)]}), {data => [qw(0 1 2)]}, 'retain_field star test arary'; $fixer = Catmandu::Fix->new(fixes => ['retain_field(data.*)']); is_deeply $fixer->fix({data => {1 => 1, 2 => 2}}), {data => {1 => 1, 2 => 2}}, 'retain_field star test hash'; # path delimiter escapes $fixer = Catmandu::Fix->new(fixes => [q|add_field('with\.a\.dot', Train)|]); is_deeply $fixer->fix({}), {'with.a.dot' => 'Train'}, "add field with.a.dot"; $fixer = Catmandu::Fix->new(fixes => [q|copy_field('with\.a.dot', no.dot)|]); is_deeply $fixer->fix({'with.a' => {'dot' => 'Train'}}), {'no' => {'dot' => 'Train'}, 'with.a' => {'dot' => 'Train'}}, "move field with a dot to one without"; # preprocessing and variables $fixer = Catmandu::Fix->new( fixes => ['t/variables.fix'], preprocess => 1, variables => { source => 'field1', target => 'field2', others => [qw(0 1)], beer => 1, milk => 0, } ); is_deeply $fixer->fix({field1 => 'value'}), {field2 => 'value', other_0 => 0, other_1 => 1, drunk => 'yes'}, 'preprocessing: variable interpolation'; done_testing; non_ascii.json100644000765000024 125731514742222207 16714 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t{"nkc":"jn20000700183","version":"2013-07-01T14:07:50Z","_id":"000290adb8fba464410b5466d462565d","dnb":"118950363","ptbnp":"521529","term":"Blavier, André (1922-2001)","key":"BlavierAndré(1922-2001)","nlilat":"000453847","viafid":"84032513","merge":{"source":"viaf","id":"000290adb8fba464410b5466d462565d","type":"document"},"lc":"n83068143","bnf":"11892331"} {"viafid":"286014815","merge":{"source":"viaf","id":"0008dd5e2e29146396bdc33a5507d8db","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0008dd5e2e29146396bdc33a5507d8db","term":"Cremers, Johannes Franciscus Nicolai͏̈, 1794-1869","key":"CremersJohannesFranciscusNicolai͏̈1794-1869"} {"viafid":"175459792","merge":{"source":"viaf","id":"000b589c85becfc475adc24796a724eb","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"000b589c85becfc475adc24796a724eb","lc":"n91015146","term":"Huldén, Lars, 1926- | Poems. English & Swedish. Selections","key":"HuldénLars1926-|PoemsEnglish&SwedishSelections"} {"nkc":"nlk20000079951","version":"2013-07-01T14:07:50Z","_id":"000df8d92f34f05cc4160fa29becca75","dnb":"117604941","term":"Birch-Hirschfeld, Félix Victor, 1842-1899","key":"Birch-HirschfeldFélixVictor1842-1899","viafid":"64788748","merge":{"source":"viaf","id":"000df8d92f34f05cc4160fa29becca75","type":"document"}} {"nkc":"js2007409740","version":"2013-07-01T14:07:50Z","_id":"0013b61a7d0596e2b1aa673a4a916e79","dnb":"133566072","term":"Perković, Luka, 1900-1948","key":"PerkovićLuka1900-1948","viafid":"50419725","merge":{"source":"viaf","id":"0013b61a7d0596e2b1aa673a4a916e79","type":"document"},"lc":"no94032408","bnf":"12782600"} {"version":"2013-07-01T14:07:50Z","_id":"00165496a9ff6e91a2ab41120d2f6ee3","dnb":"116488808","ptbnp":"31707","term":"Charavay, Étienne, 1848-1899","key":"CharavayÉtienne1848-1899","nlilat":"000408740","viafid":"44296659","merge":{"source":"viaf","id":"00165496a9ff6e91a2ab41120d2f6ee3","type":"document"},"lc":"n50036362","bnf":"11896108","bav":"adv10190502"} {"viafid":"80889375","merge":{"source":"viaf","id":"00178c20ba1320201f9e073b80997f41","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"00178c20ba1320201f9e073b80997f41","dnb":"136566871","term":"Günther, Alfred 1885-1969","key":"GüntherAlfred1885-1969"} {"nkc":"xx0120410","version":"2013-07-01T14:07:50Z","_id":"001e040384826d3da680b19cd354a0d9","dnb":"187052409","ptbnp":"110413","term":"Rondet, Laurent-Étienne, 1717-1785","key":"RondetLaurent-Étienne1717-1785","viafid":"27074636","nlilat":"000112915","merge":{"source":"viaf","id":"001e040384826d3da680b19cd354a0d9","type":"document"},"lc":"nr97032882","bnf":"11997069","bav":"adv11138955"} {"nkc":"jn20011018054","selibr":"242495","version":"2013-07-01T14:07:50Z","_id":"001e0fff1b755a9215b723dca2bb1ee6","bne":"xx1723390","dnb":"121829855","ptbnp":"196118","term":"Herczeg, François, 1863-1954","key":"HerczegFrançois1863-1954","nlilat":"000062293","viafid":"55013830","merge":{"source":"viaf","id":"001e0fff1b755a9215b723dca2bb1ee6","type":"document"},"lc":"n90701048","bnf":"12683851","bav":"adv10218806"} {"version":"2013-07-01T14:07:50Z","_id":"00219ae462575e719052d408162e98e0","dnb":"102129029","term":"Bédarride, Jassuda (1804-1882)","key":"BédarrideJassuda(1804-1882)","nlilat":"000542886","viafid":"51833963","merge":{"source":"viaf","id":"00219ae462575e719052d408162e98e0","type":"document"},"lc":"n2001080239","bnf":"13200607"} {"version":"2013-07-01T14:07:50Z","_id":"002cf6accb75882d1ed22f5452d8f259","dnb":"102046670","ptbnp":"281726","term":"Bonnefoy, Georges-Frédéric 1912-1940","key":"BonnefoyGeorges-Frédéric1912-1940","viafid":"7766341","merge":{"source":"viaf","id":"002cf6accb75882d1ed22f5452d8f259","type":"document"},"bnf":"12870138"} {"version":"2013-07-01T14:07:50Z","_id":"002dea50b3f266abac7ec30d98798475","dnb":"116299711","term":"Boutron-Charlard, Antoine François, 1796-1878","key":"Boutron-CharlardAntoineFrançois1796-1878","viafid":"30284368","merge":{"source":"viaf","id":"002dea50b3f266abac7ec30d98798475","type":"document"},"lc":"n2001066126"} {"version":"2013-07-01T14:07:50Z","_id":"002eba15c808652b79874eeb7e17b988","dnb":"138813000","nla":"000035934276","term":"Tivārī, Bholānātha, 1923-1989","key":"TivārīBholānātha1923-1989","viafid":"95327374","merge":{"source":"viaf","id":"002eba15c808652b79874eeb7e17b988","type":"document"},"lc":"n81131613","bnf":"12261878"} {"version":"2013-07-01T14:07:50Z","_id":"002fae3d46c56bc32074b9884a50d774","egaxa":"vtls001520916","term":"Ibn Ḥamzah al-Ḥusaynī, Muḥammad ibn ʻAlī, 1315 or 16-1363 or 4","key":"IbnḤamzahal-ḤusaynīMuḥammadibnʻAlī1315or16-1363or4","viafid":"90074758","merge":{"source":"viaf","id":"002fae3d46c56bc32074b9884a50d774","type":"document"},"lc":"nr94011509"} {"version":"2013-07-01T14:07:50Z","_id":"003337252569cd6250932d0dbaf375f4","dnb":"100080154","nla":"000035685799","ptbnp":"143893","term":"Céspedes y Meneses, Gonzalo de (1585?-1638)","key":"CéspedesyMenesesGonzalode(1585?-1638)","viafid":"61801401","nlilat":"000421700","merge":{"source":"viaf","id":"003337252569cd6250932d0dbaf375f4","type":"document"},"lc":"n79082325","bnf":"14617737","bav":"adv10013430"} {"version":"2013-07-01T14:07:50Z","_id":"003d3db2d4780e54cf31c41cd18392c2","dnb":"172818028","term":"Penard, Eugène, 1855-1954","key":"PenardEugène1855-1954","viafid":"8769267","merge":{"source":"viaf","id":"003d3db2d4780e54cf31c41cd18392c2","type":"document"},"lc":"n83198913"} {"nkc":"js20020925104","selibr":"319364","version":"2013-07-01T14:07:50Z","_id":"003f4cb46c6613d9de006b32c5f6f6b9","bne":"xx1454220","dnb":"118623249","nla":"000035552200","term":"Tolstaja, Sofʹja Andreevna, 1844-1919","key":"TolstajaSofʹjaAndreevna1844-1919","nlicyr":"000157016","viafid":"95319193","nlilat":"000258315","merge":{"source":"viaf","id":"003f4cb46c6613d9de006b32c5f6f6b9","type":"document"},"lc":"n80015575","bnf":"11926771"} {"nkc":"kup19970000104861","selibr":"265671","version":"2013-07-01T14:07:50Z","_id":"004178271c2df5a7df2de345c8113b50","dnb":"118803530","swnl":"vtls002461341","nla":"000035573949","term":"D'Urfé, Honoré, 1567-1625","key":"D'UrféHonoré1567-1625","nlilat":"000380043","viafid":"41847426","merge":{"source":"viaf","id":"004178271c2df5a7df2de345c8113b50","type":"document"},"lc":"n50045789","bnf":"11927355","bav":"adv11188069"} {"version":"2013-07-01T14:07:50Z","_id":"004cac7bf9a0794bfeb7ed5be58dcf1b","dnb":"123607248","term":"Lindon, Jérôme, 1925-2001","key":"LindonJérôme1925-2001","nlilat":"000084776","viafid":"925444","merge":{"source":"viaf","id":"004cac7bf9a0794bfeb7ed5be58dcf1b","type":"document"},"lc":"no2003108373","bnf":"11913061"} {"selibr":"205901","version":"2013-07-01T14:07:50Z","_id":"0053de622eea0100fb2eb3f4a6bdb534","dnb":"119068125","nla":"000035130172","term":"Du Jon, François, 1589-1677","key":"DuJonFrançois1589-1677","nlilat":"000072604","viafid":"64809369","merge":{"source":"viaf","id":"0053de622eea0100fb2eb3f4a6bdb534","type":"document"},"lc":"n85029600","bav":"adv10295539"} {"viafid":"201883509","merge":{"source":"viaf","id":"00569dab85da747fcdb418300e7c569b","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"00569dab85da747fcdb418300e7c569b","dnb":"953369633","term":"Schubiger, Jürg 1936- | Mutter, Vater, ich und sie","key":"SchubigerJürg1936-|MutterVaterichundsie"} {"version":"2013-07-01T14:07:50Z","_id":"0058bd99f68ea65204778ed323dc149b","dnb":"186043759","term":"Briseux, Charles Étienne, d. 1754","key":"BriseuxCharlesÉtienned1754","nlilat":"000540445","viafid":"88831859","merge":{"source":"viaf","id":"0058bd99f68ea65204778ed323dc149b","type":"document"},"jpg":"500029199","lc":"n00007483","bav":"adv10137756"} {"nkc":"xx0057289","version":"2013-07-01T14:07:50Z","_id":"0058fa8d00edab625ff22a3659d6f7ac","dnb":"118789783","term":"Pašić, Nikola, 1845-1926","key":"PašićNikola1845-1926","viafid":"79400033","nlicyr":"000155017","merge":{"source":"viaf","id":"0058fa8d00edab625ff22a3659d6f7ac","type":"document"},"lc":"nb2008015928"} {"selibr":"314208","version":"2013-07-01T14:07:50Z","_id":"006dd4724ee4b28e0c4efebc02d202e4","dnb":"120359472","ptbnp":"93831","term":"La Croze, Maturin Veyssière, 1661-1739","key":"LaCrozeMaturinVeyssière1661-1739","viafid":"95298985","nlilat":"000468062","merge":{"source":"viaf","id":"006dd4724ee4b28e0c4efebc02d202e4","type":"document"},"lc":"n85050076","bnf":"12515550","bav":"adv10981672"} {"nkc":"jn19990210116","selibr":"41428","version":"2013-07-01T14:07:50Z","_id":"007076e7bb91b1fd5bfa57be6c8ce128","bne":"xx1028057","dnb":"11866381x","nla":"000035019329","ptbnp":"14615","term":"Blasco Ibáñez, Vicente, 1867-1928","key":"BlascoIbáñezVicente1867-1928","viafid":"73848096","nlilat":"000419198","merge":{"source":"viaf","id":"007076e7bb91b1fd5bfa57be6c8ce128","type":"document"},"lc":"n79046157","bnf":"11885765","bav":"adv10013850"} {"nkc":"xx0148421","version":"2013-07-01T14:07:50Z","_id":"007abb840ab1d99e404905d46e2fe0ab","dnb":"118659200","nla":"000035629647","term":"Böhm, G., 1920-, (Gottfried)","key":"BöhmG1920-(Gottfried)","viafid":"92946938","merge":{"source":"viaf","id":"007abb840ab1d99e404905d46e2fe0ab","type":"document"},"jpg":"500009404","lc":"n83200201"} {"version":"2013-07-01T14:07:50Z","_id":"007c84c975d7d7d8b0dbd39f4b5677f3","dnb":"117129577","term":"Imbeaux, Édouard 1861-1943","key":"ImbeauxÉdouard1861-1943","viafid":"3240370","merge":{"source":"viaf","id":"007c84c975d7d7d8b0dbd39f4b5677f3","type":"document"},"bnf":"12429899"} {"version":"2013-07-01T14:07:50Z","_id":"0085551a4373ccc974a09e93636014a5","dnb":"123971926","nla":"000035658443","term":"Bock, Jean-Nicolas-Étienne, 1747-1809, baron de","key":"BockJean-Nicolas-Étienne1747-1809baronde","viafid":"14803247","merge":{"source":"viaf","id":"0085551a4373ccc974a09e93636014a5","type":"document"},"lc":"nr93015941","bnf":"12121627"} {"version":"2013-07-01T14:07:50Z","_id":"008af10b9f92f2721de64fafbe9a5393","dnb":"100523978","nla":"000035903858","term":"Mēniatēs, Ēlias, 1669-1714","key":"MēniatēsĒlias1669-1714","viafid":"5276181","merge":{"source":"viaf","id":"008af10b9f92f2721de64fafbe9a5393","type":"document"},"lc":"no2004087174","bav":"adv10014111"} {"nkc":"xx0156884","version":"2013-07-01T14:07:50Z","_id":"0098590bd207438e215ff270570076c9","bne":"xx1155596","dnb":"124822061","nla":"000035023507","term":"Bühler, Curt F. (1905-1985)","key":"BühlerCurtF(1905-1985)","viafid":"108162446","nlilat":"000465632","merge":{"source":"viaf","id":"0098590bd207438e215ff270570076c9","type":"document"},"lc":"n84234191","bnf":"12793687","bav":"adv10170091"} {"nkc":"kup20030000002549","version":"2013-07-01T14:07:50Z","_id":"009c66983e73a1022216d8e9da92c627","dnb":"172481813","term":"Arct, Michał, 1840-1916","key":"ArctMichał1840-1916","viafid":"84500136","nlilat":"000529199","merge":{"source":"viaf","id":"009c66983e73a1022216d8e9da92c627","type":"document"},"lc":"nr95017051"} {"viafid":"185149790","merge":{"source":"viaf","id":"009ea10291e96a7930d546f6b9fc04f0","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"009ea10291e96a7930d546f6b9fc04f0","lc":"n88524930","term":"Mori, Kōichi, 1928- | Zusetsu Nihon no kodai","key":"MoriKōichi1928-|ZusetsuNihonnokodai"} {"nkc":"jn20000720231","selibr":"287722","version":"2013-07-01T14:07:50Z","_id":"00ba74c3ce9aa261d62b4a8e0cfc7515","dnb":"118594915","swnl":"vtls003990685","ptbnp":"1383987","term":"Platter, Félix (1536-1614)","key":"PlatterFélix(1536-1614)","nlilat":"000412483","viafid":"47796696","merge":{"source":"viaf","id":"00ba74c3ce9aa261d62b4a8e0cfc7515","type":"document"},"lc":"n50054102","bnf":"11920025","bav":"adv11094436"} {"version":"2013-07-01T14:07:50Z","_id":"00bbd4c9fcfa53d2c5d652440936e16c","dnb":"119054116","term":"De Bock, Eugène, 1889-1981","key":"DeBockEugène1889-1981","viafid":"57416427","merge":{"source":"viaf","id":"00bbd4c9fcfa53d2c5d652440936e16c","type":"document"},"lc":"n84091160","bnf":"10114286"} {"nkc":"jx20120807001","version":"2013-07-01T14:07:50Z","_id":"00c55b18ce4e4072116a15995957804d","dnb":"118887238","term":"Adarjukov, Vladimir Jakovlevič, 1863-1932","key":"AdarjukovVladimirJakovlevič1863-1932","viafid":"234424631","merge":{"source":"viaf","id":"00c55b18ce4e4072116a15995957804d","type":"document"}} {"nkc":"uk2006335026","version":"2013-07-01T14:07:50Z","_id":"00c6e2a7cf333315ce06e7ce24c29225","dnb":"103250182","nla":"000035314797","term":"Kaddari, Menaḥem Zevi 1925-2011","key":"KaddariMenaḥemZevi1925-2011","viafid":"5109006","nlilat":"000072890","nliheb":"000211495","merge":{"source":"viaf","id":"00c6e2a7cf333315ce06e7ce24c29225","type":"document"},"lc":"n82222169","bnf":"13624301"} {"viafid":"174617175","merge":{"source":"viaf","id":"00c8cb72ddc81363bd204992ae67f647","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"00c8cb72ddc81363bd204992ae67f647","lc":"n85055009","term":"Joas, Hans, 1948- | Praktische Intersubjektivität. English","key":"JoasHans1948-|PraktischeIntersubjektivitätEnglish"} {"selibr":"337013","version":"2013-07-01T14:07:50Z","_id":"00c8f93e5374df88a55f5359b750ef24","dnb":"129410578","nla":"000035333379","term":"Massé, Pierre, 1898-1987","key":"MasséPierre1898-1987","nlilat":"000447735","viafid":"92140116","merge":{"source":"viaf","id":"00c8f93e5374df88a55f5359b750ef24","type":"document"},"lc":"n82131779","bnf":"11996192"} {"selibr":"202403","version":"2013-07-01T14:07:50Z","_id":"00cc5e671df329695a81e8fb1ff03215","dnb":"110393090","term":"Högfeldt, Erik, 1924-1996","key":"HögfeldtErik1924-1996","viafid":"109538232","merge":{"source":"viaf","id":"00cc5e671df329695a81e8fb1ff03215","type":"document"},"lc":"n86841597"} {"viafid":"181460192","merge":{"source":"viaf","id":"00e1747adc8a0d1c67afbd07e80c7289","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"00e1747adc8a0d1c67afbd07e80c7289","lc":"n83828216","term":"Arzeliès, Henri, 1913- | Cinématique relativiste. English","key":"ArzelièsHenri1913-|CinématiquerelativisteEnglish"} {"nkc":"jx20060503002","version":"2013-07-01T14:07:50Z","_id":"00e5b4b32f9690192b7a4a20d8c61dd0","bne":"xx930503","dnb":"120523701","ptbnp":"167386","term":"Gómez Valderrama, Pedro, 1923-1992","key":"GómezValderramaPedro1923-1992","viafid":"9890240","merge":{"source":"viaf","id":"00e5b4b32f9690192b7a4a20d8c61dd0","type":"document"},"lc":"n80129074","bnf":"12176122","bav":"adv11553545"} {"viafid":"15074618","merge":{"source":"viaf","id":"00f6741c301df97fb2b480db98f71df1","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"00f6741c301df97fb2b480db98f71df1","bnf":"15365095","term":"Schiötz, Oskar Emil 1846-19..?","key":"SchiötzOskarEmil1846-19?"} {"version":"2013-07-01T14:07:50Z","_id":"00ff3f71c3e341af27d2136061ce4589","dnb":"122192273","nla":"000049682934","term":"Dupré de Saint-Maur, Nicolas-François, 1695-1774","key":"DuprédeSaint-MaurNicolas-François1695-1774","viafid":"49357530","nlilat":"000473385","merge":{"source":"viaf","id":"00ff3f71c3e341af27d2136061ce4589","type":"document"},"lc":"n85246249","bnf":"13005068"} {"viafid":"177703214","merge":{"source":"viaf","id":"0102f8fc6cdd5127baa7053b97563ea6","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0102f8fc6cdd5127baa7053b97563ea6","lc":"no2009155941","term":"Aguilar Camín, Héctor, 1946- | Selections. 2007","key":"AguilarCamínHéctor1946-|Selections2007"} {"nkc":"jo2004214984","version":"2013-07-01T14:07:50Z","_id":"010334aa33d19f5d9407db5de374dcb6","dnb":"129834661","ptbnp":"950339","term":"Gillot de Sainctonge, Louise-Geneviève, 1650-1718","key":"GillotdeSainctongeLouise-Geneviève1650-1718","viafid":"95333931","merge":{"source":"viaf","id":"010334aa33d19f5d9407db5de374dcb6","type":"document"},"lc":"nr2001031968","bnf":"13324011"} {"version":"2013-07-01T14:07:50Z","_id":"010d9ed639f425180e7328befd781d11","dnb":"118949322","term":"Dygasiński, Adolf (1839-1902)","key":"DygasińskiAdolf(1839-1902)","nlilat":"000442420","viafid":"8187131","merge":{"source":"viaf","id":"010d9ed639f425180e7328befd781d11","type":"document"},"lc":"n82018247","bnf":"12475023"} {"version":"2013-07-01T14:07:50Z","_id":"010fd53ed0dc23e0fdad640b23d14ee0","bne":"xx965506","dnb":"120228688","nla":"000035862234","ptbnp":"88786","term":"García Villada, Zacarías, 1879-1936","key":"GarcíaVilladaZacarías1879-1936","viafid":"54973517","nlilat":"000420300","merge":{"source":"viaf","id":"010fd53ed0dc23e0fdad640b23d14ee0","type":"document"},"lc":"n79061275","bnf":"16194028","bav":"adv10220834"} {"nkc":"xx0123321","version":"2013-07-01T14:07:50Z","_id":"01130c0c62fdf6c28a74dfb0edc3f776","dnb":"128603585","ptbnp":"412507","term":"Groueff, Stéphane, 1922-2006","key":"GroueffStéphane1922-2006","nlilat":"000407419","viafid":"111740137","merge":{"source":"viaf","id":"01130c0c62fdf6c28a74dfb0edc3f776","type":"document"},"lc":"n50031027","bnf":"11906034"} {"version":"2013-07-01T14:07:50Z","_id":"0116f800e73598ce4e24cdaebf3a74e1","dnb":"115635572","nla":"000036591984","term":"Pesselier, Charles-Étienne, 1712-1763","key":"PesselierCharles-Étienne1712-1763","viafid":"12313544","merge":{"source":"viaf","id":"0116f800e73598ce4e24cdaebf3a74e1","type":"document"},"lc":"no91006000","bnf":"11919341"} {"version":"2013-07-01T14:07:50Z","_id":"0137d710d4034a3d74a24a34d17546df","dnb":"17205060x","nla":"000048864378","ptbnp":"96138","term":"Durand de Maillane, Pièrre Toussaint, 1729-1814","key":"DuranddeMaillanePièrreToussaint1729-1814","viafid":"29642211","nlilat":"000492838","merge":{"source":"viaf","id":"0137d710d4034a3d74a24a34d17546df","type":"document"},"lc":"n88070893","bnf":"12524422","bav":"adv10234074"} {"viafid":"184975882","merge":{"source":"viaf","id":"0138b8ea4af09a51096be3f08d5ebfdd","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0138b8ea4af09a51096be3f08d5ebfdd","lc":"no2009074709","term":"Köhler, Barbara, 1959- | Poems. Polish. Selections","key":"KöhlerBarbara1959-|PoemsPolishSelections"} {"viafid":"176963320","merge":{"source":"viaf","id":"01399bc902f25cfb19796c63674a8b1e","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"01399bc902f25cfb19796c63674a8b1e","nla":"000035619622","term":"Donner, Jörn, 1933- | Sverigeboken. Finnish","key":"DonnerJörn1933-|SverigebokenFinnish"} {"viafid":"183974757","merge":{"source":"viaf","id":"013cac6edc02893f777949a2ffc6de31","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"013cac6edc02893f777949a2ffc6de31","lc":"n95033509","term":"Haley, George, 1927- | Vicente Espinel and Marcos de Obregón. Spanish","key":"HaleyGeorge1927-|VicenteEspinelandMarcosdeObregónSpanish"} {"viafid":"39325406","merge":{"source":"viaf","id":"014604935af0add6b17f4202669f016c","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"014604935af0add6b17f4202669f016c","lc":"nr2004008946","term":"Palasne de Champeaux, Julien-François, 1736-1795","key":"PalasnedeChampeauxJulien-François1736-1795"} {"version":"2013-07-01T14:07:50Z","_id":"0151b48dc7132c28ba92a926e29eecaa","dnb":"101631642","term":"Liétard, Alfred, 1872-1912","key":"LiétardAlfred1872-1912","viafid":"29523021","merge":{"source":"viaf","id":"0151b48dc7132c28ba92a926e29eecaa","type":"document"},"bnf":"10362029"} {"version":"2013-07-01T14:07:50Z","_id":"015370e084f0eb48fa5bfc0725888a54","dnb":"103166947","term":"Skiadás, Aristóxenos D. 1932-1994","key":"SkiadásAristóxenosD1932-1994","viafid":"46801304","merge":{"source":"viaf","id":"015370e084f0eb48fa5bfc0725888a54","type":"document"},"lc":"n86132338","bnf":"12167546"} {"nkc":"jn19990000170","version":"2013-07-01T14:07:50Z","_id":"016d00af5a09543db20630f890b79c09","bne":"xx4579605","dnb":"118502751","nla":"000035006238","term":"Anders, Günther, 1902-1992","key":"AndersGünther1902-1992","viafid":"9859892","nlilat":"000010121","merge":{"source":"viaf","id":"016d00af5a09543db20630f890b79c09","type":"document"},"lc":"n50021760","bnf":"12020978"} {"nkc":"jn19990210294","version":"2013-07-01T14:07:50Z","_id":"0170a05570660425ba9ee207cdda26ed","bne":"xx956783","dnb":"118555197","nla":"000035828136","ptbnp":"38757","term":"Ibárruri, Dolores 1895-1989","key":"IbárruriDolores1895-1989","viafid":"109366304","merge":{"source":"viaf","id":"0170a05570660425ba9ee207cdda26ed","type":"document"},"lc":"n79066727","bnf":"12130823"} {"nliara":"000003490","selibr":"195610","version":"2013-07-01T14:07:50Z","_id":"017403306a10ef9ca58ad35fb3a756fc","egaxa":"vtls000783338","dnb":"119344238","nla":"000035551157","term":"Māwardī, ʻAlī ibn Muḥammad, 974?-1058","key":"MāwardīʻAlīibnMuḥammad974?-1058","nlilat":"000455598","viafid":"34578551","merge":{"source":"viaf","id":"017403306a10ef9ca58ad35fb3a756fc","type":"document"},"lc":"n83162975","bnf":"12624546","bav":"adv10989620"} {"nkc":"ola2002161472","selibr":"313469","version":"2013-07-01T14:07:50Z","_id":"017ac3329e3f4ada5e521fe1c73e2f12","bne":"xx1095217","dnb":"118671774","nla":"000035035366","ptbnp":"83297","term":"Dhôtel, André, 1900-1991","key":"DhôtelAndré1900-1991","viafid":"109123195","merge":{"source":"viaf","id":"017ac3329e3f4ada5e521fe1c73e2f12","type":"document"},"lc":"n50001694","bnf":"11900058"} {"nkc":"jo20000080640","version":"2013-07-01T14:07:50Z","_id":"017e34f753aad0bf826ac2e1f641cd93","dnb":"116860618","nla":"000036038833","ptbnp":"93052","term":"Léger, Louis, 1843-1923","key":"LégerLouis1843-1923","viafid":"7470950","nlilat":"000252572","merge":{"source":"viaf","id":"017e34f753aad0bf826ac2e1f641cd93","type":"document"},"lc":"n86037863","bnf":"12380380","bav":"adv10877220"} {"version":"2013-07-01T14:07:50Z","_id":"0183f1e24cd55e5d3ccab0dbf333ee84","dnb":"11757628x","nla":"000035599649","ptbnp":"1174734","term":"Guérin-Méneville, F.-E., 1799-1874","key":"Guérin-MénevilleF-E1799-1874","viafid":"51823869","merge":{"source":"viaf","id":"0183f1e24cd55e5d3ccab0dbf333ee84","type":"document"},"lc":"no97031324","bnf":"15325222"} {"viafid":"293258240","merge":{"source":"viaf","id":"0185d13b2692e09ad66257dd7ffa6f67","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0185d13b2692e09ad66257dd7ffa6f67","term":"Konwicki, Tadeusz (1926- ). | Kronika wypadków miłosnych (niem.)","key":"KonwickiTadeusz(1926-)|Kronikawypadkówmiłosnych(niem)"} {"nkc":"jo2012736072","version":"2013-07-01T14:07:50Z","_id":"0187a9abfe13e1e0c18c946023b15fe7","dnb":"116081546","term":"Désaugiers, Marc-Antoine, 1772-1827","key":"DésaugiersMarc-Antoine1772-1827","viafid":"2565306","merge":{"source":"viaf","id":"0187a9abfe13e1e0c18c946023b15fe7","type":"document"},"lc":"n82155075","bnf":"12442988","bav":"adv10126743"} {"nkc":"mub2012720304","version":"2013-07-01T14:07:50Z","_id":"0193fa290117df6b396336374bc83693","dnb":"116684135","ptbnp":"134032","term":"Hélie, Faustin, 1799-1884","key":"HélieFaustin1799-1884","viafid":"51769095","nlilat":"000535904","merge":{"source":"viaf","id":"0193fa290117df6b396336374bc83693","type":"document"},"lc":"no98117099","bnf":"12373434","bav":"adv12126276"} {"version":"2013-07-01T14:07:50Z","_id":"019503e27dd6d578319ee56e9ba9e0dc","dnb":"133168565","term":"Sudeta, Đuro, 1903-1927","key":"SudetaĐuro1903-1927","viafid":"23321266","merge":{"source":"viaf","id":"019503e27dd6d578319ee56e9ba9e0dc","type":"document"},"lc":"n96092627"} {"viafid":"71737590","merge":{"source":"viaf","id":"019ab896a7f10f1ea54573ff64efe160","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"019ab896a7f10f1ea54573ff64efe160","dnb":"100300189","term":"Lange, François, 1610-1684","key":"LangeFrançois1610-1684"} {"nkc":"jk01152931","version":"2013-07-01T14:07:50Z","_id":"019b28f85aafb8e61a637601dee9b26e","dnb":"131054295","term":"Žába, Zbyněk, 1917-1971","key":"ŽábaZbyněk1917-1971","viafid":"60203425","nlilat":"000548565","merge":{"source":"viaf","id":"019b28f85aafb8e61a637601dee9b26e","type":"document"},"lc":"nb2004018264"} {"version":"2013-07-01T14:07:50Z","_id":"019e1992e07862b26ba93c93a8ced5bb","dnb":"101800479","term":"Sillem, Jérome Alexandre, 1840-1912","key":"SillemJéromeAlexandre1840-1912","viafid":"52066195","merge":{"source":"viaf","id":"019e1992e07862b26ba93c93a8ced5bb","type":"document"},"bav":"adv11997926"} {"nkc":"nlk20000084680","version":"2013-07-01T14:07:50Z","_id":"01a4e621a9a8a27f012ba0780a2e2d90","dnb":"1028013906","ptbnp":"42436","term":"Doyen, Eugène-Louis, 1859-1916","key":"DoyenEugène-Louis1859-1916","viafid":"59175623","merge":{"source":"viaf","id":"01a4e621a9a8a27f012ba0780a2e2d90","type":"document"},"lc":"n2006181494","bnf":"12430836"} {"viafid":"182411099","merge":{"source":"viaf","id":"01b9647ae81b889b575f1f742ba27be1","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"01b9647ae81b889b575f1f742ba27be1","lc":"n2005027871","term":"Dupuis, Sylviane, 1956- | Géométrie de l'illimité. Italian & French","key":"DupuisSylviane1956-|Géométriedel'illimitéItalian&French"} {"nkc":"zmp2012739168","selibr":"67124","version":"2013-07-01T14:07:50Z","_id":"01ba9d2c7c54c506a398e7cefc104101","bne":"xx4982218","dnb":"10096673x","nla":"000035487022","term":"Ḳimḥi, Daṿid 1160-1235","key":"ḲimḥiDaṿid1160-1235","viafid":"100213323","nlicyr":"000151969","nlilat":"000075925","nliheb":"000185046","merge":{"source":"viaf","id":"01ba9d2c7c54c506a398e7cefc104101","type":"document"},"lc":"n83120193","bnf":"11997296","bav":"adv10208072"} {"version":"2013-07-01T14:07:50Z","_id":"01c0b5d1fc65e8024030705d90e04dce","dnb":"117162442","term":"Mühlenbruch, Christian Friedrich, 1785-1843","key":"MühlenbruchChristianFriedrich1785-1843","viafid":"25372370","merge":{"source":"viaf","id":"01c0b5d1fc65e8024030705d90e04dce","type":"document"},"lc":"n88158350","bav":"adv10999914"} {"nkc":"jk01030702","version":"2013-07-01T14:07:50Z","_id":"01c0be95ee14379060549d4c25930a51","dnb":"118685856","term":"Fajtl, František, 1912-2006","key":"FajtlFrantišek1912-2006","viafid":"10640038","merge":{"source":"viaf","id":"01c0be95ee14379060549d4c25930a51","type":"document"},"lc":"n81071340"} {"nkc":"mzk2010591943","selibr":"188110","version":"2013-07-01T14:07:50Z","_id":"01c999074161aafa0c1c1b0bf549a3a8","dnb":"100141242","term":"Genesios, Iōsēph, fl. 912-959","key":"GenesiosIōsēphfl912-959","nlilat":"000052068","viafid":"61674606","merge":{"source":"viaf","id":"01c999074161aafa0c1c1b0bf549a3a8","type":"document"},"lc":"n79097681","bnf":"12812981","bav":"adv10302188"} {"version":"2013-07-01T14:07:50Z","_id":"01ca0773ba48560b5446604309741f47","dnb":"14124612x","term":"Pāṇḍe, Hemarāja, fl. 1653-1668","key":"PāṇḍeHemarājafl1653-1668","viafid":"43843943","merge":{"source":"viaf","id":"01ca0773ba48560b5446604309741f47","type":"document"},"lc":"no00048010"} {"viafid":"38088553","merge":{"source":"viaf","id":"01d1a6bf1c7e030cc7657fb33e9f435a","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"01d1a6bf1c7e030cc7657fb33e9f435a","dnb":"132784351","term":"Mückenhausen, Eduard 1907-2005","key":"MückenhausenEduard1907-2005"} {"version":"2013-07-01T14:07:50Z","_id":"01d5eb572db333f314833e64d543746d","dnb":"107338521","term":"Schütrumpf, Rudolf 1909-1986","key":"SchütrumpfRudolf1909-1986","viafid":"295184373","merge":{"source":"viaf","id":"01d5eb572db333f314833e64d543746d","type":"document"},"lc":"nr90014039"} {"nkc":"jn19990209730","version":"2013-07-01T14:07:50Z","_id":"01db9063aadeeba96c253a2945be425a","dnb":"128958499","term":"Rulf, Jiří, 1947-2007","key":"RulfJiří1947-2007","viafid":"5998335","merge":{"source":"viaf","id":"01db9063aadeeba96c253a2945be425a","type":"document"},"lc":"n94021539","bnf":"16235605"} {"selibr":"277129","version":"2013-07-01T14:07:50Z","_id":"01ea9bcb6988461fb0fc1dfdfc0c54fc","dnb":"128367512","term":"Tilenus, Danie͏̈l, 1563-1633","key":"TilenusDanie͏̈l1563-1633","nlilat":"000514751","viafid":"41881844","merge":{"source":"viaf","id":"01ea9bcb6988461fb0fc1dfdfc0c54fc","type":"document"},"lc":"no88000851","bnf":"12173399","bav":"adv11306465"} {"nkc":"js2007382460","version":"2013-07-01T14:07:50Z","_id":"01efe43dda330b454b026f1522af5888","dnb":"119068958","term":"Domjanić, Dragutin, 1875-1933","key":"DomjanićDragutin1875-1933","viafid":"13109569","merge":{"source":"viaf","id":"01efe43dda330b454b026f1522af5888","type":"document"},"lc":"n87125111","bnf":"12134625"} {"nkc":"xx0003720","selibr":"281630","version":"2013-07-01T14:07:50Z","_id":"01f0a8973b22b75443dc0fd16727d9a9","dnb":"123479274","nla":"000035075467","term":"Petròcchi, Policarpo 1852-1902","key":"PetròcchiPolicarpo1852-1902","viafid":"11882482","nlilat":"000510480","merge":{"source":"viaf","id":"01f0a8973b22b75443dc0fd16727d9a9","type":"document"},"lc":"n93118836","bnf":"13482665","bav":"adv10185646"} {"version":"2013-07-01T14:07:50Z","_id":"01f3406f114f535167ab44e24f764ee8","dnb":"133088588","term":"Köhler, Jochen (1944-2007)","key":"KöhlerJochen(1944-2007)","viafid":"3652649","nlilat":"000286884","merge":{"source":"viaf","id":"01f3406f114f535167ab44e24f764ee8","type":"document"},"lc":"n80038798"} {"nkc":"pna2006322488","version":"2013-07-01T14:07:50Z","_id":"01f6f82561aa134233d13eb97350f21e","dnb":"118829181","nla":"000035094111","term":"Artigas, José Gervasio, 1764-1850","key":"ArtigasJoséGervasio1764-1850","viafid":"64804413","nlilat":"000011996","merge":{"source":"viaf","id":"01f6f82561aa134233d13eb97350f21e","type":"document"},"lc":"n50001870"} {"selibr":"210553","version":"2013-07-01T14:07:50Z","_id":"0200082478ad4c65a70665600ccb4a5a","dnb":"135655714","term":"Höglund, Zeth, 1884-1956","key":"HöglundZeth1884-1956","viafid":"15992916","merge":{"source":"viaf","id":"0200082478ad4c65a70665600ccb4a5a","type":"document"}} {"nkc":"xx0102999","version":"2013-07-01T14:07:50Z","_id":"02014b6f6f34229b0eab783d4f5967ac","dnb":"118839977","nla":"000050002915","ptbnp":"264199","term":"Essen, Léon van der, 1883-1963","key":"EssenLéonvander1883-1963","viafid":"22272593","merge":{"source":"viaf","id":"02014b6f6f34229b0eab783d4f5967ac","type":"document"},"lc":"no96045632","bnf":"12948897","bav":"adv10176119"} {"version":"2013-07-01T14:07:50Z","_id":"020971cf95093bf96980b0e38c1e230b","dnb":"117559768","term":"Mazois, François, 1783-1826","key":"MazoisFrançois1783-1826","viafid":"54140480","merge":{"source":"viaf","id":"020971cf95093bf96980b0e38c1e230b","type":"document"},"jpg":"500047988","lc":"nr97017047","bnf":"11076597","bav":"adv11019655"} {"selibr":"200168","version":"2013-07-01T14:07:50Z","_id":"020cb175cf01a0620e67def4d81d7083","dnb":"152093338","term":"Tingström, Bertel, 1912-2004","key":"TingströmBertel1912-2004","viafid":"30951839","merge":{"source":"viaf","id":"020cb175cf01a0620e67def4d81d7083","type":"document"},"lc":"n84219321"} {"nkc":"mzk2010589930","version":"2013-07-01T14:07:50Z","_id":"0216d129d11cb2b59089114826e2dce6","dnb":"136358756","term":"Börner, Friedrich, 1723-1761","key":"BörnerFriedrich1723-1761","viafid":"80716903","nlilat":"000022381","merge":{"source":"viaf","id":"0216d129d11cb2b59089114826e2dce6","type":"document"},"bnf":"16215913","bav":"adv10006228"} {"nkc":"jz8001457","version":"2013-07-01T14:07:50Z","_id":"0217fd48022674cec08b7c4702cb8fe0","dnb":"118995782","term":"Zábrana, Jan, 1931-1984","key":"ZábranaJan1931-1984","viafid":"71448238","merge":{"source":"viaf","id":"0217fd48022674cec08b7c4702cb8fe0","type":"document"},"lc":"n84184266","bnf":"12261202"} {"version":"2013-07-01T14:07:50Z","_id":"0225c0e0b8331307c978addd3c190fb0","egaxa":"vtls000821692","term":"Ibn al-Ḥājj, Muḥammad ibn Muḥammad, d. 1336","key":"Ibnal-ḤājjMuḥammadibnMuḥammadd1336","viafid":"26198000","merge":{"source":"viaf","id":"0225c0e0b8331307c978addd3c190fb0","type":"document"},"lc":"n89239785"} {"nkc":"mzk2003174055","selibr":"186825","version":"2013-07-01T14:07:50Z","_id":"0229c939fcf37b8171d358b67cddacd9","bne":"xx850854","dnb":"11949924x","nla":"000035082386","ptbnp":"153635","term":"Fétis, François-Joseph, 1784-1871","key":"FétisFrançois-Joseph1784-1871","viafid":"69078568","nlilat":"000050348","merge":{"source":"viaf","id":"0229c939fcf37b8171d358b67cddacd9","type":"document"},"lc":"n82246099","bnf":"13474481","bav":"adv10133548"} {"version":"2013-07-01T14:07:50Z","_id":"022a70c29f317f37b68c87d89504101b","dnb":"100282881","ptbnp":"98028","term":"Ferrière, Claude Joseph de, d. ca. 1748","key":"FerrièreClaudeJosephdedca1748","nlilat":"000491499","viafid":"2514410","merge":{"source":"viaf","id":"022a70c29f317f37b68c87d89504101b","type":"document"},"lc":"n88002655","bnf":"12176473","bav":"adv10193885"} {"nkc":"kup19950000031479","version":"2013-07-01T14:07:50Z","_id":"02355c2ceeb3300a38f376cc341c300b","dnb":"17361843x","nla":"000035123545","ptbnp":"569207","term":"Gilbert, Alan 1944-.... spécialiste de l'Amérique latine","key":"GilbertAlan1944-spécialistedel'Amériquelatine","viafid":"61607588","nlilat":"000430906","merge":{"source":"viaf","id":"02355c2ceeb3300a38f376cc341c300b","type":"document"},"lc":"n80112938","bnf":"12036429"} {"nkc":"mzk2010579552","version":"2013-07-01T14:07:50Z","_id":"023ed3e06a7aeaedcf108011421d1cb2","dnb":"117178756","nla":"000035325601","term":"Münter, Balthasar, 1735-1793","key":"MünterBalthasar1735-1793","viafid":"17992858","merge":{"source":"viaf","id":"023ed3e06a7aeaedcf108011421d1cb2","type":"document"},"lc":"nr93027643","bnf":"14333881"} {"nkc":"nlk20010102907","version":"2013-07-01T14:07:50Z","_id":"024c5736a5557d4e35622e47793706ca","dnb":"120076276","term":"Thümmig, Ludwig Philipp, 1697-1728","key":"ThümmigLudwigPhilipp1697-1728","viafid":"56686391","nlilat":"000131357","merge":{"source":"viaf","id":"024c5736a5557d4e35622e47793706ca","type":"document"},"lc":"n83300950","bnf":"12357938"} {"viafid":"177676627","merge":{"source":"viaf","id":"02526d0e1cee01de2d7a09f52b536056","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"02526d0e1cee01de2d7a09f52b536056","lc":"no2006071929","term":"Bánk, Zsuzsa, 1965- | Schwimmer. Hungarian","key":"BánkZsuzsa1965-|SchwimmerHungarian"} {"nkc":"jn20000700452","version":"2013-07-01T14:07:50Z","_id":"02581c0f4c008827aa22b353e7d4c137","bne":"xx1068385","dnb":"118672770","nla":"000035267699","term":"Dupanloup, Félix, 1802-1878","key":"DupanloupFélix1802-1878","viafid":"27102015","nlilat":"000452277","merge":{"source":"viaf","id":"02581c0f4c008827aa22b353e7d4c137","type":"document"},"lc":"n83025558","bnf":"12138603","bav":"adv10216063"} {"viafid":"64069592","merge":{"source":"viaf","id":"02591d96186457508c5e96f01ef957d6","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"02591d96186457508c5e96f01ef957d6","bnf":"12291175","term":"Couder, André (1897-1979)","key":"CouderAndré(1897-1979)"} {"viafid":"176771452","merge":{"source":"viaf","id":"025e78ffafe0bdde6be6d97db22c4226","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"025e78ffafe0bdde6be6d97db22c4226","lc":"n2007088491","term":"Hirdman, Yvonne, 1943- | Tänkande hjärtat. English","key":"HirdmanYvonne1943-|TänkandehjärtatEnglish"} {"nkc":"mzk2005299319","selibr":"219031","version":"2013-07-01T14:07:50Z","_id":"025e94e995c02a62abd0d6462fbad9ad","dnb":"119071606","nla":"000035975049","term":"Oehlenschläger, Adam Gottlieb, 1779-1850","key":"OehlenschlägerAdamGottlieb1779-1850","viafid":"27105324","nlilat":"000423229","merge":{"source":"viaf","id":"025e94e995c02a62abd0d6462fbad9ad","type":"document"},"lc":"n79109270","bnf":"12159197","bav":"adv10259974"} {"nkc":"skuk0004030","version":"2013-07-01T14:07:50Z","_id":"02645d03181fc8a250edea063d492ef8","dnb":"172243912","nla":"000035561825","term":"MʹCrie, Thomas, 1772-1835","key":"MʹCrieThomas1772-1835","viafid":"18823512","merge":{"source":"viaf","id":"02645d03181fc8a250edea063d492ef8","type":"document"},"lc":"n89607204","bav":"adv10955598"} {"nkc":"nlk20010098823","version":"2013-07-01T14:07:50Z","_id":"0266163c312d632d56c0fcae54151f06","dnb":"124546420","term":"Purmann, Matthäus Gottfried, 1649-1711","key":"PurmannMatthäusGottfried1649-1711","viafid":"84828429","merge":{"source":"viaf","id":"0266163c312d632d56c0fcae54151f06","type":"document"},"lc":"n83218031"} {"version":"2013-07-01T14:07:50Z","_id":"02672a9e05d30a86c5f069e3e9295354","dnb":"1024153797","ptbnp":"1398774","term":"Hévin, Prudent, 1715-1789","key":"HévinPrudent1715-1789","viafid":"72794021","merge":{"source":"viaf","id":"02672a9e05d30a86c5f069e3e9295354","type":"document"},"lc":"n84102159","bnf":"16223753"} {"selibr":"283218","version":"2013-07-01T14:07:50Z","_id":"026848023bcedfaae863fe50728722ed","dnb":"11622620x","term":"Böttger, Adolf, 1815-1870","key":"BöttgerAdolf1815-1870","viafid":"78353371","nlilat":"000383926","merge":{"source":"viaf","id":"026848023bcedfaae863fe50728722ed","type":"document"},"lc":"no94003344"} {"selibr":"216017","version":"2013-07-01T14:07:50Z","_id":"0279d6c60a065794970619d534507457","dnb":"117098485","term":"Öhman, Ivar, 1914-1989","key":"ÖhmanIvar1914-1989","viafid":"6378846","merge":{"source":"viaf","id":"0279d6c60a065794970619d534507457","type":"document"},"lc":"n85238338"} {"viafid":"181017618","merge":{"source":"viaf","id":"0283b24946c9714314f6adfadb55ee79","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0283b24946c9714314f6adfadb55ee79","lc":"n00089369","term":"Castañeda, Jorge G., 1953- | Herencia. English","key":"CastañedaJorgeG1953-|HerenciaEnglish"} {"viafid":"175740681","merge":{"source":"viaf","id":"02984840a43ef9528abfc3d51d223e5b","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"02984840a43ef9528abfc3d51d223e5b","nla":"000035017867","term":"Bermudes, João, d. 1570. | Esta he hũa breue relação da embaisada q̃ o patriarcha Dõ João Bermudez trouxe do emperado da Ethiopia. English. 1967","key":"BermudesJoãod1570|Estahehũabreuerelaçãodaembaisadaq̃opatriarchaDõJoãoBermudeztrouxedoemperadodaEthiopiaEnglish1967"} {"viafid":"108115811","merge":{"source":"viaf","id":"029a6f104a614c1e55145c5debb3b1a8","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"029a6f104a614c1e55145c5debb3b1a8","lc":"no2010051600","term":"Dumées, Antoine-François-Joseph, 1722-1765","key":"DuméesAntoine-François-Joseph1722-1765"} {"viafid":"49601082","merge":{"source":"viaf","id":"029b89519eea25f1066b7ce722e92b5f","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"029b89519eea25f1066b7ce722e92b5f","dnb":"101855753","term":"Gens, Eugène, 1814-1881","key":"GensEugène1814-1881"} {"viafid":"180283929","merge":{"source":"viaf","id":"02a27de9a8a199a234c341d0ab789e9e","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"02a27de9a8a199a234c341d0ab789e9e","lc":"n87855665","term":"Takasaki, Jikidō, 1926- | Bukkyō nyūmon. English","key":"TakasakiJikidō1926-|BukkyōnyūmonEnglish"} {"viafid":"17600005","merge":{"source":"viaf","id":"02a436b4f76421266d42995ff6e73b6f","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"02a436b4f76421266d42995ff6e73b6f","dnb":"101845324","term":"Arendt, Guillaume Amédée Auguste, 1808-1865","key":"ArendtGuillaumeAmédéeAuguste1808-1865"} {"nkc":"kup19990000045589","selibr":"65395","version":"2013-07-01T14:07:50Z","_id":"02a6335cc85d1f2f8475919fa6542d46","dnb":"120115395","nla":"000035383760","ptbnp":"10394","term":"Junqueiro, Abílio Manuel Guerra, 1850-1923","key":"JunqueiroAbílioManuelGuerra1850-1923","viafid":"22150838","merge":{"source":"viaf","id":"02a6335cc85d1f2f8475919fa6542d46","type":"document"},"lc":"n82036031","bnf":"11953741"} {"nkc":"ola2008459836","version":"2013-07-01T14:07:50Z","_id":"02a9329ae1c79dc270c89dc8cfbf617c","dnb":"134073711","term":"Bellenger, François, 1688-1749","key":"BellengerFrançois1688-1749","viafid":"76326749","merge":{"source":"viaf","id":"02a9329ae1c79dc270c89dc8cfbf617c","type":"document"},"lc":"n2011086997","bnf":"12006220","bav":"adv10112830"} {"viafid":"178656182","merge":{"source":"viaf","id":"02aef6485e4b006553e2145b77168e88","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"02aef6485e4b006553e2145b77168e88","lc":"n86095545","term":"Markov, A. K. 1858-1920. (Alekseĭ Konstantinovich), O chistki︠e︡ drevnikh monet","key":"MarkovAK1858-1920(AlekseĭKonstantinovich)Ochistki︠e︡drevnikhmonet"} {"nkc":"kup19970000002490","version":"2013-07-01T14:07:50Z","_id":"02b8fc16f8e02e1395e955f30c4dd35b","bne":"xx1050260","nla":"000035255465","term":"Juan Arbó, Sebastián 1902-1984","key":"JuanArbóSebastián1902-1984","nlilat":"000423794","viafid":"66475814","merge":{"source":"viaf","id":"02b8fc16f8e02e1395e955f30c4dd35b","type":"document"},"lc":"n79120237","bnf":"11986915"} {"nkc":"js20020115050","selibr":"245169","version":"2013-07-01T14:07:50Z","_id":"02b93063938f142652e27a73580cc7a3","bne":"xx1164567","dnb":"119349981","ptbnp":"279594","term":"Carranza, Bartolomé, 1503-1576","key":"CarranzaBartolomé1503-1576","nlilat":"000437600","viafid":"14799490","merge":{"source":"viaf","id":"02b93063938f142652e27a73580cc7a3","type":"document"},"lc":"n81072380","bnf":"12100980","bav":"adv10060933"} {"version":"2013-07-01T14:07:50Z","_id":"02bedbd7dee8c7db68327497a6829729","dnb":"117713287","term":"Müller, C. H., 1878-1953","key":"MüllerCH1878-1953","nlilat":"000486965","viafid":"100969846","merge":{"source":"viaf","id":"02bedbd7dee8c7db68327497a6829729","type":"document"},"lc":"n87138140","bnf":"12351968"} {"version":"2013-07-01T14:07:50Z","_id":"02c0aff9e788c7e6bf0469f8aefd5a30","dnb":"117468916","ptbnp":"174894","term":"Second, Albéric, 1817-1887","key":"SecondAlbéric1817-1887","viafid":"5052468","nlilat":"000479237","merge":{"source":"viaf","id":"02c0aff9e788c7e6bf0469f8aefd5a30","type":"document"},"lc":"n86005747","bnf":"12638602"} {"version":"2013-07-01T14:07:50Z","_id":"02c3f25e744e92af2c42ae5075318d58","dnb":"124336698","term":"Champion, Edmé, 1836-1915","key":"ChampionEdmé1836-1915","nlilat":"000525371","viafid":"12306439","merge":{"source":"viaf","id":"02c3f25e744e92af2c42ae5075318d58","type":"document"},"lc":"nr91022441","bnf":"11895990"} {"nkc":"jn20010601136","selibr":"196902","version":"2013-07-01T14:07:50Z","_id":"02cc2db838db4dda3f67cd78bc8026e2","bne":"xx1145509","dnb":"118641654","nla":"000035422942","ptbnp":"42011","term":"Pieyre de Mandiargues, André, 1909-1991","key":"PieyredeMandiarguesAndré1909-1991","viafid":"108228000","nlilat":"000105729","merge":{"source":"viaf","id":"02cc2db838db4dda3f67cd78bc8026e2","type":"document"},"lc":"n50012843","bnf":"11919776","bav":"adv12174762"} {"version":"2013-07-01T14:07:50Z","_id":"02ce71786a3011157d12d72bbcb34f90","dnb":"100190065","ptbnp":"1201811","term":"Licquet, Théodore, 1787-1832","key":"LicquetThéodore1787-1832","viafid":"64044043","merge":{"source":"viaf","id":"02ce71786a3011157d12d72bbcb34f90","type":"document"},"lc":"n82066662","bnf":"12150892","bav":"adv12076465"} {"nkc":"mzk2008479882","version":"2013-07-01T14:07:50Z","_id":"02ce868f4f516fb4a653e46e99816c40","dnb":"174299664","term":"Bénard, Robert, 1734-1777","key":"BénardRobert1734-1777","viafid":"95887207","merge":{"source":"viaf","id":"02ce868f4f516fb4a653e46e99816c40","type":"document"},"lc":"n2005055169","bnf":"14958162"} {"viafid":"245091915","merge":{"source":"viaf","id":"02cec247a5a3631d3d4c0afd80738412","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"02cec247a5a3631d3d4c0afd80738412","dnb":"15915782x","term":"Rivière, Hippolyte-Féréol, 1817-1893","key":"RivièreHippolyte-Féréol1817-1893"} {"nliara":"000159024","selibr":"191240","version":"2013-07-01T14:07:50Z","_id":"02cfeb71732d4946b84128d95ca78510","egaxa":"vtls000837220","dnb":"13215532x","term":"Ibn al-Ṣalāḥ al-Shahrazūrī, ʻUthmān ibn ʻAbd al-Raḥmān, 1181 or 2-1245","key":"Ibnal-Ṣalāḥal-ShahrazūrīʻUthmānibnʻAbdal-Raḥmān1181or2-1245","viafid":"79189688","merge":{"source":"viaf","id":"02cfeb71732d4946b84128d95ca78510","type":"document"},"lc":"nr92026123","bnf":"14540321"} {"nkc":"jx20080820011","version":"2013-07-01T14:07:50Z","_id":"02d0df5b90896e9fb8b51b0e181ea545","dnb":"116628324","term":"Macé, Jean, 1815-1894","key":"MacéJean1815-1894","nlilat":"000421092","viafid":"71467271","merge":{"source":"viaf","id":"02d0df5b90896e9fb8b51b0e181ea545","type":"document"},"lc":"n79072856","bnf":"12356458","bav":"adv10891193"} {"viafid":"47521825","merge":{"source":"viaf","id":"02f6ca69eb47e98387fed80b7aecae51","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"02f6ca69eb47e98387fed80b7aecae51","dnb":"116769815","term":"Frensdorff, Émile 1818-1909","key":"FrensdorffÉmile1818-1909"} {"nkc":"jn19990003834","version":"2013-07-01T14:07:50Z","_id":"02f7e3d58b98af8f8f28fc458e18d895","dnb":"100441386","nla":"000035369149","ptbnp":"151139","term":"Chéruel, Adolphe, 1809-1891","key":"ChéruelAdolphe1809-1891","viafid":"9931987","nlilat":"000522399","merge":{"source":"viaf","id":"02f7e3d58b98af8f8f28fc458e18d895","type":"document"},"lc":"nr88002431","bnf":"12392284","bav":"adv10151332"} {"viafid":"42620022","merge":{"source":"viaf","id":"02f868a6ed9ab7b8047155bc2a9032cc","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"02f868a6ed9ab7b8047155bc2a9032cc","dnb":"117625507","term":"Thomé, Ludwig Wilhelm 1841-1910","key":"ThoméLudwigWilhelm1841-1910"} {"version":"2013-07-01T14:07:50Z","_id":"02ff177adff46824c9ae122ad6eb06da","dnb":"1021987298","term":"Petropoulos, Geōrgios Andrea, 1897-1964","key":"PetropoulosGeōrgiosAndrea1897-1964","viafid":"45750572","merge":{"source":"viaf","id":"02ff177adff46824c9ae122ad6eb06da","type":"document"},"lc":"n85250825","bav":"adv12086761"} {"version":"2013-07-01T14:07:50Z","_id":"03023d40fbc41b8bc99977ec5cd5e545","dnb":"101916345","term":"Biollay, Léon, 1830-1920","key":"BiollayLéon1830-1920","viafid":"114289550","merge":{"source":"viaf","id":"03023d40fbc41b8bc99977ec5cd5e545","type":"document"},"lc":"no94012267","bnf":"12169328"} {"version":"2013-07-01T14:07:50Z","_id":"0306f6666be652a7020c3e03c2c65330","dnb":"11925249x","nla":"000035823526","ptbnp":"97621","term":"Foulché-Delbosc, Raymond, 1864-1929","key":"Foulché-DelboscRaymond1864-1929","viafid":"49225549","nlilat":"000048154","merge":{"source":"viaf","id":"0306f6666be652a7020c3e03c2c65330","type":"document"},"lc":"n84055843","bnf":"11903228","bav":"adv10196029"} {"nkc":"jo2009532273","version":"2013-07-01T14:07:50Z","_id":"0308464c956db049c7889c3ba6387329","egaxa":"vtls000904154","dnb":"118591819","swnl":"vtls002276744","nla":"000035410238","ptbnp":"117733","term":"Parrot, André, 1901-1980","key":"ParrotAndré1901-1980","viafid":"27069841","nlilat":"000103494","merge":{"source":"viaf","id":"0308464c956db049c7889c3ba6387329","type":"document"},"lc":"n50050793","bnf":"11918661","bav":"adv11560152"} {"selibr":"179566","version":"2013-07-01T14:07:50Z","_id":"030d7f115e474ef8992904d97fe99745","dnb":"1012607119","nla":"000035022347","term":"Brøgger, A.W. 1884-1951","key":"BrøggerAW1884-1951","nlilat":"000457472","viafid":"114431574","merge":{"source":"viaf","id":"030d7f115e474ef8992904d97fe99745","type":"document"},"lc":"n83220467","bav":"adv11143309"} {"version":"2013-07-01T14:07:50Z","_id":"032562f30cb45ed44025a073298197a2","dnb":"172262143","term":"Molé, Guillaume-François-Roger, 1742-1790","key":"MoléGuillaume-François-Roger1742-1790","viafid":"5026144","merge":{"source":"viaf","id":"032562f30cb45ed44025a073298197a2","type":"document"},"bnf":"12449254","bav":"adv10960748"} {"version":"2013-07-01T14:07:50Z","_id":"032abb10db700ae25e127d3347cfaf24","dnb":"133376702","term":"Ansquer de Ponçol, Henri-Simon-Joseph, 1730-1783","key":"AnsquerdePonçolHenri-Simon-Joseph1730-1783","viafid":"9902990","merge":{"source":"viaf","id":"032abb10db700ae25e127d3347cfaf24","type":"document"},"lc":"nr93015692","bnf":"12238142"} {"version":"2013-07-01T14:07:50Z","_id":"032db208e6a28d65cdf07eed40290f81","dnb":"10148206x","nla":"000035209885","ptbnp":"107800","term":"Van Rijnberk, Gérard, 1875-1953","key":"VanRijnberkGérard1875-1953","viafid":"89366293","nlilat":"000111649","merge":{"source":"viaf","id":"032db208e6a28d65cdf07eed40290f81","type":"document"},"lc":"n83141475","bnf":"15523804","bav":"adv11096082"} {"version":"2013-07-01T14:07:50Z","_id":"032e7ec467d740a16f1dda5d873d6902","dnb":"123462096","term":"Mesarić, Kalman (1900-1983)","key":"MesarićKalman(1900-1983)","viafid":"52597351","merge":{"source":"viaf","id":"032e7ec467d740a16f1dda5d873d6902","type":"document"},"lc":"nr98042296","bnf":"11490922"} {"nkc":"ola2002158365","version":"2013-07-01T14:07:50Z","_id":"032f45bae823d220d1c77d6d62353984","bne":"xx897937","dnb":"118668188","nla":"000035648045","ptbnp":"266076","term":"Campra, André, 1660-1744","key":"CampraAndré1660-1744","nlilat":"000436205","viafid":"74036950","merge":{"source":"viaf","id":"032f45bae823d220d1c77d6d62353984","type":"document"},"lc":"n81047490","bnf":"13892105"} {"viafid":"180199665","merge":{"source":"viaf","id":"03345478b7fb3bcd2929941c839c126d","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"03345478b7fb3bcd2929941c839c126d","lc":"n00026607","term":"Mächler, Stefan, 1957- | Fall Wilkomirski. English","key":"MächlerStefan1957-|FallWilkomirskiEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"0338eea3c8564130e982240713188bc1","term":"Duparcque, Frédéric, 1788-1879","key":"DuparcqueFrédéric1788-1879","viafid":"86377830","merge":{"source":"viaf","id":"0338eea3c8564130e982240713188bc1","type":"document"},"lc":"no2009060497","bav":"adv10233738"} {"viafid":"174709176","merge":{"source":"viaf","id":"0339c2dc53d026bfc62ee1832d2635b9","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0339c2dc53d026bfc62ee1832d2635b9","lc":"n98108337","term":"Säfve, Torbjörn, 1941- | Hemliga litterära världsakademin","key":"SäfveTorbjörn1941-|Hemligalitteräravärldsakademin"} {"nkc":"jo2003169898","version":"2013-07-01T14:07:50Z","_id":"033a1893fa41fe5fa0a7ac78945ebf08","dnb":"123298679","term":"Béthune, Philippe de (1561-1649)","key":"BéthunePhilippede(1561-1649)","viafid":"51804405","merge":{"source":"viaf","id":"033a1893fa41fe5fa0a7ac78945ebf08","type":"document"},"lc":"n86031977","bav":"adv10300625"} {"version":"2013-07-01T14:07:50Z","_id":"033aa662967208c76ebece545e0a2298","dnb":"1023771381","term":"Fagel, François, 1740-1773","key":"FagelFrançois1740-1773","viafid":"9602583","merge":{"source":"viaf","id":"033aa662967208c76ebece545e0a2298","type":"document"},"lc":"no2006079310"} {"version":"2013-07-01T14:07:50Z","_id":"0341dbf68e43de72d2e1d1dceda144ff","ptbnp":"1207402","term":"Foucher, Émile, 1823-1867","key":"FoucherÉmile1823-1867","viafid":"88927368","merge":{"source":"viaf","id":"0341dbf68e43de72d2e1d1dceda144ff","type":"document"},"bav":"adv10195864"} {"version":"2013-07-01T14:07:50Z","_id":"03496ee8c33b042cd5a1098a9916e71b","bne":"xx1761822","dnb":"118759787","nla":"000035481242","ptbnp":"927818","term":"Schmidt-Görg, Joseph 1897-1981","key":"Schmidt-GörgJoseph1897-1981","viafid":"111892933","merge":{"source":"viaf","id":"03496ee8c33b042cd5a1098a9916e71b","type":"document"},"lc":"n50006704","bnf":"14805666","bav":"adv11553146"} {"version":"2013-07-01T14:07:50Z","_id":"034cc592d68c4366371314ecf545cf56","dnb":"118825127","term":"Loaisel Tréogate, Joseph-Marie, 1752-1812","key":"LoaiselTréogateJoseph-Marie1752-1812","nlilat":"000452867","viafid":"4932831","merge":{"source":"viaf","id":"034cc592d68c4366371314ecf545cf56","type":"document"},"lc":"n83041861","bnf":"11913182"} {"nkc":"ola2003193953","version":"2013-07-01T14:07:50Z","_id":"035a0b12e64b89d6f252da841367949c","dnb":"158511174","term":"Bystrzycki, Przemysław (1923-2004)","key":"BystrzyckiPrzemysław(1923-2004)","viafid":"79416665","merge":{"source":"viaf","id":"035a0b12e64b89d6f252da841367949c","type":"document"},"lc":"n84204624"} {"version":"2013-07-01T14:07:50Z","_id":"03649c73578886fc0d8015be211040d3","dnb":"101342594","nla":"000035294755","ptbnp":"84355","term":"Tournier, Édouard, 1831-1899","key":"TournierÉdouard1831-1899","nlilat":"000213419","viafid":"89376023","merge":{"source":"viaf","id":"03649c73578886fc0d8015be211040d3","type":"document"},"lc":"no2011149821","bav":"adv11105832"} {"version":"2013-07-01T14:07:50Z","_id":"036e6fbff7192f45d46785102305497e","dnb":"118936522","nla":"000036011637","ptbnp":"96547","term":"Renaudot, Théophraste, 1586-1653","key":"RenaudotThéophraste1586-1653","nlilat":"000444219","viafid":"83101172","merge":{"source":"viaf","id":"036e6fbff7192f45d46785102305497e","type":"document"},"lc":"n82058563","bnf":"12335203"} {"nkc":"jn20010316191","version":"2013-07-01T14:07:50Z","_id":"0374f2c34e6f13eca4f14769b8962a72","dnb":"116889292","term":"Von Schönthan, Franz, 1849-1913","key":"VonSchönthanFranz1849-1913","viafid":"66719381","nlilat":"000443875","merge":{"source":"viaf","id":"0374f2c34e6f13eca4f14769b8962a72","type":"document"},"lc":"n82051104","bnf":"14618811"} {"version":"2013-07-01T14:07:50Z","_id":"03847e4c9763d04b976d253cf0c30cb3","bne":"xx1243213","dnb":"136198341","ptbnp":"44694","term":"Chagas, João, 1863-1925","key":"ChagasJoão1863-1925","viafid":"66490689","merge":{"source":"viaf","id":"03847e4c9763d04b976d253cf0c30cb3","type":"document"},"lc":"n87927766","bnf":"12074341"} {"version":"2013-07-01T14:07:50Z","_id":"0388edbbd32cb70508615c57a269755f","dnb":"101326041","nla":"000035791107","ptbnp":"32558","term":"Thévenin, René, 1877-1967","key":"ThéveninRené1877-1967","nlilat":"000478817","viafid":"110022734","merge":{"source":"viaf","id":"0388edbbd32cb70508615c57a269755f","type":"document"},"lc":"n85825172","bnf":"15868284"} {"nkc":"jn20000701323","selibr":"207655","version":"2013-07-01T14:07:50Z","_id":"038c48d9dd7a8ade2ee593afe4e8f420","bne":"xx1148076","dnb":"118588192","nla":"000036012840","ptbnp":"47151","term":"Nin, Anaïs, 1903-1977","key":"NinAnaïs1903-1977","viafid":"14774462","nlilat":"000099832","merge":{"source":"viaf","id":"038c48d9dd7a8ade2ee593afe4e8f420","type":"document"},"jpg":"500257487","lc":"n79041785","bnf":"11917732"} {"viafid":"186015450","merge":{"source":"viaf","id":"0397e6aac2ddcf6d0431779670f9d55c","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0397e6aac2ddcf6d0431779670f9d55c","lc":"n98077051","term":"Sullivan, Henry W., 1942- | Calderón in the German lands and the Low Countries. Spanish","key":"SullivanHenryW1942-|CalderónintheGermanlandsandtheLowCountriesSpanish"} {"nkc":"ola2002153754","version":"2013-07-01T14:07:50Z","_id":"03aec64adc3413f86d58b119ceea2abc","bne":"xx1265318","dnb":"115690158","nla":"000035187595","ptbnp":"16499","term":"Braga, Teófilo, 1843-1924","key":"BragaTeófilo1843-1924","nlilat":"000449474","viafid":"54161310","merge":{"source":"viaf","id":"03aec64adc3413f86d58b119ceea2abc","type":"document"},"lc":"n82211626","bnf":"12025206","bav":"adv10008296"} {"version":"2013-07-01T14:07:50Z","_id":"03afef8f182edb5be7e6b635f90ab2a3","nla":"000036722390","term":"Ku, Chʻeng, 1956- Selections Poems","key":"KuChʻeng1956-SelectionsPoems","viafid":"185421477","merge":{"source":"viaf","id":"03afef8f182edb5be7e6b635f90ab2a3","type":"document"},"lc":"nr96036087"} {"nkc":"jn19990003424","selibr":"60527","version":"2013-07-01T14:07:50Z","_id":"03b0d72a3b3bdd6b53e6850d8a424ae9","dnb":"119309548","nla":"000043077630","term":"Herling-Grudziński, Gustaw, 1919-2000","key":"Herling-GrudzińskiGustaw1919-2000","viafid":"17223996","nlilat":"000062344","merge":{"source":"viaf","id":"03b0d72a3b3bdd6b53e6850d8a424ae9","type":"document"},"lc":"n81056817","bnf":"11907347","bav":"adv11812395"} {"selibr":"190880","version":"2013-07-01T14:07:50Z","_id":"03b194c5f7b088737936d74e7d848622","dnb":"116440821","term":"Hammarsköld, Lorenzo, 1785-1827","key":"HammarsköldLorenzo1785-1827","viafid":"56599544","merge":{"source":"viaf","id":"03b194c5f7b088737936d74e7d848622","type":"document"},"lc":"nr98009139","bnf":"10526434"} {"version":"2013-07-01T14:07:50Z","_id":"03b250a0b1a67e3eb8c41c46f5899f69","bne":"xx1142375","dnb":"100314384","ptbnp":"414663","term":"De Ocampo, Florián, 1499?-1555?","key":"DeOcampoFlorián1499?-1555?","viafid":"100202275","merge":{"source":"viaf","id":"03b250a0b1a67e3eb8c41c46f5899f69","type":"document"},"lc":"n88244726","bav":"adv11388535"} {"viafid":"281671632","merge":{"source":"viaf","id":"03b9688927fd64aae9c71f1b882c5d80","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"03b9688927fd64aae9c71f1b882c5d80","term":"Ysermans, Joan, ca. 1590-ná 1631","key":"YsermansJoanca1590-ná1631"} {"nkc":"zmp2012739168","selibr":"67124","version":"2013-07-01T14:07:50Z","_id":"03bca13274682d086a41673a905cf321","bne":"xx4982218","dnb":"10096673x","nla":"000035487022","term":"Kimḥi, David, ca 1160-ca 1235","key":"KimḥiDavidca1160-ca1235","viafid":"100213323","nlicyr":"000151969","nlilat":"000075925","nliheb":"000185046","merge":{"source":"viaf","id":"03bca13274682d086a41673a905cf321","type":"document"},"lc":"n83120193","bnf":"11997296","bav":"adv10208072"} {"selibr":"216702","version":"2013-07-01T14:07:50Z","_id":"03be88c96f36a7cbceee8e8f181b813c","dnb":"129889512","term":"Högberg, Olof, 1855-1932","key":"HögbergOlof1855-1932","viafid":"6024113","merge":{"source":"viaf","id":"03be88c96f36a7cbceee8e8f181b813c","type":"document"},"lc":"n82142480"} {"viafid":"181623481","merge":{"source":"viaf","id":"03bea4128abba82a2d612931bbe69142","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"03bea4128abba82a2d612931bbe69142","lc":"n2010046632","term":"Urroz Kanan, Eloy, 1967- | Fricción. English","key":"UrrozKananEloy1967-|FricciónEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"03c3cf3001a80f27e47e06f77a3f277d","dnb":"1026769671","term":"Lote, René (1883-1944)","key":"LoteRené(1883-1944)","viafid":"54271583","merge":{"source":"viaf","id":"03c3cf3001a80f27e47e06f77a3f277d","type":"document"},"lc":"no2012126721","bnf":"12707211"} {"nkc":"jo20010091950","selibr":"252156","version":"2013-07-01T14:07:50Z","_id":"03dd5c9976e17d2225c8438f06b582d7","dnb":"118715143","term":"Kościuszko, Tadeusz, 1746-1817","key":"KościuszkoTadeusz1746-1817","viafid":"61554270","nlilat":"000234743","merge":{"source":"viaf","id":"03dd5c9976e17d2225c8438f06b582d7","type":"document"},"jpg":"500082545","lc":"n50042679","bnf":"11942955","bav":"adv12479613"} {"version":"2013-07-01T14:07:50Z","_id":"03e0f84dce1beeec5c950ba1cfdab3bc","dnb":"119181614","swnl":"vtls000105745","term":"Van Hove, Léon 1924-1990","key":"VanHoveLéon1924-1990","viafid":"120747971","merge":{"source":"viaf","id":"03e0f84dce1beeec5c950ba1cfdab3bc","type":"document"},"lc":"n85801639","bnf":"15343147"} {"nkc":"jn20010316190","version":"2013-07-01T14:07:50Z","_id":"03e2b007ece4f44b39197fd05753a2af","dnb":"170464407","nla":"000035047182","term":"Schäffle, Albert Eberhard Friedrich (1831-1903)","key":"SchäffleAlbertEberhardFriedrich(1831-1903)","viafid":"49357405","nlilat":"000119362","merge":{"source":"viaf","id":"03e2b007ece4f44b39197fd05753a2af","type":"document"},"lc":"n87896571","bnf":"13001985","bav":"adv10193854"} {"nkc":"mub2010601907","version":"2013-07-01T14:07:50Z","_id":"03e9516fda777fd728eb684745177989","term":"Kaczor, W. J., 1949-, (Wiesława J.)","key":"KaczorWJ1949-(WiesławaJ)","viafid":"74087975","merge":{"source":"viaf","id":"03e9516fda777fd728eb684745177989","type":"document"},"lc":"n99252423","bnf":"14530343"} {"nkc":"jn19990210225","selibr":"54872","version":"2013-07-01T14:07:50Z","_id":"03ee615ef5fc178700000785c0e5610a","egaxa":"vtls002227033","bne":"xx935590","dnb":"118689207","nla":"000040153226","term":"Gajdar, Arkadij Petrovič, 1904-1941","key":"GajdarArkadijPetrovič1904-1941","viafid":"42632124","nlicyr":"000149658","merge":{"source":"viaf","id":"03ee615ef5fc178700000785c0e5610a","type":"document"},"lc":"n50015461"} {"selibr":"350751","version":"2013-07-01T14:07:50Z","_id":"03f39ba00fb0588c2583abc2b40d4d50","dnb":"117614688","term":"Lefèbure, Louis François Henri, 1754-1840","key":"LefèbureLouisFrançoisHenri1754-1840","viafid":"27112682","merge":{"source":"viaf","id":"03f39ba00fb0588c2583abc2b40d4d50","type":"document"},"lc":"nr88006932","bnf":"12195705"} {"version":"2013-07-01T14:07:50Z","_id":"03f7de51fb3112824e3b5bb61e8907ec","dnb":"101159684","ptbnp":"182775","term":"Dufour, Médéric, b. 1866","key":"DufourMédéricb1866","nlilat":"000500303","viafid":"12307650","merge":{"source":"viaf","id":"03f7de51fb3112824e3b5bb61e8907ec","type":"document"},"lc":"n89633919","bnf":"11900980","bav":"adv11107034"} {"nkc":"js2006345207","version":"2013-07-01T14:07:50Z","_id":"03f93c2c6212c09f91729c3076f80b10","dnb":"131889141","term":"Hanžeković, Mato, 1884-1955","key":"HanžekovićMato1884-1955","viafid":"35601246","merge":{"source":"viaf","id":"03f93c2c6212c09f91729c3076f80b10","type":"document"},"lc":"n89629424","bnf":"11560135"} {"viafid":"287790346","merge":{"source":"viaf","id":"03fe7f0e439eb9a1762a5427e7748b73","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"03fe7f0e439eb9a1762a5427e7748b73","term":"Esdré, Adriaan, 1749-1822","key":"EsdréAdriaan1749-1822"} {"viafid":"175166042","merge":{"source":"viaf","id":"0408e832035b61eec14e6aebd3b58fe5","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0408e832035b61eec14e6aebd3b58fe5","lc":"n2010036779","term":"Sŏ, Chae-jŏng, 1960- | Power, interest, and identity in military alliances. Korean","key":"SŏChae-jŏng1960-|PowerinterestandidentityinmilitaryalliancesKorean"} {"nkc":"nlk20000083623","version":"2013-07-01T14:07:50Z","_id":"040a9231004fd808bd23d3be0496686f","dnb":"118796704","swnl":"vtls000035685","term":"Brücke, Ernst, 1819-1892","key":"BrückeErnst1819-1892","viafid":"49441325","nlilat":"000025995","merge":{"source":"viaf","id":"040a9231004fd808bd23d3be0496686f","type":"document"},"lc":"n83211267","bnf":"14431666","bav":"adv10138518"} {"version":"2013-07-01T14:07:50Z","_id":"0410998a6b57bc3e5ed0a7e7a384dccd","bne":"xx917589","dnb":"128491795","ptbnp":"207955","term":"Durán, Diego, d. 1588?","key":"DuránDiegod1588?","viafid":"15030586","merge":{"source":"viaf","id":"0410998a6b57bc3e5ed0a7e7a384dccd","type":"document"},"lc":"n81090283","bnf":"14644307","bav":"adv11998075"} {"nkc":"jx20041102006","version":"2013-07-01T14:07:50Z","_id":"043414f435da087eb8908c59ff77ac87","dnb":"123145805","term":"Sokolov, Jurij Matveevič, 1889-1941","key":"SokolovJurijMatveevič1889-1941","viafid":"74752359","nlilat":"000456547","merge":{"source":"viaf","id":"043414f435da087eb8908c59ff77ac87","type":"document"},"lc":"n83197191"} {"viafid":"209033298","merge":{"source":"viaf","id":"043949491cccd1c41799a212c8b309d5","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"043949491cccd1c41799a212c8b309d5","term":"Bossu, Antonin François, 1804-1897","key":"BossuAntoninFrançois1804-1897"} {"nkc":"mzk2003197598","version":"2013-07-01T14:07:50Z","_id":"0439994373e8de0fa5df68ff5ebf3248","dnb":"116653531","term":"De la Métherie, Jean-Claude, 1743-1817","key":"DelaMétherieJean-Claude1743-1817","nlilat":"000461920","viafid":"79028885","merge":{"source":"viaf","id":"0439994373e8de0fa5df68ff5ebf3248","type":"document"},"lc":"n84102385","bnf":"11910296","bav":"adv10872396"} {"version":"2013-07-01T14:07:50Z","_id":"043b7d941a7a7135bbcc5debcb8b5b22","bne":"xx1297861","dnb":"117564737","term":"Barrère, Pierre 1690-1755","key":"BarrèrePierre1690-1755","viafid":"73921885","merge":{"source":"viaf","id":"043b7d941a7a7135bbcc5debcb8b5b22","type":"document"},"lc":"no90025574","bnf":"12318827","bav":"adv10057539"} {"viafid":"201123204","merge":{"source":"viaf","id":"043db4cd9a3e7b5860fd13b05c676296","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"043db4cd9a3e7b5860fd13b05c676296","term":"Chailan, Fortuné, 1801-1840","key":"ChailanFortuné1801-1840"} {"version":"2013-07-01T14:07:50Z","_id":"045e864a7a829f1e7dd894e49d64cf72","dnb":"119184214","term":"Affò, Ireneo, 1741-1797","key":"AffòIreneo1741-1797","viafid":"41894199","nlilat":"000463482","merge":{"source":"viaf","id":"045e864a7a829f1e7dd894e49d64cf72","type":"document"},"lc":"n84158867","bnf":"12239778","bav":"adv10221407"} {"viafid":"6962579","merge":{"source":"viaf","id":"0461fba0848017c50a46d2ef2a64afdf","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0461fba0848017c50a46d2ef2a64afdf","lc":"no93006271","term":"Henze, Clément, b. 1880","key":"HenzeClémentb1880"} {"nkc":"jx20061114001","version":"2013-07-01T14:07:50Z","_id":"0462acc7f04769400aab09059514c4d7","bne":"xx963717","dnb":"129966118","nla":"000035965107","ptbnp":"31286","term":"De Navarrete, Martín Fernández, 1765-1844","key":"DeNavarreteMartínFernández1765-1844","nlilat":"000462196","viafid":"37085577","merge":{"source":"viaf","id":"0462acc7f04769400aab09059514c4d7","type":"document"},"lc":"n84112358","bnf":"13578080","bav":"adv10993049"} {"nkc":"jn19990005515","version":"2013-07-01T14:07:50Z","_id":"046f52476a5a3e2866eb848b20594f21","bne":"xx1145774","dnb":"12102721x","nla":"000035753249","ptbnp":"85932","term":"Mâle, Émile, 1862-1954","key":"MâleÉmile1862-1954","nlilat":"000410677","viafid":"22145190","merge":{"source":"viaf","id":"046f52476a5a3e2866eb848b20594f21","type":"document"},"lc":"n50044319","bnf":"11914085","bav":"adv11542586"} {"nkc":"nlk20000083861","version":"2013-07-01T14:07:50Z","_id":"048017763407c9d0feab8c35bc5766fc","dnb":"102446709","term":"Coindet, Jean-François, 1774-1834","key":"CoindetJean-François1774-1834","viafid":"32387488","merge":{"source":"viaf","id":"048017763407c9d0feab8c35bc5766fc","type":"document"},"lc":"nr97031053"} {"version":"2013-07-01T14:07:50Z","_id":"0480d99ad06a21cda31aec42df022c82","term":"Courty, Amédée, 1819-1886","key":"CourtyAmédée1819-1886","viafid":"17212308","merge":{"source":"viaf","id":"0480d99ad06a21cda31aec42df022c82","type":"document"},"lc":"no2009088056","bnf":"10466367","bav":"adv10140182"} {"nkc":"nlk20000087298","version":"2013-07-01T14:07:50Z","_id":"0489983008b30ffffd5411a765b47605","dnb":"138900612","nla":"000035748595","ptbnp":"1198036","term":"Guyon, Jean-Casimir-Félix, 1831-1920","key":"GuyonJean-Casimir-Félix1831-1920","viafid":"49372271","merge":{"source":"viaf","id":"0489983008b30ffffd5411a765b47605","type":"document"},"lc":"no2008022904","bnf":"13474474","bav":"adv11098073"} {"nkc":"nlk20010098015","version":"2013-07-01T14:07:50Z","_id":"048b9e68a999f3d566e52a3b4daa644f","dnb":"119856379","ptbnp":"602168","term":"Valleriola, François, 1504-1580","key":"ValleriolaFrançois1504-1580","viafid":"14878928","merge":{"source":"viaf","id":"048b9e68a999f3d566e52a3b4daa644f","type":"document"},"lc":"n92072378","bnf":"12512071","bav":"adv11312506"} {"version":"2013-07-01T14:07:50Z","_id":"04906f3898b37f72357ed71ad2aff69a","dnb":"100270565","term":"Sanadon, Noe͏̈l Étienne, 1676-1733","key":"SanadonNoe͏̈lÉtienne1676-1733","viafid":"14901377","merge":{"source":"viaf","id":"04906f3898b37f72357ed71ad2aff69a","type":"document"},"bnf":"12927451"} {"version":"2013-07-01T14:07:50Z","_id":"049ecd672af06be8d79ecf89963a5381","dnb":"100223133","ptbnp":"1386078","term":"Nicolas, Pierre-François, 1743-1816","key":"NicolasPierre-François1743-1816","viafid":"49566096","merge":{"source":"viaf","id":"049ecd672af06be8d79ecf89963a5381","type":"document"},"lc":"n88038862","bav":"adv11042105"} {"version":"2013-07-01T14:07:50Z","_id":"04a63a1f25d0fc9cae5d6f54e41e8195","dnb":"143943103","term":"Kampás, N. G., 1857-1932","key":"KampásNG1857-1932","viafid":"7639616","merge":{"source":"viaf","id":"04a63a1f25d0fc9cae5d6f54e41e8195","type":"document"},"lc":"n2002046131","bnf":"14612965"} {"version":"2013-07-01T14:07:50Z","_id":"04a878079e17522e532dc2144d4d2c59","dnb":"118512404","nla":"000035019885","term":"Bögli, Alfred 1912-1998","key":"BögliAlfred1912-1998","viafid":"74643858","merge":{"source":"viaf","id":"04a878079e17522e532dc2144d4d2c59","type":"document"},"lc":"n80060572","bav":"adv10003538"} {"nkc":"ola2002152506","selibr":"177224","version":"2013-07-01T14:07:50Z","_id":"04acfe101d9233c64beae5b655320ce9","bne":"xx1141963","dnb":"118746014","nla":"000035439635","ptbnp":"1199281","term":"Belov, Vasilij Ivanovič, 1932-2012","key":"BelovVasilijIvanovič1932-2012","viafid":"109315473","nlicyr":"000148162","merge":{"source":"viaf","id":"04acfe101d9233c64beae5b655320ce9","type":"document"},"lc":"n83223060","bnf":"11999476"} {"nkc":"jx20110128004","version":"2013-07-01T14:07:50Z","_id":"04ad72fe439952abdc8313be37e7fcb1","dnb":"116776951","term":"Czermák, Johann Nepomuk 1828-1873","key":"CzermákJohannNepomuk1828-1873","viafid":"54908970","nlilat":"000541882","merge":{"source":"viaf","id":"04ad72fe439952abdc8313be37e7fcb1","type":"document"},"lc":"nr2001006548"} {"nkc":"xx0019155","version":"2013-07-01T14:07:50Z","_id":"04af27814280743e92f89aeaa1cbc08a","dnb":"104747242","term":"Belych, Grigorij Georgievič, 1906-1938","key":"BelychGrigorijGeorgievič1906-1938","viafid":"165762447","nlicyr":"000251614","merge":{"source":"viaf","id":"04af27814280743e92f89aeaa1cbc08a","type":"document"},"lc":"n97030089","bnf":"12171182"} {"version":"2013-07-01T14:07:50Z","_id":"04b126487a1fb32c45979480be877664","bne":"xx1254712","dnb":"118968572","term":"Duller, Éduard 1809-1853","key":"DullerÉduard1809-1853","viafid":"15569672","merge":{"source":"viaf","id":"04b126487a1fb32c45979480be877664","type":"document"},"lc":"n84147603"} {"version":"2013-07-01T14:07:50Z","_id":"04c42fa5aa718c75d0b58bc29012f229","dnb":"159200881","ptbnp":"265529","term":"Salvá y Pérez, Vicente, 1780-1849","key":"SalváyPérezVicente1780-1849","viafid":"100211129","nlilat":"000457441","merge":{"source":"viaf","id":"04c42fa5aa718c75d0b58bc29012f229","type":"document"},"lc":"n83219748","bav":"adv11208671"} {"nkc":"nlk20020118625","version":"2013-07-01T14:07:50Z","_id":"04c6352b06d0feb132cedd13fe3db9d2","dnb":"124682057","term":"Römpp, Hermann, 1901-1964","key":"RömppHermann1901-1964","viafid":"28010996","nlilat":"000458924","merge":{"source":"viaf","id":"04c6352b06d0feb132cedd13fe3db9d2","type":"document"},"lc":"n83828742"} {"version":"2013-07-01T14:07:50Z","_id":"04cd7fd605be05142be248a78266e7ca","dnb":"117611484","term":"Müller, Theodor, 1816-1881","key":"MüllerTheodor1816-1881","viafid":"67247507","nlilat":"000097311","merge":{"source":"viaf","id":"04cd7fd605be05142be248a78266e7ca","type":"document"},"lc":"nr95008187"} {"nkc":"jk01050063","version":"2013-07-01T14:07:50Z","_id":"04e18be2ba3bd4eae200880a29df776f","bne":"xx886025","dnb":"123147646","term":"Chalupecký, Jindřich, 1910-1990","key":"ChalupeckýJindřich1910-1990","nlilat":"000030540","viafid":"14798286","merge":{"source":"viaf","id":"04e18be2ba3bd4eae200880a29df776f","type":"document"},"lc":"n85021133","bnf":"12095419"} {"version":"2013-07-01T14:07:50Z","_id":"04e1f1b48e7a2f70daf85c330545ce0b","dnb":"118941720","term":"De Camelat, Miquèu, 1871-1962","key":"DeCamelatMiquèu1871-1962","viafid":"36915704","merge":{"source":"viaf","id":"04e1f1b48e7a2f70daf85c330545ce0b","type":"document"},"lc":"n88647054","bnf":"11894928"} {"version":"2013-07-01T14:07:50Z","_id":"04e33195d548578281576989a2beca53","dnb":"143676598","term":"Goudriaan, Adrianus François 1768-1829","key":"GoudriaanAdrianusFrançois1768-1829","viafid":"96826309","merge":{"source":"viaf","id":"04e33195d548578281576989a2beca53","type":"document"},"lc":"no2009122052"} {"nkc":"jn20000603839","_id":"04ecfc9e517cf9be9404fe3b22e1e7e3","egaxa":"vtls000991871","bne":"xx1108074","dnb":"118575589","nla":"000035317436","ptbnp":"93770","term":"Lyotard, Jean-François, 1924-1998","key":"LyotardJean-François1924-1998","viafid":"108393539","merge":{"source":"viaf","id":"04ecfc9e517cf9be9404fe3b22e1e7e3","type":"document"},"jpg":"500222976","bnf":"11913700","selibr":"250200","version":"2013-07-01T14:07:50Z","nlilat":"000086756","lc":"n50037407","bav":"adv11113518"} {"nkc":"js20020805188","version":"2013-07-01T14:07:50Z","_id":"04f124d14ddb7c102d2e1ecf43374ba4","dnb":"119450305","term":"Jurčič, Josip, 1844-1881","key":"JurčičJosip1844-1881","viafid":"54483391","merge":{"source":"viaf","id":"04f124d14ddb7c102d2e1ecf43374ba4","type":"document"},"lc":"n84065262","bnf":"15868340"} {"nkc":"xx0004995","selibr":"61990","version":"2013-07-01T14:07:50Z","_id":"04f7b06776c01709ec4b03011a72d1e3","dnb":"119023970","nla":"000035828147","ptbnp":"1020891","term":"Huc, Évariste Régis, 1813-1860","key":"HucÉvaristeRégis1813-1860","nlilat":"000441520","viafid":"36919766","merge":{"source":"viaf","id":"04f7b06776c01709ec4b03011a72d1e3","type":"document"},"lc":"n81149691","bnf":"11907907","bav":"adv10230780"} {"viafid":"174643273","merge":{"source":"viaf","id":"04f87cd63d73d2c1a2111deca3c181f1","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"04f87cd63d73d2c1a2111deca3c181f1","lc":"n88231137","term":"Molloy, Sylvia, 1938- | En breve cárcel. English","key":"MolloySylvia1938-|EnbrevecárcelEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"05087616e17f9e97be581e129aa94197","dnb":"131656783","ptbnp":"147714","term":"Hoüard, David, 1725-1802","key":"HoüardDavid1725-1802","viafid":"17349649","merge":{"source":"viaf","id":"05087616e17f9e97be581e129aa94197","type":"document"},"lc":"no90005628","bnf":"12815184"} {"nliara":"000159322","version":"2013-07-01T14:07:50Z","_id":"050a9b1b7540d2dee4d68c3a04538905","term":"Ibn Ṭawq, Aḥmad ibn Muḥammad, 1430 or 31-1509 or 10","key":"IbnṬawqAḥmadibnMuḥammad1430or31-1509or10","viafid":"88074238","merge":{"source":"viaf","id":"050a9b1b7540d2dee4d68c3a04538905","type":"document"},"lc":"nr2001023499","bnf":"13736638"} {"nkc":"jk01030174","version":"2013-07-01T14:07:50Z","_id":"050f2f336a035b587c45e6b6620f66c2","dnb":"118528378","nla":"000035766995","term":"Dvořák, Max, 1874-1921","key":"DvořákMax1874-1921","viafid":"69052687","nlilat":"000435434","merge":{"source":"viaf","id":"050f2f336a035b587c45e6b6620f66c2","type":"document"},"jpg":"500207175","lc":"n81032850","bnf":"12678464","bav":"adv10179764"} {"nkc":"jn20000603575","selibr":"357043","version":"2013-07-01T14:07:50Z","_id":"0517d5a829f7dbf5ead1b155d2065caa","dnb":"118567306","term":"Kručenych, Aleksej, 1886-1968","key":"KručenychAleksej1886-1968","nlicyr":"000152535","viafid":"71393129","merge":{"source":"viaf","id":"0517d5a829f7dbf5ead1b155d2065caa","type":"document"},"jpg":"500202621","lc":"n84047047","bnf":"11910134"} {"version":"2013-07-01T14:07:50Z","_id":"052ad322c9255c4a341361b79afced42","bne":"xx924064","dnb":"118695010","nla":"000035125741","term":"Giménez Caballero, Ernesto 1899-1988","key":"GiménezCaballeroErnesto1899-1988","viafid":"113723156","merge":{"source":"viaf","id":"052ad322c9255c4a341361b79afced42","type":"document"},"lc":"n80010160","bnf":"12028378","bav":"adv10249073"} {"selibr":"288806","version":"2013-07-01T14:07:50Z","_id":"052b92513e1a3533501e26a0dbdea33e","dnb":"155208411","term":"Söderberg, Tom, 1900-1991","key":"SöderbergTom1900-1991","viafid":"119429326","merge":{"source":"viaf","id":"052b92513e1a3533501e26a0dbdea33e","type":"document"},"lc":"n79043740","bnf":"12164745"} {"version":"2013-07-01T14:07:50Z","_id":"053881bcf789fd21ae61b77acbb79b14","dnb":"117425478","nla":"000035077854","ptbnp":"275324","term":"Troyon, Frédéric, 1815?-1866?","key":"TroyonFrédéric1815?-1866?","viafid":"13084544","merge":{"source":"viaf","id":"053881bcf789fd21ae61b77acbb79b14","type":"document"},"lc":"nb2003070432","bav":"adv11200039"} {"version":"2013-07-01T14:07:50Z","_id":"0539855ff894e2349d851735a5371a4c","nla":"000035483161","term":"Rüter, Adolf Johann Cord, 1907-1965","key":"RüterAdolfJohannCord1907-1965","viafid":"89435404","merge":{"source":"viaf","id":"0539855ff894e2349d851735a5371a4c","type":"document"},"lc":"no2010004672","bav":"adv11189653"} {"version":"2013-07-01T14:07:50Z","_id":"053c90b753c5da9045e9ad53a5b039b9","dnb":"11752350x","term":"Hervé, Georges, 1855-1932","key":"HervéGeorges1855-1932","viafid":"62328807","merge":{"source":"viaf","id":"053c90b753c5da9045e9ad53a5b039b9","type":"document"},"lc":"n2001061601","bnf":"10602999"} {"nkc":"jk01121433","version":"2013-07-01T14:07:50Z","_id":"0545cffa55ff49d2ecfc8b09554afacd","dnb":"170427684","term":"Strmiska, Zdeněk, 1925-2009","key":"StrmiskaZdeněk1925-2009","viafid":"109307221","merge":{"source":"viaf","id":"0545cffa55ff49d2ecfc8b09554afacd","type":"document"},"lc":"n84128652","bnf":"12014522"} {"selibr":"331820","version":"2013-07-01T14:07:50Z","_id":"0557fcc095ac131dfd8a7a3b25362260","dnb":"124679935","term":"Palmén, Johan Philip, 1811-1896","key":"PalménJohanPhilip1811-1896","viafid":"42777810","merge":{"source":"viaf","id":"0557fcc095ac131dfd8a7a3b25362260","type":"document"}} {"version":"2013-07-01T14:07:50Z","_id":"0562fe0f7b923398c7e970c450c014b9","dnb":"100763146","term":"Pâris-Duverney, Joseph, 1684-1770","key":"Pâris-DuverneyJoseph1684-1770","viafid":"49577307","merge":{"source":"viaf","id":"0562fe0f7b923398c7e970c450c014b9","type":"document"},"lc":"n86113539"} {"viafid":"106940966","nkc":"kv2010540375","merge":{"source":"viaf","id":"056c37653c4613fd4c15731200ec47bc","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"056c37653c4613fd4c15731200ec47bc","term":"Piéry, Marius, 1873-1957","key":"PiéryMarius1873-1957"} {"version":"2013-07-01T14:07:50Z","_id":"056f946753c3750ce74f67c785e292cf","dnb":"100112366","term":"Ducamp, Théodore Joseph, 1793-1823","key":"DucampThéodoreJoseph1793-1823","viafid":"51543396","merge":{"source":"viaf","id":"056f946753c3750ce74f67c785e292cf","type":"document"},"lc":"nr91009615","bav":"adv10010403"} {"nkc":"mzk2009532667","version":"2013-07-01T14:07:50Z","_id":"056fe57dfe05468bd2ae1359ac28050c","dnb":"104241616","term":"Rouillé, Pierre-Julien, 1681-1740","key":"RouilléPierre-Julien1681-1740","viafid":"44736092","merge":{"source":"viaf","id":"056fe57dfe05468bd2ae1359ac28050c","type":"document"}} {"selibr":"342338","version":"2013-07-01T14:07:50Z","_id":"05758033ac5d994eded3de27f758483f","dnb":"120325098","term":"Kuripešić, Benedikt, fl. 1530","key":"KuripešićBenediktfl1530","viafid":"121829365","merge":{"source":"viaf","id":"05758033ac5d994eded3de27f758483f","type":"document"},"lc":"n86853205","bnf":"12686571"} {"nkc":"jx20090915002","version":"2013-07-01T14:07:50Z","_id":"057c9fe9600afaa6df596f9be1493d1b","dnb":"122403908","term":"Bucharaev, Ravilʹ Raisovič, 1951-, Vollstaendiger Name","key":"BucharaevRavilʹRaisovič1951-VollstaendigerName","viafid":"116936895","merge":{"source":"viaf","id":"057c9fe9600afaa6df596f9be1493d1b","type":"document"},"lc":"n79027451","bnf":"14416145"} {"viafid":"273620825","merge":{"source":"viaf","id":"057fa630e1e00e7d05294a94b521bb96","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"057fa630e1e00e7d05294a94b521bb96","nla":"000035556824","term":"Béraud, Antony, 1794?-1860","key":"BéraudAntony1794?-1860"} {"nkc":"jo20000082634","selibr":"232832","version":"2013-07-01T14:07:50Z","_id":"0581ad865d919b5884c1e358f3e11b2c","bne":"xx835835","dnb":"118508873","nla":"000035156402","ptbnp":"45871","term":"Benedetti, Mário, 1920-2009","key":"BenedettiMário1920-2009","viafid":"56585930","nlilat":"000018413","merge":{"source":"viaf","id":"0581ad865d919b5884c1e358f3e11b2c","type":"document"},"lc":"n50007687","bnf":"11891178"} {"selibr":"253593","version":"2013-07-01T14:07:50Z","_id":"058c19623a8f0ecdb6615b89db43a50c","nla":"000036462753","term":"Bøyesen, Lars Rostrup, 1915-1996","key":"BøyesenLarsRostrup1915-1996","viafid":"77681165","merge":{"source":"viaf","id":"058c19623a8f0ecdb6615b89db43a50c","type":"document"},"lc":"n83000840"} {"nkc":"xx0013446","selibr":"273488","version":"2013-07-01T14:07:50Z","_id":"058ddc900602a804721042951a576d3e","dnb":"117611425","nla":"000035287723","term":"Müller, Sophus, 1846-1934","key":"MüllerSophus1846-1934","viafid":"74634692","merge":{"source":"viaf","id":"058ddc900602a804721042951a576d3e","type":"document"},"lc":"n85126271"} {"version":"2013-07-01T14:07:50Z","_id":"058f7f33edeeec529a7e56b98852efad","dnb":"107367459","term":"Schazmann, Paul-Émile 1902-1978","key":"SchazmannPaul-Émile1902-1978","viafid":"25116970","merge":{"source":"viaf","id":"058f7f33edeeec529a7e56b98852efad","type":"document"},"lc":"n85804980","bnf":"13007890"} {"nkc":"jo2003192727","version":"2013-07-01T14:07:50Z","_id":"0590e1ff5d2e281aecdbe39a91978b21","dnb":"124653618","ptbnp":"109210","term":"Marillier, Clément-Pierre, 1740-1808","key":"MarillierClément-Pierre1740-1808","viafid":"54151134","nlilat":"000479801","merge":{"source":"viaf","id":"0590e1ff5d2e281aecdbe39a91978b21","type":"document"},"jpg":"500025546","lc":"n86024578","bnf":"11914583"} {"nkc":"js2005303599","version":"2013-07-01T14:07:50Z","_id":"0598cc11455dca3af08bfc49b4d5c06b","dnb":"156295261","term":"Dobrovol'skij, Vladimir Anatol'jevič, 1918-2003","key":"Dobrovol'skijVladimirAnatol'jevič1918-2003","viafid":"84243925","merge":{"source":"viaf","id":"0598cc11455dca3af08bfc49b4d5c06b","type":"document"}} {"nkc":"jo20000082500","selibr":"195080","version":"2013-07-01T14:07:50Z","_id":"059d8c7f7f68e2142a01ff293c08e86d","dnb":"118785281","nla":"000035368864","term":"Münsterberg, Hugo, 1863-1916","key":"MünsterbergHugo1863-1916","nlicyr":"000154128","nlilat":"000097394","viafid":"12370549","merge":{"source":"viaf","id":"059d8c7f7f68e2142a01ff293c08e86d","type":"document"},"lc":"n78094053","bnf":"12283551","bav":"adv10974502"} {"nkc":"xx0153384","version":"2013-07-01T14:07:50Z","_id":"05a1ad199447e7c1e449462c1579d559","bne":"xx937482","dnb":"116543434","ptbnp":"94158","term":"Clément, Félix, 1822-1885","key":"ClémentFélix1822-1885","viafid":"44344471","nlilat":"000032468","merge":{"source":"viaf","id":"05a1ad199447e7c1e449462c1579d559","type":"document"},"lc":"nr97044067","bnf":"12194364","bav":"adv10045031"} {"version":"2013-07-01T14:07:50Z","_id":"05c24a54ad3bb52213c5eeeb9ced6576","dnb":"117610631","term":"Jacques, Amédée Florent (1813-1865)","key":"JacquesAmédéeFlorent(1813-1865)","viafid":"51736445","merge":{"source":"viaf","id":"05c24a54ad3bb52213c5eeeb9ced6576","type":"document"},"bnf":"12198402"} {"version":"2013-07-01T14:07:50Z","_id":"05c35b9bcdfc2047fcd6f18f9b3a8cd9","dnb":"124706576","nla":"000035644009","term":"Rodokanakēs, Platōn, 1883-1919","key":"RodokanakēsPlatōn1883-1919","viafid":"2645998","merge":{"source":"viaf","id":"05c35b9bcdfc2047fcd6f18f9b3a8cd9","type":"document"},"lc":"n88039792","bnf":"13614255"} {"nkc":"mzk2010598102","version":"2013-07-01T14:07:50Z","_id":"05c37a440591de5d1e3f8c2e8d0457dc","dnb":"122173376","term":"Svešnikov, Aleksandr Vasil'evič, 1890-1980","key":"SvešnikovAleksandrVasil'evič1890-1980","viafid":"3347046","merge":{"source":"viaf","id":"05c37a440591de5d1e3f8c2e8d0457dc","type":"document"},"lc":"no92008797","bnf":"13900202"} {"selibr":"208389","version":"2013-07-01T14:07:50Z","_id":"05c3fc9fd5d3b3e5fd907a5acfd90943","bne":"xx1029941","dnb":"119006944","ptbnp":"220895","term":"Silvestre, Israël, 1621-1691","key":"SilvestreIsraël1621-1691","viafid":"66475460","merge":{"source":"viaf","id":"05c3fc9fd5d3b3e5fd907a5acfd90943","type":"document"},"jpg":"500021067","lc":"n80122940","bnf":"11944884","bav":"adv10006903"} {"version":"2013-07-01T14:07:50Z","_id":"05c72c00a134d1495b66eee4afc15a34","dnb":"142840548","term":"François-Franck, Charles-Émile, 1849-1921","key":"François-FranckCharles-Émile1849-1921","viafid":"100306331","merge":{"source":"viaf","id":"05c72c00a134d1495b66eee4afc15a34","type":"document"},"lc":"no2010149793","bnf":"13417947"} {"version":"2013-07-01T14:07:50Z","_id":"05c959e54bbdf650f997c902b0846792","dnb":"119345250","term":"İnönü, Erdal 1926-2007","key":"İnönüErdal1926-2007","viafid":"22949166","merge":{"source":"viaf","id":"05c959e54bbdf650f997c902b0846792","type":"document"},"lc":"n83827751","bnf":"16254580"} {"viafid":"213994337","merge":{"source":"viaf","id":"05ce66441eb5a08942c65043f203fae3","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"05ce66441eb5a08942c65043f203fae3","dnb":"942203305","term":"Dewarrat, Marie-Claire 1949- | Carême","key":"DewarratMarie-Claire1949-|Carême"} {"nkc":"xx0103929","version":"2013-07-01T14:07:50Z","_id":"05d0e7932b99f33bbc0513f988a9f7b2","dnb":"116663170","term":"Lampe, Félix, 1868-1946","key":"LampeFélix1868-1946","viafid":"89210033","nlilat":"000504783","merge":{"source":"viaf","id":"05d0e7932b99f33bbc0513f988a9f7b2","type":"document"},"lc":"n91003138"} {"version":"2013-07-01T14:07:50Z","_id":"05d16511c8e130f180b3b0565a2741cf","dnb":"13161598x","nla":"000036554819","term":"Bouvier, Eugène-Louis (1856-1944)","key":"BouvierEugène-Louis(1856-1944)","viafid":"2534337","nlilat":"000440347","merge":{"source":"viaf","id":"05d16511c8e130f180b3b0565a2741cf","type":"document"},"lc":"n81127111","bnf":"12284756"} {"version":"2013-07-01T14:07:50Z","_id":"05d941f1d3d61dfe8de9a0dccfb3cbbb","dnb":"104306335","term":"Sarlandière, Jean-Baptiste, 1787-1838","key":"SarlandièreJean-Baptiste1787-1838","viafid":"74286485","merge":{"source":"viaf","id":"05d941f1d3d61dfe8de9a0dccfb3cbbb","type":"document"},"lc":"nr98019480","bnf":"16567409","bav":"adv11167022"} {"version":"2013-07-01T14:07:50Z","_id":"05dfcb4aa84b067168e5dc11659455b6","dnb":"100495311","ptbnp":"169769","term":"Hamonière, G., b. 1789","key":"HamonièreGb1789","nlilat":"000530739","viafid":"88849653","merge":{"source":"viaf","id":"05dfcb4aa84b067168e5dc11659455b6","type":"document"},"lc":"no97012776","bnf":"13479011","bav":"adv10146162"} {"nkc":"jn19990003087","selibr":"59004","version":"2013-07-01T14:07:50Z","_id":"05e842c4e471293dcc10cc8a81943e5d","egaxa":"vtls001285557","bne":"xx1052465","dnb":"118919660","nla":"000035162657","ptbnp":"55875","term":"Halévy, Ludovic, 1834-1908","key":"HalévyLudovic1834-1908","viafid":"64006915","nlilat":"000059373","merge":{"source":"viaf","id":"05e842c4e471293dcc10cc8a81943e5d","type":"document"},"lc":"n50017872","bnf":"11906722","bav":"adv10075439"} {"version":"2013-07-01T14:07:50Z","_id":"05ed3c129ca6b131fa5362410068cb0a","dnb":"121788210","ptbnp":"125001","term":"Pommier, Amédée, 1804-1877","key":"PommierAmédée1804-1877","viafid":"49359340","merge":{"source":"viaf","id":"05ed3c129ca6b131fa5362410068cb0a","type":"document"},"lc":"nr2005030141","bnf":"13055646"} {"version":"2013-07-01T14:07:50Z","_id":"05ede19b60a708516bda152edfc27d5a","dnb":"101015526","term":"Sudre, Théodore, 1718-1795","key":"SudreThéodore1718-1795","viafid":"29309422","merge":{"source":"viaf","id":"05ede19b60a708516bda152edfc27d5a","type":"document"},"lc":"no2007056275"} {"nkc":"jn20000700787","selibr":"207703","version":"2013-07-01T14:07:50Z","_id":"05f10c464f25789b07e6b4a93c357b11","bne":"xx887177","dnb":"118811215","ptbnp":"35297","term":"Jabès, Edmond, 1912-1991","key":"JabèsEdmond1912-1991","nlilat":"000428803","viafid":"76317331","merge":{"source":"viaf","id":"05f10c464f25789b07e6b4a93c357b11","type":"document"},"lc":"n80064201","bnf":"11908353"} {"nkc":"jx20100106001","version":"2013-07-01T14:07:50Z","_id":"05f8570478b25de8cc8d951afbe0fede","bne":"xx1008983","dnb":"119262304","nla":"000036569745","term":"Barragán, Luis, 1902-1988","key":"BarragánLuis1902-1988","viafid":"22947293","merge":{"source":"viaf","id":"05f8570478b25de8cc8d951afbe0fede","type":"document"},"jpg":"500009714","lc":"n82144420","bav":"adv11637906"} {"viafid":"22568156","merge":{"source":"viaf","id":"05ff888ce9fe83516be75d0a30da480c","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"05ff888ce9fe83516be75d0a30da480c","dnb":"104087897","term":"Enschedé, Joannes 1708-1780","key":"EnschedéJoannes1708-1780"} {"version":"2013-07-01T14:07:50Z","_id":"0603a772eaf1607a68f4e71d83b25e7a","dnb":"101699425","term":"Haigneré, Daniel, 1824-1893","key":"HaigneréDaniel1824-1893","viafid":"100287388","nlilat":"000483090","merge":{"source":"viaf","id":"0603a772eaf1607a68f4e71d83b25e7a","type":"document"},"lc":"n86142430","bnf":"12327707","bav":"adv10159068"} {"nliara":"000159542","selibr":"191232","version":"2013-07-01T14:07:50Z","_id":"060d2fab1d446583d38ec2cca02a5121","egaxa":"vtls001520919","dnb":"118885855","nla":"000036506257","term":"Ibn Ḥanbal, Aḥmad ibn Muḥammad, 780-855","key":"IbnḤanbalAḥmadibnMuḥammad780-855","nlilat":"000066400","viafid":"90072121","merge":{"source":"viaf","id":"060d2fab1d446583d38ec2cca02a5121","type":"document"},"lc":"n82120532","bnf":"14560951","bav":"adv12057691"} {"viafid":"184363174","merge":{"source":"viaf","id":"062d341d00721973497081061b2d717f","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"062d341d00721973497081061b2d717f","lc":"n92118505","term":"Becker, Jörg, 1946- | Informationstechnologie in der Dritten Welt. Spanish","key":"BeckerJörg1946-|InformationstechnologieinderDrittenWeltSpanish"} {"nkc":"jn20011018021","version":"2013-07-01T14:07:50Z","_id":"0639300b20d95253d5fcccb6e86b451d","dnb":"117616443","nla":"000035020398","term":"Börnstein, R., 1852-1913","key":"BörnsteinR1852-1913","viafid":"45084919","nlilat":"000439755","merge":{"source":"viaf","id":"0639300b20d95253d5fcccb6e86b451d","type":"document"},"lc":"n81114103"} {"version":"2013-07-01T14:07:50Z","_id":"06445f6f14737794c92dfdecaca526a5","dnb":"100466613","term":"Du Wés, Giles, d. 1535","key":"DuWésGilesd1535","viafid":"56958313","nlilat":"000526977","merge":{"source":"viaf","id":"06445f6f14737794c92dfdecaca526a5","type":"document"},"lc":"nr93003317"} {"nkc":"nlk20010095088","version":"2013-07-01T14:07:50Z","_id":"064a3bcdcd373f3d69a3d7c11299ad01","bne":"xx1509955","dnb":"172865581","swnl":"vtls001845815","ptbnp":"1170490","term":"Burggraeve, Adolphe 1806-1902 médecin","key":"BurggraeveAdolphe1806-1902médecin","nlilat":"000487154","viafid":"22356578","merge":{"source":"viaf","id":"064a3bcdcd373f3d69a3d7c11299ad01","type":"document"},"lc":"n87143921","bnf":"14411246","bav":"adv10039822"} {"nkc":"jn20000601841","selibr":"188306","version":"2013-07-01T14:07:50Z","_id":"064c8f328a561cf6b785d5fe0075f34b","bne":"xx949471","dnb":"118639250","nla":"000035494819","ptbnp":"1184722","term":"Gladkov, Fedor Vasil'evič, 1883-1958","key":"GladkovFedorVasil'evič1883-1958","viafid":"14808548","nlilat":"000053687","nlicyr":"000149906","merge":{"source":"viaf","id":"064c8f328a561cf6b785d5fe0075f34b","type":"document"},"lc":"n83033940","bnf":"12153434"} {"version":"2013-07-01T14:07:50Z","_id":"064fcdb7d1de507dd756a9557de520c0","dnb":"104359129","term":"Benoît, André, 1919-1999","key":"BenoîtAndré1919-1999","viafid":"91254540","nlilat":"000275776","merge":{"source":"viaf","id":"064fcdb7d1de507dd756a9557de520c0","type":"document"},"lc":"n87814894","bnf":"12039796","bav":"adv11363714"} {"nkc":"jn20030707002","selibr":"178463","version":"2013-07-01T14:07:50Z","_id":"06591d91c150c92af9835cf50d2c62fb","dnb":"121628965","term":"Bjurström, Carl-Gustaf (1919-2001)","key":"BjurströmCarl-Gustaf(1919-2001)","viafid":"111662582","merge":{"source":"viaf","id":"06591d91c150c92af9835cf50d2c62fb","type":"document"},"lc":"n86048828","bnf":"12124245"} {"version":"2013-07-01T14:07:50Z","_id":"065c50ea12cb2d80a999478d239a9ab8","dnb":"174299559","term":"Bellicard, Jérôme-Charles, 1726-1786","key":"BellicardJérôme-Charles1726-1786","viafid":"19795286","merge":{"source":"viaf","id":"065c50ea12cb2d80a999478d239a9ab8","type":"document"},"jpg":"500056684","lc":"nr90023327","bnf":"12563614","bav":"adv10231647"} {"version":"2013-07-01T14:07:50Z","_id":"066563a6e5eed341f77180a4a21741f9","dnb":"12108972x","term":"Vendôme, César de Bourbon, 1594-1665, duc de","key":"VendômeCésardeBourbon1594-1665ducde","viafid":"51834768","merge":{"source":"viaf","id":"066563a6e5eed341f77180a4a21741f9","type":"document"},"lc":"n87921604","bnf":"13320597","bav":"adv12218451"} {"viafid":"197153509","merge":{"source":"viaf","id":"0669f8ea262f3b8052985c7bc2e67ec3","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0669f8ea262f3b8052985c7bc2e67ec3","bnf":"10848291","term":"Condé, Bruno, 1920-2004","key":"CondéBruno1920-2004"} {"version":"2013-07-01T14:07:50Z","_id":"066e22c971053b945164b1c3c0211929","dnb":"131424092","term":"Cadier, Léon, 1862-1889","key":"CadierLéon1862-1889","viafid":"17341513","nlilat":"000278813","merge":{"source":"viaf","id":"066e22c971053b945164b1c3c0211929","type":"document"},"lc":"n81098089","bnf":"12594274","bav":"adv10001382"} {"viafid":"182579379","merge":{"source":"viaf","id":"066fa0f96497ef25024fb2ce97b50fdf","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"066fa0f96497ef25024fb2ce97b50fdf","lc":"no2011145982","term":"Popescu, Dumitru Radu, 1935- | Plays (Scrisul Românesc (Firm))","key":"PopescuDumitruRadu1935-|Plays(ScrisulRomânesc(Firm))"} {"viafid":"175860653","merge":{"source":"viaf","id":"0671438f6a218e762d6c1af41e376cd8","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0671438f6a218e762d6c1af41e376cd8","lc":"n90675555","term":"Ríos Ruiz, Manuel, 1934- | Poems. Selections","key":"RíosRuizManuel1934-|PoemsSelections"} {"version":"2013-07-01T14:07:50Z","_id":"0679f0944f5a75db66565e7cbd4bb36e","dnb":"119194449","term":"Slüter, Joachim 1490?-1532","key":"SlüterJoachim1490?-1532","viafid":"73941663","merge":{"source":"viaf","id":"0679f0944f5a75db66565e7cbd4bb36e","type":"document"},"lc":"nr88003093","bnf":"12417587"} {"version":"2013-07-01T14:07:50Z","_id":"067cc02a3ea7a2aeb2076b9146b12c73","dnb":"138434794","term":"Tzitzéica, Georges, 1873-1939","key":"TzitzéicaGeorges1873-1939","viafid":"22285232","merge":{"source":"viaf","id":"067cc02a3ea7a2aeb2076b9146b12c73","type":"document"},"bnf":"13206058"} {"nkc":"jn20000600676","version":"2013-07-01T14:07:50Z","_id":"067f8a57622cb14e2b37f6879ec652f1","dnb":"118928139","nla":"000036240777","term":"Bažov, Pavel Petrovič, 1879-1950","key":"BažovPavelPetrovič1879-1950","viafid":"61747706","merge":{"source":"viaf","id":"067f8a57622cb14e2b37f6879ec652f1","type":"document"},"lc":"n82276231","bnf":"12302154"} {"viafid":"100262560","merge":{"source":"viaf","id":"0687cf0da966e787af9a417f771272af","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0687cf0da966e787af9a417f771272af","bnf":"10477669","term":"Marjolin, René, 1812-1895","key":"MarjolinRené1812-1895"} {"version":"2013-07-01T14:07:50Z","_id":"069004114bebe77076f82823a45bc54c","bne":"xx1000933","dnb":"118778072","term":"Krüger, Fritz, b. 1889","key":"KrügerFritzb1889","viafid":"20476475","merge":{"source":"viaf","id":"069004114bebe77076f82823a45bc54c","type":"document"},"jpg":"500348408","lc":"n93098114","bav":"adv10001814"} {"version":"2013-07-01T14:07:50Z","_id":"0690c1862a77f156369675346ef98f96","dnb":"128745398","nla":"000049287147","term":"Mulot, François-Valentin, 1749-1804","key":"MulotFrançois-Valentin1749-1804","viafid":"5041159","nlilat":"000495994","merge":{"source":"viaf","id":"0690c1862a77f156369675346ef98f96","type":"document"},"lc":"n88277093","bnf":"12528830"} {"version":"2013-07-01T14:07:50Z","_id":"0693c5f038b384e677c5e77e154c2530","dnb":"100114245","term":"Dubois, Léon-Jean-Joseph, 1780-1846","key":"DuboisLéon-Jean-Joseph1780-1846","viafid":"14896063","merge":{"source":"viaf","id":"0693c5f038b384e677c5e77e154c2530","type":"document"},"bnf":"12718516"} {"nkc":"jx20110607011","version":"2013-07-01T14:07:50Z","_id":"069f1bb9058b863e69f380b2fa393d5e","dnb":"118154346","term":"Müller, Klaus-Jürgen, 1930-2011","key":"MüllerKlaus-Jürgen1930-2011","viafid":"193716647","merge":{"source":"viaf","id":"069f1bb9058b863e69f380b2fa393d5e","type":"document"}} {"nkc":"ola2003198070","version":"2013-07-01T14:07:50Z","_id":"06a8355a8f1d760ee3d0eef8733a5c81","dnb":"120151804","term":"Ważyk, Adam, 1905-1982","key":"WażykAdam1905-1982","viafid":"54162839","nlilat":"000452096","merge":{"source":"viaf","id":"06a8355a8f1d760ee3d0eef8733a5c81","type":"document"},"lc":"n83019835","bnf":"12029894"} {"version":"2013-07-01T14:07:50Z","_id":"06af10eff23a8b0676a64a7599915cc8","dnb":"171979176","term":"Béraud, Paul-Émilien, 1751-1836","key":"BéraudPaul-Émilien1751-1836","viafid":"69027028","merge":{"source":"viaf","id":"06af10eff23a8b0676a64a7599915cc8","type":"document"},"lc":"n84001362","bnf":"12459996"} {"nkc":"xx0097292","version":"2013-07-01T14:07:50Z","_id":"06b41cdb86d2d8d686541df0311b827b","dnb":"117186058","term":"Muñoz, Antonio, 1884-1960","key":"MuñozAntonio1884-1960","nlilat":"000469506","viafid":"140062","merge":{"source":"viaf","id":"06b41cdb86d2d8d686541df0311b827b","type":"document"},"jpg":"500061003","lc":"n85101793","bnf":"12898573","bav":"adv10191773"} {"version":"2013-07-01T14:07:50Z","_id":"06b6e21b0c20cc0e2f9150570cf73ce2","dnb":"119421607","nla":"000036500020","term":"De Maré, Eric Samuel (1910-2002)","key":"DeMaréEricSamuel(1910-2002)","nlilat":"000037760","viafid":"97764159","merge":{"source":"viaf","id":"06b6e21b0c20cc0e2f9150570cf73ce2","type":"document"},"jpg":"500226038","lc":"n50040408","bnf":"12762896"} {"nkc":"jk01042148","version":"2013-07-01T14:07:50Z","_id":"06be3bc85bb78e50239873e37aae4573","dnb":"102367817","term":"Horálek, Karel, 1908-1992","key":"HorálekKarel1908-1992","viafid":"17236384","merge":{"source":"viaf","id":"06be3bc85bb78e50239873e37aae4573","type":"document"},"lc":"n80138924","bnf":"12023715"} {"nkc":"mzk2010564361","version":"2013-07-01T14:07:50Z","_id":"06c16ad77d3b5db8889a3045f51b7371","dnb":"172988926","ptbnp":"913753","term":"Callet, Jean-François, 1744-1799, Mathématicien","key":"CalletJean-François1744-1799Mathématicien","viafid":"232873357","merge":{"source":"viaf","id":"06c16ad77d3b5db8889a3045f51b7371","type":"document"},"bnf":"10544471"} {"version":"2013-07-01T14:07:50Z","_id":"06c1745c811e98ea73a860675bc41719","nla":"000035602103","term":"André, Michel, 1803-1878","key":"AndréMichel1803-1878","viafid":"55605061","merge":{"source":"viaf","id":"06c1745c811e98ea73a860675bc41719","type":"document"},"lc":"n85305068","bnf":"10721511","bav":"adv10231930"} {"version":"2013-07-01T14:07:50Z","_id":"06c1a0e3f042ce5c336789ac550baf29","dnb":"12297221x","ptbnp":"207043","term":"Pleščeev, Sergej Ivanovič, 1752-1802","key":"PleščeevSergejIvanovič1752-1802","viafid":"67361637","merge":{"source":"viaf","id":"06c1a0e3f042ce5c336789ac550baf29","type":"document"},"lc":"no91027760"} {"version":"2013-07-01T14:07:50Z","_id":"06cf451ff38a7c1653f5a5f3b41265ac","nla":"000036364850","term":"Hoffmann, Gretl, 1925- | Dekorative türen. English & German","key":"HoffmannGretl1925-|DekorativetürenEnglish&German","viafid":"180143985","merge":{"source":"viaf","id":"06cf451ff38a7c1653f5a5f3b41265ac","type":"document"},"lc":"no2011126833"} {"nkc":"jn20000700349","selibr":"229818","version":"2013-07-01T14:07:50Z","_id":"06d413fcbd39fdc70db8e1d3224181af","dnb":"118638300","nla":"000035781201","ptbnp":"38023","term":"Černenko, Konstantin Ustinovič, 1911-1985","key":"ČernenkoKonstantinUstinovič1911-1985","nlicyr":"000158452","viafid":"27077285","merge":{"source":"viaf","id":"06d413fcbd39fdc70db8e1d3224181af","type":"document"},"lc":"n79115293","bnf":"12017771"} {"version":"2013-07-01T14:07:50Z","_id":"06d7102b4e65cffa8be66b8cb182e32d","bne":"xx837149","dnb":"121603830","term":"Fita y Colomé, Fidel, 1835-1918","key":"FitayColoméFidel1835-1918","nlilat":"000550950","viafid":"89018496","merge":{"source":"viaf","id":"06d7102b4e65cffa8be66b8cb182e32d","type":"document"},"lc":"n2005041558","bnf":"13608608","bav":"adv10258860"} {"nkc":"kup19990000064005","version":"2013-07-01T14:07:50Z","_id":"06dd896ca27269ba2ea2f788a41a86d8","bne":"xx916122","dnb":"11885559x","ptbnp":"265163","term":"Mejía Vallejo, Manuel, 1923-1998","key":"MejíaVallejoManuel1923-1998","viafid":"102370369","nlilat":"000431397","merge":{"source":"viaf","id":"06dd896ca27269ba2ea2f788a41a86d8","type":"document"},"lc":"n80122793","bnf":"12052333"} {"nkc":"mzk2006323048","version":"2013-07-01T14:07:50Z","_id":"06e4d60284f5b4c25e5350286f446804","bne":"xx1411114","dnb":"118788035","ptbnp":"57456","term":"Raynouard, François-Just-Marie, 1761-1836","key":"RaynouardFrançois-Just-Marie1761-1836","viafid":"59088344","nlilat":"000452871","merge":{"source":"viaf","id":"06e4d60284f5b4c25e5350286f446804","type":"document"},"lc":"n83041906","bnf":"11921295","bav":"adv11085166"} {"nkc":"jn20000602226","selibr":"237916","version":"2013-07-01T14:07:50Z","_id":"06eba25de6cfa6d132ee4be56fa93d03","dnb":"119559803","nla":"000035846136","term":"Grabarʹ, Igorʹ Ėmmanuilovič, 1871-1960","key":"GrabarʹIgorʹĖmmanuilovič1871-1960","viafid":"106964268","nlicyr":"000150164","merge":{"source":"viaf","id":"06eba25de6cfa6d132ee4be56fa93d03","type":"document"},"jpg":"500030709","lc":"n81118316","bnf":"15052887","bav":"adv10136326"} {"version":"2013-07-01T14:07:50Z","_id":"06f0234e6a391afdc25605df0c29ffc0","dnb":"102079056","term":"Renau d'Eliçagaray, Bernard, 1652-1719","key":"Renaud'EliçagarayBernard1652-1719","viafid":"69078990","merge":{"source":"viaf","id":"06f0234e6a391afdc25605df0c29ffc0","type":"document"},"lc":"nr93033093","bnf":"13475600"} {"nkc":"mzk2003196114","selibr":"359717","version":"2013-07-01T14:07:50Z","_id":"06f5a795af4d5a07f91b01a4030dcf09","dnb":"101290896","nla":"000035030224","ptbnp":"147394","term":"Compayré, Gabriel, 1843-1913","key":"CompayréGabriel1843-1913","nlilat":"000407506","viafid":"22140258","merge":{"source":"viaf","id":"06f5a795af4d5a07f91b01a4030dcf09","type":"document"},"lc":"n50031444","bnf":"11897473"} {"viafid":"176079419","merge":{"source":"viaf","id":"06feace3bae356739005c82dcf5f9169","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"06feace3bae356739005c82dcf5f9169","lc":"no2008139072","term":"Yamada, Shōji, 1963- | Zen to iu na no Nihon Maru. English","key":"YamadaShōji1963-|ZentoiunanoNihonMaruEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"07012c7f391f17eec35571a4a43fdd59","nla":"000035585401","ptbnp":"1016568","term":"Waagé, Frederick Oswin, 1906-1985","key":"WaagéFrederickOswin1906-1985","viafid":"89453146","merge":{"source":"viaf","id":"07012c7f391f17eec35571a4a43fdd59","type":"document"},"lc":"no2010129722","bav":"adv11204416"} {"selibr":"221619","version":"2013-07-01T14:07:50Z","_id":"07061328a26927d12ce58a93b51594b3","dnb":"119076403","term":"Kriland, Gösta, 1917-1989","key":"KrilandGösta1917-1989","viafid":"13109716","merge":{"source":"viaf","id":"07061328a26927d12ce58a93b51594b3","type":"document"},"lc":"nb2003102459"} {"nkc":"jn20010601851","selibr":"210629","version":"2013-07-01T14:07:50Z","_id":"07082f29f457c049509b8838b7f68f19","bne":"xx878894","dnb":"118619799","nla":"000035711762","ptbnp":"29515","term":"Suárez, Francisco, 1548-1617","key":"SuárezFrancisco1548-1617","viafid":"39385631","nlilat":"000128559","merge":{"source":"viaf","id":"07082f29f457c049509b8838b7f68f19","type":"document"},"lc":"n78095702","bnf":"11930010","bav":"adv10259186"} {"viafid":"14203195","merge":{"source":"viaf","id":"070dd09c86c5eebdb440dfb7af250e97","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"070dd09c86c5eebdb440dfb7af250e97","lc":"n2006081406","term":"Teleszky, István, 1836-1899","key":"TeleszkyIstván1836-1899"} {"selibr":"265239","version":"2013-07-01T14:07:50Z","_id":"070e472ad2d8b0b3a20837aa00e01b2f","dnb":"128772530","term":"De Ridder, André (1888-1961)","key":"DeRidderAndré(1888-1961)","viafid":"44443789","merge":{"source":"viaf","id":"070e472ad2d8b0b3a20837aa00e01b2f","type":"document"},"bnf":"13324451"} {"selibr":"181100","version":"2013-07-01T14:07:50Z","_id":"0713c7b3126aedb05de82e427bcced8d","bne":"xx971231","term":"Carlén, Johan Gabriel, 1814-1875","key":"CarlénJohanGabriel1814-1875","viafid":"87975148","merge":{"source":"viaf","id":"0713c7b3126aedb05de82e427bcced8d","type":"document"}} {"selibr":"294047","version":"2013-07-01T14:07:50Z","_id":"07186c4adfce3f2328740f4c397a024e","term":"Cederschiöld, Wilhelm, 1882-1959","key":"CederschiöldWilhelm1882-1959","viafid":"36902558","merge":{"source":"viaf","id":"07186c4adfce3f2328740f4c397a024e","type":"document"},"bav":"adv12068688"} {"nliara":"000158636","selibr":"175993","version":"2013-07-01T14:07:50Z","_id":"072aaa0999f39c62e0edc9339cd9abc5","egaxa":"vtls000878522","nla":"000041505649","term":"Abū al-ʻAtāhiyah, Ismāʻīl ibn al-Qāsim, 747 or 8-826?","key":"Abūal-ʻAtāhiyahIsmāʻīlibnal-Qāsim747or8-826?","viafid":"100164509","nlilat":"000456008","merge":{"source":"viaf","id":"072aaa0999f39c62e0edc9339cd9abc5","type":"document"},"lc":"n83179246","bav":"adv10034420"} {"viafid":"26694402","merge":{"source":"viaf","id":"072ed64c2ae2a2fa5a769e08a759412a","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"072ed64c2ae2a2fa5a769e08a759412a","lc":"no99019211","term":"Ionică, Ion I., 1907-1944","key":"IonicăIonI1907-1944"} {"viafid":"185964337","merge":{"source":"viaf","id":"0731c92cb7083207efa31829349d0c7c","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0731c92cb7083207efa31829349d0c7c","lc":"n91016204","term":"Collado, Faustino, 1954- | Partidismo político dominicano","key":"ColladoFaustino1954-|Partidismopolíticodominicano"} {"version":"2013-07-01T14:07:50Z","_id":"073b299bee6ca03188299d332dcc7609","bne":"xx962422","dnb":"124328563","term":"Richter, Günter, 1931 Mar. 18-","key":"RichterGünter1931Mar18-","viafid":"43548553","merge":{"source":"viaf","id":"073b299bee6ca03188299d332dcc7609","type":"document"},"lc":"n95051309","bnf":"12634957"} {"selibr":"325788","version":"2013-07-01T14:07:50Z","_id":"073b984781b3093bc127f932354405f5","bne":"xx1763249","dnb":"11663426x","term":"Kyriakidēs, Stilpōn Paraskeua, 1887-1964","key":"KyriakidēsStilpōnParaskeua1887-1964","viafid":"69687416","merge":{"source":"viaf","id":"073b984781b3093bc127f932354405f5","type":"document"},"lc":"n86122581","bnf":"12171147","bav":"adv11683886"} {"selibr":"351154","version":"2013-07-01T14:07:50Z","_id":"073c2d618d0ab73d183d88598a8af374","bne":"xx1183065","dnb":"116427310","nla":"000035450353","ptbnp":"169829","term":"Fée, Antoine Laurent Apollinaire, 1789-1874","key":"FéeAntoineLaurentApollinaire1789-1874","nlilat":"000503594","viafid":"49249817","merge":{"source":"viaf","id":"073c2d618d0ab73d183d88598a8af374","type":"document"},"lc":"n90674184","bnf":"12078882"} {"nkc":"jn20030827002","version":"2013-07-01T14:07:50Z","_id":"073c3efb70e7e7730859e80d2ecdda94","bne":"xx1243414","dnb":"101145799","ptbnp":"174311","term":"Champsaur, Félicien, 1859-1934","key":"ChampsaurFélicien1859-1934","viafid":"49253009","nlilat":"000515789","merge":{"source":"viaf","id":"073c3efb70e7e7730859e80d2ecdda94","type":"document"},"lc":"no90020373","bnf":"12094974","bav":"adv12205170"} {"viafid":"186609991","merge":{"source":"viaf","id":"073f9bdbf094631ee4dedddbd13ca64b","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"073f9bdbf094631ee4dedddbd13ca64b","lc":"no2011035899","term":"Waldenfels, Bernhard, 1934- | Grundmotive einer Phänomenologie des Fremden. English","key":"WaldenfelsBernhard1934-|GrundmotiveeinerPhänomenologiedesFremdenEnglish"} {"viafid":"181500746","merge":{"source":"viaf","id":"073fa31e89d1c48159a9e1030a866083","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"073fa31e89d1c48159a9e1030a866083","lc":"n88298550","term":"Härtling, Peter, 1933- | Alter John. English","key":"HärtlingPeter1933-|AlterJohnEnglish"} {"nkc":"jn19990007243","selibr":"197612","version":"2013-07-01T14:07:50Z","_id":"074e783c2f5c713b64196686df2b3690","bne":"xx1719678","dnb":"118791540","nla":"000035749002","ptbnp":"56462","term":"Ruiz de Alarcón, Juan, 1580?-1639","key":"RuizdeAlarcónJuan1580?-1639","viafid":"88975006","nlilat":"000406196","merge":{"source":"viaf","id":"074e783c2f5c713b64196686df2b3690","type":"document"},"lc":"n50026232","bnf":"12176085","bav":"adv11144440"} {"nkc":"js2007409741","version":"2013-07-01T14:07:50Z","_id":"075f6a8230cf5195935d9e4e25e0db53","dnb":"133168581","term":"Vlaisavljević, Vlado, 1901-1943","key":"VlaisavljevićVlado1901-1943","viafid":"77496415","merge":{"source":"viaf","id":"075f6a8230cf5195935d9e4e25e0db53","type":"document"},"bnf":"11561803"} {"version":"2013-07-01T14:07:50Z","_id":"07712f3f0168a77c35198ce83c14e963","dnb":"102750998","term":"Tripier, Léon 1842-1891","key":"TripierLéon1842-1891","viafid":"49622265","merge":{"source":"viaf","id":"07712f3f0168a77c35198ce83c14e963","type":"document"},"bnf":"10457047","bav":"adv11323234"} {"version":"2013-07-01T14:07:50Z","_id":"0773d9d3625f21a6e6f54a849cf18fd6","dnb":"172370264","nla":"000049287319","ptbnp":"97142","term":"Sérieys, Antoine, 1755-1829","key":"SérieysAntoine1755-1829","nlilat":"000120450","viafid":"36473672","merge":{"source":"viaf","id":"0773d9d3625f21a6e6f54a849cf18fd6","type":"document"},"lc":"no89010699","bav":"adv12186963"} {"version":"2013-07-01T14:07:50Z","_id":"0776428e7734a400d990b22721d148a8","dnb":"176857249","ptbnp":"414660","term":"Núñez de Villaizán, Juan, 14th cent","key":"NúñezdeVillaizánJuan14thcent","viafid":"79274519","merge":{"source":"viaf","id":"0776428e7734a400d990b22721d148a8","type":"document"},"lc":"no2007130239","bav":"adv10994005"} {"version":"2013-07-01T14:07:50Z","_id":"077eccad165f75a370de8ffbdba9698c","dnb":"104327995","term":"Mynas, C. Minoïde, 1790-1860","key":"MynasCMinoïde1790-1860","viafid":"61986166","nlilat":"000531538","merge":{"source":"viaf","id":"077eccad165f75a370de8ffbdba9698c","type":"document"},"lc":"nr97018121","bav":"adv10975640"} {"nkc":"mzk2003198828","selibr":"187803","version":"2013-07-01T14:07:50Z","_id":"07814ed292b5f17b350c9f7546e60a67","dnb":"11854389x","swnl":"vtls003074795","nla":"000035159024","term":"Guyon, Jeanne-Marie Bouvières de La Motte, 1648-1717","key":"GuyonJeanne-MarieBouvièresdeLaMotte1648-1717","nlilat":"000058203","viafid":"61540026","merge":{"source":"viaf","id":"07814ed292b5f17b350c9f7546e60a67","type":"document"},"lc":"n81108294","bnf":"11886493","bav":"adv12163693"} {"viafid":"9796406","merge":{"source":"viaf","id":"0785ea831da0756e5a6777d783082da7","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0785ea831da0756e5a6777d783082da7","lc":"nr2004021587","term":"Tourneux, Frédéric, b. 1852","key":"TourneuxFrédéricb1852"} {"nkc":"ola2009507571","selibr":"342231","version":"2013-07-01T14:07:50Z","_id":"0790e7593308adf8ce4a23b410de7094","dnb":"118660535","term":"Böckler, Georg Andreas, 1617-1687","key":"BöcklerGeorgAndreas1617-1687","viafid":"95968387","merge":{"source":"viaf","id":"0790e7593308adf8ce4a23b410de7094","type":"document"}} {"viafid":"206937247","merge":{"source":"viaf","id":"0791e668e8b99a085e0f24117348e710","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0791e668e8b99a085e0f24117348e710","term":"Le Boursier du Coudray, Angélique Marguerite, 1715-1794","key":"LeBoursierduCoudrayAngéliqueMarguerite1715-1794"} {"version":"2013-07-01T14:07:50Z","_id":"079b1850f2ab5db57f07ecc26c90aa22","dnb":"173256023","nla":"000035180102","term":"Royer, Jean, 1938-, poète","key":"RoyerJean1938-poète","viafid":"95323450","merge":{"source":"viaf","id":"079b1850f2ab5db57f07ecc26c90aa22","type":"document"},"lc":"n82088337","bnf":"11923039"} {"nkc":"jn20021203005","selibr":"284839","version":"2013-07-01T14:07:50Z","_id":"07ad68bf80d0fd9b3283648fb065bfa8","bne":"xx1332188","dnb":"118713507","nla":"000035283942","term":"Körner, Carl Theodor, 1791-1813","key":"KörnerCarlTheodor1791-1813","nlilat":"000079845","viafid":"51723180","merge":{"source":"viaf","id":"07ad68bf80d0fd9b3283648fb065bfa8","type":"document"},"lc":"n84045242","bnf":"12125148","bav":"adv10882046"} {"nkc":"jx20041208021","selibr":"235812","version":"2013-07-01T14:07:50Z","_id":"07b7375e7c918a0d36bf0b469c7bb85a","dnb":"103370390","nla":"000036505730","ptbnp":"15166","term":"Bogomolov, Vladimir Osipovič, 1926-2003","key":"BogomolovVladimirOsipovič1926-2003","viafid":"54559822","merge":{"source":"viaf","id":"07b7375e7c918a0d36bf0b469c7bb85a","type":"document"},"lc":"n83216531","bnf":"14046290"} {"nkc":"jn20000710488","selibr":"196695","version":"2013-07-01T14:07:50Z","_id":"07bfd705791a7bc0362f18a99cd3ae82","bne":"xx902959","dnb":"118596462","nla":"000036562374","ptbnp":"328305","term":"Prévost D'Exiles, Antoine François 1697-1763","key":"PrévostD'ExilesAntoineFrançois1697-1763","viafid":"17228264","nlilat":"000107716","merge":{"source":"viaf","id":"07bfd705791a7bc0362f18a99cd3ae82","type":"document"},"lc":"n50027694","bnf":"11920607","bav":"adv11051898"} {"version":"2013-07-01T14:07:50Z","_id":"07c5b2a28ea57dd817f8663f22ce8d63","dnb":"119095041","nla":"000049783634","term":"Molé, Louis-Mathieu (1781-1855)","key":"MoléLouis-Mathieu(1781-1855)","viafid":"7440787","nlilat":"000490971","merge":{"source":"viaf","id":"07c5b2a28ea57dd817f8663f22ce8d63","type":"document"},"lc":"n87933602","bnf":"12217781"} {"version":"2013-07-01T14:07:50Z","_id":"07c5bf44d8512ac8f51c1631fd37e185","dnb":"117732621","term":"Mailly, Édouard, 1810-1891","key":"MaillyÉdouard1810-1891","viafid":"31002223","merge":{"source":"viaf","id":"07c5bf44d8512ac8f51c1631fd37e185","type":"document"},"bnf":"10363117","bav":"adv10983139"} {"version":"2013-07-01T14:07:50Z","_id":"07ca03916ef0b70935b47ec8aaa20951","dnb":"151137250","term":"Guillén Robles, Francisco, d. 1920","key":"GuillénRoblesFranciscod1920","nlilat":"000057730","viafid":"100176392","merge":{"source":"viaf","id":"07ca03916ef0b70935b47ec8aaa20951","type":"document"},"lc":"n81106856","bnf":"12186334"} {"version":"2013-07-01T14:07:50Z","_id":"07cbb3fbf1432f4ec0f4de8e8a5f6c4d","dnb":"102693145","term":"Sörbom, Gunnar, 1899-1992","key":"SörbomGunnar1899-1992","viafid":"39773714","merge":{"source":"viaf","id":"07cbb3fbf1432f4ec0f4de8e8a5f6c4d","type":"document"},"lc":"no2009188094","bav":"adv10088767"} {"nkc":"kup19970000059228","selibr":"278658","version":"2013-07-01T14:07:50Z","_id":"07d5d5f1bd824668cfb78de8e96725ee","dnb":"11734138x","term":"Lugné-Poe, Aurélien-Françoise, 1869-1940","key":"Lugné-PoeAurélien-Françoise1869-1940","nlilat":"000467106","viafid":"54187174","merge":{"source":"viaf","id":"07d5d5f1bd824668cfb78de8e96725ee","type":"document"},"lc":"n85017309","bnf":"12159281","bav":"adv12247038"} {"version":"2013-07-01T14:07:50Z","_id":"07de67cc1194f3dbc6d6e4e54b300447","term":"André, Robert 1925-2001","key":"AndréRobert1925-2001","viafid":"110008401","merge":{"source":"viaf","id":"07de67cc1194f3dbc6d6e4e54b300447","type":"document"},"lc":"n81087066","bnf":"11930756","bav":"adv10107863"} {"nkc":"mzk2010580693","version":"2013-07-01T14:07:50Z","_id":"07df3dc1e5aea3037235c5ea2206a78d","dnb":"131592459","nla":"000035164553","ptbnp":"172047","term":"Darmesteter, Arséne, 1846-1888","key":"DarmesteterArséne1846-1888","viafid":"24600230","nlilat":"000037029","merge":{"source":"viaf","id":"07df3dc1e5aea3037235c5ea2206a78d","type":"document"},"lc":"n83826298","bnf":"11898644","bav":"adv10073900"} {"nkc":"xx0010873","version":"2013-07-01T14:07:50Z","_id":"07e7744ccd84935a8e6bc5ca5aea2dd3","bne":"xx1055879","dnb":"11889921x","nla":"000035301759","ptbnp":"144172","term":"Lévêque, Pierre, 1921-2004","key":"LévêquePierre1921-2004","nlilat":"000411857","viafid":"109605207","merge":{"source":"viaf","id":"07e7744ccd84935a8e6bc5ca5aea2dd3","type":"document"},"lc":"n50049987","bnf":"11912783","bav":"adv10433888"} {"nkc":"jk01090667","version":"2013-07-01T14:07:50Z","_id":"07e822a099f4dafae747dbda09b45a11","dnb":"119022753","nla":"000035949388","term":"Novotný, František, 1881-1964","key":"NovotnýFrantišek1881-1964","nlilat":"000432644","viafid":"42638825","merge":{"source":"viaf","id":"07e822a099f4dafae747dbda09b45a11","type":"document"},"lc":"n80146066","bav":"adv11035454"} {"nkc":"mzk2009533679","version":"2013-07-01T14:07:50Z","_id":"07edcd568edb6e6690981921f95a23b5","dnb":"122855043","term":"Bruslé de Montpleinchamp, Jean-Chrysostome, 1641-1724","key":"BruslédeMontpleinchampJean-Chrysostome1641-1724","viafid":"19812402","merge":{"source":"viaf","id":"07edcd568edb6e6690981921f95a23b5","type":"document"},"lc":"no96015544","bnf":"13007480","bav":"adv10125688"} {"version":"2013-07-01T14:07:50Z","_id":"07f3223f3ced71e78378bff70cf920a9","dnb":"130372617","term":"Nemčić, Antun, 1813-1849","key":"NemčićAntun1813-1849","viafid":"15876000","merge":{"source":"viaf","id":"07f3223f3ced71e78378bff70cf920a9","type":"document"},"lc":"n2001030324"} {"version":"2013-07-01T14:07:50Z","_id":"07f375c531d44be0982e59c6d2f65183","dnb":"1029580375","ptbnp":"100916","term":"Gossart, Ernest Édouard, 1837-1919","key":"GossartErnestÉdouard1837-1919","viafid":"88727666","merge":{"source":"viaf","id":"07f375c531d44be0982e59c6d2f65183","type":"document"},"bnf":"12770397","bav":"adv10070455"} {"nkc":"js2006345178","version":"2013-07-01T14:07:50Z","_id":"07f86f0aed45c69e9e61e929721ccc5e","dnb":"118555405","term":"Ikonnikov, Vladimir Stepanovič, 1841-1923","key":"IkonnikovVladimirStepanovič1841-1923","viafid":"42629624","merge":{"source":"viaf","id":"07f86f0aed45c69e9e61e929721ccc5e","type":"document"},"lc":"n85193526","bav":"adv10025976"} {"version":"2013-07-01T14:07:50Z","_id":"07f9ae537ecb7698b75a822341cf9834","dnb":"118778161","nla":"000035284607","term":"Kühn, Alfred, 1885-1968","key":"KühnAlfred1885-1968","nlilat":"000477778","viafid":"39491936","merge":{"source":"viaf","id":"07f9ae537ecb7698b75a822341cf9834","type":"document"},"lc":"n85802982","bnf":"12553466","bav":"adv10883437"} {"version":"2013-07-01T14:07:50Z","_id":"07fd336129efdfd90231764f1c508b4e","dnb":"122677560","nla":"000036080446","ptbnp":"79148","term":"Van Praag, H. M., 1929-, (Herman Meïr)","key":"VanPraagHM1929-(HermanMeïr)","viafid":"108391730","merge":{"source":"viaf","id":"07fd336129efdfd90231764f1c508b4e","type":"document"},"lc":"n79073510","bnf":"11927612"} {"viafid":"66517086","merge":{"source":"viaf","id":"08021f92c833cd0977b3faff7b65f871","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"08021f92c833cd0977b3faff7b65f871","bnf":"12218906","term":"Marçais, Jean, 1904-1991","key":"MarçaisJean1904-1991"} {"nkc":"jk01091352","version":"2013-07-01T14:07:50Z","_id":"080ad84beb72a14be032de4e7f66b6af","dnb":"103699333","ptbnp":"138792","term":"Otčenášek, Jan, 1924-1979","key":"OtčenášekJan1924-1979","viafid":"49644726","nlilat":"000102221","merge":{"source":"viaf","id":"080ad84beb72a14be032de4e7f66b6af","type":"document"},"lc":"n50049605"} {"viafid":"286779140","merge":{"source":"viaf","id":"080c4c63ddc6a405776c479d7c2bace0","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"080c4c63ddc6a405776c479d7c2bace0","term":"Fardé, Pieter, 1651-1691","key":"FardéPieter1651-1691"} {"viafid":"127442574","merge":{"source":"viaf","id":"080ffc546a9df71a5eb53f22937d9635","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"080ffc546a9df71a5eb53f22937d9635","dnb":"142377139","term":"Pée, Julius, 1871-1951","key":"PéeJulius1871-1951"} {"viafid":"8129006","merge":{"source":"viaf","id":"0826759c571514fa5c86701154c0a9c6","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0826759c571514fa5c86701154c0a9c6","dnb":"116036982","term":"Bärtling, Richard, 1878-1936","key":"BärtlingRichard1878-1936"} {"version":"2013-07-01T14:07:50Z","_id":"082bd4b1618e3fbd719a4f2a6f82abfa","dnb":"127516352","term":"Dennery, Étienne (1903-1979)","key":"DenneryÉtienne(1903-1979)","viafid":"79521759","nlilat":"000533465","merge":{"source":"viaf","id":"082bd4b1618e3fbd719a4f2a6f82abfa","type":"document"},"lc":"no97066112","bnf":"11899617","bav":"adv10105269"} {"viafid":"175057572","merge":{"source":"viaf","id":"082f747ac733058264ecf7d112a974a6","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"082f747ac733058264ecf7d112a974a6","lc":"n90711938","term":"Kostrhun, Jan, 1942- | Modrý kvíteček","key":"KostrhunJan1942-|Modrýkvíteček"} {"nkc":"mzk2002110329","version":"2013-07-01T14:07:50Z","_id":"08380fac4349836d985ebaa82a911206","dnb":"10044668x","swnl":"vtls001892514","nla":"000035825083","ptbnp":"95242","term":"Crétineau-Joly, Jacques Augustin Marie, 1803-1875","key":"Crétineau-JolyJacquesAugustinMarie1803-1875","nlilat":"000524485","viafid":"95175944","merge":{"source":"viaf","id":"08380fac4349836d985ebaa82a911206","type":"document"},"lc":"nr90012336","bnf":"12599060","bav":"adv10180719"} {"viafid":"215964382","merge":{"source":"viaf","id":"083bee80111fcbd6959714cca513821d","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"083bee80111fcbd6959714cca513821d","dnb":"989175995","term":"Jungheinrich, Hans-Klaus 1938- | Dmitri oder Der Künstler und die Macht","key":"JungheinrichHans-Klaus1938-|DmitrioderDerKünstlerunddieMacht"} {"nkc":"jn20000703239","selibr":"196794","version":"2013-07-01T14:07:50Z","_id":"083ec04cb31fbba6f2d866dd4960a8bd","bne":"xx1104029","dnb":"118641476","ptbnp":"58743","term":"Pardo Bazán, Emilia, 1851-1921","key":"PardoBazánEmilia1851-1921","viafid":"51699645","merge":{"source":"viaf","id":"083ec04cb31fbba6f2d866dd4960a8bd","type":"document"},"bnf":"12004268"} {"nkc":"jo20000082541","selibr":"97744","version":"2013-07-01T14:07:50Z","_id":"08520ea81f31f6b6c8896919456e6dd2","bne":"xx955263","dnb":"118802801","nla":"000035556677","term":"Trubeckoj, Nikolaj Sergeevič, 1890-1938","key":"TrubeckojNikolajSergeevič1890-1938","viafid":"95300260","nlilat":"000132813","nlicyr":"000366469","merge":{"source":"viaf","id":"08520ea81f31f6b6c8896919456e6dd2","type":"document"},"lc":"n85102285","bnf":"11927154","bav":"adv11200062"} {"version":"2013-07-01T14:07:50Z","_id":"085e1b961651672f453eb21b89dde84c","dnb":"123429641","term":"Fréteau de Saint-Just, Émmanuel-Marie-Michel-Philippe 1745-1794","key":"FréteaudeSaint-JustÉmmanuel-Marie-Michel-Philippe1745-1794","viafid":"37027035","merge":{"source":"viaf","id":"085e1b961651672f453eb21b89dde84c","type":"document"},"lc":"nr00039834","bnf":"12528907"} {"viafid":"293673101","merge":{"source":"viaf","id":"086246289efa743751d551b8740ca6c4","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"086246289efa743751d551b8740ca6c4","term":"Georgievski, Taško (1935- ). | Crno seme (maced.)","key":"GeorgievskiTaško(1935-)|Crnoseme(maced)"} {"version":"2013-07-01T14:07:50Z","_id":"0862bacba0bfc9620826527a56cb3fb3","bne":"xx1767867","dnb":"117369918","nla":"000035903047","term":"Wießner, Edmund, 1875-1956","key":"WießnerEdmund1875-1956","nlilat":"000488478","viafid":"12390488","merge":{"source":"viaf","id":"0862bacba0bfc9620826527a56cb3fb3","type":"document"},"lc":"n87829709","bnf":"12386934"} {"nkc":"jn19981000289","version":"2013-07-01T14:07:50Z","_id":"086acc40c4caf51f99b41dc6603196fd","dnb":"121000842","term":"Bloch-Lainé, François (1912-2002)","key":"Bloch-LainéFrançois(1912-2002)","viafid":"108594372","merge":{"source":"viaf","id":"086acc40c4caf51f99b41dc6603196fd","type":"document"},"lc":"n82127136","bnf":"11892379"} {"nkc":"mzk2009528285","version":"2013-07-01T14:07:50Z","_id":"086ca4c9a359555e7c24c528d7a8b42b","dnb":"118943383","term":"Bröder, Christian Gottlob, 1745-1819","key":"BröderChristianGottlob1745-1819","viafid":"35255737","merge":{"source":"viaf","id":"086ca4c9a359555e7c24c528d7a8b42b","type":"document"},"lc":"nr92000531","bav":"adv10115030"} {"selibr":"338391","version":"2013-07-01T14:07:50Z","_id":"0871858b19c2b00a1ca266e018915646","bne":"xx999835","dnb":"128777931","term":"García, Carlos ca. 1575-ca. 1630","key":"GarcíaCarlosca1575-ca1630","viafid":"51704909","merge":{"source":"viaf","id":"0871858b19c2b00a1ca266e018915646","type":"document"},"lc":"n99025815","bnf":"12030324","bav":"adv10219607"} {"nkc":"vse2010558384","version":"2013-07-01T14:07:50Z","_id":"08758fa8478ce795835f51ec719dc08d","dnb":"124080308","nla":"000035942592","term":"Přibram, Karl, 1877-1973","key":"PřibramKarl1877-1973","viafid":"25953","nlilat":"000446041","merge":{"source":"viaf","id":"08758fa8478ce795835f51ec719dc08d","type":"document"},"lc":"n82094894","bnf":"12031401","bav":"adv11051743"} {"nkc":"js2012736957","version":"2013-07-01T14:07:50Z","_id":"087b147b1af0909e81d09923924abaae","dnb":"121377539","ptbnp":"179667","term":"Teslar, Józef Andrzej, 1889-1961","key":"TeslarJózefAndrzej1889-1961","viafid":"113417081","merge":{"source":"viaf","id":"087b147b1af0909e81d09923924abaae","type":"document"},"lc":"nr89007428","bnf":"11232417"} {"nkc":"kup19950000045493","version":"2013-07-01T14:07:50Z","_id":"087c72f03807241d69c5cbdacba2e1c8","bne":"xx959214","dnb":"121327949","ptbnp":"440589","term":"Julien, Charles-André, 1891-1991","key":"JulienCharles-André1891-1991","viafid":"98370336","nlilat":"000264204","merge":{"source":"viaf","id":"087c72f03807241d69c5cbdacba2e1c8","type":"document"},"lc":"n50038763","bnf":"11909199","bav":"adv12038222"} {"viafid":"243869426","merge":{"source":"viaf","id":"087c9bc6944213114ef3394088ff1aab","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"087c9bc6944213114ef3394088ff1aab","dnb":"961969415","term":"Grüntuch-Ernst, Almut, 1966-, Architekt","key":"Grüntuch-ErnstAlmut1966-Architekt"} {"nkc":"mzk2009511265","selibr":"328286","version":"2013-07-01T14:07:50Z","_id":"0886f9ac812f460b82cd86a1b9feccb4","dnb":"128269014","term":"Masson, Charles François Philibert, 1762-1807","key":"MassonCharlesFrançoisPhilibert1762-1807","nlilat":"000473665","viafid":"15817572","merge":{"source":"viaf","id":"0886f9ac812f460b82cd86a1b9feccb4","type":"document"},"lc":"n85253401","bnf":"12108234","bav":"adv10995016"} {"viafid":"49359871","merge":{"source":"viaf","id":"0893741295f7a7e66ac0cdf427a020ae","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0893741295f7a7e66ac0cdf427a020ae","bnf":"13078966","term":"Saint-Hilaire, Étienne 1865-1932","key":"Saint-HilaireÉtienne1865-1932"} {"nkc":"mzk2010585198","version":"2013-07-01T14:07:50Z","_id":"089507fae522e479c4cfc8711b561186","bne":"xx845628","dnb":"1016403488","term":"Allix, André, 1889-1966","key":"AllixAndré1889-1966","viafid":"22243254","merge":{"source":"viaf","id":"089507fae522e479c4cfc8711b561186","type":"document"},"lc":"no2010137107","bnf":"12482325"} {"nkc":"mzk2003195509","selibr":"297126","version":"2013-07-01T14:07:50Z","_id":"089535b8304bf319cf943b94ef89bf83","bne":"xx839712","dnb":"118647385","nla":"000035197604","ptbnp":"3099","term":"Agustín, Antonio, 1517-1586","key":"AgustínAntonio1517-1586","viafid":"120697822","nlilat":"000282827","merge":{"source":"viaf","id":"089535b8304bf319cf943b94ef89bf83","type":"document"},"lc":"n81127403","bnf":"11885587","bav":"adv10231518"} {"nkc":"ola2002153763","selibr":"328645","version":"2013-07-01T14:07:50Z","_id":"08986700373e687785e527e02f2eb1e0","dnb":"129736414","term":"Brandt, Jørgen Gustava, 1929-2006","key":"BrandtJørgenGustava1929-2006","viafid":"84968625","merge":{"source":"viaf","id":"08986700373e687785e527e02f2eb1e0","type":"document"},"lc":"n79060032","bnf":"11893785"} {"nkc":"xx0165006","selibr":"342946","version":"2013-07-01T14:07:50Z","_id":"089d0ee2fc697bc65fb3fcb7f17fa6c9","bne":"xx899240","dnb":"100009670","nla":"000035831922","ptbnp":"92627","term":"Ampère, Jean-Jacques, 1800-1864","key":"AmpèreJean-Jacques1800-1864","viafid":"14765429","nlilat":"000009946","merge":{"source":"viaf","id":"089d0ee2fc697bc65fb3fcb7f17fa6c9","type":"document"},"lc":"n86041191","bnf":"11888698","bav":"adv11356392"} {"nkc":"jn20000700968","selibr":"206039","version":"2013-07-01T14:07:50Z","_id":"08aa6f544736cb7468bad8aab761baaa","bne":"xx1157250","dnb":"118724827","nla":"000035825105","term":"Krupskaja, Nadežda Konstantinovna, 1869-1939","key":"KrupskajaNadeždaKonstantinovna1869-1939","nlicyr":"000152532","viafid":"2600852","nlilat":"000209944","merge":{"source":"viaf","id":"08aa6f544736cb7468bad8aab761baaa","type":"document"},"lc":"n79029718","bnf":"12882934"} {"version":"2013-07-01T14:07:50Z","_id":"08c18fadf8f5279b43d7934999b9e9c2","dnb":"129530123","term":"Du Creux, François (1596-1666)","key":"DuCreuxFrançois(1596-1666)","viafid":"42142926","merge":{"source":"viaf","id":"08c18fadf8f5279b43d7934999b9e9c2","type":"document"},"lc":"no2002038346","bnf":"15317798","bav":"adv11026413"} {"nkc":"xx0011445","selibr":"220321","version":"2013-07-01T14:07:50Z","_id":"08ce86b3888dfbfe4b725116c17c3192","egaxa":"vtls001048753","dnb":"118669176","swnl":"vtls003026295","nla":"000035748724","ptbnp":"133394","term":"Chedid, Andrée, 1920-2011","key":"ChedidAndrée1920-2011","viafid":"111004523","nlilat":"000031065","merge":{"source":"viaf","id":"08ce86b3888dfbfe4b725116c17c3192","type":"document"},"lc":"n50036246","bnf":"11896485"} {"version":"2013-07-01T14:07:50Z","_id":"08d51b4bb6bde0be2ecaf95e4103f0e2","dnb":"10213118x","nla":"000035754920","term":"Brender à Brandis, Gerrit, 1751-1802","key":"BrenderàBrandisGerrit1751-1802","viafid":"61109455","merge":{"source":"viaf","id":"08d51b4bb6bde0be2ecaf95e4103f0e2","type":"document"},"lc":"no92005545"} {"selibr":"328778","version":"2013-07-01T14:07:50Z","_id":"08e606b662aeb5fe3e6f267926445ea0","dnb":"118936549","nla":"000035857464","ptbnp":"40943","term":"Guillaumin, Émile, 1873-1951","key":"GuillauminÉmile1873-1951","viafid":"4930804","nlilat":"000431587","merge":{"source":"viaf","id":"08e606b662aeb5fe3e6f267926445ea0","type":"document"},"lc":"n80125784","bnf":"11906370"} {"nkc":"jn20000720061","selibr":"183876","version":"2013-07-01T14:07:50Z","_id":"08ef4972c4ab0d9d3b6cc7c14662df37","dnb":"119190907","nla":"000035878690","term":"Djagilev, Sergej Pavlovič, 1872-1929","key":"DjagilevSergejPavlovič1872-1929","viafid":"67208262","nlilat":"000039269","merge":{"source":"viaf","id":"08ef4972c4ab0d9d3b6cc7c14662df37","type":"document"},"jpg":"500078133","lc":"n79081931","bnf":"11900087","bav":"adv10045700"} {"nkc":"skuk0004692","selibr":"334691","version":"2013-07-01T14:07:50Z","_id":"08f245995e319cc1ed731f260418239a","dnb":"11920911x","nla":"000035432989","ptbnp":"538315","term":"Prévost, Jean, 1901-1944","key":"PrévostJean1901-1944","nlilat":"000379872","viafid":"9852191","merge":{"source":"viaf","id":"08f245995e319cc1ed731f260418239a","type":"document"},"lc":"n87903482","bnf":"11920613","bav":"adv11541526"} {"viafid":"166264563","merge":{"source":"viaf","id":"08f899ab263e594b3814385d8f8d75b0","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"08f899ab263e594b3814385d8f8d75b0","term":"Petković, Vladimir R. (1874-1956)","key":"PetkovićVladimirR(1874-1956)"} {"viafid":"5823870","merge":{"source":"viaf","id":"08fceb7018c0e5f3c2cb856795bb56e0","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"08fceb7018c0e5f3c2cb856795bb56e0","dnb":"12280077x","term":"Brückner, August 1769-1797","key":"BrücknerAugust1769-1797"} {"nkc":"ola2002156653","selibr":"207597","version":"2013-07-01T14:07:50Z","_id":"08ff7cbaee85429fda3628cbd9a0ccea","dnb":"118789813","nla":"000035719449","term":"Pasquier, Étienne, 1529-1615","key":"PasquierÉtienne1529-1615","viafid":"61560863","nlilat":"000103651","merge":{"source":"viaf","id":"08ff7cbaee85429fda3628cbd9a0ccea","type":"document"},"lc":"n50050635","bnf":"12027737","bav":"adv10016283"} {"viafid":"183968551","merge":{"source":"viaf","id":"0900c1d826aba21c64b5d933dfa48195","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0900c1d826aba21c64b5d933dfa48195","lc":"n94017739","term":"Birolini, Alessandro, 1940- | Qualität und Zuverlässigkeit technischer Systeme. English","key":"BiroliniAlessandro1940-|QualitätundZuverlässigkeittechnischerSystemeEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"0900d8c6ae2f65e90f9174d91e033304","dnb":"130628697","term":"Draženović, Josip (1863-1942)","key":"DraženovićJosip(1863-1942)","viafid":"5581","merge":{"source":"viaf","id":"0900d8c6ae2f65e90f9174d91e033304","type":"document"},"bnf":"11562606"} {"version":"2013-07-01T14:07:50Z","_id":"0905d787a5d8f8689d4843470dd7788a","dnb":"101933010","term":"Mannier, Eugène, 1811-1895","key":"MannierEugène1811-1895","viafid":"24604764","merge":{"source":"viaf","id":"0905d787a5d8f8689d4843470dd7788a","type":"document"},"lc":"n85822045","bnf":"11914286"} {"version":"2013-07-01T14:07:50Z","_id":"090c09d3129bf841838ab2de37747e83","dnb":"116888180","term":"Gründler, Johann Ernst, 1677-1720","key":"GründlerJohannErnst1677-1720","viafid":"24611446","merge":{"source":"viaf","id":"090c09d3129bf841838ab2de37747e83","type":"document"},"lc":"n88132027","bnf":"12003156"} {"selibr":"356328","version":"2013-07-01T14:07:50Z","_id":"090edb00bb6a693eb166f769bfd905d3","dnb":"122509528","term":"Meshorer, Yaʿaḳov 1935-2004","key":"MeshorerYaʿaḳov1935-2004","nlilat":"000092558","viafid":"29563112","nliheb":"000218529","merge":{"source":"viaf","id":"090edb00bb6a693eb166f769bfd905d3","type":"document"},"lc":"n82221337","bnf":"12100097","bav":"adv10928962"} {"version":"2013-07-01T14:07:50Z","_id":"0919be69b4116eefebf63070089d7d0f","term":"Sørensen, Søren, 1848-1902","key":"SørensenSøren1848-1902","viafid":"4244532","nlilat":"000534498","merge":{"source":"viaf","id":"0919be69b4116eefebf63070089d7d0f","type":"document"},"lc":"n98027617"} {"nkc":"xx0068899","selibr":"314742","version":"2013-07-01T14:07:50Z","_id":"091f662b284692555f6f489f422f5b5f","dnb":"101866003","nla":"000035003104","ptbnp":"85656","term":"Alexandre, Arséne, 1859-1937","key":"AlexandreArséne1859-1937","nlilat":"000454512","viafid":"142432","merge":{"source":"viaf","id":"091f662b284692555f6f489f422f5b5f","type":"document"},"lc":"n83132619","bnf":"12956187","bav":"adv10151963"} {"nkc":"nlk20000083847","version":"2013-07-01T14:07:50Z","_id":"0933fb83f6d0c7334ced8364ac746106","dnb":"118676253","nla":"000036552234","ptbnp":"33368","term":"Claparéde, Édouard, 1873-1940","key":"ClaparédeÉdouard1873-1940","viafid":"106976487","nlilat":"000412971","merge":{"source":"viaf","id":"0933fb83f6d0c7334ced8364ac746106","type":"document"},"lc":"n50062963","bnf":"12212638"} {"viafid":"171410395","merge":{"source":"viaf","id":"093a421467a2c52ec2cb5e23b4bbeb16","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"093a421467a2c52ec2cb5e23b4bbeb16","bnf":"13050558","term":"Sauvez, Émile, 1866-1927","key":"SauvezÉmile1866-1927"} {"version":"2013-07-01T14:07:50Z","_id":"093a8a7d3e79fceb89fd81842acf4191","dnb":"154318582","term":"Oikonomos, Geōrgios P., d. 1952","key":"OikonomosGeōrgiosPd1952","viafid":"2514468","merge":{"source":"viaf","id":"093a8a7d3e79fceb89fd81842acf4191","type":"document"},"lc":"n86033984","bnf":"12176769"} {"version":"2013-07-01T14:07:50Z","_id":"09416dfb24fbe376cf386b76f4c0c808","bne":"xx966972","dnb":"173537863","term":"Montaner, Joaquín, 1892-1957","key":"MontanerJoaquín1892-1957","viafid":"36083632","nlilat":"000504370","merge":{"source":"viaf","id":"09416dfb24fbe376cf386b76f4c0c808","type":"document"},"lc":"n90710082"} {"nkc":"jk01071520","version":"2013-07-01T14:07:50Z","_id":"094253ea7c6600ea363111b96b408eba","dnb":"118778684","nla":"000035780309","term":"Langer, František, 1888-1965","key":"LangerFrantišek1888-1965","nlilat":"000080919","viafid":"12430171","merge":{"source":"viaf","id":"094253ea7c6600ea363111b96b408eba","type":"document"},"lc":"n82112974","bnf":"12705556"} {"version":"2013-07-01T14:07:50Z","_id":"0947e4adaff9ab3bad131620819fb543","bne":"xx1717306","dnb":"103892419","term":"Gailhard, André 1885-1966","key":"GailhardAndré1885-1966","viafid":"39567713","merge":{"source":"viaf","id":"0947e4adaff9ab3bad131620819fb543","type":"document"},"lc":"no2004059607","bnf":"13950219"} {"nkc":"js2011627405","version":"2013-07-01T14:07:50Z","_id":"0950d962980bbe75a90f3cfe0f60dc34","dnb":"130649384","term":"Petrović, Boško, 1915-2001","key":"PetrovićBoško1915-2001","viafid":"111604289","merge":{"source":"viaf","id":"0950d962980bbe75a90f3cfe0f60dc34","type":"document"},"lc":"n80156054","bnf":"12077517"} {"viafid":"185584205","merge":{"source":"viaf","id":"095149127bf0bb7b68d5f9b62138809d","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"095149127bf0bb7b68d5f9b62138809d","lc":"n95047380","term":"Golvers, Noël, 1950- | Astronomia Europaea. English & Latin","key":"GolversNoël1950-|AstronomiaEuropaeaEnglish&Latin"} {"selibr":"170116","version":"2013-07-01T14:07:50Z","_id":"09570517d728f703bf1b0cf10fb91a62","dnb":"129017035","term":"Åström, Paul, 1929-2008","key":"ÅströmPaul1929-2008","nlilat":"000425027","viafid":"4945088","merge":{"source":"viaf","id":"09570517d728f703bf1b0cf10fb91a62","type":"document"},"lc":"n79142142","bnf":"12029330","bav":"adv11712370"} {"version":"2013-07-01T14:07:50Z","_id":"095cdeb6e599417cb22561c2b3ae8f6e","egaxa":"vtls000895530","bne":"xx944024","dnb":"129267074","nla":"000035850216","ptbnp":"1720","term":"Muñiz Higuera, Carlos, 1927-1994","key":"MuñizHigueraCarlos1927-1994","viafid":"38490711","merge":{"source":"viaf","id":"095cdeb6e599417cb22561c2b3ae8f6e","type":"document"},"lc":"n88624013","bnf":"16039867"} {"viafid":"176214988","merge":{"source":"viaf","id":"095d290bb75b248241d5bd0c9e4a9bb1","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"095d290bb75b248241d5bd0c9e4a9bb1","lc":"n84165479","term":"Muchembled, Robert, 1944- | Culture populaire et culture des élites dans la France moderne. English","key":"MuchembledRobert1944-|CulturepopulaireetculturedesélitesdanslaFrancemoderneEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"095eb27805a7100c6b6ec740c8080e71","dnb":"116301708","term":"Köstlin, Otto, 1818-1884","key":"KöstlinOtto1818-1884","viafid":"49973166","merge":{"source":"viaf","id":"095eb27805a7100c6b6ec740c8080e71","type":"document"},"bav":"adv10030538"} {"nkc":"xx0105423","version":"2013-07-01T14:07:50Z","_id":"09601055cabf7c9a77171e86b20045eb","dnb":"13248403x","term":"Köhler, Bruno, 1855-1925","key":"KöhlerBruno1855-1925","viafid":"45464186","merge":{"source":"viaf","id":"09601055cabf7c9a77171e86b20045eb","type":"document"}} {"viafid":"276077369","merge":{"source":"viaf","id":"0960ec9e9749531677b491d66003dabc","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0960ec9e9749531677b491d66003dabc","lc":"n92112352","term":"Wolff, Jürgen, 1956-2","key":"WolffJürgen1956-2"} {"nkc":"jn20040205030","nliara":"000195697","selibr":"181731","version":"2013-07-01T14:07:50Z","_id":"096c59e029b0f04cabd2365ecad95d65","dnb":"11649669x","nla":"000035715415","term":"Cheïkho, Louis, 1859-1927","key":"CheïkhoLouis1859-1927","nlilat":"000031078","viafid":"77068906","merge":{"source":"viaf","id":"096c59e029b0f04cabd2365ecad95d65","type":"document"},"lc":"n82234894","bnf":"12951216","bav":"adv10029888"} {"nkc":"mzk2005286743","version":"2013-07-01T14:07:50Z","_id":"09750ad3cd36e30f268b06fe75bd7dae","dnb":"15121641x","term":"Maretić, Tomislav, 1854-1938","key":"MaretićTomislav1854-1938","viafid":"32370714","merge":{"source":"viaf","id":"09750ad3cd36e30f268b06fe75bd7dae","type":"document"},"lc":"n84184846","bnf":"11548439","bav":"adv10907142"} {"version":"2013-07-01T14:07:50Z","_id":"0980ade6c517799267d666c4659dbd3d","dnb":"130460400","term":"De Cock, César 1823-1904","key":"DeCockCésar1823-1904","viafid":"5202944","merge":{"source":"viaf","id":"0980ade6c517799267d666c4659dbd3d","type":"document"},"jpg":"500013324","lc":"n95114978","bnf":"14971761"} {"nkc":"mub2011675241","version":"2013-07-01T14:07:50Z","_id":"098bc6500b17c70627afacf6e4414c27","dnb":"117048879","nla":"000036379248","term":"Hülsen, Christian, 1858-1935","key":"HülsenChristian1858-1935","viafid":"2527887","nlilat":"000489258","merge":{"source":"viaf","id":"098bc6500b17c70627afacf6e4414c27","type":"document"},"jpg":"500319792","lc":"n87869161","bnf":"12247789","bav":"adv10081447"} {"nkc":"kup19970000034377","selibr":"238107","version":"2013-07-01T14:07:50Z","_id":"0995b87436732b33d7f51eadb84713a2","bne":"xx1154051","dnb":"118543202","swnl":"vtls002022868","nla":"000036069456","term":"Von Günderode, Karoline, 1780-1806","key":"VonGünderodeKaroline1780-1806","viafid":"54159634","nlilat":"000444286","merge":{"source":"viaf","id":"0995b87436732b33d7f51eadb84713a2","type":"document"},"lc":"n82059428","bnf":"12017208"} {"nkc":"jn20010601019","selibr":"216621","version":"2013-07-01T14:07:50Z","_id":"09a21db32c5b16ef6fe7c4a058399871","dnb":"101971588x","term":"Hedberg, Tor, ‬1862-1931","key":"HedbergTor‬1862-1931","viafid":"78365667","merge":{"source":"viaf","id":"09a21db32c5b16ef6fe7c4a058399871","type":"document"},"lc":"no95048953","bnf":"13930974"} {"version":"2013-07-01T14:07:50Z","_id":"09a60539bdf2d8f1fed1cb4a0713eedc","dnb":"102017263","term":"Mérignhac, A., 1857-1927, (Alexandre Giraud Jacques Antoine)","key":"MérignhacA1857-1927(AlexandreGiraudJacquesAntoine)","nlilat":"000474154","viafid":"17267136","merge":{"source":"viaf","id":"09a60539bdf2d8f1fed1cb4a0713eedc","type":"document"},"lc":"n85273789","bnf":"12185733"} {"viafid":"183654491","merge":{"source":"viaf","id":"09abde89289fb2f230ceccfd8b3dd69d","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"09abde89289fb2f230ceccfd8b3dd69d","lc":"n2010061226","term":"Sacré, James, 1939- | Selections. 2008","key":"SacréJames1939-|Selections2008"} {"version":"2013-07-01T14:07:50Z","_id":"09b3f237e11a9c32604bb7e22d32d8f6","dnb":"116308958","nla":"000035054535","term":"Andreadēs, Andreas Michaēl, 1876-1935","key":"AndreadēsAndreasMichaēl1876-1935","nlilat":"000428519","viafid":"66510544","merge":{"source":"viaf","id":"09b3f237e11a9c32604bb7e22d32d8f6","type":"document"},"lc":"n80057397","bnf":"12183510","bav":"adv10992808"} {"version":"2013-07-01T14:07:50Z","_id":"09c8c274053c0d0922bb652709993bbc","dnb":"123893887","nla":"000049682876","term":"Gérard, Jo, 1919-2006","key":"GérardJo1919-2006","viafid":"22142267","nlilat":"000058316","merge":{"source":"viaf","id":"09c8c274053c0d0922bb652709993bbc","type":"document"},"lc":"n79070117","bnf":"11904676"} {"version":"2013-07-01T14:07:50Z","_id":"09ca72d2818ee26e90615932eb1c29f9","dnb":"116810505","term":"Martin de Noirlieu, François, 1792-1870","key":"MartindeNoirlieuFrançois1792-1870","viafid":"27055342","nlilat":"000089537","merge":{"source":"viaf","id":"09ca72d2818ee26e90615932eb1c29f9","type":"document"},"bnf":"10693163","bav":"adv11015482"} {"version":"2013-07-01T14:07:50Z","_id":"09dcc1a19a5aa863da93bb88702c09b0","dnb":"123114829","term":"Mieusement, Séraphin-Médéric 1840-1905","key":"MieusementSéraphin-Médéric1840-1905","viafid":"27099563","merge":{"source":"viaf","id":"09dcc1a19a5aa863da93bb88702c09b0","type":"document"},"lc":"n91087801","bnf":"14976561","bav":"adv12086541"} {"version":"2013-07-01T14:07:50Z","_id":"09e0a470102064ac18523541a3c0e61f","term":"Noël, Eugéne, 1816-1899","key":"NoëlEugéne1816-1899","viafid":"24711642","merge":{"source":"viaf","id":"09e0a470102064ac18523541a3c0e61f","type":"document"},"bnf":"12529715","bav":"adv11035985"} {"version":"2013-07-01T14:07:50Z","_id":"09e6427b6396ea3e3211eed18740fe8a","dnb":"101856261","term":"Devillers, Léopold (1830-1910)","key":"DevillersLéopold(1830-1910)","viafid":"59072407","merge":{"source":"viaf","id":"09e6427b6396ea3e3211eed18740fe8a","type":"document"},"lc":"nb2004023543","bnf":"10467378","bav":"adv10110731"} {"nkc":"jn19992001173","selibr":"96042","version":"2013-07-01T14:07:50Z","_id":"09e8d96b26c238b25153f74779f93602","bne":"xx1066017","dnb":"118801384","nla":"000035539434","ptbnp":"245367","term":"Tarle, Evgenij Viktorovič, 1875-1955","key":"TarleEvgenijViktorovič1875-1955","viafid":"51733707","nlilat":"000445779","nlicyr":"000156874","merge":{"source":"viaf","id":"09e8d96b26c238b25153f74779f93602","type":"document"},"lc":"n82090310","bnf":"12185803"} {"viafid":"175918653","merge":{"source":"viaf","id":"09f372085c61cdfff7411fdc8ba9b695","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"09f372085c61cdfff7411fdc8ba9b695","lc":"n99017963","term":"Edström, Vivi Blom, 1923- | Astrid Lindgren, vildtoring och lägereld. English","key":"EdströmViviBlom1923-|AstridLindgrenvildtoringochlägereldEnglish"} {"viafid":"184376801","merge":{"source":"viaf","id":"09f6a3806fc86adb675f4828bece8dab","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"09f6a3806fc86adb675f4828bece8dab","lc":"n95037472","term":"Júdice, Nuno, 1949- | Poems. Selections","key":"JúdiceNuno1949-|PoemsSelections"} {"nkc":"ola2009522933","version":"2013-07-01T14:07:50Z","_id":"09fb5bd1425f269456433674417ac4d2","dnb":"119424770","nla":"000035854959","term":"Brès, Guy de, 1522-1567","key":"BrèsGuyde1522-1567","nlilat":"000025971","viafid":"22174787","merge":{"source":"viaf","id":"09fb5bd1425f269456433674417ac4d2","type":"document"},"lc":"n81055730","bnf":"12123233"} {"viafid":"294885090","selibr":"359548","merge":{"source":"viaf","id":"0a005720ef2f9de056dc4247785b7710","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0a005720ef2f9de056dc4247785b7710","term":"Axelsson, Majgull, 1947-. | Långt borta från Nifelheim. Polska","key":"AxelssonMajgull1947-|LångtbortafrånNifelheimPolska"} {"version":"2013-07-01T14:07:50Z","_id":"0a043b4df610e8d466b11dc88691c2b6","dnb":"116295198","term":"Köpke, Friedrich Karl (1785-1865)","key":"KöpkeFriedrichKarl(1785-1865)","viafid":"2571534","merge":{"source":"viaf","id":"0a043b4df610e8d466b11dc88691c2b6","type":"document"},"lc":"nb2002025553","bnf":"12469798"} {"nkc":"js2008439213","version":"2013-07-01T14:07:50Z","_id":"0a0cdb6c91d3320b937e697c44a46593","dnb":"103216995","term":"Ozga-Michalski, Józef, 1919-2002","key":"Ozga-MichalskiJózef1919-2002","viafid":"34862661","merge":{"source":"viaf","id":"0a0cdb6c91d3320b937e697c44a46593","type":"document"},"lc":"n86868929"} {"version":"2013-07-01T14:07:50Z","_id":"0a1002129ddd5867acb541237acf0b8e","bne":"xx1774957","dnb":"14381981x","nla":"000035717136","term":"Martin, François, 1867-1928","key":"MartinFrançois1867-1928","viafid":"12389009","nlilat":"000549208","merge":{"source":"viaf","id":"0a1002129ddd5867acb541237acf0b8e","type":"document"},"lc":"nb2004300169"} {"nkc":"xx0075839","version":"2013-07-01T14:07:50Z","_id":"0a24be53faa20572ef6b15189aaceaf2","dnb":"118683829","nla":"000035794308","term":"Flaischlen, Cäsar, 1864-1920","key":"FlaischlenCäsar1864-1920","viafid":"62342738","nlilat":"000497142","merge":{"source":"viaf","id":"0a24be53faa20572ef6b15189aaceaf2","type":"document"},"lc":"n88626629"} {"version":"2013-07-01T14:07:50Z","_id":"0a2a05e70c86782813ad1523ca4bc1a0","dnb":"122223624","term":"Brönner, Herbert, 1930-, Beziehung familiaer","key":"BrönnerHerbert1930-Beziehungfamiliaer","viafid":"112577131","nlilat":"000412836","merge":{"source":"viaf","id":"0a2a05e70c86782813ad1523ca4bc1a0","type":"document"},"lc":"n50059163"} {"version":"2013-07-01T14:07:50Z","_id":"0a2e072d211e85a980c72506bf9ccc7e","bne":"xx1132637","nla":"000036010610","term":"Martin, André 1884-1963","key":"MartinAndré1884-1963","viafid":"50301136","merge":{"source":"viaf","id":"0a2e072d211e85a980c72506bf9ccc7e","type":"document"},"lc":"n2007182382","bnf":"12215676","bav":"adv12332922"} {"nkc":"mzk2006356127","selibr":"316260","version":"2013-07-01T14:07:50Z","_id":"0a30a1eac61e6778b17df17cb0b9debb","dnb":"124098282","ptbnp":"168389","term":"Oudin, César, d. 1625","key":"OudinCésard1625","viafid":"12295511","merge":{"source":"viaf","id":"0a30a1eac61e6778b17df17cb0b9debb","type":"document"},"lc":"nr93008123","bnf":"11918284","bav":"adv10964662"} {"version":"2013-07-01T14:07:50Z","_id":"0a3811cdc4bf9e50da74190116a95fa7","dnb":"124007481","term":"Tailliar, Eugène, 1803-1878","key":"TailliarEugène1803-1878","viafid":"32130378","merge":{"source":"viaf","id":"0a3811cdc4bf9e50da74190116a95fa7","type":"document"},"bnf":"12982935"} {"nkc":"ola2007364165","selibr":"322387","version":"2013-07-01T14:07:50Z","_id":"0a62c224d945445f5fbecda77e4017c2","dnb":"118714570","nla":"000036004036","term":"Kästner, Abraham Gotthelf, 1719-1800","key":"KästnerAbrahamGotthelf1719-1800","viafid":"39450522","nlilat":"000079761","merge":{"source":"viaf","id":"0a62c224d945445f5fbecda77e4017c2","type":"document"},"lc":"n85241161","bnf":"12339233","bav":"adv10286851"} {"version":"2013-07-01T14:07:50Z","_id":"0a6de044bb18ee42b2692aae02ddf18e","dnb":"10469209x","term":"Mörchen, Hermann (1906-1990)","key":"MörchenHermann(1906-1990)","viafid":"27079901","nlilat":"000097186","merge":{"source":"viaf","id":"0a6de044bb18ee42b2692aae02ddf18e","type":"document"},"lc":"n81092158","bnf":"12028119","bav":"adv11437043"} {"viafid":"286545948","merge":{"source":"viaf","id":"0a6e39c405f03eb064bfe27c3ffa7f83","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0a6e39c405f03eb064bfe27c3ffa7f83","lc":"no2012144930","term":"Guénoun, Denis, 1946- | Hypothèses sur l'Europe. English","key":"GuénounDenis1946-|Hypothèsessurl'EuropeEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"0a6fbf4291a67e1f752f38e8c6a5df54","bne":"xx1560356","dnb":"120562944","ptbnp":"133752","term":"Bellot, Pierre-François, 1776-1836","key":"BellotPierre-François1776-1836","viafid":"15603918","merge":{"source":"viaf","id":"0a6fbf4291a67e1f752f38e8c6a5df54","type":"document"},"lc":"no2008017373"} {"nkc":"ola2006340224","selibr":"273835","version":"2013-07-01T14:07:50Z","_id":"0a73a2534a2d4b5851210d6f7e6074e2","dnb":"118785710","nla":"000035765406","ptbnp":"987782","term":"Alexandre, Noël, 1639-1724","key":"AlexandreNoël1639-1724","nlilat":"000540481","viafid":"22151431","merge":{"source":"viaf","id":"0a73a2534a2d4b5851210d6f7e6074e2","type":"document"},"lc":"no96066946","bnf":"11990956","bav":"adv10034801"} {"selibr":"243392","version":"2013-07-01T14:07:50Z","_id":"0a750d756f540a47686f366cc729d12b","dnb":"116044640","ptbnp":"1440748","term":"Kannegießer, Karl Ludwig 1781-1864","key":"KannegießerKarlLudwig1781-1864","viafid":"59059890","nlilat":"000282793","merge":{"source":"viaf","id":"0a750d756f540a47686f366cc729d12b","type":"document"},"lc":"n85317484"} {"nkc":"mzk2003195776","selibr":"277710","version":"2013-07-01T14:07:50Z","_id":"0a7617aa6157d52e6239eb938e3fa745","bne":"xx1309288","dnb":"11560720x","ptbnp":"166798","term":"Bernis, François-Joachim de Pierre de, 1715-1794","key":"BernisFrançois-JoachimdePierrede1715-1794","viafid":"68925438","nlilat":"000019585","merge":{"source":"viaf","id":"0a7617aa6157d52e6239eb938e3fa745","type":"document"},"jpg":"500314299","lc":"n82165748","bnf":"11891582","bav":"adv10003870"} {"viafid":"73886528","merge":{"source":"viaf","id":"0a79f7e10c6b55855b27e20a81e316c5","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0a79f7e10c6b55855b27e20a81e316c5","dnb":"118836838","term":"Rodríguez, Alfonso, 1526-1616","key":"RodríguezAlfonso1526-1616"} {"version":"2013-07-01T14:07:50Z","_id":"0a7c336d48e3eba772809417fdf62a1a","ptbnp":"155323","term":"Piatier, André (1914-1991)","key":"PiatierAndré(1914-1991)","viafid":"73858552","merge":{"source":"viaf","id":"0a7c336d48e3eba772809417fdf62a1a","type":"document"},"bnf":"11919623"} {"nkc":"jk01032899","version":"2013-07-01T14:07:50Z","_id":"0a7ee00767e81ac3fb656e3bbe2213df","dnb":"118699792","nla":"000036015059","term":"Hába, Alois, 1893-1973","key":"HábaAlois1893-1973","nlilat":"000066100","viafid":"71657828","merge":{"source":"viaf","id":"0a7ee00767e81ac3fb656e3bbe2213df","type":"document"},"lc":"n83172253","bnf":"14785739"} {"nkc":"jn19992000657","nliara":"000202719","selibr":"208307","version":"2013-07-01T14:07:50Z","_id":"0a886e842671b537d390d61bcd61c790","bne":"xx931300","dnb":"118576259","nla":"000035322426","ptbnp":"24297","term":"Maḥfūẓ, Najīb, 1911-2006","key":"MaḥfūẓNajīb1911-2006","viafid":"89803944","nlilat":"000087703","merge":{"source":"viaf","id":"0a886e842671b537d390d61bcd61c790","type":"document"},"lc":"n82091918","bnf":"12001087"} {"version":"2013-07-01T14:07:50Z","_id":"0a88d3ae3b5127b5a9b13ffbd9bf6cf7","dnb":"128386495","ptbnp":"1046139","term":"Gacon, François, 1667-1725","key":"GaconFrançois1667-1725","viafid":"71412505","nlilat":"000528322","merge":{"source":"viaf","id":"0a88d3ae3b5127b5a9b13ffbd9bf6cf7","type":"document"},"lc":"nr94015816","bnf":"12063049"} {"version":"2013-07-01T14:07:50Z","_id":"0a963063c003c9643fa33ad66ba86268","dnb":"130192309","nla":"000035400896","ptbnp":"168742","term":"Babié de Bercenay, François (1761-ca 1830)","key":"BabiédeBercenayFrançois(1761-ca1830)","viafid":"73986061","merge":{"source":"viaf","id":"0a963063c003c9643fa33ad66ba86268","type":"document"},"lc":"nr93015814","bnf":"13009419","bav":"adv10072631"} {"nkc":"mzk2004243993","selibr":"334438","version":"2013-07-01T14:07:50Z","_id":"0a9d89963fbe12b26b632ae8048ee3c8","bne":"xx1039701","dnb":"187118655","nla":"000035672926","ptbnp":"718622","term":"Rodríguez, Alonso, 1538-1616","key":"RodríguezAlonso1538-1616","viafid":"71570078","merge":{"source":"viaf","id":"0a9d89963fbe12b26b632ae8048ee3c8","type":"document"},"lc":"n50048918"} {"version":"2013-07-01T14:07:50Z","_id":"0aa02a0326b5a1cb9a6503a9691ec363","dnb":"124692540","ptbnp":"90223","term":"Régnault, Élias, 1801-1868","key":"RégnaultÉlias1801-1868","nlilat":"000115050","viafid":"9910357","merge":{"source":"viaf","id":"0aa02a0326b5a1cb9a6503a9691ec363","type":"document"},"lc":"n88623052","bnf":"12282457","bav":"adv11097753"} {"nkc":"jn19990006368","version":"2013-07-01T14:07:50Z","_id":"0aa177354b4d56577a64713daaffef19","dnb":"104714964","nla":"000035408818","ptbnp":"51942","term":"Parinaud, André, 1924-2006","key":"ParinaudAndré1924-2006","viafid":"98106261","nlilat":"000103349","merge":{"source":"viaf","id":"0aa177354b4d56577a64713daaffef19","type":"document"},"lc":"n50050313","bnf":"11918613","bav":"adv10045385"} {"nkc":"js2007409769","version":"2013-07-01T14:07:50Z","_id":"0aa948da75ef1657582cc6a253cdb635","dnb":"127614699","term":"Kostrzewski, Józef, 1885-1969","key":"KostrzewskiJózef1885-1969","nlilat":"000510410","viafid":"3500883","merge":{"source":"viaf","id":"0aa948da75ef1657582cc6a253cdb635","type":"document"},"lc":"n93111995","bnf":"12770159","bav":"adv10024566"} {"nkc":"mzk2010585189","version":"2013-07-01T14:07:50Z","_id":"0aa987a619447d27f9fa8da16f627441","dnb":"128187042","term":"Dobrzański, Bohdan, 1909-1987","key":"DobrzańskiBohdan1909-1987","viafid":"91758279","merge":{"source":"viaf","id":"0aa987a619447d27f9fa8da16f627441","type":"document"},"lc":"n82085510"} {"version":"2013-07-01T14:07:50Z","_id":"0aaf672d68f60a8edc61771e78cc0d53","dnb":"121588734","term":"Verhaegen, Pierre-Théodore, 1796-1862","key":"VerhaegenPierre-Théodore1796-1862","viafid":"47622291","merge":{"source":"viaf","id":"0aaf672d68f60a8edc61771e78cc0d53","type":"document"},"lc":"n2002027912"} {"nkc":"zmp2012726785","version":"2013-07-01T14:07:50Z","_id":"0ab11fc65836d4c8f56f7c36022a972f","dnb":"105833363","nla":"000035773185","term":"Horn, Ignace Édouard, 1825-1875","key":"HornIgnaceÉdouard1825-1875","viafid":"56718546","nlilat":"000064859","merge":{"source":"viaf","id":"0ab11fc65836d4c8f56f7c36022a972f","type":"document"},"lc":"nr98044513"} {"viafid":"224420756","merge":{"source":"viaf","id":"0aba069590b9a8b2cc630617b5d431ff","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0aba069590b9a8b2cc630617b5d431ff","bnf":"12016134","term":"Mercier, Jacques 1933-.... géologue","key":"MercierJacques1933-géologue"} {"version":"2013-07-01T14:07:50Z","_id":"0ac50ef47dbdc9ca95b9310e70d6b49c","dnb":"120847280","term":"Demény͏̈, Georges, 1850-1917","key":"Demény͏̈Georges1850-1917","viafid":"44337483","merge":{"source":"viaf","id":"0ac50ef47dbdc9ca95b9310e70d6b49c","type":"document"},"lc":"n88676702","bnf":"12157859"} {"nkc":"kup20030000021014","version":"2013-07-01T14:07:50Z","_id":"0ac89f2ab469a3fa5949b4887702912e","dnb":"101399502","nla":"000035784607","ptbnp":"145705","term":"Déprez, Eugène, 1874-1951","key":"DéprezEugène1874-1951","viafid":"44435780","nlilat":"000281240","merge":{"source":"viaf","id":"0ac89f2ab469a3fa5949b4887702912e","type":"document"},"lc":"nr91009898","bnf":"13092522","bav":"adv10924095"} {"version":"2013-07-01T14:07:50Z","_id":"0ad1cd6f32cb1b2b6785ae670f28e96b","dnb":"123825792","term":"Le Clerc, Sébastien, 1637-1714","key":"LeClercSébastien1637-1714","nlilat":"000468571","viafid":"99735429","merge":{"source":"viaf","id":"0ad1cd6f32cb1b2b6785ae670f28e96b","type":"document"},"jpg":"500021137","lc":"n85066159","bav":"adv10906530"} {"nkc":"jn19990001823","_id":"0ae1b7bd53660ff54bd85eeb4f77422b","bne":"xx1164088","dnb":"118526839","nla":"000035041510","ptbnp":"34939","term":"Doré, Gustave, 1832-1883","key":"DoréGustave1832-1883","viafid":"41839207","nliheb":"000170985","merge":{"source":"viaf","id":"0ae1b7bd53660ff54bd85eeb4f77422b","type":"document"},"jpg":"500013657","bnf":"11900422","selibr":"183977","version":"2013-07-01T14:07:50Z","nlicyr":"000150638","nlilat":"000040461","lc":"n79089221","bav":"adv11670777"} {"version":"2013-07-01T14:07:50Z","_id":"0ae39066a6c1e03197f5a00d2a7850b3","dnb":"117596620","term":"Müller, Johann, 1832-1918","key":"MüllerJohann1832-1918","viafid":"7206645","merge":{"source":"viaf","id":"0ae39066a6c1e03197f5a00d2a7850b3","type":"document"},"lc":"no2008101292"} {"nkc":"ola2006340279","version":"2013-07-01T14:07:50Z","_id":"0ae61fb92910aa5c3a40a80cb1c7d2a1","dnb":"12105764x","term":"Coleti, Niccoló, 1680-1765","key":"ColetiNiccoló1680-1765","viafid":"46873648","merge":{"source":"viaf","id":"0ae61fb92910aa5c3a40a80cb1c7d2a1","type":"document"},"lc":"n88070742","bnf":"12544566","bav":"adv10053483"} {"selibr":"329195","version":"2013-07-01T14:07:50Z","_id":"0ae86ae78ae8c5c203c362d2b3ebeaf0","dnb":"117105392","nla":"000035783089","term":"Jéquier, Gustave, 1868-1946","key":"JéquierGustave1868-1946","viafid":"22212511","nlilat":"000464986","merge":{"source":"viaf","id":"0ae86ae78ae8c5c203c362d2b3ebeaf0","type":"document"},"lc":"n84211924","bnf":"12331292","bav":"adv10098378"} {"version":"2013-07-01T14:07:50Z","_id":"0af89ea10874552daee4d12285c18f69","bne":"xx860535","dnb":"123568641","nla":"000035162079","ptbnp":"28853","term":"Galvão, António, d. 1557","key":"GalvãoAntóniod1557","viafid":"25513758","merge":{"source":"viaf","id":"0af89ea10874552daee4d12285c18f69","type":"document"},"lc":"n50083204"} {"viafid":"175798492","merge":{"source":"viaf","id":"0afb729968ea0dcf09ad65512341cfc0","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0afb729968ea0dcf09ad65512341cfc0","lc":"n83168030","term":"Kunt, İ. Metin, 1942- | Sancaktan eyalete. English","key":"KuntİMetin1942-|SancaktaneyaleteEnglish"} {"nkc":"mzk2009528561","version":"2013-07-01T14:07:50Z","_id":"0afbb7c6428e4825e6c17b916b1f3e28","dnb":"123447976","ptbnp":"269286","term":"Forteguerri, Niccolò, 1674-1735","key":"ForteguerriNiccolò1674-1735","viafid":"99738830","nlilat":"000468749","merge":{"source":"viaf","id":"0afbb7c6428e4825e6c17b916b1f3e28","type":"document"},"lc":"n85071912","bnf":"14537953","bav":"adv12129196"} {"version":"2013-07-01T14:07:50Z","_id":"0b004563b2123fcef297ae26bc108899","nla":"000035346128","term":"Śāstrī, Bālacandra, 1905-19..?","key":"ŚāstrīBālacandra1905-19?","viafid":"114115692","merge":{"source":"viaf","id":"0b004563b2123fcef297ae26bc108899","type":"document"},"lc":"n88147150","bnf":"14445853"} {"version":"2013-07-01T14:07:50Z","_id":"0b01d2a9700a7d54ee731d6383b2e4bf","bne":"xx1316028","dnb":"13895335x","term":"Samper, José María 1828-1888","key":"SamperJoséMaría1828-1888","viafid":"1399395","merge":{"source":"viaf","id":"0b01d2a9700a7d54ee731d6383b2e4bf","type":"document"},"lc":"n83800651","bnf":"12745736","bav":"adv11183840"} {"version":"2013-07-01T14:07:50Z","_id":"0b0c46f0bd96bf9e0469039fa39cb8b0","dnb":"118766481","term":"Weiße, Christian Hermann, 1801-1866","key":"WeißeChristianHermann1801-1866","nlilat":"000140772","viafid":"54254106","merge":{"source":"viaf","id":"0b0c46f0bd96bf9e0469039fa39cb8b0","type":"document"},"lc":"n85295270","bnf":"12511914"} {"selibr":"222958","version":"2013-07-01T14:07:50Z","_id":"0b1108aa92054e88756f44823b144f71","dnb":"122343107","ptbnp":"1201889","term":"Ståhle, Carl Ivar, 1913-1980","key":"StåhleCarlIvar1913-1980","viafid":"114713155","merge":{"source":"viaf","id":"0b1108aa92054e88756f44823b144f71","type":"document"},"lc":"n82075557"} {"nkc":"mzk2009533063","version":"2013-07-01T14:07:50Z","_id":"0b144989a23c9e2ba44316c2c4e9ac49","dnb":"102179026","term":"Schöner, Lazarus, ca 1543-1607","key":"SchönerLazarusca1543-1607","viafid":"7769720","merge":{"source":"viaf","id":"0b144989a23c9e2ba44316c2c4e9ac49","type":"document"},"lc":"n88043976"} {"nkc":"js20010125076","selibr":"275117","version":"2013-07-01T14:07:50Z","_id":"0b1b5781047638aebb626ba9e39475b6","dnb":"118624334","nla":"000035587201","term":"Tschižewskij, Dmitrij, 1894-1977","key":"TschižewskijDmitrij1894-1977","nlicyr":"000158492","nlilat":"000132910","viafid":"18015229","merge":{"source":"viaf","id":"0b1b5781047638aebb626ba9e39475b6","type":"document"},"lc":"n50041483","bnf":"12108185"} {"selibr":"206623","version":"2013-07-01T14:07:50Z","_id":"0b1d6738beedab2a53e876692fedb655","term":"Andersson, Håkan, 1959-, jurist","key":"AnderssonHåkan1959-jurist","viafid":"33983455","merge":{"source":"viaf","id":"0b1d6738beedab2a53e876692fedb655","type":"document"},"lc":"nb2007008625"} {"viafid":"175549786","merge":{"source":"viaf","id":"0b1eead043d4bb8ecd52a8d2286ca013","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0b1eead043d4bb8ecd52a8d2286ca013","lc":"n2006023638","term":"Narbonne, Jean-Marc, 1957- | Lévinas et l'héritage Grec. English","key":"NarbonneJean-Marc1957-|Lévinasetl'héritageGrecEnglish"} {"nkc":"mzk2009511491","version":"2013-07-01T14:07:50Z","_id":"0b1fe78196a6e1c0be50e6ae52c0c1b9","dnb":"100214908","ptbnp":"240169","term":"Perreau, Jean-André, 1749-1813","key":"PerreauJean-André1749-1813","nlilat":"000509787","viafid":"2506832","merge":{"source":"viaf","id":"0b1fe78196a6e1c0be50e6ae52c0c1b9","type":"document"},"lc":"n93063231","bnf":"12136042"} {"nkc":"xx0007365","selibr":"214160","version":"2013-07-01T14:07:50Z","_id":"0b26e997eaa55d77bd0d9667db589d37","dnb":"118748513","nla":"000035131141","term":"Šmelev, Ivan Sergeevič, 1873-1950","key":"ŠmelevIvanSergeevič1873-1950","nlicyr":"000160131","viafid":"91565066","merge":{"source":"viaf","id":"0b26e997eaa55d77bd0d9667db589d37","type":"document"},"lc":"n81117011","bnf":"12129144"} {"viafid":"174329054","merge":{"source":"viaf","id":"0b2780bbacafe75d5ba0bf63f0cbfc92","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0b2780bbacafe75d5ba0bf63f0cbfc92","lc":"n2004044744","term":"Grøndahl, Jens Christian, 1959- | Andet lys. English","key":"GrøndahlJensChristian1959-|AndetlysEnglish"} {"nkc":"kup19960000064133","selibr":"208174","version":"2013-07-01T14:07:50Z","_id":"0b2b84c876538c955105edad1dbaab36","bne":"xx1365935","dnb":"118783106","nla":"000035752190","term":"Pečerskij, Andrej, 1819-1883","key":"PečerskijAndrej1819-1883","viafid":"73967483","merge":{"source":"viaf","id":"0b2b84c876538c955105edad1dbaab36","type":"document"},"lc":"n84154998","bnf":"12555735"} {"nkc":"ola2002161226","selibr":"284056","version":"2013-07-01T14:07:50Z","_id":"0b31740d71378e3019d4a0b2541c8f7d","dnb":"118672703","nla":"000035816243","ptbnp":"90600","term":"Dumouriez, Charles François Du Périer, 1739-1823","key":"DumouriezCharlesFrançoisDuPérier1739-1823","nlilat":"000247028","viafid":"69039374","merge":{"source":"viaf","id":"0b31740d71378e3019d4a0b2541c8f7d","type":"document"},"lc":"n85008400","bnf":"12524528","bav":"adv10129907"} {"nkc":"jx20100915004","selibr":"175588","version":"2013-07-01T14:07:50Z","_id":"0b3553ddd1a1281db36fc5e68d5fa6a9","bne":"xx996656","dnb":"118551469","swnl":"vtls002052758","nla":"000035006801","term":"Andō, Hiroshige, 1797-1858","key":"AndōHiroshige1797-1858","viafid":"19678928","nlilat":"000063509","merge":{"source":"viaf","id":"0b3553ddd1a1281db36fc5e68d5fa6a9","type":"document"},"lc":"n50044379","bnf":"11907554"} {"nkc":"skuk0005425","version":"2013-07-01T14:07:50Z","_id":"0b358779228fcca0aa669691a6cf2864","dnb":"11861844x","term":"Stökl, Günther (1916-1998)","key":"StöklGünther(1916-1998)","nlilat":"000436352","viafid":"89676189","merge":{"source":"viaf","id":"0b358779228fcca0aa669691a6cf2864","type":"document"},"lc":"n81050114","bnf":"12023579","bav":"adv11951305"} {"nkc":"jn19981001314","version":"2013-07-01T14:07:50Z","_id":"0b392bdf63889fecefa2ae47079e796f","bne":"xx923661","dnb":"122339347","nla":"000035785518","ptbnp":"275656","term":"García Bacca, Juan David, 1901-1992","key":"GarcíaBaccaJuanDavid1901-1992","viafid":"112824971","merge":{"source":"viaf","id":"0b392bdf63889fecefa2ae47079e796f","type":"document"},"lc":"n81068915","bnf":"11886376","bav":"adv10219898"} {"nkc":"mzk2009533253","version":"2013-07-01T14:07:50Z","_id":"0b4371e3286ce4567cb75f297dc96380","dnb":"172533910","term":"Istvánffy, Miklós, 1538-1615","key":"IstvánffyMiklós1538-1615","nlilat":"000492379","viafid":"76444890","merge":{"source":"viaf","id":"0b4371e3286ce4567cb75f297dc96380","type":"document"},"lc":"n88049285","bnf":"12915473","bav":"adv10290168"} {"selibr":"207683","version":"2013-07-01T14:07:50Z","_id":"0b48d235c8823e467002935d39a9ef4f","bne":"xx5016110","dnb":"118565346","swnl":"vtls001886746","nla":"000035280046","term":"Koraīs, Adamantios (1748-1833)","key":"KoraīsAdamantios(1748-1833)","nlilat":"000449376","viafid":"95174123","merge":{"source":"viaf","id":"0b48d235c8823e467002935d39a9ef4f","type":"document"},"lc":"n82208074","bnf":"12183568","bav":"adv10296629"} {"nkc":"ola2008460009","version":"2013-07-01T14:07:50Z","_id":"0b48f16cd146bdbd10521a2f73947714","bne":"xx1727372","dnb":"117661236","term":"André, Yves-Marie, 1675-1764","key":"AndréYves-Marie1675-1764","viafid":"51732793","merge":{"source":"viaf","id":"0b48f16cd146bdbd10521a2f73947714","type":"document"},"lc":"n2006066584","bnf":"12180932","bav":"adv10231928"} {"nkc":"mzk2008468972","version":"2013-07-01T14:07:50Z","_id":"0b4f1e9c2efdd1ac283422cc1d94c3b4","dnb":"119117983","term":"Häberlin, Franz Dominicus, 1720-1787","key":"HäberlinFranzDominicus1720-1787","viafid":"32019945","merge":{"source":"viaf","id":"0b4f1e9c2efdd1ac283422cc1d94c3b4","type":"document"},"bnf":"12072626","bav":"adv10167432"} {"nkc":"nlk20000079474","version":"2013-07-01T14:07:50Z","_id":"0b505506c130ec7f71785970d5a172cf","bne":"xx1509951","dnb":"117581577","term":"Béclard, Jules 1817-1887","key":"BéclardJules1817-1887","viafid":"84790772","merge":{"source":"viaf","id":"0b505506c130ec7f71785970d5a172cf","type":"document"},"lc":"n87803195","bnf":"13165778","bav":"adv10070923"} {"nkc":"kup19940000041679","selibr":"334829","version":"2013-07-01T14:07:50Z","_id":"0b542cad55af46e65e5b6a797b13ffe4","dnb":"119244322","nla":"000035216538","ptbnp":"39803","term":"Huyghe, René, 1906-1997","key":"HuygheRené1906-1997","nlilat":"000407249","viafid":"7391755","merge":{"source":"viaf","id":"0b542cad55af46e65e5b6a797b13ffe4","type":"document"},"lc":"n50030362","bnf":"11908115","bav":"adv10042791"} {"nkc":"mzk2003203577","version":"2013-07-01T14:07:50Z","_id":"0b5951fa6f9f328462dac7a67ebaab85","dnb":"120859718","nla":"000035731292","term":"Von Reinsberg-Düringsfeld, Otto, 1822-1876","key":"VonReinsberg-DüringsfeldOtto1822-1876","nlilat":"000518852","viafid":"51866388","merge":{"source":"viaf","id":"0b5951fa6f9f328462dac7a67ebaab85","type":"document"},"lc":"no94025440","bnf":"13620607"} {"nkc":"xx0163289","version":"2013-07-01T14:07:50Z","_id":"0b5e32448bf96341c274810b19807da6","nla":"000036133604","term":"Guérin, Marcel, 1873-1948","key":"GuérinMarcel1873-1948","viafid":"54251295","merge":{"source":"viaf","id":"0b5e32448bf96341c274810b19807da6","type":"document"},"lc":"n81042631","bnf":"12496738","bav":"adv12227711"} {"version":"2013-07-01T14:07:50Z","_id":"0b6b1325923ef33c1921943d7841fb83","dnb":"130597198","term":"Beauvais de Préau, Charles-Théodore (1772-1830)","key":"BeauvaisdePréauCharles-Théodore(1772-1830)","viafid":"119187","merge":{"source":"viaf","id":"0b6b1325923ef33c1921943d7841fb83","type":"document"},"lc":"n2007013911","bnf":"12521155","bav":"adv10283417"} {"viafid":"178650267","merge":{"source":"viaf","id":"0b762fcab4b109a81685eb99a5c28093","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0b762fcab4b109a81685eb99a5c28093","lc":"n85124853","term":"Ōmae, Kenʼichi, 1943- | Triad power. Japanese","key":"ŌmaeKenʼichi1943-|TriadpowerJapanese"} {"viafid":"184522096","merge":{"source":"viaf","id":"0b7906a5457ee18ca53e17e20bc56692","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0b7906a5457ee18ca53e17e20bc56692","lc":"no2002035195","term":"Lindström, Martin, 1970- | Mærkevarer på Internettet. English","key":"LindströmMartin1970-|MærkevarerpåInternettetEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"0b92335de725ebb682d787ebb2459509","bne":"xx1597897","dnb":"101846509","ptbnp":"1205863","term":"Van Drival, Eugéne, 1815-1887","key":"VanDrivalEugéne1815-1887","viafid":"2604273","merge":{"source":"viaf","id":"0b92335de725ebb682d787ebb2459509","type":"document"},"bnf":"12982992","bav":"adv12446024"} {"version":"2013-07-01T14:07:50Z","_id":"0b943a2a8481c5d4f2724c25549a794a","ptbnp":"36679","term":"De Sousa, António, 1898-1981","key":"DeSousaAntónio1898-1981","viafid":"11223045","merge":{"source":"viaf","id":"0b943a2a8481c5d4f2724c25549a794a","type":"document"},"lc":"n83139854"} {"nkc":"ola2009507589","version":"2013-07-01T14:07:50Z","_id":"0ba500e534508b319b0601cb4f8664c2","dnb":"116221364","term":"Böhmer, Georg Wilhelm, 1761-1839","key":"BöhmerGeorgWilhelm1761-1839","viafid":"17968330","nlilat":"000027072","merge":{"source":"viaf","id":"0ba500e534508b319b0601cb4f8664c2","type":"document"},"lc":"n91092686"} {"nkc":"mzk2009511737","selibr":"169244","version":"2013-07-01T14:07:50Z","_id":"0ba67b929cf30059b68c4b2d311451dc","bne":"xx1606252","dnb":"117631620","term":"Saint-Lambert, Jean-François (1716-1803)","key":"Saint-LambertJean-François(1716-1803)","nlilat":"000516045","viafid":"71423453","merge":{"source":"viaf","id":"0ba67b929cf30059b68c4b2d311451dc","type":"document"},"lc":"no91005600","bnf":"12121287"} {"version":"2013-07-01T14:07:50Z","_id":"0bacd6137de9f2e52433700a640b7440","bne":"xx1134740","dnb":"152369368","term":"Esclasans, Agustí 1895-1967","key":"EsclasansAgustí1895-1967","viafid":"40405799","merge":{"source":"viaf","id":"0bacd6137de9f2e52433700a640b7440","type":"document"},"lc":"n84213564"} {"nkc":"xx0130308","selibr":"313582","version":"2013-07-01T14:07:50Z","_id":"0bbc4567feb0b4044cedeb24aa798466","dnb":"119042134","nla":"000035013406","term":"Barbé-Marbois, François, 1745-1837","key":"Barbé-MarboisFrançois1745-1837","viafid":"9958036","nlilat":"000454887","merge":{"source":"viaf","id":"0bbc4567feb0b4044cedeb24aa798466","type":"document"},"lc":"n83141373","bnf":"12529633"} {"viafid":"174888919","merge":{"source":"viaf","id":"0bdab7710358159e91bf9565d1e10472","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0bdab7710358159e91bf9565d1e10472","lc":"no2010116242","term":"Howard, Ronald A., 1934-, (Ronald Arthur), Dinamicheskoe programmirovanie i markovskie prot︠s︡essy","key":"HowardRonaldA1934-(RonaldArthur)Dinamicheskoeprogrammirovanieimarkovskieprot︠s︡essy"} {"selibr":"200241","version":"2013-07-01T14:07:50Z","_id":"0be07a1e4d63546f1090d26bd62d6c1d","egaxa":"vtls000814446","dnb":"118854860","term":"ʻUrābī, Aḥmad, 1840 or 41-1911","key":"ʻUrābīAḥmad1840or41-1911","nlilat":"000451615","viafid":"17232266","merge":{"source":"viaf","id":"0be07a1e4d63546f1090d26bd62d6c1d","type":"document"},"lc":"n83009078","bnf":"11989530"} {"viafid":"84814614","merge":{"source":"viaf","id":"0be2e27da3102e9f0999bab06b544313","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0be2e27da3102e9f0999bab06b544313","lc":"no2011090962","term":"Rossolimo, Grigoriĭ Ivanovich, 1860-1928","key":"RossolimoGrigoriĭIvanovich1860-1928"} {"nliara":"000159417","selibr":"191053","version":"2013-07-01T14:07:50Z","_id":"0be5749bc5cd2620d955259d8764ef31","egaxa":"vtls000806176","bne":"xx1157245","dnb":"119526409","nla":"000035125590","term":"Ibn Qutaybah, ʻAbd Allāh ibn Muslim, 828-889?","key":"IbnQutaybahʻAbdAllāhibnMuslim828-889?","viafid":"17336324","nlilat":"000066436","merge":{"source":"viaf","id":"0be5749bc5cd2620d955259d8764ef31","type":"document"},"lc":"n83043339","bnf":"12551842","bav":"adv10299371"} {"viafid":"200220677","merge":{"source":"viaf","id":"0bf0f923a53ede8b30719e403be1c11b","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0bf0f923a53ede8b30719e403be1c11b","dnb":"172582202","term":"Landré, George Nicolas, 1762-1824","key":"LandréGeorgeNicolas1762-1824"} {"version":"2013-07-01T14:07:50Z","_id":"0bfb2f2b849685526c8b4983fa3c437c","dnb":"118844431","term":"Möller, Eberhard Wolfgang (1906-1972)","key":"MöllerEberhardWolfgang(1906-1972)","viafid":"50022687","merge":{"source":"viaf","id":"0bfb2f2b849685526c8b4983fa3c437c","type":"document"},"lc":"n85057292"} {"nkc":"xx0150847","version":"2013-07-01T14:07:50Z","_id":"0c122418227c6ebf7ebd8eed91f8135d","dnb":"102762600","nla":"000035406854","term":"Palmén, E., 1898-1985, (Erik)","key":"PalménE1898-1985(Erik)","viafid":"39509314","merge":{"source":"viaf","id":"0c122418227c6ebf7ebd8eed91f8135d","type":"document"},"lc":"no2007068414","bnf":"12981645"} {"version":"2013-07-01T14:07:50Z","_id":"0c17ef143a12c52c7593c6957048c7c0","dnb":"11636341x","term":"Häpke, Rudolf, 1884-1930","key":"HäpkeRudolf1884-1930","viafid":"40128011","nlilat":"000530621","merge":{"source":"viaf","id":"0c17ef143a12c52c7593c6957048c7c0","type":"document"},"lc":"no97010368","bav":"adv10137458"} {"viafid":"185412290","merge":{"source":"viaf","id":"0c19339b32db062d00eef169cde79252","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0c19339b32db062d00eef169cde79252","lc":"nr00012282","term":"Yoshimi, Yoshiaki, 1946- | Jūgun ianfu. English","key":"YoshimiYoshiaki1946-|JūgunianfuEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"0c310b9fc82f0c92a7db6eefb902a069","dnb":"119394510","term":"Šejka, Leonid, 1932-1970","key":"ŠejkaLeonid1932-1970","viafid":"69737954","merge":{"source":"viaf","id":"0c310b9fc82f0c92a7db6eefb902a069","type":"document"},"lc":"nr99028641"} {"nliara":"000246372","selibr":"218347","version":"2013-07-01T14:07:50Z","_id":"0c317a78084881f8e6b6eac34df666eb","egaxa":"vtls000852028","dnb":"118868233","nla":"000035244657","term":"Zurayq, Qusṭanṭīn, 1909-2000","key":"ZurayqQusṭanṭīn1909-2000","nlilat":"000146560","viafid":"22939272","merge":{"source":"viaf","id":"0c317a78084881f8e6b6eac34df666eb","type":"document"},"lc":"n82270605","bnf":"12133582","bav":"adv12490769"} {"selibr":"299997","version":"2013-07-01T14:07:50Z","_id":"0c321cdd9e30dc1294ab65ab278d33a3","bne":"xx866279","dnb":"118540742","nla":"000035133036","ptbnp":"79923","term":"González, Julio, 1876-1942","key":"GonzálezJulio1876-1942","viafid":"4960044","nlilat":"000410496","merge":{"source":"viaf","id":"0c321cdd9e30dc1294ab65ab278d33a3","type":"document"},"jpg":"500024353","lc":"n50043484","bnf":"12102718","bav":"adv10213428"} {"version":"2013-07-01T14:07:50Z","_id":"0c33c62403c4ad649c3f65ae2d690bd2","dnb":"116050365","term":"Baratier, François, 1682-1751","key":"BaratierFrançois1682-1751","viafid":"62290305","merge":{"source":"viaf","id":"0c33c62403c4ad649c3f65ae2d690bd2","type":"document"},"lc":"nr91009487"} {"nkc":"jx20070207001","version":"2013-07-01T14:07:50Z","_id":"0c343d6f38346ac7675873bd9477dbb9","dnb":"118973819","nla":"000035866652","term":"Andriolli, Michał Elwiro, 1836-1893","key":"AndriolliMichałElwiro1836-1893","viafid":"50025644","nlilat":"000010368","merge":{"source":"viaf","id":"0c343d6f38346ac7675873bd9477dbb9","type":"document"},"jpg":"500073832","lc":"n80148723","bnf":"11888842"} {"version":"2013-07-01T14:07:50Z","_id":"0c37c568159acea2b1b27231a6346955","dnb":"124817343","term":"Armengaud, Jacques-Eugène, 1810-1891","key":"ArmengaudJacques-Eugène1810-1891","viafid":"159767","merge":{"source":"viaf","id":"0c37c568159acea2b1b27231a6346955","type":"document"},"lc":"n88256903","bnf":"13475530"} {"nkc":"jo20000082489","selibr":"232115","version":"2013-07-01T14:07:50Z","_id":"0c38c5716f8a577ed2d4523328825d00","bne":"xx893071","dnb":"118644483","nla":"000036551688","ptbnp":"287","term":"Aldanov, Mark Aleksandrovič 1889-1957","key":"AldanovMarkAleksandrovič1889-1957","viafid":"100256052","nlilat":"000008342","nlicyr":"000147244","merge":{"source":"viaf","id":"0c38c5716f8a577ed2d4523328825d00","type":"document"},"lc":"n84204710","bnf":"12132372","bav":"adv10873268"} {"version":"2013-07-01T14:07:50Z","_id":"0c3af7531a6ae86b5a5e8b262af5e461","dnb":"118526340","term":"Dörpfeld, Friedrich Wilhelm, 1824-1893","key":"DörpfeldFriedrichWilhelm1824-1893","viafid":"20471563","nlilat":"000406829","merge":{"source":"viaf","id":"0c3af7531a6ae86b5a5e8b262af5e461","type":"document"},"lc":"n50028850","bav":"adv10227244"} {"nkc":"mzk2009510493","version":"2013-07-01T14:07:50Z","_id":"0c3dc90679162fb80abe5913a169cae4","dnb":"13389097x","nla":"000036020630","term":"Aubert de la Chesnaye-des-Bois, François-Alexandre, 1699-1784","key":"AubertdelaChesnaye-des-BoisFrançois-Alexandre1699-1784","viafid":"51802151","nlilat":"000013018","merge":{"source":"viaf","id":"0c3dc90679162fb80abe5913a169cae4","type":"document"},"lc":"no90023096","bnf":"12539429","bav":"adv10032449"} {"nkc":"mzk2004234281","version":"2013-07-01T14:07:50Z","_id":"0c4129814ef8ac3bf2dbb51dbe314690","dnb":"117683922","ptbnp":"47010","term":"Quérard, Joseph-Marie, 1797-1865","key":"QuérardJoseph-Marie1797-1865","viafid":"9937773","nlilat":"000523225","merge":{"source":"viaf","id":"0c4129814ef8ac3bf2dbb51dbe314690","type":"document"},"lc":"nr89003391","bnf":"12422351","bav":"adv11050052"} {"nkc":"jn19990004906","version":"2013-07-01T14:07:50Z","_id":"0c463703c7bbe1d11b82304bfdd341d0","dnb":"119172046","nla":"000035765635","ptbnp":"84691","term":"De Laveleye, Émile Louis Victor, 1822-1892","key":"DeLaveleyeÉmileLouisVictor1822-1892","viafid":"12339853","nlilat":"000462900","merge":{"source":"viaf","id":"0c463703c7bbe1d11b82304bfdd341d0","type":"document"},"lc":"n84135848","bnf":"12117322","bav":"adv10874948"} {"version":"2013-07-01T14:07:50Z","_id":"0c5483eddbe4489895a7acfb2f2c53cf","dnb":"100304567","term":"Massoulié, Antonin (1632-1706)","key":"MassouliéAntonin(1632-1706)","viafid":"52033741","merge":{"source":"viaf","id":"0c5483eddbe4489895a7acfb2f2c53cf","type":"document"},"bav":"adv10995044"} {"viafid":"26935908","merge":{"source":"viaf","id":"0c6b50aca864af04e08686a062794739","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0c6b50aca864af04e08686a062794739","lc":"nr93018046","term":"De Gouvêa, Alexandre, 1751-1808","key":"DeGouvêaAlexandre1751-1808"} {"nkc":"mzk2009528374","version":"2013-07-01T14:07:50Z","_id":"0c6c4c087e4eafe531b9c676956d3ade","dnb":"100102840","term":"Delbrück, Ferdinand, 1772-1848","key":"DelbrückFerdinand1772-1848","viafid":"76655444","merge":{"source":"viaf","id":"0c6c4c087e4eafe531b9c676956d3ade","type":"document"},"lc":"nr2002041667","bav":"adv10141934"} {"version":"2013-07-01T14:07:50Z","_id":"0c6d8ff88c4cc3b6fb315e83cef7ddfd","dnb":"116916338","term":"Guérin, Jules, 1801-1886","key":"GuérinJules1801-1886","viafid":"66563840","merge":{"source":"viaf","id":"0c6d8ff88c4cc3b6fb315e83cef7ddfd","type":"document"},"bnf":"12462139","bav":"adv10134822"} {"viafid":"185005790","merge":{"source":"viaf","id":"0c768174d747babce75da88fdd17e042","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0c768174d747babce75da88fdd17e042","lc":"no2011149688","term":"Engelhardt, Heinz, 1936- | Hochdruck-Flüssigkeits-Chromatographie. English","key":"EngelhardtHeinz1936-|Hochdruck-Flüssigkeits-ChromatographieEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"0c949f3997b94b82b1e3ebcb923d7c03","dnb":"123044286","term":"Huszár, Vilmos, 1884-1960","key":"HuszárVilmos1884-1960","viafid":"27968832","merge":{"source":"viaf","id":"0c949f3997b94b82b1e3ebcb923d7c03","type":"document"},"jpg":"500012149","lc":"n84222126"} {"nkc":"jk01151482","version":"2013-07-01T14:07:50Z","_id":"0c95d2cc40b1b83662510a375b4f1f99","dnb":"121434354","term":"Weil, Jiří, 1900-1959","key":"WeilJiří1900-1959","viafid":"17278482","merge":{"source":"viaf","id":"0c95d2cc40b1b83662510a375b4f1f99","type":"document"},"lc":"no88001051","bnf":"12245477"} {"nkc":"jn19990008399","selibr":"95477","version":"2013-07-01T14:07:50Z","_id":"0c96100ad6ecc90eca42c5b5a20e637a","egaxa":"vtls001124370","bne":"xx1223734","dnb":"119449048","nla":"000035811541","ptbnp":"910861","term":"Szymborska, Wisława, 1923-2012","key":"SzymborskaWisława1923-2012","viafid":"88346011","nlilat":"000129149","merge":{"source":"viaf","id":"0c96100ad6ecc90eca42c5b5a20e637a","type":"document"},"lc":"n81035696","bnf":"12118182"} {"nkc":"jcu2012721145","version":"2013-07-01T14:07:50Z","_id":"0ca18ed2867025b393b053133fae9a13","dnb":"138445362","nla":"000049886082","term":"Willaert, Léopold, 1878-1963","key":"WillaertLéopold1878-1963","viafid":"34466149","merge":{"source":"viaf","id":"0ca18ed2867025b393b053133fae9a13","type":"document"},"bnf":"11996019","bav":"adv10183604"} {"nkc":"mzk2009510930","selibr":"338397","version":"2013-07-01T14:07:50Z","_id":"0ca82f349c75de71d8bcc560a947f379","dnb":"12208263x","term":"Gürtler, Nicolaus, 1654-1711","key":"GürtlerNicolaus1654-1711","nlilat":"000523586","viafid":"55020168","merge":{"source":"viaf","id":"0ca82f349c75de71d8bcc560a947f379","type":"document"},"lc":"nr89009958","bav":"adv10068847"} {"viafid":"78762051","selibr":"289202","merge":{"source":"viaf","id":"0cac38d3be3844f7df65298dc43af32f","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0cac38d3be3844f7df65298dc43af32f","term":"Tegnér, Christopher, 1807-1885","key":"TegnérChristopher1807-1885"} {"version":"2013-07-01T14:07:50Z","_id":"0cac5dc31fa0b80404311858184f7938","dnb":"158719301","nla":"000036019729","term":"Rizos Neroulos, Jakōbos, 1778-1849/50","key":"RizosNeroulosJakōbos1778-1849/50","viafid":"7520398","merge":{"source":"viaf","id":"0cac5dc31fa0b80404311858184f7938","type":"document"},"lc":"nr92000655","bnf":"12977083","bav":"adv12179668"} {"selibr":"268169","version":"2013-07-01T14:07:50Z","_id":"0cadd6086295c1eab4804102b7314707","dnb":"127292632","term":"Leander, Åke, 1919-2003","key":"LeanderÅke1919-2003","viafid":"71371646","merge":{"source":"viaf","id":"0cadd6086295c1eab4804102b7314707","type":"document"}} {"version":"2013-07-01T14:07:50Z","_id":"0cafa7b92e627e31380fc66f1e11bd4f","dnb":"118735055","term":"Münster, Hans A. 1901-1963","key":"MünsterHansA1901-1963","viafid":"22936766","nlilat":"000468353","merge":{"source":"viaf","id":"0cafa7b92e627e31380fc66f1e11bd4f","type":"document"},"lc":"n85058981"} {"nkc":"jn19990209034","version":"2013-07-01T14:07:50Z","_id":"0cb13e6232bd2acfee59cb73b5099dbf","dnb":"118850407","term":"Bednár, Alfonz, 1914-1989","key":"BednárAlfonz1914-1989","viafid":"36959832","merge":{"source":"viaf","id":"0cb13e6232bd2acfee59cb73b5099dbf","type":"document"},"lc":"n85165574","bnf":"12175626"} {"version":"2013-07-01T14:07:50Z","_id":"0cb2d1662c9bb4afa5c8b38d4fb5771a","dnb":"172319854","term":"Plaaß, Peter, 1934-1965","key":"PlaaßPeter1934-1965","viafid":"208615685","merge":{"source":"viaf","id":"0cb2d1662c9bb4afa5c8b38d4fb5771a","type":"document"},"lc":"n94008532","bnf":"12504267"} {"viafid":"274401699","merge":{"source":"viaf","id":"0cb563cb3268d3600255b91934b96294","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0cb563cb3268d3600255b91934b96294","dnb":"116888199","term":"Gründler, Carl August, 1769-1843","key":"GründlerCarlAugust1769-1843"} {"version":"2013-07-01T14:07:50Z","_id":"0cb8162365f84bfec6cef3edbaf8ab76","dnb":"116367334","term":"Gallée, Johan Hendrik, 1847-1908","key":"GalléeJohanHendrik1847-1908","nlilat":"000450063","viafid":"37015462","merge":{"source":"viaf","id":"0cb8162365f84bfec6cef3edbaf8ab76","type":"document"},"lc":"n82231018","bnf":"12465031"} {"nkc":"jn20020723170","nliara":"000158961","selibr":"62724","version":"2013-07-01T14:07:50Z","_id":"0ccc262ef7773b93f61a33e330c9b59d","egaxa":"vtls001509627","nla":"000035416285","term":"Ibn al-Jawzī, Abū al-Faraj ʻAbd al-Raḥmān ibn ʻAlī, ca 1116-1201","key":"Ibnal-JawzīAbūal-FarajʻAbdal-RaḥmānibnʻAlīca1116-1201","nlilat":"000066491","viafid":"100186291","merge":{"source":"viaf","id":"0ccc262ef7773b93f61a33e330c9b59d","type":"document"},"bnf":"12052125","bav":"adv10219685"} {"version":"2013-07-01T14:07:50Z","_id":"0cd10f96b0b78521f0d5fd69631b7a48","dnb":"130108081","term":"Macler, Frédéric, 1869-1938","key":"MaclerFrédéric1869-1938","viafid":"7513167","nlilat":"000087347","merge":{"source":"viaf","id":"0cd10f96b0b78521f0d5fd69631b7a48","type":"document"},"lc":"n82063735","bnf":"12730350","bav":"adv10179324"} {"nkc":"jcu2011666724","version":"2013-07-01T14:07:50Z","_id":"0cd9f08e8ce32b989dc3a240531ff5ad","dnb":"107654121","term":"Stürzinger, Jakob, 1853-1903","key":"StürzingerJakob1853-1903","viafid":"10370821","merge":{"source":"viaf","id":"0cd9f08e8ce32b989dc3a240531ff5ad","type":"document"},"lc":"n89608130","bav":"adv12290597"} {"nkc":"nlk20000088160","version":"2013-07-01T14:07:50Z","_id":"0cda7371e4e6163ad55e34dc1764d7d5","dnb":"117265063","term":"Stöhr, Philipp, 1849-1911","key":"StöhrPhilipp1849-1911","viafid":"64779480","nlilat":"000478208","merge":{"source":"viaf","id":"0cda7371e4e6163ad55e34dc1764d7d5","type":"document"},"lc":"n85809731"} {"viafid":"13876831","merge":{"source":"viaf","id":"0cefcb6e118099ad981df18655d19da0","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0cefcb6e118099ad981df18655d19da0","lc":"n88256560","term":"Behr, Frédéric, 1805-1863","key":"BehrFrédéric1805-1863"} {"version":"2013-07-01T14:07:50Z","_id":"0cf421f395faf1f7dd492bbdfcac0b2d","dnb":"11756463x","nla":"000035014300","term":"Barrault, Émile (1799-1869)","key":"BarraultÉmile(1799-1869)","viafid":"7386569","nlilat":"000493928","merge":{"source":"viaf","id":"0cf421f395faf1f7dd492bbdfcac0b2d","type":"document"},"lc":"n88130557","bnf":"11890310"} {"nkc":"js2007382546","version":"2013-07-01T14:07:50Z","_id":"0cfac024df6fc576fcb8849429018271","dnb":"129200727","term":"Wóycicki, Kazimierz, b. 1876","key":"WóycickiKazimierzb1876","viafid":"3546002","nlilat":"000318400","merge":{"source":"viaf","id":"0cfac024df6fc576fcb8849429018271","type":"document"},"lc":"no95009982"} {"selibr":"104062","version":"2013-07-01T14:07:50Z","_id":"0d0347b9d673fa0837389c7778881029","dnb":"119480840","nla":"000035904497","term":"Åkerman, Johan, 1896-1982","key":"ÅkermanJohan1896-1982","viafid":"4992460","merge":{"source":"viaf","id":"0d0347b9d673fa0837389c7778881029","type":"document"},"lc":"n79060752","bnf":"12280744","bav":"adv12095662"} {"version":"2013-07-01T14:07:50Z","_id":"0d046c7e1361b56324a97c0c96f9ebb9","dnb":"100204198","ptbnp":"96863","term":"Marquet, François Nicolas, 1687-1759","key":"MarquetFrançoisNicolas1687-1759","viafid":"34796299","merge":{"source":"viaf","id":"0d046c7e1361b56324a97c0c96f9ebb9","type":"document"},"lc":"n2001061082","bav":"adv10954696"} {"selibr":"189040","version":"2013-07-01T14:07:50Z","_id":"0d06c7c564a081727520c9f455d2becb","dnb":"171499689","term":"Gårdlund, Torsten, 1911-2003","key":"GårdlundTorsten1911-2003","viafid":"201546144","merge":{"source":"viaf","id":"0d06c7c564a081727520c9f455d2becb","type":"document"},"bnf":"12238024"} {"nkc":"xx0009086","selibr":"292114","version":"2013-07-01T14:07:50Z","_id":"0d08d5e826896f3002eee6cf5ced023e","bne":"xx1142073","dnb":"119089580","nla":"000035017084","ptbnp":"223562","term":"De Belleforest, François, 1530-1583","key":"DeBelleforestFrançois1530-1583","viafid":"61541619","nlilat":"000435080","merge":{"source":"viaf","id":"0d08d5e826896f3002eee6cf5ced023e","type":"document"},"lc":"n81025991","bnf":"11891047","bav":"adv10133457"} {"version":"2013-07-01T14:07:50Z","_id":"0d0b7c265587574dbf77eed551f6fe4a","dnb":"11663510x","term":"Föppl, A., 1854-1924","key":"FöpplA1854-1924","viafid":"52446756","nlilat":"000050357","merge":{"source":"viaf","id":"0d0b7c265587574dbf77eed551f6fe4a","type":"document"},"lc":"n91085919"} {"version":"2013-07-01T14:07:50Z","_id":"0d0c5be53ff4901fb1e2d2c4177a9665","dnb":"118092847","term":"Bujac, Jean Léopold Emile, 1852-1935","key":"BujacJeanLéopoldEmile1852-1935","viafid":"3259121","merge":{"source":"viaf","id":"0d0c5be53ff4901fb1e2d2c4177a9665","type":"document"},"lc":"n90609786","bnf":"11264035"} {"version":"2013-07-01T14:07:50Z","_id":"0d11020628f0c1bc9fa2e52944540338","dnb":"155182145","term":"Ōjihara, Yutaka, 1923-1991","key":"ŌjiharaYutaka1923-1991","viafid":"24667950","merge":{"source":"viaf","id":"0d11020628f0c1bc9fa2e52944540338","type":"document"},"lc":"n89670444","bnf":"12305125"} {"viafid":"181616576","merge":{"source":"viaf","id":"0d3b0ba1ad64e2f4fcce69fcc27eb973","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0d3b0ba1ad64e2f4fcce69fcc27eb973","lc":"n2008076342","term":"Yamaguchi, Zuihō, 1926- | Chibetto. Chinese","key":"YamaguchiZuihō1926-|ChibettoChinese"} {"nkc":"xx0029954","selibr":"187317","version":"2013-07-01T14:07:50Z","_id":"0d4b70fadb4c3e6a29966a85088ab8e0","dnb":"118534726","term":"François-Poncet, André, 1887-1978","key":"François-PoncetAndré1887-1978","nlilat":"000048789","viafid":"29533980","merge":{"source":"viaf","id":"0d4b70fadb4c3e6a29966a85088ab8e0","type":"document"},"lc":"n85381411","bnf":"11903434","bav":"adv10182017"} {"viafid":"208860535","merge":{"source":"viaf","id":"0d4f6eebbda90f2e276e84eb1616b128","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0d4f6eebbda90f2e276e84eb1616b128","term":"Lemaître, Henri, 1851-1946","key":"LemaîtreHenri1851-1946"} {"version":"2013-07-01T14:07:50Z","_id":"0d538ed3853ca271d1ee0bf33560a39b","dnb":"115430989","term":"Riboutté, François-Louis 1770-1834","key":"RibouttéFrançois-Louis1770-1834","viafid":"68935013","merge":{"source":"viaf","id":"0d538ed3853ca271d1ee0bf33560a39b","type":"document"},"lc":"nr95020680","bnf":"11921804"} {"nkc":"jn20000720221","version":"2013-07-01T14:07:50Z","_id":"0d5c2a6f1c5b22c9eaf86831f81181e8","dnb":"119390256","nla":"000035579842","term":"Pelouze, Théophile-Jules (1807-1867)","key":"PelouzeThéophile-Jules(1807-1867)","viafid":"39487493","merge":{"source":"viaf","id":"0d5c2a6f1c5b22c9eaf86831f81181e8","type":"document"},"lc":"nr96026093","bnf":"12529341"} {"nkc":"hka2011644356","version":"2013-07-01T14:07:50Z","_id":"0d6540c989fce3572e090c261a2c6e7d","dnb":"101367112","term":"Brière, Gaston, 1871-1962","key":"BrièreGaston1871-1962","nlilat":"000523635","viafid":"22161070","merge":{"source":"viaf","id":"0d6540c989fce3572e090c261a2c6e7d","type":"document"},"lc":"nr89010853","bnf":"12052786","bav":"adv11356055"} {"nkc":"xx0006322","version":"2013-07-01T14:07:50Z","_id":"0d6a1cf8afcaf281258fc57ed977d47b","dnb":"118986716","nla":"000035821306","term":"Đalski, Ksaver Šandor, 1854-1935","key":"ĐalskiKsaverŠandor1854-1935","nlilat":"000256256","viafid":"17362607","merge":{"source":"viaf","id":"0d6a1cf8afcaf281258fc57ed977d47b","type":"document"},"lc":"n82081914","bnf":"13180765"} {"viafid":"267967935","merge":{"source":"viaf","id":"0d6a6cfff71b0a9055c00fb5733016e5","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0d6a6cfff71b0a9055c00fb5733016e5","dnb":"124664032","term":"Plöchinger, Benno 1917-2006","key":"PlöchingerBenno1917-2006"} {"version":"2013-07-01T14:07:50Z","_id":"0d77900253ba388b5255d55ef81c9d7f","bne":"xx924118","nla":"000036591700","term":"Giménez-Frontín, José Luis 1943-2008","key":"Giménez-FrontínJoséLuis1943-2008","viafid":"34467951","merge":{"source":"viaf","id":"0d77900253ba388b5255d55ef81c9d7f","type":"document"},"lc":"n79059089","bnf":"12015500"} {"viafid":"279610630","selibr":"284122","merge":{"source":"viaf","id":"0d7da04566ad2be7a22cc8be18e81028","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0d7da04566ad2be7a22cc8be18e81028","term":"Lilljebjörn, Erik Gustaf Jonas, 1848-1925","key":"LilljebjörnErikGustafJonas1848-1925"} {"version":"2013-07-01T14:07:50Z","_id":"0d7dade0911712b55aa24d96a9d3524a","dnb":"102089590","term":"Provó Kluit, Hendrik, 1803-1860","key":"ProvóKluitHendrik1803-1860","viafid":"54529531","merge":{"source":"viaf","id":"0d7dade0911712b55aa24d96a9d3524a","type":"document"},"lc":"n85248076"} {"viafid":"174732175","merge":{"source":"viaf","id":"0d88f308f076eaedd7ffdd41c9207753","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0d88f308f076eaedd7ffdd41c9207753","lc":"n2004043153","term":"Guégan, Gérard, 1942- | Seul ensemble","key":"GuéganGérard1942-|Seulensemble"} {"version":"2013-07-01T14:07:50Z","_id":"0d89f4c1368cc3443b30bf0223ee69d1","bne":"xx2348633","term":"Antunes, António Lobo 1942- | Biblioteca Lobo Antunes","key":"AntunesAntónioLobo1942-|BibliotecaLoboAntunes","viafid":"182211032","merge":{"source":"viaf","id":"0d89f4c1368cc3443b30bf0223ee69d1","type":"document"},"lc":"no2005039578"} {"nkc":"mzk2009511598","version":"2013-07-01T14:07:50Z","_id":"0d8c1d1c4cae1333c440e2be5a99cc4f","dnb":"118866737","nla":"000035757848","term":"Quatremère de Quincy, Antoine-Chrysostome, 1755-1849","key":"QuatremèredeQuincyAntoine-Chrysostome1755-1849","viafid":"29539526","nlilat":"000428576","merge":{"source":"viaf","id":"0d8c1d1c4cae1333c440e2be5a99cc4f","type":"document"},"jpg":"500033639","lc":"n80059796","bnf":"11920830","bav":"adv10163258"} {"version":"2013-07-01T14:07:50Z","_id":"0d8ca45ad1ce4eff41c281326fcb9786","dnb":"119804867","term":"Richardot, François, 1507-1574","key":"RichardotFrançois1507-1574","viafid":"78715907","merge":{"source":"viaf","id":"0d8ca45ad1ce4eff41c281326fcb9786","type":"document"},"lc":"nr2002028465","bav":"adv11135631"} {"nkc":"jn19990210299","selibr":"213389","version":"2013-07-01T14:07:50Z","_id":"0d908b08f07fa23b335207b78606b91f","bne":"xx886759","dnb":"118556193","nla":"000036369859","term":"Ivanov, Vjačeslav Ivanovič, 1866-1949","key":"IvanovVjačeslavIvanovič1866-1949","viafid":"68930563","nlilat":"000069765","nlicyr":"000151228","merge":{"source":"viaf","id":"0d908b08f07fa23b335207b78606b91f","type":"document"},"lc":"n80089640","bnf":"11908326","bav":"adv10219564"} {"nkc":"jn19990210290","_id":"0d921699c4cdaccfdf25b7961b7aa557","bne":"xx1066187","dnb":"118675427","nla":"000035777950","ptbnp":"671963","term":"Chačaturjan, Aram Il'ič, 1903-1978","key":"ChačaturjanAramIl'ič1903-1978","viafid":"19865761","merge":{"source":"viaf","id":"0d921699c4cdaccfdf25b7961b7aa557","type":"document"},"bnf":"13895967","selibr":"45666","version":"2013-07-01T14:07:50Z","swnl":"vtls000044089","nlilat":"000075515","nlicyr":"000157997","lc":"n81059831"} {"version":"2013-07-01T14:07:50Z","_id":"0da37aeeadc6cd096b3e160ee7017e81","dnb":"1012408485","term":"Moh, Günter 1929-1993","key":"MohGünter1929-1993","viafid":"43095460","merge":{"source":"viaf","id":"0da37aeeadc6cd096b3e160ee7017e81","type":"document"},"lc":"n78048959"} {"version":"2013-07-01T14:07:50Z","_id":"0da6eb9390fd6a3232bf28ccfdedbfbd","dnb":"119554518","ptbnp":"140206","term":"Much, Matthäus, 1832-1909","key":"MuchMatthäus1832-1909","viafid":"45114674","merge":{"source":"viaf","id":"0da6eb9390fd6a3232bf28ccfdedbfbd","type":"document"},"lc":"no2008179776","bav":"adv12167851"} {"nkc":"ola2003162780","version":"2013-07-01T14:07:50Z","_id":"0db248862775acb9e5344df646af375d","dnb":"124019307","nla":"000035645036","term":"Fersman, A. E., 1883-1945, (Aleksandr Evgenʹevich)","key":"FersmanAE1883-1945(AleksandrEvgenʹevich)","viafid":"3394664","nlicyr":"000366728","merge":{"source":"viaf","id":"0db248862775acb9e5344df646af375d","type":"document"},"lc":"n80149916"} {"viafid":"275893","merge":{"source":"viaf","id":"0db63c09c9c039737cead7c4aba2a4d9","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0db63c09c9c039737cead7c4aba2a4d9","bnf":"14802102","term":"Mouzin, Édouard 1822-1894","key":"MouzinÉdouard1822-1894"} {"version":"2013-07-01T14:07:50Z","_id":"0db6a378901fe3736da78a1853b6f709","dnb":"117330426","term":"Schloßmacher, Karl, 1887-1980","key":"SchloßmacherKarl1887-1980","viafid":"116400696","nlilat":"000488124","merge":{"source":"viaf","id":"0db6a378901fe3736da78a1853b6f709","type":"document"},"lc":"n87818615"} {"nkc":"utb2009505221","version":"2013-07-01T14:07:50Z","_id":"0dc6029867e2dc01df6e53726430a960","dnb":"122194500","term":"Meyer-Stamer, Jörg, 1958-2009","key":"Meyer-StamerJörg1958-2009","viafid":"42713678","merge":{"source":"viaf","id":"0dc6029867e2dc01df6e53726430a960","type":"document"},"lc":"nr88001110"} {"nkc":"jk01140140","selibr":"347172","version":"2013-07-01T14:07:50Z","_id":"0dcc07561b14205dfa907ef5ea4f68f1","dnb":"119015439","nla":"000036271261","term":"Trnka, Jiří, 1912-1969","key":"TrnkaJiří1912-1969","viafid":"27072375","nlilat":"000249003","merge":{"source":"viaf","id":"0dcc07561b14205dfa907ef5ea4f68f1","type":"document"},"lc":"n81108583","bnf":"11927123"} {"viafid":"183476808","merge":{"source":"viaf","id":"0dce28fc37e89fdbd1fb5303b8c54960","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0dce28fc37e89fdbd1fb5303b8c54960","lc":"n82270890","term":"Tünnermann Bernheim, Carlos, 1933- | Sesenta años de la reforma universitaria de Córdoba, 1918-1978","key":"TünnermannBernheimCarlos1933-|SesentaañosdelareformauniversitariadeCórdoba1918-1978"} {"version":"2013-07-01T14:07:50Z","_id":"0dcf234aca92746d45a9c8f135ca0401","dnb":"118964844","term":"Van Goens, Rijklof Michaël, 1748-1810","key":"VanGoensRijklofMichaël1748-1810","viafid":"76442020","nlilat":"000398227","merge":{"source":"viaf","id":"0dcf234aca92746d45a9c8f135ca0401","type":"document"},"lc":"n88253924","bnf":"12784344","bav":"adv12488416"} {"viafid":"289776829","merge":{"source":"viaf","id":"0dd1c91db9067e1e91d7b0213232a415","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0dd1c91db9067e1e91d7b0213232a415","term":"Stanski, Gaëtan Pierre, 1807-1879","key":"StanskiGaëtanPierre1807-1879"} {"nkc":"jn19990210139","_id":"0dddacf71ac77b52f33212dd0ed427dc","egaxa":"vtls001068508","bne":"xx1159306","dnb":"118638084","nla":"000036145708","ptbnp":"39251","term":"Bunin, Ivan Alekseevič, 1870-1953","key":"BuninIvanAlekseevič1870-1953","viafid":"7387402","merge":{"source":"viaf","id":"0dddacf71ac77b52f33212dd0ed427dc","type":"document"},"bnf":"11893350","selibr":"220532","version":"2013-07-01T14:07:50Z","swnl":"vtls000036816","nlicyr":"000148988","nlilat":"000026444","lc":"n80028431"} {"nkc":"ola2007404638","selibr":"336218","version":"2013-07-01T14:07:50Z","_id":"0de06cae674edbf886e528a1a9a62c97","dnb":"117592803","term":"Müller, Johann Heinrich Jacob, 1809-1875","key":"MüllerJohannHeinrichJacob1809-1875","viafid":"32777854","nlilat":"000484695","merge":{"source":"viaf","id":"0de06cae674edbf886e528a1a9a62c97","type":"document"},"lc":"n86840984"} {"nkc":"ola2003199600","version":"2013-07-01T14:07:50Z","_id":"0de229987ab5a04d9b19e21d6f6e69ab","dnb":"129010596","term":"Łasicki, Jan, 1534-1605","key":"ŁasickiJan1534-1605","viafid":"265803596","nlilat":"000481864","merge":{"source":"viaf","id":"0de229987ab5a04d9b19e21d6f6e69ab","type":"document"},"lc":"n86097277","bav":"adv10870843"} {"nkc":"kup19980000017516","selibr":"182925","version":"2013-07-01T14:07:50Z","_id":"0de536a793a5732bcd3129ccdb5b8634","bne":"xx1131016","dnb":"118677276","swnl":"vtls000051810","nla":"000035032083","ptbnp":"54654","term":"De Crébillon, Claude-Prosper Jolyot, 1707-1777","key":"DeCrébillonClaude-ProsperJolyot1707-1777","viafid":"24600044","nlilat":"000035875","merge":{"source":"viaf","id":"0de536a793a5732bcd3129ccdb5b8634","type":"document"},"lc":"n50017130","bnf":"11898114","bav":"adv10138107"} {"version":"2013-07-01T14:07:50Z","_id":"0de77299cbc27e571f919464dd45e29e","nla":"000035129775","term":"Dussane, Béatrix, 1888-1969","key":"DussaneBéatrix1888-1969","nlilat":"000414404","viafid":"79078480","merge":{"source":"viaf","id":"0de77299cbc27e571f919464dd45e29e","type":"document"},"lc":"n78007044","bnf":"12210660"} {"version":"2013-07-01T14:07:50Z","_id":"0e075a99b15576a4e2d54e0f36be31b1","dnb":"119302179","term":"Blaze, Elzéar, 1786-1848","key":"BlazeElzéar1786-1848","nlilat":"000511655","viafid":"100298928","merge":{"source":"viaf","id":"0e075a99b15576a4e2d54e0f36be31b1","type":"document"},"lc":"n94092630","bnf":"12662470"} {"nkc":"xx0091675","version":"2013-07-01T14:07:50Z","_id":"0e0803083e84c67c9f5b2906ef1163c2","dnb":"104080485","ptbnp":"158974","term":"Böhmert, Victor (1829-1918)","key":"BöhmertVictor(1829-1918)","viafid":"22568016","merge":{"source":"viaf","id":"0e0803083e84c67c9f5b2906ef1163c2","type":"document"}} {"version":"2013-07-01T14:07:50Z","_id":"0e16a49d225d69fa660864f97143ce3f","dnb":"119014416","term":"Lévy, Michel, 1821-1875","key":"LévyMichel1821-1875","viafid":"17253800","merge":{"source":"viaf","id":"0e16a49d225d69fa660864f97143ce3f","type":"document"},"lc":"n84193991","bnf":"12110020"} {"nkc":"nlk20000090049","version":"2013-07-01T14:07:50Z","_id":"0e1a64e180204f0f0a89a51b6fce0aec","dnb":"116168080","term":"Pflüger, Eduard Friedrich Wilhelm (1829-1910)","key":"PflügerEduardFriedrichWilhelm(1829-1910)","viafid":"20424836","merge":{"source":"viaf","id":"0e1a64e180204f0f0a89a51b6fce0aec","type":"document"},"lc":"n85033204"} {"nkc":"mzk2009510623","selibr":"286673","version":"2013-07-01T14:07:50Z","_id":"0e1c30b1441bcb480beadd75adabeeff","bne":"xx837505","dnb":"123315352","term":"Brisson, Barnabé, 1531-1591","key":"BrissonBarnabé1531-1591","viafid":"19865","nlilat":"000468663","merge":{"source":"viaf","id":"0e1c30b1441bcb480beadd75adabeeff","type":"document"},"lc":"n85068727","bnf":"11984672","bav":"adv10108718"} {"version":"2013-07-01T14:07:50Z","_id":"0e1d0bb2873e8724f44acfbf80d38d83","dnb":"141162651","term":"Waller, F. G., 1867-1934, (François Gerard)","key":"WallerFG1867-1934(FrançoisGerard)","viafid":"120401780","merge":{"source":"viaf","id":"0e1d0bb2873e8724f44acfbf80d38d83","type":"document"},"lc":"n82000684"} {"nkc":"jx20111222009","version":"2013-07-01T14:07:50Z","_id":"0e20eb516c2a20b696445a41d49f0a9b","dnb":"151609896","term":"Brancour, René, 1862-1948","key":"BrancourRené1862-1948","nlilat":"000529499","viafid":"5197311","merge":{"source":"viaf","id":"0e20eb516c2a20b696445a41d49f0a9b","type":"document"},"lc":"nr95031656","bnf":"14842061","bav":"adv11484442"} {"version":"2013-07-01T14:07:50Z","_id":"0e283dfa306747436735242d416e753b","dnb":"137481233","nla":"000035958867","term":"Meyer, Michael, 1945-...., professeur de littérature","key":"MeyerMichael1945-professeurdelittérature","viafid":"108719909","nlilat":"000423525","merge":{"source":"viaf","id":"0e283dfa306747436735242d416e753b","type":"document"},"lc":"n79115521","bnf":"12348664"} {"version":"2013-07-01T14:07:50Z","_id":"0e37b01c16a4474130556cc6e83fc883","dnb":"152110461","term":"Ristelhueber, René, 1881-1960","key":"RistelhueberRené1881-1960","viafid":"221617447","nlilat":"000111831","merge":{"source":"viaf","id":"0e37b01c16a4474130556cc6e83fc883","type":"document"},"lc":"no98070124","bnf":"12462131","bav":"adv11136424"} {"version":"2013-07-01T14:07:50Z","_id":"0e3c74c95aa91d82ef22d793b5b27975","dnb":"117708070","term":"Bergmann, Günter, 1910-1998","key":"BergmannGünter1910-1998","viafid":"32022641","merge":{"source":"viaf","id":"0e3c74c95aa91d82ef22d793b5b27975","type":"document"},"lc":"n83017393"} {"version":"2013-07-01T14:07:50Z","_id":"0e441e0bb761aebd15b0f62a8c11628c","dnb":"119035944","nla":"000035771263","term":"Prémare, Joseph Henri, 1666-1736","key":"PrémareJosephHenri1666-1736","viafid":"77116925","merge":{"source":"viaf","id":"0e441e0bb761aebd15b0f62a8c11628c","type":"document"},"lc":"nr92025347","bnf":"12122472","bav":"adv11101689"} {"viafid":"290468810","merge":{"source":"viaf","id":"0e596d6ed6166b545e05beeb2709a917","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0e596d6ed6166b545e05beeb2709a917","term":"De Maeyer, Aloi͏̈s, 1888-1973","key":"DeMaeyerAloi͏̈s1888-1973"} {"version":"2013-07-01T14:07:50Z","_id":"0e5e3f24fbed75f7fc072eba0d4ae00a","bne":"xx996166","dnb":"142705241","term":"Le Cerf de la Viéville, Jean-Laurent, 1674-1707","key":"LeCerfdelaViévilleJean-Laurent1674-1707","viafid":"74577825","nlilat":"000500134","merge":{"source":"viaf","id":"0e5e3f24fbed75f7fc072eba0d4ae00a","type":"document"},"lc":"n89629099","bnf":"12103149"} {"version":"2013-07-01T14:07:50Z","_id":"0e6bbb2b44222826b0166b00f288c754","dnb":"151375550","term":"Sallnäs, Hilding (1902-1989)","key":"SallnäsHilding(1902-1989)","viafid":"38260286","merge":{"source":"viaf","id":"0e6bbb2b44222826b0166b00f288c754","type":"document"},"lc":"n82075536"} {"version":"2013-07-01T14:07:50Z","_id":"0e6dd60204af837812d065d12c5260ee","dnb":"117613770","nla":"000035964602","ptbnp":"280861","term":"Ledrain, Eugène, 1844-1910","key":"LedrainEugène1844-1910","viafid":"34585328","merge":{"source":"viaf","id":"0e6dd60204af837812d065d12c5260ee","type":"document"},"lc":"no2004118005","bnf":"12791525","bav":"adv10109669"} {"nkc":"mub2012721647","version":"2013-07-01T14:07:50Z","_id":"0e6fe1039278b5f9765de1d73df1369f","dnb":"171997670","nla":"000036000025","ptbnp":"58420","term":"Huet, Gédéon Busken, 1860-1921","key":"HuetGédéonBusken1860-1921","viafid":"64087869","merge":{"source":"viaf","id":"0e6fe1039278b5f9765de1d73df1369f","type":"document"},"lc":"no2006006757","bnf":"12384910","bav":"adv10179609"} {"viafid":"279146848","merge":{"source":"viaf","id":"0e7163f9e5665d7f661c5330e67dca1e","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0e7163f9e5665d7f661c5330e67dca1e","lc":"no2012136795","term":"Mančev, Vase, 1949- | Šuplivi orevi. English","key":"MančevVase1949-|ŠuplivioreviEnglish"} {"viafid":"176213157","merge":{"source":"viaf","id":"0e7f0fa71072dd4ce7b328baaeb656f2","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0e7f0fa71072dd4ce7b328baaeb656f2","lc":"n84038870","term":"Cienfuegos, Fermán, 1947- | Habla el comandante Fermán Cienfuegos. English","key":"CienfuegosFermán1947-|HablaelcomandanteFermánCienfuegosEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"0e8788ebf1d57e2bab3bc8e3021a6597","dnb":"172684811","nla":"000036022185","term":"Chapuis, Félicien, 1824-1879","key":"ChapuisFélicien1824-1879","viafid":"69022505","merge":{"source":"viaf","id":"0e8788ebf1d57e2bab3bc8e3021a6597","type":"document"},"lc":"n92040537","bnf":"12437293"} {"nkc":"xx0132639","version":"2013-07-01T14:07:50Z","_id":"0e9185b8ce0f0a2d4c7b593c531d28a1","dnb":"117681857","nla":"000035248871","term":"Verboeckhoven, Eugène-Joseph, 1798-1881","key":"VerboeckhovenEugène-Joseph1798-1881","viafid":"95692980","merge":{"source":"viaf","id":"0e9185b8ce0f0a2d4c7b593c531d28a1","type":"document"},"jpg":"500002047","lc":"no2006080275","bnf":"14966523"} {"viafid":"108724485","merge":{"source":"viaf","id":"0ea820b31fc39adedb07b444b7434e55","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0ea820b31fc39adedb07b444b7434e55","lc":"n79010809","term":"Kobayashi, Chishō, 1911-1974","key":"KobayashiChishō1911-1974"} {"version":"2013-07-01T14:07:50Z","_id":"0ea8654fc1a4e9f1049e93c661ff1225","dnb":"103173684","nla":"000036082169","term":"Mētsakēs, Michaēl, 1868?-1916","key":"MētsakēsMichaēl1868?-1916","viafid":"51839530","merge":{"source":"viaf","id":"0ea8654fc1a4e9f1049e93c661ff1225","type":"document"},"lc":"nr90012174"} {"version":"2013-07-01T14:07:50Z","_id":"0ea9351580e7d75545c0c149bd982a9f","term":"Machelard, Eugène, 1815-1880","key":"MachelardEugène1815-1880","viafid":"89166685","merge":{"source":"viaf","id":"0ea9351580e7d75545c0c149bd982a9f","type":"document"},"lc":"no2010117826","bav":"adv10891687"} {"version":"2013-07-01T14:07:50Z","_id":"0eb8a7f0e2dd692c7c63e0f0847f40bb","dnb":"117038881","term":"Nörrenberg, C., 1862-1937","key":"NörrenbergC1862-1937","viafid":"10612611","merge":{"source":"viaf","id":"0eb8a7f0e2dd692c7c63e0f0847f40bb","type":"document"},"lc":"nr2003040472"} {"nkc":"jk01093344","version":"2013-07-01T14:07:50Z","_id":"0ebeca200cee3ec7707f30fd921025f5","dnb":"103338594","term":"Plachta, Jindřich, 1899-1951","key":"PlachtaJindřich1899-1951","viafid":"66877206","nlilat":"000106206","merge":{"source":"viaf","id":"0ebeca200cee3ec7707f30fd921025f5","type":"document"},"lc":"nr87000471"} {"nkc":"mzk2007430464","selibr":"44249","version":"2013-07-01T14:07:50Z","_id":"0ec381ef78b87472a39195a120d223ce","dnb":"123891361","term":"Büchsenschütz, B., 1828-1922","key":"BüchsenschützB1828-1922","nlilat":"000466662","viafid":"19762056","merge":{"source":"viaf","id":"0ec381ef78b87472a39195a120d223ce","type":"document"},"lc":"n84806564","bnf":"12395843","bav":"adv12180050"} {"version":"2013-07-01T14:07:50Z","_id":"0ece6c301030863a054d62690594c45c","dnb":"116184442","term":"Bjørnbo, Axel Anthon, 1874-1911","key":"BjørnboAxelAnthon1874-1911","viafid":"12607369","nlilat":"000565910","merge":{"source":"viaf","id":"0ece6c301030863a054d62690594c45c","type":"document"},"lc":"n89631377","bnf":"15335841","bav":"adv10180825"} {"version":"2013-07-01T14:07:50Z","_id":"0ed394ec6506428d2dd5e5f4a3154834","dnb":"116640901","nla":"000036022768","term":"Lacordaire, Théodore, 1801-1870","key":"LacordaireThéodore1801-1870","viafid":"42594135","merge":{"source":"viaf","id":"0ed394ec6506428d2dd5e5f4a3154834","type":"document"},"lc":"n92040532","bnf":"13483831"} {"nkc":"js2008443334","version":"2013-07-01T14:07:50Z","_id":"0ed8e49e715d13cf2a42961776aab666","dnb":"104357347","nla":"000035121260","term":"Timašev, Nikolaj Sergeevič, 1886-1970","key":"TimaševNikolajSergeevič1886-1970","viafid":"44363458","nlilat":"000131503","merge":{"source":"viaf","id":"0ed8e49e715d13cf2a42961776aab666","type":"document"},"lc":"n50012948","bnf":"12298069","bav":"adv11306603"} {"viafid":"175003053","merge":{"source":"viaf","id":"0edbf05dd0d593ce3fdc3c3de16149bb","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0edbf05dd0d593ce3fdc3c3de16149bb","bne":"xx3384826","term":"Pombo, Álvaro 1939- | El héroe de las mansardas de Mansard Alemán","key":"PomboÁlvaro1939-|ElhéroedelasmansardasdeMansardAlemán"} {"nkc":"nlk20000083849","version":"2013-07-01T14:07:50Z","_id":"0ee157a23b92aaa2068f99d7bd1397a7","egaxa":"vtls000081511","dnb":"117691569","term":"Clot, Antoine-Barthélémy, 1793-1868","key":"ClotAntoine-Barthélémy1793-1868","nlilat":"000032555","viafid":"81980325","merge":{"source":"viaf","id":"0ee157a23b92aaa2068f99d7bd1397a7","type":"document"},"lc":"nr92003031","bnf":"12356531","bav":"adv10049373"} {"nkc":"ola2002152597","version":"2013-07-01T14:07:50Z","_id":"0ee69f56297059a0c0aeb34dafdc0a67","dnb":"11865828x","nla":"000035383352","ptbnp":"39123","term":"Benveniste, Émile, 1902-1976","key":"BenvenisteÉmile1902-1976","nlicyr":"000148241","nlilat":"000018742","viafid":"12372277","merge":{"source":"viaf","id":"0ee69f56297059a0c0aeb34dafdc0a67","type":"document"},"lc":"n78096113","bnf":"12292189","bav":"adv10183689"} {"version":"2013-07-01T14:07:50Z","_id":"0eeb4de16481eec3e3f44d7195454b70","dnb":"123065984","term":"Beyens, Eugène, 1855-1934","key":"BeyensEugène1855-1934","viafid":"66558771","nlilat":"000454466","merge":{"source":"viaf","id":"0eeb4de16481eec3e3f44d7195454b70","type":"document"},"lc":"n83131223","bnf":"12436862","bav":"adv10047100"} {"viafid":"179100705","merge":{"source":"viaf","id":"0ef6f7057b84daae59d2ec1234343784","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0ef6f7057b84daae59d2ec1234343784","lc":"n92052984","term":"Pleijel, Agneta, 1940- | Ögon ur en dröm. English","key":"PleijelAgneta1940-|ÖgonurendrömEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"0ef7896b0b6f17042c2a29db13cc3e7e","dnb":"180610783","term":"Constant, Léonard, d. 1610","key":"ConstantLéonardd1610","viafid":"81807326","merge":{"source":"viaf","id":"0ef7896b0b6f17042c2a29db13cc3e7e","type":"document"},"lc":"nr93019262","bnf":"10430708"} {"viafid":"178891954","merge":{"source":"viaf","id":"0ef9becce1ae1422064ccd31b09450e1","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0ef9becce1ae1422064ccd31b09450e1","lc":"no2007003544","term":"Chang, Chʻung-ho, 1914- | Poems. English & Chinese. Selections","key":"ChangChʻung-ho1914-|PoemsEnglish&ChineseSelections"} {"viafid":"181453740","merge":{"source":"viaf","id":"0efdef64f8a8c12cb7ed1e0215ccb376","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0efdef64f8a8c12cb7ed1e0215ccb376","lc":"n83301850","term":"Moisan, Clément, 1933-, Poetry of frontiers","key":"MoisanClément1933-Poetryoffrontiers"} {"version":"2013-07-01T14:07:50Z","_id":"0f01d861478596f9fd5fdd08d9757f1e","dnb":"124968740","term":"Kneżević, Božidar (1862-1905)","key":"KneżevićBožidar(1862-1905)","viafid":"25550737","merge":{"source":"viaf","id":"0f01d861478596f9fd5fdd08d9757f1e","type":"document"},"lc":"n80070545"} {"version":"2013-07-01T14:07:50Z","_id":"0f02ab2bd5aed6d8fcb45b44f8a851fa","term":"Armand, François Huguet, 1699-1765","key":"ArmandFrançoisHuguet1699-1765","viafid":"34765388","merge":{"source":"viaf","id":"0f02ab2bd5aed6d8fcb45b44f8a851fa","type":"document"},"lc":"no2009091501","bnf":"15536062"} {"version":"2013-07-01T14:07:50Z","_id":"0f16ea57d2f23eb9cec9b0e32497d55f","dnb":"116859989","term":"Schönbach, Anton Emanuel (1848-1911)","key":"SchönbachAntonEmanuel(1848-1911)","viafid":"7520092","nlilat":"000504074","merge":{"source":"viaf","id":"0f16ea57d2f23eb9cec9b0e32497d55f","type":"document"},"lc":"n90695936","bnf":"12969025","bav":"adv11990615"} {"version":"2013-07-01T14:07:50Z","_id":"0f189b1655d62698c32a0a6f4d24b425","dnb":"118750267","term":"Rühl, Alfred, 1882-1935","key":"RühlAlfred1882-1935","viafid":"807843","nlilat":"000475766","merge":{"source":"viaf","id":"0f189b1655d62698c32a0a6f4d24b425","type":"document"},"lc":"n85330811"} {"version":"2013-07-01T14:07:50Z","_id":"0f1db990eb0733d2f4bd55c1c0248673","dnb":"119160560","ptbnp":"999191","term":"Svorōnos, Iōannēs N., 1863-1922","key":"SvorōnosIōannēsN1863-1922","viafid":"47565490","merge":{"source":"viaf","id":"0f1db990eb0733d2f4bd55c1c0248673","type":"document"},"lc":"no98082190","bav":"adv12150996"} {"viafid":"181574919","merge":{"source":"viaf","id":"0f21a51ebe1d94c16b4ed5ff9b34117a","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0f21a51ebe1d94c16b4ed5ff9b34117a","lc":"n2001046887","term":"Naṣr Allāh, Ḥasan, 1941- | Mawsūʻat Baʻlabakk","key":"NaṣrAllāhḤasan1941-|MawsūʻatBaʻlabakk"} {"viafid":"211211502","merge":{"source":"viaf","id":"0f28dcd9f3d864d9d64eebf4cef971e8","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0f28dcd9f3d864d9d64eebf4cef971e8","term":"Gébelin, Jacques, 1848-1898","key":"GébelinJacques1848-1898"} {"nkc":"mzk2012721940","version":"2013-07-01T14:07:50Z","_id":"0f2a98ff2bd1e1349ad7fb63e32e8fe0","dnb":"118750240","nla":"000035467680","term":"Rüdiger, Horst, 1908-1984","key":"RüdigerHorst1908-1984","viafid":"36932340","nlilat":"000258002","merge":{"source":"viaf","id":"0f2a98ff2bd1e1349ad7fb63e32e8fe0","type":"document"},"lc":"n50022676","bnf":"12027830","bav":"adv10118122"} {"viafid":"208066292","merge":{"source":"viaf","id":"0f32ffd1320f0941bd4cb0256c5b21aa","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0f32ffd1320f0941bd4cb0256c5b21aa","term":"Lawalrée, André, 1921-2005","key":"LawalréeAndré1921-2005"} {"viafid":"294433420","merge":{"source":"viaf","id":"0f3b876d6c5b78b863089e108eefd056","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0f3b876d6c5b78b863089e108eefd056","lc":"n86808350","term":"Alemany y Bolufer, José, 1866-1934","key":"AlemanyyBoluferJosé1866-1934"} {"nkc":"jn19981002228","selibr":"97153","version":"2013-07-01T14:07:50Z","_id":"0f4bb448bd75b98aeb542937c17c5438","bne":"xx946183","dnb":"11875839x","swnl":"vtls003590895","nla":"000036541692","term":"Tjutčev, Fedor Ivanovič, 1803-1873","key":"TjutčevFedorIvanovič1803-1873","viafid":"95260021","nlilat":"000557466","nlicyr":"000157136","merge":{"source":"viaf","id":"0f4bb448bd75b98aeb542937c17c5438","type":"document"},"lc":"n50047826","bnf":"11990391","bav":"adv12016709"} {"version":"2013-07-01T14:07:50Z","_id":"0f6141133fb05a4a763e24c8e8a212a6","nla":"000036552511","term":"Fahr-Becker, Gabriele, 1946- | Barcelona, Antoni Gaudí y Corn'et. English","key":"Fahr-BeckerGabriele1946-|BarcelonaAntoniGaudíyCorn'etEnglish","viafid":"181040822","merge":{"source":"viaf","id":"0f6141133fb05a4a763e24c8e8a212a6","type":"document"},"lc":"n82053834"} {"nkc":"jn19990210590","selibr":"293103","version":"2013-07-01T14:07:50Z","_id":"0f6d922721c3daafa8d40b865cb72b9c","bne":"xx1722259","dnb":"119072343","ptbnp":"264159","term":"Strugackij, Boris Natanovič, 1933-2012","key":"StrugackijBorisNatanovič1933-2012","nlicyr":"000156768","viafid":"97139204","merge":{"source":"viaf","id":"0f6d922721c3daafa8d40b865cb72b9c","type":"document"},"lc":"n79105865","bnf":"11925679"} {"version":"2013-07-01T14:07:50Z","_id":"0f710128fe92cfda5b058bc4b2d69d87","nla":"000036518953","term":"Adriani, Götz, 1940- | Paul Cézanne, Aquarelle. English","key":"AdrianiGötz1940-|PaulCézanneAquarelleEnglish","viafid":"186709920","merge":{"source":"viaf","id":"0f710128fe92cfda5b058bc4b2d69d87","type":"document"},"lc":"n83008816"} {"nkc":"ola2008481222","version":"2013-07-01T14:07:50Z","_id":"0f73ceb2078943e769d2de728592b1f4","dnb":"132365820","ptbnp":"456620","term":"Berthier, Guillaume François, 1704-1782","key":"BerthierGuillaumeFrançois1704-1782","viafid":"32117071","merge":{"source":"viaf","id":"0f73ceb2078943e769d2de728592b1f4","type":"document"},"lc":"n81092459","bnf":"12589868","bav":"adv10291716"} {"nkc":"jn20000720118","version":"2013-07-01T14:07:50Z","_id":"0f761b580a31b7f53cad15a9ecc6f0da","dnb":"118776231","nla":"000036563138","term":"Joffre, Joseph Jacques Césaire, 1852-1931","key":"JoffreJosephJacquesCésaire1852-1931","viafid":"56648875","nlilat":"000481145","merge":{"source":"viaf","id":"0f761b580a31b7f53cad15a9ecc6f0da","type":"document"},"lc":"n86069973","bnf":"12159258","bav":"adv10215500"} {"nkc":"mzk2012709563","version":"2013-07-01T14:07:50Z","_id":"0f8077efb18866a5e285773bb2fcf111","bne":"xx877270","dnb":"118659456","term":"Bouchardon, Edmé, 1698-1762","key":"BouchardonEdmé1698-1762","viafid":"64206515","merge":{"source":"viaf","id":"0f8077efb18866a5e285773bb2fcf111","type":"document"},"jpg":"500024658","lc":"nr99034050","bnf":"14035404","bav":"adv10138997"} {"nkc":"mzk2009511495","version":"2013-07-01T14:07:50Z","_id":"0f87b9aad4ab592431c5cef28a9cc7de","dnb":"172309549","term":"Pérau, Gabriel Louis Calabre, 1700-1767","key":"PérauGabrielLouisCalabre1700-1767","nlilat":"000468017","viafid":"12313425","merge":{"source":"viaf","id":"0f87b9aad4ab592431c5cef28a9cc7de","type":"document"},"lc":"n85049189","bnf":"11919082","bav":"adv11037621"} {"version":"2013-07-01T14:07:50Z","_id":"0f8ca5164cd05aedeb41e80a7ffbd6b6","dnb":"120953986","term":"Dubos, Charles-François, 1661-1724","key":"DubosCharles-François1661-1724","viafid":"15613694","merge":{"source":"viaf","id":"0f8ca5164cd05aedeb41e80a7ffbd6b6","type":"document"},"bnf":"12927494","bav":"adv10202532"} {"version":"2013-07-01T14:07:50Z","_id":"0f8da0813bbc2ba6d1e24423f01b52d8","dnb":"300078285","nla":"000035619115","term":"Indy, Vincent d' 1851-1931 Symphonie sur un chant montagnard français Op. 25","key":"IndyVincentd'1851-1931SymphoniesurunchantmontagnardfrançaisOp25","viafid":"183500801","merge":{"source":"viaf","id":"0f8da0813bbc2ba6d1e24423f01b52d8","type":"document"},"lc":"n85006601","bnf":"13913754"} {"nkc":"xx0003107","version":"2013-07-01T14:07:50Z","_id":"0f8e9a11d6dfad11b27a6262d14c1420","bne":"xx1008040","dnb":"128414103","nla":"000035443977","ptbnp":"134818","term":"Čakovskij, Aleksandr Borisovič, 1913-1994","key":"ČakovskijAleksandrBorisovič1913-1994","nlicyr":"000209302","viafid":"99145990","merge":{"source":"viaf","id":"0f8e9a11d6dfad11b27a6262d14c1420","type":"document"},"lc":"n50060515","bnf":"13480284"} {"viafid":"175517916","merge":{"source":"viaf","id":"0f9465c2861b030c5eeb868d0d76cab5","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0f9465c2861b030c5eeb868d0d76cab5","lc":"n2001024737","term":"Riesz, János, 1941- | Europäisch-afrikanische Literaturbeziehungen","key":"RieszJános1941-|Europäisch-afrikanischeLiteraturbeziehungen"} {"nliara":"000002606","selibr":"33826","version":"2013-07-01T14:07:50Z","_id":"0f94d73891d7e410ff0301b67bb100ee","egaxa":"vtls001583788","dnb":"118867989","term":"Subkī, Tāj al-Dīn ʻAbd al-Wahhāb ibn ʻAlī, ca. 1327-1370","key":"SubkīTājal-DīnʻAbdal-WahhābibnʻAlīca1327-1370","nlilat":"000459542","viafid":"40175990","merge":{"source":"viaf","id":"0f94d73891d7e410ff0301b67bb100ee","type":"document"},"lc":"n84020872","bav":"adv10036315"} {"viafid":"286070985","merge":{"source":"viaf","id":"0f96e3bab7037903d2ef43db82d1b1c8","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0f96e3bab7037903d2ef43db82d1b1c8","term":"Büttgenbach, Franz, 1832-1900","key":"BüttgenbachFranz1832-1900"} {"nkc":"js20020812324","version":"2013-07-01T14:07:50Z","_id":"0f985a988663c1d2387804679a6207fe","dnb":"118947362","term":"Kranjec, Miško, 1908-1983","key":"KranjecMiško1908-1983","viafid":"68989420","merge":{"source":"viaf","id":"0f985a988663c1d2387804679a6207fe","type":"document"},"lc":"n84045929","bnf":"12275878"} {"viafid":"98747924","merge":{"source":"viaf","id":"0f99c0eaaf256ca1b160bd46482423e9","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0f99c0eaaf256ca1b160bd46482423e9","bnf":"10421220","term":"Valérius, Hubert 1820-1897","key":"ValériusHubert1820-1897"} {"viafid":"179865357","merge":{"source":"viaf","id":"0f9a3dbde3a433ec1213bae468035c1e","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0f9a3dbde3a433ec1213bae468035c1e","lc":"n85814842","term":"Brongersma, L. D., 1907-1994., (Leo Daniël), Animal world of Netherlands New Guinea","key":"BrongersmaLD1907-1994(LeoDaniël)AnimalworldofNetherlandsNewGuinea"} {"nkc":"mzk2011652736","version":"2013-07-01T14:07:50Z","_id":"0f9c66ef4387f951cb8eb750ab18c18f","bne":"xx1759164","dnb":"11615232x","term":"Döbereiner, Christian, 1874-1961","key":"DöbereinerChristian1874-1961","nlilat":"000553202","viafid":"25346194","merge":{"source":"viaf","id":"0f9c66ef4387f951cb8eb750ab18c18f","type":"document"},"lc":"n85023247","bav":"adv11536525"} {"nkc":"jx20050601011","selibr":"137272","version":"2013-07-01T14:07:50Z","_id":"0f9d2b40874b458272fba9aa5732ad11","bne":"xx893780","dnb":"118947370","nla":"000035426996","ptbnp":"38794","term":"Poliakov, Léon, 1910-1997","key":"PoliakovLéon1910-1997","viafid":"9852041","nlilat":"000106612","nlicyr":"000155288","merge":{"source":"viaf","id":"0f9d2b40874b458272fba9aa5732ad11","type":"document"},"lc":"n50020456","bnf":"11920171","bav":"adv12061671"} {"nkc":"mzk2009510727","version":"2013-07-01T14:07:50Z","_id":"0fa30fcbad5199c59a33885b0a93cbed","dnb":"116178124","nla":"000035789370","ptbnp":"76551","term":"Pichot, Amédée, 1795-1877","key":"PichotAmédée1795-1877","viafid":"59117355","nlilat":"000105593","merge":{"source":"viaf","id":"0fa30fcbad5199c59a33885b0a93cbed","type":"document"},"lc":"n85800955","bnf":"12127349","bav":"adv11088462"} {"nkc":"mzk2009511164","selibr":"258735","version":"2013-07-01T14:07:50Z","_id":"0fa4f1af66b69d2e1382d32abcfba43b","dnb":"117141054","term":"Schütz, Johann Jacob, 1640-1690","key":"SchützJohannJacob1640-1690","viafid":"52459463","merge":{"source":"viaf","id":"0fa4f1af66b69d2e1382d32abcfba43b","type":"document"},"lc":"nr2003014150"} {"nkc":"skuk0004128","selibr":"213223","version":"2013-07-01T14:07:50Z","_id":"0fa55f17c77ac3243c5691b7fa058cea","dnb":"104273895","nla":"000036297614","ptbnp":"119312","term":"Millot, Claude-François-Xavier, 1726-1785","key":"MillotClaude-François-Xavier1726-1785","nlilat":"000473668","viafid":"22182699","merge":{"source":"viaf","id":"0fa55f17c77ac3243c5691b7fa058cea","type":"document"},"lc":"n85253488","bnf":"12171118","bav":"adv10973209"} {"nkc":"jn19981001367","selibr":"240574","version":"2013-07-01T14:07:50Z","_id":"0fa5d44349d22c73185e1c60d07ced1d","bne":"xx954979","dnb":"118699156","nla":"000035461431","ptbnp":"61961","term":"Guimarães Rosa, João, 1908-1967","key":"GuimarãesRosaJoão1908-1967","viafid":"59088739","nlilat":"000113028","merge":{"source":"viaf","id":"0fa5d44349d22c73185e1c60d07ced1d","type":"document"},"lc":"n79095563","bnf":"11922577"} {"viafid":"72161427","merge":{"source":"viaf","id":"0facb0ff43ccbcd007efe10fdc821293","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"0facb0ff43ccbcd007efe10fdc821293","dnb":"117053481","term":"Bücking, H., 1851-1932","key":"BückingH1851-1932"} {"version":"2013-07-01T14:07:50Z","_id":"0fbaf55e356396606b528bdd74e92323","dnb":"102714436","term":"Darmois, Eugène (1884-1958)","key":"DarmoisEugène(1884-1958)","viafid":"27215136","nlilat":"000037031","merge":{"source":"viaf","id":"0fbaf55e356396606b528bdd74e92323","type":"document"},"bnf":"13474878"} {"version":"2013-07-01T14:07:50Z","_id":"0fc03de01de143c90044f51bfce7ac7c","dnb":"11931942x","term":"Porée, Charles, 1872-1940","key":"PoréeCharles1872-1940","viafid":"34508165","nlilat":"000525850","merge":{"source":"viaf","id":"0fc03de01de143c90044f51bfce7ac7c","type":"document"},"lc":"nr91042385","bnf":"12221244","bav":"adv11083383"} {"nkc":"uk2007353640","version":"2013-07-01T14:07:50Z","_id":"0fc38da6be3afcc7194bca75c4917b45","dnb":"117661287","nla":"000036001657","ptbnp":"1199877","term":"Duméril, André-Marie-Constant, 1774-1860","key":"DumérilAndré-Marie-Constant1774-1860","viafid":"71508982","nlilat":"000041337","merge":{"source":"viaf","id":"0fc38da6be3afcc7194bca75c4917b45","type":"document"},"lc":"n86863676","bnf":"12566453","bav":"adv10129428"} {"nkc":"nlk20010095053","version":"2013-07-01T14:07:50Z","_id":"0fc4948567c1fc67abef00a68113a57c","dnb":"1023569116","term":"Laboulbène, Alexandre (1825-1898)","key":"LaboulbèneAlexandre(1825-1898)","viafid":"84820815","merge":{"source":"viaf","id":"0fc4948567c1fc67abef00a68113a57c","type":"document"},"lc":"no2012103707","bnf":"10618555"} {"version":"2013-07-01T14:07:50Z","_id":"0fd289dd6da72599ca54dee1506ebf42","dnb":"115829814","term":"Dralet, Étienne François (1754-1844)","key":"DraletÉtienneFrançois(1754-1844)","viafid":"57353451","merge":{"source":"viaf","id":"0fd289dd6da72599ca54dee1506ebf42","type":"document"},"lc":"n86004989","bnf":"15317647"} {"version":"2013-07-01T14:07:50Z","_id":"0fe7c906dfb08c96f7b4cb00ccd591f7","dnb":"116079576","term":"Perles, Félix 1874-1933","key":"PerlesFélix1874-1933","viafid":"32324176","nlilat":"000104695","merge":{"source":"viaf","id":"0fe7c906dfb08c96f7b4cb00ccd591f7","type":"document"},"lc":"nr95008768","bnf":"15668516","bav":"adv11002914"} {"nkc":"mzk2003169557","selibr":"185310","version":"2013-07-01T14:07:50Z","_id":"0ffc6261c89fbc37dee3c1a4ad4c7e66","dnb":"118994050","nla":"000036575015","term":"Erdős, Paul, 1913-1996","key":"ErdősPaul1913-1996","viafid":"51768730","nlilat":"000044035","merge":{"source":"viaf","id":"0ffc6261c89fbc37dee3c1a4ad4c7e66","type":"document"},"lc":"n50010022","bnf":"12371592"} {"nkc":"kv2009520740","version":"2013-07-01T14:07:50Z","_id":"1001463adc0d5335f15f13f7faff80a7","dnb":"118595997","term":"Potonié, Robert, 1889-1974","key":"PotoniéRobert1889-1974","viafid":"27322147","merge":{"source":"viaf","id":"1001463adc0d5335f15f13f7faff80a7","type":"document"},"bnf":"14636361"} {"nkc":"mzk2009511691","version":"2013-07-01T14:07:50Z","_id":"100317d03b6f9f53bb9ca68b6281f364","dnb":"124636853","term":"Giannettasio, Niccolò Partenio, 1648-1715","key":"GiannettasioNiccolòPartenio1648-1715","viafid":"54292153","merge":{"source":"viaf","id":"100317d03b6f9f53bb9ca68b6281f364","type":"document"},"bnf":"13325672","bav":"adv10244636"} {"version":"2013-07-01T14:07:50Z","_id":"100946de3226d9a033f1f95880bd9417","dnb":"128885998","nla":"000035389871","term":"Raguenet, François, 1660?-1722","key":"RaguenetFrançois1660?-1722","nlilat":"000413129","viafid":"12314051","merge":{"source":"viaf","id":"100946de3226d9a033f1f95880bd9417","type":"document"},"lc":"n50069180","bnf":"11921031","bav":"adv11097435"} {"version":"2013-07-01T14:07:50Z","_id":"10139278c5bae5ff15af953229f4619d","dnb":"132034875","term":"Danjou, Félix (1812-1866)","key":"DanjouFélix(1812-1866)","viafid":"61664547","merge":{"source":"viaf","id":"10139278c5bae5ff15af953229f4619d","type":"document"},"bnf":"12567375","bav":"adv10063447"} {"nkc":"mzk2009510591","version":"2013-07-01T14:07:50Z","_id":"101a7d3d8ae73468235147c98a5485e9","dnb":"102457093","ptbnp":"1401112","term":"Coste, Jean-François, 1741-1819","key":"CosteJean-François1741-1819","nlilat":"000469415","viafid":"9893183","merge":{"source":"viaf","id":"101a7d3d8ae73468235147c98a5485e9","type":"document"},"lc":"n85099522","bnf":"12189204"} {"version":"2013-07-01T14:07:50Z","_id":"101cbdb6de587b8195299c65963e0f9a","nla":"000035568546","term":"Todd, Emmanuel, 1951- | Troisième planète. English","key":"ToddEmmanuel1951-|TroisièmeplanèteEnglish","viafid":"182275228","merge":{"source":"viaf","id":"101cbdb6de587b8195299c65963e0f9a","type":"document"},"lc":"n84215646"} {"version":"2013-07-01T14:07:50Z","_id":"1024f72043e91daae2482ec0376c4587","bne":"xx960081","dnb":"121133125","term":"Ynduráin, F. J. 1940-2008","key":"YnduráinFJ1940-2008","viafid":"73918013","merge":{"source":"viaf","id":"1024f72043e91daae2482ec0376c4587","type":"document"},"lc":"n82215939","bnf":"12298455"} {"nkc":"kup20030000015349","selibr":"341657","version":"2013-07-01T14:07:50Z","_id":"102812bcdbcbc47376e41be4a339a1fb","bne":"xx888031","dnb":"118981102","nla":"000035856344","term":"Chraïbi, Driss, 1926-2007","key":"ChraïbiDriss1926-2007","nlilat":"000031692","viafid":"51687399","merge":{"source":"viaf","id":"102812bcdbcbc47376e41be4a339a1fb","type":"document"},"lc":"n84043146","bnf":"11896803"} {"nkc":"jn19990210194","_id":"102936ce534a74681de740a0dee9de06","egaxa":"vtls000890085","bne":"xx950248","dnb":"118529269","nla":"000036555544","term":"Ėrenburg, Ilʹja Grigorʹevič, 1891-1967","key":"ĖrenburgIlʹjaGrigorʹevič1891-1967","viafid":"40169930","nliheb":"000228544","merge":{"source":"viaf","id":"102936ce534a74681de740a0dee9de06","type":"document"},"bnf":"11901820","selibr":"184634","version":"2013-07-01T14:07:50Z","swnl":"vtls000075176","nlicyr":"000161054","nlilat":"000044049","lc":"n50030508"} {"version":"2013-07-01T14:07:50Z","_id":"10298c8a8ece765eacc88c4b8ad9d5db","dnb":"137943989","ptbnp":"66133","term":"Outes, Félix F. 1878-1939","key":"OutesFélixF1878-1939","viafid":"72910328","nlilat":"000487990","merge":{"source":"viaf","id":"10298c8a8ece765eacc88c4b8ad9d5db","type":"document"},"lc":"n87814839"} {"version":"2013-07-01T14:07:50Z","_id":"102ab9f93ebbb24eb00eeed562b75a82","dnb":"1023958287","term":"Grützmacher, Georg, 1866-1939","key":"GrützmacherGeorg1866-1939","viafid":"42234899","merge":{"source":"viaf","id":"102ab9f93ebbb24eb00eeed562b75a82","type":"document"},"bav":"adv10211809"} {"version":"2013-07-01T14:07:50Z","_id":"1030d39616cd5bb62adbf2ea36973493","dnb":"117657085","term":"Sessa, Karl Borromäus Alexander, 1786-1813","key":"SessaKarlBorromäusAlexander1786-1813","viafid":"57398018","nlilat":"000335086","merge":{"source":"viaf","id":"1030d39616cd5bb62adbf2ea36973493","type":"document"},"lc":"no2002059298"} {"viafid":"202306364","merge":{"source":"viaf","id":"1037a976e077f372b49c3e51ac7dd9c4","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"1037a976e077f372b49c3e51ac7dd9c4","term":"Béclard, Ferdinand, 1848-1897","key":"BéclardFerdinand1848-1897"} {"nkc":"ola2008452289","version":"2013-07-01T14:07:50Z","_id":"10396db75e279b62c46ca46dc1bd619c","dnb":"118657305","term":"Barnes, Robert, 1495?–1540","key":"BarnesRobert1495?–1540","viafid":"74646733","merge":{"source":"viaf","id":"10396db75e279b62c46ca46dc1bd619c","type":"document"},"lc":"n79139058","bnf":"16177672","bav":"adv10286587"} {"version":"2013-07-01T14:07:50Z","_id":"103e02fb4c3fd528a578f87cd54656a2","bne":"xx1291972","dnb":"11860208x","term":"Rötscher, Heinrich Theodor, 1803-1871","key":"RötscherHeinrichTheodor1803-1871","viafid":"69722312","nlilat":"000115133","merge":{"source":"viaf","id":"103e02fb4c3fd528a578f87cd54656a2","type":"document"},"lc":"n82255732"} {"version":"2013-07-01T14:07:50Z","_id":"104682fa9fad80d30396f5cc8dec9e8b","bne":"xx848487","dnb":"118780840","ptbnp":"151201","term":"De Luzán, Ignacio, 1702-1754","key":"DeLuzánIgnacio1702-1754","viafid":"9889846","merge":{"source":"viaf","id":"104682fa9fad80d30396f5cc8dec9e8b","type":"document"},"lc":"n92068023","bnf":"12174727","bav":"adv10913221"} {"version":"2013-07-01T14:07:50Z","_id":"1051e2004526eeccb98b67b35c37bd58","dnb":"104377526","term":"De Smet, François Joseph, 1771-1854","key":"DeSmetFrançoisJoseph1771-1854","viafid":"74288231","merge":{"source":"viaf","id":"1051e2004526eeccb98b67b35c37bd58","type":"document"},"lc":"no2009122108"} {"selibr":"334338","version":"2013-07-01T14:07:50Z","_id":"1053d5a5708a914861d36d2f22b601e3","term":"Bourg, Edme-Théodore, 1785-1852","key":"BourgEdme-Théodore1785-1852","viafid":"43510090","merge":{"source":"viaf","id":"1053d5a5708a914861d36d2f22b601e3","type":"document"},"lc":"n93029999","bnf":"13007660"} {"nkc":"xx0033966","selibr":"345117","version":"2013-07-01T14:07:50Z","_id":"10568eab636f8a0186c12e3f0774758d","bne":"xx959312","dnb":"152102094","nla":"000035544312","term":"Tétry, Andrée, 1907-1992","key":"TétryAndrée1907-1992","viafid":"92715419","merge":{"source":"viaf","id":"10568eab636f8a0186c12e3f0774758d","type":"document"},"lc":"n83239551","bnf":"11926277"} {"nliara":"000002270","selibr":"34577","version":"2013-07-01T14:07:50Z","_id":"1061d2e161a871e2117a97ade266e66d","egaxa":"vtls000837588","dnb":"102412804","term":"al-Khaṭīb al-Baghdādī, Abū Bakr Aḥmad ibn ʻAlī, 1002-1071","key":"al-Khaṭībal-BaghdādīAbūBakrAḥmadibnʻAlī1002-1071","nlilat":"000472941","viafid":"69222089","merge":{"source":"viaf","id":"1061d2e161a871e2117a97ade266e66d","type":"document"},"lc":"n85231280","bnf":"15083328"} {"nkc":"jn20030211012","version":"2013-07-01T14:07:50Z","_id":"10655fda3036f8db9223654e6f263811","dnb":"124663079","nla":"000036550465","term":"Sinai, Ya. G., 1935-, (I︠A︡kov Grigorʹevich)","key":"SinaiYaG1935-(I︠A︡kovGrigorʹevich)","viafid":"34589101","merge":{"source":"viaf","id":"10655fda3036f8db9223654e6f263811","type":"document"},"lc":"n81032623","bnf":"12942333"} {"nkc":"jx20041207003","version":"2013-07-01T14:07:50Z","_id":"106b7e07eb7827c7d64379eea6963a85","dnb":"118790560","term":"Petković-Dis, Vladislav, 1880-1917","key":"Petković-DisVladislav1880-1917","viafid":"5076277","merge":{"source":"viaf","id":"106b7e07eb7827c7d64379eea6963a85","type":"document"},"lc":"no90005661","bnf":"13322185"} {"viafid":"61418701","merge":{"source":"viaf","id":"1071ff31eb699c7503c8433f63bef173","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"1071ff31eb699c7503c8433f63bef173","lc":"nr93028472","term":"Nikitin, Vasiliĭ Nikitich, 1737-1809","key":"NikitinVasiliĭNikitich1737-1809"} {"version":"2013-07-01T14:07:50Z","_id":"1078a85e038b49636c6d028de6846ce3","dnb":"12112651x","term":"Röer, Edward, 1805-1866","key":"RöerEdward1805-1866","viafid":"90777453","nlilat":"000292041","merge":{"source":"viaf","id":"1078a85e038b49636c6d028de6846ce3","type":"document"},"lc":"n88634702"} {"viafid":"9829491","selibr":"285404","merge":{"source":"viaf","id":"107c3d1089608516341f07af70c2dc83","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"107c3d1089608516341f07af70c2dc83","term":"Lundström, Ingeborg, 1878-1976","key":"LundströmIngeborg1878-1976"} {"viafid":"209066983","merge":{"source":"viaf","id":"107f3499ac5e6c0a23fe2c1b5d2c79b5","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"107f3499ac5e6c0a23fe2c1b5d2c79b5","term":"Létiévant, Jean-Joseph-Émile, 1830-1884","key":"LétiévantJean-Joseph-Émile1830-1884"} {"selibr":"88805","version":"2013-07-01T14:07:50Z","_id":"108276aaa6a548c2d02eaf03200196dd","dnb":"118641891","nla":"000035444709","term":"Récamier, Jeanne Françoise Julie Adélaïde Bernard, 1777-1849","key":"RécamierJeanneFrançoiseJulieAdélaïdeBernard1777-1849","viafid":"36967757","nlilat":"000110081","merge":{"source":"viaf","id":"108276aaa6a548c2d02eaf03200196dd","type":"document"},"lc":"n50046071","bnf":"12215767","bav":"adv11163421"} {"viafid":"186469969","merge":{"source":"viaf","id":"10848be81c138b9062b260910e15af44","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"10848be81c138b9062b260910e15af44","lc":"n2008031582","term":"Sicking, Louis, 1966- | Frontières d'outre-mer. English","key":"SickingLouis1966-|Frontièresd'outre-merEnglish"} {"nkc":"jn19990210201","_id":"10969aa6eb4759fd834b1a22b4558381","bne":"xx1074813","dnb":"118686399","nla":"000036299652","ptbnp":"27312","term":"Fedin, Konstantin Aleksandrovič, 1892-1977","key":"FedinKonstantinAleksandrovič1892-1977","viafid":"29533778","merge":{"source":"viaf","id":"10969aa6eb4759fd834b1a22b4558381","type":"document"},"jpg":"500068153","bnf":"11902471","selibr":"186714","version":"2013-07-01T14:07:50Z","nlilat":"000400111","nlicyr":"000157673","lc":"n50001089"} {"version":"2013-07-01T14:07:50Z","_id":"10a01ac8ec2e85f7f93aee1aeaf8fb68","bne":"xx859935","dnb":"126754438","term":"Nádasi, Ferenc, 1893-1966","key":"NádasiFerenc1893-1966","viafid":"122010407","merge":{"source":"viaf","id":"10a01ac8ec2e85f7f93aee1aeaf8fb68","type":"document"},"lc":"n96001595"} {"version":"2013-07-01T14:07:50Z","_id":"10c06350f5bcb4071b269b7f61edc7ab","bne":"xx4838633","dnb":"100057845","nla":"000035725210","term":"De Mirbel, Charles-François Brisseau, 1776-1854","key":"DeMirbelCharles-FrançoisBrisseau1776-1854","nlilat":"000483841","viafid":"17356254","merge":{"source":"viaf","id":"10c06350f5bcb4071b269b7f61edc7ab","type":"document"},"lc":"n86815883","bnf":"13013884"} {"nkc":"jn20000603211","selibr":"191545","version":"2013-07-01T14:07:50Z","_id":"10c90d7301027d9afdaec66dbbf78106","dnb":"12008970x","nla":"000035746019","term":"Jastrun, Mieczysław, 1903-1983","key":"JastrunMieczysław1903-1983","viafid":"66482806","nlilat":"000433300","merge":{"source":"viaf","id":"10c90d7301027d9afdaec66dbbf78106","type":"document"},"lc":"n80159204","bnf":"12032635"} {"nkc":"js20020805294","version":"2013-07-01T14:07:50Z","_id":"10ceb6579f3bff4af2bce2eede39e171","dnb":"119277727","term":"Jorgovanić, Rikard, 1853-1880","key":"JorgovanićRikard1853-1880","viafid":"14762932","merge":{"source":"viaf","id":"10ceb6579f3bff4af2bce2eede39e171","type":"document"},"lc":"nr2003000688","bnf":"11150922"} {"nkc":"jo2003169857","selibr":"314210","version":"2013-07-01T14:07:50Z","_id":"10cebad9e509da3a730ac5a554d666ea","dnb":"117516449","nla":"000035786176","term":"Hénault, Charles-Jean-François, 1685-1770","key":"HénaultCharles-Jean-François1685-1770","viafid":"118096","nlilat":"000527278","merge":{"source":"viaf","id":"10cebad9e509da3a730ac5a554d666ea","type":"document"},"lc":"nr93016004","bnf":"12515502","bav":"adv10214038"} {"nkc":"mzk2009510387","selibr":"200683","version":"2013-07-01T14:07:50Z","_id":"10d406dbad0f5f6d3ab67d7e1090054d","bne":"xx1459172","dnb":"100278884","term":"De Forbonnais, François Véron Duverger, 1722-1800","key":"DeForbonnaisFrançoisVéronDuverger1722-1800","viafid":"46796949","nlilat":"000498699","merge":{"source":"viaf","id":"10d406dbad0f5f6d3ab67d7e1090054d","type":"document"},"lc":"n88680604","bnf":"12141360","bav":"adv11239873"} {"nkc":"jn19990007272","selibr":"312868","version":"2013-07-01T14:07:50Z","_id":"10d63d3de97935150b6044af291c6ff8","dnb":"118603957","nla":"000036536008","term":"Rühmkorf, Peter, 1929-2008","key":"RühmkorfPeter1929-2008","viafid":"73861894","nlilat":"000405188","merge":{"source":"viaf","id":"10d63d3de97935150b6044af291c6ff8","type":"document"},"lc":"n50022486","bnf":"11953862"} {"nkc":"nlk20010092510","version":"2013-07-01T14:07:50Z","_id":"10d9cb8c7501eaf822ca50296a7cd5fd","dnb":"129731811","nla":"000035876824","ptbnp":"1402088","term":"Sénac, Jean-Baptiste, 1693-1770","key":"SénacJean-Baptiste1693-1770","viafid":"71540730","nlilat":"000120304","merge":{"source":"viaf","id":"10d9cb8c7501eaf822ca50296a7cd5fd","type":"document"},"lc":"n86811220","bnf":"13475545","bav":"adv11209849"} {"nkc":"ola2007364628","selibr":"346109","version":"2013-07-01T14:07:50Z","_id":"10ded25f702630bc82b9800396f96cd5","bne":"xx1309781","dnb":"104234059","swnl":"vtls002162556","nla":"000035883578","term":"De Lalande, Joseph Jérôme Le Français, 1732-1807","key":"DeLalandeJosephJérômeLeFrançais1732-1807","viafid":"95196947","nlilat":"000317402","merge":{"source":"viaf","id":"10ded25f702630bc82b9800396f96cd5","type":"document"},"jpg":"500220946","lc":"n81143855","bnf":"12012398","bav":"adv10022875"} {"nkc":"skuk0004230","selibr":"79061","version":"2013-07-01T14:07:50Z","_id":"10e212b2ab8f662d8b6e3b81106f2476","dnb":"118585045","swnl":"vtls000148090","term":"Von Müller, Johannes, 1752-1809","key":"VonMüllerJohannes1752-1809","viafid":"89266014","nlilat":"000097280","merge":{"source":"viaf","id":"10e212b2ab8f662d8b6e3b81106f2476","type":"document"},"lc":"n85383155","bnf":"12565364","bav":"adv10198782"} {"nkc":"xx0157726","version":"2013-07-01T14:07:50Z","_id":"10e4d6033cd06328a9dcecd8ea47d334","dnb":"188352910","term":"Chavance, René, b. 1879","key":"ChavanceRenéb1879","viafid":"17341597","nlilat":"000496780","merge":{"source":"viaf","id":"10e4d6033cd06328a9dcecd8ea47d334","type":"document"},"lc":"n88614786","bnf":"12596595"} {"version":"2013-07-01T14:07:50Z","_id":"10f27bba6ceb75e1703adfed6fc843d6","bne":"xx1121458","dnb":"121363155","ptbnp":"818799","term":"Sánchez Pérez, José Augusto, 1882-1958","key":"SánchezPérezJoséAugusto1882-1958","nlilat":"000129201","viafid":"114927865","merge":{"source":"viaf","id":"10f27bba6ceb75e1703adfed6fc843d6","type":"document"},"lc":"n84805690","bav":"adv12014594"} {"viafid":"177461909","merge":{"source":"viaf","id":"110ce361b4232db54d5d2faf97d92b3b","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"110ce361b4232db54d5d2faf97d92b3b","lc":"n88152932","term":"Landau, Yoan D., 1938- | Identification et commande de systèmes. English","key":"LandauYoanD1938-|IdentificationetcommandedesystèmesEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"11118dadcc1b16a5e60cc6386f1281cc","dnb":"116531428","term":"Erdmannsdörffer, Bernhard, 1833-1901","key":"ErdmannsdörfferBernhard1833-1901","nlilat":"000388323","viafid":"30290221","merge":{"source":"viaf","id":"11118dadcc1b16a5e60cc6386f1281cc","type":"document"},"bav":"adv10166222"} {"nkc":"nlk20010101064","version":"2013-07-01T14:07:50Z","_id":"1115e2bae72c8132130fb4d7683af0d4","dnb":"142391883","ptbnp":"1197392","term":"Le Dentu, Jean-François-Auguste, 1841-1926","key":"LeDentuJean-François-Auguste1841-1926","viafid":"41639981","merge":{"source":"viaf","id":"1115e2bae72c8132130fb4d7683af0d4","type":"document"},"lc":"no2008018145","bnf":"12981138"} {"nkc":"jk01051864","version":"2013-07-01T14:07:50Z","_id":"1116f1357dc5ad779854b99b750730e8","dnb":"117134961","term":"Jireček, Hermenegild, 1827-1909","key":"JirečekHermenegild1827-1909","viafid":"54918137","merge":{"source":"viaf","id":"1116f1357dc5ad779854b99b750730e8","type":"document"},"lc":"n92038864","bav":"adv10025869"} {"viafid":"116475869","merge":{"source":"viaf","id":"111d4f46ab21312b9f4d7b2333b84172","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"111d4f46ab21312b9f4d7b2333b84172","bnf":"15325237","term":"Gueymard, Émile, 1788-1869","key":"GueymardÉmile1788-1869"} {"version":"2013-07-01T14:07:50Z","_id":"111f6022aba15f84339277b8845df023","dnb":"119153246","nla":"000036392225","term":"Kavvadías, Níkos, 1910-1975","key":"KavvadíasNíkos1910-1975","viafid":"59116018","merge":{"source":"viaf","id":"111f6022aba15f84339277b8845df023","type":"document"},"lc":"n83049445","bnf":"12120274"} {"version":"2013-07-01T14:07:50Z","_id":"1126d7c539d1fd3ac7f02a3a3bdda42f","dnb":"118986090","nla":"000035731624","term":"Kampouroglous, Dēmētrios Grēgoriou, 1852-1942","key":"KampouroglousDēmētriosGrēgoriou1852-1942","viafid":"37098092","merge":{"source":"viaf","id":"1126d7c539d1fd3ac7f02a3a3bdda42f","type":"document"},"lc":"n82106117","bnf":"13756621","bav":"adv11991433"} {"version":"2013-07-01T14:07:50Z","_id":"112d183ddc5577efe6293cf6363ee4de","dnb":"102254079","nla":"000035228165","term":"Champion, Édouard (1882-1938)","key":"ChampionÉdouard(1882-1938)","nlilat":"000475711","viafid":"12368538","merge":{"source":"viaf","id":"112d183ddc5577efe6293cf6363ee4de","type":"document"},"lc":"n85327696","bnf":"12276364","bav":"adv10076516"} {"version":"2013-07-01T14:07:50Z","_id":"112f9e648c86cf6bb5bd057d857c312e","dnb":"116893389","nla":"000035155269","term":"Grünwedel, Albert, 1856-1935","key":"GrünwedelAlbert1856-1935","nlilat":"000247332","viafid":"74071156","merge":{"source":"viaf","id":"112f9e648c86cf6bb5bd057d857c312e","type":"document"},"lc":"n81082991","bnf":"14437728","bav":"adv10285053"} {"viafid":"181572703","merge":{"source":"viaf","id":"1133c08a712378785f3cc04fbb48afab","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"1133c08a712378785f3cc04fbb48afab","lc":"n99834152","term":"Chemin-Dupontès, J.-B., 1760 or 61-1852?, (Jean-Baptiste), Morality of the sans-culottes of every age, sex, country, and condition, or, The republican gospel","key":"Chemin-DupontèsJ-B1760or61-1852?(Jean-Baptiste)Moralityofthesans-culottesofeveryagesexcountryandconditionorTherepublicangospel"} {"selibr":"317874","version":"2013-07-01T14:07:50Z","_id":"1134c97ceab8aad8e366a0ac7fd02f98","dnb":"100371922","term":"Lycklama à Nyeholt, Marcus, 1573-1625","key":"LycklamaàNyeholtMarcus1573-1625","viafid":"69274628","merge":{"source":"viaf","id":"1134c97ceab8aad8e366a0ac7fd02f98","type":"document"},"bav":"adv10913495"} {"nkc":"jo20000073713","version":"2013-07-01T14:07:50Z","_id":"11367ab8534652bfd099be91b9314534","bne":"xx825055","dnb":"122613007","nla":"000035749438","ptbnp":"85379","term":"De Solís, Antonio, 1610-1686","key":"DeSolísAntonio1610-1686","viafid":"73860294","nlilat":"000448890","merge":{"source":"viaf","id":"11367ab8534652bfd099be91b9314534","type":"document"},"jpg":"500040516","lc":"n82157906","bnf":"11925109","bav":"adv11246673"} {"viafid":"182124104","merge":{"source":"viaf","id":"11372ecbaf238474979fa728e902f917","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"11372ecbaf238474979fa728e902f917","lc":"no2006108537","term":"Procházková, Petra, 1964- | Aluminium queen. French","key":"ProcházkováPetra1964-|AluminiumqueenFrench"} {"nkc":"ola2002157572","selibr":"101288","version":"2013-07-01T14:07:50Z","_id":"1137548b1b4cc1776c31724045022c2a","dnb":"118630709","nla":"000035248582","ptbnp":"268478","term":"Weizmann, Chai͏̈m, 1874-1952","key":"WeizmannChai͏̈m1874-1952","viafid":"61778920","nlilat":"000140867","nliheb":"000209413","merge":{"source":"viaf","id":"1137548b1b4cc1776c31724045022c2a","type":"document"},"lc":"n50003498","bnf":"14509036","bav":"adv11218889"} {"version":"2013-07-01T14:07:50Z","_id":"114c59e6c1ebbab4e0631c937da0db71","dnb":"117601330","term":"Morand, Sauveur-François, 1697-1773","key":"MorandSauveur-François1697-1773","viafid":"22200045","merge":{"source":"viaf","id":"114c59e6c1ebbab4e0631c937da0db71","type":"document"},"lc":"n83027719","bnf":"12264634","bav":"adv10988687"} {"nliara":"000162895","version":"2013-07-01T14:07:50Z","_id":"115220040f493dc93d8f98d60f41ca72","egaxa":"vtls000773205","dnb":"173564186","term":"Ṭūsūn, ʿUmar, 1872-1944","key":"ṬūsūnʿUmar1872-1944","nlilat":"000133307","viafid":"32062711","merge":{"source":"viaf","id":"115220040f493dc93d8f98d60f41ca72","type":"document"},"lc":"n84173650","bnf":"12300459","bav":"adv10096141"} {"version":"2013-07-01T14:07:50Z","_id":"116923376afa947886a12a8ba148c795","bne":"xx1720389","dnb":"118863517","term":"Capmany, Maria Aurèlia 1918-1991","key":"CapmanyMariaAurèlia1918-1991","viafid":"54142662","nlilat":"000426353","merge":{"source":"viaf","id":"116923376afa947886a12a8ba148c795","type":"document"},"lc":"n80014872","bnf":"11885892"} {"nkc":"jn20000701929","selibr":"250058","version":"2013-07-01T14:07:50Z","_id":"11708df76838ac4d4180628604e1bc7f","bne":"xx1161075","dnb":"118806068","nla":"000035589236","ptbnp":"40958","term":"Walras, Léon, 1834-1910","key":"WalrasLéon1834-1910","viafid":"76324284","nlilat":"000405752","merge":{"source":"viaf","id":"11708df76838ac4d4180628604e1bc7f","type":"document"},"lc":"n50024510","bnf":"11928836"} {"nkc":"jn20000701289","selibr":"79144","version":"2013-07-01T14:07:50Z","_id":"117b852cf99760bf93a860515db27e12","bne":"xx1110492","dnb":"160074479","nla":"000035368914","ptbnp":"209500","term":"Münzer, Thomas, ca. 1490-1525","key":"MünzerThomasca1490-1525","viafid":"17226919","nlilat":"000097409","merge":{"source":"viaf","id":"117b852cf99760bf93a860515db27e12","type":"document"},"lc":"n50038387"} {"nkc":"ola2008452326","version":"2013-07-01T14:07:50Z","_id":"117f6a68d7ea3b41191e577cf760bde0","bne":"xx1609671","dnb":"117567574","nla":"000036046921","term":"De Bastide, Jean-François, 1724-1798","key":"DeBastideJean-François1724-1798","viafid":"71429857","merge":{"source":"viaf","id":"117f6a68d7ea3b41191e577cf760bde0","type":"document"},"jpg":"500291738","lc":"nr91010211","bnf":"12160164"} {"version":"2013-07-01T14:07:50Z","_id":"117f804889ca3987513526c46462cb4c","bne":"xx1141658","dnb":"119152746","nla":"000035811638","term":"Tsatsos, Kōnstantinos 1899-1987","key":"TsatsosKōnstantinos1899-1987","viafid":"113257497","merge":{"source":"viaf","id":"117f804889ca3987513526c46462cb4c","type":"document"},"lc":"n84058420","bnf":"11927192"} {"nkc":"mzk2008448947","version":"2013-07-01T14:07:50Z","_id":"117fddd937367626b711a47996528f83","dnb":"121418855","term":"Zückert, Johann Friedrich, 1737-1778","key":"ZückertJohannFriedrich1737-1778","viafid":"77171048","merge":{"source":"viaf","id":"117fddd937367626b711a47996528f83","type":"document"},"lc":"n82162883"} {"version":"2013-07-01T14:07:50Z","_id":"118a2816dcb9481f84205d478ec0de37","dnb":"117560928","term":"Ménageot, François-Guillaume, 1744-1816","key":"MénageotFrançois-Guillaume1744-1816","viafid":"22407226","merge":{"source":"viaf","id":"118a2816dcb9481f84205d478ec0de37","type":"document"},"jpg":"500022295","lc":"n80080813","bnf":"11939517"} {"nkc":"xx0061273","version":"2013-07-01T14:07:50Z","_id":"119202c9cc2b634699d075e68c5c55da","dnb":"117631779","term":"Demachy, Jacques-François, 1728-1803","key":"DemachyJacques-François1728-1803","viafid":"73913783","nlilat":"000499167","merge":{"source":"viaf","id":"119202c9cc2b634699d075e68c5c55da","type":"document"},"lc":"n89225538","bnf":"12276855"} {"nkc":"xx0035591","version":"2013-07-01T14:07:50Z","_id":"119d2ff342b8990a361bdcd609d68f58","dnb":"101453221","ptbnp":"94085","term":"Despois, Eugène, 1818-1876","key":"DespoisEugène1818-1876","viafid":"39466134","nlilat":"000515282","merge":{"source":"viaf","id":"119d2ff342b8990a361bdcd609d68f58","type":"document"},"lc":"no89021110","bnf":"12413678","bav":"adv12360332"} {"version":"2013-07-01T14:07:50Z","_id":"119f55841b3cc8c3f22b9df32440450b","dnb":"117098574","term":"Schäfer, Klaus, 1910-1984","key":"SchäferKlaus1910-1984","viafid":"100970163","merge":{"source":"viaf","id":"119f55841b3cc8c3f22b9df32440450b","type":"document"},"lc":"n83827812","bnf":"12367404"} {"nkc":"jn19981000689","version":"2013-07-01T14:07:50Z","_id":"11a4369ec430c44cd9e45a9e398ea046","dnb":"12403148x","nla":"000035038628","ptbnp":"62772","term":"Dobrée, Bonamy, 1891-1974","key":"DobréeBonamy1891-1974","viafid":"66531126","nlilat":"000039948","merge":{"source":"viaf","id":"11a4369ec430c44cd9e45a9e398ea046","type":"document"},"lc":"n80050351","bnf":"12298055"} {"selibr":"136568","version":"2013-07-01T14:07:50Z","_id":"11b0eb45fbd9c5ba815c8293e5a0bea4","dnb":"102012315x","nla":"000035193690","term":"Lindberger, Örjan, 1912-2005","key":"LindbergerÖrjan1912-2005","nlilat":"000426733","viafid":"59127749","merge":{"source":"viaf","id":"11b0eb45fbd9c5ba815c8293e5a0bea4","type":"document"},"lc":"n80023087","bnf":"12184262"} {"nkc":"ola2003169789","version":"2013-07-01T14:07:50Z","_id":"11b39f8826bac5900ccfeb5499596014","dnb":"118787772","nla":"000036192635","term":"Rakić, Milan, 1876-1938","key":"RakićMilan1876-1938","viafid":"27095545","merge":{"source":"viaf","id":"11b39f8826bac5900ccfeb5499596014","type":"document"},"lc":"n85115423","bnf":"12103296"} {"nkc":"jx20080318020","version":"2013-07-01T14:07:50Z","_id":"11b3bf132ba9dd0a3eca7e8d7b104b26","dnb":"121572196","term":"Rudenko, Sergej Ivanovič, 1885-1969","key":"RudenkoSergejIvanovič1885-1969","viafid":"110475939","nlilat":"000467438","merge":{"source":"viaf","id":"11b3bf132ba9dd0a3eca7e8d7b104b26","type":"document"},"lc":"n85029023"} {"selibr":"279420","version":"2013-07-01T14:07:50Z","_id":"11b5a88f37ff5a16b0f69e6414608dc2","dnb":"123420350","nla":"000035085946","term":"Vizyēnos, G. M., 1849-1896","key":"VizyēnosGM1849-1896","viafid":"4937943","merge":{"source":"viaf","id":"11b5a88f37ff5a16b0f69e6414608dc2","type":"document"},"lc":"n85256047","bnf":"11928594","bav":"adv12236065"} {"version":"2013-07-01T14:07:50Z","_id":"11ca0616d5df9fe3db55eae69a2a09ba","nla":"000036141898","term":"Fantouré, Alioum, 1938- | Cercle des tropiques. English","key":"FantouréAlioum1938-|CercledestropiquesEnglish","viafid":"184692357","merge":{"source":"viaf","id":"11ca0616d5df9fe3db55eae69a2a09ba","type":"document"},"lc":"n83194635"} {"nkc":"vse2006351626","version":"2013-07-01T14:07:50Z","_id":"11cb34544a11f8ce4b635940b3d08523","dnb":"124758789","nla":"000035058068","term":"Edwards, Richard, 1944-...., économiste","key":"EdwardsRichard1944-économiste","viafid":"108305061","merge":{"source":"viaf","id":"11cb34544a11f8ce4b635940b3d08523","type":"document"},"lc":"n78091995","bnf":"12283735"} {"version":"2013-07-01T14:07:50Z","_id":"11cc6de999448caf91dd103736d8b2b7","dnb":"131965182","ptbnp":"92134","term":"Spuller, Eugène, 1835-1896","key":"SpullerEugène1835-1896","nlilat":"000468673","viafid":"2568983","merge":{"source":"viaf","id":"11cc6de999448caf91dd103736d8b2b7","type":"document"},"lc":"n85068903","bnf":"12459339","bav":"adv11372118"} {"nkc":"mzk2009528177","selibr":"343466","version":"2013-07-01T14:07:50Z","_id":"11d898c8c8fc152ff7cfa63e3a12cc05","dnb":"118650939","swnl":"vtls004072532","nla":"000035010034","ptbnp":"169439","term":"Hédelin, François, 1604-1676","key":"HédelinFrançois1604-1676","viafid":"41836011","nlilat":"000013026","merge":{"source":"viaf","id":"11d898c8c8fc152ff7cfa63e3a12cc05","type":"document"},"lc":"n84141096","bnf":"11889409","bav":"adv12033472"} {"nkc":"jx20100607004","version":"2013-07-01T14:07:50Z","_id":"11d987f31f828af3822f4bc4c060da3f","dnb":"101699255","nla":"000035967432","ptbnp":"252866","term":"Favre, Léopold, 1817-1890","key":"FavreLéopold1817-1890","viafid":"59150551","nlilat":"000534313","merge":{"source":"viaf","id":"11d987f31f828af3822f4bc4c060da3f","type":"document"},"lc":"n98019681","bnf":"12308886","bav":"adv10188666"} {"selibr":"183286","version":"2013-07-01T14:07:50Z","_id":"11e9eda3d3f2a272ff3af8f62c5bcd2f","term":"Dalén, Uno, 1920-2006","key":"DalénUno1920-2006","viafid":"53002882","nlilat":"000289082","merge":{"source":"viaf","id":"11e9eda3d3f2a272ff3af8f62c5bcd2f","type":"document"},"lc":"n81018994"} {"nkc":"nlk20000091780","version":"2013-07-01T14:07:50Z","_id":"11f7ba3a936cb04bd351bf1818c4444a","bne":"xx1153857","dnb":"118750097","ptbnp":"79559","term":"Rubinshteĭn, Sergeĭ Leonidovich, 1889-1960","key":"RubinshteĭnSergeĭLeonidovich1889-1960","viafid":"64327469","merge":{"source":"viaf","id":"11f7ba3a936cb04bd351bf1818c4444a","type":"document"},"lc":"n50052990","bnf":"12848149"} {"viafid":"793596","merge":{"source":"viaf","id":"11f8fec54584ab2eb451c88154b2707c","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"11f8fec54584ab2eb451c88154b2707c","dnb":"117582441","term":"Béhier, Louis Jules Félix, 1813-1876","key":"BéhierLouisJulesFélix1813-1876"} {"version":"2013-07-01T14:07:50Z","_id":"11ffa2bf241015a028fa82d09ff5bafa","bne":"xx1204553","dnb":"127425446","ptbnp":"375905","term":"Boillot, Félix François, b. 1880","key":"BoillotFélixFrançoisb1880","viafid":"87020333","nlilat":"000517994","merge":{"source":"viaf","id":"11ffa2bf241015a028fa82d09ff5bafa","type":"document"},"lc":"no93027215","bnf":"12943480","bav":"adv12233131"} {"nkc":"jn20000700171","selibr":"178240","version":"2013-07-01T14:07:50Z","_id":"120b1f8215aab54ad08bf2b6c4770425","bne":"xx1054412","dnb":"119497042","nla":"000035688819","ptbnp":"88613","term":"Bianciotti, Héctor, 1930-2012","key":"BianciottiHéctor1930-2012","viafid":"7386943","merge":{"source":"viaf","id":"120b1f8215aab54ad08bf2b6c4770425","type":"document"},"lc":"n85261121","bnf":"11891925"} {"selibr":"203767","version":"2013-07-01T14:07:50Z","_id":"120ba597407f2afa1ea787186962a815","term":"Söderlund, Ernst, 1903-1996","key":"SöderlundErnst1903-1996","viafid":"119425542","merge":{"source":"viaf","id":"120ba597407f2afa1ea787186962a815","type":"document"},"lc":"n80098554"} {"nkc":"js20020925060","selibr":"105473","version":"2013-07-01T14:07:50Z","_id":"1210d353657920befeefdb477d0a4208","bne":"xx1063264","dnb":"119183544","swnl":"vtls000237368","nla":"000035028309","term":"Čukovskaja, Lidija Korneevna, 1907-1996","key":"ČukovskajaLidijaKorneevna1907-1996","viafid":"95164668","nlilat":"000031839","nlicyr":"000158528","merge":{"source":"viaf","id":"1210d353657920befeefdb477d0a4208","type":"document"},"lc":"n79119170","bnf":"11926146"} {"version":"2013-07-01T14:07:50Z","_id":"12122cdecff80f2c27dd7f7f220093ba","bne":"xx1126985","dnb":"100274617","term":"Soto, Andrés de (1553?-1625)","key":"SotoAndrésde(1553?-1625)","viafid":"74194245","merge":{"source":"viaf","id":"12122cdecff80f2c27dd7f7f220093ba","type":"document"},"lc":"nr93009629","bav":"adv11380927"} {"version":"2013-07-01T14:07:50Z","_id":"122449e766637d3ee21db851f9fc5782","dnb":"1020591498","term":"Prévost, Jean-Louis, 1838-1927","key":"PrévostJean-Louis1838-1927","viafid":"67974004","merge":{"source":"viaf","id":"122449e766637d3ee21db851f9fc5782","type":"document"},"lc":"n87106240"} {"viafid":"12608292","merge":{"source":"viaf","id":"122a4942eb0f38918071e005b833d84d","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"122a4942eb0f38918071e005b833d84d","bnf":"15365539","term":"Roumeguère, Casimir, 1828-1892","key":"RoumeguèreCasimir1828-1892"} {"selibr":"33821","version":"2013-07-01T14:07:50Z","_id":"122baaf94d285b58a01b3ef7ef58bfe0","egaxa":"vtls000832519","dnb":"102509441","term":"Silafī, Aḥmad ibn Muḥammad, d. 1180","key":"SilafīAḥmadibnMuḥammadd1180","viafid":"54298152","merge":{"source":"viaf","id":"122baaf94d285b58a01b3ef7ef58bfe0","type":"document"},"lc":"n88662416","bnf":"13483513"} {"nkc":"jn19990006694","_id":"1238d502e90ce7f245cced87d6cd2151","egaxa":"vtls001067598","bne":"xx902779","dnb":"118596446","nla":"000036202545","ptbnp":"87670","term":"Prévert, Jacques, 1900-1977","key":"PrévertJacques1900-1977","viafid":"76321578","merge":{"source":"viaf","id":"1238d502e90ce7f245cced87d6cd2151","type":"document"},"jpg":"500341496","bnf":"11920604","selibr":"220997","version":"2013-07-01T14:07:50Z","nlilat":"000108129","lc":"n79054068"} {"version":"2013-07-01T14:07:50Z","_id":"123d2bc806c71e36d6de5361d0fa43c8","dnb":"11915420x","nla":"000036566765","term":"Xenopoulos, Grēgorios, 1867-1951","key":"XenopoulosGrēgorios1867-1951","viafid":"90728471","merge":{"source":"viaf","id":"123d2bc806c71e36d6de5361d0fa43c8","type":"document"},"lc":"n82106115","bnf":"13538969"} {"viafid":"175949462","merge":{"source":"viaf","id":"124995ac1d8e3a7bb7fae9cb2d6ffbe2","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"124995ac1d8e3a7bb7fae9cb2d6ffbe2","lc":"n2005053411","term":"Diallo, Alpha-Abdoulaye, 1935- | Vérité du ministre","key":"DialloAlpha-Abdoulaye1935-|Véritéduministre"} {"nkc":"mzk2008473336","version":"2013-07-01T14:07:50Z","_id":"125236206f6f8c5f9952f9a56df4bb60","dnb":"122586425","term":"Grégoire, Pierre, 1540-1617","key":"GrégoirePierre1540-1617","viafid":"120702894","merge":{"source":"viaf","id":"125236206f6f8c5f9952f9a56df4bb60","type":"document"},"lc":"n86809119"} {"version":"2013-07-01T14:07:50Z","_id":"1252c4fa8fda1d003423c429c1293265","bne":"xx4579773","ptbnp":"169866","term":"Pessonneaux, Émile 1821-1903","key":"PessonneauxÉmile1821-1903","viafid":"51706429","merge":{"source":"viaf","id":"1252c4fa8fda1d003423c429c1293265","type":"document"},"bnf":"12035547"} {"version":"2013-07-01T14:07:50Z","_id":"12548470f8ff2be03ec799584d37a996","dnb":"118810421","term":"Stübel, Alfons, 1835-1904","key":"StübelAlfons1835-1904","viafid":"5727472","merge":{"source":"viaf","id":"12548470f8ff2be03ec799584d37a996","type":"document"},"lc":"n93120825","bav":"adv12173604"} {"selibr":"37750","version":"2013-07-01T14:07:50Z","_id":"1255b36ca854cac2f4e20610bc5bf801","bne":"xx931440","term":"Shāljī, Abbūd, 1911-1996","key":"ShāljīAbbūd1911-1996","viafid":"37069036","merge":{"source":"viaf","id":"1255b36ca854cac2f4e20610bc5bf801","type":"document"},"lc":"n85018738","bnf":"13485665"} {"viafid":"183561012","merge":{"source":"viaf","id":"12562e5f745215a3bfed72254c2d05f7","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"12562e5f745215a3bfed72254c2d05f7","bne":"xx5127061","term":"Rivera Letelier, Hernán 1950- | La contadora de películas Hebreo","key":"RiveraLetelierHernán1950-|LacontadoradepelículasHebreo"} {"nkc":"ola2002151598","selibr":"285733","version":"2013-07-01T14:07:50Z","_id":"1256a26ef31c01ceb6dbbd359c05a9c9","bne":"xx1128193","dnb":"118752529","swnl":"vtls000194478","nla":"000035519037","term":"De Staël, Nicolas, 1914-1955","key":"DeStaëlNicolas1914-1955","viafid":"68938567","merge":{"source":"viaf","id":"1256a26ef31c01ceb6dbbd359c05a9c9","type":"document"},"jpg":"500026376","lc":"n82017607","bnf":"11993741"} {"viafid":"54931286","merge":{"source":"viaf","id":"126dbfd985269e5619338e7f9bbd1542","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"126dbfd985269e5619338e7f9bbd1542","dnb":"117657530","term":"Dürr, Ernst (1878-1913)","key":"DürrErnst(1878-1913)"} {"nkc":"xx0049458","selibr":"253232","version":"2013-07-01T14:07:50Z","_id":"126e7f9827eaf481386f8f168e49ea71","dnb":"118598228","nla":"000035570120","ptbnp":"495226","term":"De La Ramée, Pierre, 1515-1572","key":"DeLaRaméePierre1515-1572","nlilat":"000109442","viafid":"39399236","merge":{"source":"viaf","id":"126e7f9827eaf481386f8f168e49ea71","type":"document"},"lc":"n81129403","bnf":"12064509","bav":"adv10014647"} {"nkc":"jn19990210293","_id":"1280e322b76f2747b3ee1f62bfacf410","bne":"xx983446","dnb":"118638378","nla":"000035269636","ptbnp":"89870","term":"Hrusčev, Nikita S., 1894-1971","key":"HrusčevNikitaS1894-1971","viafid":"64007537","merge":{"source":"viaf","id":"1280e322b76f2747b3ee1f62bfacf410","type":"document"},"bnf":"11909712","selibr":"46096","version":"2013-07-01T14:07:50Z","swnl":"vtls000045610","nlilat":"000075679","nlicyr":"000158075","lc":"n80021705"} {"nkc":"kup19990000055331","selibr":"231195","version":"2013-07-01T14:07:50Z","_id":"1286911ca50010b4675f5c3ee092d7a8","dnb":"118898221","ptbnp":"238746","term":"Landström, Björn, 1917-2002","key":"LandströmBjörn1917-2002","viafid":"121575064","nlilat":"000409329","merge":{"source":"viaf","id":"1286911ca50010b4675f5c3ee092d7a8","type":"document"},"lc":"n50038730","bnf":"12180906","bav":"adv10310733"} {"version":"2013-07-01T14:07:50Z","_id":"12896cfe1e87a4a422e590df417b9a74","dnb":"128753943","nla":"000035105247","term":"Solovʹëv, Boris Ivanovič 1904-1976","key":"SolovʹëvBorisIvanovič1904-1976","viafid":"59198278","nlicyr":"000214020","merge":{"source":"viaf","id":"12896cfe1e87a4a422e590df417b9a74","type":"document"},"lc":"n86037949","bnf":"12550043"} {"viafid":"81633191","merge":{"source":"viaf","id":"128f2cb3f749a024ea65f5a05148d385","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"128f2cb3f749a024ea65f5a05148d385","dnb":"137442343","term":"Fuchs, Günter, 1924-1964","key":"FuchsGünter1924-1964"} {"version":"2013-07-01T14:07:50Z","_id":"129637765c5fb0467ea01693c1e382e2","dnb":"101063806","term":"Quesnay de Saint-Germain, Robert-François-Joseph, 1751-1805","key":"QuesnaydeSaint-GermainRobert-François-Joseph1751-1805","viafid":"44393631","merge":{"source":"viaf","id":"129637765c5fb0467ea01693c1e382e2","type":"document"},"lc":"nr93032062","bnf":"12449297"} {"nkc":"xx0004105","version":"2013-07-01T14:07:50Z","_id":"1299a7c1f7357bc44dd194b3734fb452","bne":"xx926821","dnb":"122760247","nla":"000035331415","term":"Martín-Santos, Luis, 1924-1964","key":"Martín-SantosLuis1924-1964","viafid":"7462521","merge":{"source":"viaf","id":"1299a7c1f7357bc44dd194b3734fb452","type":"document"},"lc":"n50054896","bnf":"12338532"} {"version":"2013-07-01T14:07:50Z","_id":"129b494767416c8b87e408dd1e0cc9bf","dnb":"138723702","term":"Krygowski, Bogumił, 1905-1977","key":"KrygowskiBogumił1905-1977","nlilat":"000461762","viafid":"125074948","merge":{"source":"viaf","id":"129b494767416c8b87e408dd1e0cc9bf","type":"document"},"lc":"n84094887","bnf":"11242342"} {"nkc":"jo2001100056","selibr":"37267","version":"2013-07-01T14:07:50Z","_id":"129e0e84ee8fb00c1b567817c5c8b2dd","bne":"xx1044131","dnb":"118997203","nla":"000036515854","term":"Krapiva, Kandrat Kandratavič, 1896-1991","key":"KrapivaKandratKandratavič1896-1991","nlicyr":"000332559","viafid":"109448884","merge":{"source":"viaf","id":"129e0e84ee8fb00c1b567817c5c8b2dd","type":"document"},"lc":"n82125088","bnf":"14507009"} {"viafid":"186335322","merge":{"source":"viaf","id":"12a628c80f83e5ba972925302bfd57d6","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"12a628c80f83e5ba972925302bfd57d6","lc":"n85372679","term":"O'Neill, Brian Juan, 1950- | Proprietários, lavradores e jornaleiras. English","key":"O'NeillBrianJuan1950-|ProprietárioslavradoresejornaleirasEnglish"} {"selibr":"223306","version":"2013-07-01T14:07:50Z","_id":"12a7858dc33486d37130e6994bbe1038","dnb":"128514124","nla":"000035489080","ptbnp":"393890","term":"Seltman, Charles Théodore 1886-1957","key":"SeltmanCharlesThéodore1886-1957","viafid":"2598262","nlilat":"000225935","merge":{"source":"viaf","id":"12a7858dc33486d37130e6994bbe1038","type":"document"},"lc":"n82222989","bnf":"12763808","bav":"adv12154268"} {"nkc":"js2007400423","selibr":"338050","version":"2013-07-01T14:07:50Z","_id":"12acc80a38d1e9f7e4a109ac92b9fce5","dnb":"100130828","nla":"000035650522","ptbnp":"158206","term":"De Ségur, Louis-Philippe, 1753-1830","key":"DeSégurLouis-Philippe1753-1830","nlilat":"000448585","viafid":"76361034","merge":{"source":"viaf","id":"12acc80a38d1e9f7e4a109ac92b9fce5","type":"document"},"lc":"n82152242","bnf":"12185861","bav":"adv11172695"} {"nkc":"xx0020472","version":"2013-07-01T14:07:50Z","_id":"12b0e98b979fc01132804d18da580a2b","dnb":"117039691","term":"Nogaret, François Felix, 1740-1831","key":"NogaretFrançoisFelix1740-1831","viafid":"61555612","merge":{"source":"viaf","id":"12b0e98b979fc01132804d18da580a2b","type":"document"},"lc":"n90692754","bnf":"11997595"} {"selibr":"336260","version":"2013-07-01T14:07:50Z","_id":"12c6615bffa0a392f0383d2608428f88","dnb":"124738710","term":"Kis, István, 1505-1572","key":"KisIstván1505-1572","viafid":"18164975","merge":{"source":"viaf","id":"12c6615bffa0a392f0383d2608428f88","type":"document"},"lc":"nr93015424","bav":"adv11384407"} {"viafid":"292419344","merge":{"source":"viaf","id":"12c6704b2b35949c64d8bdad4ee7bfa3","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"12c6704b2b35949c64d8bdad4ee7bfa3","bnf":"13456551","term":"Pénasse, Eugène 1853-19","key":"PénasseEugène1853-19"} {"nkc":"kup19970000022583","version":"2013-07-01T14:07:50Z","_id":"12c76112c6c21460f53e5fb9d2f17f92","bne":"xx1151975","dnb":"118672169","ptbnp":"211734","term":"Dörpfeld, Wilhelm, 1853-1940","key":"DörpfeldWilhelm1853-1940","viafid":"106965312","nlilat":"000547614","merge":{"source":"viaf","id":"12c76112c6c21460f53e5fb9d2f17f92","type":"document"},"jpg":"500288114","lc":"no2003088451","bnf":"10433194","bav":"adv10202850"} {"nkc":"ola2004235422","version":"2013-07-01T14:07:50Z","_id":"12d1ae3009278fd235b3a5583bc15511","bne":"xx958086","dnb":"106279467","nla":"000035292396","ptbnp":"62431","term":"Lartéguy, Jean, 1920-2011","key":"LartéguyJean1920-2011","nlilat":"000081198","viafid":"68931538","merge":{"source":"viaf","id":"12d1ae3009278fd235b3a5583bc15511","type":"document"},"lc":"n79061369","bnf":"11911167"} {"nkc":"jn20020213016","selibr":"72064","version":"2013-07-01T14:07:50Z","_id":"12d881d9f05759b6a15921bdfbf7c8c2","dnb":"123541476","term":"Ljublinskij, Vladimir Sergeevič, 1903-1968","key":"LjublinskijVladimirSergeevič1903-1968","nlicyr":"000153198","viafid":"50137979","merge":{"source":"viaf","id":"12d881d9f05759b6a15921bdfbf7c8c2","type":"document"},"lc":"n83228471","bnf":"15971556"} {"nkc":"jx20050608005","selibr":"316991","version":"2013-07-01T14:07:50Z","_id":"12e7ac401844ae4a6c0087cbdb8e210e","bne":"xx982888","dnb":"118839152","nla":"000036590116","ptbnp":"153891","term":"Medina, José Toribio, 1852-1930","key":"MedinaJoséToribio1852-1930","viafid":"26820","nlilat":"000091327","merge":{"source":"viaf","id":"12e7ac401844ae4a6c0087cbdb8e210e","type":"document"},"lc":"n50009972","bnf":"12034483","bav":"adv10212780"} {"version":"2013-07-01T14:07:50Z","_id":"12ec2800982ec67adb303f404fc8e37a","dnb":"1017304882","term":"Cérou, Pierre, 1709-1797?","key":"CérouPierre1709-1797?","viafid":"29662759","merge":{"source":"viaf","id":"12ec2800982ec67adb303f404fc8e37a","type":"document"},"lc":"no91028393","bnf":"12927174"} {"version":"2013-07-01T14:07:50Z","_id":"12efbcd9749a7397ec8cb9a10c3e86f1","dnb":"119044072","nla":"000036608830","term":"Li, Lüyuan, 1707-1790","key":"LiLüyuan1707-1790","viafid":"64239913","merge":{"source":"viaf","id":"12efbcd9749a7397ec8cb9a10c3e86f1","type":"document"},"lc":"n81152098","bnf":"14517541"} {"version":"2013-07-01T14:07:50Z","_id":"12f74a969b6e77233ac0c55e8a55d2e5","dnb":"1021419966","nla":"000035701552","term":"Gätje, Helmut, 1927-1986","key":"GätjeHelmut1927-1986","nlilat":"000491334","viafid":"29561534","merge":{"source":"viaf","id":"12f74a969b6e77233ac0c55e8a55d2e5","type":"document"},"lc":"n87949742","bnf":"12092987","bav":"adv10197544"} {"version":"2013-07-01T14:07:50Z","_id":"12fd9d16853a861511046653bdc63370","term":"Kostrenčić, Marko (1884-1976)","key":"KostrenčićMarko(1884-1976)","viafid":"115237338","nlilat":"000422031","merge":{"source":"viaf","id":"12fd9d16853a861511046653bdc63370","type":"document"},"lc":"n79089243","bnf":"12163981","bav":"adv10024559"} {"nkc":"jo2003169871","version":"2013-07-01T14:07:50Z","_id":"12ff51fd0c7e477b8856ae5bac739455","dnb":"12584252x","term":"Van Aerssen, François, 1572-1641","key":"VanAerssenFrançois1572-1641","viafid":"4923795","merge":{"source":"viaf","id":"12ff51fd0c7e477b8856ae5bac739455","type":"document"},"lc":"no91000108","bnf":"11290581","bav":"adv10309229"} {"viafid":"184367346","merge":{"source":"viaf","id":"1303160506202c6d74933bac1beb066b","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"1303160506202c6d74933bac1beb066b","lc":"n93083929","term":"Casalis, E., 1812-1891., (Eugène), Basutos","key":"CasalisE1812-1891(Eugène)Basutos"} {"version":"2013-07-01T14:07:50Z","_id":"1304bc1461a93f24883d94aa998966e9","dnb":"117585084","term":"Van Beneden, Édouard 1846-1910","key":"VanBenedenÉdouard1846-1910","viafid":"74634040","merge":{"source":"viaf","id":"1304bc1461a93f24883d94aa998966e9","type":"document"},"lc":"no99059626"} {"version":"2013-07-01T14:07:50Z","_id":"1306a2283451d9f165122b248fe23436","dnb":"115353240","term":"Bareau de Girac, François, 1730-1820","key":"BareaudeGiracFrançois1730-1820","viafid":"257352072","merge":{"source":"viaf","id":"1306a2283451d9f165122b248fe23436","type":"document"},"lc":"nr93015817"} {"viafid":"195134671","merge":{"source":"viaf","id":"130d569773a442f899ce9a00cbe0b8fc","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"130d569773a442f899ce9a00cbe0b8fc","term":"Martin, Pierre Étienne, 1771-1846, médecin","key":"MartinPierreÉtienne1771-1846médecin"} {"viafid":"270180801","merge":{"source":"viaf","id":"1313ef313c5253723f9737258d6a580f","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"1313ef313c5253723f9737258d6a580f","lc":"no2012135771","term":"Jačev, Risto Ǵ., 1942- | Sivite grebeni. English","key":"JačevRistoǴ1942-|SivitegrebeniEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"1316f1c4b060a1898f7cd0cb64055a6b","dnb":"173668690","term":"LeBesgue, Victor Amédée 1791-1875","key":"LeBesgueVictorAmédée1791-1875","viafid":"51035174","merge":{"source":"viaf","id":"1316f1c4b060a1898f7cd0cb64055a6b","type":"document"},"lc":"n2001080119","bnf":"13025002"} {"nkc":"js20020925008","version":"2013-07-01T14:07:50Z","_id":"13186acb8b0c44c7b802d47816611076","dnb":"119548623","nla":"000036033420","ptbnp":"1200494","term":"Vinokur, Grigorij Osipovič, 1896-1947","key":"VinokurGrigorijOsipovič1896-1947","nlicyr":"000149340","viafid":"64227621","merge":{"source":"viaf","id":"13186acb8b0c44c7b802d47816611076","type":"document"},"lc":"n87847122","bnf":"14447439"} {"nkc":"jo20000080732","selibr":"86598","version":"2013-07-01T14:07:50Z","_id":"131ecb77c88f17ec076ec2a7feeecfef","dnb":"118744488","nla":"000036566268","ptbnp":"1441922","term":"Remizov, Aleksej Michajlovič, 1877-1957","key":"RemizovAleksejMichajlovič1877-1957","viafid":"51953667","nlilat":"000412093","nlicyr":"000155632","merge":{"source":"viaf","id":"131ecb77c88f17ec076ec2a7feeecfef","type":"document"},"jpg":"500052237","lc":"n50051063","bnf":"11921459","bav":"adv12225474"} {"viafid":"163847732","merge":{"source":"viaf","id":"131f40bb6661611488d3ee87d00a033e","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"131f40bb6661611488d3ee87d00a033e","lc":"no2004024183","term":"Valdés Acosta, Gema, 1948-, (Gema Del Carmen)","key":"ValdésAcostaGema1948-(GemaDelCarmen)"} {"version":"2013-07-01T14:07:50Z","_id":"1320dd7b76175957502b24c72545ca79","dnb":"117622087","term":"Bottin, Sébastien, 1764-1853","key":"BottinSébastien1764-1853","viafid":"7430095","merge":{"source":"viaf","id":"1320dd7b76175957502b24c72545ca79","type":"document"},"lc":"n87860767","bnf":"12163856"} {"viafid":"177774196","merge":{"source":"viaf","id":"132179ff6435225476e4d3d61c9ab632","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"132179ff6435225476e4d3d61c9ab632","nla":"000035795924","term":"Breton, Roland J.-L., 1931- | Géographie des langues. Italian","key":"BretonRolandJ-L1931-|GéographiedeslanguesItalian"} {"nkc":"mzk2009532937","selibr":"287100","version":"2013-07-01T14:07:50Z","_id":"1323a5e9d31ceab66d8bc0c2c6ef5cc8","dnb":"119241226","term":"Savary, Anne-Jean-Marie-René, 1774-1833","key":"SavaryAnne-Jean-Marie-René1774-1833","nlilat":"000114134","viafid":"22231617","merge":{"source":"viaf","id":"1323a5e9d31ceab66d8bc0c2c6ef5cc8","type":"document"},"lc":"n87896516","bnf":"12425645","bav":"adv11186928"} {"version":"2013-07-01T14:07:50Z","_id":"132c4267b889526f124c2c59d5694133","dnb":"118728822","ptbnp":"156872","term":"Lösch, August, 1906-1945","key":"LöschAugust1906-1945","viafid":"49354029","nlilat":"000492756","merge":{"source":"viaf","id":"132c4267b889526f124c2c59d5694133","type":"document"},"lc":"n88069679","bnf":"12917299"} {"selibr":"275223","version":"2013-07-01T14:07:50Z","_id":"13327dcb552f22567b1d6f0c27bd5d67","bne":"xx1659253","dnb":"10427736x","term":"Gersaint, Edme-François, d. 1750","key":"GersaintEdme-Françoisd1750","nlilat":"000474978","viafid":"100185623","merge":{"source":"viaf","id":"13327dcb552f22567b1d6f0c27bd5d67","type":"document"},"lc":"n85301441","bnf":"13011021","bav":"adv10214445"} {"nkc":"mzk2007395146","selibr":"239393","version":"2013-07-01T14:07:50Z","_id":"133371bb9282a1d8ead004a1e237338e","dnb":"172514533","nla":"000035926290","ptbnp":"182221","term":"Clüver, Philipp, 1580-1622","key":"ClüverPhilipp1580-1622","nlilat":"000032604","viafid":"29833013","merge":{"source":"viaf","id":"133371bb9282a1d8ead004a1e237338e","type":"document"},"lc":"n85086963","bnf":"15327077","bav":"adv10049515"} {"version":"2013-07-01T14:07:50Z","_id":"1333cb8714f1197d884318699e12bf0b","dnb":"172441544","nla":"000035589693","ptbnp":"148091","term":"Walter, Gérard, 1896-1974","key":"WalterGérard1896-1974","viafid":"100184549","nlilat":"000219078","merge":{"source":"viaf","id":"1333cb8714f1197d884318699e12bf0b","type":"document"},"lc":"n83022460","bnf":"12161707","bav":"adv10206542"} {"nkc":"jk01051869","version":"2013-07-01T14:07:50Z","_id":"133de31b35d469ac98840a2f70781722","dnb":"119224178","term":"Jíreček, Konstantin, 1854-1918","key":"JírečekKonstantin1854-1918","nlilat":"000514779","nlicyr":"000151595","viafid":"71464501","merge":{"source":"viaf","id":"133de31b35d469ac98840a2f70781722","type":"document"},"lc":"no88002779","bnf":"12343924","bav":"adv10000111"} {"viafid":"292646925","merge":{"source":"viaf","id":"1340cca6d5420138121e02f34c70d28c","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"1340cca6d5420138121e02f34c70d28c","bnf":"13521106","term":"Connes, Alain 1947-.... Matière à pensée","key":"ConnesAlain1947-Matièreàpensée"} {"version":"2013-07-01T14:07:50Z","_id":"134c05717bb6fb6482a90088f841d0b4","dnb":"100188141","term":"Legallois, César Julien, 1770-1814","key":"LegalloisCésarJulien1770-1814","viafid":"120775682","merge":{"source":"viaf","id":"134c05717bb6fb6482a90088f841d0b4","type":"document"},"lc":"n86837058","bnf":"10652620"} {"nkc":"jn20011211066","selibr":"200401","version":"2013-07-01T14:07:50Z","_id":"135ce84257418bcc78568750a2111e60","bne":"xx1005644","dnb":"138087563","nla":"000036585051","ptbnp":"186073","term":"Valbuena Prat, Ángel, 1900-1977","key":"ValbuenaPratÁngel1900-1977","viafid":"110455808","nlilat":"000430020","merge":{"source":"viaf","id":"135ce84257418bcc78568750a2111e60","type":"document"},"lc":"n80094272","bnf":"12028549","bav":"adv10143108"} {"nkc":"nlk20000090057","version":"2013-07-01T14:07:50Z","_id":"1376e493e318f49ee5a6bc7de59d29cd","dnb":"101866313","term":"Lépine, Raphaël, 1840-1919","key":"LépineRaphaël1840-1919","viafid":"2603660","merge":{"source":"viaf","id":"1376e493e318f49ee5a6bc7de59d29cd","type":"document"},"bnf":"12966050"} {"nkc":"js20050703013","version":"2013-07-01T14:07:50Z","_id":"137f20b36063fe82a71c804ec1d5ea0d","dnb":"121576531","swnl":"vtls002011955","nla":"000035047927","term":"Grobéty, Anne-Lise 1949-2010","key":"GrobétyAnne-Lise1949-2010","viafid":"91354976","nlilat":"000056875","merge":{"source":"viaf","id":"137f20b36063fe82a71c804ec1d5ea0d","type":"document"},"lc":"n86074554","bnf":"12104361"} {"version":"2013-07-01T14:07:50Z","_id":"1382ed5f9c62681680678a4765249ec6","dnb":"102866341","term":"Du Pré, Galliot, d. 1561","key":"DuPréGalliotd1561","viafid":"100294987","merge":{"source":"viaf","id":"1382ed5f9c62681680678a4765249ec6","type":"document"},"lc":"nr94028497","bnf":"12487007"} {"version":"2013-07-01T14:07:50Z","_id":"1383061015604866b10b40be09d50a0e","bne":"xx1266708","dnb":"117618284","nla":"000035077674","ptbnp":"203589","term":"Salverte, Eusèbe, 1771-1839","key":"SalverteEusèbe1771-1839","viafid":"14822860","nlilat":"000492702","merge":{"source":"viaf","id":"1383061015604866b10b40be09d50a0e","type":"document"},"lc":"n88067883","bnf":"12227688","bav":"adv11209050"} {"nkc":"jx20070612019","selibr":"178868","version":"2013-07-01T14:07:50Z","_id":"1385be4e3cdef2172f0727458e7eb8ec","dnb":"118662473","swnl":"vtls000033876","term":"Boy-Ed, Idá (1852-1928)","key":"Boy-EdIdá(1852-1928)","nlilat":"000023721","viafid":"50019156","merge":{"source":"viaf","id":"1385be4e3cdef2172f0727458e7eb8ec","type":"document"},"lc":"n50043125"} {"nkc":"jn20000700664","selibr":"211403","version":"2013-07-01T14:07:50Z","_id":"1397f1a12df8a2f5d334d64cec4be38a","dnb":"118545388","swnl":"vtls002029343","nla":"000035166507","ptbnp":"150722","term":"Hammarskjöld, Dag, 1905-1961","key":"HammarskjöldDag1905-1961","viafid":"9861820","nlilat":"000211029","merge":{"source":"viaf","id":"1397f1a12df8a2f5d334d64cec4be38a","type":"document"},"lc":"n79034467","bnf":"12029110","bav":"adv12352150"} {"selibr":"228146","version":"2013-07-01T14:07:50Z","_id":"1398870983365a4e9950886a61a77fe8","dnb":"101388896","term":"Lagerström, Hugo, 1873-1956","key":"LagerströmHugo1873-1956","viafid":"61916489","merge":{"source":"viaf","id":"1398870983365a4e9950886a61a77fe8","type":"document"},"lc":"no2008180427"} {"version":"2013-07-01T14:07:50Z","_id":"13aadd027bb3321ff7ddf55d9d145337","dnb":"100507484","term":"Lepan, Édouard-Marie-Joseph, 1767-1836?","key":"LepanÉdouard-Marie-Joseph1767-1836?","viafid":"73856477","merge":{"source":"viaf","id":"13aadd027bb3321ff7ddf55d9d145337","type":"document"},"bnf":"11912514","bav":"adv11018991"} {"version":"2013-07-01T14:07:50Z","_id":"13b27848965db8d48114e5ede6a2c59b","dnb":"115143858","term":"De Valenzuela, Nicolás, 17th cent","key":"DeValenzuelaNicolás17thcent","viafid":"47485171","merge":{"source":"viaf","id":"13b27848965db8d48114e5ede6a2c59b","type":"document"},"lc":"n80111260"} {"version":"2013-07-01T14:07:50Z","_id":"13b8a42eaeba8156429b4d05e5251faf","dnb":"118762117","ptbnp":"114100","term":"Schücking, Walther, 1875-1935","key":"SchückingWalther1875-1935","nlilat":"000119422","viafid":"32142447","merge":{"source":"viaf","id":"13b8a42eaeba8156429b4d05e5251faf","type":"document"},"lc":"n88071815","bnf":"13322345","bav":"adv12238341"} {"version":"2013-07-01T14:07:50Z","_id":"13bb3ba59e44985b154b108f1c1ab542","dnb":"123388775","term":"Bouchu, Étienne Jean (1714-1773)","key":"BouchuÉtienneJean(1714-1773)","viafid":"919671","merge":{"source":"viaf","id":"13bb3ba59e44985b154b108f1c1ab542","type":"document"},"lc":"no91022030","bnf":"16568135"} {"nkc":"xx0096940","version":"2013-07-01T14:07:50Z","_id":"13bc64cf5d33bc19b12af6d8b9650c54","dnb":"12453970x","term":"Desmahis, Marin Grostête, 1649-1694","key":"DesmahisMarinGrostête1649-1694","viafid":"56600306","merge":{"source":"viaf","id":"13bc64cf5d33bc19b12af6d8b9650c54","type":"document"},"lc":"nr93017500","bnf":"10681119"} {"nkc":"jk01152975","version":"2013-07-01T14:07:50Z","_id":"13c4e87bac899be9c34fc6cddd7c0ceb","dnb":"103461736","term":"Žák, Jaroslav, 1906-1960","key":"ŽákJaroslav1906-1960","viafid":"49638770","nlilat":"000145123","merge":{"source":"viaf","id":"13c4e87bac899be9c34fc6cddd7c0ceb","type":"document"},"lc":"n92026015"} {"version":"2013-07-01T14:07:50Z","_id":"13d8534d4717431ab106c16aa2505b50","dnb":"105851337","nla":"000035242650","term":"Jánossy, Lajos (1912-1978)","key":"JánossyLajos(1912-1978)","nlilat":"000413248","viafid":"108565657","merge":{"source":"viaf","id":"13d8534d4717431ab106c16aa2505b50","type":"document"},"lc":"n50076011","bnf":"11473144","bav":"adv10290089"} {"nkc":"nlk20000084604","version":"2013-07-01T14:07:50Z","_id":"13dddaa9ccb7504b36b899eb93a840ac","bne":"xx1252301","dnb":"119081822","term":"Döderlein, Albert, 1860-1941","key":"DöderleinAlbert1860-1941","viafid":"20482478","nlilat":"000510144","merge":{"source":"viaf","id":"13dddaa9ccb7504b36b899eb93a840ac","type":"document"},"lc":"n93088538"} {"version":"2013-07-01T14:07:50Z","_id":"13e092bc20255ee05d824f8749990197","dnb":"121350177","nla":"000036577128","term":"Bestmann, Hans Jürgen, 1925-2005","key":"BestmannHansJürgen1925-2005","viafid":"94951367","merge":{"source":"viaf","id":"13e092bc20255ee05d824f8749990197","type":"document"},"lc":"n83001765"} {"version":"2013-07-01T14:07:50Z","_id":"13e2d8c4dc31844a867b6de39b505803","bne":"xx849594","dnb":"124372597","term":"Schuler, Théophile, 1821-1878","key":"SchulerThéophile1821-1878","nlilat":"000525235","viafid":"17229379","merge":{"source":"viaf","id":"13e2d8c4dc31844a867b6de39b505803","type":"document"},"jpg":"500003958","lc":"nr91017449","bnf":"11924142"} {"nkc":"jn20030723002","selibr":"347560","version":"2013-07-01T14:07:50Z","_id":"13e527207ff40989842240429371ee23","dnb":"100213723","term":"Minato, Niccolò, 1627-1698","key":"MinatoNiccolò1627-1698","nlilat":"000552701","viafid":"100204455","merge":{"source":"viaf","id":"13e527207ff40989842240429371ee23","type":"document"},"lc":"n82139122","bnf":"13925233","bav":"adv11019887"} {"version":"2013-07-01T14:07:50Z","_id":"13f3cd38a6899b1b9ed5ecdc9d2dd83d","dnb":"100757510","term":"Benoît, Philippe Martin Narcisse, 1791-1867","key":"BenoîtPhilippeMartinNarcisse1791-1867","viafid":"107498","merge":{"source":"viaf","id":"13f3cd38a6899b1b9ed5ecdc9d2dd83d","type":"document"},"lc":"n88132726","bnf":"12459635"} {"version":"2013-07-01T14:07:50Z","_id":"13fb7b3ce61d32d193657045a7144100","dnb":"100835244","nla":"000035287364","term":"Lachèvre, Frédéric, 1855-1943","key":"LachèvreFrédéric1855-1943","nlilat":"000409956","viafid":"66480802","merge":{"source":"viaf","id":"13fb7b3ce61d32d193657045a7144100","type":"document"},"lc":"n50041323","bnf":"12025019","bav":"adv10187258"} {"nkc":"ola2003172178","version":"2013-07-01T14:07:50Z","_id":"13fe19afd531a7178532ce2c6587cf81","dnb":"12328354x","term":"Topîrceanu, George, 1886-1937","key":"TopîrceanuGeorge1886-1937","viafid":"2484379","nlilat":"000450056","merge":{"source":"viaf","id":"13fe19afd531a7178532ce2c6587cf81","type":"document"},"lc":"n82230847","bnf":"12026787"} {"nkc":"ola2008460009","version":"2013-07-01T14:07:50Z","_id":"1404dd471b278ac0f6a7e20435519181","bne":"xx1727372","dnb":"117661236","term":"De l'Isle André, Yves Marie, 1675-1764","key":"Del'IsleAndréYvesMarie1675-1764","viafid":"51732793","merge":{"source":"viaf","id":"1404dd471b278ac0f6a7e20435519181","type":"document"},"lc":"n2006066584","bnf":"12180932","bav":"adv10231928"} {"nkc":"jn20000603991","selibr":"194998","version":"2013-07-01T14:07:50Z","_id":"1410a071456c9e4a0c12eaa6a9825b5d","bne":"xx1020593","dnb":"118580817","nla":"000035346765","ptbnp":"181363","term":"Menéndez y Pelayo, Marcelino, 1856-1912","key":"MenéndezyPelayoMarcelino1856-1912","viafid":"64018425","nlilat":"000092132","merge":{"source":"viaf","id":"1410a071456c9e4a0c12eaa6a9825b5d","type":"document"},"lc":"n50045147","bnf":"12020646","bav":"adv10475174"} {"nkc":"xx0001988","_id":"141b2c94c573f20c3f8dca411aa423b7","egaxa":"vtls001110051","bne":"xx998466","dnb":"118964038","nla":"000035960643","ptbnp":"10526","term":"Saramago, José de Sousa, 1922-2010","key":"SaramagoJosédeSousa1922-2010","viafid":"114473675","merge":{"source":"viaf","id":"141b2c94c573f20c3f8dca411aa423b7","type":"document"},"bnf":"12027213","selibr":"89703","version":"2013-07-01T14:07:50Z","swnl":"vtls002352195","nlilat":"000116640","lc":"n85130797"} {"viafid":"212912232","merge":{"source":"viaf","id":"141e055ae72686ee2e118d57a4325696","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"141e055ae72686ee2e118d57a4325696","dnb":"957302584","term":"Barbéris, Pierre 1926- Verfasserschaft1","key":"BarbérisPierre1926-Verfasserschaft1"} {"version":"2013-07-01T14:07:50Z","_id":"141e1e5bd08b42bd1c7523b0ecaca044","dnb":"172506344","ptbnp":"1172693","term":"Rouché, Eugène (1832-1910)","key":"RouchéEugène(1832-1910)","viafid":"37000162","merge":{"source":"viaf","id":"141e1e5bd08b42bd1c7523b0ecaca044","type":"document"},"lc":"n87831201","bnf":"12386318"} {"version":"2013-07-01T14:07:50Z","_id":"1426e4bd0805ce3c6f3643b25bd9a81b","dnb":"116234539","ptbnp":"108843","term":"Ducpétiaux, Edouard, 1804-1868","key":"DucpétiauxEdouard1804-1868","viafid":"61587699","merge":{"source":"viaf","id":"1426e4bd0805ce3c6f3643b25bd9a81b","type":"document"},"jpg":"500234955","lc":"n82104179","bnf":"12170910","bav":"adv11026398"} {"selibr":"250996","version":"2013-07-01T14:07:50Z","_id":"142909d5324b2231e8a041cacbd74558","dnb":"127139303","term":"Malmeström, Elis, 1895-1977","key":"MalmeströmElis1895-1977","viafid":"98029004","nlilat":"000088225","merge":{"source":"viaf","id":"142909d5324b2231e8a041cacbd74558","type":"document"},"lc":"n85806075"} {"selibr":"104037","version":"2013-07-01T14:07:50Z","_id":"142ad28dd919fbda26ef14679815a112","dnb":"157685276","term":"Åhfeldt, Clemens, 1860-1941","key":"ÅhfeldtClemens1860-1941","viafid":"239951129","merge":{"source":"viaf","id":"142ad28dd919fbda26ef14679815a112","type":"document"}} {"version":"2013-07-01T14:07:50Z","_id":"1433fc0f8e5054788e6c0e91bf3fce71","egaxa":"vtls000823801","dnb":"121160238","term":"Ibn Sūdūn, ʻAlī, 1407 or 8-1463 or 4","key":"IbnSūdūnʻAlī1407or8-1463or4","viafid":"90044089","merge":{"source":"viaf","id":"1433fc0f8e5054788e6c0e91bf3fce71","type":"document"},"lc":"no98086830","bnf":"14508346"} {"version":"2013-07-01T14:07:50Z","_id":"1436864bc103e4414b3b12987838239f","bne":"xx1771604","dnb":"118821024","ptbnp":"64209","term":"Lôbo, Duarte 1565-1646","key":"LôboDuarte1565-1646","nlilat":"000085415","viafid":"87553403","merge":{"source":"viaf","id":"1436864bc103e4414b3b12987838239f","type":"document"},"lc":"n85098951","bnf":"13896734"} {"viafid":"207955847","merge":{"source":"viaf","id":"14399ebb07f3dea868a636906e8b4f69","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"14399ebb07f3dea868a636906e8b4f69","dnb":"995200688","term":"Karahasan, Dževad 1953- | Noćno vijeće","key":"KarahasanDževad1953-|Noćnovijeće"} {"viafid":"180606272","merge":{"source":"viaf","id":"143b157c6aec0022b010d38d4ed94b63","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"143b157c6aec0022b010d38d4ed94b63","nla":"000036513819","term":"Heiberg, Hans, 1904- | Født til kunstner. English","key":"HeibergHans1904-|FødttilkunstnerEnglish"} {"viafid":"292809469","merge":{"source":"viaf","id":"144f5f10aeb12edadd93364ce17c2901","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"144f5f10aeb12edadd93364ce17c2901","term":"Odojewski, Włodzimierz (1930- ). | Dobrej drogi, Mario (pol.)","key":"OdojewskiWłodzimierz(1930-)|DobrejdrogiMario(pol)"} {"version":"2013-07-01T14:07:50Z","_id":"145ab3d7dc37ee27e5c496f713925069","dnb":"151061343","nla":"000035720479","term":"Chassé, Charles, 1883-1965","key":"ChasséCharles1883-1965","nlilat":"000030950","viafid":"7409159","merge":{"source":"viaf","id":"145ab3d7dc37ee27e5c496f713925069","type":"document"},"lc":"no99078971","bnf":"12050988","bav":"adv10024278"} {"nkc":"nlk20010095241","selibr":"351243","version":"2013-07-01T14:07:50Z","_id":"145d11f9d0517861b19b0d27f3b12dc0","dnb":"117609331","nla":"000035956182","term":"Müller, Otto Frederik, 1730-1784","key":"MüllerOttoFrederik1730-1784","viafid":"22132538","nlilat":"000483822","merge":{"source":"viaf","id":"145d11f9d0517861b19b0d27f3b12dc0","type":"document"},"lc":"n86815213","bnf":"10553686"} {"version":"2013-07-01T14:07:50Z","_id":"145e023dd68a559040311fe1dd9031ef","dnb":"100554989","term":"Piron, Aîmé, 1640-1727","key":"PironAîmé1640-1727","viafid":"29543417","merge":{"source":"viaf","id":"145e023dd68a559040311fe1dd9031ef","type":"document"},"lc":"no2010080838","bnf":"11991661"} {"nkc":"mzk2005282332","version":"2013-07-01T14:07:50Z","_id":"145f93c5c06487dcd3fff23b4ee899ff","dnb":"135631211","term":"Pavček, Tone, 1928-2011","key":"PavčekTone1928-2011","viafid":"59227179","nlilat":"000399829","merge":{"source":"viaf","id":"145f93c5c06487dcd3fff23b4ee899ff","type":"document"},"lc":"n82093671","bnf":"13197481"} {"nkc":"xx0051003","version":"2013-07-01T14:07:50Z","_id":"1460328b0407de80ed5b5c9e9531c8a9","dnb":"119142333","term":"Buysse, Cyriël, 1859-1932","key":"BuysseCyriël1859-1932","viafid":"14883922","merge":{"source":"viaf","id":"1460328b0407de80ed5b5c9e9531c8a9","type":"document"},"lc":"n78087593","bnf":"12539587"} {"viafid":"176267770","merge":{"source":"viaf","id":"1461117deedf27e03535258ba41e5683","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"1461117deedf27e03535258ba41e5683","lc":"n90686929","term":"Bakewell, P. J., 1943-, (Peter John), Mineros de la Montaña Roja","key":"BakewellPJ1943-(PeterJohn)MinerosdelaMontañaRoja"} {"selibr":"270648","version":"2013-07-01T14:07:50Z","_id":"14644e49c37af5c572ca8d06bbde63b8","dnb":"143355554","term":"Bergström, Richard, 1828-1893","key":"BergströmRichard1828-1893","viafid":"166070125","merge":{"source":"viaf","id":"14644e49c37af5c572ca8d06bbde63b8","type":"document"}} {"nkc":"ola2002150117","selibr":"207286","version":"2013-07-01T14:07:50Z","_id":"146fdc6561d9215b4b72181aca576f83","bne":"xx820681","dnb":"118650947","swnl":"vtls000021296","nla":"000036554013","term":"D'Aubigné, Agrippa, 1552-1630","key":"D'AubignéAgrippa1552-1630","viafid":"56605227","nlilat":"000013029","merge":{"source":"viaf","id":"146fdc6561d9215b4b72181aca576f83","type":"document"},"lc":"n80057183","bnf":"11889411","bav":"adv10024219"} {"nkc":"mzk2008458919","version":"2013-07-01T14:07:50Z","_id":"147f219ad904fd30075ddeeddcad4d97","dnb":"118524518","term":"Delbrück, Hans, 1848-1929","key":"DelbrückHans1848-1929","nlilat":"000038280","viafid":"51867965","merge":{"source":"viaf","id":"147f219ad904fd30075ddeeddcad4d97","type":"document"},"lc":"n79151238","bnf":"13739375","bav":"adv10013661"} {"version":"2013-07-01T14:07:50Z","_id":"1485667c00189da4004dc7c5b03231e7","dnb":"101936370","term":"Port, Célestin (1828-1901)","key":"PortCélestin(1828-1901)","viafid":"22147287","merge":{"source":"viaf","id":"1485667c00189da4004dc7c5b03231e7","type":"document"},"lc":"n81112405","bnf":"11920343","bav":"adv11083613"} {"nkc":"kup19950000113178","version":"2013-07-01T14:07:50Z","_id":"14936d44bb48bd6ef253590bba9af7e9","dnb":"109021762","nla":"000035624512","term":"Yosida, Kôsaku, 1909-1990","key":"YosidaKôsaku1909-1990","viafid":"37718918","merge":{"source":"viaf","id":"14936d44bb48bd6ef253590bba9af7e9","type":"document"},"lc":"n50013601","bnf":"12190126"} {"version":"2013-07-01T14:07:50Z","_id":"14942ddb2b1d77254cd041f905c5d4f6","dnb":"10018667x","term":"Le Blanc, François, d. 1698","key":"LeBlancFrançoisd1698","viafid":"295392725","merge":{"source":"viaf","id":"14942ddb2b1d77254cd041f905c5d4f6","type":"document"},"lc":"n88116916"} {"version":"2013-07-01T14:07:50Z","_id":"149502ce01e11e56077947e42fe4bb75","dnb":"100493912","term":"Guépin, Ange, 1805-1873","key":"GuépinAnge1805-1873","viafid":"61546622","nlilat":"000273572","merge":{"source":"viaf","id":"149502ce01e11e56077947e42fe4bb75","type":"document"},"lc":"n88101326","bnf":"11906150","bav":"adv12500368"} {"nkc":"kup19960000073803","selibr":"82449","version":"2013-07-01T14:07:50Z","_id":"149577f97a722b3cfd151297b0b8a631","dnb":"117680230","term":"Paludan-Müller, Frederik, 1809-1876","key":"Paludan-MüllerFrederik1809-1876","nlilat":"000437385","viafid":"12416841","merge":{"source":"viaf","id":"149577f97a722b3cfd151297b0b8a631","type":"document"},"lc":"n81068795","bnf":"12529532","bav":"adv10260313"} {"version":"2013-07-01T14:07:50Z","_id":"1498aea74677395145635bdce6ab372d","term":"Lombard, Pierre Aimé, 1678-1748","key":"LombardPierreAimé1678-1748","viafid":"7592464","merge":{"source":"viaf","id":"1498aea74677395145635bdce6ab372d","type":"document"},"lc":"nr2006004176","bnf":"14062271"} {"nkc":"mzk2008469051","version":"2013-07-01T14:07:50Z","_id":"149aae21a35233e4e1be474b69b2547d","dnb":"100281117","term":"Félibien, Michel, 1665-1719","key":"FélibienMichel1665-1719","viafid":"68972042","merge":{"source":"viaf","id":"149aae21a35233e4e1be474b69b2547d","type":"document"},"lc":"no2002064523","bnf":"12177715","bav":"adv10222330"} {"nkc":"ola2003196264","version":"2013-07-01T14:07:50Z","_id":"149f28687e86526a8a02e829bd71dbba","dnb":"130160695","term":"Janczarski, Czesław, 1911-1971","key":"JanczarskiCzesław1911-1971","viafid":"84995335","merge":{"source":"viaf","id":"149f28687e86526a8a02e829bd71dbba","type":"document"},"lc":"no95050557"} {"selibr":"317190","version":"2013-07-01T14:07:50Z","_id":"14a277c2c9d56ede2bfc6e0606ac3736","bne":"xx979504","dnb":"158414640","nla":"000035312578","term":"López Anglada, Luis, 1919-2007","key":"LópezAngladaLuis1919-2007","viafid":"20335","merge":{"source":"viaf","id":"14a277c2c9d56ede2bfc6e0606ac3736","type":"document"},"lc":"n50064580","bnf":"11990402"} {"viafid":"293444596","merge":{"source":"viaf","id":"14a67db24557b00ee09221a04664bb3b","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"14a67db24557b00ee09221a04664bb3b","dnb":"100174833","term":"Maître-Jan, Antoine 1650-1719","key":"Maître-JanAntoine1650-1719"} {"nkc":"ola2008452294","selibr":"356842","version":"2013-07-01T14:07:50Z","_id":"14a81955590cbd0b8d82382eb4b42715","bne":"xx1149249","dnb":"118972200","nla":"000048220952","ptbnp":"9238","term":"Barradas, Sebastião, 1543-1615","key":"BarradasSebastião1543-1615","viafid":"88777885","merge":{"source":"viaf","id":"14a81955590cbd0b8d82382eb4b42715","type":"document"},"lc":"n88073162","bav":"adv12157777"} {"version":"2013-07-01T14:07:50Z","_id":"14b3899993010f9052892f9c3aeacb83","dnb":"10042631x","nla":"000035776047","term":"Blocquel, Simon-François, 1780-1863","key":"BlocquelSimon-François1780-1863","viafid":"27059746","merge":{"source":"viaf","id":"14b3899993010f9052892f9c3aeacb83","type":"document"},"lc":"n89655433","bnf":"11887930","bav":"adv10009974"} {"viafid":"265323685","merge":{"source":"viaf","id":"14b58b4269d6105cd1746817ec2a47da","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"14b58b4269d6105cd1746817ec2a47da","lc":"n81002887","term":"Alexandrescu, Sică, 1896-1973","key":"AlexandrescuSică1896-1973"} {"version":"2013-07-01T14:07:50Z","_id":"14bb85844d451b9b5e58e79d0fbda309","bne":"xx5000893","ptbnp":"1192678","term":"Bergeret, Louis François Etienne (1814-1893)","key":"BergeretLouisFrançoisEtienne(1814-1893)","viafid":"27055650","merge":{"source":"viaf","id":"14bb85844d451b9b5e58e79d0fbda309","type":"document"},"lc":"n2013180582","bnf":"10725424","bav":"adv10069523"} {"nkc":"mzk2008468991","selibr":"277738","version":"2013-07-01T14:07:50Z","_id":"14c729b90c70967612c34527905e21b2","dnb":"172440173","term":"Wailly, Noël François de, 1724-1801","key":"WaillyNoëlFrançoisde1724-1801","nlilat":"000508741","viafid":"46791857","merge":{"source":"viaf","id":"14c729b90c70967612c34527905e21b2","type":"document"},"lc":"n92115386","bnf":"12112662","bav":"adv11938982"} {"nkc":"ola2002145123","version":"2013-07-01T14:07:50Z","_id":"14c790ebe9ba595baae117f4ba627449","bne":"xx875529","dnb":"185885853","term":"Andújar, Manuel, 1913-1994","key":"AndújarManuel1913-1994","viafid":"27113103","merge":{"source":"viaf","id":"14c790ebe9ba595baae117f4ba627449","type":"document"},"lc":"n50024863","bnf":"12197719"} {"version":"2013-07-01T14:07:50Z","_id":"14c81ddae9ab36c24ab276fb3c21b728","bne":"xx1170172","dnb":"119428164","ptbnp":"142014","term":"Serra Ràfols, Elías 1898-1972","key":"SerraRàfolsElías1898-1972","viafid":"89487779","nlilat":"000433351","merge":{"source":"viaf","id":"14c81ddae9ab36c24ab276fb3c21b728","type":"document"},"lc":"n80160048","bnf":"12570139","bav":"adv11245622"} {"version":"2013-07-01T14:07:50Z","_id":"14cb65d4e6eca6410278586c4d65c458","dnb":"109015452","term":"Klevebring, Björn-Ivar, b.1943","key":"KlevebringBjörn-Ivarb1943","viafid":"113089860","merge":{"source":"viaf","id":"14cb65d4e6eca6410278586c4d65c458","type":"document"},"lc":"no94003942"} {"version":"2013-07-01T14:07:50Z","_id":"14cf34d0fa2a38b89bfdf1090daeb5fd","dnb":"124514200","term":"Buisson, Mathieu-François-Régis, 1776-1805","key":"BuissonMathieu-François-Régis1776-1805","viafid":"23076439","merge":{"source":"viaf","id":"14cf34d0fa2a38b89bfdf1090daeb5fd","type":"document"},"lc":"n86801586","bnf":"10700554","bav":"adv10148841"} {"version":"2013-07-01T14:07:50Z","_id":"14cf7a9a16afc540ea4b7c090de8256d","bne":"xx1364830","dnb":"172511917","nla":"000035725130","term":"Merlin, María de las Mercedes Santa Cruz y Montalvo, 1789-1852","key":"MerlinMaríadelasMercedesSantaCruzyMontalvo1789-1852","viafid":"34495055","merge":{"source":"viaf","id":"14cf7a9a16afc540ea4b7c090de8256d","type":"document"},"lc":"n86820350","bnf":"12152583","bav":"adv12488629"} {"viafid":"178693401","merge":{"source":"viaf","id":"14dc4870dec4453bfd863fa35ea66256","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"14dc4870dec4453bfd863fa35ea66256","lc":"n91060889","term":"Huelle, Paweł, 1957- | Weiser Dawidek. English","key":"HuellePaweł1957-|WeiserDawidekEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"14e028324138d65cb42fbed1fc730f64","dnb":"100143873","term":"Gerstäcker, Carl Friedrich Wilhelm 1773-1852","key":"GerstäckerCarlFriedrichWilhelm1773-1852","viafid":"10626189","nlilat":"000474743","merge":{"source":"viaf","id":"14e028324138d65cb42fbed1fc730f64","type":"document"},"lc":"n85295074","bav":"adv12137352"} {"nkc":"nlk20000083830","version":"2013-07-01T14:07:50Z","_id":"14e382e0c851407d46f80bfb421cbf79","bne":"xx1051448","dnb":"132149974","swnl":"vtls001861867","nla":"000035026566","ptbnp":"43010","term":"De Castro, Josué, 1908-1973","key":"DeCastroJosué1908-1973","viafid":"46875949","nlilat":"000029257","merge":{"source":"viaf","id":"14e382e0c851407d46f80bfb421cbf79","type":"document"},"lc":"n50038278","bnf":"12557057"} {"version":"2013-07-01T14:07:50Z","_id":"14e3be59329a8f032e46a3e8d8c869cb","dnb":"135967198","nla":"000035776905","ptbnp":"319798","term":"Zéraffa, Michel, 1918-1983","key":"ZéraffaMichel1918-1983","nlilat":"000470404","viafid":"71399333","merge":{"source":"viaf","id":"14e3be59329a8f032e46a3e8d8c869cb","type":"document"},"lc":"n85129186","bnf":"11929662"} {"version":"2013-07-01T14:07:50Z","_id":"14f4d1d7539a08f6d8d5c4f8e46a2be4","dnb":"172227798","ptbnp":"192607","term":"Linze, Jacques-Gérard (1925-1996)","key":"LinzeJacques-Gérard(1925-1996)","viafid":"110278317","nlilat":"000470013","merge":{"source":"viaf","id":"14f4d1d7539a08f6d8d5c4f8e46a2be4","type":"document"},"lc":"n85117846","bnf":"12028448"} {"selibr":"62902","version":"2013-07-01T14:07:50Z","_id":"14fb8cc177da9fbab9cee94fd2b0a502","egaxa":"vtls001158733","dnb":"102372845","term":"Ibn Faḍl Allāh al-ʻUmarī, Aḥmad ibn Yaḥyá, 1301-1349","key":"IbnFaḍlAllāhal-ʻUmarīAḥmadibnYaḥyá1301-1349","nlilat":"000523737","viafid":"82873343","merge":{"source":"viaf","id":"14fb8cc177da9fbab9cee94fd2b0a502","type":"document"},"lc":"nr89013200","bnf":"12085579","bav":"adv11194402"} {"version":"2013-07-01T14:07:50Z","_id":"14fd09a1a6505b2000aea27fb6fa49a5","dnb":"11604277x","term":"Decazes, Élie, 1780-1860","key":"DecazesÉlie1780-1860","viafid":"76466485","merge":{"source":"viaf","id":"14fd09a1a6505b2000aea27fb6fa49a5","type":"document"},"lc":"n88101090","bnf":"13484480","bav":"adv12123388"} {"nkc":"skuk0003741","version":"2013-07-01T14:07:50Z","_id":"150b7db59770c7d17898440b0654170a","bne":"xx1082692","dnb":"121741729","nla":"000035304747","term":"Lichnerowicz, André, 1915-1998","key":"LichnerowiczAndré1915-1998","viafid":"109114301","merge":{"source":"viaf","id":"150b7db59770c7d17898440b0654170a","type":"document"},"lc":"n50050381","bnf":"11912970","bav":"adv10880820"} {"nkc":"mzk2009510846","version":"2013-07-01T14:07:50Z","_id":"150e614d77e283eae215073665e76353","dnb":"118685767","ptbnp":"25651","term":"Büchlein, Paul, 1504-1549","key":"BüchleinPaul1504-1549","viafid":"17275147","nlilat":"000045229","merge":{"source":"viaf","id":"150e614d77e283eae215073665e76353","type":"document"},"lc":"n98064016","bnf":"12229466","bav":"adv10165483"} {"nkc":"nlk20000091144","version":"2013-07-01T14:07:50Z","_id":"151a8baa34f4c42ec651cf89a5da836d","dnb":"100393047","nla":"000035836472","ptbnp":"1389127","term":"Rivière, Lazare, 1589-1655","key":"RivièreLazare1589-1655","viafid":"64118232","merge":{"source":"viaf","id":"151a8baa34f4c42ec651cf89a5da836d","type":"document"},"lc":"n84184713","bnf":"12544579","bav":"adv11137685"} {"nkc":"ola2010605730","version":"2013-07-01T14:07:50Z","_id":"1521faaff9b1af2f4621eb2ec5d83791","dnb":"100287352","term":"Girava, Gerónimo, d. 1556","key":"GiravaGerónimod1556","viafid":"66809658","nlilat":"000531920","merge":{"source":"viaf","id":"1521faaff9b1af2f4621eb2ec5d83791","type":"document"},"lc":"no97040910","bav":"adv12371136"} {"nkc":"mzk2009528458","selibr":"342846","version":"2013-07-01T14:07:50Z","_id":"1525f82242157126f1b56cda3ef4cec8","bne":"xx1713081","dnb":"135852544","ptbnp":"246162","term":"Fessard, Étienne, 1714-1777","key":"FessardÉtienne1714-1777","viafid":"71457400","merge":{"source":"viaf","id":"1525f82242157126f1b56cda3ef4cec8","type":"document"},"jpg":"500017211","lc":"nr00004572","bnf":"12306936","bav":"adv10374907"} {"version":"2013-07-01T14:07:50Z","_id":"152d9f4cc2130662c4cf60c3ddc7e389","dnb":"129065463","ptbnp":"1174477","term":"Mony, Stéphane, 1800-1884","key":"MonyStéphane1800-1884","viafid":"24722059","merge":{"source":"viaf","id":"152d9f4cc2130662c4cf60c3ddc7e389","type":"document"},"lc":"n88101171","bnf":"12605982"} {"version":"2013-07-01T14:07:50Z","_id":"152f70b3175ccd761042f5d53ad5533c","dnb":"118793853","nla":"000035316627","term":"Ryleev, Kondratij Fëdorovič (1795-1826)","key":"RyleevKondratijFëdorovič(1795-1826)","viafid":"35252682","nlicyr":"000155995","merge":{"source":"viaf","id":"152f70b3175ccd761042f5d53ad5533c","type":"document"},"lc":"n81040581"} {"version":"2013-07-01T14:07:50Z","_id":"1531327f46d23fc38bb56603eee281f1","dnb":"121221059","ptbnp":"179073","term":"Hugo, François-Victor, 1828-1873","key":"HugoFrançois-Victor1828-1873","viafid":"100267715","nlilat":"000518774","merge":{"source":"viaf","id":"1531327f46d23fc38bb56603eee281f1","type":"document"},"lc":"no94021099","bnf":"11907962"} {"viafid":"40136090","merge":{"source":"viaf","id":"1532fca5855ec505296ed98bf4e8bff5","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"1532fca5855ec505296ed98bf4e8bff5","dnb":"116674628","term":"Rüdiger, Karl August 1793-1869","key":"RüdigerKarlAugust1793-1869"} {"nkc":"jn19990005247","version":"2013-07-01T14:07:50Z","_id":"1535e272ce0837291a23ae9b9ff7bb1f","bne":"xx1348887","dnb":"118820095","nla":"000035316541","ptbnp":"1441984","term":"Lützeler, Heinrich, 1902-1988","key":"LützelerHeinrich1902-1988","nlilat":"000411310","viafid":"27182952","merge":{"source":"viaf","id":"1535e272ce0837291a23ae9b9ff7bb1f","type":"document"},"lc":"n50047325","bnf":"12561976","bav":"adv10909862"} {"version":"2013-07-01T14:07:50Z","_id":"154207a532fc786937d23723bcf05e04","dnb":"12838686x","nla":"000035852975","term":"Benoîst, Elie, 1640-1728","key":"BenoîstElie1640-1728","viafid":"57663498","merge":{"source":"viaf","id":"154207a532fc786937d23723bcf05e04","type":"document"},"lc":"n84233023"} {"viafid":"159870877","merge":{"source":"viaf","id":"154364002341116f2198e2ad60b35e1b","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"154364002341116f2198e2ad60b35e1b","bne":"xx5013404","term":"Bona, Théodore, 1805-1866","key":"BonaThéodore1805-1866"} {"version":"2013-07-01T14:07:50Z","_id":"154ac92e9992d5dd3f10b0fdcfc8328e","dnb":"123513561","term":"Chirnoagă, Marcel, 1930-2008","key":"ChirnoagăMarcel1930-2008","viafid":"214095192","merge":{"source":"viaf","id":"154ac92e9992d5dd3f10b0fdcfc8328e","type":"document"},"jpg":"500030414","lc":"n83328098"} {"version":"2013-07-01T14:07:50Z","_id":"154f71e8b9b3e2399082dd0a2ac69bf4","bne":"xx822112","dnb":"101874138","term":"Codera y Zaidín, Francisco, 1836-1917","key":"CoderayZaidínFrancisco1836-1917","nlilat":"000311806","viafid":"51824216","merge":{"source":"viaf","id":"154f71e8b9b3e2399082dd0a2ac69bf4","type":"document"},"lc":"n87941684","bnf":"13012044","bav":"adv10018476"} {"version":"2013-07-01T14:07:50Z","_id":"1551e5919f87e89974308c8718239043","dnb":"141428864","term":"Béghin, Henri, 1876-1969","key":"BéghinHenri1876-1969","viafid":"44429503","merge":{"source":"viaf","id":"1551e5919f87e89974308c8718239043","type":"document"},"bnf":"12938863"} {"nkc":"jn19990210430","selibr":"77025","version":"2013-07-01T14:07:50Z","_id":"15524ed265fd40ffdcaf034475a257cb","dnb":"11912369x","nla":"000035351495","ptbnp":"196003","term":"Mikszáth, Kálmán, 1847-1910","key":"MikszáthKálmán1847-1910","nlilat":"000093396","viafid":"46774986","merge":{"source":"viaf","id":"15524ed265fd40ffdcaf034475a257cb","type":"document"},"lc":"n50042174","bnf":"12027624","bav":"adv10979308"} {"viafid":"191916511","merge":{"source":"viaf","id":"1552c1a7d742dab4869b7abdd25b2d74","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"1552c1a7d742dab4869b7abdd25b2d74","term":"Béra, Joseph Charles, 1758-1839","key":"BéraJosephCharles1758-1839"} {"viafid":"107035248","merge":{"source":"viaf","id":"155732e088a547923384110611c02605","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"155732e088a547923384110611c02605","bnf":"12783902","term":"Frédérix, Gustave, 1834-1894","key":"FrédérixGustave1834-1894"} {"version":"2013-07-01T14:07:50Z","_id":"155ba761038b969ce522ed80d5e56ea6","dnb":"101323484","term":"Aguilar y Santillán, Rafael, 1863-1940","key":"AguilarySantillánRafael1863-1940","viafid":"27430168","merge":{"source":"viaf","id":"155ba761038b969ce522ed80d5e56ea6","type":"document"},"lc":"no2012104147"} {"nkc":"jx20040130026","selibr":"223671","version":"2013-07-01T14:07:50Z","_id":"155f13b5c9f7a0834d056c69bcb0d203","dnb":"119138069","term":"Pokrovskij, N. N., 1930-, (Nikolaj Nikolaevič)","key":"PokrovskijNN1930-(NikolajNikolaevič)","nlicyr":"000155244","viafid":"33383022","merge":{"source":"viaf","id":"155f13b5c9f7a0834d056c69bcb0d203","type":"document"},"lc":"n80116922","bnf":"13573958","bav":"adv10020286"} {"version":"2013-07-01T14:07:50Z","_id":"1560383bce931a3d3721d73c76e61f59","dnb":"157427064","term":"Hovhannēsean, Vahan, 1894-1977","key":"HovhannēseanVahan1894-1977","viafid":"237752024","merge":{"source":"viaf","id":"1560383bce931a3d3721d73c76e61f59","type":"document"},"lc":"n85105597"} {"nkc":"ola2009488167","version":"2013-07-01T14:07:50Z","_id":"1560cf82d3db1898e7a4bfd53d6dc62d","dnb":"117511315","nla":"000035292698","term":"Schmidt-Weißenfels, ... (Eduard), 1833-1893","key":"Schmidt-Weißenfels(Eduard)1833-1893","viafid":"40157682","nlilat":"000118091","merge":{"source":"viaf","id":"1560cf82d3db1898e7a4bfd53d6dc62d","type":"document"},"lc":"no2002059245"} {"version":"2013-07-01T14:07:50Z","_id":"156233eaa1252b487920ff8567724131","dnb":"103507191","term":"Galaunė, Paulius, 1890-1988","key":"GalaunėPaulius1890-1988","viafid":"41966965","nlilat":"000502930","merge":{"source":"viaf","id":"156233eaa1252b487920ff8567724131","type":"document"},"lc":"n90649776","bnf":"12770960","bav":"adv10165457"} {"nkc":"jcu2012721003","selibr":"300940","version":"2013-07-01T14:07:50Z","_id":"156c529b2d7717c0df32e3922f85f224","dnb":"133213544","term":"Moreau, Édouard de, 1879-1952","key":"MoreauÉdouardde1879-1952","viafid":"56715679","merge":{"source":"viaf","id":"156c529b2d7717c0df32e3922f85f224","type":"document"},"lc":"no00048053","bnf":"12504019","bav":"adv10988505"} {"version":"2013-07-01T14:07:50Z","_id":"1579762263815b1941be36ec881bdcfe","bne":"xx924903","dnb":"118717502","ptbnp":"222700","term":"Giner de los Ríos, Francisco, 1839-1915","key":"GinerdelosRíosFrancisco1839-1915","nlilat":"000408131","viafid":"12323303","merge":{"source":"viaf","id":"1579762263815b1941be36ec881bdcfe","type":"document"},"lc":"n50033894","bnf":"12031343"} {"nkc":"mzk2007395149","selibr":"313349","version":"2013-07-01T14:07:50Z","_id":"157e8db1a7423680d4e4818449cd873d","dnb":"124841260","swnl":"vtls000035608","term":"Bruzen de la Martinière, Antoine Augustin 1662-1746","key":"BruzendelaMartinièreAntoineAugustin1662-1746","viafid":"100174728","nlilat":"000025909","merge":{"source":"viaf","id":"157e8db1a7423680d4e4818449cd873d","type":"document"},"lc":"nr95046875","bnf":"11894410","bav":"adv10125001"} {"nkc":"uk2008335146","version":"2013-07-01T14:07:50Z","_id":"1584d0a6a9d44a8b4f8ec5a6113b4471","dnb":"133226700","term":"Epp, René, 1927-2009","key":"EppRené1927-2009","nlilat":"000452483","viafid":"85252385","merge":{"source":"viaf","id":"1584d0a6a9d44a8b4f8ec5a6113b4471","type":"document"},"lc":"n83032682","bnf":"11901807","bav":"adv10127620"} {"viafid":"293127160","merge":{"source":"viaf","id":"1586bca60ac2847b701688ccfc5f21b4","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"1586bca60ac2847b701688ccfc5f21b4","term":"Hødnebø, Tone (1962- ). | Lykkelig øyeblikk (norw.)","key":"HødnebøTone(1962-)|Lykkeligøyeblikk(norw)"} {"nkc":"mzk2009510728","version":"2013-07-01T14:07:50Z","_id":"1586f5c9b26fe22deb7e4972ee3a9121","dnb":"118104306","term":"Pluquet, François-André-Adrien, 1716-1790","key":"PluquetFrançois-André-Adrien1716-1790","nlilat":"000461740","viafid":"7432776","merge":{"source":"viaf","id":"1586f5c9b26fe22deb7e4972ee3a9121","type":"document"},"lc":"n84094341","bnf":"12176450","bav":"adv11098930"} {"version":"2013-07-01T14:07:50Z","_id":"158a49241995255ea4e2044ff83b066f","egaxa":"vtls001073138","bne":"xx1100503","dnb":"104115602","term":"Ibn Hudhayl, ʻAlī ibn ʻAbd al-Raḥmān, 14th cent","key":"IbnHudhaylʻAlīibnʻAbdal-Raḥmān14thcent","nlilat":"000526572","viafid":"2505776","merge":{"source":"viaf","id":"158a49241995255ea4e2044ff83b066f","type":"document"},"lc":"nr92030088","bnf":"12130675"} {"nkc":"xx0059929","version":"2013-07-01T14:07:50Z","_id":"158b3f1f2f2dc75f4f16205ffdffa0ba","dnb":"118621246","term":"Tembrock, Günter, 1918-2011","key":"TembrockGünter1918-2011","viafid":"25395490","nlilat":"000457529","merge":{"source":"viaf","id":"158b3f1f2f2dc75f4f16205ffdffa0ba","type":"document"},"lc":"n83222604"} {"nkc":"jn19990005039","version":"2013-07-01T14:07:50Z","_id":"159673e20f8a3fe36b46058121cd2ce2","dnb":"151198411","nla":"000035649576","ptbnp":"175843","term":"Levrault, Léon, b. 1865","key":"LevraultLéonb1865","viafid":"83992592","merge":{"source":"viaf","id":"159673e20f8a3fe36b46058121cd2ce2","type":"document"},"lc":"no2011125074"} {"selibr":"184128","version":"2013-07-01T14:07:50Z","_id":"15972183d2ef170bf6bc288cce067248","bne":"xx1776528","dnb":"119097222","nla":"000035579838","term":"Ducis, Jean-François 1733-1816","key":"DucisJean-François1733-1816","viafid":"36917487","nlilat":"000498199","merge":{"source":"viaf","id":"15972183d2ef170bf6bc288cce067248","type":"document"},"lc":"n88661411","bnf":"11900910","bav":"adv11026285"} {"version":"2013-07-01T14:07:50Z","_id":"159f6e0cdaa31f9a740ed2cfd3387173","dnb":"15116908x","nla":"000035660508","term":"Jorré, Georges, 1899-1957","key":"JorréGeorges1899-1957","viafid":"115316830","nlilat":"000551599","merge":{"source":"viaf","id":"159f6e0cdaa31f9a740ed2cfd3387173","type":"document"},"lc":"no2005097209","bnf":"12185852"} {"nkc":"ola2002153993","version":"2013-07-01T14:07:50Z","_id":"15a530e7fafe9f4f661aa7b4bed61119","dnb":"128696346","ptbnp":"1045680","term":"Milliet de Chales, Claude-François, 1621-1678","key":"MillietdeChalesClaude-François1621-1678","viafid":"5015944","merge":{"source":"viaf","id":"15a530e7fafe9f4f661aa7b4bed61119","type":"document"},"lc":"n85196837","bnf":"12397222","bav":"adv10973115"} {"nkc":"nlk20020107196","version":"2013-07-01T14:07:50Z","_id":"15a568d1a8c36bda45d114dbc3a3cb11","dnb":"117719757","nla":"000035316624","ptbnp":"139534","term":"Lwoff, André, 1902-1994","key":"LwoffAndré1902-1994","viafid":"92093913","nlilat":"000420416","merge":{"source":"viaf","id":"15a568d1a8c36bda45d114dbc3a3cb11","type":"document"},"lc":"n79062986","bnf":"11913683"} {"version":"2013-07-01T14:07:50Z","_id":"15a924ea710f760c1b9496f88006af48","dnb":"140804757","nla":"000036501632","term":"Staudinger, Hansjürgen 1914-1990","key":"StaudingerHansjürgen1914-1990","viafid":"111141598","merge":{"source":"viaf","id":"15a924ea710f760c1b9496f88006af48","type":"document"},"lc":"n85154369"} {"version":"2013-07-01T14:07:50Z","_id":"15bae8790fbe90a2a6956fe7e81890ee","dnb":"100526888","nla":"000036585601","term":"Montémont, Albert (1788-1862)","key":"MontémontAlbert(1788-1862)","viafid":"29538219","nlilat":"000094858","merge":{"source":"viaf","id":"15bae8790fbe90a2a6956fe7e81890ee","type":"document"},"lc":"nr90008612","bnf":"11916640"} {"nkc":"jx20050425007","selibr":"85424","version":"2013-07-01T14:07:50Z","_id":"15bbb12d0e9222b1547b731371a279ac","dnb":"118825321","nla":"000035427907","ptbnp":"370127","term":"Pólya, George, 1887-1985","key":"PólyaGeorge1887-1985","nlilat":"000428130","viafid":"120727470","merge":{"source":"viaf","id":"15bbb12d0e9222b1547b731371a279ac","type":"document"},"lc":"n80049669","bnf":"12117308"} {"viafid":"183009320","merge":{"source":"viaf","id":"15c391f2623bc9e65588f4d527b8faad","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"15c391f2623bc9e65588f4d527b8faad","lc":"nr2003021924","term":"Rapin, Christian, 1931- | Cicle d'Iskèr","key":"RapinChristian1931-|Cicled'Iskèr"} {"version":"2013-07-01T14:07:50Z","_id":"15cf3fcc2aa6cd9bd2e3e1ef09be3061","dnb":"117624799","term":"Thierry, Édouard, 1813-1894","key":"ThierryÉdouard1813-1894","nlilat":"000531316","viafid":"51791564","merge":{"source":"viaf","id":"15cf3fcc2aa6cd9bd2e3e1ef09be3061","type":"document"},"lc":"nr97014802","bnf":"12485324"} {"nkc":"jo2002150582","version":"2013-07-01T14:07:50Z","_id":"15d3d4d14c55a4f701eda42b0121a6e1","dnb":"120220504","nla":"000035380067","term":"Nenadović, Mateja, 1777-1854","key":"NenadovićMateja1777-1854","nlilat":"000474610","viafid":"27100048","merge":{"source":"viaf","id":"15d3d4d14c55a4f701eda42b0121a6e1","type":"document"},"lc":"n85289466","bnf":"12128379"} {"nkc":"nlk20000085667","selibr":"252659","version":"2013-07-01T14:07:50Z","_id":"15d93518be11453240e2a6e33ecae64c","bne":"xx4744701","dnb":"116677635","nla":"000035955803","term":"Fourcroy, Antoine-François 1755-1809","key":"FourcroyAntoine-François1755-1809","nlilat":"000461911","viafid":"27146082","merge":{"source":"viaf","id":"15d93518be11453240e2a6e33ecae64c","type":"document"},"lc":"n84102152","bnf":"12375337","bav":"adv10196189"} {"viafid":"57717861","merge":{"source":"viaf","id":"15dbc49040f2df8a7ce3fbd57eba59a7","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"15dbc49040f2df8a7ce3fbd57eba59a7","dnb":"130372587","term":"Carić, Juraj (1854-1927)","key":"CarićJuraj(1854-1927)"} {"nkc":"pna2012684581","selibr":"269095","version":"2013-07-01T14:07:50Z","_id":"15dd3a20a5fef525474436d5b536ae89","dnb":"128445246","term":"Reformatskij, Aleksandr Aleksandrovič, 1900-1978","key":"ReformatskijAleksandrAleksandrovič1900-1978","viafid":"91966747","nlicyr":"000155646","merge":{"source":"viaf","id":"15dd3a20a5fef525474436d5b536ae89","type":"document"},"lc":"nr88004853"} {"version":"2013-07-01T14:07:50Z","_id":"15e99e40dd0804a850b58d392ff3b56e","dnb":"124365329","term":"Mühlpfort, Heinrich, 1639-1681","key":"MühlpfortHeinrich1639-1681","nlilat":"000544534","viafid":"44398982","merge":{"source":"viaf","id":"15e99e40dd0804a850b58d392ff3b56e","type":"document"},"lc":"no2002059021","bnf":"12473779"} {"viafid":"211747965","merge":{"source":"viaf","id":"15ea2fd851d7a21990ca12fdd4e01ac3","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"15ea2fd851d7a21990ca12fdd4e01ac3","dnb":"972290230","term":"Grandes, Almudena 1960- | Edades de Lulú","key":"GrandesAlmudena1960-|EdadesdeLulú"} {"nkc":"jn19990210380","version":"2013-07-01T14:07:50Z","_id":"15ec26ec9f59d69671ee36ed26453c64","bne":"xx939515","dnb":"158365216","term":"Lidin, Vladimir Germanovič, 1894-1979","key":"LidinVladimirGermanovič1894-1979","nlilat":"000084331","viafid":"61604225","merge":{"source":"viaf","id":"15ec26ec9f59d69671ee36ed26453c64","type":"document"},"lc":"n81056807","bnf":"12263208"} {"nkc":"ola2002152792","version":"2013-07-01T14:07:50Z","_id":"15ec8d592e80a046cbd6d984e1167e6e","dnb":"128747099","nla":"000036153194","term":"Berg, L. S., 1876-1950, (Lev Semenovič)","key":"BergLS1876-1950(LevSemenovič)","viafid":"19823881","nlilat":"000459931","nlicyr":"000148264","merge":{"source":"viaf","id":"15ec8d592e80a046cbd6d984e1167e6e","type":"document"},"lc":"n84035731","bnf":"13326692"} {"nkc":"jn20000701917","selibr":"212569","version":"2013-07-01T14:07:50Z","_id":"15ef686a43d7e52cff157662a4974dd5","bne":"xx899903","dnb":"118635077","nla":"000035427686","term":"Vološin, Maksimilian Aleksandrovič, 1877-1932","key":"VološinMaksimilianAleksandrovič1877-1932","nlicyr":"000149467","viafid":"51697196","merge":{"source":"viaf","id":"15ef686a43d7e52cff157662a4974dd5","type":"document"},"jpg":"500064726","lc":"n82070428","bnf":"11928662"} {"version":"2013-07-01T14:07:50Z","_id":"15f4b09f18b06b6653c05168a5f75327","dnb":"116221038","term":"Böhme, Herbert, 1907-1971","key":"BöhmeHerbert1907-1971","viafid":"77061632","nlilat":"000482208","merge":{"source":"viaf","id":"15f4b09f18b06b6653c05168a5f75327","type":"document"},"lc":"n86113505"} {"version":"2013-07-01T14:07:50Z","_id":"15f645bfd16d5da6ce4cb837861ed965","dnb":"126225451","term":"Coty, François, 1874-1934","key":"CotyFrançois1874-1934","viafid":"4986112","merge":{"source":"viaf","id":"15f645bfd16d5da6ce4cb837861ed965","type":"document"},"lc":"n96017024","bnf":"12241032","bav":"adv10034057"} {"version":"2013-07-01T14:07:50Z","_id":"15ffcf89dfaa108a8d6ffc07034a2f6c","bne":"xx5103166","dnb":"120530791","term":"Croÿ, Charles, 1560-1612, duc de","key":"CroÿCharles1560-1612ducde","viafid":"40211877","merge":{"source":"viaf","id":"15ffcf89dfaa108a8d6ffc07034a2f6c","type":"document"},"lc":"n80146612","bav":"adv10117793"} {"version":"2013-07-01T14:07:50Z","_id":"16023ffa4ec525e18f6d01c036c394ad","bne":"xx819600","dnb":"119193418","nla":"000035208184","term":"De Olmos, Andrés, ca. 1491-1570 or 71","key":"DeOlmosAndrésca1491-1570or71","viafid":"17240613","merge":{"source":"viaf","id":"16023ffa4ec525e18f6d01c036c394ad","type":"document"},"lc":"n85239968","bnf":"12039399"} {"nkc":"jk01011622","version":"2013-07-01T14:07:50Z","_id":"1616b107af783a1b9dee06b92c3d1b8d","dnb":"11935344x","nla":"000035869394","ptbnp":"239063","term":"Beneš, Karel Josef, 1896-1969","key":"BenešKarelJosef1896-1969","viafid":"37071193","nlilat":"000018449","merge":{"source":"viaf","id":"1616b107af783a1b9dee06b92c3d1b8d","type":"document"},"lc":"n88636405","bnf":"13493409"} {"nkc":"kup19980000034346","selibr":"57848","version":"2013-07-01T14:07:50Z","_id":"162c133557e2fb2f820caca267a5e8a7","dnb":"103175970","term":"Guljaški, Andrej Stojanov, 1914-1995","key":"GuljaškiAndrejStojanov1914-1995","viafid":"14871383","merge":{"source":"viaf","id":"162c133557e2fb2f820caca267a5e8a7","type":"document"},"lc":"n50018804","bnf":"12470868"} {"version":"2013-07-01T14:07:50Z","_id":"1637141f032aa77f64695792a9df4a40","bne":"xx1635155","dnb":"152824200","term":"Fernández Avello, Manuel 1924-2002","key":"FernándezAvelloManuel1924-2002","viafid":"75091722","merge":{"source":"viaf","id":"1637141f032aa77f64695792a9df4a40","type":"document"},"lc":"n50002732"} {"nkc":"jn20000602773","version":"2013-07-01T14:07:50Z","_id":"16380a87a889409fbc14e1a28c66bb6b","dnb":"118719971","nla":"000035162625","ptbnp":"55870","term":"Halévy, Daniel, 1872-1962","key":"HalévyDaniel1872-1962","viafid":"14771013","nlilat":"000059369","merge":{"source":"viaf","id":"16380a87a889409fbc14e1a28c66bb6b","type":"document"},"lc":"n88613711","bnf":"11906721","bav":"adv10075417"} {"version":"2013-07-01T14:07:50Z","_id":"163db3b14fa0101c30dac0219dc57035","dnb":"117566217","nla":"000035341551","term":"Vasilʹev, V. P., 1818-1900","key":"VasilʹevVP1818-1900","nlicyr":"000149203","viafid":"97099290","nlilat":"000542016","merge":{"source":"viaf","id":"163db3b14fa0101c30dac0219dc57035","type":"document"},"lc":"n2001060994","bav":"adv11760096"} {"selibr":"305989","version":"2013-07-01T14:07:50Z","_id":"1645b612e8ec735900975143cafa80c4","dnb":"151374074","term":"Ahlström, Stellan, 1916-1984","key":"AhlströmStellan1916-1984","viafid":"12293539","merge":{"source":"viaf","id":"1645b612e8ec735900975143cafa80c4","type":"document"}} {"viafid":"175987148","merge":{"source":"viaf","id":"165da77647b8aaa501d6773904235df8","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"165da77647b8aaa501d6773904235df8","lc":"no00072608","term":"Lipovetsky, Gilles, 1944- | Crépuscule du devoir. Czech","key":"LipovetskyGilles1944-|CrépusculedudevoirCzech"} {"selibr":"175555","version":"2013-07-01T14:07:50Z","_id":"16642d0fbc0936d2fa014c73facda099","dnb":"131123629","nla":"000035225638","term":"Axel-Nilsson, Göran, 1907-1999","key":"Axel-NilssonGöran1907-1999","viafid":"114680398","merge":{"source":"viaf","id":"16642d0fbc0936d2fa014c73facda099","type":"document"},"lc":"n81014441","bnf":"12211599","bav":"adv10049454"} {"viafid":"189373722","merge":{"source":"viaf","id":"1664fa15165dfd2ac431cd36700d99f7","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"1664fa15165dfd2ac431cd36700d99f7","dnb":"958800723","term":"Eibl-Eibesfeldt, Irenäus 1928- | Fremdenfurcht und Ausgrenzung","key":"Eibl-EibesfeldtIrenäus1928-|FremdenfurchtundAusgrenzung"} {"nkc":"jk01110324","version":"2013-07-01T14:07:50Z","_id":"166b2642619c3f32be4de10af8bcb7a9","dnb":"104611928","nla":"000035762819","term":"Salač, Antonín, 1885-1960","key":"SalačAntonín1885-1960","viafid":"73893731","nlilat":"000439841","merge":{"source":"viaf","id":"166b2642619c3f32be4de10af8bcb7a9","type":"document"},"lc":"n81116832","bnf":"12162484","bav":"adv11394839"} {"nkc":"mzk2010587601","version":"2013-07-01T14:07:50Z","_id":"166d32100061891986d0c0526150f59d","dnb":"13044197x","term":"Hauteroche, Noël Lebreton, 1617-1707, sieur de","key":"HauterocheNoëlLebreton1617-1707sieurde","viafid":"76326314","merge":{"source":"viaf","id":"166d32100061891986d0c0526150f59d","type":"document"},"lc":"no96006187","bnf":"12001323","bav":"adv10228960"} {"viafid":"177380880","merge":{"source":"viaf","id":"167605eac4740d11240ab88f98a9e2d3","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"167605eac4740d11240ab88f98a9e2d3","nla":"000036573854","term":"Ollén, Gunnar, 1913- | August Strindberg. English","key":"OllénGunnar1913-|AugustStrindbergEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"167e39d68c46663035c2e09849a67d54","dnb":"119504545","term":"De Smet, Léon, 1881-1966","key":"DeSmetLéon1881-1966","viafid":"42649910","merge":{"source":"viaf","id":"167e39d68c46663035c2e09849a67d54","type":"document"},"jpg":"500042604","lc":"nr95018350"} {"version":"2013-07-01T14:07:50Z","_id":"169193135cee956b1f50b26c611558a0","bne":"xx830200","term":"Luján, Pedro de, 16th cent","key":"LujánPedrode16thcent","viafid":"51788419","merge":{"source":"viaf","id":"169193135cee956b1f50b26c611558a0","type":"document"},"lc":"nr92032310","bnf":"12466444"} {"viafid":"66872448","merge":{"source":"viaf","id":"169460719ca6bc2a3a69b9f28b3861e8","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"169460719ca6bc2a3a69b9f28b3861e8","dnb":"103123318","term":"Périolas, Louis Nicolas 1785-1859","key":"PériolasLouisNicolas1785-1859"} {"nkc":"jn20000604416","version":"2013-07-01T14:07:50Z","_id":"1699d72f87ed28e489eaabc088f4aa9a","dnb":"118790617","nla":"000036011513","term":"Petrovič, Veljko, 1884-1967","key":"PetrovičVeljko1884-1967","viafid":"62344891","merge":{"source":"viaf","id":"1699d72f87ed28e489eaabc088f4aa9a","type":"document"},"lc":"n85238984","bnf":"12114880"} {"selibr":"347011","version":"2013-07-01T14:07:50Z","_id":"169f786f380c2b493ac78e76bb3c18c9","dnb":"140453954","term":"Höjer, Johan Axel, 1890-1974","key":"HöjerJohanAxel1890-1974","viafid":"44287458","merge":{"source":"viaf","id":"169f786f380c2b493ac78e76bb3c18c9","type":"document"},"lc":"n2009182664"} {"version":"2013-07-01T14:07:50Z","_id":"16a07ddfa8ec8dd47c1a18fba5442a9e","dnb":"100648371","term":"Tuet, Jean-Charles-François, 1742-1797","key":"TuetJean-Charles-François1742-1797","viafid":"56742836","merge":{"source":"viaf","id":"16a07ddfa8ec8dd47c1a18fba5442a9e","type":"document"},"bnf":"12992829","bav":"adv11298524"} {"version":"2013-07-01T14:07:50Z","_id":"16ab3bfad877ae19e773c383698c2a64","dnb":"118567594","term":"Kühn, Heinz (1912-1992)","key":"KühnHeinz(1912-1992)","viafid":"32788595","nlilat":"000443545","merge":{"source":"viaf","id":"16ab3bfad877ae19e773c383698c2a64","type":"document"},"lc":"n82043645"} {"nkc":"jk01101145","version":"2013-07-01T14:07:50Z","_id":"16b8091cd931476cd99b4940a9913a12","bne":"xx908302","dnb":"120453800","nla":"000035434401","term":"Procházka, Jan, 1929-1971","key":"ProcházkaJan1929-1971","viafid":"19683055","nlilat":"000488074","merge":{"source":"viaf","id":"16b8091cd931476cd99b4940a9913a12","type":"document"},"lc":"n87817531","bnf":"11920677"} {"nkc":"ola2009522667","version":"2013-07-01T14:07:50Z","_id":"16bd06101f6643bc0c3ccab665f971de","dnb":"119042622","term":"Bourrit, Marc-Théodore, 1739-1819","key":"BourritMarc-Théodore1739-1819","nlilat":"000485707","viafid":"19797689","merge":{"source":"viaf","id":"16bd06101f6643bc0c3ccab665f971de","type":"document"},"lc":"n86869362","bnf":"12592475","bav":"adv10085559"} {"viafid":"185235993","merge":{"source":"viaf","id":"16c179aa73d32c276a7bdea636d31853","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"16c179aa73d32c276a7bdea636d31853","lc":"n2004028532","term":"Hahn, Barbara, 1952- | Jüdin Pallas Athene. English","key":"HahnBarbara1952-|JüdinPallasAtheneEnglish"} {"nkc":"xx0018864","version":"2013-07-01T14:07:50Z","_id":"16c4c8185bd28bb7720aef93d8565832","dnb":"117029998","term":"Mihelič, Mira, 1912-1985","key":"MiheličMira1912-1985","viafid":"79389991","merge":{"source":"viaf","id":"16c4c8185bd28bb7720aef93d8565832","type":"document"},"lc":"nr89001319"} {"version":"2013-07-01T14:07:50Z","_id":"16d7a9263c93917139c9869960a07593","dnb":"130310247","nla":"000035773623","term":"Labat, René, 1904-1974","key":"LabatRené1904-1974","nlilat":"000477532","viafid":"36985661","merge":{"source":"viaf","id":"16d7a9263c93917139c9869960a07593","type":"document"},"lc":"n85801037","bnf":"12314375","bav":"adv11471559"} {"version":"2013-07-01T14:07:50Z","_id":"16dabedcb2bde8779fb1f7025eb077a6","term":"Boumédiene, Houari, 1932-1978","key":"BoumédieneHouari1932-1978","viafid":"79122917","nlilat":"000378490","merge":{"source":"viaf","id":"16dabedcb2bde8779fb1f7025eb077a6","type":"document"},"lc":"n78027600","bnf":"12592217"} {"version":"2013-07-01T14:07:50Z","_id":"16dc5056f87dfeb36b8268dda84c0b1a","dnb":"130325287","nla":"000049788190","term":"Möller, Heinrich, 1876-1958","key":"MöllerHeinrich1876-1958","viafid":"30642232","nlilat":"000554497","merge":{"source":"viaf","id":"16dc5056f87dfeb36b8268dda84c0b1a","type":"document"},"lc":"no92015928","bnf":"14840170"} {"version":"2013-07-01T14:07:50Z","_id":"16e1e9085f51b637bc7d7d0f6a347d6a","dnb":"101072007","nla":"000049287251","term":"Rivarol, Claude François, 1762-1848","key":"RivarolClaudeFrançois1762-1848","viafid":"41831542","merge":{"source":"viaf","id":"16e1e9085f51b637bc7d7d0f6a347d6a","type":"document"},"lc":"nr93033399","bnf":"10744417"} {"nkc":"jn19990210021","selibr":"357984","version":"2013-07-01T14:07:50Z","_id":"16f4268692ad4d851f46291a20c67c22","dnb":"119250594","nla":"000036032565","term":"Aksakov, Konstantin Sergeevič, 1817-1860","key":"AksakovKonstantinSergeevič1817-1860","viafid":"17552092","nlilat":"000438146","merge":{"source":"viaf","id":"16f4268692ad4d851f46291a20c67c22","type":"document"},"lc":"n81082938","bnf":"15687887"} {"version":"2013-07-01T14:07:50Z","_id":"170e0fd1ed9f630857e01ad104564453","term":"Fausbøll, Annie I., b. 1876","key":"FausbøllAnnieIb1876","viafid":"58749076","merge":{"source":"viaf","id":"170e0fd1ed9f630857e01ad104564453","type":"document"},"lc":"no2002048318","bav":"adv12363003"} {"nkc":"mzk2009533633","version":"2013-07-01T14:07:50Z","_id":"17148815f43f535529ffa45ad1e87a36","dnb":"12884762x","term":"Félibien des Avaux, Jean-François 1658-1733","key":"FélibiendesAvauxJean-François1658-1733","viafid":"100849123","nlilat":"000442377","merge":{"source":"viaf","id":"17148815f43f535529ffa45ad1e87a36","type":"document"},"lc":"n82017901","bnf":"12309962"} {"nkc":"jn19990201021","_id":"1717844384f42303214ba3f5b207637f","egaxa":"vtls001056339","bne":"xx1149235","dnb":"118638017","nla":"000035022405","ptbnp":"17611","term":"Brontë, Emily, 1818-1848","key":"BrontëEmily1818-1848","viafid":"97097302","merge":{"source":"viaf","id":"1717844384f42303214ba3f5b207637f","type":"document"},"jpg":"500001046","bnf":"11894146","selibr":"179324","version":"2013-07-01T14:07:50Z","swnl":"vtls001836718","nlilat":"000025295","lc":"n79018755","bav":"adv10132101"} {"version":"2013-07-01T14:07:50Z","_id":"17194bc0778484f7e85f7211c29944b3","dnb":"174336713","ptbnp":"256450","term":"Thiollet, François, 1782-1864","key":"ThiolletFrançois1782-1864","viafid":"70415504","merge":{"source":"viaf","id":"17194bc0778484f7e85f7211c29944b3","type":"document"},"jpg":"500088616","lc":"n86113819"} {"nkc":"jn19990002583","selibr":"188035","version":"2013-07-01T14:07:50Z","_id":"1724c8201d4cbe7638a0336182e24981","bne":"xx1151168","dnb":"11853789x","nla":"000035115800","ptbnp":"32006","term":"Gautier, Pierre-Jules-Théophile, 1811-1872","key":"GautierPierre-Jules-Théophile1811-1872","viafid":"96428598","nlilat":"000051647","merge":{"source":"viaf","id":"1724c8201d4cbe7638a0336182e24981","type":"document"},"jpg":"500100875","lc":"n79079291","bnf":"11904435","bav":"adv10018578"} {"nkc":"mzk2009496154","version":"2013-07-01T14:07:50Z","_id":"1729c43d3a1941553684987a2c083fc7","dnb":"133642054","ptbnp":"174485","term":"De la Mésangère, Pierre, 1761-1831","key":"DelaMésangèrePierre1761-1831","viafid":"29630794","merge":{"source":"viaf","id":"1729c43d3a1941553684987a2c083fc7","type":"document"},"jpg":"500276515","lc":"nr99005421","bnf":"12462984","bav":"adv10872380"} {"version":"2013-07-01T14:07:50Z","_id":"17334e6df7aad6212dc4cc97ce58a33d","term":"Casimir-Périer, Claude, 1880-1915","key":"Casimir-PérierClaude1880-1915","viafid":"29528044","merge":{"source":"viaf","id":"17334e6df7aad6212dc4cc97ce58a33d","type":"document"},"lc":"no2011142329","bnf":"11654393"} {"version":"2013-07-01T14:07:50Z","_id":"173534d114dbe7ce88a4e4d673f3458a","dnb":"142034088","term":"Henry, Françoise, 1902-1982","key":"HenryFrançoise1902-1982","viafid":"39386390","merge":{"source":"viaf","id":"173534d114dbe7ce88a4e4d673f3458a","type":"document"},"lc":"n50029565","bnf":"11989368","bav":"adv10308686"} {"selibr":"269676","version":"2013-07-01T14:07:50Z","_id":"1736ec25122f75005cbf9232ba7c98b7","dnb":"102278105","term":"Étienne-Gallois, Auguste-Alphonse, 1809-1890","key":"Étienne-GalloisAuguste-Alphonse1809-1890","viafid":"73986026","merge":{"source":"viaf","id":"1736ec25122f75005cbf9232ba7c98b7","type":"document"},"lc":"nr00003940","bnf":"13009142"} {"viafid":"174650569","merge":{"source":"viaf","id":"173edb77c472b13158a6978561957de7","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"173edb77c472b13158a6978561957de7","lc":"n89239712","term":"Fontaine, Jean, 1936- | Fihris al-tārīkhī lil-muʼallafāt al-Tūnisīyah","key":"FontaineJean1936-|Fihrisal-tārīkhīlil-muʼallafātal-Tūnisīyah"} {"viafid":"185257100","merge":{"source":"viaf","id":"17496391d16df8f85dc0fc72aa3d2707","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"17496391d16df8f85dc0fc72aa3d2707","lc":"n2007055496","term":"Delsol, Chantal, 1947- | Eloge de la singularité English","key":"DelsolChantal1947-|ElogedelasingularitéEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"1752ca60ae3896fc09fb9a52b7960ac8","dnb":"15912834x","term":"Leudet, Théodore Émile, 1825-1887","key":"LeudetThéodoreÉmile1825-1887","viafid":"218218852","merge":{"source":"viaf","id":"1752ca60ae3896fc09fb9a52b7960ac8","type":"document"},"bnf":"16579307"} {"viafid":"193520994","merge":{"source":"viaf","id":"175342aa8e55431fbf8de8a7ab308505","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"175342aa8e55431fbf8de8a7ab308505","dnb":"1001222393","term":"Ugrešić, Dubravka 1949- | Ministarstvo boli","key":"UgrešićDubravka1949-|Ministarstvoboli"} {"viafid":"122139049","merge":{"source":"viaf","id":"175554de4c4b126f231d939952ef9d58","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"175554de4c4b126f231d939952ef9d58","lc":"nr97038904","term":"Hoyois, Emmanuel Henri François, 1799-1877","key":"HoyoisEmmanuelHenriFrançois1799-1877"} {"version":"2013-07-01T14:07:50Z","_id":"1760992b30749262caa72bcf33281a15","dnb":"1013334833","nla":"000035681015","term":"Köster, August, 1873-1935","key":"KösterAugust1873-1935","viafid":"2827192","nlilat":"000532989","merge":{"source":"viaf","id":"1760992b30749262caa72bcf33281a15","type":"document"},"lc":"nr97038180","bav":"adv10262139"} {"nkc":"skuk0001401","selibr":"250407","version":"2013-07-01T14:07:50Z","_id":"176decd2ace088214af967f60a11e4dd","bne":"xx1110784","dnb":"118833243","nla":"000036310248","term":"Tristán, Flora, 1803-1844","key":"TristánFlora1803-1844","nlilat":"000200478","viafid":"44306184","merge":{"source":"viaf","id":"176decd2ace088214af967f60a11e4dd","type":"document"},"lc":"n80094560","bnf":"11927116","bav":"adv11384982"} {"nkc":"mzk2008486696","version":"2013-07-01T14:07:50Z","_id":"177ce4e49462aa3983254035a6314a73","dnb":"100658776","term":"Turpin de Crissé, Lancelot 1709-1799","key":"TurpindeCrisséLancelot1709-1799","viafid":"41849779","merge":{"source":"viaf","id":"177ce4e49462aa3983254035a6314a73","type":"document"},"lc":"nr93040265","bnf":"11999674"} {"viafid":"47502749","merge":{"source":"viaf","id":"1782bdf78dfc6c7644e41226dbc15618","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"1782bdf78dfc6c7644e41226dbc15618","dnb":"116002069","term":"Laspeyres, Étienne 1834-1913","key":"LaspeyresÉtienne1834-1913"} {"viafid":"181309847","merge":{"source":"viaf","id":"1785cd28158ffb38594043c839532f82","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"1785cd28158ffb38594043c839532f82","lc":"no2006073509","term":"Aira, César, 1949- | Selections. 2004","key":"AiraCésar1949-|Selections2004"} {"version":"2013-07-01T14:07:50Z","_id":"1787efaa9dcbee4abb6d0a6555764879","dnb":"172145600","nla":"000035890718","term":"Höweler, Marijke 1938-2006","key":"HöwelerMarijke1938-2006","viafid":"27189364","merge":{"source":"viaf","id":"1787efaa9dcbee4abb6d0a6555764879","type":"document"},"lc":"no90008256","bnf":"12685113"} {"version":"2013-07-01T14:07:50Z","_id":"178cb999ebbd2e6eb43ecaaf0d15a25b","dnb":"172841968","term":"Boré, Eugène, 1809-1877","key":"BoréEugène1809-1877","viafid":"27053093","nlilat":"000468248","merge":{"source":"viaf","id":"178cb999ebbd2e6eb43ecaaf0d15a25b","type":"document"},"lc":"n85055606","bnf":"10233063","bav":"adv10010389"} {"nkc":"jx20050922010","version":"2013-07-01T14:07:50Z","_id":"179ec2ad154d45479bdbab9163777a40","bne":"xx1712073","dnb":"116549394","nla":"000035178829","ptbnp":"1276314","term":"Hausswald, Günter, 1908-1974","key":"HausswaldGünter1908-1974","viafid":"22404396","merge":{"source":"viaf","id":"179ec2ad154d45479bdbab9163777a40","type":"document"},"lc":"n82059303","bnf":"14762904","bav":"adv11448013"} {"version":"2013-07-01T14:07:50Z","_id":"179f9f325962eb26c3dda97eab0106b0","dnb":"119243326","term":"Van Alphen, Hiëronymus, 1746-1803","key":"VanAlphenHiëronymus1746-1803","viafid":"39627148","merge":{"source":"viaf","id":"179f9f325962eb26c3dda97eab0106b0","type":"document"},"lc":"nr93005775","bnf":"14604587"} {"version":"2013-07-01T14:07:50Z","_id":"17b1c7135b4e0d09bd4bc8b6f6b44df0","term":"Deville, Étienne, b. 1873","key":"DevilleÉtienneb1873","viafid":"74217527","merge":{"source":"viaf","id":"17b1c7135b4e0d09bd4bc8b6f6b44df0","type":"document"},"lc":"no96015941","bav":"adv10110713"} {"version":"2013-07-01T14:07:50Z","_id":"17b1e6a1074f8f57ee317b66335a7392","dnb":"121045854","term":"Goupil-Fesquet, Frédéric Auguste Antoine, 1817-1878","key":"Goupil-FesquetFrédéricAugusteAntoine1817-1878","nlilat":"000055678","viafid":"9194525","merge":{"source":"viaf","id":"17b1e6a1074f8f57ee317b66335a7392","type":"document"},"jpg":"500104863","lc":"n2001066040","bnf":"12760347"} {"nkc":"jo2004214982","version":"2013-07-01T14:07:50Z","_id":"17b6260c094511e5b8e3082b786e6b1b","dnb":"118658042","nla":"000035017079","ptbnp":"166947","term":"Belleau, Rémy, 1527?-1577","key":"BelleauRémy1527?-1577","viafid":"12304848","nlilat":"000017564","merge":{"source":"viaf","id":"17b6260c094511e5b8e3082b786e6b1b","type":"document"},"lc":"n86048999","bnf":"11891041","bav":"adv10061460"} {"version":"2013-07-01T14:07:50Z","_id":"17b860672672386ee08ada56f28ad5e8","dnb":"101448635","nla":"000036563797","term":"De Blécourt, Anne Siberdinus, 1873-1941","key":"DeBlécourtAnneSiberdinus1873-1941","viafid":"20046285","merge":{"source":"viaf","id":"17b860672672386ee08ada56f28ad5e8","type":"document"},"lc":"n80107426"} {"viafid":"175612993","merge":{"source":"viaf","id":"17bb5c3ddbc00372b60343e23fd39189","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"17bb5c3ddbc00372b60343e23fd39189","lc":"no98081648","term":"Drakulić, Slavenka, 1949- | Balkan express. Serbo-Croatian","key":"DrakulićSlavenka1949-|BalkanexpressSerbo-Croatian"} {"version":"2013-07-01T14:07:50Z","_id":"17c73a4ce9a8b77473ee6837b7774da1","bne":"xx844021","dnb":"119350858","nla":"000035764974","term":"Maurín, Joaquín, 1897-1973","key":"MaurínJoaquín1897-1973","nlilat":"000401258","viafid":"59092660","merge":{"source":"viaf","id":"17c73a4ce9a8b77473ee6837b7774da1","type":"document"},"lc":"n50007004","bnf":"11999953"} {"nkc":"jcu2012720638","version":"2013-07-01T14:07:50Z","_id":"17cbc0ec6b5cb91a30b4319eae279228","bne":"xx1074616","dnb":"122567692","nla":"000035286992","ptbnp":"179427","term":"Labande, Edmond-René, 1908-1992","key":"LabandeEdmond-René1908-1992","nlilat":"000410465","viafid":"56612170","merge":{"source":"viaf","id":"17cbc0ec6b5cb91a30b4319eae279228","type":"document"},"lc":"n50043392","bnf":"11910344","bav":"adv10207268"} {"nkc":"mzk2010588940","selibr":"313837","version":"2013-07-01T14:07:50Z","_id":"17d853868d565face0791be7d987775c","dnb":"118779729","nla":"000035724774","term":"Le Tourneur, Pierre-Prime-Félicien, 1736-1788","key":"LeTourneurPierre-Prime-Félicien1736-1788","viafid":"49227979","merge":{"source":"viaf","id":"17d853868d565face0791be7d987775c","type":"document"},"lc":"nr91002394","bnf":"11911818"} {"selibr":"195266","version":"2013-07-01T14:07:50Z","_id":"17e2def720728af8f2de67028e4e1db4","bne":"xx1010421","dnb":"157763234","nla":"000035804008","term":"Martínez de Toledo, Alfonso, 1398?-1466","key":"MartínezdeToledoAlfonso1398?-1466","viafid":"36959911","nlilat":"000418631","merge":{"source":"viaf","id":"17e2def720728af8f2de67028e4e1db4","type":"document"},"lc":"n79038513","bnf":"12175912","bav":"adv11029641"} {"version":"2013-07-01T14:07:50Z","_id":"17e7d9eef055cf815c62a64be05419c7","term":"Textor, Benoît, 16th cent","key":"TextorBenoît16thcent","viafid":"69042714","merge":{"source":"viaf","id":"17e7d9eef055cf815c62a64be05419c7","type":"document"},"lc":"n92069935","bnf":"12541969"} {"nkc":"jk01101653","version":"2013-07-01T14:07:50Z","_id":"17e859080dfe93c28640b213ab02f416","dnb":"119354179","term":"Ptáčník, Karel, 1921-2002","key":"PtáčníkKarel1921-2002","viafid":"22949364","nlilat":"000108158","merge":{"source":"viaf","id":"17e859080dfe93c28640b213ab02f416","type":"document"},"lc":"n88141623"} {"selibr":"301851","version":"2013-07-01T14:07:50Z","_id":"17fd0993d35f8ffeae8715c51f9150ad","dnb":"104039299","ptbnp":"92410","term":"Joanne, Paul Bénigne, 1847-1922","key":"JoannePaulBénigne1847-1922","viafid":"19733280","nlilat":"000518995","merge":{"source":"viaf","id":"17fd0993d35f8ffeae8715c51f9150ad","type":"document"},"lc":"no94033709","bnf":"12241162","bav":"adv10286578"} {"viafid":"176679172","merge":{"source":"viaf","id":"17fdfa296c35c8f989e74d57ca76ada3","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"17fdfa296c35c8f989e74d57ca76ada3","lc":"n91115146","term":"Krüger, Michael, 1943- | Ende des Romans. English","key":"KrügerMichael1943-|EndedesRomansEnglish"} {"version":"2013-07-01T14:07:50Z","_id":"17ffdd74dad70ee996dc568abc1b3f4d","dnb":"118584952","term":"Müller, Heinrich, 1880-1970","key":"MüllerHeinrich1880-1970","viafid":"20472774","merge":{"source":"viaf","id":"17ffdd74dad70ee996dc568abc1b3f4d","type":"document"},"lc":"n84126561","bav":"adv11866255"} {"nkc":"mzk2009512573","version":"2013-07-01T14:07:50Z","_id":"18094d8791ce00908a4b03d212e217a0","dnb":"118526243","nla":"000035040091","ptbnp":"37769","term":"Döllinger, Ignaz, 1770-1841, Beziehung familiaer","key":"DöllingerIgnaz1770-1841Beziehungfamiliaer","viafid":"89020124","nlilat":"000041799","merge":{"source":"viaf","id":"18094d8791ce00908a4b03d212e217a0","type":"document"},"lc":"n50082843","bnf":"12159364","bav":"adv10260354"} {"nkc":"mzk2009509952","selibr":"298487","version":"2013-07-01T14:07:50Z","_id":"180afecf717c143dcd25c485e13197cb","dnb":"172224969","swnl":"vtls004330502","nla":"000035817900","term":"Le Mercier de la Rivière, Pierre-Paul, 1719 or 20-ca. 1794","key":"LeMercierdelaRivièrePierre-Paul1719or20-ca1794","nlilat":"000490552","viafid":"31999036","merge":{"source":"viaf","id":"180afecf717c143dcd25c485e13197cb","type":"document"},"lc":"n87912819","bnf":"11911703","bav":"adv12151756"} {"version":"2013-07-01T14:07:50Z","_id":"1811817698b000952f4ce7b739ac3ef6","dnb":"119027178","term":"Büttner, Heinrich, 1908-1970","key":"BüttnerHeinrich1908-1970","viafid":"68966074","nlilat":"000524211","merge":{"source":"viaf","id":"1811817698b000952f4ce7b739ac3ef6","type":"document"},"lc":"nr90004128","bnf":"12145443","bav":"adv10148163"} {"nkc":"jx20080430005","version":"2013-07-01T14:07:50Z","_id":"1817e417f95551160ac8187eb8bc14c1","bne":"xx917886","dnb":"115611606","ptbnp":"26081","term":"De Vasconcellos, J. Leite, 1858-1941, (José Leite)","key":"DeVasconcellosJLeite1858-1941(JoséLeite)","viafid":"7400155","nlilat":"000243130","merge":{"source":"viaf","id":"1817e417f95551160ac8187eb8bc14c1","type":"document"},"lc":"n82142735","bnf":"11994246","bav":"adv10880732"} {"nkc":"jn20001227475","selibr":"275382","version":"2013-07-01T14:07:50Z","_id":"1837422fc00166bf3d567e7563186d57","bne":"xx897842","dnb":"118646192","swnl":"vtls001778208","nla":"000035444149","ptbnp":"99098","term":"Auber, Daniel-François-Esprit, 1782-1871","key":"AuberDaniel-François-Esprit1782-1871","viafid":"7573044","nlilat":"000429355","merge":{"source":"viaf","id":"1837422fc00166bf3d567e7563186d57","type":"document"},"lc":"n80079937","bnf":"13890952","bav":"adv10029081"} {"version":"2013-07-01T14:07:50Z","_id":"183878caf067d9325659d1ede41e2108","dnb":"119096773","term":"Lüers, Friedrich, b. 1892","key":"LüersFriedrichb1892","viafid":"102329487","nlilat":"000545097","merge":{"source":"viaf","id":"183878caf067d9325659d1ede41e2108","type":"document"},"lc":"n2002079665","bav":"adv11108428"} {"nkc":"mzk2003194892","version":"2013-07-01T14:07:50Z","_id":"183a7aa3b200c80f87e70ecbff672b00","dnb":"118699962","nla":"000035629156","term":"Hackländer, Friedrich Wilhelm, 1816-1877","key":"HackländerFriedrichWilhelm1816-1877","nlilat":"000295733","viafid":"2588488","merge":{"source":"viaf","id":"183a7aa3b200c80f87e70ecbff672b00","type":"document"},"lc":"no89004614","bnf":"12560023"} {"version":"2013-07-01T14:07:50Z","_id":"183e63927d8ba0a95a50bfec0f3c0dff","dnb":"100345751","nla":"000035648874","term":"Fagan, Christophe Barthélemy, 1702-1755","key":"FaganChristopheBarthélemy1702-1755","viafid":"76350365","merge":{"source":"viaf","id":"183e63927d8ba0a95a50bfec0f3c0dff","type":"document"},"lc":"n82131737","bnf":"12127833"} {"version":"2013-07-01T14:07:50Z","_id":"1846196918375f9e9a90231b48553208","term":"Rémond, André, 1912-1998","key":"RémondAndré1912-1998","viafid":"22242742","merge":{"source":"viaf","id":"1846196918375f9e9a90231b48553208","type":"document"},"lc":"no2004078136","bnf":"12478658"} {"version":"2013-07-01T14:07:50Z","_id":"18470f6621d6b509ea86af2148f681f5","dnb":"181019396","term":"Fontanès, Ernest, 1828-1903","key":"FontanèsErnest1828-1903","viafid":"64130613","merge":{"source":"viaf","id":"18470f6621d6b509ea86af2148f681f5","type":"document"},"bnf":"12758962"} {"viafid":"776218","merge":{"source":"viaf","id":"184913abce504a1b245a9ea968b7903a","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"184913abce504a1b245a9ea968b7903a","dnb":"116912030","term":"Günther, August Friedrich, 1806-1871","key":"GüntherAugustFriedrich1806-1871"} {"version":"2013-07-01T14:07:50Z","_id":"1857ba2facca1508982b951c25d0332d","bne":"xx1147778","dnb":"126203997","ptbnp":"219156","term":"Birabeau, André, 1890-1974","key":"BirabeauAndré1890-1974","viafid":"59374712","merge":{"source":"viaf","id":"1857ba2facca1508982b951c25d0332d","type":"document"},"lc":"no2007116880","bnf":"15072574"} {"viafid":"243662523","merge":{"source":"viaf","id":"1862f3fe48506fa0f15336b4f01b22df","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"1862f3fe48506fa0f15336b4f01b22df","dnb":"17408420x","term":"Görner, Carl August 1806-1884","key":"GörnerCarlAugust1806-1884"} {"nkc":"mzk2009528274","selibr":"321990","version":"2013-07-01T14:07:50Z","_id":"18648749c2147f2f7f5be8bc5c46f00e","dnb":"104327952","term":"Büsch, Johann Georg, 1728-1800","key":"BüschJohannGeorg1728-1800","viafid":"76752134","nlilat":"000431533","merge":{"source":"viaf","id":"18648749c2147f2f7f5be8bc5c46f00e","type":"document"},"lc":"n80125244"} {"version":"2013-07-01T14:07:50Z","_id":"18770c5380e897336e5f1440a7adbc23","dnb":"118547208","term":"Haußmann, Conrad 1857-1922","key":"HaußmannConrad1857-1922","nlilat":"000523214","viafid":"27863077","merge":{"source":"viaf","id":"18770c5380e897336e5f1440a7adbc23","type":"document"},"lc":"nr89003227","bnf":"16613754"} {"nkc":"jo2004214983","version":"2013-07-01T14:07:50Z","_id":"1878d1d2f3fce433aeaac57c6476176d","dnb":"117656348","nla":"000035462525","term":"Sélis, Nicolas-Joseph, 1737-1802","key":"SélisNicolas-Joseph1737-1802","viafid":"29639918","merge":{"source":"viaf","id":"1878d1d2f3fce433aeaac57c6476176d","type":"document"},"lc":"nr93035607","bnf":"12511996"} {"viafid":"293805497","merge":{"source":"viaf","id":"187f31bf27cec94cc8157d8657e8073d","type":"document"},"version":"2013-07-01T14:07:50Z","_id":"187f31bf27cec94cc8157d8657e8073d","term":"Gor'kij, Maksim (1868-1936). | Žizn' Klima Samgina (pol.)","key":"Gor'kijMaksim(1868-1936)|Žizn'KlimaSamgina(pol)"} {"nkc":"jn19990210652","selibr":"99944","version":"2013-07-01T14:07:50Z","_id":"1880db00cb989c2b7bfafd693445659a","dnb":"118807560","nla":"000036531850","term":"Vinogradov, Viktor Vladimirovič, 1895-1969","key":"VinogradovViktorVladimirovič1895-1969","nlicyr":"000149330","viafid":"17252709","merge":{"source":"viaf","id":"1880db00cb989c2b7bfafd693445659a","type":"document"},"lc":"n81040702","bnf":"12104627"} {"version":"2013-07-01T14:07:50Z","_id":"1883bbb111129007c6a442c01f79bf8c","dnb":"119114771","nla":"000036002025","term":"La Bourdonnais, Bertrand-François Mahé, , 1699-1753","key":"LaBourdonnaisBertrand-FrançoisMahé1699-1753","nlilat":"000488087","viafid":"5028896","merge":{"source":"viaf","id":"1883bbb111129007c6a442c01f79bf8c","type":"document"},"lc":"n87817647","bnf":"12462106","bav":"adv12362355"} {"nkc":"jn19990210403","selibr":"74051","version":"2013-07-01T14:07:50Z","_id":"18894957b123cb8bfd6ae0a9427067f2","dnb":"11857695x","nla":"000035325228","term":"Mandel'štam, Nadežda, 1899-1980","key":"Mandel'štamNadežda1899-1980","nlicyr":"000153352","nlilat":"000088340","viafid":"14318","merge":{"source":"viaf","id":"18894957b123cb8bfd6ae0a9427067f2","type":"document"},"lc":"n80138751","bnf":"11914216"} {"version":"2013-07-01T14:07:50Z","_id":"189177e56cb23e254643ba132d736554","dnb":"101845693","ptbnp":"178214","term":"Banning, Émile, 1836-1898","key":"BanningÉmile1836-1898","viafid":"10222960","merge":{"source":"viaf","id":"189177e56cb23e254643ba132d736554","type":"document"},"lc":"no2012043860","bnf":"13002928","bav":"adv11390715"} {"selibr":"213945","version":"2013-07-01T14:07:50Z","_id":"1892d7c5f989624c9ed4c46a2892b044","dnb":"140892818","term":"Attorps, Gösta, 1899-1976","key":"AttorpsGösta1899-1976","viafid":"74292181","nlilat":"000012991","merge":{"source":"viaf","id":"1892d7c5f989624c9ed4c46a2892b044","type":"document"}} non_ascii.yaml100644000765000024 117562114742222207 16704 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t--- _id: 000290adb8fba464410b5466d462565d bnf: '11892331' dnb: '118950363' key: BlavierAndré(1922-2001) lc: n83068143 merge: id: 000290adb8fba464410b5466d462565d source: viaf type: document nkc: jn20000700183 nlilat: '000453847' ptbnp: '521529' term: Blavier, André (1922-2001) version: 2013-07-01T14:07:50Z viafid: '84032513' --- _id: 0008dd5e2e29146396bdc33a5507d8db key: CremersJohannesFranciscusNicolai͏̈1794-1869 merge: id: 0008dd5e2e29146396bdc33a5507d8db source: viaf type: document term: Cremers, Johannes Franciscus Nicolai͏̈, 1794-1869 version: 2013-07-01T14:07:50Z viafid: '286014815' --- _id: 000b589c85becfc475adc24796a724eb key: HuldénLars1926-|PoemsEnglish&SwedishSelections lc: n91015146 merge: id: 000b589c85becfc475adc24796a724eb source: viaf type: document term: Huldén, Lars, 1926- | Poems. English & Swedish. Selections version: 2013-07-01T14:07:50Z viafid: '175459792' --- _id: 000df8d92f34f05cc4160fa29becca75 dnb: '117604941' key: Birch-HirschfeldFélixVictor1842-1899 merge: id: 000df8d92f34f05cc4160fa29becca75 source: viaf type: document nkc: nlk20000079951 term: Birch-Hirschfeld, Félix Victor, 1842-1899 version: 2013-07-01T14:07:50Z viafid: '64788748' --- _id: 0013b61a7d0596e2b1aa673a4a916e79 bnf: '12782600' dnb: '133566072' key: PerkovićLuka1900-1948 lc: no94032408 merge: id: 0013b61a7d0596e2b1aa673a4a916e79 source: viaf type: document nkc: js2007409740 term: Perković, Luka, 1900-1948 version: 2013-07-01T14:07:50Z viafid: '50419725' --- _id: 00165496a9ff6e91a2ab41120d2f6ee3 bav: adv10190502 bnf: '11896108' dnb: '116488808' key: CharavayÉtienne1848-1899 lc: n50036362 merge: id: 00165496a9ff6e91a2ab41120d2f6ee3 source: viaf type: document nlilat: '000408740' ptbnp: '31707' term: Charavay, Étienne, 1848-1899 version: 2013-07-01T14:07:50Z viafid: '44296659' --- _id: 00178c20ba1320201f9e073b80997f41 dnb: '136566871' key: GüntherAlfred1885-1969 merge: id: 00178c20ba1320201f9e073b80997f41 source: viaf type: document term: Günther, Alfred 1885-1969 version: 2013-07-01T14:07:50Z viafid: '80889375' --- _id: 001e040384826d3da680b19cd354a0d9 bav: adv11138955 bnf: '11997069' dnb: '187052409' key: RondetLaurent-Étienne1717-1785 lc: nr97032882 merge: id: 001e040384826d3da680b19cd354a0d9 source: viaf type: document nkc: xx0120410 nlilat: '000112915' ptbnp: '110413' term: Rondet, Laurent-Étienne, 1717-1785 version: 2013-07-01T14:07:50Z viafid: '27074636' --- _id: 001e0fff1b755a9215b723dca2bb1ee6 bav: adv10218806 bne: xx1723390 bnf: '12683851' dnb: '121829855' key: HerczegFrançois1863-1954 lc: n90701048 merge: id: 001e0fff1b755a9215b723dca2bb1ee6 source: viaf type: document nkc: jn20011018054 nlilat: '000062293' ptbnp: '196118' selibr: '242495' term: Herczeg, François, 1863-1954 version: 2013-07-01T14:07:50Z viafid: '55013830' --- _id: 00219ae462575e719052d408162e98e0 bnf: '13200607' dnb: '102129029' key: BédarrideJassuda(1804-1882) lc: n2001080239 merge: id: 00219ae462575e719052d408162e98e0 source: viaf type: document nlilat: '000542886' term: Bédarride, Jassuda (1804-1882) version: 2013-07-01T14:07:50Z viafid: '51833963' --- _id: 002cf6accb75882d1ed22f5452d8f259 bnf: '12870138' dnb: '102046670' key: BonnefoyGeorges-Frédéric1912-1940 merge: id: 002cf6accb75882d1ed22f5452d8f259 source: viaf type: document ptbnp: '281726' term: Bonnefoy, Georges-Frédéric 1912-1940 version: 2013-07-01T14:07:50Z viafid: '7766341' --- _id: 002dea50b3f266abac7ec30d98798475 dnb: '116299711' key: Boutron-CharlardAntoineFrançois1796-1878 lc: n2001066126 merge: id: 002dea50b3f266abac7ec30d98798475 source: viaf type: document term: Boutron-Charlard, Antoine François, 1796-1878 version: 2013-07-01T14:07:50Z viafid: '30284368' --- _id: 002eba15c808652b79874eeb7e17b988 bnf: '12261878' dnb: '138813000' key: TivārīBholānātha1923-1989 lc: n81131613 merge: id: 002eba15c808652b79874eeb7e17b988 source: viaf type: document nla: '000035934276' term: Tivārī, Bholānātha, 1923-1989 version: 2013-07-01T14:07:50Z viafid: '95327374' --- _id: 002fae3d46c56bc32074b9884a50d774 egaxa: vtls001520916 key: IbnḤamzahal-ḤusaynīMuḥammadibnʻAlī1315or16-1363or4 lc: nr94011509 merge: id: 002fae3d46c56bc32074b9884a50d774 source: viaf type: document term: Ibn Ḥamzah al-Ḥusaynī, Muḥammad ibn ʻAlī, 1315 or 16-1363 or 4 version: 2013-07-01T14:07:50Z viafid: '90074758' --- _id: 003337252569cd6250932d0dbaf375f4 bav: adv10013430 bnf: '14617737' dnb: '100080154' key: CéspedesyMenesesGonzalode(1585?-1638) lc: n79082325 merge: id: 003337252569cd6250932d0dbaf375f4 source: viaf type: document nla: '000035685799' nlilat: '000421700' ptbnp: '143893' term: Céspedes y Meneses, Gonzalo de (1585?-1638) version: 2013-07-01T14:07:50Z viafid: '61801401' --- _id: 003d3db2d4780e54cf31c41cd18392c2 dnb: '172818028' key: PenardEugène1855-1954 lc: n83198913 merge: id: 003d3db2d4780e54cf31c41cd18392c2 source: viaf type: document term: Penard, Eugène, 1855-1954 version: 2013-07-01T14:07:50Z viafid: '8769267' --- _id: 003f4cb46c6613d9de006b32c5f6f6b9 bne: xx1454220 bnf: '11926771' dnb: '118623249' key: TolstajaSofʹjaAndreevna1844-1919 lc: n80015575 merge: id: 003f4cb46c6613d9de006b32c5f6f6b9 source: viaf type: document nkc: js20020925104 nla: '000035552200' nlicyr: '000157016' nlilat: '000258315' selibr: '319364' term: Tolstaja, Sofʹja Andreevna, 1844-1919 version: 2013-07-01T14:07:50Z viafid: '95319193' --- _id: 004178271c2df5a7df2de345c8113b50 bav: adv11188069 bnf: '11927355' dnb: '118803530' key: D'UrféHonoré1567-1625 lc: n50045789 merge: id: 004178271c2df5a7df2de345c8113b50 source: viaf type: document nkc: kup19970000104861 nla: '000035573949' nlilat: '000380043' selibr: '265671' swnl: vtls002461341 term: D'Urfé, Honoré, 1567-1625 version: 2013-07-01T14:07:50Z viafid: '41847426' --- _id: 004cac7bf9a0794bfeb7ed5be58dcf1b bnf: '11913061' dnb: '123607248' key: LindonJérôme1925-2001 lc: no2003108373 merge: id: 004cac7bf9a0794bfeb7ed5be58dcf1b source: viaf type: document nlilat: '000084776' term: Lindon, Jérôme, 1925-2001 version: 2013-07-01T14:07:50Z viafid: '925444' --- _id: 0053de622eea0100fb2eb3f4a6bdb534 bav: adv10295539 dnb: '119068125' key: DuJonFrançois1589-1677 lc: n85029600 merge: id: 0053de622eea0100fb2eb3f4a6bdb534 source: viaf type: document nla: '000035130172' nlilat: '000072604' selibr: '205901' term: Du Jon, François, 1589-1677 version: 2013-07-01T14:07:50Z viafid: '64809369' --- _id: 00569dab85da747fcdb418300e7c569b dnb: '953369633' key: SchubigerJürg1936-|MutterVaterichundsie merge: id: 00569dab85da747fcdb418300e7c569b source: viaf type: document term: Schubiger, Jürg 1936- | Mutter, Vater, ich und sie version: 2013-07-01T14:07:50Z viafid: '201883509' --- _id: 0058bd99f68ea65204778ed323dc149b bav: adv10137756 dnb: '186043759' jpg: '500029199' key: BriseuxCharlesÉtienned1754 lc: n00007483 merge: id: 0058bd99f68ea65204778ed323dc149b source: viaf type: document nlilat: '000540445' term: Briseux, Charles Étienne, d. 1754 version: 2013-07-01T14:07:50Z viafid: '88831859' --- _id: 0058fa8d00edab625ff22a3659d6f7ac dnb: '118789783' key: PašićNikola1845-1926 lc: nb2008015928 merge: id: 0058fa8d00edab625ff22a3659d6f7ac source: viaf type: document nkc: xx0057289 nlicyr: '000155017' term: Pašić, Nikola, 1845-1926 version: 2013-07-01T14:07:50Z viafid: '79400033' --- _id: 006dd4724ee4b28e0c4efebc02d202e4 bav: adv10981672 bnf: '12515550' dnb: '120359472' key: LaCrozeMaturinVeyssière1661-1739 lc: n85050076 merge: id: 006dd4724ee4b28e0c4efebc02d202e4 source: viaf type: document nlilat: '000468062' ptbnp: '93831' selibr: '314208' term: La Croze, Maturin Veyssière, 1661-1739 version: 2013-07-01T14:07:50Z viafid: '95298985' --- _id: 007076e7bb91b1fd5bfa57be6c8ce128 bav: adv10013850 bne: xx1028057 bnf: '11885765' dnb: 11866381x key: BlascoIbáñezVicente1867-1928 lc: n79046157 merge: id: 007076e7bb91b1fd5bfa57be6c8ce128 source: viaf type: document nkc: jn19990210116 nla: '000035019329' nlilat: '000419198' ptbnp: '14615' selibr: '41428' term: Blasco Ibáñez, Vicente, 1867-1928 version: 2013-07-01T14:07:50Z viafid: '73848096' --- _id: 007abb840ab1d99e404905d46e2fe0ab dnb: '118659200' jpg: '500009404' key: BöhmG1920-(Gottfried) lc: n83200201 merge: id: 007abb840ab1d99e404905d46e2fe0ab source: viaf type: document nkc: xx0148421 nla: '000035629647' term: Böhm, G., 1920-, (Gottfried) version: 2013-07-01T14:07:50Z viafid: '92946938' --- _id: 007c84c975d7d7d8b0dbd39f4b5677f3 bnf: '12429899' dnb: '117129577' key: ImbeauxÉdouard1861-1943 merge: id: 007c84c975d7d7d8b0dbd39f4b5677f3 source: viaf type: document term: Imbeaux, Édouard 1861-1943 version: 2013-07-01T14:07:50Z viafid: '3240370' --- _id: 0085551a4373ccc974a09e93636014a5 bnf: '12121627' dnb: '123971926' key: BockJean-Nicolas-Étienne1747-1809baronde lc: nr93015941 merge: id: 0085551a4373ccc974a09e93636014a5 source: viaf type: document nla: '000035658443' term: Bock, Jean-Nicolas-Étienne, 1747-1809, baron de version: 2013-07-01T14:07:50Z viafid: '14803247' --- _id: 008af10b9f92f2721de64fafbe9a5393 bav: adv10014111 dnb: '100523978' key: MēniatēsĒlias1669-1714 lc: no2004087174 merge: id: 008af10b9f92f2721de64fafbe9a5393 source: viaf type: document nla: '000035903858' term: Mēniatēs, Ēlias, 1669-1714 version: 2013-07-01T14:07:50Z viafid: '5276181' --- _id: 0098590bd207438e215ff270570076c9 bav: adv10170091 bne: xx1155596 bnf: '12793687' dnb: '124822061' key: BühlerCurtF(1905-1985) lc: n84234191 merge: id: 0098590bd207438e215ff270570076c9 source: viaf type: document nkc: xx0156884 nla: '000035023507' nlilat: '000465632' term: Bühler, Curt F. (1905-1985) version: 2013-07-01T14:07:50Z viafid: '108162446' --- _id: 009c66983e73a1022216d8e9da92c627 dnb: '172481813' key: ArctMichał1840-1916 lc: nr95017051 merge: id: 009c66983e73a1022216d8e9da92c627 source: viaf type: document nkc: kup20030000002549 nlilat: '000529199' term: Arct, Michał, 1840-1916 version: 2013-07-01T14:07:50Z viafid: '84500136' --- _id: 009ea10291e96a7930d546f6b9fc04f0 key: MoriKōichi1928-|ZusetsuNihonnokodai lc: n88524930 merge: id: 009ea10291e96a7930d546f6b9fc04f0 source: viaf type: document term: Mori, Kōichi, 1928- | Zusetsu Nihon no kodai version: 2013-07-01T14:07:50Z viafid: '185149790' --- _id: 00ba74c3ce9aa261d62b4a8e0cfc7515 bav: adv11094436 bnf: '11920025' dnb: '118594915' key: PlatterFélix(1536-1614) lc: n50054102 merge: id: 00ba74c3ce9aa261d62b4a8e0cfc7515 source: viaf type: document nkc: jn20000720231 nlilat: '000412483' ptbnp: '1383987' selibr: '287722' swnl: vtls003990685 term: Platter, Félix (1536-1614) version: 2013-07-01T14:07:50Z viafid: '47796696' --- _id: 00bbd4c9fcfa53d2c5d652440936e16c bnf: '10114286' dnb: '119054116' key: DeBockEugène1889-1981 lc: n84091160 merge: id: 00bbd4c9fcfa53d2c5d652440936e16c source: viaf type: document term: De Bock, Eugène, 1889-1981 version: 2013-07-01T14:07:50Z viafid: '57416427' --- _id: 00c55b18ce4e4072116a15995957804d dnb: '118887238' key: AdarjukovVladimirJakovlevič1863-1932 merge: id: 00c55b18ce4e4072116a15995957804d source: viaf type: document nkc: jx20120807001 term: Adarjukov, Vladimir Jakovlevič, 1863-1932 version: 2013-07-01T14:07:50Z viafid: '234424631' --- _id: 00c6e2a7cf333315ce06e7ce24c29225 bnf: '13624301' dnb: '103250182' key: KaddariMenaḥemZevi1925-2011 lc: n82222169 merge: id: 00c6e2a7cf333315ce06e7ce24c29225 source: viaf type: document nkc: uk2006335026 nla: '000035314797' nliheb: '000211495' nlilat: '000072890' term: Kaddari, Menaḥem Zevi 1925-2011 version: 2013-07-01T14:07:50Z viafid: '5109006' --- _id: 00c8cb72ddc81363bd204992ae67f647 key: JoasHans1948-|PraktischeIntersubjektivitätEnglish lc: n85055009 merge: id: 00c8cb72ddc81363bd204992ae67f647 source: viaf type: document term: Joas, Hans, 1948- | Praktische Intersubjektivität. English version: 2013-07-01T14:07:50Z viafid: '174617175' --- _id: 00c8f93e5374df88a55f5359b750ef24 bnf: '11996192' dnb: '129410578' key: MasséPierre1898-1987 lc: n82131779 merge: id: 00c8f93e5374df88a55f5359b750ef24 source: viaf type: document nla: '000035333379' nlilat: '000447735' selibr: '337013' term: Massé, Pierre, 1898-1987 version: 2013-07-01T14:07:50Z viafid: '92140116' --- _id: 00cc5e671df329695a81e8fb1ff03215 dnb: '110393090' key: HögfeldtErik1924-1996 lc: n86841597 merge: id: 00cc5e671df329695a81e8fb1ff03215 source: viaf type: document selibr: '202403' term: Högfeldt, Erik, 1924-1996 version: 2013-07-01T14:07:50Z viafid: '109538232' --- _id: 00e1747adc8a0d1c67afbd07e80c7289 key: ArzelièsHenri1913-|CinématiquerelativisteEnglish lc: n83828216 merge: id: 00e1747adc8a0d1c67afbd07e80c7289 source: viaf type: document term: Arzeliès, Henri, 1913- | Cinématique relativiste. English version: 2013-07-01T14:07:50Z viafid: '181460192' --- _id: 00e5b4b32f9690192b7a4a20d8c61dd0 bav: adv11553545 bne: xx930503 bnf: '12176122' dnb: '120523701' key: GómezValderramaPedro1923-1992 lc: n80129074 merge: id: 00e5b4b32f9690192b7a4a20d8c61dd0 source: viaf type: document nkc: jx20060503002 ptbnp: '167386' term: Gómez Valderrama, Pedro, 1923-1992 version: 2013-07-01T14:07:50Z viafid: '9890240' --- _id: 00f6741c301df97fb2b480db98f71df1 bnf: '15365095' key: SchiötzOskarEmil1846-19? merge: id: 00f6741c301df97fb2b480db98f71df1 source: viaf type: document term: Schiötz, Oskar Emil 1846-19..? version: 2013-07-01T14:07:50Z viafid: '15074618' --- _id: 00ff3f71c3e341af27d2136061ce4589 bnf: '13005068' dnb: '122192273' key: DuprédeSaint-MaurNicolas-François1695-1774 lc: n85246249 merge: id: 00ff3f71c3e341af27d2136061ce4589 source: viaf type: document nla: '000049682934' nlilat: '000473385' term: Dupré de Saint-Maur, Nicolas-François, 1695-1774 version: 2013-07-01T14:07:50Z viafid: '49357530' --- _id: 0102f8fc6cdd5127baa7053b97563ea6 key: AguilarCamínHéctor1946-|Selections2007 lc: no2009155941 merge: id: 0102f8fc6cdd5127baa7053b97563ea6 source: viaf type: document term: Aguilar Camín, Héctor, 1946- | Selections. 2007 version: 2013-07-01T14:07:50Z viafid: '177703214' --- _id: 010334aa33d19f5d9407db5de374dcb6 bnf: '13324011' dnb: '129834661' key: GillotdeSainctongeLouise-Geneviève1650-1718 lc: nr2001031968 merge: id: 010334aa33d19f5d9407db5de374dcb6 source: viaf type: document nkc: jo2004214984 ptbnp: '950339' term: Gillot de Sainctonge, Louise-Geneviève, 1650-1718 version: 2013-07-01T14:07:50Z viafid: '95333931' --- _id: 010d9ed639f425180e7328befd781d11 bnf: '12475023' dnb: '118949322' key: DygasińskiAdolf(1839-1902) lc: n82018247 merge: id: 010d9ed639f425180e7328befd781d11 source: viaf type: document nlilat: '000442420' term: Dygasiński, Adolf (1839-1902) version: 2013-07-01T14:07:50Z viafid: '8187131' --- _id: 010fd53ed0dc23e0fdad640b23d14ee0 bav: adv10220834 bne: xx965506 bnf: '16194028' dnb: '120228688' key: GarcíaVilladaZacarías1879-1936 lc: n79061275 merge: id: 010fd53ed0dc23e0fdad640b23d14ee0 source: viaf type: document nla: '000035862234' nlilat: '000420300' ptbnp: '88786' term: García Villada, Zacarías, 1879-1936 version: 2013-07-01T14:07:50Z viafid: '54973517' --- _id: 01130c0c62fdf6c28a74dfb0edc3f776 bnf: '11906034' dnb: '128603585' key: GroueffStéphane1922-2006 lc: n50031027 merge: id: 01130c0c62fdf6c28a74dfb0edc3f776 source: viaf type: document nkc: xx0123321 nlilat: '000407419' ptbnp: '412507' term: Groueff, Stéphane, 1922-2006 version: 2013-07-01T14:07:50Z viafid: '111740137' --- _id: 0116f800e73598ce4e24cdaebf3a74e1 bnf: '11919341' dnb: '115635572' key: PesselierCharles-Étienne1712-1763 lc: no91006000 merge: id: 0116f800e73598ce4e24cdaebf3a74e1 source: viaf type: document nla: '000036591984' term: Pesselier, Charles-Étienne, 1712-1763 version: 2013-07-01T14:07:50Z viafid: '12313544' --- _id: 0137d710d4034a3d74a24a34d17546df bav: adv10234074 bnf: '12524422' dnb: 17205060x key: DuranddeMaillanePièrreToussaint1729-1814 lc: n88070893 merge: id: 0137d710d4034a3d74a24a34d17546df source: viaf type: document nla: '000048864378' nlilat: '000492838' ptbnp: '96138' term: Durand de Maillane, Pièrre Toussaint, 1729-1814 version: 2013-07-01T14:07:50Z viafid: '29642211' --- _id: 0138b8ea4af09a51096be3f08d5ebfdd key: KöhlerBarbara1959-|PoemsPolishSelections lc: no2009074709 merge: id: 0138b8ea4af09a51096be3f08d5ebfdd source: viaf type: document term: Köhler, Barbara, 1959- | Poems. Polish. Selections version: 2013-07-01T14:07:50Z viafid: '184975882' --- _id: 01399bc902f25cfb19796c63674a8b1e key: DonnerJörn1933-|SverigebokenFinnish merge: id: 01399bc902f25cfb19796c63674a8b1e source: viaf type: document nla: '000035619622' term: Donner, Jörn, 1933- | Sverigeboken. Finnish version: 2013-07-01T14:07:50Z viafid: '176963320' --- _id: 013cac6edc02893f777949a2ffc6de31 key: HaleyGeorge1927-|VicenteEspinelandMarcosdeObregónSpanish lc: n95033509 merge: id: 013cac6edc02893f777949a2ffc6de31 source: viaf type: document term: Haley, George, 1927- | Vicente Espinel and Marcos de Obregón. Spanish version: 2013-07-01T14:07:50Z viafid: '183974757' --- _id: 014604935af0add6b17f4202669f016c key: PalasnedeChampeauxJulien-François1736-1795 lc: nr2004008946 merge: id: 014604935af0add6b17f4202669f016c source: viaf type: document term: Palasne de Champeaux, Julien-François, 1736-1795 version: 2013-07-01T14:07:50Z viafid: '39325406' --- _id: 0151b48dc7132c28ba92a926e29eecaa bnf: '10362029' dnb: '101631642' key: LiétardAlfred1872-1912 merge: id: 0151b48dc7132c28ba92a926e29eecaa source: viaf type: document term: Liétard, Alfred, 1872-1912 version: 2013-07-01T14:07:50Z viafid: '29523021' --- _id: 015370e084f0eb48fa5bfc0725888a54 bnf: '12167546' dnb: '103166947' key: SkiadásAristóxenosD1932-1994 lc: n86132338 merge: id: 015370e084f0eb48fa5bfc0725888a54 source: viaf type: document term: Skiadás, Aristóxenos D. 1932-1994 version: 2013-07-01T14:07:50Z viafid: '46801304' --- _id: 016d00af5a09543db20630f890b79c09 bne: xx4579605 bnf: '12020978' dnb: '118502751' key: AndersGünther1902-1992 lc: n50021760 merge: id: 016d00af5a09543db20630f890b79c09 source: viaf type: document nkc: jn19990000170 nla: '000035006238' nlilat: '000010121' term: Anders, Günther, 1902-1992 version: 2013-07-01T14:07:50Z viafid: '9859892' --- _id: 0170a05570660425ba9ee207cdda26ed bne: xx956783 bnf: '12130823' dnb: '118555197' key: IbárruriDolores1895-1989 lc: n79066727 merge: id: 0170a05570660425ba9ee207cdda26ed source: viaf type: document nkc: jn19990210294 nla: '000035828136' ptbnp: '38757' term: Ibárruri, Dolores 1895-1989 version: 2013-07-01T14:07:50Z viafid: '109366304' --- _id: 017403306a10ef9ca58ad35fb3a756fc bav: adv10989620 bnf: '12624546' dnb: '119344238' egaxa: vtls000783338 key: MāwardīʻAlīibnMuḥammad974?-1058 lc: n83162975 merge: id: 017403306a10ef9ca58ad35fb3a756fc source: viaf type: document nla: '000035551157' nliara: '000003490' nlilat: '000455598' selibr: '195610' term: Māwardī, ʻAlī ibn Muḥammad, 974?-1058 version: 2013-07-01T14:07:50Z viafid: '34578551' --- _id: 017ac3329e3f4ada5e521fe1c73e2f12 bne: xx1095217 bnf: '11900058' dnb: '118671774' key: DhôtelAndré1900-1991 lc: n50001694 merge: id: 017ac3329e3f4ada5e521fe1c73e2f12 source: viaf type: document nkc: ola2002161472 nla: '000035035366' ptbnp: '83297' selibr: '313469' term: Dhôtel, André, 1900-1991 version: 2013-07-01T14:07:50Z viafid: '109123195' --- _id: 017e34f753aad0bf826ac2e1f641cd93 bav: adv10877220 bnf: '12380380' dnb: '116860618' key: LégerLouis1843-1923 lc: n86037863 merge: id: 017e34f753aad0bf826ac2e1f641cd93 source: viaf type: document nkc: jo20000080640 nla: '000036038833' nlilat: '000252572' ptbnp: '93052' term: Léger, Louis, 1843-1923 version: 2013-07-01T14:07:50Z viafid: '7470950' --- _id: 0183f1e24cd55e5d3ccab0dbf333ee84 bnf: '15325222' dnb: 11757628x key: Guérin-MénevilleF-E1799-1874 lc: no97031324 merge: id: 0183f1e24cd55e5d3ccab0dbf333ee84 source: viaf type: document nla: '000035599649' ptbnp: '1174734' term: Guérin-Méneville, F.-E., 1799-1874 version: 2013-07-01T14:07:50Z viafid: '51823869' --- _id: 0185d13b2692e09ad66257dd7ffa6f67 key: KonwickiTadeusz(1926-)|Kronikawypadkówmiłosnych(niem) merge: id: 0185d13b2692e09ad66257dd7ffa6f67 source: viaf type: document term: Konwicki, Tadeusz (1926- ). | Kronika wypadków miłosnych (niem.) version: 2013-07-01T14:07:50Z viafid: '293258240' --- _id: 0187a9abfe13e1e0c18c946023b15fe7 bav: adv10126743 bnf: '12442988' dnb: '116081546' key: DésaugiersMarc-Antoine1772-1827 lc: n82155075 merge: id: 0187a9abfe13e1e0c18c946023b15fe7 source: viaf type: document nkc: jo2012736072 term: Désaugiers, Marc-Antoine, 1772-1827 version: 2013-07-01T14:07:50Z viafid: '2565306' --- _id: 0193fa290117df6b396336374bc83693 bav: adv12126276 bnf: '12373434' dnb: '116684135' key: HélieFaustin1799-1884 lc: no98117099 merge: id: 0193fa290117df6b396336374bc83693 source: viaf type: document nkc: mub2012720304 nlilat: '000535904' ptbnp: '134032' term: Hélie, Faustin, 1799-1884 version: 2013-07-01T14:07:50Z viafid: '51769095' --- _id: 019503e27dd6d578319ee56e9ba9e0dc dnb: '133168565' key: SudetaĐuro1903-1927 lc: n96092627 merge: id: 019503e27dd6d578319ee56e9ba9e0dc source: viaf type: document term: Sudeta, Đuro, 1903-1927 version: 2013-07-01T14:07:50Z viafid: '23321266' --- _id: 019ab896a7f10f1ea54573ff64efe160 dnb: '100300189' key: LangeFrançois1610-1684 merge: id: 019ab896a7f10f1ea54573ff64efe160 source: viaf type: document term: Lange, François, 1610-1684 version: 2013-07-01T14:07:50Z viafid: '71737590' --- _id: 019b28f85aafb8e61a637601dee9b26e dnb: '131054295' key: ŽábaZbyněk1917-1971 lc: nb2004018264 merge: id: 019b28f85aafb8e61a637601dee9b26e source: viaf type: document nkc: jk01152931 nlilat: '000548565' term: Žába, Zbyněk, 1917-1971 version: 2013-07-01T14:07:50Z viafid: '60203425' --- _id: 019e1992e07862b26ba93c93a8ced5bb bav: adv11997926 dnb: '101800479' key: SillemJéromeAlexandre1840-1912 merge: id: 019e1992e07862b26ba93c93a8ced5bb source: viaf type: document term: Sillem, Jérome Alexandre, 1840-1912 version: 2013-07-01T14:07:50Z viafid: '52066195' --- _id: 01a4e621a9a8a27f012ba0780a2e2d90 bnf: '12430836' dnb: '1028013906' key: DoyenEugène-Louis1859-1916 lc: n2006181494 merge: id: 01a4e621a9a8a27f012ba0780a2e2d90 source: viaf type: document nkc: nlk20000084680 ptbnp: '42436' term: Doyen, Eugène-Louis, 1859-1916 version: 2013-07-01T14:07:50Z viafid: '59175623' --- _id: 01b9647ae81b889b575f1f742ba27be1 key: DupuisSylviane1956-|Géométriedel'illimitéItalian&French lc: n2005027871 merge: id: 01b9647ae81b889b575f1f742ba27be1 source: viaf type: document term: Dupuis, Sylviane, 1956- | Géométrie de l'illimité. Italian & French version: 2013-07-01T14:07:50Z viafid: '182411099' --- _id: 01ba9d2c7c54c506a398e7cefc104101 bav: adv10208072 bne: xx4982218 bnf: '11997296' dnb: 10096673x key: ḲimḥiDaṿid1160-1235 lc: n83120193 merge: id: 01ba9d2c7c54c506a398e7cefc104101 source: viaf type: document nkc: zmp2012739168 nla: '000035487022' nlicyr: '000151969' nliheb: '000185046' nlilat: '000075925' selibr: '67124' term: Ḳimḥi, Daṿid 1160-1235 version: 2013-07-01T14:07:50Z viafid: '100213323' --- _id: 01c0b5d1fc65e8024030705d90e04dce bav: adv10999914 dnb: '117162442' key: MühlenbruchChristianFriedrich1785-1843 lc: n88158350 merge: id: 01c0b5d1fc65e8024030705d90e04dce source: viaf type: document term: Mühlenbruch, Christian Friedrich, 1785-1843 version: 2013-07-01T14:07:50Z viafid: '25372370' --- _id: 01c0be95ee14379060549d4c25930a51 dnb: '118685856' key: FajtlFrantišek1912-2006 lc: n81071340 merge: id: 01c0be95ee14379060549d4c25930a51 source: viaf type: document nkc: jk01030702 term: Fajtl, František, 1912-2006 version: 2013-07-01T14:07:50Z viafid: '10640038' --- _id: 01c999074161aafa0c1c1b0bf549a3a8 bav: adv10302188 bnf: '12812981' dnb: '100141242' key: GenesiosIōsēphfl912-959 lc: n79097681 merge: id: 01c999074161aafa0c1c1b0bf549a3a8 source: viaf type: document nkc: mzk2010591943 nlilat: '000052068' selibr: '188110' term: Genesios, Iōsēph, fl. 912-959 version: 2013-07-01T14:07:50Z viafid: '61674606' --- _id: 01ca0773ba48560b5446604309741f47 dnb: 14124612x key: PāṇḍeHemarājafl1653-1668 lc: no00048010 merge: id: 01ca0773ba48560b5446604309741f47 source: viaf type: document term: Pāṇḍe, Hemarāja, fl. 1653-1668 version: 2013-07-01T14:07:50Z viafid: '43843943' --- _id: 01d1a6bf1c7e030cc7657fb33e9f435a dnb: '132784351' key: MückenhausenEduard1907-2005 merge: id: 01d1a6bf1c7e030cc7657fb33e9f435a source: viaf type: document term: Mückenhausen, Eduard 1907-2005 version: 2013-07-01T14:07:50Z viafid: '38088553' --- _id: 01d5eb572db333f314833e64d543746d dnb: '107338521' key: SchütrumpfRudolf1909-1986 lc: nr90014039 merge: id: 01d5eb572db333f314833e64d543746d source: viaf type: document term: Schütrumpf, Rudolf 1909-1986 version: 2013-07-01T14:07:50Z viafid: '295184373' --- _id: 01db9063aadeeba96c253a2945be425a bnf: '16235605' dnb: '128958499' key: RulfJiří1947-2007 lc: n94021539 merge: id: 01db9063aadeeba96c253a2945be425a source: viaf type: document nkc: jn19990209730 term: Rulf, Jiří, 1947-2007 version: 2013-07-01T14:07:50Z viafid: '5998335' --- _id: 01ea9bcb6988461fb0fc1dfdfc0c54fc bav: adv11306465 bnf: '12173399' dnb: '128367512' key: TilenusDanie͏̈l1563-1633 lc: no88000851 merge: id: 01ea9bcb6988461fb0fc1dfdfc0c54fc source: viaf type: document nlilat: '000514751' selibr: '277129' term: Tilenus, Danie͏̈l, 1563-1633 version: 2013-07-01T14:07:50Z viafid: '41881844' --- _id: 01efe43dda330b454b026f1522af5888 bnf: '12134625' dnb: '119068958' key: DomjanićDragutin1875-1933 lc: n87125111 merge: id: 01efe43dda330b454b026f1522af5888 source: viaf type: document nkc: js2007382460 term: Domjanić, Dragutin, 1875-1933 version: 2013-07-01T14:07:50Z viafid: '13109569' --- _id: 01f0a8973b22b75443dc0fd16727d9a9 bav: adv10185646 bnf: '13482665' dnb: '123479274' key: PetròcchiPolicarpo1852-1902 lc: n93118836 merge: id: 01f0a8973b22b75443dc0fd16727d9a9 source: viaf type: document nkc: xx0003720 nla: '000035075467' nlilat: '000510480' selibr: '281630' term: Petròcchi, Policarpo 1852-1902 version: 2013-07-01T14:07:50Z viafid: '11882482' --- _id: 01f3406f114f535167ab44e24f764ee8 dnb: '133088588' key: KöhlerJochen(1944-2007) lc: n80038798 merge: id: 01f3406f114f535167ab44e24f764ee8 source: viaf type: document nlilat: '000286884' term: Köhler, Jochen (1944-2007) version: 2013-07-01T14:07:50Z viafid: '3652649' --- _id: 01f6f82561aa134233d13eb97350f21e dnb: '118829181' key: ArtigasJoséGervasio1764-1850 lc: n50001870 merge: id: 01f6f82561aa134233d13eb97350f21e source: viaf type: document nkc: pna2006322488 nla: '000035094111' nlilat: '000011996' term: Artigas, José Gervasio, 1764-1850 version: 2013-07-01T14:07:50Z viafid: '64804413' --- _id: 0200082478ad4c65a70665600ccb4a5a dnb: '135655714' key: HöglundZeth1884-1956 merge: id: 0200082478ad4c65a70665600ccb4a5a source: viaf type: document selibr: '210553' term: Höglund, Zeth, 1884-1956 version: 2013-07-01T14:07:50Z viafid: '15992916' --- _id: 02014b6f6f34229b0eab783d4f5967ac bav: adv10176119 bnf: '12948897' dnb: '118839977' key: EssenLéonvander1883-1963 lc: no96045632 merge: id: 02014b6f6f34229b0eab783d4f5967ac source: viaf type: document nkc: xx0102999 nla: '000050002915' ptbnp: '264199' term: Essen, Léon van der, 1883-1963 version: 2013-07-01T14:07:50Z viafid: '22272593' --- _id: 020971cf95093bf96980b0e38c1e230b bav: adv11019655 bnf: '11076597' dnb: '117559768' jpg: '500047988' key: MazoisFrançois1783-1826 lc: nr97017047 merge: id: 020971cf95093bf96980b0e38c1e230b source: viaf type: document term: Mazois, François, 1783-1826 version: 2013-07-01T14:07:50Z viafid: '54140480' --- _id: 020cb175cf01a0620e67def4d81d7083 dnb: '152093338' key: TingströmBertel1912-2004 lc: n84219321 merge: id: 020cb175cf01a0620e67def4d81d7083 source: viaf type: document selibr: '200168' term: Tingström, Bertel, 1912-2004 version: 2013-07-01T14:07:50Z viafid: '30951839' --- _id: 0216d129d11cb2b59089114826e2dce6 bav: adv10006228 bnf: '16215913' dnb: '136358756' key: BörnerFriedrich1723-1761 merge: id: 0216d129d11cb2b59089114826e2dce6 source: viaf type: document nkc: mzk2010589930 nlilat: '000022381' term: Börner, Friedrich, 1723-1761 version: 2013-07-01T14:07:50Z viafid: '80716903' --- _id: 0217fd48022674cec08b7c4702cb8fe0 bnf: '12261202' dnb: '118995782' key: ZábranaJan1931-1984 lc: n84184266 merge: id: 0217fd48022674cec08b7c4702cb8fe0 source: viaf type: document nkc: jz8001457 term: Zábrana, Jan, 1931-1984 version: 2013-07-01T14:07:50Z viafid: '71448238' --- _id: 0225c0e0b8331307c978addd3c190fb0 egaxa: vtls000821692 key: Ibnal-ḤājjMuḥammadibnMuḥammadd1336 lc: n89239785 merge: id: 0225c0e0b8331307c978addd3c190fb0 source: viaf type: document term: Ibn al-Ḥājj, Muḥammad ibn Muḥammad, d. 1336 version: 2013-07-01T14:07:50Z viafid: '26198000' --- _id: 0229c939fcf37b8171d358b67cddacd9 bav: adv10133548 bne: xx850854 bnf: '13474481' dnb: 11949924x key: FétisFrançois-Joseph1784-1871 lc: n82246099 merge: id: 0229c939fcf37b8171d358b67cddacd9 source: viaf type: document nkc: mzk2003174055 nla: '000035082386' nlilat: '000050348' ptbnp: '153635' selibr: '186825' term: Fétis, François-Joseph, 1784-1871 version: 2013-07-01T14:07:50Z viafid: '69078568' --- _id: 022a70c29f317f37b68c87d89504101b bav: adv10193885 bnf: '12176473' dnb: '100282881' key: FerrièreClaudeJosephdedca1748 lc: n88002655 merge: id: 022a70c29f317f37b68c87d89504101b source: viaf type: document nlilat: '000491499' ptbnp: '98028' term: Ferrière, Claude Joseph de, d. ca. 1748 version: 2013-07-01T14:07:50Z viafid: '2514410' --- _id: 02355c2ceeb3300a38f376cc341c300b bnf: '12036429' dnb: 17361843x key: GilbertAlan1944-spécialistedel'Amériquelatine lc: n80112938 merge: id: 02355c2ceeb3300a38f376cc341c300b source: viaf type: document nkc: kup19950000031479 nla: '000035123545' nlilat: '000430906' ptbnp: '569207' term: Gilbert, Alan 1944-.... spécialiste de l'Amérique latine version: 2013-07-01T14:07:50Z viafid: '61607588' --- _id: 023ed3e06a7aeaedcf108011421d1cb2 bnf: '14333881' dnb: '117178756' key: MünterBalthasar1735-1793 lc: nr93027643 merge: id: 023ed3e06a7aeaedcf108011421d1cb2 source: viaf type: document nkc: mzk2010579552 nla: '000035325601' term: Münter, Balthasar, 1735-1793 version: 2013-07-01T14:07:50Z viafid: '17992858' --- _id: 024c5736a5557d4e35622e47793706ca bnf: '12357938' dnb: '120076276' key: ThümmigLudwigPhilipp1697-1728 lc: n83300950 merge: id: 024c5736a5557d4e35622e47793706ca source: viaf type: document nkc: nlk20010102907 nlilat: '000131357' term: Thümmig, Ludwig Philipp, 1697-1728 version: 2013-07-01T14:07:50Z viafid: '56686391' --- _id: 02526d0e1cee01de2d7a09f52b536056 key: BánkZsuzsa1965-|SchwimmerHungarian lc: no2006071929 merge: id: 02526d0e1cee01de2d7a09f52b536056 source: viaf type: document term: Bánk, Zsuzsa, 1965- | Schwimmer. Hungarian version: 2013-07-01T14:07:50Z viafid: '177676627' --- _id: 02581c0f4c008827aa22b353e7d4c137 bav: adv10216063 bne: xx1068385 bnf: '12138603' dnb: '118672770' key: DupanloupFélix1802-1878 lc: n83025558 merge: id: 02581c0f4c008827aa22b353e7d4c137 source: viaf type: document nkc: jn20000700452 nla: '000035267699' nlilat: '000452277' term: Dupanloup, Félix, 1802-1878 version: 2013-07-01T14:07:50Z viafid: '27102015' --- _id: 02591d96186457508c5e96f01ef957d6 bnf: '12291175' key: CouderAndré(1897-1979) merge: id: 02591d96186457508c5e96f01ef957d6 source: viaf type: document term: Couder, André (1897-1979) version: 2013-07-01T14:07:50Z viafid: '64069592' --- _id: 025e78ffafe0bdde6be6d97db22c4226 key: HirdmanYvonne1943-|TänkandehjärtatEnglish lc: n2007088491 merge: id: 025e78ffafe0bdde6be6d97db22c4226 source: viaf type: document term: Hirdman, Yvonne, 1943- | Tänkande hjärtat. English version: 2013-07-01T14:07:50Z viafid: '176771452' --- _id: 025e94e995c02a62abd0d6462fbad9ad bav: adv10259974 bnf: '12159197' dnb: '119071606' key: OehlenschlägerAdamGottlieb1779-1850 lc: n79109270 merge: id: 025e94e995c02a62abd0d6462fbad9ad source: viaf type: document nkc: mzk2005299319 nla: '000035975049' nlilat: '000423229' selibr: '219031' term: Oehlenschläger, Adam Gottlieb, 1779-1850 version: 2013-07-01T14:07:50Z viafid: '27105324' --- _id: 02645d03181fc8a250edea063d492ef8 bav: adv10955598 dnb: '172243912' key: MʹCrieThomas1772-1835 lc: n89607204 merge: id: 02645d03181fc8a250edea063d492ef8 source: viaf type: document nkc: skuk0004030 nla: '000035561825' term: MʹCrie, Thomas, 1772-1835 version: 2013-07-01T14:07:50Z viafid: '18823512' --- _id: 0266163c312d632d56c0fcae54151f06 dnb: '124546420' key: PurmannMatthäusGottfried1649-1711 lc: n83218031 merge: id: 0266163c312d632d56c0fcae54151f06 source: viaf type: document nkc: nlk20010098823 term: Purmann, Matthäus Gottfried, 1649-1711 version: 2013-07-01T14:07:50Z viafid: '84828429' --- _id: 02672a9e05d30a86c5f069e3e9295354 bnf: '16223753' dnb: '1024153797' key: HévinPrudent1715-1789 lc: n84102159 merge: id: 02672a9e05d30a86c5f069e3e9295354 source: viaf type: document ptbnp: '1398774' term: Hévin, Prudent, 1715-1789 version: 2013-07-01T14:07:50Z viafid: '72794021' --- _id: 026848023bcedfaae863fe50728722ed dnb: 11622620x key: BöttgerAdolf1815-1870 lc: no94003344 merge: id: 026848023bcedfaae863fe50728722ed source: viaf type: document nlilat: '000383926' selibr: '283218' term: Böttger, Adolf, 1815-1870 version: 2013-07-01T14:07:50Z viafid: '78353371' --- _id: 0279d6c60a065794970619d534507457 dnb: '117098485' key: ÖhmanIvar1914-1989 lc: n85238338 merge: id: 0279d6c60a065794970619d534507457 source: viaf type: document selibr: '216017' term: Öhman, Ivar, 1914-1989 version: 2013-07-01T14:07:50Z viafid: '6378846' --- _id: 0283b24946c9714314f6adfadb55ee79 key: CastañedaJorgeG1953-|HerenciaEnglish lc: n00089369 merge: id: 0283b24946c9714314f6adfadb55ee79 source: viaf type: document term: Castañeda, Jorge G., 1953- | Herencia. English version: 2013-07-01T14:07:50Z viafid: '181017618' --- _id: 02984840a43ef9528abfc3d51d223e5b key: BermudesJoãod1570|Estahehũabreuerelaçãodaembaisadaq̃opatriarchaDõJoãoBermudeztrouxedoemperadodaEthiopiaEnglish1967 merge: id: 02984840a43ef9528abfc3d51d223e5b source: viaf type: document nla: '000035017867' term: Bermudes, João, d. 1570. | Esta he hũa breue relação da embaisada q̃ o patriarcha Dõ João Bermudez trouxe do emperado da Ethiopia. English. 1967 version: 2013-07-01T14:07:50Z viafid: '175740681' --- _id: 029a6f104a614c1e55145c5debb3b1a8 key: DuméesAntoine-François-Joseph1722-1765 lc: no2010051600 merge: id: 029a6f104a614c1e55145c5debb3b1a8 source: viaf type: document term: Dumées, Antoine-François-Joseph, 1722-1765 version: 2013-07-01T14:07:50Z viafid: '108115811' --- _id: 029b89519eea25f1066b7ce722e92b5f dnb: '101855753' key: GensEugène1814-1881 merge: id: 029b89519eea25f1066b7ce722e92b5f source: viaf type: document term: Gens, Eugène, 1814-1881 version: 2013-07-01T14:07:50Z viafid: '49601082' --- _id: 02a27de9a8a199a234c341d0ab789e9e key: TakasakiJikidō1926-|BukkyōnyūmonEnglish lc: n87855665 merge: id: 02a27de9a8a199a234c341d0ab789e9e source: viaf type: document term: Takasaki, Jikidō, 1926- | Bukkyō nyūmon. English version: 2013-07-01T14:07:50Z viafid: '180283929' --- _id: 02a436b4f76421266d42995ff6e73b6f dnb: '101845324' key: ArendtGuillaumeAmédéeAuguste1808-1865 merge: id: 02a436b4f76421266d42995ff6e73b6f source: viaf type: document term: Arendt, Guillaume Amédée Auguste, 1808-1865 version: 2013-07-01T14:07:50Z viafid: '17600005' --- _id: 02a6335cc85d1f2f8475919fa6542d46 bnf: '11953741' dnb: '120115395' key: JunqueiroAbílioManuelGuerra1850-1923 lc: n82036031 merge: id: 02a6335cc85d1f2f8475919fa6542d46 source: viaf type: document nkc: kup19990000045589 nla: '000035383760' ptbnp: '10394' selibr: '65395' term: Junqueiro, Abílio Manuel Guerra, 1850-1923 version: 2013-07-01T14:07:50Z viafid: '22150838' --- _id: 02a9329ae1c79dc270c89dc8cfbf617c bav: adv10112830 bnf: '12006220' dnb: '134073711' key: BellengerFrançois1688-1749 lc: n2011086997 merge: id: 02a9329ae1c79dc270c89dc8cfbf617c source: viaf type: document nkc: ola2008459836 term: Bellenger, François, 1688-1749 version: 2013-07-01T14:07:50Z viafid: '76326749' --- _id: 02aef6485e4b006553e2145b77168e88 key: MarkovAK1858-1920(AlekseĭKonstantinovich)Ochistki︠e︡drevnikhmonet lc: n86095545 merge: id: 02aef6485e4b006553e2145b77168e88 source: viaf type: document term: Markov, A. K. 1858-1920. (Alekseĭ Konstantinovich), O chistki︠e︡ drevnikh monet version: 2013-07-01T14:07:50Z viafid: '178656182' --- _id: 02b8fc16f8e02e1395e955f30c4dd35b bne: xx1050260 bnf: '11986915' key: JuanArbóSebastián1902-1984 lc: n79120237 merge: id: 02b8fc16f8e02e1395e955f30c4dd35b source: viaf type: document nkc: kup19970000002490 nla: '000035255465' nlilat: '000423794' term: Juan Arbó, Sebastián 1902-1984 version: 2013-07-01T14:07:50Z viafid: '66475814' --- _id: 02b93063938f142652e27a73580cc7a3 bav: adv10060933 bne: xx1164567 bnf: '12100980' dnb: '119349981' key: CarranzaBartolomé1503-1576 lc: n81072380 merge: id: 02b93063938f142652e27a73580cc7a3 source: viaf type: document nkc: js20020115050 nlilat: '000437600' ptbnp: '279594' selibr: '245169' term: Carranza, Bartolomé, 1503-1576 version: 2013-07-01T14:07:50Z viafid: '14799490' --- _id: 02bedbd7dee8c7db68327497a6829729 bnf: '12351968' dnb: '117713287' key: MüllerCH1878-1953 lc: n87138140 merge: id: 02bedbd7dee8c7db68327497a6829729 source: viaf type: document nlilat: '000486965' term: Müller, C. H., 1878-1953 version: 2013-07-01T14:07:50Z viafid: '100969846' --- _id: 02c0aff9e788c7e6bf0469f8aefd5a30 bnf: '12638602' dnb: '117468916' key: SecondAlbéric1817-1887 lc: n86005747 merge: id: 02c0aff9e788c7e6bf0469f8aefd5a30 source: viaf type: document nlilat: '000479237' ptbnp: '174894' term: Second, Albéric, 1817-1887 version: 2013-07-01T14:07:50Z viafid: '5052468' --- _id: 02c3f25e744e92af2c42ae5075318d58 bnf: '11895990' dnb: '124336698' key: ChampionEdmé1836-1915 lc: nr91022441 merge: id: 02c3f25e744e92af2c42ae5075318d58 source: viaf type: document nlilat: '000525371' term: Champion, Edmé, 1836-1915 version: 2013-07-01T14:07:50Z viafid: '12306439' --- _id: 02cc2db838db4dda3f67cd78bc8026e2 bav: adv12174762 bne: xx1145509 bnf: '11919776' dnb: '118641654' key: PieyredeMandiarguesAndré1909-1991 lc: n50012843 merge: id: 02cc2db838db4dda3f67cd78bc8026e2 source: viaf type: document nkc: jn20010601136 nla: '000035422942' nlilat: '000105729' ptbnp: '42011' selibr: '196902' term: Pieyre de Mandiargues, André, 1909-1991 version: 2013-07-01T14:07:50Z viafid: '108228000' --- _id: 02ce71786a3011157d12d72bbcb34f90 bav: adv12076465 bnf: '12150892' dnb: '100190065' key: LicquetThéodore1787-1832 lc: n82066662 merge: id: 02ce71786a3011157d12d72bbcb34f90 source: viaf type: document ptbnp: '1201811' term: Licquet, Théodore, 1787-1832 version: 2013-07-01T14:07:50Z viafid: '64044043' --- _id: 02ce868f4f516fb4a653e46e99816c40 bnf: '14958162' dnb: '174299664' key: BénardRobert1734-1777 lc: n2005055169 merge: id: 02ce868f4f516fb4a653e46e99816c40 source: viaf type: document nkc: mzk2008479882 term: Bénard, Robert, 1734-1777 version: 2013-07-01T14:07:50Z viafid: '95887207' --- _id: 02cec247a5a3631d3d4c0afd80738412 dnb: 15915782x key: RivièreHippolyte-Féréol1817-1893 merge: id: 02cec247a5a3631d3d4c0afd80738412 source: viaf type: document term: Rivière, Hippolyte-Féréol, 1817-1893 version: 2013-07-01T14:07:50Z viafid: '245091915' --- _id: 02cfeb71732d4946b84128d95ca78510 bnf: '14540321' dnb: 13215532x egaxa: vtls000837220 key: Ibnal-Ṣalāḥal-ShahrazūrīʻUthmānibnʻAbdal-Raḥmān1181or2-1245 lc: nr92026123 merge: id: 02cfeb71732d4946b84128d95ca78510 source: viaf type: document nliara: '000159024' selibr: '191240' term: Ibn al-Ṣalāḥ al-Shahrazūrī, ʻUthmān ibn ʻAbd al-Raḥmān, 1181 or 2-1245 version: 2013-07-01T14:07:50Z viafid: '79189688' --- _id: 02d0df5b90896e9fb8b51b0e181ea545 bav: adv10891193 bnf: '12356458' dnb: '116628324' key: MacéJean1815-1894 lc: n79072856 merge: id: 02d0df5b90896e9fb8b51b0e181ea545 source: viaf type: document nkc: jx20080820011 nlilat: '000421092' term: Macé, Jean, 1815-1894 version: 2013-07-01T14:07:50Z viafid: '71467271' --- _id: 02f6ca69eb47e98387fed80b7aecae51 dnb: '116769815' key: FrensdorffÉmile1818-1909 merge: id: 02f6ca69eb47e98387fed80b7aecae51 source: viaf type: document term: Frensdorff, Émile 1818-1909 version: 2013-07-01T14:07:50Z viafid: '47521825' --- _id: 02f7e3d58b98af8f8f28fc458e18d895 bav: adv10151332 bnf: '12392284' dnb: '100441386' key: ChéruelAdolphe1809-1891 lc: nr88002431 merge: id: 02f7e3d58b98af8f8f28fc458e18d895 source: viaf type: document nkc: jn19990003834 nla: '000035369149' nlilat: '000522399' ptbnp: '151139' term: Chéruel, Adolphe, 1809-1891 version: 2013-07-01T14:07:50Z viafid: '9931987' --- _id: 02f868a6ed9ab7b8047155bc2a9032cc dnb: '117625507' key: ThoméLudwigWilhelm1841-1910 merge: id: 02f868a6ed9ab7b8047155bc2a9032cc source: viaf type: document term: Thomé, Ludwig Wilhelm 1841-1910 version: 2013-07-01T14:07:50Z viafid: '42620022' --- _id: 02ff177adff46824c9ae122ad6eb06da bav: adv12086761 dnb: '1021987298' key: PetropoulosGeōrgiosAndrea1897-1964 lc: n85250825 merge: id: 02ff177adff46824c9ae122ad6eb06da source: viaf type: document term: Petropoulos, Geōrgios Andrea, 1897-1964 version: 2013-07-01T14:07:50Z viafid: '45750572' --- _id: 03023d40fbc41b8bc99977ec5cd5e545 bnf: '12169328' dnb: '101916345' key: BiollayLéon1830-1920 lc: no94012267 merge: id: 03023d40fbc41b8bc99977ec5cd5e545 source: viaf type: document term: Biollay, Léon, 1830-1920 version: 2013-07-01T14:07:50Z viafid: '114289550' --- _id: 0306f6666be652a7020c3e03c2c65330 bav: adv10196029 bnf: '11903228' dnb: 11925249x key: Foulché-DelboscRaymond1864-1929 lc: n84055843 merge: id: 0306f6666be652a7020c3e03c2c65330 source: viaf type: document nla: '000035823526' nlilat: '000048154' ptbnp: '97621' term: Foulché-Delbosc, Raymond, 1864-1929 version: 2013-07-01T14:07:50Z viafid: '49225549' --- _id: 0308464c956db049c7889c3ba6387329 bav: adv11560152 bnf: '11918661' dnb: '118591819' egaxa: vtls000904154 key: ParrotAndré1901-1980 lc: n50050793 merge: id: 0308464c956db049c7889c3ba6387329 source: viaf type: document nkc: jo2009532273 nla: '000035410238' nlilat: '000103494' ptbnp: '117733' swnl: vtls002276744 term: Parrot, André, 1901-1980 version: 2013-07-01T14:07:50Z viafid: '27069841' --- _id: 030d7f115e474ef8992904d97fe99745 bav: adv11143309 dnb: '1012607119' key: BrøggerAW1884-1951 lc: n83220467 merge: id: 030d7f115e474ef8992904d97fe99745 source: viaf type: document nla: '000035022347' nlilat: '000457472' selibr: '179566' term: Brøgger, A.W. 1884-1951 version: 2013-07-01T14:07:50Z viafid: '114431574' --- _id: 032562f30cb45ed44025a073298197a2 bav: adv10960748 bnf: '12449254' dnb: '172262143' key: MoléGuillaume-François-Roger1742-1790 merge: id: 032562f30cb45ed44025a073298197a2 source: viaf type: document term: Molé, Guillaume-François-Roger, 1742-1790 version: 2013-07-01T14:07:50Z viafid: '5026144' --- _id: 032abb10db700ae25e127d3347cfaf24 bnf: '12238142' dnb: '133376702' key: AnsquerdePonçolHenri-Simon-Joseph1730-1783 lc: nr93015692 merge: id: 032abb10db700ae25e127d3347cfaf24 source: viaf type: document term: Ansquer de Ponçol, Henri-Simon-Joseph, 1730-1783 version: 2013-07-01T14:07:50Z viafid: '9902990' --- _id: 032db208e6a28d65cdf07eed40290f81 bav: adv11096082 bnf: '15523804' dnb: 10148206x key: VanRijnberkGérard1875-1953 lc: n83141475 merge: id: 032db208e6a28d65cdf07eed40290f81 source: viaf type: document nla: '000035209885' nlilat: '000111649' ptbnp: '107800' term: Van Rijnberk, Gérard, 1875-1953 version: 2013-07-01T14:07:50Z viafid: '89366293' --- _id: 032e7ec467d740a16f1dda5d873d6902 bnf: '11490922' dnb: '123462096' key: MesarićKalman(1900-1983) lc: nr98042296 merge: id: 032e7ec467d740a16f1dda5d873d6902 source: viaf type: document term: Mesarić, Kalman (1900-1983) version: 2013-07-01T14:07:50Z viafid: '52597351' --- _id: 032f45bae823d220d1c77d6d62353984 bne: xx897937 bnf: '13892105' dnb: '118668188' key: CampraAndré1660-1744 lc: n81047490 merge: id: 032f45bae823d220d1c77d6d62353984 source: viaf type: document nkc: ola2002158365 nla: '000035648045' nlilat: '000436205' ptbnp: '266076' term: Campra, André, 1660-1744 version: 2013-07-01T14:07:50Z viafid: '74036950' --- _id: 03345478b7fb3bcd2929941c839c126d key: MächlerStefan1957-|FallWilkomirskiEnglish lc: n00026607 merge: id: 03345478b7fb3bcd2929941c839c126d source: viaf type: document term: Mächler, Stefan, 1957- | Fall Wilkomirski. English version: 2013-07-01T14:07:50Z viafid: '180199665' --- _id: 0338eea3c8564130e982240713188bc1 bav: adv10233738 key: DuparcqueFrédéric1788-1879 lc: no2009060497 merge: id: 0338eea3c8564130e982240713188bc1 source: viaf type: document term: Duparcque, Frédéric, 1788-1879 version: 2013-07-01T14:07:50Z viafid: '86377830' --- _id: 0339c2dc53d026bfc62ee1832d2635b9 key: SäfveTorbjörn1941-|Hemligalitteräravärldsakademin lc: n98108337 merge: id: 0339c2dc53d026bfc62ee1832d2635b9 source: viaf type: document term: Säfve, Torbjörn, 1941- | Hemliga litterära världsakademin version: 2013-07-01T14:07:50Z viafid: '174709176' --- _id: 033a1893fa41fe5fa0a7ac78945ebf08 bav: adv10300625 dnb: '123298679' key: BéthunePhilippede(1561-1649) lc: n86031977 merge: id: 033a1893fa41fe5fa0a7ac78945ebf08 source: viaf type: document nkc: jo2003169898 term: Béthune, Philippe de (1561-1649) version: 2013-07-01T14:07:50Z viafid: '51804405' --- _id: 033aa662967208c76ebece545e0a2298 dnb: '1023771381' key: FagelFrançois1740-1773 lc: no2006079310 merge: id: 033aa662967208c76ebece545e0a2298 source: viaf type: document term: Fagel, François, 1740-1773 version: 2013-07-01T14:07:50Z viafid: '9602583' --- _id: 0341dbf68e43de72d2e1d1dceda144ff bav: adv10195864 key: FoucherÉmile1823-1867 merge: id: 0341dbf68e43de72d2e1d1dceda144ff source: viaf type: document ptbnp: '1207402' term: Foucher, Émile, 1823-1867 version: 2013-07-01T14:07:50Z viafid: '88927368' --- _id: 03496ee8c33b042cd5a1098a9916e71b bav: adv11553146 bne: xx1761822 bnf: '14805666' dnb: '118759787' key: Schmidt-GörgJoseph1897-1981 lc: n50006704 merge: id: 03496ee8c33b042cd5a1098a9916e71b source: viaf type: document nla: '000035481242' ptbnp: '927818' term: Schmidt-Görg, Joseph 1897-1981 version: 2013-07-01T14:07:50Z viafid: '111892933' --- _id: 034cc592d68c4366371314ecf545cf56 bnf: '11913182' dnb: '118825127' key: LoaiselTréogateJoseph-Marie1752-1812 lc: n83041861 merge: id: 034cc592d68c4366371314ecf545cf56 source: viaf type: document nlilat: '000452867' term: Loaisel Tréogate, Joseph-Marie, 1752-1812 version: 2013-07-01T14:07:50Z viafid: '4932831' --- _id: 035a0b12e64b89d6f252da841367949c dnb: '158511174' key: BystrzyckiPrzemysław(1923-2004) lc: n84204624 merge: id: 035a0b12e64b89d6f252da841367949c source: viaf type: document nkc: ola2003193953 term: Bystrzycki, Przemysław (1923-2004) version: 2013-07-01T14:07:50Z viafid: '79416665' --- _id: 03649c73578886fc0d8015be211040d3 bav: adv11105832 dnb: '101342594' key: TournierÉdouard1831-1899 lc: no2011149821 merge: id: 03649c73578886fc0d8015be211040d3 source: viaf type: document nla: '000035294755' nlilat: '000213419' ptbnp: '84355' term: Tournier, Édouard, 1831-1899 version: 2013-07-01T14:07:50Z viafid: '89376023' --- _id: 036e6fbff7192f45d46785102305497e bnf: '12335203' dnb: '118936522' key: RenaudotThéophraste1586-1653 lc: n82058563 merge: id: 036e6fbff7192f45d46785102305497e source: viaf type: document nla: '000036011637' nlilat: '000444219' ptbnp: '96547' term: Renaudot, Théophraste, 1586-1653 version: 2013-07-01T14:07:50Z viafid: '83101172' --- _id: 0374f2c34e6f13eca4f14769b8962a72 bnf: '14618811' dnb: '116889292' key: VonSchönthanFranz1849-1913 lc: n82051104 merge: id: 0374f2c34e6f13eca4f14769b8962a72 source: viaf type: document nkc: jn20010316191 nlilat: '000443875' term: Von Schönthan, Franz, 1849-1913 version: 2013-07-01T14:07:50Z viafid: '66719381' --- _id: 03847e4c9763d04b976d253cf0c30cb3 bne: xx1243213 bnf: '12074341' dnb: '136198341' key: ChagasJoão1863-1925 lc: n87927766 merge: id: 03847e4c9763d04b976d253cf0c30cb3 source: viaf type: document ptbnp: '44694' term: Chagas, João, 1863-1925 version: 2013-07-01T14:07:50Z viafid: '66490689' --- _id: 0388edbbd32cb70508615c57a269755f bnf: '15868284' dnb: '101326041' key: ThéveninRené1877-1967 lc: n85825172 merge: id: 0388edbbd32cb70508615c57a269755f source: viaf type: document nla: '000035791107' nlilat: '000478817' ptbnp: '32558' term: Thévenin, René, 1877-1967 version: 2013-07-01T14:07:50Z viafid: '110022734' --- _id: 038c48d9dd7a8ade2ee593afe4e8f420 bne: xx1148076 bnf: '11917732' dnb: '118588192' jpg: '500257487' key: NinAnaïs1903-1977 lc: n79041785 merge: id: 038c48d9dd7a8ade2ee593afe4e8f420 source: viaf type: document nkc: jn20000701323 nla: '000036012840' nlilat: '000099832' ptbnp: '47151' selibr: '207655' term: Nin, Anaïs, 1903-1977 version: 2013-07-01T14:07:50Z viafid: '14774462' --- _id: 0397e6aac2ddcf6d0431779670f9d55c key: SullivanHenryW1942-|CalderónintheGermanlandsandtheLowCountriesSpanish lc: n98077051 merge: id: 0397e6aac2ddcf6d0431779670f9d55c source: viaf type: document term: Sullivan, Henry W., 1942- | Calderón in the German lands and the Low Countries. Spanish version: 2013-07-01T14:07:50Z viafid: '186015450' --- _id: 03aec64adc3413f86d58b119ceea2abc bav: adv10008296 bne: xx1265318 bnf: '12025206' dnb: '115690158' key: BragaTeófilo1843-1924 lc: n82211626 merge: id: 03aec64adc3413f86d58b119ceea2abc source: viaf type: document nkc: ola2002153754 nla: '000035187595' nlilat: '000449474' ptbnp: '16499' term: Braga, Teófilo, 1843-1924 version: 2013-07-01T14:07:50Z viafid: '54161310' --- _id: 03afef8f182edb5be7e6b635f90ab2a3 key: KuChʻeng1956-SelectionsPoems lc: nr96036087 merge: id: 03afef8f182edb5be7e6b635f90ab2a3 source: viaf type: document nla: '000036722390' term: Ku, Chʻeng, 1956- Selections Poems version: 2013-07-01T14:07:50Z viafid: '185421477' --- _id: 03b0d72a3b3bdd6b53e6850d8a424ae9 bav: adv11812395 bnf: '11907347' dnb: '119309548' key: Herling-GrudzińskiGustaw1919-2000 lc: n81056817 merge: id: 03b0d72a3b3bdd6b53e6850d8a424ae9 source: viaf type: document nkc: jn19990003424 nla: '000043077630' nlilat: '000062344' selibr: '60527' term: Herling-Grudziński, Gustaw, 1919-2000 version: 2013-07-01T14:07:50Z viafid: '17223996' --- _id: 03b194c5f7b088737936d74e7d848622 bnf: '10526434' dnb: '116440821' key: HammarsköldLorenzo1785-1827 lc: nr98009139 merge: id: 03b194c5f7b088737936d74e7d848622 source: viaf type: document selibr: '190880' term: Hammarsköld, Lorenzo, 1785-1827 version: 2013-07-01T14:07:50Z viafid: '56599544' --- _id: 03b250a0b1a67e3eb8c41c46f5899f69 bav: adv11388535 bne: xx1142375 dnb: '100314384' key: DeOcampoFlorián1499?-1555? lc: n88244726 merge: id: 03b250a0b1a67e3eb8c41c46f5899f69 source: viaf type: document ptbnp: '414663' term: De Ocampo, Florián, 1499?-1555? version: 2013-07-01T14:07:50Z viafid: '100202275' --- _id: 03b9688927fd64aae9c71f1b882c5d80 key: YsermansJoanca1590-ná1631 merge: id: 03b9688927fd64aae9c71f1b882c5d80 source: viaf type: document term: Ysermans, Joan, ca. 1590-ná 1631 version: 2013-07-01T14:07:50Z viafid: '281671632' --- _id: 03bca13274682d086a41673a905cf321 bav: adv10208072 bne: xx4982218 bnf: '11997296' dnb: 10096673x key: KimḥiDavidca1160-ca1235 lc: n83120193 merge: id: 03bca13274682d086a41673a905cf321 source: viaf type: document nkc: zmp2012739168 nla: '000035487022' nlicyr: '000151969' nliheb: '000185046' nlilat: '000075925' selibr: '67124' term: Kimḥi, David, ca 1160-ca 1235 version: 2013-07-01T14:07:50Z viafid: '100213323' --- _id: 03be88c96f36a7cbceee8e8f181b813c dnb: '129889512' key: HögbergOlof1855-1932 lc: n82142480 merge: id: 03be88c96f36a7cbceee8e8f181b813c source: viaf type: document selibr: '216702' term: Högberg, Olof, 1855-1932 version: 2013-07-01T14:07:50Z viafid: '6024113' --- _id: 03bea4128abba82a2d612931bbe69142 key: UrrozKananEloy1967-|FricciónEnglish lc: n2010046632 merge: id: 03bea4128abba82a2d612931bbe69142 source: viaf type: document term: Urroz Kanan, Eloy, 1967- | Fricción. English version: 2013-07-01T14:07:50Z viafid: '181623481' --- _id: 03c3cf3001a80f27e47e06f77a3f277d bnf: '12707211' dnb: '1026769671' key: LoteRené(1883-1944) lc: no2012126721 merge: id: 03c3cf3001a80f27e47e06f77a3f277d source: viaf type: document term: Lote, René (1883-1944) version: 2013-07-01T14:07:50Z viafid: '54271583' --- _id: 03dd5c9976e17d2225c8438f06b582d7 bav: adv12479613 bnf: '11942955' dnb: '118715143' jpg: '500082545' key: KościuszkoTadeusz1746-1817 lc: n50042679 merge: id: 03dd5c9976e17d2225c8438f06b582d7 source: viaf type: document nkc: jo20010091950 nlilat: '000234743' selibr: '252156' term: Kościuszko, Tadeusz, 1746-1817 version: 2013-07-01T14:07:50Z viafid: '61554270' --- _id: 03e0f84dce1beeec5c950ba1cfdab3bc bnf: '15343147' dnb: '119181614' key: VanHoveLéon1924-1990 lc: n85801639 merge: id: 03e0f84dce1beeec5c950ba1cfdab3bc source: viaf type: document swnl: vtls000105745 term: Van Hove, Léon 1924-1990 version: 2013-07-01T14:07:50Z viafid: '120747971' --- _id: 03e2b007ece4f44b39197fd05753a2af bav: adv10193854 bnf: '13001985' dnb: '170464407' key: SchäffleAlbertEberhardFriedrich(1831-1903) lc: n87896571 merge: id: 03e2b007ece4f44b39197fd05753a2af source: viaf type: document nkc: jn20010316190 nla: '000035047182' nlilat: '000119362' term: Schäffle, Albert Eberhard Friedrich (1831-1903) version: 2013-07-01T14:07:50Z viafid: '49357405' --- _id: 03e9516fda777fd728eb684745177989 bnf: '14530343' key: KaczorWJ1949-(WiesławaJ) lc: n99252423 merge: id: 03e9516fda777fd728eb684745177989 source: viaf type: document nkc: mub2010601907 term: Kaczor, W. J., 1949-, (Wiesława J.) version: 2013-07-01T14:07:50Z viafid: '74087975' --- _id: 03ee615ef5fc178700000785c0e5610a bne: xx935590 dnb: '118689207' egaxa: vtls002227033 key: GajdarArkadijPetrovič1904-1941 lc: n50015461 merge: id: 03ee615ef5fc178700000785c0e5610a source: viaf type: document nkc: jn19990210225 nla: '000040153226' nlicyr: '000149658' selibr: '54872' term: Gajdar, Arkadij Petrovič, 1904-1941 version: 2013-07-01T14:07:50Z viafid: '42632124' --- _id: 03f39ba00fb0588c2583abc2b40d4d50 bnf: '12195705' dnb: '117614688' key: LefèbureLouisFrançoisHenri1754-1840 lc: nr88006932 merge: id: 03f39ba00fb0588c2583abc2b40d4d50 source: viaf type: document selibr: '350751' term: Lefèbure, Louis François Henri, 1754-1840 version: 2013-07-01T14:07:50Z viafid: '27112682' --- _id: 03f7de51fb3112824e3b5bb61e8907ec bav: adv11107034 bnf: '11900980' dnb: '101159684' key: DufourMédéricb1866 lc: n89633919 merge: id: 03f7de51fb3112824e3b5bb61e8907ec source: viaf type: document nlilat: '000500303' ptbnp: '182775' term: Dufour, Médéric, b. 1866 version: 2013-07-01T14:07:50Z viafid: '12307650' --- _id: 03f93c2c6212c09f91729c3076f80b10 bnf: '11560135' dnb: '131889141' key: HanžekovićMato1884-1955 lc: n89629424 merge: id: 03f93c2c6212c09f91729c3076f80b10 source: viaf type: document nkc: js2006345207 term: Hanžeković, Mato, 1884-1955 version: 2013-07-01T14:07:50Z viafid: '35601246' --- _id: 03fe7f0e439eb9a1762a5427e7748b73 key: EsdréAdriaan1749-1822 merge: id: 03fe7f0e439eb9a1762a5427e7748b73 source: viaf type: document term: Esdré, Adriaan, 1749-1822 version: 2013-07-01T14:07:50Z viafid: '287790346' --- _id: 0408e832035b61eec14e6aebd3b58fe5 key: SŏChae-jŏng1960-|PowerinterestandidentityinmilitaryalliancesKorean lc: n2010036779 merge: id: 0408e832035b61eec14e6aebd3b58fe5 source: viaf type: document term: Sŏ, Chae-jŏng, 1960- | Power, interest, and identity in military alliances. Korean version: 2013-07-01T14:07:50Z viafid: '175166042' --- _id: 040a9231004fd808bd23d3be0496686f bav: adv10138518 bnf: '14431666' dnb: '118796704' key: BrückeErnst1819-1892 lc: n83211267 merge: id: 040a9231004fd808bd23d3be0496686f source: viaf type: document nkc: nlk20000083623 nlilat: '000025995' swnl: vtls000035685 term: Brücke, Ernst, 1819-1892 version: 2013-07-01T14:07:50Z viafid: '49441325' --- _id: 0410998a6b57bc3e5ed0a7e7a384dccd bav: adv11998075 bne: xx917589 bnf: '14644307' dnb: '128491795' key: DuránDiegod1588? lc: n81090283 merge: id: 0410998a6b57bc3e5ed0a7e7a384dccd source: viaf type: document ptbnp: '207955' term: Durán, Diego, d. 1588? version: 2013-07-01T14:07:50Z viafid: '15030586' --- _id: 043414f435da087eb8908c59ff77ac87 dnb: '123145805' key: SokolovJurijMatveevič1889-1941 lc: n83197191 merge: id: 043414f435da087eb8908c59ff77ac87 source: viaf type: document nkc: jx20041102006 nlilat: '000456547' term: Sokolov, Jurij Matveevič, 1889-1941 version: 2013-07-01T14:07:50Z viafid: '74752359' --- _id: 043949491cccd1c41799a212c8b309d5 key: BossuAntoninFrançois1804-1897 merge: id: 043949491cccd1c41799a212c8b309d5 source: viaf type: document term: Bossu, Antonin François, 1804-1897 version: 2013-07-01T14:07:50Z viafid: '209033298' --- _id: 0439994373e8de0fa5df68ff5ebf3248 bav: adv10872396 bnf: '11910296' dnb: '116653531' key: DelaMétherieJean-Claude1743-1817 lc: n84102385 merge: id: 0439994373e8de0fa5df68ff5ebf3248 source: viaf type: document nkc: mzk2003197598 nlilat: '000461920' term: De la Métherie, Jean-Claude, 1743-1817 version: 2013-07-01T14:07:50Z viafid: '79028885' --- _id: 043b7d941a7a7135bbcc5debcb8b5b22 bav: adv10057539 bne: xx1297861 bnf: '12318827' dnb: '117564737' key: BarrèrePierre1690-1755 lc: no90025574 merge: id: 043b7d941a7a7135bbcc5debcb8b5b22 source: viaf type: document term: Barrère, Pierre 1690-1755 version: 2013-07-01T14:07:50Z viafid: '73921885' --- _id: 043db4cd9a3e7b5860fd13b05c676296 key: ChailanFortuné1801-1840 merge: id: 043db4cd9a3e7b5860fd13b05c676296 source: viaf type: document term: Chailan, Fortuné, 1801-1840 version: 2013-07-01T14:07:50Z viafid: '201123204' --- _id: 045e864a7a829f1e7dd894e49d64cf72 bav: adv10221407 bnf: '12239778' dnb: '119184214' key: AffòIreneo1741-1797 lc: n84158867 merge: id: 045e864a7a829f1e7dd894e49d64cf72 source: viaf type: document nlilat: '000463482' term: Affò, Ireneo, 1741-1797 version: 2013-07-01T14:07:50Z viafid: '41894199' --- _id: 0461fba0848017c50a46d2ef2a64afdf key: HenzeClémentb1880 lc: no93006271 merge: id: 0461fba0848017c50a46d2ef2a64afdf source: viaf type: document term: Henze, Clément, b. 1880 version: 2013-07-01T14:07:50Z viafid: '6962579' --- _id: 0462acc7f04769400aab09059514c4d7 bav: adv10993049 bne: xx963717 bnf: '13578080' dnb: '129966118' key: DeNavarreteMartínFernández1765-1844 lc: n84112358 merge: id: 0462acc7f04769400aab09059514c4d7 source: viaf type: document nkc: jx20061114001 nla: '000035965107' nlilat: '000462196' ptbnp: '31286' term: De Navarrete, Martín Fernández, 1765-1844 version: 2013-07-01T14:07:50Z viafid: '37085577' --- _id: 046f52476a5a3e2866eb848b20594f21 bav: adv11542586 bne: xx1145774 bnf: '11914085' dnb: 12102721x key: MâleÉmile1862-1954 lc: n50044319 merge: id: 046f52476a5a3e2866eb848b20594f21 source: viaf type: document nkc: jn19990005515 nla: '000035753249' nlilat: '000410677' ptbnp: '85932' term: Mâle, Émile, 1862-1954 version: 2013-07-01T14:07:50Z viafid: '22145190' --- _id: 048017763407c9d0feab8c35bc5766fc dnb: '102446709' key: CoindetJean-François1774-1834 lc: nr97031053 merge: id: 048017763407c9d0feab8c35bc5766fc source: viaf type: document nkc: nlk20000083861 term: Coindet, Jean-François, 1774-1834 version: 2013-07-01T14:07:50Z viafid: '32387488' --- _id: 0480d99ad06a21cda31aec42df022c82 bav: adv10140182 bnf: '10466367' key: CourtyAmédée1819-1886 lc: no2009088056 merge: id: 0480d99ad06a21cda31aec42df022c82 source: viaf type: document term: Courty, Amédée, 1819-1886 version: 2013-07-01T14:07:50Z viafid: '17212308' --- _id: 0489983008b30ffffd5411a765b47605 bav: adv11098073 bnf: '13474474' dnb: '138900612' key: GuyonJean-Casimir-Félix1831-1920 lc: no2008022904 merge: id: 0489983008b30ffffd5411a765b47605 source: viaf type: document nkc: nlk20000087298 nla: '000035748595' ptbnp: '1198036' term: Guyon, Jean-Casimir-Félix, 1831-1920 version: 2013-07-01T14:07:50Z viafid: '49372271' --- _id: 048b9e68a999f3d566e52a3b4daa644f bav: adv11312506 bnf: '12512071' dnb: '119856379' key: ValleriolaFrançois1504-1580 lc: n92072378 merge: id: 048b9e68a999f3d566e52a3b4daa644f source: viaf type: document nkc: nlk20010098015 ptbnp: '602168' term: Valleriola, François, 1504-1580 version: 2013-07-01T14:07:50Z viafid: '14878928' --- _id: 04906f3898b37f72357ed71ad2aff69a bnf: '12927451' dnb: '100270565' key: SanadonNoe͏̈lÉtienne1676-1733 merge: id: 04906f3898b37f72357ed71ad2aff69a source: viaf type: document term: Sanadon, Noe͏̈l Étienne, 1676-1733 version: 2013-07-01T14:07:50Z viafid: '14901377' --- _id: 049ecd672af06be8d79ecf89963a5381 bav: adv11042105 dnb: '100223133' key: NicolasPierre-François1743-1816 lc: n88038862 merge: id: 049ecd672af06be8d79ecf89963a5381 source: viaf type: document ptbnp: '1386078' term: Nicolas, Pierre-François, 1743-1816 version: 2013-07-01T14:07:50Z viafid: '49566096' --- _id: 04a63a1f25d0fc9cae5d6f54e41e8195 bnf: '14612965' dnb: '143943103' key: KampásNG1857-1932 lc: n2002046131 merge: id: 04a63a1f25d0fc9cae5d6f54e41e8195 source: viaf type: document term: Kampás, N. G., 1857-1932 version: 2013-07-01T14:07:50Z viafid: '7639616' --- _id: 04a878079e17522e532dc2144d4d2c59 bav: adv10003538 dnb: '118512404' key: BögliAlfred1912-1998 lc: n80060572 merge: id: 04a878079e17522e532dc2144d4d2c59 source: viaf type: document nla: '000035019885' term: Bögli, Alfred 1912-1998 version: 2013-07-01T14:07:50Z viafid: '74643858' --- _id: 04acfe101d9233c64beae5b655320ce9 bne: xx1141963 bnf: '11999476' dnb: '118746014' key: BelovVasilijIvanovič1932-2012 lc: n83223060 merge: id: 04acfe101d9233c64beae5b655320ce9 source: viaf type: document nkc: ola2002152506 nla: '000035439635' nlicyr: '000148162' ptbnp: '1199281' selibr: '177224' term: Belov, Vasilij Ivanovič, 1932-2012 version: 2013-07-01T14:07:50Z viafid: '109315473' --- _id: 04ad72fe439952abdc8313be37e7fcb1 dnb: '116776951' key: CzermákJohannNepomuk1828-1873 lc: nr2001006548 merge: id: 04ad72fe439952abdc8313be37e7fcb1 source: viaf type: document nkc: jx20110128004 nlilat: '000541882' term: Czermák, Johann Nepomuk 1828-1873 version: 2013-07-01T14:07:50Z viafid: '54908970' --- _id: 04af27814280743e92f89aeaa1cbc08a bnf: '12171182' dnb: '104747242' key: BelychGrigorijGeorgievič1906-1938 lc: n97030089 merge: id: 04af27814280743e92f89aeaa1cbc08a source: viaf type: document nkc: xx0019155 nlicyr: '000251614' term: Belych, Grigorij Georgievič, 1906-1938 version: 2013-07-01T14:07:50Z viafid: '165762447' --- _id: 04b126487a1fb32c45979480be877664 bne: xx1254712 dnb: '118968572' key: DullerÉduard1809-1853 lc: n84147603 merge: id: 04b126487a1fb32c45979480be877664 source: viaf type: document term: Duller, Éduard 1809-1853 version: 2013-07-01T14:07:50Z viafid: '15569672' --- _id: 04c42fa5aa718c75d0b58bc29012f229 bav: adv11208671 dnb: '159200881' key: SalváyPérezVicente1780-1849 lc: n83219748 merge: id: 04c42fa5aa718c75d0b58bc29012f229 source: viaf type: document nlilat: '000457441' ptbnp: '265529' term: Salvá y Pérez, Vicente, 1780-1849 version: 2013-07-01T14:07:50Z viafid: '100211129' --- _id: 04c6352b06d0feb132cedd13fe3db9d2 dnb: '124682057' key: RömppHermann1901-1964 lc: n83828742 merge: id: 04c6352b06d0feb132cedd13fe3db9d2 source: viaf type: document nkc: nlk20020118625 nlilat: '000458924' term: Römpp, Hermann, 1901-1964 version: 2013-07-01T14:07:50Z viafid: '28010996' --- _id: 04cd7fd605be05142be248a78266e7ca dnb: '117611484' key: MüllerTheodor1816-1881 lc: nr95008187 merge: id: 04cd7fd605be05142be248a78266e7ca source: viaf type: document nlilat: '000097311' term: Müller, Theodor, 1816-1881 version: 2013-07-01T14:07:50Z viafid: '67247507' --- _id: 04e18be2ba3bd4eae200880a29df776f bne: xx886025 bnf: '12095419' dnb: '123147646' key: ChalupeckýJindřich1910-1990 lc: n85021133 merge: id: 04e18be2ba3bd4eae200880a29df776f source: viaf type: document nkc: jk01050063 nlilat: '000030540' term: Chalupecký, Jindřich, 1910-1990 version: 2013-07-01T14:07:50Z viafid: '14798286' --- _id: 04e1f1b48e7a2f70daf85c330545ce0b bnf: '11894928' dnb: '118941720' key: DeCamelatMiquèu1871-1962 lc: n88647054 merge: id: 04e1f1b48e7a2f70daf85c330545ce0b source: viaf type: document term: De Camelat, Miquèu, 1871-1962 version: 2013-07-01T14:07:50Z viafid: '36915704' --- _id: 04e33195d548578281576989a2beca53 dnb: '143676598' key: GoudriaanAdrianusFrançois1768-1829 lc: no2009122052 merge: id: 04e33195d548578281576989a2beca53 source: viaf type: document term: Goudriaan, Adrianus François 1768-1829 version: 2013-07-01T14:07:50Z viafid: '96826309' --- _id: 04ecfc9e517cf9be9404fe3b22e1e7e3 bav: adv11113518 bne: xx1108074 bnf: '11913700' dnb: '118575589' egaxa: vtls000991871 jpg: '500222976' key: LyotardJean-François1924-1998 lc: n50037407 merge: id: 04ecfc9e517cf9be9404fe3b22e1e7e3 source: viaf type: document nkc: jn20000603839 nla: '000035317436' nlilat: '000086756' ptbnp: '93770' selibr: '250200' term: Lyotard, Jean-François, 1924-1998 version: 2013-07-01T14:07:50Z viafid: '108393539' --- _id: 04f124d14ddb7c102d2e1ecf43374ba4 bnf: '15868340' dnb: '119450305' key: JurčičJosip1844-1881 lc: n84065262 merge: id: 04f124d14ddb7c102d2e1ecf43374ba4 source: viaf type: document nkc: js20020805188 term: Jurčič, Josip, 1844-1881 version: 2013-07-01T14:07:50Z viafid: '54483391' --- _id: 04f7b06776c01709ec4b03011a72d1e3 bav: adv10230780 bnf: '11907907' dnb: '119023970' key: HucÉvaristeRégis1813-1860 lc: n81149691 merge: id: 04f7b06776c01709ec4b03011a72d1e3 source: viaf type: document nkc: xx0004995 nla: '000035828147' nlilat: '000441520' ptbnp: '1020891' selibr: '61990' term: Huc, Évariste Régis, 1813-1860 version: 2013-07-01T14:07:50Z viafid: '36919766' --- _id: 04f87cd63d73d2c1a2111deca3c181f1 key: MolloySylvia1938-|EnbrevecárcelEnglish lc: n88231137 merge: id: 04f87cd63d73d2c1a2111deca3c181f1 source: viaf type: document term: Molloy, Sylvia, 1938- | En breve cárcel. English version: 2013-07-01T14:07:50Z viafid: '174643273' --- _id: 05087616e17f9e97be581e129aa94197 bnf: '12815184' dnb: '131656783' key: HoüardDavid1725-1802 lc: no90005628 merge: id: 05087616e17f9e97be581e129aa94197 source: viaf type: document ptbnp: '147714' term: Hoüard, David, 1725-1802 version: 2013-07-01T14:07:50Z viafid: '17349649' --- _id: 050a9b1b7540d2dee4d68c3a04538905 bnf: '13736638' key: IbnṬawqAḥmadibnMuḥammad1430or31-1509or10 lc: nr2001023499 merge: id: 050a9b1b7540d2dee4d68c3a04538905 source: viaf type: document nliara: '000159322' term: Ibn Ṭawq, Aḥmad ibn Muḥammad, 1430 or 31-1509 or 10 version: 2013-07-01T14:07:50Z viafid: '88074238' --- _id: 050f2f336a035b587c45e6b6620f66c2 bav: adv10179764 bnf: '12678464' dnb: '118528378' jpg: '500207175' key: DvořákMax1874-1921 lc: n81032850 merge: id: 050f2f336a035b587c45e6b6620f66c2 source: viaf type: document nkc: jk01030174 nla: '000035766995' nlilat: '000435434' term: Dvořák, Max, 1874-1921 version: 2013-07-01T14:07:50Z viafid: '69052687' --- _id: 0517d5a829f7dbf5ead1b155d2065caa bnf: '11910134' dnb: '118567306' jpg: '500202621' key: KručenychAleksej1886-1968 lc: n84047047 merge: id: 0517d5a829f7dbf5ead1b155d2065caa source: viaf type: document nkc: jn20000603575 nlicyr: '000152535' selibr: '357043' term: Kručenych, Aleksej, 1886-1968 version: 2013-07-01T14:07:50Z viafid: '71393129' --- _id: 052ad322c9255c4a341361b79afced42 bav: adv10249073 bne: xx924064 bnf: '12028378' dnb: '118695010' key: GiménezCaballeroErnesto1899-1988 lc: n80010160 merge: id: 052ad322c9255c4a341361b79afced42 source: viaf type: document nla: '000035125741' term: Giménez Caballero, Ernesto 1899-1988 version: 2013-07-01T14:07:50Z viafid: '113723156' --- _id: 052b92513e1a3533501e26a0dbdea33e bnf: '12164745' dnb: '155208411' key: SöderbergTom1900-1991 lc: n79043740 merge: id: 052b92513e1a3533501e26a0dbdea33e source: viaf type: document selibr: '288806' term: Söderberg, Tom, 1900-1991 version: 2013-07-01T14:07:50Z viafid: '119429326' --- _id: 053881bcf789fd21ae61b77acbb79b14 bav: adv11200039 dnb: '117425478' key: TroyonFrédéric1815?-1866? lc: nb2003070432 merge: id: 053881bcf789fd21ae61b77acbb79b14 source: viaf type: document nla: '000035077854' ptbnp: '275324' term: Troyon, Frédéric, 1815?-1866? version: 2013-07-01T14:07:50Z viafid: '13084544' --- _id: 0539855ff894e2349d851735a5371a4c bav: adv11189653 key: RüterAdolfJohannCord1907-1965 lc: no2010004672 merge: id: 0539855ff894e2349d851735a5371a4c source: viaf type: document nla: '000035483161' term: Rüter, Adolf Johann Cord, 1907-1965 version: 2013-07-01T14:07:50Z viafid: '89435404' --- _id: 053c90b753c5da9045e9ad53a5b039b9 bnf: '10602999' dnb: 11752350x key: HervéGeorges1855-1932 lc: n2001061601 merge: id: 053c90b753c5da9045e9ad53a5b039b9 source: viaf type: document term: Hervé, Georges, 1855-1932 version: 2013-07-01T14:07:50Z viafid: '62328807' --- _id: 0545cffa55ff49d2ecfc8b09554afacd bnf: '12014522' dnb: '170427684' key: StrmiskaZdeněk1925-2009 lc: n84128652 merge: id: 0545cffa55ff49d2ecfc8b09554afacd source: viaf type: document nkc: jk01121433 term: Strmiska, Zdeněk, 1925-2009 version: 2013-07-01T14:07:50Z viafid: '109307221' --- _id: 0557fcc095ac131dfd8a7a3b25362260 dnb: '124679935' key: PalménJohanPhilip1811-1896 merge: id: 0557fcc095ac131dfd8a7a3b25362260 source: viaf type: document selibr: '331820' term: Palmén, Johan Philip, 1811-1896 version: 2013-07-01T14:07:50Z viafid: '42777810' --- _id: 0562fe0f7b923398c7e970c450c014b9 dnb: '100763146' key: Pâris-DuverneyJoseph1684-1770 lc: n86113539 merge: id: 0562fe0f7b923398c7e970c450c014b9 source: viaf type: document term: Pâris-Duverney, Joseph, 1684-1770 version: 2013-07-01T14:07:50Z viafid: '49577307' --- _id: 056c37653c4613fd4c15731200ec47bc key: PiéryMarius1873-1957 merge: id: 056c37653c4613fd4c15731200ec47bc source: viaf type: document nkc: kv2010540375 term: Piéry, Marius, 1873-1957 version: 2013-07-01T14:07:50Z viafid: '106940966' --- _id: 056f946753c3750ce74f67c785e292cf bav: adv10010403 dnb: '100112366' key: DucampThéodoreJoseph1793-1823 lc: nr91009615 merge: id: 056f946753c3750ce74f67c785e292cf source: viaf type: document term: Ducamp, Théodore Joseph, 1793-1823 version: 2013-07-01T14:07:50Z viafid: '51543396' --- _id: 056fe57dfe05468bd2ae1359ac28050c dnb: '104241616' key: RouilléPierre-Julien1681-1740 merge: id: 056fe57dfe05468bd2ae1359ac28050c source: viaf type: document nkc: mzk2009532667 term: Rouillé, Pierre-Julien, 1681-1740 version: 2013-07-01T14:07:50Z viafid: '44736092' --- _id: 05758033ac5d994eded3de27f758483f bnf: '12686571' dnb: '120325098' key: KuripešićBenediktfl1530 lc: n86853205 merge: id: 05758033ac5d994eded3de27f758483f source: viaf type: document selibr: '342338' term: Kuripešić, Benedikt, fl. 1530 version: 2013-07-01T14:07:50Z viafid: '121829365' --- _id: 057c9fe9600afaa6df596f9be1493d1b bnf: '14416145' dnb: '122403908' key: BucharaevRavilʹRaisovič1951-VollstaendigerName lc: n79027451 merge: id: 057c9fe9600afaa6df596f9be1493d1b source: viaf type: document nkc: jx20090915002 term: Bucharaev, Ravilʹ Raisovič, 1951-, Vollstaendiger Name version: 2013-07-01T14:07:50Z viafid: '116936895' --- _id: 057fa630e1e00e7d05294a94b521bb96 key: BéraudAntony1794?-1860 merge: id: 057fa630e1e00e7d05294a94b521bb96 source: viaf type: document nla: '000035556824' term: Béraud, Antony, 1794?-1860 version: 2013-07-01T14:07:50Z viafid: '273620825' --- _id: 0581ad865d919b5884c1e358f3e11b2c bne: xx835835 bnf: '11891178' dnb: '118508873' key: BenedettiMário1920-2009 lc: n50007687 merge: id: 0581ad865d919b5884c1e358f3e11b2c source: viaf type: document nkc: jo20000082634 nla: '000035156402' nlilat: '000018413' ptbnp: '45871' selibr: '232832' term: Benedetti, Mário, 1920-2009 version: 2013-07-01T14:07:50Z viafid: '56585930' --- _id: 058c19623a8f0ecdb6615b89db43a50c key: BøyesenLarsRostrup1915-1996 lc: n83000840 merge: id: 058c19623a8f0ecdb6615b89db43a50c source: viaf type: document nla: '000036462753' selibr: '253593' term: Bøyesen, Lars Rostrup, 1915-1996 version: 2013-07-01T14:07:50Z viafid: '77681165' --- _id: 058ddc900602a804721042951a576d3e dnb: '117611425' key: MüllerSophus1846-1934 lc: n85126271 merge: id: 058ddc900602a804721042951a576d3e source: viaf type: document nkc: xx0013446 nla: '000035287723' selibr: '273488' term: Müller, Sophus, 1846-1934 version: 2013-07-01T14:07:50Z viafid: '74634692' --- _id: 058f7f33edeeec529a7e56b98852efad bnf: '13007890' dnb: '107367459' key: SchazmannPaul-Émile1902-1978 lc: n85804980 merge: id: 058f7f33edeeec529a7e56b98852efad source: viaf type: document term: Schazmann, Paul-Émile 1902-1978 version: 2013-07-01T14:07:50Z viafid: '25116970' --- _id: 0590e1ff5d2e281aecdbe39a91978b21 bnf: '11914583' dnb: '124653618' jpg: '500025546' key: MarillierClément-Pierre1740-1808 lc: n86024578 merge: id: 0590e1ff5d2e281aecdbe39a91978b21 source: viaf type: document nkc: jo2003192727 nlilat: '000479801' ptbnp: '109210' term: Marillier, Clément-Pierre, 1740-1808 version: 2013-07-01T14:07:50Z viafid: '54151134' --- _id: 0598cc11455dca3af08bfc49b4d5c06b dnb: '156295261' key: Dobrovol'skijVladimirAnatol'jevič1918-2003 merge: id: 0598cc11455dca3af08bfc49b4d5c06b source: viaf type: document nkc: js2005303599 term: Dobrovol'skij, Vladimir Anatol'jevič, 1918-2003 version: 2013-07-01T14:07:50Z viafid: '84243925' --- _id: 059d8c7f7f68e2142a01ff293c08e86d bav: adv10974502 bnf: '12283551' dnb: '118785281' key: MünsterbergHugo1863-1916 lc: n78094053 merge: id: 059d8c7f7f68e2142a01ff293c08e86d source: viaf type: document nkc: jo20000082500 nla: '000035368864' nlicyr: '000154128' nlilat: '000097394' selibr: '195080' term: Münsterberg, Hugo, 1863-1916 version: 2013-07-01T14:07:50Z viafid: '12370549' --- _id: 05a1ad199447e7c1e449462c1579d559 bav: adv10045031 bne: xx937482 bnf: '12194364' dnb: '116543434' key: ClémentFélix1822-1885 lc: nr97044067 merge: id: 05a1ad199447e7c1e449462c1579d559 source: viaf type: document nkc: xx0153384 nlilat: '000032468' ptbnp: '94158' term: Clément, Félix, 1822-1885 version: 2013-07-01T14:07:50Z viafid: '44344471' --- _id: 05c24a54ad3bb52213c5eeeb9ced6576 bnf: '12198402' dnb: '117610631' key: JacquesAmédéeFlorent(1813-1865) merge: id: 05c24a54ad3bb52213c5eeeb9ced6576 source: viaf type: document term: Jacques, Amédée Florent (1813-1865) version: 2013-07-01T14:07:50Z viafid: '51736445' --- _id: 05c35b9bcdfc2047fcd6f18f9b3a8cd9 bnf: '13614255' dnb: '124706576' key: RodokanakēsPlatōn1883-1919 lc: n88039792 merge: id: 05c35b9bcdfc2047fcd6f18f9b3a8cd9 source: viaf type: document nla: '000035644009' term: Rodokanakēs, Platōn, 1883-1919 version: 2013-07-01T14:07:50Z viafid: '2645998' --- _id: 05c37a440591de5d1e3f8c2e8d0457dc bnf: '13900202' dnb: '122173376' key: SvešnikovAleksandrVasil'evič1890-1980 lc: no92008797 merge: id: 05c37a440591de5d1e3f8c2e8d0457dc source: viaf type: document nkc: mzk2010598102 term: Svešnikov, Aleksandr Vasil'evič, 1890-1980 version: 2013-07-01T14:07:50Z viafid: '3347046' --- _id: 05c3fc9fd5d3b3e5fd907a5acfd90943 bav: adv10006903 bne: xx1029941 bnf: '11944884' dnb: '119006944' jpg: '500021067' key: SilvestreIsraël1621-1691 lc: n80122940 merge: id: 05c3fc9fd5d3b3e5fd907a5acfd90943 source: viaf type: document ptbnp: '220895' selibr: '208389' term: Silvestre, Israël, 1621-1691 version: 2013-07-01T14:07:50Z viafid: '66475460' --- _id: 05c72c00a134d1495b66eee4afc15a34 bnf: '13417947' dnb: '142840548' key: François-FranckCharles-Émile1849-1921 lc: no2010149793 merge: id: 05c72c00a134d1495b66eee4afc15a34 source: viaf type: document term: François-Franck, Charles-Émile, 1849-1921 version: 2013-07-01T14:07:50Z viafid: '100306331' --- _id: 05c959e54bbdf650f997c902b0846792 bnf: '16254580' dnb: '119345250' key: İnönüErdal1926-2007 lc: n83827751 merge: id: 05c959e54bbdf650f997c902b0846792 source: viaf type: document term: İnönü, Erdal 1926-2007 version: 2013-07-01T14:07:50Z viafid: '22949166' --- _id: 05ce66441eb5a08942c65043f203fae3 dnb: '942203305' key: DewarratMarie-Claire1949-|Carême merge: id: 05ce66441eb5a08942c65043f203fae3 source: viaf type: document term: Dewarrat, Marie-Claire 1949- | Carême version: 2013-07-01T14:07:50Z viafid: '213994337' --- _id: 05d0e7932b99f33bbc0513f988a9f7b2 dnb: '116663170' key: LampeFélix1868-1946 lc: n91003138 merge: id: 05d0e7932b99f33bbc0513f988a9f7b2 source: viaf type: document nkc: xx0103929 nlilat: '000504783' term: Lampe, Félix, 1868-1946 version: 2013-07-01T14:07:50Z viafid: '89210033' --- _id: 05d16511c8e130f180b3b0565a2741cf bnf: '12284756' dnb: 13161598x key: BouvierEugène-Louis(1856-1944) lc: n81127111 merge: id: 05d16511c8e130f180b3b0565a2741cf source: viaf type: document nla: '000036554819' nlilat: '000440347' term: Bouvier, Eugène-Louis (1856-1944) version: 2013-07-01T14:07:50Z viafid: '2534337' --- _id: 05d941f1d3d61dfe8de9a0dccfb3cbbb bav: adv11167022 bnf: '16567409' dnb: '104306335' key: SarlandièreJean-Baptiste1787-1838 lc: nr98019480 merge: id: 05d941f1d3d61dfe8de9a0dccfb3cbbb source: viaf type: document term: Sarlandière, Jean-Baptiste, 1787-1838 version: 2013-07-01T14:07:50Z viafid: '74286485' --- _id: 05dfcb4aa84b067168e5dc11659455b6 bav: adv10146162 bnf: '13479011' dnb: '100495311' key: HamonièreGb1789 lc: no97012776 merge: id: 05dfcb4aa84b067168e5dc11659455b6 source: viaf type: document nlilat: '000530739' ptbnp: '169769' term: Hamonière, G., b. 1789 version: 2013-07-01T14:07:50Z viafid: '88849653' --- _id: 05e842c4e471293dcc10cc8a81943e5d bav: adv10075439 bne: xx1052465 bnf: '11906722' dnb: '118919660' egaxa: vtls001285557 key: HalévyLudovic1834-1908 lc: n50017872 merge: id: 05e842c4e471293dcc10cc8a81943e5d source: viaf type: document nkc: jn19990003087 nla: '000035162657' nlilat: '000059373' ptbnp: '55875' selibr: '59004' term: Halévy, Ludovic, 1834-1908 version: 2013-07-01T14:07:50Z viafid: '64006915' --- _id: 05ed3c129ca6b131fa5362410068cb0a bnf: '13055646' dnb: '121788210' key: PommierAmédée1804-1877 lc: nr2005030141 merge: id: 05ed3c129ca6b131fa5362410068cb0a source: viaf type: document ptbnp: '125001' term: Pommier, Amédée, 1804-1877 version: 2013-07-01T14:07:50Z viafid: '49359340' --- _id: 05ede19b60a708516bda152edfc27d5a dnb: '101015526' key: SudreThéodore1718-1795 lc: no2007056275 merge: id: 05ede19b60a708516bda152edfc27d5a source: viaf type: document term: Sudre, Théodore, 1718-1795 version: 2013-07-01T14:07:50Z viafid: '29309422' --- _id: 05f10c464f25789b07e6b4a93c357b11 bne: xx887177 bnf: '11908353' dnb: '118811215' key: JabèsEdmond1912-1991 lc: n80064201 merge: id: 05f10c464f25789b07e6b4a93c357b11 source: viaf type: document nkc: jn20000700787 nlilat: '000428803' ptbnp: '35297' selibr: '207703' term: Jabès, Edmond, 1912-1991 version: 2013-07-01T14:07:50Z viafid: '76317331' --- _id: 05f8570478b25de8cc8d951afbe0fede bav: adv11637906 bne: xx1008983 dnb: '119262304' jpg: '500009714' key: BarragánLuis1902-1988 lc: n82144420 merge: id: 05f8570478b25de8cc8d951afbe0fede source: viaf type: document nkc: jx20100106001 nla: '000036569745' term: Barragán, Luis, 1902-1988 version: 2013-07-01T14:07:50Z viafid: '22947293' --- _id: 05ff888ce9fe83516be75d0a30da480c dnb: '104087897' key: EnschedéJoannes1708-1780 merge: id: 05ff888ce9fe83516be75d0a30da480c source: viaf type: document term: Enschedé, Joannes 1708-1780 version: 2013-07-01T14:07:50Z viafid: '22568156' --- _id: 0603a772eaf1607a68f4e71d83b25e7a bav: adv10159068 bnf: '12327707' dnb: '101699425' key: HaigneréDaniel1824-1893 lc: n86142430 merge: id: 0603a772eaf1607a68f4e71d83b25e7a source: viaf type: document nlilat: '000483090' term: Haigneré, Daniel, 1824-1893 version: 2013-07-01T14:07:50Z viafid: '100287388' --- _id: 060d2fab1d446583d38ec2cca02a5121 bav: adv12057691 bnf: '14560951' dnb: '118885855' egaxa: vtls001520919 key: IbnḤanbalAḥmadibnMuḥammad780-855 lc: n82120532 merge: id: 060d2fab1d446583d38ec2cca02a5121 source: viaf type: document nla: '000036506257' nliara: '000159542' nlilat: '000066400' selibr: '191232' term: Ibn Ḥanbal, Aḥmad ibn Muḥammad, 780-855 version: 2013-07-01T14:07:50Z viafid: '90072121' --- _id: 062d341d00721973497081061b2d717f key: BeckerJörg1946-|InformationstechnologieinderDrittenWeltSpanish lc: n92118505 merge: id: 062d341d00721973497081061b2d717f source: viaf type: document term: Becker, Jörg, 1946- | Informationstechnologie in der Dritten Welt. Spanish version: 2013-07-01T14:07:50Z viafid: '184363174' --- _id: 0639300b20d95253d5fcccb6e86b451d dnb: '117616443' key: BörnsteinR1852-1913 lc: n81114103 merge: id: 0639300b20d95253d5fcccb6e86b451d source: viaf type: document nkc: jn20011018021 nla: '000035020398' nlilat: '000439755' term: Börnstein, R., 1852-1913 version: 2013-07-01T14:07:50Z viafid: '45084919' --- _id: 06445f6f14737794c92dfdecaca526a5 dnb: '100466613' key: DuWésGilesd1535 lc: nr93003317 merge: id: 06445f6f14737794c92dfdecaca526a5 source: viaf type: document nlilat: '000526977' term: Du Wés, Giles, d. 1535 version: 2013-07-01T14:07:50Z viafid: '56958313' --- _id: 064a3bcdcd373f3d69a3d7c11299ad01 bav: adv10039822 bne: xx1509955 bnf: '14411246' dnb: '172865581' key: BurggraeveAdolphe1806-1902médecin lc: n87143921 merge: id: 064a3bcdcd373f3d69a3d7c11299ad01 source: viaf type: document nkc: nlk20010095088 nlilat: '000487154' ptbnp: '1170490' swnl: vtls001845815 term: Burggraeve, Adolphe 1806-1902 médecin version: 2013-07-01T14:07:50Z viafid: '22356578' --- _id: 064c8f328a561cf6b785d5fe0075f34b bne: xx949471 bnf: '12153434' dnb: '118639250' key: GladkovFedorVasil'evič1883-1958 lc: n83033940 merge: id: 064c8f328a561cf6b785d5fe0075f34b source: viaf type: document nkc: jn20000601841 nla: '000035494819' nlicyr: '000149906' nlilat: '000053687' ptbnp: '1184722' selibr: '188306' term: Gladkov, Fedor Vasil'evič, 1883-1958 version: 2013-07-01T14:07:50Z viafid: '14808548' --- _id: 064fcdb7d1de507dd756a9557de520c0 bav: adv11363714 bnf: '12039796' dnb: '104359129' key: BenoîtAndré1919-1999 lc: n87814894 merge: id: 064fcdb7d1de507dd756a9557de520c0 source: viaf type: document nlilat: '000275776' term: Benoît, André, 1919-1999 version: 2013-07-01T14:07:50Z viafid: '91254540' --- _id: 06591d91c150c92af9835cf50d2c62fb bnf: '12124245' dnb: '121628965' key: BjurströmCarl-Gustaf(1919-2001) lc: n86048828 merge: id: 06591d91c150c92af9835cf50d2c62fb source: viaf type: document nkc: jn20030707002 selibr: '178463' term: Bjurström, Carl-Gustaf (1919-2001) version: 2013-07-01T14:07:50Z viafid: '111662582' --- _id: 065c50ea12cb2d80a999478d239a9ab8 bav: adv10231647 bnf: '12563614' dnb: '174299559' jpg: '500056684' key: BellicardJérôme-Charles1726-1786 lc: nr90023327 merge: id: 065c50ea12cb2d80a999478d239a9ab8 source: viaf type: document term: Bellicard, Jérôme-Charles, 1726-1786 version: 2013-07-01T14:07:50Z viafid: '19795286' --- _id: 066563a6e5eed341f77180a4a21741f9 bav: adv12218451 bnf: '13320597' dnb: 12108972x key: VendômeCésardeBourbon1594-1665ducde lc: n87921604 merge: id: 066563a6e5eed341f77180a4a21741f9 source: viaf type: document term: Vendôme, César de Bourbon, 1594-1665, duc de version: 2013-07-01T14:07:50Z viafid: '51834768' --- _id: 0669f8ea262f3b8052985c7bc2e67ec3 bnf: '10848291' key: CondéBruno1920-2004 merge: id: 0669f8ea262f3b8052985c7bc2e67ec3 source: viaf type: document term: Condé, Bruno, 1920-2004 version: 2013-07-01T14:07:50Z viafid: '197153509' --- _id: 066e22c971053b945164b1c3c0211929 bav: adv10001382 bnf: '12594274' dnb: '131424092' key: CadierLéon1862-1889 lc: n81098089 merge: id: 066e22c971053b945164b1c3c0211929 source: viaf type: document nlilat: '000278813' term: Cadier, Léon, 1862-1889 version: 2013-07-01T14:07:50Z viafid: '17341513' --- _id: 066fa0f96497ef25024fb2ce97b50fdf key: PopescuDumitruRadu1935-|Plays(ScrisulRomânesc(Firm)) lc: no2011145982 merge: id: 066fa0f96497ef25024fb2ce97b50fdf source: viaf type: document term: Popescu, Dumitru Radu, 1935- | Plays (Scrisul Românesc (Firm)) version: 2013-07-01T14:07:50Z viafid: '182579379' --- _id: 0671438f6a218e762d6c1af41e376cd8 key: RíosRuizManuel1934-|PoemsSelections lc: n90675555 merge: id: 0671438f6a218e762d6c1af41e376cd8 source: viaf type: document term: Ríos Ruiz, Manuel, 1934- | Poems. Selections version: 2013-07-01T14:07:50Z viafid: '175860653' --- _id: 0679f0944f5a75db66565e7cbd4bb36e bnf: '12417587' dnb: '119194449' key: SlüterJoachim1490?-1532 lc: nr88003093 merge: id: 0679f0944f5a75db66565e7cbd4bb36e source: viaf type: document term: Slüter, Joachim 1490?-1532 version: 2013-07-01T14:07:50Z viafid: '73941663' --- _id: 067cc02a3ea7a2aeb2076b9146b12c73 bnf: '13206058' dnb: '138434794' key: TzitzéicaGeorges1873-1939 merge: id: 067cc02a3ea7a2aeb2076b9146b12c73 source: viaf type: document term: Tzitzéica, Georges, 1873-1939 version: 2013-07-01T14:07:50Z viafid: '22285232' --- _id: 067f8a57622cb14e2b37f6879ec652f1 bnf: '12302154' dnb: '118928139' key: BažovPavelPetrovič1879-1950 lc: n82276231 merge: id: 067f8a57622cb14e2b37f6879ec652f1 source: viaf type: document nkc: jn20000600676 nla: '000036240777' term: Bažov, Pavel Petrovič, 1879-1950 version: 2013-07-01T14:07:50Z viafid: '61747706' --- _id: 0687cf0da966e787af9a417f771272af bnf: '10477669' key: MarjolinRené1812-1895 merge: id: 0687cf0da966e787af9a417f771272af source: viaf type: document term: Marjolin, René, 1812-1895 version: 2013-07-01T14:07:50Z viafid: '100262560' --- _id: 069004114bebe77076f82823a45bc54c bav: adv10001814 bne: xx1000933 dnb: '118778072' jpg: '500348408' key: KrügerFritzb1889 lc: n93098114 merge: id: 069004114bebe77076f82823a45bc54c source: viaf type: document term: Krüger, Fritz, b. 1889 version: 2013-07-01T14:07:50Z viafid: '20476475' --- _id: 0690c1862a77f156369675346ef98f96 bnf: '12528830' dnb: '128745398' key: MulotFrançois-Valentin1749-1804 lc: n88277093 merge: id: 0690c1862a77f156369675346ef98f96 source: viaf type: document nla: '000049287147' nlilat: '000495994' term: Mulot, François-Valentin, 1749-1804 version: 2013-07-01T14:07:50Z viafid: '5041159' --- _id: 0693c5f038b384e677c5e77e154c2530 bnf: '12718516' dnb: '100114245' key: DuboisLéon-Jean-Joseph1780-1846 merge: id: 0693c5f038b384e677c5e77e154c2530 source: viaf type: document term: Dubois, Léon-Jean-Joseph, 1780-1846 version: 2013-07-01T14:07:50Z viafid: '14896063' --- _id: 069f1bb9058b863e69f380b2fa393d5e dnb: '118154346' key: MüllerKlaus-Jürgen1930-2011 merge: id: 069f1bb9058b863e69f380b2fa393d5e source: viaf type: document nkc: jx20110607011 term: Müller, Klaus-Jürgen, 1930-2011 version: 2013-07-01T14:07:50Z viafid: '193716647' --- _id: 06a8355a8f1d760ee3d0eef8733a5c81 bnf: '12029894' dnb: '120151804' key: WażykAdam1905-1982 lc: n83019835 merge: id: 06a8355a8f1d760ee3d0eef8733a5c81 source: viaf type: document nkc: ola2003198070 nlilat: '000452096' term: Ważyk, Adam, 1905-1982 version: 2013-07-01T14:07:50Z viafid: '54162839' --- _id: 06af10eff23a8b0676a64a7599915cc8 bnf: '12459996' dnb: '171979176' key: BéraudPaul-Émilien1751-1836 lc: n84001362 merge: id: 06af10eff23a8b0676a64a7599915cc8 source: viaf type: document term: Béraud, Paul-Émilien, 1751-1836 version: 2013-07-01T14:07:50Z viafid: '69027028' --- _id: 06b41cdb86d2d8d686541df0311b827b bav: adv10191773 bnf: '12898573' dnb: '117186058' jpg: '500061003' key: MuñozAntonio1884-1960 lc: n85101793 merge: id: 06b41cdb86d2d8d686541df0311b827b source: viaf type: document nkc: xx0097292 nlilat: '000469506' term: Muñoz, Antonio, 1884-1960 version: 2013-07-01T14:07:50Z viafid: '140062' --- _id: 06b6e21b0c20cc0e2f9150570cf73ce2 bnf: '12762896' dnb: '119421607' jpg: '500226038' key: DeMaréEricSamuel(1910-2002) lc: n50040408 merge: id: 06b6e21b0c20cc0e2f9150570cf73ce2 source: viaf type: document nla: '000036500020' nlilat: '000037760' term: De Maré, Eric Samuel (1910-2002) version: 2013-07-01T14:07:50Z viafid: '97764159' --- _id: 06be3bc85bb78e50239873e37aae4573 bnf: '12023715' dnb: '102367817' key: HorálekKarel1908-1992 lc: n80138924 merge: id: 06be3bc85bb78e50239873e37aae4573 source: viaf type: document nkc: jk01042148 term: Horálek, Karel, 1908-1992 version: 2013-07-01T14:07:50Z viafid: '17236384' --- _id: 06c16ad77d3b5db8889a3045f51b7371 bnf: '10544471' dnb: '172988926' key: CalletJean-François1744-1799Mathématicien merge: id: 06c16ad77d3b5db8889a3045f51b7371 source: viaf type: document nkc: mzk2010564361 ptbnp: '913753' term: Callet, Jean-François, 1744-1799, Mathématicien version: 2013-07-01T14:07:50Z viafid: '232873357' --- _id: 06c1745c811e98ea73a860675bc41719 bav: adv10231930 bnf: '10721511' key: AndréMichel1803-1878 lc: n85305068 merge: id: 06c1745c811e98ea73a860675bc41719 source: viaf type: document nla: '000035602103' term: André, Michel, 1803-1878 version: 2013-07-01T14:07:50Z viafid: '55605061' --- _id: 06c1a0e3f042ce5c336789ac550baf29 dnb: 12297221x key: PleščeevSergejIvanovič1752-1802 lc: no91027760 merge: id: 06c1a0e3f042ce5c336789ac550baf29 source: viaf type: document ptbnp: '207043' term: Pleščeev, Sergej Ivanovič, 1752-1802 version: 2013-07-01T14:07:50Z viafid: '67361637' --- _id: 06cf451ff38a7c1653f5a5f3b41265ac key: HoffmannGretl1925-|DekorativetürenEnglish&German lc: no2011126833 merge: id: 06cf451ff38a7c1653f5a5f3b41265ac source: viaf type: document nla: '000036364850' term: Hoffmann, Gretl, 1925- | Dekorative türen. English & German version: 2013-07-01T14:07:50Z viafid: '180143985' --- _id: 06d413fcbd39fdc70db8e1d3224181af bnf: '12017771' dnb: '118638300' key: ČernenkoKonstantinUstinovič1911-1985 lc: n79115293 merge: id: 06d413fcbd39fdc70db8e1d3224181af source: viaf type: document nkc: jn20000700349 nla: '000035781201' nlicyr: '000158452' ptbnp: '38023' selibr: '229818' term: Černenko, Konstantin Ustinovič, 1911-1985 version: 2013-07-01T14:07:50Z viafid: '27077285' --- _id: 06d7102b4e65cffa8be66b8cb182e32d bav: adv10258860 bne: xx837149 bnf: '13608608' dnb: '121603830' key: FitayColoméFidel1835-1918 lc: n2005041558 merge: id: 06d7102b4e65cffa8be66b8cb182e32d source: viaf type: document nlilat: '000550950' term: Fita y Colomé, Fidel, 1835-1918 version: 2013-07-01T14:07:50Z viafid: '89018496' --- _id: 06dd896ca27269ba2ea2f788a41a86d8 bne: xx916122 bnf: '12052333' dnb: 11885559x key: MejíaVallejoManuel1923-1998 lc: n80122793 merge: id: 06dd896ca27269ba2ea2f788a41a86d8 source: viaf type: document nkc: kup19990000064005 nlilat: '000431397' ptbnp: '265163' term: Mejía Vallejo, Manuel, 1923-1998 version: 2013-07-01T14:07:50Z viafid: '102370369' --- _id: 06e4d60284f5b4c25e5350286f446804 bav: adv11085166 bne: xx1411114 bnf: '11921295' dnb: '118788035' key: RaynouardFrançois-Just-Marie1761-1836 lc: n83041906 merge: id: 06e4d60284f5b4c25e5350286f446804 source: viaf type: document nkc: mzk2006323048 nlilat: '000452871' ptbnp: '57456' term: Raynouard, François-Just-Marie, 1761-1836 version: 2013-07-01T14:07:50Z viafid: '59088344' --- _id: 06eba25de6cfa6d132ee4be56fa93d03 bav: adv10136326 bnf: '15052887' dnb: '119559803' jpg: '500030709' key: GrabarʹIgorʹĖmmanuilovič1871-1960 lc: n81118316 merge: id: 06eba25de6cfa6d132ee4be56fa93d03 source: viaf type: document nkc: jn20000602226 nla: '000035846136' nlicyr: '000150164' selibr: '237916' term: Grabarʹ, Igorʹ Ėmmanuilovič, 1871-1960 version: 2013-07-01T14:07:50Z viafid: '106964268' --- _id: 06f0234e6a391afdc25605df0c29ffc0 bnf: '13475600' dnb: '102079056' key: Renaud'EliçagarayBernard1652-1719 lc: nr93033093 merge: id: 06f0234e6a391afdc25605df0c29ffc0 source: viaf type: document term: Renau d'Eliçagaray, Bernard, 1652-1719 version: 2013-07-01T14:07:50Z viafid: '69078990' --- _id: 06f5a795af4d5a07f91b01a4030dcf09 bnf: '11897473' dnb: '101290896' key: CompayréGabriel1843-1913 lc: n50031444 merge: id: 06f5a795af4d5a07f91b01a4030dcf09 source: viaf type: document nkc: mzk2003196114 nla: '000035030224' nlilat: '000407506' ptbnp: '147394' selibr: '359717' term: Compayré, Gabriel, 1843-1913 version: 2013-07-01T14:07:50Z viafid: '22140258' --- _id: 06feace3bae356739005c82dcf5f9169 key: YamadaShōji1963-|ZentoiunanoNihonMaruEnglish lc: no2008139072 merge: id: 06feace3bae356739005c82dcf5f9169 source: viaf type: document term: Yamada, Shōji, 1963- | Zen to iu na no Nihon Maru. English version: 2013-07-01T14:07:50Z viafid: '176079419' --- _id: 07012c7f391f17eec35571a4a43fdd59 bav: adv11204416 key: WaagéFrederickOswin1906-1985 lc: no2010129722 merge: id: 07012c7f391f17eec35571a4a43fdd59 source: viaf type: document nla: '000035585401' ptbnp: '1016568' term: Waagé, Frederick Oswin, 1906-1985 version: 2013-07-01T14:07:50Z viafid: '89453146' --- _id: 07061328a26927d12ce58a93b51594b3 dnb: '119076403' key: KrilandGösta1917-1989 lc: nb2003102459 merge: id: 07061328a26927d12ce58a93b51594b3 source: viaf type: document selibr: '221619' term: Kriland, Gösta, 1917-1989 version: 2013-07-01T14:07:50Z viafid: '13109716' --- _id: 07082f29f457c049509b8838b7f68f19 bav: adv10259186 bne: xx878894 bnf: '11930010' dnb: '118619799' key: SuárezFrancisco1548-1617 lc: n78095702 merge: id: 07082f29f457c049509b8838b7f68f19 source: viaf type: document nkc: jn20010601851 nla: '000035711762' nlilat: '000128559' ptbnp: '29515' selibr: '210629' term: Suárez, Francisco, 1548-1617 version: 2013-07-01T14:07:50Z viafid: '39385631' --- _id: 070dd09c86c5eebdb440dfb7af250e97 key: TeleszkyIstván1836-1899 lc: n2006081406 merge: id: 070dd09c86c5eebdb440dfb7af250e97 source: viaf type: document term: Teleszky, István, 1836-1899 version: 2013-07-01T14:07:50Z viafid: '14203195' --- _id: 070e472ad2d8b0b3a20837aa00e01b2f bnf: '13324451' dnb: '128772530' key: DeRidderAndré(1888-1961) merge: id: 070e472ad2d8b0b3a20837aa00e01b2f source: viaf type: document selibr: '265239' term: De Ridder, André (1888-1961) version: 2013-07-01T14:07:50Z viafid: '44443789' --- _id: 0713c7b3126aedb05de82e427bcced8d bne: xx971231 key: CarlénJohanGabriel1814-1875 merge: id: 0713c7b3126aedb05de82e427bcced8d source: viaf type: document selibr: '181100' term: Carlén, Johan Gabriel, 1814-1875 version: 2013-07-01T14:07:50Z viafid: '87975148' --- _id: 07186c4adfce3f2328740f4c397a024e bav: adv12068688 key: CederschiöldWilhelm1882-1959 merge: id: 07186c4adfce3f2328740f4c397a024e source: viaf type: document selibr: '294047' term: Cederschiöld, Wilhelm, 1882-1959 version: 2013-07-01T14:07:50Z viafid: '36902558' --- _id: 072aaa0999f39c62e0edc9339cd9abc5 bav: adv10034420 egaxa: vtls000878522 key: Abūal-ʻAtāhiyahIsmāʻīlibnal-Qāsim747or8-826? lc: n83179246 merge: id: 072aaa0999f39c62e0edc9339cd9abc5 source: viaf type: document nla: '000041505649' nliara: '000158636' nlilat: '000456008' selibr: '175993' term: Abū al-ʻAtāhiyah, Ismāʻīl ibn al-Qāsim, 747 or 8-826? version: 2013-07-01T14:07:50Z viafid: '100164509' --- _id: 072ed64c2ae2a2fa5a769e08a759412a key: IonicăIonI1907-1944 lc: no99019211 merge: id: 072ed64c2ae2a2fa5a769e08a759412a source: viaf type: document term: Ionică, Ion I., 1907-1944 version: 2013-07-01T14:07:50Z viafid: '26694402' --- _id: 0731c92cb7083207efa31829349d0c7c key: ColladoFaustino1954-|Partidismopolíticodominicano lc: n91016204 merge: id: 0731c92cb7083207efa31829349d0c7c source: viaf type: document term: Collado, Faustino, 1954- | Partidismo político dominicano version: 2013-07-01T14:07:50Z viafid: '185964337' --- _id: 073b299bee6ca03188299d332dcc7609 bne: xx962422 bnf: '12634957' dnb: '124328563' key: RichterGünter1931Mar18- lc: n95051309 merge: id: 073b299bee6ca03188299d332dcc7609 source: viaf type: document term: Richter, Günter, 1931 Mar. 18- version: 2013-07-01T14:07:50Z viafid: '43548553' --- _id: 073b984781b3093bc127f932354405f5 bav: adv11683886 bne: xx1763249 bnf: '12171147' dnb: 11663426x key: KyriakidēsStilpōnParaskeua1887-1964 lc: n86122581 merge: id: 073b984781b3093bc127f932354405f5 source: viaf type: document selibr: '325788' term: Kyriakidēs, Stilpōn Paraskeua, 1887-1964 version: 2013-07-01T14:07:50Z viafid: '69687416' --- _id: 073c2d618d0ab73d183d88598a8af374 bne: xx1183065 bnf: '12078882' dnb: '116427310' key: FéeAntoineLaurentApollinaire1789-1874 lc: n90674184 merge: id: 073c2d618d0ab73d183d88598a8af374 source: viaf type: document nla: '000035450353' nlilat: '000503594' ptbnp: '169829' selibr: '351154' term: Fée, Antoine Laurent Apollinaire, 1789-1874 version: 2013-07-01T14:07:50Z viafid: '49249817' --- _id: 073c3efb70e7e7730859e80d2ecdda94 bav: adv12205170 bne: xx1243414 bnf: '12094974' dnb: '101145799' key: ChampsaurFélicien1859-1934 lc: no90020373 merge: id: 073c3efb70e7e7730859e80d2ecdda94 source: viaf type: document nkc: jn20030827002 nlilat: '000515789' ptbnp: '174311' term: Champsaur, Félicien, 1859-1934 version: 2013-07-01T14:07:50Z viafid: '49253009' --- _id: 073f9bdbf094631ee4dedddbd13ca64b key: WaldenfelsBernhard1934-|GrundmotiveeinerPhänomenologiedesFremdenEnglish lc: no2011035899 merge: id: 073f9bdbf094631ee4dedddbd13ca64b source: viaf type: document term: Waldenfels, Bernhard, 1934- | Grundmotive einer Phänomenologie des Fremden. English version: 2013-07-01T14:07:50Z viafid: '186609991' --- _id: 073fa31e89d1c48159a9e1030a866083 key: HärtlingPeter1933-|AlterJohnEnglish lc: n88298550 merge: id: 073fa31e89d1c48159a9e1030a866083 source: viaf type: document term: Härtling, Peter, 1933- | Alter John. English version: 2013-07-01T14:07:50Z viafid: '181500746' --- _id: 074e783c2f5c713b64196686df2b3690 bav: adv11144440 bne: xx1719678 bnf: '12176085' dnb: '118791540' key: RuizdeAlarcónJuan1580?-1639 lc: n50026232 merge: id: 074e783c2f5c713b64196686df2b3690 source: viaf type: document nkc: jn19990007243 nla: '000035749002' nlilat: '000406196' ptbnp: '56462' selibr: '197612' term: Ruiz de Alarcón, Juan, 1580?-1639 version: 2013-07-01T14:07:50Z viafid: '88975006' --- _id: 075f6a8230cf5195935d9e4e25e0db53 bnf: '11561803' dnb: '133168581' key: VlaisavljevićVlado1901-1943 merge: id: 075f6a8230cf5195935d9e4e25e0db53 source: viaf type: document nkc: js2007409741 term: Vlaisavljević, Vlado, 1901-1943 version: 2013-07-01T14:07:50Z viafid: '77496415' --- _id: 07712f3f0168a77c35198ce83c14e963 bav: adv11323234 bnf: '10457047' dnb: '102750998' key: TripierLéon1842-1891 merge: id: 07712f3f0168a77c35198ce83c14e963 source: viaf type: document term: Tripier, Léon 1842-1891 version: 2013-07-01T14:07:50Z viafid: '49622265' --- _id: 0773d9d3625f21a6e6f54a849cf18fd6 bav: adv12186963 dnb: '172370264' key: SérieysAntoine1755-1829 lc: no89010699 merge: id: 0773d9d3625f21a6e6f54a849cf18fd6 source: viaf type: document nla: '000049287319' nlilat: '000120450' ptbnp: '97142' term: Sérieys, Antoine, 1755-1829 version: 2013-07-01T14:07:50Z viafid: '36473672' --- _id: 0776428e7734a400d990b22721d148a8 bav: adv10994005 dnb: '176857249' key: NúñezdeVillaizánJuan14thcent lc: no2007130239 merge: id: 0776428e7734a400d990b22721d148a8 source: viaf type: document ptbnp: '414660' term: Núñez de Villaizán, Juan, 14th cent version: 2013-07-01T14:07:50Z viafid: '79274519' --- _id: 077eccad165f75a370de8ffbdba9698c bav: adv10975640 dnb: '104327995' key: MynasCMinoïde1790-1860 lc: nr97018121 merge: id: 077eccad165f75a370de8ffbdba9698c source: viaf type: document nlilat: '000531538' term: Mynas, C. Minoïde, 1790-1860 version: 2013-07-01T14:07:50Z viafid: '61986166' --- _id: 07814ed292b5f17b350c9f7546e60a67 bav: adv12163693 bnf: '11886493' dnb: 11854389x key: GuyonJeanne-MarieBouvièresdeLaMotte1648-1717 lc: n81108294 merge: id: 07814ed292b5f17b350c9f7546e60a67 source: viaf type: document nkc: mzk2003198828 nla: '000035159024' nlilat: '000058203' selibr: '187803' swnl: vtls003074795 term: Guyon, Jeanne-Marie Bouvières de La Motte, 1648-1717 version: 2013-07-01T14:07:50Z viafid: '61540026' --- _id: 0785ea831da0756e5a6777d783082da7 key: TourneuxFrédéricb1852 lc: nr2004021587 merge: id: 0785ea831da0756e5a6777d783082da7 source: viaf type: document term: Tourneux, Frédéric, b. 1852 version: 2013-07-01T14:07:50Z viafid: '9796406' --- _id: 0790e7593308adf8ce4a23b410de7094 dnb: '118660535' key: BöcklerGeorgAndreas1617-1687 merge: id: 0790e7593308adf8ce4a23b410de7094 source: viaf type: document nkc: ola2009507571 selibr: '342231' term: Böckler, Georg Andreas, 1617-1687 version: 2013-07-01T14:07:50Z viafid: '95968387' --- _id: 0791e668e8b99a085e0f24117348e710 key: LeBoursierduCoudrayAngéliqueMarguerite1715-1794 merge: id: 0791e668e8b99a085e0f24117348e710 source: viaf type: document term: Le Boursier du Coudray, Angélique Marguerite, 1715-1794 version: 2013-07-01T14:07:50Z viafid: '206937247' --- _id: 079b1850f2ab5db57f07ecc26c90aa22 bnf: '11923039' dnb: '173256023' key: RoyerJean1938-poète lc: n82088337 merge: id: 079b1850f2ab5db57f07ecc26c90aa22 source: viaf type: document nla: '000035180102' term: Royer, Jean, 1938-, poète version: 2013-07-01T14:07:50Z viafid: '95323450' --- _id: 07ad68bf80d0fd9b3283648fb065bfa8 bav: adv10882046 bne: xx1332188 bnf: '12125148' dnb: '118713507' key: KörnerCarlTheodor1791-1813 lc: n84045242 merge: id: 07ad68bf80d0fd9b3283648fb065bfa8 source: viaf type: document nkc: jn20021203005 nla: '000035283942' nlilat: '000079845' selibr: '284839' term: Körner, Carl Theodor, 1791-1813 version: 2013-07-01T14:07:50Z viafid: '51723180' --- _id: 07b7375e7c918a0d36bf0b469c7bb85a bnf: '14046290' dnb: '103370390' key: BogomolovVladimirOsipovič1926-2003 lc: n83216531 merge: id: 07b7375e7c918a0d36bf0b469c7bb85a source: viaf type: document nkc: jx20041208021 nla: '000036505730' ptbnp: '15166' selibr: '235812' term: Bogomolov, Vladimir Osipovič, 1926-2003 version: 2013-07-01T14:07:50Z viafid: '54559822' --- _id: 07bfd705791a7bc0362f18a99cd3ae82 bav: adv11051898 bne: xx902959 bnf: '11920607' dnb: '118596462' key: PrévostD'ExilesAntoineFrançois1697-1763 lc: n50027694 merge: id: 07bfd705791a7bc0362f18a99cd3ae82 source: viaf type: document nkc: jn20000710488 nla: '000036562374' nlilat: '000107716' ptbnp: '328305' selibr: '196695' term: Prévost D'Exiles, Antoine François 1697-1763 version: 2013-07-01T14:07:50Z viafid: '17228264' --- _id: 07c5b2a28ea57dd817f8663f22ce8d63 bnf: '12217781' dnb: '119095041' key: MoléLouis-Mathieu(1781-1855) lc: n87933602 merge: id: 07c5b2a28ea57dd817f8663f22ce8d63 source: viaf type: document nla: '000049783634' nlilat: '000490971' term: Molé, Louis-Mathieu (1781-1855) version: 2013-07-01T14:07:50Z viafid: '7440787' --- _id: 07c5bf44d8512ac8f51c1631fd37e185 bav: adv10983139 bnf: '10363117' dnb: '117732621' key: MaillyÉdouard1810-1891 merge: id: 07c5bf44d8512ac8f51c1631fd37e185 source: viaf type: document term: Mailly, Édouard, 1810-1891 version: 2013-07-01T14:07:50Z viafid: '31002223' --- _id: 07ca03916ef0b70935b47ec8aaa20951 bnf: '12186334' dnb: '151137250' key: GuillénRoblesFranciscod1920 lc: n81106856 merge: id: 07ca03916ef0b70935b47ec8aaa20951 source: viaf type: document nlilat: '000057730' term: Guillén Robles, Francisco, d. 1920 version: 2013-07-01T14:07:50Z viafid: '100176392' --- _id: 07cbb3fbf1432f4ec0f4de8e8a5f6c4d bav: adv10088767 dnb: '102693145' key: SörbomGunnar1899-1992 lc: no2009188094 merge: id: 07cbb3fbf1432f4ec0f4de8e8a5f6c4d source: viaf type: document term: Sörbom, Gunnar, 1899-1992 version: 2013-07-01T14:07:50Z viafid: '39773714' --- _id: 07d5d5f1bd824668cfb78de8e96725ee bav: adv12247038 bnf: '12159281' dnb: 11734138x key: Lugné-PoeAurélien-Françoise1869-1940 lc: n85017309 merge: id: 07d5d5f1bd824668cfb78de8e96725ee source: viaf type: document nkc: kup19970000059228 nlilat: '000467106' selibr: '278658' term: Lugné-Poe, Aurélien-Françoise, 1869-1940 version: 2013-07-01T14:07:50Z viafid: '54187174' --- _id: 07de67cc1194f3dbc6d6e4e54b300447 bav: adv10107863 bnf: '11930756' key: AndréRobert1925-2001 lc: n81087066 merge: id: 07de67cc1194f3dbc6d6e4e54b300447 source: viaf type: document term: André, Robert 1925-2001 version: 2013-07-01T14:07:50Z viafid: '110008401' --- _id: 07df3dc1e5aea3037235c5ea2206a78d bav: adv10073900 bnf: '11898644' dnb: '131592459' key: DarmesteterArséne1846-1888 lc: n83826298 merge: id: 07df3dc1e5aea3037235c5ea2206a78d source: viaf type: document nkc: mzk2010580693 nla: '000035164553' nlilat: '000037029' ptbnp: '172047' term: Darmesteter, Arséne, 1846-1888 version: 2013-07-01T14:07:50Z viafid: '24600230' --- _id: 07e7744ccd84935a8e6bc5ca5aea2dd3 bav: adv10433888 bne: xx1055879 bnf: '11912783' dnb: 11889921x key: LévêquePierre1921-2004 lc: n50049987 merge: id: 07e7744ccd84935a8e6bc5ca5aea2dd3 source: viaf type: document nkc: xx0010873 nla: '000035301759' nlilat: '000411857' ptbnp: '144172' term: Lévêque, Pierre, 1921-2004 version: 2013-07-01T14:07:50Z viafid: '109605207' --- _id: 07e822a099f4dafae747dbda09b45a11 bav: adv11035454 dnb: '119022753' key: NovotnýFrantišek1881-1964 lc: n80146066 merge: id: 07e822a099f4dafae747dbda09b45a11 source: viaf type: document nkc: jk01090667 nla: '000035949388' nlilat: '000432644' term: Novotný, František, 1881-1964 version: 2013-07-01T14:07:50Z viafid: '42638825' --- _id: 07edcd568edb6e6690981921f95a23b5 bav: adv10125688 bnf: '13007480' dnb: '122855043' key: BruslédeMontpleinchampJean-Chrysostome1641-1724 lc: no96015544 merge: id: 07edcd568edb6e6690981921f95a23b5 source: viaf type: document nkc: mzk2009533679 term: Bruslé de Montpleinchamp, Jean-Chrysostome, 1641-1724 version: 2013-07-01T14:07:50Z viafid: '19812402' --- _id: 07f3223f3ced71e78378bff70cf920a9 dnb: '130372617' key: NemčićAntun1813-1849 lc: n2001030324 merge: id: 07f3223f3ced71e78378bff70cf920a9 source: viaf type: document term: Nemčić, Antun, 1813-1849 version: 2013-07-01T14:07:50Z viafid: '15876000' --- _id: 07f375c531d44be0982e59c6d2f65183 bav: adv10070455 bnf: '12770397' dnb: '1029580375' key: GossartErnestÉdouard1837-1919 merge: id: 07f375c531d44be0982e59c6d2f65183 source: viaf type: document ptbnp: '100916' term: Gossart, Ernest Édouard, 1837-1919 version: 2013-07-01T14:07:50Z viafid: '88727666' --- _id: 07f86f0aed45c69e9e61e929721ccc5e bav: adv10025976 dnb: '118555405' key: IkonnikovVladimirStepanovič1841-1923 lc: n85193526 merge: id: 07f86f0aed45c69e9e61e929721ccc5e source: viaf type: document nkc: js2006345178 term: Ikonnikov, Vladimir Stepanovič, 1841-1923 version: 2013-07-01T14:07:50Z viafid: '42629624' --- _id: 07f9ae537ecb7698b75a822341cf9834 bav: adv10883437 bnf: '12553466' dnb: '118778161' key: KühnAlfred1885-1968 lc: n85802982 merge: id: 07f9ae537ecb7698b75a822341cf9834 source: viaf type: document nla: '000035284607' nlilat: '000477778' term: Kühn, Alfred, 1885-1968 version: 2013-07-01T14:07:50Z viafid: '39491936' --- _id: 07fd336129efdfd90231764f1c508b4e bnf: '11927612' dnb: '122677560' key: VanPraagHM1929-(HermanMeïr) lc: n79073510 merge: id: 07fd336129efdfd90231764f1c508b4e source: viaf type: document nla: '000036080446' ptbnp: '79148' term: Van Praag, H. M., 1929-, (Herman Meïr) version: 2013-07-01T14:07:50Z viafid: '108391730' --- _id: 08021f92c833cd0977b3faff7b65f871 bnf: '12218906' key: MarçaisJean1904-1991 merge: id: 08021f92c833cd0977b3faff7b65f871 source: viaf type: document term: Marçais, Jean, 1904-1991 version: 2013-07-01T14:07:50Z viafid: '66517086' --- _id: 080ad84beb72a14be032de4e7f66b6af dnb: '103699333' key: OtčenášekJan1924-1979 lc: n50049605 merge: id: 080ad84beb72a14be032de4e7f66b6af source: viaf type: document nkc: jk01091352 nlilat: '000102221' ptbnp: '138792' term: Otčenášek, Jan, 1924-1979 version: 2013-07-01T14:07:50Z viafid: '49644726' --- _id: 080c4c63ddc6a405776c479d7c2bace0 key: FardéPieter1651-1691 merge: id: 080c4c63ddc6a405776c479d7c2bace0 source: viaf type: document term: Fardé, Pieter, 1651-1691 version: 2013-07-01T14:07:50Z viafid: '286779140' --- _id: 080ffc546a9df71a5eb53f22937d9635 dnb: '142377139' key: PéeJulius1871-1951 merge: id: 080ffc546a9df71a5eb53f22937d9635 source: viaf type: document term: Pée, Julius, 1871-1951 version: 2013-07-01T14:07:50Z viafid: '127442574' --- _id: 0826759c571514fa5c86701154c0a9c6 dnb: '116036982' key: BärtlingRichard1878-1936 merge: id: 0826759c571514fa5c86701154c0a9c6 source: viaf type: document term: Bärtling, Richard, 1878-1936 version: 2013-07-01T14:07:50Z viafid: '8129006' --- _id: 082bd4b1618e3fbd719a4f2a6f82abfa bav: adv10105269 bnf: '11899617' dnb: '127516352' key: DenneryÉtienne(1903-1979) lc: no97066112 merge: id: 082bd4b1618e3fbd719a4f2a6f82abfa source: viaf type: document nlilat: '000533465' term: Dennery, Étienne (1903-1979) version: 2013-07-01T14:07:50Z viafid: '79521759' --- _id: 082f747ac733058264ecf7d112a974a6 key: KostrhunJan1942-|Modrýkvíteček lc: n90711938 merge: id: 082f747ac733058264ecf7d112a974a6 source: viaf type: document term: Kostrhun, Jan, 1942- | Modrý kvíteček version: 2013-07-01T14:07:50Z viafid: '175057572' --- _id: 08380fac4349836d985ebaa82a911206 bav: adv10180719 bnf: '12599060' dnb: 10044668x key: Crétineau-JolyJacquesAugustinMarie1803-1875 lc: nr90012336 merge: id: 08380fac4349836d985ebaa82a911206 source: viaf type: document nkc: mzk2002110329 nla: '000035825083' nlilat: '000524485' ptbnp: '95242' swnl: vtls001892514 term: Crétineau-Joly, Jacques Augustin Marie, 1803-1875 version: 2013-07-01T14:07:50Z viafid: '95175944' --- _id: 083bee80111fcbd6959714cca513821d dnb: '989175995' key: JungheinrichHans-Klaus1938-|DmitrioderDerKünstlerunddieMacht merge: id: 083bee80111fcbd6959714cca513821d source: viaf type: document term: Jungheinrich, Hans-Klaus 1938- | Dmitri oder Der Künstler und die Macht version: 2013-07-01T14:07:50Z viafid: '215964382' --- _id: 083ec04cb31fbba6f2d866dd4960a8bd bne: xx1104029 bnf: '12004268' dnb: '118641476' key: PardoBazánEmilia1851-1921 merge: id: 083ec04cb31fbba6f2d866dd4960a8bd source: viaf type: document nkc: jn20000703239 ptbnp: '58743' selibr: '196794' term: Pardo Bazán, Emilia, 1851-1921 version: 2013-07-01T14:07:50Z viafid: '51699645' --- _id: 08520ea81f31f6b6c8896919456e6dd2 bav: adv11200062 bne: xx955263 bnf: '11927154' dnb: '118802801' key: TrubeckojNikolajSergeevič1890-1938 lc: n85102285 merge: id: 08520ea81f31f6b6c8896919456e6dd2 source: viaf type: document nkc: jo20000082541 nla: '000035556677' nlicyr: '000366469' nlilat: '000132813' selibr: '97744' term: Trubeckoj, Nikolaj Sergeevič, 1890-1938 version: 2013-07-01T14:07:50Z viafid: '95300260' --- _id: 085e1b961651672f453eb21b89dde84c bnf: '12528907' dnb: '123429641' key: FréteaudeSaint-JustÉmmanuel-Marie-Michel-Philippe1745-1794 lc: nr00039834 merge: id: 085e1b961651672f453eb21b89dde84c source: viaf type: document term: Fréteau de Saint-Just, Émmanuel-Marie-Michel-Philippe 1745-1794 version: 2013-07-01T14:07:50Z viafid: '37027035' --- _id: 086246289efa743751d551b8740ca6c4 key: GeorgievskiTaško(1935-)|Crnoseme(maced) merge: id: 086246289efa743751d551b8740ca6c4 source: viaf type: document term: Georgievski, Taško (1935- ). | Crno seme (maced.) version: 2013-07-01T14:07:50Z viafid: '293673101' --- _id: 0862bacba0bfc9620826527a56cb3fb3 bne: xx1767867 bnf: '12386934' dnb: '117369918' key: WießnerEdmund1875-1956 lc: n87829709 merge: id: 0862bacba0bfc9620826527a56cb3fb3 source: viaf type: document nla: '000035903047' nlilat: '000488478' term: Wießner, Edmund, 1875-1956 version: 2013-07-01T14:07:50Z viafid: '12390488' --- _id: 086acc40c4caf51f99b41dc6603196fd bnf: '11892379' dnb: '121000842' key: Bloch-LainéFrançois(1912-2002) lc: n82127136 merge: id: 086acc40c4caf51f99b41dc6603196fd source: viaf type: document nkc: jn19981000289 term: Bloch-Lainé, François (1912-2002) version: 2013-07-01T14:07:50Z viafid: '108594372' --- _id: 086ca4c9a359555e7c24c528d7a8b42b bav: adv10115030 dnb: '118943383' key: BröderChristianGottlob1745-1819 lc: nr92000531 merge: id: 086ca4c9a359555e7c24c528d7a8b42b source: viaf type: document nkc: mzk2009528285 term: Bröder, Christian Gottlob, 1745-1819 version: 2013-07-01T14:07:50Z viafid: '35255737' --- _id: 0871858b19c2b00a1ca266e018915646 bav: adv10219607 bne: xx999835 bnf: '12030324' dnb: '128777931' key: GarcíaCarlosca1575-ca1630 lc: n99025815 merge: id: 0871858b19c2b00a1ca266e018915646 source: viaf type: document selibr: '338391' term: García, Carlos ca. 1575-ca. 1630 version: 2013-07-01T14:07:50Z viafid: '51704909' --- _id: 08758fa8478ce795835f51ec719dc08d bav: adv11051743 bnf: '12031401' dnb: '124080308' key: PřibramKarl1877-1973 lc: n82094894 merge: id: 08758fa8478ce795835f51ec719dc08d source: viaf type: document nkc: vse2010558384 nla: '000035942592' nlilat: '000446041' term: Přibram, Karl, 1877-1973 version: 2013-07-01T14:07:50Z viafid: '25953' --- _id: 087b147b1af0909e81d09923924abaae bnf: '11232417' dnb: '121377539' key: TeslarJózefAndrzej1889-1961 lc: nr89007428 merge: id: 087b147b1af0909e81d09923924abaae source: viaf type: document nkc: js2012736957 ptbnp: '179667' term: Teslar, Józef Andrzej, 1889-1961 version: 2013-07-01T14:07:50Z viafid: '113417081' --- _id: 087c72f03807241d69c5cbdacba2e1c8 bav: adv12038222 bne: xx959214 bnf: '11909199' dnb: '121327949' key: JulienCharles-André1891-1991 lc: n50038763 merge: id: 087c72f03807241d69c5cbdacba2e1c8 source: viaf type: document nkc: kup19950000045493 nlilat: '000264204' ptbnp: '440589' term: Julien, Charles-André, 1891-1991 version: 2013-07-01T14:07:50Z viafid: '98370336' --- _id: 087c9bc6944213114ef3394088ff1aab dnb: '961969415' key: Grüntuch-ErnstAlmut1966-Architekt merge: id: 087c9bc6944213114ef3394088ff1aab source: viaf type: document term: Grüntuch-Ernst, Almut, 1966-, Architekt version: 2013-07-01T14:07:50Z viafid: '243869426' --- _id: 0886f9ac812f460b82cd86a1b9feccb4 bav: adv10995016 bnf: '12108234' dnb: '128269014' key: MassonCharlesFrançoisPhilibert1762-1807 lc: n85253401 merge: id: 0886f9ac812f460b82cd86a1b9feccb4 source: viaf type: document nkc: mzk2009511265 nlilat: '000473665' selibr: '328286' term: Masson, Charles François Philibert, 1762-1807 version: 2013-07-01T14:07:50Z viafid: '15817572' --- _id: 0893741295f7a7e66ac0cdf427a020ae bnf: '13078966' key: Saint-HilaireÉtienne1865-1932 merge: id: 0893741295f7a7e66ac0cdf427a020ae source: viaf type: document term: Saint-Hilaire, Étienne 1865-1932 version: 2013-07-01T14:07:50Z viafid: '49359871' --- _id: 089507fae522e479c4cfc8711b561186 bne: xx845628 bnf: '12482325' dnb: '1016403488' key: AllixAndré1889-1966 lc: no2010137107 merge: id: 089507fae522e479c4cfc8711b561186 source: viaf type: document nkc: mzk2010585198 term: Allix, André, 1889-1966 version: 2013-07-01T14:07:50Z viafid: '22243254' --- _id: 089535b8304bf319cf943b94ef89bf83 bav: adv10231518 bne: xx839712 bnf: '11885587' dnb: '118647385' key: AgustínAntonio1517-1586 lc: n81127403 merge: id: 089535b8304bf319cf943b94ef89bf83 source: viaf type: document nkc: mzk2003195509 nla: '000035197604' nlilat: '000282827' ptbnp: '3099' selibr: '297126' term: Agustín, Antonio, 1517-1586 version: 2013-07-01T14:07:50Z viafid: '120697822' --- _id: 08986700373e687785e527e02f2eb1e0 bnf: '11893785' dnb: '129736414' key: BrandtJørgenGustava1929-2006 lc: n79060032 merge: id: 08986700373e687785e527e02f2eb1e0 source: viaf type: document nkc: ola2002153763 selibr: '328645' term: Brandt, Jørgen Gustava, 1929-2006 version: 2013-07-01T14:07:50Z viafid: '84968625' --- _id: 089d0ee2fc697bc65fb3fcb7f17fa6c9 bav: adv11356392 bne: xx899240 bnf: '11888698' dnb: '100009670' key: AmpèreJean-Jacques1800-1864 lc: n86041191 merge: id: 089d0ee2fc697bc65fb3fcb7f17fa6c9 source: viaf type: document nkc: xx0165006 nla: '000035831922' nlilat: '000009946' ptbnp: '92627' selibr: '342946' term: Ampère, Jean-Jacques, 1800-1864 version: 2013-07-01T14:07:50Z viafid: '14765429' --- _id: 08aa6f544736cb7468bad8aab761baaa bne: xx1157250 bnf: '12882934' dnb: '118724827' key: KrupskajaNadeždaKonstantinovna1869-1939 lc: n79029718 merge: id: 08aa6f544736cb7468bad8aab761baaa source: viaf type: document nkc: jn20000700968 nla: '000035825105' nlicyr: '000152532' nlilat: '000209944' selibr: '206039' term: Krupskaja, Nadežda Konstantinovna, 1869-1939 version: 2013-07-01T14:07:50Z viafid: '2600852' --- _id: 08c18fadf8f5279b43d7934999b9e9c2 bav: adv11026413 bnf: '15317798' dnb: '129530123' key: DuCreuxFrançois(1596-1666) lc: no2002038346 merge: id: 08c18fadf8f5279b43d7934999b9e9c2 source: viaf type: document term: Du Creux, François (1596-1666) version: 2013-07-01T14:07:50Z viafid: '42142926' --- _id: 08ce86b3888dfbfe4b725116c17c3192 bnf: '11896485' dnb: '118669176' egaxa: vtls001048753 key: ChedidAndrée1920-2011 lc: n50036246 merge: id: 08ce86b3888dfbfe4b725116c17c3192 source: viaf type: document nkc: xx0011445 nla: '000035748724' nlilat: '000031065' ptbnp: '133394' selibr: '220321' swnl: vtls003026295 term: Chedid, Andrée, 1920-2011 version: 2013-07-01T14:07:50Z viafid: '111004523' --- _id: 08d51b4bb6bde0be2ecaf95e4103f0e2 dnb: 10213118x key: BrenderàBrandisGerrit1751-1802 lc: no92005545 merge: id: 08d51b4bb6bde0be2ecaf95e4103f0e2 source: viaf type: document nla: '000035754920' term: Brender à Brandis, Gerrit, 1751-1802 version: 2013-07-01T14:07:50Z viafid: '61109455' --- _id: 08e606b662aeb5fe3e6f267926445ea0 bnf: '11906370' dnb: '118936549' key: GuillauminÉmile1873-1951 lc: n80125784 merge: id: 08e606b662aeb5fe3e6f267926445ea0 source: viaf type: document nla: '000035857464' nlilat: '000431587' ptbnp: '40943' selibr: '328778' term: Guillaumin, Émile, 1873-1951 version: 2013-07-01T14:07:50Z viafid: '4930804' --- _id: 08ef4972c4ab0d9d3b6cc7c14662df37 bav: adv10045700 bnf: '11900087' dnb: '119190907' jpg: '500078133' key: DjagilevSergejPavlovič1872-1929 lc: n79081931 merge: id: 08ef4972c4ab0d9d3b6cc7c14662df37 source: viaf type: document nkc: jn20000720061 nla: '000035878690' nlilat: '000039269' selibr: '183876' term: Djagilev, Sergej Pavlovič, 1872-1929 version: 2013-07-01T14:07:50Z viafid: '67208262' --- _id: 08f245995e319cc1ed731f260418239a bav: adv11541526 bnf: '11920613' dnb: 11920911x key: PrévostJean1901-1944 lc: n87903482 merge: id: 08f245995e319cc1ed731f260418239a source: viaf type: document nkc: skuk0004692 nla: '000035432989' nlilat: '000379872' ptbnp: '538315' selibr: '334691' term: Prévost, Jean, 1901-1944 version: 2013-07-01T14:07:50Z viafid: '9852191' --- _id: 08f899ab263e594b3814385d8f8d75b0 key: PetkovićVladimirR(1874-1956) merge: id: 08f899ab263e594b3814385d8f8d75b0 source: viaf type: document term: Petković, Vladimir R. (1874-1956) version: 2013-07-01T14:07:50Z viafid: '166264563' --- _id: 08fceb7018c0e5f3c2cb856795bb56e0 dnb: 12280077x key: BrücknerAugust1769-1797 merge: id: 08fceb7018c0e5f3c2cb856795bb56e0 source: viaf type: document term: Brückner, August 1769-1797 version: 2013-07-01T14:07:50Z viafid: '5823870' --- _id: 08ff7cbaee85429fda3628cbd9a0ccea bav: adv10016283 bnf: '12027737' dnb: '118789813' key: PasquierÉtienne1529-1615 lc: n50050635 merge: id: 08ff7cbaee85429fda3628cbd9a0ccea source: viaf type: document nkc: ola2002156653 nla: '000035719449' nlilat: '000103651' selibr: '207597' term: Pasquier, Étienne, 1529-1615 version: 2013-07-01T14:07:50Z viafid: '61560863' --- _id: 0900c1d826aba21c64b5d933dfa48195 key: BiroliniAlessandro1940-|QualitätundZuverlässigkeittechnischerSystemeEnglish lc: n94017739 merge: id: 0900c1d826aba21c64b5d933dfa48195 source: viaf type: document term: Birolini, Alessandro, 1940- | Qualität und Zuverlässigkeit technischer Systeme. English version: 2013-07-01T14:07:50Z viafid: '183968551' --- _id: 0900d8c6ae2f65e90f9174d91e033304 bnf: '11562606' dnb: '130628697' key: DraženovićJosip(1863-1942) merge: id: 0900d8c6ae2f65e90f9174d91e033304 source: viaf type: document term: Draženović, Josip (1863-1942) version: 2013-07-01T14:07:50Z viafid: '5581' --- _id: 0905d787a5d8f8689d4843470dd7788a bnf: '11914286' dnb: '101933010' key: MannierEugène1811-1895 lc: n85822045 merge: id: 0905d787a5d8f8689d4843470dd7788a source: viaf type: document term: Mannier, Eugène, 1811-1895 version: 2013-07-01T14:07:50Z viafid: '24604764' --- _id: 090c09d3129bf841838ab2de37747e83 bnf: '12003156' dnb: '116888180' key: GründlerJohannErnst1677-1720 lc: n88132027 merge: id: 090c09d3129bf841838ab2de37747e83 source: viaf type: document term: Gründler, Johann Ernst, 1677-1720 version: 2013-07-01T14:07:50Z viafid: '24611446' --- _id: 090edb00bb6a693eb166f769bfd905d3 bav: adv10928962 bnf: '12100097' dnb: '122509528' key: MeshorerYaʿaḳov1935-2004 lc: n82221337 merge: id: 090edb00bb6a693eb166f769bfd905d3 source: viaf type: document nliheb: '000218529' nlilat: '000092558' selibr: '356328' term: Meshorer, Yaʿaḳov 1935-2004 version: 2013-07-01T14:07:50Z viafid: '29563112' --- _id: 0919be69b4116eefebf63070089d7d0f key: SørensenSøren1848-1902 lc: n98027617 merge: id: 0919be69b4116eefebf63070089d7d0f source: viaf type: document nlilat: '000534498' term: Sørensen, Søren, 1848-1902 version: 2013-07-01T14:07:50Z viafid: '4244532' --- _id: 091f662b284692555f6f489f422f5b5f bav: adv10151963 bnf: '12956187' dnb: '101866003' key: AlexandreArséne1859-1937 lc: n83132619 merge: id: 091f662b284692555f6f489f422f5b5f source: viaf type: document nkc: xx0068899 nla: '000035003104' nlilat: '000454512' ptbnp: '85656' selibr: '314742' term: Alexandre, Arséne, 1859-1937 version: 2013-07-01T14:07:50Z viafid: '142432' --- _id: 0933fb83f6d0c7334ced8364ac746106 bnf: '12212638' dnb: '118676253' key: ClaparédeÉdouard1873-1940 lc: n50062963 merge: id: 0933fb83f6d0c7334ced8364ac746106 source: viaf type: document nkc: nlk20000083847 nla: '000036552234' nlilat: '000412971' ptbnp: '33368' term: Claparéde, Édouard, 1873-1940 version: 2013-07-01T14:07:50Z viafid: '106976487' --- _id: 093a421467a2c52ec2cb5e23b4bbeb16 bnf: '13050558' key: SauvezÉmile1866-1927 merge: id: 093a421467a2c52ec2cb5e23b4bbeb16 source: viaf type: document term: Sauvez, Émile, 1866-1927 version: 2013-07-01T14:07:50Z viafid: '171410395' --- _id: 093a8a7d3e79fceb89fd81842acf4191 bnf: '12176769' dnb: '154318582' key: OikonomosGeōrgiosPd1952 lc: n86033984 merge: id: 093a8a7d3e79fceb89fd81842acf4191 source: viaf type: document term: Oikonomos, Geōrgios P., d. 1952 version: 2013-07-01T14:07:50Z viafid: '2514468' --- _id: 09416dfb24fbe376cf386b76f4c0c808 bne: xx966972 dnb: '173537863' key: MontanerJoaquín1892-1957 lc: n90710082 merge: id: 09416dfb24fbe376cf386b76f4c0c808 source: viaf type: document nlilat: '000504370' term: Montaner, Joaquín, 1892-1957 version: 2013-07-01T14:07:50Z viafid: '36083632' --- _id: 094253ea7c6600ea363111b96b408eba bnf: '12705556' dnb: '118778684' key: LangerFrantišek1888-1965 lc: n82112974 merge: id: 094253ea7c6600ea363111b96b408eba source: viaf type: document nkc: jk01071520 nla: '000035780309' nlilat: '000080919' term: Langer, František, 1888-1965 version: 2013-07-01T14:07:50Z viafid: '12430171' --- _id: 0947e4adaff9ab3bad131620819fb543 bne: xx1717306 bnf: '13950219' dnb: '103892419' key: GailhardAndré1885-1966 lc: no2004059607 merge: id: 0947e4adaff9ab3bad131620819fb543 source: viaf type: document term: Gailhard, André 1885-1966 version: 2013-07-01T14:07:50Z viafid: '39567713' --- _id: 0950d962980bbe75a90f3cfe0f60dc34 bnf: '12077517' dnb: '130649384' key: PetrovićBoško1915-2001 lc: n80156054 merge: id: 0950d962980bbe75a90f3cfe0f60dc34 source: viaf type: document nkc: js2011627405 term: Petrović, Boško, 1915-2001 version: 2013-07-01T14:07:50Z viafid: '111604289' --- _id: 095149127bf0bb7b68d5f9b62138809d key: GolversNoël1950-|AstronomiaEuropaeaEnglish&Latin lc: n95047380 merge: id: 095149127bf0bb7b68d5f9b62138809d source: viaf type: document term: Golvers, Noël, 1950- | Astronomia Europaea. English & Latin version: 2013-07-01T14:07:50Z viafid: '185584205' --- _id: 09570517d728f703bf1b0cf10fb91a62 bav: adv11712370 bnf: '12029330' dnb: '129017035' key: ÅströmPaul1929-2008 lc: n79142142 merge: id: 09570517d728f703bf1b0cf10fb91a62 source: viaf type: document nlilat: '000425027' selibr: '170116' term: Åström, Paul, 1929-2008 version: 2013-07-01T14:07:50Z viafid: '4945088' --- _id: 095cdeb6e599417cb22561c2b3ae8f6e bne: xx944024 bnf: '16039867' dnb: '129267074' egaxa: vtls000895530 key: MuñizHigueraCarlos1927-1994 lc: n88624013 merge: id: 095cdeb6e599417cb22561c2b3ae8f6e source: viaf type: document nla: '000035850216' ptbnp: '1720' term: Muñiz Higuera, Carlos, 1927-1994 version: 2013-07-01T14:07:50Z viafid: '38490711' --- _id: 095d290bb75b248241d5bd0c9e4a9bb1 key: MuchembledRobert1944-|CulturepopulaireetculturedesélitesdanslaFrancemoderneEnglish lc: n84165479 merge: id: 095d290bb75b248241d5bd0c9e4a9bb1 source: viaf type: document term: Muchembled, Robert, 1944- | Culture populaire et culture des élites dans la France moderne. English version: 2013-07-01T14:07:50Z viafid: '176214988' --- _id: 095eb27805a7100c6b6ec740c8080e71 bav: adv10030538 dnb: '116301708' key: KöstlinOtto1818-1884 merge: id: 095eb27805a7100c6b6ec740c8080e71 source: viaf type: document term: Köstlin, Otto, 1818-1884 version: 2013-07-01T14:07:50Z viafid: '49973166' --- _id: 09601055cabf7c9a77171e86b20045eb dnb: 13248403x key: KöhlerBruno1855-1925 merge: id: 09601055cabf7c9a77171e86b20045eb source: viaf type: document nkc: xx0105423 term: Köhler, Bruno, 1855-1925 version: 2013-07-01T14:07:50Z viafid: '45464186' --- _id: 0960ec9e9749531677b491d66003dabc key: WolffJürgen1956-2 lc: n92112352 merge: id: 0960ec9e9749531677b491d66003dabc source: viaf type: document term: Wolff, Jürgen, 1956-2 version: 2013-07-01T14:07:50Z viafid: '276077369' --- _id: 096c59e029b0f04cabd2365ecad95d65 bav: adv10029888 bnf: '12951216' dnb: 11649669x key: CheïkhoLouis1859-1927 lc: n82234894 merge: id: 096c59e029b0f04cabd2365ecad95d65 source: viaf type: document nkc: jn20040205030 nla: '000035715415' nliara: '000195697' nlilat: '000031078' selibr: '181731' term: Cheïkho, Louis, 1859-1927 version: 2013-07-01T14:07:50Z viafid: '77068906' --- _id: 09750ad3cd36e30f268b06fe75bd7dae bav: adv10907142 bnf: '11548439' dnb: 15121641x key: MaretićTomislav1854-1938 lc: n84184846 merge: id: 09750ad3cd36e30f268b06fe75bd7dae source: viaf type: document nkc: mzk2005286743 term: Maretić, Tomislav, 1854-1938 version: 2013-07-01T14:07:50Z viafid: '32370714' --- _id: 0980ade6c517799267d666c4659dbd3d bnf: '14971761' dnb: '130460400' jpg: '500013324' key: DeCockCésar1823-1904 lc: n95114978 merge: id: 0980ade6c517799267d666c4659dbd3d source: viaf type: document term: De Cock, César 1823-1904 version: 2013-07-01T14:07:50Z viafid: '5202944' --- _id: 098bc6500b17c70627afacf6e4414c27 bav: adv10081447 bnf: '12247789' dnb: '117048879' jpg: '500319792' key: HülsenChristian1858-1935 lc: n87869161 merge: id: 098bc6500b17c70627afacf6e4414c27 source: viaf type: document nkc: mub2011675241 nla: '000036379248' nlilat: '000489258' term: Hülsen, Christian, 1858-1935 version: 2013-07-01T14:07:50Z viafid: '2527887' --- _id: 0995b87436732b33d7f51eadb84713a2 bne: xx1154051 bnf: '12017208' dnb: '118543202' key: VonGünderodeKaroline1780-1806 lc: n82059428 merge: id: 0995b87436732b33d7f51eadb84713a2 source: viaf type: document nkc: kup19970000034377 nla: '000036069456' nlilat: '000444286' selibr: '238107' swnl: vtls002022868 term: Von Günderode, Karoline, 1780-1806 version: 2013-07-01T14:07:50Z viafid: '54159634' --- _id: 09a21db32c5b16ef6fe7c4a058399871 bnf: '13930974' dnb: 101971588x key: HedbergTor‬1862-1931 lc: no95048953 merge: id: 09a21db32c5b16ef6fe7c4a058399871 source: viaf type: document nkc: jn20010601019 selibr: '216621' term: Hedberg, Tor, ‬1862-1931 version: 2013-07-01T14:07:50Z viafid: '78365667' --- _id: 09a60539bdf2d8f1fed1cb4a0713eedc bnf: '12185733' dnb: '102017263' key: MérignhacA1857-1927(AlexandreGiraudJacquesAntoine) lc: n85273789 merge: id: 09a60539bdf2d8f1fed1cb4a0713eedc source: viaf type: document nlilat: '000474154' term: Mérignhac, A., 1857-1927, (Alexandre Giraud Jacques Antoine) version: 2013-07-01T14:07:50Z viafid: '17267136' --- _id: 09abde89289fb2f230ceccfd8b3dd69d key: SacréJames1939-|Selections2008 lc: n2010061226 merge: id: 09abde89289fb2f230ceccfd8b3dd69d source: viaf type: document term: Sacré, James, 1939- | Selections. 2008 version: 2013-07-01T14:07:50Z viafid: '183654491' --- _id: 09b3f237e11a9c32604bb7e22d32d8f6 bav: adv10992808 bnf: '12183510' dnb: '116308958' key: AndreadēsAndreasMichaēl1876-1935 lc: n80057397 merge: id: 09b3f237e11a9c32604bb7e22d32d8f6 source: viaf type: document nla: '000035054535' nlilat: '000428519' term: Andreadēs, Andreas Michaēl, 1876-1935 version: 2013-07-01T14:07:50Z viafid: '66510544' --- _id: 09c8c274053c0d0922bb652709993bbc bnf: '11904676' dnb: '123893887' key: GérardJo1919-2006 lc: n79070117 merge: id: 09c8c274053c0d0922bb652709993bbc source: viaf type: document nla: '000049682876' nlilat: '000058316' term: Gérard, Jo, 1919-2006 version: 2013-07-01T14:07:50Z viafid: '22142267' --- _id: 09ca72d2818ee26e90615932eb1c29f9 bav: adv11015482 bnf: '10693163' dnb: '116810505' key: MartindeNoirlieuFrançois1792-1870 merge: id: 09ca72d2818ee26e90615932eb1c29f9 source: viaf type: document nlilat: '000089537' term: Martin de Noirlieu, François, 1792-1870 version: 2013-07-01T14:07:50Z viafid: '27055342' --- _id: 09dcc1a19a5aa863da93bb88702c09b0 bav: adv12086541 bnf: '14976561' dnb: '123114829' key: MieusementSéraphin-Médéric1840-1905 lc: n91087801 merge: id: 09dcc1a19a5aa863da93bb88702c09b0 source: viaf type: document term: Mieusement, Séraphin-Médéric 1840-1905 version: 2013-07-01T14:07:50Z viafid: '27099563' --- _id: 09e0a470102064ac18523541a3c0e61f bav: adv11035985 bnf: '12529715' key: NoëlEugéne1816-1899 merge: id: 09e0a470102064ac18523541a3c0e61f source: viaf type: document term: Noël, Eugéne, 1816-1899 version: 2013-07-01T14:07:50Z viafid: '24711642' --- _id: 09e6427b6396ea3e3211eed18740fe8a bav: adv10110731 bnf: '10467378' dnb: '101856261' key: DevillersLéopold(1830-1910) lc: nb2004023543 merge: id: 09e6427b6396ea3e3211eed18740fe8a source: viaf type: document term: Devillers, Léopold (1830-1910) version: 2013-07-01T14:07:50Z viafid: '59072407' --- _id: 09e8d96b26c238b25153f74779f93602 bne: xx1066017 bnf: '12185803' dnb: '118801384' key: TarleEvgenijViktorovič1875-1955 lc: n82090310 merge: id: 09e8d96b26c238b25153f74779f93602 source: viaf type: document nkc: jn19992001173 nla: '000035539434' nlicyr: '000156874' nlilat: '000445779' ptbnp: '245367' selibr: '96042' term: Tarle, Evgenij Viktorovič, 1875-1955 version: 2013-07-01T14:07:50Z viafid: '51733707' --- _id: 09f372085c61cdfff7411fdc8ba9b695 key: EdströmViviBlom1923-|AstridLindgrenvildtoringochlägereldEnglish lc: n99017963 merge: id: 09f372085c61cdfff7411fdc8ba9b695 source: viaf type: document term: Edström, Vivi Blom, 1923- | Astrid Lindgren, vildtoring och lägereld. English version: 2013-07-01T14:07:50Z viafid: '175918653' --- _id: 09f6a3806fc86adb675f4828bece8dab key: JúdiceNuno1949-|PoemsSelections lc: n95037472 merge: id: 09f6a3806fc86adb675f4828bece8dab source: viaf type: document term: Júdice, Nuno, 1949- | Poems. Selections version: 2013-07-01T14:07:50Z viafid: '184376801' --- _id: 09fb5bd1425f269456433674417ac4d2 bnf: '12123233' dnb: '119424770' key: BrèsGuyde1522-1567 lc: n81055730 merge: id: 09fb5bd1425f269456433674417ac4d2 source: viaf type: document nkc: ola2009522933 nla: '000035854959' nlilat: '000025971' term: Brès, Guy de, 1522-1567 version: 2013-07-01T14:07:50Z viafid: '22174787' --- _id: 0a005720ef2f9de056dc4247785b7710 key: AxelssonMajgull1947-|LångtbortafrånNifelheimPolska merge: id: 0a005720ef2f9de056dc4247785b7710 source: viaf type: document selibr: '359548' term: Axelsson, Majgull, 1947-. | Långt borta från Nifelheim. Polska version: 2013-07-01T14:07:50Z viafid: '294885090' --- _id: 0a043b4df610e8d466b11dc88691c2b6 bnf: '12469798' dnb: '116295198' key: KöpkeFriedrichKarl(1785-1865) lc: nb2002025553 merge: id: 0a043b4df610e8d466b11dc88691c2b6 source: viaf type: document term: Köpke, Friedrich Karl (1785-1865) version: 2013-07-01T14:07:50Z viafid: '2571534' --- _id: 0a0cdb6c91d3320b937e697c44a46593 dnb: '103216995' key: Ozga-MichalskiJózef1919-2002 lc: n86868929 merge: id: 0a0cdb6c91d3320b937e697c44a46593 source: viaf type: document nkc: js2008439213 term: Ozga-Michalski, Józef, 1919-2002 version: 2013-07-01T14:07:50Z viafid: '34862661' --- _id: 0a1002129ddd5867acb541237acf0b8e bne: xx1774957 dnb: 14381981x key: MartinFrançois1867-1928 lc: nb2004300169 merge: id: 0a1002129ddd5867acb541237acf0b8e source: viaf type: document nla: '000035717136' nlilat: '000549208' term: Martin, François, 1867-1928 version: 2013-07-01T14:07:50Z viafid: '12389009' --- _id: 0a24be53faa20572ef6b15189aaceaf2 dnb: '118683829' key: FlaischlenCäsar1864-1920 lc: n88626629 merge: id: 0a24be53faa20572ef6b15189aaceaf2 source: viaf type: document nkc: xx0075839 nla: '000035794308' nlilat: '000497142' term: Flaischlen, Cäsar, 1864-1920 version: 2013-07-01T14:07:50Z viafid: '62342738' --- _id: 0a2a05e70c86782813ad1523ca4bc1a0 dnb: '122223624' key: BrönnerHerbert1930-Beziehungfamiliaer lc: n50059163 merge: id: 0a2a05e70c86782813ad1523ca4bc1a0 source: viaf type: document nlilat: '000412836' term: Brönner, Herbert, 1930-, Beziehung familiaer version: 2013-07-01T14:07:50Z viafid: '112577131' --- _id: 0a2e072d211e85a980c72506bf9ccc7e bav: adv12332922 bne: xx1132637 bnf: '12215676' key: MartinAndré1884-1963 lc: n2007182382 merge: id: 0a2e072d211e85a980c72506bf9ccc7e source: viaf type: document nla: '000036010610' term: Martin, André 1884-1963 version: 2013-07-01T14:07:50Z viafid: '50301136' --- _id: 0a30a1eac61e6778b17df17cb0b9debb bav: adv10964662 bnf: '11918284' dnb: '124098282' key: OudinCésard1625 lc: nr93008123 merge: id: 0a30a1eac61e6778b17df17cb0b9debb source: viaf type: document nkc: mzk2006356127 ptbnp: '168389' selibr: '316260' term: Oudin, César, d. 1625 version: 2013-07-01T14:07:50Z viafid: '12295511' --- _id: 0a3811cdc4bf9e50da74190116a95fa7 bnf: '12982935' dnb: '124007481' key: TailliarEugène1803-1878 merge: id: 0a3811cdc4bf9e50da74190116a95fa7 source: viaf type: document term: Tailliar, Eugène, 1803-1878 version: 2013-07-01T14:07:50Z viafid: '32130378' --- _id: 0a62c224d945445f5fbecda77e4017c2 bav: adv10286851 bnf: '12339233' dnb: '118714570' key: KästnerAbrahamGotthelf1719-1800 lc: n85241161 merge: id: 0a62c224d945445f5fbecda77e4017c2 source: viaf type: document nkc: ola2007364165 nla: '000036004036' nlilat: '000079761' selibr: '322387' term: Kästner, Abraham Gotthelf, 1719-1800 version: 2013-07-01T14:07:50Z viafid: '39450522' --- _id: 0a6de044bb18ee42b2692aae02ddf18e bav: adv11437043 bnf: '12028119' dnb: 10469209x key: MörchenHermann(1906-1990) lc: n81092158 merge: id: 0a6de044bb18ee42b2692aae02ddf18e source: viaf type: document nlilat: '000097186' term: Mörchen, Hermann (1906-1990) version: 2013-07-01T14:07:50Z viafid: '27079901' --- _id: 0a6e39c405f03eb064bfe27c3ffa7f83 key: GuénounDenis1946-|Hypothèsessurl'EuropeEnglish lc: no2012144930 merge: id: 0a6e39c405f03eb064bfe27c3ffa7f83 source: viaf type: document term: Guénoun, Denis, 1946- | Hypothèses sur l'Europe. English version: 2013-07-01T14:07:50Z viafid: '286545948' --- _id: 0a6fbf4291a67e1f752f38e8c6a5df54 bne: xx1560356 dnb: '120562944' key: BellotPierre-François1776-1836 lc: no2008017373 merge: id: 0a6fbf4291a67e1f752f38e8c6a5df54 source: viaf type: document ptbnp: '133752' term: Bellot, Pierre-François, 1776-1836 version: 2013-07-01T14:07:50Z viafid: '15603918' --- _id: 0a73a2534a2d4b5851210d6f7e6074e2 bav: adv10034801 bnf: '11990956' dnb: '118785710' key: AlexandreNoël1639-1724 lc: no96066946 merge: id: 0a73a2534a2d4b5851210d6f7e6074e2 source: viaf type: document nkc: ola2006340224 nla: '000035765406' nlilat: '000540481' ptbnp: '987782' selibr: '273835' term: Alexandre, Noël, 1639-1724 version: 2013-07-01T14:07:50Z viafid: '22151431' --- _id: 0a750d756f540a47686f366cc729d12b dnb: '116044640' key: KannegießerKarlLudwig1781-1864 lc: n85317484 merge: id: 0a750d756f540a47686f366cc729d12b source: viaf type: document nlilat: '000282793' ptbnp: '1440748' selibr: '243392' term: Kannegießer, Karl Ludwig 1781-1864 version: 2013-07-01T14:07:50Z viafid: '59059890' --- _id: 0a7617aa6157d52e6239eb938e3fa745 bav: adv10003870 bne: xx1309288 bnf: '11891582' dnb: 11560720x jpg: '500314299' key: BernisFrançois-JoachimdePierrede1715-1794 lc: n82165748 merge: id: 0a7617aa6157d52e6239eb938e3fa745 source: viaf type: document nkc: mzk2003195776 nlilat: '000019585' ptbnp: '166798' selibr: '277710' term: Bernis, François-Joachim de Pierre de, 1715-1794 version: 2013-07-01T14:07:50Z viafid: '68925438' --- _id: 0a79f7e10c6b55855b27e20a81e316c5 dnb: '118836838' key: RodríguezAlfonso1526-1616 merge: id: 0a79f7e10c6b55855b27e20a81e316c5 source: viaf type: document term: Rodríguez, Alfonso, 1526-1616 version: 2013-07-01T14:07:50Z viafid: '73886528' --- _id: 0a7c336d48e3eba772809417fdf62a1a bnf: '11919623' key: PiatierAndré(1914-1991) merge: id: 0a7c336d48e3eba772809417fdf62a1a source: viaf type: document ptbnp: '155323' term: Piatier, André (1914-1991) version: 2013-07-01T14:07:50Z viafid: '73858552' --- _id: 0a7ee00767e81ac3fb656e3bbe2213df bnf: '14785739' dnb: '118699792' key: HábaAlois1893-1973 lc: n83172253 merge: id: 0a7ee00767e81ac3fb656e3bbe2213df source: viaf type: document nkc: jk01032899 nla: '000036015059' nlilat: '000066100' term: Hába, Alois, 1893-1973 version: 2013-07-01T14:07:50Z viafid: '71657828' --- _id: 0a886e842671b537d390d61bcd61c790 bne: xx931300 bnf: '12001087' dnb: '118576259' key: MaḥfūẓNajīb1911-2006 lc: n82091918 merge: id: 0a886e842671b537d390d61bcd61c790 source: viaf type: document nkc: jn19992000657 nla: '000035322426' nliara: '000202719' nlilat: '000087703' ptbnp: '24297' selibr: '208307' term: Maḥfūẓ, Najīb, 1911-2006 version: 2013-07-01T14:07:50Z viafid: '89803944' --- _id: 0a88d3ae3b5127b5a9b13ffbd9bf6cf7 bnf: '12063049' dnb: '128386495' key: GaconFrançois1667-1725 lc: nr94015816 merge: id: 0a88d3ae3b5127b5a9b13ffbd9bf6cf7 source: viaf type: document nlilat: '000528322' ptbnp: '1046139' term: Gacon, François, 1667-1725 version: 2013-07-01T14:07:50Z viafid: '71412505' --- _id: 0a963063c003c9643fa33ad66ba86268 bav: adv10072631 bnf: '13009419' dnb: '130192309' key: BabiédeBercenayFrançois(1761-ca1830) lc: nr93015814 merge: id: 0a963063c003c9643fa33ad66ba86268 source: viaf type: document nla: '000035400896' ptbnp: '168742' term: Babié de Bercenay, François (1761-ca 1830) version: 2013-07-01T14:07:50Z viafid: '73986061' --- _id: 0a9d89963fbe12b26b632ae8048ee3c8 bne: xx1039701 dnb: '187118655' key: RodríguezAlonso1538-1616 lc: n50048918 merge: id: 0a9d89963fbe12b26b632ae8048ee3c8 source: viaf type: document nkc: mzk2004243993 nla: '000035672926' ptbnp: '718622' selibr: '334438' term: Rodríguez, Alonso, 1538-1616 version: 2013-07-01T14:07:50Z viafid: '71570078' --- _id: 0aa02a0326b5a1cb9a6503a9691ec363 bav: adv11097753 bnf: '12282457' dnb: '124692540' key: RégnaultÉlias1801-1868 lc: n88623052 merge: id: 0aa02a0326b5a1cb9a6503a9691ec363 source: viaf type: document nlilat: '000115050' ptbnp: '90223' term: Régnault, Élias, 1801-1868 version: 2013-07-01T14:07:50Z viafid: '9910357' --- _id: 0aa177354b4d56577a64713daaffef19 bav: adv10045385 bnf: '11918613' dnb: '104714964' key: ParinaudAndré1924-2006 lc: n50050313 merge: id: 0aa177354b4d56577a64713daaffef19 source: viaf type: document nkc: jn19990006368 nla: '000035408818' nlilat: '000103349' ptbnp: '51942' term: Parinaud, André, 1924-2006 version: 2013-07-01T14:07:50Z viafid: '98106261' --- _id: 0aa948da75ef1657582cc6a253cdb635 bav: adv10024566 bnf: '12770159' dnb: '127614699' key: KostrzewskiJózef1885-1969 lc: n93111995 merge: id: 0aa948da75ef1657582cc6a253cdb635 source: viaf type: document nkc: js2007409769 nlilat: '000510410' term: Kostrzewski, Józef, 1885-1969 version: 2013-07-01T14:07:50Z viafid: '3500883' --- _id: 0aa987a619447d27f9fa8da16f627441 dnb: '128187042' key: DobrzańskiBohdan1909-1987 lc: n82085510 merge: id: 0aa987a619447d27f9fa8da16f627441 source: viaf type: document nkc: mzk2010585189 term: Dobrzański, Bohdan, 1909-1987 version: 2013-07-01T14:07:50Z viafid: '91758279' --- _id: 0aaf672d68f60a8edc61771e78cc0d53 dnb: '121588734' key: VerhaegenPierre-Théodore1796-1862 lc: n2002027912 merge: id: 0aaf672d68f60a8edc61771e78cc0d53 source: viaf type: document term: Verhaegen, Pierre-Théodore, 1796-1862 version: 2013-07-01T14:07:50Z viafid: '47622291' --- _id: 0ab11fc65836d4c8f56f7c36022a972f dnb: '105833363' key: HornIgnaceÉdouard1825-1875 lc: nr98044513 merge: id: 0ab11fc65836d4c8f56f7c36022a972f source: viaf type: document nkc: zmp2012726785 nla: '000035773185' nlilat: '000064859' term: Horn, Ignace Édouard, 1825-1875 version: 2013-07-01T14:07:50Z viafid: '56718546' --- _id: 0aba069590b9a8b2cc630617b5d431ff bnf: '12016134' key: MercierJacques1933-géologue merge: id: 0aba069590b9a8b2cc630617b5d431ff source: viaf type: document term: Mercier, Jacques 1933-.... géologue version: 2013-07-01T14:07:50Z viafid: '224420756' --- _id: 0ac50ef47dbdc9ca95b9310e70d6b49c bnf: '12157859' dnb: '120847280' key: Demény͏̈Georges1850-1917 lc: n88676702 merge: id: 0ac50ef47dbdc9ca95b9310e70d6b49c source: viaf type: document term: Demény͏̈, Georges, 1850-1917 version: 2013-07-01T14:07:50Z viafid: '44337483' --- _id: 0ac89f2ab469a3fa5949b4887702912e bav: adv10924095 bnf: '13092522' dnb: '101399502' key: DéprezEugène1874-1951 lc: nr91009898 merge: id: 0ac89f2ab469a3fa5949b4887702912e source: viaf type: document nkc: kup20030000021014 nla: '000035784607' nlilat: '000281240' ptbnp: '145705' term: Déprez, Eugène, 1874-1951 version: 2013-07-01T14:07:50Z viafid: '44435780' --- _id: 0ad1cd6f32cb1b2b6785ae670f28e96b bav: adv10906530 dnb: '123825792' jpg: '500021137' key: LeClercSébastien1637-1714 lc: n85066159 merge: id: 0ad1cd6f32cb1b2b6785ae670f28e96b source: viaf type: document nlilat: '000468571' term: Le Clerc, Sébastien, 1637-1714 version: 2013-07-01T14:07:50Z viafid: '99735429' --- _id: 0ae1b7bd53660ff54bd85eeb4f77422b bav: adv11670777 bne: xx1164088 bnf: '11900422' dnb: '118526839' jpg: '500013657' key: DoréGustave1832-1883 lc: n79089221 merge: id: 0ae1b7bd53660ff54bd85eeb4f77422b source: viaf type: document nkc: jn19990001823 nla: '000035041510' nlicyr: '000150638' nliheb: '000170985' nlilat: '000040461' ptbnp: '34939' selibr: '183977' term: Doré, Gustave, 1832-1883 version: 2013-07-01T14:07:50Z viafid: '41839207' --- _id: 0ae39066a6c1e03197f5a00d2a7850b3 dnb: '117596620' key: MüllerJohann1832-1918 lc: no2008101292 merge: id: 0ae39066a6c1e03197f5a00d2a7850b3 source: viaf type: document term: Müller, Johann, 1832-1918 version: 2013-07-01T14:07:50Z viafid: '7206645' --- _id: 0ae61fb92910aa5c3a40a80cb1c7d2a1 bav: adv10053483 bnf: '12544566' dnb: 12105764x key: ColetiNiccoló1680-1765 lc: n88070742 merge: id: 0ae61fb92910aa5c3a40a80cb1c7d2a1 source: viaf type: document nkc: ola2006340279 term: Coleti, Niccoló, 1680-1765 version: 2013-07-01T14:07:50Z viafid: '46873648' --- _id: 0ae86ae78ae8c5c203c362d2b3ebeaf0 bav: adv10098378 bnf: '12331292' dnb: '117105392' key: JéquierGustave1868-1946 lc: n84211924 merge: id: 0ae86ae78ae8c5c203c362d2b3ebeaf0 source: viaf type: document nla: '000035783089' nlilat: '000464986' selibr: '329195' term: Jéquier, Gustave, 1868-1946 version: 2013-07-01T14:07:50Z viafid: '22212511' --- _id: 0af89ea10874552daee4d12285c18f69 bne: xx860535 dnb: '123568641' key: GalvãoAntóniod1557 lc: n50083204 merge: id: 0af89ea10874552daee4d12285c18f69 source: viaf type: document nla: '000035162079' ptbnp: '28853' term: Galvão, António, d. 1557 version: 2013-07-01T14:07:50Z viafid: '25513758' --- _id: 0afb729968ea0dcf09ad65512341cfc0 key: KuntİMetin1942-|SancaktaneyaleteEnglish lc: n83168030 merge: id: 0afb729968ea0dcf09ad65512341cfc0 source: viaf type: document term: Kunt, İ. Metin, 1942- | Sancaktan eyalete. English version: 2013-07-01T14:07:50Z viafid: '175798492' --- _id: 0afbb7c6428e4825e6c17b916b1f3e28 bav: adv12129196 bnf: '14537953' dnb: '123447976' key: ForteguerriNiccolò1674-1735 lc: n85071912 merge: id: 0afbb7c6428e4825e6c17b916b1f3e28 source: viaf type: document nkc: mzk2009528561 nlilat: '000468749' ptbnp: '269286' term: Forteguerri, Niccolò, 1674-1735 version: 2013-07-01T14:07:50Z viafid: '99738830' --- _id: 0b004563b2123fcef297ae26bc108899 bnf: '14445853' key: ŚāstrīBālacandra1905-19? lc: n88147150 merge: id: 0b004563b2123fcef297ae26bc108899 source: viaf type: document nla: '000035346128' term: Śāstrī, Bālacandra, 1905-19..? version: 2013-07-01T14:07:50Z viafid: '114115692' --- _id: 0b01d2a9700a7d54ee731d6383b2e4bf bav: adv11183840 bne: xx1316028 bnf: '12745736' dnb: 13895335x key: SamperJoséMaría1828-1888 lc: n83800651 merge: id: 0b01d2a9700a7d54ee731d6383b2e4bf source: viaf type: document term: Samper, José María 1828-1888 version: 2013-07-01T14:07:50Z viafid: '1399395' --- _id: 0b0c46f0bd96bf9e0469039fa39cb8b0 bnf: '12511914' dnb: '118766481' key: WeißeChristianHermann1801-1866 lc: n85295270 merge: id: 0b0c46f0bd96bf9e0469039fa39cb8b0 source: viaf type: document nlilat: '000140772' term: Weiße, Christian Hermann, 1801-1866 version: 2013-07-01T14:07:50Z viafid: '54254106' --- _id: 0b1108aa92054e88756f44823b144f71 dnb: '122343107' key: StåhleCarlIvar1913-1980 lc: n82075557 merge: id: 0b1108aa92054e88756f44823b144f71 source: viaf type: document ptbnp: '1201889' selibr: '222958' term: Ståhle, Carl Ivar, 1913-1980 version: 2013-07-01T14:07:50Z viafid: '114713155' --- _id: 0b144989a23c9e2ba44316c2c4e9ac49 dnb: '102179026' key: SchönerLazarusca1543-1607 lc: n88043976 merge: id: 0b144989a23c9e2ba44316c2c4e9ac49 source: viaf type: document nkc: mzk2009533063 term: Schöner, Lazarus, ca 1543-1607 version: 2013-07-01T14:07:50Z viafid: '7769720' --- _id: 0b1b5781047638aebb626ba9e39475b6 bnf: '12108185' dnb: '118624334' key: TschižewskijDmitrij1894-1977 lc: n50041483 merge: id: 0b1b5781047638aebb626ba9e39475b6 source: viaf type: document nkc: js20010125076 nla: '000035587201' nlicyr: '000158492' nlilat: '000132910' selibr: '275117' term: Tschižewskij, Dmitrij, 1894-1977 version: 2013-07-01T14:07:50Z viafid: '18015229' --- _id: 0b1d6738beedab2a53e876692fedb655 key: AnderssonHåkan1959-jurist lc: nb2007008625 merge: id: 0b1d6738beedab2a53e876692fedb655 source: viaf type: document selibr: '206623' term: Andersson, Håkan, 1959-, jurist version: 2013-07-01T14:07:50Z viafid: '33983455' --- _id: 0b1eead043d4bb8ecd52a8d2286ca013 key: NarbonneJean-Marc1957-|Lévinasetl'héritageGrecEnglish lc: n2006023638 merge: id: 0b1eead043d4bb8ecd52a8d2286ca013 source: viaf type: document term: Narbonne, Jean-Marc, 1957- | Lévinas et l'héritage Grec. English version: 2013-07-01T14:07:50Z viafid: '175549786' --- _id: 0b1fe78196a6e1c0be50e6ae52c0c1b9 bnf: '12136042' dnb: '100214908' key: PerreauJean-André1749-1813 lc: n93063231 merge: id: 0b1fe78196a6e1c0be50e6ae52c0c1b9 source: viaf type: document nkc: mzk2009511491 nlilat: '000509787' ptbnp: '240169' term: Perreau, Jean-André, 1749-1813 version: 2013-07-01T14:07:50Z viafid: '2506832' --- _id: 0b26e997eaa55d77bd0d9667db589d37 bnf: '12129144' dnb: '118748513' key: ŠmelevIvanSergeevič1873-1950 lc: n81117011 merge: id: 0b26e997eaa55d77bd0d9667db589d37 source: viaf type: document nkc: xx0007365 nla: '000035131141' nlicyr: '000160131' selibr: '214160' term: Šmelev, Ivan Sergeevič, 1873-1950 version: 2013-07-01T14:07:50Z viafid: '91565066' --- _id: 0b2780bbacafe75d5ba0bf63f0cbfc92 key: GrøndahlJensChristian1959-|AndetlysEnglish lc: n2004044744 merge: id: 0b2780bbacafe75d5ba0bf63f0cbfc92 source: viaf type: document term: Grøndahl, Jens Christian, 1959- | Andet lys. English version: 2013-07-01T14:07:50Z viafid: '174329054' --- _id: 0b2b84c876538c955105edad1dbaab36 bne: xx1365935 bnf: '12555735' dnb: '118783106' key: PečerskijAndrej1819-1883 lc: n84154998 merge: id: 0b2b84c876538c955105edad1dbaab36 source: viaf type: document nkc: kup19960000064133 nla: '000035752190' selibr: '208174' term: Pečerskij, Andrej, 1819-1883 version: 2013-07-01T14:07:50Z viafid: '73967483' --- _id: 0b31740d71378e3019d4a0b2541c8f7d bav: adv10129907 bnf: '12524528' dnb: '118672703' key: DumouriezCharlesFrançoisDuPérier1739-1823 lc: n85008400 merge: id: 0b31740d71378e3019d4a0b2541c8f7d source: viaf type: document nkc: ola2002161226 nla: '000035816243' nlilat: '000247028' ptbnp: '90600' selibr: '284056' term: Dumouriez, Charles François Du Périer, 1739-1823 version: 2013-07-01T14:07:50Z viafid: '69039374' --- _id: 0b3553ddd1a1281db36fc5e68d5fa6a9 bne: xx996656 bnf: '11907554' dnb: '118551469' key: AndōHiroshige1797-1858 lc: n50044379 merge: id: 0b3553ddd1a1281db36fc5e68d5fa6a9 source: viaf type: document nkc: jx20100915004 nla: '000035006801' nlilat: '000063509' selibr: '175588' swnl: vtls002052758 term: Andō, Hiroshige, 1797-1858 version: 2013-07-01T14:07:50Z viafid: '19678928' --- _id: 0b358779228fcca0aa669691a6cf2864 bav: adv11951305 bnf: '12023579' dnb: 11861844x key: StöklGünther(1916-1998) lc: n81050114 merge: id: 0b358779228fcca0aa669691a6cf2864 source: viaf type: document nkc: skuk0005425 nlilat: '000436352' term: Stökl, Günther (1916-1998) version: 2013-07-01T14:07:50Z viafid: '89676189' --- _id: 0b392bdf63889fecefa2ae47079e796f bav: adv10219898 bne: xx923661 bnf: '11886376' dnb: '122339347' key: GarcíaBaccaJuanDavid1901-1992 lc: n81068915 merge: id: 0b392bdf63889fecefa2ae47079e796f source: viaf type: document nkc: jn19981001314 nla: '000035785518' ptbnp: '275656' term: García Bacca, Juan David, 1901-1992 version: 2013-07-01T14:07:50Z viafid: '112824971' --- _id: 0b4371e3286ce4567cb75f297dc96380 bav: adv10290168 bnf: '12915473' dnb: '172533910' key: IstvánffyMiklós1538-1615 lc: n88049285 merge: id: 0b4371e3286ce4567cb75f297dc96380 source: viaf type: document nkc: mzk2009533253 nlilat: '000492379' term: Istvánffy, Miklós, 1538-1615 version: 2013-07-01T14:07:50Z viafid: '76444890' --- _id: 0b48d235c8823e467002935d39a9ef4f bav: adv10296629 bne: xx5016110 bnf: '12183568' dnb: '118565346' key: KoraīsAdamantios(1748-1833) lc: n82208074 merge: id: 0b48d235c8823e467002935d39a9ef4f source: viaf type: document nla: '000035280046' nlilat: '000449376' selibr: '207683' swnl: vtls001886746 term: Koraīs, Adamantios (1748-1833) version: 2013-07-01T14:07:50Z viafid: '95174123' --- _id: 0b48f16cd146bdbd10521a2f73947714 bav: adv10231928 bne: xx1727372 bnf: '12180932' dnb: '117661236' key: AndréYves-Marie1675-1764 lc: n2006066584 merge: id: 0b48f16cd146bdbd10521a2f73947714 source: viaf type: document nkc: ola2008460009 term: André, Yves-Marie, 1675-1764 version: 2013-07-01T14:07:50Z viafid: '51732793' --- _id: 0b4f1e9c2efdd1ac283422cc1d94c3b4 bav: adv10167432 bnf: '12072626' dnb: '119117983' key: HäberlinFranzDominicus1720-1787 merge: id: 0b4f1e9c2efdd1ac283422cc1d94c3b4 source: viaf type: document nkc: mzk2008468972 term: Häberlin, Franz Dominicus, 1720-1787 version: 2013-07-01T14:07:50Z viafid: '32019945' --- _id: 0b505506c130ec7f71785970d5a172cf bav: adv10070923 bne: xx1509951 bnf: '13165778' dnb: '117581577' key: BéclardJules1817-1887 lc: n87803195 merge: id: 0b505506c130ec7f71785970d5a172cf source: viaf type: document nkc: nlk20000079474 term: Béclard, Jules 1817-1887 version: 2013-07-01T14:07:50Z viafid: '84790772' --- _id: 0b542cad55af46e65e5b6a797b13ffe4 bav: adv10042791 bnf: '11908115' dnb: '119244322' key: HuygheRené1906-1997 lc: n50030362 merge: id: 0b542cad55af46e65e5b6a797b13ffe4 source: viaf type: document nkc: kup19940000041679 nla: '000035216538' nlilat: '000407249' ptbnp: '39803' selibr: '334829' term: Huyghe, René, 1906-1997 version: 2013-07-01T14:07:50Z viafid: '7391755' --- _id: 0b5951fa6f9f328462dac7a67ebaab85 bnf: '13620607' dnb: '120859718' key: VonReinsberg-DüringsfeldOtto1822-1876 lc: no94025440 merge: id: 0b5951fa6f9f328462dac7a67ebaab85 source: viaf type: document nkc: mzk2003203577 nla: '000035731292' nlilat: '000518852' term: Von Reinsberg-Düringsfeld, Otto, 1822-1876 version: 2013-07-01T14:07:50Z viafid: '51866388' --- _id: 0b5e32448bf96341c274810b19807da6 bav: adv12227711 bnf: '12496738' key: GuérinMarcel1873-1948 lc: n81042631 merge: id: 0b5e32448bf96341c274810b19807da6 source: viaf type: document nkc: xx0163289 nla: '000036133604' term: Guérin, Marcel, 1873-1948 version: 2013-07-01T14:07:50Z viafid: '54251295' --- _id: 0b6b1325923ef33c1921943d7841fb83 bav: adv10283417 bnf: '12521155' dnb: '130597198' key: BeauvaisdePréauCharles-Théodore(1772-1830) lc: n2007013911 merge: id: 0b6b1325923ef33c1921943d7841fb83 source: viaf type: document term: Beauvais de Préau, Charles-Théodore (1772-1830) version: 2013-07-01T14:07:50Z viafid: '119187' --- _id: 0b762fcab4b109a81685eb99a5c28093 key: ŌmaeKenʼichi1943-|TriadpowerJapanese lc: n85124853 merge: id: 0b762fcab4b109a81685eb99a5c28093 source: viaf type: document term: Ōmae, Kenʼichi, 1943- | Triad power. Japanese version: 2013-07-01T14:07:50Z viafid: '178650267' --- _id: 0b7906a5457ee18ca53e17e20bc56692 key: LindströmMartin1970-|MærkevarerpåInternettetEnglish lc: no2002035195 merge: id: 0b7906a5457ee18ca53e17e20bc56692 source: viaf type: document term: Lindström, Martin, 1970- | Mærkevarer på Internettet. English version: 2013-07-01T14:07:50Z viafid: '184522096' --- _id: 0b92335de725ebb682d787ebb2459509 bav: adv12446024 bne: xx1597897 bnf: '12982992' dnb: '101846509' key: VanDrivalEugéne1815-1887 merge: id: 0b92335de725ebb682d787ebb2459509 source: viaf type: document ptbnp: '1205863' term: Van Drival, Eugéne, 1815-1887 version: 2013-07-01T14:07:50Z viafid: '2604273' --- _id: 0b943a2a8481c5d4f2724c25549a794a key: DeSousaAntónio1898-1981 lc: n83139854 merge: id: 0b943a2a8481c5d4f2724c25549a794a source: viaf type: document ptbnp: '36679' term: De Sousa, António, 1898-1981 version: 2013-07-01T14:07:50Z viafid: '11223045' --- _id: 0ba500e534508b319b0601cb4f8664c2 dnb: '116221364' key: BöhmerGeorgWilhelm1761-1839 lc: n91092686 merge: id: 0ba500e534508b319b0601cb4f8664c2 source: viaf type: document nkc: ola2009507589 nlilat: '000027072' term: Böhmer, Georg Wilhelm, 1761-1839 version: 2013-07-01T14:07:50Z viafid: '17968330' --- _id: 0ba67b929cf30059b68c4b2d311451dc bne: xx1606252 bnf: '12121287' dnb: '117631620' key: Saint-LambertJean-François(1716-1803) lc: no91005600 merge: id: 0ba67b929cf30059b68c4b2d311451dc source: viaf type: document nkc: mzk2009511737 nlilat: '000516045' selibr: '169244' term: Saint-Lambert, Jean-François (1716-1803) version: 2013-07-01T14:07:50Z viafid: '71423453' --- _id: 0bacd6137de9f2e52433700a640b7440 bne: xx1134740 dnb: '152369368' key: EsclasansAgustí1895-1967 lc: n84213564 merge: id: 0bacd6137de9f2e52433700a640b7440 source: viaf type: document term: Esclasans, Agustí 1895-1967 version: 2013-07-01T14:07:50Z viafid: '40405799' --- _id: 0bbc4567feb0b4044cedeb24aa798466 bnf: '12529633' dnb: '119042134' key: Barbé-MarboisFrançois1745-1837 lc: n83141373 merge: id: 0bbc4567feb0b4044cedeb24aa798466 source: viaf type: document nkc: xx0130308 nla: '000035013406' nlilat: '000454887' selibr: '313582' term: Barbé-Marbois, François, 1745-1837 version: 2013-07-01T14:07:50Z viafid: '9958036' --- _id: 0bdab7710358159e91bf9565d1e10472 key: HowardRonaldA1934-(RonaldArthur)Dinamicheskoeprogrammirovanieimarkovskieprot︠s︡essy lc: no2010116242 merge: id: 0bdab7710358159e91bf9565d1e10472 source: viaf type: document term: Howard, Ronald A., 1934-, (Ronald Arthur), Dinamicheskoe programmirovanie i markovskie prot︠s︡essy version: 2013-07-01T14:07:50Z viafid: '174888919' --- _id: 0be07a1e4d63546f1090d26bd62d6c1d bnf: '11989530' dnb: '118854860' egaxa: vtls000814446 key: ʻUrābīAḥmad1840or41-1911 lc: n83009078 merge: id: 0be07a1e4d63546f1090d26bd62d6c1d source: viaf type: document nlilat: '000451615' selibr: '200241' term: ʻUrābī, Aḥmad, 1840 or 41-1911 version: 2013-07-01T14:07:50Z viafid: '17232266' --- _id: 0be2e27da3102e9f0999bab06b544313 key: RossolimoGrigoriĭIvanovich1860-1928 lc: no2011090962 merge: id: 0be2e27da3102e9f0999bab06b544313 source: viaf type: document term: Rossolimo, Grigoriĭ Ivanovich, 1860-1928 version: 2013-07-01T14:07:50Z viafid: '84814614' --- _id: 0be5749bc5cd2620d955259d8764ef31 bav: adv10299371 bne: xx1157245 bnf: '12551842' dnb: '119526409' egaxa: vtls000806176 key: IbnQutaybahʻAbdAllāhibnMuslim828-889? lc: n83043339 merge: id: 0be5749bc5cd2620d955259d8764ef31 source: viaf type: document nla: '000035125590' nliara: '000159417' nlilat: '000066436' selibr: '191053' term: Ibn Qutaybah, ʻAbd Allāh ibn Muslim, 828-889? version: 2013-07-01T14:07:50Z viafid: '17336324' --- _id: 0bf0f923a53ede8b30719e403be1c11b dnb: '172582202' key: LandréGeorgeNicolas1762-1824 merge: id: 0bf0f923a53ede8b30719e403be1c11b source: viaf type: document term: Landré, George Nicolas, 1762-1824 version: 2013-07-01T14:07:50Z viafid: '200220677' --- _id: 0bfb2f2b849685526c8b4983fa3c437c dnb: '118844431' key: MöllerEberhardWolfgang(1906-1972) lc: n85057292 merge: id: 0bfb2f2b849685526c8b4983fa3c437c source: viaf type: document term: Möller, Eberhard Wolfgang (1906-1972) version: 2013-07-01T14:07:50Z viafid: '50022687' --- _id: 0c122418227c6ebf7ebd8eed91f8135d bnf: '12981645' dnb: '102762600' key: PalménE1898-1985(Erik) lc: no2007068414 merge: id: 0c122418227c6ebf7ebd8eed91f8135d source: viaf type: document nkc: xx0150847 nla: '000035406854' term: Palmén, E., 1898-1985, (Erik) version: 2013-07-01T14:07:50Z viafid: '39509314' --- _id: 0c17ef143a12c52c7593c6957048c7c0 bav: adv10137458 dnb: 11636341x key: HäpkeRudolf1884-1930 lc: no97010368 merge: id: 0c17ef143a12c52c7593c6957048c7c0 source: viaf type: document nlilat: '000530621' term: Häpke, Rudolf, 1884-1930 version: 2013-07-01T14:07:50Z viafid: '40128011' --- _id: 0c19339b32db062d00eef169cde79252 key: YoshimiYoshiaki1946-|JūgunianfuEnglish lc: nr00012282 merge: id: 0c19339b32db062d00eef169cde79252 source: viaf type: document term: Yoshimi, Yoshiaki, 1946- | Jūgun ianfu. English version: 2013-07-01T14:07:50Z viafid: '185412290' --- _id: 0c310b9fc82f0c92a7db6eefb902a069 dnb: '119394510' key: ŠejkaLeonid1932-1970 lc: nr99028641 merge: id: 0c310b9fc82f0c92a7db6eefb902a069 source: viaf type: document term: Šejka, Leonid, 1932-1970 version: 2013-07-01T14:07:50Z viafid: '69737954' --- _id: 0c317a78084881f8e6b6eac34df666eb bav: adv12490769 bnf: '12133582' dnb: '118868233' egaxa: vtls000852028 key: ZurayqQusṭanṭīn1909-2000 lc: n82270605 merge: id: 0c317a78084881f8e6b6eac34df666eb source: viaf type: document nla: '000035244657' nliara: '000246372' nlilat: '000146560' selibr: '218347' term: Zurayq, Qusṭanṭīn, 1909-2000 version: 2013-07-01T14:07:50Z viafid: '22939272' --- _id: 0c321cdd9e30dc1294ab65ab278d33a3 bav: adv10213428 bne: xx866279 bnf: '12102718' dnb: '118540742' jpg: '500024353' key: GonzálezJulio1876-1942 lc: n50043484 merge: id: 0c321cdd9e30dc1294ab65ab278d33a3 source: viaf type: document nla: '000035133036' nlilat: '000410496' ptbnp: '79923' selibr: '299997' term: González, Julio, 1876-1942 version: 2013-07-01T14:07:50Z viafid: '4960044' --- _id: 0c33c62403c4ad649c3f65ae2d690bd2 dnb: '116050365' key: BaratierFrançois1682-1751 lc: nr91009487 merge: id: 0c33c62403c4ad649c3f65ae2d690bd2 source: viaf type: document term: Baratier, François, 1682-1751 version: 2013-07-01T14:07:50Z viafid: '62290305' --- _id: 0c343d6f38346ac7675873bd9477dbb9 bnf: '11888842' dnb: '118973819' jpg: '500073832' key: AndriolliMichałElwiro1836-1893 lc: n80148723 merge: id: 0c343d6f38346ac7675873bd9477dbb9 source: viaf type: document nkc: jx20070207001 nla: '000035866652' nlilat: '000010368' term: Andriolli, Michał Elwiro, 1836-1893 version: 2013-07-01T14:07:50Z viafid: '50025644' --- _id: 0c37c568159acea2b1b27231a6346955 bnf: '13475530' dnb: '124817343' key: ArmengaudJacques-Eugène1810-1891 lc: n88256903 merge: id: 0c37c568159acea2b1b27231a6346955 source: viaf type: document term: Armengaud, Jacques-Eugène, 1810-1891 version: 2013-07-01T14:07:50Z viafid: '159767' --- _id: 0c38c5716f8a577ed2d4523328825d00 bav: adv10873268 bne: xx893071 bnf: '12132372' dnb: '118644483' key: AldanovMarkAleksandrovič1889-1957 lc: n84204710 merge: id: 0c38c5716f8a577ed2d4523328825d00 source: viaf type: document nkc: jo20000082489 nla: '000036551688' nlicyr: '000147244' nlilat: '000008342' ptbnp: '287' selibr: '232115' term: Aldanov, Mark Aleksandrovič 1889-1957 version: 2013-07-01T14:07:50Z viafid: '100256052' --- _id: 0c3af7531a6ae86b5a5e8b262af5e461 bav: adv10227244 dnb: '118526340' key: DörpfeldFriedrichWilhelm1824-1893 lc: n50028850 merge: id: 0c3af7531a6ae86b5a5e8b262af5e461 source: viaf type: document nlilat: '000406829' term: Dörpfeld, Friedrich Wilhelm, 1824-1893 version: 2013-07-01T14:07:50Z viafid: '20471563' --- _id: 0c3dc90679162fb80abe5913a169cae4 bav: adv10032449 bnf: '12539429' dnb: 13389097x key: AubertdelaChesnaye-des-BoisFrançois-Alexandre1699-1784 lc: no90023096 merge: id: 0c3dc90679162fb80abe5913a169cae4 source: viaf type: document nkc: mzk2009510493 nla: '000036020630' nlilat: '000013018' term: Aubert de la Chesnaye-des-Bois, François-Alexandre, 1699-1784 version: 2013-07-01T14:07:50Z viafid: '51802151' --- _id: 0c4129814ef8ac3bf2dbb51dbe314690 bav: adv11050052 bnf: '12422351' dnb: '117683922' key: QuérardJoseph-Marie1797-1865 lc: nr89003391 merge: id: 0c4129814ef8ac3bf2dbb51dbe314690 source: viaf type: document nkc: mzk2004234281 nlilat: '000523225' ptbnp: '47010' term: Quérard, Joseph-Marie, 1797-1865 version: 2013-07-01T14:07:50Z viafid: '9937773' --- _id: 0c463703c7bbe1d11b82304bfdd341d0 bav: adv10874948 bnf: '12117322' dnb: '119172046' key: DeLaveleyeÉmileLouisVictor1822-1892 lc: n84135848 merge: id: 0c463703c7bbe1d11b82304bfdd341d0 source: viaf type: document nkc: jn19990004906 nla: '000035765635' nlilat: '000462900' ptbnp: '84691' term: De Laveleye, Émile Louis Victor, 1822-1892 version: 2013-07-01T14:07:50Z viafid: '12339853' --- _id: 0c5483eddbe4489895a7acfb2f2c53cf bav: adv10995044 dnb: '100304567' key: MassouliéAntonin(1632-1706) merge: id: 0c5483eddbe4489895a7acfb2f2c53cf source: viaf type: document term: Massoulié, Antonin (1632-1706) version: 2013-07-01T14:07:50Z viafid: '52033741' --- _id: 0c6b50aca864af04e08686a062794739 key: DeGouvêaAlexandre1751-1808 lc: nr93018046 merge: id: 0c6b50aca864af04e08686a062794739 source: viaf type: document term: De Gouvêa, Alexandre, 1751-1808 version: 2013-07-01T14:07:50Z viafid: '26935908' --- _id: 0c6c4c087e4eafe531b9c676956d3ade bav: adv10141934 dnb: '100102840' key: DelbrückFerdinand1772-1848 lc: nr2002041667 merge: id: 0c6c4c087e4eafe531b9c676956d3ade source: viaf type: document nkc: mzk2009528374 term: Delbrück, Ferdinand, 1772-1848 version: 2013-07-01T14:07:50Z viafid: '76655444' --- _id: 0c6d8ff88c4cc3b6fb315e83cef7ddfd bav: adv10134822 bnf: '12462139' dnb: '116916338' key: GuérinJules1801-1886 merge: id: 0c6d8ff88c4cc3b6fb315e83cef7ddfd source: viaf type: document term: Guérin, Jules, 1801-1886 version: 2013-07-01T14:07:50Z viafid: '66563840' --- _id: 0c768174d747babce75da88fdd17e042 key: EngelhardtHeinz1936-|Hochdruck-Flüssigkeits-ChromatographieEnglish lc: no2011149688 merge: id: 0c768174d747babce75da88fdd17e042 source: viaf type: document term: Engelhardt, Heinz, 1936- | Hochdruck-Flüssigkeits-Chromatographie. English version: 2013-07-01T14:07:50Z viafid: '185005790' --- _id: 0c949f3997b94b82b1e3ebcb923d7c03 dnb: '123044286' jpg: '500012149' key: HuszárVilmos1884-1960 lc: n84222126 merge: id: 0c949f3997b94b82b1e3ebcb923d7c03 source: viaf type: document term: Huszár, Vilmos, 1884-1960 version: 2013-07-01T14:07:50Z viafid: '27968832' --- _id: 0c95d2cc40b1b83662510a375b4f1f99 bnf: '12245477' dnb: '121434354' key: WeilJiří1900-1959 lc: no88001051 merge: id: 0c95d2cc40b1b83662510a375b4f1f99 source: viaf type: document nkc: jk01151482 term: Weil, Jiří, 1900-1959 version: 2013-07-01T14:07:50Z viafid: '17278482' --- _id: 0c96100ad6ecc90eca42c5b5a20e637a bne: xx1223734 bnf: '12118182' dnb: '119449048' egaxa: vtls001124370 key: SzymborskaWisława1923-2012 lc: n81035696 merge: id: 0c96100ad6ecc90eca42c5b5a20e637a source: viaf type: document nkc: jn19990008399 nla: '000035811541' nlilat: '000129149' ptbnp: '910861' selibr: '95477' term: Szymborska, Wisława, 1923-2012 version: 2013-07-01T14:07:50Z viafid: '88346011' --- _id: 0ca18ed2867025b393b053133fae9a13 bav: adv10183604 bnf: '11996019' dnb: '138445362' key: WillaertLéopold1878-1963 merge: id: 0ca18ed2867025b393b053133fae9a13 source: viaf type: document nkc: jcu2012721145 nla: '000049886082' term: Willaert, Léopold, 1878-1963 version: 2013-07-01T14:07:50Z viafid: '34466149' --- _id: 0ca82f349c75de71d8bcc560a947f379 bav: adv10068847 dnb: 12208263x key: GürtlerNicolaus1654-1711 lc: nr89009958 merge: id: 0ca82f349c75de71d8bcc560a947f379 source: viaf type: document nkc: mzk2009510930 nlilat: '000523586' selibr: '338397' term: Gürtler, Nicolaus, 1654-1711 version: 2013-07-01T14:07:50Z viafid: '55020168' --- _id: 0cac38d3be3844f7df65298dc43af32f key: TegnérChristopher1807-1885 merge: id: 0cac38d3be3844f7df65298dc43af32f source: viaf type: document selibr: '289202' term: Tegnér, Christopher, 1807-1885 version: 2013-07-01T14:07:50Z viafid: '78762051' --- _id: 0cac5dc31fa0b80404311858184f7938 bav: adv12179668 bnf: '12977083' dnb: '158719301' key: RizosNeroulosJakōbos1778-1849/50 lc: nr92000655 merge: id: 0cac5dc31fa0b80404311858184f7938 source: viaf type: document nla: '000036019729' term: Rizos Neroulos, Jakōbos, 1778-1849/50 version: 2013-07-01T14:07:50Z viafid: '7520398' --- _id: 0cadd6086295c1eab4804102b7314707 dnb: '127292632' key: LeanderÅke1919-2003 merge: id: 0cadd6086295c1eab4804102b7314707 source: viaf type: document selibr: '268169' term: Leander, Åke, 1919-2003 version: 2013-07-01T14:07:50Z viafid: '71371646' --- _id: 0cafa7b92e627e31380fc66f1e11bd4f dnb: '118735055' key: MünsterHansA1901-1963 lc: n85058981 merge: id: 0cafa7b92e627e31380fc66f1e11bd4f source: viaf type: document nlilat: '000468353' term: Münster, Hans A. 1901-1963 version: 2013-07-01T14:07:50Z viafid: '22936766' --- _id: 0cb13e6232bd2acfee59cb73b5099dbf bnf: '12175626' dnb: '118850407' key: BednárAlfonz1914-1989 lc: n85165574 merge: id: 0cb13e6232bd2acfee59cb73b5099dbf source: viaf type: document nkc: jn19990209034 term: Bednár, Alfonz, 1914-1989 version: 2013-07-01T14:07:50Z viafid: '36959832' --- _id: 0cb2d1662c9bb4afa5c8b38d4fb5771a bnf: '12504267' dnb: '172319854' key: PlaaßPeter1934-1965 lc: n94008532 merge: id: 0cb2d1662c9bb4afa5c8b38d4fb5771a source: viaf type: document term: Plaaß, Peter, 1934-1965 version: 2013-07-01T14:07:50Z viafid: '208615685' --- _id: 0cb563cb3268d3600255b91934b96294 dnb: '116888199' key: GründlerCarlAugust1769-1843 merge: id: 0cb563cb3268d3600255b91934b96294 source: viaf type: document term: Gründler, Carl August, 1769-1843 version: 2013-07-01T14:07:50Z viafid: '274401699' --- _id: 0cb8162365f84bfec6cef3edbaf8ab76 bnf: '12465031' dnb: '116367334' key: GalléeJohanHendrik1847-1908 lc: n82231018 merge: id: 0cb8162365f84bfec6cef3edbaf8ab76 source: viaf type: document nlilat: '000450063' term: Gallée, Johan Hendrik, 1847-1908 version: 2013-07-01T14:07:50Z viafid: '37015462' --- _id: 0ccc262ef7773b93f61a33e330c9b59d bav: adv10219685 bnf: '12052125' egaxa: vtls001509627 key: Ibnal-JawzīAbūal-FarajʻAbdal-RaḥmānibnʻAlīca1116-1201 merge: id: 0ccc262ef7773b93f61a33e330c9b59d source: viaf type: document nkc: jn20020723170 nla: '000035416285' nliara: '000158961' nlilat: '000066491' selibr: '62724' term: Ibn al-Jawzī, Abū al-Faraj ʻAbd al-Raḥmān ibn ʻAlī, ca 1116-1201 version: 2013-07-01T14:07:50Z viafid: '100186291' --- _id: 0cd10f96b0b78521f0d5fd69631b7a48 bav: adv10179324 bnf: '12730350' dnb: '130108081' key: MaclerFrédéric1869-1938 lc: n82063735 merge: id: 0cd10f96b0b78521f0d5fd69631b7a48 source: viaf type: document nlilat: '000087347' term: Macler, Frédéric, 1869-1938 version: 2013-07-01T14:07:50Z viafid: '7513167' --- _id: 0cd9f08e8ce32b989dc3a240531ff5ad bav: adv12290597 dnb: '107654121' key: StürzingerJakob1853-1903 lc: n89608130 merge: id: 0cd9f08e8ce32b989dc3a240531ff5ad source: viaf type: document nkc: jcu2011666724 term: Stürzinger, Jakob, 1853-1903 version: 2013-07-01T14:07:50Z viafid: '10370821' --- _id: 0cda7371e4e6163ad55e34dc1764d7d5 dnb: '117265063' key: StöhrPhilipp1849-1911 lc: n85809731 merge: id: 0cda7371e4e6163ad55e34dc1764d7d5 source: viaf type: document nkc: nlk20000088160 nlilat: '000478208' term: Stöhr, Philipp, 1849-1911 version: 2013-07-01T14:07:50Z viafid: '64779480' --- _id: 0cefcb6e118099ad981df18655d19da0 key: BehrFrédéric1805-1863 lc: n88256560 merge: id: 0cefcb6e118099ad981df18655d19da0 source: viaf type: document term: Behr, Frédéric, 1805-1863 version: 2013-07-01T14:07:50Z viafid: '13876831' --- _id: 0cf421f395faf1f7dd492bbdfcac0b2d bnf: '11890310' dnb: 11756463x key: BarraultÉmile(1799-1869) lc: n88130557 merge: id: 0cf421f395faf1f7dd492bbdfcac0b2d source: viaf type: document nla: '000035014300' nlilat: '000493928' term: Barrault, Émile (1799-1869) version: 2013-07-01T14:07:50Z viafid: '7386569' --- _id: 0cfac024df6fc576fcb8849429018271 dnb: '129200727' key: WóycickiKazimierzb1876 lc: no95009982 merge: id: 0cfac024df6fc576fcb8849429018271 source: viaf type: document nkc: js2007382546 nlilat: '000318400' term: Wóycicki, Kazimierz, b. 1876 version: 2013-07-01T14:07:50Z viafid: '3546002' --- _id: 0d0347b9d673fa0837389c7778881029 bav: adv12095662 bnf: '12280744' dnb: '119480840' key: ÅkermanJohan1896-1982 lc: n79060752 merge: id: 0d0347b9d673fa0837389c7778881029 source: viaf type: document nla: '000035904497' selibr: '104062' term: Åkerman, Johan, 1896-1982 version: 2013-07-01T14:07:50Z viafid: '4992460' --- _id: 0d046c7e1361b56324a97c0c96f9ebb9 bav: adv10954696 dnb: '100204198' key: MarquetFrançoisNicolas1687-1759 lc: n2001061082 merge: id: 0d046c7e1361b56324a97c0c96f9ebb9 source: viaf type: document ptbnp: '96863' term: Marquet, François Nicolas, 1687-1759 version: 2013-07-01T14:07:50Z viafid: '34796299' --- _id: 0d06c7c564a081727520c9f455d2becb bnf: '12238024' dnb: '171499689' key: GårdlundTorsten1911-2003 merge: id: 0d06c7c564a081727520c9f455d2becb source: viaf type: document selibr: '189040' term: Gårdlund, Torsten, 1911-2003 version: 2013-07-01T14:07:50Z viafid: '201546144' --- _id: 0d08d5e826896f3002eee6cf5ced023e bav: adv10133457 bne: xx1142073 bnf: '11891047' dnb: '119089580' key: DeBelleforestFrançois1530-1583 lc: n81025991 merge: id: 0d08d5e826896f3002eee6cf5ced023e source: viaf type: document nkc: xx0009086 nla: '000035017084' nlilat: '000435080' ptbnp: '223562' selibr: '292114' term: De Belleforest, François, 1530-1583 version: 2013-07-01T14:07:50Z viafid: '61541619' --- _id: 0d0b7c265587574dbf77eed551f6fe4a dnb: 11663510x key: FöpplA1854-1924 lc: n91085919 merge: id: 0d0b7c265587574dbf77eed551f6fe4a source: viaf type: document nlilat: '000050357' term: Föppl, A., 1854-1924 version: 2013-07-01T14:07:50Z viafid: '52446756' --- _id: 0d0c5be53ff4901fb1e2d2c4177a9665 bnf: '11264035' dnb: '118092847' key: BujacJeanLéopoldEmile1852-1935 lc: n90609786 merge: id: 0d0c5be53ff4901fb1e2d2c4177a9665 source: viaf type: document term: Bujac, Jean Léopold Emile, 1852-1935 version: 2013-07-01T14:07:50Z viafid: '3259121' --- _id: 0d11020628f0c1bc9fa2e52944540338 bnf: '12305125' dnb: '155182145' key: ŌjiharaYutaka1923-1991 lc: n89670444 merge: id: 0d11020628f0c1bc9fa2e52944540338 source: viaf type: document term: Ōjihara, Yutaka, 1923-1991 version: 2013-07-01T14:07:50Z viafid: '24667950' --- _id: 0d3b0ba1ad64e2f4fcce69fcc27eb973 key: YamaguchiZuihō1926-|ChibettoChinese lc: n2008076342 merge: id: 0d3b0ba1ad64e2f4fcce69fcc27eb973 source: viaf type: document term: Yamaguchi, Zuihō, 1926- | Chibetto. Chinese version: 2013-07-01T14:07:50Z viafid: '181616576' --- _id: 0d4b70fadb4c3e6a29966a85088ab8e0 bav: adv10182017 bnf: '11903434' dnb: '118534726' key: François-PoncetAndré1887-1978 lc: n85381411 merge: id: 0d4b70fadb4c3e6a29966a85088ab8e0 source: viaf type: document nkc: xx0029954 nlilat: '000048789' selibr: '187317' term: François-Poncet, André, 1887-1978 version: 2013-07-01T14:07:50Z viafid: '29533980' --- _id: 0d4f6eebbda90f2e276e84eb1616b128 key: LemaîtreHenri1851-1946 merge: id: 0d4f6eebbda90f2e276e84eb1616b128 source: viaf type: document term: Lemaître, Henri, 1851-1946 version: 2013-07-01T14:07:50Z viafid: '208860535' --- _id: 0d538ed3853ca271d1ee0bf33560a39b bnf: '11921804' dnb: '115430989' key: RibouttéFrançois-Louis1770-1834 lc: nr95020680 merge: id: 0d538ed3853ca271d1ee0bf33560a39b source: viaf type: document term: Riboutté, François-Louis 1770-1834 version: 2013-07-01T14:07:50Z viafid: '68935013' --- _id: 0d5c2a6f1c5b22c9eaf86831f81181e8 bnf: '12529341' dnb: '119390256' key: PelouzeThéophile-Jules(1807-1867) lc: nr96026093 merge: id: 0d5c2a6f1c5b22c9eaf86831f81181e8 source: viaf type: document nkc: jn20000720221 nla: '000035579842' term: Pelouze, Théophile-Jules (1807-1867) version: 2013-07-01T14:07:50Z viafid: '39487493' --- _id: 0d6540c989fce3572e090c261a2c6e7d bav: adv11356055 bnf: '12052786' dnb: '101367112' key: BrièreGaston1871-1962 lc: nr89010853 merge: id: 0d6540c989fce3572e090c261a2c6e7d source: viaf type: document nkc: hka2011644356 nlilat: '000523635' term: Brière, Gaston, 1871-1962 version: 2013-07-01T14:07:50Z viafid: '22161070' --- _id: 0d6a1cf8afcaf281258fc57ed977d47b bnf: '13180765' dnb: '118986716' key: ĐalskiKsaverŠandor1854-1935 lc: n82081914 merge: id: 0d6a1cf8afcaf281258fc57ed977d47b source: viaf type: document nkc: xx0006322 nla: '000035821306' nlilat: '000256256' term: Đalski, Ksaver Šandor, 1854-1935 version: 2013-07-01T14:07:50Z viafid: '17362607' --- _id: 0d6a6cfff71b0a9055c00fb5733016e5 dnb: '124664032' key: PlöchingerBenno1917-2006 merge: id: 0d6a6cfff71b0a9055c00fb5733016e5 source: viaf type: document term: Plöchinger, Benno 1917-2006 version: 2013-07-01T14:07:50Z viafid: '267967935' --- _id: 0d77900253ba388b5255d55ef81c9d7f bne: xx924118 bnf: '12015500' key: Giménez-FrontínJoséLuis1943-2008 lc: n79059089 merge: id: 0d77900253ba388b5255d55ef81c9d7f source: viaf type: document nla: '000036591700' term: Giménez-Frontín, José Luis 1943-2008 version: 2013-07-01T14:07:50Z viafid: '34467951' --- _id: 0d7da04566ad2be7a22cc8be18e81028 key: LilljebjörnErikGustafJonas1848-1925 merge: id: 0d7da04566ad2be7a22cc8be18e81028 source: viaf type: document selibr: '284122' term: Lilljebjörn, Erik Gustaf Jonas, 1848-1925 version: 2013-07-01T14:07:50Z viafid: '279610630' --- _id: 0d7dade0911712b55aa24d96a9d3524a dnb: '102089590' key: ProvóKluitHendrik1803-1860 lc: n85248076 merge: id: 0d7dade0911712b55aa24d96a9d3524a source: viaf type: document term: Provó Kluit, Hendrik, 1803-1860 version: 2013-07-01T14:07:50Z viafid: '54529531' --- _id: 0d88f308f076eaedd7ffdd41c9207753 key: GuéganGérard1942-|Seulensemble lc: n2004043153 merge: id: 0d88f308f076eaedd7ffdd41c9207753 source: viaf type: document term: Guégan, Gérard, 1942- | Seul ensemble version: 2013-07-01T14:07:50Z viafid: '174732175' --- _id: 0d89f4c1368cc3443b30bf0223ee69d1 bne: xx2348633 key: AntunesAntónioLobo1942-|BibliotecaLoboAntunes lc: no2005039578 merge: id: 0d89f4c1368cc3443b30bf0223ee69d1 source: viaf type: document term: Antunes, António Lobo 1942- | Biblioteca Lobo Antunes version: 2013-07-01T14:07:50Z viafid: '182211032' --- _id: 0d8c1d1c4cae1333c440e2be5a99cc4f bav: adv10163258 bnf: '11920830' dnb: '118866737' jpg: '500033639' key: QuatremèredeQuincyAntoine-Chrysostome1755-1849 lc: n80059796 merge: id: 0d8c1d1c4cae1333c440e2be5a99cc4f source: viaf type: document nkc: mzk2009511598 nla: '000035757848' nlilat: '000428576' term: Quatremère de Quincy, Antoine-Chrysostome, 1755-1849 version: 2013-07-01T14:07:50Z viafid: '29539526' --- _id: 0d8ca45ad1ce4eff41c281326fcb9786 bav: adv11135631 dnb: '119804867' key: RichardotFrançois1507-1574 lc: nr2002028465 merge: id: 0d8ca45ad1ce4eff41c281326fcb9786 source: viaf type: document term: Richardot, François, 1507-1574 version: 2013-07-01T14:07:50Z viafid: '78715907' --- _id: 0d908b08f07fa23b335207b78606b91f bav: adv10219564 bne: xx886759 bnf: '11908326' dnb: '118556193' key: IvanovVjačeslavIvanovič1866-1949 lc: n80089640 merge: id: 0d908b08f07fa23b335207b78606b91f source: viaf type: document nkc: jn19990210299 nla: '000036369859' nlicyr: '000151228' nlilat: '000069765' selibr: '213389' term: Ivanov, Vjačeslav Ivanovič, 1866-1949 version: 2013-07-01T14:07:50Z viafid: '68930563' --- _id: 0d921699c4cdaccfdf25b7961b7aa557 bne: xx1066187 bnf: '13895967' dnb: '118675427' key: ChačaturjanAramIl'ič1903-1978 lc: n81059831 merge: id: 0d921699c4cdaccfdf25b7961b7aa557 source: viaf type: document nkc: jn19990210290 nla: '000035777950' nlicyr: '000157997' nlilat: '000075515' ptbnp: '671963' selibr: '45666' swnl: vtls000044089 term: Chačaturjan, Aram Il'ič, 1903-1978 version: 2013-07-01T14:07:50Z viafid: '19865761' --- _id: 0da37aeeadc6cd096b3e160ee7017e81 dnb: '1012408485' key: MohGünter1929-1993 lc: n78048959 merge: id: 0da37aeeadc6cd096b3e160ee7017e81 source: viaf type: document term: Moh, Günter 1929-1993 version: 2013-07-01T14:07:50Z viafid: '43095460' --- _id: 0da6eb9390fd6a3232bf28ccfdedbfbd bav: adv12167851 dnb: '119554518' key: MuchMatthäus1832-1909 lc: no2008179776 merge: id: 0da6eb9390fd6a3232bf28ccfdedbfbd source: viaf type: document ptbnp: '140206' term: Much, Matthäus, 1832-1909 version: 2013-07-01T14:07:50Z viafid: '45114674' --- _id: 0db248862775acb9e5344df646af375d dnb: '124019307' key: FersmanAE1883-1945(AleksandrEvgenʹevich) lc: n80149916 merge: id: 0db248862775acb9e5344df646af375d source: viaf type: document nkc: ola2003162780 nla: '000035645036' nlicyr: '000366728' term: Fersman, A. E., 1883-1945, (Aleksandr Evgenʹevich) version: 2013-07-01T14:07:50Z viafid: '3394664' --- _id: 0db63c09c9c039737cead7c4aba2a4d9 bnf: '14802102' key: MouzinÉdouard1822-1894 merge: id: 0db63c09c9c039737cead7c4aba2a4d9 source: viaf type: document term: Mouzin, Édouard 1822-1894 version: 2013-07-01T14:07:50Z viafid: '275893' --- _id: 0db6a378901fe3736da78a1853b6f709 dnb: '117330426' key: SchloßmacherKarl1887-1980 lc: n87818615 merge: id: 0db6a378901fe3736da78a1853b6f709 source: viaf type: document nlilat: '000488124' term: Schloßmacher, Karl, 1887-1980 version: 2013-07-01T14:07:50Z viafid: '116400696' --- _id: 0dc6029867e2dc01df6e53726430a960 dnb: '122194500' key: Meyer-StamerJörg1958-2009 lc: nr88001110 merge: id: 0dc6029867e2dc01df6e53726430a960 source: viaf type: document nkc: utb2009505221 term: Meyer-Stamer, Jörg, 1958-2009 version: 2013-07-01T14:07:50Z viafid: '42713678' --- _id: 0dcc07561b14205dfa907ef5ea4f68f1 bnf: '11927123' dnb: '119015439' key: TrnkaJiří1912-1969 lc: n81108583 merge: id: 0dcc07561b14205dfa907ef5ea4f68f1 source: viaf type: document nkc: jk01140140 nla: '000036271261' nlilat: '000249003' selibr: '347172' term: Trnka, Jiří, 1912-1969 version: 2013-07-01T14:07:50Z viafid: '27072375' --- _id: 0dce28fc37e89fdbd1fb5303b8c54960 key: TünnermannBernheimCarlos1933-|SesentaañosdelareformauniversitariadeCórdoba1918-1978 lc: n82270890 merge: id: 0dce28fc37e89fdbd1fb5303b8c54960 source: viaf type: document term: Tünnermann Bernheim, Carlos, 1933- | Sesenta años de la reforma universitaria de Córdoba, 1918-1978 version: 2013-07-01T14:07:50Z viafid: '183476808' --- _id: 0dcf234aca92746d45a9c8f135ca0401 bav: adv12488416 bnf: '12784344' dnb: '118964844' key: VanGoensRijklofMichaël1748-1810 lc: n88253924 merge: id: 0dcf234aca92746d45a9c8f135ca0401 source: viaf type: document nlilat: '000398227' term: Van Goens, Rijklof Michaël, 1748-1810 version: 2013-07-01T14:07:50Z viafid: '76442020' --- _id: 0dd1c91db9067e1e91d7b0213232a415 key: StanskiGaëtanPierre1807-1879 merge: id: 0dd1c91db9067e1e91d7b0213232a415 source: viaf type: document term: Stanski, Gaëtan Pierre, 1807-1879 version: 2013-07-01T14:07:50Z viafid: '289776829' --- _id: 0dddacf71ac77b52f33212dd0ed427dc bne: xx1159306 bnf: '11893350' dnb: '118638084' egaxa: vtls001068508 key: BuninIvanAlekseevič1870-1953 lc: n80028431 merge: id: 0dddacf71ac77b52f33212dd0ed427dc source: viaf type: document nkc: jn19990210139 nla: '000036145708' nlicyr: '000148988' nlilat: '000026444' ptbnp: '39251' selibr: '220532' swnl: vtls000036816 term: Bunin, Ivan Alekseevič, 1870-1953 version: 2013-07-01T14:07:50Z viafid: '7387402' --- _id: 0de06cae674edbf886e528a1a9a62c97 dnb: '117592803' key: MüllerJohannHeinrichJacob1809-1875 lc: n86840984 merge: id: 0de06cae674edbf886e528a1a9a62c97 source: viaf type: document nkc: ola2007404638 nlilat: '000484695' selibr: '336218' term: Müller, Johann Heinrich Jacob, 1809-1875 version: 2013-07-01T14:07:50Z viafid: '32777854' --- _id: 0de229987ab5a04d9b19e21d6f6e69ab bav: adv10870843 dnb: '129010596' key: ŁasickiJan1534-1605 lc: n86097277 merge: id: 0de229987ab5a04d9b19e21d6f6e69ab source: viaf type: document nkc: ola2003199600 nlilat: '000481864' term: Łasicki, Jan, 1534-1605 version: 2013-07-01T14:07:50Z viafid: '265803596' --- _id: 0de536a793a5732bcd3129ccdb5b8634 bav: adv10138107 bne: xx1131016 bnf: '11898114' dnb: '118677276' key: DeCrébillonClaude-ProsperJolyot1707-1777 lc: n50017130 merge: id: 0de536a793a5732bcd3129ccdb5b8634 source: viaf type: document nkc: kup19980000017516 nla: '000035032083' nlilat: '000035875' ptbnp: '54654' selibr: '182925' swnl: vtls000051810 term: De Crébillon, Claude-Prosper Jolyot, 1707-1777 version: 2013-07-01T14:07:50Z viafid: '24600044' --- _id: 0de77299cbc27e571f919464dd45e29e bnf: '12210660' key: DussaneBéatrix1888-1969 lc: n78007044 merge: id: 0de77299cbc27e571f919464dd45e29e source: viaf type: document nla: '000035129775' nlilat: '000414404' term: Dussane, Béatrix, 1888-1969 version: 2013-07-01T14:07:50Z viafid: '79078480' --- _id: 0e075a99b15576a4e2d54e0f36be31b1 bnf: '12662470' dnb: '119302179' key: BlazeElzéar1786-1848 lc: n94092630 merge: id: 0e075a99b15576a4e2d54e0f36be31b1 source: viaf type: document nlilat: '000511655' term: Blaze, Elzéar, 1786-1848 version: 2013-07-01T14:07:50Z viafid: '100298928' --- _id: 0e0803083e84c67c9f5b2906ef1163c2 dnb: '104080485' key: BöhmertVictor(1829-1918) merge: id: 0e0803083e84c67c9f5b2906ef1163c2 source: viaf type: document nkc: xx0091675 ptbnp: '158974' term: Böhmert, Victor (1829-1918) version: 2013-07-01T14:07:50Z viafid: '22568016' --- _id: 0e16a49d225d69fa660864f97143ce3f bnf: '12110020' dnb: '119014416' key: LévyMichel1821-1875 lc: n84193991 merge: id: 0e16a49d225d69fa660864f97143ce3f source: viaf type: document term: Lévy, Michel, 1821-1875 version: 2013-07-01T14:07:50Z viafid: '17253800' --- _id: 0e1a64e180204f0f0a89a51b6fce0aec dnb: '116168080' key: PflügerEduardFriedrichWilhelm(1829-1910) lc: n85033204 merge: id: 0e1a64e180204f0f0a89a51b6fce0aec source: viaf type: document nkc: nlk20000090049 term: Pflüger, Eduard Friedrich Wilhelm (1829-1910) version: 2013-07-01T14:07:50Z viafid: '20424836' --- _id: 0e1c30b1441bcb480beadd75adabeeff bav: adv10108718 bne: xx837505 bnf: '11984672' dnb: '123315352' key: BrissonBarnabé1531-1591 lc: n85068727 merge: id: 0e1c30b1441bcb480beadd75adabeeff source: viaf type: document nkc: mzk2009510623 nlilat: '000468663' selibr: '286673' term: Brisson, Barnabé, 1531-1591 version: 2013-07-01T14:07:50Z viafid: '19865' --- _id: 0e1d0bb2873e8724f44acfbf80d38d83 dnb: '141162651' key: WallerFG1867-1934(FrançoisGerard) lc: n82000684 merge: id: 0e1d0bb2873e8724f44acfbf80d38d83 source: viaf type: document term: Waller, F. G., 1867-1934, (François Gerard) version: 2013-07-01T14:07:50Z viafid: '120401780' --- _id: 0e20eb516c2a20b696445a41d49f0a9b bav: adv11484442 bnf: '14842061' dnb: '151609896' key: BrancourRené1862-1948 lc: nr95031656 merge: id: 0e20eb516c2a20b696445a41d49f0a9b source: viaf type: document nkc: jx20111222009 nlilat: '000529499' term: Brancour, René, 1862-1948 version: 2013-07-01T14:07:50Z viafid: '5197311' --- _id: 0e283dfa306747436735242d416e753b bnf: '12348664' dnb: '137481233' key: MeyerMichael1945-professeurdelittérature lc: n79115521 merge: id: 0e283dfa306747436735242d416e753b source: viaf type: document nla: '000035958867' nlilat: '000423525' term: Meyer, Michael, 1945-...., professeur de littérature version: 2013-07-01T14:07:50Z viafid: '108719909' --- _id: 0e37b01c16a4474130556cc6e83fc883 bav: adv11136424 bnf: '12462131' dnb: '152110461' key: RistelhueberRené1881-1960 lc: no98070124 merge: id: 0e37b01c16a4474130556cc6e83fc883 source: viaf type: document nlilat: '000111831' term: Ristelhueber, René, 1881-1960 version: 2013-07-01T14:07:50Z viafid: '221617447' --- _id: 0e3c74c95aa91d82ef22d793b5b27975 dnb: '117708070' key: BergmannGünter1910-1998 lc: n83017393 merge: id: 0e3c74c95aa91d82ef22d793b5b27975 source: viaf type: document term: Bergmann, Günter, 1910-1998 version: 2013-07-01T14:07:50Z viafid: '32022641' --- _id: 0e441e0bb761aebd15b0f62a8c11628c bav: adv11101689 bnf: '12122472' dnb: '119035944' key: PrémareJosephHenri1666-1736 lc: nr92025347 merge: id: 0e441e0bb761aebd15b0f62a8c11628c source: viaf type: document nla: '000035771263' term: Prémare, Joseph Henri, 1666-1736 version: 2013-07-01T14:07:50Z viafid: '77116925' --- _id: 0e596d6ed6166b545e05beeb2709a917 key: DeMaeyerAloi͏̈s1888-1973 merge: id: 0e596d6ed6166b545e05beeb2709a917 source: viaf type: document term: De Maeyer, Aloi͏̈s, 1888-1973 version: 2013-07-01T14:07:50Z viafid: '290468810' --- _id: 0e5e3f24fbed75f7fc072eba0d4ae00a bne: xx996166 bnf: '12103149' dnb: '142705241' key: LeCerfdelaViévilleJean-Laurent1674-1707 lc: n89629099 merge: id: 0e5e3f24fbed75f7fc072eba0d4ae00a source: viaf type: document nlilat: '000500134' term: Le Cerf de la Viéville, Jean-Laurent, 1674-1707 version: 2013-07-01T14:07:50Z viafid: '74577825' --- _id: 0e6bbb2b44222826b0166b00f288c754 dnb: '151375550' key: SallnäsHilding(1902-1989) lc: n82075536 merge: id: 0e6bbb2b44222826b0166b00f288c754 source: viaf type: document term: Sallnäs, Hilding (1902-1989) version: 2013-07-01T14:07:50Z viafid: '38260286' --- _id: 0e6dd60204af837812d065d12c5260ee bav: adv10109669 bnf: '12791525' dnb: '117613770' key: LedrainEugène1844-1910 lc: no2004118005 merge: id: 0e6dd60204af837812d065d12c5260ee source: viaf type: document nla: '000035964602' ptbnp: '280861' term: Ledrain, Eugène, 1844-1910 version: 2013-07-01T14:07:50Z viafid: '34585328' --- _id: 0e6fe1039278b5f9765de1d73df1369f bav: adv10179609 bnf: '12384910' dnb: '171997670' key: HuetGédéonBusken1860-1921 lc: no2006006757 merge: id: 0e6fe1039278b5f9765de1d73df1369f source: viaf type: document nkc: mub2012721647 nla: '000036000025' ptbnp: '58420' term: Huet, Gédéon Busken, 1860-1921 version: 2013-07-01T14:07:50Z viafid: '64087869' --- _id: 0e7163f9e5665d7f661c5330e67dca1e key: MančevVase1949-|ŠuplivioreviEnglish lc: no2012136795 merge: id: 0e7163f9e5665d7f661c5330e67dca1e source: viaf type: document term: Mančev, Vase, 1949- | Šuplivi orevi. English version: 2013-07-01T14:07:50Z viafid: '279146848' --- _id: 0e7f0fa71072dd4ce7b328baaeb656f2 key: CienfuegosFermán1947-|HablaelcomandanteFermánCienfuegosEnglish lc: n84038870 merge: id: 0e7f0fa71072dd4ce7b328baaeb656f2 source: viaf type: document term: Cienfuegos, Fermán, 1947- | Habla el comandante Fermán Cienfuegos. English version: 2013-07-01T14:07:50Z viafid: '176213157' --- _id: 0e8788ebf1d57e2bab3bc8e3021a6597 bnf: '12437293' dnb: '172684811' key: ChapuisFélicien1824-1879 lc: n92040537 merge: id: 0e8788ebf1d57e2bab3bc8e3021a6597 source: viaf type: document nla: '000036022185' term: Chapuis, Félicien, 1824-1879 version: 2013-07-01T14:07:50Z viafid: '69022505' --- _id: 0e9185b8ce0f0a2d4c7b593c531d28a1 bnf: '14966523' dnb: '117681857' jpg: '500002047' key: VerboeckhovenEugène-Joseph1798-1881 lc: no2006080275 merge: id: 0e9185b8ce0f0a2d4c7b593c531d28a1 source: viaf type: document nkc: xx0132639 nla: '000035248871' term: Verboeckhoven, Eugène-Joseph, 1798-1881 version: 2013-07-01T14:07:50Z viafid: '95692980' --- _id: 0ea820b31fc39adedb07b444b7434e55 key: KobayashiChishō1911-1974 lc: n79010809 merge: id: 0ea820b31fc39adedb07b444b7434e55 source: viaf type: document term: Kobayashi, Chishō, 1911-1974 version: 2013-07-01T14:07:50Z viafid: '108724485' --- _id: 0ea8654fc1a4e9f1049e93c661ff1225 dnb: '103173684' key: MētsakēsMichaēl1868?-1916 lc: nr90012174 merge: id: 0ea8654fc1a4e9f1049e93c661ff1225 source: viaf type: document nla: '000036082169' term: Mētsakēs, Michaēl, 1868?-1916 version: 2013-07-01T14:07:50Z viafid: '51839530' --- _id: 0ea9351580e7d75545c0c149bd982a9f bav: adv10891687 key: MachelardEugène1815-1880 lc: no2010117826 merge: id: 0ea9351580e7d75545c0c149bd982a9f source: viaf type: document term: Machelard, Eugène, 1815-1880 version: 2013-07-01T14:07:50Z viafid: '89166685' --- _id: 0eb8a7f0e2dd692c7c63e0f0847f40bb dnb: '117038881' key: NörrenbergC1862-1937 lc: nr2003040472 merge: id: 0eb8a7f0e2dd692c7c63e0f0847f40bb source: viaf type: document term: Nörrenberg, C., 1862-1937 version: 2013-07-01T14:07:50Z viafid: '10612611' --- _id: 0ebeca200cee3ec7707f30fd921025f5 dnb: '103338594' key: PlachtaJindřich1899-1951 lc: nr87000471 merge: id: 0ebeca200cee3ec7707f30fd921025f5 source: viaf type: document nkc: jk01093344 nlilat: '000106206' term: Plachta, Jindřich, 1899-1951 version: 2013-07-01T14:07:50Z viafid: '66877206' --- _id: 0ec381ef78b87472a39195a120d223ce bav: adv12180050 bnf: '12395843' dnb: '123891361' key: BüchsenschützB1828-1922 lc: n84806564 merge: id: 0ec381ef78b87472a39195a120d223ce source: viaf type: document nkc: mzk2007430464 nlilat: '000466662' selibr: '44249' term: Büchsenschütz, B., 1828-1922 version: 2013-07-01T14:07:50Z viafid: '19762056' --- _id: 0ece6c301030863a054d62690594c45c bav: adv10180825 bnf: '15335841' dnb: '116184442' key: BjørnboAxelAnthon1874-1911 lc: n89631377 merge: id: 0ece6c301030863a054d62690594c45c source: viaf type: document nlilat: '000565910' term: Bjørnbo, Axel Anthon, 1874-1911 version: 2013-07-01T14:07:50Z viafid: '12607369' --- _id: 0ed394ec6506428d2dd5e5f4a3154834 bnf: '13483831' dnb: '116640901' key: LacordaireThéodore1801-1870 lc: n92040532 merge: id: 0ed394ec6506428d2dd5e5f4a3154834 source: viaf type: document nla: '000036022768' term: Lacordaire, Théodore, 1801-1870 version: 2013-07-01T14:07:50Z viafid: '42594135' --- _id: 0ed8e49e715d13cf2a42961776aab666 bav: adv11306603 bnf: '12298069' dnb: '104357347' key: TimaševNikolajSergeevič1886-1970 lc: n50012948 merge: id: 0ed8e49e715d13cf2a42961776aab666 source: viaf type: document nkc: js2008443334 nla: '000035121260' nlilat: '000131503' term: Timašev, Nikolaj Sergeevič, 1886-1970 version: 2013-07-01T14:07:50Z viafid: '44363458' --- _id: 0edbf05dd0d593ce3fdc3c3de16149bb bne: xx3384826 key: PomboÁlvaro1939-|ElhéroedelasmansardasdeMansardAlemán merge: id: 0edbf05dd0d593ce3fdc3c3de16149bb source: viaf type: document term: Pombo, Álvaro 1939- | El héroe de las mansardas de Mansard Alemán version: 2013-07-01T14:07:50Z viafid: '175003053' --- _id: 0ee157a23b92aaa2068f99d7bd1397a7 bav: adv10049373 bnf: '12356531' dnb: '117691569' egaxa: vtls000081511 key: ClotAntoine-Barthélémy1793-1868 lc: nr92003031 merge: id: 0ee157a23b92aaa2068f99d7bd1397a7 source: viaf type: document nkc: nlk20000083849 nlilat: '000032555' term: Clot, Antoine-Barthélémy, 1793-1868 version: 2013-07-01T14:07:50Z viafid: '81980325' --- _id: 0ee69f56297059a0c0aeb34dafdc0a67 bav: adv10183689 bnf: '12292189' dnb: 11865828x key: BenvenisteÉmile1902-1976 lc: n78096113 merge: id: 0ee69f56297059a0c0aeb34dafdc0a67 source: viaf type: document nkc: ola2002152597 nla: '000035383352' nlicyr: '000148241' nlilat: '000018742' ptbnp: '39123' term: Benveniste, Émile, 1902-1976 version: 2013-07-01T14:07:50Z viafid: '12372277' --- _id: 0eeb4de16481eec3e3f44d7195454b70 bav: adv10047100 bnf: '12436862' dnb: '123065984' key: BeyensEugène1855-1934 lc: n83131223 merge: id: 0eeb4de16481eec3e3f44d7195454b70 source: viaf type: document nlilat: '000454466' term: Beyens, Eugène, 1855-1934 version: 2013-07-01T14:07:50Z viafid: '66558771' --- _id: 0ef6f7057b84daae59d2ec1234343784 key: PleijelAgneta1940-|ÖgonurendrömEnglish lc: n92052984 merge: id: 0ef6f7057b84daae59d2ec1234343784 source: viaf type: document term: Pleijel, Agneta, 1940- | Ögon ur en dröm. English version: 2013-07-01T14:07:50Z viafid: '179100705' --- _id: 0ef7896b0b6f17042c2a29db13cc3e7e bnf: '10430708' dnb: '180610783' key: ConstantLéonardd1610 lc: nr93019262 merge: id: 0ef7896b0b6f17042c2a29db13cc3e7e source: viaf type: document term: Constant, Léonard, d. 1610 version: 2013-07-01T14:07:50Z viafid: '81807326' --- _id: 0ef9becce1ae1422064ccd31b09450e1 key: ChangChʻung-ho1914-|PoemsEnglish&ChineseSelections lc: no2007003544 merge: id: 0ef9becce1ae1422064ccd31b09450e1 source: viaf type: document term: Chang, Chʻung-ho, 1914- | Poems. English & Chinese. Selections version: 2013-07-01T14:07:50Z viafid: '178891954' --- _id: 0efdef64f8a8c12cb7ed1e0215ccb376 key: MoisanClément1933-Poetryoffrontiers lc: n83301850 merge: id: 0efdef64f8a8c12cb7ed1e0215ccb376 source: viaf type: document term: Moisan, Clément, 1933-, Poetry of frontiers version: 2013-07-01T14:07:50Z viafid: '181453740' --- _id: 0f01d861478596f9fd5fdd08d9757f1e dnb: '124968740' key: KneżevićBožidar(1862-1905) lc: n80070545 merge: id: 0f01d861478596f9fd5fdd08d9757f1e source: viaf type: document term: Kneżević, Božidar (1862-1905) version: 2013-07-01T14:07:50Z viafid: '25550737' --- _id: 0f02ab2bd5aed6d8fcb45b44f8a851fa bnf: '15536062' key: ArmandFrançoisHuguet1699-1765 lc: no2009091501 merge: id: 0f02ab2bd5aed6d8fcb45b44f8a851fa source: viaf type: document term: Armand, François Huguet, 1699-1765 version: 2013-07-01T14:07:50Z viafid: '34765388' --- _id: 0f16ea57d2f23eb9cec9b0e32497d55f bav: adv11990615 bnf: '12969025' dnb: '116859989' key: SchönbachAntonEmanuel(1848-1911) lc: n90695936 merge: id: 0f16ea57d2f23eb9cec9b0e32497d55f source: viaf type: document nlilat: '000504074' term: Schönbach, Anton Emanuel (1848-1911) version: 2013-07-01T14:07:50Z viafid: '7520092' --- _id: 0f189b1655d62698c32a0a6f4d24b425 dnb: '118750267' key: RühlAlfred1882-1935 lc: n85330811 merge: id: 0f189b1655d62698c32a0a6f4d24b425 source: viaf type: document nlilat: '000475766' term: Rühl, Alfred, 1882-1935 version: 2013-07-01T14:07:50Z viafid: '807843' --- _id: 0f1db990eb0733d2f4bd55c1c0248673 bav: adv12150996 dnb: '119160560' key: SvorōnosIōannēsN1863-1922 lc: no98082190 merge: id: 0f1db990eb0733d2f4bd55c1c0248673 source: viaf type: document ptbnp: '999191' term: Svorōnos, Iōannēs N., 1863-1922 version: 2013-07-01T14:07:50Z viafid: '47565490' --- _id: 0f21a51ebe1d94c16b4ed5ff9b34117a key: NaṣrAllāhḤasan1941-|MawsūʻatBaʻlabakk lc: n2001046887 merge: id: 0f21a51ebe1d94c16b4ed5ff9b34117a source: viaf type: document term: Naṣr Allāh, Ḥasan, 1941- | Mawsūʻat Baʻlabakk version: 2013-07-01T14:07:50Z viafid: '181574919' --- _id: 0f28dcd9f3d864d9d64eebf4cef971e8 key: GébelinJacques1848-1898 merge: id: 0f28dcd9f3d864d9d64eebf4cef971e8 source: viaf type: document term: Gébelin, Jacques, 1848-1898 version: 2013-07-01T14:07:50Z viafid: '211211502' --- _id: 0f2a98ff2bd1e1349ad7fb63e32e8fe0 bav: adv10118122 bnf: '12027830' dnb: '118750240' key: RüdigerHorst1908-1984 lc: n50022676 merge: id: 0f2a98ff2bd1e1349ad7fb63e32e8fe0 source: viaf type: document nkc: mzk2012721940 nla: '000035467680' nlilat: '000258002' term: Rüdiger, Horst, 1908-1984 version: 2013-07-01T14:07:50Z viafid: '36932340' --- _id: 0f32ffd1320f0941bd4cb0256c5b21aa key: LawalréeAndré1921-2005 merge: id: 0f32ffd1320f0941bd4cb0256c5b21aa source: viaf type: document term: Lawalrée, André, 1921-2005 version: 2013-07-01T14:07:50Z viafid: '208066292' --- _id: 0f3b876d6c5b78b863089e108eefd056 key: AlemanyyBoluferJosé1866-1934 lc: n86808350 merge: id: 0f3b876d6c5b78b863089e108eefd056 source: viaf type: document term: Alemany y Bolufer, José, 1866-1934 version: 2013-07-01T14:07:50Z viafid: '294433420' --- _id: 0f4bb448bd75b98aeb542937c17c5438 bav: adv12016709 bne: xx946183 bnf: '11990391' dnb: 11875839x key: TjutčevFedorIvanovič1803-1873 lc: n50047826 merge: id: 0f4bb448bd75b98aeb542937c17c5438 source: viaf type: document nkc: jn19981002228 nla: '000036541692' nlicyr: '000157136' nlilat: '000557466' selibr: '97153' swnl: vtls003590895 term: Tjutčev, Fedor Ivanovič, 1803-1873 version: 2013-07-01T14:07:50Z viafid: '95260021' --- _id: 0f6141133fb05a4a763e24c8e8a212a6 key: Fahr-BeckerGabriele1946-|BarcelonaAntoniGaudíyCorn'etEnglish lc: n82053834 merge: id: 0f6141133fb05a4a763e24c8e8a212a6 source: viaf type: document nla: '000036552511' term: Fahr-Becker, Gabriele, 1946- | Barcelona, Antoni Gaudí y Corn'et. English version: 2013-07-01T14:07:50Z viafid: '181040822' --- _id: 0f6d922721c3daafa8d40b865cb72b9c bne: xx1722259 bnf: '11925679' dnb: '119072343' key: StrugackijBorisNatanovič1933-2012 lc: n79105865 merge: id: 0f6d922721c3daafa8d40b865cb72b9c source: viaf type: document nkc: jn19990210590 nlicyr: '000156768' ptbnp: '264159' selibr: '293103' term: Strugackij, Boris Natanovič, 1933-2012 version: 2013-07-01T14:07:50Z viafid: '97139204' --- _id: 0f710128fe92cfda5b058bc4b2d69d87 key: AdrianiGötz1940-|PaulCézanneAquarelleEnglish lc: n83008816 merge: id: 0f710128fe92cfda5b058bc4b2d69d87 source: viaf type: document nla: '000036518953' term: Adriani, Götz, 1940- | Paul Cézanne, Aquarelle. English version: 2013-07-01T14:07:50Z viafid: '186709920' --- _id: 0f73ceb2078943e769d2de728592b1f4 bav: adv10291716 bnf: '12589868' dnb: '132365820' key: BerthierGuillaumeFrançois1704-1782 lc: n81092459 merge: id: 0f73ceb2078943e769d2de728592b1f4 source: viaf type: document nkc: ola2008481222 ptbnp: '456620' term: Berthier, Guillaume François, 1704-1782 version: 2013-07-01T14:07:50Z viafid: '32117071' --- _id: 0f761b580a31b7f53cad15a9ecc6f0da bav: adv10215500 bnf: '12159258' dnb: '118776231' key: JoffreJosephJacquesCésaire1852-1931 lc: n86069973 merge: id: 0f761b580a31b7f53cad15a9ecc6f0da source: viaf type: document nkc: jn20000720118 nla: '000036563138' nlilat: '000481145' term: Joffre, Joseph Jacques Césaire, 1852-1931 version: 2013-07-01T14:07:50Z viafid: '56648875' --- _id: 0f8077efb18866a5e285773bb2fcf111 bav: adv10138997 bne: xx877270 bnf: '14035404' dnb: '118659456' jpg: '500024658' key: BouchardonEdmé1698-1762 lc: nr99034050 merge: id: 0f8077efb18866a5e285773bb2fcf111 source: viaf type: document nkc: mzk2012709563 term: Bouchardon, Edmé, 1698-1762 version: 2013-07-01T14:07:50Z viafid: '64206515' --- _id: 0f87b9aad4ab592431c5cef28a9cc7de bav: adv11037621 bnf: '11919082' dnb: '172309549' key: PérauGabrielLouisCalabre1700-1767 lc: n85049189 merge: id: 0f87b9aad4ab592431c5cef28a9cc7de source: viaf type: document nkc: mzk2009511495 nlilat: '000468017' term: Pérau, Gabriel Louis Calabre, 1700-1767 version: 2013-07-01T14:07:50Z viafid: '12313425' --- _id: 0f8ca5164cd05aedeb41e80a7ffbd6b6 bav: adv10202532 bnf: '12927494' dnb: '120953986' key: DubosCharles-François1661-1724 merge: id: 0f8ca5164cd05aedeb41e80a7ffbd6b6 source: viaf type: document term: Dubos, Charles-François, 1661-1724 version: 2013-07-01T14:07:50Z viafid: '15613694' --- _id: 0f8da0813bbc2ba6d1e24423f01b52d8 bnf: '13913754' dnb: '300078285' key: IndyVincentd'1851-1931SymphoniesurunchantmontagnardfrançaisOp25 lc: n85006601 merge: id: 0f8da0813bbc2ba6d1e24423f01b52d8 source: viaf type: document nla: '000035619115' term: Indy, Vincent d' 1851-1931 Symphonie sur un chant montagnard français Op. 25 version: 2013-07-01T14:07:50Z viafid: '183500801' --- _id: 0f8e9a11d6dfad11b27a6262d14c1420 bne: xx1008040 bnf: '13480284' dnb: '128414103' key: ČakovskijAleksandrBorisovič1913-1994 lc: n50060515 merge: id: 0f8e9a11d6dfad11b27a6262d14c1420 source: viaf type: document nkc: xx0003107 nla: '000035443977' nlicyr: '000209302' ptbnp: '134818' term: Čakovskij, Aleksandr Borisovič, 1913-1994 version: 2013-07-01T14:07:50Z viafid: '99145990' --- _id: 0f9465c2861b030c5eeb868d0d76cab5 key: RieszJános1941-|Europäisch-afrikanischeLiteraturbeziehungen lc: n2001024737 merge: id: 0f9465c2861b030c5eeb868d0d76cab5 source: viaf type: document term: Riesz, János, 1941- | Europäisch-afrikanische Literaturbeziehungen version: 2013-07-01T14:07:50Z viafid: '175517916' --- _id: 0f94d73891d7e410ff0301b67bb100ee bav: adv10036315 dnb: '118867989' egaxa: vtls001583788 key: SubkīTājal-DīnʻAbdal-WahhābibnʻAlīca1327-1370 lc: n84020872 merge: id: 0f94d73891d7e410ff0301b67bb100ee source: viaf type: document nliara: '000002606' nlilat: '000459542' selibr: '33826' term: Subkī, Tāj al-Dīn ʻAbd al-Wahhāb ibn ʻAlī, ca. 1327-1370 version: 2013-07-01T14:07:50Z viafid: '40175990' --- _id: 0f96e3bab7037903d2ef43db82d1b1c8 key: BüttgenbachFranz1832-1900 merge: id: 0f96e3bab7037903d2ef43db82d1b1c8 source: viaf type: document term: Büttgenbach, Franz, 1832-1900 version: 2013-07-01T14:07:50Z viafid: '286070985' --- _id: 0f985a988663c1d2387804679a6207fe bnf: '12275878' dnb: '118947362' key: KranjecMiško1908-1983 lc: n84045929 merge: id: 0f985a988663c1d2387804679a6207fe source: viaf type: document nkc: js20020812324 term: Kranjec, Miško, 1908-1983 version: 2013-07-01T14:07:50Z viafid: '68989420' --- _id: 0f99c0eaaf256ca1b160bd46482423e9 bnf: '10421220' key: ValériusHubert1820-1897 merge: id: 0f99c0eaaf256ca1b160bd46482423e9 source: viaf type: document term: Valérius, Hubert 1820-1897 version: 2013-07-01T14:07:50Z viafid: '98747924' --- _id: 0f9a3dbde3a433ec1213bae468035c1e key: BrongersmaLD1907-1994(LeoDaniël)AnimalworldofNetherlandsNewGuinea lc: n85814842 merge: id: 0f9a3dbde3a433ec1213bae468035c1e source: viaf type: document term: Brongersma, L. D., 1907-1994., (Leo Daniël), Animal world of Netherlands New Guinea version: 2013-07-01T14:07:50Z viafid: '179865357' --- _id: 0f9c66ef4387f951cb8eb750ab18c18f bav: adv11536525 bne: xx1759164 dnb: 11615232x key: DöbereinerChristian1874-1961 lc: n85023247 merge: id: 0f9c66ef4387f951cb8eb750ab18c18f source: viaf type: document nkc: mzk2011652736 nlilat: '000553202' term: Döbereiner, Christian, 1874-1961 version: 2013-07-01T14:07:50Z viafid: '25346194' --- _id: 0f9d2b40874b458272fba9aa5732ad11 bav: adv12061671 bne: xx893780 bnf: '11920171' dnb: '118947370' key: PoliakovLéon1910-1997 lc: n50020456 merge: id: 0f9d2b40874b458272fba9aa5732ad11 source: viaf type: document nkc: jx20050601011 nla: '000035426996' nlicyr: '000155288' nlilat: '000106612' ptbnp: '38794' selibr: '137272' term: Poliakov, Léon, 1910-1997 version: 2013-07-01T14:07:50Z viafid: '9852041' --- _id: 0fa30fcbad5199c59a33885b0a93cbed bav: adv11088462 bnf: '12127349' dnb: '116178124' key: PichotAmédée1795-1877 lc: n85800955 merge: id: 0fa30fcbad5199c59a33885b0a93cbed source: viaf type: document nkc: mzk2009510727 nla: '000035789370' nlilat: '000105593' ptbnp: '76551' term: Pichot, Amédée, 1795-1877 version: 2013-07-01T14:07:50Z viafid: '59117355' --- _id: 0fa4f1af66b69d2e1382d32abcfba43b dnb: '117141054' key: SchützJohannJacob1640-1690 lc: nr2003014150 merge: id: 0fa4f1af66b69d2e1382d32abcfba43b source: viaf type: document nkc: mzk2009511164 selibr: '258735' term: Schütz, Johann Jacob, 1640-1690 version: 2013-07-01T14:07:50Z viafid: '52459463' --- _id: 0fa55f17c77ac3243c5691b7fa058cea bav: adv10973209 bnf: '12171118' dnb: '104273895' key: MillotClaude-François-Xavier1726-1785 lc: n85253488 merge: id: 0fa55f17c77ac3243c5691b7fa058cea source: viaf type: document nkc: skuk0004128 nla: '000036297614' nlilat: '000473668' ptbnp: '119312' selibr: '213223' term: Millot, Claude-François-Xavier, 1726-1785 version: 2013-07-01T14:07:50Z viafid: '22182699' --- _id: 0fa5d44349d22c73185e1c60d07ced1d bne: xx954979 bnf: '11922577' dnb: '118699156' key: GuimarãesRosaJoão1908-1967 lc: n79095563 merge: id: 0fa5d44349d22c73185e1c60d07ced1d source: viaf type: document nkc: jn19981001367 nla: '000035461431' nlilat: '000113028' ptbnp: '61961' selibr: '240574' term: Guimarães Rosa, João, 1908-1967 version: 2013-07-01T14:07:50Z viafid: '59088739' --- _id: 0facb0ff43ccbcd007efe10fdc821293 dnb: '117053481' key: BückingH1851-1932 merge: id: 0facb0ff43ccbcd007efe10fdc821293 source: viaf type: document term: Bücking, H., 1851-1932 version: 2013-07-01T14:07:50Z viafid: '72161427' --- _id: 0fbaf55e356396606b528bdd74e92323 bnf: '13474878' dnb: '102714436' key: DarmoisEugène(1884-1958) merge: id: 0fbaf55e356396606b528bdd74e92323 source: viaf type: document nlilat: '000037031' term: Darmois, Eugène (1884-1958) version: 2013-07-01T14:07:50Z viafid: '27215136' --- _id: 0fc03de01de143c90044f51bfce7ac7c bav: adv11083383 bnf: '12221244' dnb: 11931942x key: PoréeCharles1872-1940 lc: nr91042385 merge: id: 0fc03de01de143c90044f51bfce7ac7c source: viaf type: document nlilat: '000525850' term: Porée, Charles, 1872-1940 version: 2013-07-01T14:07:50Z viafid: '34508165' --- _id: 0fc38da6be3afcc7194bca75c4917b45 bav: adv10129428 bnf: '12566453' dnb: '117661287' key: DumérilAndré-Marie-Constant1774-1860 lc: n86863676 merge: id: 0fc38da6be3afcc7194bca75c4917b45 source: viaf type: document nkc: uk2007353640 nla: '000036001657' nlilat: '000041337' ptbnp: '1199877' term: Duméril, André-Marie-Constant, 1774-1860 version: 2013-07-01T14:07:50Z viafid: '71508982' --- _id: 0fc4948567c1fc67abef00a68113a57c bnf: '10618555' dnb: '1023569116' key: LaboulbèneAlexandre(1825-1898) lc: no2012103707 merge: id: 0fc4948567c1fc67abef00a68113a57c source: viaf type: document nkc: nlk20010095053 term: Laboulbène, Alexandre (1825-1898) version: 2013-07-01T14:07:50Z viafid: '84820815' --- _id: 0fd289dd6da72599ca54dee1506ebf42 bnf: '15317647' dnb: '115829814' key: DraletÉtienneFrançois(1754-1844) lc: n86004989 merge: id: 0fd289dd6da72599ca54dee1506ebf42 source: viaf type: document term: Dralet, Étienne François (1754-1844) version: 2013-07-01T14:07:50Z viafid: '57353451' --- _id: 0fe7c906dfb08c96f7b4cb00ccd591f7 bav: adv11002914 bnf: '15668516' dnb: '116079576' key: PerlesFélix1874-1933 lc: nr95008768 merge: id: 0fe7c906dfb08c96f7b4cb00ccd591f7 source: viaf type: document nlilat: '000104695' term: Perles, Félix 1874-1933 version: 2013-07-01T14:07:50Z viafid: '32324176' --- _id: 0ffc6261c89fbc37dee3c1a4ad4c7e66 bnf: '12371592' dnb: '118994050' key: ErdősPaul1913-1996 lc: n50010022 merge: id: 0ffc6261c89fbc37dee3c1a4ad4c7e66 source: viaf type: document nkc: mzk2003169557 nla: '000036575015' nlilat: '000044035' selibr: '185310' term: Erdős, Paul, 1913-1996 version: 2013-07-01T14:07:50Z viafid: '51768730' --- _id: 1001463adc0d5335f15f13f7faff80a7 bnf: '14636361' dnb: '118595997' key: PotoniéRobert1889-1974 merge: id: 1001463adc0d5335f15f13f7faff80a7 source: viaf type: document nkc: kv2009520740 term: Potonié, Robert, 1889-1974 version: 2013-07-01T14:07:50Z viafid: '27322147' --- _id: 100317d03b6f9f53bb9ca68b6281f364 bav: adv10244636 bnf: '13325672' dnb: '124636853' key: GiannettasioNiccolòPartenio1648-1715 merge: id: 100317d03b6f9f53bb9ca68b6281f364 source: viaf type: document nkc: mzk2009511691 term: Giannettasio, Niccolò Partenio, 1648-1715 version: 2013-07-01T14:07:50Z viafid: '54292153' --- _id: 100946de3226d9a033f1f95880bd9417 bav: adv11097435 bnf: '11921031' dnb: '128885998' key: RaguenetFrançois1660?-1722 lc: n50069180 merge: id: 100946de3226d9a033f1f95880bd9417 source: viaf type: document nla: '000035389871' nlilat: '000413129' term: Raguenet, François, 1660?-1722 version: 2013-07-01T14:07:50Z viafid: '12314051' --- _id: 10139278c5bae5ff15af953229f4619d bav: adv10063447 bnf: '12567375' dnb: '132034875' key: DanjouFélix(1812-1866) merge: id: 10139278c5bae5ff15af953229f4619d source: viaf type: document term: Danjou, Félix (1812-1866) version: 2013-07-01T14:07:50Z viafid: '61664547' --- _id: 101a7d3d8ae73468235147c98a5485e9 bnf: '12189204' dnb: '102457093' key: CosteJean-François1741-1819 lc: n85099522 merge: id: 101a7d3d8ae73468235147c98a5485e9 source: viaf type: document nkc: mzk2009510591 nlilat: '000469415' ptbnp: '1401112' term: Coste, Jean-François, 1741-1819 version: 2013-07-01T14:07:50Z viafid: '9893183' --- _id: 101cbdb6de587b8195299c65963e0f9a key: ToddEmmanuel1951-|TroisièmeplanèteEnglish lc: n84215646 merge: id: 101cbdb6de587b8195299c65963e0f9a source: viaf type: document nla: '000035568546' term: Todd, Emmanuel, 1951- | Troisième planète. English version: 2013-07-01T14:07:50Z viafid: '182275228' --- _id: 1024f72043e91daae2482ec0376c4587 bne: xx960081 bnf: '12298455' dnb: '121133125' key: YnduráinFJ1940-2008 lc: n82215939 merge: id: 1024f72043e91daae2482ec0376c4587 source: viaf type: document term: Ynduráin, F. J. 1940-2008 version: 2013-07-01T14:07:50Z viafid: '73918013' --- _id: 102812bcdbcbc47376e41be4a339a1fb bne: xx888031 bnf: '11896803' dnb: '118981102' key: ChraïbiDriss1926-2007 lc: n84043146 merge: id: 102812bcdbcbc47376e41be4a339a1fb source: viaf type: document nkc: kup20030000015349 nla: '000035856344' nlilat: '000031692' selibr: '341657' term: Chraïbi, Driss, 1926-2007 version: 2013-07-01T14:07:50Z viafid: '51687399' --- _id: 102936ce534a74681de740a0dee9de06 bne: xx950248 bnf: '11901820' dnb: '118529269' egaxa: vtls000890085 key: ĖrenburgIlʹjaGrigorʹevič1891-1967 lc: n50030508 merge: id: 102936ce534a74681de740a0dee9de06 source: viaf type: document nkc: jn19990210194 nla: '000036555544' nlicyr: '000161054' nliheb: '000228544' nlilat: '000044049' selibr: '184634' swnl: vtls000075176 term: Ėrenburg, Ilʹja Grigorʹevič, 1891-1967 version: 2013-07-01T14:07:50Z viafid: '40169930' --- _id: 10298c8a8ece765eacc88c4b8ad9d5db dnb: '137943989' key: OutesFélixF1878-1939 lc: n87814839 merge: id: 10298c8a8ece765eacc88c4b8ad9d5db source: viaf type: document nlilat: '000487990' ptbnp: '66133' term: Outes, Félix F. 1878-1939 version: 2013-07-01T14:07:50Z viafid: '72910328' --- _id: 102ab9f93ebbb24eb00eeed562b75a82 bav: adv10211809 dnb: '1023958287' key: GrützmacherGeorg1866-1939 merge: id: 102ab9f93ebbb24eb00eeed562b75a82 source: viaf type: document term: Grützmacher, Georg, 1866-1939 version: 2013-07-01T14:07:50Z viafid: '42234899' --- _id: 1030d39616cd5bb62adbf2ea36973493 dnb: '117657085' key: SessaKarlBorromäusAlexander1786-1813 lc: no2002059298 merge: id: 1030d39616cd5bb62adbf2ea36973493 source: viaf type: document nlilat: '000335086' term: Sessa, Karl Borromäus Alexander, 1786-1813 version: 2013-07-01T14:07:50Z viafid: '57398018' --- _id: 1037a976e077f372b49c3e51ac7dd9c4 key: BéclardFerdinand1848-1897 merge: id: 1037a976e077f372b49c3e51ac7dd9c4 source: viaf type: document term: Béclard, Ferdinand, 1848-1897 version: 2013-07-01T14:07:50Z viafid: '202306364' --- _id: 10396db75e279b62c46ca46dc1bd619c bav: adv10286587 bnf: '16177672' dnb: '118657305' key: BarnesRobert1495?–1540 lc: n79139058 merge: id: 10396db75e279b62c46ca46dc1bd619c source: viaf type: document nkc: ola2008452289 term: Barnes, Robert, 1495?–1540 version: 2013-07-01T14:07:50Z viafid: '74646733' --- _id: 103e02fb4c3fd528a578f87cd54656a2 bne: xx1291972 dnb: 11860208x key: RötscherHeinrichTheodor1803-1871 lc: n82255732 merge: id: 103e02fb4c3fd528a578f87cd54656a2 source: viaf type: document nlilat: '000115133' term: Rötscher, Heinrich Theodor, 1803-1871 version: 2013-07-01T14:07:50Z viafid: '69722312' --- _id: 104682fa9fad80d30396f5cc8dec9e8b bav: adv10913221 bne: xx848487 bnf: '12174727' dnb: '118780840' key: DeLuzánIgnacio1702-1754 lc: n92068023 merge: id: 104682fa9fad80d30396f5cc8dec9e8b source: viaf type: document ptbnp: '151201' term: De Luzán, Ignacio, 1702-1754 version: 2013-07-01T14:07:50Z viafid: '9889846' --- _id: 1051e2004526eeccb98b67b35c37bd58 dnb: '104377526' key: DeSmetFrançoisJoseph1771-1854 lc: no2009122108 merge: id: 1051e2004526eeccb98b67b35c37bd58 source: viaf type: document term: De Smet, François Joseph, 1771-1854 version: 2013-07-01T14:07:50Z viafid: '74288231' --- _id: 1053d5a5708a914861d36d2f22b601e3 bnf: '13007660' key: BourgEdme-Théodore1785-1852 lc: n93029999 merge: id: 1053d5a5708a914861d36d2f22b601e3 source: viaf type: document selibr: '334338' term: Bourg, Edme-Théodore, 1785-1852 version: 2013-07-01T14:07:50Z viafid: '43510090' --- _id: 10568eab636f8a0186c12e3f0774758d bne: xx959312 bnf: '11926277' dnb: '152102094' key: TétryAndrée1907-1992 lc: n83239551 merge: id: 10568eab636f8a0186c12e3f0774758d source: viaf type: document nkc: xx0033966 nla: '000035544312' selibr: '345117' term: Tétry, Andrée, 1907-1992 version: 2013-07-01T14:07:50Z viafid: '92715419' --- _id: 1061d2e161a871e2117a97ade266e66d bnf: '15083328' dnb: '102412804' egaxa: vtls000837588 key: al-Khaṭībal-BaghdādīAbūBakrAḥmadibnʻAlī1002-1071 lc: n85231280 merge: id: 1061d2e161a871e2117a97ade266e66d source: viaf type: document nliara: '000002270' nlilat: '000472941' selibr: '34577' term: al-Khaṭīb al-Baghdādī, Abū Bakr Aḥmad ibn ʻAlī, 1002-1071 version: 2013-07-01T14:07:50Z viafid: '69222089' --- _id: 10655fda3036f8db9223654e6f263811 bnf: '12942333' dnb: '124663079' key: SinaiYaG1935-(I︠A︡kovGrigorʹevich) lc: n81032623 merge: id: 10655fda3036f8db9223654e6f263811 source: viaf type: document nkc: jn20030211012 nla: '000036550465' term: Sinai, Ya. G., 1935-, (I︠A︡kov Grigorʹevich) version: 2013-07-01T14:07:50Z viafid: '34589101' --- _id: 106b7e07eb7827c7d64379eea6963a85 bnf: '13322185' dnb: '118790560' key: Petković-DisVladislav1880-1917 lc: no90005661 merge: id: 106b7e07eb7827c7d64379eea6963a85 source: viaf type: document nkc: jx20041207003 term: Petković-Dis, Vladislav, 1880-1917 version: 2013-07-01T14:07:50Z viafid: '5076277' --- _id: 1071ff31eb699c7503c8433f63bef173 key: NikitinVasiliĭNikitich1737-1809 lc: nr93028472 merge: id: 1071ff31eb699c7503c8433f63bef173 source: viaf type: document term: Nikitin, Vasiliĭ Nikitich, 1737-1809 version: 2013-07-01T14:07:50Z viafid: '61418701' --- _id: 1078a85e038b49636c6d028de6846ce3 dnb: 12112651x key: RöerEdward1805-1866 lc: n88634702 merge: id: 1078a85e038b49636c6d028de6846ce3 source: viaf type: document nlilat: '000292041' term: Röer, Edward, 1805-1866 version: 2013-07-01T14:07:50Z viafid: '90777453' --- _id: 107c3d1089608516341f07af70c2dc83 key: LundströmIngeborg1878-1976 merge: id: 107c3d1089608516341f07af70c2dc83 source: viaf type: document selibr: '285404' term: Lundström, Ingeborg, 1878-1976 version: 2013-07-01T14:07:50Z viafid: '9829491' --- _id: 107f3499ac5e6c0a23fe2c1b5d2c79b5 key: LétiévantJean-Joseph-Émile1830-1884 merge: id: 107f3499ac5e6c0a23fe2c1b5d2c79b5 source: viaf type: document term: Létiévant, Jean-Joseph-Émile, 1830-1884 version: 2013-07-01T14:07:50Z viafid: '209066983' --- _id: 108276aaa6a548c2d02eaf03200196dd bav: adv11163421 bnf: '12215767' dnb: '118641891' key: RécamierJeanneFrançoiseJulieAdélaïdeBernard1777-1849 lc: n50046071 merge: id: 108276aaa6a548c2d02eaf03200196dd source: viaf type: document nla: '000035444709' nlilat: '000110081' selibr: '88805' term: Récamier, Jeanne Françoise Julie Adélaïde Bernard, 1777-1849 version: 2013-07-01T14:07:50Z viafid: '36967757' --- _id: 10848be81c138b9062b260910e15af44 key: SickingLouis1966-|Frontièresd'outre-merEnglish lc: n2008031582 merge: id: 10848be81c138b9062b260910e15af44 source: viaf type: document term: Sicking, Louis, 1966- | Frontières d'outre-mer. English version: 2013-07-01T14:07:50Z viafid: '186469969' --- _id: 10969aa6eb4759fd834b1a22b4558381 bne: xx1074813 bnf: '11902471' dnb: '118686399' jpg: '500068153' key: FedinKonstantinAleksandrovič1892-1977 lc: n50001089 merge: id: 10969aa6eb4759fd834b1a22b4558381 source: viaf type: document nkc: jn19990210201 nla: '000036299652' nlicyr: '000157673' nlilat: '000400111' ptbnp: '27312' selibr: '186714' term: Fedin, Konstantin Aleksandrovič, 1892-1977 version: 2013-07-01T14:07:50Z viafid: '29533778' --- _id: 10a01ac8ec2e85f7f93aee1aeaf8fb68 bne: xx859935 dnb: '126754438' key: NádasiFerenc1893-1966 lc: n96001595 merge: id: 10a01ac8ec2e85f7f93aee1aeaf8fb68 source: viaf type: document term: Nádasi, Ferenc, 1893-1966 version: 2013-07-01T14:07:50Z viafid: '122010407' --- _id: 10c06350f5bcb4071b269b7f61edc7ab bne: xx4838633 bnf: '13013884' dnb: '100057845' key: DeMirbelCharles-FrançoisBrisseau1776-1854 lc: n86815883 merge: id: 10c06350f5bcb4071b269b7f61edc7ab source: viaf type: document nla: '000035725210' nlilat: '000483841' term: De Mirbel, Charles-François Brisseau, 1776-1854 version: 2013-07-01T14:07:50Z viafid: '17356254' --- _id: 10c90d7301027d9afdaec66dbbf78106 bnf: '12032635' dnb: 12008970x key: JastrunMieczysław1903-1983 lc: n80159204 merge: id: 10c90d7301027d9afdaec66dbbf78106 source: viaf type: document nkc: jn20000603211 nla: '000035746019' nlilat: '000433300' selibr: '191545' term: Jastrun, Mieczysław, 1903-1983 version: 2013-07-01T14:07:50Z viafid: '66482806' --- _id: 10ceb6579f3bff4af2bce2eede39e171 bnf: '11150922' dnb: '119277727' key: JorgovanićRikard1853-1880 lc: nr2003000688 merge: id: 10ceb6579f3bff4af2bce2eede39e171 source: viaf type: document nkc: js20020805294 term: Jorgovanić, Rikard, 1853-1880 version: 2013-07-01T14:07:50Z viafid: '14762932' --- _id: 10cebad9e509da3a730ac5a554d666ea bav: adv10214038 bnf: '12515502' dnb: '117516449' key: HénaultCharles-Jean-François1685-1770 lc: nr93016004 merge: id: 10cebad9e509da3a730ac5a554d666ea source: viaf type: document nkc: jo2003169857 nla: '000035786176' nlilat: '000527278' selibr: '314210' term: Hénault, Charles-Jean-François, 1685-1770 version: 2013-07-01T14:07:50Z viafid: '118096' --- _id: 10d406dbad0f5f6d3ab67d7e1090054d bav: adv11239873 bne: xx1459172 bnf: '12141360' dnb: '100278884' key: DeForbonnaisFrançoisVéronDuverger1722-1800 lc: n88680604 merge: id: 10d406dbad0f5f6d3ab67d7e1090054d source: viaf type: document nkc: mzk2009510387 nlilat: '000498699' selibr: '200683' term: De Forbonnais, François Véron Duverger, 1722-1800 version: 2013-07-01T14:07:50Z viafid: '46796949' --- _id: 10d63d3de97935150b6044af291c6ff8 bnf: '11953862' dnb: '118603957' key: RühmkorfPeter1929-2008 lc: n50022486 merge: id: 10d63d3de97935150b6044af291c6ff8 source: viaf type: document nkc: jn19990007272 nla: '000036536008' nlilat: '000405188' selibr: '312868' term: Rühmkorf, Peter, 1929-2008 version: 2013-07-01T14:07:50Z viafid: '73861894' --- _id: 10d9cb8c7501eaf822ca50296a7cd5fd bav: adv11209849 bnf: '13475545' dnb: '129731811' key: SénacJean-Baptiste1693-1770 lc: n86811220 merge: id: 10d9cb8c7501eaf822ca50296a7cd5fd source: viaf type: document nkc: nlk20010092510 nla: '000035876824' nlilat: '000120304' ptbnp: '1402088' term: Sénac, Jean-Baptiste, 1693-1770 version: 2013-07-01T14:07:50Z viafid: '71540730' --- _id: 10ded25f702630bc82b9800396f96cd5 bav: adv10022875 bne: xx1309781 bnf: '12012398' dnb: '104234059' jpg: '500220946' key: DeLalandeJosephJérômeLeFrançais1732-1807 lc: n81143855 merge: id: 10ded25f702630bc82b9800396f96cd5 source: viaf type: document nkc: ola2007364628 nla: '000035883578' nlilat: '000317402' selibr: '346109' swnl: vtls002162556 term: De Lalande, Joseph Jérôme Le Français, 1732-1807 version: 2013-07-01T14:07:50Z viafid: '95196947' --- _id: 10e212b2ab8f662d8b6e3b81106f2476 bav: adv10198782 bnf: '12565364' dnb: '118585045' key: VonMüllerJohannes1752-1809 lc: n85383155 merge: id: 10e212b2ab8f662d8b6e3b81106f2476 source: viaf type: document nkc: skuk0004230 nlilat: '000097280' selibr: '79061' swnl: vtls000148090 term: Von Müller, Johannes, 1752-1809 version: 2013-07-01T14:07:50Z viafid: '89266014' --- _id: 10e4d6033cd06328a9dcecd8ea47d334 bnf: '12596595' dnb: '188352910' key: ChavanceRenéb1879 lc: n88614786 merge: id: 10e4d6033cd06328a9dcecd8ea47d334 source: viaf type: document nkc: xx0157726 nlilat: '000496780' term: Chavance, René, b. 1879 version: 2013-07-01T14:07:50Z viafid: '17341597' --- _id: 10f27bba6ceb75e1703adfed6fc843d6 bav: adv12014594 bne: xx1121458 dnb: '121363155' key: SánchezPérezJoséAugusto1882-1958 lc: n84805690 merge: id: 10f27bba6ceb75e1703adfed6fc843d6 source: viaf type: document nlilat: '000129201' ptbnp: '818799' term: Sánchez Pérez, José Augusto, 1882-1958 version: 2013-07-01T14:07:50Z viafid: '114927865' --- _id: 110ce361b4232db54d5d2faf97d92b3b key: LandauYoanD1938-|IdentificationetcommandedesystèmesEnglish lc: n88152932 merge: id: 110ce361b4232db54d5d2faf97d92b3b source: viaf type: document term: Landau, Yoan D., 1938- | Identification et commande de systèmes. English version: 2013-07-01T14:07:50Z viafid: '177461909' --- _id: 11118dadcc1b16a5e60cc6386f1281cc bav: adv10166222 dnb: '116531428' key: ErdmannsdörfferBernhard1833-1901 merge: id: 11118dadcc1b16a5e60cc6386f1281cc source: viaf type: document nlilat: '000388323' term: Erdmannsdörffer, Bernhard, 1833-1901 version: 2013-07-01T14:07:50Z viafid: '30290221' --- _id: 1115e2bae72c8132130fb4d7683af0d4 bnf: '12981138' dnb: '142391883' key: LeDentuJean-François-Auguste1841-1926 lc: no2008018145 merge: id: 1115e2bae72c8132130fb4d7683af0d4 source: viaf type: document nkc: nlk20010101064 ptbnp: '1197392' term: Le Dentu, Jean-François-Auguste, 1841-1926 version: 2013-07-01T14:07:50Z viafid: '41639981' --- _id: 1116f1357dc5ad779854b99b750730e8 bav: adv10025869 dnb: '117134961' key: JirečekHermenegild1827-1909 lc: n92038864 merge: id: 1116f1357dc5ad779854b99b750730e8 source: viaf type: document nkc: jk01051864 term: Jireček, Hermenegild, 1827-1909 version: 2013-07-01T14:07:50Z viafid: '54918137' --- _id: 111d4f46ab21312b9f4d7b2333b84172 bnf: '15325237' key: GueymardÉmile1788-1869 merge: id: 111d4f46ab21312b9f4d7b2333b84172 source: viaf type: document term: Gueymard, Émile, 1788-1869 version: 2013-07-01T14:07:50Z viafid: '116475869' --- _id: 111f6022aba15f84339277b8845df023 bnf: '12120274' dnb: '119153246' key: KavvadíasNíkos1910-1975 lc: n83049445 merge: id: 111f6022aba15f84339277b8845df023 source: viaf type: document nla: '000036392225' term: Kavvadías, Níkos, 1910-1975 version: 2013-07-01T14:07:50Z viafid: '59116018' --- _id: 1126d7c539d1fd3ac7f02a3a3bdda42f bav: adv11991433 bnf: '13756621' dnb: '118986090' key: KampouroglousDēmētriosGrēgoriou1852-1942 lc: n82106117 merge: id: 1126d7c539d1fd3ac7f02a3a3bdda42f source: viaf type: document nla: '000035731624' term: Kampouroglous, Dēmētrios Grēgoriou, 1852-1942 version: 2013-07-01T14:07:50Z viafid: '37098092' --- _id: 112d183ddc5577efe6293cf6363ee4de bav: adv10076516 bnf: '12276364' dnb: '102254079' key: ChampionÉdouard(1882-1938) lc: n85327696 merge: id: 112d183ddc5577efe6293cf6363ee4de source: viaf type: document nla: '000035228165' nlilat: '000475711' term: Champion, Édouard (1882-1938) version: 2013-07-01T14:07:50Z viafid: '12368538' --- _id: 112f9e648c86cf6bb5bd057d857c312e bav: adv10285053 bnf: '14437728' dnb: '116893389' key: GrünwedelAlbert1856-1935 lc: n81082991 merge: id: 112f9e648c86cf6bb5bd057d857c312e source: viaf type: document nla: '000035155269' nlilat: '000247332' term: Grünwedel, Albert, 1856-1935 version: 2013-07-01T14:07:50Z viafid: '74071156' --- _id: 1133c08a712378785f3cc04fbb48afab key: Chemin-DupontèsJ-B1760or61-1852?(Jean-Baptiste)Moralityofthesans-culottesofeveryagesexcountryandconditionorTherepublicangospel lc: n99834152 merge: id: 1133c08a712378785f3cc04fbb48afab source: viaf type: document term: Chemin-Dupontès, J.-B., 1760 or 61-1852?, (Jean-Baptiste), Morality of the sans-culottes of every age, sex, country, and condition, or, The republican gospel version: 2013-07-01T14:07:50Z viafid: '181572703' --- _id: 1134c97ceab8aad8e366a0ac7fd02f98 bav: adv10913495 dnb: '100371922' key: LycklamaàNyeholtMarcus1573-1625 merge: id: 1134c97ceab8aad8e366a0ac7fd02f98 source: viaf type: document selibr: '317874' term: Lycklama à Nyeholt, Marcus, 1573-1625 version: 2013-07-01T14:07:50Z viafid: '69274628' --- _id: 11367ab8534652bfd099be91b9314534 bav: adv11246673 bne: xx825055 bnf: '11925109' dnb: '122613007' jpg: '500040516' key: DeSolísAntonio1610-1686 lc: n82157906 merge: id: 11367ab8534652bfd099be91b9314534 source: viaf type: document nkc: jo20000073713 nla: '000035749438' nlilat: '000448890' ptbnp: '85379' term: De Solís, Antonio, 1610-1686 version: 2013-07-01T14:07:50Z viafid: '73860294' --- _id: 11372ecbaf238474979fa728e902f917 key: ProcházkováPetra1964-|AluminiumqueenFrench lc: no2006108537 merge: id: 11372ecbaf238474979fa728e902f917 source: viaf type: document term: Procházková, Petra, 1964- | Aluminium queen. French version: 2013-07-01T14:07:50Z viafid: '182124104' --- _id: 1137548b1b4cc1776c31724045022c2a bav: adv11218889 bnf: '14509036' dnb: '118630709' key: WeizmannChai͏̈m1874-1952 lc: n50003498 merge: id: 1137548b1b4cc1776c31724045022c2a source: viaf type: document nkc: ola2002157572 nla: '000035248582' nliheb: '000209413' nlilat: '000140867' ptbnp: '268478' selibr: '101288' term: Weizmann, Chai͏̈m, 1874-1952 version: 2013-07-01T14:07:50Z viafid: '61778920' --- _id: 114c59e6c1ebbab4e0631c937da0db71 bav: adv10988687 bnf: '12264634' dnb: '117601330' key: MorandSauveur-François1697-1773 lc: n83027719 merge: id: 114c59e6c1ebbab4e0631c937da0db71 source: viaf type: document term: Morand, Sauveur-François, 1697-1773 version: 2013-07-01T14:07:50Z viafid: '22200045' --- _id: 115220040f493dc93d8f98d60f41ca72 bav: adv10096141 bnf: '12300459' dnb: '173564186' egaxa: vtls000773205 key: ṬūsūnʿUmar1872-1944 lc: n84173650 merge: id: 115220040f493dc93d8f98d60f41ca72 source: viaf type: document nliara: '000162895' nlilat: '000133307' term: Ṭūsūn, ʿUmar, 1872-1944 version: 2013-07-01T14:07:50Z viafid: '32062711' --- _id: 116923376afa947886a12a8ba148c795 bne: xx1720389 bnf: '11885892' dnb: '118863517' key: CapmanyMariaAurèlia1918-1991 lc: n80014872 merge: id: 116923376afa947886a12a8ba148c795 source: viaf type: document nlilat: '000426353' term: Capmany, Maria Aurèlia 1918-1991 version: 2013-07-01T14:07:50Z viafid: '54142662' --- _id: 11708df76838ac4d4180628604e1bc7f bne: xx1161075 bnf: '11928836' dnb: '118806068' key: WalrasLéon1834-1910 lc: n50024510 merge: id: 11708df76838ac4d4180628604e1bc7f source: viaf type: document nkc: jn20000701929 nla: '000035589236' nlilat: '000405752' ptbnp: '40958' selibr: '250058' term: Walras, Léon, 1834-1910 version: 2013-07-01T14:07:50Z viafid: '76324284' --- _id: 117b852cf99760bf93a860515db27e12 bne: xx1110492 dnb: '160074479' key: MünzerThomasca1490-1525 lc: n50038387 merge: id: 117b852cf99760bf93a860515db27e12 source: viaf type: document nkc: jn20000701289 nla: '000035368914' nlilat: '000097409' ptbnp: '209500' selibr: '79144' term: Münzer, Thomas, ca. 1490-1525 version: 2013-07-01T14:07:50Z viafid: '17226919' --- _id: 117f6a68d7ea3b41191e577cf760bde0 bne: xx1609671 bnf: '12160164' dnb: '117567574' jpg: '500291738' key: DeBastideJean-François1724-1798 lc: nr91010211 merge: id: 117f6a68d7ea3b41191e577cf760bde0 source: viaf type: document nkc: ola2008452326 nla: '000036046921' term: De Bastide, Jean-François, 1724-1798 version: 2013-07-01T14:07:50Z viafid: '71429857' --- _id: 117f804889ca3987513526c46462cb4c bne: xx1141658 bnf: '11927192' dnb: '119152746' key: TsatsosKōnstantinos1899-1987 lc: n84058420 merge: id: 117f804889ca3987513526c46462cb4c source: viaf type: document nla: '000035811638' term: Tsatsos, Kōnstantinos 1899-1987 version: 2013-07-01T14:07:50Z viafid: '113257497' --- _id: 117fddd937367626b711a47996528f83 dnb: '121418855' key: ZückertJohannFriedrich1737-1778 lc: n82162883 merge: id: 117fddd937367626b711a47996528f83 source: viaf type: document nkc: mzk2008448947 term: Zückert, Johann Friedrich, 1737-1778 version: 2013-07-01T14:07:50Z viafid: '77171048' --- _id: 118a2816dcb9481f84205d478ec0de37 bnf: '11939517' dnb: '117560928' jpg: '500022295' key: MénageotFrançois-Guillaume1744-1816 lc: n80080813 merge: id: 118a2816dcb9481f84205d478ec0de37 source: viaf type: document term: Ménageot, François-Guillaume, 1744-1816 version: 2013-07-01T14:07:50Z viafid: '22407226' --- _id: 119202c9cc2b634699d075e68c5c55da bnf: '12276855' dnb: '117631779' key: DemachyJacques-François1728-1803 lc: n89225538 merge: id: 119202c9cc2b634699d075e68c5c55da source: viaf type: document nkc: xx0061273 nlilat: '000499167' term: Demachy, Jacques-François, 1728-1803 version: 2013-07-01T14:07:50Z viafid: '73913783' --- _id: 119d2ff342b8990a361bdcd609d68f58 bav: adv12360332 bnf: '12413678' dnb: '101453221' key: DespoisEugène1818-1876 lc: no89021110 merge: id: 119d2ff342b8990a361bdcd609d68f58 source: viaf type: document nkc: xx0035591 nlilat: '000515282' ptbnp: '94085' term: Despois, Eugène, 1818-1876 version: 2013-07-01T14:07:50Z viafid: '39466134' --- _id: 119f55841b3cc8c3f22b9df32440450b bnf: '12367404' dnb: '117098574' key: SchäferKlaus1910-1984 lc: n83827812 merge: id: 119f55841b3cc8c3f22b9df32440450b source: viaf type: document term: Schäfer, Klaus, 1910-1984 version: 2013-07-01T14:07:50Z viafid: '100970163' --- _id: 11a4369ec430c44cd9e45a9e398ea046 bnf: '12298055' dnb: 12403148x key: DobréeBonamy1891-1974 lc: n80050351 merge: id: 11a4369ec430c44cd9e45a9e398ea046 source: viaf type: document nkc: jn19981000689 nla: '000035038628' nlilat: '000039948' ptbnp: '62772' term: Dobrée, Bonamy, 1891-1974 version: 2013-07-01T14:07:50Z viafid: '66531126' --- _id: 11b0eb45fbd9c5ba815c8293e5a0bea4 bnf: '12184262' dnb: 102012315x key: LindbergerÖrjan1912-2005 lc: n80023087 merge: id: 11b0eb45fbd9c5ba815c8293e5a0bea4 source: viaf type: document nla: '000035193690' nlilat: '000426733' selibr: '136568' term: Lindberger, Örjan, 1912-2005 version: 2013-07-01T14:07:50Z viafid: '59127749' --- _id: 11b39f8826bac5900ccfeb5499596014 bnf: '12103296' dnb: '118787772' key: RakićMilan1876-1938 lc: n85115423 merge: id: 11b39f8826bac5900ccfeb5499596014 source: viaf type: document nkc: ola2003169789 nla: '000036192635' term: Rakić, Milan, 1876-1938 version: 2013-07-01T14:07:50Z viafid: '27095545' --- _id: 11b3bf132ba9dd0a3eca7e8d7b104b26 dnb: '121572196' key: RudenkoSergejIvanovič1885-1969 lc: n85029023 merge: id: 11b3bf132ba9dd0a3eca7e8d7b104b26 source: viaf type: document nkc: jx20080318020 nlilat: '000467438' term: Rudenko, Sergej Ivanovič, 1885-1969 version: 2013-07-01T14:07:50Z viafid: '110475939' --- _id: 11b5a88f37ff5a16b0f69e6414608dc2 bav: adv12236065 bnf: '11928594' dnb: '123420350' key: VizyēnosGM1849-1896 lc: n85256047 merge: id: 11b5a88f37ff5a16b0f69e6414608dc2 source: viaf type: document nla: '000035085946' selibr: '279420' term: Vizyēnos, G. M., 1849-1896 version: 2013-07-01T14:07:50Z viafid: '4937943' --- _id: 11ca0616d5df9fe3db55eae69a2a09ba key: FantouréAlioum1938-|CercledestropiquesEnglish lc: n83194635 merge: id: 11ca0616d5df9fe3db55eae69a2a09ba source: viaf type: document nla: '000036141898' term: Fantouré, Alioum, 1938- | Cercle des tropiques. English version: 2013-07-01T14:07:50Z viafid: '184692357' --- _id: 11cb34544a11f8ce4b635940b3d08523 bnf: '12283735' dnb: '124758789' key: EdwardsRichard1944-économiste lc: n78091995 merge: id: 11cb34544a11f8ce4b635940b3d08523 source: viaf type: document nkc: vse2006351626 nla: '000035058068' term: Edwards, Richard, 1944-...., économiste version: 2013-07-01T14:07:50Z viafid: '108305061' --- _id: 11cc6de999448caf91dd103736d8b2b7 bav: adv11372118 bnf: '12459339' dnb: '131965182' key: SpullerEugène1835-1896 lc: n85068903 merge: id: 11cc6de999448caf91dd103736d8b2b7 source: viaf type: document nlilat: '000468673' ptbnp: '92134' term: Spuller, Eugène, 1835-1896 version: 2013-07-01T14:07:50Z viafid: '2568983' --- _id: 11d898c8c8fc152ff7cfa63e3a12cc05 bav: adv12033472 bnf: '11889409' dnb: '118650939' key: HédelinFrançois1604-1676 lc: n84141096 merge: id: 11d898c8c8fc152ff7cfa63e3a12cc05 source: viaf type: document nkc: mzk2009528177 nla: '000035010034' nlilat: '000013026' ptbnp: '169439' selibr: '343466' swnl: vtls004072532 term: Hédelin, François, 1604-1676 version: 2013-07-01T14:07:50Z viafid: '41836011' --- _id: 11d987f31f828af3822f4bc4c060da3f bav: adv10188666 bnf: '12308886' dnb: '101699255' key: FavreLéopold1817-1890 lc: n98019681 merge: id: 11d987f31f828af3822f4bc4c060da3f source: viaf type: document nkc: jx20100607004 nla: '000035967432' nlilat: '000534313' ptbnp: '252866' term: Favre, Léopold, 1817-1890 version: 2013-07-01T14:07:50Z viafid: '59150551' --- _id: 11e9eda3d3f2a272ff3af8f62c5bcd2f key: DalénUno1920-2006 lc: n81018994 merge: id: 11e9eda3d3f2a272ff3af8f62c5bcd2f source: viaf type: document nlilat: '000289082' selibr: '183286' term: Dalén, Uno, 1920-2006 version: 2013-07-01T14:07:50Z viafid: '53002882' --- _id: 11f7ba3a936cb04bd351bf1818c4444a bne: xx1153857 bnf: '12848149' dnb: '118750097' key: RubinshteĭnSergeĭLeonidovich1889-1960 lc: n50052990 merge: id: 11f7ba3a936cb04bd351bf1818c4444a source: viaf type: document nkc: nlk20000091780 ptbnp: '79559' term: Rubinshteĭn, Sergeĭ Leonidovich, 1889-1960 version: 2013-07-01T14:07:50Z viafid: '64327469' --- _id: 11f8fec54584ab2eb451c88154b2707c dnb: '117582441' key: BéhierLouisJulesFélix1813-1876 merge: id: 11f8fec54584ab2eb451c88154b2707c source: viaf type: document term: Béhier, Louis Jules Félix, 1813-1876 version: 2013-07-01T14:07:50Z viafid: '793596' --- _id: 11ffa2bf241015a028fa82d09ff5bafa bav: adv12233131 bne: xx1204553 bnf: '12943480' dnb: '127425446' key: BoillotFélixFrançoisb1880 lc: no93027215 merge: id: 11ffa2bf241015a028fa82d09ff5bafa source: viaf type: document nlilat: '000517994' ptbnp: '375905' term: Boillot, Félix François, b. 1880 version: 2013-07-01T14:07:50Z viafid: '87020333' --- _id: 120b1f8215aab54ad08bf2b6c4770425 bne: xx1054412 bnf: '11891925' dnb: '119497042' key: BianciottiHéctor1930-2012 lc: n85261121 merge: id: 120b1f8215aab54ad08bf2b6c4770425 source: viaf type: document nkc: jn20000700171 nla: '000035688819' ptbnp: '88613' selibr: '178240' term: Bianciotti, Héctor, 1930-2012 version: 2013-07-01T14:07:50Z viafid: '7386943' --- _id: 120ba597407f2afa1ea787186962a815 key: SöderlundErnst1903-1996 lc: n80098554 merge: id: 120ba597407f2afa1ea787186962a815 source: viaf type: document selibr: '203767' term: Söderlund, Ernst, 1903-1996 version: 2013-07-01T14:07:50Z viafid: '119425542' --- _id: 1210d353657920befeefdb477d0a4208 bne: xx1063264 bnf: '11926146' dnb: '119183544' key: ČukovskajaLidijaKorneevna1907-1996 lc: n79119170 merge: id: 1210d353657920befeefdb477d0a4208 source: viaf type: document nkc: js20020925060 nla: '000035028309' nlicyr: '000158528' nlilat: '000031839' selibr: '105473' swnl: vtls000237368 term: Čukovskaja, Lidija Korneevna, 1907-1996 version: 2013-07-01T14:07:50Z viafid: '95164668' --- _id: 12122cdecff80f2c27dd7f7f220093ba bav: adv11380927 bne: xx1126985 dnb: '100274617' key: SotoAndrésde(1553?-1625) lc: nr93009629 merge: id: 12122cdecff80f2c27dd7f7f220093ba source: viaf type: document term: Soto, Andrés de (1553?-1625) version: 2013-07-01T14:07:50Z viafid: '74194245' --- _id: 122449e766637d3ee21db851f9fc5782 dnb: '1020591498' key: PrévostJean-Louis1838-1927 lc: n87106240 merge: id: 122449e766637d3ee21db851f9fc5782 source: viaf type: document term: Prévost, Jean-Louis, 1838-1927 version: 2013-07-01T14:07:50Z viafid: '67974004' --- _id: 122a4942eb0f38918071e005b833d84d bnf: '15365539' key: RoumeguèreCasimir1828-1892 merge: id: 122a4942eb0f38918071e005b833d84d source: viaf type: document term: Roumeguère, Casimir, 1828-1892 version: 2013-07-01T14:07:50Z viafid: '12608292' --- _id: 122baaf94d285b58a01b3ef7ef58bfe0 bnf: '13483513' dnb: '102509441' egaxa: vtls000832519 key: SilafīAḥmadibnMuḥammadd1180 lc: n88662416 merge: id: 122baaf94d285b58a01b3ef7ef58bfe0 source: viaf type: document selibr: '33821' term: Silafī, Aḥmad ibn Muḥammad, d. 1180 version: 2013-07-01T14:07:50Z viafid: '54298152' --- _id: 1238d502e90ce7f245cced87d6cd2151 bne: xx902779 bnf: '11920604' dnb: '118596446' egaxa: vtls001067598 jpg: '500341496' key: PrévertJacques1900-1977 lc: n79054068 merge: id: 1238d502e90ce7f245cced87d6cd2151 source: viaf type: document nkc: jn19990006694 nla: '000036202545' nlilat: '000108129' ptbnp: '87670' selibr: '220997' term: Prévert, Jacques, 1900-1977 version: 2013-07-01T14:07:50Z viafid: '76321578' --- _id: 123d2bc806c71e36d6de5361d0fa43c8 bnf: '13538969' dnb: 11915420x key: XenopoulosGrēgorios1867-1951 lc: n82106115 merge: id: 123d2bc806c71e36d6de5361d0fa43c8 source: viaf type: document nla: '000036566765' term: Xenopoulos, Grēgorios, 1867-1951 version: 2013-07-01T14:07:50Z viafid: '90728471' --- _id: 124995ac1d8e3a7bb7fae9cb2d6ffbe2 key: DialloAlpha-Abdoulaye1935-|Véritéduministre lc: n2005053411 merge: id: 124995ac1d8e3a7bb7fae9cb2d6ffbe2 source: viaf type: document term: Diallo, Alpha-Abdoulaye, 1935- | Vérité du ministre version: 2013-07-01T14:07:50Z viafid: '175949462' --- _id: 125236206f6f8c5f9952f9a56df4bb60 dnb: '122586425' key: GrégoirePierre1540-1617 lc: n86809119 merge: id: 125236206f6f8c5f9952f9a56df4bb60 source: viaf type: document nkc: mzk2008473336 term: Grégoire, Pierre, 1540-1617 version: 2013-07-01T14:07:50Z viafid: '120702894' --- _id: 1252c4fa8fda1d003423c429c1293265 bne: xx4579773 bnf: '12035547' key: PessonneauxÉmile1821-1903 merge: id: 1252c4fa8fda1d003423c429c1293265 source: viaf type: document ptbnp: '169866' term: Pessonneaux, Émile 1821-1903 version: 2013-07-01T14:07:50Z viafid: '51706429' --- _id: 12548470f8ff2be03ec799584d37a996 bav: adv12173604 dnb: '118810421' key: StübelAlfons1835-1904 lc: n93120825 merge: id: 12548470f8ff2be03ec799584d37a996 source: viaf type: document term: Stübel, Alfons, 1835-1904 version: 2013-07-01T14:07:50Z viafid: '5727472' --- _id: 1255b36ca854cac2f4e20610bc5bf801 bne: xx931440 bnf: '13485665' key: ShāljīAbbūd1911-1996 lc: n85018738 merge: id: 1255b36ca854cac2f4e20610bc5bf801 source: viaf type: document selibr: '37750' term: Shāljī, Abbūd, 1911-1996 version: 2013-07-01T14:07:50Z viafid: '37069036' --- _id: 12562e5f745215a3bfed72254c2d05f7 bne: xx5127061 key: RiveraLetelierHernán1950-|LacontadoradepelículasHebreo merge: id: 12562e5f745215a3bfed72254c2d05f7 source: viaf type: document term: Rivera Letelier, Hernán 1950- | La contadora de películas Hebreo version: 2013-07-01T14:07:50Z viafid: '183561012' --- _id: 1256a26ef31c01ceb6dbbd359c05a9c9 bne: xx1128193 bnf: '11993741' dnb: '118752529' jpg: '500026376' key: DeStaëlNicolas1914-1955 lc: n82017607 merge: id: 1256a26ef31c01ceb6dbbd359c05a9c9 source: viaf type: document nkc: ola2002151598 nla: '000035519037' selibr: '285733' swnl: vtls000194478 term: De Staël, Nicolas, 1914-1955 version: 2013-07-01T14:07:50Z viafid: '68938567' --- _id: 126dbfd985269e5619338e7f9bbd1542 dnb: '117657530' key: DürrErnst(1878-1913) merge: id: 126dbfd985269e5619338e7f9bbd1542 source: viaf type: document term: Dürr, Ernst (1878-1913) version: 2013-07-01T14:07:50Z viafid: '54931286' --- _id: 126e7f9827eaf481386f8f168e49ea71 bav: adv10014647 bnf: '12064509' dnb: '118598228' key: DeLaRaméePierre1515-1572 lc: n81129403 merge: id: 126e7f9827eaf481386f8f168e49ea71 source: viaf type: document nkc: xx0049458 nla: '000035570120' nlilat: '000109442' ptbnp: '495226' selibr: '253232' term: De La Ramée, Pierre, 1515-1572 version: 2013-07-01T14:07:50Z viafid: '39399236' --- _id: 1280e322b76f2747b3ee1f62bfacf410 bne: xx983446 bnf: '11909712' dnb: '118638378' key: HrusčevNikitaS1894-1971 lc: n80021705 merge: id: 1280e322b76f2747b3ee1f62bfacf410 source: viaf type: document nkc: jn19990210293 nla: '000035269636' nlicyr: '000158075' nlilat: '000075679' ptbnp: '89870' selibr: '46096' swnl: vtls000045610 term: Hrusčev, Nikita S., 1894-1971 version: 2013-07-01T14:07:50Z viafid: '64007537' --- _id: 1286911ca50010b4675f5c3ee092d7a8 bav: adv10310733 bnf: '12180906' dnb: '118898221' key: LandströmBjörn1917-2002 lc: n50038730 merge: id: 1286911ca50010b4675f5c3ee092d7a8 source: viaf type: document nkc: kup19990000055331 nlilat: '000409329' ptbnp: '238746' selibr: '231195' term: Landström, Björn, 1917-2002 version: 2013-07-01T14:07:50Z viafid: '121575064' --- _id: 12896cfe1e87a4a422e590df417b9a74 bnf: '12550043' dnb: '128753943' key: SolovʹëvBorisIvanovič1904-1976 lc: n86037949 merge: id: 12896cfe1e87a4a422e590df417b9a74 source: viaf type: document nla: '000035105247' nlicyr: '000214020' term: Solovʹëv, Boris Ivanovič 1904-1976 version: 2013-07-01T14:07:50Z viafid: '59198278' --- _id: 128f2cb3f749a024ea65f5a05148d385 dnb: '137442343' key: FuchsGünter1924-1964 merge: id: 128f2cb3f749a024ea65f5a05148d385 source: viaf type: document term: Fuchs, Günter, 1924-1964 version: 2013-07-01T14:07:50Z viafid: '81633191' --- _id: 129637765c5fb0467ea01693c1e382e2 bnf: '12449297' dnb: '101063806' key: QuesnaydeSaint-GermainRobert-François-Joseph1751-1805 lc: nr93032062 merge: id: 129637765c5fb0467ea01693c1e382e2 source: viaf type: document term: Quesnay de Saint-Germain, Robert-François-Joseph, 1751-1805 version: 2013-07-01T14:07:50Z viafid: '44393631' --- _id: 1299a7c1f7357bc44dd194b3734fb452 bne: xx926821 bnf: '12338532' dnb: '122760247' key: Martín-SantosLuis1924-1964 lc: n50054896 merge: id: 1299a7c1f7357bc44dd194b3734fb452 source: viaf type: document nkc: xx0004105 nla: '000035331415' term: Martín-Santos, Luis, 1924-1964 version: 2013-07-01T14:07:50Z viafid: '7462521' --- _id: 129b494767416c8b87e408dd1e0cc9bf bnf: '11242342' dnb: '138723702' key: KrygowskiBogumił1905-1977 lc: n84094887 merge: id: 129b494767416c8b87e408dd1e0cc9bf source: viaf type: document nlilat: '000461762' term: Krygowski, Bogumił, 1905-1977 version: 2013-07-01T14:07:50Z viafid: '125074948' --- _id: 129e0e84ee8fb00c1b567817c5c8b2dd bne: xx1044131 bnf: '14507009' dnb: '118997203' key: KrapivaKandratKandratavič1896-1991 lc: n82125088 merge: id: 129e0e84ee8fb00c1b567817c5c8b2dd source: viaf type: document nkc: jo2001100056 nla: '000036515854' nlicyr: '000332559' selibr: '37267' term: Krapiva, Kandrat Kandratavič, 1896-1991 version: 2013-07-01T14:07:50Z viafid: '109448884' --- _id: 12a628c80f83e5ba972925302bfd57d6 key: O'NeillBrianJuan1950-|ProprietárioslavradoresejornaleirasEnglish lc: n85372679 merge: id: 12a628c80f83e5ba972925302bfd57d6 source: viaf type: document term: O'Neill, Brian Juan, 1950- | Proprietários, lavradores e jornaleiras. English version: 2013-07-01T14:07:50Z viafid: '186335322' --- _id: 12a7858dc33486d37130e6994bbe1038 bav: adv12154268 bnf: '12763808' dnb: '128514124' key: SeltmanCharlesThéodore1886-1957 lc: n82222989 merge: id: 12a7858dc33486d37130e6994bbe1038 source: viaf type: document nla: '000035489080' nlilat: '000225935' ptbnp: '393890' selibr: '223306' term: Seltman, Charles Théodore 1886-1957 version: 2013-07-01T14:07:50Z viafid: '2598262' --- _id: 12acc80a38d1e9f7e4a109ac92b9fce5 bav: adv11172695 bnf: '12185861' dnb: '100130828' key: DeSégurLouis-Philippe1753-1830 lc: n82152242 merge: id: 12acc80a38d1e9f7e4a109ac92b9fce5 source: viaf type: document nkc: js2007400423 nla: '000035650522' nlilat: '000448585' ptbnp: '158206' selibr: '338050' term: De Ségur, Louis-Philippe, 1753-1830 version: 2013-07-01T14:07:50Z viafid: '76361034' --- _id: 12b0e98b979fc01132804d18da580a2b bnf: '11997595' dnb: '117039691' key: NogaretFrançoisFelix1740-1831 lc: n90692754 merge: id: 12b0e98b979fc01132804d18da580a2b source: viaf type: document nkc: xx0020472 term: Nogaret, François Felix, 1740-1831 version: 2013-07-01T14:07:50Z viafid: '61555612' --- _id: 12c6615bffa0a392f0383d2608428f88 bav: adv11384407 dnb: '124738710' key: KisIstván1505-1572 lc: nr93015424 merge: id: 12c6615bffa0a392f0383d2608428f88 source: viaf type: document selibr: '336260' term: Kis, István, 1505-1572 version: 2013-07-01T14:07:50Z viafid: '18164975' --- _id: 12c6704b2b35949c64d8bdad4ee7bfa3 bnf: '13456551' key: PénasseEugène1853-19 merge: id: 12c6704b2b35949c64d8bdad4ee7bfa3 source: viaf type: document term: Pénasse, Eugène 1853-19 version: 2013-07-01T14:07:50Z viafid: '292419344' --- _id: 12c76112c6c21460f53e5fb9d2f17f92 bav: adv10202850 bne: xx1151975 bnf: '10433194' dnb: '118672169' jpg: '500288114' key: DörpfeldWilhelm1853-1940 lc: no2003088451 merge: id: 12c76112c6c21460f53e5fb9d2f17f92 source: viaf type: document nkc: kup19970000022583 nlilat: '000547614' ptbnp: '211734' term: Dörpfeld, Wilhelm, 1853-1940 version: 2013-07-01T14:07:50Z viafid: '106965312' --- _id: 12d1ae3009278fd235b3a5583bc15511 bne: xx958086 bnf: '11911167' dnb: '106279467' key: LartéguyJean1920-2011 lc: n79061369 merge: id: 12d1ae3009278fd235b3a5583bc15511 source: viaf type: document nkc: ola2004235422 nla: '000035292396' nlilat: '000081198' ptbnp: '62431' term: Lartéguy, Jean, 1920-2011 version: 2013-07-01T14:07:50Z viafid: '68931538' --- _id: 12d881d9f05759b6a15921bdfbf7c8c2 bnf: '15971556' dnb: '123541476' key: LjublinskijVladimirSergeevič1903-1968 lc: n83228471 merge: id: 12d881d9f05759b6a15921bdfbf7c8c2 source: viaf type: document nkc: jn20020213016 nlicyr: '000153198' selibr: '72064' term: Ljublinskij, Vladimir Sergeevič, 1903-1968 version: 2013-07-01T14:07:50Z viafid: '50137979' --- _id: 12e7ac401844ae4a6c0087cbdb8e210e bav: adv10212780 bne: xx982888 bnf: '12034483' dnb: '118839152' key: MedinaJoséToribio1852-1930 lc: n50009972 merge: id: 12e7ac401844ae4a6c0087cbdb8e210e source: viaf type: document nkc: jx20050608005 nla: '000036590116' nlilat: '000091327' ptbnp: '153891' selibr: '316991' term: Medina, José Toribio, 1852-1930 version: 2013-07-01T14:07:50Z viafid: '26820' --- _id: 12ec2800982ec67adb303f404fc8e37a bnf: '12927174' dnb: '1017304882' key: CérouPierre1709-1797? lc: no91028393 merge: id: 12ec2800982ec67adb303f404fc8e37a source: viaf type: document term: Cérou, Pierre, 1709-1797? version: 2013-07-01T14:07:50Z viafid: '29662759' --- _id: 12efbcd9749a7397ec8cb9a10c3e86f1 bnf: '14517541' dnb: '119044072' key: LiLüyuan1707-1790 lc: n81152098 merge: id: 12efbcd9749a7397ec8cb9a10c3e86f1 source: viaf type: document nla: '000036608830' term: Li, Lüyuan, 1707-1790 version: 2013-07-01T14:07:50Z viafid: '64239913' --- _id: 12f74a969b6e77233ac0c55e8a55d2e5 bav: adv10197544 bnf: '12092987' dnb: '1021419966' key: GätjeHelmut1927-1986 lc: n87949742 merge: id: 12f74a969b6e77233ac0c55e8a55d2e5 source: viaf type: document nla: '000035701552' nlilat: '000491334' term: Gätje, Helmut, 1927-1986 version: 2013-07-01T14:07:50Z viafid: '29561534' --- _id: 12fd9d16853a861511046653bdc63370 bav: adv10024559 bnf: '12163981' key: KostrenčićMarko(1884-1976) lc: n79089243 merge: id: 12fd9d16853a861511046653bdc63370 source: viaf type: document nlilat: '000422031' term: Kostrenčić, Marko (1884-1976) version: 2013-07-01T14:07:50Z viafid: '115237338' --- _id: 12ff51fd0c7e477b8856ae5bac739455 bav: adv10309229 bnf: '11290581' dnb: 12584252x key: VanAerssenFrançois1572-1641 lc: no91000108 merge: id: 12ff51fd0c7e477b8856ae5bac739455 source: viaf type: document nkc: jo2003169871 term: Van Aerssen, François, 1572-1641 version: 2013-07-01T14:07:50Z viafid: '4923795' --- _id: 1303160506202c6d74933bac1beb066b key: CasalisE1812-1891(Eugène)Basutos lc: n93083929 merge: id: 1303160506202c6d74933bac1beb066b source: viaf type: document term: Casalis, E., 1812-1891., (Eugène), Basutos version: 2013-07-01T14:07:50Z viafid: '184367346' --- _id: 1304bc1461a93f24883d94aa998966e9 dnb: '117585084' key: VanBenedenÉdouard1846-1910 lc: no99059626 merge: id: 1304bc1461a93f24883d94aa998966e9 source: viaf type: document term: Van Beneden, Édouard 1846-1910 version: 2013-07-01T14:07:50Z viafid: '74634040' --- _id: 1306a2283451d9f165122b248fe23436 dnb: '115353240' key: BareaudeGiracFrançois1730-1820 lc: nr93015817 merge: id: 1306a2283451d9f165122b248fe23436 source: viaf type: document term: Bareau de Girac, François, 1730-1820 version: 2013-07-01T14:07:50Z viafid: '257352072' --- _id: 130d569773a442f899ce9a00cbe0b8fc key: MartinPierreÉtienne1771-1846médecin merge: id: 130d569773a442f899ce9a00cbe0b8fc source: viaf type: document term: Martin, Pierre Étienne, 1771-1846, médecin version: 2013-07-01T14:07:50Z viafid: '195134671' --- _id: 1313ef313c5253723f9737258d6a580f key: JačevRistoǴ1942-|SivitegrebeniEnglish lc: no2012135771 merge: id: 1313ef313c5253723f9737258d6a580f source: viaf type: document term: Jačev, Risto Ǵ., 1942- | Sivite grebeni. English version: 2013-07-01T14:07:50Z viafid: '270180801' --- _id: 1316f1c4b060a1898f7cd0cb64055a6b bnf: '13025002' dnb: '173668690' key: LeBesgueVictorAmédée1791-1875 lc: n2001080119 merge: id: 1316f1c4b060a1898f7cd0cb64055a6b source: viaf type: document term: LeBesgue, Victor Amédée 1791-1875 version: 2013-07-01T14:07:50Z viafid: '51035174' --- _id: 13186acb8b0c44c7b802d47816611076 bnf: '14447439' dnb: '119548623' key: VinokurGrigorijOsipovič1896-1947 lc: n87847122 merge: id: 13186acb8b0c44c7b802d47816611076 source: viaf type: document nkc: js20020925008 nla: '000036033420' nlicyr: '000149340' ptbnp: '1200494' term: Vinokur, Grigorij Osipovič, 1896-1947 version: 2013-07-01T14:07:50Z viafid: '64227621' --- _id: 131ecb77c88f17ec076ec2a7feeecfef bav: adv12225474 bnf: '11921459' dnb: '118744488' jpg: '500052237' key: RemizovAleksejMichajlovič1877-1957 lc: n50051063 merge: id: 131ecb77c88f17ec076ec2a7feeecfef source: viaf type: document nkc: jo20000080732 nla: '000036566268' nlicyr: '000155632' nlilat: '000412093' ptbnp: '1441922' selibr: '86598' term: Remizov, Aleksej Michajlovič, 1877-1957 version: 2013-07-01T14:07:50Z viafid: '51953667' --- _id: 131f40bb6661611488d3ee87d00a033e key: ValdésAcostaGema1948-(GemaDelCarmen) lc: no2004024183 merge: id: 131f40bb6661611488d3ee87d00a033e source: viaf type: document term: Valdés Acosta, Gema, 1948-, (Gema Del Carmen) version: 2013-07-01T14:07:50Z viafid: '163847732' --- _id: 1320dd7b76175957502b24c72545ca79 bnf: '12163856' dnb: '117622087' key: BottinSébastien1764-1853 lc: n87860767 merge: id: 1320dd7b76175957502b24c72545ca79 source: viaf type: document term: Bottin, Sébastien, 1764-1853 version: 2013-07-01T14:07:50Z viafid: '7430095' --- _id: 132179ff6435225476e4d3d61c9ab632 key: BretonRolandJ-L1931-|GéographiedeslanguesItalian merge: id: 132179ff6435225476e4d3d61c9ab632 source: viaf type: document nla: '000035795924' term: Breton, Roland J.-L., 1931- | Géographie des langues. Italian version: 2013-07-01T14:07:50Z viafid: '177774196' --- _id: 1323a5e9d31ceab66d8bc0c2c6ef5cc8 bav: adv11186928 bnf: '12425645' dnb: '119241226' key: SavaryAnne-Jean-Marie-René1774-1833 lc: n87896516 merge: id: 1323a5e9d31ceab66d8bc0c2c6ef5cc8 source: viaf type: document nkc: mzk2009532937 nlilat: '000114134' selibr: '287100' term: Savary, Anne-Jean-Marie-René, 1774-1833 version: 2013-07-01T14:07:50Z viafid: '22231617' --- _id: 132c4267b889526f124c2c59d5694133 bnf: '12917299' dnb: '118728822' key: LöschAugust1906-1945 lc: n88069679 merge: id: 132c4267b889526f124c2c59d5694133 source: viaf type: document nlilat: '000492756' ptbnp: '156872' term: Lösch, August, 1906-1945 version: 2013-07-01T14:07:50Z viafid: '49354029' --- _id: 13327dcb552f22567b1d6f0c27bd5d67 bav: adv10214445 bne: xx1659253 bnf: '13011021' dnb: 10427736x key: GersaintEdme-Françoisd1750 lc: n85301441 merge: id: 13327dcb552f22567b1d6f0c27bd5d67 source: viaf type: document nlilat: '000474978' selibr: '275223' term: Gersaint, Edme-François, d. 1750 version: 2013-07-01T14:07:50Z viafid: '100185623' --- _id: 133371bb9282a1d8ead004a1e237338e bav: adv10049515 bnf: '15327077' dnb: '172514533' key: ClüverPhilipp1580-1622 lc: n85086963 merge: id: 133371bb9282a1d8ead004a1e237338e source: viaf type: document nkc: mzk2007395146 nla: '000035926290' nlilat: '000032604' ptbnp: '182221' selibr: '239393' term: Clüver, Philipp, 1580-1622 version: 2013-07-01T14:07:50Z viafid: '29833013' --- _id: 1333cb8714f1197d884318699e12bf0b bav: adv10206542 bnf: '12161707' dnb: '172441544' key: WalterGérard1896-1974 lc: n83022460 merge: id: 1333cb8714f1197d884318699e12bf0b source: viaf type: document nla: '000035589693' nlilat: '000219078' ptbnp: '148091' term: Walter, Gérard, 1896-1974 version: 2013-07-01T14:07:50Z viafid: '100184549' --- _id: 133de31b35d469ac98840a2f70781722 bav: adv10000111 bnf: '12343924' dnb: '119224178' key: JírečekKonstantin1854-1918 lc: no88002779 merge: id: 133de31b35d469ac98840a2f70781722 source: viaf type: document nkc: jk01051869 nlicyr: '000151595' nlilat: '000514779' term: Jíreček, Konstantin, 1854-1918 version: 2013-07-01T14:07:50Z viafid: '71464501' --- _id: 1340cca6d5420138121e02f34c70d28c bnf: '13521106' key: ConnesAlain1947-Matièreàpensée merge: id: 1340cca6d5420138121e02f34c70d28c source: viaf type: document term: Connes, Alain 1947-.... Matière à pensée version: 2013-07-01T14:07:50Z viafid: '292646925' --- _id: 134c05717bb6fb6482a90088f841d0b4 bnf: '10652620' dnb: '100188141' key: LegalloisCésarJulien1770-1814 lc: n86837058 merge: id: 134c05717bb6fb6482a90088f841d0b4 source: viaf type: document term: Legallois, César Julien, 1770-1814 version: 2013-07-01T14:07:50Z viafid: '120775682' --- _id: 135ce84257418bcc78568750a2111e60 bav: adv10143108 bne: xx1005644 bnf: '12028549' dnb: '138087563' key: ValbuenaPratÁngel1900-1977 lc: n80094272 merge: id: 135ce84257418bcc78568750a2111e60 source: viaf type: document nkc: jn20011211066 nla: '000036585051' nlilat: '000430020' ptbnp: '186073' selibr: '200401' term: Valbuena Prat, Ángel, 1900-1977 version: 2013-07-01T14:07:50Z viafid: '110455808' --- _id: 1376e493e318f49ee5a6bc7de59d29cd bnf: '12966050' dnb: '101866313' key: LépineRaphaël1840-1919 merge: id: 1376e493e318f49ee5a6bc7de59d29cd source: viaf type: document nkc: nlk20000090057 term: Lépine, Raphaël, 1840-1919 version: 2013-07-01T14:07:50Z viafid: '2603660' --- _id: 137f20b36063fe82a71c804ec1d5ea0d bnf: '12104361' dnb: '121576531' key: GrobétyAnne-Lise1949-2010 lc: n86074554 merge: id: 137f20b36063fe82a71c804ec1d5ea0d source: viaf type: document nkc: js20050703013 nla: '000035047927' nlilat: '000056875' swnl: vtls002011955 term: Grobéty, Anne-Lise 1949-2010 version: 2013-07-01T14:07:50Z viafid: '91354976' --- _id: 1382ed5f9c62681680678a4765249ec6 bnf: '12487007' dnb: '102866341' key: DuPréGalliotd1561 lc: nr94028497 merge: id: 1382ed5f9c62681680678a4765249ec6 source: viaf type: document term: Du Pré, Galliot, d. 1561 version: 2013-07-01T14:07:50Z viafid: '100294987' --- _id: 1383061015604866b10b40be09d50a0e bav: adv11209050 bne: xx1266708 bnf: '12227688' dnb: '117618284' key: SalverteEusèbe1771-1839 lc: n88067883 merge: id: 1383061015604866b10b40be09d50a0e source: viaf type: document nla: '000035077674' nlilat: '000492702' ptbnp: '203589' term: Salverte, Eusèbe, 1771-1839 version: 2013-07-01T14:07:50Z viafid: '14822860' --- _id: 1385be4e3cdef2172f0727458e7eb8ec dnb: '118662473' key: Boy-EdIdá(1852-1928) lc: n50043125 merge: id: 1385be4e3cdef2172f0727458e7eb8ec source: viaf type: document nkc: jx20070612019 nlilat: '000023721' selibr: '178868' swnl: vtls000033876 term: Boy-Ed, Idá (1852-1928) version: 2013-07-01T14:07:50Z viafid: '50019156' --- _id: 1397f1a12df8a2f5d334d64cec4be38a bav: adv12352150 bnf: '12029110' dnb: '118545388' key: HammarskjöldDag1905-1961 lc: n79034467 merge: id: 1397f1a12df8a2f5d334d64cec4be38a source: viaf type: document nkc: jn20000700664 nla: '000035166507' nlilat: '000211029' ptbnp: '150722' selibr: '211403' swnl: vtls002029343 term: Hammarskjöld, Dag, 1905-1961 version: 2013-07-01T14:07:50Z viafid: '9861820' --- _id: 1398870983365a4e9950886a61a77fe8 dnb: '101388896' key: LagerströmHugo1873-1956 lc: no2008180427 merge: id: 1398870983365a4e9950886a61a77fe8 source: viaf type: document selibr: '228146' term: Lagerström, Hugo, 1873-1956 version: 2013-07-01T14:07:50Z viafid: '61916489' --- _id: 13aadd027bb3321ff7ddf55d9d145337 bav: adv11018991 bnf: '11912514' dnb: '100507484' key: LepanÉdouard-Marie-Joseph1767-1836? merge: id: 13aadd027bb3321ff7ddf55d9d145337 source: viaf type: document term: Lepan, Édouard-Marie-Joseph, 1767-1836? version: 2013-07-01T14:07:50Z viafid: '73856477' --- _id: 13b27848965db8d48114e5ede6a2c59b dnb: '115143858' key: DeValenzuelaNicolás17thcent lc: n80111260 merge: id: 13b27848965db8d48114e5ede6a2c59b source: viaf type: document term: De Valenzuela, Nicolás, 17th cent version: 2013-07-01T14:07:50Z viafid: '47485171' --- _id: 13b8a42eaeba8156429b4d05e5251faf bav: adv12238341 bnf: '13322345' dnb: '118762117' key: SchückingWalther1875-1935 lc: n88071815 merge: id: 13b8a42eaeba8156429b4d05e5251faf source: viaf type: document nlilat: '000119422' ptbnp: '114100' term: Schücking, Walther, 1875-1935 version: 2013-07-01T14:07:50Z viafid: '32142447' --- _id: 13bb3ba59e44985b154b108f1c1ab542 bnf: '16568135' dnb: '123388775' key: BouchuÉtienneJean(1714-1773) lc: no91022030 merge: id: 13bb3ba59e44985b154b108f1c1ab542 source: viaf type: document term: Bouchu, Étienne Jean (1714-1773) version: 2013-07-01T14:07:50Z viafid: '919671' --- _id: 13bc64cf5d33bc19b12af6d8b9650c54 bnf: '10681119' dnb: 12453970x key: DesmahisMarinGrostête1649-1694 lc: nr93017500 merge: id: 13bc64cf5d33bc19b12af6d8b9650c54 source: viaf type: document nkc: xx0096940 term: Desmahis, Marin Grostête, 1649-1694 version: 2013-07-01T14:07:50Z viafid: '56600306' --- _id: 13c4e87bac899be9c34fc6cddd7c0ceb dnb: '103461736' key: ŽákJaroslav1906-1960 lc: n92026015 merge: id: 13c4e87bac899be9c34fc6cddd7c0ceb source: viaf type: document nkc: jk01152975 nlilat: '000145123' term: Žák, Jaroslav, 1906-1960 version: 2013-07-01T14:07:50Z viafid: '49638770' --- _id: 13d8534d4717431ab106c16aa2505b50 bav: adv10290089 bnf: '11473144' dnb: '105851337' key: JánossyLajos(1912-1978) lc: n50076011 merge: id: 13d8534d4717431ab106c16aa2505b50 source: viaf type: document nla: '000035242650' nlilat: '000413248' term: Jánossy, Lajos (1912-1978) version: 2013-07-01T14:07:50Z viafid: '108565657' --- _id: 13dddaa9ccb7504b36b899eb93a840ac bne: xx1252301 dnb: '119081822' key: DöderleinAlbert1860-1941 lc: n93088538 merge: id: 13dddaa9ccb7504b36b899eb93a840ac source: viaf type: document nkc: nlk20000084604 nlilat: '000510144' term: Döderlein, Albert, 1860-1941 version: 2013-07-01T14:07:50Z viafid: '20482478' --- _id: 13e092bc20255ee05d824f8749990197 dnb: '121350177' key: BestmannHansJürgen1925-2005 lc: n83001765 merge: id: 13e092bc20255ee05d824f8749990197 source: viaf type: document nla: '000036577128' term: Bestmann, Hans Jürgen, 1925-2005 version: 2013-07-01T14:07:50Z viafid: '94951367' --- _id: 13e2d8c4dc31844a867b6de39b505803 bne: xx849594 bnf: '11924142' dnb: '124372597' jpg: '500003958' key: SchulerThéophile1821-1878 lc: nr91017449 merge: id: 13e2d8c4dc31844a867b6de39b505803 source: viaf type: document nlilat: '000525235' term: Schuler, Théophile, 1821-1878 version: 2013-07-01T14:07:50Z viafid: '17229379' --- _id: 13e527207ff40989842240429371ee23 bav: adv11019887 bnf: '13925233' dnb: '100213723' key: MinatoNiccolò1627-1698 lc: n82139122 merge: id: 13e527207ff40989842240429371ee23 source: viaf type: document nkc: jn20030723002 nlilat: '000552701' selibr: '347560' term: Minato, Niccolò, 1627-1698 version: 2013-07-01T14:07:50Z viafid: '100204455' --- _id: 13f3cd38a6899b1b9ed5ecdc9d2dd83d bnf: '12459635' dnb: '100757510' key: BenoîtPhilippeMartinNarcisse1791-1867 lc: n88132726 merge: id: 13f3cd38a6899b1b9ed5ecdc9d2dd83d source: viaf type: document term: Benoît, Philippe Martin Narcisse, 1791-1867 version: 2013-07-01T14:07:50Z viafid: '107498' --- _id: 13fb7b3ce61d32d193657045a7144100 bav: adv10187258 bnf: '12025019' dnb: '100835244' key: LachèvreFrédéric1855-1943 lc: n50041323 merge: id: 13fb7b3ce61d32d193657045a7144100 source: viaf type: document nla: '000035287364' nlilat: '000409956' term: Lachèvre, Frédéric, 1855-1943 version: 2013-07-01T14:07:50Z viafid: '66480802' --- _id: 13fe19afd531a7178532ce2c6587cf81 bnf: '12026787' dnb: 12328354x key: TopîrceanuGeorge1886-1937 lc: n82230847 merge: id: 13fe19afd531a7178532ce2c6587cf81 source: viaf type: document nkc: ola2003172178 nlilat: '000450056' term: Topîrceanu, George, 1886-1937 version: 2013-07-01T14:07:50Z viafid: '2484379' --- _id: 1404dd471b278ac0f6a7e20435519181 bav: adv10231928 bne: xx1727372 bnf: '12180932' dnb: '117661236' key: Del'IsleAndréYvesMarie1675-1764 lc: n2006066584 merge: id: 1404dd471b278ac0f6a7e20435519181 source: viaf type: document nkc: ola2008460009 term: De l'Isle André, Yves Marie, 1675-1764 version: 2013-07-01T14:07:50Z viafid: '51732793' --- _id: 1410a071456c9e4a0c12eaa6a9825b5d bav: adv10475174 bne: xx1020593 bnf: '12020646' dnb: '118580817' key: MenéndezyPelayoMarcelino1856-1912 lc: n50045147 merge: id: 1410a071456c9e4a0c12eaa6a9825b5d source: viaf type: document nkc: jn20000603991 nla: '000035346765' nlilat: '000092132' ptbnp: '181363' selibr: '194998' term: Menéndez y Pelayo, Marcelino, 1856-1912 version: 2013-07-01T14:07:50Z viafid: '64018425' --- _id: 141b2c94c573f20c3f8dca411aa423b7 bne: xx998466 bnf: '12027213' dnb: '118964038' egaxa: vtls001110051 key: SaramagoJosédeSousa1922-2010 lc: n85130797 merge: id: 141b2c94c573f20c3f8dca411aa423b7 source: viaf type: document nkc: xx0001988 nla: '000035960643' nlilat: '000116640' ptbnp: '10526' selibr: '89703' swnl: vtls002352195 term: Saramago, José de Sousa, 1922-2010 version: 2013-07-01T14:07:50Z viafid: '114473675' --- _id: 141e055ae72686ee2e118d57a4325696 dnb: '957302584' key: BarbérisPierre1926-Verfasserschaft1 merge: id: 141e055ae72686ee2e118d57a4325696 source: viaf type: document term: Barbéris, Pierre 1926- Verfasserschaft1 version: 2013-07-01T14:07:50Z viafid: '212912232' --- _id: 141e1e5bd08b42bd1c7523b0ecaca044 bnf: '12386318' dnb: '172506344' key: RouchéEugène(1832-1910) lc: n87831201 merge: id: 141e1e5bd08b42bd1c7523b0ecaca044 source: viaf type: document ptbnp: '1172693' term: Rouché, Eugène (1832-1910) version: 2013-07-01T14:07:50Z viafid: '37000162' --- _id: 1426e4bd0805ce3c6f3643b25bd9a81b bav: adv11026398 bnf: '12170910' dnb: '116234539' jpg: '500234955' key: DucpétiauxEdouard1804-1868 lc: n82104179 merge: id: 1426e4bd0805ce3c6f3643b25bd9a81b source: viaf type: document ptbnp: '108843' term: Ducpétiaux, Edouard, 1804-1868 version: 2013-07-01T14:07:50Z viafid: '61587699' --- _id: 142909d5324b2231e8a041cacbd74558 dnb: '127139303' key: MalmeströmElis1895-1977 lc: n85806075 merge: id: 142909d5324b2231e8a041cacbd74558 source: viaf type: document nlilat: '000088225' selibr: '250996' term: Malmeström, Elis, 1895-1977 version: 2013-07-01T14:07:50Z viafid: '98029004' --- _id: 142ad28dd919fbda26ef14679815a112 dnb: '157685276' key: ÅhfeldtClemens1860-1941 merge: id: 142ad28dd919fbda26ef14679815a112 source: viaf type: document selibr: '104037' term: Åhfeldt, Clemens, 1860-1941 version: 2013-07-01T14:07:50Z viafid: '239951129' --- _id: 1433fc0f8e5054788e6c0e91bf3fce71 bnf: '14508346' dnb: '121160238' egaxa: vtls000823801 key: IbnSūdūnʻAlī1407or8-1463or4 lc: no98086830 merge: id: 1433fc0f8e5054788e6c0e91bf3fce71 source: viaf type: document term: Ibn Sūdūn, ʻAlī, 1407 or 8-1463 or 4 version: 2013-07-01T14:07:50Z viafid: '90044089' --- _id: 1436864bc103e4414b3b12987838239f bne: xx1771604 bnf: '13896734' dnb: '118821024' key: LôboDuarte1565-1646 lc: n85098951 merge: id: 1436864bc103e4414b3b12987838239f source: viaf type: document nlilat: '000085415' ptbnp: '64209' term: Lôbo, Duarte 1565-1646 version: 2013-07-01T14:07:50Z viafid: '87553403' --- _id: 14399ebb07f3dea868a636906e8b4f69 dnb: '995200688' key: KarahasanDževad1953-|Noćnovijeće merge: id: 14399ebb07f3dea868a636906e8b4f69 source: viaf type: document term: Karahasan, Dževad 1953- | Noćno vijeće version: 2013-07-01T14:07:50Z viafid: '207955847' --- _id: 143b157c6aec0022b010d38d4ed94b63 key: HeibergHans1904-|FødttilkunstnerEnglish merge: id: 143b157c6aec0022b010d38d4ed94b63 source: viaf type: document nla: '000036513819' term: Heiberg, Hans, 1904- | Født til kunstner. English version: 2013-07-01T14:07:50Z viafid: '180606272' --- _id: 144f5f10aeb12edadd93364ce17c2901 key: OdojewskiWłodzimierz(1930-)|DobrejdrogiMario(pol) merge: id: 144f5f10aeb12edadd93364ce17c2901 source: viaf type: document term: Odojewski, Włodzimierz (1930- ). | Dobrej drogi, Mario (pol.) version: 2013-07-01T14:07:50Z viafid: '292809469' --- _id: 145ab3d7dc37ee27e5c496f713925069 bav: adv10024278 bnf: '12050988' dnb: '151061343' key: ChasséCharles1883-1965 lc: no99078971 merge: id: 145ab3d7dc37ee27e5c496f713925069 source: viaf type: document nla: '000035720479' nlilat: '000030950' term: Chassé, Charles, 1883-1965 version: 2013-07-01T14:07:50Z viafid: '7409159' --- _id: 145d11f9d0517861b19b0d27f3b12dc0 bnf: '10553686' dnb: '117609331' key: MüllerOttoFrederik1730-1784 lc: n86815213 merge: id: 145d11f9d0517861b19b0d27f3b12dc0 source: viaf type: document nkc: nlk20010095241 nla: '000035956182' nlilat: '000483822' selibr: '351243' term: Müller, Otto Frederik, 1730-1784 version: 2013-07-01T14:07:50Z viafid: '22132538' --- _id: 145e023dd68a559040311fe1dd9031ef bnf: '11991661' dnb: '100554989' key: PironAîmé1640-1727 lc: no2010080838 merge: id: 145e023dd68a559040311fe1dd9031ef source: viaf type: document term: Piron, Aîmé, 1640-1727 version: 2013-07-01T14:07:50Z viafid: '29543417' --- _id: 145f93c5c06487dcd3fff23b4ee899ff bnf: '13197481' dnb: '135631211' key: PavčekTone1928-2011 lc: n82093671 merge: id: 145f93c5c06487dcd3fff23b4ee899ff source: viaf type: document nkc: mzk2005282332 nlilat: '000399829' term: Pavček, Tone, 1928-2011 version: 2013-07-01T14:07:50Z viafid: '59227179' --- _id: 1460328b0407de80ed5b5c9e9531c8a9 bnf: '12539587' dnb: '119142333' key: BuysseCyriël1859-1932 lc: n78087593 merge: id: 1460328b0407de80ed5b5c9e9531c8a9 source: viaf type: document nkc: xx0051003 term: Buysse, Cyriël, 1859-1932 version: 2013-07-01T14:07:50Z viafid: '14883922' --- _id: 1461117deedf27e03535258ba41e5683 key: BakewellPJ1943-(PeterJohn)MinerosdelaMontañaRoja lc: n90686929 merge: id: 1461117deedf27e03535258ba41e5683 source: viaf type: document term: Bakewell, P. J., 1943-, (Peter John), Mineros de la Montaña Roja version: 2013-07-01T14:07:50Z viafid: '176267770' --- _id: 14644e49c37af5c572ca8d06bbde63b8 dnb: '143355554' key: BergströmRichard1828-1893 merge: id: 14644e49c37af5c572ca8d06bbde63b8 source: viaf type: document selibr: '270648' term: Bergström, Richard, 1828-1893 version: 2013-07-01T14:07:50Z viafid: '166070125' --- _id: 146fdc6561d9215b4b72181aca576f83 bav: adv10024219 bne: xx820681 bnf: '11889411' dnb: '118650947' key: D'AubignéAgrippa1552-1630 lc: n80057183 merge: id: 146fdc6561d9215b4b72181aca576f83 source: viaf type: document nkc: ola2002150117 nla: '000036554013' nlilat: '000013029' selibr: '207286' swnl: vtls000021296 term: D'Aubigné, Agrippa, 1552-1630 version: 2013-07-01T14:07:50Z viafid: '56605227' --- _id: 147f219ad904fd30075ddeeddcad4d97 bav: adv10013661 bnf: '13739375' dnb: '118524518' key: DelbrückHans1848-1929 lc: n79151238 merge: id: 147f219ad904fd30075ddeeddcad4d97 source: viaf type: document nkc: mzk2008458919 nlilat: '000038280' term: Delbrück, Hans, 1848-1929 version: 2013-07-01T14:07:50Z viafid: '51867965' --- _id: 1485667c00189da4004dc7c5b03231e7 bav: adv11083613 bnf: '11920343' dnb: '101936370' key: PortCélestin(1828-1901) lc: n81112405 merge: id: 1485667c00189da4004dc7c5b03231e7 source: viaf type: document term: Port, Célestin (1828-1901) version: 2013-07-01T14:07:50Z viafid: '22147287' --- _id: 14936d44bb48bd6ef253590bba9af7e9 bnf: '12190126' dnb: '109021762' key: YosidaKôsaku1909-1990 lc: n50013601 merge: id: 14936d44bb48bd6ef253590bba9af7e9 source: viaf type: document nkc: kup19950000113178 nla: '000035624512' term: Yosida, Kôsaku, 1909-1990 version: 2013-07-01T14:07:50Z viafid: '37718918' --- _id: 14942ddb2b1d77254cd041f905c5d4f6 dnb: 10018667x key: LeBlancFrançoisd1698 lc: n88116916 merge: id: 14942ddb2b1d77254cd041f905c5d4f6 source: viaf type: document term: Le Blanc, François, d. 1698 version: 2013-07-01T14:07:50Z viafid: '295392725' --- _id: 149502ce01e11e56077947e42fe4bb75 bav: adv12500368 bnf: '11906150' dnb: '100493912' key: GuépinAnge1805-1873 lc: n88101326 merge: id: 149502ce01e11e56077947e42fe4bb75 source: viaf type: document nlilat: '000273572' term: Guépin, Ange, 1805-1873 version: 2013-07-01T14:07:50Z viafid: '61546622' --- _id: 149577f97a722b3cfd151297b0b8a631 bav: adv10260313 bnf: '12529532' dnb: '117680230' key: Paludan-MüllerFrederik1809-1876 lc: n81068795 merge: id: 149577f97a722b3cfd151297b0b8a631 source: viaf type: document nkc: kup19960000073803 nlilat: '000437385' selibr: '82449' term: Paludan-Müller, Frederik, 1809-1876 version: 2013-07-01T14:07:50Z viafid: '12416841' --- _id: 1498aea74677395145635bdce6ab372d bnf: '14062271' key: LombardPierreAimé1678-1748 lc: nr2006004176 merge: id: 1498aea74677395145635bdce6ab372d source: viaf type: document term: Lombard, Pierre Aimé, 1678-1748 version: 2013-07-01T14:07:50Z viafid: '7592464' --- _id: 149aae21a35233e4e1be474b69b2547d bav: adv10222330 bnf: '12177715' dnb: '100281117' key: FélibienMichel1665-1719 lc: no2002064523 merge: id: 149aae21a35233e4e1be474b69b2547d source: viaf type: document nkc: mzk2008469051 term: Félibien, Michel, 1665-1719 version: 2013-07-01T14:07:50Z viafid: '68972042' --- _id: 149f28687e86526a8a02e829bd71dbba dnb: '130160695' key: JanczarskiCzesław1911-1971 lc: no95050557 merge: id: 149f28687e86526a8a02e829bd71dbba source: viaf type: document nkc: ola2003196264 term: Janczarski, Czesław, 1911-1971 version: 2013-07-01T14:07:50Z viafid: '84995335' --- _id: 14a277c2c9d56ede2bfc6e0606ac3736 bne: xx979504 bnf: '11990402' dnb: '158414640' key: LópezAngladaLuis1919-2007 lc: n50064580 merge: id: 14a277c2c9d56ede2bfc6e0606ac3736 source: viaf type: document nla: '000035312578' selibr: '317190' term: López Anglada, Luis, 1919-2007 version: 2013-07-01T14:07:50Z viafid: '20335' --- _id: 14a67db24557b00ee09221a04664bb3b dnb: '100174833' key: Maître-JanAntoine1650-1719 merge: id: 14a67db24557b00ee09221a04664bb3b source: viaf type: document term: Maître-Jan, Antoine 1650-1719 version: 2013-07-01T14:07:50Z viafid: '293444596' --- _id: 14a81955590cbd0b8d82382eb4b42715 bav: adv12157777 bne: xx1149249 dnb: '118972200' key: BarradasSebastião1543-1615 lc: n88073162 merge: id: 14a81955590cbd0b8d82382eb4b42715 source: viaf type: document nkc: ola2008452294 nla: '000048220952' ptbnp: '9238' selibr: '356842' term: Barradas, Sebastião, 1543-1615 version: 2013-07-01T14:07:50Z viafid: '88777885' --- _id: 14b3899993010f9052892f9c3aeacb83 bav: adv10009974 bnf: '11887930' dnb: 10042631x key: BlocquelSimon-François1780-1863 lc: n89655433 merge: id: 14b3899993010f9052892f9c3aeacb83 source: viaf type: document nla: '000035776047' term: Blocquel, Simon-François, 1780-1863 version: 2013-07-01T14:07:50Z viafid: '27059746' --- _id: 14b58b4269d6105cd1746817ec2a47da key: AlexandrescuSică1896-1973 lc: n81002887 merge: id: 14b58b4269d6105cd1746817ec2a47da source: viaf type: document term: Alexandrescu, Sică, 1896-1973 version: 2013-07-01T14:07:50Z viafid: '265323685' --- _id: 14bb85844d451b9b5e58e79d0fbda309 bav: adv10069523 bne: xx5000893 bnf: '10725424' key: BergeretLouisFrançoisEtienne(1814-1893) lc: n2013180582 merge: id: 14bb85844d451b9b5e58e79d0fbda309 source: viaf type: document ptbnp: '1192678' term: Bergeret, Louis François Etienne (1814-1893) version: 2013-07-01T14:07:50Z viafid: '27055650' --- _id: 14c729b90c70967612c34527905e21b2 bav: adv11938982 bnf: '12112662' dnb: '172440173' key: WaillyNoëlFrançoisde1724-1801 lc: n92115386 merge: id: 14c729b90c70967612c34527905e21b2 source: viaf type: document nkc: mzk2008468991 nlilat: '000508741' selibr: '277738' term: Wailly, Noël François de, 1724-1801 version: 2013-07-01T14:07:50Z viafid: '46791857' --- _id: 14c790ebe9ba595baae117f4ba627449 bne: xx875529 bnf: '12197719' dnb: '185885853' key: AndújarManuel1913-1994 lc: n50024863 merge: id: 14c790ebe9ba595baae117f4ba627449 source: viaf type: document nkc: ola2002145123 term: Andújar, Manuel, 1913-1994 version: 2013-07-01T14:07:50Z viafid: '27113103' --- _id: 14c81ddae9ab36c24ab276fb3c21b728 bav: adv11245622 bne: xx1170172 bnf: '12570139' dnb: '119428164' key: SerraRàfolsElías1898-1972 lc: n80160048 merge: id: 14c81ddae9ab36c24ab276fb3c21b728 source: viaf type: document nlilat: '000433351' ptbnp: '142014' term: Serra Ràfols, Elías 1898-1972 version: 2013-07-01T14:07:50Z viafid: '89487779' --- _id: 14cb65d4e6eca6410278586c4d65c458 dnb: '109015452' key: KlevebringBjörn-Ivarb1943 lc: no94003942 merge: id: 14cb65d4e6eca6410278586c4d65c458 source: viaf type: document term: Klevebring, Björn-Ivar, b.1943 version: 2013-07-01T14:07:50Z viafid: '113089860' --- _id: 14cf34d0fa2a38b89bfdf1090daeb5fd bav: adv10148841 bnf: '10700554' dnb: '124514200' key: BuissonMathieu-François-Régis1776-1805 lc: n86801586 merge: id: 14cf34d0fa2a38b89bfdf1090daeb5fd source: viaf type: document term: Buisson, Mathieu-François-Régis, 1776-1805 version: 2013-07-01T14:07:50Z viafid: '23076439' --- _id: 14cf7a9a16afc540ea4b7c090de8256d bav: adv12488629 bne: xx1364830 bnf: '12152583' dnb: '172511917' key: MerlinMaríadelasMercedesSantaCruzyMontalvo1789-1852 lc: n86820350 merge: id: 14cf7a9a16afc540ea4b7c090de8256d source: viaf type: document nla: '000035725130' term: Merlin, María de las Mercedes Santa Cruz y Montalvo, 1789-1852 version: 2013-07-01T14:07:50Z viafid: '34495055' --- _id: 14dc4870dec4453bfd863fa35ea66256 key: HuellePaweł1957-|WeiserDawidekEnglish lc: n91060889 merge: id: 14dc4870dec4453bfd863fa35ea66256 source: viaf type: document term: Huelle, Paweł, 1957- | Weiser Dawidek. English version: 2013-07-01T14:07:50Z viafid: '178693401' --- _id: 14e028324138d65cb42fbed1fc730f64 bav: adv12137352 dnb: '100143873' key: GerstäckerCarlFriedrichWilhelm1773-1852 lc: n85295074 merge: id: 14e028324138d65cb42fbed1fc730f64 source: viaf type: document nlilat: '000474743' term: Gerstäcker, Carl Friedrich Wilhelm 1773-1852 version: 2013-07-01T14:07:50Z viafid: '10626189' --- _id: 14e382e0c851407d46f80bfb421cbf79 bne: xx1051448 bnf: '12557057' dnb: '132149974' key: DeCastroJosué1908-1973 lc: n50038278 merge: id: 14e382e0c851407d46f80bfb421cbf79 source: viaf type: document nkc: nlk20000083830 nla: '000035026566' nlilat: '000029257' ptbnp: '43010' swnl: vtls001861867 term: De Castro, Josué, 1908-1973 version: 2013-07-01T14:07:50Z viafid: '46875949' --- _id: 14e3be59329a8f032e46a3e8d8c869cb bnf: '11929662' dnb: '135967198' key: ZéraffaMichel1918-1983 lc: n85129186 merge: id: 14e3be59329a8f032e46a3e8d8c869cb source: viaf type: document nla: '000035776905' nlilat: '000470404' ptbnp: '319798' term: Zéraffa, Michel, 1918-1983 version: 2013-07-01T14:07:50Z viafid: '71399333' --- _id: 14f4d1d7539a08f6d8d5c4f8e46a2be4 bnf: '12028448' dnb: '172227798' key: LinzeJacques-Gérard(1925-1996) lc: n85117846 merge: id: 14f4d1d7539a08f6d8d5c4f8e46a2be4 source: viaf type: document nlilat: '000470013' ptbnp: '192607' term: Linze, Jacques-Gérard (1925-1996) version: 2013-07-01T14:07:50Z viafid: '110278317' --- _id: 14fb8cc177da9fbab9cee94fd2b0a502 bav: adv11194402 bnf: '12085579' dnb: '102372845' egaxa: vtls001158733 key: IbnFaḍlAllāhal-ʻUmarīAḥmadibnYaḥyá1301-1349 lc: nr89013200 merge: id: 14fb8cc177da9fbab9cee94fd2b0a502 source: viaf type: document nlilat: '000523737' selibr: '62902' term: Ibn Faḍl Allāh al-ʻUmarī, Aḥmad ibn Yaḥyá, 1301-1349 version: 2013-07-01T14:07:50Z viafid: '82873343' --- _id: 14fd09a1a6505b2000aea27fb6fa49a5 bav: adv12123388 bnf: '13484480' dnb: 11604277x key: DecazesÉlie1780-1860 lc: n88101090 merge: id: 14fd09a1a6505b2000aea27fb6fa49a5 source: viaf type: document term: Decazes, Élie, 1780-1860 version: 2013-07-01T14:07:50Z viafid: '76466485' --- _id: 150b7db59770c7d17898440b0654170a bav: adv10880820 bne: xx1082692 bnf: '11912970' dnb: '121741729' key: LichnerowiczAndré1915-1998 lc: n50050381 merge: id: 150b7db59770c7d17898440b0654170a source: viaf type: document nkc: skuk0003741 nla: '000035304747' term: Lichnerowicz, André, 1915-1998 version: 2013-07-01T14:07:50Z viafid: '109114301' --- _id: 150e614d77e283eae215073665e76353 bav: adv10165483 bnf: '12229466' dnb: '118685767' key: BüchleinPaul1504-1549 lc: n98064016 merge: id: 150e614d77e283eae215073665e76353 source: viaf type: document nkc: mzk2009510846 nlilat: '000045229' ptbnp: '25651' term: Büchlein, Paul, 1504-1549 version: 2013-07-01T14:07:50Z viafid: '17275147' --- _id: 151a8baa34f4c42ec651cf89a5da836d bav: adv11137685 bnf: '12544579' dnb: '100393047' key: RivièreLazare1589-1655 lc: n84184713 merge: id: 151a8baa34f4c42ec651cf89a5da836d source: viaf type: document nkc: nlk20000091144 nla: '000035836472' ptbnp: '1389127' term: Rivière, Lazare, 1589-1655 version: 2013-07-01T14:07:50Z viafid: '64118232' --- _id: 1521faaff9b1af2f4621eb2ec5d83791 bav: adv12371136 dnb: '100287352' key: GiravaGerónimod1556 lc: no97040910 merge: id: 1521faaff9b1af2f4621eb2ec5d83791 source: viaf type: document nkc: ola2010605730 nlilat: '000531920' term: Girava, Gerónimo, d. 1556 version: 2013-07-01T14:07:50Z viafid: '66809658' --- _id: 1525f82242157126f1b56cda3ef4cec8 bav: adv10374907 bne: xx1713081 bnf: '12306936' dnb: '135852544' jpg: '500017211' key: FessardÉtienne1714-1777 lc: nr00004572 merge: id: 1525f82242157126f1b56cda3ef4cec8 source: viaf type: document nkc: mzk2009528458 ptbnp: '246162' selibr: '342846' term: Fessard, Étienne, 1714-1777 version: 2013-07-01T14:07:50Z viafid: '71457400' --- _id: 152d9f4cc2130662c4cf60c3ddc7e389 bnf: '12605982' dnb: '129065463' key: MonyStéphane1800-1884 lc: n88101171 merge: id: 152d9f4cc2130662c4cf60c3ddc7e389 source: viaf type: document ptbnp: '1174477' term: Mony, Stéphane, 1800-1884 version: 2013-07-01T14:07:50Z viafid: '24722059' --- _id: 152f70b3175ccd761042f5d53ad5533c dnb: '118793853' key: RyleevKondratijFëdorovič(1795-1826) lc: n81040581 merge: id: 152f70b3175ccd761042f5d53ad5533c source: viaf type: document nla: '000035316627' nlicyr: '000155995' term: Ryleev, Kondratij Fëdorovič (1795-1826) version: 2013-07-01T14:07:50Z viafid: '35252682' --- _id: 1531327f46d23fc38bb56603eee281f1 bnf: '11907962' dnb: '121221059' key: HugoFrançois-Victor1828-1873 lc: no94021099 merge: id: 1531327f46d23fc38bb56603eee281f1 source: viaf type: document nlilat: '000518774' ptbnp: '179073' term: Hugo, François-Victor, 1828-1873 version: 2013-07-01T14:07:50Z viafid: '100267715' --- _id: 1532fca5855ec505296ed98bf4e8bff5 dnb: '116674628' key: RüdigerKarlAugust1793-1869 merge: id: 1532fca5855ec505296ed98bf4e8bff5 source: viaf type: document term: Rüdiger, Karl August 1793-1869 version: 2013-07-01T14:07:50Z viafid: '40136090' --- _id: 1535e272ce0837291a23ae9b9ff7bb1f bav: adv10909862 bne: xx1348887 bnf: '12561976' dnb: '118820095' key: LützelerHeinrich1902-1988 lc: n50047325 merge: id: 1535e272ce0837291a23ae9b9ff7bb1f source: viaf type: document nkc: jn19990005247 nla: '000035316541' nlilat: '000411310' ptbnp: '1441984' term: Lützeler, Heinrich, 1902-1988 version: 2013-07-01T14:07:50Z viafid: '27182952' --- _id: 154207a532fc786937d23723bcf05e04 dnb: 12838686x key: BenoîstElie1640-1728 lc: n84233023 merge: id: 154207a532fc786937d23723bcf05e04 source: viaf type: document nla: '000035852975' term: Benoîst, Elie, 1640-1728 version: 2013-07-01T14:07:50Z viafid: '57663498' --- _id: 154364002341116f2198e2ad60b35e1b bne: xx5013404 key: BonaThéodore1805-1866 merge: id: 154364002341116f2198e2ad60b35e1b source: viaf type: document term: Bona, Théodore, 1805-1866 version: 2013-07-01T14:07:50Z viafid: '159870877' --- _id: 154ac92e9992d5dd3f10b0fdcfc8328e dnb: '123513561' jpg: '500030414' key: ChirnoagăMarcel1930-2008 lc: n83328098 merge: id: 154ac92e9992d5dd3f10b0fdcfc8328e source: viaf type: document term: Chirnoagă, Marcel, 1930-2008 version: 2013-07-01T14:07:50Z viafid: '214095192' --- _id: 154f71e8b9b3e2399082dd0a2ac69bf4 bav: adv10018476 bne: xx822112 bnf: '13012044' dnb: '101874138' key: CoderayZaidínFrancisco1836-1917 lc: n87941684 merge: id: 154f71e8b9b3e2399082dd0a2ac69bf4 source: viaf type: document nlilat: '000311806' term: Codera y Zaidín, Francisco, 1836-1917 version: 2013-07-01T14:07:50Z viafid: '51824216' --- _id: 1551e5919f87e89974308c8718239043 bnf: '12938863' dnb: '141428864' key: BéghinHenri1876-1969 merge: id: 1551e5919f87e89974308c8718239043 source: viaf type: document term: Béghin, Henri, 1876-1969 version: 2013-07-01T14:07:50Z viafid: '44429503' --- _id: 15524ed265fd40ffdcaf034475a257cb bav: adv10979308 bnf: '12027624' dnb: 11912369x key: MikszáthKálmán1847-1910 lc: n50042174 merge: id: 15524ed265fd40ffdcaf034475a257cb source: viaf type: document nkc: jn19990210430 nla: '000035351495' nlilat: '000093396' ptbnp: '196003' selibr: '77025' term: Mikszáth, Kálmán, 1847-1910 version: 2013-07-01T14:07:50Z viafid: '46774986' --- _id: 1552c1a7d742dab4869b7abdd25b2d74 key: BéraJosephCharles1758-1839 merge: id: 1552c1a7d742dab4869b7abdd25b2d74 source: viaf type: document term: Béra, Joseph Charles, 1758-1839 version: 2013-07-01T14:07:50Z viafid: '191916511' --- _id: 155732e088a547923384110611c02605 bnf: '12783902' key: FrédérixGustave1834-1894 merge: id: 155732e088a547923384110611c02605 source: viaf type: document term: Frédérix, Gustave, 1834-1894 version: 2013-07-01T14:07:50Z viafid: '107035248' --- _id: 155ba761038b969ce522ed80d5e56ea6 dnb: '101323484' key: AguilarySantillánRafael1863-1940 lc: no2012104147 merge: id: 155ba761038b969ce522ed80d5e56ea6 source: viaf type: document term: Aguilar y Santillán, Rafael, 1863-1940 version: 2013-07-01T14:07:50Z viafid: '27430168' --- _id: 155f13b5c9f7a0834d056c69bcb0d203 bav: adv10020286 bnf: '13573958' dnb: '119138069' key: PokrovskijNN1930-(NikolajNikolaevič) lc: n80116922 merge: id: 155f13b5c9f7a0834d056c69bcb0d203 source: viaf type: document nkc: jx20040130026 nlicyr: '000155244' selibr: '223671' term: Pokrovskij, N. N., 1930-, (Nikolaj Nikolaevič) version: 2013-07-01T14:07:50Z viafid: '33383022' --- _id: 1560383bce931a3d3721d73c76e61f59 dnb: '157427064' key: HovhannēseanVahan1894-1977 lc: n85105597 merge: id: 1560383bce931a3d3721d73c76e61f59 source: viaf type: document term: Hovhannēsean, Vahan, 1894-1977 version: 2013-07-01T14:07:50Z viafid: '237752024' --- _id: 1560cf82d3db1898e7a4bfd53d6dc62d dnb: '117511315' key: Schmidt-Weißenfels(Eduard)1833-1893 lc: no2002059245 merge: id: 1560cf82d3db1898e7a4bfd53d6dc62d source: viaf type: document nkc: ola2009488167 nla: '000035292698' nlilat: '000118091' term: Schmidt-Weißenfels, ... (Eduard), 1833-1893 version: 2013-07-01T14:07:50Z viafid: '40157682' --- _id: 156233eaa1252b487920ff8567724131 bav: adv10165457 bnf: '12770960' dnb: '103507191' key: GalaunėPaulius1890-1988 lc: n90649776 merge: id: 156233eaa1252b487920ff8567724131 source: viaf type: document nlilat: '000502930' term: Galaunė, Paulius, 1890-1988 version: 2013-07-01T14:07:50Z viafid: '41966965' --- _id: 156c529b2d7717c0df32e3922f85f224 bav: adv10988505 bnf: '12504019' dnb: '133213544' key: MoreauÉdouardde1879-1952 lc: no00048053 merge: id: 156c529b2d7717c0df32e3922f85f224 source: viaf type: document nkc: jcu2012721003 selibr: '300940' term: Moreau, Édouard de, 1879-1952 version: 2013-07-01T14:07:50Z viafid: '56715679' --- _id: 1579762263815b1941be36ec881bdcfe bne: xx924903 bnf: '12031343' dnb: '118717502' key: GinerdelosRíosFrancisco1839-1915 lc: n50033894 merge: id: 1579762263815b1941be36ec881bdcfe source: viaf type: document nlilat: '000408131' ptbnp: '222700' term: Giner de los Ríos, Francisco, 1839-1915 version: 2013-07-01T14:07:50Z viafid: '12323303' --- _id: 157e8db1a7423680d4e4818449cd873d bav: adv10125001 bnf: '11894410' dnb: '124841260' key: BruzendelaMartinièreAntoineAugustin1662-1746 lc: nr95046875 merge: id: 157e8db1a7423680d4e4818449cd873d source: viaf type: document nkc: mzk2007395149 nlilat: '000025909' selibr: '313349' swnl: vtls000035608 term: Bruzen de la Martinière, Antoine Augustin 1662-1746 version: 2013-07-01T14:07:50Z viafid: '100174728' --- _id: 1584d0a6a9d44a8b4f8ec5a6113b4471 bav: adv10127620 bnf: '11901807' dnb: '133226700' key: EppRené1927-2009 lc: n83032682 merge: id: 1584d0a6a9d44a8b4f8ec5a6113b4471 source: viaf type: document nkc: uk2008335146 nlilat: '000452483' term: Epp, René, 1927-2009 version: 2013-07-01T14:07:50Z viafid: '85252385' --- _id: 1586bca60ac2847b701688ccfc5f21b4 key: HødnebøTone(1962-)|Lykkeligøyeblikk(norw) merge: id: 1586bca60ac2847b701688ccfc5f21b4 source: viaf type: document term: Hødnebø, Tone (1962- ). | Lykkelig øyeblikk (norw.) version: 2013-07-01T14:07:50Z viafid: '293127160' --- _id: 1586f5c9b26fe22deb7e4972ee3a9121 bav: adv11098930 bnf: '12176450' dnb: '118104306' key: PluquetFrançois-André-Adrien1716-1790 lc: n84094341 merge: id: 1586f5c9b26fe22deb7e4972ee3a9121 source: viaf type: document nkc: mzk2009510728 nlilat: '000461740' term: Pluquet, François-André-Adrien, 1716-1790 version: 2013-07-01T14:07:50Z viafid: '7432776' --- _id: 158a49241995255ea4e2044ff83b066f bne: xx1100503 bnf: '12130675' dnb: '104115602' egaxa: vtls001073138 key: IbnHudhaylʻAlīibnʻAbdal-Raḥmān14thcent lc: nr92030088 merge: id: 158a49241995255ea4e2044ff83b066f source: viaf type: document nlilat: '000526572' term: Ibn Hudhayl, ʻAlī ibn ʻAbd al-Raḥmān, 14th cent version: 2013-07-01T14:07:50Z viafid: '2505776' --- _id: 158b3f1f2f2dc75f4f16205ffdffa0ba dnb: '118621246' key: TembrockGünter1918-2011 lc: n83222604 merge: id: 158b3f1f2f2dc75f4f16205ffdffa0ba source: viaf type: document nkc: xx0059929 nlilat: '000457529' term: Tembrock, Günter, 1918-2011 version: 2013-07-01T14:07:50Z viafid: '25395490' --- _id: 159673e20f8a3fe36b46058121cd2ce2 dnb: '151198411' key: LevraultLéonb1865 lc: no2011125074 merge: id: 159673e20f8a3fe36b46058121cd2ce2 source: viaf type: document nkc: jn19990005039 nla: '000035649576' ptbnp: '175843' term: Levrault, Léon, b. 1865 version: 2013-07-01T14:07:50Z viafid: '83992592' --- _id: 15972183d2ef170bf6bc288cce067248 bav: adv11026285 bne: xx1776528 bnf: '11900910' dnb: '119097222' key: DucisJean-François1733-1816 lc: n88661411 merge: id: 15972183d2ef170bf6bc288cce067248 source: viaf type: document nla: '000035579838' nlilat: '000498199' selibr: '184128' term: Ducis, Jean-François 1733-1816 version: 2013-07-01T14:07:50Z viafid: '36917487' --- _id: 159f6e0cdaa31f9a740ed2cfd3387173 bnf: '12185852' dnb: 15116908x key: JorréGeorges1899-1957 lc: no2005097209 merge: id: 159f6e0cdaa31f9a740ed2cfd3387173 source: viaf type: document nla: '000035660508' nlilat: '000551599' term: Jorré, Georges, 1899-1957 version: 2013-07-01T14:07:50Z viafid: '115316830' --- _id: 15a530e7fafe9f4f661aa7b4bed61119 bav: adv10973115 bnf: '12397222' dnb: '128696346' key: MillietdeChalesClaude-François1621-1678 lc: n85196837 merge: id: 15a530e7fafe9f4f661aa7b4bed61119 source: viaf type: document nkc: ola2002153993 ptbnp: '1045680' term: Milliet de Chales, Claude-François, 1621-1678 version: 2013-07-01T14:07:50Z viafid: '5015944' --- _id: 15a568d1a8c36bda45d114dbc3a3cb11 bnf: '11913683' dnb: '117719757' key: LwoffAndré1902-1994 lc: n79062986 merge: id: 15a568d1a8c36bda45d114dbc3a3cb11 source: viaf type: document nkc: nlk20020107196 nla: '000035316624' nlilat: '000420416' ptbnp: '139534' term: Lwoff, André, 1902-1994 version: 2013-07-01T14:07:50Z viafid: '92093913' --- _id: 15a924ea710f760c1b9496f88006af48 dnb: '140804757' key: StaudingerHansjürgen1914-1990 lc: n85154369 merge: id: 15a924ea710f760c1b9496f88006af48 source: viaf type: document nla: '000036501632' term: Staudinger, Hansjürgen 1914-1990 version: 2013-07-01T14:07:50Z viafid: '111141598' --- _id: 15bae8790fbe90a2a6956fe7e81890ee bnf: '11916640' dnb: '100526888' key: MontémontAlbert(1788-1862) lc: nr90008612 merge: id: 15bae8790fbe90a2a6956fe7e81890ee source: viaf type: document nla: '000036585601' nlilat: '000094858' term: Montémont, Albert (1788-1862) version: 2013-07-01T14:07:50Z viafid: '29538219' --- _id: 15bbb12d0e9222b1547b731371a279ac bnf: '12117308' dnb: '118825321' key: PólyaGeorge1887-1985 lc: n80049669 merge: id: 15bbb12d0e9222b1547b731371a279ac source: viaf type: document nkc: jx20050425007 nla: '000035427907' nlilat: '000428130' ptbnp: '370127' selibr: '85424' term: Pólya, George, 1887-1985 version: 2013-07-01T14:07:50Z viafid: '120727470' --- _id: 15c391f2623bc9e65588f4d527b8faad key: RapinChristian1931-|Cicled'Iskèr lc: nr2003021924 merge: id: 15c391f2623bc9e65588f4d527b8faad source: viaf type: document term: Rapin, Christian, 1931- | Cicle d'Iskèr version: 2013-07-01T14:07:50Z viafid: '183009320' --- _id: 15cf3fcc2aa6cd9bd2e3e1ef09be3061 bnf: '12485324' dnb: '117624799' key: ThierryÉdouard1813-1894 lc: nr97014802 merge: id: 15cf3fcc2aa6cd9bd2e3e1ef09be3061 source: viaf type: document nlilat: '000531316' term: Thierry, Édouard, 1813-1894 version: 2013-07-01T14:07:50Z viafid: '51791564' --- _id: 15d3d4d14c55a4f701eda42b0121a6e1 bnf: '12128379' dnb: '120220504' key: NenadovićMateja1777-1854 lc: n85289466 merge: id: 15d3d4d14c55a4f701eda42b0121a6e1 source: viaf type: document nkc: jo2002150582 nla: '000035380067' nlilat: '000474610' term: Nenadović, Mateja, 1777-1854 version: 2013-07-01T14:07:50Z viafid: '27100048' --- _id: 15d93518be11453240e2a6e33ecae64c bav: adv10196189 bne: xx4744701 bnf: '12375337' dnb: '116677635' key: FourcroyAntoine-François1755-1809 lc: n84102152 merge: id: 15d93518be11453240e2a6e33ecae64c source: viaf type: document nkc: nlk20000085667 nla: '000035955803' nlilat: '000461911' selibr: '252659' term: Fourcroy, Antoine-François 1755-1809 version: 2013-07-01T14:07:50Z viafid: '27146082' --- _id: 15dbc49040f2df8a7ce3fbd57eba59a7 dnb: '130372587' key: CarićJuraj(1854-1927) merge: id: 15dbc49040f2df8a7ce3fbd57eba59a7 source: viaf type: document term: Carić, Juraj (1854-1927) version: 2013-07-01T14:07:50Z viafid: '57717861' --- _id: 15dd3a20a5fef525474436d5b536ae89 dnb: '128445246' key: ReformatskijAleksandrAleksandrovič1900-1978 lc: nr88004853 merge: id: 15dd3a20a5fef525474436d5b536ae89 source: viaf type: document nkc: pna2012684581 nlicyr: '000155646' selibr: '269095' term: Reformatskij, Aleksandr Aleksandrovič, 1900-1978 version: 2013-07-01T14:07:50Z viafid: '91966747' --- _id: 15e99e40dd0804a850b58d392ff3b56e bnf: '12473779' dnb: '124365329' key: MühlpfortHeinrich1639-1681 lc: no2002059021 merge: id: 15e99e40dd0804a850b58d392ff3b56e source: viaf type: document nlilat: '000544534' term: Mühlpfort, Heinrich, 1639-1681 version: 2013-07-01T14:07:50Z viafid: '44398982' --- _id: 15ea2fd851d7a21990ca12fdd4e01ac3 dnb: '972290230' key: GrandesAlmudena1960-|EdadesdeLulú merge: id: 15ea2fd851d7a21990ca12fdd4e01ac3 source: viaf type: document term: Grandes, Almudena 1960- | Edades de Lulú version: 2013-07-01T14:07:50Z viafid: '211747965' --- _id: 15ec26ec9f59d69671ee36ed26453c64 bne: xx939515 bnf: '12263208' dnb: '158365216' key: LidinVladimirGermanovič1894-1979 lc: n81056807 merge: id: 15ec26ec9f59d69671ee36ed26453c64 source: viaf type: document nkc: jn19990210380 nlilat: '000084331' term: Lidin, Vladimir Germanovič, 1894-1979 version: 2013-07-01T14:07:50Z viafid: '61604225' --- _id: 15ec8d592e80a046cbd6d984e1167e6e bnf: '13326692' dnb: '128747099' key: BergLS1876-1950(LevSemenovič) lc: n84035731 merge: id: 15ec8d592e80a046cbd6d984e1167e6e source: viaf type: document nkc: ola2002152792 nla: '000036153194' nlicyr: '000148264' nlilat: '000459931' term: Berg, L. S., 1876-1950, (Lev Semenovič) version: 2013-07-01T14:07:50Z viafid: '19823881' --- _id: 15ef686a43d7e52cff157662a4974dd5 bne: xx899903 bnf: '11928662' dnb: '118635077' jpg: '500064726' key: VološinMaksimilianAleksandrovič1877-1932 lc: n82070428 merge: id: 15ef686a43d7e52cff157662a4974dd5 source: viaf type: document nkc: jn20000701917 nla: '000035427686' nlicyr: '000149467' selibr: '212569' term: Vološin, Maksimilian Aleksandrovič, 1877-1932 version: 2013-07-01T14:07:50Z viafid: '51697196' --- _id: 15f4b09f18b06b6653c05168a5f75327 dnb: '116221038' key: BöhmeHerbert1907-1971 lc: n86113505 merge: id: 15f4b09f18b06b6653c05168a5f75327 source: viaf type: document nlilat: '000482208' term: Böhme, Herbert, 1907-1971 version: 2013-07-01T14:07:50Z viafid: '77061632' --- _id: 15f645bfd16d5da6ce4cb837861ed965 bav: adv10034057 bnf: '12241032' dnb: '126225451' key: CotyFrançois1874-1934 lc: n96017024 merge: id: 15f645bfd16d5da6ce4cb837861ed965 source: viaf type: document term: Coty, François, 1874-1934 version: 2013-07-01T14:07:50Z viafid: '4986112' --- _id: 15ffcf89dfaa108a8d6ffc07034a2f6c bav: adv10117793 bne: xx5103166 dnb: '120530791' key: CroÿCharles1560-1612ducde lc: n80146612 merge: id: 15ffcf89dfaa108a8d6ffc07034a2f6c source: viaf type: document term: Croÿ, Charles, 1560-1612, duc de version: 2013-07-01T14:07:50Z viafid: '40211877' --- _id: 16023ffa4ec525e18f6d01c036c394ad bne: xx819600 bnf: '12039399' dnb: '119193418' key: DeOlmosAndrésca1491-1570or71 lc: n85239968 merge: id: 16023ffa4ec525e18f6d01c036c394ad source: viaf type: document nla: '000035208184' term: De Olmos, Andrés, ca. 1491-1570 or 71 version: 2013-07-01T14:07:50Z viafid: '17240613' --- _id: 1616b107af783a1b9dee06b92c3d1b8d bnf: '13493409' dnb: 11935344x key: BenešKarelJosef1896-1969 lc: n88636405 merge: id: 1616b107af783a1b9dee06b92c3d1b8d source: viaf type: document nkc: jk01011622 nla: '000035869394' nlilat: '000018449' ptbnp: '239063' term: Beneš, Karel Josef, 1896-1969 version: 2013-07-01T14:07:50Z viafid: '37071193' --- _id: 162c133557e2fb2f820caca267a5e8a7 bnf: '12470868' dnb: '103175970' key: GuljaškiAndrejStojanov1914-1995 lc: n50018804 merge: id: 162c133557e2fb2f820caca267a5e8a7 source: viaf type: document nkc: kup19980000034346 selibr: '57848' term: Guljaški, Andrej Stojanov, 1914-1995 version: 2013-07-01T14:07:50Z viafid: '14871383' --- _id: 1637141f032aa77f64695792a9df4a40 bne: xx1635155 dnb: '152824200' key: FernándezAvelloManuel1924-2002 lc: n50002732 merge: id: 1637141f032aa77f64695792a9df4a40 source: viaf type: document term: Fernández Avello, Manuel 1924-2002 version: 2013-07-01T14:07:50Z viafid: '75091722' --- _id: 16380a87a889409fbc14e1a28c66bb6b bav: adv10075417 bnf: '11906721' dnb: '118719971' key: HalévyDaniel1872-1962 lc: n88613711 merge: id: 16380a87a889409fbc14e1a28c66bb6b source: viaf type: document nkc: jn20000602773 nla: '000035162625' nlilat: '000059369' ptbnp: '55870' term: Halévy, Daniel, 1872-1962 version: 2013-07-01T14:07:50Z viafid: '14771013' --- _id: 163db3b14fa0101c30dac0219dc57035 bav: adv11760096 dnb: '117566217' key: VasilʹevVP1818-1900 lc: n2001060994 merge: id: 163db3b14fa0101c30dac0219dc57035 source: viaf type: document nla: '000035341551' nlicyr: '000149203' nlilat: '000542016' term: Vasilʹev, V. P., 1818-1900 version: 2013-07-01T14:07:50Z viafid: '97099290' --- _id: 1645b612e8ec735900975143cafa80c4 dnb: '151374074' key: AhlströmStellan1916-1984 merge: id: 1645b612e8ec735900975143cafa80c4 source: viaf type: document selibr: '305989' term: Ahlström, Stellan, 1916-1984 version: 2013-07-01T14:07:50Z viafid: '12293539' --- _id: 165da77647b8aaa501d6773904235df8 key: LipovetskyGilles1944-|CrépusculedudevoirCzech lc: no00072608 merge: id: 165da77647b8aaa501d6773904235df8 source: viaf type: document term: Lipovetsky, Gilles, 1944- | Crépuscule du devoir. Czech version: 2013-07-01T14:07:50Z viafid: '175987148' --- _id: 16642d0fbc0936d2fa014c73facda099 bav: adv10049454 bnf: '12211599' dnb: '131123629' key: Axel-NilssonGöran1907-1999 lc: n81014441 merge: id: 16642d0fbc0936d2fa014c73facda099 source: viaf type: document nla: '000035225638' selibr: '175555' term: Axel-Nilsson, Göran, 1907-1999 version: 2013-07-01T14:07:50Z viafid: '114680398' --- _id: 1664fa15165dfd2ac431cd36700d99f7 dnb: '958800723' key: Eibl-EibesfeldtIrenäus1928-|FremdenfurchtundAusgrenzung merge: id: 1664fa15165dfd2ac431cd36700d99f7 source: viaf type: document term: Eibl-Eibesfeldt, Irenäus 1928- | Fremdenfurcht und Ausgrenzung version: 2013-07-01T14:07:50Z viafid: '189373722' --- _id: 166b2642619c3f32be4de10af8bcb7a9 bav: adv11394839 bnf: '12162484' dnb: '104611928' key: SalačAntonín1885-1960 lc: n81116832 merge: id: 166b2642619c3f32be4de10af8bcb7a9 source: viaf type: document nkc: jk01110324 nla: '000035762819' nlilat: '000439841' term: Salač, Antonín, 1885-1960 version: 2013-07-01T14:07:50Z viafid: '73893731' --- _id: 166d32100061891986d0c0526150f59d bav: adv10228960 bnf: '12001323' dnb: 13044197x key: HauterocheNoëlLebreton1617-1707sieurde lc: no96006187 merge: id: 166d32100061891986d0c0526150f59d source: viaf type: document nkc: mzk2010587601 term: Hauteroche, Noël Lebreton, 1617-1707, sieur de version: 2013-07-01T14:07:50Z viafid: '76326314' --- _id: 167605eac4740d11240ab88f98a9e2d3 key: OllénGunnar1913-|AugustStrindbergEnglish merge: id: 167605eac4740d11240ab88f98a9e2d3 source: viaf type: document nla: '000036573854' term: Ollén, Gunnar, 1913- | August Strindberg. English version: 2013-07-01T14:07:50Z viafid: '177380880' --- _id: 167e39d68c46663035c2e09849a67d54 dnb: '119504545' jpg: '500042604' key: DeSmetLéon1881-1966 lc: nr95018350 merge: id: 167e39d68c46663035c2e09849a67d54 source: viaf type: document term: De Smet, Léon, 1881-1966 version: 2013-07-01T14:07:50Z viafid: '42649910' --- _id: 169193135cee956b1f50b26c611558a0 bne: xx830200 bnf: '12466444' key: LujánPedrode16thcent lc: nr92032310 merge: id: 169193135cee956b1f50b26c611558a0 source: viaf type: document term: Luján, Pedro de, 16th cent version: 2013-07-01T14:07:50Z viafid: '51788419' --- _id: 169460719ca6bc2a3a69b9f28b3861e8 dnb: '103123318' key: PériolasLouisNicolas1785-1859 merge: id: 169460719ca6bc2a3a69b9f28b3861e8 source: viaf type: document term: Périolas, Louis Nicolas 1785-1859 version: 2013-07-01T14:07:50Z viafid: '66872448' --- _id: 1699d72f87ed28e489eaabc088f4aa9a bnf: '12114880' dnb: '118790617' key: PetrovičVeljko1884-1967 lc: n85238984 merge: id: 1699d72f87ed28e489eaabc088f4aa9a source: viaf type: document nkc: jn20000604416 nla: '000036011513' term: Petrovič, Veljko, 1884-1967 version: 2013-07-01T14:07:50Z viafid: '62344891' --- _id: 169f786f380c2b493ac78e76bb3c18c9 dnb: '140453954' key: HöjerJohanAxel1890-1974 lc: n2009182664 merge: id: 169f786f380c2b493ac78e76bb3c18c9 source: viaf type: document selibr: '347011' term: Höjer, Johan Axel, 1890-1974 version: 2013-07-01T14:07:50Z viafid: '44287458' --- _id: 16a07ddfa8ec8dd47c1a18fba5442a9e bav: adv11298524 bnf: '12992829' dnb: '100648371' key: TuetJean-Charles-François1742-1797 merge: id: 16a07ddfa8ec8dd47c1a18fba5442a9e source: viaf type: document term: Tuet, Jean-Charles-François, 1742-1797 version: 2013-07-01T14:07:50Z viafid: '56742836' --- _id: 16ab3bfad877ae19e773c383698c2a64 dnb: '118567594' key: KühnHeinz(1912-1992) lc: n82043645 merge: id: 16ab3bfad877ae19e773c383698c2a64 source: viaf type: document nlilat: '000443545' term: Kühn, Heinz (1912-1992) version: 2013-07-01T14:07:50Z viafid: '32788595' --- _id: 16b8091cd931476cd99b4940a9913a12 bne: xx908302 bnf: '11920677' dnb: '120453800' key: ProcházkaJan1929-1971 lc: n87817531 merge: id: 16b8091cd931476cd99b4940a9913a12 source: viaf type: document nkc: jk01101145 nla: '000035434401' nlilat: '000488074' term: Procházka, Jan, 1929-1971 version: 2013-07-01T14:07:50Z viafid: '19683055' --- _id: 16bd06101f6643bc0c3ccab665f971de bav: adv10085559 bnf: '12592475' dnb: '119042622' key: BourritMarc-Théodore1739-1819 lc: n86869362 merge: id: 16bd06101f6643bc0c3ccab665f971de source: viaf type: document nkc: ola2009522667 nlilat: '000485707' term: Bourrit, Marc-Théodore, 1739-1819 version: 2013-07-01T14:07:50Z viafid: '19797689' --- _id: 16c179aa73d32c276a7bdea636d31853 key: HahnBarbara1952-|JüdinPallasAtheneEnglish lc: n2004028532 merge: id: 16c179aa73d32c276a7bdea636d31853 source: viaf type: document term: Hahn, Barbara, 1952- | Jüdin Pallas Athene. English version: 2013-07-01T14:07:50Z viafid: '185235993' --- _id: 16c4c8185bd28bb7720aef93d8565832 dnb: '117029998' key: MiheličMira1912-1985 lc: nr89001319 merge: id: 16c4c8185bd28bb7720aef93d8565832 source: viaf type: document nkc: xx0018864 term: Mihelič, Mira, 1912-1985 version: 2013-07-01T14:07:50Z viafid: '79389991' --- _id: 16d7a9263c93917139c9869960a07593 bav: adv11471559 bnf: '12314375' dnb: '130310247' key: LabatRené1904-1974 lc: n85801037 merge: id: 16d7a9263c93917139c9869960a07593 source: viaf type: document nla: '000035773623' nlilat: '000477532' term: Labat, René, 1904-1974 version: 2013-07-01T14:07:50Z viafid: '36985661' --- _id: 16dabedcb2bde8779fb1f7025eb077a6 bnf: '12592217' key: BoumédieneHouari1932-1978 lc: n78027600 merge: id: 16dabedcb2bde8779fb1f7025eb077a6 source: viaf type: document nlilat: '000378490' term: Boumédiene, Houari, 1932-1978 version: 2013-07-01T14:07:50Z viafid: '79122917' --- _id: 16dc5056f87dfeb36b8268dda84c0b1a bnf: '14840170' dnb: '130325287' key: MöllerHeinrich1876-1958 lc: no92015928 merge: id: 16dc5056f87dfeb36b8268dda84c0b1a source: viaf type: document nla: '000049788190' nlilat: '000554497' term: Möller, Heinrich, 1876-1958 version: 2013-07-01T14:07:50Z viafid: '30642232' --- _id: 16e1e9085f51b637bc7d7d0f6a347d6a bnf: '10744417' dnb: '101072007' key: RivarolClaudeFrançois1762-1848 lc: nr93033399 merge: id: 16e1e9085f51b637bc7d7d0f6a347d6a source: viaf type: document nla: '000049287251' term: Rivarol, Claude François, 1762-1848 version: 2013-07-01T14:07:50Z viafid: '41831542' --- _id: 16f4268692ad4d851f46291a20c67c22 bnf: '15687887' dnb: '119250594' key: AksakovKonstantinSergeevič1817-1860 lc: n81082938 merge: id: 16f4268692ad4d851f46291a20c67c22 source: viaf type: document nkc: jn19990210021 nla: '000036032565' nlilat: '000438146' selibr: '357984' term: Aksakov, Konstantin Sergeevič, 1817-1860 version: 2013-07-01T14:07:50Z viafid: '17552092' --- _id: 170e0fd1ed9f630857e01ad104564453 bav: adv12363003 key: FausbøllAnnieIb1876 lc: no2002048318 merge: id: 170e0fd1ed9f630857e01ad104564453 source: viaf type: document term: Fausbøll, Annie I., b. 1876 version: 2013-07-01T14:07:50Z viafid: '58749076' --- _id: 17148815f43f535529ffa45ad1e87a36 bnf: '12309962' dnb: 12884762x key: FélibiendesAvauxJean-François1658-1733 lc: n82017901 merge: id: 17148815f43f535529ffa45ad1e87a36 source: viaf type: document nkc: mzk2009533633 nlilat: '000442377' term: Félibien des Avaux, Jean-François 1658-1733 version: 2013-07-01T14:07:50Z viafid: '100849123' --- _id: 1717844384f42303214ba3f5b207637f bav: adv10132101 bne: xx1149235 bnf: '11894146' dnb: '118638017' egaxa: vtls001056339 jpg: '500001046' key: BrontëEmily1818-1848 lc: n79018755 merge: id: 1717844384f42303214ba3f5b207637f source: viaf type: document nkc: jn19990201021 nla: '000035022405' nlilat: '000025295' ptbnp: '17611' selibr: '179324' swnl: vtls001836718 term: Brontë, Emily, 1818-1848 version: 2013-07-01T14:07:50Z viafid: '97097302' --- _id: 17194bc0778484f7e85f7211c29944b3 dnb: '174336713' jpg: '500088616' key: ThiolletFrançois1782-1864 lc: n86113819 merge: id: 17194bc0778484f7e85f7211c29944b3 source: viaf type: document ptbnp: '256450' term: Thiollet, François, 1782-1864 version: 2013-07-01T14:07:50Z viafid: '70415504' --- _id: 1724c8201d4cbe7638a0336182e24981 bav: adv10018578 bne: xx1151168 bnf: '11904435' dnb: 11853789x jpg: '500100875' key: GautierPierre-Jules-Théophile1811-1872 lc: n79079291 merge: id: 1724c8201d4cbe7638a0336182e24981 source: viaf type: document nkc: jn19990002583 nla: '000035115800' nlilat: '000051647' ptbnp: '32006' selibr: '188035' term: Gautier, Pierre-Jules-Théophile, 1811-1872 version: 2013-07-01T14:07:50Z viafid: '96428598' --- _id: 1729c43d3a1941553684987a2c083fc7 bav: adv10872380 bnf: '12462984' dnb: '133642054' jpg: '500276515' key: DelaMésangèrePierre1761-1831 lc: nr99005421 merge: id: 1729c43d3a1941553684987a2c083fc7 source: viaf type: document nkc: mzk2009496154 ptbnp: '174485' term: De la Mésangère, Pierre, 1761-1831 version: 2013-07-01T14:07:50Z viafid: '29630794' --- _id: 17334e6df7aad6212dc4cc97ce58a33d bnf: '11654393' key: Casimir-PérierClaude1880-1915 lc: no2011142329 merge: id: 17334e6df7aad6212dc4cc97ce58a33d source: viaf type: document term: Casimir-Périer, Claude, 1880-1915 version: 2013-07-01T14:07:50Z viafid: '29528044' --- _id: 173534d114dbe7ce88a4e4d673f3458a bav: adv10308686 bnf: '11989368' dnb: '142034088' key: HenryFrançoise1902-1982 lc: n50029565 merge: id: 173534d114dbe7ce88a4e4d673f3458a source: viaf type: document term: Henry, Françoise, 1902-1982 version: 2013-07-01T14:07:50Z viafid: '39386390' --- _id: 1736ec25122f75005cbf9232ba7c98b7 bnf: '13009142' dnb: '102278105' key: Étienne-GalloisAuguste-Alphonse1809-1890 lc: nr00003940 merge: id: 1736ec25122f75005cbf9232ba7c98b7 source: viaf type: document selibr: '269676' term: Étienne-Gallois, Auguste-Alphonse, 1809-1890 version: 2013-07-01T14:07:50Z viafid: '73986026' --- _id: 173edb77c472b13158a6978561957de7 key: FontaineJean1936-|Fihrisal-tārīkhīlil-muʼallafātal-Tūnisīyah lc: n89239712 merge: id: 173edb77c472b13158a6978561957de7 source: viaf type: document term: Fontaine, Jean, 1936- | Fihris al-tārīkhī lil-muʼallafāt al-Tūnisīyah version: 2013-07-01T14:07:50Z viafid: '174650569' --- _id: 17496391d16df8f85dc0fc72aa3d2707 key: DelsolChantal1947-|ElogedelasingularitéEnglish lc: n2007055496 merge: id: 17496391d16df8f85dc0fc72aa3d2707 source: viaf type: document term: Delsol, Chantal, 1947- | Eloge de la singularité English version: 2013-07-01T14:07:50Z viafid: '185257100' --- _id: 1752ca60ae3896fc09fb9a52b7960ac8 bnf: '16579307' dnb: 15912834x key: LeudetThéodoreÉmile1825-1887 merge: id: 1752ca60ae3896fc09fb9a52b7960ac8 source: viaf type: document term: Leudet, Théodore Émile, 1825-1887 version: 2013-07-01T14:07:50Z viafid: '218218852' --- _id: 175342aa8e55431fbf8de8a7ab308505 dnb: '1001222393' key: UgrešićDubravka1949-|Ministarstvoboli merge: id: 175342aa8e55431fbf8de8a7ab308505 source: viaf type: document term: Ugrešić, Dubravka 1949- | Ministarstvo boli version: 2013-07-01T14:07:50Z viafid: '193520994' --- _id: 175554de4c4b126f231d939952ef9d58 key: HoyoisEmmanuelHenriFrançois1799-1877 lc: nr97038904 merge: id: 175554de4c4b126f231d939952ef9d58 source: viaf type: document term: Hoyois, Emmanuel Henri François, 1799-1877 version: 2013-07-01T14:07:50Z viafid: '122139049' --- _id: 1760992b30749262caa72bcf33281a15 bav: adv10262139 dnb: '1013334833' key: KösterAugust1873-1935 lc: nr97038180 merge: id: 1760992b30749262caa72bcf33281a15 source: viaf type: document nla: '000035681015' nlilat: '000532989' term: Köster, August, 1873-1935 version: 2013-07-01T14:07:50Z viafid: '2827192' --- _id: 176decd2ace088214af967f60a11e4dd bav: adv11384982 bne: xx1110784 bnf: '11927116' dnb: '118833243' key: TristánFlora1803-1844 lc: n80094560 merge: id: 176decd2ace088214af967f60a11e4dd source: viaf type: document nkc: skuk0001401 nla: '000036310248' nlilat: '000200478' selibr: '250407' term: Tristán, Flora, 1803-1844 version: 2013-07-01T14:07:50Z viafid: '44306184' --- _id: 177ce4e49462aa3983254035a6314a73 bnf: '11999674' dnb: '100658776' key: TurpindeCrisséLancelot1709-1799 lc: nr93040265 merge: id: 177ce4e49462aa3983254035a6314a73 source: viaf type: document nkc: mzk2008486696 term: Turpin de Crissé, Lancelot 1709-1799 version: 2013-07-01T14:07:50Z viafid: '41849779' --- _id: 1782bdf78dfc6c7644e41226dbc15618 dnb: '116002069' key: LaspeyresÉtienne1834-1913 merge: id: 1782bdf78dfc6c7644e41226dbc15618 source: viaf type: document term: Laspeyres, Étienne 1834-1913 version: 2013-07-01T14:07:50Z viafid: '47502749' --- _id: 1785cd28158ffb38594043c839532f82 key: AiraCésar1949-|Selections2004 lc: no2006073509 merge: id: 1785cd28158ffb38594043c839532f82 source: viaf type: document term: Aira, César, 1949- | Selections. 2004 version: 2013-07-01T14:07:50Z viafid: '181309847' --- _id: 1787efaa9dcbee4abb6d0a6555764879 bnf: '12685113' dnb: '172145600' key: HöwelerMarijke1938-2006 lc: no90008256 merge: id: 1787efaa9dcbee4abb6d0a6555764879 source: viaf type: document nla: '000035890718' term: Höweler, Marijke 1938-2006 version: 2013-07-01T14:07:50Z viafid: '27189364' --- _id: 178cb999ebbd2e6eb43ecaaf0d15a25b bav: adv10010389 bnf: '10233063' dnb: '172841968' key: BoréEugène1809-1877 lc: n85055606 merge: id: 178cb999ebbd2e6eb43ecaaf0d15a25b source: viaf type: document nlilat: '000468248' term: Boré, Eugène, 1809-1877 version: 2013-07-01T14:07:50Z viafid: '27053093' --- _id: 179ec2ad154d45479bdbab9163777a40 bav: adv11448013 bne: xx1712073 bnf: '14762904' dnb: '116549394' key: HausswaldGünter1908-1974 lc: n82059303 merge: id: 179ec2ad154d45479bdbab9163777a40 source: viaf type: document nkc: jx20050922010 nla: '000035178829' ptbnp: '1276314' term: Hausswald, Günter, 1908-1974 version: 2013-07-01T14:07:50Z viafid: '22404396' --- _id: 179f9f325962eb26c3dda97eab0106b0 bnf: '14604587' dnb: '119243326' key: VanAlphenHiëronymus1746-1803 lc: nr93005775 merge: id: 179f9f325962eb26c3dda97eab0106b0 source: viaf type: document term: Van Alphen, Hiëronymus, 1746-1803 version: 2013-07-01T14:07:50Z viafid: '39627148' --- _id: 17b1c7135b4e0d09bd4bc8b6f6b44df0 bav: adv10110713 key: DevilleÉtienneb1873 lc: no96015941 merge: id: 17b1c7135b4e0d09bd4bc8b6f6b44df0 source: viaf type: document term: Deville, Étienne, b. 1873 version: 2013-07-01T14:07:50Z viafid: '74217527' --- _id: 17b1e6a1074f8f57ee317b66335a7392 bnf: '12760347' dnb: '121045854' jpg: '500104863' key: Goupil-FesquetFrédéricAugusteAntoine1817-1878 lc: n2001066040 merge: id: 17b1e6a1074f8f57ee317b66335a7392 source: viaf type: document nlilat: '000055678' term: Goupil-Fesquet, Frédéric Auguste Antoine, 1817-1878 version: 2013-07-01T14:07:50Z viafid: '9194525' --- _id: 17b6260c094511e5b8e3082b786e6b1b bav: adv10061460 bnf: '11891041' dnb: '118658042' key: BelleauRémy1527?-1577 lc: n86048999 merge: id: 17b6260c094511e5b8e3082b786e6b1b source: viaf type: document nkc: jo2004214982 nla: '000035017079' nlilat: '000017564' ptbnp: '166947' term: Belleau, Rémy, 1527?-1577 version: 2013-07-01T14:07:50Z viafid: '12304848' --- _id: 17b860672672386ee08ada56f28ad5e8 dnb: '101448635' key: DeBlécourtAnneSiberdinus1873-1941 lc: n80107426 merge: id: 17b860672672386ee08ada56f28ad5e8 source: viaf type: document nla: '000036563797' term: De Blécourt, Anne Siberdinus, 1873-1941 version: 2013-07-01T14:07:50Z viafid: '20046285' --- _id: 17bb5c3ddbc00372b60343e23fd39189 key: DrakulićSlavenka1949-|BalkanexpressSerbo-Croatian lc: no98081648 merge: id: 17bb5c3ddbc00372b60343e23fd39189 source: viaf type: document term: Drakulić, Slavenka, 1949- | Balkan express. Serbo-Croatian version: 2013-07-01T14:07:50Z viafid: '175612993' --- _id: 17c73a4ce9a8b77473ee6837b7774da1 bne: xx844021 bnf: '11999953' dnb: '119350858' key: MaurínJoaquín1897-1973 lc: n50007004 merge: id: 17c73a4ce9a8b77473ee6837b7774da1 source: viaf type: document nla: '000035764974' nlilat: '000401258' term: Maurín, Joaquín, 1897-1973 version: 2013-07-01T14:07:50Z viafid: '59092660' --- _id: 17cbc0ec6b5cb91a30b4319eae279228 bav: adv10207268 bne: xx1074616 bnf: '11910344' dnb: '122567692' key: LabandeEdmond-René1908-1992 lc: n50043392 merge: id: 17cbc0ec6b5cb91a30b4319eae279228 source: viaf type: document nkc: jcu2012720638 nla: '000035286992' nlilat: '000410465' ptbnp: '179427' term: Labande, Edmond-René, 1908-1992 version: 2013-07-01T14:07:50Z viafid: '56612170' --- _id: 17d853868d565face0791be7d987775c bnf: '11911818' dnb: '118779729' key: LeTourneurPierre-Prime-Félicien1736-1788 lc: nr91002394 merge: id: 17d853868d565face0791be7d987775c source: viaf type: document nkc: mzk2010588940 nla: '000035724774' selibr: '313837' term: Le Tourneur, Pierre-Prime-Félicien, 1736-1788 version: 2013-07-01T14:07:50Z viafid: '49227979' --- _id: 17e2def720728af8f2de67028e4e1db4 bav: adv11029641 bne: xx1010421 bnf: '12175912' dnb: '157763234' key: MartínezdeToledoAlfonso1398?-1466 lc: n79038513 merge: id: 17e2def720728af8f2de67028e4e1db4 source: viaf type: document nla: '000035804008' nlilat: '000418631' selibr: '195266' term: Martínez de Toledo, Alfonso, 1398?-1466 version: 2013-07-01T14:07:50Z viafid: '36959911' --- _id: 17e7d9eef055cf815c62a64be05419c7 bnf: '12541969' key: TextorBenoît16thcent lc: n92069935 merge: id: 17e7d9eef055cf815c62a64be05419c7 source: viaf type: document term: Textor, Benoît, 16th cent version: 2013-07-01T14:07:50Z viafid: '69042714' --- _id: 17e859080dfe93c28640b213ab02f416 dnb: '119354179' key: PtáčníkKarel1921-2002 lc: n88141623 merge: id: 17e859080dfe93c28640b213ab02f416 source: viaf type: document nkc: jk01101653 nlilat: '000108158' term: Ptáčník, Karel, 1921-2002 version: 2013-07-01T14:07:50Z viafid: '22949364' --- _id: 17fd0993d35f8ffeae8715c51f9150ad bav: adv10286578 bnf: '12241162' dnb: '104039299' key: JoannePaulBénigne1847-1922 lc: no94033709 merge: id: 17fd0993d35f8ffeae8715c51f9150ad source: viaf type: document nlilat: '000518995' ptbnp: '92410' selibr: '301851' term: Joanne, Paul Bénigne, 1847-1922 version: 2013-07-01T14:07:50Z viafid: '19733280' --- _id: 17fdfa296c35c8f989e74d57ca76ada3 key: KrügerMichael1943-|EndedesRomansEnglish lc: n91115146 merge: id: 17fdfa296c35c8f989e74d57ca76ada3 source: viaf type: document term: Krüger, Michael, 1943- | Ende des Romans. English version: 2013-07-01T14:07:50Z viafid: '176679172' --- _id: 17ffdd74dad70ee996dc568abc1b3f4d bav: adv11866255 dnb: '118584952' key: MüllerHeinrich1880-1970 lc: n84126561 merge: id: 17ffdd74dad70ee996dc568abc1b3f4d source: viaf type: document term: Müller, Heinrich, 1880-1970 version: 2013-07-01T14:07:50Z viafid: '20472774' --- _id: 18094d8791ce00908a4b03d212e217a0 bav: adv10260354 bnf: '12159364' dnb: '118526243' key: DöllingerIgnaz1770-1841Beziehungfamiliaer lc: n50082843 merge: id: 18094d8791ce00908a4b03d212e217a0 source: viaf type: document nkc: mzk2009512573 nla: '000035040091' nlilat: '000041799' ptbnp: '37769' term: Döllinger, Ignaz, 1770-1841, Beziehung familiaer version: 2013-07-01T14:07:50Z viafid: '89020124' --- _id: 180afecf717c143dcd25c485e13197cb bav: adv12151756 bnf: '11911703' dnb: '172224969' key: LeMercierdelaRivièrePierre-Paul1719or20-ca1794 lc: n87912819 merge: id: 180afecf717c143dcd25c485e13197cb source: viaf type: document nkc: mzk2009509952 nla: '000035817900' nlilat: '000490552' selibr: '298487' swnl: vtls004330502 term: Le Mercier de la Rivière, Pierre-Paul, 1719 or 20-ca. 1794 version: 2013-07-01T14:07:50Z viafid: '31999036' --- _id: 1811817698b000952f4ce7b739ac3ef6 bav: adv10148163 bnf: '12145443' dnb: '119027178' key: BüttnerHeinrich1908-1970 lc: nr90004128 merge: id: 1811817698b000952f4ce7b739ac3ef6 source: viaf type: document nlilat: '000524211' term: Büttner, Heinrich, 1908-1970 version: 2013-07-01T14:07:50Z viafid: '68966074' --- _id: 1817e417f95551160ac8187eb8bc14c1 bav: adv10880732 bne: xx917886 bnf: '11994246' dnb: '115611606' key: DeVasconcellosJLeite1858-1941(JoséLeite) lc: n82142735 merge: id: 1817e417f95551160ac8187eb8bc14c1 source: viaf type: document nkc: jx20080430005 nlilat: '000243130' ptbnp: '26081' term: De Vasconcellos, J. Leite, 1858-1941, (José Leite) version: 2013-07-01T14:07:50Z viafid: '7400155' --- _id: 1837422fc00166bf3d567e7563186d57 bav: adv10029081 bne: xx897842 bnf: '13890952' dnb: '118646192' key: AuberDaniel-François-Esprit1782-1871 lc: n80079937 merge: id: 1837422fc00166bf3d567e7563186d57 source: viaf type: document nkc: jn20001227475 nla: '000035444149' nlilat: '000429355' ptbnp: '99098' selibr: '275382' swnl: vtls001778208 term: Auber, Daniel-François-Esprit, 1782-1871 version: 2013-07-01T14:07:50Z viafid: '7573044' --- _id: 183878caf067d9325659d1ede41e2108 bav: adv11108428 dnb: '119096773' key: LüersFriedrichb1892 lc: n2002079665 merge: id: 183878caf067d9325659d1ede41e2108 source: viaf type: document nlilat: '000545097' term: Lüers, Friedrich, b. 1892 version: 2013-07-01T14:07:50Z viafid: '102329487' --- _id: 183a7aa3b200c80f87e70ecbff672b00 bnf: '12560023' dnb: '118699962' key: HackländerFriedrichWilhelm1816-1877 lc: no89004614 merge: id: 183a7aa3b200c80f87e70ecbff672b00 source: viaf type: document nkc: mzk2003194892 nla: '000035629156' nlilat: '000295733' term: Hackländer, Friedrich Wilhelm, 1816-1877 version: 2013-07-01T14:07:50Z viafid: '2588488' --- _id: 183e63927d8ba0a95a50bfec0f3c0dff bnf: '12127833' dnb: '100345751' key: FaganChristopheBarthélemy1702-1755 lc: n82131737 merge: id: 183e63927d8ba0a95a50bfec0f3c0dff source: viaf type: document nla: '000035648874' term: Fagan, Christophe Barthélemy, 1702-1755 version: 2013-07-01T14:07:50Z viafid: '76350365' --- _id: 1846196918375f9e9a90231b48553208 bnf: '12478658' key: RémondAndré1912-1998 lc: no2004078136 merge: id: 1846196918375f9e9a90231b48553208 source: viaf type: document term: Rémond, André, 1912-1998 version: 2013-07-01T14:07:50Z viafid: '22242742' --- _id: 18470f6621d6b509ea86af2148f681f5 bnf: '12758962' dnb: '181019396' key: FontanèsErnest1828-1903 merge: id: 18470f6621d6b509ea86af2148f681f5 source: viaf type: document term: Fontanès, Ernest, 1828-1903 version: 2013-07-01T14:07:50Z viafid: '64130613' --- _id: 184913abce504a1b245a9ea968b7903a dnb: '116912030' key: GüntherAugustFriedrich1806-1871 merge: id: 184913abce504a1b245a9ea968b7903a source: viaf type: document term: Günther, August Friedrich, 1806-1871 version: 2013-07-01T14:07:50Z viafid: '776218' --- _id: 1857ba2facca1508982b951c25d0332d bne: xx1147778 bnf: '15072574' dnb: '126203997' key: BirabeauAndré1890-1974 lc: no2007116880 merge: id: 1857ba2facca1508982b951c25d0332d source: viaf type: document ptbnp: '219156' term: Birabeau, André, 1890-1974 version: 2013-07-01T14:07:50Z viafid: '59374712' --- _id: 1862f3fe48506fa0f15336b4f01b22df dnb: 17408420x key: GörnerCarlAugust1806-1884 merge: id: 1862f3fe48506fa0f15336b4f01b22df source: viaf type: document term: Görner, Carl August 1806-1884 version: 2013-07-01T14:07:50Z viafid: '243662523' --- _id: 18648749c2147f2f7f5be8bc5c46f00e dnb: '104327952' key: BüschJohannGeorg1728-1800 lc: n80125244 merge: id: 18648749c2147f2f7f5be8bc5c46f00e source: viaf type: document nkc: mzk2009528274 nlilat: '000431533' selibr: '321990' term: Büsch, Johann Georg, 1728-1800 version: 2013-07-01T14:07:50Z viafid: '76752134' --- _id: 18770c5380e897336e5f1440a7adbc23 bnf: '16613754' dnb: '118547208' key: HaußmannConrad1857-1922 lc: nr89003227 merge: id: 18770c5380e897336e5f1440a7adbc23 source: viaf type: document nlilat: '000523214' term: Haußmann, Conrad 1857-1922 version: 2013-07-01T14:07:50Z viafid: '27863077' --- _id: 1878d1d2f3fce433aeaac57c6476176d bnf: '12511996' dnb: '117656348' key: SélisNicolas-Joseph1737-1802 lc: nr93035607 merge: id: 1878d1d2f3fce433aeaac57c6476176d source: viaf type: document nkc: jo2004214983 nla: '000035462525' term: Sélis, Nicolas-Joseph, 1737-1802 version: 2013-07-01T14:07:50Z viafid: '29639918' --- _id: 187f31bf27cec94cc8157d8657e8073d key: Gor'kijMaksim(1868-1936)|Žizn'KlimaSamgina(pol) merge: id: 187f31bf27cec94cc8157d8657e8073d source: viaf type: document term: Gor'kij, Maksim (1868-1936). | Žizn' Klima Samgina (pol.) version: 2013-07-01T14:07:50Z viafid: '293805497' --- _id: 1880db00cb989c2b7bfafd693445659a bnf: '12104627' dnb: '118807560' key: VinogradovViktorVladimirovič1895-1969 lc: n81040702 merge: id: 1880db00cb989c2b7bfafd693445659a source: viaf type: document nkc: jn19990210652 nla: '000036531850' nlicyr: '000149330' selibr: '99944' term: Vinogradov, Viktor Vladimirovič, 1895-1969 version: 2013-07-01T14:07:50Z viafid: '17252709' --- _id: 1883bbb111129007c6a442c01f79bf8c bav: adv12362355 bnf: '12462106' dnb: '119114771' key: LaBourdonnaisBertrand-FrançoisMahé1699-1753 lc: n87817647 merge: id: 1883bbb111129007c6a442c01f79bf8c source: viaf type: document nla: '000036002025' nlilat: '000488087' term: La Bourdonnais, Bertrand-François Mahé, , 1699-1753 version: 2013-07-01T14:07:50Z viafid: '5028896' --- _id: 18894957b123cb8bfd6ae0a9427067f2 bnf: '11914216' dnb: 11857695x key: Mandel'štamNadežda1899-1980 lc: n80138751 merge: id: 18894957b123cb8bfd6ae0a9427067f2 source: viaf type: document nkc: jn19990210403 nla: '000035325228' nlicyr: '000153352' nlilat: '000088340' selibr: '74051' term: Mandel'štam, Nadežda, 1899-1980 version: 2013-07-01T14:07:50Z viafid: '14318' --- _id: 189177e56cb23e254643ba132d736554 bav: adv11390715 bnf: '13002928' dnb: '101845693' key: BanningÉmile1836-1898 lc: no2012043860 merge: id: 189177e56cb23e254643ba132d736554 source: viaf type: document ptbnp: '178214' term: Banning, Émile, 1836-1898 version: 2013-07-01T14:07:50Z viafid: '10222960' --- _id: 1892d7c5f989624c9ed4c46a2892b044 dnb: '140892818' key: AttorpsGösta1899-1976 merge: id: 1892d7c5f989624c9ed4c46a2892b044 source: viaf type: document nlilat: '000012991' selibr: '213945' term: Attorps, Gösta, 1899-1976 version: 2013-07-01T14:07:50Z viafid: '74292181' planet_ids.txt100644000765000024 1714742222207 16602 0ustar00nsteenlastaff000000000000Catmandu-1.2024/tEarth Sun Moon Catmandu-Hits.t100644000765000024 251014742222207 16605 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t#!/usr/bin/env perl use strict; use warnings; use Test::More; use Test::Exception; my $pkg; BEGIN { $pkg = 'Catmandu::Hits'; use_ok $pkg; } require_ok $pkg; my $data = [(1 .. 100)]; my $h = Catmandu::Hits->new(start => 0, limit => 10, total => 100, hits => $data); can_ok $h, 'start'; can_ok $h, 'limit'; can_ok $h, 'total'; can_ok $h, 'maximum_offset'; can_ok $h, 'hits'; can_ok $h, 'size'; throws_ok {Catmandu::Hits->new(limit => 10, total => 100, hits => $data)} qr/missing required arguments: start/i; throws_ok {Catmandu::Hits->new(start => 0, total => 100, hits => $data)} qr/missing required arguments: limit/i; throws_ok {Catmandu::Hits->new(start => 0, limit => 10, hits => $data)} qr/missing required arguments: total/i; throws_ok {Catmandu::Hits->new(start => 0, limit => 10, total => 100)} qr/missing required arguments: hits/i; ok $h->does('Catmandu::Iterable'), 'is an Iterable'; ok $h->does('Catmandu::Paged'), 'is a Paged'; is_deeply $h->hits, $data, 'test content'; ok $h->more, 'test mode'; is $h->limit, 10, 'test limit'; is $h->size, 100, 'test size'; is $h->start, 0, 'test start'; is $h->first, 1, 'test first'; my $sum = 0; $h->each(sub {$sum += shift}); is $sum, 5050, 'test each'; is_deeply $h->to_array, [(1 .. 100)], 'test to_array'; is $h->generator->(), 1, 'test generator'; done_testing; Catmandu-Sane.t100644000765000024 27214742222207 16547 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t#!/usr/bin/env perl use strict; use warnings; use Test::More; use Test::Exception; my $pkg; BEGIN { $pkg = 'Catmandu::Sane'; use_ok $pkg; } require_ok $pkg; done_testing 2; Catmandu-Util.t100644000765000024 4055414742222207 16645 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t#!/usr/bin/env perl use strict; use warnings; use Test::More; use Test::Exception; use IO::Handle; use File::Spec; use utf8; use feature 'state'; my $pkg; BEGIN { $pkg = 'Catmandu::Util'; use_ok $pkg; } require_ok $pkg; { package T::ImportNothing; use Catmandu::Util; package T::ImportAll; use Catmandu::Util qw(:all); package T::ImportIs; use Catmandu::Util qw(:is); package T::ImportCheck; use Catmandu::Util qw(:check); package T::ImportMisc; use Catmandu::Util qw(:misc); package T::ImportIo; use Catmandu::Util qw(:io); package T::ImportData; use Catmandu::Util qw(:data); package T::ImportArray; use Catmandu::Util qw(:array); package T::ImportHash; use Catmandu::Util qw(:hash); package T::ImportString; use Catmandu::Util qw(:string); package T::ImportHuman; use Catmandu::Util qw(:human); package T::ImportXML; use Catmandu::Util qw(:xml); package T::Foo; use Moo; sub bar {'bar'} } for my $sym (qw(same different)) { can_ok $pkg, "is_$sym"; can_ok $pkg, "check_$sym"; can_ok 'T::ImportAll', "is_$sym"; can_ok 'T::ImportAll', "check_$sym"; ok !T::ImportNothing->can("is_$sym"); ok !T::ImportNothing->can("check_$sym"); can_ok 'T::ImportIs', "is_$sym"; ok !T::ImportCheck->can("is_$sym"); can_ok 'T::ImportCheck', "check_$sym"; ok !T::ImportIs->can("check_$sym"); } for my $sym ( qw(able instance invocant ref scalar_ref array_ref hash_ref code_ref regex_ref glob_ref value string number integer natural positive) ) { can_ok $pkg, "is_$sym"; can_ok $pkg, "is_maybe_$sym"; can_ok $pkg, "check_$sym"; can_ok $pkg, "check_maybe_$sym"; can_ok 'T::ImportAll', "is_$sym"; can_ok 'T::ImportAll', "is_maybe_$sym"; can_ok 'T::ImportAll', "check_$sym"; can_ok 'T::ImportAll', "check_maybe_$sym"; ok !T::ImportNothing->can("is_$sym"); ok !T::ImportNothing->can("is_maybe_$sym"); ok !T::ImportNothing->can("check_$sym"); ok !T::ImportNothing->can("check_maybe_$sym"); can_ok 'T::ImportIs', "is_$sym"; can_ok 'T::ImportIs', "is_maybe_$sym"; ok !T::ImportCheck->can("is_$sym"); ok !T::ImportCheck->can("is_maybe_$sym"); can_ok 'T::ImportCheck', "check_$sym"; can_ok 'T::ImportCheck', "check_maybe_$sym"; ok !T::ImportIs->can("check_$sym"); ok !T::ImportIs->can("check_maybe_$sym"); # autovivication test my $arr_ref = []; my $hash_ref = {arr_ref => $arr_ref}; my $name = "is_$sym"; my $sub_ref = do { no strict 'refs'; \&{"Catmandu::Util::$name"}; }; $sub_ref->($hash_ref->{arr_ref}->[@$arr_ref]); is_deeply $hash_ref, {arr_ref => []}, "no autovivication in $name"; } { my $val; lives_ok {Catmandu::Util::check_maybe_regex_ref($val)}; $val = qr/re/; lives_ok {Catmandu::Util::check_regex_ref($val)}; } for my $sym (qw(require_package use_lib)) { can_ok $pkg, $sym; ok !T::ImportNothing->can($sym); can_ok 'T::ImportAll', $sym; can_ok 'T::ImportMisc', $sym; } for my $sym (qw(io read_file read_yaml read_json)) { can_ok $pkg, $sym; ok !T::ImportNothing->can($sym); can_ok 'T::ImportAll', $sym; can_ok 'T::ImportIo', $sym; } for my $sym (qw(parse_data_path get_data set_data delete_data data_at)) { can_ok $pkg, $sym; ok !T::ImportNothing->can($sym); can_ok 'T::ImportAll', $sym; can_ok 'T::ImportData', $sym; } for my $sym ( qw(array_exists array_group_by array_pluck array_to_sentence array_sum array_includes array_any array_uniq array_split) ) { can_ok $pkg, $sym; ok !T::ImportNothing->can($sym); can_ok 'T::ImportAll', $sym; can_ok 'T::ImportArray', $sym; } for my $sym (qw(hash_merge)) { can_ok $pkg, $sym; ok !T::ImportNothing->can($sym); can_ok 'T::ImportAll', $sym; can_ok 'T::ImportHash', $sym; } for my $sym (qw(as_utf8 trim capitalize)) { can_ok $pkg, $sym; ok !T::ImportNothing->can($sym); can_ok 'T::ImportAll', $sym; can_ok 'T::ImportString', $sym; } for my $sym (qw(human_number human_content_type human_byte_size)) { can_ok $pkg, $sym; ok !T::ImportNothing->can($sym); can_ok 'T::ImportAll', $sym; can_ok 'T::ImportHuman', $sym; } for my $sym (qw(xml_declaration xml_escape)) { can_ok $pkg, $sym; ok !T::ImportNothing->can($sym); can_ok 'T::ImportAll', $sym; can_ok 'T::ImportXML', $sym; } { my $coderef = sub { state $counter = 0; return "Count: $counter\n" if $counter++ < 5; }; my $io = Catmandu::Util::io($coderef, mode => 'r'); ok $io, 'io from code_ref read'; is $io->getline(), "Count: 1\n", 'getline'; } { my $coderef = sub { my $line = shift; return 1; }; my $io = Catmandu::Util::io($coderef, mode => 'w'); ok $io, 'io from code_ref write'; ok $io->print("Test"), 'print'; } { my $io = Catmandu::Util::io(IO::File->new("< Changes")); ok $io, 'io IO::Handle instance'; } { my $test = <new("< t/russian.txt"); is Catmandu::Util::read_io($io), $test, 'read_io'; } { my $test = < "ვეპხის ტყაოსანი შოთა რუსთაველი" }, 'read_yaml'; } { is_deeply Catmandu::Util::read_json("t/small.json"), {"hello" => "ვეპხის ტყაოსანი შოთა რუსთაველი" }, 'read_json'; } is Catmandu::Util::join_path( "/this/..", "./is", "..", "./a/../weird/path", "./../../isnt/../it" ), File::Spec->catfile("/it"), 'join_path'; is Catmandu::Util::normalize_path( "/this/../is/../a/../weird/path/../../isnt/../it"), File::Spec->catfile("/it"), 'normalize_path'; is Catmandu::Util::segmented_path( "12345678", segment_size => 2, base_path => "/x" ), File::Spec->catfile("/x/12/34/56/78"), 'segmented_path'; is_deeply [Catmandu::Util::parse_data_path("foo.bar.x")], [['foo', 'bar'], "x"], "parse_data_path"; is Catmandu::Util::get_data({foo => 'bar'}, 'foo'), 'bar', 'get_data(foo)'; ok !Catmandu::Util::get_data({foo => 'bar'}, 'foo2'), 'get_data(foo2)'; ok !Catmandu::Util::get_data([qw(0 1 2)], 3), 'get_data(3)'; is Catmandu::Util::get_data([qw(0 1 2)], 1), '1', 'get_data(1)'; is Catmandu::Util::get_data([qw(0 1 2)], '$first'), '0', 'get_data($first)'; is Catmandu::Util::get_data([qw(0 1 2)], '$last'), '2', 'get_data($last)'; is_deeply [Catmandu::Util::get_data([qw(0 1 2)], '*')], [qw(0 1 2)], 'get_data(*)'; { my $data = {foo => 'bar'}; Catmandu::Util::set_data($data, 'foo', 'bar2'); is_deeply $data, {foo => 'bar2'}, 'set_data 1'; } { my $data = [qw(0 1 2)]; Catmandu::Util::set_data($data, 0, 'bar'); is_deeply $data, [qw(bar 1 2)], 'set_data 2'; } { my $data = [qw(0 1 2)]; Catmandu::Util::set_data($data, '$first', 'bar'); is_deeply $data, [qw(bar 1 2)], 'set_data 3'; } { my $data = [qw(0 1 2)]; Catmandu::Util::set_data($data, '$last', 'bar'); is_deeply $data, [qw(0 1 bar)], 'set_data 4'; } { my $data = [qw(0 1 2)]; Catmandu::Util::set_data($data, '$prepend', 'bar'); is_deeply $data, [qw(bar 0 1 2)], 'set_data 5'; } { my $data = [qw(0 1 2)]; Catmandu::Util::set_data($data, '$append', 'bar'); is_deeply $data, [qw(0 1 2 bar)], 'set_data 6'; } { my $data = [qw(0 1 2)]; Catmandu::Util::set_data($data, '*', 'bar', 'bar', 'bar'); is_deeply $data, [qw(bar bar bar)], 'set_data 7'; } { my $data = [qw(0 1 2)]; Catmandu::Util::set_data($data, 'foo', 'bar'); is_deeply $data, [qw(0 1 2)], 'set_data 8'; } { my $data = undef; Catmandu::Util::set_data($data, 'foo2', 'bar2'); is_deeply $data, undef, 'set_data 9'; } { my $data = {foo => 'bar'}; Catmandu::Util::set_data($data, 'foo', 'bar2'); is_deeply $data, {foo => 'bar2'}, 'set_data 1'; } { my $data = [qw(0 1 2)]; Catmandu::Util::set_data($data, 0, 'bar'); is_deeply $data, [qw(bar 1 2)], 'set_data 2'; } { my $data = [qw(0 1 2)]; Catmandu::Util::set_data($data, '$first', 'bar'); is_deeply $data, [qw(bar 1 2)], 'set_data 3'; } { my $data = [qw(0 1 2)]; Catmandu::Util::set_data($data, '$last', 'bar'); is_deeply $data, [qw(0 1 bar)], 'set_data 4'; } { my $data = [qw(0 1 2)]; Catmandu::Util::set_data($data, '$prepend', 'bar'); is_deeply $data, [qw(bar 0 1 2)], 'set_data 5'; } { my $data = [qw(0 1 2)]; Catmandu::Util::set_data($data, '$append', 'bar'); is_deeply $data, [qw(0 1 2 bar)], 'set_data 6'; } { my $data = {foo => 'bar'}; Catmandu::Util::delete_data($data, 'foo'); is_deeply $data, {}, 'delete_data 1'; } { my $data = [qw(0 1 2)]; Catmandu::Util::delete_data($data, 0); is_deeply $data, [qw(1 2)], 'delete_data 2'; } { my $data = [qw(0 1 2)]; Catmandu::Util::delete_data($data, '$first'); is_deeply $data, [qw(1 2)], 'delete_data 3'; } { my $data = [qw(0 1 2)]; Catmandu::Util::delete_data($data, '$last'); is_deeply $data, [qw(0 1)], 'delete_data 4'; } { my $data = [qw(0 1 2)]; Catmandu::Util::delete_data($data, '*'); is_deeply $data, [], 'delete_data 5'; } { my $data = [qw(0 1 2)]; Catmandu::Util::delete_data($data, '100'); is_deeply $data, [qw(0 1 2)], 'delete_data 6'; } { my $data = undef; Catmandu::Util::delete_data($data, '100'); is_deeply $data, undef, 'delete_data 7'; } is Catmandu::Util::data_at('foo', {foo => 'bar'}), 'bar', 'data_at 1'; is Catmandu::Util::data_at('foo.1', {foo => [qw(bar bar2 bar3)]}), 'bar2', 'data_at 2'; is Catmandu::Util::data_at('foo.$first', {foo => [qw(bar bar2 bar3)]}), 'bar', 'data_at 3'; is Catmandu::Util::data_at('foo.$last', {foo => [qw(bar bar2 bar3)]}), 'bar3', 'data_at 4'; { my $data = {foo => [qw(0 1 2)]}; is_deeply Catmandu::Util::data_at('foo.$prepend', $data), undef, 'data_at 5'; is_deeply $data, {foo => [undef, qw(0 1 2)]}, 'data_at 5'; } { my $data = {foo => [qw(0 1 2)]}; is_deeply Catmandu::Util::data_at('foo.$append', $data), undef, 'data_at 6'; is_deeply $data, {foo => [qw(0 1 2), undef]}, 'data_at 6'; } ok Catmandu::Util::array_exists([qw(0 1 2)], 0), 'array_exists 1'; ok !Catmandu::Util::array_exists([qw(0 1 2)], 3), '!array_exists'; is_deeply Catmandu::Util::array_group_by( [ {color => 'red', number => 1}, {color => 'blue', number => 2}, {color => 'green', number => 3}, {number => 4} ], 'color' ), { red => [{color => 'red', number => 1}], blue => [{color => 'blue', number => 2}], green => [{color => 'green', number => 3}], }, 'array_group_by'; is_deeply Catmandu::Util::array_pluck([{id => 1}, {foo => 2}, {id => 3}], 'id'), [1, undef, 3], 'array_pluck'; is Catmandu::Util::array_sum([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]), 55, 'array_sum'; ok Catmandu::Util::array_includes( [{foo => [{bar => 1}]}], {foo => [{bar => 1}]} ), 'array_includes'; ok !Catmandu::Util::array_includes( [{foo => [{bar => 1}]}], {foo => [{bar => 5}]} ), '!array_includes'; ok Catmandu::Util::array_any([0, 1, 2], sub {return 1 if shift == 2}), 'array_any'; ok !Catmandu::Util::array_any([0, 1, 2], sub {return 1 if shift == 100}), 'array_any'; is Catmandu::Util::array_to_sentence([1, 2]), '1 and 2', 'array_to_sentence'; is Catmandu::Util::array_to_sentence([1, 2, 3]), '1, 2 and 3', 'array_to_sentence'; is_deeply Catmandu::Util::array_rest([0, 1, 2]), [1, 2], 'array_rest'; is_deeply Catmandu::Util::array_uniq([0, 1, 2, 2, 2, 2, 3, 3, 2, 3]), [0, 1, 2, 3], 'array_uniq'; is_deeply Catmandu::Util::hash_merge({a => {b => 1}}, {a => {c => 2}}), {a => {b => 1, c => 2}}, 'hash_merge'; is Catmandu::Util::as_utf8("école"), "école", 'as_utf8'; is Catmandu::Util::trim(" \r\n bla \t\t\t\r\n"), "bla", 'trim'; is Catmandu::Util::capitalize("école"), "École", 'capitalize'; ok Catmandu::Util::is_same( {a => [{b => 1, c => 1}]}, {a => [{c => 1, b => 1}]} ), 'is_same'; ok Catmandu::Util::is_different( {a => [{b => 1, c => 1}]}, {a => [{d => 1, b => 1}]} ), 'is_different'; ok Catmandu::Util::check_same( {a => [{b => 1, c => 1}]}, {a => [{c => 1, b => 1}]} ), 'check_same'; throws_ok { Catmandu::Util::check_same({a => [{b => 1, c => 1}]}, {a => [{d => 1, b => 1}]}) } 'Catmandu::BadVal', '! check_same'; ok Catmandu::Util::check_different( {a => [{b => 1, c => 1}]}, {a => [{b => 1, b => 1}]} ), 'check_different'; throws_ok { Catmandu::Util::check_different({a => [{b => 1, c => 1}]}, {a => [{c => 1, b => 1}]}) } 'Catmandu::BadVal', '! check_different'; ok Catmandu::Util::is_able(T::Foo->new, 'bar'), 'is_able'; ok !Catmandu::Util::is_able(T::Foo->new, 'bar2'), '! is_able'; ok !Catmandu::Util::is_able('123', 'bar2'), '! is_able'; ok Catmandu::Util::check_able(T::Foo->new, 'bar'), 'check_able'; throws_ok {Catmandu::Util::check_able('123', 'bar2')} 'Catmandu::BadVal', '! check_able'; ok !Catmandu::Util::check_maybe_able(undef, 'bar2'), 'check_maybe_able'; throws_ok {Catmandu::Util::check_maybe_able('123', 'bar2')} 'Catmandu::BadVal', '! check_maybe_able'; ok Catmandu::Util::is_instance(T::Foo->new, 'T::Foo'), 'is_instance'; ok !Catmandu::Util::is_instance(T::Foo->new, 'T::Foo2'), '! is_instance'; ok !Catmandu::Util::is_instance(undef, 'T::Foo'), '! is_instance'; ok Catmandu::Util::check_instance(T::Foo->new, 'T::Foo'), 'check_instance'; throws_ok {Catmandu::Util::check_instance(undef, 'T::Foo')} 'Catmandu::BadVal', '! check_instance'; ok !Catmandu::Util::check_maybe_instance(undef, 'T::Foo'), '! check_maybe_instance'; throws_ok {Catmandu::Util::check_maybe_instance(123, 'T::Foo')} 'Catmandu::BadVal', '! check_maybe_instance'; is Catmandu::Util::human_number(64354), "64,354", 'human_number'; is Catmandu::Util::human_byte_size(10), "10 bytes", 'human_byte_size'; is Catmandu::Util::human_byte_size(10005), "10.01 KB", 'human_byte_size'; is Catmandu::Util::human_byte_size(10005000), "10.01 MB", 'human_byte_size'; is Catmandu::Util::human_byte_size(10005000000), "10.01 GB", 'human_byte_size'; is Catmandu::Util::human_content_type('application/x-dos_ms_excel'), 'Excel', 'human_content_type'; is Catmandu::Util::xml_declaration(), qq(\n), 'xml_declaration'; is Catmandu::Util::xml_escape("<>'&"), '<>'&', 'xml_escape'; done_testing; fix-level-1.fix100644000765000024 15014742222207 16476 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t#fixes-level-1 add_field('name','Franck') add_field('first_name','Nicolas') include('fix-level-2.fix') fix-level-2.fix100644000765000024 12414742222207 16500 0ustar00nsteenlastaff000000000000Catmandu-1.2024/tadd_field('working_place','University Library of Ghent') include('fix-level-3.fix') fix-level-3.fix100644000765000024 16014742222207 16501 0ustar00nsteenlastaff000000000000Catmandu-1.2024/tadd_field('hobbies.$append','cooking') add_field('hobbies.$append','art') add_field('hobbies.$append','hiking') benchmark000755000765000024 014742222207 15310 5ustar00nsteenlastaff000000000000Catmandu-1.2024clone.pl100755000765000024 210514742222207 17106 0ustar00nsteenlastaff000000000000Catmandu-1.2024/benchmark#!/usr/bin/env perl BEGIN { use strict; use warnings; use FindBin; use File::Spec (); use lib File::Spec->catdir($FindBin::Bin, '..', 'lib'); use Catmandu (); use Benchmark qw(:all); } package NothingFix; use strict; use warnings; use Moo; use Clone qw(clone); sub fix { $_[0]; } package CloneFix; use strict; use warnings; use Moo; use Clone qw(clone); sub fix { clone($_[0]); } package DataCloneFix; use strict; use warnings; use Moo; use Data::Clone qw(clone); sub fix { clone($_[0]); } package main; my $data = Catmandu->importer('JSON', file => File::Spec->catfile($FindBin::Bin, 'data.json'))->first; my $nothing_fixer = Catmandu::Fix->new(fixes => [(NothingFix->new) x 1000]); my $clone_fixer = Catmandu::Fix->new(fixes => [(CloneFix->new) x 1000]); my $data_clone_fixer = Catmandu::Fix->new(fixes => [(DataCloneFix->new) x 1000]); cmpthese(10000, { "nothing" => sub { $nothing_fixer->fix($data) }, "Clone" => sub { $clone_fixer->fix($data) }, "Data::Clone" => sub { $data_clone_fixer->fix($data) }, }); Catmandu-Error.t100644000765000024 151714742222207 16775 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t#!/usr/bin/env perl use strict; use warnings; use Test::More; use Test::Exception; my $pkg; BEGIN { $pkg = 'Catmandu::Error'; use_ok $pkg; } require_ok $pkg; throws_ok {Catmandu::Error->throw("Oops!");} 'Catmandu::Error', qq|caught an error|; throws_ok {Catmandu::Error->throw;} 'Catmandu::Error', qq|caught an error with no message|; is(Catmandu::Error->new->message, '', qq|default error message is an empty string|); throws_ok {Catmandu::BadVal->throw("Whoo!");} 'Catmandu::BadVal', qq|caught a badval|; throws_ok {Catmandu::BadArg->throw("Aarrgh!");} 'Catmandu::BadArg', qq|caught a badarg|; throws_ok {Catmandu::BadArg->throw("Aarrgh!");} 'Catmandu::BadArg', qq|caught a badarg|; throws_ok {Catmandu::NotImplemented->throw("Huh?!");} 'Catmandu::NotImplemented', qq|caught a notimplemented|; done_testing; Catmandu-Paged.t100644000765000024 1072614742222207 16746 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t#!/usr/bin/env perl use strict; use warnings; use Test::More; use Test::Exception; use Role::Tiny; my $pkg; BEGIN { $pkg = 'Catmandu::Paged'; use_ok $pkg; } require_ok $pkg; { package T::PagedWithoutStart; use Moo; sub limit { } sub total { } sub maximum_offset { } package T::PagedWithoutLimit; use Moo; sub start { } sub total { } sub maximum_offset { } package T::PagedWithoutTotal; use Moo; sub start { } sub limit { } sub maximum_offset { } package T::PagedWithoutMaximumOffset; use Moo; sub start { } sub limit { } sub total { } package T::Paged; use Moo; with $pkg; sub start {27;} sub limit {20;} sub total {32432;} sub maximum_offset { } package T2::Paged; use Moo; with $pkg; sub start {1;} sub limit {10;} sub total {127;} sub maximum_offset { } package T3::Paged; use Moo; with $pkg; sub start {0;} sub limit {10;} sub total {33;} sub maximum_offset { } package T4::Paged; use Moo; with $pkg; sub start {0;} sub limit {10;} sub total {33;} sub maximum_offset {23;} package T5::Paged; use Moo; with $pkg; sub start {10;} sub limit {0;} sub total {100;} sub maximum_offset { } } throws_ok {Role::Tiny->apply_role_to_package('T::PagedWithoutStart', $pkg)} qr/missing start/; throws_ok {Role::Tiny->apply_role_to_package('T::PagedWithoutLimit', $pkg)} qr/missing limit/; throws_ok {Role::Tiny->apply_role_to_package('T::PagedWithoutTotal', $pkg)} qr/missing total/; throws_ok { Role::Tiny->apply_role_to_package('T::PagedWithoutMaximumOffset', $pkg) } qr/missing maximum_offset/; my $p = T::Paged->new; can_ok $p, $_ for qw/first_page page previous_page next_page first_on_page last_on_page last_page pages_in_spread/; is $p->first_page, 1, "first page ok"; is $p->page, 2, "Page ok"; is $p->previous_page, 1, "previous ok"; is $p->next_page, 3, "next ok"; is $p->page_size, 20, "page size ok"; is $p->first_on_page, 21, "first on page ok"; is $p->last_on_page, 40, "last on page ok"; is $p->last_page, 1622, "last page ok"; my $arr = [1, 2, 3, 4, 5, undef, 1622]; is_deeply $p->pages_in_spread, $arr, "spread ok"; my $p2 = T2::Paged->new; is $p2->first_page, 1, "first page ok"; is $p2->page, 1, "page ok"; is $p2->previous_page, undef, "previous ok"; is $p2->next_page, 2, "next ok"; is $p2->page_size, 10, "page size ok"; is $p2->first_on_page, 1, "first on page ok"; is $p2->last_on_page, 10, "last on page ok"; is $p2->last_page, 13, "last page ok"; my $arr2 = [1, 2, 3, 4, undef, 12, 13]; is_deeply $p2->pages_in_spread, $arr2, "spread ok"; my $p3 = T3::Paged->new; is $p3->first_page, 1, "first page ok"; is $p3->page, 1, "page ok"; is $p3->previous_page, undef, "previous ok"; is $p3->next_page, 2, "next ok"; is $p3->page_size, 10, "page size ok"; is $p3->first_on_page, 1, "first on page ok"; is $p3->last_on_page, 10, "last on page ok"; is $p3->last_page, 4, "last page ok"; my $arr3 = [1, 2, 3, 4]; is_deeply $p3->pages_in_spread, $arr3, "spread ok"; my $p4 = T4::Paged->new; is $p4->total, 33, "total ok"; is $p4->first_page, 1, "first page ok"; is $p4->page, 1, "page ok"; is $p4->previous_page, undef, "previous ok"; is $p4->next_page, 2, "next ok"; is $p4->page_size, 10, "page size ok"; is $p4->first_on_page, 1, "first on page ok"; is $p4->last_on_page, 10, "last on page ok"; is $p4->last_page, 3, "last page ok"; my $arr4 = [1, 2, 3]; is_deeply $p4->pages_in_spread, $arr4, "spread ok"; my $p5 = T5::Paged->new; lives_ok {$p5->page} "limit 0 gives no errors"; is $p5->first_page, undef, "limit 0 first page ok"; is $p5->page, undef, "limit 0 page ok"; is $p5->previous_page, undef, "limit 0 previous ok"; is $p5->next_page, undef, "limit 0 next ok"; is $p5->page_size, 0, "limit 0 page size ok"; is $p5->first_on_page, 0, "limit 0 first on page ok"; is $p5->last_on_page, 0, "limit 0 last on page ok"; is $p5->last_page, undef, "limit 0 last page ok"; is_deeply $p5->pages_in_spread, [], "limit 0 has an empty page spread"; done_testing; Catmandu-Store.t100644000765000024 534114742222207 16777 0ustar00nsteenlastaff000000000000Catmandu-1.2024/t#!/usr/bin/env perl use strict; use warnings; use Test::More; use Test::Exception; use Role::Tiny; my $pkg; BEGIN { $pkg = 'Catmandu::Store'; use_ok $pkg; } require_ok $pkg; { package T::Store; use Moo; with $pkg; package T::Store::Bag; use Moo; with 'Catmandu::Bag'; sub generator { } sub add { } sub get { } sub delete { } sub delete_all { } package T::CustomBagClass; use Moo; extends 'T::Store::Bag'; has prop => (is => 'ro'); } my $s = T::Store->new; can_ok $s, 'bag_class'; can_ok $s, 'default_bag'; can_ok $s, 'bag'; is $s->bag_class, 'T::Store::Bag'; $s = T::Store->new(bag_class => 'T::CustomBagClass'); is $s->bag_class, 'T::CustomBagClass'; is $s->default_bag, 'data'; my $b = $s->bag; isa_ok $b, $s->bag_class; is $s->bag, $b; is $b->store, $s; is $b->name, 'data'; $b = $s->bag('foo'); is $b->name, 'foo'; $s = T::Store->new( bag_class => 'T::CustomBagClass', bags => {foo => {prop => 'val', store => 'junk', name => 'junk'}} ); is $s->bag('foo')->prop, 'val', "options are passed to bag"; isnt $s->bag('foo')->store, 'junk', "store can't be overriden"; isnt $s->bag('foo')->name, 'junk', "name can't be overriden"; # default options $s = T::Store->new( bag_class => 'T::CustomBagClass', default_options => {prop => 'bar'}, bags => {foo => {store => 'junk', name => 'junk'}} ); is $s->bag('foo')->prop, 'bar'; $s = T::Store->new( bag_class => 'T::CustomBagClass', default_options => {prop => 'bar'}, bags => {foo => {prop => 'baz', store => 'junk', name => 'junk'}} ); is $s->bag('foo')->prop, 'baz'; # custom key_prefix is(T::Store->new->key_prefix, '_'); is(T::Store->new(key_prefix => 'catmandu_')->key_prefix, 'catmandu_'); # there are more key_prefix tests in Catmandu-Bag.t and # Catmandu-Plugin-Versioning.t # custom store wide id_key $s = T::Store->new(id_key => 'my_id'); is($s->key_prefix, '_'); is($s->id_key, 'my_id'); is($s->bag->id_key, 'my_id'); $s = T::Store->new(id_field => 'my_id'); is($s->key_prefix, '_'); is($s->id_key, 'my_id'); is($s->bag->id_key, 'my_id'); # plugins $b = T::Store->new(bags => {foo => {plugins => [qw(Datestamps)]}}) ->bag('foo'); ok $b->does('Catmandu::Plugin::Datestamps'), 'apply plugins'; $b = T::Store->new(default_plugins => [qw(Datestamps)])->bag('foo'); ok $b->does('Catmandu::Plugin::Datestamps'), 'apply default plugins'; $b = T::Store->new( default_plugins => [qw(Datestamps)], bags => {foo => {plugins => [qw(Versioning)]}} )->bag('foo'); ok $b->does('Catmandu::Plugin::Datestamps') && $b->does('Catmandu::Plugin::Versioning'), 'prepend default plugins'; done_testing; data.json100644000765000024 110040414742222207 17334 0ustar00nsteenlastaff000000000000Catmandu-1.2024/benchmark{"keyword":["STATES","HIGGS","LHC"],"source":{"record":"VR 1.0\nPT J\nAU Khachatryan, V\n Sirunyan, AM\n Tumasyan, A\n Adam, W\n Bergauer, T\n Dragicevic, M\n Ero, J\n Friedl, M\n Fruhwirth, R\n Ghete, VM\n Hartl, C\n Hormann, N\n Hrubec, J\n Jeitler, M\n Kiesenhofer, W\n Knunz, V\n Krammer, M\n Kratschmer, I\n Liko, D\n Mikulec, I\n Rabady, D\n Rahbaran, B\n Rohringer, H\n Shofbeck, R\n Strauss, J\n Treberer-Treberspurg, W\n Waltenberger, W\n Wulz, CE\n Mossolov, V\n Shumeiko, N\n SuarezGonzalez, J\n Alderweireldt, S\n Bansal, S\n Cornelis, T\n DeWolf, EA\n Janssen, X\n Knutsson, A\n Lauwers, J\n Luyckx, S\n Ochesanu, S\n Rougny, R\n De Klundert, MV\n Van Haevermaet, H\n Van Mechelen, P\n Van Remortel, N\n Van Spilbeeck, A\n Blekman, F\n Blyweert, S\n D'Hondt, J\n Daci, N\n Heracleous, N\n Keaveney, J\n Lowette, S\n Maes, M\n Olbrechts, A\n Python, Q\n Strom, D\n Tavernier, S\n Van Doninck, W\n Van Mulders, P\n Van Onsem, GP\n Villella, I\n Caillol, C\n Clerbaux, B\n De Lentdecker, G\n Dobur, D\n Favart, L\n Gay, APR\n Grebenyuk, A\n Leonard, A\n Mohammadi, A\n Pernie, L\n Randle-Conde, A\n Reis, T\n Seva, T\n Thomas, L\n van derVelde, C\n van Laer, P\n Wang, J\n Zenoni, F\n Adler, V\n Beernaert, K\n Benucci, L\n Cimmino, A\n Costantini, S\n Crucy, S\n Dildick, S\n Fagot, A\n Garcia, G\n Mccartin, J\n Rios, AAO\n Poyraz, D\n Ryckbosch, D\n SalvaDiblen, S\n Sigamani, M\n Strobbe, N\n Thyssen, F\n Tytgat, M\n Yazgan, E\n Zaganidis, N\n Basegmez, S\n Beluffi, C\n Bruno, G\n Castello, R\n Caudron, A\n Ceard, L\n Da Silveira, GG\n Delaere, C\n du Pree, T\n Favart, D\n Forthomme, L\n Giammanco, A\n Hollar, J\n Jafari, A\n Jez, P\n Komm, M\n Lemaitre, V\n Nuttens, C\n Perrini, L\n Pin, A\n Piotrzkowski, K\n Popov, A\n Quertenmont, L\n Selvaggi, M\n Marono, MV\n Garcia, JMV\n Beliy, N\n Caebergs, T\n Daubie, E\n Hammad, GH\n Alda, WL\n Alves, GA\n Brito, L\n Martins, MC\n Martins, TD\n Molina, J\n Herrera, CM\n Pol, ME\n Teles, PR\n Carvalho, W\n Chinellato, J\n Custodio, A\n Da Costa, EM\n Damiao, DD\n Martins, CD\n De Souza, SF\n Malbouisson, H\n Figueiredo, DM\n Mundim, L\n Nogima, H\n Da Silva, WLP\n Santaolalla, J\n Santoro, A\n Sznajder, A\n Manganote, EJT\n Pereira, AV\n Bernardes, CA\n Dogra, S\n Tomei, TRFP\n Gregores, EM\n Mercadante, PG\n Novaes, SF\n Padula, SS\n Aleksandrov, A\n Genchev, V\n Hadjiiska, R\n Iaydjiev, P\n Marinov, A\n Piperov, S\n Rodozov, M\n Stoykova, S\n Sultanov, G\n Vutova, M\n Dimitrov, A\n Glushkov, I\n Litov, L\n Pavlov, B\n Petkov, P\n Bian, JG\n Chen, GM\n Chen, HS\n Chen, M\n Cheng, T\n Du, R\n Jiang, CH\n Plestina, R\n Romeo, F\n Tao, J\n Wang, Z\n Asawatangtrakuldee, C\n Ban, Y\n Liu, S\n Mao, Y\n Qian, SJ\n Wang, D\n Xu, Z\n Zhang, L\n Zou, W\n Avila, C\n Cabrera, A\n Sierra, LFC\n Florez, C\n Gomez, JP\n Moreno, BG\n Sanabria, JC\n Godinovic, N\n Lelas, D\n Polic, D\n Puljak, I\n Antunovic, Z\n Kovac, M\n Brigljevic, V\n Kadija, K\n Luetic, J\n Mekterovic, D\n Sudic, L\n Attikis, A\n Mavromanolakis, G\n Mousa, J\n Nicolaou, C\n Ptochos, F\n Razis, PA\n Rykaczewski, H\n Bodlak, M\n Finger, M\n Finger, M\n Assran, Y\n Kamel, AE\n Mahmoud, MA\n Radi, A\n Kadastik, M\n Murumaa, M\n Raidal, M\n Tiko, A\n Eerola, P\n Voutilainen, M\n Harkonen, J\n Karimaki, V\n Kinnunen, R\n Kortelainen, MJ\n Lampen, T\n Lassila-Perini, K\n Lehti, S\n Linden, T\n Luukka, P\n Maenpaa, T\n Peltola, T\n Tuominen, E\n Tuominiemi, J\n Tuovinen, E\n Wendland, L\n Talvitie, J\n Tuuva, T\n Besancon, M\n Couderc, F\n Dejardin, M\n Denegri, D\n Fabbro, B\n Faure, JL\n Favaro, C\n Ferri, F\n Ganjour, S\n Givernaud, A\n Gras, P\n de Monchenault, GH\n Jarry, P\n Locci, E\n Malcles, J\n Rander, J\n Rosowsky, A\n Titov, M\n Baffioni, S\n Beaudette, F\n Busson, P\n Chapon, E\n Charlot, C\n Dahms, T\n Dalchenko, M\n Dobrzynski, L\n Filipovic, N\n Florent, A\n de Cassagnac, RG\n Mastrolorenzo, L\n Mine, P\n Naranjo, IN\n Nguyen, M\n Ochando, C\n Ortona, G\n Paganini, P\n Regnard, S\n Salerno, R\n Sauvan, JB\n Sirois, Y\n Veelken, C\n Yilmaz, Y\n Zabi, A\n Agram, JL\n Andrea, J\n Aubin, A\n Bloch, D\n Brom, JM\n Chabert, EC\n Collard, C\n Conte, E\n Fontaine, JC\n Gele, D\n Goerlach, U\n Goetzmann, C\n Le Bihan, AC\n Skovpen, K\n Van Hove, P\n Gadrat, S\n Beauceron, S\n Beaupere, N\n Bernet, C\n Boudoul, G\n Bouvier, E\n Brochet, S\n Montoya, AC\n Chasserat, J\n Chierici, R\n Contardo, D\n Courbon, B\n Depasse, P\n El Mamouni, H\n Fan, J\n Fay, J\n Gascon, S\n Gouzevitch, M\n Ille, B\n Kurca, T\n Lethuillier, M\n Mirabito, L\n Pequegnot, AL\n Perries, S\n Alvarez, JDR\n Sabes, D\n Sgandurra, L\n Sordini, V\n Donckt, MV\n Verdier, P\n Viret, S\n Xiao, H\n Tsamalaidze, Z\n Autermann, C\n Beranek, S\n Bontenackels, M\n Edelhoff, M\n Feld, L\n Heister, A\n Klein, K\n Lipinski, M\n Ostapchuk, A\n Preuten, M\n Raupach, F\n Sammet, J\n Schael, S\n Schulte, JF\n Weber, H\n Wittmer, B\n Zhukov, V\n Ata, M\n Brodski, M\n Dietz-Laursonn, E\n Duchardt, D\n Erdmann, M\n Fischer, R\n Guth, A\n Hebbeker, T\n Heidemann, C\n Hoepfner, K\n Klingebiel, D\n Knutzen, S\n Kreuzer, P\n Merschmeyer, M\n Meyer, A\n Millet, P\n Olschewski, M\n Padeken, K\n Papacz, P\n Reithler, H\n Schmitz, SA\n Sonnenschein, L\n Teyssier, D\n Thur, S\n Weber, M\n Cherepanov, V\n Erdogan, Y\n Flugge, G\n Geenen, H\n Geisler, M\n Ahmad, WH\n Hoehle, F\n Kargoll, B\n Kress, T\n Kuessel, Y\n Kunsken, A\n Lingemann, J\n Nowack, A\n Nugent, IM\n Pooth, O\n Stahl, A\n Martin, MA\n Asin, I\n Bartosik, N\n Behr, J\n Behrens, U\n Bell, AJ\n Bethani, A\n Borras, K\n Burgmeier, A\n Cakir, A\n Calligaris, L\n Campbell, A\n Choudhury, S\n Costanza, F\n Pardos, CD\n Dolinska, G\n Dooling, S\n Dorland, T\n Eckerlin, G\n Eckstein, D\n Eichhorn, T\n Flucke, G\n Garcia, JG\n Geiser, A\n Gizhko, A\n Gunnellini, P\n Hauk, J\n Hempel, M\n Jung, H\n Kalogeropoulos, A\n Karacheban, O\n Kasemann, M\n Katsas, P\n Kieseler, J\n Kleinwort, C\n Korol, I\n Krucker, D\n Lange, W\n Leonard, J\n Lipka, K\n Lobanov, A\n Lohmann, W\n Lutz, B\n Mankel, R\n Marfin, I\n Melzer-Pellmann, IA\n Meyer, AB\n Mittag, G\n Mnich, J\n Mussgiller, A\n Naumann-Emme, S\n Nayak, A\n Ntomari, E\n Perrey, H\n Pitzl, D\n Placakyte, R\n Raspereza, A\n Cipriano, PMR\n Roland, B\n Ron, E\n Sahin, MO\n Salfeld-Nebgen, J\n Saxena, P\n Schoerner-Sadenius, T\n Schoerder, M\n Seitz, C\n Spannagel, S\n Trevino, ADRV\n Walsh, R\n Wissing, C\n Blobel, V\n Vignali, MC\n Draeger, AR\n Erfle, J\n Garutti, E\n Goebel, K\n Gorner, M\n Haller, J\n Hoffmann, M\n Hoing, RS\n Junkes, A\n Kirschenmann, H\n Klanner, R\n Kogler, R\n Lapsien, T\n Lenz, T\n Marchesini, I\n Marconi, D\n Ott, J\n Peiffer, T\n Perieanu, A\n Pietsch, N\n Poehlsen, J\n Poehlsen, T\n Rathjens, D\n Sander, C\n Schettler, H\n Schleper, P\n Schlieckau, E\n Schmidt, A\n Seidel, M\n Sola, V\n Stadie, H\n Steinbruck, G\n Troendle, D\n Usai, E\n Vanelderen, L\n Vanhoefer, A\n Barth, C\n Baus, C\n Berger, J\n Boser, C\n Butz, E\n Chwalek, T\n De Boer, W\n Descroix, A\n Dierlamm, A\n Feindt, M\n Frensch, F\n Giffels, M\n Gilbert, A\n Hartmann, F\n Hauth, T\n Husemann, U\n Katkov, I\n Kornmayer, A\n Pardo, PL\n Mozer, MU\n Muller, T\n Muller, T\n Nurnberg, A\n Quast, G\n Rabbertz, K\n Rocker, S\n Simonis, HJ\n Stober, FM\n Ulrich, R\n Wagner-Kuhr, J\n Wayand, S\n Weiler, T\n Wolf, R\n Anagnostou, G\n Daskalakis, G\n Geralis, T\n Giakoumopoulou, VA\n Kyriakis, A\n Loukas, D\n Markou, A\n Markou, C\n Psallidas, A\n Topsis-Giotis, I\n Agapitos, A\n Kesisoglou, S\n Panagiotou, A\n Saoulidou, N\n Stiliaris, E\n Aslanoglou, X\n Evangelou, I\n Flouris, G\n Foudas, C\n Kokkas, P\n Manthos, N\n Papadopoulos, I\n Paradas, E\n Strologas, J\n Bencze, G\n Hajdu, C\n Hidas, P\n Horvath, D\n Sikler, F\n Veszpremi, V\n Vesztergombi, G\n Zsigmond, AJ\n Beni, N\n Czellar, S\n Karancsi, J\n Molnar, J\n Palinkas, J\n Szillasi, Z\n Makovec, A\n Raics, P\n Trocsanyi, ZL\n Ujvari, B\n Swain, SK\n Beri, SB\n Bhatnagar, V\n Gupta, R\n Bhawandeep, U\n Kalsi, AK\n Kaur, M\n Kumar, R\n Mittal, M\n Nishu, N\n Singh, JB\n Kumar, A\n Kumar, A\n Ahuja, S\n Bhardwaj, A\n Choudhary, BC\n Kumar, A\n Malhotra, S\n Naimuddin, M\n Ranjan, K\n Sharma, V\n Banerjee, S\n Bhattacharya, S\n Chatterjee, K\n Dutta, S\n Gomber, B\n Jain, S\n Jain, S\n Khurana, R\n Modak, A\n Mukherjee, S\n Roy, D\n Sarkar, S\n Sharan, M\n Abdulsalam, A\n Dutta, D\n Kumar, V\n Mohanty, AK\n Pant, LM\n Shukla, P\n Topkar, A\n Aziz, T\n Banerjee, S\n Bhowmik, S\n Chatterjee, RM\n Dewanjee, RK\n Dugad, S\n Ganguly, S\n Ghosh, S\n Guchait, M\n Gurtu, A\n Kole, G\n Kumar, S\n Maity, M\n Majumder, G\n Mazumdar, K\n Mohanty, GB\n Parida, B\n Sudhakar, K\n Wickramage, N\n Sharma, S\n Bakhshiansohi, H\n Behnamian, H\n Etesami, SM\n Fahim, A\n Goldouzian, R\n Khakzad, M\n Najafabadi, MM\n Naseri, M\n Mehdiabadi, SP\n Hosseinabadi, FR\n Safarzadeh, B\n Zeinali, M\n Felcini, M\n Grunewald, M\n Abbrescia, M\n Calabria, C\n Chhibra, SS\n Colaleo, A\n Creanza, D\n Cristella, L\n De Filippis, N\n De Palma, M\n Fiore, L\n Iaselli, G\n Maggi, G\n Maggi, M\n My, S\n Nuzzo, S\n Pompili, A\n Pugliese, G\n Radogna, R\n Selvaggi, G\n Sharma, A\n Silvestris, L\n Venditti, R\n Verwilligen, P\n Abbiendi, G\n Benvenuti, AC\n Bonacorsi, D\n Braibant-Giacomelli, S\n Brigliadori, L\n Campanini, R\n Capiluppi, P\n Castro, BA\n Cavallo, FR\n Codispoti, G\n Cuffiani, M\n Dallavalle, GM\n Fabbri, F\n Fanfani, A\n Fasanella, D\n Giacomelli, P\n Grandi, C\n Guiducci, L\n Marcellini, S\n Masetti, G\n Montanari, A\n Navarria, FL\n Perrotta, A\n Rossi, AM\n Rovelli, T\n Siroli, GP\n Tosi, N\n Travaglini, R\n Albergo, S\n Cappello, G\n Chiorboli, M\n Costa, S\n Giordano, F\n Potenza, R\n Tricomi, A\n Tuve, C\n Barbagli, G\n Ciulli, V\n Civinini, C\n D'Alessandro, R\n Focardi, E\n Gallo, E\n Gonzi, S\n Gori, V\n Lenzi, P\n Meschini, M\n Paoletti, S\n Sguazzoni, G\n Tropiano, A\n Benussi, L\n Bianco, S\n Fabbri, F\n Piccolo, D\n Ferretti, R\n Ferro, F\n Lo Vetere, M\n Robutti, E\n Tosi, S\n Dinardo, ME\n Fiorendi, S\n Gennai, S\n Gerosa, R\n Ghezzi, A\n Govoni, P\n Lucchini, MT\n Malvezzi, S\n Manzoni, RA\n Martelli, A\n Marzocchi, B\n Menasce, D\n Moroni, L\n Paganoni, M\n Pedrini, D\n Ragazzi, S\n Redaelli, N\n de Fatis, TT\n Buontempo, S\n Cavallo, N\n Di Guida, S\n Fabozzi, F\n Iorio, AOM\n Lista, L\n Meola, S\n Merola, M\n Paolucci, P\n Azzi, P\n Bacchetta, N\n Bisello, D\n Branca, A\n Carlin, R\n ChecchiA, P\n Dall'Osso, M\n Dorigo, T\n Dosselli, U\n Gasparini, F\n Gasparini, U\n Gozzelino, A\n Kanishchev, K\n Lacaprara, S\n Margoni, M\n Meneguzzo, AT\n Pazzini, J\n Pozzobon, N\n Ronchese, P\n Simonetto, F\n Torassa, E\n Tosi, M\n Zotto, P\n Zucchetta, A\n Zumerle, G\n Gabusi, M\n Ratti, SP\n Re, V\n Riccardi, C\n Salvini, P\n Vitulo, P\n Biasini, M\n Bilei, GM\n Ciangottini, D\n Fano, L\n Lariccia, P\n Mantovani, G\n Menichelli, M\n Saha, A\n Santocchia, A\n Spiezia, A\n Androsov, K\n Azzurri, P\n Bagliesi, G\n Bernardini, J\n Boccali, T\n Broccolo, G\n Castaldi, R\n Ciocci, MA\n Dell'Orso, R\n Donato, S\n Fedi, G\n Fiori, F\n Foa, L\n Giassi, A\n Grippo, MT\n Ligabue, F\n Lomtadze, T\n Martini, L\n Messineo, A\n Moon, CS\n Palla, F\n Rizzi, A\n Savoy-Navarro, A\n Serban, AT\n Spagnolo, P\n Squillacioti, P\n Tenchini, R\n Tonelli, G\n Venturi, A\n Verdini, PG\n Vernieri, C\n Barone, L\n Cavallari, F\n D'imperio, G\n Del Re, D\n Diemoz, M\n Jorda, C\n Longo, E\n Margaroli, F\n Meridiani, P\n Micheli, F\n Organtini, G\n Paramatti, R\n Rahatlou, S\n Rovelli, C\n Santanastasio, F\n Soffi, L\n Traczyk, P\n Amapane, N\n Arcidiacono, R\n Argiro, S\n Arneodo, M\n Bellan, R\n Biino, C\n Cartiglia, N\n Casasso, S\n Costa, M\n Covarelli, R\n Degano, A\n Demaria, N\n Finco, L\n Mariotti, C\n Maselli, S\n Migliore, E\n Monaco, V\n Musich, M\n Obertino, MM\n Pacher, L\n Pastrone, N\n Pelliccioni, M\n Angioni, GLP\n Potenza, A\n Romero, A\n Ruspa, M\n Sacchi, R\n Solano, A\n Staiano, A\n Tamponi, U\n Belforte, S\n Candelise, V\n Casarsa, M\n Cossutti, F\n Della Ricca, G\n Gobbo, B\n La Licata, C\n Marone, M\n Schizzi, A\n Umer, T\n Zanetti, A\n Chang, S\n Kropivnitskaya, A\n Nam, SK\n Kim, DH\n Kim, GN\n Kim, MS\n Kong, DJ\n Lee, S\n Oh, YD\n Park, H\n Sakharov, A\n Son, DC\n Kim, TJ\n Ryu, MS\n Kim, JY\n Moon, DH\n Song, S\n Choi, S\n Gyun, D\n Hong, B\n Jo, M\n Kim, H\n Kim, Y\n Lee, B\n Lee, KS\n Park, SK\n Roh, Y\n Yoo, HD\n Choi, M\n Kim, JH\n Park, IC\n Ryu, G\n Choi, Y\n Choi, YK\n Goh, J\n Kim, D\n Kwon, E\n Lee, J\n Yu, I\n Juodagalvis, A\n Komaragiri, JR\n Ali, MABM\n Linares, EC\n Castilla-Valdez, H\n De La Cruz-Burelo, E\n Heredia-de La Cruz, I\n Hernandez-Almada, A\n Lopez-Fernandez, R\n Sanchez-Hernandez, A\n Moreno, SC\n Valencia, FV\n Pedraza, I\n Ibarguen, HAS\n Pineda, AM\n Krofcheck, D\n Butler, PH\n Reucroft, S\n Ahmad, A\n Ahmad, M\n Hassan, Q\n Hoorani, HR\n Khan, WA\n Khurshid, T\n Shoaib, M\n Bialkowska, H\n Bluj, M\n Boimska, B\n Frueboes, T\n Gorski, M\n Kazana, M\n Nawrocki, K\n Romanowska-Rybinska, K\n Szleper, M\n Zalewski, P\n Brona, G\n Bunkowski, K\n Cwiok, M\n Dominik, W\n Doroba, K\n Kalinowski, A\n Konecki, M\n Krolikowski, J\n Misiura, M\n Olszewski, M\n Bargassa, P\n Silva, CBDE\n Faccioli, P\n Parracho, PGF\n Gallinaro, M\n Iglesias, LL\n Nguyen, F\n Antunes, JR\n Seixas, J\n Varela, J\n Vischia, P\n Afanasiev, S\n Bunin, P\n Gavrilenko, M\n Golutvin, I\n Gorbunov, I\n Kamenev, A\n Karjavin, V\n Konoplyanikov, V\n Lanev, A\n Malakhov, A\n Matveev, V\n Moisenz, P\n Palichik, V\n Perelygin, V\n Shmatov, S\n Skatchkov, N\n Smirnov, V\n Zarubin, A\n Golovtsov, V\n Ivanov, Y\n Kim, V\n Kuznetsova, E\n Levchenko, P\n Murzin, V\n Oreshkin, V\n Smirnov, I\n Sulimov, V\n Uvarov, L\n Vavilov, S\n Vorobyev, A\n Vorobyev, A\n Andreev, Y\n Dermenev, A\n Gninenko, S\n Golubev, N\n Kirsanov, M\n Krasnikov, N\n Pashenkov, A\n Tlisov, D\n Toropin, A\n Epshteyn, V\n Gavrilov, V\n Lychkovskaya, N\n Popov, V\n Pozdnyakov, I\n Safronov, G\n Semenov, S\n Spiridonov, A\n Stolin, V\n Vlasov, E\n Zhokin, A\n Andreev, V\n Azarkin, M\n Dremin, I\n Kirakosyan, M\n Leonidov, A\n Mesyats, G\n Rusakov, SV\n Vinogradov, A\n Belyaev, A\n Boos, E\n Dubinin, M\n Dudko, L\n Ershov, A\n Gribushin, A\n Klyukhin, V\n Kodolova, O\n Lokhtin, I\n Obraztsov, S\n Petrushanko, S\n Savrin, V\n Snigirev, A\n Azhgirey, I\n Bayshev, I\n Bitioukov, S\n Kachanov, V\n Kalinin, A\n Konstantinov, D\n Krychkine, V\n Petrov, V\n Ryutin, R\n Sobol, A\n Tourtchanovitch, L\n Troshin, S\n Tyurin, N\n Uzunian, A\n Volkov, A\n Adzic, P\n Ekmedzic, M\n Milosevic, J\n Rekovic, V\n Maestre, JA\n Battilana, C\n Calvo, E\n Cerrada, M\n Llatas, MC\n Colino, N\n De La Cruz, B\n Peris, AD\n Vazquez, DD\n Del Valle, AE\n Bedoya, CF\n Ramos, JPF\n Flix, J\n Fouz, MC\n Garcia-Abia, P\n Lopez, OG\n Lopez, SG\n Hernandez, JM\n Josa, MI\n De Martino, EN\n Yzquierdo, APC\n Pelayo, JP\n Olmeda, AQ\n Redondo, I\n Romero, L\n Soares, MS\n Albajar, C\n de Troconiz, JF\n Missiroli, M\n Moran, D\n Brun, H\n Cuevas, J\n Menendez, JF\n Folgueras, S\n Caballero, IG\n Cifuentes, JAB\n Cabrillo, IJ\n Calderon, A\n Campderros, JD\n Fernandez, M\n Gomez, G\n Graziano, A\n Virto, AL\n Marco, J\n Marco, R\n Rivero, CM\n Matorras, F\n Sanchez, FJM\n Gomez, JP\n Rodrigo, T\n Rodriguez-Marrero, AY\n Ruiz-Jimeno, A\n Scodellaro, L\n Vila, I\n Cortabitarte, RV\n Abbaneo, D\n Auffray, E\n Auzinger, G\n Bachtis, M\n Baillon, P\n Ball, AH\n Barney, D\n Benaglia, A\n Bendavid, J\n Benhabib, L\n Benitez, JF\n Bloch, P\n Bocci, A\n Bonato, A\n Bondu, O\n Botta, C\n Breuker, H\n Camporesi, T\n Cerminara, G\n Colafranceschi, S\n D'Alfonso, M\n d'Enterria, D\n Dabrowski, A\n David, A\n De Guio, F\n De Roeck, A\n De Visscher, S\n Di Marco, E\n Dobson, M\n Dordevic, M\n Dorney, B\n Dupont-Sagorin, N\n Elliott-Peisert, A\n Franzoni, G\n Funk, W\n Gigi, D\n Gill, K\n Giordano, D\n Girone, M\n Glege, F\n Guida, R\n Gundacker, S\n Guthoff, M\n Hammer, J\n Hansen, M\n Harris, P\n Hegeman, J\n Innocente, V\n Janot, P\n Kousouris, K\n Krajczar, K\n Lecoq, P\n Lourenco, C\n Magini, N\n Malgeri, L\n Mannelli, M\n Marrouche, J\n Masetti, L\n Meijers, F\n Mersi, S\n Meschi, E\n Moortgat, F\n Morovic, S\n Mulders, M\n Orsini, L\n Pape, L\n Perez, E\n Petrilli, A\n Petrucciani, G\n Pfeiffer, A\n Pimia, M\n Piparo, D\n Plagge, M\n Racz, A\n Rolandi, G\n Rovere, M\n Sakulin, H\n Schafer, C\n Schwick, C\n Sharma, A\n Siegrist, P\n Silva, P\n Simon, M\n Sphicas, P\n Spiga, D\n Steggemann, J\n Stieger, B\n Stoye, M\n Takahashi, Y\n Treille, D\n Tsirou, A\n Veres, GI\n Wardle, N\n Wohri, HK\n Wollny, H\n Zeuner, WD\n Bertl, W\n Deiters, K\n Erdmann, W\n Horisberger, R\n Ingram, Q\n Kaestli, HC\n Kotlinski, D\n Langenegger, U\n Renker, D\n Rohe, T\n Bachmair, F\n Bani, L\n Bianchini, L\n Buchmann, MA\n Casal, B\n Chanon, N\n Dissertori, G\n Dittmar, M\n Donega, M\n Dunser, M\n Eller, P\n Grab, C\n Hits, D\n Hoss, J\n Lustermann, W\n Mangano, B\n Marini, AC\n Marionneau, M\n del Arbol, PMR\n Masciovecchio, M\n Meister, D\n Mohr, N\n Musella, P\n Nageli, C\n Nessi-Tedaldi, F\n Pandolfi, F\n Pauss, F\n Perrozzi, L\n Peruzzi, M\n Quittnat, M\n Rebane, L\n Rossini, M\n Starodumov, A\n Takahashi, M\n Theofilatos, K\n Wallny, R\n Weber, HA\n Amsler, C\n Canelli, MF\n Chiochia, V\n De Cosa, A\n Hinzmann, A\n Hreus, T\n Kilminster, B\n Lange, C\n Ngadiuba, J\n Pinna, D\n Robmann, P\n Ronga, FJ\n Taroni, S\n Verzetti, M\n Yang, Y\n Cardaci, M\n Chen, KH\n Ferro, C\n Kuo, CM\n Lin, W\n Lu, YJ\n Volpe, R\n Yu, SS\n Chang, P\n Chang, YH\n Chao, Y\n Chen, KF\n Chen, PH\n Dietz, C\n Grundler, U\n Hou, WS\n Liu, YF\n Lu, RS\n Moya, MM\n Petrakou, E\n Tzeng, YM\n Wilken, R\n Asavapibhop, B\n Singh, G\n Srimanobhas, N\n Suwonjandee, N\n Adiguzel, A\n Bakirci, MN\n Cerci, S\n Dozen, C\n Dumanoglu, I\n Eskut, E\n Girgis, S\n Gokbulut, G\n Guler, Y\n Gurpinar, E\n Hos, I\n Kangal, EE\n Topaksu, AK\n Onengut, G\n Ozdemir, K\n Ozturk, S\n Polatoz, A\n Cerci, DS\n Tali, B\n Topakli, H\n Vergili, M\n Zorbilmez, C\n Akin, IV\n Bilin, B\n Bilmis, S\n Gamsizkan, H\n Isildak, B\n Karapinar, G\n Ocalan, K\n Sekmen, S\n Surat, UE\n Yalvac, M\n Zeyrek, M\n Albayrak, EA\n Gulmez, E\n Kaya, M\n Kaya, O\n Yetkin, T\n Cankocak, K\n Vardarli, FI\n Levchuk, L\n Sorokin, P\n Brooke, JJ\n Clement, E\n Cussans, D\n Flacher, H\n Goldstein, J\n Grimes, M\n Heath, GP\n Heath, HF\n Jacob, J\n Kreczko, L\n Lucas, C\n Meng, Z\n Newbold, DM\n Paramesvaran, S\n Poll, A\n Sakuma, T\n El Nasr-Storey, SS\n Senkin, S\n Smith, VJ\n Bell, KW\n Belyaev, A\n Brew, C\n Brown, RM\n Cockerill, DJA\n Coughlan, JA\n Harder, K\n Harper, S\n Olaiya, E\n Petyt, D\n Shepherd-Themistocleous, CH\n Thea, A\n Tomalin, IR\n Williams, T\n Womersley, WJ\n Worm, SD\n Baber, M\n Bainbridge, R\n Buchmuller, O\n Burton, D\n Colling, D\n Cripps, N\n Dauncey, P\n Davies, G\n Della Negra, M\n Dunne, P\n Elwood, A\n Ferguson, W\n Fulcher, J\n Futyan, D\n Hall, G\n Iles, G\n Jarvis, M\n Karapostoli, G\n Kenzie, M\n Lane, R\n Lucas, R\n Lyons, L\n Magnan, AM\n Malik, S\n Mathias, B\n Nash, J\n Nikitenko, A\n Pela, J\n Pesaresi, M\n Petridis, K\n Raymond, DM\n Rogerson, S\n Rose, A\n Seez, C\n Sharp, P\n Tapper, A\n Acosta, MV\n Virdee, T\n Zenz, SC\n Cole, JE\n Hobson, PR\n Khan, A\n Kyberd, P\n Leggat, D\n Leslie, D\n Reid, ID\n Symonds, P\n Teodorescu, L\n Turner, M\n Dittmann, J\n Hatakeyama, K\n Kasmi, A\n Liu, H\n Pastika, N\n Scarborough, T\n Wu, Z\n Charaf, O\n Cooper, SI\n Henderson, C\n Rumerio, P\n Avetisyan, A\n Bose, T\n Fantasia, C\n Lawson, P\n Richardson, C\n Rohlf, J\n John, JS\n Sulak, L\n Alimena, J\n Berry, E\n Bhattacharya, S\n Christopher, G\n Cutts, D\n Demiragli, Z\n Dhingra, N\n Ferapontov, A\n Garabedian, A\n Heintz, U\n Kukartsev, G\n Laird, E\n Landsberg, G\n Luk, M\n Narain, M\n Segala, M\n Sinthuprasith, T\n Speer, T\n Swanson, J\n Breedon, R\n Breto, G\n Sanchez, MCD\n Chauhan, S\n Chertok, M\n Conway, J\n Conway, R\n Cox, PT\n Erbacher, R\n Gardner, M\n Ko, W\n Lander, R\n Mulhearn, M\n Pellett, D\n Pilot, J\n Ricci-Tam, F\n Shalhout, S\n Smith, J\n Squires, M\n Stolp, D\n Tripathi, M\n Wilbur, S\n Yohay, R\n Cousins, R\n Everaerts, P\n Farrell, C\n Hauser, J\n Ignatenko, M\n Rakness, G\n Takasugi, E\n Valuev, V\n Weber, M\n Burt, K\n Clare, R\n Ellison, J\n Gary, JW\n Hanson, G\n Heilman, J\n Rikova, MI\n Jandir, P\n Kennedy, E\n Lacroix, F\n Long, OR\n Luthra, A\n Malberti, M\n Negrete, MO\n Shrinivas, A\n Sumowidagdo, S\n Wimpenny, S\n Branson, JG\n Cerati, GB\n Cittolin, S\n D'Agnolo, RT\n Holzner, A\n Kelley, R\n Klein, D\n Letts, J\n Macneill, I\n Olivito, D\n Padhi, S\n Palmer, C\n Pieri, M\n Sani, M\n Sharma, V\n Simon, S\n Tadel, M\n Tu, Y\n Vartak, A\n Welke, C\n Wurthwein, F\n Yagil, A\n Della Porta, GZ\n Barge, D\n Bradmiller-Feld, J\n Campagnari, C\n Danielson, T\n Dishaw, A\n Dutta, V\n Flowers, K\n Sevilla, MF\n Geffert, P\n George, C\n Golf, F\n Gouskos, L\n Incandela, J\n Justus, C\n Mccoll, N\n Mullin, SD\n Richman, J\n Stuart, D\n To, W\n West, C\n Yoo, J\n Apresyan, A\n Bornheim, A\n Bunn, J\n Chen, Y\n Duarte, J\n Mott, A\n Newman, HB\n Pena, C\n Pierini, M\n Spiropulu, M\n Vlimant, JR\n Wilkinson, R\n Xie, S\n Zhu, RY\n Azzolini, V\n Calamba, A\n Carlson, B\n Ferguson, T\n Iiyama, Y\n Paulini, M\n Russ, J\n Vogel, H\n Vorobiev, I\n Cumalat, JP\n Ford, WT\n Gaz, A\n Krohn, M\n Lopez, EL\n Nauenberg, U\n Smith, JG\n Stenson, K\n Wagner, SR\n Alexander, J\n Chatterjee, A\n Chaves, J\n Chu, J\n Dittmer, S\n Eggert, N\n Mirman, N\n Kaufman, GN\n Patterson, JR\n Ryd, A\n Salvati, E\n Skinnari, L\n Sun, W\n Teo, WD\n Thom, J\n Thompson, J\n Tucker, J\n Weng, Y\n Winstrom, L\n Wittich, P\n Winn, D\n Abdullin, S\n Albrow, M\n Anderson, J\n Apollinari, G\n Bauerdick, LAT\n Beretvas, A\n Berryhill, J\n Bhat, PC\n Bolla, G\n Burkett, K\n Butler, JN\n Cheung, HWK\n Chlebana, F\n Cihangir, S\n Elvira, VD\n Fisk, I\n Freeman, J\n Gottschalk, E\n Gray, L\n Green, D\n Grunendahl, S\n Gutsche, O\n Hanlon, J\n Hare, D\n Harris, RM\n Hirschauer, J\n Hooberman, B\n Jindariani, S\n Johnson, M\n Joshi, U\n Klima, B\n Kreis, B\n Kwan, S\n Linacre, J\n Lincoln, D\n Lipton, R\n Liu, T\n Lykken, J\n Maeshima, K\n Marraffino, JM\n Outschoorn, VIM\n Maruyama, S\n Mason, D\n McBride, P\n Merkel, P\n Mishra, K\n Mrenna, S\n Nahn, S\n Newman-Holmes, C\n O'Dell, V\n Prokofyev, O\n Sexton-Kennedy, E\n Soha, A\n Spalding, WJ\n Spiegel, L\n Taylor, L\n Tkaczyk, S\n Tran, NV\n Uplegger, L\n Vaandering, EW\n Vidal, R\n Whitbeck, A\n Whitmore, J\n Yang, F\n Acosta, D\n Avery, P\n Bortignon, P\n Bourilkov, D\n Carver, M\n Curry, D\n Das, S\n De Gruttola, M\n Di Giovanni, GP\n Field, RD\n Fisher, M\n Furic, IK\n Hugon, J\n Konigsberg, J\n Korytov, A\n Kypreos, T\n Low, JF\n Matchev, K\n Mei, H\n Milenovic, P\n Mitselmakher, G\n Muniz, L\n Rinkevicius, A\n Shchutska, L\n Snowball, M\n Sperka, D\n Yelton, J\n Zakaria, M\n Hewamanage, S\n Linn, S\n Markowitz, P\n Martinez, G\n Rodriguez, JL\n Adams, JR\n Adams, T\n Askew, A\n Bochenek, J\n Diamond, B\n Haas, J\n Hagopian, S\n Hagopian, V\n Johnson, KF\n Prosper, H\n Veeraraghavan, V\n Weinberg, M\n Baarmand, MM\n Hohlmann, M\n Kalakhety, H\n Yumiceva, F\n Adams, MR\n Apanasevich, L\n Berry, D\n Betts, RR\n Bucinskaite, I\n Cavanaugh, R\n Evdokimov, O\n Gauthier, L\n Gerber, CE\n Hofman, DJ\n Kurt, P\n O'Brien, C\n Gonzalez, IDS\n Silkworth, C\n Turner, P\n Varelas, N\n Bilki, B\n Clarida, W\n Dilsiz, K\n Haytmyradov, M\n Merlo, JP\n Mermerkaya, H\n Mestvirishvili, A\n Moeller, A\n Nachtman, J\n Ogul, H\n Onel, Y\n Ozok, F\n Penzo, A\n Rahmat, R\n Sen, S\n Tan, P\n Tiras, E\n Wetzel, J\n Yi, K\n Anderson, I\n Barnett, BA\n Blumenfeld, B\n Bolognesi, S\n Fehling, D\n Gritsan, AV\n Maksimovic, P\n Martin, C\n Swartz, M\n Xiao, M\n Baringer, P\n Bean, A\n Benelli, G\n Bruner, C\n Gray, J\n Kenny, RP\n Majumder, D\n Malek, M\n Murray, M\n Noonan, D\n Sanders, S\n Sekaric, J\n Stringer, R\n Wang, Q\n Wood, JS\n Chakaberia, I\n Ivanov, A\n Kaadze, K\n Khalil, S\n Makouski, M\n Maravin, Y\n Saini, LK\n Skhirtladze, N\n Svintradze, I\n Gronberg, J\n Lange, D\n Rebassoo, F\n Wright, D\n Baden, A\n Belloni, A\n Calvert, B\n Eno, SC\n Gomez, JA\n Hadley, NJ\n Jabeen, S\n Kellogg, RG\n Kolberg, T\n Lu, Y\n Mignerey, AC\n Pedro, K\n Skuja, A\n Tonjes, MB\n Tonwar, SC\n Apyan, A\n Barbieri, R\n Bierwagen, K\n Busza, W\n Cali, IA\n Di Matteo, L\n Ceballos, GG\n Goncharov, M\n Gulhan, D\n Klute, M\n Lai, YS\n Lee, YJ\n Levin, A\n Luckey, PD\n Paus, C\n Ralph, D\n Roland, C\n Roland, G\n Stephans, GSF\n Sumorok, K\n Velicanu, D\n Veverka, J\n Wyslouch, B\n Yang, M\n Zanetti, M\n Zhukova, V\n Dahmes, B\n Gude, A\n Kao, SC\n Klapoetke, K\n Kubota, Y\n Mans, J\n Nourbakhsh, S\n Rusack, R\n Singovsky, A\n Tambe, N\n Turkewitz, J\n Acosta, JG\n Oliveros, S\n Avdeeva, E\n Bloom, K\n Bose, S\n Claes, DR\n Dominguez, A\n Suarez, RG\n Keller, J\n Knowlton, D\n Kravchenko, I\n Lazo-Flores, J\n Meier, F\n Ratnikov, F\n Snow, GR\n Zvada, M\n Alverson, G\n Barberis, E\n Baumgartel, D\n Chasco, M\n Massironi, A\n Morse, DM\n Nash, D\n Orimoto, T\n Trocino, D\n Wang, RJ\n Wood, D\n Zhang, J\n Hahn, KA\n Kubik, A\n Mucia, N\n Odell, N\n Pollack, B\n Pozdnyakov, A\n Schmitt, M\n Stoynev, S\n Sung, K\n Velasco, M\n Won, S\n Brinkerhoff, A\n Chan, KM\n Drozdetskiy, A\n Hildreth, M\n Jessop, C\n Karmgard, DJ\n Kellams, N\n Lannon, K\n Lynch, S\n Marinelli, N\n Musienko, Y\n Pearson, T\n Planer, M\n Ruchti, R\n Smith, G\n Valls, N\n Wayne, M\n Wolf, M\n Woodard, A\n Antonelli, L\n Brinson, J\n Bylsma, B\n Durkin, LS\n Flowers, S\n Hart, A\n Hill, C\n Hughes, R\n Kotov, K\n Ling, TY\n Luo, W\n Puigh, D\n Rodenburg, M\n Winer, BL\n Wolfe, H\n Wulsin, HW\n Driga, O\n Elmer, P\n Hardenbrook, J\n Hebda, P\n Koay, SA\n Lujan, P\n Marlow, D\n Medvedeva, T\n Mooney, M\n Olsen, J\n Piroue, P\n Quan, X\n Saka, H\n Stickland, D\n Tully, C\n Werner, JS\n Zuranski, A\n Brownson, E\n Malik, S\n Mendez, H\n Vargas, JER\n Barnes, VE\n Benedetti, D\n Bortoletto, D\n De Mattia, M\n Gutay, L\n Hu, Z\n Jha, MK\n Jones, M\n Jung, K\n Kress, M\n Leonardo, N\n Miller, DH\n Neumeister, N\n Primavera, F\n Radburn-Smith, BC\n Shi, X\n Shipsey, I\n Silvers, D\n Svyatkovskiy, A\n Wang, F\n Xie, W\n Xu, L\n Zablocki, J\n Parashar, N\n Stupak, J\n Adair, A\n Akgun, B\n Ecklund, KM\n Geurts, FJM\n Li, W\n Michlin, B\n Padley, BP\n Redjimi, R\n Roberts, J\n Zabel, J\n Betchart, B\n Bodek, A\n de Barbaro, P\n Demina, R\n Eshaq, Y\n Ferbel, T\n Galanti, M\n Garcia-Bellido, A\n Goldenzweig, P\n Han, J\n Harel, A\n Hindrichs, O\n Khukhunaishvili, A\n Korjenevski, S\n Petrillo, G\n Vishnevskiy, D\n Ciesielski, R\n Demortier, L\n Goulianos, K\n Mesropian, C\n Arora, S\n Barker, A\n Chou, JP\n Contreras-Campana, C\n Contreras-Campana, E\n Duggan, D\n Ferencek, D\n Gershtein, Y\n Gray, R\n Halkiadakis, E\n Hidas, D\n Kaplan, S\n Lath, A\n Panwalkar, S\n Park, M\n Patel, R\n Salur, S\n Schnetzer, S\n Sheffield, D\n Somalwar, S\n Stone, R\n Thomas, S\n Thomassen, P\n Walker, M\n Rose, K\n Spanier, S\n York, A\n Bouhali, O\n Hernandez, AC\n Eusebi, R\n Flanagan, W\n Gilmore, J\n Kamon, T\n Khotilovich, V\n Krutelyov, V\n Montalvo, R\n Osipenkov, I\n Pakhotin, Y\n Perloff, A\n Roe, J\n Rose, A\n Safonov, A\n Suarez, I\n Tatarinov, A\n Ulmer, KA\n Akchurin, N\n Cowden, C\n Damgov, J\n Dragoiu, C\n Dudero, PR\n Faulkner, J\n Kovitanggoon, K\n Kunori, S\n Lee, SW\n Libeiro, T\n Volobouev, I\n Appelt, E\n Delannoy, AG\n Greene, S\n Gurrola, A\n Johns, W\n Maguire, C\n Mao, Y\n Melo, A\n Sharma, M\n Sheldon, P\n Snook, B\n Tuo, S\n Velkovska, J\n Arenton, MW\n Boutle, S\n Cox, B\n Francis, B\n Goodell, J\n Hirosky, R\n Ledovskoy, A\n Li, H\n Lin, C\n Neu, C\n Wolfe, E\n Wood, J\n Clarke, C\n Harr, R\n Karchin, PE\n Don, CKK\n Lamichhane, P\n Sturdy, J\n Belknap, DA\n Carlsmith, D\n Cepeda, M\n Dasu, S\n Dodd, L\n Duric, S\n Friis, E\n Hall-Wilton, R\n Herndon, M\n Herve, A\n Klabbers, P\n Lanaro, A\n Lazaridis, C\n Levine, A\n Loveless, R\n Mohapatra, A\n Ojalvo, I\n Perry, T\n Pierro, GA\n Polese, G\n Ross, I\n Sarangi, T\n Savin, A\n Smith, WH\n Taylor, D\n Vuosalo, C\n Woods, N\nAF Khachatryan, V.\n Sirunyan, A. M.\n Tumasyan, A.\n Adam, W.\n Bergauer, T.\n Dragicevic, M.\n Eroe, J.\n Friedl, M.\n Fruehwirth, R.\n Ghete, V. M.\n Hartl, C.\n Hoermann, N.\n Hrubec, J.\n Jeitler, M.\n Kiesenhofer, W.\n Knuenz, V.\n Krammer, M.\n Kraetschmer, I.\n Liko, D.\n Mikulec, I.\n Rabady, D.\n Rahbaran, B.\n Rohringer, H.\n Schoefbeck, R.\n Strauss, J.\n Treberer-Treberspurg, W.\n Waltenberger, W.\n Wulz, C. -E.\n Mossolov, V.\n Shumeiko, N.\n SuarezGonzalez, J.\n Alderweireldt, S.\n Bansal, S.\n Cornelis, T.\n DeWolf, E. A.\n Janssen, X.\n Knutsson, A.\n Lauwers, J.\n Luyckx, S.\n Ochesanu, S.\n Rougny, R.\n De Klundert, M. Van\n Van Haevermaet, H.\n Van Mechelen, P.\n Van Remortel, N.\n Van Spilbeeck, A.\n Blekman, F.\n Blyweert, S.\n D'Hondt, J.\n Daci, N.\n Heracleous, N.\n Keaveney, J.\n Lowette, S.\n Maes, M.\n Olbrechts, A.\n Python, Q.\n Strom, D.\n Tavernier, S.\n Van Doninck, W.\n Van Mulders, P.\n Van Onsem, G. P.\n Villella, I.\n Caillol, C.\n Clerbaux, B.\n De Lentdecker, G.\n Dobur, D.\n Favart, L.\n Gay, A. P. R.\n Grebenyuk, A.\n Leonard, A.\n Mohammadi, A.\n Pernie, L.\n Randle-Conde, A.\n Reis, T.\n Seva, T.\n Thomas, L.\n van der Velde, C.\n van Laer, P.\n Wang, J.\n Zenoni, F.\n Adler, V.\n Beernaert, K.\n Benucci, L.\n Cimmino, A.\n Costantini, S.\n Crucy, S.\n Dildick, S.\n Fagot, A.\n Garcia, G.\n Mccartin, J.\n Rios, A. A. Ocampo\n Poyraz, D.\n Ryckbosch, D.\n SalvaDiblen, S.\n Sigamani, M.\n Strobbe, N.\n Thyssen, F.\n Tytgat, M.\n Yazgan, E.\n Zaganidis, N.\n Basegmez, S.\n Beluffi, C.\n Bruno, G.\n Castello, R.\n Caudron, A.\n Ceard, L.\n Da Silveira, G. G.\n Delaere, C.\n du Pree, T.\n Favart, D.\n Forthomme, L.\n Giammanco, A.\n Hollar, J.\n Jafari, A.\n Jez, P.\n Komm, M.\n Lemaitre, V.\n Nuttens, C.\n Perrini, L.\n Pin, A.\n Piotrzkowski, K.\n Popov, A.\n Quertenmont, L.\n Selvaggi, M.\n Marono, M. Vidal\n Garcia, J. M. Vizan\n Beliy, N.\n Caebergs, T.\n Daubie, E.\n Hammad, G. H.\n Alda, W. L., Jr.\n Alves, G. A.\n Brito, L.\n Correa Martins, M., Jr.\n Dos Reis Martins, T.\n Molina, J.\n Mora Herrera, C.\n Pol, M. E.\n Rebello Teles, P.\n Carvalho, W.\n Chinellato, J.\n Custodio, A.\n Da Costa, E. M.\n De Jesus Damiao, D.\n De Oliveira Martins, C.\n Fonseca De Souza, S.\n Malbouisson, H.\n Matos Figueiredo, D.\n Mundim, L.\n Nogima, H.\n Prado Da Silva, W. L.\n Santaolalla, J.\n Santoro, A.\n Sznajder, A.\n Tonelli Manganote, E. J.\n Vilela Pereira, A.\n Bernardes, C. A.\n Dogra, S.\n Fernandez Perez Tomei, T. R.\n Gregores, E. M.\n Mercadante, P. G.\n Novaes, S. F.\n Padula, Sandra S.\n Aleksandrov, A.\n Genchev, V.\n Hadjiiska, R.\n Iaydjiev, P.\n Marinov, A.\n Piperov, S.\n Rodozov, M.\n Stoykova, S.\n Sultanov, G.\n Vutova, M.\n Dimitrov, A.\n Glushkov, I.\n Litov, L.\n Pavlov, B.\n Petkov, P.\n Bian, J. G.\n Chen, G. M.\n Chen, H. S.\n Chen, M.\n Cheng, T.\n Du, R.\n Jiang, C. H.\n Plestina, R.\n Romeo, F.\n Tao, J.\n Wang, Z.\n Asawatangtrakuldee, C.\n Ban, Y.\n Liu, S.\n Mao, Y.\n Qian, S. J.\n Wang, D.\n Xu, Z.\n Zhang, L.\n Zou, W.\n Avila, C.\n Cabrera, A.\n Chaparro Sierra, L. F.\n Florez, C.\n Gomez, J. P.\n Gomez Moreno, B.\n Sanabria, J. C.\n Godinovic, N.\n Lelas, D.\n Polic, D.\n Puljak, I.\n Antunovic, Z.\n Kovac, M.\n Brigljevic, V.\n Kadija, K.\n Luetic, J.\n Mekterovic, D.\n Sudic, L.\n Attikis, A.\n Mavromanolakis, G.\n Mousa, J.\n Nicolaou, C.\n Ptochos, F.\n Razis, P. A.\n Rykaczewski, H.\n Bodlak, M.\n Finger, M.\n Finger, M., Jr.\n Assran, Y.\n Kamel, A. Ellithi\n Mahmoud, M. A.\n Radi, A.\n Kadastik, M.\n Murumaa, M.\n Raidal, M.\n Tiko, A.\n Eerola, P.\n Voutilainen, M.\n Harkonen, J.\n Karimaki, V.\n Kinnunen, R.\n Kortelainen, M. J.\n Lampen, T.\n Lassila-Perini, K.\n Lehti, S.\n Linden, T.\n Luukka, P.\n Maenpaa, T.\n Peltola, T.\n Tuominen, E.\n Tuominiemi, J.\n Tuovinen, E.\n Wendland, L.\n Talvitie, J.\n Tuuva, T.\n Besancon, M.\n Couderc, F.\n Dejardin, M.\n Denegri, D.\n Fabbro, B.\n Faure, J. L.\n Favaro, C.\n Ferri, F.\n Ganjour, S.\n Givernaud, A.\n Gras, P.\n de Monchenault, G. Hamel\n Jarry, P.\n Locci, E.\n Malcles, J.\n Rander, J.\n Rosowsky, A.\n Titov, M.\n Baffioni, S.\n Beaudette, F.\n Busson, P.\n Chapon, E.\n Charlot, C.\n Dahms, T.\n Dalchenko, M.\n Dobrzynski, L.\n Filipovic, N.\n Florent, A.\n de Cassagnac, R. Granier\n Mastrolorenzo, L.\n Mine, P.\n Naranjo, I. N.\n Nguyen, M.\n Ochando, C.\n Ortona, G.\n Paganini, P.\n Regnard, S.\n Salerno, R.\n Sauvan, J. B.\n Sirois, Y.\n Veelken, C.\n Yilmaz, Y.\n Zabi, A.\n Agram, J. -L.\n Andrea, J.\n Aubin, A.\n Bloch, D.\n Brom, J. -M.\n Chabert, E. C.\n Collard, C.\n Conte, E.\n Fontaine, J. -C.\n Gele, D.\n Goerlach, U.\n Goetzmann, C.\n Le Bihan, A. -C.\n Skovpen, K.\n Van Hove, P.\n Gadrat, S.\n Beauceron, S.\n Beaupere, N.\n Bernet, C.\n Boudoul, G.\n Bouvier, E.\n Brochet, S.\n Montoya, A. Carrillo\n Chasserat, J.\n Chierici, R.\n Contardo, D.\n Courbon, B.\n Depasse, P.\n El Mamouni, H.\n Fan, J.\n Fay, J.\n Gascon, S.\n Gouzevitch, M.\n Ille, B.\n Kurca, T.\n Lethuillier, M.\n Mirabito, L.\n Pequegnot, A. L.\n Perries, S.\n Alvarez, J. D. Ruiz\n Sabes, D.\n Sgandurra, L.\n Sordini, V.\n Donckt, M. Vander\n Verdier, P.\n Viret, S.\n Xiao, H.\n Tsamalaidze, Z.\n Autermann, C.\n Beranek, S.\n Bontenackels, M.\n Edelhoff, M.\n Feld, L.\n Heister, A.\n Klein, K.\n Lipinski, M.\n Ostapchuk, A.\n Preuten, M.\n Raupach, F.\n Sammet, J.\n Schael, S.\n Schulte, J. F.\n Weber, H.\n Wittmer, B.\n Zhukov, V.\n Ata, M.\n Brodski, M.\n Dietz-Laursonn, E.\n Duchardt, D.\n Erdmann, M.\n Fischer, R.\n Gueth, A.\n Hebbeker, T.\n Heidemann, C.\n Hoepfner, K.\n Klingebiel, D.\n Knutzen, S.\n Kreuzer, P.\n Merschmeyer, M.\n Meyer, A.\n Millet, P.\n Olschewski, M.\n Padeken, K.\n Papacz, P.\n Reithler, H.\n Schmitz, S. A.\n Sonnenschein, L.\n Teyssier, D.\n Thuer, S.\n Weber, M.\n Cherepanov, V.\n Erdogan, Y.\n Fluegge, G.\n Geenen, H.\n Geisler, M.\n Haj Ahmad, W.\n Hoehle, F.\n Kargoll, B.\n Kress, T.\n Kuessel, Y.\n Kuensken, A.\n Lingemann, J.\n Nowack, A.\n Nugent, I. M.\n Pooth, O.\n Stahl, A.\n Martin, M. Aldaya\n Asin, I.\n Bartosik, N.\n Behr, J.\n Behrens, U.\n Bell, A. J.\n Bethani, A.\n Borras, K.\n Burgmeier, A.\n Cakir, A.\n Calligaris, L.\n Campbell, A.\n Choudhury, S.\n Costanza, F.\n Pardos, C. Diez\n Dolinska, G.\n Dooling, S.\n Dorland, T.\n Eckerlin, G.\n Eckstein, D.\n Eichhorn, T.\n Flucke, G.\n Garcia, J. Garay\n Geiser, A.\n Gizhko, A.\n Gunnellini, P.\n Hauk, J.\n Hempel, M.\n Jung, H.\n Kalogeropoulos, A.\n Karacheban, O.\n Kasemann, M.\n Katsas, P.\n Kieseler, J.\n Kleinwort, C.\n Korol, I.\n Kruecker, D.\n Lange, W.\n Leonard, J.\n Lipka, K.\n Lobanov, A.\n Lohmann, W.\n Lutz, B.\n Mankel, R.\n Marfin, I.\n Melzer-Pellmann, I. -A.\n Meyer, A. B.\n Mittag, G.\n Mnich, J.\n Mussgiller, A.\n Naumann-Emme, S.\n Nayak, A.\n Ntomari, E.\n Perrey, H.\n Pitzl, D.\n Placakyte, R.\n Raspereza, A.\n Cipriano, P. M. Ribeiro\n Roland, B.\n Ron, E.\n Sahin, M. Oe.\n Salfeld-Nebgen, J.\n Saxena, P.\n Schoerner-Sadenius, T.\n Schoerder, M.\n Seitz, C.\n Spannagel, S.\n Trevino, A. D. R. Vargas\n Walsh, R.\n Wissing, C.\n Blobel, V.\n Vignali, M. Centis\n Draeger, A. R.\n Erfle, J.\n Garutti, E.\n Goebel, K.\n Goerner, M.\n Haller, J.\n Hoffmann, M.\n Hoeing, R. S.\n Junkes, A.\n Kirschenmann, H.\n Klanner, R.\n Kogler, R.\n Lapsien, T.\n Lenz, T.\n Marchesini, I.\n Marconi, D.\n Ott, J.\n Peiffer, T.\n Perieanu, A.\n Pietsch, N.\n Poehlsen, J.\n Poehlsen, T.\n Rathjens, D.\n Sander, C.\n Schettler, H.\n Schleper, P.\n Schlieckau, E.\n Schmidt, A.\n Seidel, M.\n Sola, V.\n Stadie, H.\n Steinbrueck, G.\n Troendle, D.\n Usai, E.\n Vanelderen, L.\n Vanhoefer, A.\n Barth, C.\n Baus, C.\n Berger, J.\n Boeser, C.\n Butz, E.\n Chwalek, T.\n De Boer, W.\n Descroix, A.\n Dierlamm, A.\n Feindt, M.\n Frensch, F.\n Giffels, M.\n Gilbert, A.\n Hartmann, F.\n Hauth, T.\n Husemann, U.\n Katkov, I.\n Kornmayer, A.\n Pardo, P. Lobelle\n Mozer, M. U.\n Mueller, T.\n Mueller, Th.\n Nuernberg, A.\n Quast, G.\n Rabbertz, K.\n Roecker, S.\n Simonis, H. J.\n Stober, F. M.\n Ulrich, R.\n Wagner-Kuhr, J.\n Wayand, S.\n Weiler, T.\n Wolf, R.\n Anagnostou, G.\n Daskalakis, G.\n Geralis, T.\n Giakoumopoulou, V. A.\n Kyriakis, A.\n Loukas, D.\n Markou, A.\n Markou, C.\n Psallidas, A.\n Topsis-Giotis, I.\n Agapitos, A.\n Kesisoglou, S.\n Panagiotou, A.\n Saoulidou, N.\n Stiliaris, E.\n Aslanoglou, X.\n Evangelou, I.\n Flouris, G.\n Foudas, C.\n Kokkas, P.\n Manthos, N.\n Papadopoulos, I.\n Paradas, E.\n Strologas, J.\n Bencze, G.\n Hajdu, C.\n Hidas, P.\n Horvath, D.\n Sikler, F.\n Veszpremi, V.\n Vesztergombi, G.\n Zsigmond, A. J.\n Beni, N.\n Czellar, S.\n Karancsi, J.\n Molnar, J.\n Palinkas, J.\n Szillasi, Z.\n Makovec, A.\n Raics, P.\n Trocsanyi, Z. L.\n Ujvari, B.\n Swain, S. K.\n Beri, S. B.\n Bhatnagar, V.\n Gupta, R.\n Bhawandeep, U.\n Kalsi, A. K.\n Kaur, M.\n Kumar, R.\n Mittal, M.\n Nishu, N.\n Singh, J. B.\n Kumar, Ashok\n Kumar, Arun\n Ahuja, S.\n Bhardwaj, A.\n Choudhary, B. C.\n Kumar, A.\n Malhotra, S.\n Naimuddin, M.\n Ranjan, K.\n Sharma, V.\n Banerjee, S.\n Bhattacharya, S.\n Chatterjee, K.\n Dutta, S.\n Gomber, B.\n Jain, Sa.\n Jain, Sh.\n Khurana, R.\n Modak, A.\n Mukherjee, S.\n Roy, D.\n Sarkar, S.\n Sharan, M.\n Abdulsalam, A.\n Dutta, D.\n Kumar, V.\n Mohanty, A. K.\n Pant, L. M.\n Shukla, P.\n Topkar, A.\n Aziz, T.\n Banerjee, S.\n Bhowmik, S.\n Chatterjee, R. M.\n Dewanjee, R. K.\n Dugad, S.\n Ganguly, S.\n Ghosh, S.\n Guchait, M.\n Gurtu, A.\n Kole, G.\n Kumar, S.\n Maity, M.\n Majumder, G.\n Mazumdar, K.\n Mohanty, G. B.\n Parida, B.\n Sudhakar, K.\n Wickramage, N.\n Sharma, S.\n Bakhshiansohi, H.\n Behnamian, H.\n Etesami, S. M.\n Fahim, A.\n Goldouzian, R.\n Khakzad, M.\n Najafabadi, M. Mohammadi\n Naseri, M.\n Mehdiabadi, S. Paktinat\n Hosseinabadi, F. Rezaei\n Safarzadeh, B.\n Zeinali, M.\n Felcini, M.\n Grunewald, M.\n Abbrescia, M.\n Calabria, C.\n Chhibra, S. S.\n Colaleo, A.\n Creanza, D.\n Cristella, L.\n De Filippis, N.\n De Palma, M.\n Fiore, L.\n Iaselli, G.\n Maggi, G.\n Maggi, M.\n My, S.\n Nuzzo, S.\n Pompili, A.\n Pugliese, G.\n Radogna, R.\n Selvaggi, G.\n Sharma, A.\n Silvestris, L.\n Venditti, R.\n Verwilligen, P.\n Abbiendi, G.\n Benvenuti, A. C.\n Bonacorsi, D.\n Braibant-Giacomelli, S.\n Brigliadori, L.\n Campanini, R.\n Capiluppi, P.\n Castro, B. A.\n Cavallo, F. R.\n Codispoti, G.\n Cuffiani, M.\n Dallavalle, G. M.\n Fabbri, F.\n Fanfani, A.\n Fasanella, D.\n Giacomelli, P.\n Grandi, C.\n Guiducci, L.\n Marcellini, S.\n Masetti, G.\n Montanari, A.\n Navarria, F. L.\n Perrotta, A.\n Rossi, A. M.\n Rovelli, T.\n Siroli, G. P.\n Tosi, N.\n Travaglini, R.\n Albergo, S.\n Cappello, G.\n Chiorboli, M.\n Costa, S.\n Giordano, F.\n Potenza, R.\n Tricomi, A.\n Tuve, C.\n Barbagli, G.\n Ciulli, V.\n Civinini, C.\n D'Alessandro, R.\n Focardi, E.\n Gallo, E.\n Gonzi, S.\n Gori, V.\n Lenzi, P.\n Meschini, M.\n Paoletti, S.\n Sguazzoni, G.\n Tropiano, A.\n Benussi, L.\n Bianco, S.\n Fabbri, F.\n Piccolo, D.\n Ferretti, R.\n Ferro, F.\n Lo Vetere, M.\n Robutti, E.\n Tosi, S.\n Dinardo, M. E.\n Fiorendi, S.\n Gennai, S.\n Gerosa, R.\n Ghezzi, A.\n Govoni, P.\n Lucchini, M. T.\n Malvezzi, S.\n Manzoni, R. A.\n Martelli, A.\n Marzocchi, B.\n Menasce, D.\n Moroni, L.\n Paganoni, M.\n Pedrini, D.\n Ragazzi, S.\n Redaelli, N.\n de Fatis, T. Tabarelli\n Buontempo, S.\n Cavallo, N.\n Di Guida, S.\n Fabozzi, F.\n Iorio, A. O. M.\n Lista, L.\n Meola, S.\n Merola, M.\n Paolucci, P.\n Azzi, P.\n Bacchetta, N.\n Bisello, D.\n Branca, A.\n Carlin, R.\n ChecchiA, P.\n Dall'Osso, M.\n Dorigo, T.\n Dosselli, U.\n Gasparini, F.\n Gasparini, U.\n Gozzelino, A.\n Kanishchev, K.\n Lacaprara, S.\n Margoni, M.\n Meneguzzo, A. T.\n Pazzini, J.\n Pozzobon, N.\n Ronchese, P.\n Simonetto, F.\n Torassa, E.\n Tosi, M.\n Zotto, P.\n Zucchetta, A.\n Zumerle, G.\n Gabusi, M.\n Ratti, S. P.\n Re, V.\n Riccardi, C.\n Salvini, P.\n Vitulo, P.\n Biasini, M.\n Bilei, G. M.\n Ciangottini, D.\n Fano, L.\n Lariccia, P.\n Mantovani, G.\n Menichelli, M.\n Saha, A.\n Santocchia, A.\n Spiezia, A.\n Androsov, K.\n Azzurri, P.\n Bagliesi, G.\n Bernardini, J.\n Boccali, T.\n Broccolo, G.\n Castaldi, R.\n Ciocci, M. A.\n Dell'Orso, R.\n Donato, S.\n Fedi, G.\n Fiori, F.\n Foa, L.\n Giassi, A.\n Grippo, M. T.\n Ligabue, F.\n Lomtadze, T.\n Martini, L.\n Messineo, A.\n Moon, C. S.\n Palla, F.\n Rizzi, A.\n Savoy-Navarro, A.\n Serban, A. T.\n Spagnolo, P.\n Squillacioti, P.\n Tenchini, R.\n Tonelli, G.\n Venturi, A.\n Verdini, P. G.\n Vernieri, C.\n Barone, L.\n Cavallari, F.\n D'imperio, G.\n Del Re, D.\n Diemoz, M.\n Jorda, C.\n Longo, E.\n Margaroli, F.\n Meridiani, P.\n Micheli, F.\n Organtini, G.\n Paramatti, R.\n Rahatlou, S.\n Rovelli, C.\n Santanastasio, F.\n Soffi, L.\n Traczyk, P.\n Amapane, N.\n Arcidiacono, R.\n Argiro, S.\n Arneodo, M.\n Bellan, R.\n Biino, C.\n Cartiglia, N.\n Casasso, S.\n Costa, M.\n Covarelli, R.\n Degano, A.\n Demaria, N.\n Finco, L.\n Mariotti, C.\n Maselli, S.\n Migliore, E.\n Monaco, V.\n Musich, M.\n Obertino, M. M.\n Pacher, L.\n Pastrone, N.\n Pelliccioni, M.\n Angioni, G. L. Pinna\n Potenza, A.\n Romero, A.\n Ruspa, M.\n Sacchi, R.\n Solano, A.\n Staiano, A.\n Tamponi, U.\n Belforte, S.\n Candelise, V.\n Casarsa, M.\n Cossutti, F.\n Della Ricca, G.\n Gobbo, B.\n La Licata, C.\n Marone, M.\n Schizzi, A.\n Umer, T.\n Zanetti, A.\n Chang, S.\n Kropivnitskaya, A.\n Nam, S. K.\n Kim, D. H.\n Kim, G. N.\n Kim, M. S.\n Kong, D. J.\n Lee, S.\n Oh, Y. D.\n Park, H.\n Sakharov, A.\n Son, D. C.\n Kim, T. J.\n Ryu, M. S.\n Kim, J. Y.\n Moon, D. H.\n Song, S.\n Choi, S.\n Gyun, D.\n Hong, B.\n Jo, M.\n Kim, H.\n Kim, Y.\n Lee, B.\n Lee, K. S.\n Park, S. K.\n Roh, Y.\n Yoo, H. D.\n Choi, M.\n Kim, J. H.\n Park, I. C.\n Ryu, G.\n Choi, Y.\n Choi, Y. K.\n Goh, J.\n Kim, D.\n Kwon, E.\n Lee, J.\n Yu, I.\n Juodagalvis, A.\n Komaragiri, J. R.\n Ali, M. A. B. Md\n Linares, E. Casimiro\n Castilla-Valdez, H.\n De La Cruz-Burelo, E.\n Heredia-de La Cruz, I.\n Hernandez-Almada, A.\n Lopez-Fernandez, R.\n Sanchez-Hernandez, A.\n Moreno, S. Carrillo\n Valencia, F. Vazquez\n Pedraza, I.\n Ibarguen, H. A. Salazar\n Pineda, A. Morelos\n Krofcheck, D.\n Butler, P. H.\n Reucroft, S.\n Ahmad, A.\n Ahmad, M.\n Hassan, Q.\n Hoorani, H. R.\n Khan, W. A.\n Khurshid, T.\n Shoaib, M.\n Bialkowska, H.\n Bluj, M.\n Boimska, B.\n Frueboes, T.\n Gorski, M.\n Kazana, M.\n Nawrocki, K.\n Romanowska-Rybinska, K.\n Szleper, M.\n Zalewski, P.\n Brona, G.\n Bunkowski, K.\n Cwiok, M.\n Dominik, W.\n Doroba, K.\n Kalinowski, A.\n Konecki, M.\n Krolikowski, J.\n Misiura, M.\n Olszewski, M.\n Bargassa, P.\n Beirao Da Cruz E Silva, C.\n Faccioli, P.\n Ferreira Parracho, P. G.\n Gallinaro, M.\n Lloret Iglesias, L.\n Nguyen, F.\n Rodrigues Antunes, J.\n Seixas, J.\n Varela, J.\n Vischia, P.\n Afanasiev, S.\n Bunin, P.\n Gavrilenko, M.\n Golutvin, I.\n Gorbunov, I.\n Kamenev, A.\n Karjavin, V.\n Konoplyanikov, V.\n Lanev, A.\n Malakhov, A.\n Matveev, V.\n Moisenz, P.\n Palichik, V.\n Perelygin, V.\n Shmatov, S.\n Skatchkov, N.\n Smirnov, V.\n Zarubin, A.\n Golovtsov, V.\n Ivanov, Y.\n Kim, V.\n Kuznetsova, E.\n Levchenko, P.\n Murzin, V.\n Oreshkin, V.\n Smirnov, I.\n Sulimov, V.\n Uvarov, L.\n Vavilov, S.\n Vorobyev, A.\n Vorobyev, An.\n Andreev, Yu.\n Dermenev, A.\n Gninenko, S.\n Golubev, N.\n Kirsanov, M.\n Krasnikov, N.\n Pashenkov, A.\n Tlisov, D.\n Toropin, A.\n Epshteyn, V.\n Gavrilov, V.\n Lychkovskaya, N.\n Popov, V.\n Pozdnyakov, I.\n Safronov, G.\n Semenov, S.\n Spiridonov, A.\n Stolin, V.\n Vlasov, E.\n Zhokin, A.\n Andreev, V.\n Azarkin, M.\n Dremin, I.\n Kirakosyan, M.\n Leonidov, A.\n Mesyats, G.\n Rusakov, S. V.\n Vinogradov, A.\n Belyaev, A.\n Boos, E.\n Dubinin, M.\n Dudko, L.\n Ershov, A.\n Gribushin, A.\n Klyukhin, V.\n Kodolova, O.\n Lokhtin, I.\n Obraztsov, S.\n Petrushanko, S.\n Savrin, V.\n Snigirev, A.\n Azhgirey, I.\n Bayshev, I.\n Bitioukov, S.\n Kachanov, V.\n Kalinin, A.\n Konstantinov, D.\n Krychkine, V.\n Petrov, V.\n Ryutin, R.\n Sobol, A.\n Tourtchanovitch, L.\n Troshin, S.\n Tyurin, N.\n Uzunian, A.\n Volkov, A.\n Adzic, P.\n Ekmedzic, M.\n Milosevic, J.\n Rekovic, V.\n Alcaraz Maestre, J.\n Battilana, C.\n Calvo, E.\n Cerrada, M.\n Chamizo Llatas, M.\n Colino, N.\n De La Cruz, B.\n Delgado Peris, A.\n Dominguez Vazquez, D.\n Escalante Del Valle, A.\n Fernandez Bedoya, C.\n Fernandez Ramos, J. P.\n Flix, J.\n Fouz, M. C.\n Garcia-Abia, P.\n Gonzalez Lopez, O.\n Goy Lopez, S.\n Hernandez, J. M.\n Josa, M. I.\n Navarro De Martino, E.\n Perez-Calero Yzquierdo, A.\n Puerta Pelayo, J.\n Quintario Olmeda, A.\n Redondo, I.\n Romero, L.\n Soares, M. S.\n Albajar, C.\n de Troconiz, J. F.\n Missiroli, M.\n Moran, D.\n Brun, H.\n Cuevas, J.\n Fernandez Menendez, J.\n Folgueras, S.\n Gonzalez Caballero, I.\n Brochero Cifuentes, J. A.\n Cabrillo, I. J.\n Calderon, A.\n Duarte Campderros, J.\n Fernandez, M.\n Gomez, G.\n Graziano, A.\n Lopez Virto, A.\n Marco, J.\n Marco, R.\n Martinez Rivero, C.\n Matorras, F.\n Munoz Sanchez, F. J.\n Piedra Gomez, J.\n Rodrigo, T.\n Rodriguez-Marrero, A. Y.\n Ruiz-Jimeno, A.\n Scodellaro, L.\n Vila, I.\n Vilar Cortabitarte, R.\n Abbaneo, D.\n Auffray, E.\n Auzinger, G.\n Bachtis, M.\n Baillon, P.\n Ball, A. H.\n Barney, D.\n Benaglia, A.\n Bendavid, J.\n Benhabib, L.\n Benitez, J. F.\n Bloch, P.\n Bocci, A.\n Bonato, A.\n Bondu, O.\n Botta, C.\n Breuker, H.\n Camporesi, T.\n Cerminara, G.\n Colafranceschi, S.\n D'Alfonso, M.\n d'Enterria, D.\n Dabrowski, A.\n David, A.\n De Guio, F.\n De Roeck, A.\n De Visscher, S.\n Di Marco, E.\n Dobson, M.\n Dordevic, M.\n Dorney, B.\n Dupont-Sagorin, N.\n Elliott-Peisert, A.\n Franzoni, G.\n Funk, W.\n Gigi, D.\n Gill, K.\n Giordano, D.\n Girone, M.\n Glege, F.\n Guida, R.\n Gundacker, S.\n Guthoff, M.\n Hammer, J.\n Hansen, M.\n Harris, P.\n Hegeman, J.\n Innocente, V.\n Janot, P.\n Kousouris, K.\n Krajczar, K.\n Lecoq, P.\n Lourenco, C.\n Magini, N.\n Malgeri, L.\n Mannelli, M.\n Marrouche, J.\n Masetti, L.\n Meijers, F.\n Mersi, S.\n Meschi, E.\n Moortgat, F.\n Morovic, S.\n Mulders, M.\n Orsini, L.\n Pape, L.\n Perez, E.\n Petrilli, A.\n Petrucciani, G.\n Pfeiffer, A.\n Pimiae, M.\n Piparo, D.\n Plagge, M.\n Racz, A.\n Rolandi, G.\n Rovere, M.\n Sakulin, H.\n Schaefer, C.\n Schwick, C.\n Sharma, A.\n Siegrist, P.\n Silva, P.\n Simon, M.\n Sphicas, P.\n Spiga, D.\n Steggemann, J.\n Stieger, B.\n Stoye, M.\n Takahashi, Y.\n Treille, D.\n Tsirou, A.\n Veres, G. I.\n Wardle, N.\n Woehri, H. K.\n Wollny, H.\n Zeuner, W. D.\n Bertl, W.\n Deiters, K.\n Erdmann, W.\n Horisberger, R.\n Ingram, Q.\n Kaestli, H. C.\n Kotlinski, D.\n Langenegger, U.\n Renker, D.\n Rohe, T.\n Bachmair, F.\n Baeni, L.\n Bianchini, L.\n Buchmann, M. A.\n Casal, B.\n Chanon, N.\n Dissertori, G.\n Dittmar, M.\n Donega, M.\n Duenser, M.\n Eller, P.\n Grab, C.\n Hits, D.\n Hoss, J.\n Lustermann, W.\n Mangano, B.\n Marini, A. C.\n Marionneau, M.\n del Arbol, P. Martinez Ruiz\n Masciovecchio, M.\n Meister, D.\n Mohr, N.\n Musella, P.\n Naegeli, C.\n Nessi-Tedaldi, F.\n Pandolfi, F.\n Pauss, F.\n Perrozzi, L.\n Peruzzi, M.\n Quittnat, M.\n Rebane, L.\n Rossini, M.\n Starodumov, A.\n Takahashi, M.\n Theofilatos, K.\n Wallny, R.\n Weber, H. A.\n Amsler, C.\n Canelli, M. F.\n Chiochia, V.\n De Cosa, A.\n Hinzmann, A.\n Hreus, T.\n Kilminster, B.\n Lange, C.\n Ngadiuba, J.\n Pinna, D.\n Robmann, P.\n Ronga, F. J.\n Taroni, S.\n Verzetti, M.\n Yang, Y.\n Cardaci, M.\n Chen, K. H.\n Ferro, C.\n Kuo, C. M.\n Lin, W.\n Lu, Y. J.\n Volpe, R.\n Yu, S. S.\n Chang, P.\n Chang, Y. H.\n Chao, Y.\n Chen, K. F.\n Chen, P. H.\n Dietz, C.\n Grundler, U.\n Hou, W. -S.\n Liu, Y. F.\n Lu, R. -S.\n Moya, M. Minano\n Petrakou, E.\n Tzeng, Y. M.\n Wilken, R.\n Asavapibhop, B.\n Singh, G.\n Srimanobhas, N.\n Suwonjandee, N.\n Adiguzel, A.\n Bakirci, M. N.\n Cerci, S.\n Dozen, C.\n Dumanoglu, I.\n Eskut, E.\n Girgis, S.\n Gokbulut, G.\n Guler, Y.\n Gurpinar, E.\n Hos, I.\n Kangal, E. E.\n Topaksu, A. Kayis\n Onengut, G.\n Ozdemir, K.\n Ozturk, S.\n Polatoz, A.\n Cerci, D. Sunar\n Tali, B.\n Topakli, H.\n Vergili, M.\n Zorbilmez, C.\n Akin, I. V.\n Bilin, B.\n Bilmis, S.\n Gamsizkan, H.\n Isildak, B.\n Karapinar, G.\n Ocalan, K.\n Sekmen, S.\n Surat, U. E.\n Yalvac, M.\n Zeyrek, M.\n Albayrak, E. A.\n Gulmez, E.\n Kaya, M.\n Kaya, O.\n Yetkin, T.\n Cankocak, K.\n Vardarli, F. I.\n Levchuk, L.\n Sorokin, P.\n Brooke, J. J.\n Clement, E.\n Cussans, D.\n Flacher, H.\n Goldstein, J.\n Grimes, M.\n Heath, G. P.\n Heath, H. F.\n Jacob, J.\n Kreczko, L.\n Lucas, C.\n Meng, Z.\n Newbold, D. M.\n Paramesvaran, S.\n Poll, A.\n Sakuma, T.\n El Nasr-Storey, S. Seif\n Senkin, S.\n Smith, V. J.\n Bell, K. W.\n Belyaev, A.\n Brew, C.\n Brown, R. M.\n Cockerill, D. J. A.\n Coughlan, J. A.\n Harder, K.\n Harper, S.\n Olaiya, E.\n Petyt, D.\n Shepherd-Themistocleous, C. H.\n Thea, A.\n Tomalin, I. R.\n Williams, T.\n Womersley, W. J.\n Worm, S. D.\n Baber, M.\n Bainbridge, R.\n Buchmuller, O.\n Burton, D.\n Colling, D.\n Cripps, N.\n Dauncey, P.\n Davies, G.\n Della Negra, M.\n Dunne, P.\n Elwood, A.\n Ferguson, W.\n Fulcher, J.\n Futyan, D.\n Hall, G.\n Iles, G.\n Jarvis, M.\n Karapostoli, G.\n Kenzie, M.\n Lane, R.\n Lucas, R.\n Lyons, L.\n Magnan, A. -M.\n Malik, S.\n Mathias, B.\n Nash, J.\n Nikitenko, A.\n Pela, J.\n Pesaresi, M.\n Petridis, K.\n Raymond, D. M.\n Rogerson, S.\n Rose, A.\n Seez, C.\n Sharp, P.\n Tapper, A.\n Acosta, M. Vazquez\n Virdee, T.\n Zenz, S. C.\n Cole, J. E.\n Hobson, P. R.\n Khan, A.\n Kyberd, P.\n Leggat, D.\n Leslie, D.\n Reid, I. D.\n Symonds, P.\n Teodorescu, L.\n Turner, M.\n Dittmann, J.\n Hatakeyama, K.\n Kasmi, A.\n Liu, H.\n Pastika, N.\n Scarborough, T.\n Wu, Z.\n Charaf, O.\n Cooper, S. I.\n Henderson, C.\n Rumerio, P.\n Avetisyan, A.\n Bose, T.\n Fantasia, C.\n Lawson, P.\n Richardson, C.\n Rohlf, J.\n John, J. St.\n Sulak, L.\n Alimena, J.\n Berry, E.\n Bhattacharya, S.\n Christopher, G.\n Cutts, D.\n Demiragli, Z.\n Dhingra, N.\n Ferapontov, A.\n Garabedian, A.\n Heintz, U.\n Kukartsev, G.\n Laird, E.\n Landsberg, G.\n Luk, M.\n Narain, M.\n Segala, M.\n Sinthuprasith, T.\n Speer, T.\n Swanson, J.\n Breedon, R.\n Breto, G.\n Sanchez, M. Calderon De La Barca\n Chauhan, S.\n Chertok, M.\n Conway, J.\n Conway, R.\n Cox, P. T.\n Erbacher, R.\n Gardner, M.\n Ko, W.\n Lander, R.\n Mulhearn, M.\n Pellett, D.\n Pilot, J.\n Ricci-Tam, F.\n Shalhout, S.\n Smith, J.\n Squires, M.\n Stolp, D.\n Tripathi, M.\n Wilbur, S.\n Yohay, R.\n Cousins, R.\n Everaerts, P.\n Farrell, C.\n Hauser, J.\n Ignatenko, M.\n Rakness, G.\n Takasugi, E.\n Valuev, V.\n Weber, M.\n Burt, K.\n Clare, R.\n Ellison, J.\n Gary, J. W.\n Hanson, G.\n Heilman, J.\n Rikova, M. Ivova\n Jandir, P.\n Kennedy, E.\n Lacroix, F.\n Long, O. R.\n Luthra, A.\n Malberti, M.\n Negrete, M. Olmedo\n Shrinivas, A.\n Sumowidagdo, S.\n Wimpenny, S.\n Branson, J. G.\n Cerati, G. B.\n Cittolin, S.\n D'Agnolo, R. T.\n Holzner, A.\n Kelley, R.\n Klein, D.\n Letts, J.\n Macneill, I.\n Olivito, D.\n Padhi, S.\n Palmer, C.\n Pieri, M.\n Sani, M.\n Sharma, V.\n Simon, S.\n Tadel, M.\n Tu, Y.\n Vartak, A.\n Welke, C.\n Wuerthwein, F.\n Yagil, A.\n Della Porta, G. Zevi\n Barge, D.\n Bradmiller-Feld, J.\n Campagnari, C.\n Danielson, T.\n Dishaw, A.\n Dutta, V.\n Flowers, K.\n Sevilla, M. Franco\n Geffert, P.\n George, C.\n Golf, F.\n Gouskos, L.\n Incandela, J.\n Justus, C.\n Mccoll, N.\n Mullin, S. D.\n Richman, J.\n Stuart, D.\n To, W.\n West, C.\n Yoo, J.\n Apresyan, A.\n Bornheim, A.\n Bunn, J.\n Chen, Y.\n Duarte, J.\n Mott, A.\n Newman, H. B.\n Pena, C.\n Pierini, M.\n Spiropulu, M.\n Vlimant, J. R.\n Wilkinson, R.\n Xie, S.\n Zhu, R. Y.\n Azzolini, V.\n Calamba, A.\n Carlson, B.\n Ferguson, T.\n Iiyama, Y.\n Paulini, M.\n Russ, J.\n Vogel, H.\n Vorobiev, I.\n Cumalat, J. P.\n Ford, W. T.\n Gaz, A.\n Krohn, M.\n Lopez, E. Luiggi\n Nauenberg, U.\n Smith, J. G.\n Stenson, K.\n Wagner, S. R.\n Alexander, J.\n Chatterjee, A.\n Chaves, J.\n Chu, J.\n Dittmer, S.\n Eggert, N.\n Mirman, N.\n Kaufman, G. Nicolas\n Patterson, J. R.\n Ryd, A.\n Salvati, E.\n Skinnari, L.\n Sun, W.\n Teo, W. D.\n Thom, J.\n Thompson, J.\n Tucker, J.\n Weng, Y.\n Winstrom, L.\n Wittich, P.\n Winn, D.\n Abdullin, S.\n Albrow, M.\n Anderson, J.\n Apollinari, G.\n Bauerdick, L. A. T.\n Beretvas, A.\n Berryhill, J.\n Bhat, P. C.\n Bolla, G.\n Burkett, K.\n Butler, J. N.\n Cheung, H. W. K.\n Chlebana, F.\n Cihangir, S.\n Elvira, V. D.\n Fisk, I.\n Freeman, J.\n Gottschalk, E.\n Gray, L.\n Green, D.\n Gruenendahl, S.\n Gutsche, O.\n Hanlon, J.\n Hare, D.\n Harris, R. M.\n Hirschauer, J.\n Hooberman, B.\n Jindariani, S.\n Johnson, M.\n Joshi, U.\n Klima, B.\n Kreis, B.\n Kwan, S.\n Linacre, J.\n Lincoln, D.\n Lipton, R.\n Liu, T.\n Lykken, J.\n Maeshima, K.\n Marraffino, J. M.\n Outschoorn, V. I. Martinez\n Maruyama, S.\n Mason, D.\n McBride, P.\n Merkel, P.\n Mishra, K.\n Mrenna, S.\n Nahn, S.\n Newman-Holmes, C.\n O'Dell, V.\n Prokofyev, O.\n Sexton-Kennedy, E.\n Soha, A.\n Spalding, W. J.\n Spiegel, L.\n Taylor, L.\n Tkaczyk, S.\n Tran, N. V.\n Uplegger, L.\n Vaandering, E. W.\n Vidal, R.\n Whitbeck, A.\n Whitmore, J.\n Yang, F.\n Acosta, D.\n Avery, P.\n Bortignon, P.\n Bourilkov, D.\n Carver, M.\n Curry, D.\n Das, S.\n De Gruttola, M.\n Di Giovanni, G. P.\n Field, R. D.\n Fisher, M.\n Furic, I. K.\n Hugon, J.\n Konigsberg, J.\n Korytov, A.\n Kypreos, T.\n Low, J. F.\n Matchev, K.\n Mei, H.\n Milenovic, P.\n Mitselmakher, G.\n Muniz, L.\n Rinkevicius, A.\n Shchutska, L.\n Snowball, M.\n Sperka, D.\n Yelton, J.\n Zakaria, M.\n Hewamanage, S.\n Linn, S.\n Markowitz, P.\n Martinez, G.\n Rodriguez, J. L.\n Adams, J. R.\n Adams, T.\n Askew, A.\n Bochenek, J.\n Diamond, B.\n Haas, J.\n Hagopian, S.\n Hagopian, V.\n Johnson, K. F.\n Prosper, H.\n Veeraraghavan, V.\n Weinberg, M.\n Baarmand, M. M.\n Hohlmann, M.\n Kalakhety, H.\n Yumiceva, F.\n Adams, M. R.\n Apanasevich, L.\n Berry, D.\n Betts, R. R.\n Bucinskaite, I.\n Cavanaugh, R.\n Evdokimov, O.\n Gauthier, L.\n Gerber, C. E.\n Hofman, D. J.\n Kurt, P.\n O'Brien, C.\n Gonzalez, I. D. Sandoval\n Silkworth, C.\n Turner, P.\n Varelas, N.\n Bilki, B.\n Clarida, W.\n Dilsiz, K.\n Haytmyradov, M.\n Merlo, J. -P.\n Mermerkaya, H.\n Mestvirishvili, A.\n Moeller, A.\n Nachtman, J.\n Ogul, H.\n Onel, Y.\n Ozok, F.\n Penzo, A.\n Rahmat, R.\n Sen, S.\n Tan, P.\n Tiras, E.\n Wetzel, J.\n Yi, K.\n Anderson, I.\n Barnett, B. A.\n Blumenfeld, B.\n Bolognesi, S.\n Fehling, D.\n Gritsan, A. V.\n Maksimovic, P.\n Martin, C.\n Swartz, M.\n Xiao, M.\n Baringer, P.\n Bean, A.\n Benelli, G.\n Bruner, C.\n Gray, J.\n Kenny, R. P.\n Majumder, D.\n Malek, M.\n Murray, M.\n Noonan, D.\n Sanders, S.\n Sekaric, J.\n Stringer, R.\n Wang, Q.\n Wood, J. S.\n Chakaberia, I.\n Ivanov, A.\n Kaadze, K.\n Khalil, S.\n Makouski, M.\n Maravin, Y.\n Saini, L. K.\n Skhirtladze, N.\n Svintradze, I.\n Gronberg, J.\n Lange, D.\n Rebassoo, F.\n Wright, D.\n Baden, A.\n Belloni, A.\n Calvert, B.\n Eno, S. C.\n Gomez, J. A.\n Hadley, N. J.\n Jabeen, S.\n Kellogg, R. G.\n Kolberg, T.\n Lu, Y.\n Mignerey, A. C.\n Pedro, K.\n Skuja, A.\n Tonjes, M. B.\n Tonwar, S. C.\n Apyan, A.\n Barbieri, R.\n Bierwagen, K.\n Busza, W.\n Cali, I. A.\n Di Matteo, L.\n Ceballos, G. Gomez\n Goncharov, M.\n Gulhan, D.\n Klute, M.\n Lai, Y. S.\n Lee, Y. -J.\n Levin, A.\n Luckey, P. D.\n Paus, C.\n Ralph, D.\n Roland, C.\n Roland, G.\n Stephans, G. S. F.\n Sumorok, K.\n Velicanu, D.\n Veverka, J.\n Wyslouch, B.\n Yang, M.\n Zanetti, M.\n Zhukova, V.\n Dahmes, B.\n Gude, A.\n Kao, S. C.\n Klapoetke, K.\n Kubota, Y.\n Mans, J.\n Nourbakhsh, S.\n Rusack, R.\n Singovsky, A.\n Tambe, N.\n Turkewitz, J.\n Acosta, J. G.\n Oliveros, S.\n Avdeeva, E.\n Bloom, K.\n Bose, S.\n Claes, D. R.\n Dominguez, A.\n Suarez, R. Gonzalez\n Keller, J.\n Knowlton, D.\n Kravchenko, I.\n Lazo-Flores, J.\n Meier, F.\n Ratnikov, F.\n Snow, G. R.\n Zvada, M.\n Alverson, G.\n Barberis, E.\n Baumgartel, D.\n Chasco, M.\n Massironi, A.\n Morse, D. M.\n Nash, D.\n Orimoto, T.\n Trocino, D.\n Wang, R. -J.\n Wood, D.\n Zhang, J.\n Hahn, K. A.\n Kubik, A.\n Mucia, N.\n Odell, N.\n Pollack, B.\n Pozdnyakov, A.\n Schmitt, M.\n Stoynev, S.\n Sung, K.\n Velasco, M.\n Won, S.\n Brinkerhoff, A.\n Chan, K. M.\n Drozdetskiy, A.\n Hildreth, M.\n Jessop, C.\n Karmgard, D. J.\n Kellams, N.\n Lannon, K.\n Lynch, S.\n Marinelli, N.\n Musienko, Y.\n Pearson, T.\n Planer, M.\n Ruchti, R.\n Smith, G.\n Valls, N.\n Wayne, M.\n Wolf, M.\n Woodard, A.\n Antonelli, L.\n Brinson, J.\n Bylsma, B.\n Durkin, L. S.\n Flowers, S.\n Hart, A.\n Hill, C.\n Hughes, R.\n Kotov, K.\n Ling, T. Y.\n Luo, W.\n Puigh, D.\n Rodenburg, M.\n Winer, B. L.\n Wolfe, H.\n Wulsin, H. W.\n Driga, O.\n Elmer, P.\n Hardenbrook, J.\n Hebda, P.\n Koay, S. A.\n Lujan, P.\n Marlow, D.\n Medvedeva, T.\n Mooney, M.\n Olsen, J.\n Piroue, P.\n Quan, X.\n Saka, H.\n Stickland, D.\n Tully, C.\n Werner, J. S.\n Zuranski, A.\n Brownson, E.\n Malik, S.\n Mendez, H.\n Vargas, J. E. Ramirez\n Barnes, V. E.\n Benedetti, D.\n Bortoletto, D.\n De Mattia, M.\n Gutay, L.\n Hu, Z.\n Jha, M. K.\n Jones, M.\n Jung, K.\n Kress, M.\n Leonardo, N.\n Miller, D. H.\n Neumeister, N.\n Primavera, F.\n Radburn-Smith, B. C.\n Shi, X.\n Shipsey, I.\n Silvers, D.\n Svyatkovskiy, A.\n Wang, F.\n Xie, W.\n Xu, L.\n Zablocki, J.\n Parashar, N.\n Stupak, J.\n Adair, A.\n Akgun, B.\n Ecklund, K. M.\n Geurts, F. J. M.\n Li, W.\n Michlin, B.\n Padley, B. P.\n Redjimi, R.\n Roberts, J.\n Zabel, J.\n Betchart, B.\n Bodek, A.\n de Barbaro, P.\n Demina, R.\n Eshaq, Y.\n Ferbel, T.\n Galanti, M.\n Garcia-Bellido, A.\n Goldenzweig, P.\n Han, J.\n Harel, A.\n Hindrichs, O.\n Khukhunaishvili, A.\n Korjenevski, S.\n Petrillo, G.\n Vishnevskiy, D.\n Ciesielski, R.\n Demortier, L.\n Goulianos, K.\n Mesropian, C.\n Arora, S.\n Barker, A.\n Chou, J. P.\n Contreras-Campana, C.\n Contreras-Campana, E.\n Duggan, D.\n Ferencek, D.\n Gershtein, Y.\n Gray, R.\n Halkiadakis, E.\n Hidas, D.\n Kaplan, S.\n Lath, A.\n Panwalkar, S.\n Park, M.\n Patel, R.\n Salur, S.\n Schnetzer, S.\n Sheffield, D.\n Somalwar, S.\n Stone, R.\n Thomas, S.\n Thomassen, P.\n Walker, M.\n Rose, K.\n Spanier, S.\n York, A.\n Bouhali, O.\n Hernandez, A. Castaneda\n Eusebi, R.\n Flanagan, W.\n Gilmore, J.\n Kamon, T.\n Khotilovich, V.\n Krutelyov, V.\n Montalvo, R.\n Osipenkov, I.\n Pakhotin, Y.\n Perloff, A.\n Roe, J.\n Rose, A.\n Safonov, A.\n Suarez, I.\n Tatarinov, A.\n Ulmer, K. A.\n Akchurin, N.\n Cowden, C.\n Damgov, J.\n Dragoiu, C.\n Dudero, P. R.\n Faulkner, J.\n Kovitanggoon, K.\n Kunori, S.\n Lee, S. W.\n Libeiro, T.\n Volobouev, I.\n Appelt, E.\n Delannoy, A. G.\n Greene, S.\n Gurrola, A.\n Johns, W.\n Maguire, C.\n Mao, Y.\n Melo, A.\n Sharma, M.\n Sheldon, P.\n Snook, B.\n Tuo, S.\n Velkovska, J.\n Arenton, M. W.\n Boutle, S.\n Cox, B.\n Francis, B.\n Goodell, J.\n Hirosky, R.\n Ledovskoy, A.\n Li, H.\n Lin, C.\n Neu, C.\n Wolfe, E.\n Wood, J.\n Clarke, C.\n Harr, R.\n Karchin, P. E.\n Don, C. Kottachchi Kankanamge\n Lamichhane, P.\n Sturdy, J.\n Belknap, D. A.\n Carlsmith, D.\n Cepeda, M.\n Dasu, S.\n Dodd, L.\n Duric, S.\n Friis, E.\n Hall-Wilton, R.\n Herndon, M.\n Herve, A.\n Klabbers, P.\n Lanaro, A.\n Lazaridis, C.\n Levine, A.\n Loveless, R.\n Mohapatra, A.\n Ojalvo, I.\n Perry, T.\n Pierro, G. A.\n Polese, G.\n Ross, I.\n Sarangi, T.\n Savin, A.\n Smith, W. H.\n Taylor, D.\n Vuosalo, C.\n Woods, N.\nCA CMS Collaboration\nTI Searches for supersymmetry based on events with b jets and four W bosons\n in pp collisions at 8 TeV\nSO PHYSICS LETTERS B\nLA English\nDT Article\nDE CMS; Physics; Supersymmetry\nID MINIMAL SUPERGRAVITY; NATURALNESS; SQUARK; PARTICLE; SCALARS; MASSES;\n STATES; HIGGS; LHC\nAB Five mutually exclusive searches for supersymmetry are presented based on events in which b jets and four W bosons are produced in proton-proton collisions at root s = 8TeV. The data, corresponding to an integrated luminosity of 19.5 fb(-1), were collected with the CMS experiment at the CERN LHC in 2012. The five studies differ in the leptonic signature from the W boson decays, and correspond to all-hadronic, single-lepton, opposite-sign dilepton, same-sign dilepton, and >= 3 lepton final states. The results of the five studies are combined to yield 95% confidence level limits for the gluino and bottom-squark masses in the context of gluino and bottom-squark pair production, respectively. In the limit when the lightest supersymmetric particle is light, gluino and bottom squark masses are excluded below 1280 and 570 GeV, respectively. (C) 2015 CERN for the benefit of the CMS Collaboration. Published by Elsevier B.V.\nC1 [Khachatryan, V.; Sirunyan, A. M.; Tumasyan, A.] Yerevan Phys Inst, Yerevan 375036, Armenia.\n [CMS Collaboration] CERN, CH-1211 Geneva 23, Switzerland.\n [Adam, W.; Bergauer, T.; Dragicevic, M.; Eroe, J.; Friedl, M.; Fruehwirth, R.; Ghete, V. M.; Hartl, C.; Hoermann, N.; Hrubec, J.; Jeitler, M.; Kiesenhofer, W.; Knuenz, V.; Krammer, M.; Kraetschmer, I.; Liko, D.; Mikulec, I.; Rabady, D.; Rahbaran, B.; Rohringer, H.; Schoefbeck, R.; Strauss, J.; Treberer-Treberspurg, W.; Waltenberger, W.; Wulz, C. -E.] OeAW, Inst Hochenergiephys, Vienna, Austria.\n [Mossolov, V.; Shumeiko, N.; SuarezGonzalez, J.] Natl Ctr Particle & High Energy Phys, Minsk, Byelarus.\n [Alderweireldt, S.; Bansal, S.; Cornelis, T.; DeWolf, E. A.; Janssen, X.; Knutsson, A.; Lauwers, J.; Luyckx, S.; Ochesanu, S.; Rougny, R.; De Klundert, M. Van; Van Haevermaet, H.; Van Mechelen"},"page":{"count":"24","first":"5","last":"28"},"_id":"6060822","status":"public","file":[{"kind":"fullText","content_type":"application/pdf; charset=binary","_id":"6587903","access":"open","url":"https://biblio.ugent.be/publication/6060822/file/6587903.pdf","name":"wos2.pdf","size":"1342501"}],"date_created":"2015-06-15 10:56:30","issn":["0370-2693"],"author":[{"name":"V Khachatryan","name_last_first":"Khachatryan, V","first_name":"V","last_name":"Khachatryan"},{"name":"AM Sirunyan","name_last_first":"Sirunyan, AM","first_name":"AM","last_name":"Sirunyan"},{"name":"A Tumasyan","name_last_first":"Tumasyan, A","first_name":"A","last_name":"Tumasyan"},{"name":"W Adam","name_last_first":"Adam, W","first_name":"W","last_name":"Adam"},{"name":"T Bergauer","name_last_first":"Bergauer, T","first_name":"T","last_name":"Bergauer"},{"name":"M Dragicevic","name_last_first":"Dragicevic, M","first_name":"M","last_name":"Dragicevic"},{"name":"J Ero","name_last_first":"Ero, J","first_name":"J","last_name":"Ero"},{"name":"M Friedl","name_last_first":"Friedl, M","first_name":"M","last_name":"Friedl"},{"name":"R Fruhwirth","name_last_first":"Fruhwirth, R","first_name":"R","last_name":"Fruhwirth"},{"name":"VM Ghete","name_last_first":"Ghete, VM","first_name":"VM","last_name":"Ghete"},{"name":"C Hartl","name_last_first":"Hartl, C","first_name":"C","last_name":"Hartl"},{"name":"N Hormann","name_last_first":"Hormann, N","first_name":"N","last_name":"Hormann"},{"name":"J Hrubec","name_last_first":"Hrubec, J","first_name":"J","last_name":"Hrubec"},{"name":"M Jeitler","name_last_first":"Jeitler, M","first_name":"M","last_name":"Jeitler"},{"name":"W Kiesenhofer","name_last_first":"Kiesenhofer, W","first_name":"W","last_name":"Kiesenhofer"},{"name":"V Knunz","name_last_first":"Knunz, V","first_name":"V","last_name":"Knunz"},{"name":"M Krammer","name_last_first":"Krammer, M","first_name":"M","last_name":"Krammer"},{"name":"I Kratschmer","name_last_first":"Kratschmer, I","first_name":"I","last_name":"Kratschmer"},{"name":"D Liko","name_last_first":"Liko, D","first_name":"D","last_name":"Liko"},{"name":"I Mikulec","name_last_first":"Mikulec, I","first_name":"I","last_name":"Mikulec"},{"name":"D Rabady","name_last_first":"Rabady, D","first_name":"D","last_name":"Rabady"},{"name":"B Rahbaran","name_last_first":"Rahbaran, B","first_name":"B","last_name":"Rahbaran"},{"name":"H Rohringer","name_last_first":"Rohringer, H","first_name":"H","last_name":"Rohringer"},{"name":"R Shofbeck","name_last_first":"Shofbeck, R","first_name":"R","last_name":"Shofbeck"},{"name":"J Strauss","name_last_first":"Strauss, J","first_name":"J","last_name":"Strauss"},{"name":"W Treberer-Treberspurg","name_last_first":"Treberer-Treberspurg, W","first_name":"W","last_name":"Treberer-Treberspurg"},{"name":"W Waltenberger","name_last_first":"Waltenberger, W","first_name":"W","last_name":"Waltenberger"},{"name":"CE Wulz","name_last_first":"Wulz, CE","first_name":"CE","last_name":"Wulz"},{"name":"V Mossolov","name_last_first":"Mossolov, V","first_name":"V","last_name":"Mossolov"},{"name":"N Shumeiko","name_last_first":"Shumeiko, N","first_name":"N","last_name":"Shumeiko"},{"name":"J SuarezGonzalez","name_last_first":"SuarezGonzalez, J","first_name":"J","last_name":"SuarezGonzalez"},{"name":"S Alderweireldt","name_last_first":"Alderweireldt, S","first_name":"S","last_name":"Alderweireldt"},{"name":"S Bansal","name_last_first":"Bansal, S","first_name":"S","last_name":"Bansal"},{"name":"T Cornelis","name_last_first":"Cornelis, T","first_name":"T","last_name":"Cornelis"},{"name":"EA DeWolf","name_last_first":"DeWolf, EA","first_name":"EA","last_name":"DeWolf"},{"name":"X Janssen","name_last_first":"Janssen, X","first_name":"X","last_name":"Janssen"},{"name":"A Knutsson","name_last_first":"Knutsson, A","first_name":"A","last_name":"Knutsson"},{"name":"J Lauwers","name_last_first":"Lauwers, J","first_name":"J","last_name":"Lauwers"},{"name":"S Luyckx","name_last_first":"Luyckx, S","first_name":"S","last_name":"Luyckx"},{"name":"S Ochesanu","name_last_first":"Ochesanu, S","first_name":"S","last_name":"Ochesanu"},{"name":"R Rougny","name_last_first":"Rougny, R","first_name":"R","last_name":"Rougny"},{"name":"MV De Klundert","name_last_first":"De Klundert, MV","first_name":"MV","last_name":"De Klundert"},{"name":"H Van Haevermaet","name_last_first":"Van Haevermaet, H","first_name":"H","last_name":"Van Haevermaet"},{"name":"P Van Mechelen","name_last_first":"Van Mechelen, P","first_name":"P","last_name":"Van Mechelen"},{"name":"N Van Remortel","name_last_first":"Van Remortel, N","first_name":"N","last_name":"Van Remortel"},{"name":"A Van Spilbeeck","name_last_first":"Van Spilbeeck, A","first_name":"A","last_name":"Van Spilbeeck"},{"name":"F Blekman","name_last_first":"Blekman, F","first_name":"F","last_name":"Blekman"},{"name":"S Blyweert","name_last_first":"Blyweert, S","first_name":"S","last_name":"Blyweert"},{"name":"J D'Hondt","name_last_first":"D'Hondt, J","first_name":"J","last_name":"D'Hondt"},{"name":"N Daci","name_last_first":"Daci, N","first_name":"N","last_name":"Daci"},{"name":"N Heracleous","name_last_first":"Heracleous, N","first_name":"N","last_name":"Heracleous"},{"name":"J Keaveney","name_last_first":"Keaveney, J","first_name":"J","last_name":"Keaveney"},{"name":"S Lowette","name_last_first":"Lowette, S","first_name":"S","last_name":"Lowette"},{"name":"M Maes","name_last_first":"Maes, M","first_name":"M","last_name":"Maes"},{"name":"A Olbrechts","name_last_first":"Olbrechts, A","first_name":"A","last_name":"Olbrechts"},{"name":"Q Python","name_last_first":"Python, Q","first_name":"Q","last_name":"Python"},{"name":"D Strom","name_last_first":"Strom, D","first_name":"D","last_name":"Strom"},{"name":"S Tavernier","name_last_first":"Tavernier, S","first_name":"S","last_name":"Tavernier"},{"name":"W Van Doninck","name_last_first":"Van Doninck, W","first_name":"W","last_name":"Van Doninck"},{"name":"P Van Mulders","name_last_first":"Van Mulders, P","first_name":"P","last_name":"Van Mulders"},{"name":"GP Van Onsem","name_last_first":"Van Onsem, GP","first_name":"GP","last_name":"Van Onsem"},{"name":"I Villella","name_last_first":"Villella, I","first_name":"I","last_name":"Villella"},{"name":"C Caillol","name_last_first":"Caillol, C","first_name":"C","last_name":"Caillol"},{"name":"B Clerbaux","name_last_first":"Clerbaux, B","first_name":"B","last_name":"Clerbaux"},{"name":"G De Lentdecker","name_last_first":"De Lentdecker, G","first_name":"G","last_name":"De Lentdecker"},{"name":"D Dobur","name_last_first":"Dobur, D","first_name":"D","last_name":"Dobur"},{"name":"L Favart","name_last_first":"Favart, L","first_name":"L","last_name":"Favart"},{"name":"APR Gay","name_last_first":"Gay, APR","first_name":"APR","last_name":"Gay"},{"name":"A Grebenyuk","name_last_first":"Grebenyuk, A","first_name":"A","last_name":"Grebenyuk"},{"name":"A Leonard","name_last_first":"Leonard, A","first_name":"A","last_name":"Leonard"},{"name":"A Mohammadi","name_last_first":"Mohammadi, A","first_name":"A","last_name":"Mohammadi"},{"name":"L Pernie","name_last_first":"Pernie, L","first_name":"L","last_name":"Pernie"},{"name":"A Randle-Conde","name_last_first":"Randle-Conde, A","first_name":"A","last_name":"Randle-Conde"},{"name":"T Reis","name_last_first":"Reis, T","first_name":"T","last_name":"Reis"},{"name":"T Seva","name_last_first":"Seva, T","first_name":"T","last_name":"Seva"},{"name":"L Thomas","name_last_first":"Thomas, L","first_name":"L","last_name":"Thomas"},{"name":"C van derVelde","name_last_first":"van derVelde, C","first_name":"C","last_name":"van derVelde"},{"name":"P van Laer","name_last_first":"van Laer, P","first_name":"P","last_name":"van Laer"},{"name":"J Wang","name_last_first":"Wang, J","first_name":"J","last_name":"Wang"},{"name":"F Zenoni","name_last_first":"Zenoni, F","first_name":"F","last_name":"Zenoni"},{"_id":"3139CFF8-F0EE-11E1-A9DE-61C894A0A6B4","name":"Volker Adler","ugent_id":["802000922546","977737211565"],"name_last_first":"Adler, Volker","affiliation":[{"ugent_id":"UGent","path":[{"ugent_id":"UGent"}]}],"first_name":"Volker","last_name":"Adler"},{"_id":"019056E6-F0EE-11E1-A9DE-61C894A0A6B4","name":"Kelly Beernaert","ugent_id":["000060030468","802001058851","973238680052"],"name_last_first":"Beernaert, Kelly","affiliation":[{"ugent_id":"UGent","path":[{"ugent_id":"UGent"}]}],"first_name":"Kelly","last_name":"Beernaert"},{"_id":"2ED13546-F59C-11E1-8C35-769E10BDE39D","name":"Leonardo Benucci","ugent_id":["802001282557","974990079417"],"name_last_first":"Benucci, Leonardo","affiliation":[{"ugent_id":"UGent","path":[{"ugent_id":"UGent"}]}],"first_name":"Leonardo","last_name":"Benucci"},{"_id":"321F4A10-F0EE-11E1-A9DE-61C894A0A6B4","name":"Anna Cimmino","ugent_id":["802000986608","975497290090"],"name_last_first":"Cimmino, Anna","affiliation":[{"ugent_id":"UGent","path":[{"ugent_id":"UGent"}]}],"first_name":"Anna","last_name":"Cimmino"},{"_id":"FBFE550C-F0ED-11E1-A9DE-61C894A0A6B4","name":"Silvia Costantini","ugent_id":["802000507567","972056314821"],"name_last_first":"Costantini, Silvia","affiliation":[{"ugent_id":"UGent","path":[{"ugent_id":"UGent"}]}],"first_name":"Silvia","last_name":"Costantini"},{"_id":"811B4C3C-0C13-11E2-AA3C-3DCD10BDE39D","name":"Shannon Rebecca Crucy","ugent_id":["802001320246","975670264332"],"name_last_first":"Crucy, Shannon Rebecca","affiliation":[{"ugent_id":"UGent","path":[{"ugent_id":"UGent"}]}],"first_name":"Shannon Rebecca","last_name":"Crucy"},{"_id":"062752CC-F0EE-11E1-A9DE-61C894A0A6B4","name":"Sven Dildick","ugent_id":["000070138474","802000886372"],"name_last_first":"Dildick, Sven","affiliation":[{"ugent_id":"WE05","path":[{"ugent_id":"UGent"},{"ugent_id":"WE"},{"ugent_id":"WE05"}]}],"first_name":"Sven","last_name":"Dildick"},{"_id":"FFE130EA-2865-11E2-B3C5-477D10BDE39D","name":"Alexis Fagot","ugent_id":["000120926765","802001352881"],"name_last_first":"Fagot, Alexis","affiliation":[{"ugent_id":"WE05","path":[{"ugent_id":"UGent"},{"ugent_id":"WE"},{"ugent_id":"WE05"}]}],"first_name":"Alexis","last_name":"Fagot"},{"_id":"3138F18C-F0EE-11E1-A9DE-61C894A0A6B4","name":"Guillaume Garcia","ugent_id":["000100977101","802000928408","977546406202"],"name_last_first":"Garcia, Guillaume","affiliation":[{"ugent_id":"UGent","path":[{"ugent_id":"UGent"}]}],"first_name":"Guillaume","last_name":"Garcia"},{"_id":"26836CEA-F0EE-11E1-A9DE-61C894A0A6B4","name":"Joseph McCartin","ugent_id":["000091455640","802000727536","975921438657"],"name_last_first":"McCartin, Joseph","affiliation":[{"ugent_id":"UGent","path":[{"ugent_id":"UGent"}]}],"first_name":"Joseph","last_name":"McCartin"},{"_id":"3B43956A-F0EE-11E1-A9DE-61C894A0A6B4","name":"Alberto Andres Ocampo Rios","ugent_id":["802001118566","975683125219"],"name_last_first":"Ocampo Rios, Alberto Andres","affiliation":[{"ugent_id":"WE05","path":[{"ugent_id":"UGent"},{"ugent_id":"WE"},{"ugent_id":"WE05"}]}],"first_name":"Alberto Andres","last_name":"Ocampo Rios"},{"_id":"9826C2DE-102D-11E3-ABFB-408B10BDE39D","name":"Deniz Poyraz","ugent_id":["000121121472","802001612963"],"name_last_first":"Poyraz, Deniz","affiliation":[{"ugent_id":"WE05","path":[{"ugent_id":"UGent"},{"ugent_id":"WE"},{"ugent_id":"WE05"}]}],"first_name":"Deniz","last_name":"Poyraz"},{"_id":"F3F9D35E-F0ED-11E1-A9DE-61C894A0A6B4","name":"Dirk Ryckbosch","ugent_id":["801000434537"],"name_last_first":"Ryckbosch, Dirk","affiliation":[{"ugent_id":"WE05","path":[{"ugent_id":"UGent"},{"ugent_id":"WE"},{"ugent_id":"WE05"}]}],"first_name":"Dirk","last_name":"Ryckbosch"},{"_id":"434937EE-F59C-11E1-8C35-769E10BDE39D","name":"Michael Sigamani","ugent_id":["802001276291"],"name_last_first":"Sigamani, Michael","affiliation":[{"ugent_id":"WE05","path":[{"ugent_id":"UGent"},{"ugent_id":"WE"},{"ugent_id":"WE05"}]}],"first_name":"Michael","last_name":"Sigamani"},{"_id":"017D907E-F0EE-11E1-A9DE-61C894A0A6B4","name":"Nadja Strobbe","ugent_id":["000060002378","802001124024","973369458583"],"name_last_first":"Strobbe, Nadja","affiliation":[{"ugent_id":"UGent","path":[{"ugent_id":"UGent"}]}],"first_name":"Nadja","last_name":"Strobbe"},{"_id":"F9DF0546-F0ED-11E1-A9DE-61C894A0A6B4","name":"Filip Thyssen","ugent_id":["002002262680","802000302756","978324789570"],"name_last_first":"Thyssen, Filip","affiliation":[{"ugent_id":"UGent","path":[{"ugent_id":"UGent"}]}],"first_name":"Filip","last_name":"Thyssen"},{"_id":"F4E76394-F0ED-11E1-A9DE-61C894A0A6B4","name":"Michael Tytgat","ugent_id":["801001016032"],"name_last_first":"Tytgat, Michael","affiliation":[{"ugent_id":"WE05","path":[{"ugent_id":"UGent"},{"ugent_id":"WE"},{"ugent_id":"WE05"}]}],"first_name":"Michael","last_name":"Tytgat"},{"_id":"3B9ABA66-F0EE-11E1-A9DE-61C894A0A6B4","name":"Efe Yazgan","ugent_id":["802001114930"],"name_last_first":"Yazgan, Efe","affiliation":[{"ugent_id":"WE05","path":[{"ugent_id":"UGent"},{"ugent_id":"WE"},{"ugent_id":"WE05"}]}],"first_name":"Efe","last_name":"Yazgan"},{"_id":"FBF0E5B6-F0ED-11E1-A9DE-61C894A0A6B4","name":"Nikolaos Zaganidis","ugent_id":["802000504032"],"name_last_first":"Zaganidis, Nikolaos","affiliation":[{"ugent_id":"WE05","path":[{"ugent_id":"UGent"},{"ugent_id":"WE"},{"ugent_id":"WE05"}]}],"first_name":"Nikolaos","last_name":"Zaganidis"},{"name":"S Basegmez","name_last_first":"Basegmez, S","first_name":"S","last_name":"Basegmez"},{"name":"C Beluffi","name_last_first":"Beluffi, C","first_name":"C","last_name":"Beluffi"},{"name":"G Bruno","name_last_first":"Bruno, G","first_name":"G","last_name":"Bruno"},{"name":"R Castello","name_last_first":"Castello, R","first_name":"R","last_name":"Castello"},{"name":"A Caudron","name_last_first":"Caudron, A","first_name":"A","last_name":"Caudron"},{"name":"L Ceard","name_last_first":"Ceard, L","first_name":"L","last_name":"Ceard"},{"name":"GG Da Silveira","name_last_first":"Da Silveira, GG","first_name":"GG","last_name":"Da Silveira"},{"name":"C Delaere","name_last_first":"Delaere, C","first_name":"C","last_name":"Delaere"},{"name":"T du Pree","name_last_first":"du Pree, T","first_name":"T","last_name":"du Pree"},{"name":"D Favart","name_last_first":"Favart, D","first_name":"D","last_name":"Favart"},{"name":"L Forthomme","name_last_first":"Forthomme, L","first_name":"L","last_name":"Forthomme"},{"name":"A Giammanco","name_last_first":"Giammanco, A","first_name":"A","last_name":"Giammanco"},{"name":"J Hollar","name_last_first":"Hollar, J","first_name":"J","last_name":"Hollar"},{"name":"A Jafari","name_last_first":"Jafari, A","first_name":"A","last_name":"Jafari"},{"name":"P Jez","name_last_first":"Jez, P","first_name":"P","last_name":"Jez"},{"name":"M Komm","name_last_first":"Komm, M","first_name":"M","last_name":"Komm"},{"name":"V Lemaitre","name_last_first":"Lemaitre, V","first_name":"V","last_name":"Lemaitre"},{"name":"C Nuttens","name_last_first":"Nuttens, C","first_name":"C","last_name":"Nuttens"},{"name":"L Perrini","name_last_first":"Perrini, L","first_name":"L","last_name":"Perrini"},{"name":"A Pin","name_last_first":"Pin, A","first_name":"A","last_name":"Pin"},{"name":"K Piotrzkowski","name_last_first":"Piotrzkowski, K","first_name":"K","last_name":"Piotrzkowski"},{"name":"A Popov","name_last_first":"Popov, A","first_name":"A","last_name":"Popov"},{"name":"L Quertenmont","name_last_first":"Quertenmont, L","first_name":"L","last_name":"Quertenmont"},{"name":"M Selvaggi","name_last_first":"Selvaggi, M","first_name":"M","last_name":"Selvaggi"},{"name":"MV Marono","name_last_first":"Marono, MV","first_name":"MV","last_name":"Marono"},{"name":"JMV Garcia","name_last_first":"Garcia, JMV","first_name":"JMV","last_name":"Garcia"},{"name":"N Beliy","name_last_first":"Beliy, N","first_name":"N","last_name":"Beliy"},{"name":"T Caebergs","name_last_first":"Caebergs, T","first_name":"T","last_name":"Caebergs"},{"name":"E Daubie","name_last_first":"Daubie, E","first_name":"E","last_name":"Daubie"},{"name":"GH Hammad","name_last_first":"Hammad, GH","first_name":"GH","last_name":"Hammad"},{"name":"WL Alda","name_last_first":"Alda, WL","first_name":"WL","last_name":"Alda"},{"name":"GA Alves","name_last_first":"Alves, GA","first_name":"GA","last_name":"Alves"},{"name":"L Brito","name_last_first":"Brito, L","first_name":"L","last_name":"Brito"},{"name":"MC Martins","name_last_first":"Martins, MC","first_name":"MC","last_name":"Martins"},{"name":"TD Martins","name_last_first":"Martins, TD","first_name":"TD","last_name":"Martins"},{"name":"J Molina","name_last_first":"Molina, J","first_name":"J","last_name":"Molina"},{"name":"CM Herrera","name_last_first":"Herrera, CM","first_name":"CM","last_name":"Herrera"},{"name":"ME Pol","name_last_first":"Pol, ME","first_name":"ME","last_name":"Pol"},{"name":"PR Teles","name_last_first":"Teles, PR","first_name":"PR","last_name":"Teles"},{"name":"W Carvalho","name_last_first":"Carvalho, W","first_name":"W","last_name":"Carvalho"},{"name":"J Chinellato","name_last_first":"Chinellato, J","first_name":"J","last_name":"Chinellato"},{"name":"A Custodio","name_last_first":"Custodio, A","first_name":"A","last_name":"Custodio"},{"name":"EM Da Costa","name_last_first":"Da Costa, EM","first_name":"EM","last_name":"Da Costa"},{"name":"DD Damiao","name_last_first":"Damiao, DD","first_name":"DD","last_name":"Damiao"},{"name":"CD Martins","name_last_first":"Martins, CD","first_name":"CD","last_name":"Martins"},{"name":"SF De Souza","name_last_first":"De Souza, SF","first_name":"SF","last_name":"De Souza"},{"name":"H Malbouisson","name_last_first":"Malbouisson, H","first_name":"H","last_name":"Malbouisson"},{"name":"DM Figueiredo","name_last_first":"Figueiredo, DM","first_name":"DM","last_name":"Figueiredo"},{"name":"L Mundim","name_last_first":"Mundim, L","first_name":"L","last_name":"Mundim"},{"name":"H Nogima","name_last_first":"Nogima, H","first_name":"H","last_name":"Nogima"},{"name":"WLP Da Silva","name_last_first":"Da Silva, WLP","first_name":"WLP","last_name":"Da Silva"},{"name":"J Santaolalla","name_last_first":"Santaolalla, J","first_name":"J","last_name":"Santaolalla"},{"name":"A Santoro","name_last_first":"Santoro, A","first_name":"A","last_name":"Santoro"},{"name":"A Sznajder","name_last_first":"Sznajder, A","first_name":"A","last_name":"Sznajder"},{"name":"EJT Manganote","name_last_first":"Manganote, EJT","first_name":"EJT","last_name":"Manganote"},{"name":"AV Pereira","name_last_first":"Pereira, AV","first_name":"AV","last_name":"Pereira"},{"name":"CA Bernardes","name_last_first":"Bernardes, CA","first_name":"CA","last_name":"Bernardes"},{"name":"S Dogra","name_last_first":"Dogra, S","first_name":"S","last_name":"Dogra"},{"name":"TRFP Tomei","name_last_first":"Tomei, TRFP","first_name":"TRFP","last_name":"Tomei"},{"name":"EM Gregores","name_last_first":"Gregores, EM","first_name":"EM","last_name":"Gregores"},{"name":"PG Mercadante","name_last_first":"Mercadante, PG","first_name":"PG","last_name":"Mercadante"},{"name":"SF Novaes","name_last_first":"Novaes, SF","first_name":"SF","last_name":"Novaes"},{"name":"SS Padula","name_last_first":"Padula, SS","first_name":"SS","last_name":"Padula"},{"name":"A Aleksandrov","name_last_first":"Aleksandrov, A","first_name":"A","last_name":"Aleksandrov"},{"name":"V Genchev","name_last_first":"Genchev, V","first_name":"V","last_name":"Genchev"},{"name":"R Hadjiiska","name_last_first":"Hadjiiska, R","first_name":"R","last_name":"Hadjiiska"},{"name":"P Iaydjiev","name_last_first":"Iaydjiev, P","first_name":"P","last_name":"Iaydjiev"},{"name":"A Marinov","name_last_first":"Marinov, A","first_name":"A","last_name":"Marinov"},{"name":"S Piperov","name_last_first":"Piperov, S","first_name":"S","last_name":"Piperov"},{"name":"M Rodozov","name_last_first":"Rodozov, M","first_name":"M","last_name":"Rodozov"},{"name":"S Stoykova","name_last_first":"Stoykova, S","first_name":"S","last_name":"Stoykova"},{"name":"G Sultanov","name_last_first":"Sultanov, G","first_name":"G","last_name":"Sultanov"},{"name":"M Vutova","name_last_first":"Vutova, M","first_name":"M","last_name":"Vutova"},{"name":"A Dimitrov","name_last_first":"Dimitrov, A","first_name":"A","last_name":"Dimitrov"},{"name":"I Glushkov","name_last_first":"Glushkov, I","first_name":"I","last_name":"Glushkov"},{"name":"L Litov","name_last_first":"Litov, L","first_name":"L","last_name":"Litov"},{"name":"B Pavlov","name_last_first":"Pavlov, B","first_name":"B","last_name":"Pavlov"},{"name":"P Petkov","name_last_first":"Petkov, P","first_name":"P","last_name":"Petkov"},{"name":"JG Bian","name_last_first":"Bian, JG","first_name":"JG","last_name":"Bian"},{"name":"GM Chen","name_last_first":"Chen, GM","first_name":"GM","last_name":"Chen"},{"name":"HS Chen","name_last_first":"Chen, HS","first_name":"HS","last_name":"Chen"},{"name":"M Chen","name_last_first":"Chen, M","first_name":"M","last_name":"Chen"},{"name":"T Cheng","name_last_first":"Cheng, T","first_name":"T","last_name":"Cheng"},{"name":"R Du","name_last_first":"Du, R","first_name":"R","last_name":"Du"},{"name":"CH Jiang","name_last_first":"Jiang, CH","first_name":"CH","last_name":"Jiang"},{"name":"R Plestina","name_last_first":"Plestina, R","first_name":"R","last_name":"Plestina"},{"name":"F Romeo","name_last_first":"Romeo, F","first_name":"F","last_name":"Romeo"},{"name":"J Tao","name_last_first":"Tao, J","first_name":"J","last_name":"Tao"},{"name":"Z Wang","name_last_first":"Wang, Z","first_name":"Z","last_name":"Wang"},{"name":"C Asawatangtrakuldee","name_last_first":"Asawatangtrakuldee, C","first_name":"C","last_name":"Asawatangtrakuldee"},{"name":"Y Ban","name_last_first":"Ban, Y","first_name":"Y","last_name":"Ban"},{"name":"S Liu","name_last_first":"Liu, S","first_name":"S","last_name":"Liu"},{"name":"Y Mao","name_last_first":"Mao, Y","first_name":"Y","last_name":"Mao"},{"name":"SJ Qian","name_last_first":"Qian, SJ","first_name":"SJ","last_name":"Qian"},{"name":"D Wang","name_last_first":"Wang, D","first_name":"D","last_name":"Wang"},{"name":"Z Xu","name_last_first":"Xu, Z","first_name":"Z","last_name":"Xu"},{"name":"L Zhang","name_last_first":"Zhang, L","first_name":"L","last_name":"Zhang"},{"name":"W Zou","name_last_first":"Zou, W","first_name":"W","last_name":"Zou"},{"name":"C Avila","name_last_first":"Avila, C","first_name":"C","last_name":"Avila"},{"name":"A Cabrera","name_last_first":"Cabrera, A","first_name":"A","last_name":"Cabrera"},{"name":"LFC Sierra","name_last_first":"Sierra, LFC","first_name":"LFC","last_name":"Sierra"},{"name":"C Florez","name_last_first":"Florez, C","first_name":"C","last_name":"Florez"},{"name":"JP Gomez","name_last_first":"Gomez, JP","first_name":"JP","last_name":"Gomez"},{"name":"BG Moreno","name_last_first":"Moreno, BG","first_name":"BG","last_name":"Moreno"},{"name":"JC Sanabria","name_last_first":"Sanabria, JC","first_name":"JC","last_name":"Sanabria"},{"name":"N Godinovic","name_last_first":"Godinovic, N","first_name":"N","last_name":"Godinovic"},{"name":"D Lelas","name_last_first":"Lelas, D","first_name":"D","last_name":"Lelas"},{"name":"D Polic","name_last_first":"Polic, D","first_name":"D","last_name":"Polic"},{"name":"I Puljak","name_last_first":"Puljak, I","first_name":"I","last_name":"Puljak"},{"name":"Z Antunovic","name_last_first":"Antunovic, Z","first_name":"Z","last_name":"Antunovic"},{"name":"M Kovac","name_last_first":"Kovac, M","first_name":"M","last_name":"Kovac"},{"name":"V Brigljevic","name_last_first":"Brigljevic, V","first_name":"V","last_name":"Brigljevic"},{"name":"K Kadija","name_last_first":"Kadija, K","first_name":"K","last_name":"Kadija"},{"name":"J Luetic","name_last_first":"Luetic, J","first_name":"J","last_name":"Luetic"},{"name":"D Mekterovic","name_last_first":"Mekterovic, D","first_name":"D","last_name":"Mekterovic"},{"name":"L Sudic","name_last_first":"Sudic, L","first_name":"L","last_name":"Sudic"},{"name":"A Attikis","name_last_first":"Attikis, A","first_name":"A","last_name":"Attikis"},{"name":"G Mavromanolakis","name_last_first":"Mavromanolakis, G","first_name":"G","last_name":"Mavromanolakis"},{"name":"J Mousa","name_last_first":"Mousa, J","first_name":"J","last_name":"Mousa"},{"name":"C Nicolaou","name_last_first":"Nicolaou, C","first_name":"C","last_name":"Nicolaou"},{"name":"F Ptochos","name_last_first":"Ptochos, F","first_name":"F","last_name":"Ptochos"},{"name":"PA Razis","name_last_first":"Razis, PA","first_name":"PA","last_name":"Razis"},{"name":"H Rykaczewski","name_last_first":"Rykaczewski, H","first_name":"H","last_name":"Rykaczewski"},{"name":"M Bodlak","name_last_first":"Bodlak, M","first_name":"M","last_name":"Bodlak"},{"name":"M Finger","name_last_first":"Finger, M","first_name":"M","last_name":"Finger"},{"name":"M Finger","name_last_first":"Finger, M","first_name":"M","last_name":"Finger"},{"name":"Y Assran","name_last_first":"Assran, Y","first_name":"Y","last_name":"Assran"},{"name":"AE Kamel","name_last_first":"Kamel, AE","first_name":"AE","last_name":"Kamel"},{"name":"MA Mahmoud","name_last_first":"Mahmoud, MA","first_name":"MA","last_name":"Mahmoud"},{"name":"A Radi","name_last_first":"Radi, A","first_name":"A","last_name":"Radi"},{"name":"M Kadastik","name_last_first":"Kadastik, M","first_name":"M","last_name":"Kadastik"},{"name":"M Murumaa","name_last_first":"Murumaa, M","first_name":"M","last_name":"Murumaa"},{"name":"M Raidal","name_last_first":"Raidal, M","first_name":"M","last_name":"Raidal"},{"name":"A Tiko","name_last_first":"Tiko, A","first_name":"A","last_name":"Tiko"},{"name":"P Eerola","name_last_first":"Eerola, P","first_name":"P","last_name":"Eerola"},{"name":"M Voutilainen","name_last_first":"Voutilainen, M","first_name":"M","last_name":"Voutilainen"},{"name":"J Harkonen","name_last_first":"Harkonen, J","first_name":"J","last_name":"Harkonen"},{"name":"V Karimaki","name_last_first":"Karimaki, V","first_name":"V","last_name":"Karimaki"},{"name":"R Kinnunen","name_last_first":"Kinnunen, R","first_name":"R","last_name":"Kinnunen"},{"name":"MJ Kortelainen","name_last_first":"Kortelainen, MJ","first_name":"MJ","last_name":"Kortelainen"},{"name":"T Lampen","name_last_first":"Lampen, T","first_name":"T","last_name":"Lampen"},{"name":"K Lassila-Perini","name_last_first":"Lassila-Perini, K","first_name":"K","last_name":"Lassila-Perini"},{"name":"S Lehti","name_last_first":"Lehti, S","first_name":"S","last_name":"Lehti"},{"name":"T Linden","name_last_first":"Linden, T","first_name":"T","last_name":"Linden"},{"name":"P Luukka","name_last_first":"Luukka, P","first_name":"P","last_name":"Luukka"},{"name":"T Maenpaa","name_last_first":"Maenpaa, T","first_name":"T","last_name":"Maenpaa"},{"name":"T Peltola","name_last_first":"Peltola, T","first_name":"T","last_name":"Peltola"},{"name":"E Tuominen","name_last_first":"Tuominen, E","first_name":"E","last_name":"Tuominen"},{"name":"J Tuominiemi","name_last_first":"Tuominiemi, J","first_name":"J","last_name":"Tuominiemi"},{"name":"E Tuovinen","name_last_first":"Tuovinen, E","first_name":"E","last_name":"Tuovinen"},{"name":"L Wendland","name_last_first":"Wendland, L","first_name":"L","last_name":"Wendland"},{"name":"J Talvitie","name_last_first":"Talvitie, J","first_name":"J","last_name":"Talvitie"},{"name":"T Tuuva","name_last_first":"Tuuva, T","first_name":"T","last_name":"Tuuva"},{"name":"M Besancon","name_last_first":"Besancon, M","first_name":"M","last_name":"Besancon"},{"name":"F Couderc","name_last_first":"Couderc, F","first_name":"F","last_name":"Couderc"},{"name":"M Dejardin","name_last_first":"Dejardin, M","first_name":"M","last_name":"Dejardin"},{"name":"D Denegri","name_last_first":"Denegri, D","first_name":"D","last_name":"Denegri"},{"name":"B Fabbro","name_last_first":"Fabbro, B","first_name":"B","last_name":"Fabbro"},{"name":"JL Faure","name_last_first":"Faure, JL","first_name":"JL","last_name":"Faure"},{"name":"C Favaro","name_last_first":"Favaro, C","first_name":"C","last_name":"Favaro"},{"name":"F Ferri","name_last_first":"Ferri, F","first_name":"F","last_name":"Ferri"},{"name":"S Ganjour","name_last_first":"Ganjour, S","first_name":"S","last_name":"Ganjour"},{"name":"A Givernaud","name_last_first":"Givernaud, A","first_name":"A","last_name":"Givernaud"},{"name":"P Gras","name_last_first":"Gras, P","first_name":"P","last_name":"Gras"},{"name":"GH de Monchenault","name_last_first":"de Monchenault, GH","first_name":"GH","last_name":"de Monchenault"},{"name":"P Jarry","name_last_first":"Jarry, P","first_name":"P","last_name":"Jarry"},{"name":"E Locci","name_last_first":"Locci, E","first_name":"E","last_name":"Locci"},{"name":"J Malcles","name_last_first":"Malcles, J","first_name":"J","last_name":"Malcles"},{"name":"J Rander","name_last_first":"Rander, J","first_name":"J","last_name":"Rander"},{"name":"A Rosowsky","name_last_first":"Rosowsky, A","first_name":"A","last_name":"Rosowsky"},{"name":"M Titov","name_last_first":"Titov, M","first_name":"M","last_name":"Titov"},{"name":"S Baffioni","name_last_first":"Baffioni, S","first_name":"S","last_name":"Baffioni"},{"name":"F Beaudette","name_last_first":"Beaudette, F","first_name":"F","last_name":"Beaudette"},{"name":"P Busson","name_last_first":"Busson, P","first_name":"P","last_name":"Busson"},{"name":"E Chapon","name_last_first":"Chapon, E","first_name":"E","last_name":"Chapon"},{"name":"C Charlot","name_last_first":"Charlot, C","first_name":"C","last_name":"Charlot"},{"name":"T Dahms","name_last_first":"Dahms, T","first_name":"T","last_name":"Dahms"},{"name":"M Dalchenko","name_last_first":"Dalchenko, M","first_name":"M","last_name":"Dalchenko"},{"name":"L Dobrzynski","name_last_first":"Dobrzynski, L","first_name":"L","last_name":"Dobrzynski"},{"name":"N Filipovic","name_last_first":"Filipovic, N","first_name":"N","last_name":"Filipovic"},{"name":"A Florent","name_last_first":"Florent, A","first_name":"A","last_name":"Florent"},{"name":"RG de Cassagnac","name_last_first":"de Cassagnac, RG","first_name":"RG","last_name":"de Cassagnac"},{"name":"L Mastrolorenzo","name_last_first":"Mastrolorenzo, L","first_name":"L","last_name":"Mastrolorenzo"},{"name":"P Mine","name_last_first":"Mine, P","first_name":"P","last_name":"Mine"},{"name":"IN Naranjo","name_last_first":"Naranjo, IN","first_name":"IN","last_name":"Naranjo"},{"name":"M Nguyen","name_last_first":"Nguyen, M","first_name":"M","last_name":"Nguyen"},{"name":"C Ochando","name_last_first":"Ochando, C","first_name":"C","last_name":"Ochando"},{"name":"G Ortona","name_last_first":"Ortona, G","first_name":"G","last_name":"Ortona"},{"name":"P Paganini","name_last_first":"Paganini, P","first_name":"P","last_name":"Paganini"},{"name":"S Regnard","name_last_first":"Regnard, S","first_name":"S","last_name":"Regnard"},{"name":"R Salerno","name_last_first":"Salerno, R","first_name":"R","last_name":"Salerno"},{"name":"JB Sauvan","name_last_first":"Sauvan, JB","first_name":"JB","last_name":"Sauvan"},{"name":"Y Sirois","name_last_first":"Sirois, Y","first_name":"Y","last_name":"Sirois"},{"name":"C Veelken","name_last_first":"Veelken, C","first_name":"C","last_name":"Veelken"},{"name":"Y Yilmaz","name_last_first":"Yilmaz, Y","first_name":"Y","last_name":"Yilmaz"},{"name":"A Zabi","name_last_first":"Zabi, A","first_name":"A","last_name":"Zabi"},{"name":"JL Agram","name_last_first":"Agram, JL","first_name":"JL","last_name":"Agram"},{"name":"J Andrea","name_last_first":"Andrea, J","first_name":"J","last_name":"Andrea"},{"name":"A Aubin","name_last_first":"Aubin, A","first_name":"A","last_name":"Aubin"},{"name":"D Bloch","name_last_first":"Bloch, D","first_name":"D","last_name":"Bloch"},{"name":"JM Brom","name_last_first":"Brom, JM","first_name":"JM","last_name":"Brom"},{"name":"EC Chabert","name_last_first":"Chabert, EC","first_name":"EC","last_name":"Chabert"},{"name":"C Collard","name_last_first":"Collard, C","first_name":"C","last_name":"Collard"},{"name":"E Conte","name_last_first":"Conte, E","first_name":"E","last_name":"Conte"},{"name":"JC Fontaine","name_last_first":"Fontaine, JC","first_name":"JC","last_name":"Fontaine"},{"name":"D Gele","name_last_first":"Gele, D","first_name":"D","last_name":"Gele"},{"name":"U Goerlach","name_last_first":"Goerlach, U","first_name":"U","last_name":"Goerlach"},{"name":"C Goetzmann","name_last_first":"Goetzmann, C","first_name":"C","last_name":"Goetzmann"},{"name":"AC Le Bihan","name_last_first":"Le Bihan, AC","first_name":"AC","last_name":"Le Bihan"},{"name":"K Skovpen","name_last_first":"Skovpen, K","first_name":"K","last_name":"Skovpen"},{"name":"P Van Hove","name_last_first":"Van Hove, P","first_name":"P","last_name":"Van Hove"},{"name":"S Gadrat","name_last_first":"Gadrat, S","first_name":"S","last_name":"Gadrat"},{"name":"S Beauceron","name_last_first":"Beauceron, S","first_name":"S","last_name":"Beauceron"},{"name":"N Beaupere","name_last_first":"Beaupere, N","first_name":"N","last_name":"Beaupere"},{"name":"C Bernet","name_last_first":"Bernet, C","first_name":"C","last_name":"Bernet"},{"name":"G Boudoul","name_last_first":"Boudoul, G","first_name":"G","last_name":"Boudoul"},{"name":"E Bouvier","name_last_first":"Bouvier, E","first_name":"E","last_name":"Bouvier"},{"name":"S Brochet","name_last_first":"Brochet, S","first_name":"S","last_name":"Brochet"},{"name":"AC Montoya","name_last_first":"Montoya, AC","first_name":"AC","last_name":"Montoya"},{"name":"J Chasserat","name_last_first":"Chasserat, J","first_name":"J","last_name":"Chasserat"},{"name":"R Chierici","name_last_first":"Chierici, R","first_name":"R","last_name":"Chierici"},{"name":"D Contardo","name_last_first":"Contardo, D","first_name":"D","last_name":"Contardo"},{"name":"B Courbon","name_last_first":"Courbon, B","first_name":"B","last_name":"Courbon"},{"name":"P Depasse","name_last_first":"Depasse, P","first_name":"P","last_name":"Depasse"},{"name":"H El Mamouni","name_last_first":"El Mamouni, H","first_name":"H","last_name":"El Mamouni"},{"name":"J Fan","name_last_first":"Fan, J","first_name":"J","last_name":"Fan"},{"name":"J Fay","name_last_first":"Fay, J","first_name":"J","last_name":"Fay"},{"name":"S Gascon","name_last_first":"Gascon, S","first_name":"S","last_name":"Gascon"},{"name":"M Gouzevitch","name_last_first":"Gouzevitch, M","first_name":"M","last_name":"Gouzevitch"},{"name":"B Ille","name_last_first":"Ille, B","first_name":"B","last_name":"Ille"},{"name":"T Kurca","name_last_first":"Kurca, T","first_name":"T","last_name":"Kurca"},{"name":"M Lethuillier","name_last_first":"Lethuillier, M","first_name":"M","last_name":"Lethuillier"},{"name":"L Mirabito","name_last_first":"Mirabito, L","first_name":"L","last_name":"Mirabito"},{"name":"AL Pequegnot","name_last_first":"Pequegnot, AL","first_name":"AL","last_name":"Pequegnot"},{"name":"S Perries","name_last_first":"Perries, S","first_name":"S","last_name":"Perries"},{"name":"JDR Alvarez","name_last_first":"Alvarez, JDR","first_name":"JDR","last_name":"Alvarez"},{"name":"D Sabes","name_last_first":"Sabes, D","first_name":"D","last_name":"Sabes"},{"name":"L Sgandurra","name_last_first":"Sgandurra, L","first_name":"L","last_name":"Sgandurra"},{"name":"V Sordini","name_last_first":"Sordini, V","first_name":"V","last_name":"Sordini"},{"name":"MV Donckt","name_last_first":"Donckt, MV","first_name":"MV","last_name":"Donckt"},{"name":"P Verdier","name_last_first":"Verdier, P","first_name":"P","last_name":"Verdier"},{"name":"S Viret","name_last_first":"Viret, S","first_name":"S","last_name":"Viret"},{"name":"H Xiao","name_last_first":"Xiao, H","first_name":"H","last_name":"Xiao"},{"name":"Z Tsamalaidze","name_last_first":"Tsamalaidze, Z","first_name":"Z","last_name":"Tsamalaidze"},{"name":"C Autermann","name_last_first":"Autermann, C","first_name":"C","last_name":"Autermann"},{"name":"S Beranek","name_last_first":"Beranek, S","first_name":"S","last_name":"Beranek"},{"name":"M Bontenackels","name_last_first":"Bontenackels, M","first_name":"M","last_name":"Bontenackels"},{"name":"M Edelhoff","name_last_first":"Edelhoff, M","first_name":"M","last_name":"Edelhoff"},{"name":"L Feld","name_last_first":"Feld, L","first_name":"L","last_name":"Feld"},{"name":"A Heister","name_last_first":"Heister, A","first_name":"A","last_name":"Heister"},{"name":"K Klein","name_last_first":"Klein, K","first_name":"K","last_name":"Klein"},{"name":"M Lipinski","name_last_first":"Lipinski, M","first_name":"M","last_name":"Lipinski"},{"name":"A Ostapchuk","name_last_first":"Ostapchuk, A","first_name":"A","last_name":"Ostapchuk"},{"name":"M Preuten","name_last_first":"Preuten, M","first_name":"M","last_name":"Preuten"},{"name":"F Raupach","name_last_first":"Raupach, F","first_name":"F","last_name":"Raupach"},{"name":"J Sammet","name_last_first":"Sammet, J","first_name":"J","last_name":"Sammet"},{"name":"S Schael","name_last_first":"Schael, S","first_name":"S","last_name":"Schael"},{"name":"JF Schulte","name_last_first":"Schulte, JF","first_name":"JF","last_name":"Schulte"},{"name":"H Weber","name_last_first":"Weber, H","first_name":"H","last_name":"Weber"},{"name":"B Wittmer","name_last_first":"Wittmer, B","first_name":"B","last_name":"Wittmer"},{"name":"V Zhukov","name_last_first":"Zhukov, V","first_name":"V","last_name":"Zhukov"},{"name":"M Ata","name_last_first":"Ata, M","first_name":"M","last_name":"Ata"},{"name":"M Brodski","name_last_first":"Brodski, M","first_name":"M","last_name":"Brodski"},{"name":"E Dietz-Laursonn","name_last_first":"Dietz-Laursonn, E","first_name":"E","last_name":"Dietz-Laursonn"},{"name":"D Duchardt","name_last_first":"Duchardt, D","first_name":"D","last_name":"Duchardt"},{"name":"M Erdmann","name_last_first":"Erdmann, M","first_name":"M","last_name":"Erdmann"},{"name":"R Fischer","name_last_first":"Fischer, R","first_name":"R","last_name":"Fischer"},{"name":"A Guth","name_last_first":"Guth, A","first_name":"A","last_name":"Guth"},{"name":"T Hebbeker","name_last_first":"Hebbeker, T","first_name":"T","last_name":"Hebbeker"},{"name":"C Heidemann","name_last_first":"Heidemann, C","first_name":"C","last_name":"Heidemann"},{"name":"K Hoepfner","name_last_first":"Hoepfner, K","first_name":"K","last_name":"Hoepfner"},{"name":"D Klingebiel","name_last_first":"Klingebiel, D","first_name":"D","last_name":"Klingebiel"},{"name":"S Knutzen","name_last_first":"Knutzen, S","first_name":"S","last_name":"Knutzen"},{"name":"P Kreuzer","name_last_first":"Kreuzer, P","first_name":"P","last_name":"Kreuzer"},{"name":"M Merschmeyer","name_last_first":"Merschmeyer, M","first_name":"M","last_name":"Merschmeyer"},{"name":"A Meyer","name_last_first":"Meyer, A","first_name":"A","last_name":"Meyer"},{"name":"P Millet","name_last_first":"Millet, P","first_name":"P","last_name":"Millet"},{"name":"M Olschewski","name_last_first":"Olschewski, M","first_name":"M","last_name":"Olschewski"},{"name":"K Padeken","name_last_first":"Padeken, K","first_name":"K","last_name":"Padeken"},{"name":"P Papacz","name_last_first":"Papacz, P","first_name":"P","last_name":"Papacz"},{"name":"H Reithler","name_last_first":"Reithler, H","first_name":"H","last_name":"Reithler"},{"name":"SA Schmitz","name_last_first":"Schmitz, SA","first_name":"SA","last_name":"Schmitz"},{"name":"L Sonnenschein","name_last_first":"Sonnenschein, L","first_name":"L","last_name":"Sonnenschein"},{"name":"D Teyssier","name_last_first":"Teyssier, D","first_name":"D","last_name":"Teyssier"},{"name":"S Thur","name_last_first":"Thur, S","first_name":"S","last_name":"Thur"},{"name":"M Weber","name_last_first":"Weber, M","first_name":"M","last_name":"Weber"},{"name":"V Cherepanov","name_last_first":"Cherepanov, V","first_name":"V","last_name":"Cherepanov"},{"name":"Y Erdogan","name_last_first":"Erdogan, Y","first_name":"Y","last_name":"Erdogan"},{"name":"G Flugge","name_last_first":"Flugge, G","first_name":"G","last_name":"Flugge"},{"name":"H Geenen","name_last_first":"Geenen, H","first_name":"H","last_name":"Geenen"},{"name":"M Geisler","name_last_first":"Geisler, M","first_name":"M","last_name":"Geisler"},{"name":"WH Ahmad","name_last_first":"Ahmad, WH","first_name":"WH","last_name":"Ahmad"},{"name":"F Hoehle","name_last_first":"Hoehle, F","first_name":"F","last_name":"Hoehle"},{"name":"B Kargoll","name_last_first":"Kargoll, B","first_name":"B","last_name":"Kargoll"},{"name":"T Kress","name_last_first":"Kress, T","first_name":"T","last_name":"Kress"},{"name":"Y Kuessel","name_last_first":"Kuessel, Y","first_name":"Y","last_name":"Kuessel"},{"name":"A Kunsken","name_last_first":"Kunsken, A","first_name":"A","last_name":"Kunsken"},{"name":"J Lingemann","name_last_first":"Lingemann, J","first_name":"J","last_name":"Lingemann"},{"name":"A Nowack","name_last_first":"Nowack, A","first_name":"A","last_name":"Nowack"},{"name":"IM Nugent","name_last_first":"Nugent, IM","first_name":"IM","last_name":"Nugent"},{"name":"O Pooth","name_last_first":"Pooth, O","first_name":"O","last_name":"Pooth"},{"name":"A Stahl","name_last_first":"Stahl, A","first_name":"A","last_name":"Stahl"},{"name":"MA Martin","name_last_first":"Martin, MA","first_name":"MA","last_name":"Martin"},{"name":"I Asin","name_last_first":"Asin, I","first_name":"I","last_name":"Asin"},{"name":"N Bartosik","name_last_first":"Bartosik, N","first_name":"N","last_name":"Bartosik"},{"name":"J Behr","name_last_first":"Behr, J","first_name":"J","last_name":"Behr"},{"name":"U Behrens","name_last_first":"Behrens, U","first_name":"U","last_name":"Behrens"},{"name":"AJ Bell","name_last_first":"Bell, AJ","first_name":"AJ","last_name":"Bell"},{"name":"A Bethani","name_last_first":"Bethani, A","first_name":"A","last_name":"Bethani"},{"name":"K Borras","name_last_first":"Borras, K","first_name":"K","last_name":"Borras"},{"name":"A Burgmeier","name_last_first":"Burgmeier, A","first_name":"A","last_name":"Burgmeier"},{"name":"A Cakir","name_last_first":"Cakir, A","first_name":"A","last_name":"Cakir"},{"name":"L Calligaris","name_last_first":"Calligaris, L","first_name":"L","last_name":"Calligaris"},{"name":"A Campbell","name_last_first":"Campbell, A","first_name":"A","last_name":"Campbell"},{"name":"S Choudhury","name_last_first":"Choudhury, S","first_name":"S","last_name":"Choudhury"},{"name":"F Costanza","name_last_first":"Costanza, F","first_name":"F","last_name":"Costanza"},{"name":"CD Pardos","name_last_first":"Pardos, CD","first_name":"CD","last_name":"Pardos"},{"name":"G Dolinska","name_last_first":"Dolinska, G","first_name":"G","last_name":"Dolinska"},{"name":"S Dooling","name_last_first":"Dooling, S","first_name":"S","last_name":"Dooling"},{"name":"T Dorland","name_last_first":"Dorland, T","first_name":"T","last_name":"Dorland"},{"name":"G Eckerlin","name_last_first":"Eckerlin, G","first_name":"G","last_name":"Eckerlin"},{"name":"D Eckstein","name_last_first":"Eckstein, D","first_name":"D","last_name":"Eckstein"},{"name":"T Eichhorn","name_last_first":"Eichhorn, T","first_name":"T","last_name":"Eichhorn"},{"name":"G Flucke","name_last_first":"Flucke, G","first_name":"G","last_name":"Flucke"},{"name":"JG Garcia","name_last_first":"Garcia, JG","first_name":"JG","last_name":"Garcia"},{"name":"A Geiser","name_last_first":"Geiser, A","first_name":"A","last_name":"Geiser"},{"name":"A Gizhko","name_last_first":"Gizhko, A","first_name":"A","last_name":"Gizhko"},{"name":"P Gunnellini","name_last_first":"Gunnellini, P","first_name":"P","last_name":"Gunnellini"},{"name":"J Hauk","name_last_first":"Hauk, J","first_name":"J","last_name":"Hauk"},{"name":"M Hempel","name_last_first":"Hempel, M","first_name":"M","last_name":"Hempel"},{"name":"H Jung","name_last_first":"Jung, H","first_name":"H","last_name":"Jung"},{"name":"A Kalogeropoulos","name_last_first":"Kalogeropoulos, A","first_name":"A","last_name":"Kalogeropoulos"},{"name":"O Karacheban","name_last_first":"Karacheban, O","first_name":"O","last_name":"Karacheban"},{"name":"M Kasemann","name_last_first":"Kasemann, M","first_name":"M","last_name":"Kasemann"},{"name":"P Katsas","name_last_first":"Katsas, P","first_name":"P","last_name":"Katsas"},{"name":"J Kieseler","name_last_first":"Kieseler, J","first_name":"J","last_name":"Kieseler"},{"name":"C Kleinwort","name_last_first":"Kleinwort, C","first_name":"C","last_name":"Kleinwort"},{"name":"I Korol","name_last_first":"Korol, I","first_name":"I","last_name":"Korol"},{"name":"D Krucker","name_last_first":"Krucker, D","first_name":"D","last_name":"Krucker"},{"name":"W Lange","name_last_first":"Lange, W","first_name":"W","last_name":"Lange"},{"name":"J Leonard","name_last_first":"Leonard, J","first_name":"J","last_name":"Leonard"},{"name":"K Lipka","name_last_first":"Lipka, K","first_name":"K","last_name":"Lipka"},{"name":"A Lobanov","name_last_first":"Lobanov, A","first_name":"A","last_name":"Lobanov"},{"name":"W Lohmann","name_last_first":"Lohmann, W","first_name":"W","last_name":"Lohmann"},{"name":"B Lutz","name_last_first":"Lutz, B","first_name":"B","last_name":"Lutz"},{"name":"R Mankel","name_last_first":"Mankel, R","first_name":"R","last_name":"Mankel"},{"name":"I Marfin","name_last_first":"Marfin, I","first_name":"I","last_name":"Marfin"},{"name":"IA Melzer-Pellmann","name_last_first":"Melzer-Pellmann, IA","first_name":"IA","last_name":"Melzer-Pellmann"},{"name":"AB Meyer","name_last_first":"Meyer, AB","first_name":"AB","last_name":"Meyer"},{"name":"G Mittag","name_last_first":"Mittag, G","first_name":"G","last_name":"Mittag"},{"name":"J Mnich","name_last_first":"Mnich, J","first_name":"J","last_name":"Mnich"},{"name":"A Mussgiller","name_last_first":"Mussgiller, A","first_name":"A","last_name":"Mussgiller"},{"name":"S Naumann-Emme","name_last_first":"Naumann-Emme, S","first_name":"S","last_name":"Naumann-Emme"},{"name":"A Nayak","name_last_first":"Nayak, A","first_name":"A","last_name":"Nayak"},{"name":"E Ntomari","name_last_first":"Ntomari, E","first_name":"E","last_name":"Ntomari"},{"name":"H Perrey","name_last_first":"Perrey, H","first_name":"H","last_name":"Perrey"},{"name":"D Pitzl","name_last_first":"Pitzl, D","first_name":"D","last_name":"Pitzl"},{"name":"R Placakyte","name_last_first":"Placakyte, R","first_name":"R","last_name":"Placakyte"},{"name":"A Raspereza","name_last_first":"Raspereza, A","first_name":"A","last_name":"Raspereza"},{"name":"PMR Cipriano","name_last_first":"Cipriano, PMR","first_name":"PMR","last_name":"Cipriano"},{"name":"B Roland","name_last_first":"Roland, B","first_name":"B","last_name":"Roland"},{"name":"E Ron","name_last_first":"Ron, E","first_name":"E","last_name":"Ron"},{"name":"MO Sahin","name_last_first":"Sahin, MO","first_name":"MO","last_name":"Sahin"},{"name":"J Salfeld-Nebgen","name_last_first":"Salfeld-Nebgen, J","first_name":"J","last_name":"Salfeld-Nebgen"},{"name":"P Saxena","name_last_first":"Saxena, P","first_name":"P","last_name":"Saxena"},{"name":"T Schoerner-Sadenius","name_last_first":"Schoerner-Sadenius, T","first_name":"T","last_name":"Schoerner-Sadenius"},{"name":"M Schoerder","name_last_first":"Schoerder, M","first_name":"M","last_name":"Schoerder"},{"name":"C Seitz","name_last_first":"Seitz, C","first_name":"C","last_name":"Seitz"},{"name":"S Spannagel","name_last_first":"Spannagel, S","first_name":"S","last_name":"Spannagel"},{"name":"ADRV Trevino","name_last_first":"Trevino, ADRV","first_name":"ADRV","last_name":"Trevino"},{"name":"R Walsh","name_last_first":"Walsh, R","first_name":"R","last_name":"Walsh"},{"name":"C Wissing","name_last_first":"Wissing, C","first_name":"C","last_name":"Wissing"},{"name":"V Blobel","name_last_first":"Blobel, V","first_name":"V","last_name":"Blobel"},{"name":"MC Vignali","name_last_first":"Vignali, MC","first_name":"MC","last_name":"Vignali"},{"name":"AR Draeger","name_last_first":"Draeger, AR","first_name":"AR","last_name":"Draeger"},{"name":"J Erfle","name_last_first":"Erfle, J","first_name":"J","last_name":"Erfle"},{"name":"E Garutti","name_last_first":"Garutti, E","first_name":"E","last_name":"Garutti"},{"name":"K Goebel","name_last_first":"Goebel, K","first_name":"K","last_name":"Goebel"},{"name":"M Gorner","name_last_first":"Gorner, M","first_name":"M","last_name":"Gorner"},{"name":"J Haller","name_last_first":"Haller, J","first_name":"J","last_name":"Haller"},{"name":"M Hoffmann","name_last_first":"Hoffmann, M","first_name":"M","last_name":"Hoffmann"},{"name":"RS Hoing","name_last_first":"Hoing, RS","first_name":"RS","last_name":"Hoing"},{"name":"A Junkes","name_last_first":"Junkes, A","first_name":"A","last_name":"Junkes"},{"name":"H Kirschenmann","name_last_first":"Kirschenmann, H","first_name":"H","last_name":"Kirschenmann"},{"name":"R Klanner","name_last_first":"Klanner, R","first_name":"R","last_name":"Klanner"},{"name":"R Kogler","name_last_first":"Kogler, R","first_name":"R","last_name":"Kogler"},{"name":"T Lapsien","name_last_first":"Lapsien, T","first_name":"T","last_name":"Lapsien"},{"name":"T Lenz","name_last_first":"Lenz, T","first_name":"T","last_name":"Lenz"},{"name":"I Marchesini","name_last_first":"Marchesini, I","first_name":"I","last_name":"Marchesini"},{"name":"D Marconi","name_last_first":"Marconi, D","first_name":"D","last_name":"Marconi"},{"name":"J Ott","name_last_first":"Ott, J","first_name":"J","last_name":"Ott"},{"name":"T Peiffer","name_last_first":"Peiffer, T","first_name":"T","last_name":"Peiffer"},{"name":"A Perieanu","name_last_first":"Perieanu, A","first_name":"A","last_name":"Perieanu"},{"name":"N Pietsch","name_last_first":"Pietsch, N","first_name":"N","last_name":"Pietsch"},{"name":"J Poehlsen","name_last_first":"Poehlsen, J","first_name":"J","last_name":"Poehlsen"},{"name":"T Poehlsen","name_last_first":"Poehlsen, T","first_name":"T","last_name":"Poehlsen"},{"name":"D Rathjens","name_last_first":"Rathjens, D","first_name":"D","last_name":"Rathjens"},{"name":"C Sander","name_last_first":"Sander, C","first_name":"C","last_name":"Sander"},{"name":"H Schettler","name_last_first":"Schettler, H","first_name":"H","last_name":"Schettler"},{"name":"P Schleper","name_last_first":"Schleper, P","first_name":"P","last_name":"Schleper"},{"name":"E Schlieckau","name_last_first":"Schlieckau, E","first_name":"E","last_name":"Schlieckau"},{"name":"A Schmidt","name_last_first":"Schmidt, A","first_name":"A","last_name":"Schmidt"},{"name":"M Seidel","name_last_first":"Seidel, M","first_name":"M","last_name":"Seidel"},{"name":"V Sola","name_last_first":"Sola, V","first_name":"V","last_name":"Sola"},{"name":"H Stadie","name_last_first":"Stadie, H","first_name":"H","last_name":"Stadie"},{"name":"G Steinbruck","name_last_first":"Steinbruck, G","first_name":"G","last_name":"Steinbruck"},{"name":"D Troendle","name_last_first":"Troendle, D","first_name":"D","last_name":"Troendle"},{"name":"E Usai","name_last_first":"Usai, E","first_name":"E","last_name":"Usai"},{"name":"L Vanelderen","name_last_first":"Vanelderen, L","first_name":"L","last_name":"Vanelderen"},{"name":"A Vanhoefer","name_last_first":"Vanhoefer, A","first_name":"A","last_name":"Vanhoefer"},{"name":"C Barth","name_last_first":"Barth, C","first_name":"C","last_name":"Barth"},{"name":"C Baus","name_last_first":"Baus, C","first_name":"C","last_name":"Baus"},{"name":"J Berger","name_last_first":"Berger, J","first_name":"J","last_name":"Berger"},{"name":"C Boser","name_last_first":"Boser, C","first_name":"C","last_name":"Boser"},{"name":"E Butz","name_last_first":"Butz, E","first_name":"E","last_name":"Butz"},{"name":"T Chwalek","name_last_first":"Chwalek, T","first_name":"T","last_name":"Chwalek"},{"name":"W De Boer","name_last_first":"De Boer, W","first_name":"W","last_name":"De Boer"},{"name":"A Descroix","name_last_first":"Descroix, A","first_name":"A","last_name":"Descroix"},{"name":"A Dierlamm","name_last_first":"Dierlamm, A","first_name":"A","last_name":"Dierlamm"},{"name":"M Feindt","name_last_first":"Feindt, M","first_name":"M","last_name":"Feindt"},{"name":"F Frensch","name_last_first":"Frensch, F","first_name":"F","last_name":"Frensch"},{"name":"M Giffels","name_last_first":"Giffels, M","first_name":"M","last_name":"Giffels"},{"name":"A Gilbert","name_last_first":"Gilbert, A","first_name":"A","last_name":"Gilbert"},{"name":"F Hartmann","name_last_first":"Hartmann, F","first_name":"F","last_name":"Hartmann"},{"name":"T Hauth","name_last_first":"Hauth, T","first_name":"T","last_name":"Hauth"},{"name":"U Husemann","name_last_first":"Husemann, U","first_name":"U","last_name":"Husemann"},{"name":"I Katkov","name_last_first":"Katkov, I","first_name":"I","last_name":"Katkov"},{"name":"A Kornmayer","name_last_first":"Kornmayer, A","first_name":"A","last_name":"Kornmayer"},{"name":"PL Pardo","name_last_first":"Pardo, PL","first_name":"PL","last_name":"Pardo"},{"name":"MU Mozer","name_last_first":"Mozer, MU","first_name":"MU","last_name":"Mozer"},{"name":"T Muller","name_last_first":"Muller, T","first_name":"T","last_name":"Muller"},{"name":"T Muller","name_last_first":"Muller, T","first_name":"T","last_name":"Muller"},{"name":"A Nurnberg","name_last_first":"Nurnberg, A","first_name":"A","last_name":"Nurnberg"},{"name":"G Quast","name_last_first":"Quast, G","first_name":"G","last_name":"Quast"},{"name":"K Rabbertz","name_last_first":"Rabbertz, K","first_name":"K","last_name":"Rabbertz"},{"name":"S Rocker","name_last_first":"Rocker, S","first_name":"S","last_name":"Rocker"},{"name":"HJ Simonis","name_last_first":"Simonis, HJ","first_name":"HJ","last_name":"Simonis"},{"name":"FM Stober","name_last_first":"Stober, FM","first_name":"FM","last_name":"Stober"},{"name":"R Ulrich","name_last_first":"Ulrich, R","first_name":"R","last_name":"Ulrich"},{"name":"J Wagner-Kuhr","name_last_first":"Wagner-Kuhr, J","first_name":"J","last_name":"Wagner-Kuhr"},{"name":"S Wayand","name_last_first":"Wayand, S","first_name":"S","last_name":"Wayand"},{"name":"T Weiler","name_last_first":"Weiler, T","first_name":"T","last_name":"Weiler"},{"name":"R Wolf","name_last_first":"Wolf, R","first_name":"R","last_name":"Wolf"},{"name":"G Anagnostou","name_last_first":"Anagnostou, G","first_name":"G","last_name":"Anagnostou"},{"name":"G Daskalakis","name_last_first":"Daskalakis, G","first_name":"G","last_name":"Daskalakis"},{"name":"T Geralis","name_last_first":"Geralis, T","first_name":"T","last_name":"Geralis"},{"name":"VA Giakoumopoulou","name_last_first":"Giakoumopoulou, VA","first_name":"VA","last_name":"Giakoumopoulou"},{"name":"A Kyriakis","name_last_first":"Kyriakis, A","first_name":"A","last_name":"Kyriakis"},{"name":"D Loukas","name_last_first":"Loukas, D","first_name":"D","last_name":"Loukas"},{"name":"A Markou","name_last_first":"Markou, A","first_name":"A","last_name":"Markou"},{"name":"C Markou","name_last_first":"Markou, C","first_name":"C","last_name":"Markou"},{"name":"A Psallidas","name_last_first":"Psallidas, A","first_name":"A","last_name":"Psallidas"},{"name":"I Topsis-Giotis","name_last_first":"Topsis-Giotis, I","first_name":"I","last_name":"Topsis-Giotis"},{"name":"A Agapitos","name_last_first":"Agapitos, A","first_name":"A","last_name":"Agapitos"},{"name":"S Kesisoglou","name_last_first":"Kesisoglou, S","first_name":"S","last_name":"Kesisoglou"},{"name":"A Panagiotou","name_last_first":"Panagiotou, A","first_name":"A","last_name":"Panagiotou"},{"name":"N Saoulidou","name_last_first":"Saoulidou, N","first_name":"N","last_name":"Saoulidou"},{"name":"E Stiliaris","name_last_first":"Stiliaris, E","first_name":"E","last_name":"Stiliaris"},{"name":"X Aslanoglou","name_last_first":"Aslanoglou, X","first_name":"X","last_name":"Aslanoglou"},{"name":"I Evangelou","name_last_first":"Evangelou, I","first_name":"I","last_name":"Evangelou"},{"name":"G Flouris","name_last_first":"Flouris, G","first_name":"G","last_name":"Flouris"},{"name":"C Foudas","name_last_first":"Foudas, C","first_name":"C","last_name":"Foudas"},{"name":"P Kokkas","name_last_first":"Kokkas, P","first_name":"P","last_name":"Kokkas"},{"name":"N Manthos","name_last_first":"Manthos, N","first_name":"N","last_name":"Manthos"},{"name":"I Papadopoulos","name_last_first":"Papadopoulos, I","first_name":"I","last_name":"Papadopoulos"},{"name":"E Paradas","name_last_first":"Paradas, E","first_name":"E","last_name":"Paradas"},{"name":"J Strologas","name_last_first":"Strologas, J","first_name":"J","last_name":"Strologas"},{"name":"G Bencze","name_last_first":"Bencze, G","first_name":"G","last_name":"Bencze"},{"name":"C Hajdu","name_last_first":"Hajdu, C","first_name":"C","last_name":"Hajdu"},{"name":"P Hidas","name_last_first":"Hidas, P","first_name":"P","last_name":"Hidas"},{"name":"D Horvath","name_last_first":"Horvath, D","first_name":"D","last_name":"Horvath"},{"name":"F Sikler","name_last_first":"Sikler, F","first_name":"F","last_name":"Sikler"},{"name":"V Veszpremi","name_last_first":"Veszpremi, V","first_name":"V","last_name":"Veszpremi"},{"name":"G Vesztergombi","name_last_first":"Vesztergombi, G","first_name":"G","last_name":"Vesztergombi"},{"name":"AJ Zsigmond","name_last_first":"Zsigmond, AJ","first_name":"AJ","last_name":"Zsigmond"},{"name":"N Beni","name_last_first":"Beni, N","first_name":"N","last_name":"Beni"},{"name":"S Czellar","name_last_first":"Czellar, S","first_name":"S","last_name":"Czellar"},{"name":"J Karancsi","name_last_first":"Karancsi, J","first_name":"J","last_name":"Karancsi"},{"name":"J Molnar","name_last_first":"Molnar, J","first_name":"J","last_name":"Molnar"},{"name":"J Palinkas","name_last_first":"Palinkas, J","first_name":"J","last_name":"Palinkas"},{"name":"Z Szillasi","name_last_first":"Szillasi, Z","first_name":"Z","last_name":"Szillasi"},{"name":"A Makovec","name_last_first":"Makovec, A","first_name":"A","last_name":"Makovec"},{"name":"P Raics","name_last_first":"Raics, P","first_name":"P","last_name":"Raics"},{"name":"ZL Trocsanyi","name_last_first":"Trocsanyi, ZL","first_name":"ZL","last_name":"Trocsanyi"},{"name":"B Ujvari","name_last_first":"Ujvari, B","first_name":"B","last_name":"Ujvari"},{"name":"SK Swain","name_last_first":"Swain, SK","first_name":"SK","last_name":"Swain"},{"name":"SB Beri","name_last_first":"Beri, SB","first_name":"SB","last_name":"Beri"},{"name":"V Bhatnagar","name_last_first":"Bhatnagar, V","first_name":"V","last_name":"Bhatnagar"},{"name":"R Gupta","name_last_first":"Gupta, R","first_name":"R","last_name":"Gupta"},{"name":"U Bhawandeep","name_last_first":"Bhawandeep, U","first_name":"U","last_name":"Bhawandeep"},{"name":"AK Kalsi","name_last_first":"Kalsi, AK","first_name":"AK","last_name":"Kalsi"},{"name":"M Kaur","name_last_first":"Kaur, M","first_name":"M","last_name":"Kaur"},{"name":"R Kumar","name_last_first":"Kumar, R","first_name":"R","last_name":"Kumar"},{"name":"M Mittal","name_last_first":"Mittal, M","first_name":"M","last_name":"Mittal"},{"name":"N Nishu","name_last_first":"Nishu, N","first_name":"N","last_name":"Nishu"},{"name":"JB Singh","name_last_first":"Singh, JB","first_name":"JB","last_name":"Singh"},{"name":"A Kumar","name_last_first":"Kumar, A","first_name":"A","last_name":"Kumar"},{"name":"A Kumar","name_last_first":"Kumar, A","first_name":"A","last_name":"Kumar"},{"name":"S Ahuja","name_last_first":"Ahuja, S","first_name":"S","last_name":"Ahuja"},{"name":"A Bhardwaj","name_last_first":"Bhardwaj, A","first_name":"A","last_name":"Bhardwaj"},{"name":"BC Choudhary","name_last_first":"Choudhary, BC","first_name":"BC","last_name":"Choudhary"},{"name":"A Kumar","name_last_first":"Kumar, A","first_name":"A","last_name":"Kumar"},{"name":"S Malhotra","name_last_first":"Malhotra, S","first_name":"S","last_name":"Malhotra"},{"name":"M Naimuddin","name_last_first":"Naimuddin, M","first_name":"M","last_name":"Naimuddin"},{"name":"K Ranjan","name_last_first":"Ranjan, K","first_name":"K","last_name":"Ranjan"},{"name":"V Sharma","name_last_first":"Sharma, V","first_name":"V","last_name":"Sharma"},{"name":"S Banerjee","name_last_first":"Banerjee, S","first_name":"S","last_name":"Banerjee"},{"name":"S Bhattacharya","name_last_first":"Bhattacharya, S","first_name":"S","last_name":"Bhattacharya"},{"name":"K Chatterjee","name_last_first":"Chatterjee, K","first_name":"K","last_name":"Chatterjee"},{"name":"S Dutta","name_last_first":"Dutta, S","first_name":"S","last_name":"Dutta"},{"name":"B Gomber","name_last_first":"Gomber, B","first_name":"B","last_name":"Gomber"},{"name":"S Jain","name_last_first":"Jain, S","first_name":"S","last_name":"Jain"},{"name":"S Jain","name_last_first":"Jain, S","first_name":"S","last_name":"Jain"},{"name":"R Khurana","name_last_first":"Khurana, R","first_name":"R","last_name":"Khurana"},{"name":"A Modak","name_last_first":"Modak, A","first_name":"A","last_name":"Modak"},{"name":"S Mukherjee","name_last_first":"Mukherjee, S","first_name":"S","last_name":"Mukherjee"},{"name":"D Roy","name_last_first":"Roy, D","first_name":"D","last_name":"Roy"},{"name":"S Sarkar","name_last_first":"Sarkar, S","first_name":"S","last_name":"Sarkar"},{"name":"M Sharan","name_last_first":"Sharan, M","first_name":"M","last_name":"Sharan"},{"name":"A Abdulsalam","name_last_first":"Abdulsalam, A","first_name":"A","last_name":"Abdulsalam"},{"name":"D Dutta","name_last_first":"Dutta, D","first_name":"D","last_name":"Dutta"},{"name":"V Kumar","name_last_first":"Kumar, V","first_name":"V","last_name":"Kumar"},{"name":"AK Mohanty","name_last_first":"Mohanty, AK","first_name":"AK","last_name":"Mohanty"},{"name":"LM Pant","name_last_first":"Pant, LM","first_name":"LM","last_name":"Pant"},{"name":"P Shukla","name_last_first":"Shukla, P","first_name":"P","last_name":"Shukla"},{"name":"A Topkar","name_last_first":"Topkar, A","first_name":"A","last_name":"Topkar"},{"name":"T Aziz","name_last_first":"Aziz, T","first_name":"T","last_name":"Aziz"},{"name":"S Banerjee","name_last_first":"Banerjee, S","first_name":"S","last_name":"Banerjee"},{"name":"S Bhowmik","name_last_first":"Bhowmik, S","first_name":"S","last_name":"Bhowmik"},{"name":"RM Chatterjee","name_last_first":"Chatterjee, RM","first_name":"RM","last_name":"Chatterjee"},{"name":"RK Dewanjee","name_last_first":"Dewanjee, RK","first_name":"RK","last_name":"Dewanjee"},{"name":"S Dugad","name_last_first":"Dugad, S","first_name":"S","last_name":"Dugad"},{"name":"S Ganguly","name_last_first":"Ganguly, S","first_name":"S","last_name":"Ganguly"},{"name":"S Ghosh","name_last_first":"Ghosh, S","first_name":"S","last_name":"Ghosh"},{"name":"M Guchait","name_last_first":"Guchait, M","first_name":"M","last_name":"Guchait"},{"name":"A Gurtu","name_last_first":"Gurtu, A","first_name":"A","last_name":"Gurtu"},{"name":"G Kole","name_last_first":"Kole, G","first_name":"G","last_name":"Kole"},{"name":"S Kumar","name_last_first":"Kumar, S","first_name":"S","last_name":"Kumar"},{"name":"M Maity","name_last_first":"Maity, M","first_name":"M","last_name":"Maity"},{"name":"G Majumder","name_last_first":"Majumder, G","first_name":"G","last_name":"Majumder"},{"name":"K Mazumdar","name_last_first":"Mazumdar, K","first_name":"K","last_name":"Mazumdar"},{"name":"GB Mohanty","name_last_first":"Mohanty, GB","first_name":"GB","last_name":"Mohanty"},{"name":"B Parida","name_last_first":"Parida, B","first_name":"B","last_name":"Parida"},{"name":"K Sudhakar","name_last_first":"Sudhakar, K","first_name":"K","last_name":"Sudhakar"},{"name":"N Wickramage","name_last_first":"Wickramage, N","first_name":"N","last_name":"Wickramage"},{"name":"S Sharma","name_last_first":"Sharma, S","first_name":"S","last_name":"Sharma"},{"name":"H Bakhshiansohi","name_last_first":"Bakhshiansohi, H","first_name":"H","last_name":"Bakhshiansohi"},{"name":"H Behnamian","name_last_first":"Behnamian, H","first_name":"H","last_name":"Behnamian"},{"name":"SM Etesami","name_last_first":"Etesami, SM","first_name":"SM","last_name":"Etesami"},{"name":"A Fahim","name_last_first":"Fahim, A","first_name":"A","last_name":"Fahim"},{"name":"R Goldouzian","name_last_first":"Goldouzian, R","first_name":"R","last_name":"Goldouzian"},{"name":"M Khakzad","name_last_first":"Khakzad, M","first_name":"M","last_name":"Khakzad"},{"name":"MM Najafabadi","name_last_first":"Najafabadi, MM","first_name":"MM","last_name":"Najafabadi"},{"name":"M Naseri","name_last_first":"Naseri, M","first_name":"M","last_name":"Naseri"},{"name":"SP Mehdiabadi","name_last_first":"Mehdiabadi, SP","first_name":"SP","last_name":"Mehdiabadi"},{"name":"FR Hosseinabadi","name_last_first":"Hosseinabadi, FR","first_name":"FR","last_name":"Hosseinabadi"},{"name":"B Safarzadeh","name_last_first":"Safarzadeh, B","first_name":"B","last_name":"Safarzadeh"},{"name":"M Zeinali","name_last_first":"Zeinali, M","first_name":"M","last_name":"Zeinali"},{"name":"M Felcini","name_last_first":"Felcini, M","first_name":"M","last_name":"Felcini"},{"name":"M Grunewald","name_last_first":"Grunewald, M","first_name":"M","last_name":"Grunewald"},{"name":"M Abbrescia","name_last_first":"Abbrescia, M","first_name":"M","last_name":"Abbrescia"},{"name":"C Calabria","name_last_first":"Calabria, C","first_name":"C","last_name":"Calabria"},{"name":"SS Chhibra","name_last_first":"Chhibra, SS","first_name":"SS","last_name":"Chhibra"},{"name":"A Colaleo","name_last_first":"Colaleo, A","first_name":"A","last_name":"Colaleo"},{"name":"D Creanza","name_last_first":"Creanza, D","first_name":"D","last_name":"Creanza"},{"name":"L Cristella","name_last_first":"Cristella, L","first_name":"L","last_name":"Cristella"},{"name":"N De Filippis","name_last_first":"De Filippis, N","first_name":"N","last_name":"De Filippis"},{"name":"M De Palma","name_last_first":"De Palma, M","first_name":"M","last_name":"De Palma"},{"name":"L Fiore","name_last_first":"Fiore, L","first_name":"L","last_name":"Fiore"},{"name":"G Iaselli","name_last_first":"Iaselli, G","first_name":"G","last_name":"Iaselli"},{"name":"G Maggi","name_last_first":"Maggi, G","first_name":"G","last_name":"Maggi"},{"name":"M Maggi","name_last_first":"Maggi, M","first_name":"M","last_name":"Maggi"},{"name":"S My","name_last_first":"My, S","first_name":"S","last_name":"My"},{"name":"S Nuzzo","name_last_first":"Nuzzo, S","first_name":"S","last_name":"Nuzzo"},{"name":"A Pompili","name_last_first":"Pompili, A","first_name":"A","last_name":"Pompili"},{"name":"G Pugliese","name_last_first":"Pugliese, G","first_name":"G","last_name":"Pugliese"},{"name":"R Radogna","name_last_first":"Radogna, R","first_name":"R","last_name":"Radogna"},{"name":"G Selvaggi","name_last_first":"Selvaggi, G","first_name":"G","last_name":"Selvaggi"},{"name":"A Sharma","name_last_first":"Sharma, A","first_name":"A","last_name":"Sharma"},{"name":"L Silvestris","name_last_first":"Silvestris, L","first_name":"L","last_name":"Silvestris"},{"name":"R Venditti","name_last_first":"Venditti, R","first_name":"R","last_name":"Venditti"},{"name":"P Verwilligen","name_last_first":"Verwilligen, P","first_name":"P","last_name":"Verwilligen"},{"name":"G Abbiendi","name_last_first":"Abbiendi, G","first_name":"G","last_name":"Abbiendi"},{"name":"AC Benvenuti","name_last_first":"Benvenuti, AC","first_name":"AC","last_name":"Benvenuti"},{"name":"D Bonacorsi","name_last_first":"Bonacorsi, D","first_name":"D","last_name":"Bonacorsi"},{"name":"S Braibant-Giacomelli","name_last_first":"Braibant-Giacomelli, S","first_name":"S","last_name":"Braibant-Giacomelli"},{"name":"L Brigliadori","name_last_first":"Brigliadori, L","first_name":"L","last_name":"Brigliadori"},{"name":"R Campanini","name_last_first":"Campanini, R","first_name":"R","last_name":"Campanini"},{"name":"P Capiluppi","name_last_first":"Capiluppi, P","first_name":"P","last_name":"Capiluppi"},{"name":"BA Castro","name_last_first":"Castro, BA","first_name":"BA","last_name":"Castro"},{"name":"FR Cavallo","name_last_first":"Cavallo, FR","first_name":"FR","last_name":"Cavallo"},{"name":"G Codispoti","name_last_first":"Codispoti, G","first_name":"G","last_name":"Codispoti"},{"name":"M Cuffiani","name_last_first":"Cuffiani, M","first_name":"M","last_name":"Cuffiani"},{"name":"GM Dallavalle","name_last_first":"Dallavalle, GM","first_name":"GM","last_name":"Dallavalle"},{"name":"F Fabbri","name_last_first":"Fabbri, F","first_name":"F","last_name":"Fabbri"},{"name":"A Fanfani","name_last_first":"Fanfani, A","first_name":"A","last_name":"Fanfani"},{"name":"D Fasanella","name_last_first":"Fasanella, D","first_name":"D","last_name":"Fasanella"},{"name":"P Giacomelli","name_last_first":"Giacomelli, P","first_name":"P","last_name":"Giacomelli"},{"name":"C Grandi","name_last_first":"Grandi, C","first_name":"C","last_name":"Grandi"},{"name":"L Guiducci","name_last_first":"Guiducci, L","first_name":"L","last_name":"Guiducci"},{"name":"S Marcellini","name_last_first":"Marcellini, S","first_name":"S","last_name":"Marcellini"},{"name":"G Masetti","name_last_first":"Masetti, G","first_name":"G","last_name":"Masetti"},{"name":"A Montanari","name_last_first":"Montanari, A","first_name":"A","last_name":"Montanari"},{"name":"FL Navarria","name_last_first":"Navarria, FL","first_name":"FL","last_name":"Navarria"},{"name":"A Perrotta","name_last_first":"Perrotta, A","first_name":"A","last_name":"Perrotta"},{"name":"AM Rossi","name_last_first":"Rossi, AM","first_name":"AM","last_name":"Rossi"},{"name":"T Rovelli","name_last_first":"Rovelli, T","first_name":"T","last_name":"Rovelli"},{"name":"GP Siroli","name_last_first":"Siroli, GP","first_name":"GP","last_name":"Siroli"},{"name":"N Tosi","name_last_first":"Tosi, N","first_name":"N","last_name":"Tosi"},{"name":"R Travaglini","name_last_first":"Travaglini, R","first_name":"R","last_name":"Travaglini"},{"name":"S Albergo","name_last_first":"Albergo, S","first_name":"S","last_name":"Albergo"},{"name":"G Cappello","name_last_first":"Cappello, G","first_name":"G","last_name":"Cappello"},{"name":"M Chiorboli","name_last_first":"Chiorboli, M","first_name":"M","last_name":"Chiorboli"},{"name":"S Costa","name_last_first":"Costa, S","first_name":"S","last_name":"Costa"},{"name":"F Giordano","name_last_first":"Giordano, F","first_name":"F","last_name":"Giordano"},{"name":"R Potenza","name_last_first":"Potenza, R","first_name":"R","last_name":"Potenza"},{"name":"A Tricomi","name_last_first":"Tricomi, A","first_name":"A","last_name":"Tricomi"},{"name":"C Tuve","name_last_first":"Tuve, C","first_name":"C","last_name":"Tuve"},{"name":"G Barbagli","name_last_first":"Barbagli, G","first_name":"G","last_name":"Barbagli"},{"name":"V Ciulli","name_last_first":"Ciulli, V","first_name":"V","last_name":"Ciulli"},{"name":"C Civinini","name_last_first":"Civinini, C","first_name":"C","last_name":"Civinini"},{"name":"R D'Alessandro","name_last_first":"D'Alessandro, R","first_name":"R","last_name":"D'Alessandro"},{"name":"E Focardi","name_last_first":"Focardi, E","first_name":"E","last_name":"Focardi"},{"name":"E Gallo","name_last_first":"Gallo, E","first_name":"E","last_name":"Gallo"},{"name":"S Gonzi","name_last_first":"Gonzi, S","first_name":"S","last_name":"Gonzi"},{"name":"V Gori","name_last_first":"Gori, V","first_name":"V","last_name":"Gori"},{"name":"P Lenzi","name_last_first":"Lenzi, P","first_name":"P","last_name":"Lenzi"},{"name":"M Meschini","name_last_first":"Meschini, M","first_name":"M","last_name":"Meschini"},{"name":"S Paoletti","name_last_first":"Paoletti, S","first_name":"S","last_name":"Paoletti"},{"name":"G Sguazzoni","name_last_first":"Sguazzoni, G","first_name":"G","last_name":"Sguazzoni"},{"name":"A Tropiano","name_last_first":"Tropiano, A","first_name":"A","last_name":"Tropiano"},{"name":"L Benussi","name_last_first":"Benussi, L","first_name":"L","last_name":"Benussi"},{"name":"S Bianco","name_last_first":"Bianco, S","first_name":"S","last_name":"Bianco"},{"name":"F Fabbri","name_last_first":"Fabbri, F","first_name":"F","last_name":"Fabbri"},{"name":"D Piccolo","name_last_first":"Piccolo, D","first_name":"D","last_name":"Piccolo"},{"name":"R Ferretti","name_last_first":"Ferretti, R","first_name":"R","last_name":"Ferretti"},{"name":"F Ferro","name_last_first":"Ferro, F","first_name":"F","last_name":"Ferro"},{"name":"M Lo Vetere","name_last_first":"Lo Vetere, M","first_name":"M","last_name":"Lo Vetere"},{"name":"E Robutti","name_last_first":"Robutti, E","first_name":"E","last_name":"Robutti"},{"name":"S Tosi","name_last_first":"Tosi, S","first_name":"S","last_name":"Tosi"},{"name":"ME Dinardo","name_last_first":"Dinardo, ME","first_name":"ME","last_name":"Dinardo"},{"name":"S Fiorendi","name_last_first":"Fiorendi, S","first_name":"S","last_name":"Fiorendi"},{"name":"S Gennai","name_last_first":"Gennai, S","first_name":"S","last_name":"Gennai"},{"name":"R Gerosa","name_last_first":"Gerosa, R","first_name":"R","last_name":"Gerosa"},{"name":"A Ghezzi","name_last_first":"Ghezzi, A","first_name":"A","last_name":"Ghezzi"},{"name":"P Govoni","name_last_first":"Govoni, P","first_name":"P","last_name":"Govoni"},{"name":"MT Lucchini","name_last_first":"Lucchini, MT","first_name":"MT","last_name":"Lucchini"},{"name":"S Malvezzi","name_last_first":"Malvezzi, S","first_name":"S","last_name":"Malvezzi"},{"name":"RA Manzoni","name_last_first":"Manzoni, RA","first_name":"RA","last_name":"Manzoni"},{"name":"A Martelli","name_last_first":"Martelli, A","first_name":"A","last_name":"Martelli"},{"name":"B Marzocchi","name_last_first":"Marzocchi, B","first_name":"B","last_name":"Marzocchi"},{"name":"D Menasce","name_last_first":"Menasce, D","first_name":"D","last_name":"Menasce"},{"name":"L Moroni","name_last_first":"Moroni, L","first_name":"L","last_name":"Moroni"},{"name":"M Paganoni","name_last_first":"Paganoni, M","first_name":"M","last_name":"Paganoni"},{"name":"D Pedrini","name_last_first":"Pedrini, D","first_name":"D","last_name":"Pedrini"},{"name":"S Ragazzi","name_last_first":"Ragazzi, S","first_name":"S","last_name":"Ragazzi"},{"name":"N Redaelli","name_last_first":"Redaelli, N","first_name":"N","last_name":"Redaelli"},{"name":"TT de Fatis","name_last_first":"de Fatis, TT","first_name":"TT","last_name":"de Fatis"},{"name":"S Buontempo","name_last_first":"Buontempo, S","first_name":"S","last_name":"Buontempo"},{"name":"N Cavallo","name_last_first":"Cavallo, N","first_name":"N","last_name":"Cavallo"},{"name":"S Di Guida","name_last_first":"Di Guida, S","first_name":"S","last_name":"Di Guida"},{"name":"F Fabozzi","name_last_first":"Fabozzi, F","first_name":"F","last_name":"Fabozzi"},{"name":"AOM Iorio","name_last_first":"Iorio, AOM","first_name":"AOM","last_name":"Iorio"},{"name":"L Lista","name_last_first":"Lista, L","first_name":"L","last_name":"Lista"},{"name":"S Meola","name_last_first":"Meola, S","first_name":"S","last_name":"Meola"},{"name":"M Merola","name_last_first":"Merola, M","first_name":"M","last_name":"Merola"},{"name":"P Paolucci","name_last_first":"Paolucci, P","first_name":"P","last_name":"Paolucci"},{"name":"P Azzi","name_last_first":"Azzi, P","first_name":"P","last_name":"Azzi"},{"name":"N Bacchetta","name_last_first":"Bacchetta, N","first_name":"N","last_name":"Bacchetta"},{"name":"D Bisello","name_last_first":"Bisello, D","first_name":"D","last_name":"Bisello"},{"name":"A Branca","name_last_first":"Branca, A","first_name":"A","last_name":"Branca"},{"name":"R Carlin","name_last_first":"Carlin, R","first_name":"R","last_name":"Carlin"},{"name":"P ChecchiA","name_last_first":"ChecchiA, P","first_name":"P","last_name":"ChecchiA"},{"name":"M Dall'Osso","name_last_first":"Dall'Osso, M","first_name":"M","last_name":"Dall'Osso"},{"name":"T Dorigo","name_last_first":"Dorigo, T","first_name":"T","last_name":"Dorigo"},{"name":"U Dosselli","name_last_first":"Dosselli, U","first_name":"U","last_name":"Dosselli"},{"name":"F Gasparini","name_last_first":"Gasparini, F","first_name":"F","last_name":"Gasparini"},{"name":"U Gasparini","name_last_first":"Gasparini, U","first_name":"U","last_name":"Gasparini"},{"name":"A Gozzelino","name_last_first":"Gozzelino, A","first_name":"A","last_name":"Gozzelino"},{"name":"K Kanishchev","name_last_first":"Kanishchev, K","first_name":"K","last_name":"Kanishchev"},{"name":"S Lacaprara","name_last_first":"Lacaprara, S","first_name":"S","last_name":"Lacaprara"},{"name":"M Margoni","name_last_first":"Margoni, M","first_name":"M","last_name":"Margoni"},{"name":"AT Meneguzzo","name_last_first":"Meneguzzo, AT","first_name":"AT","last_name":"Meneguzzo"},{"name":"J Pazzini","name_last_first":"Pazzini, J","first_name":"J","last_name":"Pazzini"},{"name":"N Pozzobon","name_last_first":"Pozzobon, N","first_name":"N","last_name":"Pozzobon"},{"name":"P Ronchese","name_last_first":"Ronchese, P","first_name":"P","last_name":"Ronchese"},{"name":"F Simonetto","name_last_first":"Simonetto, F","first_name":"F","last_name":"Simonetto"},{"name":"E Torassa","name_last_first":"Torassa, E","first_name":"E","last_name":"Torassa"},{"name":"M Tosi","name_last_first":"Tosi, M","first_name":"M","last_name":"Tosi"},{"name":"P Zotto","name_last_first":"Zotto, P","first_name":"P","last_name":"Zotto"},{"name":"A Zucchetta","name_last_first":"Zucchetta, A","first_name":"A","last_name":"Zucchetta"},{"name":"G Zumerle","name_last_first":"Zumerle, G","first_name":"G","last_name":"Zumerle"},{"name":"M Gabusi","name_last_first":"Gabusi, M","first_name":"M","last_name":"Gabusi"},{"name":"SP Ratti","name_last_first":"Ratti, SP","first_name":"SP","last_name":"Ratti"},{"name":"V Re","name_last_first":"Re, V","first_name":"V","last_name":"Re"},{"name":"C Riccardi","name_last_first":"Riccardi, C","first_name":"C","last_name":"Riccardi"},{"name":"P Salvini","name_last_first":"Salvini, P","first_name":"P","last_name":"Salvini"},{"name":"P Vitulo","name_last_first":"Vitulo, P","first_name":"P","last_name":"Vitulo"},{"name":"M Biasini","name_last_first":"Biasini, M","first_name":"M","last_name":"Biasini"},{"name":"GM Bilei","name_last_first":"Bilei, GM","first_name":"GM","last_name":"Bilei"},{"name":"D Ciangottini","name_last_first":"Ciangottini, D","first_name":"D","last_name":"Ciangottini"},{"name":"L Fano","name_last_first":"Fano, L","first_name":"L","last_name":"Fano"},{"name":"P Lariccia","name_last_first":"Lariccia, P","first_name":"P","last_name":"Lariccia"},{"name":"G Mantovani","name_last_first":"Mantovani, G","first_name":"G","last_name":"Mantovani"},{"name":"M Menichelli","name_last_first":"Menichelli, M","first_name":"M","last_name":"Menichelli"},{"name":"A Saha","name_last_first":"Saha, A","first_name":"A","last_name":"Saha"},{"name":"A Santocchia","name_last_first":"Santocchia, A","first_name":"A","last_name":"Santocchia"},{"name":"A Spiezia","name_last_first":"Spiezia, A","first_name":"A","last_name":"Spiezia"},{"name":"K Androsov","name_last_first":"Androsov, K","first_name":"K","last_name":"Androsov"},{"name":"P Azzurri","name_last_first":"Azzurri, P","first_name":"P","last_name":"Azzurri"},{"name":"G Bagliesi","name_last_first":"Bagliesi, G","first_name":"G","last_name":"Bagliesi"},{"name":"J Bernardini","name_last_first":"Bernardini, J","first_name":"J","last_name":"Bernardini"},{"name":"T Boccali","name_last_first":"Boccali, T","first_name":"T","last_name":"Boccali"},{"name":"G Broccolo","name_last_first":"Broccolo, G","first_name":"G","last_name":"Broccolo"},{"name":"R Castaldi","name_last_first":"Castaldi, R","first_name":"R","last_name":"Castaldi"},{"name":"MA Ciocci","name_last_first":"Ciocci, MA","first_name":"MA","last_name":"Ciocci"},{"name":"R Dell'Orso","name_last_first":"Dell'Orso, R","first_name":"R","last_name":"Dell'Orso"},{"name":"S Donato","name_last_first":"Donato, S","first_name":"S","last_name":"Donato"},{"name":"G Fedi","name_last_first":"Fedi, G","first_name":"G","last_name":"Fedi"},{"name":"F Fiori","name_last_first":"Fiori, F","first_name":"F","last_name":"Fiori"},{"name":"L Foa","name_last_first":"Foa, L","first_name":"L","last_name":"Foa"},{"name":"A Giassi","name_last_first":"Giassi, A","first_name":"A","last_name":"Giassi"},{"name":"MT Grippo","name_last_first":"Grippo, MT","first_name":"MT","last_name":"Grippo"},{"name":"F Ligabue","name_last_first":"Ligabue, F","first_name":"F","last_name":"Ligabue"},{"name":"T Lomtadze","name_last_first":"Lomtadze, T","first_name":"T","last_name":"Lomtadze"},{"name":"L Martini","name_last_first":"Martini, L","first_name":"L","last_name":"Martini"},{"name":"A Messineo","name_last_first":"Messineo, A","first_name":"A","last_name":"Messineo"},{"name":"CS Moon","name_last_first":"Moon, CS","first_name":"CS","last_name":"Moon"},{"name":"F Palla","name_last_first":"Palla, F","first_name":"F","last_name":"Palla"},{"name":"A Rizzi","name_last_first":"Rizzi, A","first_name":"A","last_name":"Rizzi"},{"name":"A Savoy-Navarro","name_last_first":"Savoy-Navarro, A","first_name":"A","last_name":"Savoy-Navarro"},{"name":"AT Serban","name_last_first":"Serban, AT","first_name":"AT","last_name":"Serban"},{"name":"P Spagnolo","name_last_first":"Spagnolo, P","first_name":"P","last_name":"Spagnolo"},{"name":"P Squillacioti","name_last_first":"Squillacioti, P","first_name":"P","last_name":"Squillacioti"},{"name":"R Tenchini","name_last_first":"Tenchini, R","first_name":"R","last_name":"Tenchini"},{"name":"G Tonelli","name_last_first":"Tonelli, G","first_name":"G","last_name":"Tonelli"},{"name":"A Venturi","name_last_first":"Venturi, A","first_name":"A","last_name":"Venturi"},{"name":"PG Verdini","name_last_first":"Verdini, PG","first_name":"PG","last_name":"Verdini"},{"name":"C Vernieri","name_last_first":"Vernieri, C","first_name":"C","last_name":"Vernieri"},{"name":"L Barone","name_last_first":"Barone, L","first_name":"L","last_name":"Barone"},{"name":"F Cavallari","name_last_first":"Cavallari, F","first_name":"F","last_name":"Cavallari"},{"name":"G D'imperio","name_last_first":"D'imperio, G","first_name":"G","last_name":"D'imperio"},{"name":"D Del Re","name_last_first":"Del Re, D","first_name":"D","last_name":"Del Re"},{"name":"M Diemoz","name_last_first":"Diemoz, M","first_name":"M","last_name":"Diemoz"},{"name":"C Jorda","name_last_first":"Jorda, C","first_name":"C","last_name":"Jorda"},{"name":"E Longo","name_last_first":"Longo, E","first_name":"E","last_name":"Longo"},{"name":"F Margaroli","name_last_first":"Margaroli, F","first_name":"F","last_name":"Margaroli"},{"name":"P Meridiani","name_last_first":"Meridiani, P","first_name":"P","last_name":"Meridiani"},{"name":"F Micheli","name_last_first":"Micheli, F","first_name":"F","last_name":"Micheli"},{"name":"G Organtini","name_last_first":"Organtini, G","first_name":"G","last_name":"Organtini"},{"name":"R Paramatti","name_last_first":"Paramatti, R","first_name":"R","last_name":"Paramatti"},{"name":"S Rahatlou","name_last_first":"Rahatlou, S","first_name":"S","last_name":"Rahatlou"},{"name":"C Rovelli","name_last_first":"Rovelli, C","first_name":"C","last_name":"Rovelli"},{"name":"F Santanastasio","name_last_first":"Santanastasio, F","first_name":"F","last_name":"Santanastasio"},{"name":"L Soffi","name_last_first":"Soffi, L","first_name":"L","last_name":"Soffi"},{"name":"P Traczyk","name_last_first":"Traczyk, P","first_name":"P","last_name":"Traczyk"},{"name":"N Amapane","name_last_first":"Amapane, N","first_name":"N","last_name":"Amapane"},{"name":"R Arcidiacono","name_last_first":"Arcidiacono, R","first_name":"R","last_name":"Arcidiacono"},{"name":"S Argiro","name_last_first":"Argiro, S","first_name":"S","last_name":"Argiro"},{"name":"M Arneodo","name_last_first":"Arneodo, M","first_name":"M","last_name":"Arneodo"},{"name":"R Bellan","name_last_first":"Bellan, R","first_name":"R","last_name":"Bellan"},{"name":"C Biino","name_last_first":"Biino, C","first_name":"C","last_name":"Biino"},{"name":"N Cartiglia","name_last_first":"Cartiglia, N","first_name":"N","last_name":"Cartiglia"},{"name":"S Casasso","name_last_first":"Casasso, S","first_name":"S","last_name":"Casasso"},{"name":"M Costa","name_last_first":"Costa, M","first_name":"M","last_name":"Costa"},{"name":"R Covarelli","name_last_first":"Covarelli, R","first_name":"R","last_name":"Covarelli"},{"name":"A Degano","name_last_first":"Degano, A","first_name":"A","last_name":"Degano"},{"name":"N Demaria","name_last_first":"Demaria, N","first_name":"N","last_name":"Demaria"},{"name":"L Finco","name_last_first":"Finco, L","first_name":"L","last_name":"Finco"},{"name":"C Mariotti","name_last_first":"Mariotti, C","first_name":"C","last_name":"Mariotti"},{"name":"S Maselli","name_last_first":"Maselli, S","first_name":"S","last_name":"Maselli"},{"name":"E Migliore","name_last_first":"Migliore, E","first_name":"E","last_name":"Migliore"},{"name":"V Monaco","name_last_first":"Monaco, V","first_name":"V","last_name":"Monaco"},{"name":"M Musich","name_last_first":"Musich, M","first_name":"M","last_name":"Musich"},{"name":"MM Obertino","name_last_first":"Obertino, MM","first_name":"MM","last_name":"Obertino"},{"name":"L Pacher","name_last_first":"Pacher, L","first_name":"L","last_name":"Pacher"},{"name":"N Pastrone","name_last_first":"Pastrone, N","first_name":"N","last_name":"Pastrone"},{"name":"M Pelliccioni","name_last_first":"Pelliccioni, M","first_name":"M","last_name":"Pelliccioni"},{"name":"GLP Angioni","name_last_first":"Angioni, GLP","first_name":"GLP","last_name":"Angioni"},{"name":"A Potenza","name_last_first":"Potenza, A","first_name":"A","last_name":"Potenza"},{"name":"A Romero","name_last_first":"Romero, A","first_name":"A","last_name":"Romero"},{"name":"M Ruspa","name_last_first":"Ruspa, M","first_name":"M","last_name":"Ruspa"},{"name":"R Sacchi","name_last_first":"Sacchi, R","first_name":"R","last_name":"Sacchi"},{"name":"A Solano","name_last_first":"Solano, A","first_name":"A","last_name":"Solano"},{"name":"A Staiano","name_last_first":"Staiano, A","first_name":"A","last_name":"Staiano"},{"name":"U Tamponi","name_last_first":"Tamponi, U","first_name":"U","last_name":"Tamponi"},{"name":"S Belforte","name_last_first":"Belforte, S","first_name":"S","last_name":"Belforte"},{"name":"V Candelise","name_last_first":"Candelise, V","first_name":"V","last_name":"Candelise"},{"name":"M Casarsa","name_last_first":"Casarsa, M","first_name":"M","last_name":"Casarsa"},{"name":"F Cossutti","name_last_first":"Cossutti, F","first_name":"F","last_name":"Cossutti"},{"name":"G Della Ricca","name_last_first":"Della Ricca, G","first_name":"G","last_name":"Della Ricca"},{"name":"B Gobbo","name_last_first":"Gobbo, B","first_name":"B","last_name":"Gobbo"},{"name":"C La Licata","name_last_first":"La Licata, C","first_name":"C","last_name":"La Licata"},{"name":"M Marone","name_last_first":"Marone, M","first_name":"M","last_name":"Marone"},{"name":"A Schizzi","name_last_first":"Schizzi, A","first_name":"A","last_name":"Schizzi"},{"name":"T Umer","name_last_first":"Umer, T","first_name":"T","last_name":"Umer"},{"name":"A Zanetti","name_last_first":"Zanetti, A","first_name":"A","last_name":"Zanetti"},{"name":"S Chang","name_last_first":"Chang, S","first_name":"S","last_name":"Chang"},{"name":"A Kropivnitskaya","name_last_first":"Kropivnitskaya, A","first_name":"A","last_name":"Kropivnitskaya"},{"name":"SK Nam","name_last_first":"Nam, SK","first_name":"SK","last_name":"Nam"},{"name":"DH Kim","name_last_first":"Kim, DH","first_name":"DH","last_name":"Kim"},{"name":"GN Kim","name_last_first":"Kim, GN","first_name":"GN","last_name":"Kim"},{"name":"MS Kim","name_last_first":"Kim, MS","first_name":"MS","last_name":"Kim"},{"name":"DJ Kong","name_last_first":"Kong, DJ","first_name":"DJ","last_name":"Kong"},{"name":"S Lee","name_last_first":"Lee, S","first_name":"S","last_name":"Lee"},{"name":"YD Oh","name_last_first":"Oh, YD","first_name":"YD","last_name":"Oh"},{"name":"H Park","name_last_first":"Park, H","first_name":"H","last_name":"Park"},{"name":"A Sakharov","name_last_first":"Sakharov, A","first_name":"A","last_name":"Sakharov"},{"name":"DC Son","name_last_first":"Son, DC","first_name":"DC","last_name":"Son"},{"name":"TJ Kim","name_last_first":"Kim, TJ","first_name":"TJ","last_name":"Kim"},{"name":"MS Ryu","name_last_first":"Ryu, MS","first_name":"MS","last_name":"Ryu"},{"name":"JY Kim","name_last_first":"Kim, JY","first_name":"JY","last_name":"Kim"},{"name":"DH Moon","name_last_first":"Moon, DH","first_name":"DH","last_name":"Moon"},{"name":"S Song","name_last_first":"Song, S","first_name":"S","last_name":"Song"},{"name":"S Choi","name_last_first":"Choi, S","first_name":"S","last_name":"Choi"},{"name":"D Gyun","name_last_first":"Gyun, D","first_name":"D","last_name":"Gyun"},{"name":"B Hong","name_last_first":"Hong, B","first_name":"B","last_name":"Hong"},{"name":"M Jo","name_last_first":"Jo, M","first_name":"M","last_name":"Jo"},{"name":"H Kim","name_last_first":"Kim, H","first_name":"H","last_name":"Kim"},{"name":"Y Kim","name_last_first":"Kim, Y","first_name":"Y","last_name":"Kim"},{"name":"B Lee","name_last_first":"Lee, B","first_name":"B","last_name":"Lee"},{"name":"KS Lee","name_last_first":"Lee, KS","first_name":"KS","last_name":"Lee"},{"name":"SK Park","name_last_first":"Park, SK","first_name":"SK","last_name":"Park"},{"name":"Y Roh","name_last_first":"Roh, Y","first_name":"Y","last_name":"Roh"},{"name":"HD Yoo","name_last_first":"Yoo, HD","first_name":"HD","last_name":"Yoo"},{"name":"M Choi","name_last_first":"Choi, M","first_name":"M","last_name":"Choi"},{"name":"JH Kim","name_last_first":"Kim, JH","first_name":"JH","last_name":"Kim"},{"name":"IC Park","name_last_first":"Park, IC","first_name":"IC","last_name":"Park"},{"name":"G Ryu","name_last_first":"Ryu, G","first_name":"G","last_name":"Ryu"},{"name":"Y Choi","name_last_first":"Choi, Y","first_name":"Y","last_name":"Choi"},{"name":"YK Choi","name_last_first":"Choi, YK","first_name":"YK","last_name":"Choi"},{"name":"J Goh","name_last_first":"Goh, J","first_name":"J","last_name":"Goh"},{"name":"D Kim","name_last_first":"Kim, D","first_name":"D","last_name":"Kim"},{"name":"E Kwon","name_last_first":"Kwon, E","first_name":"E","last_name":"Kwon"},{"name":"J Lee","name_last_first":"Lee, J","first_name":"J","last_name":"Lee"},{"name":"I Yu","name_last_first":"Yu, I","first_name":"I","last_name":"Yu"},{"name":"A Juodagalvis","name_last_first":"Juodagalvis, A","first_name":"A","last_name":"Juodagalvis"},{"name":"JR Komaragiri","name_last_first":"Komaragiri, JR","first_name":"JR","last_name":"Komaragiri"},{"name":"MABM Ali","name_last_first":"Ali, MABM","first_name":"MABM","last_name":"Ali"},{"name":"EC Linares","name_last_first":"Linares, EC","first_name":"EC","last_name":"Linares"},{"name":"H Castilla-Valdez","name_last_first":"Castilla-Valdez, H","first_name":"H","last_name":"Castilla-Valdez"},{"name":"E De La Cruz-Burelo","name_last_first":"De La Cruz-Burelo, E","first_name":"E","last_name":"De La Cruz-Burelo"},{"name":"I Heredia-de La Cruz","name_last_first":"Heredia-de La Cruz, I","first_name":"I","last_name":"Heredia-de La Cruz"},{"name":"A Hernandez-Almada","name_last_first":"Hernandez-Almada, A","first_name":"A","last_name":"Hernandez-Almada"},{"name":"R Lopez-Fernandez","name_last_first":"Lopez-Fernandez, R","first_name":"R","last_name":"Lopez-Fernandez"},{"name":"A Sanchez-Hernandez","name_last_first":"Sanchez-Hernandez, A","first_name":"A","last_name":"Sanchez-Hernandez"},{"name":"SC Moreno","name_last_first":"Moreno, SC","first_name":"SC","last_name":"Moreno"},{"name":"FV Valencia","name_last_first":"Valencia, FV","first_name":"FV","last_name":"Valencia"},{"name":"I Pedraza","name_last_first":"Pedraza, I","first_name":"I","last_name":"Pedraza"},{"name":"HAS Ibarguen","name_last_first":"Ibarguen, HAS","first_name":"HAS","last_name":"Ibarguen"},{"name":"AM Pineda","name_last_first":"Pineda, AM","first_name":"AM","last_name":"Pineda"},{"name":"D Krofcheck","name_last_first":"Krofcheck, D","first_name":"D","last_name":"Krofcheck"},{"name":"PH Butler","name_last_first":"Butler, PH","first_name":"PH","last_name":"Butler"},{"name":"S Reucroft","name_last_first":"Reucroft, S","first_name":"S","last_name":"Reucroft"},{"name":"A Ahmad","name_last_first":"Ahmad, A","first_name":"A","last_name":"Ahmad"},{"name":"M Ahmad","name_last_first":"Ahmad, M","first_name":"M","last_name":"Ahmad"},{"name":"Q Hassan","name_last_first":"Hassan, Q","first_name":"Q","last_name":"Hassan"},{"name":"HR Hoorani","name_last_first":"Hoorani, HR","first_name":"HR","last_name":"Hoorani"},{"name":"WA Khan","name_last_first":"Khan, WA","first_name":"WA","last_name":"Khan"},{"name":"T Khurshid","name_last_first":"Khurshid, T","first_name":"T","last_name":"Khurshid"},{"name":"M Shoaib","name_last_first":"Shoaib, M","first_name":"M","last_name":"Shoaib"},{"name":"H Bialkowska","name_last_first":"Bialkowska, H","first_name":"H","last_name":"Bialkowska"},{"name":"M Bluj","name_last_first":"Bluj, M","first_name":"M","last_name":"Bluj"},{"name":"B Boimska","name_last_first":"Boimska, B","first_name":"B","last_name":"Boimska"},{"name":"T Frueboes","name_last_first":"Frueboes, T","first_name":"T","last_name":"Frueboes"},{"name":"M Gorski","name_last_first":"Gorski, M","first_name":"M","last_name":"Gorski"},{"name":"M Kazana","name_last_first":"Kazana, M","first_name":"M","last_name":"Kazana"},{"name":"K Nawrocki","name_last_first":"Nawrocki, K","first_name":"K","last_name":"Nawrocki"},{"name":"K Romanowska-Rybinska","name_last_first":"Romanowska-Rybinska, K","first_name":"K","last_name":"Romanowska-Rybinska"},{"name":"M Szleper","name_last_first":"Szleper, M","first_name":"M","last_name":"Szleper"},{"name":"P Zalewski","name_last_first":"Zalewski, P","first_name":"P","last_name":"Zalewski"},{"name":"G Brona","name_last_first":"Brona, G","first_name":"G","last_name":"Brona"},{"name":"K Bunkowski","name_last_first":"Bunkowski, K","first_name":"K","last_name":"Bunkowski"},{"name":"M Cwiok","name_last_first":"Cwiok, M","first_name":"M","last_name":"Cwiok"},{"name":"W Dominik","name_last_first":"Dominik, W","first_name":"W","last_name":"Dominik"},{"name":"K Doroba","name_last_first":"Doroba, K","first_name":"K","last_name":"Doroba"},{"name":"A Kalinowski","name_last_first":"Kalinowski, A","first_name":"A","last_name":"Kalinowski"},{"name":"M Konecki","name_last_first":"Konecki, M","first_name":"M","last_name":"Konecki"},{"name":"J Krolikowski","name_last_first":"Krolikowski, J","first_name":"J","last_name":"Krolikowski"},{"name":"M Misiura","name_last_first":"Misiura, M","first_name":"M","last_name":"Misiura"},{"name":"M Olszewski","name_last_first":"Olszewski, M","first_name":"M","last_name":"Olszewski"},{"name":"P Bargassa","name_last_first":"Bargassa, P","first_name":"P","last_name":"Bargassa"},{"name":"CBDE Silva","name_last_first":"Silva, CBDE","first_name":"CBDE","last_name":"Silva"},{"name":"P Faccioli","name_last_first":"Faccioli, P","first_name":"P","last_name":"Faccioli"},{"name":"PGF Parracho","name_last_first":"Parracho, PGF","first_name":"PGF","last_name":"Parracho"},{"name":"M Gallinaro","name_last_first":"Gallinaro, M","first_name":"M","last_name":"Gallinaro"},{"name":"LL Iglesias","name_last_first":"Iglesias, LL","first_name":"LL","last_name":"Iglesias"},{"name":"F Nguyen","name_last_first":"Nguyen, F","first_name":"F","last_name":"Nguyen"},{"name":"JR Antunes","name_last_first":"Antunes, JR","first_name":"JR","last_name":"Antunes"},{"name":"J Seixas","name_last_first":"Seixas, J","first_name":"J","last_name":"Seixas"},{"name":"J Varela","name_last_first":"Varela, J","first_name":"J","last_name":"Varela"},{"name":"P Vischia","name_last_first":"Vischia, P","first_name":"P","last_name":"Vischia"},{"name":"S Afanasiev","name_last_first":"Afanasiev, S","first_name":"S","last_name":"Afanasiev"},{"name":"P Bunin","name_last_first":"Bunin, P","first_name":"P","last_name":"Bunin"},{"name":"M Gavrilenko","name_last_first":"Gavrilenko, M","first_name":"M","last_name":"Gavrilenko"},{"name":"I Golutvin","name_last_first":"Golutvin, I","first_name":"I","last_name":"Golutvin"},{"name":"I Gorbunov","name_last_first":"Gorbunov, I","first_name":"I","last_name":"Gorbunov"},{"name":"A Kamenev","name_last_first":"Kamenev, A","first_name":"A","last_name":"Kamenev"},{"name":"V Karjavin","name_last_first":"Karjavin, V","first_name":"V","last_name":"Karjavin"},{"name":"V Konoplyanikov","name_last_first":"Konoplyanikov, V","first_name":"V","last_name":"Konoplyanikov"},{"name":"A Lanev","name_last_first":"Lanev, A","first_name":"A","last_name":"Lanev"},{"name":"A Malakhov","name_last_first":"Malakhov, A","first_name":"A","last_name":"Malakhov"},{"name":"V Matveev","name_last_first":"Matveev, V","first_name":"V","last_name":"Matveev"},{"name":"P Moisenz","name_last_first":"Moisenz, P","first_name":"P","last_name":"Moisenz"},{"name":"V Palichik","name_last_first":"Palichik, V","first_name":"V","last_name":"Palichik"},{"name":"V Perelygin","name_last_first":"Perelygin, V","first_name":"V","last_name":"Perelygin"},{"name":"S Shmatov","name_last_first":"Shmatov, S","first_name":"S","last_name":"Shmatov"},{"name":"N Skatchkov","name_last_first":"Skatchkov, N","first_name":"N","last_name":"Skatchkov"},{"name":"V Smirnov","name_last_first":"Smirnov, V","first_name":"V","last_name":"Smirnov"},{"name":"A Zarubin","name_last_first":"Zarubin, A","first_name":"A","last_name":"Zarubin"},{"name":"V Golovtsov","name_last_first":"Golovtsov, V","first_name":"V","last_name":"Golovtsov"},{"name":"Y Ivanov","name_last_first":"Ivanov, Y","first_name":"Y","last_name":"Ivanov"},{"name":"V Kim","name_last_first":"Kim, V","first_name":"V","last_name":"Kim"},{"name":"E Kuznetsova","name_last_first":"Kuznetsova, E","first_name":"E","last_name":"Kuznetsova"},{"name":"P Levchenko","name_last_first":"Levchenko, P","first_name":"P","last_name":"Levchenko"},{"name":"V Murzin","name_last_first":"Murzin, V","first_name":"V","last_name":"Murzin"},{"name":"V Oreshkin","name_last_first":"Oreshkin, V","first_name":"V","last_name":"Oreshkin"},{"name":"I Smirnov","name_last_first":"Smirnov, I","first_name":"I","last_name":"Smirnov"},{"name":"V Sulimov","name_last_first":"Sulimov, V","first_name":"V","last_name":"Sulimov"},{"name":"L Uvarov","name_last_first":"Uvarov, L","first_name":"L","last_name":"Uvarov"},{"name":"S Vavilov","name_last_first":"Vavilov, S","first_name":"S","last_name":"Vavilov"},{"name":"A Vorobyev","name_last_first":"Vorobyev, A","first_name":"A","last_name":"Vorobyev"},{"name":"A Vorobyev","name_last_first":"Vorobyev, A","first_name":"A","last_name":"Vorobyev"},{"name":"Y Andreev","name_last_first":"Andreev, Y","first_name":"Y","last_name":"Andreev"},{"name":"A Dermenev","name_last_first":"Dermenev, A","first_name":"A","last_name":"Dermenev"},{"name":"S Gninenko","name_last_first":"Gninenko, S","first_name":"S","last_name":"Gninenko"},{"name":"N Golubev","name_last_first":"Golubev, N","first_name":"N","last_name":"Golubev"},{"name":"M Kirsanov","name_last_first":"Kirsanov, M","first_name":"M","last_name":"Kirsanov"},{"name":"N Krasnikov","name_last_first":"Krasnikov, N","first_name":"N","last_name":"Krasnikov"},{"name":"A Pashenkov","name_last_first":"Pashenkov, A","first_name":"A","last_name":"Pashenkov"},{"name":"D Tlisov","name_last_first":"Tlisov, D","first_name":"D","last_name":"Tlisov"},{"name":"A Toropin","name_last_first":"Toropin, A","first_name":"A","last_name":"Toropin"},{"name":"V Epshteyn","name_last_first":"Epshteyn, V","first_name":"V","last_name":"Epshteyn"},{"name":"V Gavrilov","name_last_first":"Gavrilov, V","first_name":"V","last_name":"Gavrilov"},{"name":"N Lychkovskaya","name_last_first":"Lychkovskaya, N","first_name":"N","last_name":"Lychkovskaya"},{"name":"V Popov","name_last_first":"Popov, V","first_name":"V","last_name":"Popov"},{"name":"I Pozdnyakov","name_last_first":"Pozdnyakov, I","first_name":"I","last_name":"Pozdnyakov"},{"name":"G Safronov","name_last_first":"Safronov, G","first_name":"G","last_name":"Safronov"},{"name":"S Semenov","name_last_first":"Semenov, S","first_name":"S","last_name":"Semenov"},{"name":"A Spiridonov","name_last_first":"Spiridonov, A","first_name":"A","last_name":"Spiridonov"},{"name":"V Stolin","name_last_first":"Stolin, V","first_name":"V","last_name":"Stolin"},{"name":"E Vlasov","name_last_first":"Vlasov, E","first_name":"E","last_name":"Vlasov"},{"name":"A Zhokin","name_last_first":"Zhokin, A","first_name":"A","last_name":"Zhokin"},{"name":"V Andreev","name_last_first":"Andreev, V","first_name":"V","last_name":"Andreev"},{"name":"M Azarkin","name_last_first":"Azarkin, M","first_name":"M","last_name":"Azarkin"},{"name":"I Dremin","name_last_first":"Dremin, I","first_name":"I","last_name":"Dremin"},{"name":"M Kirakosyan","name_last_first":"Kirakosyan, M","first_name":"M","last_name":"Kirakosyan"},{"name":"A Leonidov","name_last_first":"Leonidov, A","first_name":"A","last_name":"Leonidov"},{"name":"G Mesyats","name_last_first":"Mesyats, G","first_name":"G","last_name":"Mesyats"},{"name":"SV Rusakov","name_last_first":"Rusakov, SV","first_name":"SV","last_name":"Rusakov"},{"name":"A Vinogradov","name_last_first":"Vinogradov, A","first_name":"A","last_name":"Vinogradov"},{"name":"A Belyaev","name_last_first":"Belyaev, A","first_name":"A","last_name":"Belyaev"},{"name":"E Boos","name_last_first":"Boos, E","first_name":"E","last_name":"Boos"},{"name":"M Dubinin","name_last_first":"Dubinin, M","first_name":"M","last_name":"Dubinin"},{"name":"L Dudko","name_last_first":"Dudko, L","first_name":"L","last_name":"Dudko"},{"name":"A Ershov","name_last_first":"Ershov, A","first_name":"A","last_name":"Ershov"},{"name":"A Gribushin","name_last_first":"Gribushin, A","first_name":"A","last_name":"Gribushin"},{"name":"V Klyukhin","name_last_first":"Klyukhin, V","first_name":"V","last_name":"Klyukhin"},{"name":"O Kodolova","name_last_first":"Kodolova, O","first_name":"O","last_name":"Kodolova"},{"name":"I Lokhtin","name_last_first":"Lokhtin, I","first_name":"I","last_name":"Lokhtin"},{"name":"S Obraztsov","name_last_first":"Obraztsov, S","first_name":"S","last_name":"Obraztsov"},{"name":"S Petrushanko","name_last_first":"Petrushanko, S","first_name":"S","last_name":"Petrushanko"},{"name":"V Savrin","name_last_first":"Savrin, V","first_name":"V","last_name":"Savrin"},{"name":"A Snigirev","name_last_first":"Snigirev, A","first_name":"A","last_name":"Snigirev"},{"name":"I Azhgirey","name_last_first":"Azhgirey, I","first_name":"I","last_name":"Azhgirey"},{"name":"I Bayshev","name_last_first":"Bayshev, I","first_name":"I","last_name":"Bayshev"},{"name":"S Bitioukov","name_last_first":"Bitioukov, S","first_name":"S","last_name":"Bitioukov"},{"name":"V Kachanov","name_last_first":"Kachanov, V","first_name":"V","last_name":"Kachanov"},{"name":"A Kalinin","name_last_first":"Kalinin, A","first_name":"A","last_name":"Kalinin"},{"name":"D Konstantinov","name_last_first":"Konstantinov, D","first_name":"D","last_name":"Konstantinov"},{"name":"V Krychkine","name_last_first":"Krychkine, V","first_name":"V","last_name":"Krychkine"},{"name":"V Petrov","name_last_first":"Petrov, V","first_name":"V","last_name":"Petrov"},{"name":"R Ryutin","name_last_first":"Ryutin, R","first_name":"R","last_name":"Ryutin"},{"name":"A Sobol","name_last_first":"Sobol, A","first_name":"A","last_name":"Sobol"},{"name":"L Tourtchanovitch","name_last_first":"Tourtchanovitch, L","first_name":"L","last_name":"Tourtchanovitch"},{"name":"S Troshin","name_last_first":"Troshin, S","first_name":"S","last_name":"Troshin"},{"name":"N Tyurin","name_last_first":"Tyurin, N","first_name":"N","last_name":"Tyurin"},{"name":"A Uzunian","name_last_first":"Uzunian, A","first_name":"A","last_name":"Uzunian"},{"name":"A Volkov","name_last_first":"Volkov, A","first_name":"A","last_name":"Volkov"},{"name":"P Adzic","name_last_first":"Adzic, P","first_name":"P","last_name":"Adzic"},{"name":"M Ekmedzic","name_last_first":"Ekmedzic, M","first_name":"M","last_name":"Ekmedzic"},{"name":"J Milosevic","name_last_first":"Milosevic, J","first_name":"J","last_name":"Milosevic"},{"name":"V Rekovic","name_last_first":"Rekovic, V","first_name":"V","last_name":"Rekovic"},{"name":"JA Maestre","name_last_first":"Maestre, JA","first_name":"JA","last_name":"Maestre"},{"name":"C Battilana","name_last_first":"Battilana, C","first_name":"C","last_name":"Battilana"},{"name":"E Calvo","name_last_first":"Calvo, E","first_name":"E","last_name":"Calvo"},{"name":"M Cerrada","name_last_first":"Cerrada, M","first_name":"M","last_name":"Cerrada"},{"name":"MC Llatas","name_last_first":"Llatas, MC","first_name":"MC","last_name":"Llatas"},{"name":"N Colino","name_last_first":"Colino, N","first_name":"N","last_name":"Colino"},{"name":"B De La Cruz","name_last_first":"De La Cruz, B","first_name":"B","last_name":"De La Cruz"},{"name":"AD Peris","name_last_first":"Peris, AD","first_name":"AD","last_name":"Peris"},{"name":"DD Vazquez","name_last_first":"Vazquez, DD","first_name":"DD","last_name":"Vazquez"},{"name":"AE Del Valle","name_last_first":"Del Valle, AE","first_name":"AE","last_name":"Del Valle"},{"name":"CF Bedoya","name_last_first":"Bedoya, CF","first_name":"CF","last_name":"Bedoya"},{"name":"JPF Ramos","name_last_first":"Ramos, JPF","first_name":"JPF","last_name":"Ramos"},{"name":"J Flix","name_last_first":"Flix, J","first_name":"J","last_name":"Flix"},{"name":"MC Fouz","name_last_first":"Fouz, MC","first_name":"MC","last_name":"Fouz"},{"name":"P Garcia-Abia","name_last_first":"Garcia-Abia, P","first_name":"P","last_name":"Garcia-Abia"},{"name":"OG Lopez","name_last_first":"Lopez, OG","first_name":"OG","last_name":"Lopez"},{"name":"SG Lopez","name_last_first":"Lopez, SG","first_name":"SG","last_name":"Lopez"},{"name":"JM Hernandez","name_last_first":"Hernandez, JM","first_name":"JM","last_name":"Hernandez"},{"name":"MI Josa","name_last_first":"Josa, MI","first_name":"MI","last_name":"Josa"},{"name":"EN De Martino","name_last_first":"De Martino, EN","first_name":"EN","last_name":"De Martino"},{"name":"APC Yzquierdo","name_last_first":"Yzquierdo, APC","first_name":"APC","last_name":"Yzquierdo"},{"name":"JP Pelayo","name_last_first":"Pelayo, JP","first_name":"JP","last_name":"Pelayo"},{"name":"AQ Olmeda","name_last_first":"Olmeda, AQ","first_name":"AQ","last_name":"Olmeda"},{"name":"I Redondo","name_last_first":"Redondo, I","first_name":"I","last_name":"Redondo"},{"name":"L Romero","name_last_first":"Romero, L","first_name":"L","last_name":"Romero"},{"name":"MS Soares","name_last_first":"Soares, MS","first_name":"MS","last_name":"Soares"},{"name":"C Albajar","name_last_first":"Albajar, C","first_name":"C","last_name":"Albajar"},{"name":"JF de Troconiz","name_last_first":"de Troconiz, JF","first_name":"JF","last_name":"de Troconiz"},{"name":"M Missiroli","name_last_first":"Missiroli, M","first_name":"M","last_name":"Missiroli"},{"name":"D Moran","name_last_first":"Moran, D","first_name":"D","last_name":"Moran"},{"name":"H Brun","name_last_first":"Brun, H","first_name":"H","last_name":"Brun"},{"name":"J Cuevas","name_last_first":"Cuevas, J","first_name":"J","last_name":"Cuevas"},{"name":"JF Menendez","name_last_first":"Menendez, JF","first_name":"JF","last_name":"Menendez"},{"name":"S Folgueras","name_last_first":"Folgueras, S","first_name":"S","last_name":"Folgueras"},{"name":"IG Caballero","name_last_first":"Caballero, IG","first_name":"IG","last_name":"Caballero"},{"name":"JAB Cifuentes","name_last_first":"Cifuentes, JAB","first_name":"JAB","last_name":"Cifuentes"},{"name":"IJ Cabrillo","name_last_first":"Cabrillo, IJ","first_name":"IJ","last_name":"Cabrillo"},{"name":"A Calderon","name_last_first":"Calderon, A","first_name":"A","last_name":"Calderon"},{"name":"JD Campderros","name_last_first":"Campderros, JD","first_name":"JD","last_name":"Campderros"},{"name":"M Fernandez","name_last_first":"Fernandez, M","first_name":"M","last_name":"Fernandez"},{"name":"G Gomez","name_last_first":"Gomez, G","first_name":"G","last_name":"Gomez"},{"name":"A Graziano","name_last_first":"Graziano, A","first_name":"A","last_name":"Graziano"},{"name":"AL Virto","name_last_first":"Virto, AL","first_name":"AL","last_name":"Virto"},{"name":"J Marco","name_last_first":"Marco, J","first_name":"J","last_name":"Marco"},{"name":"R Marco","name_last_first":"Marco, R","first_name":"R","last_name":"Marco"},{"name":"CM Rivero","name_last_first":"Rivero, CM","first_name":"CM","last_name":"Rivero"},{"name":"F Matorras","name_last_first":"Matorras, F","first_name":"F","last_name":"Matorras"},{"name":"FJM Sanchez","name_last_first":"Sanchez, FJM","first_name":"FJM","last_name":"Sanchez"},{"name":"JP Gomez","name_last_first":"Gomez, JP","first_name":"JP","last_name":"Gomez"},{"name":"T Rodrigo","name_last_first":"Rodrigo, T","first_name":"T","last_name":"Rodrigo"},{"name":"AY Rodriguez-Marrero","name_last_first":"Rodriguez-Marrero, AY","first_name":"AY","last_name":"Rodriguez-Marrero"},{"name":"A Ruiz-Jimeno","name_last_first":"Ruiz-Jimeno, A","first_name":"A","last_name":"Ruiz-Jimeno"},{"name":"L Scodellaro","name_last_first":"Scodellaro, L","first_name":"L","last_name":"Scodellaro"},{"name":"I Vila","name_last_first":"Vila, I","first_name":"I","last_name":"Vila"},{"name":"RV Cortabitarte","name_last_first":"Cortabitarte, RV","first_name":"RV","last_name":"Cortabitarte"},{"name":"D Abbaneo","name_last_first":"Abbaneo, D","first_name":"D","last_name":"Abbaneo"},{"name":"E Auffray","name_last_first":"Auffray, E","first_name":"E","last_name":"Auffray"},{"name":"G Auzinger","name_last_first":"Auzinger, G","first_name":"G","last_name":"Auzinger"},{"name":"M Bachtis","name_last_first":"Bachtis, M","first_name":"M","last_name":"Bachtis"},{"name":"P Baillon","name_last_first":"Baillon, P","first_name":"P","last_name":"Baillon"},{"name":"AH Ball","name_last_first":"Ball, AH","first_name":"AH","last_name":"Ball"},{"name":"D Barney","name_last_first":"Barney, D","first_name":"D","last_name":"Barney"},{"name":"A Benaglia","name_last_first":"Benaglia, A","first_name":"A","last_name":"Benaglia"},{"name":"J Bendavid","name_last_first":"Bendavid, J","first_name":"J","last_name":"Bendavid"},{"name":"L Benhabib","name_last_first":"Benhabib, L","first_name":"L","last_name":"Benhabib"},{"name":"JF Benitez","name_last_first":"Benitez, JF","first_name":"JF","last_name":"Benitez"},{"name":"P Bloch","name_last_first":"Bloch, P","first_name":"P","last_name":"Bloch"},{"name":"A Bocci","name_last_first":"Bocci, A","first_name":"A","last_name":"Bocci"},{"name":"A Bonato","name_last_first":"Bonato, A","first_name":"A","last_name":"Bonato"},{"name":"O Bondu","name_last_first":"Bondu, O","first_name":"O","last_name":"Bondu"},{"name":"C Botta","name_last_first":"Botta, C","first_name":"C","last_name":"Botta"},{"name":"H Breuker","name_last_first":"Breuker, H","first_name":"H","last_name":"Breuker"},{"name":"T Camporesi","name_last_first":"Camporesi, T","first_name":"T","last_name":"Camporesi"},{"name":"G Cerminara","name_last_first":"Cerminara, G","first_name":"G","last_name":"Cerminara"},{"name":"S Colafranceschi","name_last_first":"Colafranceschi, S","first_name":"S","last_name":"Colafranceschi"},{"name":"M D'Alfonso","name_last_first":"D'Alfonso, M","first_name":"M","last_name":"D'Alfonso"},{"name":"D d'Enterria","name_last_first":"d'Enterria, D","first_name":"D","last_name":"d'Enterria"},{"name":"A Dabrowski","name_last_first":"Dabrowski, A","first_name":"A","last_name":"Dabrowski"},{"name":"A David","name_last_first":"David, A","first_name":"A","last_name":"David"},{"name":"F De Guio","name_last_first":"De Guio, F","first_name":"F","last_name":"De Guio"},{"name":"A De Roeck","name_last_first":"De Roeck, A","first_name":"A","last_name":"De Roeck"},{"name":"S De Visscher","name_last_first":"De Visscher, S","first_name":"S","last_name":"De Visscher"},{"name":"E Di Marco","name_last_first":"Di Marco, E","first_name":"E","last_name":"Di Marco"},{"name":"M Dobson","name_last_first":"Dobson, M","first_name":"M","last_name":"Dobson"},{"name":"M Dordevic","name_last_first":"Dordevic, M","first_name":"M","last_name":"Dordevic"},{"name":"B Dorney","name_last_first":"Dorney, B","first_name":"B","last_name":"Dorney"},{"name":"N Dupont-Sagorin","name_last_first":"Dupont-Sagorin, N","first_name":"N","last_name":"Dupont-Sagorin"},{"name":"A Elliott-Peisert","name_last_first":"Elliott-Peisert, A","first_name":"A","last_name":"Elliott-Peisert"},{"name":"G Franzoni","name_last_first":"Franzoni, G","first_name":"G","last_name":"Franzoni"},{"name":"W Funk","name_last_first":"Funk, W","first_name":"W","last_name":"Funk"},{"name":"D Gigi","name_last_first":"Gigi, D","first_name":"D","last_name":"Gigi"},{"name":"K Gill","name_last_first":"Gill, K","first_name":"K","last_name":"Gill"},{"name":"D Giordano","name_last_first":"Giordano, D","first_name":"D","last_name":"Giordano"},{"name":"M Girone","name_last_first":"Girone, M","first_name":"M","last_name":"Girone"},{"name":"F Glege","name_last_first":"Glege, F","first_name":"F","last_name":"Glege"},{"name":"R Guida","name_last_first":"Guida, R","first_name":"R","last_name":"Guida"},{"name":"S Gundacker","name_last_first":"Gundacker, S","first_name":"S","last_name":"Gundacker"},{"name":"M Guthoff","name_last_first":"Guthoff, M","first_name":"M","last_name":"Guthoff"},{"name":"J Hammer","name_last_first":"Hammer, J","first_name":"J","last_name":"Hammer"},{"name":"M Hansen","name_last_first":"Hansen, M","first_name":"M","last_name":"Hansen"},{"name":"P Harris","name_last_first":"Harris, P","first_name":"P","last_name":"Harris"},{"name":"J Hegeman","name_last_first":"Hegeman, J","first_name":"J","last_name":"Hegeman"},{"name":"V Innocente","name_last_first":"Innocente, V","first_name":"V","last_name":"Innocente"},{"name":"P Janot","name_last_first":"Janot, P","first_name":"P","last_name":"Janot"},{"name":"K Kousouris","name_last_first":"Kousouris, K","first_name":"K","last_name":"Kousouris"},{"name":"K Krajczar","name_last_first":"Krajczar, K","first_name":"K","last_name":"Krajczar"},{"name":"P Lecoq","name_last_first":"Lecoq, P","first_name":"P","last_name":"Lecoq"},{"name":"C Lourenco","name_last_first":"Lourenco, C","first_name":"C","last_name":"Lourenco"},{"name":"N Magini","name_last_first":"Magini, N","first_name":"N","last_name":"Magini"},{"name":"L Malgeri","name_last_first":"Malgeri, L","first_name":"L","last_name":"Malgeri"},{"name":"M Mannelli","name_last_first":"Mannelli, M","first_name":"M","last_name":"Mannelli"},{"name":"J Marrouche","name_last_first":"Marrouche, J","first_name":"J","last_name":"Marrouche"},{"name":"L Masetti","name_last_first":"Masetti, L","first_name":"L","last_name":"Masetti"},{"name":"F Meijers","name_last_first":"Meijers, F","first_name":"F","last_name":"Meijers"},{"name":"S Mersi","name_last_first":"Mersi, S","first_name":"S","last_name":"Mersi"},{"name":"E Meschi","name_last_first":"Meschi, E","first_name":"E","last_name":"Meschi"},{"name":"F Moortgat","name_last_first":"Moortgat, F","first_name":"F","last_name":"Moortgat"},{"name":"S Morovic","name_last_first":"Morovic, S","first_name":"S","last_name":"Morovic"},{"name":"M Mulders","name_last_first":"Mulders, M","first_name":"M","last_name":"Mulders"},{"name":"L Orsini","name_last_first":"Orsini, L","first_name":"L","last_name":"Orsini"},{"name":"L Pape","name_last_first":"Pape, L","first_name":"L","last_name":"Pape"},{"name":"E Perez","name_last_first":"Perez, E","first_name":"E","last_name":"Perez"},{"name":"A Petrilli","name_last_first":"Petrilli, A","first_name":"A","last_name":"Petrilli"},{"name":"G Petrucciani","name_last_first":"Petrucciani, G","first_name":"G","last_name":"Petrucciani"},{"name":"A Pfeiffer","name_last_first":"Pfeiffer, A","first_name":"A","last_name":"Pfeiffer"},{"name":"M Pimia","name_last_first":"Pimia, M","first_name":"M","last_name":"Pimia"},{"name":"D Piparo","name_last_first":"Piparo, D","first_name":"D","last_name":"Piparo"},{"name":"M Plagge","name_last_first":"Plagge, M","first_name":"M","last_name":"Plagge"},{"name":"A Racz","name_last_first":"Racz, A","first_name":"A","last_name":"Racz"},{"name":"G Rolandi","name_last_first":"Rolandi, G","first_name":"G","last_name":"Rolandi"},{"name":"M Rovere","name_last_first":"Rovere, M","first_name":"M","last_name":"Rovere"},{"name":"H Sakulin","name_last_first":"Sakulin, H","first_name":"H","last_name":"Sakulin"},{"name":"C Schafer","name_last_first":"Schafer, C","first_name":"C","last_name":"Schafer"},{"name":"C Schwick","name_last_first":"Schwick, C","first_name":"C","last_name":"Schwick"},{"name":"A Sharma","name_last_first":"Sharma, A","first_name":"A","last_name":"Sharma"},{"name":"P Siegrist","name_last_first":"Siegrist, P","first_name":"P","last_name":"Siegrist"},{"name":"P Silva","name_last_first":"Silva, P","first_name":"P","last_name":"Silva"},{"name":"M Simon","name_last_first":"Simon, M","first_name":"M","last_name":"Simon"},{"name":"P Sphicas","name_last_first":"Sphicas, P","first_name":"P","last_name":"Sphicas"},{"name":"D Spiga","name_last_first":"Spiga, D","first_name":"D","last_name":"Spiga"},{"name":"J Steggemann","name_last_first":"Steggemann, J","first_name":"J","last_name":"Steggemann"},{"name":"B Stieger","name_last_first":"Stieger, B","first_name":"B","last_name":"Stieger"},{"name":"M Stoye","name_last_first":"Stoye, M","first_name":"M","last_name":"Stoye"},{"name":"Y Takahashi","name_last_first":"Takahashi, Y","first_name":"Y","last_name":"Takahashi"},{"name":"D Treille","name_last_first":"Treille, D","first_name":"D","last_name":"Treille"},{"name":"A Tsirou","name_last_first":"Tsirou, A","first_name":"A","last_name":"Tsirou"},{"name":"GI Veres","name_last_first":"Veres, GI","first_name":"GI","last_name":"Veres"},{"name":"N Wardle","name_last_first":"Wardle, N","first_name":"N","last_name":"Wardle"},{"name":"HK Wohri","name_last_first":"Wohri, HK","first_name":"HK","last_name":"Wohri"},{"name":"H Wollny","name_last_first":"Wollny, H","first_name":"H","last_name":"Wollny"},{"name":"WD Zeuner","name_last_first":"Zeuner, WD","first_name":"WD","last_name":"Zeuner"},{"name":"W Bertl","name_last_first":"Bertl, W","first_name":"W","last_name":"Bertl"},{"name":"K Deiters","name_last_first":"Deiters, K","first_name":"K","last_name":"Deiters"},{"name":"W Erdmann","name_last_first":"Erdmann, W","first_name":"W","last_name":"Erdmann"},{"name":"R Horisberger","name_last_first":"Horisberger, R","first_name":"R","last_name":"Horisberger"},{"name":"Q Ingram","name_last_first":"Ingram, Q","first_name":"Q","last_name":"Ingram"},{"name":"HC Kaestli","name_last_first":"Kaestli, HC","first_name":"HC","last_name":"Kaestli"},{"name":"D Kotlinski","name_last_first":"Kotlinski, D","first_name":"D","last_name":"Kotlinski"},{"name":"U Langenegger","name_last_first":"Langenegger, U","first_name":"U","last_name":"Langenegger"},{"name":"D Renker","name_last_first":"Renker, D","first_name":"D","last_name":"Renker"},{"name":"T Rohe","name_last_first":"Rohe, T","first_name":"T","last_name":"Rohe"},{"name":"F Bachmair","name_last_first":"Bachmair, F","first_name":"F","last_name":"Bachmair"},{"name":"L Bani","name_last_first":"Bani, L","first_name":"L","last_name":"Bani"},{"name":"L Bianchini","name_last_first":"Bianchini, L","first_name":"L","last_name":"Bianchini"},{"name":"MA Buchmann","name_last_first":"Buchmann, MA","first_name":"MA","last_name":"Buchmann"},{"name":"B Casal","name_last_first":"Casal, B","first_name":"B","last_name":"Casal"},{"name":"N Chanon","name_last_first":"Chanon, N","first_name":"N","last_name":"Chanon"},{"name":"G Dissertori","name_last_first":"Dissertori, G","first_name":"G","last_name":"Dissertori"},{"name":"M Dittmar","name_last_first":"Dittmar, M","first_name":"M","last_name":"Dittmar"},{"name":"M Donega","name_last_first":"Donega, M","first_name":"M","last_name":"Donega"},{"name":"M Dunser","name_last_first":"Dunser, M","first_name":"M","last_name":"Dunser"},{"name":"P Eller","name_last_first":"Eller, P","first_name":"P","last_name":"Eller"},{"name":"C Grab","name_last_first":"Grab, C","first_name":"C","last_name":"Grab"},{"name":"D Hits","name_last_first":"Hits, D","first_name":"D","last_name":"Hits"},{"name":"J Hoss","name_last_first":"Hoss, J","first_name":"J","last_name":"Hoss"},{"name":"W Lustermann","name_last_first":"Lustermann, W","first_name":"W","last_name":"Lustermann"},{"name":"B Mangano","name_last_first":"Mangano, B","first_name":"B","last_name":"Mangano"},{"name":"AC Marini","name_last_first":"Marini, AC","first_name":"AC","last_name":"Marini"},{"name":"M Marionneau","name_last_first":"Marionneau, M","first_name":"M","last_name":"Marionneau"},{"name":"PMR del Arbol","name_last_first":"del Arbol, PMR","first_name":"PMR","last_name":"del Arbol"},{"name":"M Masciovecchio","name_last_first":"Masciovecchio, M","first_name":"M","last_name":"Masciovecchio"},{"name":"D Meister","name_last_first":"Meister, D","first_name":"D","last_name":"Meister"},{"name":"N Mohr","name_last_first":"Mohr, N","first_name":"N","last_name":"Mohr"},{"name":"P Musella","name_last_first":"Musella, P","first_name":"P","last_name":"Musella"},{"name":"C Nageli","name_last_first":"Nageli, C","first_name":"C","last_name":"Nageli"},{"name":"F Nessi-Tedaldi","name_last_first":"Nessi-Tedaldi, F","first_name":"F","last_name":"Nessi-Tedaldi"},{"name":"F Pandolfi","name_last_first":"Pandolfi, F","first_name":"F","last_name":"Pandolfi"},{"name":"F Pauss","name_last_first":"Pauss, F","first_name":"F","last_name":"Pauss"},{"name":"L Perrozzi","name_last_first":"Perrozzi, L","first_name":"L","last_name":"Perrozzi"},{"name":"M Peruzzi","name_last_first":"Peruzzi, M","first_name":"M","last_name":"Peruzzi"},{"name":"M Quittnat","name_last_first":"Quittnat, M","first_name":"M","last_name":"Quittnat"},{"name":"L Rebane","name_last_first":"Rebane, L","first_name":"L","last_name":"Rebane"},{"name":"M Rossini","name_last_first":"Rossini, M","first_name":"M","last_name":"Rossini"},{"name":"A Starodumov","name_last_first":"Starodumov, A","first_name":"A","last_name":"Starodumov"},{"name":"M Takahashi","name_last_first":"Takahashi, M","first_name":"M","last_name":"Takahashi"},{"name":"K Theofilatos","name_last_first":"Theofilatos, K","first_name":"K","last_name":"Theofilatos"},{"name":"R Wallny","name_last_first":"Wallny, R","first_name":"R","last_name":"Wallny"},{"name":"HA Weber","name_last_first":"Weber, HA","first_name":"HA","last_name":"Weber"},{"name":"C Amsler","name_last_first":"Amsler, C","first_name":"C","last_name":"Amsler"},{"name":"MF Canelli","name_last_first":"Canelli, MF","first_name":"MF","last_name":"Canelli"},{"name":"V Chiochia","name_last_first":"Chiochia, V","first_name":"V","last_name":"Chiochia"},{"name":"A De Cosa","name_last_first":"De Cosa, A","first_name":"A","last_name":"De Cosa"},{"name":"A Hinzmann","name_last_first":"Hinzmann, A","first_name":"A","last_name":"Hinzmann"},{"name":"T Hreus","name_last_first":"Hreus, T","first_name":"T","last_name":"Hreus"},{"name":"B Kilminster","name_last_first":"Kilminster, B","first_name":"B","last_name":"Kilminster"},{"name":"C Lange","name_last_first":"Lange, C","first_name":"C","last_name":"Lange"},{"name":"J Ngadiuba","name_last_first":"Ngadiuba, J","first_name":"J","last_name":"Ngadiuba"},{"name":"D Pinna","name_last_first":"Pinna, D","first_name":"D","last_name":"Pinna"},{"name":"P Robmann","name_last_first":"Robmann, P","first_name":"P","last_name":"Robmann"},{"name":"FJ Ronga","name_last_first":"Ronga, FJ","first_name":"FJ","last_name":"Ronga"},{"name":"S Taroni","name_last_first":"Taroni, S","first_name":"S","last_name":"Taroni"},{"name":"M Verzetti","name_last_first":"Verzetti, M","first_name":"M","last_name":"Verzetti"},{"name":"Y Yang","name_last_first":"Yang, Y","first_name":"Y","last_name":"Yang"},{"name":"M Cardaci","name_last_first":"Cardaci, M","first_name":"M","last_name":"Cardaci"},{"name":"KH Chen","name_last_first":"Chen, KH","first_name":"KH","last_name":"Chen"},{"name":"C Ferro","name_last_first":"Ferro, C","first_name":"C","last_name":"Ferro"},{"name":"CM Kuo","name_last_first":"Kuo, CM","first_name":"CM","last_name":"Kuo"},{"name":"W Lin","name_last_first":"Lin, W","first_name":"W","last_name":"Lin"},{"name":"YJ Lu","name_last_first":"Lu, YJ","first_name":"YJ","last_name":"Lu"},{"name":"R Volpe","name_last_first":"Volpe, R","first_name":"R","last_name":"Volpe"},{"name":"SS Yu","name_last_first":"Yu, SS","first_name":"SS","last_name":"Yu"},{"name":"P Chang","name_last_first":"Chang, P","first_name":"P","last_name":"Chang"},{"name":"YH Chang","name_last_first":"Chang, YH","first_name":"YH","last_name":"Chang"},{"name":"Y Chao","name_last_first":"Chao, Y","first_name":"Y","last_name":"Chao"},{"name":"KF Chen","name_last_first":"Chen, KF","first_name":"KF","last_name":"Chen"},{"name":"PH Chen","name_last_first":"Chen, PH","first_name":"PH","last_name":"Chen"},{"name":"C Dietz","name_last_first":"Dietz, C","first_name":"C","last_name":"Dietz"},{"name":"U Grundler","name_last_first":"Grundler, U","first_name":"U","last_name":"Grundler"},{"name":"WS Hou","name_last_first":"Hou, WS","first_name":"WS","last_name":"Hou"},{"name":"YF Liu","name_last_first":"Liu, YF","first_name":"YF","last_name":"Liu"},{"name":"RS Lu","name_last_first":"Lu, RS","first_name":"RS","last_name":"Lu"},{"name":"MM Moya","name_last_first":"Moya, MM","first_name":"MM","last_name":"Moya"},{"name":"E Petrakou","name_last_first":"Petrakou, E","first_name":"E","last_name":"Petrakou"},{"name":"YM Tzeng","name_last_first":"Tzeng, YM","first_name":"YM","last_name":"Tzeng"},{"name":"R Wilken","name_last_first":"Wilken, R","first_name":"R","last_name":"Wilken"},{"name":"B Asavapibhop","name_last_first":"Asavapibhop, B","first_name":"B","last_name":"Asavapibhop"},{"name":"G Singh","name_last_first":"Singh, G","first_name":"G","last_name":"Singh"},{"name":"N Srimanobhas","name_last_first":"Srimanobhas, N","first_name":"N","last_name":"Srimanobhas"},{"name":"N Suwonjandee","name_last_first":"Suwonjandee, N","first_name":"N","last_name":"Suwonjandee"},{"name":"A Adiguzel","name_last_first":"Adiguzel, A","first_name":"A","last_name":"Adiguzel"},{"name":"MN Bakirci","name_last_first":"Bakirci, MN","first_name":"MN","last_name":"Bakirci"},{"name":"S Cerci","name_last_first":"Cerci, S","first_name":"S","last_name":"Cerci"},{"name":"C Dozen","name_last_first":"Dozen, C","first_name":"C","last_name":"Dozen"},{"name":"I Dumanoglu","name_last_first":"Dumanoglu, I","first_name":"I","last_name":"Dumanoglu"},{"name":"E Eskut","name_last_first":"Eskut, E","first_name":"E","last_name":"Eskut"},{"name":"S Girgis","name_last_first":"Girgis, S","first_name":"S","last_name":"Girgis"},{"name":"G Gokbulut","name_last_first":"Gokbulut, G","first_name":"G","last_name":"Gokbulut"},{"name":"Y Guler","name_last_first":"Guler, Y","first_name":"Y","last_name":"Guler"},{"name":"E Gurpinar","name_last_first":"Gurpinar, E","first_name":"E","last_name":"Gurpinar"},{"name":"I Hos","name_last_first":"Hos, I","first_name":"I","last_name":"Hos"},{"name":"EE Kangal","name_last_first":"Kangal, EE","first_name":"EE","last_name":"Kangal"},{"name":"AK Topaksu","name_last_first":"Topaksu, AK","first_name":"AK","last_name":"Topaksu"},{"name":"G Onengut","name_last_first":"Onengut, G","first_name":"G","last_name":"Onengut"},{"name":"K Ozdemir","name_last_first":"Ozdemir, K","first_name":"K","last_name":"Ozdemir"},{"name":"S Ozturk","name_last_first":"Ozturk, S","first_name":"S","last_name":"Ozturk"},{"name":"A Polatoz","name_last_first":"Polatoz, A","first_name":"A","last_name":"Polatoz"},{"name":"DS Cerci","name_last_first":"Cerci, DS","first_name":"DS","last_name":"Cerci"},{"name":"B Tali","name_last_first":"Tali, B","first_name":"B","last_name":"Tali"},{"name":"H Topakli","name_last_first":"Topakli, H","first_name":"H","last_name":"Topakli"},{"name":"M Vergili","name_last_first":"Vergili, M","first_name":"M","last_name":"Vergili"},{"name":"C Zorbilmez","name_last_first":"Zorbilmez, C","first_name":"C","last_name":"Zorbilmez"},{"name":"IV Akin","name_last_first":"Akin, IV","first_name":"IV","last_name":"Akin"},{"name":"B Bilin","name_last_first":"Bilin, B","first_name":"B","last_name":"Bilin"},{"name":"S Bilmis","name_last_first":"Bilmis, S","first_name":"S","last_name":"Bilmis"},{"name":"H Gamsizkan","name_last_first":"Gamsizkan, H","first_name":"H","last_name":"Gamsizkan"},{"name":"B Isildak","name_last_first":"Isildak, B","first_name":"B","last_name":"Isildak"},{"name":"G Karapinar","name_last_first":"Karapinar, G","first_name":"G","last_name":"Karapinar"},{"name":"K Ocalan","name_last_first":"Ocalan, K","first_name":"K","last_name":"Ocalan"},{"name":"S Sekmen","name_last_first":"Sekmen, S","first_name":"S","last_name":"Sekmen"},{"name":"UE Surat","name_last_first":"Surat, UE","first_name":"UE","last_name":"Surat"},{"name":"M Yalvac","name_last_first":"Yalvac, M","first_name":"M","last_name":"Yalvac"},{"name":"M Zeyrek","name_last_first":"Zeyrek, M","first_name":"M","last_name":"Zeyrek"},{"name":"EA Albayrak","name_last_first":"Albayrak, EA","first_name":"EA","last_name":"Albayrak"},{"name":"E Gulmez","name_last_first":"Gulmez, E","first_name":"E","last_name":"Gulmez"},{"name":"M Kaya","name_last_first":"Kaya, M","first_name":"M","last_name":"Kaya"},{"name":"O Kaya","name_last_first":"Kaya, O","first_name":"O","last_name":"Kaya"},{"name":"T Yetkin","name_last_first":"Yetkin, T","first_name":"T","last_name":"Yetkin"},{"name":"K Cankocak","name_last_first":"Cankocak, K","first_name":"K","last_name":"Cankocak"},{"name":"FI Vardarli","name_last_first":"Vardarli, FI","first_name":"FI","last_name":"Vardarli"},{"name":"L Levchuk","name_last_first":"Levchuk, L","first_name":"L","last_name":"Levchuk"},{"name":"P Sorokin","name_last_first":"Sorokin, P","first_name":"P","last_name":"Sorokin"},{"name":"JJ Brooke","name_last_first":"Brooke, JJ","first_name":"JJ","last_name":"Brooke"},{"name":"E Clement","name_last_first":"Clement, E","first_name":"E","last_name":"Clement"},{"name":"D Cussans","name_last_first":"Cussans, D","first_name":"D","last_name":"Cussans"},{"name":"H Flacher","name_last_first":"Flacher, H","first_name":"H","last_name":"Flacher"},{"name":"J Goldstein","name_last_first":"Goldstein, J","first_name":"J","last_name":"Goldstein"},{"name":"M Grimes","name_last_first":"Grimes, M","first_name":"M","last_name":"Grimes"},{"name":"GP Heath","name_last_first":"Heath, GP","first_name":"GP","last_name":"Heath"},{"name":"HF Heath","name_last_first":"Heath, HF","first_name":"HF","last_name":"Heath"},{"name":"J Jacob","name_last_first":"Jacob, J","first_name":"J","last_name":"Jacob"},{"name":"L Kreczko","name_last_first":"Kreczko, L","first_name":"L","last_name":"Kreczko"},{"name":"C Lucas","name_last_first":"Lucas, C","first_name":"C","last_name":"Lucas"},{"name":"Z Meng","name_last_first":"Meng, Z","first_name":"Z","last_name":"Meng"},{"name":"DM Newbold","name_last_first":"Newbold, DM","first_name":"DM","last_name":"Newbold"},{"name":"S Paramesvaran","name_last_first":"Paramesvaran, S","first_name":"S","last_name":"Paramesvaran"},{"name":"A Poll","name_last_first":"Poll, A","first_name":"A","last_name":"Poll"},{"name":"T Sakuma","name_last_first":"Sakuma, T","first_name":"T","last_name":"Sakuma"},{"name":"SS El Nasr-Storey","name_last_first":"El Nasr-Storey, SS","first_name":"SS","last_name":"El Nasr-Storey"},{"name":"S Senkin","name_last_first":"Senkin, S","first_name":"S","last_name":"Senkin"},{"name":"VJ Smith","name_last_first":"Smith, VJ","first_name":"VJ","last_name":"Smith"},{"name":"KW Bell","name_last_first":"Bell, KW","first_name":"KW","last_name":"Bell"},{"name":"A Belyaev","name_last_first":"Belyaev, A","first_name":"A","last_name":"Belyaev"},{"name":"C Brew","name_last_first":"Brew, C","first_name":"C","last_name":"Brew"},{"name":"RM Brown","name_last_first":"Brown, RM","first_name":"RM","last_name":"Brown"},{"name":"DJA Cockerill","name_last_first":"Cockerill, DJA","first_name":"DJA","last_name":"Cockerill"},{"name":"JA Coughlan","name_last_first":"Coughlan, JA","first_name":"JA","last_name":"Coughlan"},{"name":"K Harder","name_last_first":"Harder, K","first_name":"K","last_name":"Harder"},{"name":"S Harper","name_last_first":"Harper, S","first_name":"S","last_name":"Harper"},{"name":"E Olaiya","name_last_first":"Olaiya, E","first_name":"E","last_name":"Olaiya"},{"name":"D Petyt","name_last_first":"Petyt, D","first_name":"D","last_name":"Petyt"},{"name":"CH Shepherd-Themistocleous","name_last_first":"Shepherd-Themistocleous, CH","first_name":"CH","last_name":"Shepherd-Themistocleous"},{"name":"A Thea","name_last_first":"Thea, A","first_name":"A","last_name":"Thea"},{"name":"IR Tomalin","name_last_first":"Tomalin, IR","first_name":"IR","last_name":"Tomalin"},{"name":"T Williams","name_last_first":"Williams, T","first_name":"T","last_name":"Williams"},{"name":"WJ Womersley","name_last_first":"Womersley, WJ","first_name":"WJ","last_name":"Womersley"},{"name":"SD Worm","name_last_first":"Worm, SD","first_name":"SD","last_name":"Worm"},{"name":"M Baber","name_last_first":"Baber, M","first_name":"M","last_name":"Baber"},{"name":"R Bainbridge","name_last_first":"Bainbridge, R","first_name":"R","last_name":"Bainbridge"},{"name":"O Buchmuller","name_last_first":"Buchmuller, O","first_name":"O","last_name":"Buchmuller"},{"name":"D Burton","name_last_first":"Burton, D","first_name":"D","last_name":"Burton"},{"name":"D Colling","name_last_first":"Colling, D","first_name":"D","last_name":"Colling"},{"name":"N Cripps","name_last_first":"Cripps, N","first_name":"N","last_name":"Cripps"},{"name":"P Dauncey","name_last_first":"Dauncey, P","first_name":"P","last_name":"Dauncey"},{"name":"G Davies","name_last_first":"Davies, G","first_name":"G","last_name":"Davies"},{"name":"M Della Negra","name_last_first":"Della Negra, M","first_name":"M","last_name":"Della Negra"},{"name":"P Dunne","name_last_first":"Dunne, P","first_name":"P","last_name":"Dunne"},{"name":"A Elwood","name_last_first":"Elwood, A","first_name":"A","last_name":"Elwood"},{"name":"W Ferguson","name_last_first":"Ferguson, W","first_name":"W","last_name":"Ferguson"},{"name":"J Fulcher","name_last_first":"Fulcher, J","first_name":"J","last_name":"Fulcher"},{"name":"D Futyan","name_last_first":"Futyan, D","first_name":"D","last_name":"Futyan"},{"name":"G Hall","name_last_first":"Hall, G","first_name":"G","last_name":"Hall"},{"name":"G Iles","name_last_first":"Iles, G","first_name":"G","last_name":"Iles"},{"name":"M Jarvis","name_last_first":"Jarvis, M","first_name":"M","last_name":"Jarvis"},{"name":"G Karapostoli","name_last_first":"Karapostoli, G","first_name":"G","last_name":"Karapostoli"},{"name":"M Kenzie","name_last_first":"Kenzie, M","first_name":"M","last_name":"Kenzie"},{"name":"R Lane","name_last_first":"Lane, R","first_name":"R","last_name":"Lane"},{"name":"R Lucas","name_last_first":"Lucas, R","first_name":"R","last_name":"Lucas"},{"name":"L Lyons","name_last_first":"Lyons, L","first_name":"L","last_name":"Lyons"},{"name":"AM Magnan","name_last_first":"Magnan, AM","first_name":"AM","last_name":"Magnan"},{"name":"S Malik","name_last_first":"Malik, S","first_name":"S","last_name":"Malik"},{"name":"B Mathias","name_last_first":"Mathias, B","first_name":"B","last_name":"Mathias"},{"name":"J Nash","name_last_first":"Nash, J","first_name":"J","last_name":"Nash"},{"name":"A Nikitenko","name_last_first":"Nikitenko, A","first_name":"A","last_name":"Nikitenko"},{"name":"J Pela","name_last_first":"Pela, J","first_name":"J","last_name":"Pela"},{"name":"M Pesaresi","name_last_first":"Pesaresi, M","first_name":"M","last_name":"Pesaresi"},{"name":"K Petridis","name_last_first":"Petridis, K","first_name":"K","last_name":"Petridis"},{"name":"DM Raymond","name_last_first":"Raymond, DM","first_name":"DM","last_name":"Raymond"},{"name":"S Rogerson","name_last_first":"Rogerson, S","first_name":"S","last_name":"Rogerson"},{"name":"A Rose","name_last_first":"Rose, A","first_name":"A","last_name":"Rose"},{"name":"C Seez","name_last_first":"Seez, C","first_name":"C","last_name":"Seez"},{"name":"P Sharp","name_last_first":"Sharp, P","first_name":"P","last_name":"Sharp"},{"name":"A Tapper","name_last_first":"Tapper, A","first_name":"A","last_name":"Tapper"},{"name":"MV Acosta","name_last_first":"Acosta, MV","first_name":"MV","last_name":"Acosta"},{"name":"T Virdee","name_last_first":"Virdee, T","first_name":"T","last_name":"Virdee"},{"name":"SC Zenz","name_last_first":"Zenz, SC","first_name":"SC","last_name":"Zenz"},{"name":"JE Cole","name_last_first":"Cole, JE","first_name":"JE","last_name":"Cole"},{"name":"PR Hobson","name_last_first":"Hobson, PR","first_name":"PR","last_name":"Hobson"},{"name":"A Khan","name_last_first":"Khan, A","first_name":"A","last_name":"Khan"},{"name":"P Kyberd","name_last_first":"Kyberd, P","first_name":"P","last_name":"Kyberd"},{"name":"D Leggat","name_last_first":"Leggat, D","first_name":"D","last_name":"Leggat"},{"name":"D Leslie","name_last_first":"Leslie, D","first_name":"D","last_name":"Leslie"},{"name":"ID Reid","name_last_first":"Reid, ID","first_name":"ID","last_name":"Reid"},{"name":"P Symonds","name_last_first":"Symonds, P","first_name":"P","last_name":"Symonds"},{"name":"L Teodorescu","name_last_first":"Teodorescu, L","first_name":"L","last_name":"Teodorescu"},{"name":"M Turner","name_last_first":"Turner, M","first_name":"M","last_name":"Turner"},{"name":"J Dittmann","name_last_first":"Dittmann, J","first_name":"J","last_name":"Dittmann"},{"name":"K Hatakeyama","name_last_first":"Hatakeyama, K","first_name":"K","last_name":"Hatakeyama"},{"name":"A Kasmi","name_last_first":"Kasmi, A","first_name":"A","last_name":"Kasmi"},{"name":"H Liu","name_last_first":"Liu, H","first_name":"H","last_name":"Liu"},{"name":"N Pastika","name_last_first":"Pastika, N","first_name":"N","last_name":"Pastika"},{"name":"T Scarborough","name_last_first":"Scarborough, T","first_name":"T","last_name":"Scarborough"},{"name":"Z Wu","name_last_first":"Wu, Z","first_name":"Z","last_name":"Wu"},{"name":"O Charaf","name_last_first":"Charaf, O","first_name":"O","last_name":"Charaf"},{"name":"SI Cooper","name_last_first":"Cooper, SI","first_name":"SI","last_name":"Cooper"},{"name":"C Henderson","name_last_first":"Henderson, C","first_name":"C","last_name":"Henderson"},{"name":"P Rumerio","name_last_first":"Rumerio, P","first_name":"P","last_name":"Rumerio"},{"name":"A Avetisyan","name_last_first":"Avetisyan, A","first_name":"A","last_name":"Avetisyan"},{"name":"T Bose","name_last_first":"Bose, T","first_name":"T","last_name":"Bose"},{"name":"C Fantasia","name_last_first":"Fantasia, C","first_name":"C","last_name":"Fantasia"},{"name":"P Lawson","name_last_first":"Lawson, P","first_name":"P","last_name":"Lawson"},{"name":"C Richardson","name_last_first":"Richardson, C","first_name":"C","last_name":"Richardson"},{"name":"J Rohlf","name_last_first":"Rohlf, J","first_name":"J","last_name":"Rohlf"},{"name":"JS John","name_last_first":"John, JS","first_name":"JS","last_name":"John"},{"name":"L Sulak","name_last_first":"Sulak, L","first_name":"L","last_name":"Sulak"},{"name":"J Alimena","name_last_first":"Alimena, J","first_name":"J","last_name":"Alimena"},{"name":"E Berry","name_last_first":"Berry, E","first_name":"E","last_name":"Berry"},{"name":"S Bhattacharya","name_last_first":"Bhattacharya, S","first_name":"S","last_name":"Bhattacharya"},{"name":"G Christopher","name_last_first":"Christopher, G","first_name":"G","last_name":"Christopher"},{"name":"D Cutts","name_last_first":"Cutts, D","first_name":"D","last_name":"Cutts"},{"name":"Z Demiragli","name_last_first":"Demiragli, Z","first_name":"Z","last_name":"Demiragli"},{"name":"N Dhingra","name_last_first":"Dhingra, N","first_name":"N","last_name":"Dhingra"},{"name":"A Ferapontov","name_last_first":"Ferapontov, A","first_name":"A","last_name":"Ferapontov"},{"name":"A Garabedian","name_last_first":"Garabedian, A","first_name":"A","last_name":"Garabedian"},{"name":"U Heintz","name_last_first":"Heintz, U","first_name":"U","last_name":"Heintz"},{"name":"G Kukartsev","name_last_first":"Kukartsev, G","first_name":"G","last_name":"Kukartsev"},{"name":"E Laird","name_last_first":"Laird, E","first_name":"E","last_name":"Laird"},{"name":"G Landsberg","name_last_first":"Landsberg, G","first_name":"G","last_name":"Landsberg"},{"name":"M Luk","name_last_first":"Luk, M","first_name":"M","last_name":"Luk"},{"name":"M Narain","name_last_first":"Narain, M","first_name":"M","last_name":"Narain"},{"name":"M Segala","name_last_first":"Segala, M","first_name":"M","last_name":"Segala"},{"name":"T Sinthuprasith","name_last_first":"Sinthuprasith, T","first_name":"T","last_name":"Sinthuprasith"},{"name":"T Speer","name_last_first":"Speer, T","first_name":"T","last_name":"Speer"},{"name":"J Swanson","name_last_first":"Swanson, J","first_name":"J","last_name":"Swanson"},{"name":"R Breedon","name_last_first":"Breedon, R","first_name":"R","last_name":"Breedon"},{"name":"G Breto","name_last_first":"Breto, G","first_name":"G","last_name":"Breto"},{"name":"MCD Sanchez","name_last_first":"Sanchez, MCD","first_name":"MCD","last_name":"Sanchez"},{"name":"S Chauhan","name_last_first":"Chauhan, S","first_name":"S","last_name":"Chauhan"},{"name":"M Chertok","name_last_first":"Chertok, M","first_name":"M","last_name":"Chertok"},{"name":"J Conway","name_last_first":"Conway, J","first_name":"J","last_name":"Conway"},{"name":"R Conway","name_last_first":"Conway, R","first_name":"R","last_name":"Conway"},{"name":"PT Cox","name_last_first":"Cox, PT","first_name":"PT","last_name":"Cox"},{"name":"R Erbacher","name_last_first":"Erbacher, R","first_name":"R","last_name":"Erbacher"},{"name":"M Gardner","name_last_first":"Gardner, M","first_name":"M","last_name":"Gardner"},{"name":"W Ko","name_last_first":"Ko, W","first_name":"W","last_name":"Ko"},{"name":"R Lander","name_last_first":"Lander, R","first_name":"R","last_name":"Lander"},{"name":"M Mulhearn","name_last_first":"Mulhearn, M","first_name":"M","last_name":"Mulhearn"},{"name":"D Pellett","name_last_first":"Pellett, D","first_name":"D","last_name":"Pellett"},{"name":"J Pilot","name_last_first":"Pilot, J","first_name":"J","last_name":"Pilot"},{"name":"F Ricci-Tam","name_last_first":"Ricci-Tam, F","first_name":"F","last_name":"Ricci-Tam"},{"name":"S Shalhout","name_last_first":"Shalhout, S","first_name":"S","last_name":"Shalhout"},{"name":"J Smith","name_last_first":"Smith, J","first_name":"J","last_name":"Smith"},{"name":"M Squires","name_last_first":"Squires, M","first_name":"M","last_name":"Squires"},{"name":"D Stolp","name_last_first":"Stolp, D","first_name":"D","last_name":"Stolp"},{"name":"M Tripathi","name_last_first":"Tripathi, M","first_name":"M","last_name":"Tripathi"},{"name":"S Wilbur","name_last_first":"Wilbur, S","first_name":"S","last_name":"Wilbur"},{"name":"R Yohay","name_last_first":"Yohay, R","first_name":"R","last_name":"Yohay"},{"name":"R Cousins","name_last_first":"Cousins, R","first_name":"R","last_name":"Cousins"},{"name":"P Everaerts","name_last_first":"Everaerts, P","first_name":"P","last_name":"Everaerts"},{"name":"C Farrell","name_last_first":"Farrell, C","first_name":"C","last_name":"Farrell"},{"name":"J Hauser","name_last_first":"Hauser, J","first_name":"J","last_name":"Hauser"},{"name":"M Ignatenko","name_last_first":"Ignatenko, M","first_name":"M","last_name":"Ignatenko"},{"name":"G Rakness","name_last_first":"Rakness, G","first_name":"G","last_name":"Rakness"},{"name":"E Takasugi","name_last_first":"Takasugi, E","first_name":"E","last_name":"Takasugi"},{"name":"V Valuev","name_last_first":"Valuev, V","first_name":"V","last_name":"Valuev"},{"name":"M Weber","name_last_first":"Weber, M","first_name":"M","last_name":"Weber"},{"name":"K Burt","name_last_first":"Burt, K","first_name":"K","last_name":"Burt"},{"name":"R Clare","name_last_first":"Clare, R","first_name":"R","last_name":"Clare"},{"name":"J Ellison","name_last_first":"Ellison, J","first_name":"J","last_name":"Ellison"},{"name":"JW Gary","name_last_first":"Gary, JW","first_name":"JW","last_name":"Gary"},{"name":"G Hanson","name_last_first":"Hanson, G","first_name":"G","last_name":"Hanson"},{"name":"J Heilman","name_last_first":"Heilman, J","first_name":"J","last_name":"Heilman"},{"name":"MI Rikova","name_last_first":"Rikova, MI","first_name":"MI","last_name":"Rikova"},{"name":"P Jandir","name_last_first":"Jandir, P","first_name":"P","last_name":"Jandir"},{"name":"E Kennedy","name_last_first":"Kennedy, E","first_name":"E","last_name":"Kennedy"},{"name":"F Lacroix","name_last_first":"Lacroix, F","first_name":"F","last_name":"Lacroix"},{"name":"OR Long","name_last_first":"Long, OR","first_name":"OR","last_name":"Long"},{"name":"A Luthra","name_last_first":"Luthra, A","first_name":"A","last_name":"Luthra"},{"name":"M Malberti","name_last_first":"Malberti, M","first_name":"M","last_name":"Malberti"},{"name":"MO Negrete","name_last_first":"Negrete, MO","first_name":"MO","last_name":"Negrete"},{"name":"A Shrinivas","name_last_first":"Shrinivas, A","first_name":"A","last_name":"Shrinivas"},{"name":"S Sumowidagdo","name_last_first":"Sumowidagdo, S","first_name":"S","last_name":"Sumowidagdo"},{"name":"S Wimpenny","name_last_first":"Wimpenny, S","first_name":"S","last_name":"Wimpenny"},{"name":"JG Branson","name_last_first":"Branson, JG","first_name":"JG","last_name":"Branson"},{"name":"GB Cerati","name_last_first":"Cerati, GB","first_name":"GB","last_name":"Cerati"},{"name":"S Cittolin","name_last_first":"Cittolin, S","first_name":"S","last_name":"Cittolin"},{"name":"RT D'Agnolo","name_last_first":"D'Agnolo, RT","first_name":"RT","last_name":"D'Agnolo"},{"name":"A Holzner","name_last_first":"Holzner, A","first_name":"A","last_name":"Holzner"},{"name":"R Kelley","name_last_first":"Kelley, R","first_name":"R","last_name":"Kelley"},{"name":"D Klein","name_last_first":"Klein, D","first_name":"D","last_name":"Klein"},{"name":"J Letts","name_last_first":"Letts, J","first_name":"J","last_name":"Letts"},{"name":"I Macneill","name_last_first":"Macneill, I","first_name":"I","last_name":"Macneill"},{"name":"D Olivito","name_last_first":"Olivito, D","first_name":"D","last_name":"Olivito"},{"name":"S Padhi","name_last_first":"Padhi, S","first_name":"S","last_name":"Padhi"},{"name":"C Palmer","name_last_first":"Palmer, C","first_name":"C","last_name":"Palmer"},{"name":"M Pieri","name_last_first":"Pieri, M","first_name":"M","last_name":"Pieri"},{"name":"M Sani","name_last_first":"Sani, M","first_name":"M","last_name":"Sani"},{"name":"V Sharma","name_last_first":"Sharma, V","first_name":"V","last_name":"Sharma"},{"name":"S Simon","name_last_first":"Simon, S","first_name":"S","last_name":"Simon"},{"name":"M Tadel","name_last_first":"Tadel, M","first_name":"M","last_name":"Tadel"},{"name":"Y Tu","name_last_first":"Tu, Y","first_name":"Y","last_name":"Tu"},{"name":"A Vartak","name_last_first":"Vartak, A","first_name":"A","last_name":"Vartak"},{"name":"C Welke","name_last_first":"Welke, C","first_name":"C","last_name":"Welke"},{"name":"F Wurthwein","name_last_first":"Wurthwein, F","first_name":"F","last_name":"Wurthwein"},{"name":"A Yagil","name_last_first":"Yagil, A","first_name":"A","last_name":"Yagil"},{"name":"GZ Della Porta","name_last_first":"Della Porta, GZ","first_name":"GZ","last_name":"Della Porta"},{"name":"D Barge","name_last_first":"Barge, D","first_name":"D","last_name":"Barge"},{"name":"J Bradmiller-Feld","name_last_first":"Bradmiller-Feld, J","first_name":"J","last_name":"Bradmiller-Feld"},{"name":"C Campagnari","name_last_first":"Campagnari, C","first_name":"C","last_name":"Campagnari"},{"name":"T Danielson","name_last_first":"Danielson, T","first_name":"T","last_name":"Danielson"},{"name":"A Dishaw","name_last_first":"Dishaw, A","first_name":"A","last_name":"Dishaw"},{"name":"V Dutta","name_last_first":"Dutta, V","first_name":"V","last_name":"Dutta"},{"name":"K Flowers","name_last_first":"Flowers, K","first_name":"K","last_name":"Flowers"},{"name":"MF Sevilla","name_last_first":"Sevilla, MF","first_name":"MF","last_name":"Sevilla"},{"name":"P Geffert","name_last_first":"Geffert, P","first_name":"P","last_name":"Geffert"},{"name":"C George","name_last_first":"George, C","first_name":"C","last_name":"George"},{"name":"F Golf","name_last_first":"Golf, F","first_name":"F","last_name":"Golf"},{"name":"L Gouskos","name_last_first":"Gouskos, L","first_name":"L","last_name":"Gouskos"},{"name":"J Incandela","name_last_first":"Incandela, J","first_name":"J","last_name":"Incandela"},{"name":"C Justus","name_last_first":"Justus, C","first_name":"C","last_name":"Justus"},{"name":"N Mccoll","name_last_first":"Mccoll, N","first_name":"N","last_name":"Mccoll"},{"name":"SD Mullin","name_last_first":"Mullin, SD","first_name":"SD","last_name":"Mullin"},{"name":"J Richman","name_last_first":"Richman, J","first_name":"J","last_name":"Richman"},{"name":"D Stuart","name_last_first":"Stuart, D","first_name":"D","last_name":"Stuart"},{"name":"W To","name_last_first":"To, W","first_name":"W","last_name":"To"},{"name":"C West","name_last_first":"West, C","first_name":"C","last_name":"West"},{"name":"J Yoo","name_last_first":"Yoo, J","first_name":"J","last_name":"Yoo"},{"name":"A Apresyan","name_last_first":"Apresyan, A","first_name":"A","last_name":"Apresyan"},{"name":"A Bornheim","name_last_first":"Bornheim, A","first_name":"A","last_name":"Bornheim"},{"name":"J Bunn","name_last_first":"Bunn, J","first_name":"J","last_name":"Bunn"},{"name":"Y Chen","name_last_first":"Chen, Y","first_name":"Y","last_name":"Chen"},{"name":"J Duarte","name_last_first":"Duarte, J","first_name":"J","last_name":"Duarte"},{"name":"A Mott","name_last_first":"Mott, A","first_name":"A","last_name":"Mott"},{"name":"HB Newman","name_last_first":"Newman, HB","first_name":"HB","last_name":"Newman"},{"name":"C Pena","name_last_first":"Pena, C","first_name":"C","last_name":"Pena"},{"name":"M Pierini","name_last_first":"Pierini, M","first_name":"M","last_name":"Pierini"},{"name":"M Spiropulu","name_last_first":"Spiropulu, M","first_name":"M","last_name":"Spiropulu"},{"name":"JR Vlimant","name_last_first":"Vlimant, JR","first_name":"JR","last_name":"Vlimant"},{"name":"R Wilkinson","name_last_first":"Wilkinson, R","first_name":"R","last_name":"Wilkinson"},{"name":"S Xie","name_last_first":"Xie, S","first_name":"S","last_name":"Xie"},{"name":"RY Zhu","name_last_first":"Zhu, RY","first_name":"RY","last_name":"Zhu"},{"name":"V Azzolini","name_last_first":"Azzolini, V","first_name":"V","last_name":"Azzolini"},{"name":"A Calamba","name_last_first":"Calamba, A","first_name":"A","last_name":"Calamba"},{"name":"B Carlson","name_last_first":"Carlson, B","first_name":"B","last_name":"Carlson"},{"name":"T Ferguson","name_last_first":"Ferguson, T","first_name":"T","last_name":"Ferguson"},{"name":"Y Iiyama","name_last_first":"Iiyama, Y","first_name":"Y","last_name":"Iiyama"},{"name":"M Paulini","name_last_first":"Paulini, M","first_name":"M","last_name":"Paulini"},{"name":"J Russ","name_last_first":"Russ, J","first_name":"J","last_name":"Russ"},{"name":"H Vogel","name_last_first":"Vogel, H","first_name":"H","last_name":"Vogel"},{"name":"I Vorobiev","name_last_first":"Vorobiev, I","first_name":"I","last_name":"Vorobiev"},{"name":"JP Cumalat","name_last_first":"Cumalat, JP","first_name":"JP","last_name":"Cumalat"},{"name":"WT Ford","name_last_first":"Ford, WT","first_name":"WT","last_name":"Ford"},{"name":"A Gaz","name_last_first":"Gaz, A","first_name":"A","last_name":"Gaz"},{"name":"M Krohn","name_last_first":"Krohn, M","first_name":"M","last_name":"Krohn"},{"name":"EL Lopez","name_last_first":"Lopez, EL","first_name":"EL","last_name":"Lopez"},{"name":"U Nauenberg","name_last_first":"Nauenberg, U","first_name":"U","last_name":"Nauenberg"},{"name":"JG Smith","name_last_first":"Smith, JG","first_name":"JG","last_name":"Smith"},{"name":"K Stenson","name_last_first":"Stenson, K","first_name":"K","last_name":"Stenson"},{"name":"SR Wagner","name_last_first":"Wagner, SR","first_name":"SR","last_name":"Wagner"},{"name":"J Alexander","name_last_first":"Alexander, J","first_name":"J","last_name":"Alexander"},{"name":"A Chatterjee","name_last_first":"Chatterjee, A","first_name":"A","last_name":"Chatterjee"},{"name":"J Chaves","name_last_first":"Chaves, J","first_name":"J","last_name":"Chaves"},{"name":"J Chu","name_last_first":"Chu, J","first_name":"J","last_name":"Chu"},{"name":"S Dittmer","name_last_first":"Dittmer, S","first_name":"S","last_name":"Dittmer"},{"name":"N Eggert","name_last_first":"Eggert, N","first_name":"N","last_name":"Eggert"},{"name":"N Mirman","name_last_first":"Mirman, N","first_name":"N","last_name":"Mirman"},{"name":"GN Kaufman","name_last_first":"Kaufman, GN","first_name":"GN","last_name":"Kaufman"},{"name":"JR Patterson","name_last_first":"Patterson, JR","first_name":"JR","last_name":"Patterson"},{"name":"A Ryd","name_last_first":"Ryd, A","first_name":"A","last_name":"Ryd"},{"name":"E Salvati","name_last_first":"Salvati, E","first_name":"E","last_name":"Salvati"},{"name":"L Skinnari","name_last_first":"Skinnari, L","first_name":"L","last_name":"Skinnari"},{"name":"W Sun","name_last_first":"Sun, W","first_name":"W","last_name":"Sun"},{"name":"WD Teo","name_last_first":"Teo, WD","first_name":"WD","last_name":"Teo"},{"name":"J Thom","name_last_first":"Thom, J","first_name":"J","last_name":"Thom"},{"name":"J Thompson","name_last_first":"Thompson, J","first_name":"J","last_name":"Thompson"},{"name":"J Tucker","name_last_first":"Tucker, J","first_name":"J","last_name":"Tucker"},{"name":"Y Weng","name_last_first":"Weng, Y","first_name":"Y","last_name":"Weng"},{"name":"L Winstrom","name_last_first":"Winstrom, L","first_name":"L","last_name":"Winstrom"},{"name":"P Wittich","name_last_first":"Wittich, P","first_name":"P","last_name":"Wittich"},{"name":"D Winn","name_last_first":"Winn, D","first_name":"D","last_name":"Winn"},{"name":"S Abdullin","name_last_first":"Abdullin, S","first_name":"S","last_name":"Abdullin"},{"name":"M Albrow","name_last_first":"Albrow, M","first_name":"M","last_name":"Albrow"},{"name":"J Anderson","name_last_first":"Anderson, J","first_name":"J","last_name":"Anderson"},{"name":"G Apollinari","name_last_first":"Apollinari, G","first_name":"G","last_name":"Apollinari"},{"name":"LAT Bauerdick","name_last_first":"Bauerdick, LAT","first_name":"LAT","last_name":"Bauerdick"},{"name":"A Beretvas","name_last_first":"Beretvas, A","first_name":"A","last_name":"Beretvas"},{"name":"J Berryhill","name_last_first":"Berryhill, J","first_name":"J","last_name":"Berryhill"},{"name":"PC Bhat","name_last_first":"Bhat, PC","first_name":"PC","last_name":"Bhat"},{"name":"G Bolla","name_last_first":"Bolla, G","first_name":"G","last_name":"Bolla"},{"name":"K Burkett","name_last_first":"Burkett, K","first_name":"K","last_name":"Burkett"},{"name":"JN Butler","name_last_first":"Butler, JN","first_name":"JN","last_name":"Butler"},{"name":"HWK Cheung","name_last_first":"Cheung, HWK","first_name":"HWK","last_name":"Cheung"},{"name":"F Chlebana","name_last_first":"Chlebana, F","first_name":"F","last_name":"Chlebana"},{"name":"S Cihangir","name_last_first":"Cihangir, S","first_name":"S","last_name":"Cihangir"},{"name":"VD Elvira","name_last_first":"Elvira, VD","first_name":"VD","last_name":"Elvira"},{"name":"I Fisk","name_last_first":"Fisk, I","first_name":"I","last_name":"Fisk"},{"name":"J Freeman","name_last_first":"Freeman, J","first_name":"J","last_name":"Freeman"},{"name":"E Gottschalk","name_last_first":"Gottschalk, E","first_name":"E","last_name":"Gottschalk"},{"name":"L Gray","name_last_first":"Gray, L","first_name":"L","last_name":"Gray"},{"name":"D Green","name_last_first":"Green, D","first_name":"D","last_name":"Green"},{"name":"S Grunendahl","name_last_first":"Grunendahl, S","first_name":"S","last_name":"Grunendahl"},{"name":"O Gutsche","name_last_first":"Gutsche, O","first_name":"O","last_name":"Gutsche"},{"name":"J Hanlon","name_last_first":"Hanlon, J","first_name":"J","last_name":"Hanlon"},{"name":"D Hare","name_last_first":"Hare, D","first_name":"D","last_name":"Hare"},{"name":"RM Harris","name_last_first":"Harris, RM","first_name":"RM","last_name":"Harris"},{"name":"J Hirschauer","name_last_first":"Hirschauer, J","first_name":"J","last_name":"Hirschauer"},{"name":"B Hooberman","name_last_first":"Hooberman, B","first_name":"B","last_name":"Hooberman"},{"name":"S Jindariani","name_last_first":"Jindariani, S","first_name":"S","last_name":"Jindariani"},{"name":"M Johnson","name_last_first":"Johnson, M","first_name":"M","last_name":"Johnson"},{"name":"U Joshi","name_last_first":"Joshi, U","first_name":"U","last_name":"Joshi"},{"name":"B Klima","name_last_first":"Klima, B","first_name":"B","last_name":"Klima"},{"name":"B Kreis","name_last_first":"Kreis, B","first_name":"B","last_name":"Kreis"},{"name":"S Kwan","name_last_first":"Kwan, S","first_name":"S","last_name":"Kwan"},{"name":"J Linacre","name_last_first":"Linacre, J","first_name":"J","last_name":"Linacre"},{"name":"D Lincoln","name_last_first":"Lincoln, D","first_name":"D","last_name":"Lincoln"},{"name":"R Lipton","name_last_first":"Lipton, R","first_name":"R","last_name":"Lipton"},{"name":"T Liu","name_last_first":"Liu, T","first_name":"T","last_name":"Liu"},{"name":"J Lykken","name_last_first":"Lykken, J","first_name":"J","last_name":"Lykken"},{"name":"K Maeshima","name_last_first":"Maeshima, K","first_name":"K","last_name":"Maeshima"},{"name":"JM Marraffino","name_last_first":"Marraffino, JM","first_name":"JM","last_name":"Marraffino"},{"name":"VIM Outschoorn","name_last_first":"Outschoorn, VIM","first_name":"VIM","last_name":"Outschoorn"},{"name":"S Maruyama","name_last_first":"Maruyama, S","first_name":"S","last_name":"Maruyama"},{"name":"D Mason","name_last_first":"Mason, D","first_name":"D","last_name":"Mason"},{"name":"P McBride","name_last_first":"McBride, P","first_name":"P","last_name":"McBride"},{"name":"P Merkel","name_last_first":"Merkel, P","first_name":"P","last_name":"Merkel"},{"name":"K Mishra","name_last_first":"Mishra, K","first_name":"K","last_name":"Mishra"},{"name":"S Mrenna","name_last_first":"Mrenna, S","first_name":"S","last_name":"Mrenna"},{"name":"S Nahn","name_last_first":"Nahn, S","first_name":"S","last_name":"Nahn"},{"name":"C Newman-Holmes","name_last_first":"Newman-Holmes, C","first_name":"C","last_name":"Newman-Holmes"},{"name":"V O'Dell","name_last_first":"O'Dell, V","first_name":"V","last_name":"O'Dell"},{"name":"O Prokofyev","name_last_first":"Prokofyev, O","first_name":"O","last_name":"Prokofyev"},{"name":"E Sexton-Kennedy","name_last_first":"Sexton-Kennedy, E","first_name":"E","last_name":"Sexton-Kennedy"},{"name":"A Soha","name_last_first":"Soha, A","first_name":"A","last_name":"Soha"},{"name":"WJ Spalding","name_last_first":"Spalding, WJ","first_name":"WJ","last_name":"Spalding"},{"name":"L Spiegel","name_last_first":"Spiegel, L","first_name":"L","last_name":"Spiegel"},{"name":"L Taylor","name_last_first":"Taylor, L","first_name":"L","last_name":"Taylor"},{"name":"S Tkaczyk","name_last_first":"Tkaczyk, S","first_name":"S","last_name":"Tkaczyk"},{"name":"NV Tran","name_last_first":"Tran, NV","first_name":"NV","last_name":"Tran"},{"name":"L Uplegger","name_last_first":"Uplegger, L","first_name":"L","last_name":"Uplegger"},{"name":"EW Vaandering","name_last_first":"Vaandering, EW","first_name":"EW","last_name":"Vaandering"},{"name":"R Vidal","name_last_first":"Vidal, R","first_name":"R","last_name":"Vidal"},{"name":"A Whitbeck","name_last_first":"Whitbeck, A","first_name":"A","last_name":"Whitbeck"},{"name":"J Whitmore","name_last_first":"Whitmore, J","first_name":"J","last_name":"Whitmore"},{"name":"F Yang","name_last_first":"Yang, F","first_name":"F","last_name":"Yang"},{"name":"D Acosta","name_last_first":"Acosta, D","first_name":"D","last_name":"Acosta"},{"name":"P Avery","name_last_first":"Avery, P","first_name":"P","last_name":"Avery"},{"name":"P Bortignon","name_last_first":"Bortignon, P","first_name":"P","last_name":"Bortignon"},{"name":"D Bourilkov","name_last_first":"Bourilkov, D","first_name":"D","last_name":"Bourilkov"},{"name":"M Carver","name_last_first":"Carver, M","first_name":"M","last_name":"Carver"},{"name":"D Curry","name_last_first":"Curry, D","first_name":"D","last_name":"Curry"},{"name":"S Das","name_last_first":"Das, S","first_name":"S","last_name":"Das"},{"name":"M De Gruttola","name_last_first":"De Gruttola, M","first_name":"M","last_name":"De Gruttola"},{"name":"GP Di Giovanni","name_last_first":"Di Giovanni, GP","first_name":"GP","last_name":"Di Giovanni"},{"name":"RD Field","name_last_first":"Field, RD","first_name":"RD","last_name":"Field"},{"name":"M Fisher","name_last_first":"Fisher, M","first_name":"M","last_name":"Fisher"},{"name":"IK Furic","name_last_first":"Furic, IK","first_name":"IK","last_name":"Furic"},{"name":"J Hugon","name_last_first":"Hugon, J","first_name":"J","last_name":"Hugon"},{"name":"J Konigsberg","name_last_first":"Konigsberg, J","first_name":"J","last_name":"Konigsberg"},{"name":"A Korytov","name_last_first":"Korytov, A","first_name":"A","last_name":"Korytov"},{"name":"T Kypreos","name_last_first":"Kypreos, T","first_name":"T","last_name":"Kypreos"},{"name":"JF Low","name_last_first":"Low, JF","first_name":"JF","last_name":"Low"},{"name":"K Matchev","name_last_first":"Matchev, K","first_name":"K","last_name":"Matchev"},{"name":"H Mei","name_last_first":"Mei, H","first_name":"H","last_name":"Mei"},{"name":"P Milenovic","name_last_first":"Milenovic, P","first_name":"P","last_name":"Milenovic"},{"name":"G Mitselmakher","name_last_first":"Mitselmakher, G","first_name":"G","last_name":"Mitselmakher"},{"name":"L Muniz","name_last_first":"Muniz, L","first_name":"L","last_name":"Muniz"},{"name":"A Rinkevicius","name_last_first":"Rinkevicius, A","first_name":"A","last_name":"Rinkevicius"},{"name":"L Shchutska","name_last_first":"Shchutska, L","first_name":"L","last_name":"Shchutska"},{"name":"M Snowball","name_last_first":"Snowball, M","first_name":"M","last_name":"Snowball"},{"name":"D Sperka","name_last_first":"Sperka, D","first_name":"D","last_name":"Sperka"},{"name":"J Yelton","name_last_first":"Yelton, J","first_name":"J","last_name":"Yelton"},{"name":"M Zakaria","name_last_first":"Zakaria, M","first_name":"M","last_name":"Zakaria"},{"name":"S Hewamanage","name_last_first":"Hewamanage, S","first_name":"S","last_name":"Hewamanage"},{"name":"S Linn","name_last_first":"Linn, S","first_name":"S","last_name":"Linn"},{"name":"P Markowitz","name_last_first":"Markowitz, P","first_name":"P","last_name":"Markowitz"},{"name":"G Martinez","name_last_first":"Martinez, G","first_name":"G","last_name":"Martinez"},{"name":"JL Rodriguez","name_last_first":"Rodriguez, JL","first_name":"JL","last_name":"Rodriguez"},{"name":"JR Adams","name_last_first":"Adams, JR","first_name":"JR","last_name":"Adams"},{"name":"T Adams","name_last_first":"Adams, T","first_name":"T","last_name":"Adams"},{"name":"A Askew","name_last_first":"Askew, A","first_name":"A","last_name":"Askew"},{"name":"J Bochenek","name_last_first":"Bochenek, J","first_name":"J","last_name":"Bochenek"},{"name":"B Diamond","name_last_first":"Diamond, B","first_name":"B","last_name":"Diamond"},{"name":"J Haas","name_last_first":"Haas, J","first_name":"J","last_name":"Haas"},{"name":"S Hagopian","name_last_first":"Hagopian, S","first_name":"S","last_name":"Hagopian"},{"name":"V Hagopian","name_last_first":"Hagopian, V","first_name":"V","last_name":"Hagopian"},{"name":"KF Johnson","name_last_first":"Johnson, KF","first_name":"KF","last_name":"Johnson"},{"name":"H Prosper","name_last_first":"Prosper, H","first_name":"H","last_name":"Prosper"},{"name":"V Veeraraghavan","name_last_first":"Veeraraghavan, V","first_name":"V","last_name":"Veeraraghavan"},{"name":"M Weinberg","name_last_first":"Weinberg, M","first_name":"M","last_name":"Weinberg"},{"name":"MM Baarmand","name_last_first":"Baarmand, MM","first_name":"MM","last_name":"Baarmand"},{"name":"M Hohlmann","name_last_first":"Hohlmann, M","first_name":"M","last_name":"Hohlmann"},{"name":"H Kalakhety","name_last_first":"Kalakhety, H","first_name":"H","last_name":"Kalakhety"},{"name":"F Yumiceva","name_last_first":"Yumiceva, F","first_name":"F","last_name":"Yumiceva"},{"name":"MR Adams","name_last_first":"Adams, MR","first_name":"MR","last_name":"Adams"},{"name":"L Apanasevich","name_last_first":"Apanasevich, L","first_name":"L","last_name":"Apanasevich"},{"name":"D Berry","name_last_first":"Berry, D","first_name":"D","last_name":"Berry"},{"name":"RR Betts","name_last_first":"Betts, RR","first_name":"RR","last_name":"Betts"},{"name":"I Bucinskaite","name_last_first":"Bucinskaite, I","first_name":"I","last_name":"Bucinskaite"},{"name":"R Cavanaugh","name_last_first":"Cavanaugh, R","first_name":"R","last_name":"Cavanaugh"},{"name":"O Evdokimov","name_last_first":"Evdokimov, O","first_name":"O","last_name":"Evdokimov"},{"name":"L Gauthier","name_last_first":"Gauthier, L","first_name":"L","last_name":"Gauthier"},{"name":"CE Gerber","name_last_first":"Gerber, CE","first_name":"CE","last_name":"Gerber"},{"name":"DJ Hofman","name_last_first":"Hofman, DJ","first_name":"DJ","last_name":"Hofman"},{"name":"P Kurt","name_last_first":"Kurt, P","first_name":"P","last_name":"Kurt"},{"name":"C O'Brien","name_last_first":"O'Brien, C","first_name":"C","last_name":"O'Brien"},{"name":"IDS Gonzalez","name_last_first":"Gonzalez, IDS","first_name":"IDS","last_name":"Gonzalez"},{"name":"C Silkworth","name_last_first":"Silkworth, C","first_name":"C","last_name":"Silkworth"},{"name":"P Turner","name_last_first":"Turner, P","first_name":"P","last_name":"Turner"},{"name":"N Varelas","name_last_first":"Varelas, N","first_name":"N","last_name":"Varelas"},{"name":"B Bilki","name_last_first":"Bilki, B","first_name":"B","last_name":"Bilki"},{"name":"W Clarida","name_last_first":"Clarida, W","first_name":"W","last_name":"Clarida"},{"name":"K Dilsiz","name_last_first":"Dilsiz, K","first_name":"K","last_name":"Dilsiz"},{"name":"M Haytmyradov","name_last_first":"Haytmyradov, M","first_name":"M","last_name":"Haytmyradov"},{"name":"JP Merlo","name_last_first":"Merlo, JP","first_name":"JP","last_name":"Merlo"},{"name":"H Mermerkaya","name_last_first":"Mermerkaya, H","first_name":"H","last_name":"Mermerkaya"},{"name":"A Mestvirishvili","name_last_first":"Mestvirishvili, A","first_name":"A","last_name":"Mestvirishvili"},{"name":"A Moeller","name_last_first":"Moeller, A","first_name":"A","last_name":"Moeller"},{"name":"J Nachtman","name_last_first":"Nachtman, J","first_name":"J","last_name":"Nachtman"},{"name":"H Ogul","name_last_first":"Ogul, H","first_name":"H","last_name":"Ogul"},{"name":"Y Onel","name_last_first":"Onel, Y","first_name":"Y","last_name":"Onel"},{"name":"F Ozok","name_last_first":"Ozok, F","first_name":"F","last_name":"Ozok"},{"name":"A Penzo","name_last_first":"Penzo, A","first_name":"A","last_name":"Penzo"},{"name":"R Rahmat","name_last_first":"Rahmat, R","first_name":"R","last_name":"Rahmat"},{"name":"S Sen","name_last_first":"Sen, S","first_name":"S","last_name":"Sen"},{"name":"P Tan","name_last_first":"Tan, P","first_name":"P","last_name":"Tan"},{"name":"E Tiras","name_last_first":"Tiras, E","first_name":"E","last_name":"Tiras"},{"name":"J Wetzel","name_last_first":"Wetzel, J","first_name":"J","last_name":"Wetzel"},{"name":"K Yi","name_last_first":"Yi, K","first_name":"K","last_name":"Yi"},{"name":"I Anderson","name_last_first":"Anderson, I","first_name":"I","last_name":"Anderson"},{"name":"BA Barnett","name_last_first":"Barnett, BA","first_name":"BA","last_name":"Barnett"},{"name":"B Blumenfeld","name_last_first":"Blumenfeld, B","first_name":"B","last_name":"Blumenfeld"},{"name":"S Bolognesi","name_last_first":"Bolognesi, S","first_name":"S","last_name":"Bolognesi"},{"name":"D Fehling","name_last_first":"Fehling, D","first_name":"D","last_name":"Fehling"},{"name":"AV Gritsan","name_last_first":"Gritsan, AV","first_name":"AV","last_name":"Gritsan"},{"name":"P Maksimovic","name_last_first":"Maksimovic, P","first_name":"P","last_name":"Maksimovic"},{"name":"C Martin","name_last_first":"Martin, C","first_name":"C","last_name":"Martin"},{"name":"M Swartz","name_last_first":"Swartz, M","first_name":"M","last_name":"Swartz"},{"name":"M Xiao","name_last_first":"Xiao, M","first_name":"M","last_name":"Xiao"},{"name":"P Baringer","name_last_first":"Baringer, P","first_name":"P","last_name":"Baringer"},{"name":"A Bean","name_last_first":"Bean, A","first_name":"A","last_name":"Bean"},{"name":"G Benelli","name_last_first":"Benelli, G","first_name":"G","last_name":"Benelli"},{"name":"C Bruner","name_last_first":"Bruner, C","first_name":"C","last_name":"Bruner"},{"name":"J Gray","name_last_first":"Gray, J","first_name":"J","last_name":"Gray"},{"name":"RP Kenny","name_last_first":"Kenny, RP","first_name":"RP","last_name":"Kenny"},{"name":"D Majumder","name_last_first":"Majumder, D","first_name":"D","last_name":"Majumder"},{"name":"M Malek","name_last_first":"Malek, M","first_name":"M","last_name":"Malek"},{"name":"M Murray","name_last_first":"Murray, M","first_name":"M","last_name":"Murray"},{"name":"D Noonan","name_last_first":"Noonan, D","first_name":"D","last_name":"Noonan"},{"name":"S Sanders","name_last_first":"Sanders, S","first_name":"S","last_name":"Sanders"},{"name":"J Sekaric","name_last_first":"Sekaric, J","first_name":"J","last_name":"Sekaric"},{"name":"R Stringer","name_last_first":"Stringer, R","first_name":"R","last_name":"Stringer"},{"name":"Q Wang","name_last_first":"Wang, Q","first_name":"Q","last_name":"Wang"},{"name":"JS Wood","name_last_first":"Wood, JS","first_name":"JS","last_name":"Wood"},{"name":"I Chakaberia","name_last_first":"Chakaberia, I","first_name":"I","last_name":"Chakaberia"},{"name":"A Ivanov","name_last_first":"Ivanov, A","first_name":"A","last_name":"Ivanov"},{"name":"K Kaadze","name_last_first":"Kaadze, K","first_name":"K","last_name":"Kaadze"},{"name":"S Khalil","name_last_first":"Khalil, S","first_name":"S","last_name":"Khalil"},{"name":"M Makouski","name_last_first":"Makouski, M","first_name":"M","last_name":"Makouski"},{"name":"Y Maravin","name_last_first":"Maravin, Y","first_name":"Y","last_name":"Maravin"},{"name":"LK Saini","name_last_first":"Saini, LK","first_name":"LK","last_name":"Saini"},{"name":"N Skhirtladze","name_last_first":"Skhirtladze, N","first_name":"N","last_name":"Skhirtladze"},{"name":"I Svintradze","name_last_first":"Svintradze, I","first_name":"I","last_name":"Svintradze"},{"name":"J Gronberg","name_last_first":"Gronberg, J","first_name":"J","last_name":"Gronberg"},{"name":"D Lange","name_last_first":"Lange, D","first_name":"D","last_name":"Lange"},{"name":"F Rebassoo","name_last_first":"Rebassoo, F","first_name":"F","last_name":"Rebassoo"},{"name":"D Wright","name_last_first":"Wright, D","first_name":"D","last_name":"Wright"},{"name":"A Baden","name_last_first":"Baden, A","first_name":"A","last_name":"Baden"},{"name":"A Belloni","name_last_first":"Belloni, A","first_name":"A","last_name":"Belloni"},{"name":"B Calvert","name_last_first":"Calvert, B","first_name":"B","last_name":"Calvert"},{"name":"SC Eno","name_last_first":"Eno, SC","first_name":"SC","last_name":"Eno"},{"name":"JA Gomez","name_last_first":"Gomez, JA","first_name":"JA","last_name":"Gomez"},{"name":"NJ Hadley","name_last_first":"Hadley, NJ","first_name":"NJ","last_name":"Hadley"},{"name":"S Jabeen","name_last_first":"Jabeen, S","first_name":"S","last_name":"Jabeen"},{"name":"RG Kellogg","name_last_first":"Kellogg, RG","first_name":"RG","last_name":"Kellogg"},{"name":"T Kolberg","name_last_first":"Kolberg, T","first_name":"T","last_name":"Kolberg"},{"name":"Y Lu","name_last_first":"Lu, Y","first_name":"Y","last_name":"Lu"},{"name":"AC Mignerey","name_last_first":"Mignerey, AC","first_name":"AC","last_name":"Mignerey"},{"name":"K Pedro","name_last_first":"Pedro, K","first_name":"K","last_name":"Pedro"},{"name":"A Skuja","name_last_first":"Skuja, A","first_name":"A","last_name":"Skuja"},{"name":"MB Tonjes","name_last_first":"Tonjes, MB","first_name":"MB","last_name":"Tonjes"},{"name":"SC Tonwar","name_last_first":"Tonwar, SC","first_name":"SC","last_name":"Tonwar"},{"name":"A Apyan","name_last_first":"Apyan, A","first_name":"A","last_name":"Apyan"},{"name":"R Barbieri","name_last_first":"Barbieri, R","first_name":"R","last_name":"Barbieri"},{"name":"K Bierwagen","name_last_first":"Bierwagen, K","first_name":"K","last_name":"Bierwagen"},{"name":"W Busza","name_last_first":"Busza, W","first_name":"W","last_name":"Busza"},{"name":"IA Cali","name_last_first":"Cali, IA","first_name":"IA","last_name":"Cali"},{"name":"L Di Matteo","name_last_first":"Di Matteo, L","first_name":"L","last_name":"Di Matteo"},{"name":"GG Ceballos","name_last_first":"Ceballos, GG","first_name":"GG","last_name":"Ceballos"},{"name":"M Goncharov","name_last_first":"Goncharov, M","first_name":"M","last_name":"Goncharov"},{"name":"D Gulhan","name_last_first":"Gulhan, D","first_name":"D","last_name":"Gulhan"},{"name":"M Klute","name_last_first":"Klute, M","first_name":"M","last_name":"Klute"},{"name":"YS Lai","name_last_first":"Lai, YS","first_name":"YS","last_name":"Lai"},{"name":"YJ Lee","name_last_first":"Lee, YJ","first_name":"YJ","last_name":"Lee"},{"name":"A Levin","name_last_first":"Levin, A","first_name":"A","last_name":"Levin"},{"name":"PD Luckey","name_last_first":"Luckey, PD","first_name":"PD","last_name":"Luckey"},{"name":"C Paus","name_last_first":"Paus, C","first_name":"C","last_name":"Paus"},{"name":"D Ralph","name_last_first":"Ralph, D","first_name":"D","last_name":"Ralph"},{"name":"C Roland","name_last_first":"Roland, C","first_name":"C","last_name":"Roland"},{"name":"G Roland","name_last_first":"Roland, G","first_name":"G","last_name":"Roland"},{"name":"GSF Stephans","name_last_first":"Stephans, GSF","first_name":"GSF","last_name":"Stephans"},{"name":"K Sumorok","name_last_first":"Sumorok, K","first_name":"K","last_name":"Sumorok"},{"name":"D Velicanu","name_last_first":"Velicanu, D","first_name":"D","last_name":"Velicanu"},{"name":"J Veverka","name_last_first":"Veverka, J","first_name":"J","last_name":"Veverka"},{"name":"B Wyslouch","name_last_first":"Wyslouch, B","first_name":"B","last_name":"Wyslouch"},{"name":"M Yang","name_last_first":"Yang, M","first_name":"M","last_name":"Yang"},{"name":"M Zanetti","name_last_first":"Zanetti, M","first_name":"M","last_name":"Zanetti"},{"name":"V Zhukova","name_last_first":"Zhukova, V","first_name":"V","last_name":"Zhukova"},{"name":"B Dahmes","name_last_first":"Dahmes, B","first_name":"B","last_name":"Dahmes"},{"name":"A Gude","name_last_first":"Gude, A","first_name":"A","last_name":"Gude"},{"name":"SC Kao","name_last_first":"Kao, SC","first_name":"SC","last_name":"Kao"},{"name":"K Klapoetke","name_last_first":"Klapoetke, K","first_name":"K","last_name":"Klapoetke"},{"name":"Y Kubota","name_last_first":"Kubota, Y","first_name":"Y","last_name":"Kubota"},{"name":"J Mans","name_last_first":"Mans, J","first_name":"J","last_name":"Mans"},{"name":"S Nourbakhsh","name_last_first":"Nourbakhsh, S","first_name":"S","last_name":"Nourbakhsh"},{"name":"R Rusack","name_last_first":"Rusack, R","first_name":"R","last_name":"Rusack"},{"name":"A Singovsky","name_last_first":"Singovsky, A","first_name":"A","last_name":"Singovsky"},{"name":"N Tambe","name_last_first":"Tambe, N","first_name":"N","last_name":"Tambe"},{"name":"J Turkewitz","name_last_first":"Turkewitz, J","first_name":"J","last_name":"Turkewitz"},{"name":"JG Acosta","name_last_first":"Acosta, JG","first_name":"JG","last_name":"Acosta"},{"name":"S Oliveros","name_last_first":"Oliveros, S","first_name":"S","last_name":"Oliveros"},{"name":"E Avdeeva","name_last_first":"Avdeeva, E","first_name":"E","last_name":"Avdeeva"},{"name":"K Bloom","name_last_first":"Bloom, K","first_name":"K","last_name":"Bloom"},{"name":"S Bose","name_last_first":"Bose, S","first_name":"S","last_name":"Bose"},{"name":"DR Claes","name_last_first":"Claes, DR","first_name":"DR","last_name":"Claes"},{"name":"A Dominguez","name_last_first":"Dominguez, A","first_name":"A","last_name":"Dominguez"},{"name":"RG Suarez","name_last_first":"Suarez, RG","first_name":"RG","last_name":"Suarez"},{"name":"J Keller","name_last_first":"Keller, J","first_name":"J","last_name":"Keller"},{"name":"D Knowlton","name_last_first":"Knowlton, D","first_name":"D","last_name":"Knowlton"},{"name":"I Kravchenko","name_last_first":"Kravchenko, I","first_name":"I","last_name":"Kravchenko"},{"name":"J Lazo-Flores","name_last_first":"Lazo-Flores, J","first_name":"J","last_name":"Lazo-Flores"},{"name":"F Meier","name_last_first":"Meier, F","first_name":"F","last_name":"Meier"},{"name":"F Ratnikov","name_last_first":"Ratnikov, F","first_name":"F","last_name":"Ratnikov"},{"name":"GR Snow","name_last_first":"Snow, GR","first_name":"GR","last_name":"Snow"},{"name":"M Zvada","name_last_first":"Zvada, M","first_name":"M","last_name":"Zvada"},{"name":"G Alverson","name_last_first":"Alverson, G","first_name":"G","last_name":"Alverson"},{"name":"E Barberis","name_last_first":"Barberis, E","first_name":"E","last_name":"Barberis"},{"name":"D Baumgartel","name_last_first":"Baumgartel, D","first_name":"D","last_name":"Baumgartel"},{"name":"M Chasco","name_last_first":"Chasco, M","first_name":"M","last_name":"Chasco"},{"name":"A Massironi","name_last_first":"Massironi, A","first_name":"A","last_name":"Massironi"},{"name":"DM Morse","name_last_first":"Morse, DM","first_name":"DM","last_name":"Morse"},{"name":"D Nash","name_last_first":"Nash, D","first_name":"D","last_name":"Nash"},{"name":"T Orimoto","name_last_first":"Orimoto, T","first_name":"T","last_name":"Orimoto"},{"name":"D Trocino","name_last_first":"Trocino, D","first_name":"D","last_name":"Trocino"},{"name":"RJ Wang","name_last_first":"Wang, RJ","first_name":"RJ","last_name":"Wang"},{"name":"D Wood","name_last_first":"Wood, D","first_name":"D","last_name":"Wood"},{"name":"J Zhang","name_last_first":"Zhang, J","first_name":"J","last_name":"Zhang"},{"name":"KA Hahn","name_last_first":"Hahn, KA","first_name":"KA","last_name":"Hahn"},{"name":"A Kubik","name_last_first":"Kubik, A","first_name":"A","last_name":"Kubik"},{"name":"N Mucia","name_last_first":"Mucia, N","first_name":"N","last_name":"Mucia"},{"name":"N Odell","name_last_first":"Odell, N","first_name":"N","last_name":"Odell"},{"name":"B Pollack","name_last_first":"Pollack, B","first_name":"B","last_name":"Pollack"},{"name":"A Pozdnyakov","name_last_first":"Pozdnyakov, A","first_name":"A","last_name":"Pozdnyakov"},{"name":"M Schmitt","name_last_first":"Schmitt, M","first_name":"M","last_name":"Schmitt"},{"name":"S Stoynev","name_last_first":"Stoynev, S","first_name":"S","last_name":"Stoynev"},{"name":"K Sung","name_last_first":"Sung, K","first_name":"K","last_name":"Sung"},{"name":"M Velasco","name_last_first":"Velasco, M","first_name":"M","last_name":"Velasco"},{"name":"S Won","name_last_first":"Won, S","first_name":"S","last_name":"Won"},{"name":"A Brinkerhoff","name_last_first":"Brinkerhoff, A","first_name":"A","last_name":"Brinkerhoff"},{"name":"KM Chan","name_last_first":"Chan, KM","first_name":"KM","last_name":"Chan"},{"name":"A Drozdetskiy","name_last_first":"Drozdetskiy, A","first_name":"A","last_name":"Drozdetskiy"},{"name":"M Hildreth","name_last_first":"Hildreth, M","first_name":"M","last_name":"Hildreth"},{"name":"C Jessop","name_last_first":"Jessop, C","first_name":"C","last_name":"Jessop"},{"name":"DJ Karmgard","name_last_first":"Karmgard, DJ","first_name":"DJ","last_name":"Karmgard"},{"name":"N Kellams","name_last_first":"Kellams, N","first_name":"N","last_name":"Kellams"},{"name":"K Lannon","name_last_first":"Lannon, K","first_name":"K","last_name":"Lannon"},{"name":"S Lynch","name_last_first":"Lynch, S","first_name":"S","last_name":"Lynch"},{"name":"N Marinelli","name_last_first":"Marinelli, N","first_name":"N","last_name":"Marinelli"},{"name":"Y Musienko","name_last_first":"Musienko, Y","first_name":"Y","last_name":"Musienko"},{"name":"T Pearson","name_last_first":"Pearson, T","first_name":"T","last_name":"Pearson"},{"name":"M Planer","name_last_first":"Planer, M","first_name":"M","last_name":"Planer"},{"name":"R Ruchti","name_last_first":"Ruchti, R","first_name":"R","last_name":"Ruchti"},{"name":"G Smith","name_last_first":"Smith, G","first_name":"G","last_name":"Smith"},{"name":"N Valls","name_last_first":"Valls, N","first_name":"N","last_name":"Valls"},{"name":"M Wayne","name_last_first":"Wayne, M","first_name":"M","last_name":"Wayne"},{"name":"M Wolf","name_last_first":"Wolf, M","first_name":"M","last_name":"Wolf"},{"name":"A Woodard","name_last_first":"Woodard, A","first_name":"A","last_name":"Woodard"},{"name":"L Antonelli","name_last_first":"Antonelli, L","first_name":"L","last_name":"Antonelli"},{"name":"J Brinson","name_last_first":"Brinson, J","first_name":"J","last_name":"Brinson"},{"name":"B Bylsma","name_last_first":"Bylsma, B","first_name":"B","last_name":"Bylsma"},{"name":"LS Durkin","name_last_first":"Durkin, LS","first_name":"LS","last_name":"Durkin"},{"name":"S Flowers","name_last_first":"Flowers, S","first_name":"S","last_name":"Flowers"},{"name":"A Hart","name_last_first":"Hart, A","first_name":"A","last_name":"Hart"},{"name":"C Hill","name_last_first":"Hill, C","first_name":"C","last_name":"Hill"},{"name":"R Hughes","name_last_first":"Hughes, R","first_name":"R","last_name":"Hughes"},{"name":"K Kotov","name_last_first":"Kotov, K","first_name":"K","last_name":"Kotov"},{"name":"TY Ling","name_last_first":"Ling, TY","first_name":"TY","last_name":"Ling"},{"name":"W Luo","name_last_first":"Luo, W","first_name":"W","last_name":"Luo"},{"name":"D Puigh","name_last_first":"Puigh, D","first_name":"D","last_name":"Puigh"},{"name":"M Rodenburg","name_last_first":"Rodenburg, M","first_name":"M","last_name":"Rodenburg"},{"name":"BL Winer","name_last_first":"Winer, BL","first_name":"BL","last_name":"Winer"},{"name":"H Wolfe","name_last_first":"Wolfe, H","first_name":"H","last_name":"Wolfe"},{"name":"HW Wulsin","name_last_first":"Wulsin, HW","first_name":"HW","last_name":"Wulsin"},{"name":"O Driga","name_last_first":"Driga, O","first_name":"O","last_name":"Driga"},{"name":"P Elmer","name_last_first":"Elmer, P","first_name":"P","last_name":"Elmer"},{"name":"J Hardenbrook","name_last_first":"Hardenbrook, J","first_name":"J","last_name":"Hardenbrook"},{"name":"P Hebda","name_last_first":"Hebda, P","first_name":"P","last_name":"Hebda"},{"name":"SA Koay","name_last_first":"Koay, SA","first_name":"SA","last_name":"Koay"},{"name":"P Lujan","name_last_first":"Lujan, P","first_name":"P","last_name":"Lujan"},{"name":"D Marlow","name_last_first":"Marlow, D","first_name":"D","last_name":"Marlow"},{"name":"T Medvedeva","name_last_first":"Medvedeva, T","first_name":"T","last_name":"Medvedeva"},{"name":"M Mooney","name_last_first":"Mooney, M","first_name":"M","last_name":"Mooney"},{"name":"J Olsen","name_last_first":"Olsen, J","first_name":"J","last_name":"Olsen"},{"name":"P Piroue","name_last_first":"Piroue, P","first_name":"P","last_name":"Piroue"},{"name":"X Quan","name_last_first":"Quan, X","first_name":"X","last_name":"Quan"},{"name":"H Saka","name_last_first":"Saka, H","first_name":"H","last_name":"Saka"},{"name":"D Stickland","name_last_first":"Stickland, D","first_name":"D","last_name":"Stickland"},{"name":"C Tully","name_last_first":"Tully, C","first_name":"C","last_name":"Tully"},{"name":"JS Werner","name_last_first":"Werner, JS","first_name":"JS","last_name":"Werner"},{"name":"A Zuranski","name_last_first":"Zuranski, A","first_name":"A","last_name":"Zuranski"},{"name":"E Brownson","name_last_first":"Brownson, E","first_name":"E","last_name":"Brownson"},{"name":"S Malik","name_last_first":"Malik, S","first_name":"S","last_name":"Malik"},{"name":"H Mendez","name_last_first":"Mendez, H","first_name":"H","last_name":"Mendez"},{"name":"JER Vargas","name_last_first":"Vargas, JER","first_name":"JER","last_name":"Vargas"},{"name":"VE Barnes","name_last_first":"Barnes, VE","first_name":"VE","last_name":"Barnes"},{"name":"D Benedetti","name_last_first":"Benedetti, D","first_name":"D","last_name":"Benedetti"},{"name":"D Bortoletto","name_last_first":"Bortoletto, D","first_name":"D","last_name":"Bortoletto"},{"name":"M De Mattia","name_last_first":"De Mattia, M","first_name":"M","last_name":"De Mattia"},{"name":"L Gutay","name_last_first":"Gutay, L","first_name":"L","last_name":"Gutay"},{"name":"Z Hu","name_last_first":"Hu, Z","first_name":"Z","last_name":"Hu"},{"name":"MK Jha","name_last_first":"Jha, MK","first_name":"MK","last_name":"Jha"},{"name":"M Jones","name_last_first":"Jones, M","first_name":"M","last_name":"Jones"},{"name":"K Jung","name_last_first":"Jung, K","first_name":"K","last_name":"Jung"},{"name":"M Kress","name_last_first":"Kress, M","first_name":"M","last_name":"Kress"},{"name":"N Leonardo","name_last_first":"Leonardo, N","first_name":"N","last_name":"Leonardo"},{"name":"DH Miller","name_last_first":"Miller, DH","first_name":"DH","last_name":"Miller"},{"name":"N Neumeister","name_last_first":"Neumeister, N","first_name":"N","last_name":"Neumeister"},{"name":"F Primavera","name_last_first":"Primavera, F","first_name":"F","last_name":"Primavera"},{"name":"BC Radburn-Smith","name_last_first":"Radburn-Smith, BC","first_name":"BC","last_name":"Radburn-Smith"},{"name":"X Shi","name_last_first":"Shi, X","first_name":"X","last_name":"Shi"},{"name":"I Shipsey","name_last_first":"Shipsey, I","first_name":"I","last_name":"Shipsey"},{"name":"D Silvers","name_last_first":"Silvers, D","first_name":"D","last_name":"Silvers"},{"name":"A Svyatkovskiy","name_last_first":"Svyatkovskiy, A","first_name":"A","last_name":"Svyatkovskiy"},{"name":"F Wang","name_last_first":"Wang, F","first_name":"F","last_name":"Wang"},{"name":"W Xie","name_last_first":"Xie, W","first_name":"W","last_name":"Xie"},{"name":"L Xu","name_last_first":"Xu, L","first_name":"L","last_name":"Xu"},{"name":"J Zablocki","name_last_first":"Zablocki, J","first_name":"J","last_name":"Zablocki"},{"name":"N Parashar","name_last_first":"Parashar, N","first_name":"N","last_name":"Parashar"},{"name":"J Stupak","name_last_first":"Stupak, J","first_name":"J","last_name":"Stupak"},{"name":"A Adair","name_last_first":"Adair, A","first_name":"A","last_name":"Adair"},{"name":"B Akgun","name_last_first":"Akgun, B","first_name":"B","last_name":"Akgun"},{"name":"KM Ecklund","name_last_first":"Ecklund, KM","first_name":"KM","last_name":"Ecklund"},{"name":"FJM Geurts","name_last_first":"Geurts, FJM","first_name":"FJM","last_name":"Geurts"},{"name":"W Li","name_last_first":"Li, W","first_name":"W","last_name":"Li"},{"name":"B Michlin","name_last_first":"Michlin, B","first_name":"B","last_name":"Michlin"},{"name":"BP Padley","name_last_first":"Padley, BP","first_name":"BP","last_name":"Padley"},{"name":"R Redjimi","name_last_first":"Redjimi, R","first_name":"R","last_name":"Redjimi"},{"name":"J Roberts","name_last_first":"Roberts, J","first_name":"J","last_name":"Roberts"},{"name":"J Zabel","name_last_first":"Zabel, J","first_name":"J","last_name":"Zabel"},{"name":"B Betchart","name_last_first":"Betchart, B","first_name":"B","last_name":"Betchart"},{"name":"A Bodek","name_last_first":"Bodek, A","first_name":"A","last_name":"Bodek"},{"name":"P de Barbaro","name_last_first":"de Barbaro, P","first_name":"P","last_name":"de Barbaro"},{"name":"R Demina","name_last_first":"Demina, R","first_name":"R","last_name":"Demina"},{"name":"Y Eshaq","name_last_first":"Eshaq, Y","first_name":"Y","last_name":"Eshaq"},{"name":"T Ferbel","name_last_first":"Ferbel, T","first_name":"T","last_name":"Ferbel"},{"name":"M Galanti","name_last_first":"Galanti, M","first_name":"M","last_name":"Galanti"},{"name":"A Garcia-Bellido","name_last_first":"Garcia-Bellido, A","first_name":"A","last_name":"Garcia-Bellido"},{"name":"P Goldenzweig","name_last_first":"Goldenzweig, P","first_name":"P","last_name":"Goldenzweig"},{"name":"J Han","name_last_first":"Han, J","first_name":"J","last_name":"Han"},{"name":"A Harel","name_last_first":"Harel, A","first_name":"A","last_name":"Harel"},{"name":"O Hindrichs","name_last_first":"Hindrichs, O","first_name":"O","last_name":"Hindrichs"},{"name":"A Khukhunaishvili","name_last_first":"Khukhunaishvili, A","first_name":"A","last_name":"Khukhunaishvili"},{"name":"S Korjenevski","name_last_first":"Korjenevski, S","first_name":"S","last_name":"Korjenevski"},{"name":"G Petrillo","name_last_first":"Petrillo, G","first_name":"G","last_name":"Petrillo"},{"name":"D Vishnevskiy","name_last_first":"Vishnevskiy, D","first_name":"D","last_name":"Vishnevskiy"},{"name":"R Ciesielski","name_last_first":"Ciesielski, R","first_name":"R","last_name":"Ciesielski"},{"name":"L Demortier","name_last_first":"Demortier, L","first_name":"L","last_name":"Demortier"},{"name":"K Goulianos","name_last_first":"Goulianos, K","first_name":"K","last_name":"Goulianos"},{"name":"C Mesropian","name_last_first":"Mesropian, C","first_name":"C","last_name":"Mesropian"},{"name":"S Arora","name_last_first":"Arora, S","first_name":"S","last_name":"Arora"},{"name":"A Barker","name_last_first":"Barker, A","first_name":"A","last_name":"Barker"},{"name":"JP Chou","name_last_first":"Chou, JP","first_name":"JP","last_name":"Chou"},{"name":"C Contreras-Campana","name_last_first":"Contreras-Campana, C","first_name":"C","last_name":"Contreras-Campana"},{"name":"E Contreras-Campana","name_last_first":"Contreras-Campana, E","first_name":"E","last_name":"Contreras-Campana"},{"name":"D Duggan","name_last_first":"Duggan, D","first_name":"D","last_name":"Duggan"},{"name":"D Ferencek","name_last_first":"Ferencek, D","first_name":"D","last_name":"Ferencek"},{"name":"Y Gershtein","name_last_first":"Gershtein, Y","first_name":"Y","last_name":"Gershtein"},{"name":"R Gray","name_last_first":"Gray, R","first_name":"R","last_name":"Gray"},{"name":"E Halkiadakis","name_last_first":"Halkiadakis, E","first_name":"E","last_name":"Halkiadakis"},{"name":"D Hidas","name_last_first":"Hidas, D","first_name":"D","last_name":"Hidas"},{"name":"S Kaplan","name_last_first":"Kaplan, S","first_name":"S","last_name":"Kaplan"},{"name":"A Lath","name_last_first":"Lath, A","first_name":"A","last_name":"Lath"},{"name":"S Panwalkar","name_last_first":"Panwalkar, S","first_name":"S","last_name":"Panwalkar"},{"name":"M Park","name_last_first":"Park, M","first_name":"M","last_name":"Park"},{"name":"R Patel","name_last_first":"Patel, R","first_name":"R","last_name":"Patel"},{"name":"S Salur","name_last_first":"Salur, S","first_name":"S","last_name":"Salur"},{"name":"S Schnetzer","name_last_first":"Schnetzer, S","first_name":"S","last_name":"Schnetzer"},{"name":"D Sheffield","name_last_first":"Sheffield, D","first_name":"D","last_name":"Sheffield"},{"name":"S Somalwar","name_last_first":"Somalwar, S","first_name":"S","last_name":"Somalwar"},{"name":"R Stone","name_last_first":"Stone, R","first_name":"R","last_name":"Stone"},{"name":"S Thomas","name_last_first":"Thomas, S","first_name":"S","last_name":"Thomas"},{"name":"P Thomassen","name_last_first":"Thomassen, P","first_name":"P","last_name":"Thomassen"},{"name":"M Walker","name_last_first":"Walker, M","first_name":"M","last_name":"Walker"},{"name":"K Rose","name_last_first":"Rose, K","first_name":"K","last_name":"Rose"},{"name":"S Spanier","name_last_first":"Spanier, S","first_name":"S","last_name":"Spanier"},{"name":"A York","name_last_first":"York, A","first_name":"A","last_name":"York"},{"name":"O Bouhali","name_last_first":"Bouhali, O","first_name":"O","last_name":"Bouhali"},{"name":"AC Hernandez","name_last_first":"Hernandez, AC","first_name":"AC","last_name":"Hernandez"},{"name":"R Eusebi","name_last_first":"Eusebi, R","first_name":"R","last_name":"Eusebi"},{"name":"W Flanagan","name_last_first":"Flanagan, W","first_name":"W","last_name":"Flanagan"},{"name":"J Gilmore","name_last_first":"Gilmore, J","first_name":"J","last_name":"Gilmore"},{"name":"T Kamon","name_last_first":"Kamon, T","first_name":"T","last_name":"Kamon"},{"name":"V Khotilovich","name_last_first":"Khotilovich, V","first_name":"V","last_name":"Khotilovich"},{"name":"V Krutelyov","name_last_first":"Krutelyov, V","first_name":"V","last_name":"Krutelyov"},{"name":"R Montalvo","name_last_first":"Montalvo, R","first_name":"R","last_name":"Montalvo"},{"name":"I Osipenkov","name_last_first":"Osipenkov, I","first_name":"I","last_name":"Osipenkov"},{"name":"Y Pakhotin","name_last_first":"Pakhotin, Y","first_name":"Y","last_name":"Pakhotin"},{"name":"A Perloff","name_last_first":"Perloff, A","first_name":"A","last_name":"Perloff"},{"name":"J Roe","name_last_first":"Roe, J","first_name":"J","last_name":"Roe"},{"name":"A Rose","name_last_first":"Rose, A","first_name":"A","last_name":"Rose"},{"name":"A Safonov","name_last_first":"Safonov, A","first_name":"A","last_name":"Safonov"},{"name":"I Suarez","name_last_first":"Suarez, I","first_name":"I","last_name":"Suarez"},{"name":"A Tatarinov","name_last_first":"Tatarinov, A","first_name":"A","last_name":"Tatarinov"},{"name":"KA Ulmer","name_last_first":"Ulmer, KA","first_name":"KA","last_name":"Ulmer"},{"name":"N Akchurin","name_last_first":"Akchurin, N","first_name":"N","last_name":"Akchurin"},{"name":"C Cowden","name_last_first":"Cowden, C","first_name":"C","last_name":"Cowden"},{"name":"J Damgov","name_last_first":"Damgov, J","first_name":"J","last_name":"Damgov"},{"name":"C Dragoiu","name_last_first":"Dragoiu, C","first_name":"C","last_name":"Dragoiu"},{"name":"PR Dudero","name_last_first":"Dudero, PR","first_name":"PR","last_name":"Dudero"},{"name":"J Faulkner","name_last_first":"Faulkner, J","first_name":"J","last_name":"Faulkner"},{"name":"K Kovitanggoon","name_last_first":"Kovitanggoon, K","first_name":"K","last_name":"Kovitanggoon"},{"name":"S Kunori","name_last_first":"Kunori, S","first_name":"S","last_name":"Kunori"},{"name":"SW Lee","name_last_first":"Lee, SW","first_name":"SW","last_name":"Lee"},{"name":"T Libeiro","name_last_first":"Libeiro, T","first_name":"T","last_name":"Libeiro"},{"name":"I Volobouev","name_last_first":"Volobouev, I","first_name":"I","last_name":"Volobouev"},{"name":"E Appelt","name_last_first":"Appelt, E","first_name":"E","last_name":"Appelt"},{"name":"AG Delannoy","name_last_first":"Delannoy, AG","first_name":"AG","last_name":"Delannoy"},{"name":"S Greene","name_last_first":"Greene, S","first_name":"S","last_name":"Greene"},{"name":"A Gurrola","name_last_first":"Gurrola, A","first_name":"A","last_name":"Gurrola"},{"name":"W Johns","name_last_first":"Johns, W","first_name":"W","last_name":"Johns"},{"name":"C Maguire","name_last_first":"Maguire, C","first_name":"C","last_name":"Maguire"},{"name":"Y Mao","name_last_first":"Mao, Y","first_name":"Y","last_name":"Mao"},{"name":"A Melo","name_last_first":"Melo, A","first_name":"A","last_name":"Melo"},{"name":"M Sharma","name_last_first":"Sharma, M","first_name":"M","last_name":"Sharma"},{"name":"P Sheldon","name_last_first":"Sheldon, P","first_name":"P","last_name":"Sheldon"},{"name":"B Snook","name_last_first":"Snook, B","first_name":"B","last_name":"Snook"},{"name":"S Tuo","name_last_first":"Tuo, S","first_name":"S","last_name":"Tuo"},{"name":"J Velkovska","name_last_first":"Velkovska, J","first_name":"J","last_name":"Velkovska"},{"name":"MW Arenton","name_last_first":"Arenton, MW","first_name":"MW","last_name":"Arenton"},{"name":"S Boutle","name_last_first":"Boutle, S","first_name":"S","last_name":"Boutle"},{"name":"B Cox","name_last_first":"Cox, B","first_name":"B","last_name":"Cox"},{"name":"B Francis","name_last_first":"Francis, B","first_name":"B","last_name":"Francis"},{"name":"J Goodell","name_last_first":"Goodell, J","first_name":"J","last_name":"Goodell"},{"name":"R Hirosky","name_last_first":"Hirosky, R","first_name":"R","last_name":"Hirosky"},{"name":"A Ledovskoy","name_last_first":"Ledovskoy, A","first_name":"A","last_name":"Ledovskoy"},{"name":"H Li","name_last_first":"Li, H","first_name":"H","last_name":"Li"},{"name":"C Lin","name_last_first":"Lin, C","first_name":"C","last_name":"Lin"},{"name":"C Neu","name_last_first":"Neu, C","first_name":"C","last_name":"Neu"},{"name":"E Wolfe","name_last_first":"Wolfe, E","first_name":"E","last_name":"Wolfe"},{"name":"J Wood","name_last_first":"Wood, J","first_name":"J","last_name":"Wood"},{"name":"C Clarke","name_last_first":"Clarke, C","first_name":"C","last_name":"Clarke"},{"name":"R Harr","name_last_first":"Harr, R","first_name":"R","last_name":"Harr"},{"name":"PE Karchin","name_last_first":"Karchin, PE","first_name":"PE","last_name":"Karchin"},{"name":"CKK Don","name_last_first":"Don, CKK","first_name":"CKK","last_name":"Don"},{"name":"P Lamichhane","name_last_first":"Lamichhane, P","first_name":"P","last_name":"Lamichhane"},{"name":"J Sturdy","name_last_first":"Sturdy, J","first_name":"J","last_name":"Sturdy"},{"name":"DA Belknap","name_last_first":"Belknap, DA","first_name":"DA","last_name":"Belknap"},{"name":"D Carlsmith","name_last_first":"Carlsmith, D","first_name":"D","last_name":"Carlsmith"},{"name":"M Cepeda","name_last_first":"Cepeda, M","first_name":"M","last_name":"Cepeda"},{"name":"S Dasu","name_last_first":"Dasu, S","first_name":"S","last_name":"Dasu"},{"name":"L Dodd","name_last_first":"Dodd, L","first_name":"L","last_name":"Dodd"},{"name":"S Duric","name_last_first":"Duric, S","first_name":"S","last_name":"Duric"},{"name":"E Friis","name_last_first":"Friis, E","first_name":"E","last_name":"Friis"},{"name":"R Hall-Wilton","name_last_first":"Hall-Wilton, R","first_name":"R","last_name":"Hall-Wilton"},{"name":"M Herndon","name_last_first":"Herndon, M","first_name":"M","last_name":"Herndon"},{"name":"A Herve","name_last_first":"Herve, A","first_name":"A","last_name":"Herve"},{"name":"P Klabbers","name_last_first":"Klabbers, P","first_name":"P","last_name":"Klabbers"},{"name":"A Lanaro","name_last_first":"Lanaro, A","first_name":"A","last_name":"Lanaro"},{"name":"C Lazaridis","name_last_first":"Lazaridis, C","first_name":"C","last_name":"Lazaridis"},{"name":"A Levine","name_last_first":"Levine, A","first_name":"A","last_name":"Levine"},{"name":"R Loveless","name_last_first":"Loveless, R","first_name":"R","last_name":"Loveless"},{"name":"A Mohapatra","name_last_first":"Mohapatra, A","first_name":"A","last_name":"Mohapatra"},{"name":"I Ojalvo","name_last_first":"Ojalvo, I","first_name":"I","last_name":"Ojalvo"},{"name":"T Perry","name_last_first":"Perry, T","first_name":"T","last_name":"Perry"},{"name":"GA Pierro","name_last_first":"Pierro, GA","first_name":"GA","last_name":"Pierro"},{"name":"G Polese","name_last_first":"Polese, G","first_name":"G","last_name":"Polese"},{"name":"I Ross","name_last_first":"Ross, I","first_name":"I","last_name":"Ross"},{"name":"T Sarangi","name_last_first":"Sarangi, T","first_name":"T","last_name":"Sarangi"},{"name":"A Savin","name_last_first":"Savin, A","first_name":"A","last_name":"Savin"},{"name":"WH Smith","name_last_first":"Smith, WH","first_name":"WH","last_name":"Smith"},{"name":"D Taylor","name_last_first":"Taylor, D","first_name":"D","last_name":"Taylor"},{"name":"C Vuosalo","name_last_first":"Vuosalo, C","first_name":"C","last_name":"Vuosalo"},{"name":"N Woods","name_last_first":"Woods, N","first_name":"N","last_name":"Woods"}],"wos_id":"000353892300002","publisher":{"location":"AMSTERDAM","name":"ELSEVIER SCIENCE BV"},"cite":{"fwo":"
Khachatryan, V, AM Sirunyan, A Tumasyan, W Adam, T Bergauer, M Dragicevic, J Ero, M Friedl, R Fruhwirth, VM Ghete, C Hartl, N Hormann, J Hrubec, M Jeitler, W Kiesenhofer, V Knunz, M Krammer, I Kratschmer, D Liko, I Mikulec, D Rabady, B Rahbaran, H Rohringer, R Shofbeck, J Strauss, W Treberer-Treberspurg, W Waltenberger, CE Wulz, V Mossolov, N Shumeiko, J SuarezGonzalez, S Alderweireldt, S Bansal, T Cornelis, EA DeWolf, X Janssen, A Knutsson, J Lauwers, S Luyckx, S Ochesanu, R Rougny, MV De Klundert, H Van Haevermaet, P Van Mechelen, N Van Remortel, A Van Spilbeeck, F Blekman, S Blyweert, J D’Hondt, N Daci, N Heracleous, J Keaveney, S Lowette, M Maes, A Olbrechts, Q Python, D Strom, S Tavernier, W Van Doninck, P Van Mulders, GP Van Onsem, I Villella, C Caillol, B Clerbaux, G De Lentdecker, D Dobur, L Favart, APR Gay, A Grebenyuk, A Leonard, A Mohammadi, L Pernie, A Randle-Conde, T Reis, T Seva, L Thomas, C van derVelde, P van Laer, J Wang, F Zenoni, Volker Adler, Kelly Beernaert, Leonardo Benucci, Anna Cimmino, Silvia Costantini, Shannon Rebecca Crucy, Sven Dildick, Alexis Fagot, Guillaume Garcia, Joseph McCartin, Alberto Andres Ocampo Rios, Deniz Poyraz, Dirk Ryckbosch, Michael Sigamani, Nadja Strobbe, Filip Thyssen, Michael Tytgat, Efe Yazgan, Nikolaos Zaganidis, S Basegmez, C Beluffi, G Bruno, R Castello, A Caudron, L Ceard, GG Da Silveira, C Delaere, T du Pree, D Favart, L Forthomme, A Giammanco, J Hollar, A Jafari, P Jez, M Komm, V Lemaitre, C Nuttens, L Perrini, A Pin, K Piotrzkowski, A Popov, L Quertenmont, M Selvaggi, MV Marono, JMV Garcia, N Beliy, T Caebergs, E Daubie, GH Hammad, WL Alda, GA Alves, L Brito, MC Martins, TD Martins, J Molina, CM Herrera, ME Pol, PR Teles, W Carvalho, J Chinellato, A Custodio, EM Da Costa, DD Damiao, CD Martins, SF De Souza, H Malbouisson, DM Figueiredo, L Mundim, H Nogima, WLP Da Silva, J Santaolalla, A Santoro, A Sznajder, EJT Manganote, AV Pereira, CA Bernardes, S Dogra, TRFP Tomei, EM Gregores, PG Mercadante, SF Novaes, SS Padula, A Aleksandrov, V Genchev, R Hadjiiska, P Iaydjiev, A Marinov, S Piperov, M Rodozov, S Stoykova, G Sultanov, M Vutova, A Dimitrov, I Glushkov, L Litov, B Pavlov, P Petkov, JG Bian, GM Chen, HS Chen, M Chen, T Cheng, R Du, CH Jiang, R Plestina, F Romeo, J Tao, Z Wang, C Asawatangtrakuldee, Y Ban, S Liu, Y Mao, SJ Qian, D Wang, Z Xu, L Zhang, W Zou, C Avila, A Cabrera, LFC Sierra, C Florez, JP Gomez, BG Moreno, JC Sanabria, N Godinovic, D Lelas, D Polic, I Puljak, Z Antunovic, M Kovac, V Brigljevic, K Kadija, J Luetic, D Mekterovic, L Sudic, A Attikis, G Mavromanolakis, J Mousa, C Nicolaou, F Ptochos, PA Razis, H Rykaczewski, M Bodlak, M Finger, M Finger, Y Assran, AE Kamel, MA Mahmoud, A Radi, M Kadastik, M Murumaa, M Raidal, A Tiko, P Eerola, M Voutilainen, J Harkonen, V Karimaki, R Kinnunen, MJ Kortelainen, T Lampen, K Lassila-Perini, S Lehti, T Linden, P Luukka, T Maenpaa, T Peltola, E Tuominen, J Tuominiemi, E Tuovinen, L Wendland, J Talvitie, T Tuuva, M Besancon, F Couderc, M Dejardin, D Denegri, B Fabbro, JL Faure, C Favaro, F Ferri, S Ganjour, A Givernaud, P Gras, GH de Monchenault, P Jarry, E Locci, J Malcles, J Rander, A Rosowsky, M Titov, S Baffioni, F Beaudette, P Busson, E Chapon, C Charlot, T Dahms, M Dalchenko, L Dobrzynski, N Filipovic, A Florent, RG de Cassagnac, L Mastrolorenzo, P Mine, IN Naranjo, M Nguyen, C Ochando, G Ortona, P Paganini, S Regnard, R Salerno, JB Sauvan, Y Sirois, C Veelken, Y Yilmaz, A Zabi, JL Agram, J Andrea, A Aubin, D Bloch, JM Brom, EC Chabert, C Collard, E Conte, JC Fontaine, D Gele, U Goerlach, C Goetzmann, AC Le Bihan, K Skovpen, P Van Hove, S Gadrat, S Beauceron, N Beaupere, C Bernet, G Boudoul, E Bouvier, S Brochet, AC Montoya, J Chasserat, R Chierici, D Contardo, B Courbon, P Depasse, H El Mamouni, J Fan, J Fay, S Gascon, M Gouzevitch, B Ille, T Kurca, M Lethuillier, L Mirabito, AL Pequegnot, S Perries, JDR Alvarez, D Sabes, L Sgandurra, V Sordini, MV Donckt, P Verdier, S Viret, H Xiao, Z Tsamalaidze, C Autermann, S Beranek, M Bontenackels, M Edelhoff, L Feld, A Heister, K Klein, M Lipinski, A Ostapchuk, M Preuten, F Raupach, J Sammet, S Schael, JF Schulte, H Weber, B Wittmer, V Zhukov, M Ata, M Brodski, E Dietz-Laursonn, D Duchardt, M Erdmann, R Fischer, A Guth, T Hebbeker, C Heidemann, K Hoepfner, D Klingebiel, S Knutzen, P Kreuzer, M Merschmeyer, A Meyer, P Millet, M Olschewski, K Padeken, P Papacz, H Reithler, SA Schmitz, L Sonnenschein, D Teyssier, S Thur, M Weber, V Cherepanov, Y Erdogan, G Flugge, H Geenen, M Geisler, WH Ahmad, F Hoehle, B Kargoll, T Kress, Y Kuessel, A Kunsken, J Lingemann, A Nowack, IM Nugent, O Pooth, A Stahl, MA Martin, I Asin, N Bartosik, J Behr, U Behrens, AJ Bell, A Bethani, K Borras, A Burgmeier, A Cakir, L Calligaris, A Campbell, S Choudhury, F Costanza, CD Pardos, G Dolinska, S Dooling, T Dorland, G Eckerlin, D Eckstein, T Eichhorn, G Flucke, JG Garcia, A Geiser, A Gizhko, P Gunnellini, J Hauk, M Hempel, H Jung, A Kalogeropoulos, O Karacheban, M Kasemann, P Katsas, J Kieseler, C Kleinwort, I Korol, D Krucker, W Lange, J Leonard, K Lipka, A Lobanov, W Lohmann, B Lutz, R Mankel, I Marfin, IA Melzer-Pellmann, AB Meyer, G Mittag, J Mnich, A Mussgiller, S Naumann-Emme, A Nayak, E Ntomari, H Perrey, D Pitzl, R Placakyte, A Raspereza, PMR Cipriano, B Roland, E Ron, MO Sahin, J Salfeld-Nebgen, P Saxena, T Schoerner-Sadenius, M Schoerder, C Seitz, S Spannagel, ADRV Trevino, R Walsh, C Wissing, V Blobel, MC Vignali, AR Draeger, J Erfle, E Garutti, K Goebel, M Gorner, J Haller, M Hoffmann, RS Hoing, A Junkes, H Kirschenmann, R Klanner, R Kogler, T Lapsien, T Lenz, I Marchesini, D Marconi, J Ott, T Peiffer, A Perieanu, N Pietsch, J Poehlsen, T Poehlsen, D Rathjens, C Sander, H Schettler, P Schleper, E Schlieckau, A Schmidt, M Seidel, V Sola, H Stadie, G Steinbruck, D Troendle, E Usai, L Vanelderen, A Vanhoefer, C Barth, C Baus, J Berger, C Boser, E Butz, T Chwalek, W De Boer, A Descroix, A Dierlamm, M Feindt, F Frensch, M Giffels, A Gilbert, F Hartmann, T Hauth, U Husemann, I Katkov, A Kornmayer, PL Pardo, MU Mozer, T Muller, T Muller, A Nurnberg, G Quast, K Rabbertz, S Rocker, HJ Simonis, FM Stober, R Ulrich, J Wagner-Kuhr, S Wayand, T Weiler, R Wolf, G Anagnostou, G Daskalakis, T Geralis, VA Giakoumopoulou, A Kyriakis, D Loukas, A Markou, C Markou, A Psallidas, I Topsis-Giotis, A Agapitos, S Kesisoglou, A Panagiotou, N Saoulidou, E Stiliaris, X Aslanoglou, I Evangelou, G Flouris, C Foudas, P Kokkas, N Manthos, I Papadopoulos, E Paradas, J Strologas, G Bencze, C Hajdu, P Hidas, D Horvath, F Sikler, V Veszpremi, G Vesztergombi, AJ Zsigmond, N Beni, S Czellar, J Karancsi, J Molnar, J Palinkas, Z Szillasi, A Makovec, P Raics, ZL Trocsanyi, B Ujvari, SK Swain, SB Beri, V Bhatnagar, R Gupta, U Bhawandeep, AK Kalsi, M Kaur, R Kumar, M Mittal, N Nishu, JB Singh, A Kumar, A Kumar, S Ahuja, A Bhardwaj, BC Choudhary, A Kumar, S Malhotra, M Naimuddin, K Ranjan, V Sharma, S Banerjee, S Bhattacharya, K Chatterjee, S Dutta, B Gomber, S Jain, S Jain, R Khurana, A Modak, S Mukherjee, D Roy, S Sarkar, M Sharan, A Abdulsalam, D Dutta, V Kumar, AK Mohanty, LM Pant, P Shukla, A Topkar, T Aziz, S Banerjee, S Bhowmik, RM Chatterjee, RK Dewanjee, S Dugad, S Ganguly, S Ghosh, M Guchait, A Gurtu, G Kole, S Kumar, M Maity, G Majumder, K Mazumdar, GB Mohanty, B Parida, K Sudhakar, N Wickramage, S Sharma, H Bakhshiansohi, H Behnamian, SM Etesami, A Fahim, R Goldouzian, M Khakzad, MM Najafabadi, M Naseri, SP Mehdiabadi, FR Hosseinabadi, B Safarzadeh, M Zeinali, M Felcini, M Grunewald, M Abbrescia, C Calabria, SS Chhibra, A Colaleo, D Creanza, L Cristella, N De Filippis, M De Palma, L Fiore, G Iaselli, G Maggi, M Maggi, S My, S Nuzzo, A Pompili, G Pugliese, R Radogna, G Selvaggi, A Sharma, L Silvestris, R Venditti, P Verwilligen, G Abbiendi, AC Benvenuti, D Bonacorsi, S Braibant-Giacomelli, L Brigliadori, R Campanini, P Capiluppi, BA Castro, FR Cavallo, G Codispoti, M Cuffiani, GM Dallavalle, F Fabbri, A Fanfani, D Fasanella, P Giacomelli, C Grandi, L Guiducci, S Marcellini, G Masetti, A Montanari, FL Navarria, A Perrotta, AM Rossi, T Rovelli, GP Siroli, N Tosi, R Travaglini, S Albergo, G Cappello, M Chiorboli, S Costa, F Giordano, R Potenza, A Tricomi, C Tuve, G Barbagli, V Ciulli, C Civinini, R D’Alessandro, E Focardi, E Gallo, S Gonzi, V Gori, P Lenzi, M Meschini, S Paoletti, G Sguazzoni, A Tropiano, L Benussi, S Bianco, F Fabbri, D Piccolo, R Ferretti, F Ferro, M Lo Vetere, E Robutti, S Tosi, ME Dinardo, S Fiorendi, S Gennai, R Gerosa, A Ghezzi, P Govoni, MT Lucchini, S Malvezzi, RA Manzoni, A Martelli, B Marzocchi, D Menasce, L Moroni, M Paganoni, D Pedrini, S Ragazzi, N Redaelli, TT de Fatis, S Buontempo, N Cavallo, S Di Guida, F Fabozzi, AOM Iorio, L Lista, S Meola, M Merola, P Paolucci, P Azzi, N Bacchetta, D Bisello, A Branca, R Carlin, P ChecchiA, M Dall’Osso, T Dorigo, U Dosselli, F Gasparini, U Gasparini, A Gozzelino, K Kanishchev, S Lacaprara, M Margoni, AT Meneguzzo, J Pazzini, N Pozzobon, P Ronchese, F Simonetto, E Torassa, M Tosi, P Zotto, A Zucchetta, G Zumerle, M Gabusi, SP Ratti, V Re, C Riccardi, P Salvini, P Vitulo, M Biasini, GM Bilei, D Ciangottini, L Fano, P Lariccia, G Mantovani, M Menichelli, A Saha, A Santocchia, A Spiezia, K Androsov, P Azzurri, G Bagliesi, J Bernardini, T Boccali, G Broccolo, R Castaldi, MA Ciocci, R Dell’Orso, S Donato, G Fedi, F Fiori, L Foa, A Giassi, MT Grippo, F Ligabue, T Lomtadze, L Martini, A Messineo, CS Moon, F Palla, A Rizzi, A Savoy-Navarro, AT Serban, P Spagnolo, P Squillacioti, R Tenchini, G Tonelli, A Venturi, PG Verdini, C Vernieri, L Barone, F Cavallari, G D’imperio, D Del Re, M Diemoz, C Jorda, E Longo, F Margaroli, P Meridiani, F Micheli, G Organtini, R Paramatti, S Rahatlou, C Rovelli, F Santanastasio, L Soffi, P Traczyk, N Amapane, R Arcidiacono, S Argiro, M Arneodo, R Bellan, C Biino, N Cartiglia, S Casasso, M Costa, R Covarelli, A Degano, N Demaria, L Finco, C Mariotti, S Maselli, E Migliore, V Monaco, M Musich, MM Obertino, L Pacher, N Pastrone, M Pelliccioni, GLP Angioni, A Potenza, A Romero, M Ruspa, R Sacchi, A Solano, A Staiano, U Tamponi, S Belforte, V Candelise, M Casarsa, F Cossutti, G Della Ricca, B Gobbo, C La Licata, M Marone, A Schizzi, T Umer, A Zanetti, S Chang, A Kropivnitskaya, SK Nam, DH Kim, GN Kim, MS Kim, DJ Kong, S Lee, YD Oh, H Park, A Sakharov, DC Son, TJ Kim, MS Ryu, JY Kim, DH Moon, S Song, S Choi, D Gyun, B Hong, M Jo, H Kim, Y Kim, B Lee, KS Lee, SK Park, Y Roh, HD Yoo, M Choi, JH Kim, IC Park, G Ryu, Y Choi, YK Choi, J Goh, D Kim, E Kwon, J Lee, I Yu, A Juodagalvis, JR Komaragiri, MABM Ali, EC Linares, H Castilla-Valdez, E De La Cruz-Burelo, I Heredia-de La Cruz, A Hernandez-Almada, R Lopez-Fernandez, A Sanchez-Hernandez, SC Moreno, FV Valencia, I Pedraza, HAS Ibarguen, AM Pineda, D Krofcheck, PH Butler, S Reucroft, A Ahmad, M Ahmad, Q Hassan, HR Hoorani, WA Khan, T Khurshid, M Shoaib, H Bialkowska, M Bluj, B Boimska, T Frueboes, M Gorski, M Kazana, K Nawrocki, K Romanowska-Rybinska, M Szleper, P Zalewski, G Brona, K Bunkowski, M Cwiok, W Dominik, K Doroba, A Kalinowski, M Konecki, J Krolikowski, M Misiura, M Olszewski, P Bargassa, CBDE Silva, P Faccioli, PGF Parracho, M Gallinaro, LL Iglesias, F Nguyen, JR Antunes, J Seixas, J Varela, P Vischia, S Afanasiev, P Bunin, M Gavrilenko, I Golutvin, I Gorbunov, A Kamenev, V Karjavin, V Konoplyanikov, A Lanev, A Malakhov, V Matveev, P Moisenz, V Palichik, V Perelygin, S Shmatov, N Skatchkov, V Smirnov, A Zarubin, V Golovtsov, Y Ivanov, V Kim, E Kuznetsova, P Levchenko, V Murzin, V Oreshkin, I Smirnov, V Sulimov, L Uvarov, S Vavilov, A Vorobyev, A Vorobyev, Y Andreev, A Dermenev, S Gninenko, N Golubev, M Kirsanov, N Krasnikov, A Pashenkov, D Tlisov, A Toropin, V Epshteyn, V Gavrilov, N Lychkovskaya, V Popov, I Pozdnyakov, G Safronov, S Semenov, A Spiridonov, V Stolin, E Vlasov, A Zhokin, V Andreev, M Azarkin, I Dremin, M Kirakosyan, A Leonidov, G Mesyats, SV Rusakov, A Vinogradov, A Belyaev, E Boos, M Dubinin, L Dudko, A Ershov, A Gribushin, V Klyukhin, O Kodolova, I Lokhtin, S Obraztsov, S Petrushanko, V Savrin, A Snigirev, I Azhgirey, I Bayshev, S Bitioukov, V Kachanov, A Kalinin, D Konstantinov, V Krychkine, V Petrov, R Ryutin, A Sobol, L Tourtchanovitch, S Troshin, N Tyurin, A Uzunian, A Volkov, P Adzic, M Ekmedzic, J Milosevic, V Rekovic, JA Maestre, C Battilana, E Calvo, M Cerrada, MC Llatas, N Colino, B De La Cruz, AD Peris, DD Vazquez, AE Del Valle, CF Bedoya, JPF Ramos, J Flix, MC Fouz, P Garcia-Abia, OG Lopez, SG Lopez, JM Hernandez, MI Josa, EN De Martino, APC Yzquierdo, JP Pelayo, AQ Olmeda, I Redondo, L Romero, MS Soares, C Albajar, JF de Troconiz, M Missiroli, D Moran, H Brun, J Cuevas, JF Menendez, S Folgueras, IG Caballero, JAB Cifuentes, IJ Cabrillo, A Calderon, JD Campderros, M Fernandez, G Gomez, A Graziano, AL Virto, J Marco, R Marco, CM Rivero, F Matorras, FJM Sanchez, JP Gomez, T Rodrigo, AY Rodriguez-Marrero, A Ruiz-Jimeno, L Scodellaro, I Vila, RV Cortabitarte, D Abbaneo, E Auffray, G Auzinger, M Bachtis, P Baillon, AH Ball, D Barney, A Benaglia, J Bendavid, L Benhabib, JF Benitez, P Bloch, A Bocci, A Bonato, O Bondu, C Botta, H Breuker, T Camporesi, G Cerminara, S Colafranceschi, M D’Alfonso, D d’ Enterria, A Dabrowski, A David, F De Guio, A De Roeck, S De Visscher, E Di Marco, M Dobson, M Dordevic, B Dorney, N Dupont-Sagorin, A Elliott-Peisert, G Franzoni, W Funk, D Gigi, K Gill, D Giordano, M Girone, F Glege, R Guida, S Gundacker, M Guthoff, J Hammer, M Hansen, P Harris, J Hegeman, V Innocente, P Janot, K Kousouris, K Krajczar, P Lecoq, C Lourenco, N Magini, L Malgeri, M Mannelli, J Marrouche, L Masetti, F Meijers, S Mersi, E Meschi, F Moortgat, S Morovic, M Mulders, L Orsini, L Pape, E Perez, A Petrilli, G Petrucciani, A Pfeiffer, M Pimia, D Piparo, M Plagge, A Racz, G Rolandi, M Rovere, H Sakulin, C Schafer, C Schwick, A Sharma, P Siegrist, P Silva, M Simon, P Sphicas, D Spiga, J Steggemann, B Stieger, M Stoye, Y Takahashi, D Treille, A Tsirou, GI Veres, N Wardle, HK Wohri, H Wollny, WD Zeuner, W Bertl, K Deiters, W Erdmann, R Horisberger, Q Ingram, HC Kaestli, D Kotlinski, U Langenegger, D Renker, T Rohe, F Bachmair, L Bani, L Bianchini, MA Buchmann, B Casal, N Chanon, G Dissertori, M Dittmar, M Donega, M Dunser, P Eller, C Grab, D Hits, J Hoss, W Lustermann, B Mangano, AC Marini, M Marionneau, PMR del Arbol, M Masciovecchio, D Meister, N Mohr, P Musella, C Nageli, F Nessi-Tedaldi, F Pandolfi, F Pauss, L Perrozzi, M Peruzzi, M Quittnat, L Rebane, M Rossini, A Starodumov, M Takahashi, K Theofilatos, R Wallny, HA Weber, C Amsler, MF Canelli, V Chiochia, A De Cosa, A Hinzmann, T Hreus, B Kilminster, C Lange, J Ngadiuba, D Pinna, P Robmann, FJ Ronga, S Taroni, M Verzetti, Y Yang, M Cardaci, KH Chen, C Ferro, CM Kuo, W Lin, YJ Lu, R Volpe, SS Yu, P Chang, YH Chang, Y Chao, KF Chen, PH Chen, C Dietz, U Grundler, WS Hou, YF Liu, RS Lu, MM Moya, E Petrakou, YM Tzeng, R Wilken, B Asavapibhop, G Singh, N Srimanobhas, N Suwonjandee, A Adiguzel, MN Bakirci, S Cerci, C Dozen, I Dumanoglu, E Eskut, S Girgis, G Gokbulut, Y Guler, E Gurpinar, I Hos, EE Kangal, AK Topaksu, G Onengut, K Ozdemir, S Ozturk, A Polatoz, DS Cerci, B Tali, H Topakli, M Vergili, C Zorbilmez, IV Akin, B Bilin, S Bilmis, H Gamsizkan, B Isildak, G Karapinar, K Ocalan, S Sekmen, UE Surat, M Yalvac, M Zeyrek, EA Albayrak, E Gulmez, M Kaya, O Kaya, T Yetkin, K Cankocak, FI Vardarli, L Levchuk, P Sorokin, JJ Brooke, E Clement, D Cussans, H Flacher, J Goldstein, M Grimes, GP Heath, HF Heath, J Jacob, L Kreczko, C Lucas, Z Meng, DM Newbold, S Paramesvaran, A Poll, T Sakuma, SS El Nasr-Storey, S Senkin, VJ Smith, KW Bell, A Belyaev, C Brew, RM Brown, DJA Cockerill, JA Coughlan, K Harder, S Harper, E Olaiya, D Petyt, CH Shepherd-Themistocleous, A Thea, IR Tomalin, T Williams, WJ Womersley, SD Worm, M Baber, R Bainbridge, O Buchmuller, D Burton, D Colling, N Cripps, P Dauncey, G Davies, M Della Negra, P Dunne, A Elwood, W Ferguson, J Fulcher, D Futyan, G Hall, G Iles, M Jarvis, G Karapostoli, M Kenzie, R Lane, R Lucas, L Lyons, AM Magnan, S Malik, B Mathias, J Nash, A Nikitenko, J Pela, M Pesaresi, K Petridis, DM Raymond, S Rogerson, A Rose, C Seez, P Sharp, A Tapper, MV Acosta, T Virdee, SC Zenz, JE Cole, PR Hobson, A Khan, P Kyberd, D Leggat, D Leslie, ID Reid, P Symonds, L Teodorescu, M Turner, J Dittmann, K Hatakeyama, A Kasmi, H Liu, N Pastika, T Scarborough, Z Wu, O Charaf, SI Cooper, C Henderson, P Rumerio, A Avetisyan, T Bose, C Fantasia, P Lawson, C Richardson, J Rohlf, JS John, L Sulak, J Alimena, E Berry, S Bhattacharya, G Christopher, D Cutts, Z Demiragli, N Dhingra, A Ferapontov, A Garabedian, U Heintz, G Kukartsev, E Laird, G Landsberg, M Luk, M Narain, M Segala, T Sinthuprasith, T Speer, J Swanson, R Breedon, G Breto, MCD Sanchez, S Chauhan, M Chertok, J Conway, R Conway, PT Cox, R Erbacher, M Gardner, W Ko, R Lander, M Mulhearn, D Pellett, J Pilot, F Ricci-Tam, S Shalhout, J Smith, M Squires, D Stolp, M Tripathi, S Wilbur, R Yohay, R Cousins, P Everaerts, C Farrell, J Hauser, M Ignatenko, G Rakness, E Takasugi, V Valuev, M Weber, K Burt, R Clare, J Ellison, JW Gary, G Hanson, J Heilman, MI Rikova, P Jandir, E Kennedy, F Lacroix, OR Long, A Luthra, M Malberti, MO Negrete, A Shrinivas, S Sumowidagdo, S Wimpenny, JG Branson, GB Cerati, S Cittolin, RT D’Agnolo, A Holzner, R Kelley, D Klein, J Letts, I Macneill, D Olivito, S Padhi, C Palmer, M Pieri, M Sani, V Sharma, S Simon, M Tadel, Y Tu, A Vartak, C Welke, F Wurthwein, A Yagil, GZ Della Porta, D Barge, J Bradmiller-Feld, C Campagnari, T Danielson, A Dishaw, V Dutta, K Flowers, MF Sevilla, P Geffert, C George, F Golf, L Gouskos, J Incandela, C Justus, N Mccoll, SD Mullin, J Richman, D Stuart, W To, C West, J Yoo, A Apresyan, A Bornheim, J Bunn, Y Chen, J Duarte, A Mott, HB Newman, C Pena, M Pierini, M Spiropulu, JR Vlimant, R Wilkinson, S Xie, RY Zhu, V Azzolini, A Calamba, B Carlson, T Ferguson, Y Iiyama, M Paulini, J Russ, H Vogel, I Vorobiev, JP Cumalat, WT Ford, A Gaz, M Krohn, EL Lopez, U Nauenberg, JG Smith, K Stenson, SR Wagner, J Alexander, A Chatterjee, J Chaves, J Chu, S Dittmer, N Eggert, N Mirman, GN Kaufman, JR Patterson, A Ryd, E Salvati, L Skinnari, W Sun, WD Teo, J Thom, J Thompson, J Tucker, Y Weng, L Winstrom, P Wittich, D Winn, S Abdullin, M Albrow, J Anderson, G Apollinari, LAT Bauerdick, A Beretvas, J Berryhill, PC Bhat, G Bolla, K Burkett, JN Butler, HWK Cheung, F Chlebana, S Cihangir, VD Elvira, I Fisk, J Freeman, E Gottschalk, L Gray, D Green, S Grunendahl, O Gutsche, J Hanlon, D Hare, RM Harris, J Hirschauer, B Hooberman, S Jindariani, M Johnson, U Joshi, B Klima, B Kreis, S Kwan, J Linacre, D Lincoln, R Lipton, T Liu, J Lykken, K Maeshima, JM Marraffino, VIM Outschoorn, S Maruyama, D Mason, P McBride, P Merkel, K Mishra, S Mrenna, S Nahn, C Newman-Holmes, V O’Dell, O Prokofyev, E Sexton-Kennedy, A Soha, WJ Spalding, L Spiegel, L Taylor, S Tkaczyk, NV Tran, L Uplegger, EW Vaandering, R Vidal, A Whitbeck, J Whitmore, F Yang, D Acosta, P Avery, P Bortignon, D Bourilkov, M Carver, D Curry, S Das, M De Gruttola, GP Di Giovanni, RD Field, M Fisher, IK Furic, J Hugon, J Konigsberg, A Korytov, T Kypreos, JF Low, K Matchev, H Mei, P Milenovic, G Mitselmakher, L Muniz, A Rinkevicius, L Shchutska, M Snowball, D Sperka, J Yelton, M Zakaria, S Hewamanage, S Linn, P Markowitz, G Martinez, JL Rodriguez, JR Adams, T Adams, A Askew, J Bochenek, B Diamond, J Haas, S Hagopian, V Hagopian, KF Johnson, H Prosper, V Veeraraghavan, M Weinberg, MM Baarmand, M Hohlmann, H Kalakhety, F Yumiceva, MR Adams, L Apanasevich, D Berry, RR Betts, I Bucinskaite, R Cavanaugh, O Evdokimov, L Gauthier, CE Gerber, DJ Hofman, P Kurt, C O’Brien, IDS Gonzalez, C Silkworth, P Turner, N Varelas, B Bilki, W Clarida, K Dilsiz, M Haytmyradov, JP Merlo, H Mermerkaya, A Mestvirishvili, A Moeller, J Nachtman, H Ogul, Y Onel, F Ozok, A Penzo, R Rahmat, S Sen, P Tan, E Tiras, J Wetzel, K Yi, I Anderson, BA Barnett, B Blumenfeld, S Bolognesi, D Fehling, AV Gritsan, P Maksimovic, C Martin, M Swartz, M Xiao, P Baringer, A Bean, G Benelli, C Bruner, J Gray, RP Kenny, D Majumder, M Malek, M Murray, D Noonan, S Sanders, J Sekaric, R Stringer, Q Wang, JS Wood, I Chakaberia, A Ivanov, K Kaadze, S Khalil, M Makouski, Y Maravin, LK Saini, N Skhirtladze, I Svintradze, J Gronberg, D Lange, F Rebassoo, D Wright, A Baden, A Belloni, B Calvert, SC Eno, JA Gomez, NJ Hadley, S Jabeen, RG Kellogg, T Kolberg, Y Lu, AC Mignerey, K Pedro, A Skuja, MB Tonjes, SC Tonwar, A Apyan, R Barbieri, K Bierwagen, W Busza, IA Cali, L Di Matteo, GG Ceballos, M Goncharov, D Gulhan, M Klute, YS Lai, YJ Lee, A Levin, PD Luckey, C Paus, D Ralph, C Roland, G Roland, GSF Stephans, K Sumorok, D Velicanu, J Veverka, B Wyslouch, M Yang, M Zanetti, V Zhukova, B Dahmes, A Gude, SC Kao, K Klapoetke, Y Kubota, J Mans, S Nourbakhsh, R Rusack, A Singovsky, N Tambe, J Turkewitz, JG Acosta, S Oliveros, E Avdeeva, K Bloom, S Bose, DR Claes, A Dominguez, RG Suarez, J Keller, D Knowlton, I Kravchenko, J Lazo-Flores, F Meier, F Ratnikov, GR Snow, M Zvada, G Alverson, E Barberis, D Baumgartel, M Chasco, A Massironi, DM Morse, D Nash, T Orimoto, D Trocino, RJ Wang, D Wood, J Zhang, KA Hahn, A Kubik, N Mucia, N Odell, B Pollack, A Pozdnyakov, M Schmitt, S Stoynev, K Sung, M Velasco, S Won, A Brinkerhoff, KM Chan, A Drozdetskiy, M Hildreth, C Jessop, DJ Karmgard, N Kellams, K Lannon, S Lynch, N Marinelli, Y Musienko, T Pearson, M Planer, R Ruchti, G Smith, N Valls, M Wayne, M Wolf, A Woodard, L Antonelli, J Brinson, B Bylsma, LS Durkin, S Flowers, A Hart, C Hill, R Hughes, K Kotov, TY Ling, W Luo, D Puigh, M Rodenburg, BL Winer, H Wolfe, HW Wulsin, O Driga, P Elmer, J Hardenbrook, P Hebda, SA Koay, P Lujan, D Marlow, T Medvedeva, M Mooney, J Olsen, P Piroue, X Quan, H Saka, D Stickland, C Tully, JS Werner, A Zuranski, E Brownson, S Malik, H Mendez, JER Vargas, VE Barnes, D Benedetti, D Bortoletto, M De Mattia, L Gutay, Z Hu, MK Jha, M Jones, K Jung, M Kress, N Leonardo, DH Miller, N Neumeister, F Primavera, BC Radburn-Smith, X Shi, I Shipsey, D Silvers, A Svyatkovskiy, F Wang, W Xie, L Xu, J Zablocki, N Parashar, J Stupak, A Adair, B Akgun, KM Ecklund, FJM Geurts, W Li, B Michlin, BP Padley, R Redjimi, J Roberts, J Zabel, B Betchart, A Bodek, P de Barbaro, R Demina, Y Eshaq, T Ferbel, M Galanti, A Garcia-Bellido, P Goldenzweig, J Han, A Harel, O Hindrichs, A Khukhunaishvili, S Korjenevski, G Petrillo, D Vishnevskiy, R Ciesielski, L Demortier, K Goulianos, C Mesropian, S Arora, A Barker, JP Chou, C Contreras-Campana, E Contreras-Campana, D Duggan, D Ferencek, Y Gershtein, R Gray, E Halkiadakis, D Hidas, S Kaplan, A Lath, S Panwalkar, M Park, R Patel, S Salur, S Schnetzer, D Sheffield, S Somalwar, R Stone, S Thomas, P Thomassen, M Walker, K Rose, S Spanier, A York, O Bouhali, AC Hernandez, R Eusebi, W Flanagan, J Gilmore, T Kamon, V Khotilovich, V Krutelyov, R Montalvo, I Osipenkov, Y Pakhotin, A Perloff, J Roe, A Rose, A Safonov, I Suarez, A Tatarinov, KA Ulmer, N Akchurin, C Cowden, J Damgov, C Dragoiu, PR Dudero, J Faulkner, K Kovitanggoon, S Kunori, SW Lee, T Libeiro, I Volobouev, E Appelt, AG Delannoy, S Greene, A Gurrola, W Johns, C Maguire, Y Mao, A Melo, M Sharma, P Sheldon, B Snook, S Tuo, J Velkovska, MW Arenton, S Boutle, B Cox, B Francis, J Goodell, R Hirosky, A Ledovskoy, H Li, C Lin, C Neu, E Wolfe, J Wood, C Clarke, R Harr, PE Karchin, CKK Don, P Lamichhane, J Sturdy, DA Belknap, D Carlsmith, M Cepeda, S Dasu, L Dodd, S Duric, E Friis, R Hall-Wilton, M Herndon, A Herve, P Klabbers, A Lanaro, C Lazaridis, A Levine, R Loveless, A Mohapatra, I Ojalvo, T Perry, GA Pierro, G Polese, I Ross, T Sarangi, A Savin, WH Smith, D Taylor, C Vuosalo, and N Woods. 2015. “Searches for Supersymmetry Based on Events with b Jets and Four W Bosons in Pp Collisions at 8 TeV.” Physics Letters B 745: 5–28.
\n","mla":"
Khachatryan, V, AM Sirunyan, A Tumasyan, et al. “Searches for Supersymmetry Based on Events with b Jets and Four W Bosons in Pp Collisions at 8 TeV.” PHYSICS LETTERS B 745 (2015): 5–28. Print.
\n","apa":"
Khachatryan, V., Sirunyan, A., Tumasyan, A., Adam, W., Bergauer, T., Dragicevic, M., Ero, J., et al. (2015). Searches for supersymmetry based on events with b jets and four W bosons in pp collisions at 8 TeV. PHYSICS LETTERS B, 745, 5–28.
\n","vancouver":"
\n
1.
Khachatryan V, Sirunyan A, Tumasyan A, Adam W, Bergauer T, Dragicevic M, et al. Searches for supersymmetry based on events with b jets and four W bosons in pp collisions at 8 TeV. PHYSICS LETTERS B. AMSTERDAM: ELSEVIER SCIENCE BV; 2015;745:5–28.
\n
\n","chicago-author-date":"
Khachatryan, V, AM Sirunyan, A Tumasyan, W Adam, T Bergauer, M Dragicevic, J Ero, et al. 2015. “Searches for Supersymmetry Based on Events with b Jets and Four W Bosons in Pp Collisions at 8 TeV.” Physics Letters B 745: 5–28.
\n"},"doi":["10.1016/j.physletb.2015.04.002"],"parent":{"title":"PHYSICS LETTERS B","short_title":"Phys. Lett. B"},"volume":"745","language":["eng"],"date_updated":"2015-06-15 14:35:45","external":0,"publication_status":"published","handle":"http://hdl.handle.net/1854/LU-6060822","wos_type":"Article","title":"Searches for supersymmetry based on events with b jets and four W bosons in pp collisions at 8 TeV","classification":"A1","type":"journalArticle","abstract":["Five mutually exclusive searches for supersymmetry are presented based on events in which b jets and four W bosons are produced in proton-proton collisions at root s = 8TeV. The data, corresponding to an integrated luminosity of 19.5 fb(-1), were collected with the CMS experiment at the CERN LHC in 2012. The five studies differ in the leptonic signature from the W boson decays, and correspond to all-hadronic, single-lepton, opposite-sign dilepton, same-sign dilepton, and >= 3 lepton final states. The results of the five studies are combined to yield 95% confidence level limits for the gluino and bottom-squark masses in the context of gluino and bottom-squark pair production, respectively. In the limit when the lightest supersymmetric particle is light, gluino and bottom squark masses are excluded below 1280 and 570 GeV, respectively. (C) 2015 CERN for the benefit of the CMS Collaboration. Published by Elsevier B.V."],"affiliation":[{"ugent_id":"WE05","path":[{"ugent_id":"UGent"},{"ugent_id":"WE"},{"ugent_id":"WE05"}]}],"year":"2015"} Catmandu000755000765000024 014742222207 15660 5ustar00nsteenlastaff000000000000Catmandu-1.2024/libBag.pm100644000765000024 1204314742222207 17067 0ustar00nsteenlastaff000000000000Catmandu-1.2024/lib/Catmandupackage Catmandu::Bag; use Catmandu::Sane; our $VERSION = '1.2024'; use Catmandu::Util qw(:check is_string require_package now); use Catmandu::Bag::IdGenerator::UUID; use Moo::Role; use MooX::Aliases; use namespace::clean; with 'Catmandu::Logger'; with 'Catmandu::Pluggable'; with 'Catmandu::Iterable'; with 'Catmandu::Addable'; requires 'get'; requires 'delete'; requires 'delete_all'; has store => (is => 'ro', required => 1); has name => (is => 'ro', required => 1); has id_key => (is => 'lazy', alias => 'id_field'); has id_generator => ( is => 'lazy', coerce => sub { if (is_string($_[0])) { require_package($_[0], 'Catmandu::Bag::IdGenerator')->new; } else { $_[0]; } }, ); sub _build_id_key { $_[0]->store->id_key; } sub _build_id_generator { state $uuid = Catmandu::Bag::IdGenerator::UUID->new; } before get => sub { check_value($_[1]); }; before add => sub { my ($self, $data) = @_; check_hash_ref($data); check_value($data->{$self->id_key} //= $self->generate_id($data)); }; before delete => sub { check_value($_[1]); }; around delete_all => sub { my ($orig, $self) = @_; $orig->($self); return; }; sub generate_id { my ($self) = @_; $self->id_generator->generate($self); } sub exists { my ($self, $id) = @_; defined $self->get($id) ? 1 : 0; } sub get_or_add { my ($self, $id, $data) = @_; check_value($id); check_hash_ref($data); $self->get($id) // do { $data->{$self->id_key} = $id; $self->add($data); }; } sub to_hash { my ($self) = @_; $self->reduce( {}, sub { my ($hash, $data) = @_; $hash->{$data->{$self->id_key}} = $data; $hash; } ); } sub touch { my ($self, $key, $format) = @_; $self->add_many($self->tap(sub {$_[0]->{$key} = now($format)})); $self->commit; } 1; __END__ =pod =head1 NAME Catmandu::Bag - A Catmandu::Store compartment to persist data =head1 SYNOPSIS my $store = Catmandu::Store::DBI->new(data_source => 'DBI:mysql:database=test'); my $store = Catmandu::Store::DBI->new( data_source => 'DBI:mysql:database=test', bags => { journals => { fix => [ ... ] , autocommit => 1 , plugins => [ ... ] , id_generator => Catmandu::IdGenerator::UUID->new , } }, bag_class => Catmandu::Bag->with_plugins('Datestamps') ); # Use the default bag... my $bag = $store->bag; # Or a named bag... my $bag = $store->bag('journals'); # Every bag is an iterator... $bag->each(sub { ... }); $bag->take(10)->each(sub { ... }); $bag->add($hash); $bag->add_many($iterator); $bag->add_many([ $hash, $hash , ...]); # Commit changes... $bag->commit; if ($bag->exists($id)) { # ... } my $obj = $bag->get($id); $bag->delete($id); $bag->delete_all; =head1 CONFIGURATION =over =item fix Contains an array of fixes (or Fix files) to be applied before importing data into the bag. =item plugins An array of Catmandu::Pluggable to apply to the bag items. =item autocommit When set to a true value an commit automatically gets executed when the bag goes out of scope. =item id_generator A L or name of an IdGenerator class. By default L is used. =item id_key Use a custom key to hold id's in this bag. See L for the default or store wide value. Also aliased as C. =back =head1 METHODS =head2 add($hash) Add a hash to the bag or updates an existing hash by using its '_id' key. Returns the stored hash on success or undef on failure. =head2 add_many($array) =head2 add_many($iterator) Add or update one or more items to the bag. =head2 get($id) Retrieves the item with identifier $id from the bag. =head2 exists($id) Returns C<1> if the item with identifier $id exists in the bag. =head2 get_or_add($id, $hash) Retrieves the item with identifier $id from the store or adds C<$hash> with _id C<$id> if it's not found. =head2 delete($id) Deletes the item with C<$id> from the bag. =head2 delete_all Clear the bag. =head2 touch($key, $format) Add the current datetime to each record. $bag->touch('date_updated', 'iso_date_time'); See L for possible format values. =head2 commit Commit changes. =head2 log Return the current logger. =head1 CLASS METHODS =head2 with_plugins($plugin) =head2 with_plugins(\@plugins) Plugins are a kind of fixes that should be available for each bag. E.g. the Datestamps plugin will automatically store into each bag item the fields 'date_updated' and 'date_created'. The with_plugins accept one or an array of plugin classnames and returns a subclass of the Bag with the plugin methods implemented. =head1 SEE ALSO L, L, L, L =cut CLI.pm100644000765000024 1070314742222207 17006 0ustar00nsteenlastaff000000000000Catmandu-1.2024/lib/Catmandupackage Catmandu::CLI; use Catmandu::Sane; our $VERSION = '1.2024'; use Catmandu::Util qw(is_instance); use Catmandu; use Log::Any::Adapter; use Data::Dumper; use Getopt::Long; use parent qw(App::Cmd); BEGIN { # Unknown opts are added to the args instead of generating a usage error # so we can handle them dynamically (see Catmandu::Cmd _parse_options). Getopt::Long::Configure("pass_through"); } sub deleted_commands { [ qw( Catmandu::Cmd::data Catmandu::Cmd::exporter_info Catmandu::Cmd::fix_info Catmandu::Cmd::importer_info Catmandu::Cmd::module_info Catmandu::Cmd::move Catmandu::Cmd::store_info ) ]; } sub default_command {'commands'} sub plugin_search_path {'Catmandu::Cmd'} sub global_opt_spec { (['debug|D:i', ""], ['load_path|L=s@', ""], ['lib_path|I=s@', ""]); } sub default_log4perl_config { my $level = shift // 'DEBUG'; my $appender = shift // 'STDERR'; my $config = < 'WARN', 2 => 'INFO', 3 => 'DEBUG'); my $debug = shift; my $level = $LEVELS{$debug} // 'WARN'; my $load_from; try { my $log4perl_pkg = Catmandu::Util::require_package('Log::Log4perl'); my $logany_adapter = Catmandu::Util::require_package('Log::Any::Adapter::Log4perl'); my $config = Catmandu->config->{log4perl}; if (defined $config) { if ($config =~ /^\S+$/) { Log::Log4perl::init($config); $load_from = "file: $config"; } else { Log::Log4perl::init(\$config); $load_from = "string: "; } } else { Log::Log4perl::init(default_log4perl_config($level, 'STDERR')); $load_from = "string: "; } Log::Any::Adapter->set('Log4perl'); } catch { print STDERR <log->warn( "debug activated - level $level - config load from $load_from"); } # overload run to read the global options before # the App::Cmd object is created sub run { my ($class) = @_; my ($global_opts, $argv) = $class->_process_args([@ARGV], $class->_global_option_processing_params); my $load_path = $global_opts->{load_path} || []; my $lib_path = $global_opts->{lib_path} || []; if (exists $global_opts->{debug}) { setup_debugging($global_opts->{debug} // 1); } if (@$lib_path) { Catmandu::Util::use_lib(@$lib_path); } Catmandu->load(@$load_path); my $self = ref $class ? $class : $class->new; $self->set_global_options($global_opts); my ($cmd, $opts, @args) = $self->prepare_command(@$argv); my $err; try { $self->execute_command($cmd, $opts, @args); } catch { my $e = $_; if (is_instance($e, 'Catmandu::NoSuchPackage') && $e->package_name eq 'Catmandu::Importer::help') { $err = "Did you mean 'catmandu $ARGV[1] $ARGV[0]'?"; } elsif (is_instance($e, 'Catmandu::Error')) { $err = $e->log_message; } else { $err = $e; } }; if (defined $err) { say STDERR "Oops! $err"; return; } 1; } sub should_ignore { my ($self, $cmd_class) = @_; for my $cmd (@{$self->deleted_commands}) { return 1 if $cmd_class->isa($cmd); } return; } 1; __END__ =pod =head1 NAME Catmandu::CLI - The App::Cmd application class for the catmandu command line script =head1 SEE ALSO L =cut Cmd.pm100644000765000024 1152514742222207 17105 0ustar00nsteenlastaff000000000000Catmandu-1.2024/lib/Catmandupackage Catmandu::Cmd; use Catmandu::Sane; our $VERSION = '1.2024'; use parent qw(App::Cmd::Command); use Catmandu::Util qw(is_array_ref pod_section); use Catmandu::Fix; use Encode qw(decode); use Log::Any (); use namespace::clean; sub log { Log::Any->get_logger(category => ref($_[0])); } # Internal required by App::Cmd; sub prepare { my ($self, $app, @args) = @_; # not always available eval { require I18N::Langinfo; I18N::Langinfo->import(qw(langinfo CODESET)); my $codeset = langinfo(CODESET()); @args = map {decode $codeset, $_} @args; }; $self->SUPER::prepare($app, @args); } # Internal required by App::Cmd sub opt_spec { my ($class, $cli) = @_; ( ['help|h|?', "print this usage screen"], $cli->global_opt_spec, $class->command_opt_spec($cli), ); } # Internal required by App::Cmd sub execute { my ($self, $opts, $args) = @_; if ($opts->{version}) { print $Catmandu::VERSION; exit; } if ($opts->{help}) { print $self->usage->text; exit; } $self->command($opts, $args); } # show examples, if available in POD sub description { my $class = ref shift; my $s = pod_section($class, "name"); $s =~ s/.*\s+-\s+//; $s = ucfirst($s); $s .= "\n"; for (pod_section($class, "examples")) { $s .= "Examples:\n\n$_"; } "$s\nOptions:"; } # These should be implemented by the Catmandu::Cmd's sub command_opt_spec { } sub command { } # helpers sub _parse_options { my ($self, $args, %opts) = @_; $opts{separator} //= 'to'; my $a = my $lft_args = []; my $o = my $lft_opts = {}; my $rgt_args = []; my $rgt_opts = {}; for (my $i = 0; $i < @$args; $i++) { my $arg = $args->[$i]; if ($arg eq $opts{separator}) { $a = $rgt_args; $o = $rgt_opts; } elsif ($arg =~ s/^-+//) { $arg =~ s/-/_/g; if (exists $o->{$arg}) { if (is_array_ref($o->{$arg})) { push @{$o->{$arg}}, $args->[++$i]; } else { $o->{$arg} = [$o->{$arg}, $args->[++$i]]; } } else { $o->{$arg} = $args->[++$i]; } } else { push @$a, $arg; } } return $lft_args, $lft_opts, $rgt_args, $rgt_opts; } sub _build_fixer { my ($self, $opts) = @_; if ($opts->var) { return Catmandu::Fix->new( preprocess => 1, fixes => $opts->fix, variables => $opts->var, ); } Catmandu::Fix->new( preprocess => $opts->preprocess ? 1 : 0, fixes => $opts->fix, ); } 1; __END__ =pod =head1 NAME Catmandu::Cmd - A base class for extending the Catmandu command line =head1 SYNOPSIS # to create a command: $ catmandu hello_world # you need a package: package Catmandu::Cmd::hello_world; use parent 'Catmandu::Cmd'; sub command_opt_spec { ( [ "greeting|g=s", "provide a greeting text" ], ); } sub description { <greeting // 'Hello'; print "$greeting, World!\n" } =head1 NAME Catmandu::Cmd::hello_world - prints a funny line =cut =head1 DESCRIPTION Catmandu:Cmd is a base class to extend the commands that can be provided for the 'catmandu' command line tools. New catmandu commands should be defined in the Catmandu::Cmd namespace and extend Catmandu::Cmd. Every command needs to implement 4 things: * command_opt_spec - which should return an array of command options with documentation * description - a long description of the command * command - the body which is executed * head1 NAME - a short description of the command =head1 METHODS =head2 log() Access to the logger =head2 command_opt_spec() This method should be overridden to provide option specifications. (This is list of arguments passed to describe_options from Getopt::Long::Descriptive, after the first.) If not overridden, it returns an empty list. =head2 description() This method should return a string containing the long documentation of the command =head2 command() This method does whatever it is the command should do! It is passed a hash reference of the parsed command-line options and an array reference of left over arguments. =head1 DOCUMENTATION At least provide for every command a NAME documentation =head1 SEE ALSO L , L , L , L , L , L, L , L , L =cut Env.pm100644000765000024 1574214742222207 17137 0ustar00nsteenlastaff000000000000Catmandu-1.2024/lib/Catmandupackage Catmandu::Env; use Catmandu::Sane; our $VERSION = '1.2024'; use Catmandu::Util qw(require_package use_lib read_yaml read_json :is :check); use Catmandu::Fix; use Config::Onion; use File::Spec; use Moo; require Catmandu; use namespace::clean; with 'Catmandu::Logger'; sub _search_up { my $dir = $_[0]; my @dirs = grep length, File::Spec->splitdir(Catmandu->default_load_path); for (; @dirs; pop @dirs) { my $path = File::Spec->catdir(File::Spec->rootdir, @dirs); opendir my $dh, $path or last; return $path if grep {-r File::Spec->catfile($path, $_)} grep /^catmandu.+(?:yaml|yml|json|pl)$/, readdir $dh; } Catmandu->default_load_path; } has load_paths => ( is => 'ro', default => sub {[]}, coerce => sub { [ map {File::Spec->canonpath($_)} map {$_ eq ':up' ? _search_up($_) : $_} split /,/, join ',', ref $_[0] ? @{$_[0]} : $_[0] ]; }, ); has config => (is => 'rwp', default => sub {+{}}); has stores => (is => 'ro', default => sub {+{}}); has validators => (is => 'ro', default => sub {+{}}); has fixers => (is => 'ro', default => sub {+{}}); has default_store => (is => 'ro', default => sub {'default'}); has default_importer => (is => 'ro', default => sub {'default'}); has default_exporter => (is => 'ro', default => sub {'default'}); has default_validator => (is => 'ro', default => sub {'default'}); has default_fixer => (is => 'ro', default => sub {'default'}); has default_store_package => (is => 'ro'); has default_importer_package => (is => 'ro', default => sub {'JSON'}); has default_exporter_package => (is => 'ro', default => sub {'JSON'}); has default_validator_package => (is => 'ro'); has store_namespace => (is => 'ro', default => sub {'Catmandu::Store'}); has importer_namespace => (is => 'ro', default => sub {'Catmandu::Importer'}); has exporter_namespace => (is => 'ro', default => sub {'Catmandu::Exporter'}); has validator_namespace => (is => 'ro', default => sub {'Catmandu::Validator'}); sub BUILD { my ($self) = @_; my @config_dirs = @{$self->load_paths}; my @lib_dirs; for my $dir (@config_dirs) { if (!-d $dir) { Catmandu::Error->throw("load path $dir doesn't exist"); } my $lib_dir = File::Spec->catdir($dir, 'lib'); if (-d $lib_dir && -r $lib_dir) { push @lib_dirs, $lib_dir; } } if (@config_dirs) { my @globs = map { my $dir = $_; map {File::Spec->catfile($dir, "catmandu*.$_")} qw(yaml yml json pl) } reverse @config_dirs; my $config = Config::Onion->new(prefix_key => '_prefix'); $config->load_glob(@globs); if ($self->log->is_debug) { use Data::Dumper; $self->log->debug(Dumper($config->get)); } $self->_set_config($config->get); } if (@lib_dirs) { lib->import(@lib_dirs); } } sub load_path { $_[0]->load_paths->[0]; } sub roots { goto &load_paths; } sub root { goto &load_path; } sub fixer { my $self = shift; # it's already a fixer if (is_instance($_[0], 'Catmandu::Fix')) { return $_[0]; } # an array ref of fixes if (is_array_ref($_[0])) { return Catmandu::Fix->new(fixes => $_[0]); } # a single fix if (is_able($_[0], 'fix')) { return Catmandu::Fix->new(fixes => [$_[0]]); } # try to load from config my $key = $_[0] || $self->default_fixer; my $fixers = $self->fixers; $fixers->{$key} || do { if (my $fixes = $self->config->{fixer}{$key}) { return $fixers->{$key} = Catmandu::Fix->new(fixes => $fixes); } return Catmandu::Fix->new(fixes => [@_]); }; } sub store { my $self = shift; $self->_named_package('store', $self->store_namespace, $self->default_store, $self->default_store_package, $self->stores, @_); } sub importer { my $self = shift; $self->_named_package('importer', $self->importer_namespace, $self->default_importer, $self->default_importer_package, undef, @_); } sub exporter { my $self = shift; $self->_named_package('exporter', $self->exporter_namespace, $self->default_exporter, $self->default_exporter_package, undef, @_); } sub validator { my $self = shift; $self->_named_package( 'validator', $self->validator_namespace, $self->default_validator, $self->default_validator_package, $self->validators, @_ ); } sub _named_package { my $self = shift; my $type = shift; my $ns = shift; my $default_name = shift; my $default_package = shift; my $cache = shift; my $name = shift; my $key = $name || $default_name; return $name if is_instance($name) && index(ref($name), $ns) == 0; # return cached instance if no arguments are given if ($cache && !@_ and my $instance = $cache->{$key}) { return $instance; } if (exists $self->config->{$type}) { if (my $c = $self->config->{$type}{$key}) { check_hash_ref($c); check_string(my $package = $c->{package} || $default_package); my $opts = check_hash_ref($c->{options} || {}); if (@_ > 1) { $opts = {%$opts, @_}; } elsif (@_ == 1) { $opts = {%$opts, %{$_[0]}}; } my $instance = require_package($package, $ns)->new($opts); # cache this instance if no arguments are given if ($cache && !@_) { $cache->{$key} = $instance; } return $instance; } } check_string(my $package = $name || $default_package); require_package($package, $ns)->new(@_); } 1; __END__ =pod =head1 NAME Catmandu::Env - A catmandu configuration file loader =head1 SYNOPSIS use Catmandu::Env; my $env = Catmandu::Env->new(load_paths => [ '/etc/catmandu '] ); my $env = Catmandu::Env->new(load_paths => [ ':up'] ); my $store = $env->store('mongodb'); my $importer = $env->importer('loc'); my $exporter = $env->exporter('europeana'); my $fixer = $env->fixer('my_fixes'); my $conf = $env->config; =head1 DESCRIPTION This class loads the catmandu.*.pl, catmandu.*.json, catmandu.*.yml and catmandu.*.yaml file from all provided load_paths. Programmers are advised I to use this class directly but use the equivalent functionality provided in the Catmandu package: Catmandu->load('/etc/catmandu'); Catmandu->load(':up'); my $store = Catmandu->store('mongodb'); my $importer = Catmandu->importer('loc'); my $exporter = Catmandu->exporter('europeana'); my $fixer = Catmandu->fixer('my_fixes'); my $conf = Catmandu->config; =head1 SEE ALSO L =cut Fix.pm100644000765000024 7007014742222207 17130 0ustar00nsteenlastaff000000000000Catmandu-1.2024/lib/Catmandupackage Catmandu::Fix; use Catmandu::Sane; our $VERSION = '1.2024'; use Moo; use Catmandu::Fix::Parser; use Text::Hogan::Compiler; use Path::Tiny (); use File::Spec (); use File::Temp (); use Catmandu::Util qw( is_string is_array_ref is_hash_ref is_code_ref is_glob_ref is_instance is_able require_package ); use namespace::clean; with 'Catmandu::Logger'; with 'Catmandu::Emit'; has parser => (is => 'lazy'); has fixer => (is => 'lazy', init_arg => undef); has _captures => (is => 'ro', lazy => 1, init_arg => undef, default => sub {+{}}); has var => (is => 'ro', lazy => 1, init_arg => undef, builder => '_generate_var'); has _fixes => (is => 'ro', init_arg => 'fixes', default => sub {[]}); has fixes => (is => 'ro', lazy => 1, init_arg => undef, builder => '_build_fixes'); has _reject_var => ( is => 'ro', lazy => 1, init_arg => undef, builder => '_build_reject_var' ); has _fixes_var => ( is => 'ro', lazy => 1, init_arg => undef, builder => '_build_fixes_var' ); has preprocess => (is => 'ro'); has _hogan => (is => 'ro', lazy => 1, init_arg => undef, builder => '_build_hogan'); has _hogan_vars => (is => 'ro', init_arg => 'variables'); sub _build_parser { Catmandu::Fix::Parser->new; } sub _build_fixes { my ($self) = @_; my $fixes_arg = $self->_fixes; my $fixes = []; for my $fix (@$fixes_arg) { if (is_code_ref($fix)) { push @$fixes, require_package('Catmandu::Fix::code')->new($fix); } elsif (ref $fix && ref($fix) =~ /^IO::/) { my $txt = Catmandu::Util::read_io($fix); $txt = $self->_preprocess($txt); push @$fixes, @{$self->parser->parse($txt)}; } elsif (is_glob_ref($fix)) { my $fh = Catmandu::Util::io($fix, binmode => ':encoding(UTF-8)'); my $txt = Catmandu::Util::read_io($fh); $txt = $self->_preprocess($txt); push @$fixes, @{$self->parser->parse($txt)}; } elsif (ref $fix) { push @$fixes, $fix; } elsif (is_string($fix)) { if ($fix =~ /[^\s]/ && $fix !~ /\(/) { $fix = Path::Tiny::path($fix)->slurp_utf8; } $fix = $self->_preprocess($fix); push @$fixes, @{$self->parser->parse($fix)}; } } $fixes; } sub _build_fixer { my ($self) = @_; my $reject = $self->_reject; my $sub = $self->_eval_sub( $self->emit, args => [$self->var], captures => $self->_captures ); sub { my $data = $_[0]; if (is_hash_ref($data)) { my $d = $sub->($data); return if ref $d && $d == $reject; return $d; } if (is_array_ref($data)) { return [grep {!(ref $_ && $_ == $reject)} map {$sub->($_)} @$data]; } if (is_code_ref($data)) { return sub { while (1) { my $d = $sub->($data->() // return); return if ref $d && $d == $reject; return $d; } }; } if ( is_instance($data) && is_able($data, 'does') && $data->does('Catmandu::Iterable')) { return $data->map(sub {$sub->($_[0])}) ->reject(sub {ref $_[0] && $_[0] == $reject}); } Catmandu::BadArg->throw( "must be hashref, arrayref, coderef or iterable object"); }; } sub _build_reject_var { my ($self) = @_; $self->capture($self->_reject); } sub _build_fixes_var { my ($self) = @_; $self->capture($self->fixes); } sub _build_hogan { Text::Hogan::Compiler->new; } sub _preprocess { my ($self, $text) = @_; return $text unless $self->preprocess || $self->_hogan_vars; my $vars = $self->_hogan_vars || {}; $self->_hogan->compile($text, {numeric_string_as_string => 1}) ->render($vars); } sub fix { my ($self, $data) = @_; $self->fixer->($data); } sub generate_var { $_[0]->_generate_var; } sub generate_label { $_[0]->_generate_label; } sub capture { my ($self, $capture) = @_; my $var = $self->_generate_var; $self->_captures->{$var} = $capture; $var; } sub emit { my ($self) = @_; my $var = $self->var; my $err = $self->_generate_var; my $reject_var = $self->_reject_var; my $perl = ""; $perl .= "eval {"; # Loop over all the fixes and emit their code $perl .= $self->emit_fixes($self->fixes); $perl .= "return ${var};"; $perl .= $self->_reject_label . ": return ${reject_var};"; $perl .= "} or do {"; $perl .= $self->_emit_declare_vars($err, '$@'); $perl .= "${err}->throw if is_instance(${err},'Throwable::Error');"; $perl .= "Catmandu::FixError->throw(message => ${err}, data => ${var});"; $perl .= "};"; $self->log->debug($perl); $perl; } # Emit an array of fixes sub emit_fixes { my ($self, $fixes) = @_; my $perl = ''; for (my $i = 0; $i < @{$fixes}; $i++) { my $fix = $fixes->[$i]; $perl .= $self->emit_fix($fix); } $perl; } sub emit_reject { $_[0]->_emit_reject; } sub emit_fix { my ($self, $fix) = @_; my $perl; if ($fix->can('emit')) { $perl = $self->emit_block( sub { my ($label) = @_; $fix->emit($self, $label); } ); } elsif ($fix->can('fix')) { my $var = $self->var; my $ref = $self->_generate_var; $self->_captures->{$ref} = $fix; $perl = "${var} = ${ref}->fix(${var});"; } else { Catmandu::Error->throw('not a fix'); } $perl; } sub emit_block { my ($self, $cb) = @_; my $label = $self->_generate_label; my $perl = "${label}: {"; $perl .= $cb->($label); $perl .= "};"; $perl; } sub emit_clear_hash_ref { my ($self, $var) = @_; "undef %{${var}} if is_hash_ref(${var});"; } sub emit_value { shift->_emit_value(@_); } sub emit_string { shift->_emit_string(@_); } sub emit_match { my ($self, $pattern) = @_; $pattern =~ s/\//\\\//g; $pattern =~ s/\\$/\\\\/; # pattern can't end with an escape in m/.../ "m/$pattern/"; } sub emit_substitution { my ($self, $pattern, $replace) = @_; $pattern =~ s/\//\\\//g; $pattern =~ s/\\$/\\\\/; # pattern can't end with an escape in m/.../ $replace =~ s/\//\\\//g; $replace =~ s/\\$/\\\\/; # pattern can't end with an escape in m/.../ "s/$pattern/$replace/"; } sub emit_declare_vars { shift->_emit_declare_vars(@_); } sub emit_new_scope { "{"; } sub emit_end_scope { "};"; } sub emit_foreach { my ($self, $var, $cb) = @_; my $perl = ""; my $v = $self->_generate_var; $perl .= "foreach (\@{${var}}) {"; $perl .= $self->emit_declare_vars($v, '$_'); $perl .= $cb->($v); $perl .= "}"; $perl; } sub emit_foreach_key { my ($self, $var, $cb) = @_; my $perl = ""; my $v = $self->_generate_var; $perl .= "foreach (keys(\%{${var}})) {"; $perl .= $self->emit_declare_vars($v, '$_'); $perl .= $cb->($v); $perl .= "}"; $perl; } sub emit_walk_path { my ($self, $var, $keys, $cb) = @_; $keys = [@$keys]; # protect keys if (@$keys) { # protect $var my $v = $self->_generate_var; $self->_emit_declare_vars($v, $var) . $self->_emit_walk_path($v, $keys, $cb); } else { $cb->($var); } } sub _emit_walk_path { my ($self, $var, $keys, $cb) = @_; @$keys || return $cb->($var); my $key = shift @$keys; my $str_key = $self->emit_string($key); my $perl = ""; if ($key =~ /^[0-9]+$/) { $perl .= "if (is_hash_ref(${var})) {"; $perl .= "${var} = ${var}->{${str_key}};"; $perl .= $self->_emit_walk_path($var, [@$keys], $cb); $perl .= "} elsif (is_array_ref(${var}) && \@{${var}} > ${key}) {"; $perl .= "${var} = ${var}->[${key}];"; $perl .= $self->_emit_walk_path($var, [@$keys], $cb); $perl .= "}"; } elsif ($key eq '*') { my $v = $self->_generate_var; $perl .= "if (is_array_ref(${var})) {"; $perl .= $self->emit_foreach( $var, sub { return $self->_emit_walk_path(shift, $keys, $cb); } ); $perl .= "}"; } else { if ($key eq '$first') { $perl .= "if (is_array_ref(${var}) && \@{${var}}) {"; $perl .= "${var} = ${var}->[0];"; } elsif ($key eq '$last') { $perl .= "if (is_array_ref(${var}) && \@{${var}}) {"; $perl .= "${var} = ${var}->[\@{${var}} - 1];"; } else { $perl .= "if (is_hash_ref(${var})) {"; $perl .= "${var} = ${var}->{${str_key}};"; } $perl .= $self->_emit_walk_path($var, $keys, $cb); $perl .= "}"; } $perl; } sub emit_create_path { my ($self, $var, $keys, $cb) = @_; $self->_emit_create_path($var, [@$keys], $cb); } sub _emit_create_path { my ($self, $var, $keys, $cb) = @_; @$keys || return $cb->($var); my $key = shift @$keys; my $str_key = $self->emit_string($key); my $perl = ""; if ($key =~ /^[0-9]+$/) { my $v1 = $self->_generate_var; my $v2 = $self->_generate_var; $perl .= "if (is_hash_ref(${var})) {"; $perl .= "my ${v1} = ${var};"; $perl .= $self->_emit_create_path("${v1}->{${str_key}}", [@$keys], $cb); $perl .= "} elsif (is_maybe_array_ref(${var})) {"; $perl .= "my ${v2} = ${var} //= [];"; $perl .= $self->_emit_create_path("${v2}->[${key}]", [@$keys], $cb); $perl .= "}"; } elsif ($key eq '*') { my $v1 = $self->_generate_var; my $v2 = $self->_generate_var; $perl .= "if (is_array_ref(${var})) {"; $perl .= "my ${v1} = ${var};"; $perl .= "for (my ${v2} = 0; ${v2} < \@{${v1}}; ${v2}++) {"; $perl .= $self->_emit_create_path("${v1}->[${v2}]", $keys, $cb); $perl .= "}"; $perl .= "}"; } else { my $v = $self->_generate_var; if ( $key eq '$first' || $key eq '$last' || $key eq '$prepend' || $key eq '$append') { $perl .= "if (is_maybe_array_ref(${var})) {"; $perl .= "my ${v} = ${var} //= [];"; if ($key eq '$first') { $perl .= $self->_emit_create_path("${v}->[0]", $keys, $cb); } elsif ($key eq '$last') { $perl .= "if (\@${v}) {"; $perl .= $self->_emit_create_path("${v}->[\@${v} - 1]", [@$keys], $cb); $perl .= "} else {"; $perl .= $self->_emit_create_path("${v}->[0]", [@$keys], $cb); $perl .= "}"; } elsif ($key eq '$prepend') { $perl .= "if (\@${v}) {"; $perl .= "unshift(\@${v}, undef);"; $perl .= "}"; $perl .= $self->_emit_create_path("${v}->[0]", $keys, $cb); } elsif ($key eq '$append') { $perl .= $self->_emit_create_path("${v}->[\@${v}]", $keys, $cb); } $perl .= "}"; } else { $perl .= "if (is_maybe_hash_ref(${var})) {"; $perl .= "my ${v} = ${var} //= {};"; $perl .= $self->_emit_create_path("${v}->{${str_key}}", $keys, $cb); $perl .= "}"; } } $perl; } sub emit_get_key { my ($self, $var, $key, $cb) = @_; return $cb->($var) unless defined $key; my $str_key = $self->emit_string($key); my $perl = ""; if ($key =~ /^[0-9]+$/) { $perl .= "if (is_hash_ref(${var}) && exists(${var}->{${str_key}})) {"; $perl .= $cb->("${var}->{${str_key}}"); $perl .= "} elsif (is_array_ref(${var}) && \@{${var}} > ${key}) {"; $perl .= $cb->("${var}->[${key}]"); $perl .= "}"; } elsif ($key eq '$first') { $perl .= "if (is_array_ref(${var}) && \@{${var}}) {"; $perl .= $cb->("${var}->[0]"); $perl .= "}"; } elsif ($key eq '$last') { $perl .= "if (is_array_ref(${var}) && \@{${var}}) {"; $perl .= $cb->("${var}->[\@{${var}} - 1]"); $perl .= "}"; } elsif ($key eq '*') { my $i = $self->_generate_var; $perl .= "if (is_array_ref(${var})) {"; $perl .= "for (my ${i} = 0; ${i} < \@{${var}}; ${i}++) {"; $perl .= $cb->("${var}->[${i}]", $i); $perl .= "}}"; } else { $perl .= "if (is_hash_ref(${var}) && exists(${var}->{${str_key}})) {"; $perl .= $cb->("${var}->{${str_key}}"); $perl .= "}"; } $perl; } sub emit_set_key { my ($self, $var, $key, $val) = @_; return "${var} = $val;" unless defined $key; my $perl = ""; my $str_key = $self->emit_string($key); if ($key =~ /^[0-9]+$/) { $perl .= "if (is_hash_ref(${var})) {"; $perl .= "${var}->{${str_key}} = $val;"; $perl .= "} elsif (is_array_ref(${var})) {"; $perl .= "${var}->[${key}] = $val;"; $perl .= "}"; } elsif ($key eq '$first') { $perl .= "if (is_array_ref(${var})) {"; $perl .= "${var}->[0] = $val;"; $perl .= "}"; } elsif ($key eq '$last') { $perl .= "if (is_array_ref(${var})) {"; $perl .= "${var}->[\@{${var}} - 1] = $val;"; $perl .= "}"; } elsif ($key eq '$prepend') { $perl .= "if (is_array_ref(${var})) {"; $perl .= "unshift(\@{${var}}, $val);"; $perl .= "}"; } elsif ($key eq '$append') { $perl .= "if (is_array_ref(${var})) {"; $perl .= "push(\@{${var}}, $val);"; $perl .= "}"; } elsif ($key eq '*') { my $i = $self->_generate_var; $perl .= "if (is_array_ref(${var})) {"; $perl .= "for (my ${i} = 0; ${i} < \@{${var}}; ${i}++) {"; $perl .= "${var}->[${i}] = $val;"; $perl .= "}}"; } else { $perl .= "if (is_hash_ref(${var})) {"; $perl .= "${var}->{${str_key}} = $val;"; $perl .= "}"; } $perl; } sub emit_delete_key { my ($self, $var, $key, $cb) = @_; my $str_key = $self->emit_string($key); my $perl = ""; my $vals; if ($cb) { $vals = $self->_generate_var; $perl = $self->emit_declare_vars($vals, '[]'); } if ($key =~ /^[0-9]+$/) { $perl .= "if (is_hash_ref(${var}) && exists(${var}->{${str_key}})) {"; $perl .= "push(\@{${vals}}, " if $cb; $perl .= "delete(${var}->{${str_key}})"; $perl .= ")" if $cb; $perl .= ";"; $perl .= "} elsif (is_array_ref(${var}) && \@{${var}} > ${key}) {"; $perl .= "push(\@{${vals}}, " if $cb; $perl .= "splice(\@{${var}}, ${key}, 1)"; $perl .= ")" if $cb; } elsif ($key eq '$first' || $key eq '$last' || $key eq '*') { $perl .= "if (is_array_ref(${var}) && \@{${var}}) {"; $perl .= "push(\@{${vals}}, " if $cb; $perl .= "splice(\@{${var}}, 0, 1)" if $key eq '$first'; $perl .= "splice(\@{${var}}, \@{${var}} - 1, 1)" if $key eq '$last'; $perl .= "splice(\@{${var}}, 0, \@{${var}})" if $key eq '*'; $perl .= ")" if $cb; } else { $perl .= "if (is_hash_ref(${var}) && exists(${var}->{${str_key}})) {"; $perl .= "push(\@{${vals}}, " if $cb; $perl .= "delete(${var}->{${str_key}})"; $perl .= ")" if $cb; } $perl .= ";"; $perl .= "}"; if ($cb) { $perl .= $cb->($vals); } $perl; } sub emit_retain_key { my ($self, $var, $key) = @_; my $perl = ""; if ($key =~ /^[0-9]+$/) { $perl .= "if (is_hash_ref(${var})) {"; $perl .= $self->emit_foreach_key( $var, sub { my $v = shift; "delete(${var}->{${v}}) if ${v} ne ${key};"; } ); $perl .= "} elsif (is_array_ref(${var})) {"; $perl .= "if (\@{${var}} > ${key}) {"; $perl .= "splice(\@{${var}}, 0, ${key});" if $key > 0; $perl .= "splice(\@{${var}}, 1, \@{${var}} - 1);"; $perl .= "} else {"; $perl .= "splice(\@{${var}}, 0, \@{${var}});"; $perl .= "}"; $perl .= "}"; } elsif ($key eq '$first') { $perl .= "if (is_array_ref(${var}) && \@{${var}} > 1) {"; $perl .= "splice(\@{${var}}, 1, \@{${var}} - 1);"; $perl .= "}"; } elsif ($key eq '$last') { $perl .= "if (is_array_ref(${var}) && \@{${var}} > 1) {"; $perl .= "splice(\@{${var}}, 0, \@{${var}} - 1);"; $perl .= "}"; } elsif ($key eq '*') { # retain everything } else { $key = $self->emit_string($key); $perl .= "if (is_hash_ref(${var})) {"; $perl .= $self->emit_foreach_key( $var, sub { my $v = shift; "if ($v ne ${key}) {" . "delete(${var}->{${v}});" . "}"; } ); $perl .= "}"; } $perl; } sub emit_clone { my ($self, $var) = @_; "$var = clone($var);"; } # Split a path on '.' or '/', but not on '\.' or '\/'. sub split_path { my ($self, $path) = @_; Catmandu::Util::split_path($path); } 1; __END__ =pod =head1 NAME Catmandu::Fix - a Catmandu class used for data transformations =head1 SYNOPSIS # From the command line $ catmandu convert JSON --fix 'add(foo,bar)' < data.json $ catmandu convert YAML --fix 'upcase(job) remove(test)' < data.yml $ catmandu convert CSV --fix 'sort(tags)' < data.csv $ catmandu run /tmp/myfixes.txt $ catmandu convert OAI --url http://biblio.ugent.be/oai --fix /tmp/myfixes.txt # With preprocessing $ catmandu convert JSON --var field=foo --fix 'add({{field}},bar)' < data.json # From Perl use Catmandu; my $fixer = Catmandu->fixer('upcase(job)','removed(test)'); my $fixer = Catmandu->fixer('/tmp/myfixes.txt'); # Convert data my $arr = $fixer->fix([ ... ]); my $hash = $fixer->fix({ ... }); my $importer = Catmandu->importer('YAML', file => 'data.yml'); my $fixed_importer = $fixer->fix($importer); # With preprocessing my $fixer = Catmandu::Fix->new( variables => {x => 'foo', y => 'bar'}, fixes => ['add({{x}},{{y}})'], ); # Inline fixes use Catmandu::Fix::upcase as => 'my_upcase'; use Catmandu::Fix::remove as => 'my_remove'; my $hash = { 'job' => 'librarian' , deep => { nested => '1'} }; my_upcase($hash,'job'); my_remove($hash,'deep.nested'); =head1 DESCRIPTION A Catmandu::Fix is a Perl package that can transform data. These packages are used for easy data manipulation by non programmers. The main intention is to use fixes on the command line or in Fix scripts. A small DSL language is available to execute many Fix command on a stream of data. When a C argument is given to a L, L or L then the transformations are executed on every item in the stream. =head1 FIX LANGUAGE A Fix script is a collection of one or more Fix commands. The fixes are executed on every record in the dataset. If this command is executed on the command line: $ catmandu convert JSON --fix 'upcase(title); add(deep.nested.field,1)' < data.json then all the title fields will be upcased and a new deeply nested field will be added: { "title":"foo" } { "title":"bar" } becomes: { "title":"FOO" , "deep":{"nested":{"field":1}} } { "title":"BAR" , "deep":{"nested":{"field":1}} } Using the command line, Fix commands need a semicolon (;) as separator. All these commands can also be written into a Fix script where semicolons are not required: $ catmandu convert JSON --fix script.fix < data.json where C contains: upcase(title) add(deep.nested.field,1) Conditionals can be used to provide the logic when to execute fixes: if exists(error) set(valid, 0) end if exists(error) set(is_valid, 0) elsif exists(warning) set(is_valid, 1) log(...) else set(is_valid, 1) end unless all_match(title, "PERL") add(is_perl, "noooo") end exists(error) and set(is_valid, 0) exists(error) && set(is_valid, 0) exists(title) or log('title missing') exists(title) || log('title missing') Binds are used to manipulate the context in which Fixes are executed. E.g. execute a fix on every item in a list: # 'demo' is an array of hashes bind list(path:demo) add_field(foo,bar) end # do is an alias for bind do list(path:demo) add_field(foo,bar) end To delete records from a stream of data the C Fix can be used: reject() # Reject all in the stream if exists(foo) reject() # Reject records that contain a 'foo' field end reject exists(foo) # Reject records that contain a 'foo' field The opposite of C is C